* [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event
@ 2015-05-29 13:45 Razvan Cojocaru
2015-06-01 6:56 ` Tian, Kevin
` (2 more replies)
0 siblings, 3 replies; 11+ messages in thread
From: Razvan Cojocaru @ 2015-05-29 13:45 UTC (permalink / raw)
To: xen-devel
Cc: kevin.tian, wei.liu2, ian.campbell, Razvan Cojocaru,
stefano.stabellini, jun.nakajima, ian.jackson, tim, eddie.dong,
jbeulich, andrew.cooper3, keir
As suggested by Andrew Cooper, this patch attempts to remove
some redundancy and allow for an easier time when adding vm_events
for new control registers in the future, by having a single
VM_EVENT_REASON_WRITE_CTRLREG vm_event type, meant to serve CR0,
CR3, CR4 and (newly introduced) XCR0. The actual control register
will be deduced by the new .index field in vm_event_write_ctrlreg
(renamed from vm_event_mov_to_cr). The patch has also modified
the xen-access.c test - it is now able to log CR3 events.
Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
---
Changes since V7:
- Explicitly #include <asm/hvm/event.h>.
---
tools/libxc/include/xenctrl.h | 9 ++---
tools/libxc/xc_monitor.c | 40 +++-------------------
tools/tests/xen-access/xen-access.c | 30 +++++++++++++++--
xen/arch/x86/hvm/event.c | 55 +++++++++---------------------
xen/arch/x86/hvm/hvm.c | 11 +++---
xen/arch/x86/hvm/vmx/vmx.c | 6 ++--
xen/arch/x86/monitor.c | 63 +++++++++++++----------------------
xen/include/asm-x86/domain.h | 12 ++-----
xen/include/asm-x86/hvm/event.h | 5 ++-
xen/include/asm-x86/monitor.h | 2 ++
xen/include/public/domctl.h | 12 +++----
xen/include/public/vm_event.h | 29 ++++++++--------
12 files changed, 114 insertions(+), 160 deletions(-)
diff --git a/tools/libxc/include/xenctrl.h b/tools/libxc/include/xenctrl.h
index 09a7450..83fd289 100644
--- a/tools/libxc/include/xenctrl.h
+++ b/tools/libxc/include/xenctrl.h
@@ -2375,12 +2375,9 @@ int xc_mem_access_disable_emulate(xc_interface *xch, domid_t domain_id);
void *xc_monitor_enable(xc_interface *xch, domid_t domain_id, uint32_t *port);
int xc_monitor_disable(xc_interface *xch, domid_t domain_id);
int xc_monitor_resume(xc_interface *xch, domid_t domain_id);
-int xc_monitor_mov_to_cr0(xc_interface *xch, domid_t domain_id, bool enable,
- bool sync, bool onchangeonly);
-int xc_monitor_mov_to_cr3(xc_interface *xch, domid_t domain_id, bool enable,
- bool sync, bool onchangeonly);
-int xc_monitor_mov_to_cr4(xc_interface *xch, domid_t domain_id, bool enable,
- bool sync, bool onchangeonly);
+int xc_monitor_write_ctrlreg(xc_interface *xch, domid_t domain_id,
+ uint16_t index, bool enable, bool sync,
+ bool onchangeonly);
int xc_monitor_mov_to_msr(xc_interface *xch, domid_t domain_id, bool enable,
bool extended_capture);
int xc_monitor_singlestep(xc_interface *xch, domid_t domain_id, bool enable);
diff --git a/tools/libxc/xc_monitor.c b/tools/libxc/xc_monitor.c
index 87ad968..63013de 100644
--- a/tools/libxc/xc_monitor.c
+++ b/tools/libxc/xc_monitor.c
@@ -45,8 +45,9 @@ int xc_monitor_resume(xc_interface *xch, domid_t domain_id)
NULL);
}
-int xc_monitor_mov_to_cr0(xc_interface *xch, domid_t domain_id, bool enable,
- bool sync, bool onchangeonly)
+int xc_monitor_write_ctrlreg(xc_interface *xch, domid_t domain_id,
+ uint16_t index, bool enable, bool sync,
+ bool onchangeonly)
{
DECLARE_DOMCTL;
@@ -54,39 +55,8 @@ int xc_monitor_mov_to_cr0(xc_interface *xch, domid_t domain_id, bool enable,
domctl.domain = domain_id;
domctl.u.monitor_op.op = enable ? XEN_DOMCTL_MONITOR_OP_ENABLE
: XEN_DOMCTL_MONITOR_OP_DISABLE;
- domctl.u.monitor_op.event = XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR0;
- domctl.u.monitor_op.u.mov_to_cr.sync = sync;
- domctl.u.monitor_op.u.mov_to_cr.onchangeonly = onchangeonly;
-
- return do_domctl(xch, &domctl);
-}
-
-int xc_monitor_mov_to_cr3(xc_interface *xch, domid_t domain_id, bool enable,
- bool sync, bool onchangeonly)
-{
- DECLARE_DOMCTL;
-
- domctl.cmd = XEN_DOMCTL_monitor_op;
- domctl.domain = domain_id;
- domctl.u.monitor_op.op = enable ? XEN_DOMCTL_MONITOR_OP_ENABLE
- : XEN_DOMCTL_MONITOR_OP_DISABLE;
- domctl.u.monitor_op.event = XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR3;
- domctl.u.monitor_op.u.mov_to_cr.sync = sync;
- domctl.u.monitor_op.u.mov_to_cr.onchangeonly = onchangeonly;
-
- return do_domctl(xch, &domctl);
-}
-
-int xc_monitor_mov_to_cr4(xc_interface *xch, domid_t domain_id, bool enable,
- bool sync, bool onchangeonly)
-{
- DECLARE_DOMCTL;
-
- domctl.cmd = XEN_DOMCTL_monitor_op;
- domctl.domain = domain_id;
- domctl.u.monitor_op.op = enable ? XEN_DOMCTL_MONITOR_OP_ENABLE
- : XEN_DOMCTL_MONITOR_OP_DISABLE;
- domctl.u.monitor_op.event = XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR4;
+ domctl.u.monitor_op.event = XEN_DOMCTL_MONITOR_EVENT_WRITE_CTRLREG;
+ domctl.u.monitor_op.u.mov_to_cr.index = index;
domctl.u.monitor_op.u.mov_to_cr.sync = sync;
domctl.u.monitor_op.u.mov_to_cr.onchangeonly = onchangeonly;
diff --git a/tools/tests/xen-access/xen-access.c b/tools/tests/xen-access/xen-access.c
index 12ab921..cd4b4d0 100644
--- a/tools/tests/xen-access/xen-access.c
+++ b/tools/tests/xen-access/xen-access.c
@@ -318,9 +318,9 @@ static void put_response(vm_event_t *vm_event, vm_event_response_t *rsp)
void usage(char* progname)
{
fprintf(stderr,
- "Usage: %s [-m] <domain_id> write|exec|breakpoint\n"
+ "Usage: %s [-m] <domain_id> write|exec|breakpoint|cr3\n"
"\n"
- "Logs first page writes, execs, or breakpoint traps that occur on the domain.\n"
+ "Logs first page writes, execs, CR3 writes or breakpoint traps that occur on the domain.\n"
"\n"
"-m requires this program to run, or else the domain may pause\n",
progname);
@@ -341,6 +341,7 @@ int main(int argc, char *argv[])
int required = 0;
int breakpoint = 0;
int shutting_down = 0;
+ int cr3 = 0;
char* progname = argv[0];
argv++;
@@ -383,6 +384,10 @@ int main(int argc, char *argv[])
{
breakpoint = 1;
}
+ else if ( !strcmp(argv[0], "cr3") )
+ {
+ cr3 = 1;
+ }
else
{
usage(argv[0]);
@@ -443,6 +448,16 @@ int main(int argc, char *argv[])
}
}
+ if ( cr3 )
+ {
+ rc = xc_monitor_write_ctrlreg(xch, domain_id, VM_EVENT_X86_CR3, 1, 1, 1);
+ if ( rc < 0 )
+ {
+ ERROR("Error %d requesting CR3 monitoring with vm_event\n", rc);
+ goto exit;
+ }
+ }
+
/* Wait for access */
for (;;)
{
@@ -455,6 +470,7 @@ int main(int argc, char *argv[])
rc = xc_set_mem_access(xch, domain_id, XENMEM_access_rwx, START_PFN,
(xenaccess->max_gpfn - START_PFN) );
rc = xc_monitor_software_breakpoint(xch, domain_id, 0);
+ rc = xc_monitor_write_ctrlreg(xch, domain_id, VM_EVENT_X86_CR3, 0, 1, 1);
shutting_down = 1;
}
@@ -546,6 +562,16 @@ int main(int argc, char *argv[])
}
break;
+ case VM_EVENT_REASON_WRITE_CTRLREG:
+ if ( req.u.write_ctrlreg.index == VM_EVENT_X86_CR3 )
+ printf("CR3: old 0x%016lx new 0x%016lx\n",
+ req.u.write_ctrlreg.new_value,
+ req.u.write_ctrlreg.old_value);
+ else
+ printf("Non-CR3 control register write event: 0x%08x\n",
+ req.u.write_ctrlreg.index);
+
+ break;
default:
fprintf(stderr, "UNKNOWN REASON CODE %d\n", req.reason);
}
diff --git a/xen/arch/x86/hvm/event.c b/xen/arch/x86/hvm/event.c
index 9d5f9f3..fedf617 100644
--- a/xen/arch/x86/hvm/event.c
+++ b/xen/arch/x86/hvm/event.c
@@ -21,6 +21,8 @@
#include <xen/vm_event.h>
#include <xen/paging.h>
+#include <asm/hvm/event.h>
+#include <asm/monitor.h>
#include <public/vm_event.h>
static void hvm_event_fill_regs(vm_event_request_t *req)
@@ -88,55 +90,28 @@ static int hvm_event_traps(uint8_t sync, vm_event_request_t *req)
return 1;
}
-static inline
-void hvm_event_cr(uint32_t reason, unsigned long value,
- unsigned long old, bool_t onchangeonly, bool_t sync)
+void (hvm_event_cr)(unsigned int index, unsigned long value, unsigned long old)
{
- if ( onchangeonly && value == old )
- return;
- else
+ struct arch_domain *currad = ¤t->domain->arch;
+ unsigned int ctrlreg_bitmask = monitor_ctrlreg_bitmask(index);
+
+ if ( (currad->monitor.write_ctrlreg_enabled & ctrlreg_bitmask) &&
+ (!(currad->monitor.write_ctrlreg_onchangeonly & ctrlreg_bitmask) ||
+ value != old) )
{
vm_event_request_t req = {
- .reason = reason,
+ .reason = VM_EVENT_REASON_WRITE_CTRLREG,
.vcpu_id = current->vcpu_id,
- .u.mov_to_cr.new_value = value,
- .u.mov_to_cr.old_value = old
+ .u.write_ctrlreg.index = index,
+ .u.write_ctrlreg.new_value = value,
+ .u.write_ctrlreg.old_value = old
};
- hvm_event_traps(sync, &req);
+ hvm_event_traps(currad->monitor.write_ctrlreg_sync & ctrlreg_bitmask,
+ &req);
}
}
-void hvm_event_cr0(unsigned long value, unsigned long old)
-{
- struct arch_domain *currad = ¤t->domain->arch;
-
- if ( currad->monitor.mov_to_cr0_enabled )
- hvm_event_cr(VM_EVENT_REASON_MOV_TO_CR0, value, old,
- currad->monitor.mov_to_cr0_onchangeonly,
- currad->monitor.mov_to_cr0_sync);
-}
-
-void hvm_event_cr3(unsigned long value, unsigned long old)
-{
- struct arch_domain *currad = ¤t->domain->arch;
-
- if ( currad->monitor.mov_to_cr3_enabled )
- hvm_event_cr(VM_EVENT_REASON_MOV_TO_CR3, value, old,
- currad->monitor.mov_to_cr3_onchangeonly,
- currad->monitor.mov_to_cr3_sync);
-}
-
-void hvm_event_cr4(unsigned long value, unsigned long old)
-{
- struct arch_domain *currad = ¤t->domain->arch;
-
- if ( currad->monitor.mov_to_cr4_enabled )
- hvm_event_cr(VM_EVENT_REASON_MOV_TO_CR4, value, old,
- currad->monitor.mov_to_cr4_onchangeonly,
- currad->monitor.mov_to_cr4_sync);
-}
-
void hvm_event_msr(unsigned int msr, uint64_t value)
{
struct vcpu *curr = current;
diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c
index 689e402..46343a8 100644
--- a/xen/arch/x86/hvm/hvm.c
+++ b/xen/arch/x86/hvm/hvm.c
@@ -2965,11 +2965,14 @@ out:
int hvm_handle_xsetbv(u32 index, u64 new_bv)
{
struct segment_register sreg;
+ struct vcpu *curr = current;
- hvm_get_segment_register(current, x86_seg_ss, &sreg);
+ hvm_get_segment_register(curr, x86_seg_ss, &sreg);
if ( sreg.attr.fields.dpl != 0 )
goto err;
+ hvm_event_cr(XCR0, new_bv, curr->arch.xcr0);
+
if ( handle_xsetbv(index, new_bv) )
goto err;
@@ -3267,7 +3270,7 @@ int hvm_set_cr0(unsigned long value)
hvm_funcs.handle_cd(v, value);
hvm_update_cr(v, 0, value);
- hvm_event_cr0(value, old_value);
+ hvm_event_cr(CR0, value, old_value);
if ( (value ^ old_value) & X86_CR0_PG ) {
if ( !nestedhvm_vmswitch_in_progress(v) && nestedhvm_vcpu_in_guestmode(v) )
@@ -3308,7 +3311,7 @@ int hvm_set_cr3(unsigned long value)
old=v->arch.hvm_vcpu.guest_cr[3];
v->arch.hvm_vcpu.guest_cr[3] = value;
paging_update_cr3(v);
- hvm_event_cr3(value, old);
+ hvm_event_cr(CR3, value, old);
return X86EMUL_OKAY;
bad_cr3:
@@ -3349,7 +3352,7 @@ int hvm_set_cr4(unsigned long value)
}
hvm_update_cr(v, 4, value);
- hvm_event_cr4(value, old_cr);
+ hvm_event_cr(CR4, value, old_cr);
/*
* Modifying CR4.{PSE,PAE,PGE,SMEP}, or clearing CR4.PCIDE
diff --git a/xen/arch/x86/hvm/vmx/vmx.c b/xen/arch/x86/hvm/vmx/vmx.c
index 74f563f..82e04f6 100644
--- a/xen/arch/x86/hvm/vmx/vmx.c
+++ b/xen/arch/x86/hvm/vmx/vmx.c
@@ -57,6 +57,7 @@
#include <asm/apic.h>
#include <asm/hvm/nestedhvm.h>
#include <asm/event.h>
+#include <asm/monitor.h>
#include <public/arch-x86/cpuid.h>
static bool_t __initdata opt_force_ept;
@@ -1262,7 +1263,8 @@ static void vmx_update_guest_cr(struct vcpu *v, unsigned int cr)
v->arch.hvm_vmx.exec_control |= cr3_ctls;
/* Trap CR3 updates if CR3 memory events are enabled. */
- if ( v->domain->arch.monitor.mov_to_cr3_enabled )
+ if ( v->domain->arch.monitor.write_ctrlreg_enabled &
+ monitor_ctrlreg_bitmask(VM_EVENT_X86_CR3) )
v->arch.hvm_vmx.exec_control |= CPU_BASED_CR3_LOAD_EXITING;
vmx_update_cpu_exec_control(v);
@@ -2010,7 +2012,7 @@ static int vmx_cr_access(unsigned long exit_qualification)
unsigned long old = curr->arch.hvm_vcpu.guest_cr[0];
curr->arch.hvm_vcpu.guest_cr[0] &= ~X86_CR0_TS;
vmx_update_guest_cr(curr, 0);
- hvm_event_cr0(curr->arch.hvm_vcpu.guest_cr[0], old);
+ hvm_event_cr(CR0, curr->arch.hvm_vcpu.guest_cr[0], old);
HVMTRACE_0D(CLTS);
break;
}
diff --git a/xen/arch/x86/monitor.c b/xen/arch/x86/monitor.c
index d7b1c18..896acf7 100644
--- a/xen/arch/x86/monitor.c
+++ b/xen/arch/x86/monitor.c
@@ -67,59 +67,42 @@ int monitor_domctl(struct domain *d, struct xen_domctl_monitor_op *mop)
switch ( mop->event )
{
- case XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR0:
+ case XEN_DOMCTL_MONITOR_EVENT_WRITE_CTRLREG:
{
- bool_t status = ad->monitor.mov_to_cr0_enabled;
-
- rc = status_check(mop, status);
- if ( rc )
- return rc;
-
- ad->monitor.mov_to_cr0_sync = mop->u.mov_to_cr.sync;
- ad->monitor.mov_to_cr0_onchangeonly = mop->u.mov_to_cr.onchangeonly;
-
- domain_pause(d);
- ad->monitor.mov_to_cr0_enabled = !status;
- domain_unpause(d);
- break;
- }
-
- case XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR3:
- {
- bool_t status = ad->monitor.mov_to_cr3_enabled;
+ unsigned int ctrlreg_bitmask =
+ monitor_ctrlreg_bitmask(mop->u.mov_to_cr.index);
+ bool_t status =
+ !!(ad->monitor.write_ctrlreg_enabled & ctrlreg_bitmask);
struct vcpu *v;
rc = status_check(mop, status);
if ( rc )
return rc;
- ad->monitor.mov_to_cr3_sync = mop->u.mov_to_cr.sync;
- ad->monitor.mov_to_cr3_onchangeonly = mop->u.mov_to_cr.onchangeonly;
+ if ( mop->u.mov_to_cr.sync )
+ ad->monitor.write_ctrlreg_sync |= ctrlreg_bitmask;
+ else
+ ad->monitor.write_ctrlreg_sync &= ~ctrlreg_bitmask;
- domain_pause(d);
- ad->monitor.mov_to_cr3_enabled = !status;
- domain_unpause(d);
+ if ( mop->u.mov_to_cr.onchangeonly )
+ ad->monitor.write_ctrlreg_onchangeonly |= ctrlreg_bitmask;
+ else
+ ad->monitor.write_ctrlreg_onchangeonly &= ~ctrlreg_bitmask;
- /* Latches new CR3 mask through CR0 code */
- for_each_vcpu ( d, v )
- hvm_funcs.update_guest_cr(v, 0);
- break;
- }
+ domain_pause(d);
- case XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR4:
- {
- bool_t status = ad->monitor.mov_to_cr4_enabled;
+ if ( !status )
+ ad->monitor.write_ctrlreg_enabled |= ctrlreg_bitmask;
+ else
+ ad->monitor.write_ctrlreg_enabled &= ~ctrlreg_bitmask;
- rc = status_check(mop, status);
- if ( rc )
- return rc;
+ domain_unpause(d);
- ad->monitor.mov_to_cr4_sync = mop->u.mov_to_cr.sync;
- ad->monitor.mov_to_cr4_onchangeonly = mop->u.mov_to_cr.onchangeonly;
+ if ( mop->u.mov_to_cr.index == VM_EVENT_X86_CR3 )
+ /* Latches new CR3 mask through CR0 code */
+ for_each_vcpu ( d, v )
+ hvm_funcs.update_guest_cr(v, 0);
- domain_pause(d);
- ad->monitor.mov_to_cr4_enabled = !status;
- domain_unpause(d);
break;
}
diff --git a/xen/include/asm-x86/domain.h b/xen/include/asm-x86/domain.h
index 45b5283..a3c117f 100644
--- a/xen/include/asm-x86/domain.h
+++ b/xen/include/asm-x86/domain.h
@@ -341,15 +341,9 @@ struct arch_domain
/* Monitor options */
struct {
- uint16_t mov_to_cr0_enabled : 1;
- uint16_t mov_to_cr0_sync : 1;
- uint16_t mov_to_cr0_onchangeonly : 1;
- uint16_t mov_to_cr3_enabled : 1;
- uint16_t mov_to_cr3_sync : 1;
- uint16_t mov_to_cr3_onchangeonly : 1;
- uint16_t mov_to_cr4_enabled : 1;
- uint16_t mov_to_cr4_sync : 1;
- uint16_t mov_to_cr4_onchangeonly : 1;
+ uint16_t write_ctrlreg_enabled : 4;
+ uint16_t write_ctrlreg_sync : 4;
+ uint16_t write_ctrlreg_onchangeonly : 4;
uint16_t mov_to_msr_enabled : 1;
uint16_t mov_to_msr_extended : 1;
uint16_t singlestep_enabled : 1;
diff --git a/xen/include/asm-x86/hvm/event.h b/xen/include/asm-x86/hvm/event.h
index bb757a1..5a75e05 100644
--- a/xen/include/asm-x86/hvm/event.h
+++ b/xen/include/asm-x86/hvm/event.h
@@ -19,9 +19,8 @@
#define __ASM_X86_HVM_EVENT_H__
/* Called for current VCPU on crX/MSR changes by guest */
-void hvm_event_cr0(unsigned long value, unsigned long old);
-void hvm_event_cr3(unsigned long value, unsigned long old);
-void hvm_event_cr4(unsigned long value, unsigned long old);
+void hvm_event_cr(unsigned int index, unsigned long value, unsigned long old);
+#define hvm_event_cr(what, new, old) hvm_event_cr(VM_EVENT_X86_##what, new, old)
void hvm_event_msr(unsigned int msr, uint64_t value);
/* Called for current VCPU: returns -1 if no listener */
int hvm_event_int3(unsigned long gla);
diff --git a/xen/include/asm-x86/monitor.h b/xen/include/asm-x86/monitor.h
index 21b3e5b..d5815db 100644
--- a/xen/include/asm-x86/monitor.h
+++ b/xen/include/asm-x86/monitor.h
@@ -26,6 +26,8 @@
struct domain;
struct xen_domctl_monitor_op;
+#define monitor_ctrlreg_bitmask(ctrlreg_index) (1U << (ctrlreg_index))
+
int monitor_domctl(struct domain *d, struct xen_domctl_monitor_op *op);
#endif /* __ASM_X86_MONITOR_H__ */
diff --git a/xen/include/public/domctl.h b/xen/include/public/domctl.h
index 0c0ea4a..32629f9 100644
--- a/xen/include/public/domctl.h
+++ b/xen/include/public/domctl.h
@@ -1034,12 +1034,10 @@ DEFINE_XEN_GUEST_HANDLE(xen_domctl_psr_cmt_op_t);
#define XEN_DOMCTL_MONITOR_OP_ENABLE 0
#define XEN_DOMCTL_MONITOR_OP_DISABLE 1
-#define XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR0 0
-#define XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR3 1
-#define XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR4 2
-#define XEN_DOMCTL_MONITOR_EVENT_MOV_TO_MSR 3
-#define XEN_DOMCTL_MONITOR_EVENT_SINGLESTEP 4
-#define XEN_DOMCTL_MONITOR_EVENT_SOFTWARE_BREAKPOINT 5
+#define XEN_DOMCTL_MONITOR_EVENT_WRITE_CTRLREG 0
+#define XEN_DOMCTL_MONITOR_EVENT_MOV_TO_MSR 1
+#define XEN_DOMCTL_MONITOR_EVENT_SINGLESTEP 2
+#define XEN_DOMCTL_MONITOR_EVENT_SOFTWARE_BREAKPOINT 3
struct xen_domctl_monitor_op {
uint32_t op; /* XEN_DOMCTL_MONITOR_OP_* */
@@ -1050,6 +1048,8 @@ struct xen_domctl_monitor_op {
*/
union {
struct {
+ /* Which control register */
+ uint8_t index;
/* Pause vCPU until response */
uint8_t sync;
/* Send event only on a change of value */
diff --git a/xen/include/public/vm_event.h b/xen/include/public/vm_event.h
index c7426de..577e971 100644
--- a/xen/include/public/vm_event.h
+++ b/xen/include/public/vm_event.h
@@ -60,22 +60,24 @@
#define VM_EVENT_REASON_MEM_SHARING 2
/* Memory paging event */
#define VM_EVENT_REASON_MEM_PAGING 3
-/* CR0 was updated */
-#define VM_EVENT_REASON_MOV_TO_CR0 4
-/* CR3 was updated */
-#define VM_EVENT_REASON_MOV_TO_CR3 5
-/* CR4 was updated */
-#define VM_EVENT_REASON_MOV_TO_CR4 6
+/* A control register was updated */
+#define VM_EVENT_REASON_WRITE_CTRLREG 4
/* An MSR was updated. */
-#define VM_EVENT_REASON_MOV_TO_MSR 7
+#define VM_EVENT_REASON_MOV_TO_MSR 5
/* Debug operation executed (e.g. int3) */
-#define VM_EVENT_REASON_SOFTWARE_BREAKPOINT 8
+#define VM_EVENT_REASON_SOFTWARE_BREAKPOINT 6
/* Single-step (e.g. MTF) */
-#define VM_EVENT_REASON_SINGLESTEP 9
+#define VM_EVENT_REASON_SINGLESTEP 7
+
+/* Supported values for the vm_event_write_ctrlreg index. */
+#define VM_EVENT_X86_CR0 0
+#define VM_EVENT_X86_CR3 1
+#define VM_EVENT_X86_CR4 2
+#define VM_EVENT_X86_XCR0 3
/*
* Using a custom struct (not hvm_hw_cpu) so as to not fill
- * the mem_event ring buffer too quickly.
+ * the vm_event ring buffer too quickly.
*/
struct vm_event_regs_x86 {
uint64_t rax;
@@ -156,14 +158,15 @@ struct vm_event_mem_access {
uint32_t _pad;
};
-struct vm_event_mov_to_cr {
+struct vm_event_write_ctrlreg {
+ uint32_t index;
+ uint32_t _pad;
uint64_t new_value;
uint64_t old_value;
};
struct vm_event_debug {
uint64_t gfn;
- uint32_t _pad;
};
struct vm_event_mov_to_msr {
@@ -196,7 +199,7 @@ typedef struct vm_event_st {
struct vm_event_paging mem_paging;
struct vm_event_sharing mem_sharing;
struct vm_event_mem_access mem_access;
- struct vm_event_mov_to_cr mov_to_cr;
+ struct vm_event_write_ctrlreg write_ctrlreg;
struct vm_event_mov_to_msr mov_to_msr;
struct vm_event_debug software_breakpoint;
struct vm_event_debug singlestep;
--
1.7.9.5
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event
2015-05-29 13:45 [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event Razvan Cojocaru
@ 2015-06-01 6:56 ` Tian, Kevin
2015-06-02 15:39 ` Ian Campbell
2015-06-04 13:40 ` Tim Deegan
2 siblings, 0 replies; 11+ messages in thread
From: Tian, Kevin @ 2015-06-01 6:56 UTC (permalink / raw)
To: Razvan Cojocaru, xen-devel@lists.xen.org
Cc: wei.liu2@citrix.com, ian.campbell@citrix.com,
stefano.stabellini@eu.citrix.com, Nakajima, Jun,
ian.jackson@eu.citrix.com, tim@xen.org, Dong, Eddie,
jbeulich@suse.com, andrew.cooper3@citrix.com, keir@xen.org
> From: Razvan Cojocaru [mailto:rcojocaru@bitdefender.com]
> Sent: Friday, May 29, 2015 9:46 PM
>
> As suggested by Andrew Cooper, this patch attempts to remove
> some redundancy and allow for an easier time when adding vm_events
> for new control registers in the future, by having a single
> VM_EVENT_REASON_WRITE_CTRLREG vm_event type, meant to serve CR0,
> CR3, CR4 and (newly introduced) XCR0. The actual control register
> will be deduced by the new .index field in vm_event_write_ctrlreg
> (renamed from vm_event_mov_to_cr). The patch has also modified
> the xen-access.c test - it is now able to log CR3 events.
>
> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
> Acked-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Kevin Tian <kevin.tian@intel.com>
>
> ---
> Changes since V7:
> - Explicitly #include <asm/hvm/event.h>.
> ---
> tools/libxc/include/xenctrl.h | 9 ++---
> tools/libxc/xc_monitor.c | 40 +++-------------------
> tools/tests/xen-access/xen-access.c | 30 +++++++++++++++--
> xen/arch/x86/hvm/event.c | 55 +++++++++---------------------
> xen/arch/x86/hvm/hvm.c | 11 +++---
> xen/arch/x86/hvm/vmx/vmx.c | 6 ++--
> xen/arch/x86/monitor.c | 63
> +++++++++++++----------------------
> xen/include/asm-x86/domain.h | 12 ++-----
> xen/include/asm-x86/hvm/event.h | 5 ++-
> xen/include/asm-x86/monitor.h | 2 ++
> xen/include/public/domctl.h | 12 +++----
> xen/include/public/vm_event.h | 29 ++++++++--------
> 12 files changed, 114 insertions(+), 160 deletions(-)
>
> diff --git a/tools/libxc/include/xenctrl.h b/tools/libxc/include/xenctrl.h
> index 09a7450..83fd289 100644
> --- a/tools/libxc/include/xenctrl.h
> +++ b/tools/libxc/include/xenctrl.h
> @@ -2375,12 +2375,9 @@ int xc_mem_access_disable_emulate(xc_interface
> *xch, domid_t domain_id);
> void *xc_monitor_enable(xc_interface *xch, domid_t domain_id, uint32_t
> *port);
> int xc_monitor_disable(xc_interface *xch, domid_t domain_id);
> int xc_monitor_resume(xc_interface *xch, domid_t domain_id);
> -int xc_monitor_mov_to_cr0(xc_interface *xch, domid_t domain_id, bool
> enable,
> - bool sync, bool onchangeonly);
> -int xc_monitor_mov_to_cr3(xc_interface *xch, domid_t domain_id, bool
> enable,
> - bool sync, bool onchangeonly);
> -int xc_monitor_mov_to_cr4(xc_interface *xch, domid_t domain_id, bool
> enable,
> - bool sync, bool onchangeonly);
> +int xc_monitor_write_ctrlreg(xc_interface *xch, domid_t domain_id,
> + uint16_t index, bool enable, bool sync,
> + bool onchangeonly);
> int xc_monitor_mov_to_msr(xc_interface *xch, domid_t domain_id, bool
> enable,
> bool extended_capture);
> int xc_monitor_singlestep(xc_interface *xch, domid_t domain_id, bool
> enable);
> diff --git a/tools/libxc/xc_monitor.c b/tools/libxc/xc_monitor.c
> index 87ad968..63013de 100644
> --- a/tools/libxc/xc_monitor.c
> +++ b/tools/libxc/xc_monitor.c
> @@ -45,8 +45,9 @@ int xc_monitor_resume(xc_interface *xch, domid_t
> domain_id)
> NULL);
> }
>
> -int xc_monitor_mov_to_cr0(xc_interface *xch, domid_t domain_id, bool
> enable,
> - bool sync, bool onchangeonly)
> +int xc_monitor_write_ctrlreg(xc_interface *xch, domid_t domain_id,
> + uint16_t index, bool enable, bool sync,
> + bool onchangeonly)
> {
> DECLARE_DOMCTL;
>
> @@ -54,39 +55,8 @@ int xc_monitor_mov_to_cr0(xc_interface *xch, domid_t
> domain_id, bool enable,
> domctl.domain = domain_id;
> domctl.u.monitor_op.op = enable ?
> XEN_DOMCTL_MONITOR_OP_ENABLE
> :
> XEN_DOMCTL_MONITOR_OP_DISABLE;
> - domctl.u.monitor_op.event =
> XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR0;
> - domctl.u.monitor_op.u.mov_to_cr.sync = sync;
> - domctl.u.monitor_op.u.mov_to_cr.onchangeonly = onchangeonly;
> -
> - return do_domctl(xch, &domctl);
> -}
> -
> -int xc_monitor_mov_to_cr3(xc_interface *xch, domid_t domain_id, bool
> enable,
> - bool sync, bool onchangeonly)
> -{
> - DECLARE_DOMCTL;
> -
> - domctl.cmd = XEN_DOMCTL_monitor_op;
> - domctl.domain = domain_id;
> - domctl.u.monitor_op.op = enable ?
> XEN_DOMCTL_MONITOR_OP_ENABLE
> - :
> XEN_DOMCTL_MONITOR_OP_DISABLE;
> - domctl.u.monitor_op.event =
> XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR3;
> - domctl.u.monitor_op.u.mov_to_cr.sync = sync;
> - domctl.u.monitor_op.u.mov_to_cr.onchangeonly = onchangeonly;
> -
> - return do_domctl(xch, &domctl);
> -}
> -
> -int xc_monitor_mov_to_cr4(xc_interface *xch, domid_t domain_id, bool
> enable,
> - bool sync, bool onchangeonly)
> -{
> - DECLARE_DOMCTL;
> -
> - domctl.cmd = XEN_DOMCTL_monitor_op;
> - domctl.domain = domain_id;
> - domctl.u.monitor_op.op = enable ?
> XEN_DOMCTL_MONITOR_OP_ENABLE
> - :
> XEN_DOMCTL_MONITOR_OP_DISABLE;
> - domctl.u.monitor_op.event =
> XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR4;
> + domctl.u.monitor_op.event =
> XEN_DOMCTL_MONITOR_EVENT_WRITE_CTRLREG;
> + domctl.u.monitor_op.u.mov_to_cr.index = index;
> domctl.u.monitor_op.u.mov_to_cr.sync = sync;
> domctl.u.monitor_op.u.mov_to_cr.onchangeonly = onchangeonly;
>
> diff --git a/tools/tests/xen-access/xen-access.c
> b/tools/tests/xen-access/xen-access.c
> index 12ab921..cd4b4d0 100644
> --- a/tools/tests/xen-access/xen-access.c
> +++ b/tools/tests/xen-access/xen-access.c
> @@ -318,9 +318,9 @@ static void put_response(vm_event_t *vm_event,
> vm_event_response_t *rsp)
> void usage(char* progname)
> {
> fprintf(stderr,
> - "Usage: %s [-m] <domain_id> write|exec|breakpoint\n"
> + "Usage: %s [-m] <domain_id> write|exec|breakpoint|cr3\n"
> "\n"
> - "Logs first page writes, execs, or breakpoint traps that occur on
> the domain.\n"
> + "Logs first page writes, execs, CR3 writes or breakpoint traps
> that occur on the domain.\n"
> "\n"
> "-m requires this program to run, or else the domain may
> pause\n",
> progname);
> @@ -341,6 +341,7 @@ int main(int argc, char *argv[])
> int required = 0;
> int breakpoint = 0;
> int shutting_down = 0;
> + int cr3 = 0;
>
> char* progname = argv[0];
> argv++;
> @@ -383,6 +384,10 @@ int main(int argc, char *argv[])
> {
> breakpoint = 1;
> }
> + else if ( !strcmp(argv[0], "cr3") )
> + {
> + cr3 = 1;
> + }
> else
> {
> usage(argv[0]);
> @@ -443,6 +448,16 @@ int main(int argc, char *argv[])
> }
> }
>
> + if ( cr3 )
> + {
> + rc = xc_monitor_write_ctrlreg(xch, domain_id,
> VM_EVENT_X86_CR3, 1, 1, 1);
> + if ( rc < 0 )
> + {
> + ERROR("Error %d requesting CR3 monitoring with
> vm_event\n", rc);
> + goto exit;
> + }
> + }
> +
> /* Wait for access */
> for (;;)
> {
> @@ -455,6 +470,7 @@ int main(int argc, char *argv[])
> rc = xc_set_mem_access(xch, domain_id,
> XENMEM_access_rwx, START_PFN,
> (xenaccess->max_gpfn -
> START_PFN) );
> rc = xc_monitor_software_breakpoint(xch, domain_id, 0);
> + rc = xc_monitor_write_ctrlreg(xch, domain_id,
> VM_EVENT_X86_CR3, 0, 1, 1);
>
> shutting_down = 1;
> }
> @@ -546,6 +562,16 @@ int main(int argc, char *argv[])
> }
>
> break;
> + case VM_EVENT_REASON_WRITE_CTRLREG:
> + if ( req.u.write_ctrlreg.index == VM_EVENT_X86_CR3 )
> + printf("CR3: old 0x%016lx new 0x%016lx\n",
> + req.u.write_ctrlreg.new_value,
> + req.u.write_ctrlreg.old_value);
> + else
> + printf("Non-CR3 control register write event:
> 0x%08x\n",
> + req.u.write_ctrlreg.index);
> +
> + break;
> default:
> fprintf(stderr, "UNKNOWN REASON CODE %d\n",
> req.reason);
> }
> diff --git a/xen/arch/x86/hvm/event.c b/xen/arch/x86/hvm/event.c
> index 9d5f9f3..fedf617 100644
> --- a/xen/arch/x86/hvm/event.c
> +++ b/xen/arch/x86/hvm/event.c
> @@ -21,6 +21,8 @@
>
> #include <xen/vm_event.h>
> #include <xen/paging.h>
> +#include <asm/hvm/event.h>
> +#include <asm/monitor.h>
> #include <public/vm_event.h>
>
> static void hvm_event_fill_regs(vm_event_request_t *req)
> @@ -88,55 +90,28 @@ static int hvm_event_traps(uint8_t sync,
> vm_event_request_t *req)
> return 1;
> }
>
> -static inline
> -void hvm_event_cr(uint32_t reason, unsigned long value,
> - unsigned long old, bool_t onchangeonly, bool_t
> sync)
> +void (hvm_event_cr)(unsigned int index, unsigned long value, unsigned long
> old)
> {
> - if ( onchangeonly && value == old )
> - return;
> - else
> + struct arch_domain *currad = ¤t->domain->arch;
> + unsigned int ctrlreg_bitmask = monitor_ctrlreg_bitmask(index);
> +
> + if ( (currad->monitor.write_ctrlreg_enabled & ctrlreg_bitmask) &&
> + (!(currad->monitor.write_ctrlreg_onchangeonly & ctrlreg_bitmask)
> ||
> + value != old) )
> {
> vm_event_request_t req = {
> - .reason = reason,
> + .reason = VM_EVENT_REASON_WRITE_CTRLREG,
> .vcpu_id = current->vcpu_id,
> - .u.mov_to_cr.new_value = value,
> - .u.mov_to_cr.old_value = old
> + .u.write_ctrlreg.index = index,
> + .u.write_ctrlreg.new_value = value,
> + .u.write_ctrlreg.old_value = old
> };
>
> - hvm_event_traps(sync, &req);
> + hvm_event_traps(currad->monitor.write_ctrlreg_sync &
> ctrlreg_bitmask,
> + &req);
> }
> }
>
> -void hvm_event_cr0(unsigned long value, unsigned long old)
> -{
> - struct arch_domain *currad = ¤t->domain->arch;
> -
> - if ( currad->monitor.mov_to_cr0_enabled )
> - hvm_event_cr(VM_EVENT_REASON_MOV_TO_CR0, value, old,
> - currad->monitor.mov_to_cr0_onchangeonly,
> - currad->monitor.mov_to_cr0_sync);
> -}
> -
> -void hvm_event_cr3(unsigned long value, unsigned long old)
> -{
> - struct arch_domain *currad = ¤t->domain->arch;
> -
> - if ( currad->monitor.mov_to_cr3_enabled )
> - hvm_event_cr(VM_EVENT_REASON_MOV_TO_CR3, value, old,
> - currad->monitor.mov_to_cr3_onchangeonly,
> - currad->monitor.mov_to_cr3_sync);
> -}
> -
> -void hvm_event_cr4(unsigned long value, unsigned long old)
> -{
> - struct arch_domain *currad = ¤t->domain->arch;
> -
> - if ( currad->monitor.mov_to_cr4_enabled )
> - hvm_event_cr(VM_EVENT_REASON_MOV_TO_CR4, value, old,
> - currad->monitor.mov_to_cr4_onchangeonly,
> - currad->monitor.mov_to_cr4_sync);
> -}
> -
> void hvm_event_msr(unsigned int msr, uint64_t value)
> {
> struct vcpu *curr = current;
> diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c
> index 689e402..46343a8 100644
> --- a/xen/arch/x86/hvm/hvm.c
> +++ b/xen/arch/x86/hvm/hvm.c
> @@ -2965,11 +2965,14 @@ out:
> int hvm_handle_xsetbv(u32 index, u64 new_bv)
> {
> struct segment_register sreg;
> + struct vcpu *curr = current;
>
> - hvm_get_segment_register(current, x86_seg_ss, &sreg);
> + hvm_get_segment_register(curr, x86_seg_ss, &sreg);
> if ( sreg.attr.fields.dpl != 0 )
> goto err;
>
> + hvm_event_cr(XCR0, new_bv, curr->arch.xcr0);
> +
> if ( handle_xsetbv(index, new_bv) )
> goto err;
>
> @@ -3267,7 +3270,7 @@ int hvm_set_cr0(unsigned long value)
> hvm_funcs.handle_cd(v, value);
>
> hvm_update_cr(v, 0, value);
> - hvm_event_cr0(value, old_value);
> + hvm_event_cr(CR0, value, old_value);
>
> if ( (value ^ old_value) & X86_CR0_PG ) {
> if ( !nestedhvm_vmswitch_in_progress(v) &&
> nestedhvm_vcpu_in_guestmode(v) )
> @@ -3308,7 +3311,7 @@ int hvm_set_cr3(unsigned long value)
> old=v->arch.hvm_vcpu.guest_cr[3];
> v->arch.hvm_vcpu.guest_cr[3] = value;
> paging_update_cr3(v);
> - hvm_event_cr3(value, old);
> + hvm_event_cr(CR3, value, old);
> return X86EMUL_OKAY;
>
> bad_cr3:
> @@ -3349,7 +3352,7 @@ int hvm_set_cr4(unsigned long value)
> }
>
> hvm_update_cr(v, 4, value);
> - hvm_event_cr4(value, old_cr);
> + hvm_event_cr(CR4, value, old_cr);
>
> /*
> * Modifying CR4.{PSE,PAE,PGE,SMEP}, or clearing CR4.PCIDE
> diff --git a/xen/arch/x86/hvm/vmx/vmx.c b/xen/arch/x86/hvm/vmx/vmx.c
> index 74f563f..82e04f6 100644
> --- a/xen/arch/x86/hvm/vmx/vmx.c
> +++ b/xen/arch/x86/hvm/vmx/vmx.c
> @@ -57,6 +57,7 @@
> #include <asm/apic.h>
> #include <asm/hvm/nestedhvm.h>
> #include <asm/event.h>
> +#include <asm/monitor.h>
> #include <public/arch-x86/cpuid.h>
>
> static bool_t __initdata opt_force_ept;
> @@ -1262,7 +1263,8 @@ static void vmx_update_guest_cr(struct vcpu *v,
> unsigned int cr)
> v->arch.hvm_vmx.exec_control |= cr3_ctls;
>
> /* Trap CR3 updates if CR3 memory events are enabled. */
> - if ( v->domain->arch.monitor.mov_to_cr3_enabled )
> + if ( v->domain->arch.monitor.write_ctrlreg_enabled &
> + monitor_ctrlreg_bitmask(VM_EVENT_X86_CR3) )
> v->arch.hvm_vmx.exec_control |=
> CPU_BASED_CR3_LOAD_EXITING;
>
> vmx_update_cpu_exec_control(v);
> @@ -2010,7 +2012,7 @@ static int vmx_cr_access(unsigned long
> exit_qualification)
> unsigned long old = curr->arch.hvm_vcpu.guest_cr[0];
> curr->arch.hvm_vcpu.guest_cr[0] &= ~X86_CR0_TS;
> vmx_update_guest_cr(curr, 0);
> - hvm_event_cr0(curr->arch.hvm_vcpu.guest_cr[0], old);
> + hvm_event_cr(CR0, curr->arch.hvm_vcpu.guest_cr[0], old);
> HVMTRACE_0D(CLTS);
> break;
> }
> diff --git a/xen/arch/x86/monitor.c b/xen/arch/x86/monitor.c
> index d7b1c18..896acf7 100644
> --- a/xen/arch/x86/monitor.c
> +++ b/xen/arch/x86/monitor.c
> @@ -67,59 +67,42 @@ int monitor_domctl(struct domain *d, struct
> xen_domctl_monitor_op *mop)
>
> switch ( mop->event )
> {
> - case XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR0:
> + case XEN_DOMCTL_MONITOR_EVENT_WRITE_CTRLREG:
> {
> - bool_t status = ad->monitor.mov_to_cr0_enabled;
> -
> - rc = status_check(mop, status);
> - if ( rc )
> - return rc;
> -
> - ad->monitor.mov_to_cr0_sync = mop->u.mov_to_cr.sync;
> - ad->monitor.mov_to_cr0_onchangeonly =
> mop->u.mov_to_cr.onchangeonly;
> -
> - domain_pause(d);
> - ad->monitor.mov_to_cr0_enabled = !status;
> - domain_unpause(d);
> - break;
> - }
> -
> - case XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR3:
> - {
> - bool_t status = ad->monitor.mov_to_cr3_enabled;
> + unsigned int ctrlreg_bitmask =
> + monitor_ctrlreg_bitmask(mop->u.mov_to_cr.index);
> + bool_t status =
> + !!(ad->monitor.write_ctrlreg_enabled & ctrlreg_bitmask);
> struct vcpu *v;
>
> rc = status_check(mop, status);
> if ( rc )
> return rc;
>
> - ad->monitor.mov_to_cr3_sync = mop->u.mov_to_cr.sync;
> - ad->monitor.mov_to_cr3_onchangeonly =
> mop->u.mov_to_cr.onchangeonly;
> + if ( mop->u.mov_to_cr.sync )
> + ad->monitor.write_ctrlreg_sync |= ctrlreg_bitmask;
> + else
> + ad->monitor.write_ctrlreg_sync &= ~ctrlreg_bitmask;
>
> - domain_pause(d);
> - ad->monitor.mov_to_cr3_enabled = !status;
> - domain_unpause(d);
> + if ( mop->u.mov_to_cr.onchangeonly )
> + ad->monitor.write_ctrlreg_onchangeonly |= ctrlreg_bitmask;
> + else
> + ad->monitor.write_ctrlreg_onchangeonly &= ~ctrlreg_bitmask;
>
> - /* Latches new CR3 mask through CR0 code */
> - for_each_vcpu ( d, v )
> - hvm_funcs.update_guest_cr(v, 0);
> - break;
> - }
> + domain_pause(d);
>
> - case XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR4:
> - {
> - bool_t status = ad->monitor.mov_to_cr4_enabled;
> + if ( !status )
> + ad->monitor.write_ctrlreg_enabled |= ctrlreg_bitmask;
> + else
> + ad->monitor.write_ctrlreg_enabled &= ~ctrlreg_bitmask;
>
> - rc = status_check(mop, status);
> - if ( rc )
> - return rc;
> + domain_unpause(d);
>
> - ad->monitor.mov_to_cr4_sync = mop->u.mov_to_cr.sync;
> - ad->monitor.mov_to_cr4_onchangeonly =
> mop->u.mov_to_cr.onchangeonly;
> + if ( mop->u.mov_to_cr.index == VM_EVENT_X86_CR3 )
> + /* Latches new CR3 mask through CR0 code */
> + for_each_vcpu ( d, v )
> + hvm_funcs.update_guest_cr(v, 0);
>
> - domain_pause(d);
> - ad->monitor.mov_to_cr4_enabled = !status;
> - domain_unpause(d);
> break;
> }
>
> diff --git a/xen/include/asm-x86/domain.h b/xen/include/asm-x86/domain.h
> index 45b5283..a3c117f 100644
> --- a/xen/include/asm-x86/domain.h
> +++ b/xen/include/asm-x86/domain.h
> @@ -341,15 +341,9 @@ struct arch_domain
>
> /* Monitor options */
> struct {
> - uint16_t mov_to_cr0_enabled : 1;
> - uint16_t mov_to_cr0_sync : 1;
> - uint16_t mov_to_cr0_onchangeonly : 1;
> - uint16_t mov_to_cr3_enabled : 1;
> - uint16_t mov_to_cr3_sync : 1;
> - uint16_t mov_to_cr3_onchangeonly : 1;
> - uint16_t mov_to_cr4_enabled : 1;
> - uint16_t mov_to_cr4_sync : 1;
> - uint16_t mov_to_cr4_onchangeonly : 1;
> + uint16_t write_ctrlreg_enabled : 4;
> + uint16_t write_ctrlreg_sync : 4;
> + uint16_t write_ctrlreg_onchangeonly : 4;
> uint16_t mov_to_msr_enabled : 1;
> uint16_t mov_to_msr_extended : 1;
> uint16_t singlestep_enabled : 1;
> diff --git a/xen/include/asm-x86/hvm/event.h
> b/xen/include/asm-x86/hvm/event.h
> index bb757a1..5a75e05 100644
> --- a/xen/include/asm-x86/hvm/event.h
> +++ b/xen/include/asm-x86/hvm/event.h
> @@ -19,9 +19,8 @@
> #define __ASM_X86_HVM_EVENT_H__
>
> /* Called for current VCPU on crX/MSR changes by guest */
> -void hvm_event_cr0(unsigned long value, unsigned long old);
> -void hvm_event_cr3(unsigned long value, unsigned long old);
> -void hvm_event_cr4(unsigned long value, unsigned long old);
> +void hvm_event_cr(unsigned int index, unsigned long value, unsigned long
> old);
> +#define hvm_event_cr(what, new, old)
> hvm_event_cr(VM_EVENT_X86_##what, new, old)
> void hvm_event_msr(unsigned int msr, uint64_t value);
> /* Called for current VCPU: returns -1 if no listener */
> int hvm_event_int3(unsigned long gla);
> diff --git a/xen/include/asm-x86/monitor.h b/xen/include/asm-x86/monitor.h
> index 21b3e5b..d5815db 100644
> --- a/xen/include/asm-x86/monitor.h
> +++ b/xen/include/asm-x86/monitor.h
> @@ -26,6 +26,8 @@
> struct domain;
> struct xen_domctl_monitor_op;
>
> +#define monitor_ctrlreg_bitmask(ctrlreg_index) (1U << (ctrlreg_index))
> +
> int monitor_domctl(struct domain *d, struct xen_domctl_monitor_op *op);
>
> #endif /* __ASM_X86_MONITOR_H__ */
> diff --git a/xen/include/public/domctl.h b/xen/include/public/domctl.h
> index 0c0ea4a..32629f9 100644
> --- a/xen/include/public/domctl.h
> +++ b/xen/include/public/domctl.h
> @@ -1034,12 +1034,10 @@
> DEFINE_XEN_GUEST_HANDLE(xen_domctl_psr_cmt_op_t);
> #define XEN_DOMCTL_MONITOR_OP_ENABLE 0
> #define XEN_DOMCTL_MONITOR_OP_DISABLE 1
>
> -#define XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR0 0
> -#define XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR3 1
> -#define XEN_DOMCTL_MONITOR_EVENT_MOV_TO_CR4 2
> -#define XEN_DOMCTL_MONITOR_EVENT_MOV_TO_MSR 3
> -#define XEN_DOMCTL_MONITOR_EVENT_SINGLESTEP 4
> -#define XEN_DOMCTL_MONITOR_EVENT_SOFTWARE_BREAKPOINT 5
> +#define XEN_DOMCTL_MONITOR_EVENT_WRITE_CTRLREG 0
> +#define XEN_DOMCTL_MONITOR_EVENT_MOV_TO_MSR 1
> +#define XEN_DOMCTL_MONITOR_EVENT_SINGLESTEP 2
> +#define XEN_DOMCTL_MONITOR_EVENT_SOFTWARE_BREAKPOINT 3
>
> struct xen_domctl_monitor_op {
> uint32_t op; /* XEN_DOMCTL_MONITOR_OP_* */
> @@ -1050,6 +1048,8 @@ struct xen_domctl_monitor_op {
> */
> union {
> struct {
> + /* Which control register */
> + uint8_t index;
> /* Pause vCPU until response */
> uint8_t sync;
> /* Send event only on a change of value */
> diff --git a/xen/include/public/vm_event.h b/xen/include/public/vm_event.h
> index c7426de..577e971 100644
> --- a/xen/include/public/vm_event.h
> +++ b/xen/include/public/vm_event.h
> @@ -60,22 +60,24 @@
> #define VM_EVENT_REASON_MEM_SHARING 2
> /* Memory paging event */
> #define VM_EVENT_REASON_MEM_PAGING 3
> -/* CR0 was updated */
> -#define VM_EVENT_REASON_MOV_TO_CR0 4
> -/* CR3 was updated */
> -#define VM_EVENT_REASON_MOV_TO_CR3 5
> -/* CR4 was updated */
> -#define VM_EVENT_REASON_MOV_TO_CR4 6
> +/* A control register was updated */
> +#define VM_EVENT_REASON_WRITE_CTRLREG 4
> /* An MSR was updated. */
> -#define VM_EVENT_REASON_MOV_TO_MSR 7
> +#define VM_EVENT_REASON_MOV_TO_MSR 5
> /* Debug operation executed (e.g. int3) */
> -#define VM_EVENT_REASON_SOFTWARE_BREAKPOINT 8
> +#define VM_EVENT_REASON_SOFTWARE_BREAKPOINT 6
> /* Single-step (e.g. MTF) */
> -#define VM_EVENT_REASON_SINGLESTEP 9
> +#define VM_EVENT_REASON_SINGLESTEP 7
> +
> +/* Supported values for the vm_event_write_ctrlreg index. */
> +#define VM_EVENT_X86_CR0 0
> +#define VM_EVENT_X86_CR3 1
> +#define VM_EVENT_X86_CR4 2
> +#define VM_EVENT_X86_XCR0 3
>
> /*
> * Using a custom struct (not hvm_hw_cpu) so as to not fill
> - * the mem_event ring buffer too quickly.
> + * the vm_event ring buffer too quickly.
> */
> struct vm_event_regs_x86 {
> uint64_t rax;
> @@ -156,14 +158,15 @@ struct vm_event_mem_access {
> uint32_t _pad;
> };
>
> -struct vm_event_mov_to_cr {
> +struct vm_event_write_ctrlreg {
> + uint32_t index;
> + uint32_t _pad;
> uint64_t new_value;
> uint64_t old_value;
> };
>
> struct vm_event_debug {
> uint64_t gfn;
> - uint32_t _pad;
> };
>
> struct vm_event_mov_to_msr {
> @@ -196,7 +199,7 @@ typedef struct vm_event_st {
> struct vm_event_paging mem_paging;
> struct vm_event_sharing mem_sharing;
> struct vm_event_mem_access mem_access;
> - struct vm_event_mov_to_cr mov_to_cr;
> + struct vm_event_write_ctrlreg write_ctrlreg;
> struct vm_event_mov_to_msr mov_to_msr;
> struct vm_event_debug software_breakpoint;
> struct vm_event_debug singlestep;
> --
> 1.7.9.5
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event
2015-05-29 13:45 [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event Razvan Cojocaru
2015-06-01 6:56 ` Tian, Kevin
@ 2015-06-02 15:39 ` Ian Campbell
2015-06-02 15:43 ` Andrew Cooper
2015-06-02 16:03 ` Razvan Cojocaru
2015-06-04 13:40 ` Tim Deegan
2 siblings, 2 replies; 11+ messages in thread
From: Ian Campbell @ 2015-06-02 15:39 UTC (permalink / raw)
To: Razvan Cojocaru
Cc: kevin.tian, keir, jun.nakajima, stefano.stabellini, ian.jackson,
tim, xen-devel, eddie.dong, jbeulich, andrew.cooper3, wei.liu2
On Fri, 2015-05-29 at 16:45 +0300, Razvan Cojocaru wrote:
> As suggested by Andrew Cooper, this patch attempts to remove
> some redundancy and allow for an easier time when adding vm_events
> for new control registers in the future, by having a single
> VM_EVENT_REASON_WRITE_CTRLREG vm_event type, meant to serve CR0,
> CR3, CR4 and (newly introduced) XCR0. The actual control register
> will be deduced by the new .index field in vm_event_write_ctrlreg
> (renamed from vm_event_mov_to_cr). The patch has also modified
> the xen-access.c test - it is now able to log CR3 events.
>
> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
> Acked-by: Jan Beulich <jbeulich@suse.com>
Seems ok from the tools and arm side, so long as the xen-access.c test
is likely to build on ARM despite the new x86-isms (it looks like it to
me) and the following Q:
> +/* Supported values for the vm_event_write_ctrlreg index. */
> +#define VM_EVENT_X86_CR0 0
> +#define VM_EVENT_X86_CR3 1
> +#define VM_EVENT_X86_CR4 2
> +#define VM_EVENT_X86_XCR0 3
Is the intention for different architectures to use non-overlapping
number spaces? (i.e. ARM would start from 0x10000 or something)?
If not then the usages in xen-access.c are a little more problematic. I
can just about tolerate a tool on arm which asks "monitor x86 cr3" and
then never sees anything, but to get events for whatever ARM reg happens
to share the index instead would be wrong I think.
Ian.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event
2015-06-02 15:39 ` Ian Campbell
@ 2015-06-02 15:43 ` Andrew Cooper
2015-06-02 15:54 ` Ian Campbell
2015-06-02 16:03 ` Razvan Cojocaru
1 sibling, 1 reply; 11+ messages in thread
From: Andrew Cooper @ 2015-06-02 15:43 UTC (permalink / raw)
To: Ian Campbell, Razvan Cojocaru
Cc: kevin.tian, keir, jun.nakajima, stefano.stabellini, ian.jackson,
tim, xen-devel, eddie.dong, jbeulich, wei.liu2
On 02/06/15 16:39, Ian Campbell wrote:
> On Fri, 2015-05-29 at 16:45 +0300, Razvan Cojocaru wrote:
>> As suggested by Andrew Cooper, this patch attempts to remove
>> some redundancy and allow for an easier time when adding vm_events
>> for new control registers in the future, by having a single
>> VM_EVENT_REASON_WRITE_CTRLREG vm_event type, meant to serve CR0,
>> CR3, CR4 and (newly introduced) XCR0. The actual control register
>> will be deduced by the new .index field in vm_event_write_ctrlreg
>> (renamed from vm_event_mov_to_cr). The patch has also modified
>> the xen-access.c test - it is now able to log CR3 events.
>>
>> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
>> Acked-by: Jan Beulich <jbeulich@suse.com>
> Seems ok from the tools and arm side, so long as the xen-access.c test
> is likely to build on ARM despite the new x86-isms (it looks like it to
> me) and the following Q:
>
>> +/* Supported values for the vm_event_write_ctrlreg index. */
>> +#define VM_EVENT_X86_CR0 0
>> +#define VM_EVENT_X86_CR3 1
>> +#define VM_EVENT_X86_CR4 2
>> +#define VM_EVENT_X86_XCR0 3
> Is the intention for different architectures to use non-overlapping
> number spaces? (i.e. ARM would start from 0x10000 or something)?
>
> If not then the usages in xen-access.c are a little more problematic. I
> can just about tolerate a tool on arm which asks "monitor x86 cr3" and
> then never sees anything, but to get events for whatever ARM reg happens
> to share the index instead would be wrong I think.
When I suggested this, I expected each arch to maintain its own index
space and for these spaces to all start at 0, as there is very little
which is truly common at this level.
~Andrew
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event
2015-06-02 15:43 ` Andrew Cooper
@ 2015-06-02 15:54 ` Ian Campbell
0 siblings, 0 replies; 11+ messages in thread
From: Ian Campbell @ 2015-06-02 15:54 UTC (permalink / raw)
To: Andrew Cooper
Cc: kevin.tian, wei.liu2, jun.nakajima, Razvan Cojocaru,
stefano.stabellini, ian.jackson, tim, xen-devel, eddie.dong,
jbeulich, keir
On Tue, 2015-06-02 at 16:43 +0100, Andrew Cooper wrote:
> On 02/06/15 16:39, Ian Campbell wrote:
> > On Fri, 2015-05-29 at 16:45 +0300, Razvan Cojocaru wrote:
> >> As suggested by Andrew Cooper, this patch attempts to remove
> >> some redundancy and allow for an easier time when adding vm_events
> >> for new control registers in the future, by having a single
> >> VM_EVENT_REASON_WRITE_CTRLREG vm_event type, meant to serve CR0,
> >> CR3, CR4 and (newly introduced) XCR0. The actual control register
> >> will be deduced by the new .index field in vm_event_write_ctrlreg
> >> (renamed from vm_event_mov_to_cr). The patch has also modified
> >> the xen-access.c test - it is now able to log CR3 events.
> >>
> >> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
> >> Acked-by: Jan Beulich <jbeulich@suse.com>
> > Seems ok from the tools and arm side, so long as the xen-access.c test
> > is likely to build on ARM despite the new x86-isms (it looks like it to
> > me) and the following Q:
> >
> >> +/* Supported values for the vm_event_write_ctrlreg index. */
> >> +#define VM_EVENT_X86_CR0 0
> >> +#define VM_EVENT_X86_CR3 1
> >> +#define VM_EVENT_X86_CR4 2
> >> +#define VM_EVENT_X86_XCR0 3
> > Is the intention for different architectures to use non-overlapping
> > number spaces? (i.e. ARM would start from 0x10000 or something)?
> >
> > If not then the usages in xen-access.c are a little more problematic. I
> > can just about tolerate a tool on arm which asks "monitor x86 cr3" and
> > then never sees anything, but to get events for whatever ARM reg happens
> > to share the index instead would be wrong I think.
>
> When I suggested this, I expected each arch to maintain its own index
> space and for these spaces to all start at 0, as there is very little
> which is truly common at this level.
That's fine too, but implies that tests/xen-access.c therefore needs
some additional #ifdeffery.
Ian.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event
2015-06-02 15:39 ` Ian Campbell
2015-06-02 15:43 ` Andrew Cooper
@ 2015-06-02 16:03 ` Razvan Cojocaru
1 sibling, 0 replies; 11+ messages in thread
From: Razvan Cojocaru @ 2015-06-02 16:03 UTC (permalink / raw)
To: Ian Campbell
Cc: kevin.tian, keir, jun.nakajima, stefano.stabellini, ian.jackson,
tim, xen-devel, eddie.dong, jbeulich, andrew.cooper3, wei.liu2
On 06/02/2015 06:39 PM, Ian Campbell wrote:
> On Fri, 2015-05-29 at 16:45 +0300, Razvan Cojocaru wrote:
>> As suggested by Andrew Cooper, this patch attempts to remove
>> some redundancy and allow for an easier time when adding vm_events
>> for new control registers in the future, by having a single
>> VM_EVENT_REASON_WRITE_CTRLREG vm_event type, meant to serve CR0,
>> CR3, CR4 and (newly introduced) XCR0. The actual control register
>> will be deduced by the new .index field in vm_event_write_ctrlreg
>> (renamed from vm_event_mov_to_cr). The patch has also modified
>> the xen-access.c test - it is now able to log CR3 events.
>>
>> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
>> Acked-by: Jan Beulich <jbeulich@suse.com>
>
> Seems ok from the tools and arm side, so long as the xen-access.c test
> is likely to build on ARM despite the new x86-isms (it looks like it to
> me) and the following Q:
I think it should compile (though of course no events will be
delivered), but I'm also happy to drop the xen-access.c patch
completely. It's just been useful for me as a test and I thought it
might be helpful for somebody else, but certainly it's not required.
It would seem to be the simplest solution, the #ifdeffery for future ARM
events is probably not worth it.
Thanks,
Razvan
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event
2015-05-29 13:45 [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event Razvan Cojocaru
2015-06-01 6:56 ` Tian, Kevin
2015-06-02 15:39 ` Ian Campbell
@ 2015-06-04 13:40 ` Tim Deegan
2015-06-04 13:43 ` Tim Deegan
2 siblings, 1 reply; 11+ messages in thread
From: Tim Deegan @ 2015-06-04 13:40 UTC (permalink / raw)
To: Razvan Cojocaru
Cc: kevin.tian, wei.liu2, ian.campbell, stefano.stabellini,
jun.nakajima, andrew.cooper3, ian.jackson, xen-devel, eddie.dong,
jbeulich, keir
At 16:45 +0300 on 29 May (1432917959), Razvan Cojocaru wrote:
> As suggested by Andrew Cooper, this patch attempts to remove
> some redundancy and allow for an easier time when adding vm_events
> for new control registers in the future, by having a single
> VM_EVENT_REASON_WRITE_CTRLREG vm_event type, meant to serve CR0,
> CR3, CR4 and (newly introduced) XCR0. The actual control register
> will be deduced by the new .index field in vm_event_write_ctrlreg
> (renamed from vm_event_mov_to_cr). The patch has also modified
> the xen-access.c test - it is now able to log CR3 events.
>
> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
> Acked-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Tim Deegan <tim@xen.org>
FWIW, I think this:
> +void hvm_event_cr(unsigned int index, unsigned long value, unsigned long old);
> +#define hvm_event_cr(what, new, old) hvm_event_cr(VM_EVENT_X86_##what, new, old)
is pretty nasty, and would prefer the function to have a different
name from the macro, but I'm not going to push a v8 series out to v9
over it.
Tim.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event
2015-06-04 13:40 ` Tim Deegan
@ 2015-06-04 13:43 ` Tim Deegan
2015-06-04 13:47 ` Razvan Cojocaru
0 siblings, 1 reply; 11+ messages in thread
From: Tim Deegan @ 2015-06-04 13:43 UTC (permalink / raw)
To: Razvan Cojocaru
Cc: kevin.tian, wei.liu2, ian.campbell, stefano.stabellini,
jun.nakajima, andrew.cooper3, ian.jackson, xen-devel, eddie.dong,
jbeulich, keir
At 14:40 +0100 on 04 Jun (1433428815), Tim Deegan wrote:
> At 16:45 +0300 on 29 May (1432917959), Razvan Cojocaru wrote:
> > As suggested by Andrew Cooper, this patch attempts to remove
> > some redundancy and allow for an easier time when adding vm_events
> > for new control registers in the future, by having a single
> > VM_EVENT_REASON_WRITE_CTRLREG vm_event type, meant to serve CR0,
> > CR3, CR4 and (newly introduced) XCR0. The actual control register
> > will be deduced by the new .index field in vm_event_write_ctrlreg
> > (renamed from vm_event_mov_to_cr). The patch has also modified
> > the xen-access.c test - it is now able to log CR3 events.
> >
> > Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
> > Acked-by: Jan Beulich <jbeulich@suse.com>
>
> Acked-by: Tim Deegan <tim@xen.org>
Ah, I see I've acked an old version. The ack stands for v9, whough if
you're going to v10, can you please rename the macro to, e,g,
#define hvm_event_crX(what, new, old) \
hvm_event_cr(VM_EVENT_X86_##what, new, old)
Cheers,
Tim.
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event
2015-06-04 13:43 ` Tim Deegan
@ 2015-06-04 13:47 ` Razvan Cojocaru
2015-06-04 19:56 ` Jan Beulich
0 siblings, 1 reply; 11+ messages in thread
From: Razvan Cojocaru @ 2015-06-04 13:47 UTC (permalink / raw)
To: Tim Deegan
Cc: kevin.tian, wei.liu2, ian.campbell, stefano.stabellini,
jun.nakajima, andrew.cooper3, ian.jackson, xen-devel, eddie.dong,
jbeulich, keir
On 06/04/2015 04:43 PM, Tim Deegan wrote:
> At 14:40 +0100 on 04 Jun (1433428815), Tim Deegan wrote:
>> At 16:45 +0300 on 29 May (1432917959), Razvan Cojocaru wrote:
>>> As suggested by Andrew Cooper, this patch attempts to remove
>>> some redundancy and allow for an easier time when adding vm_events
>>> for new control registers in the future, by having a single
>>> VM_EVENT_REASON_WRITE_CTRLREG vm_event type, meant to serve CR0,
>>> CR3, CR4 and (newly introduced) XCR0. The actual control register
>>> will be deduced by the new .index field in vm_event_write_ctrlreg
>>> (renamed from vm_event_mov_to_cr). The patch has also modified
>>> the xen-access.c test - it is now able to log CR3 events.
>>>
>>> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
>>> Acked-by: Jan Beulich <jbeulich@suse.com>
>>
>> Acked-by: Tim Deegan <tim@xen.org>
>
> Ah, I see I've acked an old version. The ack stands for v9, whough if
> you're going to v10, can you please rename the macro to, e,g,
>
> #define hvm_event_crX(what, new, old) \
> hvm_event_cr(VM_EVENT_X86_##what, new, old)
Of course, if Jan (who originally proposed the macro) doesn't have any
objections, I'll rename it.
Thanks,
Razvan
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event
2015-06-04 13:47 ` Razvan Cojocaru
@ 2015-06-04 19:56 ` Jan Beulich
2015-06-04 20:53 ` Razvan Cojocaru
0 siblings, 1 reply; 11+ messages in thread
From: Jan Beulich @ 2015-06-04 19:56 UTC (permalink / raw)
To: rcojocaru, tim
Cc: kevin.tian, wei.liu2, eddie.dong, stefano.stabellini,
andrew.cooper3, ian.jackson, xen-devel, jun.nakajima, keir,
ian.campbell
>>> Razvan Cojocaru <rcojocaru@bitdefender.com> 06/04/15 3:46 PM >>>
>On 06/04/2015 04:43 PM, Tim Deegan wrote:
>> At 14:40 +0100 on 04 Jun (1433428815), Tim Deegan wrote:
>>> At 16:45 +0300 on 29 May (1432917959), Razvan Cojocaru wrote:
>>>> As suggested by Andrew Cooper, this patch attempts to remove
>>>> some redundancy and allow for an easier time when adding vm_events
>>>> for new control registers in the future, by having a single
>>>> VM_EVENT_REASON_WRITE_CTRLREG vm_event type, meant to serve CR0,
>>>> CR3, CR4 and (newly introduced) XCR0. The actual control register
>>>> will be deduced by the new .index field in vm_event_write_ctrlreg
>>>> (renamed from vm_event_mov_to_cr). The patch has also modified
>>>> the xen-access.c test - it is now able to log CR3 events.
>>>>
>>>> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
>>>> Acked-by: Jan Beulich <jbeulich@suse.com>
>>>
>>> Acked-by: Tim Deegan <tim@xen.org>
>>
>> Ah, I see I've acked an old version. The ack stands for v9, whough if
>> you're going to v10, can you please rename the macro to, e,g,
>>
>> #define hvm_event_crX(what, new, old) \
>> hvm_event_cr(VM_EVENT_X86_##what, new, old)
>
>Of course, if Jan (who originally proposed the macro) doesn't have any
>objections, I'll rename it.
While I personally think it's better the way it is now, I don't object to it
being renamed, even less so considering that Tim is the maintainer
of that code and hence should have the final say.
Jan
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event
2015-06-04 19:56 ` Jan Beulich
@ 2015-06-04 20:53 ` Razvan Cojocaru
0 siblings, 0 replies; 11+ messages in thread
From: Razvan Cojocaru @ 2015-06-04 20:53 UTC (permalink / raw)
To: Jan Beulich, tim
Cc: kevin.tian, wei.liu2, eddie.dong, stefano.stabellini,
andrew.cooper3, ian.jackson, xen-devel, jun.nakajima, keir,
ian.campbell
On 06/04/2015 10:56 PM, Jan Beulich wrote:
>>>> Razvan Cojocaru <rcojocaru@bitdefender.com> 06/04/15 3:46 PM >>>
>> On 06/04/2015 04:43 PM, Tim Deegan wrote:
>>> At 14:40 +0100 on 04 Jun (1433428815), Tim Deegan wrote:
>>>> At 16:45 +0300 on 29 May (1432917959), Razvan Cojocaru wrote:
>>>>> As suggested by Andrew Cooper, this patch attempts to remove
>>>>> some redundancy and allow for an easier time when adding vm_events
>>>>> for new control registers in the future, by having a single
>>>>> VM_EVENT_REASON_WRITE_CTRLREG vm_event type, meant to serve CR0,
>>>>> CR3, CR4 and (newly introduced) XCR0. The actual control register
>>>>> will be deduced by the new .index field in vm_event_write_ctrlreg
>>>>> (renamed from vm_event_mov_to_cr). The patch has also modified
>>>>> the xen-access.c test - it is now able to log CR3 events.
>>>>>
>>>>> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
>>>>> Acked-by: Jan Beulich <jbeulich@suse.com>
>>>>
>>>> Acked-by: Tim Deegan <tim@xen.org>
>>>
>>> Ah, I see I've acked an old version. The ack stands for v9, whough if
>>> you're going to v10, can you please rename the macro to, e,g,
>>>
>>> #define hvm_event_crX(what, new, old) \
>>> hvm_event_cr(VM_EVENT_X86_##what, new, old)
>>
>> Of course, if Jan (who originally proposed the macro) doesn't have any
>> objections, I'll rename it.
>
> While I personally think it's better the way it is now, I don't object to it
> being renamed, even less so considering that Tim is the maintainer
> of that code and hence should have the final say.
Understood, in that case I'll submit V10 tomorrow with the macro renamed
to hvm_event_crX() as Tim has suggested. I am assuming that, since this
will be the only change, it's fine to keep all the acks.
Thanks,
Razvan
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2015-06-04 20:53 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-29 13:45 [PATCH V8] xen/vm_event: Clean up control-register-write vm_events and add XCR0 event Razvan Cojocaru
2015-06-01 6:56 ` Tian, Kevin
2015-06-02 15:39 ` Ian Campbell
2015-06-02 15:43 ` Andrew Cooper
2015-06-02 15:54 ` Ian Campbell
2015-06-02 16:03 ` Razvan Cojocaru
2015-06-04 13:40 ` Tim Deegan
2015-06-04 13:43 ` Tim Deegan
2015-06-04 13:47 ` Razvan Cojocaru
2015-06-04 19:56 ` Jan Beulich
2015-06-04 20:53 ` Razvan Cojocaru
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.