1 #include "qemu-common.h"
2 #include "qemu-option.h"
3 #include "qemu-config.h"
5 QemuOptsList qemu_drive_opts
= {
7 .head
= TAILQ_HEAD_INITIALIZER(qemu_drive_opts
.head
),
11 .type
= QEMU_OPT_NUMBER
,
15 .type
= QEMU_OPT_NUMBER
,
16 .help
= "unit number (i.e. lun for scsi)",
19 .type
= QEMU_OPT_STRING
,
20 .help
= "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
23 .type
= QEMU_OPT_NUMBER
,
26 .type
= QEMU_OPT_NUMBER
,
27 .help
= "number of cylinders (ide disk geometry)",
30 .type
= QEMU_OPT_NUMBER
,
31 .help
= "number of heads (ide disk geometry)",
34 .type
= QEMU_OPT_NUMBER
,
35 .help
= "number of sectors (ide disk geometry)",
38 .type
= QEMU_OPT_STRING
,
39 .help
= "chs translation (auto, lba. none)",
42 .type
= QEMU_OPT_STRING
,
43 .help
= "media type (disk, cdrom)",
46 .type
= QEMU_OPT_BOOL
,
49 .type
= QEMU_OPT_STRING
,
53 .type
= QEMU_OPT_STRING
,
54 .help
= "host cache usage (none, writeback, writethrough)",
57 .type
= QEMU_OPT_STRING
,
58 .help
= "host AIO implementation (threads, native)",
61 .type
= QEMU_OPT_STRING
,
62 .help
= "disk format (raw, qcow2, ...)",
65 .type
= QEMU_OPT_STRING
,
68 .type
= QEMU_OPT_STRING
,
71 .type
= QEMU_OPT_STRING
,
72 .help
= "pci address (virtio only)",
78 QemuOptsList qemu_chardev_opts
= {
80 .head
= TAILQ_HEAD_INITIALIZER(qemu_chardev_opts
.head
),
84 .type
= QEMU_OPT_STRING
,
87 .type
= QEMU_OPT_STRING
,
93 QemuOptsList qemu_device_opts
= {
95 .head
= TAILQ_HEAD_INITIALIZER(qemu_device_opts
.head
),
98 * no elements => accept any
99 * sanity checking will happen later
100 * when setting device properties
102 { /* end if list */ }
106 static QemuOptsList
*lists
[] = {
113 int qemu_set_option(const char *str
)
115 char group
[64], id
[64], arg
[64];
119 rc
= sscanf(str
, "%63[^.].%63[^.].%63[^=]%n", group
, id
, arg
, &offset
);
120 if (rc
< 3 || str
[offset
] != '=') {
121 fprintf(stderr
, "can't parse: \"%s\"\n", str
);
125 for (i
= 0; lists
[i
] != NULL
; i
++) {
126 if (strcmp(lists
[i
]->name
, group
) == 0)
129 if (lists
[i
] == NULL
) {
130 fprintf(stderr
, "there is no option group \"%s\"\n", group
);
134 opts
= qemu_opts_find(lists
[i
], id
);
136 fprintf(stderr
, "there is no %s \"%s\" defined\n",
141 if (-1 == qemu_opt_set(opts
, arg
, str
+offset
+1)) {
142 fprintf(stderr
, "failed to set \"%s\" for %s \"%s\"\n",
143 arg
, lists
[i
]->name
, id
);