]> git.proxmox.com Git - mirror_qemu.git/blame - qerror.c
qcow2: implement bdrv_invalidate_cache (v2)
[mirror_qemu.git] / qerror.c
CommitLineData
9f9daf9a 1/*
41836a9f 2 * QError Module
9f9daf9a
LC
3 *
4 * Copyright (C) 2009 Red Hat Inc.
5 *
6 * Authors:
7 * Luiz Capitulino <lcapitulino@redhat.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 */
0167f772
MA
12
13#include "monitor.h"
9f9daf9a
LC
14#include "qjson.h"
15#include "qerror.h"
9f9daf9a
LC
16#include "qemu-common.h"
17
18static void qerror_destroy_obj(QObject *obj);
19
20static const QType qerror_type = {
21 .code = QTYPE_QERROR,
22 .destroy = qerror_destroy_obj,
23};
24
25/**
26 * The 'desc' parameter is a printf-like string, the format of the format
27 * string is:
28 *
29 * %(KEY)
30 *
31 * Where KEY is a QDict key, which has to be passed to qerror_from_info().
32 *
33 * Example:
34 *
35 * "foo error on device: %(device) slot: %(slot_nr)"
36 *
37 * A single percent sign can be printed if followed by a second one,
38 * for example:
39 *
40 * "running out of foo: %(foo)%%"
9d494c4b
MA
41 *
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.
9f9daf9a 45 */
d05ac8fa 46static const QErrorStringTable qerror_table[] = {
56e9f563
MA
47 {
48 .error_fmt = QERR_BAD_BUS_FOR_DEVICE,
49 .desc = "Device '%(device)' can't go on a %(bad_bus_type) bus",
50 },
7bbd8237
MA
51 {
52 .error_fmt = QERR_BUS_NOT_FOUND,
53 .desc = "Bus '%(bus)' not found",
54 },
8eae73b5
MA
55 {
56 .error_fmt = QERR_BUS_NO_HOTPLUG,
57 .desc = "Bus '%(bus)' does not support hotplugging",
58 },
4b9d4683 59 {
e16a1812
MA
60 .error_fmt = QERR_COMMAND_NOT_FOUND,
61 .desc = "The command %(name) has not been found",
4b9d4683 62 },
0df37c41
LC
63 {
64 .error_fmt = QERR_DEVICE_ENCRYPTED,
fc5469d8 65 .desc = "Device '%(device)' is encrypted",
0df37c41 66 },
4d9a1a15
MA
67 {
68 .error_fmt = QERR_DEVICE_INIT_FAILED,
69 .desc = "Device '%(device)' could not be initialized",
70 },
5124eb59
MA
71 {
72 .error_fmt = QERR_DEVICE_IN_USE,
73 .desc = "Device '%(device)' is in use",
74 },
38e0735e
AL
75 {
76 .error_fmt = QERR_DEVICE_FEATURE_BLOCKS_MIGRATION,
77 .desc = "Migration is disabled when using feature '%(feature)' in device '%(device)'",
78 },
b0868380
MA
79 {
80 .error_fmt = QERR_DEVICE_LOCKED,
fc5469d8 81 .desc = "Device '%(device)' is locked",
b0868380 82 },
1ae78718
MA
83 {
84 .error_fmt = QERR_DEVICE_MULTIPLE_BUSSES,
85 .desc = "Device '%(device)' has multiple child busses",
86 },
e16a1812
MA
87 {
88 .error_fmt = QERR_DEVICE_NOT_ACTIVE,
8754c81e 89 .desc = "Device '%(device)' has not been activated",
e16a1812 90 },
9d494c4b
MA
91 {
92 .error_fmt = QERR_DEVICE_NOT_ENCRYPTED,
93 .desc = "Device '%(device)' is not encrypted",
94 },
357b6156
LC
95 {
96 .error_fmt = QERR_DEVICE_NOT_FOUND,
fc5469d8 97 .desc = "Device '%(device)' not found",
357b6156 98 },
5cfe0264
MA
99 {
100 .error_fmt = QERR_DEVICE_NOT_REMOVABLE,
fc5469d8 101 .desc = "Device '%(device)' is not removable",
5cfe0264 102 },
07574baf
MA
103 {
104 .error_fmt = QERR_DEVICE_NO_BUS,
105 .desc = "Device '%(device)' has no child bus",
106 },
180c22e1
GH
107 {
108 .error_fmt = QERR_DEVICE_NO_HOTPLUG,
109 .desc = "Device '%(device)' does not support hotplugging",
110 },
7bc84017
MA
111 {
112 .error_fmt = QERR_DUPLICATE_ID,
113 .desc = "Duplicate ID '%(id)' for %(object)",
114 },
c7c338c4
MA
115 {
116 .error_fmt = QERR_FD_NOT_FOUND,
fc5469d8 117 .desc = "File descriptor named '%(name)' not found",
c7c338c4 118 },
41471a23
MA
119 {
120 .error_fmt = QERR_FD_NOT_SUPPLIED,
121 .desc = "No file descriptor supplied via SCM_RIGHTS",
122 },
bf826328
LC
123 {
124 .error_fmt = QERR_FEATURE_DISABLED,
125 .desc = "The feature '%(name)' is not enabled",
126 },
17901e75
MA
127 {
128 .error_fmt = QERR_INVALID_BLOCK_FORMAT,
fc5469d8 129 .desc = "Invalid block format '%(name)'",
17901e75 130 },
7a046f5f
MA
131 {
132 .error_fmt = QERR_INVALID_PARAMETER,
fc5469d8 133 .desc = "Invalid parameter '%(name)'",
7a046f5f 134 },
055f6122 135 {
e16a1812
MA
136 .error_fmt = QERR_INVALID_PARAMETER_TYPE,
137 .desc = "Invalid parameter type, expected: %(expected)",
055f6122 138 },
985a3e52
MA
139 {
140 .error_fmt = QERR_INVALID_PARAMETER_VALUE,
141 .desc = "Parameter '%(name)' expects %(expected)",
142 },
4b9d4683 143 {
e16a1812 144 .error_fmt = QERR_INVALID_PASSWORD,
fc5469d8 145 .desc = "Password incorrect",
4b9d4683 146 },
f6d855c5 147 {
e16a1812
MA
148 .error_fmt = QERR_JSON_PARSING,
149 .desc = "Invalid JSON syntax",
f6d855c5 150 },
ac32c780
MR
151 {
152 .error_fmt = QERR_JSON_PARSE_ERROR,
153 .desc = "JSON parse error, %(message)",
154
155 },
82a60711
LC
156 {
157 .error_fmt = QERR_KVM_MISSING_CAP,
158 .desc = "Using KVM without %(capability), %(feature) unavailable",
159 },
8e84865e
AS
160 {
161 .error_fmt = QERR_MIGRATION_EXPECTED,
162 .desc = "An incoming migration is expected before this command can be executed",
163 },
4b9d4683
LC
164 {
165 .error_fmt = QERR_MISSING_PARAMETER,
fc5469d8
MA
166 .desc = "Parameter '%(name)' is missing",
167 },
fab5767f
MA
168 {
169 .error_fmt = QERR_NO_BUS_FOR_DEVICE,
170 .desc = "No '%(bus)' bus found for device '%(device)'",
171 },
fc5469d8
MA
172 {
173 .error_fmt = QERR_OPEN_FILE_FAILED,
174 .desc = "Could not open '%(filename)'",
4b9d4683 175 },
c58a35f8
MA
176 {
177 .error_fmt = QERR_PROPERTY_NOT_FOUND,
178 .desc = "Property '%(device).%(property)' not found",
179 },
06b4a703
MA
180 {
181 .error_fmt = QERR_PROPERTY_VALUE_BAD,
182 .desc = "Property '%(device).%(property)' doesn't take value '%(value)'",
183 },
9c5eff95
MA
184 {
185 .error_fmt = QERR_PROPERTY_VALUE_IN_USE,
186 .desc = "Property '%(device).%(property)' can't take value '%(value)', it's in use",
187 },
84745d68
MA
188 {
189 .error_fmt = QERR_PROPERTY_VALUE_NOT_FOUND,
190 .desc = "Property '%(device).%(property)' can't find value '%(value)'",
191 },
4b9d4683
LC
192 {
193 .error_fmt = QERR_QMP_BAD_INPUT_OBJECT,
abaf2f52 194 .desc = "Expected '%(expected)' in QMP input",
4b9d4683 195 },
7dfb6123
LC
196 {
197 .error_fmt = QERR_QMP_BAD_INPUT_OBJECT_MEMBER,
198 .desc = "QMP input object member '%(member)' expects '%(expected)'",
199 },
60d76d7b
LC
200 {
201 .error_fmt = QERR_QMP_EXTRA_MEMBER,
202 .desc = "QMP input object member '%(member)' is unexpected",
203 },
6667b23f
LC
204 {
205 .error_fmt = QERR_RESET_REQUIRED,
206 .desc = "Resetting the Virtual Machine is required",
207 },
7a84cb23
MA
208 {
209 .error_fmt = QERR_SET_PASSWD_FAILED,
210 .desc = "Could not set password",
211 },
13661089
DB
212 {
213 .error_fmt = QERR_ADD_CLIENT_FAILED,
214 .desc = "Could not add client",
215 },
a488be27
MA
216 {
217 .error_fmt = QERR_TOO_MANY_FILES,
218 .desc = "Too many open files",
219 },
4b9d4683 220 {
e16a1812
MA
221 .error_fmt = QERR_UNDEFINED_ERROR,
222 .desc = "An undefined error has ocurred",
4b9d4683 223 },
4c5a1e4d
LJ
224 {
225 .error_fmt = QERR_UNSUPPORTED,
226 .desc = "this feature or command is not currently supported",
227 },
f54e3641
KW
228 {
229 .error_fmt = QERR_UNKNOWN_BLOCK_FORMAT_FEATURE,
230 .desc = "'%(device)' uses a %(format) feature which is not "
231 "supported by this qemu version: %(feature)",
232 },
a6906e31
MA
233 {
234 .error_fmt = QERR_VNC_SERVER_FAILED,
235 .desc = "Could not start VNC server on %(target)",
236 },
e3d4d252
MR
237 {
238 .error_fmt = QERR_QGA_LOGGING_FAILED,
239 .desc = "Guest agent failed to log non-optional log statement",
240 },
241 {
242 .error_fmt = QERR_QGA_COMMAND_FAILED,
243 .desc = "Guest agent command failed, error was '%(message)'",
244 },
9f9daf9a
LC
245 {}
246};
247
248/**
249 * qerror_new(): Create a new QError
250 *
251 * Return strong reference.
252 */
253QError *qerror_new(void)
254{
255 QError *qerr;
256
7267c094 257 qerr = g_malloc0(sizeof(*qerr));
9f9daf9a
LC
258 QOBJECT_INIT(qerr, &qerror_type);
259
260 return qerr;
261}
262
8b7968f7
SW
263static void GCC_FMT_ATTR(2, 3) qerror_abort(const QError *qerr,
264 const char *fmt, ...)
9f9daf9a
LC
265{
266 va_list ap;
267
268 fprintf(stderr, "qerror: bad call in function '%s':\n", qerr->func);
269 fprintf(stderr, "qerror: -> ");
270
271 va_start(ap, fmt);
272 vfprintf(stderr, fmt, ap);
273 va_end(ap);
274
275 fprintf(stderr, "\nqerror: call at %s:%d\n", qerr->file, qerr->linenr);
276 abort();
277}
278
8b7968f7
SW
279static void GCC_FMT_ATTR(2, 0) qerror_set_data(QError *qerr,
280 const char *fmt, va_list *va)
9f9daf9a
LC
281{
282 QObject *obj;
283
284 obj = qobject_from_jsonv(fmt, va);
285 if (!obj) {
286 qerror_abort(qerr, "invalid format '%s'", fmt);
287 }
288 if (qobject_type(obj) != QTYPE_QDICT) {
289 qerror_abort(qerr, "error format is not a QDict '%s'", fmt);
290 }
291
292 qerr->error = qobject_to_qdict(obj);
293
294 obj = qdict_get(qerr->error, "class");
295 if (!obj) {
296 qerror_abort(qerr, "missing 'class' key in '%s'", fmt);
297 }
298 if (qobject_type(obj) != QTYPE_QSTRING) {
299 qerror_abort(qerr, "'class' key value should be a QString");
300 }
301
302 obj = qdict_get(qerr->error, "data");
303 if (!obj) {
304 qerror_abort(qerr, "missing 'data' key in '%s'", fmt);
305 }
306 if (qobject_type(obj) != QTYPE_QDICT) {
307 qerror_abort(qerr, "'data' key value should be a QDICT");
308 }
309}
310
311static void qerror_set_desc(QError *qerr, const char *fmt)
312{
313 int i;
314
315 // FIXME: inefficient loop
316
317 for (i = 0; qerror_table[i].error_fmt; i++) {
318 if (strcmp(qerror_table[i].error_fmt, fmt) == 0) {
319 qerr->entry = &qerror_table[i];
320 return;
321 }
322 }
323
324 qerror_abort(qerr, "error format '%s' not found", fmt);
325}
326
327/**
328 * qerror_from_info(): Create a new QError from error information
329 *
330 * The information consists of:
331 *
332 * - file the file name of where the error occurred
333 * - linenr the line number of where the error occurred
334 * - func the function name of where the error occurred
335 * - fmt JSON printf-like dictionary, there must exist keys 'class' and
336 * 'data'
337 * - va va_list of all arguments specified by fmt
338 *
339 * Return strong reference.
340 */
341QError *qerror_from_info(const char *file, int linenr, const char *func,
342 const char *fmt, va_list *va)
343{
344 QError *qerr;
345
346 qerr = qerror_new();
827b0813 347 loc_save(&qerr->loc);
9f9daf9a
LC
348 qerr->linenr = linenr;
349 qerr->file = file;
350 qerr->func = func;
351
352 if (!fmt) {
353 qerror_abort(qerr, "QDict not specified");
354 }
355
356 qerror_set_data(qerr, fmt, va);
357 qerror_set_desc(qerr, fmt);
358
359 return qerr;
360}
361
a12eeaaa 362static void parse_error(const QErrorStringTable *entry, int c)
9f9daf9a 363{
a12eeaaa
LC
364 fprintf(stderr, "expected '%c' in '%s'", c, entry->desc);
365 abort();
9f9daf9a
LC
366}
367
a12eeaaa
LC
368static const char *append_field(QDict *error, QString *outstr,
369 const QErrorStringTable *entry,
9f9daf9a
LC
370 const char *start)
371{
372 QObject *obj;
373 QDict *qdict;
374 QString *key_qs;
375 const char *end, *key;
376
377 if (*start != '%')
a12eeaaa 378 parse_error(entry, '%');
9f9daf9a
LC
379 start++;
380 if (*start != '(')
a12eeaaa 381 parse_error(entry, '(');
9f9daf9a
LC
382 start++;
383
384 end = strchr(start, ')');
385 if (!end)
a12eeaaa 386 parse_error(entry, ')');
9f9daf9a
LC
387
388 key_qs = qstring_from_substr(start, 0, end - start - 1);
389 key = qstring_get_str(key_qs);
390
a12eeaaa 391 qdict = qobject_to_qdict(qdict_get(error, "data"));
9f9daf9a
LC
392 obj = qdict_get(qdict, key);
393 if (!obj) {
a12eeaaa 394 abort();
9f9daf9a
LC
395 }
396
397 switch (qobject_type(obj)) {
398 case QTYPE_QSTRING:
399 qstring_append(outstr, qdict_get_str(qdict, key));
400 break;
401 case QTYPE_QINT:
402 qstring_append_int(outstr, qdict_get_int(qdict, key));
403 break;
404 default:
a12eeaaa 405 abort();
9f9daf9a
LC
406 }
407
408 QDECREF(key_qs);
409 return ++end;
410}
411
a12eeaaa
LC
412static QString *qerror_format_desc(QDict *error,
413 const QErrorStringTable *entry)
9f9daf9a 414{
9f9daf9a 415 QString *qstring;
a12eeaaa 416 const char *p;
9f9daf9a 417
a12eeaaa 418 assert(entry != NULL);
9f9daf9a
LC
419
420 qstring = qstring_new();
421
a12eeaaa 422 for (p = entry->desc; *p != '\0';) {
9f9daf9a
LC
423 if (*p != '%') {
424 qstring_append_chr(qstring, *p++);
425 } else if (*(p + 1) == '%') {
426 qstring_append_chr(qstring, '%');
427 p += 2;
428 } else {
a12eeaaa 429 p = append_field(error, qstring, entry, p);
9f9daf9a
LC
430 }
431 }
432
77e595e7
MA
433 return qstring;
434}
435
87c2f591
LC
436QString *qerror_format(const char *fmt, QDict *error)
437{
438 const QErrorStringTable *entry = NULL;
439 int i;
440
441 for (i = 0; qerror_table[i].error_fmt; i++) {
442 if (strcmp(qerror_table[i].error_fmt, fmt) == 0) {
443 entry = &qerror_table[i];
444 break;
445 }
446 }
447
448 return qerror_format_desc(error, entry);
449}
450
a12eeaaa
LC
451/**
452 * qerror_human(): Format QError data into human-readable string.
453 */
454QString *qerror_human(const QError *qerror)
455{
456 return qerror_format_desc(qerror->error, qerror->entry);
457}
458
77e595e7
MA
459/**
460 * qerror_print(): Print QError data
461 *
462 * This function will print the member 'desc' of the specified QError object,
1ecda02b 463 * it uses error_report() for this, so that the output is routed to the right
77e595e7
MA
464 * place (ie. stderr or Monitor's device).
465 */
827b0813 466void qerror_print(QError *qerror)
77e595e7
MA
467{
468 QString *qstring = qerror_human(qerror);
827b0813 469 loc_push_restore(&qerror->loc);
1ecda02b 470 error_report("%s", qstring_get_str(qstring));
827b0813 471 loc_pop(&qerror->loc);
9f9daf9a
LC
472 QDECREF(qstring);
473}
474
0167f772
MA
475void qerror_report_internal(const char *file, int linenr, const char *func,
476 const char *fmt, ...)
477{
478 va_list va;
479 QError *qerror;
480
481 va_start(va, fmt);
482 qerror = qerror_from_info(file, linenr, func, fmt, &va);
483 va_end(va);
484
485 if (monitor_cur_is_qmp()) {
486 monitor_set_error(cur_mon, qerror);
487 } else {
488 qerror_print(qerror);
489 QDECREF(qerror);
490 }
491}
492
2a82d936
AL
493/* Evil... */
494struct Error
495{
496 QDict *obj;
497 const char *fmt;
498 char *msg;
499};
500
501void qerror_report_err(Error *err)
502{
503 QError *qerr;
504 int i;
505
506 qerr = qerror_new();
507 loc_save(&qerr->loc);
508 QINCREF(err->obj);
509 qerr->error = err->obj;
510
511 for (i = 0; qerror_table[i].error_fmt; i++) {
512 if (strcmp(qerror_table[i].error_fmt, err->fmt) == 0) {
513 qerr->entry = &qerror_table[i];
514 break;
515 }
516 }
517
518 if (monitor_cur_is_qmp()) {
519 monitor_set_error(cur_mon, qerr);
520 } else {
521 qerror_print(qerr);
522 QDECREF(qerr);
523 }
524}
525
9f9daf9a
LC
526/**
527 * qobject_to_qerror(): Convert a QObject into a QError
528 */
529QError *qobject_to_qerror(const QObject *obj)
530{
531 if (qobject_type(obj) != QTYPE_QERROR) {
532 return NULL;
533 }
534
535 return container_of(obj, QError, base);
536}
537
538/**
539 * qerror_destroy_obj(): Free all memory allocated by a QError
540 */
541static void qerror_destroy_obj(QObject *obj)
542{
543 QError *qerr;
544
545 assert(obj != NULL);
546 qerr = qobject_to_qerror(obj);
547
548 QDECREF(qerr->error);
7267c094 549 g_free(qerr);
9f9daf9a 550}