qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <aliguori@linux.vnet.ibm.com>
To: Michael Roth <mdroth@linux.vnet.ibm.com>
Cc: agl@linux.vnet.ibm.com, stefanha@linux.vnet.ibm.com,
	Stefan Hajnoczi <stefanha@gmail.com>,
	qemu-devel@nongnu.org, abeekhof@redhat.com, ryanh@us.ibm.com,
	Jes.Sorensen@redhat.com
Subject: Re: [Qemu-devel] [RFC][PATCH v5 00/21] virtagent: host/guest RPC communication agent
Date: Thu, 09 Dec 2010 15:03:48 -0600	[thread overview]
Message-ID: <4D014434.1070803@linux.vnet.ibm.com> (raw)
In-Reply-To: <4D013FDD.4090708@linux.vnet.ibm.com>

On 12/09/2010 02:45 PM, Michael Roth wrote:
> On 12/08/2010 04:10 AM, Stefan Hajnoczi wrote:
>> On Fri, Dec 3, 2010 at 6:03 PM, Michael 
>> Roth<mdroth@linux.vnet.ibm.com>  wrote:
>>> These patches apply to master, and can also be obtained from:
>>> git://repo.or.cz/qemu/mdroth.git virtagent_v5
>>
>> Why XML-RPC and not QMP?  When I skim through the patch series it
>> seems like much of the work being done is very similar to QMP.
>>
>
> It does, actually, more than I realized. In terms of data 
> encapsulation I don't see why we couldn't use QMP/JSON for at least 
> the current set of RPCs. XMLRPC does support a wider range of data 
> types however, such as nestable arrays and structs, and set-precision 
> numerical types like 32 and 64-bit ints/floats, which may prove useful 
> for future lower level interfaces.

1) XML-RPC is more widely supported than QMP (as there is zero support 
for QMP outside of QEMU and libvirt)

2) The target of this work is for guest agents

3) QMP does not support bidirectional RPC messages.

4) The RPC mechanism is a minor part of virt-agent so ultimately, it 
kind of doesn't matter.  The RPC messages themselves are what's important.

Regards,

Anthony Liguori

> QMP can be fairly trivially extended for some of these things, but 
> JSON is a limiting factor in some cases. We can't maintain strong 
> typing of data across the transport for instance, since JSON only 
> allows for a generic number type, whereas with XMLRPC we can 
> explicitly specify the machine representation. But whether this really 
> matters is hard to say with the limited set of RPCs we have right now.
>
> In terms of using QMP all the way through...that sounds really cool, 
> but with the bi-directional client/server data being multiplexed over 
> a single channel, and increased potential for weird states resulting 
> from guest/guest agent restarts, there's a need for some additional 
> synchronization that might end up being fairly intrusive/undesirable 
> to work into QMP.
>
>> What concrete use-cases are there?
>> * Reboot support on x86.  A QMP command can invoke guest-initiated
>> reboot via virtagent.
>> * ?
>>
>
> * viewfile
> The ability to do a quick peek at guest stats via, say, /proc, is a 
> use case that seems to be fairly generally desirable. It's what 
> essentially started all this work, actually. That's also why I think a 
> simple/limited viewfile RPC for relatively small text files is 
> warranted regardless of whatever approach we end up taking for 
> handling large/binary file transfers.
>
> * getdmesg
> Really useful for trouble-shooting things like soft-lockups.
>
> * ping
> Heartbeat monitoring has also been a fairly re-occurring approach to 
> identifying potential problems in our cloud, and it's not even 
> something we're capable of accomplishing in a production environment 
> due to having limited network access to the guests. Being able to do 
> it without relying on custom/network-based daemons would be pretty 
> useful.
>
> * exec (planned)
> Internally and externally I've seen interest in guest-initiated 
> snapshots, but that would tie into exec or some other, higher-level, 
> RPC, which isn't yet well-defined.
>
> * copyfile (planned)
> Nothing solid, but I think it's generally desirable. Quick access to 
> coredumps and such would be useful. Lots of discussion on how to 
> implement this and I think we have some good potential approaches to 
> adding this soon.
>
> * writefile (planned)
> Nothing solid. But guest activation is probably a big potential use 
> case for this one. Managing various guest kernel params is another. 
> Another would be deploying custom scripts to run via exec.
>
>> Will virtagent be extensible by host administrators or end-users?  For
>> example, can I drop in a custom command to collect statistics and
>> invoke it across VMs on my hosts?  Do I need to recompile QEMU and/or
>> the virtagent daemon?
>
> writefile + exec would probably be the best way to achieve this. I 
> don't think there are any plans to make the supported set of RPCs 
> pluggable/extendable.
>
>>
>> Stefan
>

  reply	other threads:[~2010-12-09 21:04 UTC|newest]

Thread overview: 74+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-03 18:03 [Qemu-devel] [RFC][PATCH v5 00/21] virtagent: host/guest RPC communication agent Michael Roth
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 01/21] Move code related to fd handlers into utility functions Michael Roth
2010-12-07 13:31   ` [Qemu-devel] " Jes Sorensen
2010-12-07 14:48     ` Michael Roth
2010-12-07 15:02       ` Jes Sorensen
2010-12-08  9:15         ` Stefan Hajnoczi
2010-12-08  9:17           ` Jes Sorensen
2010-12-08  9:23             ` Stefan Hajnoczi
2010-12-08  9:29               ` Jes Sorensen
2010-12-08 14:24           ` Anthony Liguori
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 02/21] Add qemu_set_fd_handler() wrappers to qemu-tools.c Michael Roth
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 03/21] virtagent: common code for managing client/server rpc jobs Michael Roth
2010-12-06 21:54   ` [Qemu-devel] " Adam Litke
2010-12-06 22:15     ` Michael Roth
2010-12-06 21:57   ` Adam Litke
2010-12-06 22:24     ` Michael Roth
2010-12-07 13:38   ` Jes Sorensen
2010-12-07 15:02     ` Michael Roth
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 04/21] virtagent: transport definitions and job callbacks Michael Roth
2010-12-06 22:02   ` [Qemu-devel] " Adam Litke
2010-12-06 22:34     ` Michael Roth
2010-12-07 13:44   ` Jes Sorensen
2010-12-07 17:19     ` Michael Roth
2010-12-08 19:16       ` Jes Sorensen
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 05/21] virtagent: base client definitions Michael Roth
2010-12-07 14:04   ` [Qemu-devel] " Jes Sorensen
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 06/21] virtagent: base server definitions Michael Roth
2010-12-07 14:07   ` [Qemu-devel] " Jes Sorensen
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 07/21] virtagent: add va.getfile RPC Michael Roth
2010-12-06 22:06   ` [Qemu-devel] " Adam Litke
2010-12-06 23:23     ` Michael Roth
2010-12-07 14:18   ` Jes Sorensen
2010-12-07 16:00     ` Adam Litke
2010-12-08 19:19       ` Jes Sorensen
2010-12-09 14:40         ` Adam Litke
2010-12-09 21:04           ` Michael Roth
2010-12-10  6:38             ` Jes Sorensen
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 08/21] virtagent: add agent_viewfile qmp/hmp command Michael Roth
2010-12-06 22:08   ` [Qemu-devel] " Adam Litke
2010-12-06 23:20     ` Michael Roth
2010-12-07 14:09       ` Michael Roth
2010-12-07 14:26   ` Jes Sorensen
2010-12-09 21:12     ` Michael Roth
2010-12-10  6:43       ` Jes Sorensen
2010-12-10 17:09         ` Michael Roth
2010-12-13  8:29           ` Jes Sorensen
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 09/21] virtagent: add va.getdmesg RPC Michael Roth
2010-12-06 22:25   ` [Qemu-devel] " Adam Litke
2010-12-07 14:37   ` Jes Sorensen
2010-12-07 17:32     ` Michael Roth
2010-12-08 19:22       ` Jes Sorensen
2010-12-09 21:15         ` Michael Roth
2010-12-10  6:46           ` Jes Sorensen
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 10/21] virtagent: add agent_viewdmesg qmp/hmp commands Michael Roth
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 11/21] virtagent: add va.shutdown RPC Michael Roth
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 12/21] virtagent: add agent_shutdown qmp/hmp commands Michael Roth
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 13/21] virtagent: add va.ping RPC Michael Roth
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 14/21] virtagent: add agent_ping qmp/hmp commands Michael Roth
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 15/21] virtagent: add agent_capabilities " Michael Roth
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 16/21] virtagent: add client capabilities init function Michael Roth
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 17/21] virtagent: add va.hello RPC Michael Roth
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 18/21] virtagent: add "hello" notification function for guest agent Michael Roth
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 19/21] virtagent: add virtagent guest daemon Michael Roth
2010-12-06 22:26   ` [Qemu-devel] " Adam Litke
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 20/21] virtagent: integrate virtagent server/client via chardev Michael Roth
2010-12-07 14:44   ` [Qemu-devel] " Jes Sorensen
2010-12-03 18:03 ` [Qemu-devel] [RFC][PATCH v5 21/21] virtagent: various bits to build QEMU with virtagent Michael Roth
2010-12-07 10:24 ` [Qemu-devel] Re: [RFC][PATCH v5 00/21] virtagent: host/guest RPC communication agent Jes Sorensen
2010-12-07 14:29   ` Michael Roth
2010-12-08 10:10 ` [Qemu-devel] " Stefan Hajnoczi
2010-12-09 20:45   ` Michael Roth
2010-12-09 21:03     ` Anthony Liguori [this message]
2010-12-10  9:42       ` Stefan Hajnoczi
2010-12-10 10:03     ` Stefan Hajnoczi

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=4D014434.1070803@linux.vnet.ibm.com \
    --to=aliguori@linux.vnet.ibm.com \
    --cc=Jes.Sorensen@redhat.com \
    --cc=abeekhof@redhat.com \
    --cc=agl@linux.vnet.ibm.com \
    --cc=mdroth@linux.vnet.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=ryanh@us.ibm.com \
    --cc=stefanha@gmail.com \
    --cc=stefanha@linux.vnet.ibm.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).