* [PATCH v2 0/3] vhost: clean up device reset @ 2023-10-04 1:45 Stefan Hajnoczi 2023-10-04 1:45 ` [PATCH v2 1/3] vhost-user: do not send RESET_OWNER on " Stefan Hajnoczi ` (3 more replies) 0 siblings, 4 replies; 10+ messages in thread From: Stefan Hajnoczi @ 2023-10-04 1:45 UTC (permalink / raw) To: qemu-devel Cc: Michael S. Tsirkin, Paolo Bonzini, Fam Zheng, hreitz, Marc-André Lureau, Thomas Huth, Raphael Norwitz, Philippe Mathieu-Daudé, eperezma, Daniel P. Berrangé, Stefan Hajnoczi v2: - Fix compilation error when vhost is not built [Michael] Stateful vhost devices may need to free resources or clear device state upon device reset. The vhost-user protocol has a VHOST_USER_RESET_DEVICE message for this and vDPA has SET_STATUS 0, but only QEMU's vhost-user-scsi device actually implements this today. This patch series performs device reset across all device types. When virtio_reset() is called, the associated vhost_dev's ->vhost_reset_device() is called. vhost-user-scsi's one-off implementation is obsoleted and removed. This patch affects behavior as follows: - vhost-kernel: no change in behavior. No ioctl calls are made. - vhost-user: back-ends that negotiate VHOST_USER_PROTOCOL_F_RESET_DEVICE now receive a VHOST_USER_DEVICE_RESET message upon device reset. Otherwise there is no change in behavior. DPDK, SPDK, libvhost-user, and the vhost-user-backend crate do not negotiate VHOST_USER_PROTOCOL_F_RESET_DEVICE automatically. - vhost-vdpa: an extra SET_STATUS 0 call is made during device reset. I have tested this series with vhost-net (kernel), vhost-user-blk, and vhost-user-fs (both Rust and legacy C). Stefan Hajnoczi (3): vhost-user: do not send RESET_OWNER on device reset vhost-backend: remove vhost_kernel_reset_device() virtio: call ->vhost_reset_device() during reset meson.build | 1 + include/hw/virtio/vhost.h | 10 ++++++++++ hw/scsi/vhost-user-scsi.c | 20 -------------------- hw/virtio/vhost-backend.c | 6 ------ hw/virtio/vhost-user.c | 13 +++++++++---- hw/virtio/vhost.c | 9 +++++++++ hw/virtio/virtio.c | 4 ++++ 7 files changed, 33 insertions(+), 30 deletions(-) -- 2.41.0 ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 1/3] vhost-user: do not send RESET_OWNER on device reset 2023-10-04 1:45 [PATCH v2 0/3] vhost: clean up device reset Stefan Hajnoczi @ 2023-10-04 1:45 ` Stefan Hajnoczi 2023-10-04 10:44 ` Hanna Czenczek 2023-10-04 1:45 ` [PATCH v2 2/3] vhost-backend: remove vhost_kernel_reset_device() Stefan Hajnoczi ` (2 subsequent siblings) 3 siblings, 1 reply; 10+ messages in thread From: Stefan Hajnoczi @ 2023-10-04 1:45 UTC (permalink / raw) To: qemu-devel Cc: Michael S. Tsirkin, Paolo Bonzini, Fam Zheng, hreitz, Marc-André Lureau, Thomas Huth, Raphael Norwitz, Philippe Mathieu-Daudé, eperezma, Daniel P. Berrangé, Stefan Hajnoczi The VHOST_USER_RESET_OWNER message is deprecated in the spec: This is no longer used. Used to be sent to request disabling all rings, but some back-ends interpreted it to also discard connection state (this interpretation would lead to bugs). It is recommended that back-ends either ignore this message, or use it to disable all rings. The only caller of vhost_user_reset_device() is vhost_user_scsi_reset(). It checks that F_RESET_DEVICE was negotiated before calling it: static void vhost_user_scsi_reset(VirtIODevice *vdev) { VHostSCSICommon *vsc = VHOST_SCSI_COMMON(vdev); struct vhost_dev *dev = &vsc->dev; /* * Historically, reset was not implemented so only reset devices * that are expecting it. */ if (!virtio_has_feature(dev->protocol_features, VHOST_USER_PROTOCOL_F_RESET_DEVICE)) { return; } if (dev->vhost_ops->vhost_reset_device) { dev->vhost_ops->vhost_reset_device(dev); } } Therefore VHOST_USER_RESET_OWNER is actually never sent by vhost_user_reset_device(). Remove the dead code. This effectively moves the vhost-user protocol specific code from vhost-user-scsi.c into vhost-user.c where it belongs. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> --- hw/scsi/vhost-user-scsi.c | 9 --------- hw/virtio/vhost-user.c | 13 +++++++++---- 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/hw/scsi/vhost-user-scsi.c b/hw/scsi/vhost-user-scsi.c index ee99b19e7a..8582b2e8ab 100644 --- a/hw/scsi/vhost-user-scsi.c +++ b/hw/scsi/vhost-user-scsi.c @@ -71,15 +71,6 @@ static void vhost_user_scsi_reset(VirtIODevice *vdev) VHostSCSICommon *vsc = VHOST_SCSI_COMMON(vdev); struct vhost_dev *dev = &vsc->dev; - /* - * Historically, reset was not implemented so only reset devices - * that are expecting it. - */ - if (!virtio_has_feature(dev->protocol_features, - VHOST_USER_PROTOCOL_F_RESET_DEVICE)) { - return; - } - if (dev->vhost_ops->vhost_reset_device) { dev->vhost_ops->vhost_reset_device(dev); } diff --git a/hw/virtio/vhost-user.c b/hw/virtio/vhost-user.c index 8dcf049d42..7bed9ad7d5 100644 --- a/hw/virtio/vhost-user.c +++ b/hw/virtio/vhost-user.c @@ -1492,12 +1492,17 @@ static int vhost_user_reset_device(struct vhost_dev *dev) { VhostUserMsg msg = { .hdr.flags = VHOST_USER_VERSION, + .hdr.request = VHOST_USER_RESET_DEVICE, }; - msg.hdr.request = virtio_has_feature(dev->protocol_features, - VHOST_USER_PROTOCOL_F_RESET_DEVICE) - ? VHOST_USER_RESET_DEVICE - : VHOST_USER_RESET_OWNER; + /* + * Historically, reset was not implemented so only reset devices + * that are expecting it. + */ + if (!virtio_has_feature(dev->protocol_features, + VHOST_USER_PROTOCOL_F_RESET_DEVICE)) { + return -ENOSYS; + } return vhost_user_write(dev, &msg, NULL, 0); } -- 2.41.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2 1/3] vhost-user: do not send RESET_OWNER on device reset 2023-10-04 1:45 ` [PATCH v2 1/3] vhost-user: do not send RESET_OWNER on " Stefan Hajnoczi @ 2023-10-04 10:44 ` Hanna Czenczek 2023-10-04 11:15 ` Stefan Hajnoczi 0 siblings, 1 reply; 10+ messages in thread From: Hanna Czenczek @ 2023-10-04 10:44 UTC (permalink / raw) To: Stefan Hajnoczi, qemu-devel Cc: Michael S. Tsirkin, Paolo Bonzini, Fam Zheng, Marc-André Lureau, Thomas Huth, Raphael Norwitz, Philippe Mathieu-Daudé, eperezma, Daniel P. Berrangé On 04.10.23 03:45, Stefan Hajnoczi wrote: > The VHOST_USER_RESET_OWNER message is deprecated in the spec: > > This is no longer used. Used to be sent to request disabling all > rings, but some back-ends interpreted it to also discard connection > state (this interpretation would lead to bugs). It is recommended > that back-ends either ignore this message, or use it to disable all > rings. According to the spec, it is then indeed better to not call it in vhost_user_reset_device, because it seems like it would be interpreted as something completely different. However, between the three back-end implementations of vhost-user I know of (libvhost-user, DPDK, the vhost crates; four if you count RSD), none implement RESET_DEVICE. libvhost-user and DPDK do implement RESET_OWNER, though, and they both do it by resetting the device, not by disabling any vring. The vhost crate also implements RESET_OWNER, but it doesn’t do anything but forward it as such to the actual device implementation (virtiofsd doesn’t implement this function, so ignores it). It does document that it would disable all vrings, but does so in the past and has marked it deprecated (ever since the method was introduced in the fourth commit to the repository, making it extremely unlikely that anyone would implement it). So I would like to know why the spec says that it would disable all vrings, when none of the implementations (qemu, libvhost-user, DPDK) agree on that. Let me look it up: Before commit c61f09ed855, it did say “stopping” instead of “disabling”. The commit doesn’t explain why it changed this. Commit a586e65bbd0 (just a week prior) deprecated the command, changing it from “connection is about to be closed, [front-end] will no longer own this connection” to “deprecated, used to be sent to request stopping all vrings”. To me, the front-end closing the connection sounds like a good point to reset, which would indeed stop all vrings, but not just that. Notably, qemu agrees, because RESET_OWNER is used only in the vhost_user_reset_device() function. a586e65bbd0^ removed that function’s use, though, specifically because it would cause a reset, when the intention was just to stop. So it sounds to me like “used to be sent to request stopping all vrings” is rather what vhost_net wanted, but specifically not what the message did, which was anything between nothing and a reset, I presume (because it never specified what the back-end was supposed to do, though apparently libvhost-user and DPDK both took it to mean reset). Why it was then changed to “disabling”, I absolutely cannot say. Now, the code change here is indeed effectively a no-op, as you deduce below, but in the context of the whole series the situation is a bit different: As far as I understand, the point is to have guest-initiated resets be forwarded to back-ends. But by removing the RESET_OWNER fallback, no back-end will actually do a reset still. I understand that as per the specification, using RESET_OWNER for resetting is wrong. But all implementations that implemented it before it was deprecated do interpret it as a reset, so I don’t think using it as a fallback is actually wrong. Hanna > The only caller of vhost_user_reset_device() is vhost_user_scsi_reset(). > It checks that F_RESET_DEVICE was negotiated before calling it: > > static void vhost_user_scsi_reset(VirtIODevice *vdev) > { > VHostSCSICommon *vsc = VHOST_SCSI_COMMON(vdev); > struct vhost_dev *dev = &vsc->dev; > > /* > * Historically, reset was not implemented so only reset devices > * that are expecting it. > */ > if (!virtio_has_feature(dev->protocol_features, > VHOST_USER_PROTOCOL_F_RESET_DEVICE)) { > return; > } > > if (dev->vhost_ops->vhost_reset_device) { > dev->vhost_ops->vhost_reset_device(dev); > } > } > > Therefore VHOST_USER_RESET_OWNER is actually never sent by > vhost_user_reset_device(). Remove the dead code. This effectively moves > the vhost-user protocol specific code from vhost-user-scsi.c into > vhost-user.c where it belongs. > > Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> > --- > hw/scsi/vhost-user-scsi.c | 9 --------- > hw/virtio/vhost-user.c | 13 +++++++++---- > 2 files changed, 9 insertions(+), 13 deletions(-) > > diff --git a/hw/scsi/vhost-user-scsi.c b/hw/scsi/vhost-user-scsi.c > index ee99b19e7a..8582b2e8ab 100644 > --- a/hw/scsi/vhost-user-scsi.c > +++ b/hw/scsi/vhost-user-scsi.c > @@ -71,15 +71,6 @@ static void vhost_user_scsi_reset(VirtIODevice *vdev) > VHostSCSICommon *vsc = VHOST_SCSI_COMMON(vdev); > struct vhost_dev *dev = &vsc->dev; > > - /* > - * Historically, reset was not implemented so only reset devices > - * that are expecting it. > - */ > - if (!virtio_has_feature(dev->protocol_features, > - VHOST_USER_PROTOCOL_F_RESET_DEVICE)) { > - return; > - } > - > if (dev->vhost_ops->vhost_reset_device) { > dev->vhost_ops->vhost_reset_device(dev); > } > diff --git a/hw/virtio/vhost-user.c b/hw/virtio/vhost-user.c > index 8dcf049d42..7bed9ad7d5 100644 > --- a/hw/virtio/vhost-user.c > +++ b/hw/virtio/vhost-user.c > @@ -1492,12 +1492,17 @@ static int vhost_user_reset_device(struct vhost_dev *dev) > { > VhostUserMsg msg = { > .hdr.flags = VHOST_USER_VERSION, > + .hdr.request = VHOST_USER_RESET_DEVICE, > }; > > - msg.hdr.request = virtio_has_feature(dev->protocol_features, > - VHOST_USER_PROTOCOL_F_RESET_DEVICE) > - ? VHOST_USER_RESET_DEVICE > - : VHOST_USER_RESET_OWNER; > + /* > + * Historically, reset was not implemented so only reset devices > + * that are expecting it. > + */ > + if (!virtio_has_feature(dev->protocol_features, > + VHOST_USER_PROTOCOL_F_RESET_DEVICE)) { > + return -ENOSYS; > + } > > return vhost_user_write(dev, &msg, NULL, 0); > } ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 1/3] vhost-user: do not send RESET_OWNER on device reset 2023-10-04 10:44 ` Hanna Czenczek @ 2023-10-04 11:15 ` Stefan Hajnoczi 2023-10-04 12:23 ` Hanna Czenczek 0 siblings, 1 reply; 10+ messages in thread From: Stefan Hajnoczi @ 2023-10-04 11:15 UTC (permalink / raw) To: Hanna Czenczek Cc: Stefan Hajnoczi, qemu-devel, Michael S. Tsirkin, Paolo Bonzini, Fam Zheng, Marc-André Lureau, Thomas Huth, Raphael Norwitz, Philippe Mathieu-Daudé, eperezma, Daniel P. Berrangé On Wed, 4 Oct 2023 at 06:44, Hanna Czenczek <hreitz@redhat.com> wrote: > > On 04.10.23 03:45, Stefan Hajnoczi wrote: > > The VHOST_USER_RESET_OWNER message is deprecated in the spec: > > > > This is no longer used. Used to be sent to request disabling all > > rings, but some back-ends interpreted it to also discard connection > > state (this interpretation would lead to bugs). It is recommended > > that back-ends either ignore this message, or use it to disable all > > rings. > > According to the spec, it is then indeed better to not call it in > vhost_user_reset_device, because it seems like it would be interpreted > as something completely different. > > However, between the three back-end implementations of vhost-user I know > of (libvhost-user, DPDK, the vhost crates; four if you count RSD), none > implement RESET_DEVICE. libvhost-user and DPDK do implement > RESET_OWNER, though, and they both do it by resetting the device, not by > disabling any vring. The vhost crate also implements RESET_OWNER, but > it doesn’t do anything but forward it as such to the actual device > implementation (virtiofsd doesn’t implement this function, so ignores > it). It does document that it would disable all vrings, but does so in > the past and has marked it deprecated (ever since the method was > introduced in the fourth commit to the repository, making it extremely > unlikely that anyone would implement it). Hi Hanna, vhost-user-backend still seems to reset all vhost-user protocol state, making RESET_OWNER unusable: https://github.com/rust-vmm/vhost/blob/main/crates/vhost-user-backend/src/handler.rs#L230 Have I missed something? Stefan > > So I would like to know why the spec says that it would disable all > vrings, when none of the implementations (qemu, libvhost-user, DPDK) > agree on that. Let me look it up: > > Before commit c61f09ed855, it did say “stopping” instead of > “disabling”. The commit doesn’t explain why it changed this. Commit > a586e65bbd0 (just a week prior) deprecated the command, changing it from > “connection is about to be closed, [front-end] will no longer own this > connection” to “deprecated, used to be sent to request stopping all > vrings”. To me, the front-end closing the connection sounds like a good > point to reset, which would indeed stop all vrings, but not just that. > Notably, qemu agrees, because RESET_OWNER is used only in the > vhost_user_reset_device() function. a586e65bbd0^ removed that function’s > use, though, specifically because it would cause a reset, when the > intention was just to stop. > > So it sounds to me like “used to be sent to request stopping all vrings” > is rather what vhost_net wanted, but specifically not what the message > did, which was anything between nothing and a reset, I presume (because > it never specified what the back-end was supposed to do, though > apparently libvhost-user and DPDK both took it to mean reset). Why it > was then changed to “disabling”, I absolutely cannot say. > > Now, the code change here is indeed effectively a no-op, as you deduce > below, but in the context of the whole series the situation is a bit > different: As far as I understand, the point is to have guest-initiated > resets be forwarded to back-ends. But by removing the RESET_OWNER > fallback, no back-end will actually do a reset still. > > I understand that as per the specification, using RESET_OWNER for > resetting is wrong. But all implementations that implemented it before > it was deprecated do interpret it as a reset, so I don’t think using it > as a fallback is actually wrong. > > Hanna > > > The only caller of vhost_user_reset_device() is vhost_user_scsi_reset(). > > It checks that F_RESET_DEVICE was negotiated before calling it: > > > > static void vhost_user_scsi_reset(VirtIODevice *vdev) > > { > > VHostSCSICommon *vsc = VHOST_SCSI_COMMON(vdev); > > struct vhost_dev *dev = &vsc->dev; > > > > /* > > * Historically, reset was not implemented so only reset devices > > * that are expecting it. > > */ > > if (!virtio_has_feature(dev->protocol_features, > > VHOST_USER_PROTOCOL_F_RESET_DEVICE)) { > > return; > > } > > > > if (dev->vhost_ops->vhost_reset_device) { > > dev->vhost_ops->vhost_reset_device(dev); > > } > > } > > > > Therefore VHOST_USER_RESET_OWNER is actually never sent by > > vhost_user_reset_device(). Remove the dead code. This effectively moves > > the vhost-user protocol specific code from vhost-user-scsi.c into > > vhost-user.c where it belongs. > > > > Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> > > --- > > hw/scsi/vhost-user-scsi.c | 9 --------- > > hw/virtio/vhost-user.c | 13 +++++++++---- > > 2 files changed, 9 insertions(+), 13 deletions(-) > > > > diff --git a/hw/scsi/vhost-user-scsi.c b/hw/scsi/vhost-user-scsi.c > > index ee99b19e7a..8582b2e8ab 100644 > > --- a/hw/scsi/vhost-user-scsi.c > > +++ b/hw/scsi/vhost-user-scsi.c > > @@ -71,15 +71,6 @@ static void vhost_user_scsi_reset(VirtIODevice *vdev) > > VHostSCSICommon *vsc = VHOST_SCSI_COMMON(vdev); > > struct vhost_dev *dev = &vsc->dev; > > > > - /* > > - * Historically, reset was not implemented so only reset devices > > - * that are expecting it. > > - */ > > - if (!virtio_has_feature(dev->protocol_features, > > - VHOST_USER_PROTOCOL_F_RESET_DEVICE)) { > > - return; > > - } > > - > > if (dev->vhost_ops->vhost_reset_device) { > > dev->vhost_ops->vhost_reset_device(dev); > > } > > diff --git a/hw/virtio/vhost-user.c b/hw/virtio/vhost-user.c > > index 8dcf049d42..7bed9ad7d5 100644 > > --- a/hw/virtio/vhost-user.c > > +++ b/hw/virtio/vhost-user.c > > @@ -1492,12 +1492,17 @@ static int vhost_user_reset_device(struct vhost_dev *dev) > > { > > VhostUserMsg msg = { > > .hdr.flags = VHOST_USER_VERSION, > > + .hdr.request = VHOST_USER_RESET_DEVICE, > > }; > > > > - msg.hdr.request = virtio_has_feature(dev->protocol_features, > > - VHOST_USER_PROTOCOL_F_RESET_DEVICE) > > - ? VHOST_USER_RESET_DEVICE > > - : VHOST_USER_RESET_OWNER; > > + /* > > + * Historically, reset was not implemented so only reset devices > > + * that are expecting it. > > + */ > > + if (!virtio_has_feature(dev->protocol_features, > > + VHOST_USER_PROTOCOL_F_RESET_DEVICE)) { > > + return -ENOSYS; > > + } > > > > return vhost_user_write(dev, &msg, NULL, 0); > > } > > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 1/3] vhost-user: do not send RESET_OWNER on device reset 2023-10-04 11:15 ` Stefan Hajnoczi @ 2023-10-04 12:23 ` Hanna Czenczek 0 siblings, 0 replies; 10+ messages in thread From: Hanna Czenczek @ 2023-10-04 12:23 UTC (permalink / raw) To: Stefan Hajnoczi Cc: Stefan Hajnoczi, qemu-devel, Michael S. Tsirkin, Paolo Bonzini, Fam Zheng, Marc-André Lureau, Thomas Huth, Raphael Norwitz, Philippe Mathieu-Daudé, eperezma, Daniel P. Berrangé On 04.10.23 13:15, Stefan Hajnoczi wrote: > On Wed, 4 Oct 2023 at 06:44, Hanna Czenczek <hreitz@redhat.com> wrote: >> On 04.10.23 03:45, Stefan Hajnoczi wrote: >>> The VHOST_USER_RESET_OWNER message is deprecated in the spec: >>> >>> This is no longer used. Used to be sent to request disabling all >>> rings, but some back-ends interpreted it to also discard connection >>> state (this interpretation would lead to bugs). It is recommended >>> that back-ends either ignore this message, or use it to disable all >>> rings. >> According to the spec, it is then indeed better to not call it in >> vhost_user_reset_device, because it seems like it would be interpreted >> as something completely different. >> >> However, between the three back-end implementations of vhost-user I know >> of (libvhost-user, DPDK, the vhost crates; four if you count RSD), none >> implement RESET_DEVICE. libvhost-user and DPDK do implement >> RESET_OWNER, though, and they both do it by resetting the device, not by >> disabling any vring. The vhost crate also implements RESET_OWNER, but >> it doesn’t do anything but forward it as such to the actual device >> implementation (virtiofsd doesn’t implement this function, so ignores >> it). It does document that it would disable all vrings, but does so in >> the past and has marked it deprecated (ever since the method was >> introduced in the fourth commit to the repository, making it extremely >> unlikely that anyone would implement it). > Hi Hanna, > vhost-user-backend still seems to reset all vhost-user protocol state, > making RESET_OWNER unusable: > https://github.com/rust-vmm/vhost/blob/main/crates/vhost-user-backend/src/handler.rs#L230 > > Have I missed something? No, I missed that. I overlooked that when grepping for reset_owner. This implementation kind of does follow the original pre-2015 description of RESET_OWNER, but I can’t believe this code originated from pre-2015, which makes it really weird. It’s strange that in a commit from April 2019 the vhost crate marked the function as (“no longer used”), and then it was implemented in September of 2019, notably as something completely different than “Used to be sent to request disabling all rings”. Another thing I noticed is that while libvhost-user does call the function vu_reset_device_exec(), what it does is indeed disable all vrings instead of resetting anything, i.e. what the spec says (and what I didn’t think anyone did). DPDK interestingly does do a reset, and this includes clearing protocol_features (in reset_device()). So two things: First, I’d prefer (slightly) for the commit message to mention that while RESET_OWNER would not be usable for a reset if everything were according to spec, the main problem to me seems that RESET_OWNER was never clearly defined before being deprecated, so different implementations do different things regardless of what the spec says now, which means it’s basically burned and no front-end may ever issue it at all lest it wants to get the back-end into an implementation-defined state. Second, I wonder what exactly you mean by saying that RESET_OWNER resetting all vhost-user protocol state were to make the command unusable for resetting. The vhost-user-backend implementation doesn’t clear all state, but resets only three things: The @owned field (which I don’t think is really used outside of vhost/src/vhost_user/dummy_slave.rs (this name is begging for a conscious language overhaul...), which appears not really important?), the virtio features (this I would expect any device reset to do), and the vhost-user protocol features. Now, yes, clearing the vhost-user protocol features doesn’t seem like something that should be done just because of a device reset. However, note that DPDK’s reset_device() does this, too. What I’m getting at is that we don’t have a clear definition of what RESET_DEVICE is supposed to do either, i.e. it doesn’t explicitly say that protocol features are not to be reset. Sure, that may be obvious, but we should clarify this so that if e.g. DPDK is to implement RESET_DEVICE, they will take care not use its reset_device() implementation, which does reset protocol_features. (Also, now that I look at RESET_DEVICE – why does it say that it disables all vrings? (Has done so since its introduction.) Is this something that qemu expects and will handle, i.e. that after a guest-initiated reset, the rings are enabled when the guest wants to use the device again? Also, it doesn’t say the rings are stopped, so basically, as it is *right now* (where we only have three ring states, stopped, started+disabled, started+enabled), disabling vrings implicitly means they must still be started, because they can’t be disabled when stopped. I’m going to change that, but as it reads right now, RESET_DEVICE does not seem like the reset we want. We should really get to fix that, too, before back-ends start to actually implement it.) Hanna ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 2/3] vhost-backend: remove vhost_kernel_reset_device() 2023-10-04 1:45 [PATCH v2 0/3] vhost: clean up device reset Stefan Hajnoczi 2023-10-04 1:45 ` [PATCH v2 1/3] vhost-user: do not send RESET_OWNER on " Stefan Hajnoczi @ 2023-10-04 1:45 ` Stefan Hajnoczi 2023-10-04 10:48 ` Hanna Czenczek 2023-10-04 1:45 ` [PATCH v2 3/3] virtio: call ->vhost_reset_device() during reset Stefan Hajnoczi 2023-10-04 2:07 ` [PATCH v2 0/3] vhost: clean up device reset Raphael Norwitz 3 siblings, 1 reply; 10+ messages in thread From: Stefan Hajnoczi @ 2023-10-04 1:45 UTC (permalink / raw) To: qemu-devel Cc: Michael S. Tsirkin, Paolo Bonzini, Fam Zheng, hreitz, Marc-André Lureau, Thomas Huth, Raphael Norwitz, Philippe Mathieu-Daudé, eperezma, Daniel P. Berrangé, Stefan Hajnoczi vhost_kernel_reset_device() invokes RESET_OWNER, which disassociates the owner process from the device. The device is left non-operational since SET_OWNER is only called once during startup in vhost_dev_init(). vhost_kernel_reset_device() is never called so this latent bug never appears. Get rid of vhost_kernel_reset_device() for now. If someone needs it in the future they'll need to implement it correctly. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> --- hw/virtio/vhost-backend.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/hw/virtio/vhost-backend.c b/hw/virtio/vhost-backend.c index 8e581575c9..17f3fc6a08 100644 --- a/hw/virtio/vhost-backend.c +++ b/hw/virtio/vhost-backend.c @@ -197,11 +197,6 @@ static int vhost_kernel_set_owner(struct vhost_dev *dev) return vhost_kernel_call(dev, VHOST_SET_OWNER, NULL); } -static int vhost_kernel_reset_device(struct vhost_dev *dev) -{ - return vhost_kernel_call(dev, VHOST_RESET_OWNER, NULL); -} - static int vhost_kernel_get_vq_index(struct vhost_dev *dev, int idx) { assert(idx >= dev->vq_index && idx < dev->vq_index + dev->nvqs); @@ -322,7 +317,6 @@ const VhostOps kernel_ops = { .vhost_get_features = vhost_kernel_get_features, .vhost_set_backend_cap = vhost_kernel_set_backend_cap, .vhost_set_owner = vhost_kernel_set_owner, - .vhost_reset_device = vhost_kernel_reset_device, .vhost_get_vq_index = vhost_kernel_get_vq_index, .vhost_vsock_set_guest_cid = vhost_kernel_vsock_set_guest_cid, .vhost_vsock_set_running = vhost_kernel_vsock_set_running, -- 2.41.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2 2/3] vhost-backend: remove vhost_kernel_reset_device() 2023-10-04 1:45 ` [PATCH v2 2/3] vhost-backend: remove vhost_kernel_reset_device() Stefan Hajnoczi @ 2023-10-04 10:48 ` Hanna Czenczek 0 siblings, 0 replies; 10+ messages in thread From: Hanna Czenczek @ 2023-10-04 10:48 UTC (permalink / raw) To: Stefan Hajnoczi, qemu-devel Cc: Michael S. Tsirkin, Paolo Bonzini, Fam Zheng, Marc-André Lureau, Thomas Huth, Raphael Norwitz, Philippe Mathieu-Daudé, eperezma, Daniel P. Berrangé On 04.10.23 03:45, Stefan Hajnoczi wrote: > vhost_kernel_reset_device() invokes RESET_OWNER, which disassociates the > owner process from the device. The device is left non-operational since > SET_OWNER is only called once during startup in vhost_dev_init(). > > vhost_kernel_reset_device() is never called so this latent bug never > appears. Get rid of vhost_kernel_reset_device() for now. If someone > needs it in the future they'll need to implement it correctly. > > Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> > --- > hw/virtio/vhost-backend.c | 6 ------ > 1 file changed, 6 deletions(-) The obvious way would be to immediately call SET_OWNER again, but I assume that just like in vhost-user, it is probably pretty much left undefined what exactly should happen in the back-end on RESET_OWNER, and so I agree that in general, starting to call this function now when we didn’t before is more of a liability then anything. Reviewed-by: Hanna Czenczek <hreitz@redhat.com> ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 3/3] virtio: call ->vhost_reset_device() during reset 2023-10-04 1:45 [PATCH v2 0/3] vhost: clean up device reset Stefan Hajnoczi 2023-10-04 1:45 ` [PATCH v2 1/3] vhost-user: do not send RESET_OWNER on " Stefan Hajnoczi 2023-10-04 1:45 ` [PATCH v2 2/3] vhost-backend: remove vhost_kernel_reset_device() Stefan Hajnoczi @ 2023-10-04 1:45 ` Stefan Hajnoczi 2023-10-04 11:04 ` Hanna Czenczek 2023-10-04 2:07 ` [PATCH v2 0/3] vhost: clean up device reset Raphael Norwitz 3 siblings, 1 reply; 10+ messages in thread From: Stefan Hajnoczi @ 2023-10-04 1:45 UTC (permalink / raw) To: qemu-devel Cc: Michael S. Tsirkin, Paolo Bonzini, Fam Zheng, hreitz, Marc-André Lureau, Thomas Huth, Raphael Norwitz, Philippe Mathieu-Daudé, eperezma, Daniel P. Berrangé, Stefan Hajnoczi vhost-user-scsi has a VirtioDeviceClass->reset() function that calls ->vhost_reset_device(). The other vhost devices don't notify the vhost device upon reset. Stateful vhost devices may need to handle device reset in order to free resources or prevent stale device state from interfering after reset. Call ->vhost_device_reset() from virtio_reset() so that that vhost devices are notified of device reset. This patch affects behavior as follows: - vhost-kernel: No change in behavior since ->vhost_reset_device() is not implemented. - vhost-user: back-ends that negotiate VHOST_USER_PROTOCOL_F_RESET_DEVICE now receive a VHOST_USER_DEVICE_RESET message upon device reset. Otherwise there is no change in behavior. DPDK, SPDK, libvhost-user, and the vhost-user-backend crate do not negotiate VHOST_USER_PROTOCOL_F_RESET_DEVICE automatically. - vhost-vdpa: an extra SET_STATUS 0 call is made during device reset. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> --- meson.build | 1 + include/hw/virtio/vhost.h | 10 ++++++++++ hw/scsi/vhost-user-scsi.c | 11 ----------- hw/virtio/vhost.c | 9 +++++++++ hw/virtio/virtio.c | 4 ++++ 5 files changed, 24 insertions(+), 11 deletions(-) diff --git a/meson.build b/meson.build index 21a1bc03f8..dd5e61915a 100644 --- a/meson.build +++ b/meson.build @@ -2143,6 +2143,7 @@ config_host_data.set('CONFIG_TPM', have_tpm) config_host_data.set('CONFIG_TSAN', get_option('tsan')) config_host_data.set('CONFIG_USB_LIBUSB', libusb.found()) config_host_data.set('CONFIG_VDE', vde.found()) +config_host_data.set('CONFIG_VHOST', have_vhost) config_host_data.set('CONFIG_VHOST_NET', have_vhost_net) config_host_data.set('CONFIG_VHOST_NET_USER', have_vhost_net_user) config_host_data.set('CONFIG_VHOST_NET_VDPA', have_vhost_net_vdpa) diff --git a/include/hw/virtio/vhost.h b/include/hw/virtio/vhost.h index 6a173cb9fa..14621f9e79 100644 --- a/include/hw/virtio/vhost.h +++ b/include/hw/virtio/vhost.h @@ -338,4 +338,14 @@ int vhost_dev_set_inflight(struct vhost_dev *dev, int vhost_dev_get_inflight(struct vhost_dev *dev, uint16_t queue_size, struct vhost_inflight *inflight); bool vhost_dev_has_iommu(struct vhost_dev *dev); + +#ifdef CONFIG_VHOST +int vhost_reset_device(struct vhost_dev *hdev); +#else +static inline int vhost_reset_device(struct vhost_dev *hdev) +{ + return -ENOSYS; +} +#endif /* CONFIG_VHOST */ + #endif diff --git a/hw/scsi/vhost-user-scsi.c b/hw/scsi/vhost-user-scsi.c index 8582b2e8ab..6917a748bb 100644 --- a/hw/scsi/vhost-user-scsi.c +++ b/hw/scsi/vhost-user-scsi.c @@ -66,16 +66,6 @@ static void vhost_user_scsi_set_status(VirtIODevice *vdev, uint8_t status) } } -static void vhost_user_scsi_reset(VirtIODevice *vdev) -{ - VHostSCSICommon *vsc = VHOST_SCSI_COMMON(vdev); - struct vhost_dev *dev = &vsc->dev; - - if (dev->vhost_ops->vhost_reset_device) { - dev->vhost_ops->vhost_reset_device(dev); - } -} - static void vhost_dummy_handle_output(VirtIODevice *vdev, VirtQueue *vq) { } @@ -195,7 +185,6 @@ static void vhost_user_scsi_class_init(ObjectClass *klass, void *data) vdc->get_features = vhost_scsi_common_get_features; vdc->set_config = vhost_scsi_common_set_config; vdc->set_status = vhost_user_scsi_set_status; - vdc->reset = vhost_user_scsi_reset; fwc->get_dev_path = vhost_scsi_common_get_fw_dev_path; } diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c index e2f6ffb446..6003e50e83 100644 --- a/hw/virtio/vhost.c +++ b/hw/virtio/vhost.c @@ -2087,3 +2087,12 @@ int vhost_net_set_backend(struct vhost_dev *hdev, return -ENOSYS; } + +int vhost_reset_device(struct vhost_dev *hdev) +{ + if (hdev->vhost_ops->vhost_reset_device) { + return hdev->vhost_ops->vhost_reset_device(hdev); + } + + return -ENOSYS; +} diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c index 4577f3f5b3..d863ffd5d6 100644 --- a/hw/virtio/virtio.c +++ b/hw/virtio/virtio.c @@ -2121,6 +2121,10 @@ void virtio_reset(void *opaque) vdev->device_endian = virtio_default_endian(); } + if (vdev->vhost_started) { + vhost_reset_device(k->get_vhost(vdev)); + } + if (k->reset) { k->reset(vdev); } -- 2.41.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2 3/3] virtio: call ->vhost_reset_device() during reset 2023-10-04 1:45 ` [PATCH v2 3/3] virtio: call ->vhost_reset_device() during reset Stefan Hajnoczi @ 2023-10-04 11:04 ` Hanna Czenczek 0 siblings, 0 replies; 10+ messages in thread From: Hanna Czenczek @ 2023-10-04 11:04 UTC (permalink / raw) To: Stefan Hajnoczi, qemu-devel Cc: Michael S. Tsirkin, Paolo Bonzini, Fam Zheng, Marc-André Lureau, Thomas Huth, Raphael Norwitz, Philippe Mathieu-Daudé, eperezma, Daniel P. Berrangé On 04.10.23 03:45, Stefan Hajnoczi wrote: > vhost-user-scsi has a VirtioDeviceClass->reset() function that calls > ->vhost_reset_device(). The other vhost devices don't notify the vhost > device upon reset. > > Stateful vhost devices may need to handle device reset in order to free > resources or prevent stale device state from interfering after reset. > > Call ->vhost_device_reset() from virtio_reset() so that that vhost > devices are notified of device reset. > > This patch affects behavior as follows: > - vhost-kernel: No change in behavior since ->vhost_reset_device() is > not implemented. > - vhost-user: back-ends that negotiate > VHOST_USER_PROTOCOL_F_RESET_DEVICE now receive a > VHOST_USER_DEVICE_RESET message upon device reset. Otherwise there is > no change in behavior. DPDK, SPDK, libvhost-user, and the > vhost-user-backend crate do not negotiate > VHOST_USER_PROTOCOL_F_RESET_DEVICE automatically. > - vhost-vdpa: an extra SET_STATUS 0 call is made during device reset. > > Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> > --- > meson.build | 1 + > include/hw/virtio/vhost.h | 10 ++++++++++ > hw/scsi/vhost-user-scsi.c | 11 ----------- > hw/virtio/vhost.c | 9 +++++++++ > hw/virtio/virtio.c | 4 ++++ > 5 files changed, 24 insertions(+), 11 deletions(-) Reviewed-by: Hanna Czenczek <hreitz@redhat.com> ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 0/3] vhost: clean up device reset 2023-10-04 1:45 [PATCH v2 0/3] vhost: clean up device reset Stefan Hajnoczi ` (2 preceding siblings ...) 2023-10-04 1:45 ` [PATCH v2 3/3] virtio: call ->vhost_reset_device() during reset Stefan Hajnoczi @ 2023-10-04 2:07 ` Raphael Norwitz 3 siblings, 0 replies; 10+ messages in thread From: Raphael Norwitz @ 2023-10-04 2:07 UTC (permalink / raw) To: Stefan Hajnoczi Cc: open list:All patches CC here, Michael S. Tsirkin, Paolo Bonzini, Fam Zheng, hreitz@redhat.com, Marc-André Lureau, Thomas Huth, Philippe Mathieu-Daudé, eperezma@redhat.com, Daniel P. Berrangé > On Oct 3, 2023, at 9:45 PM, Stefan Hajnoczi <stefanha@redhat.com> wrote: > > v2: > - Fix compilation error when vhost is not built [Michael] > > Stateful vhost devices may need to free resources or clear device state upon > device reset. The vhost-user protocol has a VHOST_USER_RESET_DEVICE message for > this and vDPA has SET_STATUS 0, but only QEMU's vhost-user-scsi device actually > implements this today. > > This patch series performs device reset across all device types. When > virtio_reset() is called, the associated vhost_dev's ->vhost_reset_device() is > called. vhost-user-scsi's one-off implementation is obsoleted and removed. > > This patch affects behavior as follows: > - vhost-kernel: no change in behavior. No ioctl calls are made. > - vhost-user: back-ends that negotiate > VHOST_USER_PROTOCOL_F_RESET_DEVICE now receive a > VHOST_USER_DEVICE_RESET message upon device reset. Otherwise there is > no change in behavior. DPDK, SPDK, libvhost-user, and the > vhost-user-backend crate do not negotiate > VHOST_USER_PROTOCOL_F_RESET_DEVICE automatically. > - vhost-vdpa: an extra SET_STATUS 0 call is made during device reset. > > I have tested this series with vhost-net (kernel), vhost-user-blk, and > vhost-user-fs (both Rust and legacy C). > > Stefan Hajnoczi (3): > vhost-user: do not send RESET_OWNER on device reset > vhost-backend: remove vhost_kernel_reset_device() > virtio: call ->vhost_reset_device() during reset For the series: Reviewed-by: Raphael Norwitz <raphael.norwitz@nutanix.com> > > meson.build | 1 + > include/hw/virtio/vhost.h | 10 ++++++++++ > hw/scsi/vhost-user-scsi.c | 20 -------------------- > hw/virtio/vhost-backend.c | 6 ------ > hw/virtio/vhost-user.c | 13 +++++++++---- > hw/virtio/vhost.c | 9 +++++++++ > hw/virtio/virtio.c | 4 ++++ > 7 files changed, 33 insertions(+), 30 deletions(-) > > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-10-04 12:24 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-10-04 1:45 [PATCH v2 0/3] vhost: clean up device reset Stefan Hajnoczi 2023-10-04 1:45 ` [PATCH v2 1/3] vhost-user: do not send RESET_OWNER on " Stefan Hajnoczi 2023-10-04 10:44 ` Hanna Czenczek 2023-10-04 11:15 ` Stefan Hajnoczi 2023-10-04 12:23 ` Hanna Czenczek 2023-10-04 1:45 ` [PATCH v2 2/3] vhost-backend: remove vhost_kernel_reset_device() Stefan Hajnoczi 2023-10-04 10:48 ` Hanna Czenczek 2023-10-04 1:45 ` [PATCH v2 3/3] virtio: call ->vhost_reset_device() during reset Stefan Hajnoczi 2023-10-04 11:04 ` Hanna Czenczek 2023-10-04 2:07 ` [PATCH v2 0/3] vhost: clean up device reset Raphael Norwitz
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).