4 * Copyright IBM, Corp. 2010
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "qapi/error.h"
15 #include "qemu-fsdev.h"
16 #include "qemu/queue.h"
17 #include "qemu/config-file.h"
18 #include "qemu/error-report.h"
19 #include "qemu/option.h"
22 * A table to store the various file systems and their callback operations.
34 typedef struct FsDriverTable {
40 typedef struct FsDriverListEntry {
42 QTAILQ_ENTRY(FsDriverListEntry) next;
45 static QTAILQ_HEAD(, FsDriverListEntry) fsdriver_entries =
46 QTAILQ_HEAD_INITIALIZER(fsdriver_entries);
48 #define COMMON_FS_DRIVER_OPTIONS "id", "fsdriver", "readonly"
50 static FsDriverTable FsDrivers[] = {
54 .opts = (const char * []) {
55 COMMON_FS_DRIVER_OPTIONS,
61 "throttling.bps-total",
62 "throttling.bps-read",
63 "throttling.bps-write",
64 "throttling.iops-total",
65 "throttling.iops-read",
66 "throttling.iops-write",
67 "throttling.bps-total-max",
68 "throttling.bps-read-max",
69 "throttling.bps-write-max",
70 "throttling.iops-total-max",
71 "throttling.iops-read-max",
72 "throttling.iops-write-max",
73 "throttling.bps-total-max-length",
74 "throttling.bps-read-max-length",
75 "throttling.bps-write-max-length",
76 "throttling.iops-total-max-length",
77 "throttling.iops-read-max-length",
78 "throttling.iops-write-max-length",
79 "throttling.iops-size",
85 .opts = (const char * []) {
86 COMMON_FS_DRIVER_OPTIONS,
92 .opts = (const char * []) {
93 COMMON_FS_DRIVER_OPTIONS,
101 static int validate_opt(void *opaque, const char *name, const char *value,
104 FsDriverTable *drv = opaque;
107 for (opt = drv->opts; *opt; opt++) {
108 if (!strcmp(*opt, name)) {
113 error_setg(errp, "'%s' is invalid for fsdriver '%s'", name, drv->name);
117 int qemu_fsdev_add(QemuOpts *opts, Error **errp)
120 struct FsDriverListEntry *fsle;
121 const char *fsdev_id = qemu_opts_id(opts);
122 const char *fsdriver = qemu_opt_get(opts, "fsdriver");
123 const char *writeout = qemu_opt_get(opts, "writeout");
124 bool ro = qemu_opt_get_bool(opts, "readonly", 0);
127 error_setg(errp, "fsdev: No id specified");
132 for (i = 0; i < ARRAY_SIZE(FsDrivers); i++) {
133 if (strcmp(FsDrivers[i].name, fsdriver) == 0) {
138 if (i == ARRAY_SIZE(FsDrivers)) {
139 error_setg(errp, "fsdev: fsdriver %s not found", fsdriver);
143 error_setg(errp, "fsdev: No fsdriver specified");
147 if (qemu_opt_foreach(opts, validate_opt, &FsDrivers[i], errp)) {
151 fsle = g_malloc0(sizeof(*fsle));
152 fsle->fse.fsdev_id = g_strdup(fsdev_id);
153 fsle->fse.ops = FsDrivers[i].ops;
155 if (!strcmp(writeout, "immediate")) {
156 fsle->fse.export_flags |= V9FS_IMMEDIATE_WRITEOUT;
160 fsle->fse.export_flags |= V9FS_RDONLY;
162 fsle->fse.export_flags &= ~V9FS_RDONLY;
165 if (fsle->fse.ops->parse_opts) {
166 if (fsle->fse.ops->parse_opts(opts, &fsle->fse, errp)) {
167 g_free(fsle->fse.fsdev_id);
173 QTAILQ_INSERT_TAIL(&fsdriver_entries, fsle, next);
177 FsDriverEntry *get_fsdev_fsentry(char *id)
180 struct FsDriverListEntry *fsle;
182 QTAILQ_FOREACH(fsle, &fsdriver_entries, next) {
183 if (strcmp(fsle->fse.fsdev_id, id) == 0) {