Update both files for disk io limits.
[qemu-dev-zwu.git] / qerror.c
blobd7fcd93cad2658ce3c87977afef76f887e7bee2f
1 /*
2 * QError Module
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",
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_DEVICE_NO_HOTPLUG,
105 .desc = "Device '%(device)' does not support hotplugging",
108 .error_fmt = QERR_DUPLICATE_ID,
109 .desc = "Duplicate ID '%(id)' for %(object)",
112 .error_fmt = QERR_FD_NOT_FOUND,
113 .desc = "File descriptor named '%(name)' not found",
116 .error_fmt = QERR_FD_NOT_SUPPLIED,
117 .desc = "No file descriptor supplied via SCM_RIGHTS",
120 .error_fmt = QERR_INVALID_BLOCK_FORMAT,
121 .desc = "Invalid block format '%(name)'",
124 .error_fmt = QERR_INVALID_PARAMETER,
125 .desc = "Invalid parameter '%(name)'",
128 .error_fmt = QERR_INVALID_PARAMETER_TYPE,
129 .desc = "Invalid parameter type, expected: %(expected)",
132 .error_fmt = QERR_INVALID_PARAMETER_VALUE,
133 .desc = "Parameter '%(name)' expects %(expected)",
136 .error_fmt = QERR_INVALID_PASSWORD,
137 .desc = "Password incorrect",
140 .error_fmt = QERR_JSON_PARSING,
141 .desc = "Invalid JSON syntax",
144 .error_fmt = QERR_KVM_MISSING_CAP,
145 .desc = "Using KVM without %(capability), %(feature) unavailable",
148 .error_fmt = QERR_MIGRATION_EXPECTED,
149 .desc = "An incoming migration is expected before this command can be executed",
152 .error_fmt = QERR_MISSING_PARAMETER,
153 .desc = "Parameter '%(name)' is missing",
156 .error_fmt = QERR_NO_BUS_FOR_DEVICE,
157 .desc = "No '%(bus)' bus found for device '%(device)'",
160 .error_fmt = QERR_OPEN_FILE_FAILED,
161 .desc = "Could not open '%(filename)'",
164 .error_fmt = QERR_PROPERTY_NOT_FOUND,
165 .desc = "Property '%(device).%(property)' not found",
168 .error_fmt = QERR_PROPERTY_VALUE_BAD,
169 .desc = "Property '%(device).%(property)' doesn't take value '%(value)'",
172 .error_fmt = QERR_PROPERTY_VALUE_IN_USE,
173 .desc = "Property '%(device).%(property)' can't take value '%(value)', it's in use",
176 .error_fmt = QERR_PROPERTY_VALUE_NOT_FOUND,
177 .desc = "Property '%(device).%(property)' can't find value '%(value)'",
180 .error_fmt = QERR_QMP_BAD_INPUT_OBJECT,
181 .desc = "Expected '%(expected)' in QMP input",
184 .error_fmt = QERR_QMP_BAD_INPUT_OBJECT_MEMBER,
185 .desc = "QMP input object member '%(member)' expects '%(expected)'",
188 .error_fmt = QERR_QMP_EXTRA_MEMBER,
189 .desc = "QMP input object member '%(member)' is unexpected",
192 .error_fmt = QERR_SET_PASSWD_FAILED,
193 .desc = "Could not set password",
196 .error_fmt = QERR_TOO_MANY_FILES,
197 .desc = "Too many open files",
200 .error_fmt = QERR_UNDEFINED_ERROR,
201 .desc = "An undefined error has ocurred",
204 .error_fmt = QERR_UNSUPPORTED,
205 .desc = "this feature or command is not currently supported",
208 .error_fmt = QERR_UNKNOWN_BLOCK_FORMAT_FEATURE,
209 .desc = "'%(device)' uses a %(format) feature which is not "
210 "supported by this qemu version: %(feature)",
213 .error_fmt = QERR_VNC_SERVER_FAILED,
214 .desc = "Could not start VNC server on %(target)",
220 * qerror_new(): Create a new QError
222 * Return strong reference.
224 QError *qerror_new(void)
226 QError *qerr;
228 qerr = qemu_mallocz(sizeof(*qerr));
229 QOBJECT_INIT(qerr, &qerror_type);
231 return qerr;
234 static void GCC_FMT_ATTR(2, 3) qerror_abort(const QError *qerr,
235 const char *fmt, ...)
237 va_list ap;
239 fprintf(stderr, "qerror: bad call in function '%s':\n", qerr->func);
240 fprintf(stderr, "qerror: -> ");
242 va_start(ap, fmt);
243 vfprintf(stderr, fmt, ap);
244 va_end(ap);
246 fprintf(stderr, "\nqerror: call at %s:%d\n", qerr->file, qerr->linenr);
247 abort();
250 static void GCC_FMT_ATTR(2, 0) qerror_set_data(QError *qerr,
251 const char *fmt, va_list *va)
253 QObject *obj;
255 obj = qobject_from_jsonv(fmt, va);
256 if (!obj) {
257 qerror_abort(qerr, "invalid format '%s'", fmt);
259 if (qobject_type(obj) != QTYPE_QDICT) {
260 qerror_abort(qerr, "error format is not a QDict '%s'", fmt);
263 qerr->error = qobject_to_qdict(obj);
265 obj = qdict_get(qerr->error, "class");
266 if (!obj) {
267 qerror_abort(qerr, "missing 'class' key in '%s'", fmt);
269 if (qobject_type(obj) != QTYPE_QSTRING) {
270 qerror_abort(qerr, "'class' key value should be a QString");
273 obj = qdict_get(qerr->error, "data");
274 if (!obj) {
275 qerror_abort(qerr, "missing 'data' key in '%s'", fmt);
277 if (qobject_type(obj) != QTYPE_QDICT) {
278 qerror_abort(qerr, "'data' key value should be a QDICT");
282 static void qerror_set_desc(QError *qerr, const char *fmt)
284 int i;
286 // FIXME: inefficient loop
288 for (i = 0; qerror_table[i].error_fmt; i++) {
289 if (strcmp(qerror_table[i].error_fmt, fmt) == 0) {
290 qerr->entry = &qerror_table[i];
291 return;
295 qerror_abort(qerr, "error format '%s' not found", fmt);
299 * qerror_from_info(): Create a new QError from error information
301 * The information consists of:
303 * - file the file name of where the error occurred
304 * - linenr the line number of where the error occurred
305 * - func the function name of where the error occurred
306 * - fmt JSON printf-like dictionary, there must exist keys 'class' and
307 * 'data'
308 * - va va_list of all arguments specified by fmt
310 * Return strong reference.
312 QError *qerror_from_info(const char *file, int linenr, const char *func,
313 const char *fmt, va_list *va)
315 QError *qerr;
317 qerr = qerror_new();
318 loc_save(&qerr->loc);
319 qerr->linenr = linenr;
320 qerr->file = file;
321 qerr->func = func;
323 if (!fmt) {
324 qerror_abort(qerr, "QDict not specified");
327 qerror_set_data(qerr, fmt, va);
328 qerror_set_desc(qerr, fmt);
330 return qerr;
333 static void parse_error(const QErrorStringTable *entry, int c)
335 fprintf(stderr, "expected '%c' in '%s'", c, entry->desc);
336 abort();
339 static const char *append_field(QDict *error, QString *outstr,
340 const QErrorStringTable *entry,
341 const char *start)
343 QObject *obj;
344 QDict *qdict;
345 QString *key_qs;
346 const char *end, *key;
348 if (*start != '%')
349 parse_error(entry, '%');
350 start++;
351 if (*start != '(')
352 parse_error(entry, '(');
353 start++;
355 end = strchr(start, ')');
356 if (!end)
357 parse_error(entry, ')');
359 key_qs = qstring_from_substr(start, 0, end - start - 1);
360 key = qstring_get_str(key_qs);
362 qdict = qobject_to_qdict(qdict_get(error, "data"));
363 obj = qdict_get(qdict, key);
364 if (!obj) {
365 abort();
368 switch (qobject_type(obj)) {
369 case QTYPE_QSTRING:
370 qstring_append(outstr, qdict_get_str(qdict, key));
371 break;
372 case QTYPE_QINT:
373 qstring_append_int(outstr, qdict_get_int(qdict, key));
374 break;
375 default:
376 abort();
379 QDECREF(key_qs);
380 return ++end;
383 static QString *qerror_format_desc(QDict *error,
384 const QErrorStringTable *entry)
386 QString *qstring;
387 const char *p;
389 assert(entry != NULL);
391 qstring = qstring_new();
393 for (p = entry->desc; *p != '\0';) {
394 if (*p != '%') {
395 qstring_append_chr(qstring, *p++);
396 } else if (*(p + 1) == '%') {
397 qstring_append_chr(qstring, '%');
398 p += 2;
399 } else {
400 p = append_field(error, qstring, entry, p);
404 return qstring;
407 QString *qerror_format(const char *fmt, QDict *error)
409 const QErrorStringTable *entry = NULL;
410 int i;
412 for (i = 0; qerror_table[i].error_fmt; i++) {
413 if (strcmp(qerror_table[i].error_fmt, fmt) == 0) {
414 entry = &qerror_table[i];
415 break;
419 return qerror_format_desc(error, entry);
423 * qerror_human(): Format QError data into human-readable string.
425 QString *qerror_human(const QError *qerror)
427 return qerror_format_desc(qerror->error, qerror->entry);
431 * qerror_print(): Print QError data
433 * This function will print the member 'desc' of the specified QError object,
434 * it uses error_report() for this, so that the output is routed to the right
435 * place (ie. stderr or Monitor's device).
437 void qerror_print(QError *qerror)
439 QString *qstring = qerror_human(qerror);
440 loc_push_restore(&qerror->loc);
441 error_report("%s", qstring_get_str(qstring));
442 loc_pop(&qerror->loc);
443 QDECREF(qstring);
446 void qerror_report_internal(const char *file, int linenr, const char *func,
447 const char *fmt, ...)
449 va_list va;
450 QError *qerror;
452 va_start(va, fmt);
453 qerror = qerror_from_info(file, linenr, func, fmt, &va);
454 va_end(va);
456 if (monitor_cur_is_qmp()) {
457 monitor_set_error(cur_mon, qerror);
458 } else {
459 qerror_print(qerror);
460 QDECREF(qerror);
465 * qobject_to_qerror(): Convert a QObject into a QError
467 QError *qobject_to_qerror(const QObject *obj)
469 if (qobject_type(obj) != QTYPE_QERROR) {
470 return NULL;
473 return container_of(obj, QError, base);
477 * qerror_destroy_obj(): Free all memory allocated by a QError
479 static void qerror_destroy_obj(QObject *obj)
481 QError *qerr;
483 assert(obj != NULL);
484 qerr = qobject_to_qerror(obj);
486 QDECREF(qerr->error);
487 qemu_free(qerr);