qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Daniel P. Berrange" <berrange@redhat.com>
To: Eric Blake <eblake@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
	qemu-devel@nongnu.org,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v2 04/16] ui: convert VNC startup code to use SocketAddress
Date: Tue, 20 Oct 2015 14:39:43 +0100	[thread overview]
Message-ID: <20151020133943.GM14616@redhat.com> (raw)
In-Reply-To: <56256C99.1000100@redhat.com>

On Mon, Oct 19, 2015 at 04:20:09PM -0600, Eric Blake wrote:
> On 10/12/2015 05:14 AM, Daniel P. Berrange wrote:
> > The VNC code is currently using QemuOpts to configure the
> > sockets connections / listeners it needs. Convert it to
> > use SocketAddress to bring it in line with modern QAPI
> > based code elsewhere in QEMU.
> > 
> > Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
> > ---
> >  ui/vnc.c | 161 ++++++++++++++++++++++++++++++++++++---------------------------
> >  1 file changed, 91 insertions(+), 70 deletions(-)
> > 
> > @@ -3539,44 +3535,83 @@ void vnc_display_open(const char *id, Error **errp)
> >          return;
> >      }
> >  
> > -    sopts = qemu_opts_create(&socket_optslist, NULL, 0, &error_abort);
> > -    wsopts = qemu_opts_create(&socket_optslist, NULL, 0, &error_abort);
> > -
> >      h = strrchr(vnc, ':');
> >      if (h) {
> > -        char *host;
> >          size_t hlen = h - vnc;
> >  
> > -        if (vnc[0] == '[' && vnc[hlen - 1] == ']') {
> > -            host = g_strndup(vnc + 1, hlen - 2);
> > +        const char *websocket = qemu_opt_get(opts, "websocket");
> > +        int to = qemu_opt_get_number(opts, "to", 0);
> 
> We really ought to improve the qapi notion of InetSocketAddress to allow
> { 'alternate':'StrOrInt', 'data': { 'i':'int', 's':'str' } } rather than
> only 'str' for port.  But that's a project for another day. I guess
> things get a bit weird if "to" is present but doesn't parse as a number,
> but I don't think your patch is making things any worse.
> 
> > +
> > +        if (strncmp(vnc, "unix:", 5) == 0) {
> > +            saddr->kind = SOCKET_ADDRESS_KIND_UNIX;
> > +            saddr->q_unix = g_new0(UnixSocketAddress, 1);
> 
> More clashes with my pending qapi patches; rebase fun for one of us :)
> 
> 
> > +            if (to) {
> > +                saddr->inet->has_to = true;
> > +                saddr->inet->to = to;
> > +            }
> > +            saddr->inet->ipv4 = saddr->inet->has_ipv4 = has_ipv4;
> > +            saddr->inet->ipv6 = saddr->inet->has_ipv6 = has_ipv6;
> 
> Do we want to specify has_ipvX as true even when setting inet->ipvX to
> false?

This saddr instance is passed into 'socket_connect' which then
converts it back into a QemuOpts object using

    bool ipv4 = addr->has_ipv4 && addr->ipv4;

So, we don't need to set has_ipvX to true, when ipvX is false.

I'll be so happy to finally kill QemuOpts from the sockets code and
use SocketAddress everywhere....

> 
> 
> > @@ -3770,37 +3795,32 @@ void vnc_display_open(const char *id, Error **errp)
> >          int csock;
> >          vs->lsock = -1;
> >          vs->lwebsock = -1;
> > -        if (strncmp(vnc, "unix:", 5) == 0) {
> > -            csock = unix_connect(vnc+5, errp);
> > -        } else {
> > -            csock = inet_connect(vnc, errp);
> > +        if (vs->ws_enabled) {
> > +            error_setg(errp, "Cannot use websockets in reverse mode");
> > +            goto fail;
> >          }
> > +        csock = socket_connect(saddr, errp,
> > +                               NULL, NULL);
> 
> Looks like the line-wrapping isn't needed here.
> 
> Overall, looks like a sane conversion.
> 
> Reviewed-by: Eric Blake <eblake@redhat.com>


Regards,
Daniel
-- 
|: http://berrange.com      -o-    http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org              -o-             http://virt-manager.org :|
|: http://autobuild.org       -o-         http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org       -o-       http://live.gnome.org/gtk-vnc :|

  reply	other threads:[~2015-10-20 13:39 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-12 11:14 [Qemu-devel] [PATCH v2 00/16] Introduce I/O channels framework Daniel P. Berrange
2015-10-12 11:14 ` [Qemu-devel] [PATCH v2 01/16] sockets: add helpers for creating SocketAddress from a socket Daniel P. Berrange
2015-10-19 21:43   ` Eric Blake
2015-10-20 13:20     ` Daniel P. Berrange
2015-10-12 11:14 ` [Qemu-devel] [PATCH v2 02/16] sockets: move qapi_copy_SocketAddress into qemu-sockets.c Daniel P. Berrange
2015-10-19 22:05   ` Eric Blake
2015-10-20 12:08     ` Paolo Bonzini
2015-10-20 12:27       ` Daniel P. Berrange
2015-10-12 11:14 ` [Qemu-devel] [PATCH v2 03/16] sockets: allow port to be NULL when listening on IP address Daniel P. Berrange
2015-10-19 22:12   ` Eric Blake
2015-10-20 13:19     ` Daniel P. Berrange
2015-10-21 17:52   ` Knut Omang
2015-10-22  9:43     ` Daniel P. Berrange
2015-10-22 10:02       ` Peter Maydell
2015-10-22 12:10         ` Markus Armbruster
2015-10-22 12:43           ` Daniel P. Berrange
2015-10-22 13:59           ` Eric Blake
2015-10-31  8:51     ` Shannon Zhao
2015-10-31 10:40       ` Peter Maydell
2015-11-02  9:14         ` Markus Armbruster
2015-10-12 11:14 ` [Qemu-devel] [PATCH v2 04/16] ui: convert VNC startup code to use SocketAddress Daniel P. Berrange
2015-10-19 22:20   ` Eric Blake
2015-10-20 13:39     ` Daniel P. Berrange [this message]
2015-10-20 17:01       ` Peter Maydell
2015-10-20 18:50         ` Daniel P. Berrange
2015-10-20 20:36           ` Peter Maydell
2015-10-21  9:01             ` Daniel P. Berrange
2015-10-12 11:14 ` [Qemu-devel] [PATCH v2 05/16] osdep: add qemu_fork() wrapper for safely handling signals Daniel P. Berrange
2015-10-19 22:24   ` Eric Blake
2015-10-12 11:14 ` [Qemu-devel] [PATCH v2 06/16] coroutine: move into libqemuutil.a library Daniel P. Berrange
2015-10-12 11:15 ` [Qemu-devel] [PATCH v2 07/16] util: pull Buffer code out of VNC module Daniel P. Berrange
2015-10-12 11:15 ` [Qemu-devel] [PATCH v2 08/16] io: add abstract QIOChannel classes Daniel P. Berrange
2015-10-20 17:48   ` Eric Blake
2015-10-21 17:32     ` Daniel P. Berrange
2015-10-21 18:20       ` Eric Blake
2015-10-12 11:15 ` [Qemu-devel] [PATCH v2 09/16] io: add helper module for creating watches on FDs Daniel P. Berrange
2015-10-12 11:15 ` [Qemu-devel] [PATCH v2 10/16] io: add QIOTask class for async operations Daniel P. Berrange
2015-10-12 11:15 ` [Qemu-devel] [PATCH v2 11/16] io: add QIOChannelSocket class Daniel P. Berrange
2015-10-12 11:15 ` [Qemu-devel] [PATCH v2 12/16] io: add QIOChannelFile class Daniel P. Berrange
2015-10-12 11:15 ` [Qemu-devel] [PATCH v2 13/16] io: add QIOChannelTLS class Daniel P. Berrange
2015-10-12 11:15 ` [Qemu-devel] [PATCH v2 14/16] io: add QIOChannelWebsock class Daniel P. Berrange
2015-10-12 11:15 ` [Qemu-devel] [PATCH v2 15/16] io: add QIOChannelCommand class Daniel P. Berrange
2015-10-12 11:15 ` [Qemu-devel] [PATCH v2 16/16] io: add QIOChannelBuffer class Daniel P. Berrange
2015-10-19 13:47 ` [Qemu-devel] [PATCH v2 00/16] Introduce I/O channels framework Daniel P. Berrange
2015-10-19 14:11   ` Paolo Bonzini

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=20151020133943.GM14616@redhat.com \
    --to=berrange@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=eblake@redhat.com \
    --cc=pbonzini@redhat.com \
    --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).