spice: make compression configurable.
[qemu/wangdongxu.git] / qemu-config.c
blob8b545b15f91519e685474a561534664a3e4d66ce
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,
83 { /* end of list */ }
87 static QemuOptsList qemu_chardev_opts = {
88 .name = "chardev",
89 .implied_opt_name = "backend",
90 .head = QTAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
91 .desc = {
93 .name = "backend",
94 .type = QEMU_OPT_STRING,
95 },{
96 .name = "path",
97 .type = QEMU_OPT_STRING,
98 },{
99 .name = "host",
100 .type = QEMU_OPT_STRING,
102 .name = "port",
103 .type = QEMU_OPT_STRING,
105 .name = "localaddr",
106 .type = QEMU_OPT_STRING,
108 .name = "localport",
109 .type = QEMU_OPT_STRING,
111 .name = "to",
112 .type = QEMU_OPT_NUMBER,
114 .name = "ipv4",
115 .type = QEMU_OPT_BOOL,
117 .name = "ipv6",
118 .type = QEMU_OPT_BOOL,
120 .name = "wait",
121 .type = QEMU_OPT_BOOL,
123 .name = "server",
124 .type = QEMU_OPT_BOOL,
126 .name = "delay",
127 .type = QEMU_OPT_BOOL,
129 .name = "telnet",
130 .type = QEMU_OPT_BOOL,
132 .name = "width",
133 .type = QEMU_OPT_NUMBER,
135 .name = "height",
136 .type = QEMU_OPT_NUMBER,
138 .name = "cols",
139 .type = QEMU_OPT_NUMBER,
141 .name = "rows",
142 .type = QEMU_OPT_NUMBER,
144 .name = "mux",
145 .type = QEMU_OPT_BOOL,
147 .name = "signal",
148 .type = QEMU_OPT_BOOL,
150 { /* end of list */ }
154 QemuOptsList qemu_fsdev_opts = {
155 .name = "fsdev",
156 .implied_opt_name = "fstype",
157 .head = QTAILQ_HEAD_INITIALIZER(qemu_fsdev_opts.head),
158 .desc = {
160 .name = "fstype",
161 .type = QEMU_OPT_STRING,
162 }, {
163 .name = "path",
164 .type = QEMU_OPT_STRING,
165 }, {
166 .name = "security_model",
167 .type = QEMU_OPT_STRING,
169 { /*End of list */ }
173 QemuOptsList qemu_virtfs_opts = {
174 .name = "virtfs",
175 .implied_opt_name = "fstype",
176 .head = QTAILQ_HEAD_INITIALIZER(qemu_virtfs_opts.head),
177 .desc = {
179 .name = "fstype",
180 .type = QEMU_OPT_STRING,
181 }, {
182 .name = "path",
183 .type = QEMU_OPT_STRING,
184 }, {
185 .name = "mount_tag",
186 .type = QEMU_OPT_STRING,
187 }, {
188 .name = "security_model",
189 .type = QEMU_OPT_STRING,
192 { /*End of list */ }
196 static QemuOptsList qemu_device_opts = {
197 .name = "device",
198 .implied_opt_name = "driver",
199 .head = QTAILQ_HEAD_INITIALIZER(qemu_device_opts.head),
200 .desc = {
202 * no elements => accept any
203 * sanity checking will happen later
204 * when setting device properties
206 { /* end of list */ }
210 static QemuOptsList qemu_netdev_opts = {
211 .name = "netdev",
212 .implied_opt_name = "type",
213 .head = QTAILQ_HEAD_INITIALIZER(qemu_netdev_opts.head),
214 .desc = {
216 * no elements => accept any params
217 * validation will happen later
219 { /* end of list */ }
223 static QemuOptsList qemu_net_opts = {
224 .name = "net",
225 .implied_opt_name = "type",
226 .head = QTAILQ_HEAD_INITIALIZER(qemu_net_opts.head),
227 .desc = {
229 * no elements => accept any params
230 * validation will happen later
232 { /* end of list */ }
236 static QemuOptsList qemu_rtc_opts = {
237 .name = "rtc",
238 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
239 .desc = {
241 .name = "base",
242 .type = QEMU_OPT_STRING,
244 .name = "clock",
245 .type = QEMU_OPT_STRING,
247 .name = "driftfix",
248 .type = QEMU_OPT_STRING,
250 { /* end of list */ }
254 static QemuOptsList qemu_global_opts = {
255 .name = "global",
256 .head = QTAILQ_HEAD_INITIALIZER(qemu_global_opts.head),
257 .desc = {
259 .name = "driver",
260 .type = QEMU_OPT_STRING,
262 .name = "property",
263 .type = QEMU_OPT_STRING,
265 .name = "value",
266 .type = QEMU_OPT_STRING,
268 { /* end of list */ }
272 static QemuOptsList qemu_mon_opts = {
273 .name = "mon",
274 .implied_opt_name = "chardev",
275 .head = QTAILQ_HEAD_INITIALIZER(qemu_mon_opts.head),
276 .desc = {
278 .name = "mode",
279 .type = QEMU_OPT_STRING,
281 .name = "chardev",
282 .type = QEMU_OPT_STRING,
284 .name = "default",
285 .type = QEMU_OPT_BOOL,
287 .name = "pretty",
288 .type = QEMU_OPT_BOOL,
290 { /* end of list */ }
294 #ifdef CONFIG_SIMPLE_TRACE
295 static QemuOptsList qemu_trace_opts = {
296 .name = "trace",
297 .implied_opt_name = "trace",
298 .head = QTAILQ_HEAD_INITIALIZER(qemu_trace_opts.head),
299 .desc = {
301 .name = "file",
302 .type = QEMU_OPT_STRING,
304 { /* end if list */ }
307 #endif
309 static QemuOptsList qemu_cpudef_opts = {
310 .name = "cpudef",
311 .head = QTAILQ_HEAD_INITIALIZER(qemu_cpudef_opts.head),
312 .desc = {
314 .name = "name",
315 .type = QEMU_OPT_STRING,
317 .name = "level",
318 .type = QEMU_OPT_NUMBER,
320 .name = "vendor",
321 .type = QEMU_OPT_STRING,
323 .name = "family",
324 .type = QEMU_OPT_NUMBER,
326 .name = "model",
327 .type = QEMU_OPT_NUMBER,
329 .name = "stepping",
330 .type = QEMU_OPT_NUMBER,
332 .name = "feature_edx", /* cpuid 0000_0001.edx */
333 .type = QEMU_OPT_STRING,
335 .name = "feature_ecx", /* cpuid 0000_0001.ecx */
336 .type = QEMU_OPT_STRING,
338 .name = "extfeature_edx", /* cpuid 8000_0001.edx */
339 .type = QEMU_OPT_STRING,
341 .name = "extfeature_ecx", /* cpuid 8000_0001.ecx */
342 .type = QEMU_OPT_STRING,
344 .name = "xlevel",
345 .type = QEMU_OPT_NUMBER,
347 .name = "model_id",
348 .type = QEMU_OPT_STRING,
350 .name = "vendor_override",
351 .type = QEMU_OPT_NUMBER,
353 { /* end of list */ }
357 QemuOptsList qemu_spice_opts = {
358 .name = "spice",
359 .head = QTAILQ_HEAD_INITIALIZER(qemu_spice_opts.head),
360 .desc = {
362 .name = "port",
363 .type = QEMU_OPT_NUMBER,
365 .name = "tls-port",
366 .type = QEMU_OPT_NUMBER,
368 .name = "password",
369 .type = QEMU_OPT_STRING,
371 .name = "disable-ticketing",
372 .type = QEMU_OPT_BOOL,
374 .name = "x509-dir",
375 .type = QEMU_OPT_STRING,
377 .name = "x509-key-file",
378 .type = QEMU_OPT_STRING,
380 .name = "x509-key-password",
381 .type = QEMU_OPT_STRING,
383 .name = "x509-cert-file",
384 .type = QEMU_OPT_STRING,
386 .name = "x509-cacert-file",
387 .type = QEMU_OPT_STRING,
389 .name = "x509-dh-key-file",
390 .type = QEMU_OPT_STRING,
392 .name = "tls-ciphers",
393 .type = QEMU_OPT_STRING,
395 .name = "image-compression",
396 .type = QEMU_OPT_STRING,
398 .name = "jpeg-wan-compression",
399 .type = QEMU_OPT_STRING,
401 .name = "zlib-glz-wan-compression",
402 .type = QEMU_OPT_STRING,
404 { /* end if list */ }
408 static QemuOptsList *vm_config_groups[32] = {
409 &qemu_drive_opts,
410 &qemu_chardev_opts,
411 &qemu_device_opts,
412 &qemu_netdev_opts,
413 &qemu_net_opts,
414 &qemu_rtc_opts,
415 &qemu_global_opts,
416 &qemu_mon_opts,
417 &qemu_cpudef_opts,
418 #ifdef CONFIG_SIMPLE_TRACE
419 &qemu_trace_opts,
420 #endif
421 NULL,
424 static QemuOptsList *find_list(QemuOptsList **lists, const char *group)
426 int i;
428 for (i = 0; lists[i] != NULL; i++) {
429 if (strcmp(lists[i]->name, group) == 0)
430 break;
432 if (lists[i] == NULL) {
433 error_report("there is no option group \"%s\"", group);
435 return lists[i];
438 QemuOptsList *qemu_find_opts(const char *group)
440 return find_list(vm_config_groups, group);
443 void qemu_add_opts(QemuOptsList *list)
445 int entries, i;
447 entries = ARRAY_SIZE(vm_config_groups);
448 entries--; /* keep list NULL terminated */
449 for (i = 0; i < entries; i++) {
450 if (vm_config_groups[i] == NULL) {
451 vm_config_groups[i] = list;
452 return;
455 fprintf(stderr, "ran out of space in vm_config_groups");
456 abort();
459 int qemu_set_option(const char *str)
461 char group[64], id[64], arg[64];
462 QemuOptsList *list;
463 QemuOpts *opts;
464 int rc, offset;
466 rc = sscanf(str, "%63[^.].%63[^.].%63[^=]%n", group, id, arg, &offset);
467 if (rc < 3 || str[offset] != '=') {
468 error_report("can't parse: \"%s\"", str);
469 return -1;
472 list = qemu_find_opts(group);
473 if (list == NULL) {
474 return -1;
477 opts = qemu_opts_find(list, id);
478 if (!opts) {
479 error_report("there is no %s \"%s\" defined",
480 list->name, id);
481 return -1;
484 if (qemu_opt_set(opts, arg, str+offset+1) == -1) {
485 return -1;
487 return 0;
490 int qemu_global_option(const char *str)
492 char driver[64], property[64];
493 QemuOpts *opts;
494 int rc, offset;
496 rc = sscanf(str, "%63[^.].%63[^=]%n", driver, property, &offset);
497 if (rc < 2 || str[offset] != '=') {
498 error_report("can't parse: \"%s\"", str);
499 return -1;
502 opts = qemu_opts_create(&qemu_global_opts, NULL, 0);
503 qemu_opt_set(opts, "driver", driver);
504 qemu_opt_set(opts, "property", property);
505 qemu_opt_set(opts, "value", str+offset+1);
506 return 0;
509 struct ConfigWriteData {
510 QemuOptsList *list;
511 FILE *fp;
514 static int config_write_opt(const char *name, const char *value, void *opaque)
516 struct ConfigWriteData *data = opaque;
518 fprintf(data->fp, " %s = \"%s\"\n", name, value);
519 return 0;
522 static int config_write_opts(QemuOpts *opts, void *opaque)
524 struct ConfigWriteData *data = opaque;
525 const char *id = qemu_opts_id(opts);
527 if (id) {
528 fprintf(data->fp, "[%s \"%s\"]\n", data->list->name, id);
529 } else {
530 fprintf(data->fp, "[%s]\n", data->list->name);
532 qemu_opt_foreach(opts, config_write_opt, data, 0);
533 fprintf(data->fp, "\n");
534 return 0;
537 void qemu_config_write(FILE *fp)
539 struct ConfigWriteData data = { .fp = fp };
540 QemuOptsList **lists = vm_config_groups;
541 int i;
543 fprintf(fp, "# qemu config file\n\n");
544 for (i = 0; lists[i] != NULL; i++) {
545 data.list = lists[i];
546 qemu_opts_foreach(data.list, config_write_opts, &data, 0);
550 int qemu_config_parse(FILE *fp, QemuOptsList **lists, const char *fname)
552 char line[1024], group[64], id[64], arg[64], value[1024];
553 Location loc;
554 QemuOptsList *list = NULL;
555 QemuOpts *opts = NULL;
556 int res = -1, lno = 0;
558 loc_push_none(&loc);
559 while (fgets(line, sizeof(line), fp) != NULL) {
560 loc_set_file(fname, ++lno);
561 if (line[0] == '\n') {
562 /* skip empty lines */
563 continue;
565 if (line[0] == '#') {
566 /* comment */
567 continue;
569 if (sscanf(line, "[%63s \"%63[^\"]\"]", group, id) == 2) {
570 /* group with id */
571 list = find_list(lists, group);
572 if (list == NULL)
573 goto out;
574 opts = qemu_opts_create(list, id, 1);
575 continue;
577 if (sscanf(line, "[%63[^]]]", group) == 1) {
578 /* group without id */
579 list = find_list(lists, group);
580 if (list == NULL)
581 goto out;
582 opts = qemu_opts_create(list, NULL, 0);
583 continue;
585 if (sscanf(line, " %63s = \"%1023[^\"]\"", arg, value) == 2) {
586 /* arg = value */
587 if (opts == NULL) {
588 error_report("no group defined");
589 goto out;
591 if (qemu_opt_set(opts, arg, value) != 0) {
592 goto out;
594 continue;
596 error_report("parse error");
597 goto out;
599 if (ferror(fp)) {
600 error_report("error reading file");
601 goto out;
603 res = 0;
604 out:
605 loc_pop(&loc);
606 return res;
609 int qemu_read_config_file(const char *filename)
611 FILE *f = fopen(filename, "r");
612 int ret;
614 if (f == NULL) {
615 return -errno;
618 ret = qemu_config_parse(f, vm_config_groups, filename);
619 fclose(f);
621 if (ret == 0) {
622 return 0;
623 } else {
624 return -EINVAL;