Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Dealloc Visitor |
| 3 | * |
| 4 | * Copyright IBM, Corp. 2011 |
| 5 | * |
| 6 | * Authors: |
| 7 | * Michael Roth <mdroth@linux.vnet.ibm.com> |
| 8 | * |
| 9 | * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. |
| 10 | * See the COPYING.LIB file in the top-level directory. |
| 11 | * |
| 12 | */ |
| 13 | |
Peter Maydell | cbf2115 | 2016-01-29 17:49:57 +0000 | [diff] [blame] | 14 | #include "qemu/osdep.h" |
Paolo Bonzini | 7b1b5d1 | 2012-12-17 18:19:43 +0100 | [diff] [blame] | 15 | #include "qapi/dealloc-visitor.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 16 | #include "qemu/queue.h" |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 17 | #include "qemu-common.h" |
Paolo Bonzini | 7b1b5d1 | 2012-12-17 18:19:43 +0100 | [diff] [blame] | 18 | #include "qapi/qmp/types.h" |
| 19 | #include "qapi/visitor-impl.h" |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 20 | |
| 21 | typedef struct StackEntry |
| 22 | { |
| 23 | void *value; |
Michael Roth | 0b9d854 | 2011-09-19 19:03:10 -0500 | [diff] [blame] | 24 | bool is_list_head; |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 25 | QTAILQ_ENTRY(StackEntry) node; |
| 26 | } StackEntry; |
| 27 | |
| 28 | struct QapiDeallocVisitor |
| 29 | { |
| 30 | Visitor visitor; |
| 31 | QTAILQ_HEAD(, StackEntry) stack; |
| 32 | }; |
| 33 | |
| 34 | static QapiDeallocVisitor *to_qov(Visitor *v) |
| 35 | { |
| 36 | return container_of(v, QapiDeallocVisitor, visitor); |
| 37 | } |
| 38 | |
| 39 | static void qapi_dealloc_push(QapiDeallocVisitor *qov, void *value) |
| 40 | { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 41 | StackEntry *e = g_malloc0(sizeof(*e)); |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 42 | |
| 43 | e->value = value; |
Michael Roth | 0b9d854 | 2011-09-19 19:03:10 -0500 | [diff] [blame] | 44 | |
| 45 | /* see if we're just pushing a list head tracker */ |
| 46 | if (value == NULL) { |
| 47 | e->is_list_head = true; |
| 48 | } |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 49 | QTAILQ_INSERT_HEAD(&qov->stack, e, node); |
| 50 | } |
| 51 | |
| 52 | static void *qapi_dealloc_pop(QapiDeallocVisitor *qov) |
| 53 | { |
| 54 | StackEntry *e = QTAILQ_FIRST(&qov->stack); |
| 55 | QObject *value; |
| 56 | QTAILQ_REMOVE(&qov->stack, e, node); |
| 57 | value = e->value; |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 58 | g_free(e); |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 59 | return value; |
| 60 | } |
| 61 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame^] | 62 | static void qapi_dealloc_start_struct(Visitor *v, const char *name, void **obj, |
| 63 | const char *kind, size_t unused, |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 64 | Error **errp) |
| 65 | { |
| 66 | QapiDeallocVisitor *qov = to_qov(v); |
| 67 | qapi_dealloc_push(qov, obj); |
| 68 | } |
| 69 | |
| 70 | static void qapi_dealloc_end_struct(Visitor *v, Error **errp) |
| 71 | { |
| 72 | QapiDeallocVisitor *qov = to_qov(v); |
| 73 | void **obj = qapi_dealloc_pop(qov); |
| 74 | if (obj) { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 75 | g_free(*obj); |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 76 | } |
| 77 | } |
| 78 | |
Wenchao Xia | 3dce9ca | 2013-11-06 02:35:50 +0800 | [diff] [blame] | 79 | static void qapi_dealloc_start_implicit_struct(Visitor *v, |
| 80 | void **obj, |
| 81 | size_t size, |
| 82 | Error **errp) |
| 83 | { |
| 84 | QapiDeallocVisitor *qov = to_qov(v); |
| 85 | qapi_dealloc_push(qov, obj); |
| 86 | } |
| 87 | |
| 88 | static void qapi_dealloc_end_implicit_struct(Visitor *v, Error **errp) |
| 89 | { |
| 90 | QapiDeallocVisitor *qov = to_qov(v); |
| 91 | void **obj = qapi_dealloc_pop(qov); |
| 92 | if (obj) { |
| 93 | g_free(*obj); |
| 94 | } |
| 95 | } |
| 96 | |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 97 | static void qapi_dealloc_start_list(Visitor *v, const char *name, Error **errp) |
| 98 | { |
Michael Roth | 5666dd1 | 2011-09-15 14:39:52 -0500 | [diff] [blame] | 99 | QapiDeallocVisitor *qov = to_qov(v); |
Michael Roth | 0b9d854 | 2011-09-19 19:03:10 -0500 | [diff] [blame] | 100 | qapi_dealloc_push(qov, NULL); |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 101 | } |
| 102 | |
Michael Roth | 5666dd1 | 2011-09-15 14:39:52 -0500 | [diff] [blame] | 103 | static GenericList *qapi_dealloc_next_list(Visitor *v, GenericList **listp, |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 104 | Error **errp) |
| 105 | { |
Michael Roth | 5666dd1 | 2011-09-15 14:39:52 -0500 | [diff] [blame] | 106 | GenericList *list = *listp; |
| 107 | QapiDeallocVisitor *qov = to_qov(v); |
Michael Roth | 0b9d854 | 2011-09-19 19:03:10 -0500 | [diff] [blame] | 108 | StackEntry *e = QTAILQ_FIRST(&qov->stack); |
Michael Roth | 5666dd1 | 2011-09-15 14:39:52 -0500 | [diff] [blame] | 109 | |
Michael Roth | 0b9d854 | 2011-09-19 19:03:10 -0500 | [diff] [blame] | 110 | if (e && e->is_list_head) { |
| 111 | e->is_list_head = false; |
| 112 | return list; |
Michael Roth | 5666dd1 | 2011-09-15 14:39:52 -0500 | [diff] [blame] | 113 | } |
| 114 | |
Michael Roth | 0b9d854 | 2011-09-19 19:03:10 -0500 | [diff] [blame] | 115 | if (list) { |
| 116 | list = list->next; |
| 117 | g_free(*listp); |
| 118 | return list; |
| 119 | } |
| 120 | |
| 121 | return NULL; |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | static void qapi_dealloc_end_list(Visitor *v, Error **errp) |
| 125 | { |
Michael Roth | 0b9d854 | 2011-09-19 19:03:10 -0500 | [diff] [blame] | 126 | QapiDeallocVisitor *qov = to_qov(v); |
| 127 | void *obj = qapi_dealloc_pop(qov); |
| 128 | assert(obj == NULL); /* should've been list head tracker with no payload */ |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 129 | } |
| 130 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame^] | 131 | static void qapi_dealloc_type_str(Visitor *v, const char *name, char **obj, |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 132 | Error **errp) |
| 133 | { |
Peter Lieven | b690d67 | 2014-05-08 18:03:15 +0200 | [diff] [blame] | 134 | if (obj) { |
| 135 | g_free(*obj); |
| 136 | } |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 137 | } |
| 138 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame^] | 139 | static void qapi_dealloc_type_int64(Visitor *v, const char *name, int64_t *obj, |
Eric Blake | 4c40314 | 2016-01-29 06:48:49 -0700 | [diff] [blame] | 140 | Error **errp) |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 141 | { |
| 142 | } |
| 143 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame^] | 144 | static void qapi_dealloc_type_uint64(Visitor *v, const char *name, |
| 145 | uint64_t *obj, Error **errp) |
Eric Blake | f755dea | 2016-01-29 06:48:50 -0700 | [diff] [blame] | 146 | { |
| 147 | } |
| 148 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame^] | 149 | static void qapi_dealloc_type_bool(Visitor *v, const char *name, bool *obj, |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 150 | Error **errp) |
| 151 | { |
| 152 | } |
| 153 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame^] | 154 | static void qapi_dealloc_type_number(Visitor *v, const char *name, double *obj, |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 155 | Error **errp) |
| 156 | { |
| 157 | } |
| 158 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame^] | 159 | static void qapi_dealloc_type_anything(Visitor *v, const char *name, |
| 160 | QObject **obj, Error **errp) |
Markus Armbruster | 28770e0 | 2015-09-16 13:06:24 +0200 | [diff] [blame] | 161 | { |
| 162 | if (obj) { |
| 163 | qobject_decref(*obj); |
| 164 | } |
| 165 | } |
| 166 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame^] | 167 | static void qapi_dealloc_type_enum(Visitor *v, const char *name, int *obj, |
Daniel P. Berrange | 2e4450f | 2015-05-13 17:14:07 +0100 | [diff] [blame] | 168 | const char * const strings[], |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame^] | 169 | const char *kind, Error **errp) |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 170 | { |
| 171 | } |
| 172 | |
Michael Roth | 146db9f | 2014-09-18 15:36:41 -0500 | [diff] [blame] | 173 | /* If there's no data present, the dealloc visitor has nothing to free. |
| 174 | * Thus, indicate to visitor code that the subsequent union fields can |
| 175 | * be skipped. This is not an error condition, since the cleanup of the |
| 176 | * rest of an object can continue unhindered, so leave errp unset in |
| 177 | * these cases. |
| 178 | * |
| 179 | * NOTE: In cases where we're attempting to deallocate an object that |
| 180 | * may have missing fields, the field indicating the union type may |
| 181 | * be missing. In such a case, it's possible we don't have enough |
| 182 | * information to differentiate data_present == false from a case where |
| 183 | * data *is* present but happens to be a scalar with a value of 0. |
| 184 | * This is okay, since in the case of the dealloc visitor there's no |
| 185 | * work that needs to done in either situation. |
| 186 | * |
| 187 | * The current inability in QAPI code to more thoroughly verify a union |
| 188 | * type in such cases will likely need to be addressed if we wish to |
| 189 | * implement this interface for other types of visitors in the future, |
| 190 | * however. |
| 191 | */ |
| 192 | static bool qapi_dealloc_start_union(Visitor *v, bool data_present, |
| 193 | Error **errp) |
| 194 | { |
| 195 | return data_present; |
| 196 | } |
| 197 | |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 198 | Visitor *qapi_dealloc_get_visitor(QapiDeallocVisitor *v) |
| 199 | { |
| 200 | return &v->visitor; |
| 201 | } |
| 202 | |
| 203 | void qapi_dealloc_visitor_cleanup(QapiDeallocVisitor *v) |
| 204 | { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 205 | g_free(v); |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | QapiDeallocVisitor *qapi_dealloc_visitor_new(void) |
| 209 | { |
| 210 | QapiDeallocVisitor *v; |
| 211 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 212 | v = g_malloc0(sizeof(*v)); |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 213 | |
| 214 | v->visitor.start_struct = qapi_dealloc_start_struct; |
| 215 | v->visitor.end_struct = qapi_dealloc_end_struct; |
Wenchao Xia | 3dce9ca | 2013-11-06 02:35:50 +0800 | [diff] [blame] | 216 | v->visitor.start_implicit_struct = qapi_dealloc_start_implicit_struct; |
| 217 | v->visitor.end_implicit_struct = qapi_dealloc_end_implicit_struct; |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 218 | v->visitor.start_list = qapi_dealloc_start_list; |
| 219 | v->visitor.next_list = qapi_dealloc_next_list; |
| 220 | v->visitor.end_list = qapi_dealloc_end_list; |
| 221 | v->visitor.type_enum = qapi_dealloc_type_enum; |
Eric Blake | 4c40314 | 2016-01-29 06:48:49 -0700 | [diff] [blame] | 222 | v->visitor.type_int64 = qapi_dealloc_type_int64; |
Eric Blake | f755dea | 2016-01-29 06:48:50 -0700 | [diff] [blame] | 223 | v->visitor.type_uint64 = qapi_dealloc_type_uint64; |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 224 | v->visitor.type_bool = qapi_dealloc_type_bool; |
| 225 | v->visitor.type_str = qapi_dealloc_type_str; |
| 226 | v->visitor.type_number = qapi_dealloc_type_number; |
Markus Armbruster | 28770e0 | 2015-09-16 13:06:24 +0200 | [diff] [blame] | 227 | v->visitor.type_any = qapi_dealloc_type_anything; |
Michael Roth | 146db9f | 2014-09-18 15:36:41 -0500 | [diff] [blame] | 228 | v->visitor.start_union = qapi_dealloc_start_union; |
Michael Roth | d5f3c29 | 2011-07-19 14:50:35 -0500 | [diff] [blame] | 229 | |
| 230 | QTAILQ_INIT(&v->stack); |
| 231 | |
| 232 | return v; |
| 233 | } |