[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [RFC XEN PATCH v3 32/39] tools/libacpi: add callbacks to access XenStore
libacpi needs to access information placed in XenStore in order to load ACPI built by the device model. Signed-off-by: Haozhong Zhang <haozhong.zhang@xxxxxxxxx> --- Cc: Jan Beulich <jbeulich@xxxxxxxx> Cc: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Cc: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Cc: Wei Liu <wei.liu2@xxxxxxxxxx> --- tools/firmware/hvmloader/util.c | 52 +++++++++++++++++++++++++++++++++++++++ tools/firmware/hvmloader/util.h | 9 +++++++ tools/firmware/hvmloader/xenbus.c | 44 +++++++++++++++++++++++---------- tools/libacpi/libacpi.h | 10 ++++++++ tools/libxl/libxl_x86_acpi.c | 24 ++++++++++++++++++ 5 files changed, 126 insertions(+), 13 deletions(-) diff --git a/tools/firmware/hvmloader/util.c b/tools/firmware/hvmloader/util.c index 2f8a4654b0..5b8a4ee9d0 100644 --- a/tools/firmware/hvmloader/util.c +++ b/tools/firmware/hvmloader/util.c @@ -893,6 +893,53 @@ static uint32_t acpi_lapic_id(unsigned cpu) return LAPIC_ID(cpu); } +static const char *acpi_xs_read(struct acpi_ctxt *ctxt, const char *path) +{ + return xenstore_read(path, NULL); +} + +static int acpi_xs_write(struct acpi_ctxt *ctxt, + const char *path, const char *value) +{ + return xenstore_write(path, value); +} + +static unsigned int count_strings(const char *strings, unsigned int len) +{ + const char *p; + unsigned int n; + + for ( p = strings, n = 0; p < strings + len; p++ ) + if ( *p == '\0' ) + n++; + + return n; +} + +static char **acpi_xs_directory(struct acpi_ctxt *ctxt, + const char *path, unsigned int *num) +{ + const char *strings; + char *s, *p, **ret; + unsigned int len, n; + + strings = xenstore_directory(path, &len, NULL); + if ( !strings ) + return NULL; + + n = count_strings(strings, len); + ret = ctxt->mem_ops.alloc(ctxt, n * sizeof(p) + len, 0); + if ( !ret ) + return NULL; + memcpy(&ret[n], strings, len); + + s = (char *)&ret[n]; + for ( p = s, *num = 0; p < s + len; p += strlen(p) + 1 ) + ret[(*num)++] = p; + + return ret; +} + void hvmloader_acpi_build_tables(struct acpi_config *config, unsigned int physical) { @@ -998,6 +1045,11 @@ void hvmloader_acpi_build_tables(struct acpi_config *config, ctxt.min_alloc_byte_align = 16; + ctxt.xs_ops.read = acpi_xs_read; + ctxt.xs_ops.write = acpi_xs_write; + ctxt.xs_ops.directory = acpi_xs_directory; + ctxt.xs_opaque = NULL; + acpi_build_tables(&ctxt, config); hvm_param_set(HVM_PARAM_VM_GENERATION_ID_ADDR, config->vm_gid_addr); diff --git a/tools/firmware/hvmloader/util.h b/tools/firmware/hvmloader/util.h index e9fe6c6e79..37e62d93c0 100644 --- a/tools/firmware/hvmloader/util.h +++ b/tools/firmware/hvmloader/util.h @@ -225,6 +225,15 @@ const char *xenstore_read(const char *path, const char *default_resp); */ int xenstore_write(const char *path, const char *value); +/* Read a xenstore directory. Return NULL, or a nul-terminated string + * which contains all names of directory entries. Names are separated + * by '\0'. The returned string is in a static buffer, so only valid + * until the next xenstore/xenbus operation. If @default_resp is + * specified, it is returned in preference to a NULL or empty string + * received from xenstore. + */ +const char *xenstore_directory(const char *path, uint32_t *len, + const char *default_resp); /* Get a HVM param. */ diff --git a/tools/firmware/hvmloader/xenbus.c b/tools/firmware/hvmloader/xenbus.c index 2b89a56fce..387c0971e1 100644 --- a/tools/firmware/hvmloader/xenbus.c +++ b/tools/firmware/hvmloader/xenbus.c @@ -257,24 +257,16 @@ static int xenbus_recv(uint32_t *reply_len, const char **reply_data, return 0; } - -/* Read a xenstore key. Returns a nul-terminated string (even if the XS - * data wasn't nul-terminated) or NULL. The returned string is in a - * static buffer, so only valid until the next xenstore/xenbus operation. - * If @default_resp is specified, it is returned in preference to a NULL or - * empty string received from xenstore. - */ -const char *xenstore_read(const char *path, const char *default_resp) +static const char *xenstore_read_common(const char *path, uint32_t *len, + const char *default_resp, bool is_dir) { - uint32_t len = 0, type = 0; + uint32_t type = 0, expected_type = is_dir ? XS_DIRECTORY : XS_READ; const char *answer = NULL; - xenbus_send(XS_READ, - path, strlen(path), - "", 1, /* nul separator */ + xenbus_send(expected_type, path, strlen(path), "", 1, /* nul separator */ NULL, 0); - if ( xenbus_recv(&len, &answer, &type) || (type != XS_READ) ) + if ( xenbus_recv(len, &answer, &type) || type != expected_type ) answer = NULL; if ( (default_resp != NULL) && ((answer == NULL) || (*answer == '\0')) ) @@ -284,6 +276,32 @@ const char *xenstore_read(const char *path, const char *default_resp) return answer; } +/* Read a xenstore key. Returns a nul-terminated string (even if the XS + * data wasn't nul-terminated) or NULL. The returned string is in a + * static buffer, so only valid until the next xenstore/xenbus operation. + * If @default_resp is specified, it is returned in preference to a NULL or + * empty string received from xenstore. + */ +const char *xenstore_read(const char *path, const char *default_resp) +{ + uint32_t len = 0; + + return xenstore_read_common(path, &len, default_resp, false); +} + +/* Read a xenstore directory. Return NULL, or a nul-terminated string + * which contains all names of directory entries. Names are separated + * by '\0'. The returned string is in a static buffer, so only valid + * until the next xenstore/xenbus operation. If @default_resp is + * specified, it is returned in preference to a NULL or empty string + * received from xenstore. + */ +const char *xenstore_directory(const char *path, uint32_t *len, + const char *default_resp) +{ + return xenstore_read_common(path, len, default_resp, true); +} + /* Write a xenstore key. @value must be a nul-terminated string. Returns * zero on success or a xenstore error code on failure. */ diff --git a/tools/libacpi/libacpi.h b/tools/libacpi/libacpi.h index f5a1c384bc..ab86a35509 100644 --- a/tools/libacpi/libacpi.h +++ b/tools/libacpi/libacpi.h @@ -55,6 +55,16 @@ struct acpi_ctxt { } mem_ops; uint32_t min_alloc_byte_align; /* minimum alignment used by mem_ops.alloc */ + + struct acpi_xs_ops { + const char *(*read)(struct acpi_ctxt *ctxt, const char *path); + int (*write)(struct acpi_ctxt *ctxt, const char *path, + const char *value); + char **(*directory)(struct acpi_ctxt *ctxt, const char *path, + unsigned int *num); + } xs_ops; + + void *xs_opaque; }; struct acpi_config { diff --git a/tools/libxl/libxl_x86_acpi.c b/tools/libxl/libxl_x86_acpi.c index b14136949c..cbfd9a373c 100644 --- a/tools/libxl/libxl_x86_acpi.c +++ b/tools/libxl/libxl_x86_acpi.c @@ -98,6 +98,25 @@ static uint32_t acpi_lapic_id(unsigned cpu) return cpu * 2; } +static const char *acpi_xs_read(struct acpi_ctxt *ctxt, const char *path) +{ + return libxl__xs_read((libxl__gc *)ctxt->xs_opaque, XBT_NULL, path); +} + +static int acpi_xs_write(struct acpi_ctxt *ctxt, + const char *path, const char *value) +{ + return libxl__xs_write_checked((libxl__gc *)ctxt->xs_opaque, XBT_NULL, + path, value); +} + +static char **acpi_xs_directory(struct acpi_ctxt *ctxt, + const char *path, unsigned int *num) +{ + return libxl__xs_directory((libxl__gc *)ctxt->xs_opaque, XBT_NULL, + path, num); +} + static int init_acpi_config(libxl__gc *gc, struct xc_dom_image *dom, const libxl_domain_build_info *b_info, @@ -195,6 +214,11 @@ int libxl__dom_load_acpi(libxl__gc *gc, libxl_ctxt.c.min_alloc_byte_align = 16; + libxl_ctxt.c.xs_ops.read = acpi_xs_read; + libxl_ctxt.c.xs_ops.write = acpi_xs_write; + libxl_ctxt.c.xs_ops.directory = acpi_xs_directory; + libxl_ctxt.c.xs_opaque = gc; + rc = init_acpi_config(gc, dom, b_info, &config); if (rc) { LOG(ERROR, "init_acpi_config failed (rc=%d)", rc); -- 2.14.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |