From: Christian Schoenebeck <qemu_oss@crudebyte.com>
To: qemu-devel@nongnu.org
Cc: Stefano Stabellini <sstabellini@kernel.org>,
groug@kaod.org, anthony.perard@citrix.com,
Stefano Stabellini <stefano.stabellini@xilinx.com>,
paul@xen.org
Subject: Re: [PATCH 1/2] Revert "9p: init_in_iov_from_pdu can truncate the size"
Date: Wed, 20 May 2020 13:54:13 +0200 [thread overview]
Message-ID: <1727767.QC7mgPDRgF@silver> (raw)
In-Reply-To: <20200520014712.24213-1-sstabellini@kernel.org>
On Mittwoch, 20. Mai 2020 03:47:11 CEST Stefano Stabellini wrote:
> From: Stefano Stabellini <stefano.stabellini@xilinx.com>
>
> This reverts commit 16724a173049ac29c7b5ade741da93a0f46edff7.
> It causes https://bugs.launchpad.net/bugs/1877688.
>
> Signed-off-by: Stefano Stabellini <stefano.stabellini@xilinx.com>
> ---
Reviewed-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
> hw/9pfs/9p.c | 33 +++++++++++----------------------
> hw/9pfs/9p.h | 2 +-
> hw/9pfs/virtio-9p-device.c | 11 ++++-------
> hw/9pfs/xen-9p-backend.c | 15 ++++++---------
> 4 files changed, 22 insertions(+), 39 deletions(-)
>
> diff --git a/hw/9pfs/9p.c b/hw/9pfs/9p.c
> index a2a14b5979..d39bfee462 100644
> --- a/hw/9pfs/9p.c
> +++ b/hw/9pfs/9p.c
> @@ -2102,29 +2102,22 @@ out_nofid:
> * with qemu_iovec_destroy().
> */
> static void v9fs_init_qiov_from_pdu(QEMUIOVector *qiov, V9fsPDU *pdu,
> - size_t skip, size_t *size,
> + size_t skip, size_t size,
> bool is_write)
> {
> QEMUIOVector elem;
> struct iovec *iov;
> unsigned int niov;
> - size_t alloc_size = *size + skip;
>
> if (is_write) {
> - pdu->s->transport->init_out_iov_from_pdu(pdu, &iov, &niov,
> alloc_size); + pdu->s->transport->init_out_iov_from_pdu(pdu, &iov,
> &niov, size + skip); } else {
> - pdu->s->transport->init_in_iov_from_pdu(pdu, &iov, &niov,
> &alloc_size); - }
> -
> - if (alloc_size < skip) {
> - *size = 0;
> - } else {
> - *size = alloc_size - skip;
> + pdu->s->transport->init_in_iov_from_pdu(pdu, &iov, &niov, size +
> skip); }
>
> qemu_iovec_init_external(&elem, iov, niov);
> qemu_iovec_init(qiov, niov);
> - qemu_iovec_concat(qiov, &elem, skip, *size);
> + qemu_iovec_concat(qiov, &elem, skip, size);
> }
>
> static int v9fs_xattr_read(V9fsState *s, V9fsPDU *pdu, V9fsFidState *fidp,
> @@ -2132,14 +2125,15 @@ static int v9fs_xattr_read(V9fsState *s, V9fsPDU
> *pdu, V9fsFidState *fidp, {
> ssize_t err;
> size_t offset = 7;
> - size_t read_count;
> + uint64_t read_count;
> QEMUIOVector qiov_full;
>
> if (fidp->fs.xattr.len < off) {
> read_count = 0;
> - } else if (fidp->fs.xattr.len - off < max_count) {
> - read_count = fidp->fs.xattr.len - off;
> } else {
> + read_count = fidp->fs.xattr.len - off;
> + }
> + if (read_count > max_count) {
> read_count = max_count;
> }
> err = pdu_marshal(pdu, offset, "d", read_count);
> @@ -2148,7 +2142,7 @@ static int v9fs_xattr_read(V9fsState *s, V9fsPDU *pdu,
> V9fsFidState *fidp, }
> offset += err;
>
> - v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset, &read_count, false);
> + v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset, read_count, false);
> err = v9fs_pack(qiov_full.iov, qiov_full.niov, 0,
> ((char *)fidp->fs.xattr.value) + off,
> read_count);
> @@ -2277,11 +2271,9 @@ static void coroutine_fn v9fs_read(void *opaque)
> QEMUIOVector qiov_full;
> QEMUIOVector qiov;
> int32_t len;
> - size_t size = max_count;
>
> - v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset + 4, &size, false);
> + v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset + 4, max_count,
> false); qemu_iovec_init(&qiov, qiov_full.niov);
> - max_count = size;
> do {
> qemu_iovec_reset(&qiov);
> qemu_iovec_concat(&qiov, &qiov_full, count, qiov_full.size -
> count); @@ -2532,7 +2524,6 @@ static void coroutine_fn v9fs_write(void
> *opaque) int32_t len = 0;
> int32_t total = 0;
> size_t offset = 7;
> - size_t size;
> V9fsFidState *fidp;
> V9fsPDU *pdu = opaque;
> V9fsState *s = pdu->s;
> @@ -2545,9 +2536,7 @@ static void coroutine_fn v9fs_write(void *opaque)
> return;
> }
> offset += err;
> - size = count;
> - v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset, &size, true);
> - count = size;
> + v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset, count, true);
> trace_v9fs_write(pdu->tag, pdu->id, fid, off, count, qiov_full.niov);
>
> fidp = get_fid(pdu, fid);
> diff --git a/hw/9pfs/9p.h b/hw/9pfs/9p.h
> index dd1c6cb8d2..1b9e110605 100644
> --- a/hw/9pfs/9p.h
> +++ b/hw/9pfs/9p.h
> @@ -436,7 +436,7 @@ struct V9fsTransport {
> ssize_t (*pdu_vunmarshal)(V9fsPDU *pdu, size_t offset, const char
> *fmt, va_list ap);
> void (*init_in_iov_from_pdu)(V9fsPDU *pdu, struct iovec **piov,
> - unsigned int *pniov, size_t *size);
> + unsigned int *pniov, size_t size);
> void (*init_out_iov_from_pdu)(V9fsPDU *pdu, struct iovec **piov,
> unsigned int *pniov, size_t size); void (*push_and_notify)(V9fsPDU
> *pdu);
> diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c
> index e5b44977c7..36f3aa9352 100644
> --- a/hw/9pfs/virtio-9p-device.c
> +++ b/hw/9pfs/virtio-9p-device.c
> @@ -147,22 +147,19 @@ static ssize_t virtio_pdu_vunmarshal(V9fsPDU *pdu,
> size_t offset, }
>
> static void virtio_init_in_iov_from_pdu(V9fsPDU *pdu, struct iovec **piov,
> - unsigned int *pniov, size_t *size)
> + unsigned int *pniov, size_t size)
> {
> V9fsState *s = pdu->s;
> V9fsVirtioState *v = container_of(s, V9fsVirtioState, state);
> VirtQueueElement *elem = v->elems[pdu->idx];
> size_t buf_size = iov_size(elem->in_sg, elem->in_num);
>
> - if (buf_size < P9_IOHDRSZ) {
> + if (buf_size < size) {
> VirtIODevice *vdev = VIRTIO_DEVICE(v);
>
> virtio_error(vdev,
> - "VirtFS reply type %d needs %zu bytes, buffer has %zu,
> less than minimum", - pdu->id + 1, *size, buf_size);
> - }
> - if (buf_size < *size) {
> - *size = buf_size;
> + "VirtFS reply type %d needs %zu bytes, buffer has
> %zu", + pdu->id + 1, size, buf_size);
> }
>
> *piov = elem->in_sg;
> diff --git a/hw/9pfs/xen-9p-backend.c b/hw/9pfs/xen-9p-backend.c
> index f04caabfe5..fc197f6c8a 100644
> --- a/hw/9pfs/xen-9p-backend.c
> +++ b/hw/9pfs/xen-9p-backend.c
> @@ -188,7 +188,7 @@ static void xen_9pfs_init_out_iov_from_pdu(V9fsPDU *pdu,
> static void xen_9pfs_init_in_iov_from_pdu(V9fsPDU *pdu,
> struct iovec **piov,
> unsigned int *pniov,
> - size_t *size)
> + size_t size)
> {
> Xen9pfsDev *xen_9pfs = container_of(pdu->s, Xen9pfsDev, state);
> Xen9pfsRing *ring = &xen_9pfs->rings[pdu->tag % xen_9pfs->num_rings];
> @@ -198,19 +198,16 @@ static void xen_9pfs_init_in_iov_from_pdu(V9fsPDU
> *pdu, g_free(ring->sg);
>
> ring->sg = g_new0(struct iovec, 2);
> - xen_9pfs_in_sg(ring, ring->sg, &num, pdu->idx, *size);
> + xen_9pfs_in_sg(ring, ring->sg, &num, pdu->idx, size);
>
> buf_size = iov_size(ring->sg, num);
> - if (buf_size < P9_IOHDRSZ) {
> - xen_pv_printf(&xen_9pfs->xendev, 0, "Xen 9pfs reply type %d needs "
> - "%zu bytes, buffer has %zu, less than minimum\n", -
> pdu->id + 1, *size, buf_size);
> + if (buf_size < size) {
> + xen_pv_printf(&xen_9pfs->xendev, 0, "Xen 9pfs request type %d"
> + "needs %zu bytes, buffer has %zu\n", pdu->id, size,
> + buf_size);
> xen_be_set_state(&xen_9pfs->xendev, XenbusStateClosing);
> xen_9pfs_disconnect(&xen_9pfs->xendev);
> }
> - if (buf_size < *size) {
> - *size = buf_size;
> - }
>
> *piov = ring->sg;
> *pniov = num;
Best regards,
Christian Schoenebeck
next prev parent reply other threads:[~2020-05-20 11:55 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-20 1:47 [PATCH 0/2] revert 9pfs reply truncation, wait for free room to reply Stefano Stabellini
2020-05-20 1:47 ` [PATCH 1/2] Revert "9p: init_in_iov_from_pdu can truncate the size" Stefano Stabellini
2020-05-20 11:54 ` Christian Schoenebeck [this message]
2020-05-20 1:47 ` [PATCH 2/2] xen/9pfs: yield when there isn't enough room on the ring Stefano Stabellini
2020-05-20 11:23 ` Christian Schoenebeck
2020-05-20 17:35 ` Stefano Stabellini
2020-05-20 18:46 ` Stefano Stabellini
2020-05-21 11:51 ` Christian Schoenebeck
2020-05-20 7:57 ` [PATCH 0/2] revert 9pfs reply truncation, wait for free room to reply no-reply
2020-05-20 13:42 ` Greg Kurz
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=1727767.QC7mgPDRgF@silver \
--to=qemu_oss@crudebyte.com \
--cc=anthony.perard@citrix.com \
--cc=groug@kaod.org \
--cc=paul@xen.org \
--cc=qemu-devel@nongnu.org \
--cc=sstabellini@kernel.org \
--cc=stefano.stabellini@xilinx.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 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.