2010-04-29 12:14:43 +00:00
|
|
|
/*
|
|
|
|
* Virtio 9p
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2010
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Gautham R Shenoy <ego@in.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "qemu-fsdev.h"
|
|
|
|
#include "qemu-queue.h"
|
|
|
|
#include "osdep.h"
|
|
|
|
#include "qemu-common.h"
|
2010-08-25 10:19:49 +00:00
|
|
|
#include "qemu-config.h"
|
2010-04-29 12:14:43 +00:00
|
|
|
|
|
|
|
static QTAILQ_HEAD(FsTypeEntry_head, FsTypeListEntry) fstype_entries =
|
|
|
|
QTAILQ_HEAD_INITIALIZER(fstype_entries);
|
|
|
|
|
|
|
|
static FsTypeTable FsTypes[] = {
|
2010-04-29 12:14:44 +00:00
|
|
|
{ .name = "local", .ops = &local_ops},
|
2011-08-02 06:05:54 +00:00
|
|
|
{ .name = "handle", .ops = &handle_ops},
|
2010-04-29 12:14:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int qemu_fsdev_add(QemuOpts *opts)
|
|
|
|
{
|
|
|
|
struct FsTypeListEntry *fsle;
|
|
|
|
int i;
|
2010-10-18 10:06:36 +00:00
|
|
|
const char *fsdev_id = qemu_opts_id(opts);
|
|
|
|
const char *fstype = qemu_opt_get(opts, "fstype");
|
|
|
|
const char *path = qemu_opt_get(opts, "path");
|
|
|
|
const char *sec_model = qemu_opt_get(opts, "security_model");
|
2011-10-12 13:41:23 +00:00
|
|
|
const char *writeout = qemu_opt_get(opts, "writeout");
|
|
|
|
|
2010-04-29 12:14:43 +00:00
|
|
|
|
2010-10-18 10:06:36 +00:00
|
|
|
if (!fsdev_id) {
|
2010-04-29 12:14:43 +00:00
|
|
|
fprintf(stderr, "fsdev: No id specified\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-10-18 10:06:36 +00:00
|
|
|
if (fstype) {
|
|
|
|
for (i = 0; i < ARRAY_SIZE(FsTypes); i++) {
|
|
|
|
if (strcmp(FsTypes[i].name, fstype) == 0) {
|
|
|
|
break;
|
|
|
|
}
|
2010-04-29 12:14:43 +00:00
|
|
|
}
|
|
|
|
|
2010-10-18 10:06:36 +00:00
|
|
|
if (i == ARRAY_SIZE(FsTypes)) {
|
|
|
|
fprintf(stderr, "fsdev: fstype %s not found\n", fstype);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "fsdev: No fstype specified\n");
|
2010-04-29 12:14:43 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-10-18 10:06:36 +00:00
|
|
|
if (!sec_model) {
|
2010-06-14 20:34:40 +00:00
|
|
|
fprintf(stderr, "fsdev: No security_model specified.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-10-18 10:06:36 +00:00
|
|
|
if (!path) {
|
|
|
|
fprintf(stderr, "fsdev: No path specified.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-08-21 03:09:37 +00:00
|
|
|
fsle = g_malloc(sizeof(*fsle));
|
2010-04-29 12:14:43 +00:00
|
|
|
|
2011-08-21 03:09:37 +00:00
|
|
|
fsle->fse.fsdev_id = g_strdup(fsdev_id);
|
|
|
|
fsle->fse.path = g_strdup(path);
|
|
|
|
fsle->fse.security_model = g_strdup(sec_model);
|
2010-04-29 12:14:43 +00:00
|
|
|
fsle->fse.ops = FsTypes[i].ops;
|
2011-10-12 13:41:23 +00:00
|
|
|
fsle->fse.export_flags = 0;
|
|
|
|
if (writeout) {
|
|
|
|
if (!strcmp(writeout, "immediate")) {
|
|
|
|
fsle->fse.export_flags = V9FS_IMMEDIATE_WRITEOUT;
|
|
|
|
}
|
|
|
|
}
|
2010-04-29 12:14:43 +00:00
|
|
|
QTAILQ_INSERT_TAIL(&fstype_entries, fsle, next);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
FsTypeEntry *get_fsdev_fsentry(char *id)
|
|
|
|
{
|
2010-10-18 10:06:36 +00:00
|
|
|
if (id) {
|
|
|
|
struct FsTypeListEntry *fsle;
|
2010-04-29 12:14:43 +00:00
|
|
|
|
2010-10-18 10:06:36 +00:00
|
|
|
QTAILQ_FOREACH(fsle, &fstype_entries, next) {
|
|
|
|
if (strcmp(fsle->fse.fsdev_id, id) == 0) {
|
|
|
|
return &fsle->fse;
|
|
|
|
}
|
2010-04-29 12:14:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-08-25 10:19:49 +00:00
|
|
|
|
|
|
|
static void fsdev_register_config(void)
|
|
|
|
{
|
|
|
|
qemu_add_opts(&qemu_fsdev_opts);
|
|
|
|
qemu_add_opts(&qemu_virtfs_opts);
|
|
|
|
}
|
|
|
|
machine_init(fsdev_register_config);
|
|
|
|
|