From: Juergen Gross <jgross@suse.com>
To: xen-devel@lists.xen.org, Ian.Campbell@citrix.com,
ian.jackson@eu.citrix.com, stefano.stabellini@eu.citrix.com,
wei.liu2@citrix.com, dgdegra@tycho.nsa.gov
Cc: Juergen Gross <jgross@suse.com>
Subject: [PATCH v2 11/13] tools: split up xen-init-dom0.c
Date: Fri, 18 Dec 2015 14:14:29 +0100 [thread overview]
Message-ID: <1450444471-6454-12-git-send-email-jgross@suse.com> (raw)
In-Reply-To: <1450444471-6454-1-git-send-email-jgross@suse.com>
Split up tools/helpers/xen-init-dom0.c in order to prepare reusing
generation of the json configuration by init-xenstore-domain.c.
Signed-off-by: Juergen Gross <jgross@suse.com>
---
tools/helpers/Makefile | 2 +-
tools/helpers/init-dom-json.c | 59 ++++++++++++++++++++++++++++++++++
tools/helpers/init-dom-json.h | 18 +++++++++++
tools/helpers/xen-init-dom0.c | 73 ++++++-------------------------------------
4 files changed, 88 insertions(+), 64 deletions(-)
create mode 100644 tools/helpers/init-dom-json.c
create mode 100644 tools/helpers/init-dom-json.h
diff --git a/tools/helpers/Makefile b/tools/helpers/Makefile
index 92aead4..cfb86f5 100644
--- a/tools/helpers/Makefile
+++ b/tools/helpers/Makefile
@@ -10,7 +10,7 @@ ifeq ($(CONFIG_Linux),y)
PROGS += init-xenstore-domain
endif
-XEN_INIT_DOM0_OBJS = xen-init-dom0.o
+XEN_INIT_DOM0_OBJS = xen-init-dom0.o init-dom-json.o
$(XEN_INIT_DOM0_OBJS): CFLAGS += $(CFLAGS_libxenctrl)
$(XEN_INIT_DOM0_OBJS): CFLAGS += $(CFLAGS_libxenstore)
$(XEN_INIT_DOM0_OBJS): CFLAGS += $(CFLAGS_libxenlight)
diff --git a/tools/helpers/init-dom-json.c b/tools/helpers/init-dom-json.c
new file mode 100644
index 0000000..91b1fdf
--- /dev/null
+++ b/tools/helpers/init-dom-json.c
@@ -0,0 +1,59 @@
+#include <err.h>
+#include <stdlib.h>
+#include <stdint.h>
+#include <string.h>
+#include <stdio.h>
+
+#include <xenctrl.h>
+#include <libxl.h>
+
+int gen_stub_json_config(uint32_t domid)
+{
+ int rc = 1;
+ xentoollog_logger_stdiostream *logger;
+ libxl_ctx *ctx;
+ libxl_domain_config dom_config;
+ char *json = NULL;
+
+ logger = xtl_createlogger_stdiostream(stderr, XTL_ERROR, 0);
+ if (!logger)
+ return 1;
+
+ if (libxl_ctx_alloc(&ctx, LIBXL_VERSION, 0,
+ (xentoollog_logger *)logger)) {
+ fprintf(stderr, "cannot init libxl context\n");
+ goto outlog;
+ }
+
+ libxl_domain_config_init(&dom_config);
+
+ /* Generate stub JSON config. */
+ dom_config.c_info.type = LIBXL_DOMAIN_TYPE_PV;
+ libxl_domain_build_info_init_type(&dom_config.b_info,
+ LIBXL_DOMAIN_TYPE_PV);
+
+ json = libxl_domain_config_to_json(ctx, &dom_config);
+ /* libxl-json format requires the string ends with '\0'. Code
+ * snippet taken from libxl.
+ */
+ rc = libxl_userdata_store(ctx, domid, "libxl-json",
+ (const uint8_t *)json,
+ strlen(json) + 1 /* include '\0' */);
+ if (rc)
+ fprintf(stderr, "cannot store stub json config for domain %u\n", domid);
+
+ libxl_domain_config_dispose(&dom_config);
+ free(json);
+ libxl_ctx_free(ctx);
+outlog:
+ xtl_logger_destroy((xentoollog_logger *)logger);
+ return rc;
+}
+
+/*
+ * Local variables:
+ * mode: C
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ */
diff --git a/tools/helpers/init-dom-json.h b/tools/helpers/init-dom-json.h
new file mode 100644
index 0000000..58c85df
--- /dev/null
+++ b/tools/helpers/init-dom-json.h
@@ -0,0 +1,18 @@
+#ifndef __INIT_DOM_JSON_H
+#define __INIT_DOM_JSON_H
+
+/*
+ * Generate a stub JSON config for a domain with the given domid.
+ */
+int gen_stub_json_config(uint32_t domid);
+
+#endif
+/*
+ * Local variables:
+ * mode: C
+ * c-file-style: "BSD"
+ * c-basic-offset: 4
+ * tab-width: 4
+ * indent-tabs-mode: nil
+ * End:
+ */
diff --git a/tools/helpers/xen-init-dom0.c b/tools/helpers/xen-init-dom0.c
index 7925d64..9ab8468 100644
--- a/tools/helpers/xen-init-dom0.c
+++ b/tools/helpers/xen-init-dom0.c
@@ -1,65 +1,26 @@
-#include <err.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <stdio.h>
-#include <xenctrl.h>
#include <xenstore.h>
-#include <libxl.h>
+
+#include "init-dom-json.h"
#define DOMNAME_PATH "/local/domain/0/name"
#define DOMID_PATH "/local/domain/0/domid"
-static libxl_ctx *ctx;
-static xentoollog_logger_stdiostream *logger;
-static struct xs_handle *xsh;
-
-static void ctx_alloc(void)
+int main(int argc, char **argv)
{
- if (libxl_ctx_alloc(&ctx, LIBXL_VERSION, 0,
- (xentoollog_logger *)logger)) {
- fprintf(stderr, "cannot init libxl context\n");
- exit(1);
- }
+ int rc;
+ struct xs_handle *xsh;
+ char *domname_string = NULL, *domid_string = NULL;
+
xsh = xs_open(0);
if (!xsh) {
fprintf(stderr, "cannot open xenstore connection\n");
exit(1);
}
-}
-
-static void ctx_free(void)
-{
- if (ctx) {
- libxl_ctx_free(ctx);
- ctx = NULL;
- }
- if (logger) {
- xtl_logger_destroy((xentoollog_logger *)logger);
- logger = NULL;
- }
- if (xsh) {
- xs_close(xsh);
- xsh = NULL;
- }
-}
-
-int main(int argc, char **argv)
-{
- int rc;
- libxl_domain_config dom0_config;
- char *domname_string = NULL, *domid_string = NULL;
- char *json = NULL;;
-
- logger = xtl_createlogger_stdiostream(stderr, XTL_ERROR, 0);
- if (!logger) exit(1);
-
- atexit(ctx_free);
-
- ctx_alloc();
-
- libxl_domain_config_init(&dom0_config);
/* Sanity check: this program can only be run once. */
domid_string = xs_read(xsh, XBT_NULL, DOMID_PATH, NULL);
@@ -70,22 +31,9 @@ int main(int argc, char **argv)
goto out;
}
- /* Generate stub JSON config. */
- dom0_config.c_info.type = LIBXL_DOMAIN_TYPE_PV;
- libxl_domain_build_info_init_type(&dom0_config.b_info,
- LIBXL_DOMAIN_TYPE_PV);
-
- json = libxl_domain_config_to_json(ctx, &dom0_config);
- /* libxl-json format requires the string ends with '\0'. Code
- * snippet taken from libxl.
- */
- rc = libxl_userdata_store(ctx, 0, "libxl-json",
- (const uint8_t *)json,
- strlen(json) + 1 /* include '\0' */);
- if (rc) {
- fprintf(stderr, "cannot store stub json config for Dom0\n");
+ rc = gen_stub_json_config(0);
+ if (rc)
goto out;
- }
/* Write xenstore entries. */
if (!xs_write(xsh, XBT_NULL, DOMID_PATH, "0", strlen("0"))) {
@@ -104,10 +52,9 @@ int main(int argc, char **argv)
printf("Done setting up Dom0\n");
out:
- libxl_domain_config_dispose(&dom0_config);
free(domid_string);
free(domname_string);
- free(json);
+ xs_close(xsh);
return rc;
}
--
2.6.2
next prev parent reply other threads:[~2015-12-18 13:14 UTC|newest]
Thread overview: 57+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-18 13:14 [PATCH v2 00/13] xenstore: make it easier to run xenstore in a domain Juergen Gross
2015-12-18 13:14 ` [PATCH v2 01/13] xen: add xenstore domain flag to hypervisor Juergen Gross
2015-12-18 13:23 ` Andrew Cooper
2016-01-05 15:46 ` Ian Campbell
2016-01-05 15:59 ` Juergen Gross
2015-12-18 13:14 ` [PATCH v2 02/13] libxc: support new xenstore domain flag in libxc Juergen Gross
2016-01-06 15:52 ` Ian Campbell
2016-01-07 6:08 ` Juergen Gross
2016-01-07 10:12 ` Ian Campbell
2015-12-18 13:14 ` [PATCH v2 03/13] libxl: provide a function to retrieve the xenstore domain id Juergen Gross
2015-12-18 13:53 ` Andrew Cooper
2015-12-18 14:10 ` Juergen Gross
2016-01-06 15:59 ` Ian Campbell
2016-01-06 16:38 ` Ian Jackson
2016-01-07 5:37 ` Juergen Gross
2016-01-07 10:11 ` Ian Campbell
2016-01-07 10:44 ` Juergen Gross
2016-01-07 10:55 ` Ian Campbell
2016-01-07 11:21 ` Juergen Gross
2016-01-07 11:36 ` Ian Campbell
2016-01-07 13:17 ` Wei Liu
2016-01-07 12:40 ` Wei Liu
2016-01-07 12:57 ` Juergen Gross
2016-01-07 13:13 ` Wei Liu
2015-12-18 13:14 ` [PATCH v2 04/13] xenstore: move init-xenstore-domain to tools/helpers Juergen Gross
2016-01-06 16:03 ` Ian Campbell
2016-01-07 6:12 ` Juergen Gross
2015-12-18 13:14 ` [PATCH v2 05/13] libxl: move xen-init-dom0 " Juergen Gross
2016-01-06 16:12 ` Ian Campbell
2016-01-07 6:15 ` Juergen Gross
2016-01-07 10:12 ` Ian Campbell
2016-01-06 16:28 ` Ian Campbell
2016-01-07 6:39 ` Juergen Gross
2015-12-18 13:14 ` [PATCH v2 06/13] xenstore: destroy xenstore domain in case of error after creating it Juergen Gross
2015-12-18 13:14 ` [PATCH v2 07/13] xenstore: add error messages to init-xenstore-domain Juergen Gross
2015-12-18 13:14 ` [PATCH v2 08/13] xenstore: modify init-xenstore-domain parameter syntax Juergen Gross
2016-01-06 16:21 ` Ian Campbell
2016-01-07 6:34 ` Juergen Gross
2016-01-07 10:23 ` Ian Campbell
2016-01-07 10:28 ` Juergen Gross
2015-12-18 13:14 ` [PATCH v2 09/13] xenstore: make use of the "xenstore domain" flag Juergen Gross
2016-01-06 16:23 ` Ian Campbell
2016-01-07 6:36 ` Juergen Gross
2015-12-18 13:14 ` [PATCH v2 10/13] xenstore: add init-xenstore-domain parameter to specify cmdline Juergen Gross
2015-12-18 13:14 ` Juergen Gross [this message]
2016-01-06 16:26 ` [PATCH v2 11/13] tools: split up xen-init-dom0.c Ian Campbell
2016-01-06 16:33 ` Wei Liu
2016-01-07 10:26 ` Ian Campbell
2015-12-18 13:14 ` [PATCH v2 12/13] xenstore: write xenstore domain data to xenstore Juergen Gross
2016-01-06 16:27 ` Ian Campbell
2015-12-18 13:14 ` [PATCH v2 13/13] tools: don't stop xenstore domain when stopping dom0 Juergen Gross
2015-12-18 14:42 ` Andrew Cooper
2015-12-18 14:53 ` Juergen Gross
2016-01-06 16:33 ` Ian Campbell
2016-01-07 6:52 ` Juergen Gross
2016-01-07 10:34 ` Ian Campbell
2016-01-07 10:45 ` Juergen Gross
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=1450444471-6454-12-git-send-email-jgross@suse.com \
--to=jgross@suse.com \
--cc=Ian.Campbell@citrix.com \
--cc=dgdegra@tycho.nsa.gov \
--cc=ian.jackson@eu.citrix.com \
--cc=stefano.stabellini@eu.citrix.com \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xen.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).