vde.c 3.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * QEMU System Emulator
 *
 * Copyright (c) 2003-2008 Fabrice Bellard
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
P
Peter Maydell 已提交
24
#include "qemu/osdep.h"
25 26 27

#include <libvdeplug.h>

P
Paolo Bonzini 已提交
28
#include "net/net.h"
29
#include "clients.h"
30
#include "qemu-common.h"
31
#include "qemu/option.h"
L
Liming Wang 已提交
32
#include "qemu/main-loop.h"
33 34

typedef struct VDEState {
35
    NetClientState nc;
36 37 38 39 40 41
    VDECONN *vde;
} VDEState;

static void vde_to_qemu(void *opaque)
{
    VDEState *s = opaque;
42
    uint8_t buf[NET_BUFSIZE];
43 44 45 46
    int size;

    size = vde_recv(s->vde, (char *)buf, sizeof(buf), 0);
    if (size > 0) {
47
        qemu_send_packet(&s->nc, buf, size);
48 49 50
    }
}

51
static ssize_t vde_receive(NetClientState *nc, const uint8_t *buf, size_t size)
52
{
53
    VDEState *s = DO_UPCAST(VDEState, nc, nc);
54 55 56 57 58 59 60 61 62
    ssize_t ret;

    do {
      ret = vde_send(s->vde, (const char *)buf, size, 0);
    } while (ret < 0 && errno == EINTR);

    return ret;
}

63
static void vde_cleanup(NetClientState *nc)
64
{
65
    VDEState *s = DO_UPCAST(VDEState, nc, nc);
66 67 68 69
    qemu_set_fd_handler(vde_datafd(s->vde), NULL, NULL, NULL);
    vde_close(s->vde);
}

70
static NetClientInfo net_vde_info = {
71
    .type = NET_CLIENT_OPTIONS_KIND_VDE,
72 73 74 75 76
    .size = sizeof(VDEState),
    .receive = vde_receive,
    .cleanup = vde_cleanup,
};

77
static int net_vde_init(NetClientState *peer, const char *model,
78 79 80
                        const char *name, const char *sock,
                        int port, const char *group, int mode)
{
81
    NetClientState *nc;
82
    VDEState *s;
83
    VDECONN *vde;
84 85 86 87 88 89 90 91 92
    char *init_group = (char *)group;
    char *init_sock = (char *)sock;

    struct vde_open_args args = {
        .port = port,
        .group = init_group,
        .mode = mode,
    };

93 94
    vde = vde_open(init_sock, (char *)"QEMU", &args);
    if (!vde){
95 96
        return -1;
    }
97

98
    nc = qemu_new_net_client(&net_vde_info, peer, model, name);
99 100 101 102 103 104 105 106

    snprintf(nc->info_str, sizeof(nc->info_str), "sock=%s,fd=%d",
             sock, vde_datafd(vde));

    s = DO_UPCAST(VDEState, nc, nc);

    s->vde = vde;

107
    qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
108

109 110 111
    return 0;
}

112
int net_init_vde(const NetClientOptions *opts, const char *name,
113
                 NetClientState *peer, Error **errp)
114
{
115
    /* FIXME error_setg(errp, ...) on failure */
116
    const NetdevVdeOptions *vde;
117

E
Eric Blake 已提交
118
    assert(opts->type == NET_CLIENT_OPTIONS_KIND_VDE);
119
    vde = opts->u.vde.data;
120

121
    /* missing optional values have been initialized to "all bits zero" */
122
    if (net_vde_init(peer, "vde", name, vde->sock, vde->port, vde->group,
123
                     vde->has_mode ? vde->mode : 0700) == -1) {
124 125 126 127 128
        return -1;
    }

    return 0;
}