* Re: [x86] - technical questions about HV implementation on Intel VT
[not found] ` <200904071926.30643.goretux@gmail.com>
@ 2009-04-14 12:24 ` Eric Lacombe
2009-04-20 17:53 ` Eric Lacombe
0 siblings, 1 reply; 6+ messages in thread
From: Eric Lacombe @ 2009-04-14 12:24 UTC (permalink / raw)
To: kvm; +Cc: Avi Kivity
[-- Attachment #1: Type: text/plain, Size: 5480 bytes --]
Hi,
I analysed some of my logs and see that sometimes, two successive VM-exits
handle exactly the same instruction (a wrmsr with the same MSR ID and data),
like below. Is it not strange ? and could it help to focus on the problem I
have (the freeze of the machine).
I can understand that you have no time to spend on my problem, but could
someone give me some ideas on what I could check/print/... in order to fix my
problem.
Thanks in advance,
Eric Lacombe
I also join the complete log file from which is extracted this sample.
## Hytux: VM-EXIT (#000024) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000024]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f83583e56e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000002 GRSP(VMCS): 0xffff88007854da18 GRIP(VMCS):
0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f83583e56e0 rbx: 0xffff88007d127280 rcx: 0x00000000c0000100 rdx:
0x0000000000007f83
rsi: 0x0000000000000000 rdi: 0xffff88007d03e050 rbp: 0xffff88007d03e050 rsp:
0xffff88007854da18
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0xffff88007d38c640 r11:
0x0000000000000001
r12: 0x0000000000000000 r13: 0xffff8800790786c0 r14: 0xffffffff80818fa0 r15:
0x0000000000000000
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078532000
----------------------------------------------------------
## Hytux: VM-EXIT (#000025) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000025]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f83583e56e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000002 GRSP(VMCS): 0xffff88007854da18 GRIP(VMCS):
0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f83583e56e0 rbx: 0xffff88007d127280 rcx: 0x00000000c0000100 rdx:
0x0000000000007f83
rsi: 0x0000000000000000 rdi: 0xffff88007d03e050 rbp: 0xffff88007d03e050 rsp:
0xffff88007854da18
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0xffff88007d38c640 r11:
0xffffffff80241868
r12: 0x0000000000000000 r13: 0xffff880079590980 r14: 0xffffffff80818fa0 r15:
0x0000000000000000
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078532000
----------------------------------------------------------
Le Tuesday 7 April 2009 19:26:30 Eric Lacombe, vous avez écrit :
> Hello,
>
> I forgot to mention that my module only supports a single processor (that's
> why I run a kernel with SMP disabled).
>
> I was able to run my module on two different machines (both are
> core2-based) and that led to the same outcome: both machines freeze without
> any bad printk messages :/
>
> I join another log file where the guest registers are always dumped for
> each VM-exit. The log file begins with the loading of the module and ends
> when the system crash.
>
> Could someone look at it please and maybe have an hint on what occurs ?
>
> If you need other information, just ask me and I will fulfil your needs.
>
> Best regards,
>
> Eric
>
> Le mardi 24 mars 2009 18:22:11 Eric Lacombe, vous avez écrit :
> > Hello,
> >
> > I work on the implementation of a "particular" hypervisor for my PhD and
> > I face a problem I have not resolved yet. Let me explain it.
> >
> > I have a module that when it is loaded triggers vmx mode, and load the
> > current running kernel in a VM. The code seems to work at some extents.
> > For the moment, I just handle the mandatory vm-exit (with my CPU: cr3,
> > msr). I log information of each VM-exit (if I my module is loaded with my
> > debug parameter), and see CR3 accesses, wrmsr execution, etc.
> > After some time the machine freeze, there is no information logged by
> > printk. The sysrq key do not work anymore (at least do not print
> > information on the console) but some interrupt handling seems to work as
> > the num-lock key of the keyboard causes the LED to light up (only with X
> > started).
> >
> > Also, after loading the module (without X started), the machine succeed
> > in executing a command like "echo test", but if I try a "ls" the machine
> > instantaneously freezes, and no special logging is performed (my
> > hypervisor does not printk a problem on the console). When I load the
> > module from X, the machine freezes before I can execute a command
> > (however a lot of vm-exit are still logged).
> >
> > I will be very glad if you have any idea of what occurs here ;)
> > For that purpose, I join an output from my module from the loading
> > process to the system crash, when running under X.
> > Notes: - I only dump guest register contents for the first 10 vm-exit.
> > - I use the netconsole provided by the kernel to get the logs.
> >
> > If you need more information, just ask me.
> >
> > Thanks in advance,
> >
> > Eric Lacombe
> >
> > PS: as I am not subscribed to the list, please do not forget to include
> > my address.
[-- Attachment #2: hytux-14-04[03].log --]
[-- Type: text/x-log, Size: 73254 bytes --]
Hytux Loaded
CPUID.1 -> ECX = 000000000008e3fd
CPUID.1 -> ECX.VMX[bit5] = 1
Hytux: VMX-conf:
vmexit_ctl: 0x36fff
vmentry_ctl: 0x13ff
pin_based_exec_ctl: 0x16
cpu_based_exec_ctl: 0x401e172
cpu_based_exec_ctl2: 0x0
------------------
Hytux: successful VMXON execution!
Hytux: VM created!
Hytux: Hypervisor stack created!
Hytux: GUEST - CRs: CR0: 0x8005003b, CR3: 0x6d4fc000, CR4: 0x26e0
Hytux: GUEST - CS:
Selector: 0x10
Base: 0x0
Limit: 0xfffff
AR bytes: 0xa09b
Hytux: GUEST - DS:
Selector: 0x18
Base: 0x0
Limit: 0xfffff
AR bytes: 0xc093
Hytux: GUEST - FS: Base: 0x7f4fb36df6e0
Hytux: GUEST - GS: Base: 0xffffffff80850010
Hytux: GUEST - LDTR:
Selector: 0x50
Base: 0x0
Limit: 0x0
AR bytes: 0x0
Hytux: GUEST - TR:
Selector: 0x40
Base: 0xffffffff80741900
Limit: 0x2087
AR bytes: 0x8b
Hytux: GUEST - GDT:
Base: 0xffffffff80748000
Limit: 0x7f
Hytux: GUEST - IDT:
Base: 0xffffffff8084f000
Limit: 0xfff
Hytux: GUEST DEBUG:
dr7: 0x400
DebugCtlMsr: 0x1
Hytux: stage 1
Hytux: stage 2
Hytux: We are now in VMX non-root mode!
## Hytux: VM-EXIT (#000001) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000001]: mov_to_cr: regid=0x0, reg=0x78530000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff88006d57bd58 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000078530000 rbx: 0xffff88007c1c13c0 rcx: 0xffff8800795b96d8 rdx: 0x0000000000000000
rsi: 0xffff8800795b85e0 rdi: 0xffff880078530000 rbp: 0xffff88006d57bdc8 rsp: 0xffff88006d57bd58
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0xffff88007506f380 r14: 0x0000000000008000 r15: 0x0000000000603010
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078530000
----------------------------------------------------------
## Hytux: VM-EXIT (#000002) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000002]: mov_to_cr: regid=0x0, reg=0x75d75000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff8800785c9918 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000075d75000 rbx: 0xffff8800790780c0 rcx: 0x0000000000000000 rdx: 0x0000000000000000
rsi: 0xffff880075d93690 rdi: 0xffff880075d75000 rbp: 0xffff8800785c9988 rsp: 0xffff8800785c9918
r8: 0xffff88007d1327e8 r9: 0x00000000ffffffff r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0xffff88007c1c13c0 r14: 0x0000000000008000 r15: 0x0000000000603010
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000075d75000
----------------------------------------------------------
## Hytux: VM-EXIT (#000003) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000003]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f6f56ffe6e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000006 GRSP(VMCS): 0xffff880075db5a18 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f6f56ffe6e0 rbx: 0xffff880075d93690 rcx: 0x00000000c0000100 rdx: 0x0000000000007f6f
rsi: 0x0000000000000063 rdi: 0xffff8800795b85e0 rbp: 0xffff8800795b85e0 rsp: 0xffff880075db5a18
r8: 0xffff88007d1327e8 r9: 0x00000000ffffffff r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0xffff88007c1c13c0 r14: 0x0000000000008000 r15: 0x0000000000603010
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000075d75000
----------------------------------------------------------
## Hytux: VM-EXIT (#000004) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000004]: mov_to_cr: regid=0x0, reg=0x78530000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff880075db5a58 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000078530000 rbx: 0xffff88007c1c13c0 rcx: 0xffff8800795b8628 rdx: 0x0000000000000000
rsi: 0xffff8800795b9690 rdi: 0xffff880078530000 rbp: 0xffff880075db5ac8 rsp: 0xffff880075db5a58
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0xffff8800790780c0 r14: 0x0000000000008000 r15: 0x0000000000603010
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078530000
----------------------------------------------------------
## Hytux: VM-EXIT (#000005) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000005]: mov_to_cr: regid=0x0, reg=0x78467000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff8800785cb918 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000078467000 rbx: 0xffff880079700680 rcx: 0xffff880075ffec38 rdx: 0x0000000000000000
rsi: 0xffff88007d1327a0 rdi: 0xffff880078467000 rbp: 0xffff8800785cb988 rsp: 0xffff8800785cb918
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0xffff88007c1c13c0 r14: 0x0000000000008000 r15: 0x0000000000603010
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078467000
----------------------------------------------------------
## Hytux: VM-EXIT (#000006) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000006]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f89e82696e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000003 GRSP(VMCS): 0xffff88007847dd88 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f89e82696e0 rbx: 0xffff88007d1327a0 rcx: 0x00000000c0000100 rdx: 0x0000000000007f89
rsi: 0x0000000000000063 rdi: 0xffff8800795b9690 rbp: 0xffff8800795b9690 rsp: 0xffff88007847dd88
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0xffff88007c1c13c0 r14: 0x0000000000008000 r15: 0x0000000000603010
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078467000
----------------------------------------------------------
## Hytux: VM-EXIT (#000007) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000007]: mov_to_cr: regid=0x0, reg=0x78530000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff88007847ddc8 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000078530000 rbx: 0xffff88007c1c13c0 rcx: 0xffff8800795b96d8 rdx: 0x0000000000000000
rsi: 0xffff8800795b85e0 rdi: 0xffff880078530000 rbp: 0xffff88007847de38 rsp: 0xffff88007847ddc8
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0xffff880079700680 r14: 0x0000000000008000 r15: 0x0000000000603010
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078530000
----------------------------------------------------------
## Hytux: VM-EXIT (#000008) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1f, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000008]: handle_rdmsr: ecx=0xe8 (MSR id), data=0x12263c271
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88007c50de10 GRIP(VMCS): 0xffffffff802177c5
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000002263c271 rbx: 0x00000000ffffffea rcx: 0x00000000000000e8 rdx: 0x0000000000000001
rsi: 0x00000000000000e8 rdi: 0x0000000000000001 rbp: 0xffff88007c4877c0 rsp: 0xffff88007c50de10
r8: 0xffff88007c50c000 r9: 0xffffffff802263eb r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0x00000000000001d2 r14: 0x0000000000000000 r15: 0x0000000000000005
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078530000
----------------------------------------------------------
## Hytux: VM-EXIT (#000009) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1f, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000009]: handle_rdmsr: ecx=0xe7 (MSR id), data=0x14949780c
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000206 GRSP(VMCS): 0xffff88007c50de10 GRIP(VMCS): 0xffffffff802177da
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000004949780c rbx: 0x00000000ffffffea rcx: 0x00000000000000e7 rdx: 0x0000000000000001
rsi: 0x00000000000000e8 rdi: 0x0000000000000001 rbp: 0xffff88007c4877c0 rsp: 0xffff88007c50de10
r8: 0x000000012263c271 r9: 0x00000000000000e7 r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0x00000000000001d2 r14: 0x0000000000000000 r15: 0x0000000000000005
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078530000
----------------------------------------------------------
## Hytux: VM-EXIT (#000010) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000010]: handle_wrmsr: ecx=0xe8 (MSR id), data=0x0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88007c50de10 GRIP(VMCS): 0xffffffff802177eb
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000000000000 rbx: 0x00000000ffffffea rcx: 0x00000000000000e8 rdx: 0x0000000000000000
rsi: 0x00000000000000e8 rdi: 0x000000014949780c rbp: 0xffff88007c4877c0 rsp: 0xffff88007c50de10
r8: 0x000000012263c271 r9: 0x00000000000000e7 r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0x00000000000001d2 r14: 0x0000000000000000 r15: 0x0000000000000005
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078530000
----------------------------------------------------------
## Hytux: VM-EXIT (#000011) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000011]: handle_wrmsr: ecx=0xe7 (MSR id), data=0x0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88007c50de10 GRIP(VMCS): 0xffffffff802177f0
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000000000000 rbx: 0x00000000ffffffea rcx: 0x00000000000000e7 rdx: 0x0000000000000000
rsi: 0x00000000000000e8 rdi: 0x000000014949780c rbp: 0xffff88007c4877c0 rsp: 0xffff88007c50de10
r8: 0x000000012263c271 r9: 0x00000000000000e7 r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0x00000000000001d2 r14: 0x0000000000000000 r15: 0x0000000000000005
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078530000
----------------------------------------------------------
## Hytux: VM-EXIT (#000012) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000012]: mov_to_cr: regid=0x0, reg=0x78532000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff88007c50dd80 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000078532000 rbx: 0xffff880079590980 rcx: 0x0000000000000000 rdx: 0x0000000000000000
rsi: 0xffff88007d127280 rdi: 0xffff880078532000 rbp: 0xffff88007c50ddf0 rsp: 0xffff88007c50dd80
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0xffff88007c1c13c0 r14: 0x0000000000000000 r15: 0x0000000000000005
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078532000
----------------------------------------------------------
## Hytux: VM-EXIT (#000013) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000013]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f83583e56e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000002 GRSP(VMCS): 0xffff88007854da18 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f83583e56e0 rbx: 0xffff88007d127280 rcx: 0x00000000c0000100 rdx: 0x0000000000007f83
rsi: 0x0000000000000000 rdi: 0xffff88007c5a2eb0 rbp: 0xffff88007c5a2eb0 rsp: 0xffff88007854da18
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0xffff88007c1c13c0 r14: 0x0000000000000000 r15: 0x0000000000000005
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078532000
----------------------------------------------------------
## Hytux: VM-EXIT (#000014) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000014]: mov_to_cr: regid=0x0, reg=0x78530000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff88007854da58 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000078530000 rbx: 0xffff88007c1c13c0 rcx: 0xffff8800795b8628 rdx: 0x0000000000000000
rsi: 0xffff8800795b9690 rdi: 0xffff880078530000 rbp: 0xffff88007854dac8 rsp: 0xffff88007854da58
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0xffff880079590980 r14: 0x0000000000000000 r15: 0x0000000000000005
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078530000
----------------------------------------------------------
## Hytux: VM-EXIT (#000015) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000015]: mov_to_cr: regid=0x0, reg=0x75d15000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff8800785cb918 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000075d15000 rbx: 0xffff8800790783c0 rcx: 0x0000000000000000 rdx: 0x0000000000000000
rsi: 0xffff880075d93100 rdi: 0xffff880075d15000 rbp: 0xffff8800785cb988 rsp: 0xffff8800785cb918
r8: 0xffff88007d03e098 r9: 0x00000000ffffffff r10: 0x0000000001a17180 r11: 0xffff8800795b85e0
r12: 0xffff8800785cbdb8 r13: 0xffff88007c1c13c0 r14: 0x0000000000000000 r15: 0x0000000000000000
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000075d15000
----------------------------------------------------------
## Hytux: VM-EXIT (#000016) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000016]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7fa1e8a036e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000003 GRSP(VMCS): 0xffff880075d49a18 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007fa1e8a036e0 rbx: 0xffff880075d93100 rcx: 0x00000000c0000100 rdx: 0x0000000000007fa1
rsi: 0x0000000000000063 rdi: 0xffff8800795b9690 rbp: 0xffff8800795b9690 rsp: 0xffff880075d49a18
r8: 0xffff88007d03e098 r9: 0x00000000ffffffff r10: 0x0000000001a17180 r11: 0xffff8800795b85e0
r12: 0x0000000000000000 r13: 0xffff88007c1c13c0 r14: 0x0000000000000000 r15: 0x0000000000000000
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000075d15000
----------------------------------------------------------
## Hytux: VM-EXIT (#000017) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000017]: mov_to_cr: regid=0x0, reg=0x78532000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff880075d49a58 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000078532000 rbx: 0xffff880079590980 rcx: 0x0000000000000000 rdx: 0x0000000000000000
rsi: 0xffff88007d127280 rdi: 0xffff880078532000 rbp: 0xffff880075d49ac8 rsp: 0xffff880075d49a58
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000001a17180 r11: 0xffff8800795b85e0
r12: 0x0000000000000000 r13: 0xffff8800790783c0 r14: 0x0000000000000000 r15: 0x0000000000000000
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078532000
----------------------------------------------------------
## Hytux: VM-EXIT (#000018) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000018]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f83583e56e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000002 GRSP(VMCS): 0xffff88007854da18 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f83583e56e0 rbx: 0xffff88007d127280 rcx: 0x00000000c0000100 rdx: 0x0000000000007f83
rsi: 0x0000000000000000 rdi: 0xffff880075d93100 rbp: 0xffff880075d93100 rsp: 0xffff88007854da18
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000001a17180 r11: 0xffff8800795b85e0
r12: 0x0000000000000000 r13: 0xffff8800790783c0 r14: 0x0000000000000000 r15: 0x0000000000000000
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078532000
----------------------------------------------------------
## Hytux: VM-EXIT (#000019) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000019]: mov_to_cr: regid=0x0, reg=0x75f69000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff88007854da58 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000075f69000 rbx: 0xffff880075d5e680 rcx: 0x0000000000000000 rdx: 0x0000000000000000
rsi: 0xffff880075dfcbb0 rdi: 0xffff880075f69000 rbp: 0xffff88007854dac8 rsp: 0xffff88007854da58
r8: 0xffff88007d03e098 r9: 0x00000000ffffffff r10: 0x0000000001a17180 r11: 0xffff8800795b85e0
r12: 0x0000000000000000 r13: 0xffff880079590980 r14: 0x0000000000000000 r15: 0x0000000000000000
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000075f69000
----------------------------------------------------------
## Hytux: VM-EXIT (#000020) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000020]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f0601ea36e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000006 GRSP(VMCS): 0xffff880075f838d8 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f0601ea36e0 rbx: 0xffff880075dfcbb0 rcx: 0x00000000c0000100 rdx: 0x0000000000007f06
rsi: 0x0000000000000000 rdi: 0xffff88007d127280 rbp: 0xffff88007d127280 rsp: 0xffff880075f838d8
r8: 0xffff88007d03e098 r9: 0x00000000ffffffff r10: 0x0000000001a17180 r11: 0xffff8800795b85e0
r12: 0x0000000000000000 r13: 0xffff880079590980 r14: 0x0000000000000000 r15: 0x0000000000000000
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000075f69000
----------------------------------------------------------
## Hytux: VM-EXIT (#000021) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000021]: mov_to_cr: regid=0x0, reg=0x78530000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff880075f83918 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000078530000 rbx: 0xffff88007c1c13c0 rcx: 0xffff8800795b96d8 rdx: 0x0000000000000000
rsi: 0xffff8800795b85e0 rdi: 0xffff880078530000 rbp: 0xffff880075f83988 rsp: 0xffff880075f83918
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000001a17180 r11: 0xffff8800795b85e0
r12: 0x0000000000000000 r13: 0xffff880075d5e680 r14: 0x0000000000000000 r15: 0x0000000000000000
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078530000
----------------------------------------------------------
## Hytux: VM-EXIT (#000022) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000022]: mov_to_cr: regid=0x0, reg=0x75c48000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff88007d04be00 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000075c48000 rbx: 0xffff8800790786c0 rcx: 0xffff88007d03e098 rdx: 0x0000000000000000
rsi: 0xffff88007c04ccb0 rdi: 0xffff880075c48000 rbp: 0xffff88007d04be70 rsp: 0xffff88007d04be00
r8: 0xffff8800795c4668 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000000000001
r12: 0xffff88007d008f00 r13: 0xffff88007c1c13c0 r14: 0xffffffff80818fa0 r15: 0x0000000000000000
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000075c48000
----------------------------------------------------------
## Hytux: VM-EXIT (#000023) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000023]: mov_to_cr: regid=0x0, reg=0x78532000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff88007d04bd58 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000078532000 rbx: 0xffff880079590980 rcx: 0x0000000000000000 rdx: 0x0000000000000000
rsi: 0xffff88007d127280 rdi: 0xffff880078532000 rbp: 0xffff88007d04bdc8 rsp: 0xffff88007d04bd58
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0xffff88007d38c640 r11: 0x0000000000000001
r12: 0x0000000000000246 r13: 0xffff8800790786c0 r14: 0xffffffff80818fa0 r15: 0x0000000000000000
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078532000
----------------------------------------------------------
## Hytux: VM-EXIT (#000024) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000024]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f83583e56e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000002 GRSP(VMCS): 0xffff88007854da18 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f83583e56e0 rbx: 0xffff88007d127280 rcx: 0x00000000c0000100 rdx: 0x0000000000007f83
rsi: 0x0000000000000000 rdi: 0xffff88007d03e050 rbp: 0xffff88007d03e050 rsp: 0xffff88007854da18
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0xffff88007d38c640 r11: 0x0000000000000001
r12: 0x0000000000000000 r13: 0xffff8800790786c0 r14: 0xffffffff80818fa0 r15: 0x0000000000000000
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078532000
----------------------------------------------------------
## Hytux: VM-EXIT (#000025) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000025]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f83583e56e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000002 GRSP(VMCS): 0xffff88007854da18 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f83583e56e0 rbx: 0xffff88007d127280 rcx: 0x00000000c0000100 rdx: 0x0000000000007f83
rsi: 0x0000000000000000 rdi: 0xffff88007d03e050 rbp: 0xffff88007d03e050 rsp: 0xffff88007854da18
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0xffff88007d38c640 r11: 0xffffffff80241868
r12: 0x0000000000000000 r13: 0xffff880079590980 r14: 0xffffffff80818fa0 r15: 0x0000000000000000
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078532000
----------------------------------------------------------
## Hytux: VM-EXIT (#000026) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000026]: mov_to_cr: regid=0x0, reg=0x78530000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff88007854da58 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000078530000 rbx: 0xffff88007c1c13c0 rcx: 0xffff8800795b8628 rdx: 0x0000000000000000
rsi: 0xffff8800795b9690 rdi: 0xffff880078530000 rbp: 0xffff88007854dac8 rsp: 0xffff88007854da58
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x000000007c5d7200 r11: 0xffff88007d03e050
r12: 0x0000000000000000 r13: 0xffff880079590980 r14: 0x0000000000000000 r15: 0xffff88007854dba8
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078530000
----------------------------------------------------------
## Hytux: VM-EXIT (#000027) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000027]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff88007c48fc90 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffff88007506f380 rcx: 0xffff88007c5a2ef8 rdx: 0x0000000000000000
rsi: 0xffff880075ffebf0 rdi: 0xffff88006d4fc000 rbp: 0xffff88007c48fd00 rsp: 0xffff88007c48fc90
r8: 0xffff880075d936d8 r9: 0x0000000000000000 r10: 0xffff88007c590000 r11: 0x000000308029eb0a
r12: 0xffff88007c48fd90 r13: 0xffff88007c1c13c0 r14: 0x0000000000000002 r15: 0xffffffff8029eb0a
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000028) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000028]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f4fb36df6e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000003 GRSP(VMCS): 0xffff88006d57bd18 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f4fb36df6e0 rbx: 0xffff880075ffebf0 rcx: 0x00000000c0000100 rdx: 0x0000000000007f4f
rsi: 0x0000000000000000 rdi: 0xffff88007c04d7d0 rbp: 0xffff88007c04d7d0 rsp: 0xffff88006d57bd18
r8: 0xffff880075d936d8 r9: 0x0000000000000000 r10: 0xffff88007c590000 r11: 0x000000308029eb0a
r12: 0x0000000000000000 r13: 0xffff88007c1c13c0 r14: 0x0000000000000002 r15: 0xffffffff8029eb0a
----------------------------------------------------------
cr2: 0x0000000000615618 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000029) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000029]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe2000185d268 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0x0000000000000003 rdi: 0x0000000000000001 rbp: 0x0000000000608000 rsp: 0xffff88006d57bd88
r8: 0x0000000000000008 r9: 0xffff880001101340 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0x0000000000000000 r13: 0x0000000000624000 r14: 0x0000000000624000 r15: 0x0000000000000067
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000030) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000030]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe2000185d268 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0x0000000000000003 rdi: 0x0000000000000001 rbp: 0x0000000000608000 rsp: 0xffff88006d57bd88
r8: 0x0000000000000008 r9: 0xffff880001101340 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0x0000000000000000 r13: 0x0000000000624000 r14: 0x0000000000624000 r15: 0x0000000000000067
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000031) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000031]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b649e8 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb316f000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b62138 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0xffffffffffffffe7 r13: 0x00007f4fb3200000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000032) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000032]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b649e8 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb316f000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b62138 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0xffffffffffffffe7 r13: 0x00007f4fb3200000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000033) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000033]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b395c8 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb3177000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b38b80 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0x0000000000000000 r13: 0x00007f4fb3200000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000034) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000034]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b395c8 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb3177000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b38b80 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0x0000000000000000 r13: 0x00007f4fb3200000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000035) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000035]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b60228 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb317f000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b39440 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0x0000000000000000 r13: 0x00007f4fb3200000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000036) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000036]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b60228 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb317f000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b39440 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0x0000000000000000 r13: 0x00007f4fb3200000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000037) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000037]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b60ca8 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb3187000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b60b20 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0x0000000000000000 r13: 0x00007f4fb3200000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000038) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000038]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b60ca8 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb3187000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b60b20 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0x0000000000000000 r13: 0x00007f4fb3200000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000039) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000039]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b37808 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb31e5000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b37878 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0xffffffffffffffaa r13: 0x00007f4fb3200000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000040) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000040]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b37808 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb31e5000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b37878 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0xffffffffffffffaa r13: 0x00007f4fb3200000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000041) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000041]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b389c0 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb31f4000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b38aa0 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0xfffffffffffffff9 r13: 0x00007f4fb3200000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000042) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000042]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b389c0 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb31f4000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b38aa0 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0xfffffffffffffff9 r13: 0x00007f4fb3200000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000043) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000043]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b61c30 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb328c000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b36c38 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0xffffffffffffff70 r13: 0x00007f4fb32d3000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000044) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000044]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b61c30 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff88006d559678 rdi: 0x0000000000000001 rbp: 0x00007f4fb328c000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b36c38 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0x0000000000000246
r12: 0xffffffffffffff70 r13: 0x00007f4fb32d3000 r14: 0x00007f4fb32d3000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000045) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000045]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f4fb36df6e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000003 GRSP(VMCS): 0xffff88006d57bcb8 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f4fb36df6e0 rbx: 0xffff880075ffebf0 rcx: 0x00000000c0000100 rdx: 0x0000000000007f4f
rsi: 0x0000000000000000 rdi: 0xffff88007c04d7d0 rbp: 0xffff88007c04d7d0 rsp: 0xffff88006d57bcb8
r8: 0xffff880075d936d8 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0xffffffff8038c23c
r12: 0x0000000000000000 r13: 0xffff88007506f380 r14: 0x0000000000000002 r15: 0xffffffff8029eb0a
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000046) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000046]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe2000185d3f0 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0x0000000000000003 rdi: 0x0000000000000001 rbp: 0x00007f4fb34d5000 rsp: 0xffff88006d57bd88
r8: 0x0000000000000008 r9: 0xffff880001101340 r10: 0x0000000000000002 r11: 0xffffffff8038c23c
r12: 0xfffffffffffffdbf r13: 0x00007f4fb34d6000 r14: 0x00007f4fb34d6000 r15: 0x0000000000000065
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000047) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000047]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe2000185d3f0 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0x0000000000000003 rdi: 0x0000000000000001 rbp: 0x00007f4fb34d5000 rsp: 0xffff88006d57bd88
r8: 0x0000000000000008 r9: 0xffff880001101340 r10: 0x0000000000000002 r11: 0xffffffff8038c23c
r12: 0xfffffffffffffdbf r13: 0x00007f4fb34d6000 r14: 0x00007f4fb34d6000 r15: 0x0000000000000065
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000048) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000048]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b68f78 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff880075021480 rdi: 0x0000000000000001 rbp: 0x00007f4fb34de000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b68f40 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0xffffffff8038c23c
r12: 0xffffffffffffffff r13: 0x00007f4fb34fb000 r14: 0x00007f4fb34fb000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000049) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000049]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b68f78 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff880075021480 rdi: 0x0000000000000001 rbp: 0x00007f4fb34de000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b68f40 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0xffffffff8038c23c
r12: 0xffffffffffffffff r13: 0x00007f4fb34fb000 r14: 0x00007f4fb34fb000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000050) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000050]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b355e8 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff880075021480 rdi: 0x0000000000000001 rbp: 0x00007f4fb34e6000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b354d0 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0xffffffff8038c23c
r12: 0x0000000000000000 r13: 0x00007f4fb34fb000 r14: 0x00007f4fb34fb000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000051) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000051]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b355e8 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff880075021480 rdi: 0x0000000000000001 rbp: 0x00007f4fb34e6000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b354d0 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0xffffffff8038c23c
r12: 0x0000000000000000 r13: 0x00007f4fb34fb000 r14: 0x00007f4fb34fb000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000052) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000052]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b69448 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff880075021480 rdi: 0x0000000000000001 rbp: 0x00007f4fb34ee000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b69410 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0xffffffff8038c23c
r12: 0x0000000000000000 r13: 0x00007f4fb34fb000 r14: 0x00007f4fb34fb000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000053) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000053]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001b69448 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0xffff880075021480 rdi: 0x0000000000000001 rbp: 0x00007f4fb34ee000 rsp: 0xffff88006d57bd88
r8: 0xffffe20001b69410 r9: 0xffff880001101380 r10: 0x0000000000000002 r11: 0xffffffff8038c23c
r12: 0x0000000000000000 r13: 0x00007f4fb34fb000 r14: 0x00007f4fb34fb000 r15: 0x0000000000000020
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000054) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000054]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f4fb36df6e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000003 GRSP(VMCS): 0xffff88006d57bcb8 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f4fb36df6e0 rbx: 0xffff880075ffebf0 rcx: 0x00000000c0000100 rdx: 0x0000000000007f4f
rsi: 0x0000000000000000 rdi: 0xffff88007c04d7d0 rbp: 0xffff88007c04d7d0 rsp: 0xffff88006d57bcb8
r8: 0xffff880075d936d8 r9: 0x0000000000000000 r10: 0xffff88007cd99470 r11: 0x00000000fffffffa
r12: 0x0000000000000000 r13: 0xffff88007506f380 r14: 0xffff88007c505160 r15: 0xffff88007c48fed8
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000055) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000055]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe2000185d428 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0x0000000000000003 rdi: 0x0000000000000001 rbp: 0x00007f4fb36e0000 rsp: 0xffff88006d57bd88
r8: 0x0000000000000008 r9: 0xffff880001101340 r10: 0x0000000000000002 r11: 0x00000000fffffffa
r12: 0xfffffffffffffffa r13: 0x00007f4fb36e1000 r14: 0x00007f4fb36e1000 r15: 0x0000000000000067
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000056) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000056]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe2000185d428 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0x0000000000000003 rdi: 0x0000000000000001 rbp: 0x00007f4fb36e0000 rsp: 0xffff88006d57bd88
r8: 0x0000000000000008 r9: 0xffff880001101340 r10: 0x0000000000000002 r11: 0x00000000fffffffa
r12: 0xfffffffffffffffa r13: 0x00007f4fb36e1000 r14: 0x00007f4fb36e1000 r15: 0x0000000000000067
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000057) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000057]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f62
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001720390 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0x0000000000000003 rdi: 0x0000000000000001 rbp: 0x00007fffbb6fc000 rsp: 0xffff88006d57bd88
r8: 0x0000000000000008 r9: 0xffff880001101340 r10: 0x0000000000000002 r11: 0x00000000fffffffa
r12: 0xffffffffffffffed r13: 0x00007fffbb6fc000 r14: 0x00007fffbb6fc000 r15: 0x0000000000000067
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000058) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000058]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57bd88 GRIP(VMCS): 0xffffffff80267f65
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffffe20001720390 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0x0000000000000003 rdi: 0x0000000000000001 rbp: 0x00007fffbb6fc000 rsp: 0xffff88006d57bd88
r8: 0x0000000000000008 r9: 0xffff880001101340 r10: 0x0000000000000002 r11: 0x00000000fffffffa
r12: 0xffffffffffffffed r13: 0x00007fffbb6fc000 r14: 0x00007fffbb6fc000 r15: 0x0000000000000067
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000059) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x13
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000059]: mov_from_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57be68 GRIP(VMCS): 0xffffffff8026c229
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffff88006d5597c8 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0x0000000000000003 rdi: 0x0000000000000001 rbp: 0xffff88007506f380 rsp: 0xffff88006d57be68
r8: 0x0000000000000008 r9: 0xffffffff8085dc90 r10: 0x0000000000000002 r11: 0x00007f4fb316a000
r12: 0xffff88007506f380 r13: 0xffff88007506f3e0 r14: 0x0000000000008000 r15: 0x0000000000603010
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000060) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000060]: mov_to_cr: regid=0x0, reg=0x6d4fc000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000246 GRSP(VMCS): 0xffff88006d57be68 GRIP(VMCS): 0xffffffff8026c22c
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000006d4fc000 rbx: 0xffff88006d5597c8 rcx: 0xffff88007506f380 rdx: 0xffffffff8085dc90
rsi: 0x0000000000000003 rdi: 0x0000000000000001 rbp: 0xffff88007506f380 rsp: 0xffff88006d57be68
r8: 0x0000000000000008 r9: 0xffffffff8085dc90 r10: 0x0000000000000002 r11: 0x00007f4fb316a000
r12: 0xffff88007506f380 r13: 0xffff88007506f3e0 r14: 0x0000000000008000 r15: 0x0000000000603010
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000006d4fc000
----------------------------------------------------------
## Hytux: VM-EXIT (#000061) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000061]: mov_to_cr: regid=0x0, reg=0x7507b000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff88006d57be58 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x000000007507b000 rbx: 0xffff880075ea60c0 rcx: 0x0000000000000000 rdx: 0x0000000000000000
rsi: 0xffff8800790740d0 rdi: 0xffff88007507b000 rbp: 0xffff88006d57bec8 rsp: 0xffff88006d57be58
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0xffff88007d053bd8 r11: 0x00007f4fb316a000
r12: 0xffff88006d57bf08 r13: 0xffff88007506f380 r14: 0xffff88007d03f690 r15: 0xffff880075ffed40
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000007507b000
----------------------------------------------------------
## Hytux: VM-EXIT (#000062) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000062]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7fc2ed78e6e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000003 GRSP(VMCS): 0xffff880075c8fdd8 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007fc2ed78e6e0 rbx: 0xffff8800790740d0 rcx: 0x00000000c0000100 rdx: 0x0000000000007fc2
rsi: 0x0000000000000000 rdi: 0xffff880075ffebf0 rbp: 0xffff880075ffebf0 rsp: 0xffff880075c8fdd8
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0xffff88007d053bd8 r11: 0x00007f4fb316a000
r12: 0x0000000000000000 r13: 0xffff88007506f380 r14: 0xffff88007d03f690 r15: 0xffff880075ffed40
----------------------------------------------------------
cr2: 0x00007f4fb3212a50 cr3(VMCS): 0x000000007507b000
----------------------------------------------------------
## Hytux: VM-EXIT (#000063) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000063]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f4fb36df6e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000003 GRSP(VMCS): 0xffff88006d57be18 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f4fb36df6e0 rbx: 0xffff880075ffebf0 rcx: 0x00000000c0000100 rdx: 0x0000000000007f4f
rsi: 0x0000000000000000 rdi: 0xffff8800790740d0 rbp: 0xffff8800790740d0 rsp: 0xffff88006d57be18
r8: 0xffff88007c5a2ef8 r9: 0x00000000ffffffff r10: 0x0000000000000246 r11: 0x00000010001200d2
r12: 0x0000000000000000 r13: 0xffff880075ea60c0 r14: 0xffff8800784df800 r15: 0x0000000000000001
----------------------------------------------------------
cr2: 0x00000000006c45b4 cr3(VMCS): 0x000000007507b000
----------------------------------------------------------
## Hytux: VM-EXIT (#000064) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x1c, EXIT_QUALIF = 0x3
Hytux: INTR_INFO is not valid
Hytux: handle_cr_access: [cr3]
Hytux: instruction_len=0x3
Hytux[000064]: mov_to_cr: regid=0x0, reg=0x75d75000
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000093 GRSP(VMCS): 0xffff88007c50de60 GRIP(VMCS): 0xffffffff805c9b9d
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x0000000075d75000 rbx: 0xffff8800790780c0 rcx: 0xffff88007d03e098 rdx: 0x0000000000000000
rsi: 0xffff880075d93690 rdi: 0xffff880075d75000 rbp: 0xffff88007c50ded0 rsp: 0xffff88007c50de60
r8: 0xffff88007d03e098 r9: 0x0000000000000000 r10: 0x0000000000000001 r11: 0x00000010001200d2
r12: 0xffff88007d041bf0 r13: 0xffff880075ea60c0 r14: 0xffffffff80818fa0 r15: 0x0000000000000000
----------------------------------------------------------
cr2: 0x00000000006c45b4 cr3(VMCS): 0x0000000075d75000
----------------------------------------------------------
## Hytux: VM-EXIT (#000065) ##
Hytux: interruptibility_state=0, activity_state=0
Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
Hytux: INTR_INFO is not valid
Hytux: instruction_len=0x2
Hytux[000065]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f6f56ffe6e0
## GUEST REGISTERS DUMP ##
----------------------------------------------------------
GRFLAGS(VMCS): 0x0000000000000006 GRSP(VMCS): 0xffff880075db5a18 GRIP(VMCS): 0xffffffff80209c07
HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
----------------------------------------------------------
rax: 0x00007f6f56ffe6e0 rbx: 0xffff880075d93690 rcx: 0x00000000c0000100 rdx: 0x0000000000007f6f
rsi: 0x0000000000000000 rdi: 0xffff88007c5a2eb0 rbp: 0xffff88007c5a2eb0 rsp: 0xffff880075db5a18
r8: 0xffff88007d03e098 r9: 0x0000000000000000 r10: 0x0000000000000001 r11: 0x00000010001200d2
r12: 0x0000000000000000 r13: 0xffff880075ea60c0 r14: 0xffffffff80818fa0 r15: 0x0000000000000000
----------------------------------------------------------
cr2: 0x00000000006c45b4 cr3(VMCS): 0x0000000075d75000
----------------------------------------------------------
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [x86] - technical questions about HV implementation on Intel VT
2009-04-14 12:24 ` [x86] - technical questions about HV implementation on Intel VT Eric Lacombe
@ 2009-04-20 17:53 ` Eric Lacombe
2009-04-20 18:22 ` Avi Kivity
0 siblings, 1 reply; 6+ messages in thread
From: Eric Lacombe @ 2009-04-20 17:53 UTC (permalink / raw)
To: kvm, Avi Kivity
Hi,
I reviewed my code (modify some things and add missing features) and made more
tests, but I'm stuck with the same problem.
Nonetheless, all the tests I've done seem to freeze my machine when files are
used.
When I try the commands "echo", "pwd" in the console (X is not started), the
machine behaves nicely. When I try completion (with double-tab) on a command,
it also works. But, when I try for instance "more help.c", the machine
freezes, likewise when I try "more hel"+double-tab.
I really would appreciate some help on this.
Please, could you tell me what I could check (because I already checked a lot
of things and can't figure out what happens)? I would also give you all the
information you need.
(Recall: When loaded, my module use VT-x to go on vmx root operation, then it
creates a vmcs in order to execute the OS inside a VM.)
Thanks in advance for your response.
Eric Lacombe
Le mardi 14 avril 2009 14:24:01 Eric Lacombe, vous avez écrit :
> Hi,
>
> I analysed some of my logs and see that sometimes, two successive VM-exits
> handle exactly the same instruction (a wrmsr with the same MSR ID and
> data), like below. Is it not strange ? and could it help to focus on the
> problem I have (the freeze of the machine).
>
> I can understand that you have no time to spend on my problem, but could
> someone give me some ideas on what I could check/print/... in order to fix
> my problem.
>
> Thanks in advance,
>
> Eric Lacombe
>
> I also join the complete log file from which is extracted this sample.
>
> ## Hytux: VM-EXIT (#000024) ##
> Hytux: interruptibility_state=0, activity_state=0
> Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
> Hytux: INTR_INFO is not valid
> Hytux: instruction_len=0x2
> Hytux[000024]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f83583e56e0
> ## GUEST REGISTERS DUMP ##
> ----------------------------------------------------------
> GRFLAGS(VMCS): 0x0000000000000002 GRSP(VMCS): 0xffff88007854da18
> GRIP(VMCS): 0xffffffff80209c07
> HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
> ----------------------------------------------------------
> rax: 0x00007f83583e56e0 rbx: 0xffff88007d127280 rcx: 0x00000000c0000100
> rdx: 0x0000000000007f83
> rsi: 0x0000000000000000 rdi: 0xffff88007d03e050 rbp: 0xffff88007d03e050
> rsp: 0xffff88007854da18
> r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0xffff88007d38c640 r11:
> 0x0000000000000001
> r12: 0x0000000000000000 r13: 0xffff8800790786c0 r14: 0xffffffff80818fa0
> r15: 0x0000000000000000
> ----------------------------------------------------------
> cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078532000
> ----------------------------------------------------------
> ## Hytux: VM-EXIT (#000025) ##
> Hytux: interruptibility_state=0, activity_state=0
> Hytux: EXIT_REASON = 0x20, EXIT_QUALIF = 0x0
> Hytux: INTR_INFO is not valid
> Hytux: instruction_len=0x2
> Hytux[000025]: handle_wrmsr: ecx=0xc0000100 (MSR id), data=0x7f83583e56e0
> ## GUEST REGISTERS DUMP ##
> ----------------------------------------------------------
> GRFLAGS(VMCS): 0x0000000000000002 GRSP(VMCS): 0xffff88007854da18
> GRIP(VMCS): 0xffffffff80209c07
> HRFLAGS: 0x0000000000000086 HRSP: 0xffff88006d5cd000
> ----------------------------------------------------------
> rax: 0x00007f83583e56e0 rbx: 0xffff88007d127280 rcx: 0x00000000c0000100
> rdx: 0x0000000000007f83
> rsi: 0x0000000000000000 rdi: 0xffff88007d03e050 rbp: 0xffff88007d03e050
> rsp: 0xffff88007854da18
> r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0xffff88007d38c640 r11:
> 0xffffffff80241868
> r12: 0x0000000000000000 r13: 0xffff880079590980 r14: 0xffffffff80818fa0
> r15: 0x0000000000000000
> ----------------------------------------------------------
> cr2: 0x0000000000615618 cr3(VMCS): 0x0000000078532000
> ----------------------------------------------------------
>
> Le Tuesday 7 April 2009 19:26:30 Eric Lacombe, vous avez écrit :
> > Hello,
> >
> > I forgot to mention that my module only supports a single processor
> > (that's why I run a kernel with SMP disabled).
> >
> > I was able to run my module on two different machines (both are
> > core2-based) and that led to the same outcome: both machines freeze
> > without any bad printk messages :/
> >
> > I join another log file where the guest registers are always dumped for
> > each VM-exit. The log file begins with the loading of the module and ends
> > when the system crash.
> >
> > Could someone look at it please and maybe have an hint on what occurs ?
> >
> > If you need other information, just ask me and I will fulfil your needs.
> >
> > Best regards,
> >
> > Eric
> >
> > Le mardi 24 mars 2009 18:22:11 Eric Lacombe, vous avez écrit :
> > > Hello,
> > >
> > > I work on the implementation of a "particular" hypervisor for my PhD
> > > and I face a problem I have not resolved yet. Let me explain it.
> > >
> > > I have a module that when it is loaded triggers vmx mode, and load the
> > > current running kernel in a VM. The code seems to work at some extents.
> > > For the moment, I just handle the mandatory vm-exit (with my CPU: cr3,
> > > msr). I log information of each VM-exit (if I my module is loaded with
> > > my debug parameter), and see CR3 accesses, wrmsr execution, etc.
> > > After some time the machine freeze, there is no information logged by
> > > printk. The sysrq key do not work anymore (at least do not print
> > > information on the console) but some interrupt handling seems to work
> > > as the num-lock key of the keyboard causes the LED to light up (only
> > > with X started).
> > >
> > > Also, after loading the module (without X started), the machine succeed
> > > in executing a command like "echo test", but if I try a "ls" the
> > > machine instantaneously freezes, and no special logging is performed
> > > (my hypervisor does not printk a problem on the console). When I load
> > > the module from X, the machine freezes before I can execute a command
> > > (however a lot of vm-exit are still logged).
> > >
> > > I will be very glad if you have any idea of what occurs here ;)
> > > For that purpose, I join an output from my module from the loading
> > > process to the system crash, when running under X.
> > > Notes: - I only dump guest register contents for the first 10 vm-exit.
> > > - I use the netconsole provided by the kernel to get the logs.
> > >
> > > If you need more information, just ask me.
> > >
> > > Thanks in advance,
> > >
> > > Eric Lacombe
> > >
> > > PS: as I am not subscribed to the list, please do not forget to include
> > > my address.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [x86] - technical questions about HV implementation on Intel VT
2009-04-20 17:53 ` Eric Lacombe
@ 2009-04-20 18:22 ` Avi Kivity
2009-04-21 11:16 ` Eric Lacombe
0 siblings, 1 reply; 6+ messages in thread
From: Avi Kivity @ 2009-04-20 18:22 UTC (permalink / raw)
To: Eric Lacombe; +Cc: kvm
Eric Lacombe wrote:
> Hi,
>
> I reviewed my code (modify some things and add missing features) and made more
> tests, but I'm stuck with the same problem.
> Nonetheless, all the tests I've done seem to freeze my machine when files are
> used.
>
> When I try the commands "echo", "pwd" in the console (X is not started), the
> machine behaves nicely. When I try completion (with double-tab) on a command,
> it also works. But, when I try for instance "more help.c", the machine
> freezes, likewise when I try "more hel"+double-tab.
>
echo and pwd are part of bash, so they are probably in memory. I guess
once you go to disk things fail.
Try to boot the entire OS from initramfs (and keep it there).
> I really would appreciate some help on this.
>
This is much to complicated for drive-by debugging.
> Please, could you tell me what I could check (because I already checked a lot
> of things and can't figure out what happens)? I would also give you all the
> information you need.
>
> (Recall: When loaded, my module use VT-x to go on vmx root operation, then it
> creates a vmcs in order to execute the OS inside a VM.)
>
I imagine you have interrupts working properly? Does 'watch -d cat
/proc/interrupts' give the expected results (run it before you enter vmx
to load it into cache)?
Are you virtualizing memory, or does the guest manipulate page tables
directly?
--
Do not meddle in the internals of kernels, for they are subtle and quick to panic.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [x86] - technical questions about HV implementation on Intel VT
2009-04-20 18:22 ` Avi Kivity
@ 2009-04-21 11:16 ` Eric Lacombe
2009-04-29 14:50 ` Eric Lacombe
0 siblings, 1 reply; 6+ messages in thread
From: Eric Lacombe @ 2009-04-21 11:16 UTC (permalink / raw)
To: Avi Kivity; +Cc: kvm
Thanks a lot for your answer ;)
Le lundi 20 avril 2009 20:22:21 Avi Kivity, vous avez écrit :
> Eric Lacombe wrote:
[...]
> echo and pwd are part of bash, so they are probably in memory. I guess
> once you go to disk things fail.
>
> Try to boot the entire OS from initramfs (and keep it there).
I will try this but maybe what follows say that the problem is elsewhere.
[...]
> > (Recall: When loaded, my module use VT-x to go on vmx root operation,
> > then it creates a vmcs in order to execute the OS inside a VM.)
>
> I imagine you have interrupts working properly? Does 'watch -d cat
> /proc/interrupts' give the expected results (run it before you enter vmx
> to load it into cache)?
I made many times this test:
1. I run on a first console 'watch -n0,2 -d cat /proc/interrupts'
2. I load from another console my module (that is modified at the beginning of
its init step with the addition of a schedule_timeout_uninterruptible())
3. I switch to the first console and wait for schedule_timeout to return
And when my module does its stuff, the machine freezes... Maybe my module
"implies" a deadlock in the VFS after a VM-entry?
Note: in my module, I do not intercept (in the VM-execution controls) external
interruptions nor exception.
I also check in the documentation the "VMX aborts" but it does not seem to be
my problem --- the freeze occurs when I do not use MSR load/store areas as
well as when I use them.
Note: now, I just load/store the Kernel_GS_BASE MSR to cover swapgs, even if
it is not actually necessary for my module. (Besides, I intercept rdmsr/wrmsr
as can be seen in the logs, and modify accordingly the VMCS when needed).
>
> Are you virtualizing memory, or does the guest manipulate page tables
> directly?
The guest manipulates directly page tables in my current module.
I just handle two cases of cr3 access ("mov from" and "mov to") by just
carrying out the "mov" in the guest registers.
Best regards
Eric Lacombe
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [x86] - technical questions about HV implementation on Intel VT
2009-04-21 11:16 ` Eric Lacombe
@ 2009-04-29 14:50 ` Eric Lacombe
2009-04-29 16:13 ` Eric Lacombe
0 siblings, 1 reply; 6+ messages in thread
From: Eric Lacombe @ 2009-04-29 14:50 UTC (permalink / raw)
To: Avi Kivity; +Cc: kvm
Hi,
Le mardi 21 avril 2009 13:16:06 Eric Lacombe, vous avez écrit :
> Le lundi 20 avril 2009 20:22:21 Avi Kivity, vous avez écrit :
> > Eric Lacombe wrote:
[...]
> > echo and pwd are part of bash, so they are probably in memory. I guess
> > once you go to disk things fail.
> >
> > Try to boot the entire OS from initramfs (and keep it there).
>
> I will try this but maybe what follows say that the problem is elsewhere.
I setup a minimal initramfs with busybox and my module inside.
The init script in the initramfs only mount /proc /sys, populate /dev (busybox
mdev), then execute the busybox shell.
Then when I insmod'ed my module, I had to cope with an exit reason at the very
first entry (through vmlaunch) to the VM.
This was because of the host and guest fs_selector VMCS fields, whose TI and
RPL bits were not 0.
After fixing that (setting TI and RPL bits to 0, instead of using directly fs
and gs values), the vmlaunch succeed, and I got quite the same behaviour as
when the system boots with the rootfs pointing to the hard disk, i.e. the
system works for "echo", "pwd", ... but freezes after a ls for example.
I say "quite", as I sometime got a freeze after a "echo something".
So the problem is definitely not a problem with files on the hard disk...
Do you have some new hints on what could go wrong?
And what could I try to resolve this problem?
I really need to resolve that thing, and all assistance is more than greatly
welcome ;)
Thanks in advance for your response and the time you have already spent to
help me.
Eric Lacombe
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [x86] - technical questions about HV implementation on Intel VT
2009-04-29 14:50 ` Eric Lacombe
@ 2009-04-29 16:13 ` Eric Lacombe
0 siblings, 0 replies; 6+ messages in thread
From: Eric Lacombe @ 2009-04-29 16:13 UTC (permalink / raw)
To: Avi Kivity; +Cc: kvm
Yeah, I got it! All seems to work well now ;)
It was simply the host_cr3 field that I did not correctly fill...
When I started to write my module, I used the cr3 of the current process to
fill the host_cr3 VMCS field .... big mistake !!! as the process (insmod) dies
after loading my module, the corresponding page where my host_cr3 field points
is then invalid. And that's why when I tried to execute a command that is not
a built-in command (which induced more allocations), the system went crazy, as
my host_cr3 page was then used for something else...
Thank you anyway to have spent some time on my problem.
Best regards,
Eric
Le mercredi 29 avril 2009 16:50:15 Eric Lacombe, vous avez écrit :
> Hi,
>
> Le mardi 21 avril 2009 13:16:06 Eric Lacombe, vous avez écrit :
> > Le lundi 20 avril 2009 20:22:21 Avi Kivity, vous avez écrit :
> > > Eric Lacombe wrote:
>
> [...]
>
> > > echo and pwd are part of bash, so they are probably in memory. I guess
> > > once you go to disk things fail.
> > >
> > > Try to boot the entire OS from initramfs (and keep it there).
> >
> > I will try this but maybe what follows say that the problem is elsewhere.
>
> I setup a minimal initramfs with busybox and my module inside.
> The init script in the initramfs only mount /proc /sys, populate /dev
> (busybox mdev), then execute the busybox shell.
>
> Then when I insmod'ed my module, I had to cope with an exit reason at the
> very first entry (through vmlaunch) to the VM.
> This was because of the host and guest fs_selector VMCS fields, whose TI
> and RPL bits were not 0.
>
> After fixing that (setting TI and RPL bits to 0, instead of using directly
> fs and gs values), the vmlaunch succeed, and I got quite the same behaviour
> as when the system boots with the rootfs pointing to the hard disk, i.e.
> the system works for "echo", "pwd", ... but freezes after a ls for example.
>
> I say "quite", as I sometime got a freeze after a "echo something".
> So the problem is definitely not a problem with files on the hard disk...
>
> Do you have some new hints on what could go wrong?
> And what could I try to resolve this problem?
>
> I really need to resolve that thing, and all assistance is more than
> greatly welcome ;)
>
> Thanks in advance for your response and the time you have already spent to
> help me.
>
> Eric Lacombe
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-04-29 16:13 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <200903241822.11529.goretux@gmail.com>
[not found] ` <200904071926.30643.goretux@gmail.com>
2009-04-14 12:24 ` [x86] - technical questions about HV implementation on Intel VT Eric Lacombe
2009-04-20 17:53 ` Eric Lacombe
2009-04-20 18:22 ` Avi Kivity
2009-04-21 11:16 ` Eric Lacombe
2009-04-29 14:50 ` Eric Lacombe
2009-04-29 16:13 ` Eric Lacombe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox