error: New QERR_DUPLICATE_ID
[qemu/aliguori-queue.git] / qerror.c
blob9fb817e7cb5c7a626f8a2fbd087a55fb81a2dd5b
1 /*
2 * QError: QEMU Error data-type.
4 * Copyright (C) 2009 Red Hat Inc.
6 * Authors:
7 * Luiz Capitulino <lcapitulino@redhat.com>
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.
13 #include "monitor.h"
14 #include "qjson.h"
15 #include "qerror.h"
16 #include "qemu-common.h"
18 static void qerror_destroy_obj(QObject *obj);
20 static const QType qerror_type = {
21 .code = QTYPE_QERROR,
22 .destroy = qerror_destroy_obj,
25 /**
26 * The 'desc' parameter is a printf-like string, the format of the format
27 * string is:
29 * %(KEY)
31 * Where KEY is a QDict key, which has to be passed to qerror_from_info().
33 * Example:
35 * "foo error on device: %(device) slot: %(slot_nr)"
37 * A single percent sign can be printed if followed by a second one,
38 * for example:
40 * "running out of foo: %(foo)%%"
42 * Please keep the entries in alphabetical order.
43 * Use "sed -n '/^static.*qerror_table\[\]/,/^};/s/QERR_/&/gp' qerror.c | sort -c"
44 * to check.
46 static const QErrorStringTable qerror_table[] = {
48 .error_fmt = QERR_BAD_BUS_FOR_DEVICE,
49 .desc = "Device '%(device)' can't go on a %(bad_bus_type) bus",
52 .error_fmt = QERR_BUS_NOT_FOUND,
53 .desc = "Bus '%(bus)' not found",
56 .error_fmt = QERR_BUS_NO_HOTPLUG,
57 .desc = "Bus '%(bus)' does not support hotplugging",
60 .error_fmt = QERR_COMMAND_NOT_FOUND,
61 .desc = "The command %(name) has not been found",
64 .error_fmt = QERR_DEVICE_ENCRYPTED,
65 .desc = "Device '%(device)' is encrypted",
68 .error_fmt = QERR_DEVICE_INIT_FAILED,
69 .desc = "Device '%(device)' could not be initialized",
72 .error_fmt = QERR_DEVICE_LOCKED,
73 .desc = "Device '%(device)' is locked",
76 .error_fmt = QERR_DEVICE_MULTIPLE_BUSSES,
77 .desc = "Device '%(device)' has multiple child busses",
80 .error_fmt = QERR_DEVICE_NOT_ACTIVE,
81 .desc = "Device '%(device)' has not been activated by the guest",
84 .error_fmt = QERR_DEVICE_NOT_ENCRYPTED,
85 .desc = "Device '%(device)' is not encrypted",
88 .error_fmt = QERR_DEVICE_NOT_FOUND,
89 .desc = "Device '%(device)' not found",
92 .error_fmt = QERR_DEVICE_NOT_REMOVABLE,
93 .desc = "Device '%(device)' is not removable",
96 .error_fmt = QERR_DEVICE_NO_BUS,
97 .desc = "Device '%(device)' has no child bus",
100 .error_fmt = QERR_DUPLICATE_ID,
101 .desc = "Duplicate ID '%(id)' for %(object)",
104 .error_fmt = QERR_FD_NOT_FOUND,
105 .desc = "File descriptor named '%(name)' not found",
108 .error_fmt = QERR_FD_NOT_SUPPLIED,
109 .desc = "No file descriptor supplied via SCM_RIGHTS",
112 .error_fmt = QERR_INVALID_BLOCK_FORMAT,
113 .desc = "Invalid block format '%(name)'",
116 .error_fmt = QERR_INVALID_PARAMETER,
117 .desc = "Invalid parameter '%(name)'",
120 .error_fmt = QERR_INVALID_PARAMETER_TYPE,
121 .desc = "Invalid parameter type, expected: %(expected)",
124 .error_fmt = QERR_INVALID_PASSWORD,
125 .desc = "Password incorrect",
128 .error_fmt = QERR_JSON_PARSING,
129 .desc = "Invalid JSON syntax",
132 .error_fmt = QERR_KVM_MISSING_CAP,
133 .desc = "Using KVM without %(capability), %(feature) unavailable",
136 .error_fmt = QERR_MISSING_PARAMETER,
137 .desc = "Parameter '%(name)' is missing",
140 .error_fmt = QERR_NO_BUS_FOR_DEVICE,
141 .desc = "No '%(bus)' bus found for device '%(device)'",
144 .error_fmt = QERR_OPEN_FILE_FAILED,
145 .desc = "Could not open '%(filename)'",
148 .error_fmt = QERR_PROPERTY_NOT_FOUND,
149 .desc = "Property '%(device).%(property)' not found",
152 .error_fmt = QERR_PROPERTY_VALUE_BAD,
153 .desc = "Property '%(device).%(property)' doesn't take value '%(value)'",
156 .error_fmt = QERR_PROPERTY_VALUE_IN_USE,
157 .desc = "Property '%(device).%(property)' can't take value '%(value)', it's in use",
160 .error_fmt = QERR_PROPERTY_VALUE_NOT_FOUND,
161 .desc = "Property '%(device).%(property)' can't find value '%(value)'",
164 .error_fmt = QERR_QMP_BAD_INPUT_OBJECT,
165 .desc = "Bad QMP input object",
168 .error_fmt = QERR_SET_PASSWD_FAILED,
169 .desc = "Could not set password",
172 .error_fmt = QERR_TOO_MANY_FILES,
173 .desc = "Too many open files",
176 .error_fmt = QERR_UNDEFINED_ERROR,
177 .desc = "An undefined error has ocurred",
180 .error_fmt = QERR_VNC_SERVER_FAILED,
181 .desc = "Could not start VNC server on %(target)",
187 * qerror_new(): Create a new QError
189 * Return strong reference.
191 QError *qerror_new(void)
193 QError *qerr;
195 qerr = qemu_mallocz(sizeof(*qerr));
196 QOBJECT_INIT(qerr, &qerror_type);
198 return qerr;
201 static void qerror_abort(const QError *qerr, const char *fmt, ...)
203 va_list ap;
205 fprintf(stderr, "qerror: bad call in function '%s':\n", qerr->func);
206 fprintf(stderr, "qerror: -> ");
208 va_start(ap, fmt);
209 vfprintf(stderr, fmt, ap);
210 va_end(ap);
212 fprintf(stderr, "\nqerror: call at %s:%d\n", qerr->file, qerr->linenr);
213 abort();
216 static void qerror_set_data(QError *qerr, const char *fmt, va_list *va)
218 QObject *obj;
220 obj = qobject_from_jsonv(fmt, va);
221 if (!obj) {
222 qerror_abort(qerr, "invalid format '%s'", fmt);
224 if (qobject_type(obj) != QTYPE_QDICT) {
225 qerror_abort(qerr, "error format is not a QDict '%s'", fmt);
228 qerr->error = qobject_to_qdict(obj);
230 obj = qdict_get(qerr->error, "class");
231 if (!obj) {
232 qerror_abort(qerr, "missing 'class' key in '%s'", fmt);
234 if (qobject_type(obj) != QTYPE_QSTRING) {
235 qerror_abort(qerr, "'class' key value should be a QString");
238 obj = qdict_get(qerr->error, "data");
239 if (!obj) {
240 qerror_abort(qerr, "missing 'data' key in '%s'", fmt);
242 if (qobject_type(obj) != QTYPE_QDICT) {
243 qerror_abort(qerr, "'data' key value should be a QDICT");
247 static void qerror_set_desc(QError *qerr, const char *fmt)
249 int i;
251 // FIXME: inefficient loop
253 for (i = 0; qerror_table[i].error_fmt; i++) {
254 if (strcmp(qerror_table[i].error_fmt, fmt) == 0) {
255 qerr->entry = &qerror_table[i];
256 return;
260 qerror_abort(qerr, "error format '%s' not found", fmt);
264 * qerror_from_info(): Create a new QError from error information
266 * The information consists of:
268 * - file the file name of where the error occurred
269 * - linenr the line number of where the error occurred
270 * - func the function name of where the error occurred
271 * - fmt JSON printf-like dictionary, there must exist keys 'class' and
272 * 'data'
273 * - va va_list of all arguments specified by fmt
275 * Return strong reference.
277 QError *qerror_from_info(const char *file, int linenr, const char *func,
278 const char *fmt, va_list *va)
280 QError *qerr;
282 qerr = qerror_new();
283 loc_save(&qerr->loc);
284 qerr->linenr = linenr;
285 qerr->file = file;
286 qerr->func = func;
288 if (!fmt) {
289 qerror_abort(qerr, "QDict not specified");
292 qerror_set_data(qerr, fmt, va);
293 qerror_set_desc(qerr, fmt);
295 return qerr;
298 static void parse_error(const QError *qerror, int c)
300 qerror_abort(qerror, "expected '%c' in '%s'", c, qerror->entry->desc);
303 static const char *append_field(QString *outstr, const QError *qerror,
304 const char *start)
306 QObject *obj;
307 QDict *qdict;
308 QString *key_qs;
309 const char *end, *key;
311 if (*start != '%')
312 parse_error(qerror, '%');
313 start++;
314 if (*start != '(')
315 parse_error(qerror, '(');
316 start++;
318 end = strchr(start, ')');
319 if (!end)
320 parse_error(qerror, ')');
322 key_qs = qstring_from_substr(start, 0, end - start - 1);
323 key = qstring_get_str(key_qs);
325 qdict = qobject_to_qdict(qdict_get(qerror->error, "data"));
326 obj = qdict_get(qdict, key);
327 if (!obj) {
328 qerror_abort(qerror, "key '%s' not found in QDict", key);
331 switch (qobject_type(obj)) {
332 case QTYPE_QSTRING:
333 qstring_append(outstr, qdict_get_str(qdict, key));
334 break;
335 case QTYPE_QINT:
336 qstring_append_int(outstr, qdict_get_int(qdict, key));
337 break;
338 default:
339 qerror_abort(qerror, "invalid type '%c'", qobject_type(obj));
342 QDECREF(key_qs);
343 return ++end;
347 * qerror_human(): Format QError data into human-readable string.
349 * Formats according to member 'desc' of the specified QError object.
351 QString *qerror_human(const QError *qerror)
353 const char *p;
354 QString *qstring;
356 assert(qerror->entry != NULL);
358 qstring = qstring_new();
360 for (p = qerror->entry->desc; *p != '\0';) {
361 if (*p != '%') {
362 qstring_append_chr(qstring, *p++);
363 } else if (*(p + 1) == '%') {
364 qstring_append_chr(qstring, '%');
365 p += 2;
366 } else {
367 p = append_field(qstring, qerror, p);
371 return qstring;
375 * qerror_print(): Print QError data
377 * This function will print the member 'desc' of the specified QError object,
378 * it uses error_report() for this, so that the output is routed to the right
379 * place (ie. stderr or Monitor's device).
381 void qerror_print(QError *qerror)
383 QString *qstring = qerror_human(qerror);
384 loc_push_restore(&qerror->loc);
385 error_report("%s", qstring_get_str(qstring));
386 loc_pop(&qerror->loc);
387 QDECREF(qstring);
390 void qerror_report_internal(const char *file, int linenr, const char *func,
391 const char *fmt, ...)
393 va_list va;
394 QError *qerror;
396 va_start(va, fmt);
397 qerror = qerror_from_info(file, linenr, func, fmt, &va);
398 va_end(va);
400 if (monitor_cur_is_qmp()) {
401 monitor_set_error(cur_mon, qerror);
402 } else {
403 qerror_print(qerror);
404 QDECREF(qerror);
409 * qobject_to_qerror(): Convert a QObject into a QError
411 QError *qobject_to_qerror(const QObject *obj)
413 if (qobject_type(obj) != QTYPE_QERROR) {
414 return NULL;
417 return container_of(obj, QError, base);
421 * qerror_destroy_obj(): Free all memory allocated by a QError
423 static void qerror_destroy_obj(QObject *obj)
425 QError *qerr;
427 assert(obj != NULL);
428 qerr = qobject_to_qerror(obj);
430 QDECREF(qerr->error);
431 qemu_free(qerr);