vhost-user.c 9.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 * vhost-user.c
 *
 * Copyright (c) 2013 Virtual Open Systems Sarl.
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 *
 */

P
Peter Maydell 已提交
11
#include "qemu/osdep.h"
12 13 14 15
#include "clients.h"
#include "net/vhost_net.h"
#include "net/vhost-user.h"
#include "sysemu/char.h"
16
#include "qemu/config-file.h"
17
#include "qemu/error-report.h"
18
#include "qmp-commands.h"
19
#include "trace.h"
20 21 22 23 24

typedef struct VhostUserState {
    NetClientState nc;
    CharDriverState *chr;
    VHostNetState *vhost_net;
25
    guint watch;
26
    uint64_t acked_features;
27 28
} VhostUserState;

29 30 31 32 33
typedef struct VhostUserChardevProps {
    bool is_socket;
    bool is_unix;
} VhostUserChardevProps;

34 35 36
VHostNetState *vhost_user_get_vhost_net(NetClientState *nc)
{
    VhostUserState *s = DO_UPCAST(VhostUserState, nc, nc);
37
    assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_USER);
38 39 40
    return s->vhost_net;
}

41 42 43
uint64_t vhost_user_get_acked_features(NetClientState *nc)
{
    VhostUserState *s = DO_UPCAST(VhostUserState, nc, nc);
44
    assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_USER);
45 46 47
    return s->acked_features;
}

48
static void vhost_user_stop(int queues, NetClientState *ncs[])
49
{
50 51
    VhostUserState *s;
    int i;
52

53
    for (i = 0; i < queues; i++) {
54
        assert(ncs[i]->info->type == NET_CLIENT_DRIVER_VHOST_USER);
55

56
        s = DO_UPCAST(VhostUserState, nc, ncs[i]);
57

58
        if (s->vhost_net) {
59
            /* save acked features */
60 61 62 63
            uint64_t features = vhost_net_get_acked_features(s->vhost_net);
            if (features) {
                s->acked_features = features;
            }
64 65 66
            vhost_net_cleanup(s->vhost_net);
        }
    }
67 68
}

69
static int vhost_user_start(int queues, NetClientState *ncs[])
70
{
71
    VhostNetOptions options;
72
    struct vhost_net *net = NULL;
73 74 75 76 77 78 79
    VhostUserState *s;
    int max_queues;
    int i;

    options.backend_type = VHOST_BACKEND_TYPE_USER;

    for (i = 0; i < queues; i++) {
80
        assert(ncs[i]->info->type == NET_CLIENT_DRIVER_VHOST_USER);
81 82 83 84 85

        s = DO_UPCAST(VhostUserState, nc, ncs[i]);

        options.net_backend = ncs[i];
        options.opaque      = s->chr;
J
Jason Wang 已提交
86
        options.busyloop_timeout = 0;
87 88
        net = vhost_net_init(&options);
        if (!net) {
89
            error_report("failed to init vhost_net for queue %d", i);
90 91 92 93
            goto err;
        }

        if (i == 0) {
94
            max_queues = vhost_net_get_max_queues(net);
95
            if (queues > max_queues) {
96 97
                error_report("you are asking more queues than supported: %d",
                             max_queues);
98 99 100
                goto err;
            }
        }
101 102 103 104 105 106

        if (s->vhost_net) {
            vhost_net_cleanup(s->vhost_net);
            g_free(s->vhost_net);
        }
        s->vhost_net = net;
107 108
    }

109 110 111
    return 0;

err:
112 113 114 115
    if (net) {
        vhost_net_cleanup(net);
    }
    vhost_user_stop(i, ncs);
116
    return -1;
117 118
}

119 120 121
static ssize_t vhost_user_receive(NetClientState *nc, const uint8_t *buf,
                                  size_t size)
{
122 123 124
    /* In case of RARP (message size is 60) notify backup to send a fake RARP.
       This fake RARP will be sent by backend only for guest
       without GUEST_ANNOUNCE capability.
125
     */
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
    if (size == 60) {
        VhostUserState *s = DO_UPCAST(VhostUserState, nc, nc);
        int r;
        static int display_rarp_failure = 1;
        char mac_addr[6];

        /* extract guest mac address from the RARP message */
        memcpy(mac_addr, &buf[6], 6);

        r = vhost_net_notify_migration_done(s->vhost_net, mac_addr);

        if ((r != 0) && (display_rarp_failure)) {
            fprintf(stderr,
                    "Vhost user backend fails to broadcast fake RARP\n");
            fflush(stderr);
            display_rarp_failure = 0;
        }
    }

145 146 147
    return size;
}

148 149 150 151
static void vhost_user_cleanup(NetClientState *nc)
{
    VhostUserState *s = DO_UPCAST(VhostUserState, nc, nc);

152 153
    if (s->vhost_net) {
        vhost_net_cleanup(s->vhost_net);
154
        g_free(s->vhost_net);
155 156
        s->vhost_net = NULL;
    }
157 158 159 160 161
    if (s->chr) {
        qemu_chr_add_handlers(s->chr, NULL, NULL, NULL, NULL);
        qemu_chr_fe_release(s->chr);
        s->chr = NULL;
    }
162

163 164 165 166 167
    qemu_purge_queued_packets(nc);
}

static bool vhost_user_has_vnet_hdr(NetClientState *nc)
{
168
    assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_USER);
169 170 171 172 173 174

    return true;
}

static bool vhost_user_has_ufo(NetClientState *nc)
{
175
    assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_USER);
176 177 178 179 180

    return true;
}

static NetClientInfo net_vhost_user_info = {
181
        .type = NET_CLIENT_DRIVER_VHOST_USER,
182
        .size = sizeof(VhostUserState),
183
        .receive = vhost_user_receive,
184 185 186 187 188
        .cleanup = vhost_user_cleanup,
        .has_vnet_hdr = vhost_user_has_vnet_hdr,
        .has_ufo = vhost_user_has_ufo,
};

189 190 191 192 193
static gboolean net_vhost_user_watch(GIOChannel *chan, GIOCondition cond,
                                           void *opaque)
{
    VhostUserState *s = opaque;

194
    qemu_chr_disconnect(s->chr);
195 196 197 198

    return FALSE;
}

199 200
static void net_vhost_user_event(void *opaque, int event)
{
201 202 203 204 205
    const char *name = opaque;
    NetClientState *ncs[MAX_QUEUE_NUM];
    VhostUserState *s;
    Error *err = NULL;
    int queues;
206

207
    queues = qemu_find_net_clients_except(name, ncs,
208
                                          NET_CLIENT_DRIVER_NIC,
209
                                          MAX_QUEUE_NUM);
210 211
    assert(queues < MAX_QUEUE_NUM);

212
    s = DO_UPCAST(VhostUserState, nc, ncs[0]);
213
    trace_vhost_user_event(s->chr->label, event);
214 215
    switch (event) {
    case CHR_EVENT_OPENED:
216 217
        s->watch = qemu_chr_fe_add_watch(s->chr, G_IO_HUP,
                                         net_vhost_user_watch, s);
218
        if (vhost_user_start(queues, ncs) < 0) {
219 220
            qemu_chr_disconnect(s->chr);
            return;
221 222
        }
        qmp_set_link(name, true, &err);
223 224
        break;
    case CHR_EVENT_CLOSED:
225
        qmp_set_link(name, false, &err);
226
        vhost_user_stop(queues, ncs);
227 228
        g_source_remove(s->watch);
        s->watch = 0;
229 230
        break;
    }
231 232 233 234

    if (err) {
        error_report_err(err);
    }
235 236 237
}

static int net_vhost_user_init(NetClientState *peer, const char *device,
238 239
                               const char *name, CharDriverState *chr,
                               int queues)
240 241 242
{
    NetClientState *nc;
    VhostUserState *s;
243
    int i;
244

245 246 247
    assert(name);
    assert(queues > 0);

248 249
    for (i = 0; i < queues; i++) {
        nc = qemu_new_net_client(&net_vhost_user_info, peer, device, name);
250

251 252
        snprintf(nc->info_str, sizeof(nc->info_str), "vhost-user%d to %s",
                 i, chr->label);
253

254
        nc->queue_index = i;
255

256 257 258
        s = DO_UPCAST(VhostUserState, nc, nc);
        s->chr = chr;
    }
259

260
    qemu_chr_add_handlers(chr, NULL, NULL, net_vhost_user_event, nc[0].name);
261

262 263
    assert(s->vhost_net);

264 265 266
    return 0;
}

267 268 269
static int net_vhost_chardev_opts(void *opaque,
                                  const char *name, const char *value,
                                  Error **errp)
270 271 272 273 274 275 276 277 278
{
    VhostUserChardevProps *props = opaque;

    if (strcmp(name, "backend") == 0 && strcmp(value, "socket") == 0) {
        props->is_socket = true;
    } else if (strcmp(name, "path") == 0) {
        props->is_unix = true;
    } else if (strcmp(name, "server") == 0) {
    } else {
279 280 281
        error_setg(errp,
                   "vhost-user does not support a chardev with option %s=%s",
                   name, value);
282 283 284 285 286
        return -1;
    }
    return 0;
}

287 288
static CharDriverState *net_vhost_parse_chardev(
    const NetdevVhostUserOptions *opts, Error **errp)
289 290 291 292 293
{
    CharDriverState *chr = qemu_chr_find(opts->chardev);
    VhostUserChardevProps props;

    if (chr == NULL) {
294
        error_setg(errp, "chardev \"%s\" not found", opts->chardev);
295 296 297 298 299
        return NULL;
    }

    /* inspect chardev opts */
    memset(&props, 0, sizeof(props));
300
    if (qemu_opt_foreach(chr->opts, net_vhost_chardev_opts, &props, errp)) {
301 302 303 304
        return NULL;
    }

    if (!props.is_socket || !props.is_unix) {
305 306
        error_setg(errp, "chardev \"%s\" is not a unix socket",
                   opts->chardev);
307 308 309 310 311 312 313 314
        return NULL;
    }

    qemu_chr_fe_claim_no_fail(chr);

    return chr;
}

315
static int net_vhost_check_net(void *opaque, QemuOpts *opts, Error **errp)
316 317 318 319 320 321 322 323 324 325 326 327
{
    const char *name = opaque;
    const char *driver, *netdev;

    driver = qemu_opt_get(opts, "driver");
    netdev = qemu_opt_get(opts, "netdev");

    if (!driver || !netdev) {
        return 0;
    }

    if (strcmp(netdev, name) == 0 &&
328
        !g_str_has_prefix(driver, "virtio-net-")) {
329
        error_setg(errp, "vhost-user requires frontend driver virtio-net-*");
330 331 332 333 334 335
        return -1;
    }

    return 0;
}

336
int net_init_vhost_user(const Netdev *netdev, const char *name,
337
                        NetClientState *peer, Error **errp)
338
{
339
    int queues;
340 341 342
    const NetdevVhostUserOptions *vhost_user_opts;
    CharDriverState *chr;

343 344
    assert(netdev->type == NET_CLIENT_DRIVER_VHOST_USER);
    vhost_user_opts = &netdev->u.vhost_user;
345

346
    chr = net_vhost_parse_chardev(vhost_user_opts, errp);
347 348 349 350 351 352
    if (!chr) {
        return -1;
    }

    /* verify net frontend */
    if (qemu_opts_foreach(qemu_find_opts("device"), net_vhost_check_net,
353
                          (char *)name, errp)) {
354 355 356
        return -1;
    }

357
    queues = vhost_user_opts->has_queues ? vhost_user_opts->queues : 1;
358
    if (queues < 1 || queues > MAX_QUEUE_NUM) {
359
        error_setg(errp,
360 361
                   "vhost-user number of queues must be in range [1, %d]",
                   MAX_QUEUE_NUM);
362 363
        return -1;
    }
364

365
    return net_vhost_user_init(peer, "vhost_user", name, chr, queues);
366
}