]> git.proxmox.com Git - qemu.git/blob - qerror.h
qerror: add proper ErrorClass value for QERR_ macros
[qemu.git] / qerror.h
1 /*
2 * QError Module
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 */
12 #ifndef QERROR_H
13 #define QERROR_H
14
15 #include "qdict.h"
16 #include "qstring.h"
17 #include "qemu-error.h"
18 #include "error.h"
19 #include "qapi-types.h"
20 #include <stdarg.h>
21
22 typedef struct QErrorStringTable {
23 ErrorClass err_class;
24 const char *error_fmt;
25 const char *desc;
26 } QErrorStringTable;
27
28 typedef struct QError {
29 QObject_HEAD;
30 QDict *error;
31 Location loc;
32 char *err_msg;
33 ErrorClass err_class;
34 } QError;
35
36 QString *qerror_human(const QError *qerror);
37 void qerror_report(ErrorClass err_class, const char *fmt, ...) GCC_FMT_ATTR(2, 3);
38 void qerror_report_err(Error *err);
39 void assert_no_error(Error *err);
40 char *qerror_format(const char *fmt, QDict *error);
41
42 /*
43 * QError class list
44 * Please keep the definitions in alphabetical order.
45 * Use scripts/check-qerror.sh to check.
46 */
47 #define QERR_ADD_CLIENT_FAILED \
48 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'AddClientFailed', 'data': {} }"
49
50 #define QERR_AMBIGUOUS_PATH \
51 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'AmbiguousPath', 'data': { 'path': %s } }"
52
53 #define QERR_BAD_BUS_FOR_DEVICE \
54 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'BadBusForDevice', 'data': { 'device': %s, 'bad_bus_type': %s } }"
55
56 #define QERR_BASE_NOT_FOUND \
57 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'BaseNotFound', 'data': { 'base': %s } }"
58
59 #define QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED \
60 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'BlockFormatFeatureNotSupported', 'data': { 'format': %s, 'name': %s, 'feature': %s } }"
61
62 #define QERR_BUFFER_OVERRUN \
63 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'BufferOverrun', 'data': {} }"
64
65 #define QERR_BUS_NO_HOTPLUG \
66 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'BusNoHotplug', 'data': { 'bus': %s } }"
67
68 #define QERR_BUS_NOT_FOUND \
69 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'BusNotFound', 'data': { 'bus': %s } }"
70
71 #define QERR_COMMAND_DISABLED \
72 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'CommandDisabled', 'data': { 'name': %s } }"
73
74 #define QERR_COMMAND_NOT_FOUND \
75 ERROR_CLASS_COMMAND_NOT_FOUND, "{ 'class': 'CommandNotFound', 'data': { 'name': %s } }"
76
77 #define QERR_DEVICE_ENCRYPTED \
78 ERROR_CLASS_DEVICE_ENCRYPTED, "{ 'class': 'DeviceEncrypted', 'data': { 'device': %s, 'filename': %s } }"
79
80 #define QERR_DEVICE_FEATURE_BLOCKS_MIGRATION \
81 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'DeviceFeatureBlocksMigration', 'data': { 'device': %s, 'feature': %s } }"
82
83 #define QERR_DEVICE_HAS_NO_MEDIUM \
84 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'DeviceHasNoMedium', 'data': { 'device': %s } }"
85
86 #define QERR_DEVICE_INIT_FAILED \
87 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'DeviceInitFailed', 'data': { 'device': %s } }"
88
89 #define QERR_DEVICE_IN_USE \
90 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'DeviceInUse', 'data': { 'device': %s } }"
91
92 #define QERR_DEVICE_IS_READ_ONLY \
93 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'DeviceIsReadOnly', 'data': { 'device': %s } }"
94
95 #define QERR_DEVICE_LOCKED \
96 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'DeviceLocked', 'data': { 'device': %s } }"
97
98 #define QERR_DEVICE_MULTIPLE_BUSSES \
99 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'DeviceMultipleBusses', 'data': { 'device': %s } }"
100
101 #define QERR_DEVICE_NO_BUS \
102 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'DeviceNoBus', 'data': { 'device': %s } }"
103
104 #define QERR_DEVICE_NO_HOTPLUG \
105 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'DeviceNoHotplug', 'data': { 'device': %s } }"
106
107 #define QERR_DEVICE_NOT_ACTIVE \
108 ERROR_CLASS_DEVICE_NOT_ACTIVE, "{ 'class': 'DeviceNotActive', 'data': { 'device': %s } }"
109
110 #define QERR_DEVICE_NOT_ENCRYPTED \
111 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'DeviceNotEncrypted', 'data': { 'device': %s } }"
112
113 #define QERR_DEVICE_NOT_FOUND \
114 ERROR_CLASS_DEVICE_NOT_FOUND, "{ 'class': 'DeviceNotFound', 'data': { 'device': %s } }"
115
116 #define QERR_DEVICE_NOT_REMOVABLE \
117 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'DeviceNotRemovable', 'data': { 'device': %s } }"
118
119 #define QERR_DUPLICATE_ID \
120 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'DuplicateId', 'data': { 'id': %s, 'object': %s } }"
121
122 #define QERR_FD_NOT_FOUND \
123 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'FdNotFound', 'data': { 'name': %s } }"
124
125 #define QERR_FD_NOT_SUPPLIED \
126 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'FdNotSupplied', 'data': {} }"
127
128 #define QERR_FEATURE_DISABLED \
129 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'FeatureDisabled', 'data': { 'name': %s } }"
130
131 #define QERR_INVALID_BLOCK_FORMAT \
132 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'InvalidBlockFormat', 'data': { 'name': %s } }"
133
134 #define QERR_INVALID_OPTION_GROUP \
135 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'InvalidOptionGroup', 'data': { 'group': %s } }"
136
137 #define QERR_INVALID_PARAMETER \
138 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'InvalidParameter', 'data': { 'name': %s } }"
139
140 #define QERR_INVALID_PARAMETER_COMBINATION \
141 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'InvalidParameterCombination', 'data': {} }"
142
143 #define QERR_INVALID_PARAMETER_TYPE \
144 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'InvalidParameterType', 'data': { 'name': %s,'expected': %s } }"
145
146 #define QERR_INVALID_PARAMETER_VALUE \
147 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'InvalidParameterValue', 'data': { 'name': %s, 'expected': %s } }"
148
149 #define QERR_INVALID_PASSWORD \
150 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'InvalidPassword', 'data': {} }"
151
152 #define QERR_IO_ERROR \
153 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'IOError', 'data': {} }"
154
155 #define QERR_JSON_PARSE_ERROR \
156 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'JSONParseError', 'data': { 'message': %s } }"
157
158 #define QERR_JSON_PARSING \
159 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'JSONParsing', 'data': {} }"
160
161 #define QERR_KVM_MISSING_CAP \
162 ERROR_CLASS_K_V_M_MISSING_CAP, "{ 'class': 'KVMMissingCap', 'data': { 'capability': %s, 'feature': %s } }"
163
164 #define QERR_MIGRATION_ACTIVE \
165 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'MigrationActive', 'data': {} }"
166
167 #define QERR_MIGRATION_NOT_SUPPORTED \
168 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'MigrationNotSupported', 'data': {'device': %s} }"
169
170 #define QERR_MIGRATION_EXPECTED \
171 ERROR_CLASS_MIGRATION_EXPECTED, "{ 'class': 'MigrationExpected', 'data': {} }"
172
173 #define QERR_MISSING_PARAMETER \
174 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'MissingParameter', 'data': { 'name': %s } }"
175
176 #define QERR_NO_BUS_FOR_DEVICE \
177 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'NoBusForDevice', 'data': { 'device': %s, 'bus': %s } }"
178
179 #define QERR_NOT_SUPPORTED \
180 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'NotSupported', 'data': {} }"
181
182 #define QERR_OPEN_FILE_FAILED \
183 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'OpenFileFailed', 'data': { 'filename': %s } }"
184
185 #define QERR_PERMISSION_DENIED \
186 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'PermissionDenied', 'data': {} }"
187
188 #define QERR_PROPERTY_NOT_FOUND \
189 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'PropertyNotFound', 'data': { 'device': %s, 'property': %s } }"
190
191 #define QERR_PROPERTY_VALUE_BAD \
192 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'PropertyValueBad', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
193
194 #define QERR_PROPERTY_VALUE_IN_USE \
195 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'PropertyValueInUse', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
196
197 #define QERR_PROPERTY_VALUE_NOT_FOUND \
198 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'PropertyValueNotFound', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
199
200 #define QERR_PROPERTY_VALUE_NOT_POWER_OF_2 \
201 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'PropertyValueNotPowerOf2', 'data': { " \
202 "'device': %s, 'property': %s, 'value': %"PRId64" } }"
203
204 #define QERR_PROPERTY_VALUE_OUT_OF_RANGE \
205 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'PropertyValueOutOfRange', 'data': { 'device': %s, 'property': %s, 'value': %"PRId64", 'min': %"PRId64", 'max': %"PRId64" } }"
206
207 #define QERR_QGA_COMMAND_FAILED \
208 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'QgaCommandFailed', 'data': { 'message': %s } }"
209
210 #define QERR_QGA_LOGGING_FAILED \
211 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'QgaLoggingFailed', 'data': {} }"
212
213 #define QERR_QMP_BAD_INPUT_OBJECT \
214 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'QMPBadInputObject', 'data': { 'expected': %s } }"
215
216 #define QERR_QMP_BAD_INPUT_OBJECT_MEMBER \
217 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'QMPBadInputObjectMember', 'data': { 'member': %s, 'expected': %s } }"
218
219 #define QERR_QMP_EXTRA_MEMBER \
220 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'QMPExtraInputObjectMember', 'data': { 'member': %s } }"
221
222 #define QERR_RESET_REQUIRED \
223 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'ResetRequired', 'data': {} }"
224
225 #define QERR_SET_PASSWD_FAILED \
226 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'SetPasswdFailed', 'data': {} }"
227
228 #define QERR_TOO_MANY_FILES \
229 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'TooManyFiles', 'data': {} }"
230
231 #define QERR_UNDEFINED_ERROR \
232 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'UndefinedError', 'data': {} }"
233
234 #define QERR_UNKNOWN_BLOCK_FORMAT_FEATURE \
235 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'UnknownBlockFormatFeature', 'data': { 'device': %s, 'format': %s, 'feature': %s } }"
236
237 #define QERR_UNSUPPORTED \
238 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'Unsupported', 'data': {} }"
239
240 #define QERR_VIRTFS_FEATURE_BLOCKS_MIGRATION \
241 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'VirtFSFeatureBlocksMigration', 'data': { 'path': %s, 'tag': %s } }"
242
243 #define QERR_VNC_SERVER_FAILED \
244 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'VNCServerFailed', 'data': { 'target': %s } }"
245
246 #define QERR_SOCKET_CONNECT_FAILED \
247 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'SockConnectFailed', 'data': {} }"
248
249 #define QERR_SOCKET_LISTEN_FAILED \
250 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'SockListenFailed', 'data': {} }"
251
252 #define QERR_SOCKET_BIND_FAILED \
253 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'SockBindFailed', 'data': {} }"
254
255 #define QERR_SOCKET_CREATE_FAILED \
256 ERROR_CLASS_GENERIC_ERROR, "{ 'class': 'SockCreateFailed', 'data': {} }"
257
258 #endif /* QERROR_H */