From 02809e01f68774e9d91fe315aaaa59da9a645a3f Mon Sep 17 00:00:00 2001 From: easydozen <47498568+easydozen@users.noreply.github.com> Date: Tue, 16 Apr 2019 17:21:25 +0300 Subject: [PATCH] Update windows-debugging.md --- debugging/windows-debugging.md | 42 ++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/debugging/windows-debugging.md b/debugging/windows-debugging.md index bcd052a5..1c964523 100644 --- a/debugging/windows-debugging.md +++ b/debugging/windows-debugging.md @@ -210,4 +210,46 @@ Things get complicated if you need to perform kernel debugging or troubleshoot p > System Uptime: not available > ~~~ +# Debugging HVMs in the Qubes R4.0 + +There are two main issues to be adopted to get all things to work in the R4.0. + +## Add a virtual serial port ## + +Qemu in the stub domain with virtual serial port added in a recommended way (``````) fails to start (Could not open '/dev/hvc1': No such device). It seems like a lack of multiple xen consoles support/configuration. The only way that I have found is to attach serial port explicitly to the available console. + +1. Unpack stub domain in dom0: + +```shell_session +$ mkdir stubroot +$ cp /usr/lib/xen/boot/stubdom-linux-rootfs stubroot/stubdom-linux-rootfs.gz +$ cd stubroot +$ gunzip stubdom-linux-rootfs.gz +$ cpio -i -d -H new --no-absolute-filenames < stubdom-linux-rootfs +$ rm stubdom-linux-rootfs +``` +2. Edit Init script to remove last loop and to add "-serial /dev/hvc0" to the qemu command line. + +3. Apply changes: +```shell_session +$ find . -print0 | cpio --null -ov --format=newc | gzip -9 > ../stubdom-linux-rootfs +$ sudo mv ../stubdom-linux-rootfs /usr/lib/xen/boot +``` + +## Connect two consoles ## + +Run the following script: + +```shell +debugname1=win7new +debugname2=win7dbg +id1=$(xl domid "$debugname1-dm") +id2=$(xl domid "$debugname2-dm") + +tty1=$(xenstore-read /local/domain/${id1}/console/tty) +tty2=$(xenstore-read /local/domain/${id1}/console/tty) + +socat tty1,raw $tty2,raw +``` + Happy debugging!