virtio-9p-device.c 4.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * 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.
 *
 */

P
Paolo Bonzini 已提交
14
#include "hw/virtio/virtio.h"
15
#include "hw/virtio/virtio-9p.h"
P
Paolo Bonzini 已提交
16
#include "hw/i386/pc.h"
17
#include "qemu/sockets.h"
18 19 20
#include "virtio-9p.h"
#include "fsdev/qemu-fsdev.h"
#include "virtio-9p-xattr.h"
21
#include "virtio-9p-coth.h"
22
#include "hw/virtio/virtio-access.h"
23

J
Jason Wang 已提交
24 25
static uint64_t virtio_9p_get_features(VirtIODevice *vdev, uint64_t features,
                                       Error **errp)
26
{
27
    virtio_add_feature(&features, VIRTIO_9P_MOUNT_TAG);
28 29 30 31 32
    return features;
}

static void virtio_9p_get_config(VirtIODevice *vdev, uint8_t *config)
{
33
    int len;
34
    struct virtio_9p_config *cfg;
K
KONRAD Frederic 已提交
35
    V9fsState *s = VIRTIO_9P(vdev);
36

37 38
    len = strlen(s->tag);
    cfg = g_malloc0(sizeof(struct virtio_9p_config) + len);
39
    virtio_stw_p(vdev, &cfg->tag_len, len);
40 41
    /* We don't copy the terminating null to config space */
    memcpy(cfg->tag, s->tag, len);
42
    memcpy(config, cfg, s->config_size);
43
    g_free(cfg);
44 45
}

46
static void virtio_9p_device_realize(DeviceState *dev, Error **errp)
47
{
48 49
    VirtIODevice *vdev = VIRTIO_DEVICE(dev);
    V9fsState *s = VIRTIO_9P(dev);
50 51
    int i, len;
    struct stat stat;
52
    FsDriverEntry *fse;
53
    V9fsPath path;
54

55
    virtio_init(vdev, "virtio-9p", VIRTIO_ID_9P,
56
                sizeof(struct virtio_9p_config) + MAX_TAG_LEN);
57

58 59
    /* initialize pdu allocator */
    QLIST_INIT(&s->free_list);
60
    QLIST_INIT(&s->active_list);
61 62 63 64
    for (i = 0; i < (MAX_REQ - 1); i++) {
        QLIST_INSERT_HEAD(&s->free_list, &s->pdus[i], next);
    }

65
    s->vq = virtio_add_queue(vdev, MAX_REQ, handle_9p_output);
66

67 68
    v9fs_path_init(&path);

69
    fse = get_fsdev_fsentry(s->fsconf.fsdev_id);
70 71 72

    if (!fse) {
        /* We don't have a fsdev identified by fsdev_id */
73 74 75
        error_setg(errp, "Virtio-9p device couldn't find fsdev with the "
                   "id = %s",
                   s->fsconf.fsdev_id ? s->fsconf.fsdev_id : "NULL");
76
        goto out;
77 78
    }

79
    if (!s->fsconf.tag) {
80
        /* we haven't specified a mount_tag */
81 82
        error_setg(errp, "fsdev with id %s needs mount_tag arguments",
                   s->fsconf.fsdev_id);
83
        goto out;
84 85
    }

86
    s->ctx.export_flags = fse->export_flags;
87
    s->ctx.fs_root = g_strdup(fse->path);
88
    s->ctx.exops.get_st_gen = NULL;
89
    len = strlen(s->fsconf.tag);
90
    if (len > MAX_TAG_LEN - 1) {
91 92
        error_setg(errp, "mount tag '%s' (%d bytes) is longer than "
                   "maximum (%d bytes)", s->fsconf.tag, len, MAX_TAG_LEN - 1);
93
        goto out;
94
    }
95

96
    s->tag = g_strdup(s->fsconf.tag);
97 98 99
    s->ctx.uid = -1;

    s->ops = fse->ops;
100
    s->config_size = sizeof(struct virtio_9p_config) + len;
101
    s->fid_list = NULL;
102
    qemu_co_rwlock_init(&s->rename_lock);
103

104
    if (s->ops->init(&s->ctx) < 0) {
105 106
        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);
107
        goto out;
108
    }
109
    if (v9fs_init_worker_threads() < 0) {
110
        error_setg(errp, "worker thread initialization failed");
111
        goto out;
112
    }
113 114 115 116 117 118 119

    /*
     * 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) {
120 121
        error_setg(errp,
                   "error in converting name to path %s", strerror(errno));
122
        goto out;
123 124
    }
    if (s->ops->lstat(&s->ctx, &path, &stat)) {
125
        error_setg(errp, "share path %s does not exist", fse->path);
126
        goto out;
127
    } else if (!S_ISDIR(stat.st_mode)) {
128
        error_setg(errp, "share path %s is not a directory", fse->path);
129
        goto out;
130 131 132
    }
    v9fs_path_free(&path);

133
    return;
134 135 136 137 138
out:
    g_free(s->ctx.fs_root);
    g_free(s->tag);
    virtio_cleanup(vdev);
    v9fs_path_free(&path);
139 140 141 142 143
}

/* virtio-9p device */

static Property virtio_9p_properties[] = {
144 145
    DEFINE_PROP_STRING("mount_tag", V9fsState, fsconf.tag),
    DEFINE_PROP_STRING("fsdev", V9fsState, fsconf.fsdev_id),
146 147 148 149 150 151 152
    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);
153

154
    dc->props = virtio_9p_properties;
155
    set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
156
    vdc->realize = virtio_9p_device_realize;
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
    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)