All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2 00/23] vhost-user reconnect fixes
@ 2016-06-24 13:50 marcandre.lureau
  2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 01/23] misc: indentation marcandre.lureau
                   ` (22 more replies)
  0 siblings, 23 replies; 28+ messages in thread
From: marcandre.lureau @ 2016-06-24 13:50 UTC (permalink / raw)
  To: qemu-devel
  Cc: mukawa, yuanhan.liu, victork, jonshin, mst, Marc-André Lureau

From: Marc-André Lureau <marcandre.lureau@redhat.com>

Hi,

Since 'vhost-user: simple reconnection support' was merged, it is
possible to disconnect and reconnect a vhost-user backend. However,
many code paths in qemu may trigger assert() when the backend is
disconnected.

Some assert() could simply be replaced by error_report() or silently
fail since they are recoverable cases. Some missing error checks can
also help prevent later issues. In many cases, the code assumes
get_vhost_net() will be non-NULL after a succesful connection, so I
changed it to stay after a disconnect until the new connection comes
(as suggested by Michael). There are also code paths that are wrong,
see "don't assume opaque is a fd" patch for an example.

Since there is feature checks on reconnection, qemu should wait for
the initial connection feature negotiation to complete. The test added
demonstrates this.

For convenience, the series is also available on:
https://github.com/elmarco/qemu, branch vhost-user-reconnect

v1->v2:
- some patch ordering: minor fix, close(fd) fix,
  assert/fprintf->error_report, check and return error,
  vhost_dev_cleanup() fixes, keep vhost_net after a disconnect, wait
  until connection is ready
- merge read/write error checks
- do not rely on link state to check vhost-user init completed

Marc-André Lureau (23):
  misc: indentation
  vhost-user: minor simplification
  vhost: don't assume opaque is a fd, use backend cleanup
  vhost: make vhost_log_put() idempotent
  vhost: call vhost_log_put() on cleanup
  vhost: add vhost device only after all success
  vhost: make vhost_dev_cleanup() idempotent
  vhost-net: always call vhost_dev_cleanup() on failure
  vhost: fix calling vhost_dev_cleanup() after vhost_dev_init()
  vhost: change some assert() for error_report() or silent fail
  vhost: use error_report() instead of fprintf(stderr,...)
  vhost-user: check qemu_chr_fe_set_msgfds() return value
  vhost-user: check vhost_user_{read,write}() return value
  qemu-char: check socket is actually connected
  vhost-user: keep vhost_net after a disconnection
  Revert "vhost-net: do not crash if backend is not present"
  get_vhost_net() should be != null after vhost_user_init
  vhost-net: success if backend has no ops->vhost_migration_done
  vhost: add assert() to check runtime behaviour
  char: add chr_wait_connected callback
  char: add and use tcp_chr_wait_connected
  vhost-user: wait until backend init is completed
  tests: add /vhost-user/connect-fail test

 hw/net/vhost_net.c      |  19 +++-----
 hw/virtio/vhost-user.c  |  54 +++++++++++++++--------
 hw/virtio/vhost.c       | 114 +++++++++++++++++++++++++++---------------------
 include/sysemu/char.h   |   8 ++++
 net/tap.c               |   1 +
 net/vhost-user.c        |  38 +++++++++-------
 qemu-char.c             |  82 ++++++++++++++++++++++++----------
 tests/vhost-user-test.c |  37 ++++++++++++++++
 8 files changed, 235 insertions(+), 118 deletions(-)

-- 
2.9.0

^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2016-06-30 13:02 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-24 13:50 [Qemu-devel] [PATCH v2 00/23] vhost-user reconnect fixes marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 01/23] misc: indentation marcandre.lureau
2016-06-24 14:19   ` Eric Blake
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 02/23] vhost-user: minor simplification marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 03/23] vhost: don't assume opaque is a fd, use backend cleanup marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 04/23] vhost: make vhost_log_put() idempotent marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 05/23] vhost: call vhost_log_put() on cleanup marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 06/23] vhost: add vhost device only after all success marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 07/23] vhost: make vhost_dev_cleanup() idempotent marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 08/23] vhost-net: always call vhost_dev_cleanup() on failure marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 09/23] vhost: fix calling vhost_dev_cleanup() after vhost_dev_init() marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 10/23] vhost: change some assert() for error_report() or silent fail marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 11/23] vhost: use error_report() instead of fprintf(stderr, ...) marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 12/23] vhost-user: check qemu_chr_fe_set_msgfds() return value marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 13/23] vhost-user: check vhost_user_{read, write}() " marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 14/23] qemu-char: check socket is actually connected marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 15/23] vhost-user: keep vhost_net after a disconnection marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 16/23] Revert "vhost-net: do not crash if backend is not present" marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 17/23] get_vhost_net() should be != null after vhost_user_init marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 18/23] vhost-net: success if backend has no ops->vhost_migration_done marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 19/23] vhost: add assert() to check runtime behaviour marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 20/23] char: add chr_wait_connected callback marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 21/23] char: add and use tcp_chr_wait_connected marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 22/23] vhost-user: wait until backend init is completed marcandre.lureau
2016-06-30  6:38   ` Yuanhan Liu
2016-06-30  9:22     ` Marc-André Lureau
2016-06-30 13:02       ` Yuanhan Liu
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 23/23] tests: add /vhost-user/connect-fail test marcandre.lureau

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.