4 * Copyright IBM, Corp. 2010
7 * Gautham R Shenoy <ego@in.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
15 #include "qemu-fsdev.h"
16 #include "qemu-queue.h"
18 #include "qemu-common.h"
19 #include "qemu-config.h"
21 static QTAILQ_HEAD(FsDriverEntry_head
, FsDriverListEntry
) fsdriver_entries
=
22 QTAILQ_HEAD_INITIALIZER(fsdriver_entries
);
24 static FsDriverTable FsDrivers
[] = {
25 { .name
= "local", .ops
= &local_ops
},
26 { .name
= "handle", .ops
= &handle_ops
},
27 { .name
= "synth", .ops
= &synth_ops
},
30 int qemu_fsdev_add(QemuOpts
*opts
)
32 struct FsDriverListEntry
*fsle
;
34 const char *fsdev_id
= qemu_opts_id(opts
);
35 const char *fsdriver
= qemu_opt_get(opts
, "fsdriver");
36 const char *path
= qemu_opt_get(opts
, "path");
37 const char *sec_model
= qemu_opt_get(opts
, "security_model");
38 const char *writeout
= qemu_opt_get(opts
, "writeout");
39 bool ro
= qemu_opt_get_bool(opts
, "readonly", 0);
42 fprintf(stderr
, "fsdev: No id specified\n");
47 for (i
= 0; i
< ARRAY_SIZE(FsDrivers
); i
++) {
48 if (strcmp(FsDrivers
[i
].name
, fsdriver
) == 0) {
53 if (i
== ARRAY_SIZE(FsDrivers
)) {
54 fprintf(stderr
, "fsdev: fsdriver %s not found\n", fsdriver
);
58 fprintf(stderr
, "fsdev: No fsdriver specified\n");
62 if (!strcmp(fsdriver
, "local") && !sec_model
) {
63 fprintf(stderr
, "security model not specified, "
64 "local fs needs security model\nvalid options are:"
65 "\tsecurity_model=[passthrough|mapped|none]\n");
69 if (strcmp(fsdriver
, "local") && sec_model
) {
70 fprintf(stderr
, "only local fs driver needs security model\n");
75 fprintf(stderr
, "fsdev: No path specified.\n");
79 fsle
= g_malloc(sizeof(*fsle
));
81 fsle
->fse
.fsdev_id
= g_strdup(fsdev_id
);
82 fsle
->fse
.path
= g_strdup(path
);
83 fsle
->fse
.ops
= FsDrivers
[i
].ops
;
84 fsle
->fse
.export_flags
= 0;
86 if (!strcmp(writeout
, "immediate")) {
87 fsle
->fse
.export_flags
|= V9FS_IMMEDIATE_WRITEOUT
;
91 fsle
->fse
.export_flags
|= V9FS_RDONLY
;
93 fsle
->fse
.export_flags
&= ~V9FS_RDONLY
;
96 if (strcmp(fsdriver
, "local")) {
100 if (!strcmp(sec_model
, "passthrough")) {
101 fsle
->fse
.export_flags
|= V9FS_SM_PASSTHROUGH
;
102 } else if (!strcmp(sec_model
, "mapped")) {
103 fsle
->fse
.export_flags
|= V9FS_SM_MAPPED
;
104 } else if (!strcmp(sec_model
, "none")) {
105 fsle
->fse
.export_flags
|= V9FS_SM_NONE
;
107 fprintf(stderr
, "Invalid security model %s specified, valid options are"
108 "\n\t [passthrough|mapped|none]\n", sec_model
);
112 QTAILQ_INSERT_TAIL(&fsdriver_entries
, fsle
, next
);
116 FsDriverEntry
*get_fsdev_fsentry(char *id
)
119 struct FsDriverListEntry
*fsle
;
121 QTAILQ_FOREACH(fsle
, &fsdriver_entries
, next
) {
122 if (strcmp(fsle
->fse
.fsdev_id
, id
) == 0) {
130 static void fsdev_register_config(void)
132 qemu_add_opts(&qemu_fsdev_opts
);
133 qemu_add_opts(&qemu_virtfs_opts
);
135 machine_init(fsdev_register_config
);