alpha: add missing 'break', spotted by clang analyzer
[qemu/aliguori-queue.git] / qerror.c
blob8d885cdce47367d7d9cfb08491c924de9d7d360f
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_IN_USE,
73 .desc = "Device '%(device)' is in use",
76 .error_fmt = QERR_DEVICE_LOCKED,
77 .desc = "Device '%(device)' is locked",
80 .error_fmt = QERR_DEVICE_MULTIPLE_BUSSES,
81 .desc = "Device '%(device)' has multiple child busses",
84 .error_fmt = QERR_DEVICE_NOT_ACTIVE,
85 .desc = "Device '%(device)' has not been activated by the guest",
88 .error_fmt = QERR_DEVICE_NOT_ENCRYPTED,
89 .desc = "Device '%(device)' is not encrypted",
92 .error_fmt = QERR_DEVICE_NOT_FOUND,
93 .desc = "Device '%(device)' not found",
96 .error_fmt = QERR_DEVICE_NOT_REMOVABLE,
97 .desc = "Device '%(device)' is not removable",
100 .error_fmt = QERR_DEVICE_NO_BUS,
101 .desc = "Device '%(device)' has no child bus",
104 .error_fmt = QERR_DUPLICATE_ID,
105 .desc = "Duplicate ID '%(id)' for %(object)",
108 .error_fmt = QERR_FD_NOT_FOUND,
109 .desc = "File descriptor named '%(name)' not found",
112 .error_fmt = QERR_FD_NOT_SUPPLIED,
113 .desc = "No file descriptor supplied via SCM_RIGHTS",
116 .error_fmt = QERR_INVALID_BLOCK_FORMAT,
117 .desc = "Invalid block format '%(name)'",
120 .error_fmt = QERR_INVALID_PARAMETER,
121 .desc = "Invalid parameter '%(name)'",
124 .error_fmt = QERR_INVALID_PARAMETER_TYPE,
125 .desc = "Invalid parameter type, expected: %(expected)",
128 .error_fmt = QERR_INVALID_PARAMETER_VALUE,
129 .desc = "Parameter '%(name)' expects %(expected)",
132 .error_fmt = QERR_INVALID_PASSWORD,
133 .desc = "Password incorrect",
136 .error_fmt = QERR_JSON_PARSING,
137 .desc = "Invalid JSON syntax",
140 .error_fmt = QERR_KVM_MISSING_CAP,
141 .desc = "Using KVM without %(capability), %(feature) unavailable",
144 .error_fmt = QERR_MISSING_PARAMETER,
145 .desc = "Parameter '%(name)' is missing",
148 .error_fmt = QERR_NO_BUS_FOR_DEVICE,
149 .desc = "No '%(bus)' bus found for device '%(device)'",
152 .error_fmt = QERR_OPEN_FILE_FAILED,
153 .desc = "Could not open '%(filename)'",
156 .error_fmt = QERR_PROPERTY_NOT_FOUND,
157 .desc = "Property '%(device).%(property)' not found",
160 .error_fmt = QERR_PROPERTY_VALUE_BAD,
161 .desc = "Property '%(device).%(property)' doesn't take value '%(value)'",
164 .error_fmt = QERR_PROPERTY_VALUE_IN_USE,
165 .desc = "Property '%(device).%(property)' can't take value '%(value)', it's in use",
168 .error_fmt = QERR_PROPERTY_VALUE_NOT_FOUND,
169 .desc = "Property '%(device).%(property)' can't find value '%(value)'",
172 .error_fmt = QERR_QMP_BAD_INPUT_OBJECT,
173 .desc = "Bad QMP input object",
176 .error_fmt = QERR_SET_PASSWD_FAILED,
177 .desc = "Could not set password",
180 .error_fmt = QERR_TOO_MANY_FILES,
181 .desc = "Too many open files",
184 .error_fmt = QERR_UNDEFINED_ERROR,
185 .desc = "An undefined error has ocurred",
188 .error_fmt = QERR_VNC_SERVER_FAILED,
189 .desc = "Could not start VNC server on %(target)",
195 * qerror_new(): Create a new QError
197 * Return strong reference.
199 QError *qerror_new(void)
201 QError *qerr;
203 qerr = qemu_mallocz(sizeof(*qerr));
204 QOBJECT_INIT(qerr, &qerror_type);
206 return qerr;
209 static void qerror_abort(const QError *qerr, const char *fmt, ...)
211 va_list ap;
213 fprintf(stderr, "qerror: bad call in function '%s':\n", qerr->func);
214 fprintf(stderr, "qerror: -> ");
216 va_start(ap, fmt);
217 vfprintf(stderr, fmt, ap);
218 va_end(ap);
220 fprintf(stderr, "\nqerror: call at %s:%d\n", qerr->file, qerr->linenr);
221 abort();
224 static void qerror_set_data(QError *qerr, const char *fmt, va_list *va)
226 QObject *obj;
228 obj = qobject_from_jsonv(fmt, va);
229 if (!obj) {
230 qerror_abort(qerr, "invalid format '%s'", fmt);
232 if (qobject_type(obj) != QTYPE_QDICT) {
233 qerror_abort(qerr, "error format is not a QDict '%s'", fmt);
236 qerr->error = qobject_to_qdict(obj);
238 obj = qdict_get(qerr->error, "class");
239 if (!obj) {
240 qerror_abort(qerr, "missing 'class' key in '%s'", fmt);
242 if (qobject_type(obj) != QTYPE_QSTRING) {
243 qerror_abort(qerr, "'class' key value should be a QString");
246 obj = qdict_get(qerr->error, "data");
247 if (!obj) {
248 qerror_abort(qerr, "missing 'data' key in '%s'", fmt);
250 if (qobject_type(obj) != QTYPE_QDICT) {
251 qerror_abort(qerr, "'data' key value should be a QDICT");
255 static void qerror_set_desc(QError *qerr, const char *fmt)
257 int i;
259 // FIXME: inefficient loop
261 for (i = 0; qerror_table[i].error_fmt; i++) {
262 if (strcmp(qerror_table[i].error_fmt, fmt) == 0) {
263 qerr->entry = &qerror_table[i];
264 return;
268 qerror_abort(qerr, "error format '%s' not found", fmt);
272 * qerror_from_info(): Create a new QError from error information
274 * The information consists of:
276 * - file the file name of where the error occurred
277 * - linenr the line number of where the error occurred
278 * - func the function name of where the error occurred
279 * - fmt JSON printf-like dictionary, there must exist keys 'class' and
280 * 'data'
281 * - va va_list of all arguments specified by fmt
283 * Return strong reference.
285 QError *qerror_from_info(const char *file, int linenr, const char *func,
286 const char *fmt, va_list *va)
288 QError *qerr;
290 qerr = qerror_new();
291 loc_save(&qerr->loc);
292 qerr->linenr = linenr;
293 qerr->file = file;
294 qerr->func = func;
296 if (!fmt) {
297 qerror_abort(qerr, "QDict not specified");
300 qerror_set_data(qerr, fmt, va);
301 qerror_set_desc(qerr, fmt);
303 return qerr;
306 static void parse_error(const QError *qerror, int c)
308 qerror_abort(qerror, "expected '%c' in '%s'", c, qerror->entry->desc);
311 static const char *append_field(QString *outstr, const QError *qerror,
312 const char *start)
314 QObject *obj;
315 QDict *qdict;
316 QString *key_qs;
317 const char *end, *key;
319 if (*start != '%')
320 parse_error(qerror, '%');
321 start++;
322 if (*start != '(')
323 parse_error(qerror, '(');
324 start++;
326 end = strchr(start, ')');
327 if (!end)
328 parse_error(qerror, ')');
330 key_qs = qstring_from_substr(start, 0, end - start - 1);
331 key = qstring_get_str(key_qs);
333 qdict = qobject_to_qdict(qdict_get(qerror->error, "data"));
334 obj = qdict_get(qdict, key);
335 if (!obj) {
336 qerror_abort(qerror, "key '%s' not found in QDict", key);
339 switch (qobject_type(obj)) {
340 case QTYPE_QSTRING:
341 qstring_append(outstr, qdict_get_str(qdict, key));
342 break;
343 case QTYPE_QINT:
344 qstring_append_int(outstr, qdict_get_int(qdict, key));
345 break;
346 default:
347 qerror_abort(qerror, "invalid type '%c'", qobject_type(obj));
350 QDECREF(key_qs);
351 return ++end;
355 * qerror_human(): Format QError data into human-readable string.
357 * Formats according to member 'desc' of the specified QError object.
359 QString *qerror_human(const QError *qerror)
361 const char *p;
362 QString *qstring;
364 assert(qerror->entry != NULL);
366 qstring = qstring_new();
368 for (p = qerror->entry->desc; *p != '\0';) {
369 if (*p != '%') {
370 qstring_append_chr(qstring, *p++);
371 } else if (*(p + 1) == '%') {
372 qstring_append_chr(qstring, '%');
373 p += 2;
374 } else {
375 p = append_field(qstring, qerror, p);
379 return qstring;
383 * qerror_print(): Print QError data
385 * This function will print the member 'desc' of the specified QError object,
386 * it uses error_report() for this, so that the output is routed to the right
387 * place (ie. stderr or Monitor's device).
389 void qerror_print(QError *qerror)
391 QString *qstring = qerror_human(qerror);
392 loc_push_restore(&qerror->loc);
393 error_report("%s", qstring_get_str(qstring));
394 loc_pop(&qerror->loc);
395 QDECREF(qstring);
398 void qerror_report_internal(const char *file, int linenr, const char *func,
399 const char *fmt, ...)
401 va_list va;
402 QError *qerror;
404 va_start(va, fmt);
405 qerror = qerror_from_info(file, linenr, func, fmt, &va);
406 va_end(va);
408 if (monitor_cur_is_qmp()) {
409 monitor_set_error(cur_mon, qerror);
410 } else {
411 qerror_print(qerror);
412 QDECREF(qerror);
417 * qobject_to_qerror(): Convert a QObject into a QError
419 QError *qobject_to_qerror(const QObject *obj)
421 if (qobject_type(obj) != QTYPE_QERROR) {
422 return NULL;
425 return container_of(obj, QError, base);
429 * qerror_destroy_obj(): Free all memory allocated by a QError
431 static void qerror_destroy_obj(QObject *obj)
433 QError *qerr;
435 assert(obj != NULL);
436 qerr = qobject_to_qerror(obj);
438 QDECREF(qerr->error);
439 qemu_free(qerr);