From: "Marc-André Lureau" <mlureau@redhat.com>
To: "Michael S. Tsirkin" <mst@redhat.com>
Cc: marcandre lureau <marcandre.lureau@redhat.com>,
qemu-devel@nongnu.org, mukawa@igel.co.jp,
yuanhan liu <yuanhan.liu@linux.intel.com>,
victork@redhat.com, jonshin@cisco.com
Subject: Re: [Qemu-devel] [PATCH v3 13/28] vhost-user: check vhost_user_{read, write}() return value
Date: Thu, 21 Jul 2016 03:55:05 -0400 (EDT) [thread overview]
Message-ID: <1208335302.6954578.1469087705171.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <20160720162630-mutt-send-email-mst@kernel.org>
Hi
----- Original Message -----
> On Wed, Jul 06, 2016 at 08:47:06PM +0200, marcandre.lureau@redhat.com wrote:
> > From: Marc-André Lureau <marcandre.lureau@redhat.com>
> >
> > More error checking to break code flow and report appropriate errors.
> >
> > Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> So this will cause asserts here:
>
> /* inform backend of log switching, this must be done before
> releasing the current log, to ensure no logging is lost */
> r = dev->vhost_ops->vhost_set_log_base(dev, log_base, log);
> assert(r >= 0);
That's why there is a previous patch "vhost: do not assert() on vhost_ops failure". Although there is still some abort() on migration. This is a corner case that isn't yet solved. I think it would make sense for the backend to state that it is disconnected, and for vhost to ingore migration ops failure in this case.
> which is the opposite of what we want.
>
> For vhost_net ioctl failure is a fatal error bit for
> vhost user this means backend exited and will not change
> memory so it's benign.
>
> the right thing to do is to return 0 status to caller on most errors.
>
> If that is necessary for debugging, add a printout for now.
Yes, I am adding a VHOST_OPS_DEBUG as you proposed
>
> > ---
> > hw/virtio/vhost-user.c | 50
> > ++++++++++++++++++++++++++++++++++----------------
> > 1 file changed, 34 insertions(+), 16 deletions(-)
> >
> > diff --git a/hw/virtio/vhost-user.c b/hw/virtio/vhost-user.c
> > index 5dae496..819481d 100644
> > --- a/hw/virtio/vhost-user.c
> > +++ b/hw/virtio/vhost-user.c
> > @@ -214,12 +214,14 @@ static int vhost_user_set_log_base(struct vhost_dev
> > *dev, uint64_t base,
> > fds[fd_num++] = log->fd;
> > }
> >
> > - vhost_user_write(dev, &msg, fds, fd_num);
> > + if (vhost_user_write(dev, &msg, fds, fd_num) < 0) {
> > + return -1;
> > + }
> >
> > if (shmfd) {
> > msg.size = 0;
> > if (vhost_user_read(dev, &msg) < 0) {
> > - return 0;
> > + return -1;
> > }
> >
> > if (msg.request != VHOST_USER_SET_LOG_BASE) {
> > @@ -275,7 +277,9 @@ static int vhost_user_set_mem_table(struct vhost_dev
> > *dev,
> > msg.size += sizeof(msg.payload.memory.padding);
> > msg.size += fd_num * sizeof(VhostUserMemoryRegion);
> >
> > - vhost_user_write(dev, &msg, fds, fd_num);
> > + if (vhost_user_write(dev, &msg, fds, fd_num) < 0) {
> > + return -1;
> > + }
> >
> > return 0;
> > }
> > @@ -290,7 +294,9 @@ static int vhost_user_set_vring_addr(struct vhost_dev
> > *dev,
> > .size = sizeof(msg.payload.addr),
> > };
> >
> > - vhost_user_write(dev, &msg, NULL, 0);
> > + if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > + return -1;
> > + }
> >
> > return 0;
> > }
> > @@ -313,7 +319,9 @@ static int vhost_set_vring(struct vhost_dev *dev,
> > .size = sizeof(msg.payload.state),
> > };
> >
> > - vhost_user_write(dev, &msg, NULL, 0);
> > + if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > + return -1;
> > + }
> >
> > return 0;
> > }
> > @@ -360,10 +368,12 @@ static int vhost_user_get_vring_base(struct vhost_dev
> > *dev,
> > .size = sizeof(msg.payload.state),
> > };
> >
> > - vhost_user_write(dev, &msg, NULL, 0);
> > + if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > + return -1;
> > + }
> >
> > if (vhost_user_read(dev, &msg) < 0) {
> > - return 0;
> > + return -1;
> > }
> >
> > if (msg.request != VHOST_USER_GET_VRING_BASE) {
> > @@ -401,7 +411,9 @@ static int vhost_set_vring_file(struct vhost_dev *dev,
> > msg.payload.u64 |= VHOST_USER_VRING_NOFD_MASK;
> > }
> >
> > - vhost_user_write(dev, &msg, fds, fd_num);
> > + if (vhost_user_write(dev, &msg, fds, fd_num) < 0) {
> > + return -1;
> > + }
> >
> > return 0;
> > }
> > @@ -427,7 +439,9 @@ static int vhost_user_set_u64(struct vhost_dev *dev,
> > int request, uint64_t u64)
> > .size = sizeof(msg.payload.u64),
> > };
> >
> > - vhost_user_write(dev, &msg, NULL, 0);
> > + if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > + return -1;
> > + }
> >
> > return 0;
> > }
> > @@ -455,10 +469,12 @@ static int vhost_user_get_u64(struct vhost_dev *dev,
> > int request, uint64_t *u64)
> > return 0;
> > }
> >
> > - vhost_user_write(dev, &msg, NULL, 0);
> > + if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > + return -1;
> > + }
> >
> > if (vhost_user_read(dev, &msg) < 0) {
> > - return 0;
> > + return -1;
> > }
> >
> > if (msg.request != request) {
> > @@ -489,7 +505,9 @@ static int vhost_user_set_owner(struct vhost_dev *dev)
> > .flags = VHOST_USER_VERSION,
> > };
> >
> > - vhost_user_write(dev, &msg, NULL, 0);
> > + if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > + return -1;
> > + }
> >
> > return 0;
> > }
> > @@ -501,7 +519,9 @@ static int vhost_user_reset_device(struct vhost_dev
> > *dev)
> > .flags = VHOST_USER_VERSION,
> > };
> >
> > - vhost_user_write(dev, &msg, NULL, 0);
> > + if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > + return -1;
> > + }
> >
> > return 0;
> > }
> > @@ -588,7 +608,6 @@ static bool vhost_user_requires_shm_log(struct
> > vhost_dev *dev)
> > static int vhost_user_migration_done(struct vhost_dev *dev, char*
> > mac_addr)
> > {
> > VhostUserMsg msg = { 0 };
> > - int err;
> >
> > assert(dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_USER);
> >
> > @@ -605,8 +624,7 @@ static int vhost_user_migration_done(struct vhost_dev
> > *dev, char* mac_addr)
> > memcpy((char *)&msg.payload.u64, mac_addr, 6);
> > msg.size = sizeof(msg.payload.u64);
> >
> > - err = vhost_user_write(dev, &msg, NULL, 0);
> > - return err;
> > + return vhost_user_write(dev, &msg, NULL, 0);
> > }
> > return -1;
> > }
> > --
> > 2.9.0
>
next prev parent reply other threads:[~2016-07-21 7:55 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-06 18:46 [Qemu-devel] [PATCH v3 00/28] vhost-user reconnect fixes marcandre.lureau
2016-07-06 18:46 ` [Qemu-devel] [PATCH v3 01/28] misc: indentation marcandre.lureau
2016-07-06 18:46 ` [Qemu-devel] [PATCH v3 02/28] vhost-user: minor simplification marcandre.lureau
2016-07-06 18:46 ` [Qemu-devel] [PATCH v3 03/28] vhost: don't assume opaque is a fd, use backend cleanup marcandre.lureau
2016-07-06 18:46 ` [Qemu-devel] [PATCH v3 04/28] vhost: make vhost_log_put() idempotent marcandre.lureau
2016-07-06 18:46 ` [Qemu-devel] [PATCH v3 05/28] vhost: call vhost_log_put() on cleanup marcandre.lureau
2016-07-06 18:46 ` [Qemu-devel] [PATCH v3 06/28] vhost: add vhost device only after all success marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 07/28] vhost: make vhost_dev_cleanup() idempotent marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 08/28] vhost-net: always call vhost_dev_cleanup() on failure marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 09/28] vhost: fix calling vhost_dev_cleanup() after vhost_dev_init() marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 10/28] vhost: change some assert() for error_report() or silent fail marcandre.lureau
2016-07-20 13:24 ` Michael S. Tsirkin
2016-07-20 13:33 ` Michael S. Tsirkin
2016-07-20 13:41 ` Marc-André Lureau
2016-07-20 13:55 ` Michael S. Tsirkin
2016-07-21 7:57 ` Marc-André Lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 11/28] vhost: use error_report() instead of fprintf(stderr, ...) marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 12/28] vhost-user: check qemu_chr_fe_set_msgfds() return value marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 13/28] vhost-user: check vhost_user_{read, write}() " marcandre.lureau
2016-07-20 13:28 ` Michael S. Tsirkin
2016-07-21 7:55 ` Marc-André Lureau [this message]
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 14/28] qemu-char: check socket is actually connected marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 15/28] vhost-user: keep vhost_net after a disconnection marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 16/28] Revert "vhost-net: do not crash if backend is not present" marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 17/28] get_vhost_net() should be != null after vhost_user_init marcandre.lureau
2016-07-20 13:36 ` Michael S. Tsirkin
2016-07-21 7:55 ` Marc-André Lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 18/28] vhost-net: success if backend has no ops->vhost_migration_done marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 19/28] vhost: add assert() to check runtime behaviour marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 20/28] char: add chr_wait_connected callback marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 21/28] char: add and use tcp_chr_wait_connected marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 22/28] vhost-user: wait until backend init is completed marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 23/28] tests: plug some leaks in virtio-net-test marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 24/28] tests: fix vhost-user-test leak marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 25/28] tests: add /vhost-user/connect-fail test marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 26/28] tests: add a simple /vhost-user/multiqueue test marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 27/28] vhost-user: add error report in vhost_user_write() marcandre.lureau
2016-07-06 18:47 ` [Qemu-devel] [PATCH v3 28/28] vhost: add vhost_net_set_backend() marcandre.lureau
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=1208335302.6954578.1469087705171.JavaMail.zimbra@redhat.com \
--to=mlureau@redhat.com \
--cc=jonshin@cisco.com \
--cc=marcandre.lureau@redhat.com \
--cc=mst@redhat.com \
--cc=mukawa@igel.co.jp \
--cc=qemu-devel@nongnu.org \
--cc=victork@redhat.com \
--cc=yuanhan.liu@linux.intel.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).