2011-06-01 09:05:13 +02:00
|
|
|
/*
|
|
|
|
* Virtio 9p backend
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2010
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/virtio/virtio.h"
|
2013-04-09 10:22:35 +02:00
|
|
|
#include "hw/virtio/virtio-9p.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/i386/pc.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/sockets.h"
|
2011-06-01 09:05:13 +02:00
|
|
|
#include "virtio-9p.h"
|
|
|
|
#include "fsdev/qemu-fsdev.h"
|
|
|
|
#include "virtio-9p-xattr.h"
|
2011-04-24 03:40:22 +02:00
|
|
|
#include "virtio-9p-coth.h"
|
2014-06-24 19:49:49 +02:00
|
|
|
#include "hw/virtio/virtio-access.h"
|
2011-06-01 09:05:13 +02:00
|
|
|
|
2015-07-27 11:49:19 +02:00
|
|
|
static uint64_t virtio_9p_get_features(VirtIODevice *vdev, uint64_t features,
|
|
|
|
Error **errp)
|
2011-06-01 09:05:13 +02:00
|
|
|
{
|
2014-12-11 14:25:05 +01:00
|
|
|
virtio_add_feature(&features, VIRTIO_9P_MOUNT_TAG);
|
2011-06-01 09:05:13 +02:00
|
|
|
return features;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_9p_get_config(VirtIODevice *vdev, uint8_t *config)
|
|
|
|
{
|
2011-12-04 18:05:28 +01:00
|
|
|
int len;
|
2011-06-01 09:05:13 +02:00
|
|
|
struct virtio_9p_config *cfg;
|
2013-04-23 11:08:43 +02:00
|
|
|
V9fsState *s = VIRTIO_9P(vdev);
|
2011-06-01 09:05:13 +02:00
|
|
|
|
2011-12-04 18:05:28 +01:00
|
|
|
len = strlen(s->tag);
|
|
|
|
cfg = g_malloc0(sizeof(struct virtio_9p_config) + len);
|
2014-06-24 19:49:49 +02:00
|
|
|
virtio_stw_p(vdev, &cfg->tag_len, len);
|
2011-12-04 18:05:28 +01:00
|
|
|
/* We don't copy the terminating null to config space */
|
|
|
|
memcpy(cfg->tag, s->tag, len);
|
2011-06-01 09:05:13 +02:00
|
|
|
memcpy(config, cfg, s->config_size);
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free(cfg);
|
2011-06-01 09:05:13 +02:00
|
|
|
}
|
|
|
|
|
2013-07-30 01:04:01 +02:00
|
|
|
static void virtio_9p_device_realize(DeviceState *dev, Error **errp)
|
2011-08-02 08:05:54 +02:00
|
|
|
{
|
2013-07-30 01:04:01 +02:00
|
|
|
VirtIODevice *vdev = VIRTIO_DEVICE(dev);
|
|
|
|
V9fsState *s = VIRTIO_9P(dev);
|
2011-06-01 09:05:13 +02:00
|
|
|
int i, len;
|
|
|
|
struct stat stat;
|
2011-10-13 08:58:04 +02:00
|
|
|
FsDriverEntry *fse;
|
2011-10-11 07:45:56 +02:00
|
|
|
V9fsPath path;
|
2011-06-01 09:05:13 +02:00
|
|
|
|
2013-08-01 00:32:45 +02:00
|
|
|
virtio_init(vdev, "virtio-9p", VIRTIO_ID_9P,
|
2013-04-23 11:08:42 +02:00
|
|
|
sizeof(struct virtio_9p_config) + MAX_TAG_LEN);
|
2013-04-23 11:08:40 +02:00
|
|
|
|
2011-06-01 09:05:13 +02:00
|
|
|
/* initialize pdu allocator */
|
|
|
|
QLIST_INIT(&s->free_list);
|
2011-08-02 08:06:17 +02:00
|
|
|
QLIST_INIT(&s->active_list);
|
2011-06-01 09:05:13 +02:00
|
|
|
for (i = 0; i < (MAX_REQ - 1); i++) {
|
|
|
|
QLIST_INSERT_HEAD(&s->free_list, &s->pdus[i], next);
|
|
|
|
}
|
|
|
|
|
2013-04-23 11:08:42 +02:00
|
|
|
s->vq = virtio_add_queue(vdev, MAX_REQ, handle_9p_output);
|
2011-06-01 09:05:13 +02:00
|
|
|
|
2013-08-01 01:59:47 +02:00
|
|
|
v9fs_path_init(&path);
|
|
|
|
|
2013-04-23 11:08:42 +02:00
|
|
|
fse = get_fsdev_fsentry(s->fsconf.fsdev_id);
|
2011-06-01 09:05:13 +02:00
|
|
|
|
|
|
|
if (!fse) {
|
|
|
|
/* We don't have a fsdev identified by fsdev_id */
|
2013-07-30 01:04:01 +02:00
|
|
|
error_setg(errp, "Virtio-9p device couldn't find fsdev with the "
|
|
|
|
"id = %s",
|
|
|
|
s->fsconf.fsdev_id ? s->fsconf.fsdev_id : "NULL");
|
2013-07-04 11:21:18 +02:00
|
|
|
goto out;
|
2011-06-01 09:05:13 +02:00
|
|
|
}
|
|
|
|
|
2013-04-23 11:08:42 +02:00
|
|
|
if (!s->fsconf.tag) {
|
2011-12-14 09:18:59 +01:00
|
|
|
/* we haven't specified a mount_tag */
|
2013-07-30 01:04:01 +02:00
|
|
|
error_setg(errp, "fsdev with id %s needs mount_tag arguments",
|
|
|
|
s->fsconf.fsdev_id);
|
2013-07-04 11:21:18 +02:00
|
|
|
goto out;
|
2011-06-01 09:05:13 +02:00
|
|
|
}
|
|
|
|
|
2011-10-13 09:51:00 +02:00
|
|
|
s->ctx.export_flags = fse->export_flags;
|
2013-01-22 11:07:57 +01:00
|
|
|
s->ctx.fs_root = g_strdup(fse->path);
|
2011-10-13 09:51:00 +02:00
|
|
|
s->ctx.exops.get_st_gen = NULL;
|
2013-04-23 11:08:42 +02:00
|
|
|
len = strlen(s->fsconf.tag);
|
2011-12-04 18:05:28 +01:00
|
|
|
if (len > MAX_TAG_LEN - 1) {
|
2013-07-30 01:04:01 +02:00
|
|
|
error_setg(errp, "mount tag '%s' (%d bytes) is longer than "
|
|
|
|
"maximum (%d bytes)", s->fsconf.tag, len, MAX_TAG_LEN - 1);
|
2013-07-04 11:21:18 +02:00
|
|
|
goto out;
|
2011-06-01 09:05:13 +02:00
|
|
|
}
|
2011-12-04 18:05:28 +01:00
|
|
|
|
2013-07-04 11:21:18 +02:00
|
|
|
s->tag = g_strdup(s->fsconf.tag);
|
2011-06-01 09:05:13 +02:00
|
|
|
s->ctx.uid = -1;
|
|
|
|
|
|
|
|
s->ops = fse->ops;
|
2011-12-04 18:05:28 +01:00
|
|
|
s->config_size = sizeof(struct virtio_9p_config) + len;
|
2011-05-22 12:03:57 +02:00
|
|
|
s->fid_list = NULL;
|
2011-05-24 11:40:56 +02:00
|
|
|
qemu_co_rwlock_init(&s->rename_lock);
|
2011-06-01 09:05:13 +02:00
|
|
|
|
2011-08-02 08:05:54 +02:00
|
|
|
if (s->ops->init(&s->ctx) < 0) {
|
2013-07-30 01:04:01 +02:00
|
|
|
error_setg(errp, "Virtio-9p Failed to initialize fs-driver with id:%s"
|
|
|
|
" and export path:%s", s->fsconf.fsdev_id, s->ctx.fs_root);
|
2013-07-04 11:21:18 +02:00
|
|
|
goto out;
|
2011-08-02 08:05:54 +02:00
|
|
|
}
|
2011-04-24 03:40:22 +02:00
|
|
|
if (v9fs_init_worker_threads() < 0) {
|
2013-07-30 01:04:01 +02:00
|
|
|
error_setg(errp, "worker thread initialization failed");
|
2013-07-04 11:21:18 +02:00
|
|
|
goto out;
|
2011-04-24 03:40:22 +02:00
|
|
|
}
|
2011-10-11 07:45:56 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check details of export path, We need to use fs driver
|
|
|
|
* call back to do that. Since we are in the init path, we don't
|
|
|
|
* use co-routines here.
|
|
|
|
*/
|
|
|
|
if (s->ops->name_to_path(&s->ctx, NULL, "/", &path) < 0) {
|
2013-07-30 01:04:01 +02:00
|
|
|
error_setg(errp,
|
|
|
|
"error in converting name to path %s", strerror(errno));
|
2013-07-04 11:21:18 +02:00
|
|
|
goto out;
|
2011-10-11 07:45:56 +02:00
|
|
|
}
|
|
|
|
if (s->ops->lstat(&s->ctx, &path, &stat)) {
|
2013-07-30 01:04:01 +02:00
|
|
|
error_setg(errp, "share path %s does not exist", fse->path);
|
2013-07-04 11:21:18 +02:00
|
|
|
goto out;
|
2011-10-11 07:45:56 +02:00
|
|
|
} else if (!S_ISDIR(stat.st_mode)) {
|
2013-07-30 01:04:01 +02:00
|
|
|
error_setg(errp, "share path %s is not a directory", fse->path);
|
2013-07-04 11:21:18 +02:00
|
|
|
goto out;
|
2011-10-11 07:45:56 +02:00
|
|
|
}
|
|
|
|
v9fs_path_free(&path);
|
|
|
|
|
2013-07-30 01:04:01 +02:00
|
|
|
return;
|
2013-07-04 11:21:18 +02:00
|
|
|
out:
|
|
|
|
g_free(s->ctx.fs_root);
|
|
|
|
g_free(s->tag);
|
|
|
|
virtio_cleanup(vdev);
|
|
|
|
v9fs_path_free(&path);
|
2013-04-23 11:08:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* virtio-9p device */
|
|
|
|
|
|
|
|
static Property virtio_9p_properties[] = {
|
2015-06-10 17:04:35 +02:00
|
|
|
DEFINE_PROP_STRING("mount_tag", V9fsState, fsconf.tag),
|
|
|
|
DEFINE_PROP_STRING("fsdev", V9fsState, fsconf.fsdev_id),
|
2013-04-23 11:08:40 +02:00
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
|
|
|
static void virtio_9p_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
|
|
|
VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
|
2013-07-30 01:04:01 +02:00
|
|
|
|
2013-04-23 11:08:40 +02:00
|
|
|
dc->props = virtio_9p_properties;
|
2013-07-29 16:17:45 +02:00
|
|
|
set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
|
2013-07-30 01:04:01 +02:00
|
|
|
vdc->realize = virtio_9p_device_realize;
|
2013-04-23 11:08:40 +02:00
|
|
|
vdc->get_features = virtio_9p_get_features;
|
|
|
|
vdc->get_config = virtio_9p_get_config;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo virtio_device_info = {
|
|
|
|
.name = TYPE_VIRTIO_9P,
|
|
|
|
.parent = TYPE_VIRTIO_DEVICE,
|
|
|
|
.instance_size = sizeof(V9fsState),
|
|
|
|
.class_init = virtio_9p_class_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void virtio_9p_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&virtio_device_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(virtio_9p_register_types)
|