From: David Gibson <david@gibson.dropbear.id.au>
To: "Dr. David Alan Gilbert (git)" <dgilbert@redhat.com>
Cc: qemu-devel@nongnu.org, amit.shah@redhat.com, quintela@redhat.com,
duanj@linux.vnet.ibm.com, pasic@linux.vnet.ibm.com
Subject: Re: [Qemu-devel] [very-WIP 3/4] slirp: VMStatify sbuf
Date: Mon, 17 Oct 2016 14:36:41 +1100 [thread overview]
Message-ID: <20161017033641.GO25390@umbus.fritz.box> (raw)
In-Reply-To: <20161011171833.20803-4-dgilbert@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 6713 bytes --]
On Tue, Oct 11, 2016 at 06:18:32PM +0100, Dr. David Alan Gilbert (git) wrote:
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
>
> Convert the sbuf structure to a VMStateDescription.
> Note this uses the VMSTATE_WITH_TMP mechanism to calculate
> and reload the offsets based on the pointers.
>
> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
> ---
> slirp/sbuf.h | 4 +-
> slirp/slirp.c | 116 ++++++++++++++++++++++++++++++++++++++--------------------
> 2 files changed, 78 insertions(+), 42 deletions(-)
>
> diff --git a/slirp/sbuf.h b/slirp/sbuf.h
> index efcec39..a722ecb 100644
> --- a/slirp/sbuf.h
> +++ b/slirp/sbuf.h
> @@ -12,8 +12,8 @@
> #define sbspace(sb) ((sb)->sb_datalen - (sb)->sb_cc)
>
> struct sbuf {
> - u_int sb_cc; /* actual chars in buffer */
> - u_int sb_datalen; /* Length of data */
> + uint32_t sb_cc; /* actual chars in buffer */
> + uint32_t sb_datalen; /* Length of data */
> char *sb_wptr; /* write pointer. points to where the next
> * bytes should be written in the sbuf */
> char *sb_rptr; /* read pointer. points to where the next
> diff --git a/slirp/slirp.c b/slirp/slirp.c
> index 6276315..2f7802e 100644
> --- a/slirp/slirp.c
> +++ b/slirp/slirp.c
> @@ -1185,19 +1185,72 @@ static const VMStateDescription vmstate_slirp_tcp = {
> }
> };
>
> -static void slirp_sbuf_save(QEMUFile *f, struct sbuf *sbuf)
> +/* The sbuf has a pair of pointers that are migrated as offsets;
> + * we calculate the offsets and restore the pointers using
> + * pre_save/post_load on a tmp structure.
> + */
> +struct sbuf_tmp {
> + struct sbuf *parent;
> + uint32_t roff, woff;
> +};
> +
> +static void sbuf_tmp_pre_save(void *opaque)
> +{
> + struct sbuf_tmp *tmp = opaque;
> + tmp->woff = tmp->parent->sb_wptr - tmp->parent->sb_data;
> + tmp->roff = tmp->parent->sb_rptr - tmp->parent->sb_data;
> +}
> +
> +static int sbuf_tmp_post_load(void *opaque, int version)
> {
> - uint32_t off;
> -
> - qemu_put_be32(f, sbuf->sb_cc);
> - qemu_put_be32(f, sbuf->sb_datalen);
> - off = (uint32_t)(sbuf->sb_wptr - sbuf->sb_data);
> - qemu_put_sbe32(f, off);
> - off = (uint32_t)(sbuf->sb_rptr - sbuf->sb_data);
> - qemu_put_sbe32(f, off);
> - qemu_put_buffer(f, (unsigned char*)sbuf->sb_data, sbuf->sb_datalen);
> + struct sbuf_tmp *tmp = opaque;
> + uint32_t requested_len = tmp->parent->sb_datalen;
> +
> + /* Allocate the buffer space used by the field after the tmp */
> + sbreserve(tmp->parent, tmp->parent->sb_datalen);
> +
> + if (tmp->parent->sb_datalen != requested_len) {
> + return -ENOMEM;
> + }
> + if (tmp->woff >= requested_len ||
> + tmp->roff >= requested_len) {
> + error_report("invalid sbuf offsets r/w=%u/%u len=%u",
> + tmp->roff, tmp->woff, requested_len);
> + return -EINVAL;
> + }
> +
> + tmp->parent->sb_wptr = tmp->parent->sb_data + tmp->woff;
> + tmp->parent->sb_rptr = tmp->parent->sb_data + tmp->roff;
> +
> + return 0;
> }
>
> +
> +static const VMStateDescription vmstate_slirp_sbuf_tmp = {
> + .name = "slirp-sbuf-tmp",
> + .post_load = sbuf_tmp_post_load,
> + .pre_save = sbuf_tmp_pre_save,
> + .version_id = 0,
> + .fields = (VMStateField[]) {
> + VMSTATE_UINT32(woff, struct sbuf_tmp),
> + VMSTATE_UINT32(roff, struct sbuf_tmp),
> + VMSTATE_END_OF_LIST()
> + }
> +};
> +
> +static const VMStateDescription vmstate_slirp_sbuf = {
> + .name = "slirp-sbuf",
> + .version_id = 0,
> + .fields = (VMStateField[]) {
> + VMSTATE_UINT32(sb_cc, struct sbuf),
> + VMSTATE_UINT32(sb_datalen, struct sbuf),
> + VMSTATE_WITH_TMP(struct sbuf, struct sbuf_tmp, vmstate_slirp_sbuf_tmp),
> + VMSTATE_VBUFFER_UINT32(sb_data, struct sbuf, 0, NULL, 0, sb_datalen),
> + VMSTATE_END_OF_LIST()
> + }
> +};
> +
> +
> static void slirp_socket_save(QEMUFile *f, struct socket *so)
> {
> qemu_put_be32(f, so->so_urgc);
> @@ -1225,8 +1278,9 @@ static void slirp_socket_save(QEMUFile *f, struct socket *so)
> qemu_put_byte(f, so->so_emu);
> qemu_put_byte(f, so->so_type);
> qemu_put_be32(f, so->so_state);
> - slirp_sbuf_save(f, &so->so_rcv);
> - slirp_sbuf_save(f, &so->so_snd);
> + /* TODO: Build vmstate at this level */
> + vmstate_save_state(f, &vmstate_slirp_sbuf, &so->so_rcv, 0);
> + vmstate_save_state(f, &vmstate_slirp_sbuf, &so->so_snd, 0);
> vmstate_save_state(f, &vmstate_slirp_tcp, so->so_tcpcb, 0);
> }
>
> @@ -1263,31 +1317,9 @@ static void slirp_state_save(QEMUFile *f, void *opaque)
> slirp_bootp_save(f, slirp);
> }
>
> -static int slirp_sbuf_load(QEMUFile *f, struct sbuf *sbuf)
> -{
> - uint32_t off, sb_cc, sb_datalen;
> -
> - sb_cc = qemu_get_be32(f);
> - sb_datalen = qemu_get_be32(f);
> -
> - sbreserve(sbuf, sb_datalen);
> -
> - if (sbuf->sb_datalen != sb_datalen)
> - return -ENOMEM;
> -
> - sbuf->sb_cc = sb_cc;
> -
> - off = qemu_get_sbe32(f);
> - sbuf->sb_wptr = sbuf->sb_data + off;
> - off = qemu_get_sbe32(f);
> - sbuf->sb_rptr = sbuf->sb_data + off;
> - qemu_get_buffer(f, (unsigned char*)sbuf->sb_data, sbuf->sb_datalen);
> -
> - return 0;
> -}
> -
> static int slirp_socket_load(QEMUFile *f, struct socket *so, int version_id)
> {
> + int ret = 0;
> if (tcp_attach(so) < 0)
> return -ENOMEM;
>
> @@ -1324,11 +1356,15 @@ static int slirp_socket_load(QEMUFile *f, struct socket *so, int version_id)
> so->so_emu = qemu_get_byte(f);
> so->so_type = qemu_get_byte(f);
> so->so_state = qemu_get_be32(f);
> - if (slirp_sbuf_load(f, &so->so_rcv) < 0)
> - return -ENOMEM;
> - if (slirp_sbuf_load(f, &so->so_snd) < 0)
> - return -ENOMEM;
> - return vmstate_load_state(f, &vmstate_slirp_tcp, so->so_tcpcb, 0);
> + /* TODO: VMState at this level */
> + ret = vmstate_load_state(f, &vmstate_slirp_sbuf, &so->so_rcv, 0);
> + if (!ret) {
> + ret = vmstate_load_state(f, &vmstate_slirp_sbuf, &so->so_snd, 0);
> + }
> + if (!ret) {
> + ret = vmstate_load_state(f, &vmstate_slirp_tcp, so->so_tcpcb, 0);
> + }
> + return ret;
> }
>
> static void slirp_bootp_load(QEMUFile *f, Slirp *slirp)
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2016-10-17 3:37 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-11 17:18 [Qemu-devel] [very-WIP 0/4] Migration: VMSTATE_WITH_TMP Dr. David Alan Gilbert (git)
2016-10-11 17:18 ` [Qemu-devel] [very-WIP 1/7] migration: Add VMSTATE_WITH_TMP Dr. David Alan Gilbert (git)
2016-10-17 3:31 ` David Gibson
2016-10-17 18:49 ` Jianjun Duan
2016-10-17 18:52 ` Dr. David Alan Gilbert
2016-10-17 19:02 ` Jianjun Duan
2016-10-17 19:16 ` Dr. David Alan Gilbert
2016-10-17 19:30 ` Jianjun Duan
2016-10-18 8:06 ` Dr. David Alan Gilbert
2016-10-11 17:18 ` [Qemu-devel] [very-WIP 2/7] tests/migration: Add test for VMSTATE_WITH_TMP Dr. David Alan Gilbert (git)
2016-10-17 3:34 ` David Gibson
2016-10-11 17:18 ` [Qemu-devel] [very-WIP 3/4] slirp: VMStatify sbuf Dr. David Alan Gilbert (git)
2016-10-17 3:36 ` David Gibson [this message]
2016-10-17 17:54 ` Halil Pasic
2016-10-17 19:06 ` Dr. David Alan Gilbert
2016-10-18 10:40 ` Halil Pasic
2016-10-11 17:18 ` [Qemu-devel] [very-WIP 4/4] virtio/migration: Migrate virtio-net to VMState Dr. David Alan Gilbert (git)
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=20161017033641.GO25390@umbus.fritz.box \
--to=david@gibson.dropbear.id.au \
--cc=amit.shah@redhat.com \
--cc=dgilbert@redhat.com \
--cc=duanj@linux.vnet.ibm.com \
--cc=pasic@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.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).