From: Michael Roth <mdroth@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: ghammer@redhat.com, aliguori@us.ibm.com,
matsudadik@intellilink.co.jp, lcapitulino@redhat.com
Subject: [Qemu-devel] [PATCH v3 0/8] qemu-ga: add support for Windows
Date: Tue, 14 Feb 2012 09:15:34 -0600 [thread overview]
Message-ID: <1329232542-30251-1-git-send-email-mdroth@linux.vnet.ibm.com> (raw)
These patches apply on top of qemu.git master, and can also be obtained from:
git://github.com/mdroth/qemu.git qga-win32-v3
CHANGES SINCE V2:
- Fixed long-standing bug in getopt usage that triggered on win32 (Matsuda)
- Treat ERROR_OPERATION_ABORTED on read from unconnected/empty channel
as eof (Matsuda)
CHANGES SINCE V1:
- Dropped guest-set-support-level patch dependency
- Rebased on master and re-tested
- Spelling/grammar fixes in commits/comments
OVERVIEW:
These patches add support for Windows to the QEMU guest agent. With these
patches the following guest agent commands are supported on Windows:
guest-ping
guest-info
guest-sync
guest-shutdown
The guest-file* commands can essentially be enabled for Windows as-is, but since
mingw does not honor the O_NONBLOCK flag, they'll need to be reworked if we're
to retain the current non-blocking behavior.
The rest of the commands are currently stubbed out for Windows (qemu-ga will
return an "unsupported" error), but it should be easy to implement these going
forward with basic Windows support/infrastructure in place.
The build was tested using Fedora15 with a MinGW cross-build target via:
configure --enable-guest-agent --cross-prefix=i686-pc-mingw32-
make qemu-ga.exe
The executable was tested using Windows XP SP3, and partially tested using
Windows Server 2008 and Windows 7 (no I/O for the latter 2, having issues with
virtio-win drivers). GLib 2.28+ for Windows is required. You can install qemu-ga
as a load-on-boot service by running:
./qemu-ga --service install
And start/stop manually via:
net start qemu-ga
net stop qemu-ga
Many thanks to Gal Hammer for contributing the service integration and shutdown
code.
Makefile | 2 +-
Makefile.objs | 8 +-
configure | 2 +-
qapi-schema-guest.json | 118 ++++++++--
qemu-ga.c | 423 ++++++++++++++------------------
qga/channel-posix.c | 246 +++++++++++++++++++
qga/channel-win32.c | 340 +++++++++++++++++++++++++
qga/channel.h | 33 +++
qga/commands-posix.c | 528 +++++++++++++++++++++++++++++++++++++++
qga/commands-win32.c | 130 ++++++++++
qga/commands.c | 73 ++++++
qga/guest-agent-commands.c | 585 --------------------------------------------
qga/guest-agent-core.h | 3 +-
qga/service-win32.c | 114 +++++++++
qga/service-win32.h | 30 +++
15 files changed, 1790 insertions(+), 845 deletions(-)
next reply other threads:[~2012-02-14 15:16 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-14 15:15 Michael Roth [this message]
2012-02-14 15:15 ` [Qemu-devel] [PATCH v3 1/8] qemu-ga: Add schema documentation for types Michael Roth
2012-02-14 15:15 ` [Qemu-devel] [PATCH v3 2/8] qemu-ga: move channel/transport functionality into wrapper class Michael Roth
2012-02-14 15:15 ` [Qemu-devel] [PATCH v3 3/8] qemu-ga: separate out common commands from posix-specific ones Michael Roth
2012-02-14 15:15 ` [Qemu-devel] [PATCH v3 4/8] qemu-ga: rename guest-agent-commands.c -> commands-posix.c Michael Roth
2012-02-14 15:15 ` [Qemu-devel] [PATCH v3 5/8] qemu-ga: fixes for win32 build of qemu-ga Michael Roth
2012-02-14 15:15 ` [Qemu-devel] [PATCH v3 6/8] qemu-ga: add initial win32 support Michael Roth
2012-02-14 15:15 ` [Qemu-devel] [PATCH v3 7/8] qemu-ga: add Windows service integration Michael Roth
2012-02-14 15:15 ` [Qemu-devel] [PATCH v3 8/8] qemu-ga: add win32 guest-shutdown command Michael Roth
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=1329232542-30251-1-git-send-email-mdroth@linux.vnet.ibm.com \
--to=mdroth@linux.vnet.ibm.com \
--cc=aliguori@us.ibm.com \
--cc=ghammer@redhat.com \
--cc=lcapitulino@redhat.com \
--cc=matsudadik@intellilink.co.jp \
--cc=qemu-devel@nongnu.org \
/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).