[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v2 00/13] xenstore: make it easier to run xenstore in a domain
Xen supports to run xenstore in a dedicated domain. It is, however, a setup which isn't easy to configure. Today flask is required for full functionality and the resulting xenstore domain is not configurable in the same way as the xenstore daemon. This patch series enables running a xenstore domain without flask. The tool needed to start that domain is added to the installed binaries and it is modified to pass arbitrary options to the xenstore domain. I didn't include a configuration option for starting xenstore as an own domain instead of the daemon, as this will require some major tweaking of especially the systemd configuration files. Support for this will be added later. The main issue is that running xenstore in a domain requires the xenstore sockets not to be created. I don't think this is possible with the current scheme of letting systemd create those sockets. Changes in V2: - add new patch 3 to get the xenstore domain id via libxl - move init-xenstore-domain to new directory tools/helpers in patch 4 (former patch 3) and modify it to use the standard tools coding style - add new patch 5 moving xen-init-dom0 to tools/helpers - split patch 6 (former patch 4) into 2 patches as requested by Ian Campbell - correct parameter parsing in patch 8 (former patch 5) - modified commit message of patch 9 (former patch 6) as requested by Ian Campbell - add new patch 11 to split up xen-init-dom0 - modify patch 12 (former patch 8) to create json object and more xenstore entries, add error messages as requested by Ian Campbell - drop former patch 9 - add new patch 13 to avoid stopping xenstore domain on dom0 shutdown Juergen Gross (13): xen: add xenstore domain flag to hypervisor libxc: support new xenstore domain flag in libxc libxl: provide a function to retrieve the xenstore domain id xenstore: move init-xenstore-domain to tools/helpers libxl: move xen-init-dom0 to tools/helpers xenstore: destroy xenstore domain in case of error after creating it xenstore: add error messages to init-xenstore-domain xenstore: modify init-xenstore-domain parameter syntax xenstore: make use of the "xenstore domain" flag xenstore: add init-xenstore-domain parameter to specify cmdline tools: split up xen-init-dom0.c xenstore: write xenstore domain data to xenstore tools: don't stop xenstore domain when stopping dom0 tools/Makefile | 1 + tools/helpers/Makefile | 45 +++++ tools/helpers/init-dom-json.c | 59 +++++++ tools/helpers/init-dom-json.h | 18 ++ tools/helpers/init-xenstore-domain.c | 310 ++++++++++++++++++++++++++++++++++ tools/helpers/xen-init-dom0.c | 67 ++++++++ tools/hotplug/Linux/xendomains.in | 17 ++ tools/libxc/include/xenctrl.h | 2 +- tools/libxc/xc_domain.c | 17 +- tools/libxl/Makefile | 14 +- tools/libxl/libxl.c | 24 +++ tools/libxl/libxl.h | 11 ++ tools/libxl/xen-init-dom0.c | 120 ------------- tools/libxl/xl_cmdimpl.c | 19 ++- tools/xenstore/Makefile | 9 - tools/xenstore/init-xenstore-domain.c | 119 ------------- xen/common/domain.c | 6 + xen/common/domctl.c | 14 +- xen/include/public/domctl.h | 6 + xen/include/xen/sched.h | 5 + xen/include/xsm/dummy.h | 6 + xen/include/xsm/xsm.h | 1 + 22 files changed, 613 insertions(+), 277 deletions(-) create mode 100644 tools/helpers/Makefile create mode 100644 tools/helpers/init-dom-json.c create mode 100644 tools/helpers/init-dom-json.h create mode 100644 tools/helpers/init-xenstore-domain.c create mode 100644 tools/helpers/xen-init-dom0.c delete mode 100644 tools/libxl/xen-init-dom0.c delete mode 100644 tools/xenstore/init-xenstore-domain.c -- 2.6.2 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |