QError: new class for device encrypted errors
[qemu/aliguori-queue.git] / qerror.c
blobd90529cd4918c1564112cd5e2f6d27554ea5cb81
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.
12 #include "qjson.h"
13 #include "qerror.h"
14 #include "qstring.h"
15 #include "sysemu.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 static const QErrorStringTable qerror_table[] = {
44 .error_fmt = QERR_COMMAND_NOT_FOUND,
45 .desc = "The command %(name) has not been found",
48 .error_fmt = QERR_DEVICE_ENCRYPTED,
49 .desc = "The %(device) is encrypted",
52 .error_fmt = QERR_DEVICE_NOT_FOUND,
53 .desc = "The %(device) device has not been found",
56 .error_fmt = QERR_DEVICE_NOT_ACTIVE,
57 .desc = "The %(device) device has not been activated by the guest",
60 .error_fmt = QERR_INVALID_PARAMETER_TYPE,
61 .desc = "Invalid parameter type, expected: %(expected)",
64 .error_fmt = QERR_INVALID_PASSWORD,
65 .desc = "The entered password is invalid",
68 .error_fmt = QERR_KVM_MISSING_CAP,
69 .desc = "Using KVM without %(capability), %(feature) unavailable",
72 .error_fmt = QERR_MISSING_PARAMETER,
73 .desc = "Parameter %(name) is missing",
76 .error_fmt = QERR_QMP_BAD_INPUT_OBJECT,
77 .desc = "Bad QMP input object",
80 .error_fmt = QERR_JSON_PARSING,
81 .desc = "Invalid JSON synaxt",
84 .error_fmt = QERR_UNDEFINED_ERROR,
85 .desc = "An undefined error has ocurred",
90 /**
91 * qerror_new(): Create a new QError
93 * Return strong reference.
95 QError *qerror_new(void)
97 QError *qerr;
99 qerr = qemu_mallocz(sizeof(*qerr));
100 QOBJECT_INIT(qerr, &qerror_type);
102 return qerr;
105 static void qerror_abort(const QError *qerr, const char *fmt, ...)
107 va_list ap;
109 fprintf(stderr, "qerror: bad call in function '%s':\n", qerr->func);
110 fprintf(stderr, "qerror: -> ");
112 va_start(ap, fmt);
113 vfprintf(stderr, fmt, ap);
114 va_end(ap);
116 fprintf(stderr, "\nqerror: call at %s:%d\n", qerr->file, qerr->linenr);
117 abort();
120 static void qerror_set_data(QError *qerr, const char *fmt, va_list *va)
122 QObject *obj;
124 obj = qobject_from_jsonv(fmt, va);
125 if (!obj) {
126 qerror_abort(qerr, "invalid format '%s'", fmt);
128 if (qobject_type(obj) != QTYPE_QDICT) {
129 qerror_abort(qerr, "error format is not a QDict '%s'", fmt);
132 qerr->error = qobject_to_qdict(obj);
134 obj = qdict_get(qerr->error, "class");
135 if (!obj) {
136 qerror_abort(qerr, "missing 'class' key in '%s'", fmt);
138 if (qobject_type(obj) != QTYPE_QSTRING) {
139 qerror_abort(qerr, "'class' key value should be a QString");
142 obj = qdict_get(qerr->error, "data");
143 if (!obj) {
144 qerror_abort(qerr, "missing 'data' key in '%s'", fmt);
146 if (qobject_type(obj) != QTYPE_QDICT) {
147 qerror_abort(qerr, "'data' key value should be a QDICT");
151 static void qerror_set_desc(QError *qerr, const char *fmt)
153 int i;
155 // FIXME: inefficient loop
157 for (i = 0; qerror_table[i].error_fmt; i++) {
158 if (strcmp(qerror_table[i].error_fmt, fmt) == 0) {
159 qerr->entry = &qerror_table[i];
160 return;
164 qerror_abort(qerr, "error format '%s' not found", fmt);
168 * qerror_from_info(): Create a new QError from error information
170 * The information consists of:
172 * - file the file name of where the error occurred
173 * - linenr the line number of where the error occurred
174 * - func the function name of where the error occurred
175 * - fmt JSON printf-like dictionary, there must exist keys 'class' and
176 * 'data'
177 * - va va_list of all arguments specified by fmt
179 * Return strong reference.
181 QError *qerror_from_info(const char *file, int linenr, const char *func,
182 const char *fmt, va_list *va)
184 QError *qerr;
186 qerr = qerror_new();
187 qerr->linenr = linenr;
188 qerr->file = file;
189 qerr->func = func;
191 if (!fmt) {
192 qerror_abort(qerr, "QDict not specified");
195 qerror_set_data(qerr, fmt, va);
196 qerror_set_desc(qerr, fmt);
198 return qerr;
201 static void parse_error(const QError *qerror, int c)
203 qerror_abort(qerror, "expected '%c' in '%s'", c, qerror->entry->desc);
206 static const char *append_field(QString *outstr, const QError *qerror,
207 const char *start)
209 QObject *obj;
210 QDict *qdict;
211 QString *key_qs;
212 const char *end, *key;
214 if (*start != '%')
215 parse_error(qerror, '%');
216 start++;
217 if (*start != '(')
218 parse_error(qerror, '(');
219 start++;
221 end = strchr(start, ')');
222 if (!end)
223 parse_error(qerror, ')');
225 key_qs = qstring_from_substr(start, 0, end - start - 1);
226 key = qstring_get_str(key_qs);
228 qdict = qobject_to_qdict(qdict_get(qerror->error, "data"));
229 obj = qdict_get(qdict, key);
230 if (!obj) {
231 qerror_abort(qerror, "key '%s' not found in QDict", key);
234 switch (qobject_type(obj)) {
235 case QTYPE_QSTRING:
236 qstring_append(outstr, qdict_get_str(qdict, key));
237 break;
238 case QTYPE_QINT:
239 qstring_append_int(outstr, qdict_get_int(qdict, key));
240 break;
241 default:
242 qerror_abort(qerror, "invalid type '%c'", qobject_type(obj));
245 QDECREF(key_qs);
246 return ++end;
250 * qerror_print(): Print QError data
252 * This function will print the member 'desc' of the specified QError object,
253 * it uses qemu_error() for this, so that the output is routed to the right
254 * place (ie. stderr or Monitor's device).
256 void qerror_print(const QError *qerror)
258 const char *p;
259 QString *qstring;
261 assert(qerror->entry != NULL);
263 qstring = qstring_new();
265 for (p = qerror->entry->desc; *p != '\0';) {
266 if (*p != '%') {
267 qstring_append_chr(qstring, *p++);
268 } else if (*(p + 1) == '%') {
269 qstring_append_chr(qstring, '%');
270 p += 2;
271 } else {
272 p = append_field(qstring, qerror, p);
276 qemu_error("%s\n", qstring_get_str(qstring));
277 QDECREF(qstring);
281 * qobject_to_qerror(): Convert a QObject into a QError
283 QError *qobject_to_qerror(const QObject *obj)
285 if (qobject_type(obj) != QTYPE_QERROR) {
286 return NULL;
289 return container_of(obj, QError, base);
293 * qerror_destroy_obj(): Free all memory allocated by a QError
295 static void qerror_destroy_obj(QObject *obj)
297 QError *qerr;
299 assert(obj != NULL);
300 qerr = qobject_to_qerror(obj);
302 QDECREF(qerr->error);
303 qemu_free(qerr);