qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <aliguori@linux.vnet.ibm.com>
To: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
Cc: ericvh@gmail.com, aliguori@us.ibm.com, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH -v2 02/22] vrtio-9p: Implement P9_TVERSION for 9P
Date: Fri, 26 Mar 2010 11:15:47 -0500	[thread overview]
Message-ID: <4BACDDB3.9070909@linux.vnet.ibm.com> (raw)
In-Reply-To: <1268730920-14584-3-git-send-email-aneesh.kumar@linux.vnet.ibm.com>

On 03/16/2010 04:15 AM, Aneesh Kumar K.V wrote:
> From: Anthony Liguori<aliguori@us.ibm.com>
>
> [kiran@linux.vnet.ibm.com: malloc to qemu_malloc coversion]
>
> Signed-off-by: Anthony Liguori<aliguori@us.ibm.com>
> Signed-off-by: Aneesh Kumar K.V<aneesh.kumar@linux.vnet.ibm.com>
> ---
>   hw/virtio-9p.c |  263 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-
>   1 files changed, 261 insertions(+), 2 deletions(-)
>
> diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
> index 115c93b..53b3d78 100644
> --- a/hw/virtio-9p.c
> +++ b/hw/virtio-9p.c
> @@ -111,10 +111,269 @@ static void free_pdu(V9fsState *s, V9fsPDU *pdu)
>       }
>   }
>
> +static void v9fs_string_free(V9fsString *str)
> +{
> +    free(str->data);
>    

qemu_free.
> +    str->data = NULL;
> +    str->size = 0;
> +}
> +
> +static size_t pdu_unpack(void *dst, V9fsPDU *pdu, size_t offset, size_t size)
> +{
> +    struct iovec *sg = pdu->elem.out_sg;
> +    BUG_ON((offset + size)>  sg[0].iov_len);
> +    memcpy(dst, sg[0].iov_base + offset, size);
> +    return size;
> +}
> +
> +/* FIXME i can do this with less variables */
> +static size_t pdu_pack(V9fsPDU *pdu, size_t offset, const void *src, size_t size)
> +{
> +    struct iovec *sg = pdu->elem.in_sg;
> +    size_t off = 0;
> +    size_t copied = 0;
> +    int i = 0;
> +
> +    for (i = 0; size&&  i<  pdu->elem.in_num; i++) {
> +        size_t len;
> +
> +        if (offset>= off&&  offset<  (off + sg[i].iov_len)) {
> +            len = MIN(sg[i].iov_len - (offset - off), size);
> +            memcpy(sg[i].iov_base + (offset - off), src, len);
> +            size -= len;
> +            offset += len;
> +            off = offset;
> +            copied += len;
> +            src += len;
> +        } else {
> +            off += sg[i].iov_len;
> +        }
> +    }
> +
> +    return copied;
> +}
> +
> +static int pdu_copy_sg(V9fsPDU *pdu, size_t offset, int rx, struct iovec *sg)
> +{
> +    size_t pos = 0;
> +    int i, j;
> +    struct iovec *src_sg;
> +    unsigned int num;
> +
> +    if (rx) {
> +        src_sg = pdu->elem.in_sg;
> +        num = pdu->elem.in_num;
> +    } else {
> +        src_sg = pdu->elem.out_sg;
> +        num = pdu->elem.out_num;
> +    }
> +
> +    j = 0;
> +    for (i = 0; i<  num; i++) {
> +        if (offset<= pos) {
> +            sg[j].iov_base = src_sg[i].iov_base;
> +            sg[j].iov_len = src_sg[i].iov_len;
> +            j++;
> +        } else if (offset<  (src_sg[i].iov_len + pos)) {
> +            sg[j].iov_base = src_sg[i].iov_base;
> +            sg[j].iov_len = src_sg[i].iov_len;
> +            sg[j].iov_base += (offset - pos);
> +            sg[j].iov_len -= (offset - pos);
> +            j++;
> +        }
> +        pos += src_sg[i].iov_len;
> +    }
> +
> +    return j;
> +}
> +
> +static size_t pdu_unmarshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...)
> +{
> +    size_t old_offset = offset;
> +    va_list ap;
> +    int i;
> +
> +    va_start(ap, fmt);
> +    for (i = 0; fmt[i]; i++) {
> +	switch (fmt[i]) {
> +	case 'b': {
> +	    int8_t *valp = va_arg(ap, int8_t *);
> +	    offset += pdu_unpack(valp, pdu, offset, sizeof(*valp));
> +	    break;
> +	}
> +	case 'w': {
> +	    int16_t *valp = va_arg(ap, int16_t *);
> +	    offset += pdu_unpack(valp, pdu, offset, sizeof(*valp));
> +	    break;
> +	}
> +	case 'd': {
> +	    int32_t *valp = va_arg(ap, int32_t *);
> +	    offset += pdu_unpack(valp, pdu, offset, sizeof(*valp));
> +	    break;
> +	}
> +	case 'q': {
> +	    int64_t *valp = va_arg(ap, int64_t *);
> +	    offset += pdu_unpack(valp, pdu, offset, sizeof(*valp));
> +	    break;
> +	}
> +	case 'v': {
> +	    struct iovec *iov = va_arg(ap, struct iovec *);
> +	    int *iovcnt = va_arg(ap, int *);
> +	    *iovcnt = pdu_copy_sg(pdu, offset, 0, iov);
> +	    break;
> +	}
> +	case 's': {
> +	    V9fsString *str = va_arg(ap, V9fsString *);
> +	    offset += pdu_unmarshal(pdu, offset, "w",&str->size);
> +	    /* FIXME: sanity check str->size */
> +	    str->data = qemu_malloc(str->size + 1);
> +	    offset += pdu_unpack(str->data, pdu, offset, str->size);
> +	    str->data[str->size] = 0;
> +	    break;
> +	}
> +	case 'Q': {
> +	    V9fsQID *qidp = va_arg(ap, V9fsQID *);
> +	    offset += pdu_unmarshal(pdu, offset, "bdq",
> +				&qidp->type,&qidp->version,&qidp->path);
> +	    break;
> +	}
> +	case 'S': {
> +	    V9fsStat *statp = va_arg(ap, V9fsStat *);
> +	    offset += pdu_unmarshal(pdu, offset, "wwdQdddqsssssddd",
> +				&statp->size,&statp->type,&statp->dev,
> +				&statp->qid,&statp->mode,&statp->atime,
> +				&statp->mtime,&statp->length,
> +				&statp->name,&statp->uid,&statp->gid,
> +				&statp->muid,&statp->extension,
> +				&statp->n_uid,&statp->n_gid,
> +				&statp->n_muid);
> +	    break;
> +	}
> +	default:
> +	    break;
> +	}
> +    }
> +
> +    va_end(ap);
> +
> +    return offset - old_offset;
> +}
> +
> +static size_t pdu_marshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...)
> +{
> +    size_t old_offset = offset;
> +    va_list ap;
> +    int i;
> +
> +    va_start(ap, fmt);
> +    for (i = 0; fmt[i]; i++) {
> +	switch (fmt[i]) {
> +	case 'b': {
> +	    int8_t val = va_arg(ap, int);
> +	    offset += pdu_pack(pdu, offset,&val, sizeof(val));
> +	    break;
> +	}
> +	case 'w': {
> +	    int16_t val = va_arg(ap, int);
> +	    offset += pdu_pack(pdu, offset,&val, sizeof(val));
> +	    break;
> +	}
> +	case 'd': {
> +	    int32_t val = va_arg(ap, int);
> +	    offset += pdu_pack(pdu, offset,&val, sizeof(val));
> +	    break;
> +	}
> +	case 'q': {
> +	    int64_t val = va_arg(ap, int64_t);
> +	    offset += pdu_pack(pdu, offset,&val, sizeof(val));
> +	    break;
> +	}
> +	case 'v': {
> +	    struct iovec *iov = va_arg(ap, struct iovec *);
> +	    int *iovcnt = va_arg(ap, int *);
> +	    *iovcnt = pdu_copy_sg(pdu, offset, 1, iov);
> +	    break;
> +	}
> +	case 's': {
> +	    V9fsString *str = va_arg(ap, V9fsString *);
> +	    offset += pdu_marshal(pdu, offset, "w", str->size);
> +	    offset += pdu_pack(pdu, offset, str->data, str->size);
> +	    break;
> +	}
> +	case 'Q': {
> +	    V9fsQID *qidp = va_arg(ap, V9fsQID *);
> +	    offset += pdu_marshal(pdu, offset, "bdq",
> +				  qidp->type, qidp->version, qidp->path);
> +	    break;
> +	}
> +	case 'S': {
> +	    V9fsStat *statp = va_arg(ap, V9fsStat *);
> +	    offset += pdu_marshal(pdu, offset, "wwdQdddqsssssddd",
> +				  statp->size, statp->type, statp->dev,
> +				&statp->qid, statp->mode, statp->atime,
> +				  statp->mtime, statp->length,&statp->name,
> +				&statp->uid,&statp->gid,&statp->muid,
> +				&statp->extension, statp->n_uid,
> +				  statp->n_gid, statp->n_muid);
> +	    break;
> +	}
> +	default:
> +	    break;
> +	}
> +    }
> +    va_end(ap);
> +
> +    return offset - old_offset;
> +}
>    

Adding the marshalling in  patch to implement P9_TVERSION is probably 
not ideal.

Regards,

Anthony Liguori

> +static void complete_pdu(V9fsState *s, V9fsPDU *pdu, ssize_t len)
> +{
> +    int8_t id = pdu->id + 1; /* Response */
> +
> +    if (len<  0) {
> +        V9fsString str;
> +        int err = -len;
> +
> +        str.data = strerror(err);
> +        str.size = strlen(str.data);
> +
> +        len = 7;
> +        len += pdu_marshal(pdu, len, "s",&str);
> +        if (dotu)
> +            len += pdu_marshal(pdu, len, "d", err);
> +
> +        id = P9_RERROR;
> +    }
> +
> +    /* fill out the header */
> +    pdu_marshal(pdu, 0, "dbw", (int32_t)len, id, pdu->tag);
> +
> +    /* keep these in sync */
> +    pdu->size = len;
> +    pdu->id = id;
> +
> +    /* push onto queue and notify */
> +    virtqueue_push(s->vq,&pdu->elem, len);
> +
> +    /* FIXME: we should batch these completions */
> +    virtio_notify(&s->vdev, s->vq);
> +
> +    free_pdu(s, pdu);
> +}
> +
>   static void v9fs_version(V9fsState *s, V9fsPDU *pdu)
>   {
> -    if (debug_9p_pdu)
> -        pprint_pdu(pdu);
> +    int32_t msize;
> +    V9fsString version;
> +    size_t offset = 7;
> +
> +    pdu_unmarshal(pdu, offset, "ds",&msize,&version);
> +    BUG_ON(strcmp(version.data, "9P2000.u") != 0);
> +
> +    offset += pdu_marshal(pdu, offset, "ds", msize,&version);
> +    complete_pdu(s, pdu, offset);
> +
> +    v9fs_string_free(&version);
>   }
>
>   static void v9fs_attach(V9fsState *s, V9fsPDU *pdu)
>    

  reply	other threads:[~2010-03-26 16:16 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-16  9:14 [Qemu-devel] [PATCH -V2 00/22] virtio-9p: paravirtual file system passthrough Aneesh Kumar K.V
2010-03-16  9:14 ` [Qemu-devel] [PATCH -v2 01/22] vitio-9p: Add a virtio 9p device to qemu Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 02/22] vrtio-9p: Implement P9_TVERSION for 9P Aneesh Kumar K.V
2010-03-26 16:15   ` Anthony Liguori [this message]
2010-03-29  7:01     ` Aneesh Kumar K. V
2010-03-29 14:51       ` Anthony Liguori
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 03/22] virtio-9p: Implement P9_TATTACH Aneesh Kumar K.V
2010-03-26 16:17   ` Anthony Liguori
2010-03-26 19:12     ` jvrao
2010-03-26 20:06     ` jvrao
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 04/22] virtio-9p: Implement P9_TSTAT Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 05/22] virtio-9p: Implement P9_TWALK Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 06/22] virtio-9p: Implement P9_TOPEN Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 07/22] virtio-9p: Implement P9_TREAD Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 08/22] virtio-9p: Implement P9_TCLUNK Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 09/22] virtio-9p: Implement P9_TWRITE Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 10/22] virtio-9p: Implement P9_TCREATE Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 11/22] virtio-9p: Implement P9_TWSTAT Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 12/22] virtio-9p: Implement P9_TREMOVE Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 13/22] virtio-9p: Implement P9_TFLUSH Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 14/22] virtio-9p: Add multiple mount point support Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 15/22] virtio-9p: Use little endian format on virtio Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 16/22] virtio-9p: Add support for hardlink Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 17/22] Implement sync support in 9p server Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 18/22] virtio-9p: Fix sg usage in the code Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 19/22] virtio-9p: Get the correct count values from the pdu Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 20/22] virtio-9p: Remove BUG_ON and add proper error handling Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 21/22] virtio-9p: Remove unnecessary definition of fid Aneesh Kumar K.V
2010-03-16  9:15 ` [Qemu-devel] [PATCH -v2 22/22] virtio-9p: Update existing fid path on rename Aneesh Kumar K.V
2010-03-23 23:17 ` [Qemu-devel] [PATCH -V2 00/22] virtio-9p: paravirtual file system passthrough Luiz Capitulino
2010-03-24  3:58   ` Aneesh Kumar K. V
2010-03-24 15:04     ` Luiz Capitulino

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=4BACDDB3.9070909@linux.vnet.ibm.com \
    --to=aliguori@linux.vnet.ibm.com \
    --cc=aliguori@us.ibm.com \
    --cc=aneesh.kumar@linux.vnet.ibm.com \
    --cc=ericvh@gmail.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).