From: "Lluís Vilanova" <vilanova@ac.upc.edu>
To: qemu-devel@nongnu.org
Cc: Zhi Yong Wu <zwu.kernel@gmail.com>
Subject: [Qemu-devel] [PATCH 1/5] backdoor: Add documentation
Date: Thu, 29 Sep 2011 15:47:33 +0200 [thread overview]
Message-ID: <20110929134733.19559.46294.stgit@ginnungagap.bsc.es> (raw)
In-Reply-To: <20110929134727.19559.54734.stgit@ginnungagap.bsc.es>
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
---
docs/backdoor.txt | 144 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 144 insertions(+), 0 deletions(-)
create mode 100644 docs/backdoor.txt
diff --git a/docs/backdoor.txt b/docs/backdoor.txt
new file mode 100644
index 0000000..3b26b70
--- /dev/null
+++ b/docs/backdoor.txt
@@ -0,0 +1,144 @@
+= Backdoor communication channel =
+
+== Introduction ==
+
+This document describes how the guest can use the backdoor communication channel
+to interact with user-provided code inside QEMU.
+
+The backdoor provides a lightweight and guest-initiated communication channel
+between code running inside the guest system and code in QEMU, including both
+QEMU in 'softmmu' and 'user' modes.
+
+The semantics of the backdoor channel are up to the user, who must provide the
+implementation of the QEMU-side callbacks used when the backdoor channel is
+invoked.
+
+On the guest side, code can simply link against a simple library provided in
+QEMU to interface with the backdoor channel.
+
+The features of this mechanism are:
+
+* Minimal setup for the guest.
+* Independent of guest architecture.
+* Works with 'softmmu' and 'user' mode.
+* Low overhead; capturing memory accesses to specific addresses does not go
+ through any OS abstraction, except during the setup of the communication
+ channel.
+
+
+== QEMU-side code ==
+
+1. Create the "Makefile" to build the user-provided backdoor channel library:
+
+ mkdir /tmp/my-backdoor-qemu
+ cat > /tmp/my-backdoor-qemu/Makefile <<EOF
+ include $(BUILD_DIR)/config-host.mak
+ include $(BUILD_DIR)/$(TARGET_DIR)../config-target.mak
+ include $(SRC_PATH)/rules.mak
+
+ vpath %.c /tmp/my-backdoor-qemu
+
+
+ libbackdoor.a: backdoor.o
+
+
+ # Include automatically generated dependency files
+ -include $(wildcard *.d)
+ EOF
+
+2. Implement the callbacks declared in "backdoor/qemu/qemu-backdoor.h":
+
+ cat > /tmp/my-backdoor-qemu/backdoor.c <<EOF
+ #include "backdoor/qemu/qemu-backdoor.h"
+
+ #include "cpu.h"
+
+ #include <stdio.h>
+
+
+ void qemu_backdoor_init(uint64_t data_size)
+ {
+ printf("+ %ld\n", data_size);
+ }
+
+ void qemu_backdoor(uint64_t cmd, void *data)
+ {
+ /* Perform any endianess-wise loads to interpret the data */
+ uint64_t d = ldq_p(data);
+ printf("-> %x :: %x\n", cmd, *(uint64_t*)data);
+ }
+ EOF
+
+3. Build QEMU with the backdoor feature:
+
+ /path/to/qemu/configure --with-backdoor=/tmp/my-backdoor-qemu
+
+
+== Guest-side code ==
+
+1. Compile the corresponding guest-side interface library:
+
+ make -C /path/to/qemu-build/x86_64-linux-user/backdoor/guest
+
+2. Create your own application to interact with the backdoor channel:
+
+ cat > /tmp/my-backdoor-guest.c <<EOF
+ #include <stdio.h>
+ #include <errno.h>
+ #include <stdlib.h>
+ #include <qemu-backdoor.h>
+
+
+ int main()
+ {
+ /* This base path is only applicable to 'user' mode */
+ if (qemu_backdoor_init("/tmp/backdoor") != 0) {
+ fprintf(stderr, "error: qemu_backdoor_init: %s\n", strerror(errno));
+ abort();
+ }
+
+ /* Get a pointer to beginning of the data channel */
+ uint32_t * data = qemu_backdoor_data();
+ /* Write anything into the channel */
+ *data = 0xcafe;
+ /* Invoke the channel */
+ qemu_backdoor(0xbabe);
+ }
+ EOF
+
+3. Link your application against "libqemu-backdoor-guest.a":
+
+ gcc -o /tmp/my-backdoor-guest /tmp/my-backdoor-guest.c /path/to/qemu-build/x86_64-linux-user/backdoor/guest/libqemu-backdoor-guest.a
+
+
+== Running QEMU ==
+
+If you want to use QEMU's 'softmmu' mode:
+
+ /path/to/qemu-build/x86_64-softmmu/qemu-system-x86_64 -device backdoor
+ sudo /tmp/my-backdoor-guest # inside the VM
+
+If you want to use QEMU's 'user' mode:
+
+ /path/to/qemu-build/x86_64-linux-user/qemu-x86_64 -backdoor /tmp/backdoor /tmp/my-backdoor-guest
+
+
+== Implementation details ==
+
+The backdoor channel is composed of two channels that are handled as 'mmap'ed
+files. The data channel is used to contain arbitrary data to communicate back
+and forth between the guest and QEMU. The control channel is used by the guest
+to signal that the data channel is ready to be used.
+
+When using the 'softmmu' mode, the backdoor communication channels are provided
+as a virtual device used through MMIO. The data channel acts as regular memory
+and the control channel intercepts all accesses to it to proxy them to the
+user-provided backdoor library.
+
+When using the 'user' mode, the backdoor communication channels are provided as
+regular files in the host system that the guest must 'mmap' into its address
+space. The data channel acts as regular memory and the 'mmap' of the control
+channel is intercepted in QEMU to establish if it's an 'mmap' for the control
+channel file. If that's the case, the memory that QEMU allocates for the guest
+is 'mprotect'ed to intercept all accesses to it performed by the guest and proxy
+them to the user-provided backdoor library.
next prev parent reply other threads:[~2011-09-29 13:47 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-29 13:47 [Qemu-devel] [RFC][PATCH 0/5] backdoor: lightweight guest-to-QEMU backdoor channel Lluís Vilanova
2011-09-29 13:47 ` Lluís Vilanova [this message]
2011-09-29 13:47 ` [Qemu-devel] [PATCH 2/5] backdoor: Add build infrastructure Lluís Vilanova
2011-09-29 13:47 ` [Qemu-devel] [PATCH 3/5] backdoor: [*-user] Add QEMU-side proxy to "libbackdoor.a" Lluís Vilanova
2011-09-29 13:47 ` [Qemu-devel] [PATCH 4/5] backdoor: [softmmu] " Lluís Vilanova
2011-09-29 20:42 ` Blue Swirl
2011-09-29 21:49 ` Lluís Vilanova
2011-09-29 22:13 ` Frans de Boer
2011-09-29 22:35 ` Frans de Boer
2011-09-30 20:29 ` Blue Swirl
2011-09-30 20:07 ` Blue Swirl
2011-09-30 20:49 ` Lluís Vilanova
2011-09-30 20:59 ` Blue Swirl
2011-09-29 13:47 ` [Qemu-devel] [PATCH 5/5] backdoor: Add guest-side library Lluís Vilanova
2011-09-29 13:52 ` [Qemu-devel] [RFC][PATCH 0/5] backdoor: lightweight guest-to-QEMU backdoor channel Anthony Liguori
2011-09-29 17:10 ` Lluís Vilanova
2011-09-29 20:55 ` Blue Swirl
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110929134733.19559.46294.stgit@ginnungagap.bsc.es \
--to=vilanova@ac.upc.edu \
--cc=qemu-devel@nongnu.org \
--cc=zwu.kernel@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).