Statistics
| Branch: | Revision:

root / qemu-config.c @ 29b0040b

History | View | Annotate | Download (14.5 kB)

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"
7

    
8
static QemuOptsList qemu_drive_opts = {
9
    .name = "drive",
10
    .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head),
11
    .desc = {
12
        {
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
        { /* end of list */ }
84
    },
85
};
86

    
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 = {
92
        {
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,
101
        },{
102
            .name = "port",
103
            .type = QEMU_OPT_STRING,
104
        },{
105
            .name = "localaddr",
106
            .type = QEMU_OPT_STRING,
107
        },{
108
            .name = "localport",
109
            .type = QEMU_OPT_STRING,
110
        },{
111
            .name = "to",
112
            .type = QEMU_OPT_NUMBER,
113
        },{
114
            .name = "ipv4",
115
            .type = QEMU_OPT_BOOL,
116
        },{
117
            .name = "ipv6",
118
            .type = QEMU_OPT_BOOL,
119
        },{
120
            .name = "wait",
121
            .type = QEMU_OPT_BOOL,
122
        },{
123
            .name = "server",
124
            .type = QEMU_OPT_BOOL,
125
        },{
126
            .name = "delay",
127
            .type = QEMU_OPT_BOOL,
128
        },{
129
            .name = "telnet",
130
            .type = QEMU_OPT_BOOL,
131
        },{
132
            .name = "width",
133
            .type = QEMU_OPT_NUMBER,
134
        },{
135
            .name = "height",
136
            .type = QEMU_OPT_NUMBER,
137
        },{
138
            .name = "cols",
139
            .type = QEMU_OPT_NUMBER,
140
        },{
141
            .name = "rows",
142
            .type = QEMU_OPT_NUMBER,
143
        },{
144
            .name = "mux",
145
            .type = QEMU_OPT_BOOL,
146
        },{
147
            .name = "signal",
148
            .type = QEMU_OPT_BOOL,
149
        },
150
        { /* end of list */ }
151
    },
152
};
153

    
154
QemuOptsList qemu_fsdev_opts = {
155
    .name = "fsdev",
156
    .implied_opt_name = "fstype",
157
    .head = QTAILQ_HEAD_INITIALIZER(qemu_fsdev_opts.head),
158
    .desc = {
159
        {
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,
168
        },
169
        { /*End of list */ }
170
    },
171
};
172

    
173
QemuOptsList qemu_virtfs_opts = {
174
    .name = "virtfs",
175
    .implied_opt_name = "fstype",
176
    .head = QTAILQ_HEAD_INITIALIZER(qemu_virtfs_opts.head),
177
    .desc = {
178
        {
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,
190
        },
191

    
192
        { /*End of list */ }
193
    },
194
};
195

    
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 = {
201
        /*
202
         * no elements => accept any
203
         * sanity checking will happen later
204
         * when setting device properties
205
         */
206
        { /* end of list */ }
207
    },
208
};
209

    
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 = {
215
        /*
216
         * no elements => accept any params
217
         * validation will happen later
218
         */
219
        { /* end of list */ }
220
    },
221
};
222

    
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 = {
228
        /*
229
         * no elements => accept any params
230
         * validation will happen later
231
         */
232
        { /* end of list */ }
233
    },
234
};
235

    
236
static QemuOptsList qemu_rtc_opts = {
237
    .name = "rtc",
238
    .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
239
    .desc = {
240
        {
241
            .name = "base",
242
            .type = QEMU_OPT_STRING,
243
        },{
244
            .name = "clock",
245
            .type = QEMU_OPT_STRING,
246
        },{
247
            .name = "driftfix",
248
            .type = QEMU_OPT_STRING,
249
        },
250
        { /* end of list */ }
251
    },
252
};
253

    
254
static QemuOptsList qemu_global_opts = {
255
    .name = "global",
256
    .head = QTAILQ_HEAD_INITIALIZER(qemu_global_opts.head),
257
    .desc = {
258
        {
259
            .name = "driver",
260
            .type = QEMU_OPT_STRING,
261
        },{
262
            .name = "property",
263
            .type = QEMU_OPT_STRING,
264
        },{
265
            .name = "value",
266
            .type = QEMU_OPT_STRING,
267
        },
268
        { /* end of list */ }
269
    },
270
};
271

    
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 = {
277
        {
278
            .name = "mode",
279
            .type = QEMU_OPT_STRING,
280
        },{
281
            .name = "chardev",
282
            .type = QEMU_OPT_STRING,
283
        },{
284
            .name = "default",
285
            .type = QEMU_OPT_BOOL,
286
        },
287
        { /* end of list */ }
288
    },
289
};
290

    
291
#ifdef CONFIG_SIMPLE_TRACE
292
static QemuOptsList qemu_trace_opts = {
293
    .name = "trace",
294
    .implied_opt_name = "trace",
295
    .head = QTAILQ_HEAD_INITIALIZER(qemu_trace_opts.head),
296
    .desc = {
297
        {
298
            .name = "file",
299
            .type = QEMU_OPT_STRING,
300
        },
301
        { /* end if list */ }
302
    },
303
};
304
#endif
305

    
306
static QemuOptsList qemu_cpudef_opts = {
307
    .name = "cpudef",
308
    .head = QTAILQ_HEAD_INITIALIZER(qemu_cpudef_opts.head),
309
    .desc = {
310
        {
311
            .name = "name",
312
            .type = QEMU_OPT_STRING,
313
        },{
314
            .name = "level",
315
            .type = QEMU_OPT_NUMBER,
316
        },{
317
            .name = "vendor",
318
            .type = QEMU_OPT_STRING,
319
        },{
320
            .name = "family",
321
            .type = QEMU_OPT_NUMBER,
322
        },{
323
            .name = "model",
324
            .type = QEMU_OPT_NUMBER,
325
        },{
326
            .name = "stepping",
327
            .type = QEMU_OPT_NUMBER,
328
        },{
329
            .name = "feature_edx",      /* cpuid 0000_0001.edx */
330
            .type = QEMU_OPT_STRING,
331
        },{
332
            .name = "feature_ecx",      /* cpuid 0000_0001.ecx */
333
            .type = QEMU_OPT_STRING,
334
        },{
335
            .name = "extfeature_edx",   /* cpuid 8000_0001.edx */
336
            .type = QEMU_OPT_STRING,
337
        },{
338
            .name = "extfeature_ecx",   /* cpuid 8000_0001.ecx */
339
            .type = QEMU_OPT_STRING,
340
        },{
341
            .name = "xlevel",
342
            .type = QEMU_OPT_NUMBER,
343
        },{
344
            .name = "model_id",
345
            .type = QEMU_OPT_STRING,
346
        },{
347
            .name = "vendor_override",
348
            .type = QEMU_OPT_NUMBER,
349
        },
350
        { /* end of list */ }
351
    },
352
};
353

    
354
QemuOptsList qemu_spice_opts = {
355
    .name = "spice",
356
    .head = QTAILQ_HEAD_INITIALIZER(qemu_spice_opts.head),
357
    .desc = {
358
        {
359
            .name = "port",
360
            .type = QEMU_OPT_NUMBER,
361
        },{
362
            .name = "password",
363
            .type = QEMU_OPT_STRING,
364
        },{
365
            .name = "disable-ticketing",
366
            .type = QEMU_OPT_BOOL,
367
        },
368
        { /* end if list */ }
369
    },
370
};
371

    
372
static QemuOptsList *vm_config_groups[32] = {
373
    &qemu_drive_opts,
374
    &qemu_chardev_opts,
375
    &qemu_device_opts,
376
    &qemu_netdev_opts,
377
    &qemu_net_opts,
378
    &qemu_rtc_opts,
379
    &qemu_global_opts,
380
    &qemu_mon_opts,
381
    &qemu_cpudef_opts,
382
#ifdef CONFIG_SIMPLE_TRACE
383
    &qemu_trace_opts,
384
#endif
385
    NULL,
386
};
387

    
388
static QemuOptsList *find_list(QemuOptsList **lists, const char *group)
389
{
390
    int i;
391

    
392
    for (i = 0; lists[i] != NULL; i++) {
393
        if (strcmp(lists[i]->name, group) == 0)
394
            break;
395
    }
396
    if (lists[i] == NULL) {
397
        error_report("there is no option group \"%s\"", group);
398
    }
399
    return lists[i];
400
}
401

    
402
QemuOptsList *qemu_find_opts(const char *group)
403
{
404
    return find_list(vm_config_groups, group);
405
}
406

    
407
void qemu_add_opts(QemuOptsList *list)
408
{
409
    int entries, i;
410

    
411
    entries = ARRAY_SIZE(vm_config_groups);
412
    entries--; /* keep list NULL terminated */
413
    for (i = 0; i < entries; i++) {
414
        if (vm_config_groups[i] == NULL) {
415
            vm_config_groups[i] = list;
416
            return;
417
        }
418
    }
419
    fprintf(stderr, "ran out of space in vm_config_groups");
420
    abort();
421
}
422

    
423
int qemu_set_option(const char *str)
424
{
425
    char group[64], id[64], arg[64];
426
    QemuOptsList *list;
427
    QemuOpts *opts;
428
    int rc, offset;
429

    
430
    rc = sscanf(str, "%63[^.].%63[^.].%63[^=]%n", group, id, arg, &offset);
431
    if (rc < 3 || str[offset] != '=') {
432
        error_report("can't parse: \"%s\"", str);
433
        return -1;
434
    }
435

    
436
    list = qemu_find_opts(group);
437
    if (list == NULL) {
438
        return -1;
439
    }
440

    
441
    opts = qemu_opts_find(list, id);
442
    if (!opts) {
443
        error_report("there is no %s \"%s\" defined",
444
                     list->name, id);
445
        return -1;
446
    }
447

    
448
    if (qemu_opt_set(opts, arg, str+offset+1) == -1) {
449
        return -1;
450
    }
451
    return 0;
452
}
453

    
454
int qemu_global_option(const char *str)
455
{
456
    char driver[64], property[64];
457
    QemuOpts *opts;
458
    int rc, offset;
459

    
460
    rc = sscanf(str, "%63[^.].%63[^=]%n", driver, property, &offset);
461
    if (rc < 2 || str[offset] != '=') {
462
        error_report("can't parse: \"%s\"", str);
463
        return -1;
464
    }
465

    
466
    opts = qemu_opts_create(&qemu_global_opts, NULL, 0);
467
    qemu_opt_set(opts, "driver", driver);
468
    qemu_opt_set(opts, "property", property);
469
    qemu_opt_set(opts, "value", str+offset+1);
470
    return 0;
471
}
472

    
473
struct ConfigWriteData {
474
    QemuOptsList *list;
475
    FILE *fp;
476
};
477

    
478
static int config_write_opt(const char *name, const char *value, void *opaque)
479
{
480
    struct ConfigWriteData *data = opaque;
481

    
482
    fprintf(data->fp, "  %s = \"%s\"\n", name, value);
483
    return 0;
484
}
485

    
486
static int config_write_opts(QemuOpts *opts, void *opaque)
487
{
488
    struct ConfigWriteData *data = opaque;
489
    const char *id = qemu_opts_id(opts);
490

    
491
    if (id) {
492
        fprintf(data->fp, "[%s \"%s\"]\n", data->list->name, id);
493
    } else {
494
        fprintf(data->fp, "[%s]\n", data->list->name);
495
    }
496
    qemu_opt_foreach(opts, config_write_opt, data, 0);
497
    fprintf(data->fp, "\n");
498
    return 0;
499
}
500

    
501
void qemu_config_write(FILE *fp)
502
{
503
    struct ConfigWriteData data = { .fp = fp };
504
    QemuOptsList **lists = vm_config_groups;
505
    int i;
506

    
507
    fprintf(fp, "# qemu config file\n\n");
508
    for (i = 0; lists[i] != NULL; i++) {
509
        data.list = lists[i];
510
        qemu_opts_foreach(data.list, config_write_opts, &data, 0);
511
    }
512
}
513

    
514
int qemu_config_parse(FILE *fp, QemuOptsList **lists, const char *fname)
515
{
516
    char line[1024], group[64], id[64], arg[64], value[1024];
517
    Location loc;
518
    QemuOptsList *list = NULL;
519
    QemuOpts *opts = NULL;
520
    int res = -1, lno = 0;
521

    
522
    loc_push_none(&loc);
523
    while (fgets(line, sizeof(line), fp) != NULL) {
524
        loc_set_file(fname, ++lno);
525
        if (line[0] == '\n') {
526
            /* skip empty lines */
527
            continue;
528
        }
529
        if (line[0] == '#') {
530
            /* comment */
531
            continue;
532
        }
533
        if (sscanf(line, "[%63s \"%63[^\"]\"]", group, id) == 2) {
534
            /* group with id */
535
            list = find_list(lists, group);
536
            if (list == NULL)
537
                goto out;
538
            opts = qemu_opts_create(list, id, 1);
539
            continue;
540
        }
541
        if (sscanf(line, "[%63[^]]]", group) == 1) {
542
            /* group without id */
543
            list = find_list(lists, group);
544
            if (list == NULL)
545
                goto out;
546
            opts = qemu_opts_create(list, NULL, 0);
547
            continue;
548
        }
549
        if (sscanf(line, " %63s = \"%1023[^\"]\"", arg, value) == 2) {
550
            /* arg = value */
551
            if (opts == NULL) {
552
                error_report("no group defined");
553
                goto out;
554
            }
555
            if (qemu_opt_set(opts, arg, value) != 0) {
556
                goto out;
557
            }
558
            continue;
559
        }
560
        error_report("parse error");
561
        goto out;
562
    }
563
    if (ferror(fp)) {
564
        error_report("error reading file");
565
        goto out;
566
    }
567
    res = 0;
568
out:
569
    loc_pop(&loc);
570
    return res;
571
}
572

    
573
int qemu_read_config_file(const char *filename)
574
{
575
    FILE *f = fopen(filename, "r");
576
    int ret;
577

    
578
    if (f == NULL) {
579
        return -errno;
580
    }
581

    
582
    ret = qemu_config_parse(f, vm_config_groups, filename);
583
    fclose(f);
584

    
585
    if (ret == 0) {
586
        return 0;
587
    } else {
588
        return -EINVAL;
589
    }
590
}