Merge tag 'v9.0.0-rc3'
[qemu/ar7.git] / hw / xen / xen-bus-helper.c
blobb2b2cc9c5d5e1a403ebcdf18c41959da615da6c2
1 /*
2 * Copyright (c) 2018 Citrix Systems Inc.
4 * This work is licensed under the terms of the GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
6 */
8 #include "qemu/osdep.h"
9 #include "hw/xen/xen.h"
10 #include "hw/xen/xen-bus.h"
11 #include "hw/xen/xen-bus-helper.h"
12 #include "qapi/error.h"
13 #include "trace.h"
15 #include <glib/gprintf.h>
17 struct xs_state {
18 enum xenbus_state statenum;
19 const char *statestr;
21 #define XS_STATE(state) { state, #state }
23 static struct xs_state xs_state[] = {
24 XS_STATE(XenbusStateUnknown),
25 XS_STATE(XenbusStateInitialising),
26 XS_STATE(XenbusStateInitWait),
27 XS_STATE(XenbusStateInitialised),
28 XS_STATE(XenbusStateConnected),
29 XS_STATE(XenbusStateClosing),
30 XS_STATE(XenbusStateClosed),
31 XS_STATE(XenbusStateReconfiguring),
32 XS_STATE(XenbusStateReconfigured),
35 #undef XS_STATE
37 const char *xs_strstate(enum xenbus_state state)
39 unsigned int i;
41 for (i = 0; i < ARRAY_SIZE(xs_state); i++) {
42 if (xs_state[i].statenum == state) {
43 return xs_state[i].statestr;
47 return "INVALID";
50 void xs_node_create(struct qemu_xs_handle *h, xs_transaction_t tid,
51 const char *node, unsigned int owner, unsigned int domid,
52 unsigned int perms, Error **errp)
54 trace_xs_node_create(node);
56 if (!qemu_xen_xs_create(h, tid, owner, domid, perms, node)) {
57 error_setg_errno(errp, errno, "failed to create node '%s'", node);
61 void xs_node_destroy(struct qemu_xs_handle *h, xs_transaction_t tid,
62 const char *node, Error **errp)
64 trace_xs_node_destroy(node);
66 if (!qemu_xen_xs_destroy(h, tid, node)) {
67 error_setg_errno(errp, errno, "failed to destroy node '%s'", node);
71 void xs_node_vprintf(struct qemu_xs_handle *h, xs_transaction_t tid,
72 const char *node, const char *key, Error **errp,
73 const char *fmt, va_list ap)
75 char *path, *value;
76 int len;
78 path = (strlen(node) != 0) ? g_strdup_printf("%s/%s", node, key) :
79 g_strdup(key);
80 len = g_vasprintf(&value, fmt, ap);
82 trace_xs_node_vprintf(path, value);
84 if (!qemu_xen_xs_write(h, tid, path, value, len)) {
85 error_setg_errno(errp, errno, "failed to write '%s' to '%s'",
86 value, path);
89 g_free(value);
90 g_free(path);
93 void xs_node_printf(struct qemu_xs_handle *h, xs_transaction_t tid,
94 const char *node, const char *key, Error **errp,
95 const char *fmt, ...)
97 va_list ap;
99 va_start(ap, fmt);
100 xs_node_vprintf(h, tid, node, key, errp, fmt, ap);
101 va_end(ap);
104 int xs_node_vscanf(struct qemu_xs_handle *h, xs_transaction_t tid,
105 const char *node, const char *key, Error **errp,
106 const char *fmt, va_list ap)
108 char *path, *value;
109 int rc;
111 path = (strlen(node) != 0) ? g_strdup_printf("%s/%s", node, key) :
112 g_strdup(key);
113 value = qemu_xen_xs_read(h, tid, path, NULL);
115 trace_xs_node_vscanf(path, value);
117 if (value) {
118 rc = vsscanf(value, fmt, ap);
119 } else {
120 error_setg_errno(errp, errno, "failed to read from '%s'",
121 path);
122 rc = EOF;
125 free(value);
126 g_free(path);
128 return rc;
131 int xs_node_scanf(struct qemu_xs_handle *h, xs_transaction_t tid,
132 const char *node, const char *key, Error **errp,
133 const char *fmt, ...)
135 va_list ap;
136 int rc;
138 va_start(ap, fmt);
139 rc = xs_node_vscanf(h, tid, node, key, errp, fmt, ap);
140 va_end(ap);
142 return rc;
145 struct qemu_xs_watch *xs_node_watch(struct qemu_xs_handle *h, const char *node,
146 const char *key, xs_watch_fn fn,
147 void *opaque, Error **errp)
149 char *path;
150 struct qemu_xs_watch *w;
152 path = (strlen(node) != 0) ? g_strdup_printf("%s/%s", node, key) :
153 g_strdup(key);
155 trace_xs_node_watch(path);
157 w = qemu_xen_xs_watch(h, path, fn, opaque);
158 if (!w) {
159 error_setg_errno(errp, errno, "failed to watch node '%s'", path);
162 g_free(path);
164 return w;
167 void xs_node_unwatch(struct qemu_xs_handle *h, struct qemu_xs_watch *w)
169 qemu_xen_xs_unwatch(h, w);