virtio-console.c 9.2 KB
Newer Older
1 2 3
/*
 * Virtio Console and Generic Serial Port Devices
 *
4
 * Copyright Red Hat, Inc. 2009, 2010
5 6 7 8 9 10 11 12
 *
 * Authors:
 *  Amit Shah <amit.shah@redhat.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 */

P
Peter Maydell 已提交
13
#include "qemu/osdep.h"
14
#include "chardev/char-fe.h"
15
#include "qemu/error-report.h"
16
#include "trace.h"
P
Paolo Bonzini 已提交
17
#include "hw/virtio/virtio-serial.h"
18
#include "qapi/error.h"
19
#include "qapi/qapi-events-char.h"
20

21
#define TYPE_VIRTIO_CONSOLE_SERIAL_PORT "virtserialport"
22
#define VIRTIO_CONSOLE(obj) \
23
    OBJECT_CHECK(VirtConsole, (obj), TYPE_VIRTIO_CONSOLE_SERIAL_PORT)
24

25
typedef struct VirtConsole {
26 27
    VirtIOSerialPort parent_obj;

28
    CharBackend chr;
29
    guint watch;
30 31
} VirtConsole;

A
Amit Shah 已提交
32 33 34 35 36 37 38 39 40
/*
 * Callback function that's called from chardevs when backend becomes
 * writable.
 */
static gboolean chr_write_unblocked(GIOChannel *chan, GIOCondition cond,
                                    void *opaque)
{
    VirtConsole *vcon = opaque;

41
    vcon->watch = 0;
42
    virtio_serial_throttle_port(VIRTIO_SERIAL_PORT(vcon), false);
A
Amit Shah 已提交
43 44
    return FALSE;
}
45 46

/* Callback function that's called when the guest sends us data */
47 48
static ssize_t flush_buf(VirtIOSerialPort *port,
                         const uint8_t *buf, ssize_t len)
49
{
50
    VirtConsole *vcon = VIRTIO_CONSOLE(port);
51
    ssize_t ret;
52

53
    if (!qemu_chr_fe_backend_connected(&vcon->chr)) {
54 55 56 57
        /* If there's no backend, we can just say we consumed all data. */
        return len;
    }

58
    ret = qemu_chr_fe_write(&vcon->chr, buf, len);
59
    trace_virtio_console_flush_buf(port->id, len, ret);
60

61
    if (ret < len) {
62 63
        VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_GET_CLASS(port);

64 65 66 67
        /*
         * Ideally we'd get a better error code than just -1, but
         * that's what the chardev interface gives us right now.  If
         * we had a finer-grained message, like -EPIPE, we could close
68
         * this connection.
69
         */
70 71
        if (ret < 0)
            ret = 0;
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92

        /* XXX we should be queuing data to send later for the
         * console devices too rather than silently dropping
         * console data on EAGAIN. The Linux virtio-console
         * hvc driver though does sends with spinlocks held,
         * so if we enable throttling that'll stall the entire
         * guest kernel, not merely the process writing to the
         * console.
         *
         * While we could queue data for later write without
         * enabling throttling, this would result in the guest
         * being able to trigger arbitrary memory usage in QEMU
         * buffering data for later writes.
         *
         * So fixing this problem likely requires fixing the
         * Linux virtio-console hvc driver to not hold spinlocks
         * while writing, and instead merely block the process
         * that's writing. QEMU would then need some way to detect
         * if the guest had the fixed driver too, before we can
         * use throttling on host side.
         */
93 94
        if (!k->is_console) {
            virtio_serial_throttle_port(port, true);
95
            if (!vcon->watch) {
96 97
                vcon->watch = qemu_chr_fe_add_watch(&vcon->chr,
                                                    G_IO_OUT|G_IO_HUP,
98 99
                                                    chr_write_unblocked, vcon);
            }
100
        }
101
    }
102
    return ret;
103 104
}

105 106
/* Callback function that's called when the guest opens/closes the port */
static void set_guest_connected(VirtIOSerialPort *port, int guest_connected)
107
{
108
    VirtConsole *vcon = VIRTIO_CONSOLE(port);
109
    DeviceState *dev = DEVICE(port);
110
    VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_GET_CLASS(port);
111

112
    if (!k->is_console) {
113
        qemu_chr_fe_set_open(&vcon->chr, guest_connected);
114 115 116
    }

    if (dev->id) {
117
        qapi_event_send_vserport_change(dev->id, guest_connected);
118
    }
119 120
}

121 122 123 124
static void guest_writable(VirtIOSerialPort *port)
{
    VirtConsole *vcon = VIRTIO_CONSOLE(port);

125
    qemu_chr_fe_accept_input(&vcon->chr);
126 127
}

128 129 130 131 132
/* Readiness of the guest to accept data on a port */
static int chr_can_read(void *opaque)
{
    VirtConsole *vcon = opaque;

133
    return virtio_serial_guest_ready(VIRTIO_SERIAL_PORT(vcon));
134 135 136 137 138 139
}

/* Send data from a char device over to the guest */
static void chr_read(void *opaque, const uint8_t *buf, int size)
{
    VirtConsole *vcon = opaque;
140
    VirtIOSerialPort *port = VIRTIO_SERIAL_PORT(vcon);
141

142 143
    trace_virtio_console_chr_read(port->id, size);
    virtio_serial_write(port, buf, size);
144 145 146 147 148
}

static void chr_event(void *opaque, int event)
{
    VirtConsole *vcon = opaque;
149
    VirtIOSerialPort *port = VIRTIO_SERIAL_PORT(vcon);
150

151
    trace_virtio_console_chr_event(port->id, event);
152
    switch (event) {
153
    case CHR_EVENT_OPENED:
154
        virtio_serial_open(port);
155 156
        break;
    case CHR_EVENT_CLOSED:
157 158 159 160
        if (vcon->watch) {
            g_source_remove(vcon->watch);
            vcon->watch = 0;
        }
161
        virtio_serial_close(port);
162 163 164 165
        break;
    }
}

166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
static int chr_be_change(void *opaque)
{
    VirtConsole *vcon = opaque;
    VirtIOSerialPort *port = VIRTIO_SERIAL_PORT(vcon);
    VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_GET_CLASS(port);

    if (k->is_console) {
        qemu_chr_fe_set_handlers(&vcon->chr, chr_can_read, chr_read,
                                 NULL, chr_be_change, vcon, NULL, true);
    } else {
        qemu_chr_fe_set_handlers(&vcon->chr, chr_can_read, chr_read,
                                 chr_event, chr_be_change, vcon, NULL, false);
    }

    if (vcon->watch) {
        g_source_remove(vcon->watch);
        vcon->watch = qemu_chr_fe_add_watch(&vcon->chr,
                                            G_IO_OUT | G_IO_HUP,
                                            chr_write_unblocked, vcon);
    }

    return 0;
}

190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
static void virtconsole_enable_backend(VirtIOSerialPort *port, bool enable)
{
    VirtConsole *vcon = VIRTIO_CONSOLE(port);

    if (!qemu_chr_fe_backend_connected(&vcon->chr)) {
        return;
    }

    if (enable) {
        VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_GET_CLASS(port);

        qemu_chr_fe_set_handlers(&vcon->chr, chr_can_read, chr_read,
                                 k->is_console ? NULL : chr_event,
                                 chr_be_change, vcon, NULL, false);
    } else {
        qemu_chr_fe_set_handlers(&vcon->chr, NULL, NULL, NULL,
                                 NULL, NULL, NULL, false);
    }
}

210
static void virtconsole_realize(DeviceState *dev, Error **errp)
211
{
212 213 214
    VirtIOSerialPort *port = VIRTIO_SERIAL_PORT(dev);
    VirtConsole *vcon = VIRTIO_CONSOLE(dev);
    VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_GET_CLASS(dev);
215

216
    if (port->id == 0 && !k->is_console) {
217 218 219
        error_setg(errp, "Port number 0 on virtio-serial devices reserved "
                   "for virtconsole devices for backward compatibility.");
        return;
220 221
    }

222
    if (qemu_chr_fe_backend_connected(&vcon->chr)) {
223 224 225 226 227 228 229 230 231 232
        /*
         * For consoles we don't block guest data transfer just
         * because nothing is connected - we'll just let it go
         * whetherever the chardev wants - /dev/null probably.
         *
         * For serial ports we need 100% reliable data transfer
         * so we use the opened/closed signals from chardev to
         * trigger open/close of the device
         */
        if (k->is_console) {
233
            qemu_chr_fe_set_handlers(&vcon->chr, chr_can_read, chr_read,
234 235
                                     NULL, chr_be_change,
                                     vcon, NULL, true);
236 237
            virtio_serial_open(port);
        } else {
238
            qemu_chr_fe_set_handlers(&vcon->chr, chr_can_read, chr_read,
239 240
                                     chr_event, chr_be_change,
                                     vcon, NULL, false);
241
        }
242
    }
243 244
}

245
static void virtconsole_unrealize(DeviceState *dev, Error **errp)
246
{
247
    VirtConsole *vcon = VIRTIO_CONSOLE(dev);
248 249 250 251 252 253

    if (vcon->watch) {
        g_source_remove(vcon->watch);
    }
}

254 255 256 257 258 259 260
static void virtconsole_class_init(ObjectClass *klass, void *data)
{
    VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_CLASS(klass);

    k->is_console = true;
}

261
static const TypeInfo virtconsole_info = {
262 263
    .name          = "virtconsole",
    .parent        = TYPE_VIRTIO_CONSOLE_SERIAL_PORT,
264
    .class_init    = virtconsole_class_init,
265 266
};

267 268 269 270 271 272 273
static Property virtserialport_properties[] = {
    DEFINE_PROP_CHR("chardev", VirtConsole, chr),
    DEFINE_PROP_END_OF_LIST(),
};

static void virtserialport_class_init(ObjectClass *klass, void *data)
{
274
    DeviceClass *dc = DEVICE_CLASS(klass);
275 276
    VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_CLASS(klass);

277 278
    k->realize = virtconsole_realize;
    k->unrealize = virtconsole_unrealize;
279
    k->have_data = flush_buf;
280
    k->set_guest_connected = set_guest_connected;
281
    k->enable_backend = virtconsole_enable_backend;
282
    k->guest_writable = guest_writable;
283
    dc->props = virtserialport_properties;
284 285
}

286
static const TypeInfo virtserialport_info = {
287
    .name          = TYPE_VIRTIO_CONSOLE_SERIAL_PORT,
288 289 290
    .parent        = TYPE_VIRTIO_SERIAL_PORT,
    .instance_size = sizeof(VirtConsole),
    .class_init    = virtserialport_class_init,
291 292
};

A
Andreas Färber 已提交
293
static void virtconsole_register_types(void)
294
{
295
    type_register_static(&virtserialport_info);
296
    type_register_static(&virtconsole_info);
297
}
A
Andreas Färber 已提交
298 299

type_init(virtconsole_register_types)