From: "Daniel P. Berrange" <berrange@redhat.com>
To: Knut Omang <knut.omang@oracle.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v4 2/4] sockets: factor out create_fast_reuse_socket
Date: Mon, 26 Jun 2017 13:00:31 +0100 [thread overview]
Message-ID: <20170626120031.GL495@redhat.com> (raw)
In-Reply-To: <1498478188.3341.41.camel@oracle.com>
On Mon, Jun 26, 2017 at 01:56:28PM +0200, Knut Omang wrote:
> On Mon, 2017-06-26 at 11:28 +0100, Daniel P. Berrange wrote:
> > On Fri, Jun 23, 2017 at 12:31:06PM +0200, Knut Omang wrote:
> > > First refactoring step to prepare for fixing the problem
> > > exposed with the test-listen test in the previous commit
> > >
> > > Signed-off-by: Knut Omang <knut.omang@oracle.com>
> > > ---
> > > util/qemu-sockets.c | 24 +++++++++++++++++-------
> > > 1 file changed, 17 insertions(+), 7 deletions(-)
> > >
> > > diff --git a/util/qemu-sockets.c b/util/qemu-sockets.c
> > > index 852773d..699e36c 100644
> > > --- a/util/qemu-sockets.c
> > > +++ b/util/qemu-sockets.c
> > > @@ -149,6 +149,20 @@ int inet_ai_family_from_address(InetSocketAddress *addr,
> > > return PF_UNSPEC;
> > > }
> > >
> > > +static int create_fast_reuse_socket(struct addrinfo *e, Error **errp)
> > > +{
> > > + int slisten = qemu_socket(e->ai_family, e->ai_socktype, e->ai_protocol);
> > > + if (slisten < 0) {
> > > + if (!e->ai_next) {
> > > + error_setg_errno(errp, errno, "Failed to create socket");
> > > + }
> >
> > I think that having this method sometimes report an error message, and
> > sometimes not report an error message, depending on state of a variable
> > used by the caller is rather unpleasant. I'd much rather see this
> > error message reporting remain in the caller.
>
> In principle I agree with you, but I think we do want to keep the details
> of what the failure cause was by also propagating information about the system
> call that failed.
>
> I considered this an acceptable trade-off in the name of performance as well as
> readability at the next level. This is a fairly unlikely case that one really does not
> have to worry too much about at the next level. Setting an error that does not get used
> for that special, unlikely case is not that bad. Doing it for all failures would be
> a lot more unnecessary work.
>
> >
> > > + return -1;
> > > + }
> > > +
> > > + socket_set_fast_reuse(slisten);
> > > + return slisten;
> > > +}
> > > +
> > > static int inet_listen_saddr(InetSocketAddress *saddr,
> > > int port_offset,
> > > bool update_addr,
> > > @@ -210,21 +224,17 @@ static int inet_listen_saddr(InetSocketAddress *saddr,
> > > return -1;
> > > }
> > >
> > > - /* create socket + bind */
> > > + /* create socket + bind/listen */
> > > for (e = res; e != NULL; e = e->ai_next) {
> > > getnameinfo((struct sockaddr*)e->ai_addr,e->ai_addrlen,
> > > uaddr,INET6_ADDRSTRLEN,uport,32,
> > > NI_NUMERICHOST | NI_NUMERICSERV);
> > > - slisten = qemu_socket(e->ai_family, e->ai_socktype, e->ai_protocol);
> > > +
> > > + slisten = create_fast_reuse_socket(e, &err);
> > > if (slisten < 0) {
> > > - if (!e->ai_next) {
> > > - error_setg_errno(errp, errno, "Failed to create socket");
> > > - }
> > > continue;
> >
> > It isn't shown in this diff context, but at the end of the outer
> > loop we have
> >
> > error_setg_errno(errp, errno, "Failed to find available port");
> >
> > so IIUC, even this pre-existing code is wrong. If 'e->ai_next' is
> > NULL, we report an error message here. Then, we continue to the
> > next loop iteration, which causes use to terminate the loop
> > entirely. At which point we'll report another error message
> > over the top of the one we already have.
> >
> > So I think the error
> > reporting does still need refactoring, but not in the way it
> > is done here.
>
> I agree, a simple way to solve it would be to only set errp if no
> error has already been set.
I'd like to see each of the methods set the error unconditionally.
In the inet_socket_listen() method, we can use an then intermediate
Error variable on each iteration of the loop, and propagate to
the global variable at the end or discard it.
Regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
next prev parent reply other threads:[~2017-06-26 12:00 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-23 10:31 [Qemu-devel] [PATCH v4 0/4] Unit test+fix for problem with QEMU handling of multiple bind()s to the same port Knut Omang
2017-06-23 10:31 ` [Qemu-devel] [PATCH v4 1/4] tests: Add test-listen - a stress test for QEMU socket listen Knut Omang
2017-06-23 10:31 ` [Qemu-devel] [PATCH v4 2/4] sockets: factor out create_fast_reuse_socket Knut Omang
2017-06-26 10:28 ` Daniel P. Berrange
2017-06-26 11:56 ` Knut Omang
2017-06-26 12:00 ` Daniel P. Berrange [this message]
2017-07-02 6:26 ` Knut Omang
2017-06-23 10:31 ` [Qemu-devel] [PATCH v4 3/4] sockets: factor out a new try_bind() function Knut Omang
2017-06-23 10:31 ` [Qemu-devel] [PATCH v4 4/4] sockets: Handle race condition between binds to the same port Knut Omang
2017-06-26 10:22 ` Daniel P. Berrange
2017-06-26 12:32 ` Knut Omang
2017-06-26 12:49 ` Daniel P. Berrange
2017-07-02 8:17 ` Knut Omang
2017-06-26 10:34 ` Daniel P. Berrange
2017-07-02 8:15 ` Knut Omang
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=20170626120031.GL495@redhat.com \
--to=berrange@redhat.com \
--cc=knut.omang@oracle.com \
--cc=kraxel@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).