|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v2 3/5] libxl: xsrestrict QEMU
Check whether QEMU supports the xsrestrict option, by parsing its --help
output. Store the result on xenstore for future reference on a per QEMU
binary basis, so that device_model_override still works fine with it.
Replace / with _ in the QEMU binary path before writing it to xenstore,
so that it doesn't get confused with xenstore paths.
If QEMU support xsrestrict, pass it as a command line option to it.
Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx>
---
tools/libxl/libxl_dm.c | 63 ++++++++++++++++++++++++++++++++++++++++++
tools/libxl/libxl_internal.h | 3 ++
tools/libxl/libxl_utils.c | 10 +++++++
3 files changed, 76 insertions(+)
diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c
index f4f104f..b37a84a 100644
--- a/tools/libxl/libxl_dm.c
+++ b/tools/libxl/libxl_dm.c
@@ -446,6 +446,65 @@ retry:
return 0;
}
+int libxl__check_qemu_supported(libxl__gc *gc, const char *dm, char *opt)
+{
+ libxl_ctx *ctx = libxl__gc_owner(gc);
+ pid_t pid;
+ int pipefd[2], status;
+ FILE *fp;
+ char *buf;
+ ssize_t buf_size = 512;
+ int ret = 0;
+ char *s;
+
+ s = libxl__strdup(gc, dm);
+ libxl__replace_chr(gc, s, '/', '_');
+ s = libxl__sprintf(gc, "libxl/%s/%s", s, opt);
+ buf = libxl__xs_read(gc, XBT_NULL, s);
+ if (buf != NULL)
+ return !strcmp(buf, "1");
+
+ if (access(dm, X_OK) < 0) {
+ LIBXL__LOG_ERRNO(ctx, LIBXL__LOG_ERROR,
+ "device model %s is not executable", dm);
+ return ERROR_FAIL;
+ }
+
+ if (libxl_pipe(ctx, pipefd) < 0)
+ return ERROR_FAIL;
+
+ pid = fork();
+ if (pid < 0)
+ return ERROR_FAIL;
+
+ /* child spawn QEMU */
+ if (!pid) {
+ char *args[] = {(char*)dm, "--help", NULL};
+ close(pipefd[0]);
+ libxl__exec(gc, -1, pipefd[1], pipefd[1], dm, args, NULL);
+ exit(1);
+ }
+
+ /* father parses the output */
+ close(pipefd[1]);
+ fp = fdopen(pipefd[0], "r");
+ buf = libxl__malloc(gc, buf_size);
+ while (fgets(buf, buf_size, fp) != NULL) {
+ if (strstr(buf, opt) != NULL) {
+ ret = 1;
+ goto out;
+ }
+ }
+out:
+ close(pipefd[0]);
+ waitpid(pid, &status, pid);
+ libxl_report_child_exitstatus(ctx, XTL_WARN, dm, pid, status);
+
+ ret = libxl__xs_write(gc, XBT_NULL, s, "%d", ret);
+
+ return ret;
+}
+
static char ** libxl__build_device_model_args_new(libxl__gc *gc,
const char *dm, int guest_domid,
const libxl_domain_config
*guest_config,
@@ -931,6 +990,10 @@ end_search:
if (user) {
flexarray_append(dm_args, "-runas");
flexarray_append(dm_args, user);
+ if (libxl__check_qemu_supported(gc, dm, "xsrestrict")) {
+ flexarray_append(dm_args, "-xenopts");
+ flexarray_append(dm_args, "xsrestrict=on");
+ }
}
}
flexarray_append(dm_args, NULL);
diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h
index 7d0af40..b11297b 100644
--- a/tools/libxl/libxl_internal.h
+++ b/tools/libxl/libxl_internal.h
@@ -1505,6 +1505,7 @@ _hidden int libxl__need_xenpv_qemu(libxl__gc *gc,
int nr_vfbs, libxl_device_vfb *vfbs,
int nr_disks, libxl_device_disk *disks,
int nr_channels, libxl_device_channel *channels);
+_hidden int libxl__check_qemu_supported(libxl__gc *gc, const char *dm, char
*opt);
/*
* This function will cause the whole libxl process to hang
@@ -3554,6 +3555,8 @@ int libxl__string_parse_json(libxl__gc *gc, const
libxl__json_object *o,
char **p);
int libxl__random_bytes(libxl__gc *gc, uint8_t *buf, size_t len);
+/* replace all occurrences of old with new inside s */
+void libxl__replace_chr(libxl__gc *gc, char *s, char old, char new);
/*
* Compile time assertion
diff --git a/tools/libxl/libxl_utils.c b/tools/libxl/libxl_utils.c
index 67c0b1c..ea08473 100644
--- a/tools/libxl/libxl_utils.c
+++ b/tools/libxl/libxl_utils.c
@@ -1158,6 +1158,16 @@ int libxl__random_bytes(libxl__gc *gc, uint8_t *buf,
size_t len)
return ret;
}
+void libxl__replace_chr(libxl__gc *gc, char *s, char old, char new)
+{
+ int i = 0;
+
+ for (i = 0; s[i] != '\0'; i++) {
+ if (s[i] == old)
+ s[i] = new;
+ }
+}
+
/*
* Local variables:
* mode: C
--
1.7.10.4
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |