1 #include "qemu-common.h"
2 #include "qemu-option.h"
3 #include "qemu-config.h"
6 QemuOptsList qemu_drive_opts
= {
8 .head
= QTAILQ_HEAD_INITIALIZER(qemu_drive_opts
.head
),
12 .type
= QEMU_OPT_NUMBER
,
16 .type
= QEMU_OPT_NUMBER
,
17 .help
= "unit number (i.e. lun for scsi)",
20 .type
= QEMU_OPT_STRING
,
21 .help
= "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
24 .type
= QEMU_OPT_NUMBER
,
27 .type
= QEMU_OPT_NUMBER
,
28 .help
= "number of cylinders (ide disk geometry)",
31 .type
= QEMU_OPT_NUMBER
,
32 .help
= "number of heads (ide disk geometry)",
35 .type
= QEMU_OPT_NUMBER
,
36 .help
= "number of sectors (ide disk geometry)",
39 .type
= QEMU_OPT_STRING
,
40 .help
= "chs translation (auto, lba. none)",
43 .type
= QEMU_OPT_STRING
,
44 .help
= "media type (disk, cdrom)",
47 .type
= QEMU_OPT_BOOL
,
50 .type
= QEMU_OPT_STRING
,
54 .type
= QEMU_OPT_STRING
,
55 .help
= "host cache usage (none, writeback, writethrough)",
58 .type
= QEMU_OPT_STRING
,
59 .help
= "host AIO implementation (threads, native)",
62 .type
= QEMU_OPT_STRING
,
63 .help
= "disk format (raw, qcow2, ...)",
66 .type
= QEMU_OPT_STRING
,
69 .type
= QEMU_OPT_STRING
,
72 .type
= QEMU_OPT_STRING
,
73 .help
= "pci address (virtio only)",
79 QemuOptsList qemu_chardev_opts
= {
81 .head
= QTAILQ_HEAD_INITIALIZER(qemu_chardev_opts
.head
),
85 .type
= QEMU_OPT_STRING
,
88 .type
= QEMU_OPT_STRING
,
91 .type
= QEMU_OPT_STRING
,
94 .type
= QEMU_OPT_STRING
,
97 .type
= QEMU_OPT_STRING
,
100 .type
= QEMU_OPT_STRING
,
103 .type
= QEMU_OPT_NUMBER
,
106 .type
= QEMU_OPT_BOOL
,
109 .type
= QEMU_OPT_BOOL
,
112 .type
= QEMU_OPT_BOOL
,
115 .type
= QEMU_OPT_BOOL
,
118 .type
= QEMU_OPT_BOOL
,
121 .type
= QEMU_OPT_BOOL
,
124 .type
= QEMU_OPT_NUMBER
,
127 .type
= QEMU_OPT_NUMBER
,
130 .type
= QEMU_OPT_NUMBER
,
133 .type
= QEMU_OPT_NUMBER
,
136 .type
= QEMU_OPT_BOOL
,
138 { /* end if list */ }
142 QemuOptsList qemu_device_opts
= {
144 .head
= QTAILQ_HEAD_INITIALIZER(qemu_device_opts
.head
),
147 * no elements => accept any
148 * sanity checking will happen later
149 * when setting device properties
151 { /* end if list */ }
155 QemuOptsList qemu_rtc_opts
= {
157 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
161 .type
= QEMU_OPT_STRING
,
164 .type
= QEMU_OPT_STRING
,
168 .type
= QEMU_OPT_STRING
,
171 { /* end if list */ }
175 static QemuOptsList
*lists
[] = {
182 int qemu_set_option(const char *str
)
184 char group
[64], id
[64], arg
[64];
188 rc
= sscanf(str
, "%63[^.].%63[^.].%63[^=]%n", group
, id
, arg
, &offset
);
189 if (rc
< 3 || str
[offset
] != '=') {
190 qemu_error("can't parse: \"%s\"\n", str
);
194 for (i
= 0; lists
[i
] != NULL
; i
++) {
195 if (strcmp(lists
[i
]->name
, group
) == 0)
198 if (lists
[i
] == NULL
) {
199 qemu_error("there is no option group \"%s\"\n", group
);
203 opts
= qemu_opts_find(lists
[i
], id
);
205 qemu_error("there is no %s \"%s\" defined\n",
210 if (qemu_opt_set(opts
, arg
, str
+offset
+1) == -1) {
211 qemu_error("failed to set \"%s\" for %s \"%s\"\n",
212 arg
, lists
[i
]->name
, id
);