Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-headers-4.4.0-210 /
include /
xen /
Delete
Unzip
Name
Size
Permission
Date
Action
interface
[ DIR ]
drwxr-xr-x
2021-04-21 07:33
acpi.h
3.41
KB
-rw-r--r--
2016-01-11 00:01
balloon.h
1
KB
-rw-r--r--
2016-01-11 00:01
events.h
5.01
KB
-rw-r--r--
2021-04-16 11:57
features.h
463
B
-rw-r--r--
2016-01-11 00:01
grant_table.h
8.98
KB
-rw-r--r--
2021-04-16 11:57
hvc-console.h
479
B
-rw-r--r--
2016-01-11 00:01
hvm.h
1.25
KB
-rw-r--r--
2016-01-11 00:01
page.h
1.29
KB
-rw-r--r--
2021-04-16 11:57
platform_pci.h
2.01
KB
-rw-r--r--
2016-01-11 00:01
swiotlb-xen.h
2.1
KB
-rw-r--r--
2021-04-16 11:57
tmem.h
310
B
-rw-r--r--
2016-01-11 00:01
xen-ops.h
3.37
KB
-rw-r--r--
2016-01-11 00:01
xen.h
1.37
KB
-rw-r--r--
2016-01-11 00:01
xenbus.h
8.55
KB
-rw-r--r--
2021-04-16 11:57
xenbus_dev.h
1.8
KB
-rw-r--r--
2016-01-11 00:01
Save
Rename
/* Simple wrappers around HVM functions */ #ifndef XEN_HVM_H__ #define XEN_HVM_H__ #include <xen/interface/hvm/params.h> #include <asm/xen/hypercall.h> static const char *param_name(int op) { #define PARAM(x) [HVM_PARAM_##x] = #x static const char *const names[] = { PARAM(CALLBACK_IRQ), PARAM(STORE_PFN), PARAM(STORE_EVTCHN), PARAM(PAE_ENABLED), PARAM(IOREQ_PFN), PARAM(BUFIOREQ_PFN), PARAM(TIMER_MODE), PARAM(HPET_ENABLED), PARAM(IDENT_PT), PARAM(DM_DOMAIN), PARAM(ACPI_S_STATE), PARAM(VM86_TSS), PARAM(VPT_ALIGN), PARAM(CONSOLE_PFN), PARAM(CONSOLE_EVTCHN), }; #undef PARAM if (op >= ARRAY_SIZE(names)) return "unknown"; if (!names[op]) return "reserved"; return names[op]; } static inline int hvm_get_parameter(int idx, uint64_t *value) { struct xen_hvm_param xhv; int r; xhv.domid = DOMID_SELF; xhv.index = idx; r = HYPERVISOR_hvm_op(HVMOP_get_param, &xhv); if (r < 0) { pr_err("Cannot get hvm parameter %s (%d): %d!\n", param_name(idx), idx, r); return r; } *value = xhv.value; return r; } #define HVM_CALLBACK_VIA_TYPE_VECTOR 0x2 #define HVM_CALLBACK_VIA_TYPE_SHIFT 56 #define HVM_CALLBACK_VECTOR(x) (((uint64_t)HVM_CALLBACK_VIA_TYPE_VECTOR)<<\ HVM_CALLBACK_VIA_TYPE_SHIFT | (x)) #endif /* XEN_HVM_H__ */