[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v7 10/10] (lib)xl: soft reset support
Perform soft reset when a domain did SHUTDOWN_soft_reset. Migrate the content with xc_domain_soft_reset(), reload dm and toolstack. Signed-off-by: Vitaly Kuznetsov <vkuznets@xxxxxxxxxx> --- Changes in v7: - Save toolstack earlier. - Introduce LIBXL_HAVE_SOFT_RESET [Wei Liu] --- docs/man/xl.cfg.pod.5 | 12 +++++ tools/libxl/libxl.c | 4 ++ tools/libxl/libxl.h | 14 +++++ tools/libxl/libxl_create.c | 119 +++++++++++++++++++++++++++++++++++++++---- tools/libxl/libxl_internal.h | 26 ++++++++++ tools/libxl/libxl_types.idl | 3 ++ tools/libxl/xl.h | 1 + tools/libxl/xl_cmdimpl.c | 33 +++++++++++- 8 files changed, 201 insertions(+), 11 deletions(-) diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 index 8e4154f..ced5cc0 100644 --- a/docs/man/xl.cfg.pod.5 +++ b/docs/man/xl.cfg.pod.5 @@ -368,6 +368,13 @@ destroy the domain. write a "coredump" of the domain to F</var/xen/dump/NAME> and then restart the domain. +=item B<soft-reset> + +create a new domain with the same configuration, reassign all the domain's +memory to this new domain, kill the original domain, and continue execution +of the new domain from where the action was triggered. Supported for HVM +guests only. + =back The default for C<on_poweroff> is C<destroy>. @@ -386,6 +393,11 @@ Default is C<destroy>. Action to take if the domain crashes. Default is C<destroy>. +=item B<on_soft_reset="ACTION"> + +Action to take if the domain performs 'soft reset' (e.g. does kexec). +Default is C<soft-reset>. + =back =head3 Direct Kernel Boot diff --git a/tools/libxl/libxl.c b/tools/libxl/libxl.c index a6eb2df..1a01b4b 100644 --- a/tools/libxl/libxl.c +++ b/tools/libxl/libxl.c @@ -1492,6 +1492,7 @@ void libxl__domain_destroy(libxl__egc *egc, libxl__domain_destroy_state *dds) dds->stubdom.ao = ao; dds->stubdom.domid = stubdomid; dds->stubdom.callback = stubdom_destroy_callback; + dds->stubdom.soft_reset = false; libxl__destroy_domid(egc, &dds->stubdom); } else { dds->stubdom_finished = 1; @@ -1500,6 +1501,7 @@ void libxl__domain_destroy(libxl__egc *egc, libxl__domain_destroy_state *dds) dds->domain.ao = ao; dds->domain.domid = dds->domid; dds->domain.callback = domain_destroy_callback; + dds->domain.soft_reset = dds->soft_reset; libxl__destroy_domid(egc, &dds->domain); } @@ -1678,6 +1680,8 @@ static void devices_destroy_cb(libxl__egc *egc, libxl__unlock_domain_userdata(lock); + if (dis->soft_reset) goto out; + rc = libxl__ev_child_fork(gc, &dis->destroyer, domain_destroy_domid_cb); if (rc < 0) goto out; if (!rc) { /* child */ diff --git a/tools/libxl/libxl.h b/tools/libxl/libxl.h index 2ed7194..cc621dc 100644 --- a/tools/libxl/libxl.h +++ b/tools/libxl/libxl.h @@ -192,6 +192,14 @@ * is not present, instead of ERROR_INVAL. */ #define LIBXL_HAVE_ERROR_DOMAIN_NOTFOUND 1 + +/* + * LIBXL_HAVE_SOFT_RESET indicates that libxl supports performing 'soft reset' + * for domains and there is 'soft_reset' shutdown reason in enum + * libxl_shutdown_reason. + */ +#define LIBXL_HAVE_SOFT_RESET 1 + /* * libxl ABI compatibility * @@ -1005,6 +1013,12 @@ int static inline libxl_domain_create_restore_0x040200( #endif +int libxl_domain_soft_reset(libxl_ctx *ctx, libxl_domain_config *d_config, + uint32_t *domid, uint32_t domid_soft_reset, + const libxl_asyncop_how *ao_how, + const libxl_asyncprogress_how *aop_console_how) + LIBXL_EXTERNAL_CALLERS_ONLY; + /* A progress report will be made via ao_console_how, of type * domain_create_console_available, when the domain's primary * console is available and can be connected to. diff --git a/tools/libxl/libxl_create.c b/tools/libxl/libxl_create.c index f0da7dc..c82fee4 100644 --- a/tools/libxl/libxl_create.c +++ b/tools/libxl/libxl_create.c @@ -945,6 +945,9 @@ static void initiate_domain_create(libxl__egc *egc, if (restore_fd >= 0) { LOG(DEBUG, "restoring, not running bootloader"); domcreate_bootloader_done(egc, &dcs->bl, 0); + } else if (dcs->domid_soft_reset != INVALID_DOMID) { + LOG(DEBUG, "soft reset, not running bootloader\n"); + domcreate_bootloader_done(egc, &dcs->bl, 0); } else { LOG(DEBUG, "running bootloader"); dcs->bl.callback = domcreate_bootloader_done; @@ -993,6 +996,7 @@ static void domcreate_bootloader_done(libxl__egc *egc, libxl_domain_config *const d_config = dcs->guest_config; libxl_domain_build_info *const info = &d_config->b_info; const int restore_fd = dcs->restore_fd; + const uint32_t domid_soft_reset = dcs->domid_soft_reset; libxl__domain_build_state *const state = &dcs->build_state; libxl__srm_restore_autogen_callbacks *const callbacks = &dcs->shs.callbacks.restore.a; @@ -1016,7 +1020,7 @@ static void domcreate_bootloader_done(libxl__egc *egc, dcs->dmss.dm.callback = domcreate_devmodel_started; dcs->dmss.callback = domcreate_devmodel_started; - if ( restore_fd < 0 ) { + if ( (restore_fd < 0) && (domid_soft_reset == INVALID_DOMID) ) { rc = libxl__domain_build(gc, d_config, domid, state); domcreate_rebuild_done(egc, dcs, rc); return; @@ -1046,8 +1050,13 @@ static void domcreate_bootloader_done(libxl__egc *egc, rc = ERROR_INVAL; goto out; } - libxl__xc_domain_restore(egc, dcs, - hvm, pae, superpages); + if ( restore_fd >= 0 ) { + libxl__xc_domain_restore(egc, dcs, + hvm, pae, superpages); + } else { + libxl__xc_domain_soft_reset(egc, dcs); + } + return; out: @@ -1079,6 +1088,7 @@ void libxl__xc_domain_restore_done(libxl__egc *egc, void *dcs_void, /* convenience aliases */ const uint32_t domid = dcs->guest_domid; + const uint32_t domid_soft_reset = dcs->domid_soft_reset; libxl_domain_config *const d_config = dcs->guest_config; libxl_domain_build_info *const info = &d_config->b_info; libxl__domain_build_state *const state = &dcs->build_state; @@ -1131,9 +1141,12 @@ void libxl__xc_domain_restore_done(libxl__egc *egc, void *dcs_void, if (ret) goto out; - if (info->type == LIBXL_DOMAIN_TYPE_HVM) { + if (info->type == LIBXL_DOMAIN_TYPE_HVM && fd != -1) { state->saved_state = GCSPRINTF( XC_DEVICE_MODEL_RESTORE_FILE".%d", domid); + } else if (domid_soft_reset != INVALID_DOMID) { + state->saved_state = GCSPRINTF( + XC_DEVICE_MODEL_SAVE_FILE".%d", domid_soft_reset); } out: @@ -1142,9 +1155,12 @@ out: libxl__file_reference_unmap(&state->pv_ramdisk); } - esave = errno; - libxl_fd_set_nonblock(ctx, fd, 0); - errno = esave; + if ( fd != -1 ) { + esave = errno; + libxl_fd_set_nonblock(ctx, fd, 0); + errno = esave; + } + domcreate_rebuild_done(egc, dcs, ret); } @@ -1529,20 +1545,67 @@ static void domcreate_destruction_cb(libxl__egc *egc, typedef struct { libxl__domain_create_state dcs; uint32_t *domid_out; + libxl__domain_destroy_state dds; + uint8_t *toolstack_buf; + uint32_t toolstack_len; } libxl__app_domain_create_state; static void domain_create_cb(libxl__egc *egc, libxl__domain_create_state *dcs, int rc, uint32_t domid); +static void domain_soft_reset_cb(libxl__egc *egc, + libxl__domain_destroy_state *dds, + int rc) +{ + STATE_AO_GC(dds->ao); + libxl__app_domain_create_state *cdcs = CONTAINER_OF(dds, *cdcs, dds); + + if (rc) + LOG(ERROR, "destruction of domain %u failed", dds->domid); + + initiate_domain_create(egc, &cdcs->dcs); +} + +void libxl__xc_domain_soft_reset(libxl__egc *egc, + libxl__domain_create_state *dcs) +{ + STATE_AO_GC(dcs->ao); + libxl_ctx *ctx = libxl__gc_owner(gc); + const uint32_t domid_soft_reset = dcs->domid_soft_reset; + const uint32_t domid = dcs->guest_domid; + libxl__app_domain_create_state *cdcs = CONTAINER_OF(dcs, *cdcs, dcs); + int rc; + + rc = xc_soft_reset(ctx->xch, domid_soft_reset, domid, + dcs->build_state.console_domid, + &dcs->build_state.console_mfn, + dcs->build_state.store_domid, + &dcs->build_state.store_mfn); + if (rc) goto out; + + rc = libxl__toolstack_restore(domid, cdcs->toolstack_buf, + cdcs->toolstack_len, &dcs->shs); +out: + free(cdcs->toolstack_buf); + /* + * Now pretend we did normal restore and simply call + * libxl__xc_domain_restore_done(). + */ + libxl__xc_domain_restore_done(egc, dcs, rc, 0, 0); +} + static int do_domain_create(libxl_ctx *ctx, libxl_domain_config *d_config, uint32_t *domid, int restore_fd, int checkpointed_stream, + uint32_t domid_soft_reset, const libxl_asyncop_how *ao_how, const libxl_asyncprogress_how *aop_console_how) { AO_CREATE(ctx, 0, ao_how); libxl__app_domain_create_state *cdcs; + libxl__domain_suspend_state *dss; + int rc; GCNEW(cdcs); cdcs->dcs.ao = ao; @@ -1550,12 +1613,34 @@ static int do_domain_create(libxl_ctx *ctx, libxl_domain_config *d_config, libxl_domain_config_init(&cdcs->dcs.guest_config_saved); libxl_domain_config_copy(ctx, &cdcs->dcs.guest_config_saved, d_config); cdcs->dcs.restore_fd = restore_fd; + cdcs->dcs.domid_soft_reset = domid_soft_reset; cdcs->dcs.callback = domain_create_cb; cdcs->dcs.checkpointed_stream = checkpointed_stream; libxl__ao_progress_gethow(&cdcs->dcs.aop_console_how, aop_console_how); cdcs->domid_out = domid; - initiate_domain_create(egc, &cdcs->dcs); + if (domid_soft_reset != INVALID_DOMID) { + GCNEW(dss); + dss->ao = ao; + dss->domid = domid_soft_reset; + dss->dm_savefile = GCSPRINTF(XC_DEVICE_MODEL_SAVE_FILE".%d", + domid_soft_reset); + + rc = libxl__domain_suspend_device_model(gc, dss); + if (rc) return AO_ABORT(rc); + + rc = libxl__toolstack_save(domid_soft_reset, &cdcs->toolstack_buf, + &cdcs->toolstack_len, dss); + if (rc) return AO_ABORT(rc); + + cdcs->dds.ao = ao; + cdcs->dds.domid = domid_soft_reset; + cdcs->dds.callback = domain_soft_reset_cb; + cdcs->dds.soft_reset = true; + libxl__domain_destroy(egc, &cdcs->dds); + } + else + initiate_domain_create(egc, &cdcs->dcs); return AO_INPROGRESS; } @@ -1578,7 +1663,7 @@ int libxl_domain_create_new(libxl_ctx *ctx, libxl_domain_config *d_config, const libxl_asyncop_how *ao_how, const libxl_asyncprogress_how *aop_console_how) { - return do_domain_create(ctx, d_config, domid, -1, 0, + return do_domain_create(ctx, d_config, domid, -1, 0, INVALID_DOMID, ao_how, aop_console_how); } @@ -1589,7 +1674,21 @@ int libxl_domain_create_restore(libxl_ctx *ctx, libxl_domain_config *d_config, const libxl_asyncprogress_how *aop_console_how) { return do_domain_create(ctx, d_config, domid, restore_fd, - params->checkpointed_stream, ao_how, aop_console_how); + params->checkpointed_stream, INVALID_DOMID, + ao_how, aop_console_how); +} + +int libxl_domain_soft_reset(libxl_ctx *ctx, libxl_domain_config *d_config, + uint32_t *domid, uint32_t domid_soft_reset, + const libxl_asyncop_how *ao_how, + const libxl_asyncprogress_how *aop_console_how) +{ + libxl_domain_build_info *const info = &d_config->b_info; + + if (info->type != LIBXL_DOMAIN_TYPE_HVM) return ERROR_INVAL; + + return do_domain_create(ctx, d_config, domid, -1, 0, domid_soft_reset, + ao_how, aop_console_how); } /* diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h index 8aaa1ad..944603e 100644 --- a/tools/libxl/libxl_internal.h +++ b/tools/libxl/libxl_internal.h @@ -106,6 +106,7 @@ #define TAP_DEVICE_SUFFIX "-emu" #define DISABLE_UDEV_PATH "libxl/disable_udev" #define DOMID_XS_PATH "domid" +#define INVALID_DOMID ~0 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) @@ -3002,6 +3003,7 @@ struct libxl__destroy_domid_state { /* private to implementation */ libxl__devices_remove_state drs; libxl__ev_child destroyer; + bool soft_reset; }; struct libxl__domain_destroy_state { @@ -3016,6 +3018,7 @@ struct libxl__domain_destroy_state { int stubdom_finished; libxl__destroy_domid_state domain; int domain_finished; + bool soft_reset; }; /* @@ -3116,6 +3119,7 @@ struct libxl__domain_create_state { libxl_domain_config *guest_config; libxl_domain_config guest_config_saved; /* vanilla config */ int restore_fd; + uint32_t domid_soft_reset; libxl__domain_create_cb *callback; libxl_asyncprogress_how aop_console_how; /* private to domain_create */ @@ -3180,6 +3184,28 @@ _hidden void libxl__domain_save_device_model(libxl__egc *egc, _hidden const char *libxl__device_model_savefile(libxl__gc *gc, uint32_t domid); +/* + * Soft reset is a special type of reset when the new domain is being built + * with the memory contents and vCPU contexts of the original domain thus + * allowing to continue execution from where the hypercall was done. This is + * currently supported for HVM domains only and is done as a modification for + * the domain create/restore path within libxl: + * do_domain_create() + * libxl__domain_suspend_device_model() + * libxl__toolstack_save() + * libxl__domain_destroy()->domain_soft_reset_cb()->initiate_domain_create() + * ... regular domain create path ... + * domcreate_bootloader_done() + * libxl__xc_domain_soft_reset() + * xc_soft_reset() which saves HVM context and HVM params, calls + * XEN_DOMCTL_soft_reset to transfer the domain's memory, restores + * HVM context and HVM params for the new domain. + * libxl__toolstack_restore() + * libxl__xc_domain_restore_done() and follow the standard restore path. + */ + +_hidden void libxl__xc_domain_soft_reset(libxl__egc *egc, + libxl__domain_create_state *dcs); /* * Convenience macros. diff --git a/tools/libxl/libxl_types.idl b/tools/libxl/libxl_types.idl index 1aa90f5..9d63de6 100644 --- a/tools/libxl/libxl_types.idl +++ b/tools/libxl/libxl_types.idl @@ -123,6 +123,8 @@ libxl_action_on_shutdown = Enumeration("action_on_shutdown", [ (5, "COREDUMP_DESTROY"), (6, "COREDUMP_RESTART"), + + (7, "SOFT_RESET"), ], init_val = "LIBXL_ACTION_ON_SHUTDOWN_DESTROY") libxl_trigger = Enumeration("trigger", [ @@ -573,6 +575,7 @@ libxl_domain_config = Struct("domain_config", [ ("on_reboot", libxl_action_on_shutdown), ("on_watchdog", libxl_action_on_shutdown), ("on_crash", libxl_action_on_shutdown), + ("on_soft_reset", libxl_action_on_shutdown), ], dir=DIR_IN) libxl_diskinfo = Struct("diskinfo", [ diff --git a/tools/libxl/xl.h b/tools/libxl/xl.h index 60045d4..3abb7d5 100644 --- a/tools/libxl/xl.h +++ b/tools/libxl/xl.h @@ -190,6 +190,7 @@ typedef enum { DOMAIN_RESTART_NONE = 0, /* No domain restart */ DOMAIN_RESTART_NORMAL, /* Domain should be restarter */ DOMAIN_RESTART_RENAME, /* Domain should be renamed and restarted */ + DOMAIN_RESTART_SOFT_RESET, /* Soft reset should be performed */ } domain_restart_type; extern void printf_info_sexp(int domid, libxl_domain_config *d_config, FILE *fh); diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 01e72f8..cee82f3 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -130,6 +130,8 @@ static const char *action_on_shutdown_names[] = { [LIBXL_ACTION_ON_SHUTDOWN_COREDUMP_DESTROY] = "coredump-destroy", [LIBXL_ACTION_ON_SHUTDOWN_COREDUMP_RESTART] = "coredump-restart", + + [LIBXL_ACTION_ON_SHUTDOWN_SOFT_RESET] = "soft-reset", }; /* Optional data, in order: @@ -1329,6 +1331,13 @@ static void parse_config_data(const char *config_source, exit(1); } + if (xlu_cfg_get_string (config, "on_soft_reset", &buf, 0)) + buf = "soft-reset"; + if (!parse_action_on_shutdown(buf, &d_config->on_soft_reset)) { + fprintf(stderr, "Unknown on_soft_reset action \"%s\" specified\n", buf); + exit(1); + } + /* libxl_get_required_shadow_memory() must be called after final values * (default or specified) for vcpus and memory are set, because the * calculation depends on those values. */ @@ -2286,6 +2295,9 @@ static domain_restart_type handle_domain_death(uint32_t *r_domid, case LIBXL_SHUTDOWN_REASON_WATCHDOG: action = d_config->on_watchdog; break; + case LIBXL_SHUTDOWN_REASON_SOFT_RESET: + action = d_config->on_soft_reset; + break; default: LOG("Unknown shutdown reason code %d. Destroying domain.", event->u.domain_shutdown.shutdown_reason); @@ -2336,6 +2348,11 @@ static domain_restart_type handle_domain_death(uint32_t *r_domid, *r_domid = INVALID_DOMID; break; + case LIBXL_ACTION_ON_SHUTDOWN_SOFT_RESET: + reload_domain_config(*r_domid, d_config); + restart = DOMAIN_RESTART_SOFT_RESET; + break; + case LIBXL_ACTION_ON_SHUTDOWN_COREDUMP_DESTROY: case LIBXL_ACTION_ON_SHUTDOWN_COREDUMP_RESTART: /* Already handled these above. */ @@ -2485,6 +2502,7 @@ static void evdisable_disk_ejects(libxl_evgen_disk_eject **diskws, static uint32_t create_domain(struct domain_create *dom_info) { uint32_t domid = INVALID_DOMID; + uint32_t domid_old = INVALID_DOMID; libxl_domain_config d_config; @@ -2711,7 +2729,17 @@ start: * restore/migrate-receive it again. */ restoring = 0; - }else{ + } else if (domid_old != INVALID_DOMID) { + /* Do soft reset */ + ret = libxl_domain_soft_reset(ctx, &d_config, + &domid, domid_old, + 0, autoconnect_console_how); + + if ( ret ) + goto error_out; + + domid_old = INVALID_DOMID; + } else { ret = libxl_domain_create_new(ctx, &d_config, &domid, 0, autoconnect_console_how); } @@ -2775,6 +2803,9 @@ start: event->u.domain_shutdown.shutdown_reason, event->u.domain_shutdown.shutdown_reason); switch (handle_domain_death(&domid, event, &d_config)) { + case DOMAIN_RESTART_SOFT_RESET: + domid_old = domid; + /* fall through */ case DOMAIN_RESTART_RENAME: if (!preserve_domain(&domid, event, &d_config)) { /* If we fail then exit leaving the old domain in place. */ -- 1.9.3 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |