From: Wei Liu <wei.liu2@citrix.com>
To: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Wei Liu <wei.liu2@citrix.com>,
Ian Campbell <ian.campbell@citrix.com>,
andrew.cooper3@citrix.com,
Stefano Stabellini <stefano.stabellini@eu.citrix.com>,
Ian Jackson <ian.jackson@eu.citrix.com>,
xen-devel@lists.xen.org, mpohlack@amazon.de,
ross.lagerwall@citrix.com, jinsong.liu@alibaba-inc.com,
xen-devel@lists.xenproject.org, sasha.levin@citrix.com
Subject: Re: [PATCH v3 02/23] libxc: Implementation of XEN_XSPLICE_op in libxc (v5).
Date: Mon, 15 Feb 2016 12:35:02 +0000 [thread overview]
Message-ID: <20160215123502.GI8818@citrix.com> (raw)
In-Reply-To: <1455300361-13092-3-git-send-email-konrad.wilk@oracle.com>
On Fri, Feb 12, 2016 at 01:05:40PM -0500, Konrad Rzeszutek Wilk wrote:
> The underlaying toolstack code to do the basic
> operations when using the XEN_XSPLICE_op syscalls:
> - upload the payload,
> - get status of an payload,
> - list all the payloads,
> - apply, check, replace, and revert the payload.
>
> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> Signed-off-by: Ross Lagerwall <ross.lagerwall@citrix.com>
> ---
> v2: Actually set zero for the _pad entries.
> v3: Split status into state and error code.
> Add REPLACE action.
> v4: Use timeout and utilize pads.
> v5: Update per Wei's review.
> ---
> tools/libxc/include/xenctrl.h | 19 ++-
> tools/libxc/xc_misc.c | 332 ++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 350 insertions(+), 1 deletion(-)
>
> diff --git a/tools/libxc/include/xenctrl.h b/tools/libxc/include/xenctrl.h
> index 1a5f4ec..7c666b7 100644
> --- a/tools/libxc/include/xenctrl.h
> +++ b/tools/libxc/include/xenctrl.h
> @@ -2573,9 +2573,26 @@ int xc_psr_cat_get_l3_info(xc_interface *xch, uint32_t socket,
> bool *cdp_enabled);
> #endif
>
> +int xc_xsplice_upload(xc_interface *xch,
> + char *name, unsigned char *payload, uint32_t size);
> +
> +int xc_xsplice_get(xc_interface *xch,
> + char *name,
> + xen_xsplice_status_t *status);
> +
> +int xc_xsplice_list(xc_interface *xch, unsigned int max, unsigned int start,
> + xen_xsplice_status_t *info, char *name,
> + uint32_t *len, unsigned int *done,
> + unsigned int *left);
> +
> +int xc_xsplice_apply(xc_interface *xch, char *name, uint32_t timeout);
> +int xc_xsplice_revert(xc_interface *xch, char *name, uint32_t timeout);
> +int xc_xsplice_unload(xc_interface *xch, char *name, uint32_t timeout);
> +int xc_xsplice_check(xc_interface *xch, char *name, uint32_t timeout);
> +int xc_xsplice_replace(xc_interface *xch, char *name, uint32_t timeout);
> +
What's the meaning of "timeout"? What can the caller expect from setting
that value? I think it either needs better name or better document.
> /* Compat shims */
> #include "xenctrl_compat.h"
> -
Stray blank line change.
> #endif /* XENCTRL_H */
>
> /*
> diff --git a/tools/libxc/xc_misc.c b/tools/libxc/xc_misc.c
> index 124537b..b0f7068 100644
> --- a/tools/libxc/xc_misc.c
> +++ b/tools/libxc/xc_misc.c
> @@ -693,6 +693,338 @@ int xc_hvm_inject_trap(
> return rc;
> }
[...]
> +/*
> + * The heart of this function is to get an array of xen_xsplice_status_t.
> + *
> + * However it is complex because it has to deal with the hypervisor
> + * returning -EAGAIN or the data that is being returned becomes stale
> + * (another hypercall might alter the list).
> + *
I don't see EAGAIN handled in the following function. Is that expected?
> + * The parameters that the function expects to contain data from
> + * the hypervisor are: 'info', 'name', and 'len'. The 'done' and
> + * 'left' are also updated with the number of entries filled out
> + * and respectively the number of entries left to get from hypervisor.
> + *
> + * It is expected that the caller of this function will take the
> + * 'left' and use the value for 'start'. This way we have an
> + * cursor in the array. Note that the 'info','name', and 'len' will
> + * be updated at the subsequent calls.
> + *
> + * The 'max' is to be provided by the caller with the maximum
> + * number of entries that 'info', 'name', and 'len' arrays can
> + * be filled up with.
> + *
> + * Each entry in the 'name' array is expected to be of XEN_XSPLICE_NAME_SIZE
> + * length.
> + *
> + * Each entry in the 'info' array is expected to be of xen_xsplice_status_t
> + * structure size.
> + *
> + * Each entry in the 'len' array is expected to be of uint32_t size.
> + *
> + * The return value is zero if the hypercall completed successfully.
> + * Note that the return value is _not_ the amount of entries filled
> + * out - that is saved in 'done'.
> + *
> + * If there was an error performing the operation, the return value
> + * will contain an negative -EXX type value. The 'done' and 'left'
> + * will contain the number of entries that had been succesfully
> + * retrieved (if any).
> + */
> +int xc_xsplice_list(xc_interface *xch, unsigned int max, unsigned int start,
> + xen_xsplice_status_t *info,
> + char *name, uint32_t *len,
> + unsigned int *done,
> + unsigned int *left)
> +{
> + int rc;
> + DECLARE_SYSCTL;
> + /* The sizes are adjusted later - hence zero. */
> + DECLARE_HYPERCALL_BOUNCE(info, 0, XC_HYPERCALL_BUFFER_BOUNCE_OUT);
> + DECLARE_HYPERCALL_BOUNCE(name, 0, XC_HYPERCALL_BUFFER_BOUNCE_OUT);
> + DECLARE_HYPERCALL_BOUNCE(len, 0, XC_HYPERCALL_BUFFER_BOUNCE_OUT);
> + uint32_t max_batch_sz, nr;
> + uint32_t version = 0, retries = 0;
> + uint32_t adjust = 0;
> + ssize_t sz;
> +
> + if ( !max || !info || !name || !len )
> + return -1;
> +
> + sysctl.cmd = XEN_SYSCTL_xsplice_op;
> + sysctl.u.xsplice.cmd = XEN_SYSCTL_XSPLICE_LIST;
> + sysctl.u.xsplice.pad = 0;
> + sysctl.u.xsplice.u.list.version = 0;
> + sysctl.u.xsplice.u.list.idx = start;
> + sysctl.u.xsplice.u.list.pad = 0;
> +
> + max_batch_sz = max;
> + /* Convience value. */
> + sz = sizeof(*name) * XEN_XSPLICE_NAME_SIZE;
> + *done = 0;
> + *left = 0;
> + do {
> + /*
> + * The first time we go in this loop our 'max' may be bigger
> + * than what the hypervisor is comfortable with - hence the first
> + * couple of loops may adjust the number of entries we will
> + * want filled (tracked by 'nr').
> + */
> + if ( adjust )
> + adjust = 0; /* Used when adjusting the 'max_batch_sz' or 'retries'. */
> +
This is equivalent to always setting adjust to 0.
> + nr = min(max - *done, max_batch_sz);
> +
> + sysctl.u.xsplice.u.list.nr = nr;
> + /* Fix the size (may vary between hypercalls). */
> + HYPERCALL_BOUNCE_SET_SIZE(info, nr * sizeof(*info));
> + HYPERCALL_BOUNCE_SET_SIZE(name, nr * nr);
> + HYPERCALL_BOUNCE_SET_SIZE(len, nr * sizeof(*len));
> + /* Move the pointer to proper offset into 'info'. */
> + (HYPERCALL_BUFFER(info))->ubuf = info + *done;
> + (HYPERCALL_BUFFER(name))->ubuf = name + (sz * *done);
> + (HYPERCALL_BUFFER(len))->ubuf = len + *done;
> + /* Allocate memory. */
> + rc = xc_hypercall_bounce_pre(xch, info);
> + if ( rc )
> + break;
> +
> + rc = xc_hypercall_bounce_pre(xch, name);
> + if ( rc )
> + break;
> +
> + rc = xc_hypercall_bounce_pre(xch, len);
> + if ( rc )
> + break;
> +
> + set_xen_guest_handle(sysctl.u.xsplice.u.list.status, info);
> + set_xen_guest_handle(sysctl.u.xsplice.u.list.name, name);
> + set_xen_guest_handle(sysctl.u.xsplice.u.list.len, len);
> +
> + rc = do_sysctl(xch, &sysctl);
> + /*
> + * From here on we MUST call xc_hypercall_bounce. If rc < 0 we
> + * end up doing it (outside the loop), so using a break is OK.
> + */
> + if ( rc < 0 && errno == E2BIG )
> + {
> + if ( max_batch_sz <= 1 )
> + break;
> + max_batch_sz >>= 1;
> + adjust = 1; /* For the loop conditional to let us loop again. */
> + /* No memory leaks! */
> + xc_hypercall_bounce_post(xch, info);
> + xc_hypercall_bounce_post(xch, name);
> + xc_hypercall_bounce_post(xch, len);
> + continue;
> + }
> + else if ( rc < 0 ) /* For all other errors we bail out. */
> + break;
> +
> + if ( !version )
> + version = sysctl.u.xsplice.u.list.version;
> +
> + if ( sysctl.u.xsplice.u.list.version != version )
> + {
> + /* We could make this configurable as parameter? */
> + if ( retries++ > 3 )
> + {
> + rc = -1;
> + errno = EBUSY;
> + break;
> + }
> + *done = 0; /* Retry from scratch. */
> + version = sysctl.u.xsplice.u.list.version;
> + adjust = 1; /* And make sure we continue in the loop. */
Actually this "adjust" variable looks useless to me because you always
use "continue" afterwards. It won't ever get used in "while".
> + /* No memory leaks. */
> + xc_hypercall_bounce_post(xch, info);
> + xc_hypercall_bounce_post(xch, name);
> + xc_hypercall_bounce_post(xch, len);
> + continue;
> + }
> +
> + /* We should never hit this, but just in case. */
> + if ( rc > nr )
> + {
> + errno = EINVAL; /* Overflow! */
Use EOVERFLOW?
> + rc = -1;
> + break;
> + }
> + *left = sysctl.u.xsplice.u.list.nr; /* Total remaining count. */
> + /* Copy only up 'rc' of data' - we could add 'min(rc,nr) if desired. */
> + HYPERCALL_BOUNCE_SET_SIZE(info, (rc * sizeof(*info)));
> + HYPERCALL_BOUNCE_SET_SIZE(name, (rc * sz));
> + HYPERCALL_BOUNCE_SET_SIZE(len, (rc * sizeof(*len)));
> + /* Bounce the data and free the bounce buffer. */
> + xc_hypercall_bounce_post(xch, info);
> + xc_hypercall_bounce_post(xch, name);
> + xc_hypercall_bounce_post(xch, len);
> + /* And update how many elements of info we have copied into. */
> + *done += rc;
> + /* Update idx. */
> + sysctl.u.xsplice.u.list.idx = *done;
> + } while ( adjust || (*done < max && *left != 0) );
> +
> + if ( rc < 0 )
> + {
> + xc_hypercall_bounce_post(xch, len);
> + xc_hypercall_bounce_post(xch, name);
> + xc_hypercall_bounce_post(xch, info);
> + }
> +
> + return rc > 0 ? 0 : rc;
> +}
> +
Wei.
next prev parent reply other threads:[~2016-02-15 12:35 UTC|newest]
Thread overview: 86+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-12 18:05 [PATCH v3] xSplice v1 implementation and design Konrad Rzeszutek Wilk
2016-02-12 18:05 ` [PATCH v3 01/23] xen/xsplice: Hypervisor implementation of XEN_XSPLICE_op (v10) Konrad Rzeszutek Wilk
2016-02-12 20:11 ` Andrew Cooper
2016-02-12 20:40 ` Konrad Rzeszutek Wilk
2016-02-12 20:53 ` Andrew Cooper
2016-02-15 8:16 ` Jan Beulich
2016-02-19 19:36 ` Konrad Rzeszutek Wilk
2016-02-19 19:43 ` Andrew Cooper
2016-02-12 18:05 ` [PATCH v3 02/23] libxc: Implementation of XEN_XSPLICE_op in libxc (v5) Konrad Rzeszutek Wilk
2016-02-15 12:35 ` Wei Liu [this message]
2016-02-19 20:04 ` Konrad Rzeszutek Wilk
2016-02-12 18:05 ` [PATCH v3 03/23] xen-xsplice: Tool to manipulate xsplice payloads (v4) Konrad Rzeszutek Wilk
2016-02-15 12:59 ` Wei Liu
2016-02-19 20:46 ` Konrad Rzeszutek Wilk
2016-02-12 18:05 ` [PATCH v3 04/23] elf: Add relocation types to elfstructs.h Konrad Rzeszutek Wilk
2016-02-12 20:13 ` Andrew Cooper
2016-02-15 8:34 ` Jan Beulich
2016-02-19 21:05 ` Konrad Rzeszutek Wilk
2016-02-22 10:17 ` Jan Beulich
2016-02-22 15:19 ` Ross Lagerwall
2016-02-12 18:05 ` [PATCH v3 05/23] xsplice: Add helper elf routines (v4) Konrad Rzeszutek Wilk
2016-02-12 20:24 ` Andrew Cooper
2016-02-12 20:47 ` Konrad Rzeszutek Wilk
2016-02-12 20:52 ` Andrew Cooper
2016-02-12 18:05 ` [PATCH v3 06/23] xsplice: Implement payload loading (v4) Konrad Rzeszutek Wilk
2016-02-12 20:48 ` Andrew Cooper
2016-02-19 22:03 ` Konrad Rzeszutek Wilk
2016-02-12 18:05 ` [PATCH v3 07/23] xsplice: Implement support for applying/reverting/replacing patches. (v5) Konrad Rzeszutek Wilk
2016-02-16 19:11 ` Andrew Cooper
2016-02-17 8:58 ` Ross Lagerwall
2016-02-17 10:50 ` Jan Beulich
2016-02-19 9:30 ` Ross Lagerwall
2016-02-23 20:41 ` Konrad Rzeszutek Wilk
2016-02-23 20:53 ` Konrad Rzeszutek Wilk
2016-02-23 20:57 ` Konrad Rzeszutek Wilk
2016-02-23 21:10 ` Andrew Cooper
2016-02-24 9:31 ` Jan Beulich
2016-02-22 15:00 ` Ross Lagerwall
2016-02-22 17:06 ` Ross Lagerwall
2016-02-23 20:47 ` Konrad Rzeszutek Wilk
2016-02-23 20:43 ` Konrad Rzeszutek Wilk
2016-02-12 18:05 ` [PATCH v3 08/23] x86/xen_hello_world.xsplice: Test payload for patching 'xen_extra_version'. (v2) Konrad Rzeszutek Wilk
2016-02-16 11:31 ` Ross Lagerwall
2016-02-12 18:05 ` [PATCH v3 09/23] xsplice: Add support for bug frames. (v4) Konrad Rzeszutek Wilk
2016-02-16 19:35 ` Andrew Cooper
2016-02-24 16:22 ` Konrad Rzeszutek Wilk
2016-02-24 16:30 ` Andrew Cooper
2016-02-24 16:26 ` Konrad Rzeszutek Wilk
2016-02-12 18:05 ` [PATCH v3 10/23] xsplice: Add support for exception tables. (v2) Konrad Rzeszutek Wilk
2016-02-12 18:05 ` [PATCH v3 11/23] xsplice: Add support for alternatives Konrad Rzeszutek Wilk
2016-02-16 19:41 ` Andrew Cooper
2016-02-12 18:05 ` [PATCH v3 12/23] xsm/xen_version: Add XSM for the xen_version hypercall (v8) Konrad Rzeszutek Wilk
2016-02-12 21:52 ` Daniel De Graaf
2016-02-12 18:05 ` [PATCH v3 13/23] XENVER_build_id: Provide ld-embedded build-ids (v10) Konrad Rzeszutek Wilk
2016-02-12 21:52 ` Daniel De Graaf
2016-02-16 20:09 ` Andrew Cooper
2016-02-16 20:22 ` Konrad Rzeszutek Wilk
2016-02-16 20:26 ` Andrew Cooper
2016-02-16 20:40 ` Konrad Rzeszutek Wilk
2016-02-24 18:52 ` Konrad Rzeszutek Wilk
2016-02-24 19:13 ` Andrew Cooper
2016-02-24 20:54 ` Konrad Rzeszutek Wilk
2016-02-12 18:05 ` [PATCH v3 14/23] libxl: info: Display build_id of the hypervisor Konrad Rzeszutek Wilk
2016-02-15 12:45 ` Wei Liu
2016-02-12 18:05 ` [PATCH v3 15/23] xsplice: Print build_id in keyhandler Konrad Rzeszutek Wilk
2016-02-16 20:13 ` Andrew Cooper
2016-02-12 18:05 ` [PATCH v3 16/23] xsplice: basic build-id dependency checking Konrad Rzeszutek Wilk
2016-02-12 18:05 ` [PATCH v3 17/23] xsplice: Print dependency and payloads build_id in the keyhandler Konrad Rzeszutek Wilk
2016-02-16 20:20 ` Andrew Cooper
2016-02-17 11:10 ` Jan Beulich
2016-02-24 21:54 ` Konrad Rzeszutek Wilk
2016-02-25 8:47 ` Jan Beulich
2016-02-12 18:05 ` [PATCH v3 18/23] xsplice: Prevent duplicate payloads to be loaded Konrad Rzeszutek Wilk
2016-02-12 18:05 ` [PATCH v3 19/23] xsplice, symbols: Implement symbol name resolution on address. (v2) Konrad Rzeszutek Wilk
2016-02-22 14:57 ` Ross Lagerwall
2016-02-12 18:05 ` [PATCH v3 20/23] x86, xsplice: Print payload's symbol name and module in backtraces Konrad Rzeszutek Wilk
2016-02-12 18:05 ` [PATCH v3 21/23] xsplice: Add support for shadow variables Konrad Rzeszutek Wilk
2016-03-07 7:40 ` Martin Pohlack
2016-03-15 18:02 ` Konrad Rzeszutek Wilk
2016-03-07 18:52 ` Martin Pohlack
2016-02-12 18:06 ` [PATCH v3 22/23] xsplice: Add hooks functions and other macros Konrad Rzeszutek Wilk
2016-02-12 18:06 ` [PATCH v3 23/23] xsplice, hello_world: Use the XSPLICE_[UN|]LOAD_HOOK hooks for two functions Konrad Rzeszutek Wilk
2016-02-12 21:57 ` [PATCH v3] xSplice v1 implementation and design Konrad Rzeszutek Wilk
2016-02-12 21:57 ` [PATCH v3 MISSING/23] xsplice: Design document (v7) Konrad Rzeszutek Wilk
2016-02-18 16:20 ` Jan Beulich
2016-02-19 18:36 ` Konrad Rzeszutek Wilk
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=20160215123502.GI8818@citrix.com \
--to=wei.liu2@citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=ian.campbell@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=jinsong.liu@alibaba-inc.com \
--cc=konrad.wilk@oracle.com \
--cc=mpohlack@amazon.de \
--cc=ross.lagerwall@citrix.com \
--cc=sasha.levin@citrix.com \
--cc=stefano.stabellini@eu.citrix.com \
--cc=xen-devel@lists.xen.org \
--cc=xen-devel@lists.xenproject.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 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.