[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [VMI] Possible race-condition in altp2m APIs
Hi, I would like to submit a strange bug that i'm facing while using DRAKVUF to monitor applications from the hypervisor. I wanted to evaluate DRAKVUF's robustness, so I built a test suite, and began by executing reg.exe via shellexec injection, having the execution tracked by the procmon plugin. I quickly realized that sometimes applications were crashing in the guest, with different types of weird errors: - memory cannot be written - invalid opcode - unknown software exception (its a Windows message, not sure what type of processor exception is behind this) And more than that, I had lots of BSODs, in different places in the kernel. So heavy monitoring with DRAKVUF tends to make the guest unstable. It's important to emphasize that the more VCPUs you have, the more likely the bug will be triggered. For example, injecting on Windows with 1 VCPU, i was able to go through 5000 successives injections. Using 4 VCPUs on the other hand, it would crash around ~50th injection. My first suspicion was on DRAKVUF's custom injector, which hijacks the process control flow, and could have corrupted the guest memory. This is the most invasive method to start a process in the guest, so it was a good candidate. But last week, I replaced this injector by opening the WinRM service, and starting the remote process via Ansible win_command module. Unfortunately, the result was the same, the BSODs and appcrashes are still here. Which means that DRAKVUF, simply by calling the altp2m APIs and injecting stealth breakpoints, could somehow make the guest execute code in a page that would either be non present (I had PAGE_FAULT_IN_NONPAGED_AERA BSODs), or corrupted, which would explain the invalid opcode/access_violation errors. You can find my extensive bug reports and comments on the following Github issues: - [Injection BSOD on W7x64](https://github.com/tklengyel/drakvuf/issues/576) - [BSOD when injecting on Windows 10 protected by KPTI ](https://github.com/tklengyel/drakvuf/issues/622) The latest proof I have of this effect is the following analysis of a Win10 BSOD: https://gist.github.com/mtarral/f593e50d1d68b5a1071d8bc42affd542 (Please note that KPTI was manually disabled, because it would crash guest quite quickly under monitoring, but that's another issue.) I managed to get a page containing 2 successive `int 3` (previously injected by DRAKVUF), in a location that I just wasn't monitoring. That's why I think that DRAKVUF is not responsible of this behavior. I'm using only 3 plugins: - procmon - NtCreateUserProcess - NtTerminateProcess - NtOpenProcess - NtProtectVirtualMemory - bsodmon - KeBugCheck - crashmon - CR3 load As altp2m seems like a really complicated to implement (EPT manipulation, CoW, ...), I suspect that there is a possible race condition that lies in there, which would trigger this bug. I would like your opinions on the matter, how I can investigate this, and ultimately debug it, with your help of course. Thank you, Mathieu Tarral _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |