]> git.proxmox.com Git - mirror_qemu.git/blame - hw/char/virtio-console.c
Revert "gdbstub: Do not kill target in system emulation mode"
[mirror_qemu.git] / hw / char / virtio-console.c
CommitLineData
98b19252
AS
1/*
2 * Virtio Console and Generic Serial Port Devices
3 *
71c092e9 4 * Copyright Red Hat, Inc. 2009, 2010
98b19252
AS
5 *
6 * Authors:
7 * Amit Shah <amit.shah@redhat.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 */
12
dccfcd0e 13#include "sysemu/char.h"
1de7afc9 14#include "qemu/error-report.h"
d02e4fa4 15#include "trace.h"
0d09e41a 16#include "hw/virtio/virtio-serial.h"
e2ae6159 17#include "qapi-event.h"
98b19252 18
be21c336 19#define TYPE_VIRTIO_CONSOLE_SERIAL_PORT "virtserialport"
0399a381 20#define VIRTIO_CONSOLE(obj) \
be21c336 21 OBJECT_CHECK(VirtConsole, (obj), TYPE_VIRTIO_CONSOLE_SERIAL_PORT)
0399a381 22
98b19252 23typedef struct VirtConsole {
0399a381
AF
24 VirtIOSerialPort parent_obj;
25
98b19252 26 CharDriverState *chr;
c3d6b96e 27 guint watch;
98b19252
AS
28} VirtConsole;
29
7df4d457
AS
30/*
31 * Callback function that's called from chardevs when backend becomes
32 * writable.
33 */
34static gboolean chr_write_unblocked(GIOChannel *chan, GIOCondition cond,
35 void *opaque)
36{
37 VirtConsole *vcon = opaque;
38
c3d6b96e 39 vcon->watch = 0;
0399a381 40 virtio_serial_throttle_port(VIRTIO_SERIAL_PORT(vcon), false);
7df4d457
AS
41 return FALSE;
42}
98b19252
AS
43
44/* Callback function that's called when the guest sends us data */
f9fb0532
HG
45static ssize_t flush_buf(VirtIOSerialPort *port,
46 const uint8_t *buf, ssize_t len)
98b19252 47{
0399a381 48 VirtConsole *vcon = VIRTIO_CONSOLE(port);
d02e4fa4 49 ssize_t ret;
98b19252 50
6640422c
AS
51 if (!vcon->chr) {
52 /* If there's no backend, we can just say we consumed all data. */
53 return len;
54 }
55
2cc6e0a1 56 ret = qemu_chr_fe_write(vcon->chr, buf, len);
d02e4fa4 57 trace_virtio_console_flush_buf(port->id, len, ret);
0219d732 58
f9fb0532 59 if (ret < len) {
d6258c93
AS
60 VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_GET_CLASS(port);
61
0219d732
AS
62 /*
63 * Ideally we'd get a better error code than just -1, but
64 * that's what the chardev interface gives us right now. If
65 * we had a finer-grained message, like -EPIPE, we could close
d6258c93 66 * this connection.
0219d732 67 */
f9fb0532
HG
68 if (ret < 0)
69 ret = 0;
d6258c93
AS
70 if (!k->is_console) {
71 virtio_serial_throttle_port(port, true);
c3d6b96e 72 if (!vcon->watch) {
e02bc6de
RPM
73 vcon->watch = qemu_chr_fe_add_watch(vcon->chr,
74 G_IO_OUT|G_IO_HUP,
c3d6b96e
HG
75 chr_write_unblocked, vcon);
76 }
d6258c93 77 }
0219d732 78 }
d02e4fa4 79 return ret;
98b19252
AS
80}
81
b2c1394a
HG
82/* Callback function that's called when the guest opens/closes the port */
83static void set_guest_connected(VirtIOSerialPort *port, int guest_connected)
0b6d2266 84{
0399a381 85 VirtConsole *vcon = VIRTIO_CONSOLE(port);
e2ae6159 86 DeviceState *dev = DEVICE(port);
0b6d2266 87
e2ae6159
LE
88 if (vcon->chr) {
89 qemu_chr_fe_set_open(vcon->chr, guest_connected);
90 }
91
92 if (dev->id) {
93 qapi_event_send_vserport_change(dev->id, guest_connected,
94 &error_abort);
6640422c 95 }
0b6d2266
HG
96}
97
98b19252
AS
98/* Readiness of the guest to accept data on a port */
99static int chr_can_read(void *opaque)
100{
101 VirtConsole *vcon = opaque;
102
0399a381 103 return virtio_serial_guest_ready(VIRTIO_SERIAL_PORT(vcon));
98b19252
AS
104}
105
106/* Send data from a char device over to the guest */
107static void chr_read(void *opaque, const uint8_t *buf, int size)
108{
109 VirtConsole *vcon = opaque;
0399a381 110 VirtIOSerialPort *port = VIRTIO_SERIAL_PORT(vcon);
98b19252 111
0399a381
AF
112 trace_virtio_console_chr_read(port->id, size);
113 virtio_serial_write(port, buf, size);
98b19252
AS
114}
115
116static void chr_event(void *opaque, int event)
117{
118 VirtConsole *vcon = opaque;
0399a381 119 VirtIOSerialPort *port = VIRTIO_SERIAL_PORT(vcon);
98b19252 120
0399a381 121 trace_virtio_console_chr_event(port->id, event);
98b19252 122 switch (event) {
28eaf465 123 case CHR_EVENT_OPENED:
0399a381 124 virtio_serial_open(port);
98b19252 125 break;
98b19252 126 case CHR_EVENT_CLOSED:
c3d6b96e
HG
127 if (vcon->watch) {
128 g_source_remove(vcon->watch);
129 vcon->watch = 0;
130 }
0399a381 131 virtio_serial_close(port);
98b19252
AS
132 break;
133 }
134}
135
2ef66625 136static void virtconsole_realize(DeviceState *dev, Error **errp)
98b19252 137{
2ef66625
AF
138 VirtIOSerialPort *port = VIRTIO_SERIAL_PORT(dev);
139 VirtConsole *vcon = VIRTIO_CONSOLE(dev);
140 VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_GET_CLASS(dev);
a15bb0d6 141
f82e35e3 142 if (port->id == 0 && !k->is_console) {
2ef66625
AF
143 error_setg(errp, "Port number 0 on virtio-serial devices reserved "
144 "for virtconsole devices for backward compatibility.");
145 return;
7edfe652
MA
146 }
147
98b19252 148 if (vcon->chr) {
19083228 149 vcon->chr->explicit_fe_open = 1;
98b19252
AS
150 qemu_chr_add_handlers(vcon->chr, chr_can_read, chr_read, chr_event,
151 vcon);
98b19252 152 }
cbe77b61
AS
153}
154
2ef66625 155static void virtconsole_unrealize(DeviceState *dev, Error **errp)
c3d6b96e 156{
2ef66625 157 VirtConsole *vcon = VIRTIO_CONSOLE(dev);
c3d6b96e
HG
158
159 if (vcon->watch) {
160 g_source_remove(vcon->watch);
161 }
c3d6b96e
HG
162}
163
f82e35e3
AL
164static void virtconsole_class_init(ObjectClass *klass, void *data)
165{
166 VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_CLASS(klass);
167
168 k->is_console = true;
f82e35e3
AL
169}
170
8c43a6f0 171static const TypeInfo virtconsole_info = {
be21c336
AF
172 .name = "virtconsole",
173 .parent = TYPE_VIRTIO_CONSOLE_SERIAL_PORT,
39bffca2 174 .class_init = virtconsole_class_init,
98b19252
AS
175};
176
f82e35e3
AL
177static Property virtserialport_properties[] = {
178 DEFINE_PROP_CHR("chardev", VirtConsole, chr),
179 DEFINE_PROP_END_OF_LIST(),
180};
181
182static void virtserialport_class_init(ObjectClass *klass, void *data)
183{
39bffca2 184 DeviceClass *dc = DEVICE_CLASS(klass);
f82e35e3
AL
185 VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_CLASS(klass);
186
2ef66625
AF
187 k->realize = virtconsole_realize;
188 k->unrealize = virtconsole_unrealize;
f82e35e3 189 k->have_data = flush_buf;
b2c1394a 190 k->set_guest_connected = set_guest_connected;
39bffca2 191 dc->props = virtserialport_properties;
f82e35e3
AL
192}
193
8c43a6f0 194static const TypeInfo virtserialport_info = {
be21c336 195 .name = TYPE_VIRTIO_CONSOLE_SERIAL_PORT,
39bffca2
AL
196 .parent = TYPE_VIRTIO_SERIAL_PORT,
197 .instance_size = sizeof(VirtConsole),
198 .class_init = virtserialport_class_init,
b60c470b
AS
199};
200
83f7d43a 201static void virtconsole_register_types(void)
b60c470b 202{
39bffca2 203 type_register_static(&virtserialport_info);
be21c336 204 type_register_static(&virtconsole_info);
b60c470b 205}
83f7d43a
AF
206
207type_init(virtconsole_register_types)