]> git.proxmox.com Git - qemu.git/blame - qemu-config.c
switch chardev to QemuOpts: infrastructure, null device
[qemu.git] / qemu-config.c
CommitLineData
7282a033
GH
1#include "qemu-common.h"
2#include "qemu-option.h"
3#include "qemu-config.h"
4
5QemuOptsList qemu_drive_opts = {
6 .name = "drive",
7 .head = TAILQ_HEAD_INITIALIZER(qemu_drive_opts.head),
8 .desc = {
9 {
10 .name = "bus",
11 .type = QEMU_OPT_NUMBER,
12 .help = "bus number",
13 },{
14 .name = "unit",
15 .type = QEMU_OPT_NUMBER,
16 .help = "unit number (i.e. lun for scsi)",
17 },{
18 .name = "if",
19 .type = QEMU_OPT_STRING,
20 .help = "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
21 },{
22 .name = "index",
23 .type = QEMU_OPT_NUMBER,
24 },{
25 .name = "cyls",
26 .type = QEMU_OPT_NUMBER,
27 .help = "number of cylinders (ide disk geometry)",
28 },{
29 .name = "heads",
30 .type = QEMU_OPT_NUMBER,
31 .help = "number of heads (ide disk geometry)",
32 },{
33 .name = "secs",
34 .type = QEMU_OPT_NUMBER,
35 .help = "number of sectors (ide disk geometry)",
36 },{
37 .name = "trans",
38 .type = QEMU_OPT_STRING,
39 .help = "chs translation (auto, lba. none)",
40 },{
41 .name = "media",
42 .type = QEMU_OPT_STRING,
43 .help = "media type (disk, cdrom)",
44 },{
45 .name = "snapshot",
46 .type = QEMU_OPT_BOOL,
47 },{
48 .name = "file",
49 .type = QEMU_OPT_STRING,
50 .help = "disk image",
51 },{
52 .name = "cache",
53 .type = QEMU_OPT_STRING,
54 .help = "host cache usage (none, writeback, writethrough)",
5c6c3a6c
CH
55 },{
56 .name = "aio",
57 .type = QEMU_OPT_STRING,
58 .help = "host AIO implementation (threads, native)",
7282a033
GH
59 },{
60 .name = "format",
61 .type = QEMU_OPT_STRING,
62 .help = "disk format (raw, qcow2, ...)",
63 },{
64 .name = "serial",
65 .type = QEMU_OPT_STRING,
66 },{
67 .name = "werror",
68 .type = QEMU_OPT_STRING,
69 },{
70 .name = "addr",
71 .type = QEMU_OPT_STRING,
72 .help = "pci address (virtio only)",
73 },
74 { /* end if list */ }
75 },
76};
77
191bc01b
GH
78QemuOptsList qemu_chardev_opts = {
79 .name = "chardev",
80 .head = TAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
81 .desc = {
82 { /* end if list */ }
83 },
84};
85
f31d07d1
GH
86QemuOptsList qemu_device_opts = {
87 .name = "device",
88 .head = TAILQ_HEAD_INITIALIZER(qemu_device_opts.head),
89 .desc = {
90 /*
91 * no elements => accept any
92 * sanity checking will happen later
93 * when setting device properties
94 */
95 { /* end if list */ }
96 },
97};
98
d058fe03
GH
99static QemuOptsList *lists[] = {
100 &qemu_drive_opts,
191bc01b 101 &qemu_chardev_opts,
f31d07d1 102 &qemu_device_opts,
d058fe03
GH
103 NULL,
104};
105
106int qemu_set_option(const char *str)
107{
108 char group[64], id[64], arg[64];
109 QemuOpts *opts;
110 int i, rc, offset;
111
112 rc = sscanf(str, "%63[^.].%63[^.].%63[^=]%n", group, id, arg, &offset);
113 if (rc < 3 || str[offset] != '=') {
114 fprintf(stderr, "can't parse: \"%s\"\n", str);
115 return -1;
116 }
117
118 for (i = 0; lists[i] != NULL; i++) {
119 if (strcmp(lists[i]->name, group) == 0)
120 break;
121 }
122 if (lists[i] == NULL) {
123 fprintf(stderr, "there is no option group \"%s\"\n", group);
124 return -1;
125 }
126
127 opts = qemu_opts_find(lists[i], id);
128 if (!opts) {
129 fprintf(stderr, "there is no %s \"%s\" defined\n",
130 lists[i]->name, id);
131 return -1;
132 }
133
134 if (-1 == qemu_opt_set(opts, arg, str+offset+1)) {
135 fprintf(stderr, "failed to set \"%s\" for %s \"%s\"\n",
136 arg, lists[i]->name, id);
137 return -1;
138 }
139 return 0;
140}
141