spice-qemu-char.c 8.3 KB
Newer Older
A
Alon Levy 已提交
1 2 3
#include "config-host.h"
#include "trace.h"
#include "ui/qemu-spice.h"
4
#include "sysemu/char.h"
A
Alon Levy 已提交
5 6
#include <spice.h>
#include <spice-experimental.h>
7
#include <spice/protocol.h>
A
Alon Levy 已提交
8

9
#include "qemu/osdep.h"
A
Alon Levy 已提交
10 11 12 13 14 15 16 17 18

typedef struct SpiceCharDriver {
    CharDriverState*      chr;
    SpiceCharDeviceInstance     sin;
    char                  *subtype;
    bool                  active;
    uint8_t               *buffer;
    uint8_t               *datapos;
    ssize_t               bufsize, datalen;
19
    QLIST_ENTRY(SpiceCharDriver) next;
A
Alon Levy 已提交
20 21
} SpiceCharDriver;

22 23 24
static QLIST_HEAD(, SpiceCharDriver) spice_chars =
    QLIST_HEAD_INITIALIZER(spice_chars);

A
Alon Levy 已提交
25 26 27 28 29 30 31 32
static int vmc_write(SpiceCharDeviceInstance *sin, const uint8_t *buf, int len)
{
    SpiceCharDriver *scd = container_of(sin, SpiceCharDriver, sin);
    ssize_t out = 0;
    ssize_t last_out;
    uint8_t* p = (uint8_t*)buf;

    while (len > 0) {
33 34
        last_out = MIN(len, qemu_chr_be_can_write(scd->chr));
        if (last_out <= 0) {
A
Alon Levy 已提交
35 36
            break;
        }
37
        qemu_chr_be_write(scd->chr, p, last_out);
38 39 40
        out += last_out;
        len -= last_out;
        p += last_out;
A
Alon Levy 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
    }

    trace_spice_vmc_write(out, len + out);
    return out;
}

static int vmc_read(SpiceCharDeviceInstance *sin, uint8_t *buf, int len)
{
    SpiceCharDriver *scd = container_of(sin, SpiceCharDriver, sin);
    int bytes = MIN(len, scd->datalen);

    if (bytes > 0) {
        memcpy(buf, scd->datapos, bytes);
        scd->datapos += bytes;
        scd->datalen -= bytes;
        assert(scd->datalen >= 0);
        if (scd->datalen == 0) {
            scd->datapos = 0;
        }
    }
    trace_spice_vmc_read(bytes, len);
    return bytes;
}

65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
#if SPICE_SERVER_VERSION >= 0x000c02
static void vmc_event(SpiceCharDeviceInstance *sin, uint8_t event)
{
    SpiceCharDriver *scd = container_of(sin, SpiceCharDriver, sin);
    int chr_event;

    switch (event) {
    case SPICE_PORT_EVENT_BREAK:
        chr_event = CHR_EVENT_BREAK;
        break;
    default:
        return;
    }

    trace_spice_vmc_event(chr_event);
    qemu_chr_be_event(scd->chr, chr_event);
}
#endif

84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
static void vmc_state(SpiceCharDeviceInstance *sin, int connected)
{
    SpiceCharDriver *scd = container_of(sin, SpiceCharDriver, sin);

#if SPICE_SERVER_VERSION < 0x000901
    /*
     * spice-server calls the state callback for the agent channel when the
     * spice client connects / disconnects. Given that not the client but
     * the server is doing the parsing of the messages this is wrong as the
     * server is still listening. Worse, this causes the parser in the server
     * to go out of sync, so we ignore state calls for subtype vdagent
     * spicevmc chardevs. For the full story see:
     * http://lists.freedesktop.org/archives/spice-devel/2011-July/004837.html
     */
    if (strcmp(sin->subtype, "vdagent") == 0) {
        return;
    }
#endif

103 104
    if ((scd->chr->be_open && connected) ||
        (!scd->chr->be_open && !connected)) {
105 106 107 108 109 110 111
        return;
    }

    qemu_chr_be_event(scd->chr,
                      connected ? CHR_EVENT_OPENED : CHR_EVENT_CLOSED);
}

A
Alon Levy 已提交
112 113 114 115 116
static SpiceCharDeviceInterface vmc_interface = {
    .base.type          = SPICE_INTERFACE_CHAR_DEVICE,
    .base.description   = "spice virtual channel char device",
    .base.major_version = SPICE_INTERFACE_CHAR_DEVICE_MAJOR,
    .base.minor_version = SPICE_INTERFACE_CHAR_DEVICE_MINOR,
117
    .state              = vmc_state,
A
Alon Levy 已提交
118 119
    .write              = vmc_write,
    .read               = vmc_read,
120 121 122
#if SPICE_SERVER_VERSION >= 0x000c02
    .event              = vmc_event,
#endif
A
Alon Levy 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
};


static void vmc_register_interface(SpiceCharDriver *scd)
{
    if (scd->active) {
        return;
    }
    scd->sin.base.sif = &vmc_interface.base;
    qemu_spice_add_interface(&scd->sin.base);
    scd->active = true;
    trace_spice_vmc_register_interface(scd);
}

static void vmc_unregister_interface(SpiceCharDriver *scd)
{
    if (!scd->active) {
        return;
    }
    spice_server_remove_interface(&scd->sin.base);
    scd->active = false;
    trace_spice_vmc_unregister_interface(scd);
}


static int spice_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
{
    SpiceCharDriver *s = chr->opaque;

    assert(s->datalen == 0);
    if (s->bufsize < len) {
        s->bufsize = len;
155
        s->buffer = g_realloc(s->buffer, s->bufsize);
A
Alon Levy 已提交
156 157 158 159 160 161 162 163 164 165 166 167 168
    }
    memcpy(s->buffer, buf, len);
    s->datapos = s->buffer;
    s->datalen = len;
    spice_server_char_device_wakeup(&s->sin);
    return len;
}

static void spice_chr_close(struct CharDriverState *chr)
{
    SpiceCharDriver *s = chr->opaque;

    vmc_unregister_interface(s);
169
    QLIST_REMOVE(s, next);
170 171 172 173 174

    g_free((char *)s->sin.subtype);
#if SPICE_SERVER_VERSION >= 0x000c02
    g_free((char *)s->sin.portname);
#endif
175
    g_free(s);
A
Alon Levy 已提交
176 177
}

178
static void spice_chr_set_fe_open(struct CharDriverState *chr, int fe_open)
179 180
{
    SpiceCharDriver *s = chr->opaque;
181 182 183 184 185
    if (fe_open) {
        vmc_register_interface(s);
    } else {
        vmc_unregister_interface(s);
    }
186 187
}

A
Alon Levy 已提交
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
static void print_allowed_subtypes(void)
{
    const char** psubtype;
    int i;

    fprintf(stderr, "allowed names: ");
    for(i=0, psubtype = spice_server_char_device_recognized_subtypes();
        *psubtype != NULL; ++psubtype, ++i) {
        if (i == 0) {
            fprintf(stderr, "%s", *psubtype);
        } else {
            fprintf(stderr, ", %s", *psubtype);
        }
    }
    fprintf(stderr, "\n");
}

205
static CharDriverState *chr_open(const char *subtype)
A
Alon Levy 已提交
206 207 208
{
    CharDriverState *chr;
    SpiceCharDriver *s;
209 210 211 212 213

    chr = g_malloc0(sizeof(CharDriverState));
    s = g_malloc0(sizeof(SpiceCharDriver));
    s->chr = chr;
    s->active = false;
214
    s->sin.subtype = g_strdup(subtype);
215 216 217
    chr->opaque = s;
    chr->chr_write = spice_chr_write;
    chr->chr_close = spice_chr_close;
218
    chr->chr_set_fe_open = spice_chr_set_fe_open;
219

220 221
    QLIST_INSERT_HEAD(&spice_chars, s, next);

222 223 224
    return chr;
}

225
CharDriverState *qemu_chr_open_spice_vmc(const char *type)
226 227 228
{
    CharDriverState *chr;
    const char **psubtype = spice_server_char_device_recognized_subtypes();
A
Alon Levy 已提交
229

230
    if (type == NULL) {
A
Alon Levy 已提交
231 232
        fprintf(stderr, "spice-qemu-char: missing name parameter\n");
        print_allowed_subtypes();
233
        return NULL;
A
Alon Levy 已提交
234
    }
235 236
    for (; *psubtype != NULL; ++psubtype) {
        if (strcmp(type, *psubtype) == 0) {
A
Alon Levy 已提交
237 238 239
            break;
        }
    }
240 241
    if (*psubtype == NULL) {
        fprintf(stderr, "spice-qemu-char: unsupported type: %s\n", type);
A
Alon Levy 已提交
242
        print_allowed_subtypes();
243
        return NULL;
A
Alon Levy 已提交
244 245
    }

246
    chr = chr_open(type);
A
Alon Levy 已提交
247

248 249
#if SPICE_SERVER_VERSION < 0x000901
    /* See comment in vmc_state() */
250
    if (strcmp(type, "vdagent") == 0) {
251 252 253
        qemu_chr_generic_open(chr);
    }
#endif
A
Alon Levy 已提交
254

255
    return chr;
A
Alon Levy 已提交
256
}
257 258

#if SPICE_SERVER_VERSION >= 0x000c02
259
CharDriverState *qemu_chr_open_spice_port(const char *name)
260 261 262 263 264 265 266 267 268
{
    CharDriverState *chr;
    SpiceCharDriver *s;

    if (name == NULL) {
        fprintf(stderr, "spice-qemu-char: missing name parameter\n");
        return NULL;
    }

269
    chr = chr_open("port");
270
    s = chr->opaque;
271
    s->sin.portname = g_strdup(name);
272 273 274

    return chr;
}
275 276 277 278 279 280 281 282 283 284 285 286

void qemu_spice_register_ports(void)
{
    SpiceCharDriver *s;

    QLIST_FOREACH(s, &spice_chars, next) {
        if (s->sin.portname == NULL) {
            continue;
        }
        vmc_register_interface(s);
    }
}
287
#endif
288

289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
static void qemu_chr_parse_spice_vmc(QemuOpts *opts, ChardevBackend *backend,
                                     Error **errp)
{
    const char *name = qemu_opt_get(opts, "name");

    if (name == NULL) {
        error_setg(errp, "chardev: spice channel: no name given");
        return;
    }
    backend->spicevmc = g_new0(ChardevSpiceChannel, 1);
    backend->spicevmc->type = g_strdup(name);
}

static void qemu_chr_parse_spice_port(QemuOpts *opts, ChardevBackend *backend,
                                      Error **errp)
{
    const char *name = qemu_opt_get(opts, "name");

    if (name == NULL) {
        error_setg(errp, "chardev: spice port: no name given");
        return;
    }
    backend->spiceport = g_new0(ChardevSpicePort, 1);
    backend->spiceport->fqdn = g_strdup(name);
}

315 316
static void register_types(void)
{
317 318 319 320
    register_char_driver_qapi("spicevmc", CHARDEV_BACKEND_KIND_SPICEVMC,
                              qemu_chr_parse_spice_vmc);
    register_char_driver_qapi("spiceport", CHARDEV_BACKEND_KIND_SPICEPORT,
                              qemu_chr_parse_spice_port);
321 322 323
}

type_init(register_types);