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.
8 #include "qemu/osdep.h"
10 #include "hw/sysbus.h"
11 #include "hw/xen/xen.h"
12 #include "hw/xen/xen-bus.h"
13 #include "hw/xen/xen-bus-helper.h"
14 #include "qapi/error.h"
16 #include <glib/gprintf.h>
19 enum xenbus_state statenum
;
22 #define XS_STATE(state) { state, #state }
24 static struct xs_state xs_state
[] = {
25 XS_STATE(XenbusStateUnknown
),
26 XS_STATE(XenbusStateInitialising
),
27 XS_STATE(XenbusStateInitWait
),
28 XS_STATE(XenbusStateInitialised
),
29 XS_STATE(XenbusStateConnected
),
30 XS_STATE(XenbusStateClosing
),
31 XS_STATE(XenbusStateClosed
),
32 XS_STATE(XenbusStateReconfiguring
),
33 XS_STATE(XenbusStateReconfigured
),
38 const char *xs_strstate(enum xenbus_state state
)
42 for (i
= 0; i
< ARRAY_SIZE(xs_state
); i
++) {
43 if (xs_state
[i
].statenum
== state
) {
44 return xs_state
[i
].statestr
;
51 void xs_node_create(struct xs_handle
*xsh
, xs_transaction_t tid
,
52 const char *node
, struct xs_permissions perms
[],
53 unsigned int nr_perms
, Error
**errp
)
55 trace_xs_node_create(node
);
57 if (!xs_write(xsh
, tid
, node
, "", 0)) {
58 error_setg_errno(errp
, errno
, "failed to create node '%s'", node
);
62 if (!xs_set_permissions(xsh
, tid
, node
, perms
, nr_perms
)) {
63 error_setg_errno(errp
, errno
, "failed to set node '%s' permissions",
68 void xs_node_destroy(struct xs_handle
*xsh
, xs_transaction_t tid
,
69 const char *node
, Error
**errp
)
71 trace_xs_node_destroy(node
);
73 if (!xs_rm(xsh
, tid
, node
)) {
74 error_setg_errno(errp
, errno
, "failed to destroy node '%s'", node
);
78 void xs_node_vprintf(struct xs_handle
*xsh
, xs_transaction_t tid
,
79 const char *node
, const char *key
, Error
**errp
,
80 const char *fmt
, va_list ap
)
85 path
= (strlen(node
) != 0) ? g_strdup_printf("%s/%s", node
, key
) :
87 len
= g_vasprintf(&value
, fmt
, ap
);
89 trace_xs_node_vprintf(path
, value
);
91 if (!xs_write(xsh
, tid
, path
, value
, len
)) {
92 error_setg_errno(errp
, errno
, "failed to write '%s' to '%s'",
100 void xs_node_printf(struct xs_handle
*xsh
, xs_transaction_t tid
,
101 const char *node
, const char *key
, Error
**errp
,
102 const char *fmt
, ...)
107 xs_node_vprintf(xsh
, tid
, node
, key
, errp
, fmt
, ap
);
111 int xs_node_vscanf(struct xs_handle
*xsh
, xs_transaction_t tid
,
112 const char *node
, const char *key
, Error
**errp
,
113 const char *fmt
, va_list ap
)
118 path
= (strlen(node
) != 0) ? g_strdup_printf("%s/%s", node
, key
) :
120 value
= xs_read(xsh
, tid
, path
, NULL
);
122 trace_xs_node_vscanf(path
, value
);
125 rc
= vsscanf(value
, fmt
, ap
);
127 error_setg_errno(errp
, errno
, "failed to read from '%s'",
138 int xs_node_scanf(struct xs_handle
*xsh
, xs_transaction_t tid
,
139 const char *node
, const char *key
, Error
**errp
,
140 const char *fmt
, ...)
146 rc
= xs_node_vscanf(xsh
, tid
, node
, key
, errp
, fmt
, ap
);
152 void xs_node_watch(struct xs_handle
*xsh
, const char *node
, const char *key
,
153 char *token
, Error
**errp
)
157 path
= (strlen(node
) != 0) ? g_strdup_printf("%s/%s", node
, key
) :
160 trace_xs_node_watch(path
);
162 if (!xs_watch(xsh
, path
, token
)) {
163 error_setg_errno(errp
, errno
, "failed to watch node '%s'", path
);
169 void xs_node_unwatch(struct xs_handle
*xsh
, const char *node
,
170 const char *key
, const char *token
, Error
**errp
)
174 path
= (strlen(node
) != 0) ? g_strdup_printf("%s/%s", node
, key
) :
177 trace_xs_node_unwatch(path
);
179 if (!xs_unwatch(xsh
, path
, token
)) {
180 error_setg_errno(errp
, errno
, "failed to unwatch node '%s'", path
);