Merge commit '296acb643b0f7ec3ab3d8c4a8fc48039d9269818' into upstream-merge
[qemu-kvm/stefanha.git] / qemu-config.c
blob69aeb17992534d70bd1b308515c78744503ff6c5
1 #include "qemu-common.h"
2 #include "qemu-error.h"
3 #include "qemu-option.h"
4 #include "qemu-config.h"
5 #include "sysemu.h"
6 #include "hw/qdev.h"
8 static QemuOptsList qemu_drive_opts = {
9 .name = "drive",
10 .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head),
11 .desc = {
13 .name = "bus",
14 .type = QEMU_OPT_NUMBER,
15 .help = "bus number",
16 },{
17 .name = "unit",
18 .type = QEMU_OPT_NUMBER,
19 .help = "unit number (i.e. lun for scsi)",
20 },{
21 .name = "if",
22 .type = QEMU_OPT_STRING,
23 .help = "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
24 },{
25 .name = "index",
26 .type = QEMU_OPT_NUMBER,
27 },{
28 .name = "cyls",
29 .type = QEMU_OPT_NUMBER,
30 .help = "number of cylinders (ide disk geometry)",
31 },{
32 .name = "heads",
33 .type = QEMU_OPT_NUMBER,
34 .help = "number of heads (ide disk geometry)",
35 },{
36 .name = "secs",
37 .type = QEMU_OPT_NUMBER,
38 .help = "number of sectors (ide disk geometry)",
39 },{
40 .name = "trans",
41 .type = QEMU_OPT_STRING,
42 .help = "chs translation (auto, lba. none)",
43 },{
44 .name = "media",
45 .type = QEMU_OPT_STRING,
46 .help = "media type (disk, cdrom)",
47 },{
48 .name = "snapshot",
49 .type = QEMU_OPT_BOOL,
50 },{
51 .name = "file",
52 .type = QEMU_OPT_STRING,
53 .help = "disk image",
54 },{
55 .name = "cache",
56 .type = QEMU_OPT_STRING,
57 .help = "host cache usage (none, writeback, writethrough, unsafe)",
58 },{
59 .name = "aio",
60 .type = QEMU_OPT_STRING,
61 .help = "host AIO implementation (threads, native)",
62 },{
63 .name = "format",
64 .type = QEMU_OPT_STRING,
65 .help = "disk format (raw, qcow2, ...)",
66 },{
67 .name = "serial",
68 .type = QEMU_OPT_STRING,
69 },{
70 .name = "rerror",
71 .type = QEMU_OPT_STRING,
72 },{
73 .name = "werror",
74 .type = QEMU_OPT_STRING,
75 },{
76 .name = "addr",
77 .type = QEMU_OPT_STRING,
78 .help = "pci address (virtio only)",
79 },{
80 .name = "readonly",
81 .type = QEMU_OPT_BOOL,
82 },{
83 .name = "boot",
84 .type = QEMU_OPT_BOOL,
85 .help = "make this a boot drive",
87 { /* end of list */ }
91 static QemuOptsList qemu_chardev_opts = {
92 .name = "chardev",
93 .implied_opt_name = "backend",
94 .head = QTAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
95 .desc = {
97 .name = "backend",
98 .type = QEMU_OPT_STRING,
99 },{
100 .name = "path",
101 .type = QEMU_OPT_STRING,
103 .name = "host",
104 .type = QEMU_OPT_STRING,
106 .name = "port",
107 .type = QEMU_OPT_STRING,
109 .name = "localaddr",
110 .type = QEMU_OPT_STRING,
112 .name = "localport",
113 .type = QEMU_OPT_STRING,
115 .name = "to",
116 .type = QEMU_OPT_NUMBER,
118 .name = "ipv4",
119 .type = QEMU_OPT_BOOL,
121 .name = "ipv6",
122 .type = QEMU_OPT_BOOL,
124 .name = "wait",
125 .type = QEMU_OPT_BOOL,
127 .name = "server",
128 .type = QEMU_OPT_BOOL,
130 .name = "delay",
131 .type = QEMU_OPT_BOOL,
133 .name = "telnet",
134 .type = QEMU_OPT_BOOL,
136 .name = "width",
137 .type = QEMU_OPT_NUMBER,
139 .name = "height",
140 .type = QEMU_OPT_NUMBER,
142 .name = "cols",
143 .type = QEMU_OPT_NUMBER,
145 .name = "rows",
146 .type = QEMU_OPT_NUMBER,
148 .name = "mux",
149 .type = QEMU_OPT_BOOL,
151 .name = "signal",
152 .type = QEMU_OPT_BOOL,
154 { /* end of list */ }
158 QemuOptsList qemu_fsdev_opts = {
159 .name = "fsdev",
160 .implied_opt_name = "fstype",
161 .head = QTAILQ_HEAD_INITIALIZER(qemu_fsdev_opts.head),
162 .desc = {
164 .name = "fstype",
165 .type = QEMU_OPT_STRING,
166 }, {
167 .name = "path",
168 .type = QEMU_OPT_STRING,
169 }, {
170 .name = "security_model",
171 .type = QEMU_OPT_STRING,
173 { /*End of list */ }
177 QemuOptsList qemu_virtfs_opts = {
178 .name = "virtfs",
179 .implied_opt_name = "fstype",
180 .head = QTAILQ_HEAD_INITIALIZER(qemu_virtfs_opts.head),
181 .desc = {
183 .name = "fstype",
184 .type = QEMU_OPT_STRING,
185 }, {
186 .name = "path",
187 .type = QEMU_OPT_STRING,
188 }, {
189 .name = "mount_tag",
190 .type = QEMU_OPT_STRING,
191 }, {
192 .name = "security_model",
193 .type = QEMU_OPT_STRING,
196 { /*End of list */ }
200 static QemuOptsList qemu_device_opts = {
201 .name = "device",
202 .implied_opt_name = "driver",
203 .head = QTAILQ_HEAD_INITIALIZER(qemu_device_opts.head),
204 .desc = {
206 * no elements => accept any
207 * sanity checking will happen later
208 * when setting device properties
210 { /* end of list */ }
214 static QemuOptsList qemu_netdev_opts = {
215 .name = "netdev",
216 .implied_opt_name = "type",
217 .head = QTAILQ_HEAD_INITIALIZER(qemu_netdev_opts.head),
218 .desc = {
220 * no elements => accept any params
221 * validation will happen later
223 { /* end of list */ }
227 static QemuOptsList qemu_net_opts = {
228 .name = "net",
229 .implied_opt_name = "type",
230 .head = QTAILQ_HEAD_INITIALIZER(qemu_net_opts.head),
231 .desc = {
233 * no elements => accept any params
234 * validation will happen later
236 { /* end of list */ }
240 static QemuOptsList qemu_rtc_opts = {
241 .name = "rtc",
242 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
243 .desc = {
245 .name = "base",
246 .type = QEMU_OPT_STRING,
248 .name = "clock",
249 .type = QEMU_OPT_STRING,
251 .name = "driftfix",
252 .type = QEMU_OPT_STRING,
254 { /* end of list */ }
258 static QemuOptsList qemu_global_opts = {
259 .name = "global",
260 .head = QTAILQ_HEAD_INITIALIZER(qemu_global_opts.head),
261 .desc = {
263 .name = "driver",
264 .type = QEMU_OPT_STRING,
266 .name = "property",
267 .type = QEMU_OPT_STRING,
269 .name = "value",
270 .type = QEMU_OPT_STRING,
272 { /* end of list */ }
276 static QemuOptsList qemu_mon_opts = {
277 .name = "mon",
278 .implied_opt_name = "chardev",
279 .head = QTAILQ_HEAD_INITIALIZER(qemu_mon_opts.head),
280 .desc = {
282 .name = "mode",
283 .type = QEMU_OPT_STRING,
285 .name = "chardev",
286 .type = QEMU_OPT_STRING,
288 .name = "default",
289 .type = QEMU_OPT_BOOL,
291 .name = "pretty",
292 .type = QEMU_OPT_BOOL,
294 { /* end of list */ }
298 #ifdef CONFIG_SIMPLE_TRACE
299 static QemuOptsList qemu_trace_opts = {
300 .name = "trace",
301 .implied_opt_name = "trace",
302 .head = QTAILQ_HEAD_INITIALIZER(qemu_trace_opts.head),
303 .desc = {
305 .name = "file",
306 .type = QEMU_OPT_STRING,
308 { /* end if list */ }
311 #endif
313 static QemuOptsList qemu_cpudef_opts = {
314 .name = "cpudef",
315 .head = QTAILQ_HEAD_INITIALIZER(qemu_cpudef_opts.head),
316 .desc = {
318 .name = "name",
319 .type = QEMU_OPT_STRING,
321 .name = "level",
322 .type = QEMU_OPT_NUMBER,
324 .name = "vendor",
325 .type = QEMU_OPT_STRING,
327 .name = "family",
328 .type = QEMU_OPT_NUMBER,
330 .name = "model",
331 .type = QEMU_OPT_NUMBER,
333 .name = "stepping",
334 .type = QEMU_OPT_NUMBER,
336 .name = "feature_edx", /* cpuid 0000_0001.edx */
337 .type = QEMU_OPT_STRING,
339 .name = "feature_ecx", /* cpuid 0000_0001.ecx */
340 .type = QEMU_OPT_STRING,
342 .name = "extfeature_edx", /* cpuid 8000_0001.edx */
343 .type = QEMU_OPT_STRING,
345 .name = "extfeature_ecx", /* cpuid 8000_0001.ecx */
346 .type = QEMU_OPT_STRING,
348 .name = "xlevel",
349 .type = QEMU_OPT_NUMBER,
351 .name = "model_id",
352 .type = QEMU_OPT_STRING,
354 .name = "vendor_override",
355 .type = QEMU_OPT_NUMBER,
357 { /* end of list */ }
361 QemuOptsList qemu_spice_opts = {
362 .name = "spice",
363 .head = QTAILQ_HEAD_INITIALIZER(qemu_spice_opts.head),
364 .desc = {
366 .name = "port",
367 .type = QEMU_OPT_NUMBER,
369 .name = "password",
370 .type = QEMU_OPT_STRING,
372 .name = "disable-ticketing",
373 .type = QEMU_OPT_BOOL,
375 { /* end if list */ }
379 static QemuOptsList *vm_config_groups[32] = {
380 &qemu_drive_opts,
381 &qemu_chardev_opts,
382 &qemu_device_opts,
383 &qemu_netdev_opts,
384 &qemu_net_opts,
385 &qemu_rtc_opts,
386 &qemu_global_opts,
387 &qemu_mon_opts,
388 &qemu_cpudef_opts,
389 #ifdef CONFIG_SIMPLE_TRACE
390 &qemu_trace_opts,
391 #endif
392 NULL,
395 static QemuOptsList *find_list(QemuOptsList **lists, const char *group)
397 int i;
399 for (i = 0; lists[i] != NULL; i++) {
400 if (strcmp(lists[i]->name, group) == 0)
401 break;
403 if (lists[i] == NULL) {
404 error_report("there is no option group \"%s\"", group);
406 return lists[i];
409 QemuOptsList *qemu_find_opts(const char *group)
411 return find_list(vm_config_groups, group);
414 void qemu_add_opts(QemuOptsList *list)
416 int entries, i;
418 entries = ARRAY_SIZE(vm_config_groups);
419 entries--; /* keep list NULL terminated */
420 for (i = 0; i < entries; i++) {
421 if (vm_config_groups[i] == NULL) {
422 vm_config_groups[i] = list;
423 return;
426 fprintf(stderr, "ran out of space in vm_config_groups");
427 abort();
430 int qemu_set_option(const char *str)
432 char group[64], id[64], arg[64];
433 QemuOptsList *list;
434 QemuOpts *opts;
435 int rc, offset;
437 rc = sscanf(str, "%63[^.].%63[^.].%63[^=]%n", group, id, arg, &offset);
438 if (rc < 3 || str[offset] != '=') {
439 error_report("can't parse: \"%s\"", str);
440 return -1;
443 list = qemu_find_opts(group);
444 if (list == NULL) {
445 return -1;
448 opts = qemu_opts_find(list, id);
449 if (!opts) {
450 error_report("there is no %s \"%s\" defined",
451 list->name, id);
452 return -1;
455 if (qemu_opt_set(opts, arg, str+offset+1) == -1) {
456 return -1;
458 return 0;
461 int qemu_global_option(const char *str)
463 char driver[64], property[64];
464 QemuOpts *opts;
465 int rc, offset;
467 rc = sscanf(str, "%63[^.].%63[^=]%n", driver, property, &offset);
468 if (rc < 2 || str[offset] != '=') {
469 error_report("can't parse: \"%s\"", str);
470 return -1;
473 opts = qemu_opts_create(&qemu_global_opts, NULL, 0);
474 qemu_opt_set(opts, "driver", driver);
475 qemu_opt_set(opts, "property", property);
476 qemu_opt_set(opts, "value", str+offset+1);
477 return 0;
480 struct ConfigWriteData {
481 QemuOptsList *list;
482 FILE *fp;
485 static int config_write_opt(const char *name, const char *value, void *opaque)
487 struct ConfigWriteData *data = opaque;
489 fprintf(data->fp, " %s = \"%s\"\n", name, value);
490 return 0;
493 static int config_write_opts(QemuOpts *opts, void *opaque)
495 struct ConfigWriteData *data = opaque;
496 const char *id = qemu_opts_id(opts);
498 if (id) {
499 fprintf(data->fp, "[%s \"%s\"]\n", data->list->name, id);
500 } else {
501 fprintf(data->fp, "[%s]\n", data->list->name);
503 qemu_opt_foreach(opts, config_write_opt, data, 0);
504 fprintf(data->fp, "\n");
505 return 0;
508 void qemu_config_write(FILE *fp)
510 struct ConfigWriteData data = { .fp = fp };
511 QemuOptsList **lists = vm_config_groups;
512 int i;
514 fprintf(fp, "# qemu config file\n\n");
515 for (i = 0; lists[i] != NULL; i++) {
516 data.list = lists[i];
517 qemu_opts_foreach(data.list, config_write_opts, &data, 0);
521 int qemu_config_parse(FILE *fp, QemuOptsList **lists, const char *fname)
523 char line[1024], group[64], id[64], arg[64], value[1024];
524 Location loc;
525 QemuOptsList *list = NULL;
526 QemuOpts *opts = NULL;
527 int res = -1, lno = 0;
529 loc_push_none(&loc);
530 while (fgets(line, sizeof(line), fp) != NULL) {
531 loc_set_file(fname, ++lno);
532 if (line[0] == '\n') {
533 /* skip empty lines */
534 continue;
536 if (line[0] == '#') {
537 /* comment */
538 continue;
540 if (sscanf(line, "[%63s \"%63[^\"]\"]", group, id) == 2) {
541 /* group with id */
542 list = find_list(lists, group);
543 if (list == NULL)
544 goto out;
545 opts = qemu_opts_create(list, id, 1);
546 continue;
548 if (sscanf(line, "[%63[^]]]", group) == 1) {
549 /* group without id */
550 list = find_list(lists, group);
551 if (list == NULL)
552 goto out;
553 opts = qemu_opts_create(list, NULL, 0);
554 continue;
556 if (sscanf(line, " %63s = \"%1023[^\"]\"", arg, value) == 2) {
557 /* arg = value */
558 if (opts == NULL) {
559 error_report("no group defined");
560 goto out;
562 if (qemu_opt_set(opts, arg, value) != 0) {
563 goto out;
565 continue;
567 error_report("parse error");
568 goto out;
570 if (ferror(fp)) {
571 error_report("error reading file");
572 goto out;
574 res = 0;
575 out:
576 loc_pop(&loc);
577 return res;
580 int qemu_read_config_file(const char *filename)
582 FILE *f = fopen(filename, "r");
583 int ret;
585 if (f == NULL) {
586 return -errno;
589 ret = qemu_config_parse(f, vm_config_groups, filename);
590 fclose(f);
592 if (ret == 0) {
593 return 0;
594 } else {
595 return -EINVAL;