blob: bd0709bab5fb8770c9f111f851bed20b2e115d8a [file] [log] [blame]
aliguori6f97dba2008-10-31 18:49:55 +00001/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24#include "qemu-common.h"
Paolo Bonzini83c90892012-12-17 18:19:49 +010025#include "monitor/monitor.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010026#include "sysemu/sysemu.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010027#include "qemu/timer.h"
Paolo Bonzinidccfcd02013-04-08 16:55:25 +020028#include "sysemu/char.h"
aurel32cf3ebac2008-11-01 00:53:09 +000029#include "hw/usb.h"
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -030030#include "qmp-commands.h"
Corey Minyardcfb429c2014-10-02 11:17:35 -050031#include "qapi/qmp-input-visitor.h"
32#include "qapi/qmp-output-visitor.h"
33#include "qapi-visit.h"
aliguori6f97dba2008-10-31 18:49:55 +000034
35#include <unistd.h>
36#include <fcntl.h>
aliguori6f97dba2008-10-31 18:49:55 +000037#include <time.h>
38#include <errno.h>
39#include <sys/time.h>
40#include <zlib.h>
41
42#ifndef _WIN32
43#include <sys/times.h>
44#include <sys/wait.h>
45#include <termios.h>
46#include <sys/mman.h>
47#include <sys/ioctl.h>
blueswir124646c72008-11-07 16:55:48 +000048#include <sys/resource.h>
aliguori6f97dba2008-10-31 18:49:55 +000049#include <sys/socket.h>
50#include <netinet/in.h>
blueswir124646c72008-11-07 16:55:48 +000051#include <net/if.h>
blueswir124646c72008-11-07 16:55:48 +000052#include <arpa/inet.h>
aliguori6f97dba2008-10-31 18:49:55 +000053#include <dirent.h>
54#include <netdb.h>
55#include <sys/select.h>
Juan Quintela71e72a12009-07-27 16:12:56 +020056#ifdef CONFIG_BSD
aliguori6f97dba2008-10-31 18:49:55 +000057#include <sys/stat.h>
Michael Tokarev3294ce12012-06-02 23:43:33 +040058#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
59#include <dev/ppbus/ppi.h>
60#include <dev/ppbus/ppbconf.h>
61#elif defined(__DragonFly__)
62#include <dev/misc/ppi/ppi.h>
63#include <bus/ppbus/ppbconf.h>
64#endif
Aurelien Jarnobbe813a2009-11-30 15:42:59 +010065#else
aliguori6f97dba2008-10-31 18:49:55 +000066#ifdef __linux__
aliguori6f97dba2008-10-31 18:49:55 +000067#include <linux/ppdev.h>
68#include <linux/parport.h>
69#endif
70#ifdef __sun__
71#include <sys/stat.h>
72#include <sys/ethernet.h>
73#include <sys/sockio.h>
74#include <netinet/arp.h>
75#include <netinet/in.h>
76#include <netinet/in_systm.h>
77#include <netinet/ip.h>
78#include <netinet/ip_icmp.h> // must come after ip.h
79#include <netinet/udp.h>
80#include <netinet/tcp.h>
aliguori6f97dba2008-10-31 18:49:55 +000081#endif
82#endif
83#endif
84
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010085#include "qemu/sockets.h"
Alon Levycbcc6332011-01-19 10:49:50 +020086#include "ui/qemu-spice.h"
aliguori6f97dba2008-10-31 18:49:55 +000087
Amit Shah9bd78542009-11-03 19:59:54 +053088#define READ_BUF_LEN 4096
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +030089#define READ_RETRIES 10
Corey Minyard9f781162014-10-02 11:17:33 -050090#define CHR_MAX_FILENAME_SIZE 256
Amit Shah9bd78542009-11-03 19:59:54 +053091
aliguori6f97dba2008-10-31 18:49:55 +000092/***********************************************************/
Corey Minyardcfb429c2014-10-02 11:17:35 -050093/* Socket address helpers */
94static void qapi_copy_SocketAddress(SocketAddress **p_dest,
95 SocketAddress *src)
96{
97 QmpOutputVisitor *qov;
98 QmpInputVisitor *qiv;
99 Visitor *ov, *iv;
100 QObject *obj;
101
102 *p_dest = NULL;
103
104 qov = qmp_output_visitor_new();
105 ov = qmp_output_get_visitor(qov);
106 visit_type_SocketAddress(ov, &src, NULL, &error_abort);
107 obj = qmp_output_get_qobject(qov);
108 qmp_output_visitor_cleanup(qov);
109 if (!obj) {
110 return;
111 }
112
113 qiv = qmp_input_visitor_new(obj);
114 iv = qmp_input_get_visitor(qiv);
115 visit_type_SocketAddress(iv, p_dest, NULL, &error_abort);
116 qmp_input_visitor_cleanup(qiv);
117 qobject_decref(obj);
118}
119
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500120static int SocketAddress_to_str(char *dest, int max_len,
121 const char *prefix, SocketAddress *addr,
122 bool is_listen, bool is_telnet)
123{
124 switch (addr->kind) {
125 case SOCKET_ADDRESS_KIND_INET:
126 return snprintf(dest, max_len, "%s%s:%s:%s%s", prefix,
127 is_telnet ? "telnet" : "tcp", addr->inet->host,
128 addr->inet->port, is_listen ? ",server" : "");
129 break;
130 case SOCKET_ADDRESS_KIND_UNIX:
131 return snprintf(dest, max_len, "%sunix:%s%s", prefix,
132 addr->q_unix->path, is_listen ? ",server" : "");
133 break;
134 case SOCKET_ADDRESS_KIND_FD:
135 return snprintf(dest, max_len, "%sfd:%s%s", prefix, addr->fd->str,
136 is_listen ? ",server" : "");
137 break;
138 default:
139 abort();
140 }
141}
142
143static int sockaddr_to_str(char *dest, int max_len,
144 struct sockaddr_storage *ss, socklen_t ss_len,
Corey Minyard01ca5192014-10-02 11:17:38 -0500145 struct sockaddr_storage *ps, socklen_t ps_len,
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500146 bool is_listen, bool is_telnet)
147{
Corey Minyard01ca5192014-10-02 11:17:38 -0500148 char shost[NI_MAXHOST], sserv[NI_MAXSERV];
149 char phost[NI_MAXHOST], pserv[NI_MAXSERV];
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500150 const char *left = "", *right = "";
151
152 switch (ss->ss_family) {
153#ifndef _WIN32
154 case AF_UNIX:
155 return snprintf(dest, max_len, "unix:%s%s",
156 ((struct sockaddr_un *)(ss))->sun_path,
157 is_listen ? ",server" : "");
158#endif
159 case AF_INET6:
160 left = "[";
161 right = "]";
162 /* fall through */
163 case AF_INET:
Corey Minyard01ca5192014-10-02 11:17:38 -0500164 getnameinfo((struct sockaddr *) ss, ss_len, shost, sizeof(shost),
165 sserv, sizeof(sserv), NI_NUMERICHOST | NI_NUMERICSERV);
166 getnameinfo((struct sockaddr *) ps, ps_len, phost, sizeof(phost),
167 pserv, sizeof(pserv), NI_NUMERICHOST | NI_NUMERICSERV);
168 return snprintf(dest, max_len, "%s:%s%s%s:%s%s <-> %s%s%s:%s",
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500169 is_telnet ? "telnet" : "tcp",
Corey Minyard01ca5192014-10-02 11:17:38 -0500170 left, shost, right, sserv,
171 is_listen ? ",server" : "",
172 left, phost, right, pserv);
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500173
174 default:
175 return snprintf(dest, max_len, "unknown");
176 }
177}
178
Corey Minyardcfb429c2014-10-02 11:17:35 -0500179/***********************************************************/
aliguori6f97dba2008-10-31 18:49:55 +0000180/* character device */
181
Blue Swirl72cf2d42009-09-12 07:36:22 +0000182static QTAILQ_HEAD(CharDriverStateHead, CharDriverState) chardevs =
183 QTAILQ_HEAD_INITIALIZER(chardevs);
aliguori2970a6c2009-03-05 22:59:58 +0000184
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200185CharDriverState *qemu_chr_alloc(void)
186{
187 CharDriverState *chr = g_malloc0(sizeof(CharDriverState));
Paolo Bonzinif3db17b2014-06-25 09:04:57 +0200188 qemu_mutex_init(&chr->chr_write_lock);
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200189 return chr;
190}
191
Hans de Goedea425d232011-11-19 10:22:43 +0100192void qemu_chr_be_event(CharDriverState *s, int event)
aliguori6f97dba2008-10-31 18:49:55 +0000193{
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200194 /* Keep track if the char device is open */
195 switch (event) {
196 case CHR_EVENT_OPENED:
Hans de Goede16665b92013-03-26 11:07:53 +0100197 s->be_open = 1;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200198 break;
199 case CHR_EVENT_CLOSED:
Hans de Goede16665b92013-03-26 11:07:53 +0100200 s->be_open = 0;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200201 break;
202 }
203
aliguori6f97dba2008-10-31 18:49:55 +0000204 if (!s->chr_event)
205 return;
206 s->chr_event(s->handler_opaque, event);
207}
208
Hans de Goedefee204f2013-03-26 11:07:54 +0100209void qemu_chr_be_generic_open(CharDriverState *s)
aliguori6f97dba2008-10-31 18:49:55 +0000210{
Michael Rothbd5c51e2013-06-07 15:19:53 -0500211 qemu_chr_be_event(s, CHR_EVENT_OPENED);
aliguori6f97dba2008-10-31 18:49:55 +0000212}
213
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500214int qemu_chr_fe_write(CharDriverState *s, const uint8_t *buf, int len)
aliguori6f97dba2008-10-31 18:49:55 +0000215{
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200216 int ret;
217
218 qemu_mutex_lock(&s->chr_write_lock);
219 ret = s->chr_write(s, buf, len);
220 qemu_mutex_unlock(&s->chr_write_lock);
221 return ret;
aliguori6f97dba2008-10-31 18:49:55 +0000222}
223
Anthony Liguoricd187202013-03-26 10:04:17 -0500224int qemu_chr_fe_write_all(CharDriverState *s, const uint8_t *buf, int len)
225{
226 int offset = 0;
Igor Mammedov09313042014-06-25 10:00:41 +0200227 int res = 0;
Anthony Liguoricd187202013-03-26 10:04:17 -0500228
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200229 qemu_mutex_lock(&s->chr_write_lock);
Anthony Liguoricd187202013-03-26 10:04:17 -0500230 while (offset < len) {
231 do {
232 res = s->chr_write(s, buf + offset, len - offset);
233 if (res == -1 && errno == EAGAIN) {
234 g_usleep(100);
235 }
236 } while (res == -1 && errno == EAGAIN);
237
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200238 if (res <= 0) {
Anthony Liguoricd187202013-03-26 10:04:17 -0500239 break;
240 }
241
Anthony Liguoricd187202013-03-26 10:04:17 -0500242 offset += res;
243 }
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200244 qemu_mutex_unlock(&s->chr_write_lock);
Anthony Liguoricd187202013-03-26 10:04:17 -0500245
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200246 if (res < 0) {
247 return res;
248 }
Anthony Liguoricd187202013-03-26 10:04:17 -0500249 return offset;
250}
251
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +0300252int qemu_chr_fe_read_all(CharDriverState *s, uint8_t *buf, int len)
253{
254 int offset = 0, counter = 10;
255 int res;
256
257 if (!s->chr_sync_read) {
258 return 0;
259 }
260
261 while (offset < len) {
262 do {
263 res = s->chr_sync_read(s, buf + offset, len - offset);
264 if (res == -1 && errno == EAGAIN) {
265 g_usleep(100);
266 }
267 } while (res == -1 && errno == EAGAIN);
268
269 if (res == 0) {
270 break;
271 }
272
273 if (res < 0) {
274 return res;
275 }
276
277 offset += res;
278
279 if (!counter--) {
280 break;
281 }
282 }
283
284 return offset;
285}
286
Anthony Liguori41084f12011-08-15 11:17:34 -0500287int qemu_chr_fe_ioctl(CharDriverState *s, int cmd, void *arg)
aliguori6f97dba2008-10-31 18:49:55 +0000288{
289 if (!s->chr_ioctl)
290 return -ENOTSUP;
291 return s->chr_ioctl(s, cmd, arg);
292}
293
Anthony Liguori909cda12011-08-15 11:17:31 -0500294int qemu_chr_be_can_write(CharDriverState *s)
aliguori6f97dba2008-10-31 18:49:55 +0000295{
296 if (!s->chr_can_read)
297 return 0;
298 return s->chr_can_read(s->handler_opaque);
299}
300
Anthony Liguorifa5efcc2011-08-15 11:17:30 -0500301void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len)
aliguori6f97dba2008-10-31 18:49:55 +0000302{
Stefan Weilac310732012-04-19 22:27:14 +0200303 if (s->chr_read) {
304 s->chr_read(s->handler_opaque, buf, len);
305 }
aliguori6f97dba2008-10-31 18:49:55 +0000306}
307
Anthony Liguori74c0d6f2011-08-15 11:17:39 -0500308int qemu_chr_fe_get_msgfd(CharDriverState *s)
Mark McLoughlin7d174052009-07-22 09:11:39 +0100309{
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +0300310 int fd;
Stefan Hajnoczi4f858612014-06-22 10:38:36 +0800311 return (qemu_chr_fe_get_msgfds(s, &fd, 1) == 1) ? fd : -1;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +0300312}
313
314int qemu_chr_fe_get_msgfds(CharDriverState *s, int *fds, int len)
315{
316 return s->get_msgfds ? s->get_msgfds(s, fds, len) : -1;
Mark McLoughlin7d174052009-07-22 09:11:39 +0100317}
318
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +0300319int qemu_chr_fe_set_msgfds(CharDriverState *s, int *fds, int num)
320{
321 return s->set_msgfds ? s->set_msgfds(s, fds, num) : -1;
322}
323
Daniel P. Berrange13661082011-06-23 13:31:42 +0100324int qemu_chr_add_client(CharDriverState *s, int fd)
325{
326 return s->chr_add_client ? s->chr_add_client(s, fd) : -1;
327}
328
aliguori6f97dba2008-10-31 18:49:55 +0000329void qemu_chr_accept_input(CharDriverState *s)
330{
331 if (s->chr_accept_input)
332 s->chr_accept_input(s);
Jan Kiszka98c8ee12012-03-16 13:18:00 +0100333 qemu_notify_event();
aliguori6f97dba2008-10-31 18:49:55 +0000334}
335
Anthony Liguorie7e71b02011-08-15 11:17:29 -0500336void qemu_chr_fe_printf(CharDriverState *s, const char *fmt, ...)
aliguori6f97dba2008-10-31 18:49:55 +0000337{
Amit Shah9bd78542009-11-03 19:59:54 +0530338 char buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +0000339 va_list ap;
340 va_start(ap, fmt);
341 vsnprintf(buf, sizeof(buf), fmt, ap);
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500342 qemu_chr_fe_write(s, (uint8_t *)buf, strlen(buf));
aliguori6f97dba2008-10-31 18:49:55 +0000343 va_end(ap);
344}
345
Amit Shah386a5a12013-08-28 15:24:05 +0530346static void remove_fd_in_watch(CharDriverState *chr);
347
aliguori6f97dba2008-10-31 18:49:55 +0000348void qemu_chr_add_handlers(CharDriverState *s,
Juan Quintela7b27a762010-03-11 17:55:39 +0100349 IOCanReadHandler *fd_can_read,
aliguori6f97dba2008-10-31 18:49:55 +0000350 IOReadHandler *fd_read,
351 IOEventHandler *fd_event,
352 void *opaque)
353{
Hans de Goede19083222013-03-26 11:07:56 +0100354 int fe_open;
355
Amit Shahda7d9982011-04-25 15:18:22 +0530356 if (!opaque && !fd_can_read && !fd_read && !fd_event) {
Hans de Goede19083222013-03-26 11:07:56 +0100357 fe_open = 0;
Amit Shah386a5a12013-08-28 15:24:05 +0530358 remove_fd_in_watch(s);
Hans de Goede19083222013-03-26 11:07:56 +0100359 } else {
360 fe_open = 1;
Amit Shah2d6c1ef2011-02-10 12:55:20 +0530361 }
aliguori6f97dba2008-10-31 18:49:55 +0000362 s->chr_can_read = fd_can_read;
363 s->chr_read = fd_read;
364 s->chr_event = fd_event;
365 s->handler_opaque = opaque;
Gal Hammerac1b84d2014-02-25 12:12:35 +0200366 if (fe_open && s->chr_update_read_handler)
aliguori6f97dba2008-10-31 18:49:55 +0000367 s->chr_update_read_handler(s);
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200368
Hans de Goede19083222013-03-26 11:07:56 +0100369 if (!s->explicit_fe_open) {
Hans de Goede8e25daa2013-03-26 11:07:57 +0100370 qemu_chr_fe_set_open(s, fe_open);
Hans de Goede19083222013-03-26 11:07:56 +0100371 }
372
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200373 /* We're connecting to an already opened device, so let's make sure we
374 also get the open event */
Hans de Goedea59bcd32013-03-26 11:08:00 +0100375 if (fe_open && s->be_open) {
Hans de Goedefee204f2013-03-26 11:07:54 +0100376 qemu_chr_be_generic_open(s);
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200377 }
aliguori6f97dba2008-10-31 18:49:55 +0000378}
379
380static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
381{
382 return len;
383}
384
Gerd Hoffmann80dca9e2013-02-21 11:41:26 +0100385static CharDriverState *qemu_chr_open_null(void)
aliguori6f97dba2008-10-31 18:49:55 +0000386{
387 CharDriverState *chr;
388
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200389 chr = qemu_chr_alloc();
aliguori6f97dba2008-10-31 18:49:55 +0000390 chr->chr_write = null_chr_write;
Michael Rothbd5c51e2013-06-07 15:19:53 -0500391 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +0100392 return chr;
aliguori6f97dba2008-10-31 18:49:55 +0000393}
394
395/* MUX driver for serial I/O splitting */
aliguori6f97dba2008-10-31 18:49:55 +0000396#define MAX_MUX 4
397#define MUX_BUFFER_SIZE 32 /* Must be a power of 2. */
398#define MUX_BUFFER_MASK (MUX_BUFFER_SIZE - 1)
399typedef struct {
Juan Quintela7b27a762010-03-11 17:55:39 +0100400 IOCanReadHandler *chr_can_read[MAX_MUX];
aliguori6f97dba2008-10-31 18:49:55 +0000401 IOReadHandler *chr_read[MAX_MUX];
402 IOEventHandler *chr_event[MAX_MUX];
403 void *ext_opaque[MAX_MUX];
404 CharDriverState *drv;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200405 int focus;
aliguori6f97dba2008-10-31 18:49:55 +0000406 int mux_cnt;
407 int term_got_escape;
408 int max_size;
aliguoria80bf992009-03-05 23:00:02 +0000409 /* Intermediate input buffer allows to catch escape sequences even if the
410 currently active device is not accepting any input - but only until it
411 is full as well. */
412 unsigned char buffer[MAX_MUX][MUX_BUFFER_SIZE];
413 int prod[MAX_MUX];
414 int cons[MAX_MUX];
Jan Kiszka2d229592009-06-15 22:25:30 +0200415 int timestamps;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200416
417 /* Protected by the CharDriverState chr_write_lock. */
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200418 int linestart;
Jan Kiszka2d229592009-06-15 22:25:30 +0200419 int64_t timestamps_start;
aliguori6f97dba2008-10-31 18:49:55 +0000420} MuxDriver;
421
422
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200423/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +0000424static int mux_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
425{
426 MuxDriver *d = chr->opaque;
427 int ret;
Jan Kiszka2d229592009-06-15 22:25:30 +0200428 if (!d->timestamps) {
Paolo Bonzini6975b712014-06-18 08:43:56 +0200429 ret = qemu_chr_fe_write(d->drv, buf, len);
aliguori6f97dba2008-10-31 18:49:55 +0000430 } else {
431 int i;
432
433 ret = 0;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200434 for (i = 0; i < len; i++) {
435 if (d->linestart) {
aliguori6f97dba2008-10-31 18:49:55 +0000436 char buf1[64];
437 int64_t ti;
438 int secs;
439
Alex Blighbc72ad62013-08-21 16:03:08 +0100440 ti = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Jan Kiszka2d229592009-06-15 22:25:30 +0200441 if (d->timestamps_start == -1)
442 d->timestamps_start = ti;
443 ti -= d->timestamps_start;
aliguoria4bb1db2009-01-22 17:15:16 +0000444 secs = ti / 1000;
aliguori6f97dba2008-10-31 18:49:55 +0000445 snprintf(buf1, sizeof(buf1),
446 "[%02d:%02d:%02d.%03d] ",
447 secs / 3600,
448 (secs / 60) % 60,
449 secs % 60,
aliguoria4bb1db2009-01-22 17:15:16 +0000450 (int)(ti % 1000));
Paolo Bonzini6975b712014-06-18 08:43:56 +0200451 qemu_chr_fe_write(d->drv, (uint8_t *)buf1, strlen(buf1));
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200452 d->linestart = 0;
453 }
Paolo Bonzini6975b712014-06-18 08:43:56 +0200454 ret += qemu_chr_fe_write(d->drv, buf+i, 1);
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200455 if (buf[i] == '\n') {
456 d->linestart = 1;
aliguori6f97dba2008-10-31 18:49:55 +0000457 }
458 }
459 }
460 return ret;
461}
462
463static const char * const mux_help[] = {
464 "% h print this help\n\r",
465 "% x exit emulator\n\r",
466 "% s save disk data back to file (if -snapshot)\n\r",
467 "% t toggle console timestamps\n\r"
468 "% b send break (magic sysrq)\n\r",
469 "% c switch between console and monitor\n\r",
470 "% % sends %\n\r",
471 NULL
472};
473
474int term_escape_char = 0x01; /* ctrl-a is used for escape */
475static void mux_print_help(CharDriverState *chr)
476{
477 int i, j;
478 char ebuf[15] = "Escape-Char";
479 char cbuf[50] = "\n\r";
480
481 if (term_escape_char > 0 && term_escape_char < 26) {
482 snprintf(cbuf, sizeof(cbuf), "\n\r");
483 snprintf(ebuf, sizeof(ebuf), "C-%c", term_escape_char - 1 + 'a');
484 } else {
485 snprintf(cbuf, sizeof(cbuf),
486 "\n\rEscape-Char set to Ascii: 0x%02x\n\r\n\r",
487 term_escape_char);
488 }
Paolo Bonzini6975b712014-06-18 08:43:56 +0200489 qemu_chr_fe_write(chr, (uint8_t *)cbuf, strlen(cbuf));
aliguori6f97dba2008-10-31 18:49:55 +0000490 for (i = 0; mux_help[i] != NULL; i++) {
491 for (j=0; mux_help[i][j] != '\0'; j++) {
492 if (mux_help[i][j] == '%')
Paolo Bonzini6975b712014-06-18 08:43:56 +0200493 qemu_chr_fe_write(chr, (uint8_t *)ebuf, strlen(ebuf));
aliguori6f97dba2008-10-31 18:49:55 +0000494 else
Paolo Bonzini6975b712014-06-18 08:43:56 +0200495 qemu_chr_fe_write(chr, (uint8_t *)&mux_help[i][j], 1);
aliguori6f97dba2008-10-31 18:49:55 +0000496 }
497 }
498}
499
aliguori2724b182009-03-05 23:01:47 +0000500static void mux_chr_send_event(MuxDriver *d, int mux_nr, int event)
501{
502 if (d->chr_event[mux_nr])
503 d->chr_event[mux_nr](d->ext_opaque[mux_nr], event);
504}
505
aliguori6f97dba2008-10-31 18:49:55 +0000506static int mux_proc_byte(CharDriverState *chr, MuxDriver *d, int ch)
507{
508 if (d->term_got_escape) {
509 d->term_got_escape = 0;
510 if (ch == term_escape_char)
511 goto send_char;
512 switch(ch) {
513 case '?':
514 case 'h':
515 mux_print_help(chr);
516 break;
517 case 'x':
518 {
519 const char *term = "QEMU: Terminated\n\r";
Paolo Bonzini6975b712014-06-18 08:43:56 +0200520 qemu_chr_fe_write(chr, (uint8_t *)term, strlen(term));
aliguori6f97dba2008-10-31 18:49:55 +0000521 exit(0);
522 break;
523 }
524 case 's':
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +0200525 bdrv_commit_all();
aliguori6f97dba2008-10-31 18:49:55 +0000526 break;
527 case 'b':
Hans de Goedea425d232011-11-19 10:22:43 +0100528 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
aliguori6f97dba2008-10-31 18:49:55 +0000529 break;
530 case 'c':
531 /* Switch to the next registered device */
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200532 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
533 d->focus++;
534 if (d->focus >= d->mux_cnt)
535 d->focus = 0;
536 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
aliguori6f97dba2008-10-31 18:49:55 +0000537 break;
Jan Kiszka2d229592009-06-15 22:25:30 +0200538 case 't':
539 d->timestamps = !d->timestamps;
540 d->timestamps_start = -1;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200541 d->linestart = 0;
Jan Kiszka2d229592009-06-15 22:25:30 +0200542 break;
aliguori6f97dba2008-10-31 18:49:55 +0000543 }
544 } else if (ch == term_escape_char) {
545 d->term_got_escape = 1;
546 } else {
547 send_char:
548 return 1;
549 }
550 return 0;
551}
552
553static void mux_chr_accept_input(CharDriverState *chr)
554{
aliguori6f97dba2008-10-31 18:49:55 +0000555 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200556 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000557
aliguoria80bf992009-03-05 23:00:02 +0000558 while (d->prod[m] != d->cons[m] &&
aliguori6f97dba2008-10-31 18:49:55 +0000559 d->chr_can_read[m] &&
560 d->chr_can_read[m](d->ext_opaque[m])) {
561 d->chr_read[m](d->ext_opaque[m],
aliguoria80bf992009-03-05 23:00:02 +0000562 &d->buffer[m][d->cons[m]++ & MUX_BUFFER_MASK], 1);
aliguori6f97dba2008-10-31 18:49:55 +0000563 }
564}
565
566static int mux_chr_can_read(void *opaque)
567{
568 CharDriverState *chr = opaque;
569 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200570 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000571
aliguoria80bf992009-03-05 23:00:02 +0000572 if ((d->prod[m] - d->cons[m]) < MUX_BUFFER_SIZE)
aliguori6f97dba2008-10-31 18:49:55 +0000573 return 1;
aliguoria80bf992009-03-05 23:00:02 +0000574 if (d->chr_can_read[m])
575 return d->chr_can_read[m](d->ext_opaque[m]);
aliguori6f97dba2008-10-31 18:49:55 +0000576 return 0;
577}
578
579static void mux_chr_read(void *opaque, const uint8_t *buf, int size)
580{
581 CharDriverState *chr = opaque;
582 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200583 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000584 int i;
585
586 mux_chr_accept_input (opaque);
587
588 for(i = 0; i < size; i++)
589 if (mux_proc_byte(chr, d, buf[i])) {
aliguoria80bf992009-03-05 23:00:02 +0000590 if (d->prod[m] == d->cons[m] &&
aliguori6f97dba2008-10-31 18:49:55 +0000591 d->chr_can_read[m] &&
592 d->chr_can_read[m](d->ext_opaque[m]))
593 d->chr_read[m](d->ext_opaque[m], &buf[i], 1);
594 else
aliguoria80bf992009-03-05 23:00:02 +0000595 d->buffer[m][d->prod[m]++ & MUX_BUFFER_MASK] = buf[i];
aliguori6f97dba2008-10-31 18:49:55 +0000596 }
597}
598
599static void mux_chr_event(void *opaque, int event)
600{
601 CharDriverState *chr = opaque;
602 MuxDriver *d = chr->opaque;
603 int i;
604
605 /* Send the event to all registered listeners */
606 for (i = 0; i < d->mux_cnt; i++)
aliguori2724b182009-03-05 23:01:47 +0000607 mux_chr_send_event(d, i, event);
aliguori6f97dba2008-10-31 18:49:55 +0000608}
609
610static void mux_chr_update_read_handler(CharDriverState *chr)
611{
612 MuxDriver *d = chr->opaque;
613
614 if (d->mux_cnt >= MAX_MUX) {
615 fprintf(stderr, "Cannot add I/O handlers, MUX array is full\n");
616 return;
617 }
618 d->ext_opaque[d->mux_cnt] = chr->handler_opaque;
619 d->chr_can_read[d->mux_cnt] = chr->chr_can_read;
620 d->chr_read[d->mux_cnt] = chr->chr_read;
621 d->chr_event[d->mux_cnt] = chr->chr_event;
622 /* Fix up the real driver with mux routines */
623 if (d->mux_cnt == 0) {
624 qemu_chr_add_handlers(d->drv, mux_chr_can_read, mux_chr_read,
625 mux_chr_event, chr);
626 }
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200627 if (d->focus != -1) {
628 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200629 }
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200630 d->focus = d->mux_cnt;
aliguori6f97dba2008-10-31 18:49:55 +0000631 d->mux_cnt++;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200632 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
aliguori6f97dba2008-10-31 18:49:55 +0000633}
634
Michael Roth7b7ab182013-07-30 13:04:22 -0500635static bool muxes_realized;
636
637/**
638 * Called after processing of default and command-line-specified
639 * chardevs to deliver CHR_EVENT_OPENED events to any FEs attached
640 * to a mux chardev. This is done here to ensure that
641 * output/prompts/banners are only displayed for the FE that has
642 * focus when initial command-line processing/machine init is
643 * completed.
644 *
645 * After this point, any new FE attached to any new or existing
646 * mux will receive CHR_EVENT_OPENED notifications for the BE
647 * immediately.
648 */
649static void muxes_realize_done(Notifier *notifier, void *unused)
650{
651 CharDriverState *chr;
652
653 QTAILQ_FOREACH(chr, &chardevs, next) {
654 if (chr->is_mux) {
655 MuxDriver *d = chr->opaque;
656 int i;
657
658 /* send OPENED to all already-attached FEs */
659 for (i = 0; i < d->mux_cnt; i++) {
660 mux_chr_send_event(d, i, CHR_EVENT_OPENED);
661 }
662 /* mark mux as OPENED so any new FEs will immediately receive
663 * OPENED event
664 */
665 qemu_chr_be_generic_open(chr);
666 }
667 }
668 muxes_realized = true;
669}
670
671static Notifier muxes_realize_notify = {
672 .notify = muxes_realize_done,
673};
674
Kirill Batuzov3f0838a2014-07-04 16:43:15 +0400675static GSource *mux_chr_add_watch(CharDriverState *s, GIOCondition cond)
676{
677 MuxDriver *d = s->opaque;
678 return d->drv->chr_add_watch(d->drv, cond);
679}
680
aliguori6f97dba2008-10-31 18:49:55 +0000681static CharDriverState *qemu_chr_open_mux(CharDriverState *drv)
682{
683 CharDriverState *chr;
684 MuxDriver *d;
685
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200686 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -0500687 d = g_malloc0(sizeof(MuxDriver));
aliguori6f97dba2008-10-31 18:49:55 +0000688
689 chr->opaque = d;
690 d->drv = drv;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200691 d->focus = -1;
aliguori6f97dba2008-10-31 18:49:55 +0000692 chr->chr_write = mux_chr_write;
693 chr->chr_update_read_handler = mux_chr_update_read_handler;
694 chr->chr_accept_input = mux_chr_accept_input;
Hans de Goede7c32c4f2011-03-24 11:12:02 +0100695 /* Frontend guest-open / -close notification is not support with muxes */
Hans de Goede574b7112013-03-26 11:07:58 +0100696 chr->chr_set_fe_open = NULL;
Kirill Batuzov3f0838a2014-07-04 16:43:15 +0400697 if (drv->chr_add_watch) {
698 chr->chr_add_watch = mux_chr_add_watch;
699 }
Michael Roth7b7ab182013-07-30 13:04:22 -0500700 /* only default to opened state if we've realized the initial
701 * set of muxes
702 */
703 chr->explicit_be_open = muxes_realized ? 0 : 1;
704 chr->is_mux = 1;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200705
aliguori6f97dba2008-10-31 18:49:55 +0000706 return chr;
707}
708
709
710#ifdef _WIN32
aliguorid247d252008-11-11 20:46:40 +0000711int send_all(int fd, const void *buf, int len1)
aliguori6f97dba2008-10-31 18:49:55 +0000712{
713 int ret, len;
714
715 len = len1;
716 while (len > 0) {
717 ret = send(fd, buf, len, 0);
718 if (ret < 0) {
aliguori6f97dba2008-10-31 18:49:55 +0000719 errno = WSAGetLastError();
720 if (errno != WSAEWOULDBLOCK) {
721 return -1;
722 }
723 } else if (ret == 0) {
724 break;
725 } else {
726 buf += ret;
727 len -= ret;
728 }
729 }
730 return len1 - len;
731}
732
733#else
734
Jes Sorensen5fc9cfe2010-11-01 20:02:23 +0100735int send_all(int fd, const void *_buf, int len1)
aliguori6f97dba2008-10-31 18:49:55 +0000736{
737 int ret, len;
Jes Sorensen5fc9cfe2010-11-01 20:02:23 +0100738 const uint8_t *buf = _buf;
aliguori6f97dba2008-10-31 18:49:55 +0000739
740 len = len1;
741 while (len > 0) {
742 ret = write(fd, buf, len);
743 if (ret < 0) {
744 if (errno != EINTR && errno != EAGAIN)
745 return -1;
746 } else if (ret == 0) {
747 break;
748 } else {
749 buf += ret;
750 len -= ret;
751 }
752 }
753 return len1 - len;
754}
Stefan Berger4549a8b2013-02-27 12:47:53 -0500755
756int recv_all(int fd, void *_buf, int len1, bool single_read)
757{
758 int ret, len;
759 uint8_t *buf = _buf;
760
761 len = len1;
762 while ((len > 0) && (ret = read(fd, buf, len)) != 0) {
763 if (ret < 0) {
764 if (errno != EINTR && errno != EAGAIN) {
765 return -1;
766 }
767 continue;
768 } else {
769 if (single_read) {
770 return ret;
771 }
772 buf += ret;
773 len -= ret;
774 }
775 }
776 return len1 - len;
777}
778
aliguori6f97dba2008-10-31 18:49:55 +0000779#endif /* !_WIN32 */
780
Anthony Liguori96c63842013-03-05 23:21:18 +0530781typedef struct IOWatchPoll
782{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200783 GSource parent;
784
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200785 GIOChannel *channel;
Anthony Liguori96c63842013-03-05 23:21:18 +0530786 GSource *src;
Anthony Liguori96c63842013-03-05 23:21:18 +0530787
788 IOCanReadHandler *fd_can_read;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200789 GSourceFunc fd_read;
Anthony Liguori96c63842013-03-05 23:21:18 +0530790 void *opaque;
Anthony Liguori96c63842013-03-05 23:21:18 +0530791} IOWatchPoll;
792
Anthony Liguori96c63842013-03-05 23:21:18 +0530793static IOWatchPoll *io_watch_poll_from_source(GSource *source)
794{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200795 return container_of(source, IOWatchPoll, parent);
Anthony Liguori96c63842013-03-05 23:21:18 +0530796}
797
798static gboolean io_watch_poll_prepare(GSource *source, gint *timeout_)
799{
800 IOWatchPoll *iwp = io_watch_poll_from_source(source);
Paolo Bonzinid185c092013-04-05 17:59:33 +0200801 bool now_active = iwp->fd_can_read(iwp->opaque) > 0;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200802 bool was_active = iwp->src != NULL;
Paolo Bonzinid185c092013-04-05 17:59:33 +0200803 if (was_active == now_active) {
Anthony Liguori96c63842013-03-05 23:21:18 +0530804 return FALSE;
805 }
806
Paolo Bonzinid185c092013-04-05 17:59:33 +0200807 if (now_active) {
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200808 iwp->src = g_io_create_watch(iwp->channel, G_IO_IN | G_IO_ERR | G_IO_HUP);
809 g_source_set_callback(iwp->src, iwp->fd_read, iwp->opaque, NULL);
Paolo Bonzinid185c092013-04-05 17:59:33 +0200810 g_source_attach(iwp->src, NULL);
811 } else {
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200812 g_source_destroy(iwp->src);
813 g_source_unref(iwp->src);
814 iwp->src = NULL;
Paolo Bonzinid185c092013-04-05 17:59:33 +0200815 }
816 return FALSE;
Anthony Liguori96c63842013-03-05 23:21:18 +0530817}
818
819static gboolean io_watch_poll_check(GSource *source)
820{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200821 return FALSE;
Anthony Liguori96c63842013-03-05 23:21:18 +0530822}
823
824static gboolean io_watch_poll_dispatch(GSource *source, GSourceFunc callback,
825 gpointer user_data)
826{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200827 abort();
Anthony Liguori96c63842013-03-05 23:21:18 +0530828}
829
830static void io_watch_poll_finalize(GSource *source)
831{
Paolo Bonzini2b316772013-04-19 17:32:09 +0200832 /* Due to a glib bug, removing the last reference to a source
833 * inside a finalize callback causes recursive locking (and a
834 * deadlock). This is not a problem inside other callbacks,
835 * including dispatch callbacks, so we call io_remove_watch_poll
836 * to remove this source. At this point, iwp->src must
837 * be NULL, or we would leak it.
838 *
839 * This would be solved much more elegantly by child sources,
840 * but we support older glib versions that do not have them.
841 */
Anthony Liguori96c63842013-03-05 23:21:18 +0530842 IOWatchPoll *iwp = io_watch_poll_from_source(source);
Paolo Bonzini2b316772013-04-19 17:32:09 +0200843 assert(iwp->src == NULL);
Anthony Liguori96c63842013-03-05 23:21:18 +0530844}
845
846static GSourceFuncs io_watch_poll_funcs = {
847 .prepare = io_watch_poll_prepare,
848 .check = io_watch_poll_check,
849 .dispatch = io_watch_poll_dispatch,
850 .finalize = io_watch_poll_finalize,
851};
852
853/* Can only be used for read */
854static guint io_add_watch_poll(GIOChannel *channel,
855 IOCanReadHandler *fd_can_read,
856 GIOFunc fd_read,
857 gpointer user_data)
858{
859 IOWatchPoll *iwp;
Paolo Bonzini0ca5aa42013-04-10 15:23:27 +0200860 int tag;
Anthony Liguori96c63842013-03-05 23:21:18 +0530861
Paolo Bonzinid185c092013-04-05 17:59:33 +0200862 iwp = (IOWatchPoll *) g_source_new(&io_watch_poll_funcs, sizeof(IOWatchPoll));
Anthony Liguori96c63842013-03-05 23:21:18 +0530863 iwp->fd_can_read = fd_can_read;
864 iwp->opaque = user_data;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200865 iwp->channel = channel;
866 iwp->fd_read = (GSourceFunc) fd_read;
867 iwp->src = NULL;
Anthony Liguori96c63842013-03-05 23:21:18 +0530868
Paolo Bonzini0ca5aa42013-04-10 15:23:27 +0200869 tag = g_source_attach(&iwp->parent, NULL);
870 g_source_unref(&iwp->parent);
871 return tag;
Anthony Liguori96c63842013-03-05 23:21:18 +0530872}
873
Paolo Bonzini2b316772013-04-19 17:32:09 +0200874static void io_remove_watch_poll(guint tag)
875{
876 GSource *source;
877 IOWatchPoll *iwp;
878
879 g_return_if_fail (tag > 0);
880
881 source = g_main_context_find_source_by_id(NULL, tag);
882 g_return_if_fail (source != NULL);
883
884 iwp = io_watch_poll_from_source(source);
885 if (iwp->src) {
886 g_source_destroy(iwp->src);
887 g_source_unref(iwp->src);
888 iwp->src = NULL;
889 }
890 g_source_destroy(&iwp->parent);
891}
892
Amit Shah26da70c2013-08-28 15:23:37 +0530893static void remove_fd_in_watch(CharDriverState *chr)
894{
895 if (chr->fd_in_tag) {
896 io_remove_watch_poll(chr->fd_in_tag);
897 chr->fd_in_tag = 0;
898 }
899}
900
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000901#ifndef _WIN32
Anthony Liguori96c63842013-03-05 23:21:18 +0530902static GIOChannel *io_channel_from_fd(int fd)
903{
904 GIOChannel *chan;
905
906 if (fd == -1) {
907 return NULL;
908 }
909
910 chan = g_io_channel_unix_new(fd);
911
912 g_io_channel_set_encoding(chan, NULL, NULL);
913 g_io_channel_set_buffered(chan, FALSE);
914
915 return chan;
916}
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000917#endif
Anthony Liguori96c63842013-03-05 23:21:18 +0530918
Anthony Liguori76a96442013-03-05 23:21:21 +0530919static GIOChannel *io_channel_from_socket(int fd)
920{
921 GIOChannel *chan;
922
923 if (fd == -1) {
924 return NULL;
925 }
926
927#ifdef _WIN32
928 chan = g_io_channel_win32_new_socket(fd);
929#else
930 chan = g_io_channel_unix_new(fd);
931#endif
932
933 g_io_channel_set_encoding(chan, NULL, NULL);
934 g_io_channel_set_buffered(chan, FALSE);
935
936 return chan;
937}
938
Anthony Liguori684a0962013-03-29 11:39:50 -0500939static int io_channel_send(GIOChannel *fd, const void *buf, size_t len)
Anthony Liguori96c63842013-03-05 23:21:18 +0530940{
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200941 size_t offset = 0;
942 GIOStatus status = G_IO_STATUS_NORMAL;
Anthony Liguori96c63842013-03-05 23:21:18 +0530943
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200944 while (offset < len && status == G_IO_STATUS_NORMAL) {
945 gsize bytes_written = 0;
Anthony Liguori684a0962013-03-29 11:39:50 -0500946
947 status = g_io_channel_write_chars(fd, buf + offset, len - offset,
Anthony Liguori96c63842013-03-05 23:21:18 +0530948 &bytes_written, NULL);
Anthony Liguori684a0962013-03-29 11:39:50 -0500949 offset += bytes_written;
Anthony Liguori96c63842013-03-05 23:21:18 +0530950 }
Anthony Liguori684a0962013-03-29 11:39:50 -0500951
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200952 if (offset > 0) {
953 return offset;
954 }
955 switch (status) {
956 case G_IO_STATUS_NORMAL:
957 g_assert(len == 0);
958 return 0;
959 case G_IO_STATUS_AGAIN:
960 errno = EAGAIN;
961 return -1;
962 default:
963 break;
964 }
965 errno = EINVAL;
966 return -1;
Anthony Liguori96c63842013-03-05 23:21:18 +0530967}
Anthony Liguori96c63842013-03-05 23:21:18 +0530968
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000969#ifndef _WIN32
970
Anthony Liguoria29753f2013-03-05 23:21:19 +0530971typedef struct FDCharDriver {
972 CharDriverState *chr;
973 GIOChannel *fd_in, *fd_out;
aliguori6f97dba2008-10-31 18:49:55 +0000974 int max_size;
Anthony Liguoria29753f2013-03-05 23:21:19 +0530975 QTAILQ_ENTRY(FDCharDriver) node;
aliguori6f97dba2008-10-31 18:49:55 +0000976} FDCharDriver;
977
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200978/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +0000979static int fd_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
980{
981 FDCharDriver *s = chr->opaque;
Anthony Liguoria29753f2013-03-05 23:21:19 +0530982
Anthony Liguori684a0962013-03-29 11:39:50 -0500983 return io_channel_send(s->fd_out, buf, len);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530984}
985
986static gboolean fd_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
987{
988 CharDriverState *chr = opaque;
989 FDCharDriver *s = chr->opaque;
990 int len;
991 uint8_t buf[READ_BUF_LEN];
992 GIOStatus status;
993 gsize bytes_read;
994
995 len = sizeof(buf);
996 if (len > s->max_size) {
997 len = s->max_size;
998 }
999 if (len == 0) {
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02001000 return TRUE;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301001 }
1002
1003 status = g_io_channel_read_chars(chan, (gchar *)buf,
1004 len, &bytes_read, NULL);
1005 if (status == G_IO_STATUS_EOF) {
Amit Shah26da70c2013-08-28 15:23:37 +05301006 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +05301007 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
1008 return FALSE;
1009 }
1010 if (status == G_IO_STATUS_NORMAL) {
1011 qemu_chr_be_write(chr, buf, bytes_read);
1012 }
1013
1014 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00001015}
1016
1017static int fd_chr_read_poll(void *opaque)
1018{
1019 CharDriverState *chr = opaque;
1020 FDCharDriver *s = chr->opaque;
1021
Anthony Liguori909cda12011-08-15 11:17:31 -05001022 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001023 return s->max_size;
1024}
1025
Anthony Liguori23673ca2013-03-05 23:21:23 +05301026static GSource *fd_chr_add_watch(CharDriverState *chr, GIOCondition cond)
1027{
1028 FDCharDriver *s = chr->opaque;
1029 return g_io_create_watch(s->fd_out, cond);
1030}
1031
aliguori6f97dba2008-10-31 18:49:55 +00001032static void fd_chr_update_read_handler(CharDriverState *chr)
1033{
1034 FDCharDriver *s = chr->opaque;
1035
Amit Shah26da70c2013-08-28 15:23:37 +05301036 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +05301037 if (s->fd_in) {
Amit Shah7ba9add2013-08-28 15:18:29 +05301038 chr->fd_in_tag = io_add_watch_poll(s->fd_in, fd_chr_read_poll,
1039 fd_chr_read, chr);
aliguori6f97dba2008-10-31 18:49:55 +00001040 }
1041}
1042
1043static void fd_chr_close(struct CharDriverState *chr)
1044{
1045 FDCharDriver *s = chr->opaque;
1046
Amit Shah26da70c2013-08-28 15:23:37 +05301047 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +05301048 if (s->fd_in) {
1049 g_io_channel_unref(s->fd_in);
1050 }
1051 if (s->fd_out) {
1052 g_io_channel_unref(s->fd_out);
aliguori6f97dba2008-10-31 18:49:55 +00001053 }
1054
Anthony Liguori7267c092011-08-20 22:09:37 -05001055 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01001056 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001057}
1058
1059/* open a character device to a unix fd */
1060static CharDriverState *qemu_chr_open_fd(int fd_in, int fd_out)
1061{
1062 CharDriverState *chr;
1063 FDCharDriver *s;
1064
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001065 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05001066 s = g_malloc0(sizeof(FDCharDriver));
Anthony Liguoria29753f2013-03-05 23:21:19 +05301067 s->fd_in = io_channel_from_fd(fd_in);
1068 s->fd_out = io_channel_from_fd(fd_out);
Gonglei4ff12bd2014-08-11 17:34:20 +08001069 qemu_set_nonblock(fd_out);
Anthony Liguoria29753f2013-03-05 23:21:19 +05301070 s->chr = chr;
aliguori6f97dba2008-10-31 18:49:55 +00001071 chr->opaque = s;
Anthony Liguori23673ca2013-03-05 23:21:23 +05301072 chr->chr_add_watch = fd_chr_add_watch;
aliguori6f97dba2008-10-31 18:49:55 +00001073 chr->chr_write = fd_chr_write;
1074 chr->chr_update_read_handler = fd_chr_update_read_handler;
1075 chr->chr_close = fd_chr_close;
1076
aliguori6f97dba2008-10-31 18:49:55 +00001077 return chr;
1078}
1079
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01001080static CharDriverState *qemu_chr_open_pipe(ChardevHostdev *opts)
aliguori6f97dba2008-10-31 18:49:55 +00001081{
1082 int fd_in, fd_out;
Corey Minyard9f781162014-10-02 11:17:33 -05001083 char filename_in[CHR_MAX_FILENAME_SIZE];
1084 char filename_out[CHR_MAX_FILENAME_SIZE];
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01001085 const char *filename = opts->device;
Gerd Hoffmann7d315442009-09-10 10:58:36 +02001086
1087 if (filename == NULL) {
1088 fprintf(stderr, "chardev: pipe: no filename given\n");
Markus Armbruster1f514702012-02-07 15:09:08 +01001089 return NULL;
Gerd Hoffmann7d315442009-09-10 10:58:36 +02001090 }
aliguori6f97dba2008-10-31 18:49:55 +00001091
Corey Minyard9f781162014-10-02 11:17:33 -05001092 snprintf(filename_in, CHR_MAX_FILENAME_SIZE, "%s.in", filename);
1093 snprintf(filename_out, CHR_MAX_FILENAME_SIZE, "%s.out", filename);
Kevin Wolf40ff6d72009-12-02 12:24:42 +01001094 TFR(fd_in = qemu_open(filename_in, O_RDWR | O_BINARY));
1095 TFR(fd_out = qemu_open(filename_out, O_RDWR | O_BINARY));
aliguori6f97dba2008-10-31 18:49:55 +00001096 if (fd_in < 0 || fd_out < 0) {
1097 if (fd_in >= 0)
1098 close(fd_in);
1099 if (fd_out >= 0)
1100 close(fd_out);
Markus Armbrusterb181e042012-02-07 15:09:09 +01001101 TFR(fd_in = fd_out = qemu_open(filename, O_RDWR | O_BINARY));
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01001102 if (fd_in < 0) {
Markus Armbruster1f514702012-02-07 15:09:08 +01001103 return NULL;
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01001104 }
aliguori6f97dba2008-10-31 18:49:55 +00001105 }
Markus Armbruster1f514702012-02-07 15:09:08 +01001106 return qemu_chr_open_fd(fd_in, fd_out);
aliguori6f97dba2008-10-31 18:49:55 +00001107}
1108
aliguori6f97dba2008-10-31 18:49:55 +00001109/* init terminal so that we can grab keys */
1110static struct termios oldtty;
1111static int old_fd0_flags;
Li Liuc88930a2014-09-09 19:19:48 +08001112static bool stdio_in_use;
Paolo Bonzinibb002512010-12-23 13:42:50 +01001113static bool stdio_allow_signal;
aliguori6f97dba2008-10-31 18:49:55 +00001114
1115static void term_exit(void)
1116{
1117 tcsetattr (0, TCSANOW, &oldtty);
1118 fcntl(0, F_SETFL, old_fd0_flags);
1119}
1120
Paolo Bonzinibb002512010-12-23 13:42:50 +01001121static void qemu_chr_set_echo_stdio(CharDriverState *chr, bool echo)
aliguori6f97dba2008-10-31 18:49:55 +00001122{
1123 struct termios tty;
1124
Paolo Bonzini03693642010-12-23 13:42:49 +01001125 tty = oldtty;
Paolo Bonzinibb002512010-12-23 13:42:50 +01001126 if (!echo) {
1127 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
aliguori6f97dba2008-10-31 18:49:55 +00001128 |INLCR|IGNCR|ICRNL|IXON);
Paolo Bonzinibb002512010-12-23 13:42:50 +01001129 tty.c_oflag |= OPOST;
1130 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
1131 tty.c_cflag &= ~(CSIZE|PARENB);
1132 tty.c_cflag |= CS8;
1133 tty.c_cc[VMIN] = 1;
1134 tty.c_cc[VTIME] = 0;
1135 }
Paolo Bonzinibb002512010-12-23 13:42:50 +01001136 if (!stdio_allow_signal)
aliguori6f97dba2008-10-31 18:49:55 +00001137 tty.c_lflag &= ~ISIG;
aliguori6f97dba2008-10-31 18:49:55 +00001138
1139 tcsetattr (0, TCSANOW, &tty);
aliguori6f97dba2008-10-31 18:49:55 +00001140}
1141
1142static void qemu_chr_close_stdio(struct CharDriverState *chr)
1143{
1144 term_exit();
aliguori6f97dba2008-10-31 18:49:55 +00001145 fd_chr_close(chr);
1146}
1147
Gerd Hoffmann7c358032013-02-21 12:34:58 +01001148static CharDriverState *qemu_chr_open_stdio(ChardevStdio *opts)
aliguori6f97dba2008-10-31 18:49:55 +00001149{
1150 CharDriverState *chr;
1151
Michael Tokarevab51b1d2012-12-30 12:48:14 +04001152 if (is_daemonized()) {
1153 error_report("cannot use stdio with -daemonize");
1154 return NULL;
1155 }
Li Liuc88930a2014-09-09 19:19:48 +08001156
1157 if (stdio_in_use) {
1158 error_report("cannot use stdio by multiple character devices");
1159 exit(1);
1160 }
1161
1162 stdio_in_use = true;
Anthony Liguoried7a1542013-03-05 23:21:17 +05301163 old_fd0_flags = fcntl(0, F_GETFL);
Li Liuc88930a2014-09-09 19:19:48 +08001164 tcgetattr(0, &oldtty);
Gonglei4ff12bd2014-08-11 17:34:20 +08001165 qemu_set_nonblock(0);
Anthony Liguoried7a1542013-03-05 23:21:17 +05301166 atexit(term_exit);
Paolo Bonzini03693642010-12-23 13:42:49 +01001167
aliguori6f97dba2008-10-31 18:49:55 +00001168 chr = qemu_chr_open_fd(0, 1);
1169 chr->chr_close = qemu_chr_close_stdio;
Paolo Bonzinibb002512010-12-23 13:42:50 +01001170 chr->chr_set_echo = qemu_chr_set_echo_stdio;
Gerd Hoffmann7c358032013-02-21 12:34:58 +01001171 if (opts->has_signal) {
1172 stdio_allow_signal = opts->signal;
1173 }
Anthony Liguori15f31512011-08-15 11:17:35 -05001174 qemu_chr_fe_set_echo(chr, false);
aliguori6f97dba2008-10-31 18:49:55 +00001175
Markus Armbruster1f514702012-02-07 15:09:08 +01001176 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001177}
1178
aliguori6f97dba2008-10-31 18:49:55 +00001179#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
Aurelien Jarnoa167ba52009-11-29 18:00:41 +01001180 || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
1181 || defined(__GLIBC__)
aliguori6f97dba2008-10-31 18:49:55 +00001182
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001183#define HAVE_CHARDEV_TTY 1
1184
aliguori6f97dba2008-10-31 18:49:55 +00001185typedef struct {
Anthony Liguori093d3a22013-03-05 23:21:20 +05301186 GIOChannel *fd;
aliguori6f97dba2008-10-31 18:49:55 +00001187 int read_bytes;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001188
1189 /* Protected by the CharDriverState chr_write_lock. */
1190 int connected;
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301191 guint timer_tag;
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001192 guint open_tag;
aliguori6f97dba2008-10-31 18:49:55 +00001193} PtyCharDriver;
1194
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001195static void pty_chr_update_read_handler_locked(CharDriverState *chr);
aliguori6f97dba2008-10-31 18:49:55 +00001196static void pty_chr_state(CharDriverState *chr, int connected);
1197
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301198static gboolean pty_chr_timer(gpointer opaque)
1199{
1200 struct CharDriverState *chr = opaque;
1201 PtyCharDriver *s = chr->opaque;
1202
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001203 qemu_mutex_lock(&chr->chr_write_lock);
Hans de Goede79f20072013-04-25 13:53:02 +02001204 s->timer_tag = 0;
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001205 s->open_tag = 0;
Gerd Hoffmannb0d768c2013-08-22 11:43:58 +02001206 if (!s->connected) {
1207 /* Next poll ... */
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001208 pty_chr_update_read_handler_locked(chr);
Gerd Hoffmannb0d768c2013-08-22 11:43:58 +02001209 }
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001210 qemu_mutex_unlock(&chr->chr_write_lock);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301211 return FALSE;
1212}
1213
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001214/* Called with chr_write_lock held. */
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301215static void pty_chr_rearm_timer(CharDriverState *chr, int ms)
1216{
1217 PtyCharDriver *s = chr->opaque;
1218
1219 if (s->timer_tag) {
1220 g_source_remove(s->timer_tag);
1221 s->timer_tag = 0;
1222 }
1223
1224 if (ms == 1000) {
1225 s->timer_tag = g_timeout_add_seconds(1, pty_chr_timer, chr);
1226 } else {
1227 s->timer_tag = g_timeout_add(ms, pty_chr_timer, chr);
1228 }
1229}
1230
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001231/* Called with chr_write_lock held. */
1232static void pty_chr_update_read_handler_locked(CharDriverState *chr)
Paolo Bonzini1bb7fe72014-06-18 08:43:57 +02001233{
1234 PtyCharDriver *s = chr->opaque;
1235 GPollFD pfd;
1236
1237 pfd.fd = g_io_channel_unix_get_fd(s->fd);
1238 pfd.events = G_IO_OUT;
1239 pfd.revents = 0;
1240 g_poll(&pfd, 1, 0);
1241 if (pfd.revents & G_IO_HUP) {
1242 pty_chr_state(chr, 0);
1243 } else {
1244 pty_chr_state(chr, 1);
1245 }
1246}
1247
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001248static void pty_chr_update_read_handler(CharDriverState *chr)
1249{
1250 qemu_mutex_lock(&chr->chr_write_lock);
1251 pty_chr_update_read_handler_locked(chr);
1252 qemu_mutex_unlock(&chr->chr_write_lock);
1253}
1254
1255/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00001256static int pty_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
1257{
1258 PtyCharDriver *s = chr->opaque;
1259
1260 if (!s->connected) {
1261 /* guest sends data, check for (re-)connect */
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001262 pty_chr_update_read_handler_locked(chr);
Sebastian Tanasecf7330c2014-07-28 13:39:14 +02001263 if (!s->connected) {
1264 return 0;
1265 }
aliguori6f97dba2008-10-31 18:49:55 +00001266 }
Anthony Liguori684a0962013-03-29 11:39:50 -05001267 return io_channel_send(s->fd, buf, len);
aliguori6f97dba2008-10-31 18:49:55 +00001268}
1269
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301270static GSource *pty_chr_add_watch(CharDriverState *chr, GIOCondition cond)
1271{
1272 PtyCharDriver *s = chr->opaque;
Paolo Bonzini62c339c2014-07-24 16:08:04 +02001273 if (!s->connected) {
1274 return NULL;
1275 }
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301276 return g_io_create_watch(s->fd, cond);
1277}
1278
aliguori6f97dba2008-10-31 18:49:55 +00001279static int pty_chr_read_poll(void *opaque)
1280{
1281 CharDriverState *chr = opaque;
1282 PtyCharDriver *s = chr->opaque;
1283
Anthony Liguori909cda12011-08-15 11:17:31 -05001284 s->read_bytes = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001285 return s->read_bytes;
1286}
1287
Anthony Liguori093d3a22013-03-05 23:21:20 +05301288static gboolean pty_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00001289{
1290 CharDriverState *chr = opaque;
1291 PtyCharDriver *s = chr->opaque;
Anthony Liguori093d3a22013-03-05 23:21:20 +05301292 gsize size, len;
Amit Shah9bd78542009-11-03 19:59:54 +05301293 uint8_t buf[READ_BUF_LEN];
Anthony Liguori093d3a22013-03-05 23:21:20 +05301294 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00001295
1296 len = sizeof(buf);
1297 if (len > s->read_bytes)
1298 len = s->read_bytes;
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02001299 if (len == 0) {
1300 return TRUE;
1301 }
Anthony Liguori093d3a22013-03-05 23:21:20 +05301302 status = g_io_channel_read_chars(s->fd, (gchar *)buf, len, &size, NULL);
1303 if (status != G_IO_STATUS_NORMAL) {
aliguori6f97dba2008-10-31 18:49:55 +00001304 pty_chr_state(chr, 0);
Anthony Liguori093d3a22013-03-05 23:21:20 +05301305 return FALSE;
1306 } else {
aliguori6f97dba2008-10-31 18:49:55 +00001307 pty_chr_state(chr, 1);
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05001308 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00001309 }
Anthony Liguori093d3a22013-03-05 23:21:20 +05301310 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00001311}
1312
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001313static gboolean qemu_chr_be_generic_open_func(gpointer opaque)
1314{
1315 CharDriverState *chr = opaque;
1316 PtyCharDriver *s = chr->opaque;
1317
1318 s->open_tag = 0;
1319 qemu_chr_be_generic_open(chr);
1320 return FALSE;
1321}
1322
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001323/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00001324static void pty_chr_state(CharDriverState *chr, int connected)
1325{
1326 PtyCharDriver *s = chr->opaque;
1327
1328 if (!connected) {
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001329 if (s->open_tag) {
1330 g_source_remove(s->open_tag);
1331 s->open_tag = 0;
1332 }
Amit Shah26da70c2013-08-28 15:23:37 +05301333 remove_fd_in_watch(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001334 s->connected = 0;
aliguori6f97dba2008-10-31 18:49:55 +00001335 /* (re-)connect poll interval for idle guests: once per second.
1336 * We check more frequently in case the guests sends data to
1337 * the virtual device linked to our pty. */
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301338 pty_chr_rearm_timer(chr, 1000);
aliguori6f97dba2008-10-31 18:49:55 +00001339 } else {
Paolo Bonzini85a67692013-04-19 17:32:07 +02001340 if (s->timer_tag) {
1341 g_source_remove(s->timer_tag);
1342 s->timer_tag = 0;
1343 }
1344 if (!s->connected) {
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001345 g_assert(s->open_tag == 0);
Paolo Bonzini85a67692013-04-19 17:32:07 +02001346 s->connected = 1;
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001347 s->open_tag = g_idle_add(qemu_chr_be_generic_open_func, chr);
Gal Hammerac1b84d2014-02-25 12:12:35 +02001348 }
1349 if (!chr->fd_in_tag) {
Amit Shah7ba9add2013-08-28 15:18:29 +05301350 chr->fd_in_tag = io_add_watch_poll(s->fd, pty_chr_read_poll,
1351 pty_chr_read, chr);
Paolo Bonzini85a67692013-04-19 17:32:07 +02001352 }
aliguori6f97dba2008-10-31 18:49:55 +00001353 }
1354}
1355
aliguori6f97dba2008-10-31 18:49:55 +00001356static void pty_chr_close(struct CharDriverState *chr)
1357{
1358 PtyCharDriver *s = chr->opaque;
Anthony Liguori093d3a22013-03-05 23:21:20 +05301359 int fd;
aliguori6f97dba2008-10-31 18:49:55 +00001360
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001361 qemu_mutex_lock(&chr->chr_write_lock);
1362 pty_chr_state(chr, 0);
Anthony Liguori093d3a22013-03-05 23:21:20 +05301363 fd = g_io_channel_unix_get_fd(s->fd);
1364 g_io_channel_unref(s->fd);
1365 close(fd);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301366 if (s->timer_tag) {
1367 g_source_remove(s->timer_tag);
Paolo Bonzini910b6362013-04-19 17:32:06 +02001368 s->timer_tag = 0;
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301369 }
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001370 qemu_mutex_unlock(&chr->chr_write_lock);
Anthony Liguori7267c092011-08-20 22:09:37 -05001371 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01001372 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001373}
1374
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001375static CharDriverState *qemu_chr_open_pty(const char *id,
1376 ChardevReturn *ret)
aliguori6f97dba2008-10-31 18:49:55 +00001377{
1378 CharDriverState *chr;
1379 PtyCharDriver *s;
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001380 int master_fd, slave_fd;
aliguori6f97dba2008-10-31 18:49:55 +00001381 char pty_name[PATH_MAX];
aliguori6f97dba2008-10-31 18:49:55 +00001382
Michael Tokarev4efeabb2013-06-05 18:44:54 +04001383 master_fd = qemu_openpty_raw(&slave_fd, pty_name);
1384 if (master_fd < 0) {
Markus Armbruster1f514702012-02-07 15:09:08 +01001385 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001386 }
1387
aliguori6f97dba2008-10-31 18:49:55 +00001388 close(slave_fd);
1389
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001390 chr = qemu_chr_alloc();
aliguori6f97dba2008-10-31 18:49:55 +00001391
Michael Tokarev4efeabb2013-06-05 18:44:54 +04001392 chr->filename = g_strdup_printf("pty:%s", pty_name);
1393 ret->pty = g_strdup(pty_name);
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001394 ret->has_pty = true;
Lei Li58650212012-12-21 12:26:38 +08001395
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001396 fprintf(stderr, "char device redirected to %s (label %s)\n",
Michael Tokarev4efeabb2013-06-05 18:44:54 +04001397 pty_name, id);
Markus Armbrustera4e26042011-11-11 10:40:05 +01001398
1399 s = g_malloc0(sizeof(PtyCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00001400 chr->opaque = s;
1401 chr->chr_write = pty_chr_write;
1402 chr->chr_update_read_handler = pty_chr_update_read_handler;
1403 chr->chr_close = pty_chr_close;
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301404 chr->chr_add_watch = pty_chr_add_watch;
Michael Rothbd5c51e2013-06-07 15:19:53 -05001405 chr->explicit_be_open = true;
aliguori6f97dba2008-10-31 18:49:55 +00001406
Anthony Liguori093d3a22013-03-05 23:21:20 +05301407 s->fd = io_channel_from_fd(master_fd);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301408 s->timer_tag = 0;
aliguori6f97dba2008-10-31 18:49:55 +00001409
Markus Armbruster1f514702012-02-07 15:09:08 +01001410 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001411}
1412
1413static void tty_serial_init(int fd, int speed,
1414 int parity, int data_bits, int stop_bits)
1415{
1416 struct termios tty;
1417 speed_t spd;
1418
1419#if 0
1420 printf("tty_serial_init: speed=%d parity=%c data=%d stop=%d\n",
1421 speed, parity, data_bits, stop_bits);
1422#endif
1423 tcgetattr (fd, &tty);
1424
Stefan Weil45eea132009-10-26 16:10:10 +01001425#define check_speed(val) if (speed <= val) { spd = B##val; break; }
1426 speed = speed * 10 / 11;
1427 do {
1428 check_speed(50);
1429 check_speed(75);
1430 check_speed(110);
1431 check_speed(134);
1432 check_speed(150);
1433 check_speed(200);
1434 check_speed(300);
1435 check_speed(600);
1436 check_speed(1200);
1437 check_speed(1800);
1438 check_speed(2400);
1439 check_speed(4800);
1440 check_speed(9600);
1441 check_speed(19200);
1442 check_speed(38400);
1443 /* Non-Posix values follow. They may be unsupported on some systems. */
1444 check_speed(57600);
1445 check_speed(115200);
1446#ifdef B230400
1447 check_speed(230400);
1448#endif
1449#ifdef B460800
1450 check_speed(460800);
1451#endif
1452#ifdef B500000
1453 check_speed(500000);
1454#endif
1455#ifdef B576000
1456 check_speed(576000);
1457#endif
1458#ifdef B921600
1459 check_speed(921600);
1460#endif
1461#ifdef B1000000
1462 check_speed(1000000);
1463#endif
1464#ifdef B1152000
1465 check_speed(1152000);
1466#endif
1467#ifdef B1500000
1468 check_speed(1500000);
1469#endif
1470#ifdef B2000000
1471 check_speed(2000000);
1472#endif
1473#ifdef B2500000
1474 check_speed(2500000);
1475#endif
1476#ifdef B3000000
1477 check_speed(3000000);
1478#endif
1479#ifdef B3500000
1480 check_speed(3500000);
1481#endif
1482#ifdef B4000000
1483 check_speed(4000000);
1484#endif
aliguori6f97dba2008-10-31 18:49:55 +00001485 spd = B115200;
Stefan Weil45eea132009-10-26 16:10:10 +01001486 } while (0);
aliguori6f97dba2008-10-31 18:49:55 +00001487
1488 cfsetispeed(&tty, spd);
1489 cfsetospeed(&tty, spd);
1490
1491 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
1492 |INLCR|IGNCR|ICRNL|IXON);
1493 tty.c_oflag |= OPOST;
1494 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN|ISIG);
1495 tty.c_cflag &= ~(CSIZE|PARENB|PARODD|CRTSCTS|CSTOPB);
1496 switch(data_bits) {
1497 default:
1498 case 8:
1499 tty.c_cflag |= CS8;
1500 break;
1501 case 7:
1502 tty.c_cflag |= CS7;
1503 break;
1504 case 6:
1505 tty.c_cflag |= CS6;
1506 break;
1507 case 5:
1508 tty.c_cflag |= CS5;
1509 break;
1510 }
1511 switch(parity) {
1512 default:
1513 case 'N':
1514 break;
1515 case 'E':
1516 tty.c_cflag |= PARENB;
1517 break;
1518 case 'O':
1519 tty.c_cflag |= PARENB | PARODD;
1520 break;
1521 }
1522 if (stop_bits == 2)
1523 tty.c_cflag |= CSTOPB;
1524
1525 tcsetattr (fd, TCSANOW, &tty);
1526}
1527
1528static int tty_serial_ioctl(CharDriverState *chr, int cmd, void *arg)
1529{
1530 FDCharDriver *s = chr->opaque;
1531
1532 switch(cmd) {
1533 case CHR_IOCTL_SERIAL_SET_PARAMS:
1534 {
1535 QEMUSerialSetParams *ssp = arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301536 tty_serial_init(g_io_channel_unix_get_fd(s->fd_in),
1537 ssp->speed, ssp->parity,
aliguori6f97dba2008-10-31 18:49:55 +00001538 ssp->data_bits, ssp->stop_bits);
1539 }
1540 break;
1541 case CHR_IOCTL_SERIAL_SET_BREAK:
1542 {
1543 int enable = *(int *)arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301544 if (enable) {
1545 tcsendbreak(g_io_channel_unix_get_fd(s->fd_in), 1);
1546 }
aliguori6f97dba2008-10-31 18:49:55 +00001547 }
1548 break;
1549 case CHR_IOCTL_SERIAL_GET_TIOCM:
1550 {
1551 int sarg = 0;
1552 int *targ = (int *)arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301553 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMGET, &sarg);
aliguori6f97dba2008-10-31 18:49:55 +00001554 *targ = 0;
aurel32b4abdfa2009-02-08 14:46:17 +00001555 if (sarg & TIOCM_CTS)
aliguori6f97dba2008-10-31 18:49:55 +00001556 *targ |= CHR_TIOCM_CTS;
aurel32b4abdfa2009-02-08 14:46:17 +00001557 if (sarg & TIOCM_CAR)
aliguori6f97dba2008-10-31 18:49:55 +00001558 *targ |= CHR_TIOCM_CAR;
aurel32b4abdfa2009-02-08 14:46:17 +00001559 if (sarg & TIOCM_DSR)
aliguori6f97dba2008-10-31 18:49:55 +00001560 *targ |= CHR_TIOCM_DSR;
aurel32b4abdfa2009-02-08 14:46:17 +00001561 if (sarg & TIOCM_RI)
aliguori6f97dba2008-10-31 18:49:55 +00001562 *targ |= CHR_TIOCM_RI;
aurel32b4abdfa2009-02-08 14:46:17 +00001563 if (sarg & TIOCM_DTR)
aliguori6f97dba2008-10-31 18:49:55 +00001564 *targ |= CHR_TIOCM_DTR;
aurel32b4abdfa2009-02-08 14:46:17 +00001565 if (sarg & TIOCM_RTS)
aliguori6f97dba2008-10-31 18:49:55 +00001566 *targ |= CHR_TIOCM_RTS;
1567 }
1568 break;
1569 case CHR_IOCTL_SERIAL_SET_TIOCM:
1570 {
1571 int sarg = *(int *)arg;
1572 int targ = 0;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301573 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMGET, &targ);
aurel32b4abdfa2009-02-08 14:46:17 +00001574 targ &= ~(CHR_TIOCM_CTS | CHR_TIOCM_CAR | CHR_TIOCM_DSR
1575 | CHR_TIOCM_RI | CHR_TIOCM_DTR | CHR_TIOCM_RTS);
1576 if (sarg & CHR_TIOCM_CTS)
1577 targ |= TIOCM_CTS;
1578 if (sarg & CHR_TIOCM_CAR)
1579 targ |= TIOCM_CAR;
1580 if (sarg & CHR_TIOCM_DSR)
1581 targ |= TIOCM_DSR;
1582 if (sarg & CHR_TIOCM_RI)
1583 targ |= TIOCM_RI;
1584 if (sarg & CHR_TIOCM_DTR)
aliguori6f97dba2008-10-31 18:49:55 +00001585 targ |= TIOCM_DTR;
aurel32b4abdfa2009-02-08 14:46:17 +00001586 if (sarg & CHR_TIOCM_RTS)
aliguori6f97dba2008-10-31 18:49:55 +00001587 targ |= TIOCM_RTS;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301588 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMSET, &targ);
aliguori6f97dba2008-10-31 18:49:55 +00001589 }
1590 break;
1591 default:
1592 return -ENOTSUP;
1593 }
1594 return 0;
1595}
1596
David Ahern4266a132010-02-10 18:27:17 -07001597static void qemu_chr_close_tty(CharDriverState *chr)
1598{
1599 FDCharDriver *s = chr->opaque;
1600 int fd = -1;
1601
1602 if (s) {
Anthony Liguoria29753f2013-03-05 23:21:19 +05301603 fd = g_io_channel_unix_get_fd(s->fd_in);
David Ahern4266a132010-02-10 18:27:17 -07001604 }
1605
1606 fd_chr_close(chr);
1607
1608 if (fd >= 0) {
1609 close(fd);
1610 }
1611}
1612
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01001613static CharDriverState *qemu_chr_open_tty_fd(int fd)
1614{
1615 CharDriverState *chr;
1616
1617 tty_serial_init(fd, 115200, 'N', 8, 1);
1618 chr = qemu_chr_open_fd(fd, fd);
1619 chr->chr_ioctl = tty_serial_ioctl;
1620 chr->chr_close = qemu_chr_close_tty;
1621 return chr;
1622}
aliguori6f97dba2008-10-31 18:49:55 +00001623#endif /* __linux__ || __sun__ */
1624
1625#if defined(__linux__)
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001626
1627#define HAVE_CHARDEV_PARPORT 1
1628
aliguori6f97dba2008-10-31 18:49:55 +00001629typedef struct {
1630 int fd;
1631 int mode;
1632} ParallelCharDriver;
1633
1634static int pp_hw_mode(ParallelCharDriver *s, uint16_t mode)
1635{
1636 if (s->mode != mode) {
1637 int m = mode;
1638 if (ioctl(s->fd, PPSETMODE, &m) < 0)
1639 return 0;
1640 s->mode = mode;
1641 }
1642 return 1;
1643}
1644
1645static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1646{
1647 ParallelCharDriver *drv = chr->opaque;
1648 int fd = drv->fd;
1649 uint8_t b;
1650
1651 switch(cmd) {
1652 case CHR_IOCTL_PP_READ_DATA:
1653 if (ioctl(fd, PPRDATA, &b) < 0)
1654 return -ENOTSUP;
1655 *(uint8_t *)arg = b;
1656 break;
1657 case CHR_IOCTL_PP_WRITE_DATA:
1658 b = *(uint8_t *)arg;
1659 if (ioctl(fd, PPWDATA, &b) < 0)
1660 return -ENOTSUP;
1661 break;
1662 case CHR_IOCTL_PP_READ_CONTROL:
1663 if (ioctl(fd, PPRCONTROL, &b) < 0)
1664 return -ENOTSUP;
1665 /* Linux gives only the lowest bits, and no way to know data
1666 direction! For better compatibility set the fixed upper
1667 bits. */
1668 *(uint8_t *)arg = b | 0xc0;
1669 break;
1670 case CHR_IOCTL_PP_WRITE_CONTROL:
1671 b = *(uint8_t *)arg;
1672 if (ioctl(fd, PPWCONTROL, &b) < 0)
1673 return -ENOTSUP;
1674 break;
1675 case CHR_IOCTL_PP_READ_STATUS:
1676 if (ioctl(fd, PPRSTATUS, &b) < 0)
1677 return -ENOTSUP;
1678 *(uint8_t *)arg = b;
1679 break;
1680 case CHR_IOCTL_PP_DATA_DIR:
1681 if (ioctl(fd, PPDATADIR, (int *)arg) < 0)
1682 return -ENOTSUP;
1683 break;
1684 case CHR_IOCTL_PP_EPP_READ_ADDR:
1685 if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1686 struct ParallelIOArg *parg = arg;
1687 int n = read(fd, parg->buffer, parg->count);
1688 if (n != parg->count) {
1689 return -EIO;
1690 }
1691 }
1692 break;
1693 case CHR_IOCTL_PP_EPP_READ:
1694 if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1695 struct ParallelIOArg *parg = arg;
1696 int n = read(fd, parg->buffer, parg->count);
1697 if (n != parg->count) {
1698 return -EIO;
1699 }
1700 }
1701 break;
1702 case CHR_IOCTL_PP_EPP_WRITE_ADDR:
1703 if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1704 struct ParallelIOArg *parg = arg;
1705 int n = write(fd, parg->buffer, parg->count);
1706 if (n != parg->count) {
1707 return -EIO;
1708 }
1709 }
1710 break;
1711 case CHR_IOCTL_PP_EPP_WRITE:
1712 if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1713 struct ParallelIOArg *parg = arg;
1714 int n = write(fd, parg->buffer, parg->count);
1715 if (n != parg->count) {
1716 return -EIO;
1717 }
1718 }
1719 break;
1720 default:
1721 return -ENOTSUP;
1722 }
1723 return 0;
1724}
1725
1726static void pp_close(CharDriverState *chr)
1727{
1728 ParallelCharDriver *drv = chr->opaque;
1729 int fd = drv->fd;
1730
1731 pp_hw_mode(drv, IEEE1284_MODE_COMPAT);
1732 ioctl(fd, PPRELEASE);
1733 close(fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05001734 g_free(drv);
Hans de Goedea425d232011-11-19 10:22:43 +01001735 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001736}
1737
Gerd Hoffmann88a946d2013-01-10 14:20:58 +01001738static CharDriverState *qemu_chr_open_pp_fd(int fd)
aliguori6f97dba2008-10-31 18:49:55 +00001739{
1740 CharDriverState *chr;
1741 ParallelCharDriver *drv;
aliguori6f97dba2008-10-31 18:49:55 +00001742
1743 if (ioctl(fd, PPCLAIM) < 0) {
1744 close(fd);
Markus Armbruster1f514702012-02-07 15:09:08 +01001745 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001746 }
1747
Anthony Liguori7267c092011-08-20 22:09:37 -05001748 drv = g_malloc0(sizeof(ParallelCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00001749 drv->fd = fd;
1750 drv->mode = IEEE1284_MODE_COMPAT;
1751
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001752 chr = qemu_chr_alloc();
aliguori6f97dba2008-10-31 18:49:55 +00001753 chr->chr_write = null_chr_write;
1754 chr->chr_ioctl = pp_ioctl;
1755 chr->chr_close = pp_close;
1756 chr->opaque = drv;
1757
Markus Armbruster1f514702012-02-07 15:09:08 +01001758 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001759}
1760#endif /* __linux__ */
1761
Aurelien Jarnoa167ba52009-11-29 18:00:41 +01001762#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001763
1764#define HAVE_CHARDEV_PARPORT 1
1765
blueswir16972f932008-11-22 20:49:12 +00001766static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1767{
Stefan Weile0efb992011-02-23 19:09:16 +01001768 int fd = (int)(intptr_t)chr->opaque;
blueswir16972f932008-11-22 20:49:12 +00001769 uint8_t b;
1770
1771 switch(cmd) {
1772 case CHR_IOCTL_PP_READ_DATA:
1773 if (ioctl(fd, PPIGDATA, &b) < 0)
1774 return -ENOTSUP;
1775 *(uint8_t *)arg = b;
1776 break;
1777 case CHR_IOCTL_PP_WRITE_DATA:
1778 b = *(uint8_t *)arg;
1779 if (ioctl(fd, PPISDATA, &b) < 0)
1780 return -ENOTSUP;
1781 break;
1782 case CHR_IOCTL_PP_READ_CONTROL:
1783 if (ioctl(fd, PPIGCTRL, &b) < 0)
1784 return -ENOTSUP;
1785 *(uint8_t *)arg = b;
1786 break;
1787 case CHR_IOCTL_PP_WRITE_CONTROL:
1788 b = *(uint8_t *)arg;
1789 if (ioctl(fd, PPISCTRL, &b) < 0)
1790 return -ENOTSUP;
1791 break;
1792 case CHR_IOCTL_PP_READ_STATUS:
1793 if (ioctl(fd, PPIGSTATUS, &b) < 0)
1794 return -ENOTSUP;
1795 *(uint8_t *)arg = b;
1796 break;
1797 default:
1798 return -ENOTSUP;
1799 }
1800 return 0;
1801}
1802
Gerd Hoffmann88a946d2013-01-10 14:20:58 +01001803static CharDriverState *qemu_chr_open_pp_fd(int fd)
blueswir16972f932008-11-22 20:49:12 +00001804{
1805 CharDriverState *chr;
blueswir16972f932008-11-22 20:49:12 +00001806
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001807 chr = qemu_chr_alloc();
Stefan Weile0efb992011-02-23 19:09:16 +01001808 chr->opaque = (void *)(intptr_t)fd;
blueswir16972f932008-11-22 20:49:12 +00001809 chr->chr_write = null_chr_write;
1810 chr->chr_ioctl = pp_ioctl;
Michael Rothbd5c51e2013-06-07 15:19:53 -05001811 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +01001812 return chr;
blueswir16972f932008-11-22 20:49:12 +00001813}
1814#endif
1815
aliguori6f97dba2008-10-31 18:49:55 +00001816#else /* _WIN32 */
1817
1818typedef struct {
1819 int max_size;
1820 HANDLE hcom, hrecv, hsend;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001821 OVERLAPPED orecv;
aliguori6f97dba2008-10-31 18:49:55 +00001822 BOOL fpipe;
1823 DWORD len;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001824
1825 /* Protected by the CharDriverState chr_write_lock. */
1826 OVERLAPPED osend;
aliguori6f97dba2008-10-31 18:49:55 +00001827} WinCharState;
1828
Fabien Chouteaudb418a02011-10-06 16:37:51 +02001829typedef struct {
1830 HANDLE hStdIn;
1831 HANDLE hInputReadyEvent;
1832 HANDLE hInputDoneEvent;
1833 HANDLE hInputThread;
1834 uint8_t win_stdio_buf;
1835} WinStdioCharState;
1836
aliguori6f97dba2008-10-31 18:49:55 +00001837#define NSENDBUF 2048
1838#define NRECVBUF 2048
1839#define MAXCONNECT 1
1840#define NTIMEOUT 5000
1841
1842static int win_chr_poll(void *opaque);
1843static int win_chr_pipe_poll(void *opaque);
1844
1845static void win_chr_close(CharDriverState *chr)
1846{
1847 WinCharState *s = chr->opaque;
1848
1849 if (s->hsend) {
1850 CloseHandle(s->hsend);
1851 s->hsend = NULL;
1852 }
1853 if (s->hrecv) {
1854 CloseHandle(s->hrecv);
1855 s->hrecv = NULL;
1856 }
1857 if (s->hcom) {
1858 CloseHandle(s->hcom);
1859 s->hcom = NULL;
1860 }
1861 if (s->fpipe)
1862 qemu_del_polling_cb(win_chr_pipe_poll, chr);
1863 else
1864 qemu_del_polling_cb(win_chr_poll, chr);
Amit Shah793cbfb2009-08-11 21:27:48 +05301865
Hans de Goedea425d232011-11-19 10:22:43 +01001866 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001867}
1868
1869static int win_chr_init(CharDriverState *chr, const char *filename)
1870{
1871 WinCharState *s = chr->opaque;
1872 COMMCONFIG comcfg;
1873 COMMTIMEOUTS cto = { 0, 0, 0, 0, 0};
1874 COMSTAT comstat;
1875 DWORD size;
1876 DWORD err;
1877
1878 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1879 if (!s->hsend) {
1880 fprintf(stderr, "Failed CreateEvent\n");
1881 goto fail;
1882 }
1883 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1884 if (!s->hrecv) {
1885 fprintf(stderr, "Failed CreateEvent\n");
1886 goto fail;
1887 }
1888
1889 s->hcom = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, NULL,
1890 OPEN_EXISTING, FILE_FLAG_OVERLAPPED, 0);
1891 if (s->hcom == INVALID_HANDLE_VALUE) {
1892 fprintf(stderr, "Failed CreateFile (%lu)\n", GetLastError());
1893 s->hcom = NULL;
1894 goto fail;
1895 }
1896
1897 if (!SetupComm(s->hcom, NRECVBUF, NSENDBUF)) {
1898 fprintf(stderr, "Failed SetupComm\n");
1899 goto fail;
1900 }
1901
1902 ZeroMemory(&comcfg, sizeof(COMMCONFIG));
1903 size = sizeof(COMMCONFIG);
1904 GetDefaultCommConfig(filename, &comcfg, &size);
1905 comcfg.dcb.DCBlength = sizeof(DCB);
1906 CommConfigDialog(filename, NULL, &comcfg);
1907
1908 if (!SetCommState(s->hcom, &comcfg.dcb)) {
1909 fprintf(stderr, "Failed SetCommState\n");
1910 goto fail;
1911 }
1912
1913 if (!SetCommMask(s->hcom, EV_ERR)) {
1914 fprintf(stderr, "Failed SetCommMask\n");
1915 goto fail;
1916 }
1917
1918 cto.ReadIntervalTimeout = MAXDWORD;
1919 if (!SetCommTimeouts(s->hcom, &cto)) {
1920 fprintf(stderr, "Failed SetCommTimeouts\n");
1921 goto fail;
1922 }
1923
1924 if (!ClearCommError(s->hcom, &err, &comstat)) {
1925 fprintf(stderr, "Failed ClearCommError\n");
1926 goto fail;
1927 }
1928 qemu_add_polling_cb(win_chr_poll, chr);
1929 return 0;
1930
1931 fail:
1932 win_chr_close(chr);
1933 return -1;
1934}
1935
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001936/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00001937static int win_chr_write(CharDriverState *chr, const uint8_t *buf, int len1)
1938{
1939 WinCharState *s = chr->opaque;
1940 DWORD len, ret, size, err;
1941
1942 len = len1;
1943 ZeroMemory(&s->osend, sizeof(s->osend));
1944 s->osend.hEvent = s->hsend;
1945 while (len > 0) {
1946 if (s->hsend)
1947 ret = WriteFile(s->hcom, buf, len, &size, &s->osend);
1948 else
1949 ret = WriteFile(s->hcom, buf, len, &size, NULL);
1950 if (!ret) {
1951 err = GetLastError();
1952 if (err == ERROR_IO_PENDING) {
1953 ret = GetOverlappedResult(s->hcom, &s->osend, &size, TRUE);
1954 if (ret) {
1955 buf += size;
1956 len -= size;
1957 } else {
1958 break;
1959 }
1960 } else {
1961 break;
1962 }
1963 } else {
1964 buf += size;
1965 len -= size;
1966 }
1967 }
1968 return len1 - len;
1969}
1970
1971static int win_chr_read_poll(CharDriverState *chr)
1972{
1973 WinCharState *s = chr->opaque;
1974
Anthony Liguori909cda12011-08-15 11:17:31 -05001975 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001976 return s->max_size;
1977}
1978
1979static void win_chr_readfile(CharDriverState *chr)
1980{
1981 WinCharState *s = chr->opaque;
1982 int ret, err;
Amit Shah9bd78542009-11-03 19:59:54 +05301983 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00001984 DWORD size;
1985
1986 ZeroMemory(&s->orecv, sizeof(s->orecv));
1987 s->orecv.hEvent = s->hrecv;
1988 ret = ReadFile(s->hcom, buf, s->len, &size, &s->orecv);
1989 if (!ret) {
1990 err = GetLastError();
1991 if (err == ERROR_IO_PENDING) {
1992 ret = GetOverlappedResult(s->hcom, &s->orecv, &size, TRUE);
1993 }
1994 }
1995
1996 if (size > 0) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05001997 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00001998 }
1999}
2000
2001static void win_chr_read(CharDriverState *chr)
2002{
2003 WinCharState *s = chr->opaque;
2004
2005 if (s->len > s->max_size)
2006 s->len = s->max_size;
2007 if (s->len == 0)
2008 return;
2009
2010 win_chr_readfile(chr);
2011}
2012
2013static int win_chr_poll(void *opaque)
2014{
2015 CharDriverState *chr = opaque;
2016 WinCharState *s = chr->opaque;
2017 COMSTAT status;
2018 DWORD comerr;
2019
2020 ClearCommError(s->hcom, &comerr, &status);
2021 if (status.cbInQue > 0) {
2022 s->len = status.cbInQue;
2023 win_chr_read_poll(chr);
2024 win_chr_read(chr);
2025 return 1;
2026 }
2027 return 0;
2028}
2029
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01002030static CharDriverState *qemu_chr_open_win_path(const char *filename)
aliguori6f97dba2008-10-31 18:49:55 +00002031{
2032 CharDriverState *chr;
2033 WinCharState *s;
2034
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002035 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05002036 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00002037 chr->opaque = s;
2038 chr->chr_write = win_chr_write;
2039 chr->chr_close = win_chr_close;
2040
2041 if (win_chr_init(chr, filename) < 0) {
Stefan Weil2e02e182011-10-07 07:38:46 +02002042 g_free(s);
2043 g_free(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01002044 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002045 }
Markus Armbruster1f514702012-02-07 15:09:08 +01002046 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00002047}
2048
2049static int win_chr_pipe_poll(void *opaque)
2050{
2051 CharDriverState *chr = opaque;
2052 WinCharState *s = chr->opaque;
2053 DWORD size;
2054
2055 PeekNamedPipe(s->hcom, NULL, 0, NULL, &size, NULL);
2056 if (size > 0) {
2057 s->len = size;
2058 win_chr_read_poll(chr);
2059 win_chr_read(chr);
2060 return 1;
2061 }
2062 return 0;
2063}
2064
2065static int win_chr_pipe_init(CharDriverState *chr, const char *filename)
2066{
2067 WinCharState *s = chr->opaque;
2068 OVERLAPPED ov;
2069 int ret;
2070 DWORD size;
Corey Minyard9f781162014-10-02 11:17:33 -05002071 char openname[CHR_MAX_FILENAME_SIZE];
aliguori6f97dba2008-10-31 18:49:55 +00002072
2073 s->fpipe = TRUE;
2074
2075 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
2076 if (!s->hsend) {
2077 fprintf(stderr, "Failed CreateEvent\n");
2078 goto fail;
2079 }
2080 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
2081 if (!s->hrecv) {
2082 fprintf(stderr, "Failed CreateEvent\n");
2083 goto fail;
2084 }
2085
2086 snprintf(openname, sizeof(openname), "\\\\.\\pipe\\%s", filename);
2087 s->hcom = CreateNamedPipe(openname, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
2088 PIPE_TYPE_BYTE | PIPE_READMODE_BYTE |
2089 PIPE_WAIT,
2090 MAXCONNECT, NSENDBUF, NRECVBUF, NTIMEOUT, NULL);
2091 if (s->hcom == INVALID_HANDLE_VALUE) {
2092 fprintf(stderr, "Failed CreateNamedPipe (%lu)\n", GetLastError());
2093 s->hcom = NULL;
2094 goto fail;
2095 }
2096
2097 ZeroMemory(&ov, sizeof(ov));
2098 ov.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
2099 ret = ConnectNamedPipe(s->hcom, &ov);
2100 if (ret) {
2101 fprintf(stderr, "Failed ConnectNamedPipe\n");
2102 goto fail;
2103 }
2104
2105 ret = GetOverlappedResult(s->hcom, &ov, &size, TRUE);
2106 if (!ret) {
2107 fprintf(stderr, "Failed GetOverlappedResult\n");
2108 if (ov.hEvent) {
2109 CloseHandle(ov.hEvent);
2110 ov.hEvent = NULL;
2111 }
2112 goto fail;
2113 }
2114
2115 if (ov.hEvent) {
2116 CloseHandle(ov.hEvent);
2117 ov.hEvent = NULL;
2118 }
2119 qemu_add_polling_cb(win_chr_pipe_poll, chr);
2120 return 0;
2121
2122 fail:
2123 win_chr_close(chr);
2124 return -1;
2125}
2126
2127
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01002128static CharDriverState *qemu_chr_open_pipe(ChardevHostdev *opts)
aliguori6f97dba2008-10-31 18:49:55 +00002129{
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01002130 const char *filename = opts->device;
aliguori6f97dba2008-10-31 18:49:55 +00002131 CharDriverState *chr;
2132 WinCharState *s;
2133
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002134 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05002135 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00002136 chr->opaque = s;
2137 chr->chr_write = win_chr_write;
2138 chr->chr_close = win_chr_close;
2139
2140 if (win_chr_pipe_init(chr, filename) < 0) {
Stefan Weil2e02e182011-10-07 07:38:46 +02002141 g_free(s);
2142 g_free(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01002143 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002144 }
Markus Armbruster1f514702012-02-07 15:09:08 +01002145 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00002146}
2147
Markus Armbruster1f514702012-02-07 15:09:08 +01002148static CharDriverState *qemu_chr_open_win_file(HANDLE fd_out)
aliguori6f97dba2008-10-31 18:49:55 +00002149{
2150 CharDriverState *chr;
2151 WinCharState *s;
2152
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002153 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05002154 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00002155 s->hcom = fd_out;
2156 chr->opaque = s;
2157 chr->chr_write = win_chr_write;
Markus Armbruster1f514702012-02-07 15:09:08 +01002158 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00002159}
2160
Gerd Hoffmannd9ac3742013-02-25 11:48:06 +01002161static CharDriverState *qemu_chr_open_win_con(void)
aliguori6f97dba2008-10-31 18:49:55 +00002162{
Markus Armbruster1f514702012-02-07 15:09:08 +01002163 return qemu_chr_open_win_file(GetStdHandle(STD_OUTPUT_HANDLE));
aliguori6f97dba2008-10-31 18:49:55 +00002164}
2165
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002166static int win_stdio_write(CharDriverState *chr, const uint8_t *buf, int len)
2167{
2168 HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
2169 DWORD dwSize;
2170 int len1;
2171
2172 len1 = len;
2173
2174 while (len1 > 0) {
2175 if (!WriteFile(hStdOut, buf, len1, &dwSize, NULL)) {
2176 break;
2177 }
2178 buf += dwSize;
2179 len1 -= dwSize;
2180 }
2181
2182 return len - len1;
2183}
2184
2185static void win_stdio_wait_func(void *opaque)
2186{
2187 CharDriverState *chr = opaque;
2188 WinStdioCharState *stdio = chr->opaque;
2189 INPUT_RECORD buf[4];
2190 int ret;
2191 DWORD dwSize;
2192 int i;
2193
Stefan Weildff74242013-12-07 14:48:04 +01002194 ret = ReadConsoleInput(stdio->hStdIn, buf, ARRAY_SIZE(buf), &dwSize);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002195
2196 if (!ret) {
2197 /* Avoid error storm */
2198 qemu_del_wait_object(stdio->hStdIn, NULL, NULL);
2199 return;
2200 }
2201
2202 for (i = 0; i < dwSize; i++) {
2203 KEY_EVENT_RECORD *kev = &buf[i].Event.KeyEvent;
2204
2205 if (buf[i].EventType == KEY_EVENT && kev->bKeyDown) {
2206 int j;
2207 if (kev->uChar.AsciiChar != 0) {
2208 for (j = 0; j < kev->wRepeatCount; j++) {
2209 if (qemu_chr_be_can_write(chr)) {
2210 uint8_t c = kev->uChar.AsciiChar;
2211 qemu_chr_be_write(chr, &c, 1);
2212 }
2213 }
2214 }
2215 }
2216 }
2217}
2218
2219static DWORD WINAPI win_stdio_thread(LPVOID param)
2220{
2221 CharDriverState *chr = param;
2222 WinStdioCharState *stdio = chr->opaque;
2223 int ret;
2224 DWORD dwSize;
2225
2226 while (1) {
2227
2228 /* Wait for one byte */
2229 ret = ReadFile(stdio->hStdIn, &stdio->win_stdio_buf, 1, &dwSize, NULL);
2230
2231 /* Exit in case of error, continue if nothing read */
2232 if (!ret) {
2233 break;
2234 }
2235 if (!dwSize) {
2236 continue;
2237 }
2238
2239 /* Some terminal emulator returns \r\n for Enter, just pass \n */
2240 if (stdio->win_stdio_buf == '\r') {
2241 continue;
2242 }
2243
2244 /* Signal the main thread and wait until the byte was eaten */
2245 if (!SetEvent(stdio->hInputReadyEvent)) {
2246 break;
2247 }
2248 if (WaitForSingleObject(stdio->hInputDoneEvent, INFINITE)
2249 != WAIT_OBJECT_0) {
2250 break;
2251 }
2252 }
2253
2254 qemu_del_wait_object(stdio->hInputReadyEvent, NULL, NULL);
2255 return 0;
2256}
2257
2258static void win_stdio_thread_wait_func(void *opaque)
2259{
2260 CharDriverState *chr = opaque;
2261 WinStdioCharState *stdio = chr->opaque;
2262
2263 if (qemu_chr_be_can_write(chr)) {
2264 qemu_chr_be_write(chr, &stdio->win_stdio_buf, 1);
2265 }
2266
2267 SetEvent(stdio->hInputDoneEvent);
2268}
2269
2270static void qemu_chr_set_echo_win_stdio(CharDriverState *chr, bool echo)
2271{
2272 WinStdioCharState *stdio = chr->opaque;
2273 DWORD dwMode = 0;
2274
2275 GetConsoleMode(stdio->hStdIn, &dwMode);
2276
2277 if (echo) {
2278 SetConsoleMode(stdio->hStdIn, dwMode | ENABLE_ECHO_INPUT);
2279 } else {
2280 SetConsoleMode(stdio->hStdIn, dwMode & ~ENABLE_ECHO_INPUT);
2281 }
2282}
2283
2284static void win_stdio_close(CharDriverState *chr)
2285{
2286 WinStdioCharState *stdio = chr->opaque;
2287
2288 if (stdio->hInputReadyEvent != INVALID_HANDLE_VALUE) {
2289 CloseHandle(stdio->hInputReadyEvent);
2290 }
2291 if (stdio->hInputDoneEvent != INVALID_HANDLE_VALUE) {
2292 CloseHandle(stdio->hInputDoneEvent);
2293 }
2294 if (stdio->hInputThread != INVALID_HANDLE_VALUE) {
2295 TerminateThread(stdio->hInputThread, 0);
2296 }
2297
2298 g_free(chr->opaque);
2299 g_free(chr);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002300}
2301
Gerd Hoffmann7c358032013-02-21 12:34:58 +01002302static CharDriverState *qemu_chr_open_stdio(ChardevStdio *opts)
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002303{
2304 CharDriverState *chr;
2305 WinStdioCharState *stdio;
2306 DWORD dwMode;
2307 int is_console = 0;
2308
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002309 chr = qemu_chr_alloc();
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002310 stdio = g_malloc0(sizeof(WinStdioCharState));
2311
2312 stdio->hStdIn = GetStdHandle(STD_INPUT_HANDLE);
2313 if (stdio->hStdIn == INVALID_HANDLE_VALUE) {
2314 fprintf(stderr, "cannot open stdio: invalid handle\n");
2315 exit(1);
2316 }
2317
2318 is_console = GetConsoleMode(stdio->hStdIn, &dwMode) != 0;
2319
2320 chr->opaque = stdio;
2321 chr->chr_write = win_stdio_write;
2322 chr->chr_close = win_stdio_close;
2323
Anthony Liguoried7a1542013-03-05 23:21:17 +05302324 if (is_console) {
2325 if (qemu_add_wait_object(stdio->hStdIn,
2326 win_stdio_wait_func, chr)) {
2327 fprintf(stderr, "qemu_add_wait_object: failed\n");
2328 }
2329 } else {
2330 DWORD dwId;
2331
2332 stdio->hInputReadyEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2333 stdio->hInputDoneEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2334 stdio->hInputThread = CreateThread(NULL, 0, win_stdio_thread,
2335 chr, 0, &dwId);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002336
Anthony Liguoried7a1542013-03-05 23:21:17 +05302337 if (stdio->hInputThread == INVALID_HANDLE_VALUE
2338 || stdio->hInputReadyEvent == INVALID_HANDLE_VALUE
2339 || stdio->hInputDoneEvent == INVALID_HANDLE_VALUE) {
2340 fprintf(stderr, "cannot create stdio thread or event\n");
2341 exit(1);
2342 }
2343 if (qemu_add_wait_object(stdio->hInputReadyEvent,
2344 win_stdio_thread_wait_func, chr)) {
2345 fprintf(stderr, "qemu_add_wait_object: failed\n");
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002346 }
2347 }
2348
2349 dwMode |= ENABLE_LINE_INPUT;
2350
Anthony Liguoried7a1542013-03-05 23:21:17 +05302351 if (is_console) {
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002352 /* set the terminal in raw mode */
2353 /* ENABLE_QUICK_EDIT_MODE | ENABLE_EXTENDED_FLAGS */
2354 dwMode |= ENABLE_PROCESSED_INPUT;
2355 }
2356
2357 SetConsoleMode(stdio->hStdIn, dwMode);
2358
2359 chr->chr_set_echo = qemu_chr_set_echo_win_stdio;
2360 qemu_chr_fe_set_echo(chr, false);
2361
Markus Armbruster1f514702012-02-07 15:09:08 +01002362 return chr;
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002363}
aliguori6f97dba2008-10-31 18:49:55 +00002364#endif /* !_WIN32 */
2365
Anthony Liguori5ab82112013-03-05 23:21:31 +05302366
aliguori6f97dba2008-10-31 18:49:55 +00002367/***********************************************************/
2368/* UDP Net console */
2369
2370typedef struct {
2371 int fd;
Anthony Liguori76a96442013-03-05 23:21:21 +05302372 GIOChannel *chan;
Amit Shah9bd78542009-11-03 19:59:54 +05302373 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002374 int bufcnt;
2375 int bufptr;
2376 int max_size;
2377} NetCharDriver;
2378
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02002379/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00002380static int udp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2381{
2382 NetCharDriver *s = chr->opaque;
Anthony Liguori76a96442013-03-05 23:21:21 +05302383 gsize bytes_written;
2384 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00002385
Anthony Liguori76a96442013-03-05 23:21:21 +05302386 status = g_io_channel_write_chars(s->chan, (const gchar *)buf, len, &bytes_written, NULL);
2387 if (status == G_IO_STATUS_EOF) {
2388 return 0;
2389 } else if (status != G_IO_STATUS_NORMAL) {
2390 return -1;
2391 }
2392
2393 return bytes_written;
aliguori6f97dba2008-10-31 18:49:55 +00002394}
2395
2396static int udp_chr_read_poll(void *opaque)
2397{
2398 CharDriverState *chr = opaque;
2399 NetCharDriver *s = chr->opaque;
2400
Anthony Liguori909cda12011-08-15 11:17:31 -05002401 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002402
2403 /* If there were any stray characters in the queue process them
2404 * first
2405 */
2406 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002407 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
aliguori6f97dba2008-10-31 18:49:55 +00002408 s->bufptr++;
Anthony Liguori909cda12011-08-15 11:17:31 -05002409 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002410 }
2411 return s->max_size;
2412}
2413
Anthony Liguori76a96442013-03-05 23:21:21 +05302414static gboolean udp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002415{
2416 CharDriverState *chr = opaque;
2417 NetCharDriver *s = chr->opaque;
Anthony Liguori76a96442013-03-05 23:21:21 +05302418 gsize bytes_read = 0;
2419 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00002420
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02002421 if (s->max_size == 0) {
2422 return TRUE;
2423 }
Anthony Liguori76a96442013-03-05 23:21:21 +05302424 status = g_io_channel_read_chars(s->chan, (gchar *)s->buf, sizeof(s->buf),
2425 &bytes_read, NULL);
2426 s->bufcnt = bytes_read;
aliguori6f97dba2008-10-31 18:49:55 +00002427 s->bufptr = s->bufcnt;
Anthony Liguori76a96442013-03-05 23:21:21 +05302428 if (status != G_IO_STATUS_NORMAL) {
Amit Shah26da70c2013-08-28 15:23:37 +05302429 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302430 return FALSE;
2431 }
aliguori6f97dba2008-10-31 18:49:55 +00002432
2433 s->bufptr = 0;
2434 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002435 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
aliguori6f97dba2008-10-31 18:49:55 +00002436 s->bufptr++;
Anthony Liguori909cda12011-08-15 11:17:31 -05002437 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002438 }
Anthony Liguori76a96442013-03-05 23:21:21 +05302439
2440 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002441}
2442
2443static void udp_chr_update_read_handler(CharDriverState *chr)
2444{
2445 NetCharDriver *s = chr->opaque;
2446
Amit Shah26da70c2013-08-28 15:23:37 +05302447 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302448 if (s->chan) {
Amit Shah7ba9add2013-08-28 15:18:29 +05302449 chr->fd_in_tag = io_add_watch_poll(s->chan, udp_chr_read_poll,
2450 udp_chr_read, chr);
aliguori6f97dba2008-10-31 18:49:55 +00002451 }
2452}
2453
aliguori819f56b2009-03-28 17:58:14 +00002454static void udp_chr_close(CharDriverState *chr)
2455{
2456 NetCharDriver *s = chr->opaque;
Amit Shah26da70c2013-08-28 15:23:37 +05302457
2458 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302459 if (s->chan) {
2460 g_io_channel_unref(s->chan);
aliguori819f56b2009-03-28 17:58:14 +00002461 closesocket(s->fd);
2462 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002463 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01002464 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori819f56b2009-03-28 17:58:14 +00002465}
2466
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002467static CharDriverState *qemu_chr_open_udp_fd(int fd)
aliguori6f97dba2008-10-31 18:49:55 +00002468{
2469 CharDriverState *chr = NULL;
2470 NetCharDriver *s = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002471
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002472 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05002473 s = g_malloc0(sizeof(NetCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00002474
aliguori6f97dba2008-10-31 18:49:55 +00002475 s->fd = fd;
Anthony Liguori76a96442013-03-05 23:21:21 +05302476 s->chan = io_channel_from_socket(s->fd);
aliguori6f97dba2008-10-31 18:49:55 +00002477 s->bufcnt = 0;
2478 s->bufptr = 0;
2479 chr->opaque = s;
2480 chr->chr_write = udp_chr_write;
2481 chr->chr_update_read_handler = udp_chr_update_read_handler;
aliguori819f56b2009-03-28 17:58:14 +00002482 chr->chr_close = udp_chr_close;
Michael Rothbd5c51e2013-06-07 15:19:53 -05002483 /* be isn't opened until we get a connection */
2484 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +01002485 return chr;
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002486}
aliguori6f97dba2008-10-31 18:49:55 +00002487
aliguori6f97dba2008-10-31 18:49:55 +00002488/***********************************************************/
2489/* TCP Net console */
2490
2491typedef struct {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302492
2493 GIOChannel *chan, *listen_chan;
Amit Shah7ba9add2013-08-28 15:18:29 +05302494 guint listen_tag;
aliguori6f97dba2008-10-31 18:49:55 +00002495 int fd, listen_fd;
2496 int connected;
2497 int max_size;
2498 int do_telnetopt;
2499 int do_nodelay;
2500 int is_unix;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002501 int *read_msgfds;
2502 int read_msgfds_num;
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002503 int *write_msgfds;
2504 int write_msgfds_num;
Corey Minyardcfb429c2014-10-02 11:17:35 -05002505
2506 SocketAddress *addr;
2507 bool is_listen;
2508 bool is_telnet;
Corey Minyard5dd1f022014-10-02 11:17:37 -05002509
2510 guint reconnect_timer;
2511 int64_t reconnect_time;
Corey Minyard5008e5b2014-10-08 07:11:55 -05002512 bool connect_err_reported;
aliguori6f97dba2008-10-31 18:49:55 +00002513} TCPCharDriver;
2514
Corey Minyard5dd1f022014-10-02 11:17:37 -05002515static gboolean socket_reconnect_timeout(gpointer opaque);
2516
2517static void qemu_chr_socket_restart_timer(CharDriverState *chr)
2518{
2519 TCPCharDriver *s = chr->opaque;
2520 assert(s->connected == 0);
2521 s->reconnect_timer = g_timeout_add_seconds(s->reconnect_time,
2522 socket_reconnect_timeout, chr);
2523}
2524
Corey Minyard5008e5b2014-10-08 07:11:55 -05002525static void check_report_connect_error(CharDriverState *chr,
2526 Error *err)
2527{
2528 TCPCharDriver *s = chr->opaque;
2529
2530 if (!s->connect_err_reported) {
2531 error_report("Unable to connect character device %s: %s",
2532 chr->label, error_get_pretty(err));
2533 s->connect_err_reported = true;
2534 }
2535 qemu_chr_socket_restart_timer(chr);
2536}
2537
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302538static gboolean tcp_chr_accept(GIOChannel *chan, GIOCondition cond, void *opaque);
aliguori6f97dba2008-10-31 18:49:55 +00002539
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002540#ifndef _WIN32
2541static int unix_send_msgfds(CharDriverState *chr, const uint8_t *buf, int len)
2542{
2543 TCPCharDriver *s = chr->opaque;
2544 struct msghdr msgh;
2545 struct iovec iov;
2546 int r;
2547
2548 size_t fd_size = s->write_msgfds_num * sizeof(int);
2549 char control[CMSG_SPACE(fd_size)];
2550 struct cmsghdr *cmsg;
2551
2552 memset(&msgh, 0, sizeof(msgh));
2553 memset(control, 0, sizeof(control));
2554
2555 /* set the payload */
2556 iov.iov_base = (uint8_t *) buf;
2557 iov.iov_len = len;
2558
2559 msgh.msg_iov = &iov;
2560 msgh.msg_iovlen = 1;
2561
2562 msgh.msg_control = control;
2563 msgh.msg_controllen = sizeof(control);
2564
2565 cmsg = CMSG_FIRSTHDR(&msgh);
2566
2567 cmsg->cmsg_len = CMSG_LEN(fd_size);
2568 cmsg->cmsg_level = SOL_SOCKET;
2569 cmsg->cmsg_type = SCM_RIGHTS;
2570 memcpy(CMSG_DATA(cmsg), s->write_msgfds, fd_size);
2571
2572 do {
2573 r = sendmsg(s->fd, &msgh, 0);
2574 } while (r < 0 && errno == EINTR);
2575
2576 /* free the written msgfds, no matter what */
2577 if (s->write_msgfds_num) {
2578 g_free(s->write_msgfds);
2579 s->write_msgfds = 0;
2580 s->write_msgfds_num = 0;
2581 }
2582
2583 return r;
2584}
2585#endif
2586
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02002587/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00002588static int tcp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2589{
2590 TCPCharDriver *s = chr->opaque;
2591 if (s->connected) {
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002592#ifndef _WIN32
2593 if (s->is_unix && s->write_msgfds_num) {
2594 return unix_send_msgfds(chr, buf, len);
2595 } else
2596#endif
2597 {
2598 return io_channel_send(s->chan, buf, len);
2599 }
Anthony Liguori455aa1e2012-09-05 13:52:49 -05002600 } else {
Anthony Liguori6db0fdc2012-09-12 14:34:07 -05002601 /* XXX: indicate an error ? */
Anthony Liguori455aa1e2012-09-05 13:52:49 -05002602 return len;
aliguori6f97dba2008-10-31 18:49:55 +00002603 }
2604}
2605
2606static int tcp_chr_read_poll(void *opaque)
2607{
2608 CharDriverState *chr = opaque;
2609 TCPCharDriver *s = chr->opaque;
2610 if (!s->connected)
2611 return 0;
Anthony Liguori909cda12011-08-15 11:17:31 -05002612 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002613 return s->max_size;
2614}
2615
2616#define IAC 255
2617#define IAC_BREAK 243
2618static void tcp_chr_process_IAC_bytes(CharDriverState *chr,
2619 TCPCharDriver *s,
2620 uint8_t *buf, int *size)
2621{
2622 /* Handle any telnet client's basic IAC options to satisfy char by
2623 * char mode with no echo. All IAC options will be removed from
2624 * the buf and the do_telnetopt variable will be used to track the
2625 * state of the width of the IAC information.
2626 *
2627 * IAC commands come in sets of 3 bytes with the exception of the
2628 * "IAC BREAK" command and the double IAC.
2629 */
2630
2631 int i;
2632 int j = 0;
2633
2634 for (i = 0; i < *size; i++) {
2635 if (s->do_telnetopt > 1) {
2636 if ((unsigned char)buf[i] == IAC && s->do_telnetopt == 2) {
2637 /* Double IAC means send an IAC */
2638 if (j != i)
2639 buf[j] = buf[i];
2640 j++;
2641 s->do_telnetopt = 1;
2642 } else {
2643 if ((unsigned char)buf[i] == IAC_BREAK && s->do_telnetopt == 2) {
2644 /* Handle IAC break commands by sending a serial break */
Hans de Goedea425d232011-11-19 10:22:43 +01002645 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
aliguori6f97dba2008-10-31 18:49:55 +00002646 s->do_telnetopt++;
2647 }
2648 s->do_telnetopt++;
2649 }
2650 if (s->do_telnetopt >= 4) {
2651 s->do_telnetopt = 1;
2652 }
2653 } else {
2654 if ((unsigned char)buf[i] == IAC) {
2655 s->do_telnetopt = 2;
2656 } else {
2657 if (j != i)
2658 buf[j] = buf[i];
2659 j++;
2660 }
2661 }
2662 }
2663 *size = j;
2664}
2665
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002666static int tcp_get_msgfds(CharDriverState *chr, int *fds, int num)
Mark McLoughlin7d174052009-07-22 09:11:39 +01002667{
2668 TCPCharDriver *s = chr->opaque;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002669 int to_copy = (s->read_msgfds_num < num) ? s->read_msgfds_num : num;
2670
2671 if (to_copy) {
Stefan Hajnoczid2fc39b2014-06-22 10:38:37 +08002672 int i;
2673
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002674 memcpy(fds, s->read_msgfds, to_copy * sizeof(int));
2675
Stefan Hajnoczid2fc39b2014-06-22 10:38:37 +08002676 /* Close unused fds */
2677 for (i = to_copy; i < s->read_msgfds_num; i++) {
2678 close(s->read_msgfds[i]);
2679 }
2680
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002681 g_free(s->read_msgfds);
2682 s->read_msgfds = 0;
2683 s->read_msgfds_num = 0;
2684 }
2685
2686 return to_copy;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002687}
2688
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002689static int tcp_set_msgfds(CharDriverState *chr, int *fds, int num)
2690{
2691 TCPCharDriver *s = chr->opaque;
2692
2693 /* clear old pending fd array */
2694 if (s->write_msgfds) {
2695 g_free(s->write_msgfds);
2696 }
2697
2698 if (num) {
2699 s->write_msgfds = g_malloc(num * sizeof(int));
2700 memcpy(s->write_msgfds, fds, num * sizeof(int));
2701 }
2702
2703 s->write_msgfds_num = num;
2704
2705 return 0;
2706}
2707
Anthony Liguori73bcc2a2009-07-27 14:55:25 -05002708#ifndef _WIN32
Mark McLoughlin7d174052009-07-22 09:11:39 +01002709static void unix_process_msgfd(CharDriverState *chr, struct msghdr *msg)
2710{
2711 TCPCharDriver *s = chr->opaque;
2712 struct cmsghdr *cmsg;
2713
2714 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002715 int fd_size, i;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002716
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002717 if (cmsg->cmsg_len < CMSG_LEN(sizeof(int)) ||
Mark McLoughlin7d174052009-07-22 09:11:39 +01002718 cmsg->cmsg_level != SOL_SOCKET ||
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002719 cmsg->cmsg_type != SCM_RIGHTS) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002720 continue;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002721 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002722
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002723 fd_size = cmsg->cmsg_len - CMSG_LEN(0);
2724
2725 if (!fd_size) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002726 continue;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002727 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002728
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002729 /* close and clean read_msgfds */
2730 for (i = 0; i < s->read_msgfds_num; i++) {
2731 close(s->read_msgfds[i]);
2732 }
Stefan Hajnoczi9b938c72013-03-27 10:10:46 +01002733
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002734 if (s->read_msgfds_num) {
2735 g_free(s->read_msgfds);
2736 }
2737
2738 s->read_msgfds_num = fd_size / sizeof(int);
2739 s->read_msgfds = g_malloc(fd_size);
2740 memcpy(s->read_msgfds, CMSG_DATA(cmsg), fd_size);
2741
2742 for (i = 0; i < s->read_msgfds_num; i++) {
2743 int fd = s->read_msgfds[i];
2744 if (fd < 0) {
2745 continue;
2746 }
2747
2748 /* O_NONBLOCK is preserved across SCM_RIGHTS so reset it */
2749 qemu_set_block(fd);
2750
2751 #ifndef MSG_CMSG_CLOEXEC
2752 qemu_set_cloexec(fd);
2753 #endif
2754 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002755 }
2756}
2757
Mark McLoughlin9977c892009-07-22 09:11:38 +01002758static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2759{
2760 TCPCharDriver *s = chr->opaque;
Blue Swirl7cba04f2009-08-01 10:13:20 +00002761 struct msghdr msg = { NULL, };
Mark McLoughlin9977c892009-07-22 09:11:38 +01002762 struct iovec iov[1];
Mark McLoughlin7d174052009-07-22 09:11:39 +01002763 union {
2764 struct cmsghdr cmsg;
2765 char control[CMSG_SPACE(sizeof(int))];
2766 } msg_control;
Corey Bryant06138652012-08-14 16:43:42 -04002767 int flags = 0;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002768 ssize_t ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002769
2770 iov[0].iov_base = buf;
2771 iov[0].iov_len = len;
2772
2773 msg.msg_iov = iov;
2774 msg.msg_iovlen = 1;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002775 msg.msg_control = &msg_control;
2776 msg.msg_controllen = sizeof(msg_control);
Mark McLoughlin9977c892009-07-22 09:11:38 +01002777
Corey Bryant06138652012-08-14 16:43:42 -04002778#ifdef MSG_CMSG_CLOEXEC
2779 flags |= MSG_CMSG_CLOEXEC;
2780#endif
2781 ret = recvmsg(s->fd, &msg, flags);
2782 if (ret > 0 && s->is_unix) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002783 unix_process_msgfd(chr, &msg);
Corey Bryant06138652012-08-14 16:43:42 -04002784 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002785
2786 return ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002787}
2788#else
2789static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2790{
2791 TCPCharDriver *s = chr->opaque;
Blue Swirl00aa0042011-07-23 20:04:29 +00002792 return qemu_recv(s->fd, buf, len, 0);
Mark McLoughlin9977c892009-07-22 09:11:38 +01002793}
2794#endif
2795
Amit Shahd3cc5bc2013-03-05 23:21:25 +05302796static GSource *tcp_chr_add_watch(CharDriverState *chr, GIOCondition cond)
2797{
2798 TCPCharDriver *s = chr->opaque;
2799 return g_io_create_watch(s->chan, cond);
2800}
2801
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002802static void tcp_chr_disconnect(CharDriverState *chr)
2803{
2804 TCPCharDriver *s = chr->opaque;
2805
2806 s->connected = 0;
2807 if (s->listen_chan) {
2808 s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN,
2809 tcp_chr_accept, chr);
2810 }
2811 remove_fd_in_watch(chr);
2812 g_io_channel_unref(s->chan);
2813 s->chan = NULL;
2814 closesocket(s->fd);
2815 s->fd = -1;
Corey Minyard16cc4ff2014-10-02 11:17:36 -05002816 SocketAddress_to_str(chr->filename, CHR_MAX_FILENAME_SIZE,
2817 "disconnected:", s->addr, s->is_listen, s->is_telnet);
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002818 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
Corey Minyard5dd1f022014-10-02 11:17:37 -05002819 if (s->reconnect_time) {
2820 qemu_chr_socket_restart_timer(chr);
2821 }
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002822}
2823
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302824static gboolean tcp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002825{
2826 CharDriverState *chr = opaque;
2827 TCPCharDriver *s = chr->opaque;
Amit Shah9bd78542009-11-03 19:59:54 +05302828 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002829 int len, size;
2830
Kirill Batuzov812c1052014-07-01 15:52:32 +04002831 if (cond & G_IO_HUP) {
2832 /* connection closed */
2833 tcp_chr_disconnect(chr);
2834 return TRUE;
2835 }
2836
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302837 if (!s->connected || s->max_size <= 0) {
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02002838 return TRUE;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302839 }
aliguori6f97dba2008-10-31 18:49:55 +00002840 len = sizeof(buf);
2841 if (len > s->max_size)
2842 len = s->max_size;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002843 size = tcp_chr_recv(chr, (void *)buf, len);
aliguori6f97dba2008-10-31 18:49:55 +00002844 if (size == 0) {
2845 /* connection closed */
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002846 tcp_chr_disconnect(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002847 } else if (size > 0) {
2848 if (s->do_telnetopt)
2849 tcp_chr_process_IAC_bytes(chr, s, buf, &size);
2850 if (size > 0)
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002851 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00002852 }
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302853
2854 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002855}
2856
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002857static int tcp_chr_sync_read(CharDriverState *chr, const uint8_t *buf, int len)
2858{
2859 TCPCharDriver *s = chr->opaque;
2860 int size;
2861
2862 if (!s->connected) {
2863 return 0;
2864 }
2865
2866 size = tcp_chr_recv(chr, (void *) buf, len);
2867 if (size == 0) {
2868 /* connection closed */
2869 tcp_chr_disconnect(chr);
2870 }
2871
2872 return size;
2873}
2874
Blue Swirl68c18d12010-08-15 09:46:24 +00002875#ifndef _WIN32
2876CharDriverState *qemu_chr_open_eventfd(int eventfd)
2877{
David Marchande9d21c42014-06-11 17:25:16 +02002878 CharDriverState *chr = qemu_chr_open_fd(eventfd, eventfd);
2879
2880 if (chr) {
2881 chr->avail_connections = 1;
2882 }
2883
2884 return chr;
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002885}
Blue Swirl68c18d12010-08-15 09:46:24 +00002886#endif
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002887
aliguori6f97dba2008-10-31 18:49:55 +00002888static void tcp_chr_connect(void *opaque)
2889{
2890 CharDriverState *chr = opaque;
2891 TCPCharDriver *s = chr->opaque;
Corey Minyard01ca5192014-10-02 11:17:38 -05002892 struct sockaddr_storage ss, ps;
2893 socklen_t ss_len = sizeof(ss), ps_len = sizeof(ps);
Corey Minyard16cc4ff2014-10-02 11:17:36 -05002894
2895 memset(&ss, 0, ss_len);
2896 if (getsockname(s->fd, (struct sockaddr *) &ss, &ss_len) != 0) {
2897 snprintf(chr->filename, CHR_MAX_FILENAME_SIZE,
2898 "Error in getsockname: %s\n", strerror(errno));
Corey Minyard01ca5192014-10-02 11:17:38 -05002899 } else if (getpeername(s->fd, (struct sockaddr *) &ps, &ps_len) != 0) {
2900 snprintf(chr->filename, CHR_MAX_FILENAME_SIZE,
2901 "Error in getpeername: %s\n", strerror(errno));
Corey Minyard16cc4ff2014-10-02 11:17:36 -05002902 } else {
Corey Minyard01ca5192014-10-02 11:17:38 -05002903 sockaddr_to_str(chr->filename, CHR_MAX_FILENAME_SIZE,
2904 &ss, ss_len, &ps, ps_len,
Corey Minyard16cc4ff2014-10-02 11:17:36 -05002905 s->is_listen, s->is_telnet);
2906 }
aliguori6f97dba2008-10-31 18:49:55 +00002907
2908 s->connected = 1;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302909 if (s->chan) {
Amit Shah7ba9add2013-08-28 15:18:29 +05302910 chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
2911 tcp_chr_read, chr);
David Gibsonbbdd2ad2012-09-10 12:30:56 +10002912 }
Hans de Goedefee204f2013-03-26 11:07:54 +01002913 qemu_chr_be_generic_open(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002914}
2915
Gal Hammerac1b84d2014-02-25 12:12:35 +02002916static void tcp_chr_update_read_handler(CharDriverState *chr)
2917{
2918 TCPCharDriver *s = chr->opaque;
2919
2920 remove_fd_in_watch(chr);
2921 if (s->chan) {
2922 chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
2923 tcp_chr_read, chr);
2924 }
2925}
2926
aliguori6f97dba2008-10-31 18:49:55 +00002927#define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
2928static void tcp_chr_telnet_init(int fd)
2929{
2930 char buf[3];
2931 /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
2932 IACSET(buf, 0xff, 0xfb, 0x01); /* IAC WILL ECHO */
2933 send(fd, (char *)buf, 3, 0);
2934 IACSET(buf, 0xff, 0xfb, 0x03); /* IAC WILL Suppress go ahead */
2935 send(fd, (char *)buf, 3, 0);
2936 IACSET(buf, 0xff, 0xfb, 0x00); /* IAC WILL Binary */
2937 send(fd, (char *)buf, 3, 0);
2938 IACSET(buf, 0xff, 0xfd, 0x00); /* IAC DO Binary */
2939 send(fd, (char *)buf, 3, 0);
2940}
2941
Daniel P. Berrange13661082011-06-23 13:31:42 +01002942static int tcp_chr_add_client(CharDriverState *chr, int fd)
2943{
2944 TCPCharDriver *s = chr->opaque;
2945 if (s->fd != -1)
2946 return -1;
2947
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01002948 qemu_set_nonblock(fd);
Daniel P. Berrange13661082011-06-23 13:31:42 +01002949 if (s->do_nodelay)
2950 socket_set_nodelay(fd);
2951 s->fd = fd;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302952 s->chan = io_channel_from_socket(fd);
Paolo Bonzini910b6362013-04-19 17:32:06 +02002953 if (s->listen_tag) {
2954 g_source_remove(s->listen_tag);
2955 s->listen_tag = 0;
2956 }
Daniel P. Berrange13661082011-06-23 13:31:42 +01002957 tcp_chr_connect(chr);
2958
2959 return 0;
2960}
2961
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302962static gboolean tcp_chr_accept(GIOChannel *channel, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002963{
2964 CharDriverState *chr = opaque;
2965 TCPCharDriver *s = chr->opaque;
2966 struct sockaddr_in saddr;
2967#ifndef _WIN32
2968 struct sockaddr_un uaddr;
2969#endif
2970 struct sockaddr *addr;
2971 socklen_t len;
2972 int fd;
2973
2974 for(;;) {
2975#ifndef _WIN32
2976 if (s->is_unix) {
2977 len = sizeof(uaddr);
2978 addr = (struct sockaddr *)&uaddr;
2979 } else
2980#endif
2981 {
2982 len = sizeof(saddr);
2983 addr = (struct sockaddr *)&saddr;
2984 }
Kevin Wolf40ff6d72009-12-02 12:24:42 +01002985 fd = qemu_accept(s->listen_fd, addr, &len);
aliguori6f97dba2008-10-31 18:49:55 +00002986 if (fd < 0 && errno != EINTR) {
Hans de Goede79f20072013-04-25 13:53:02 +02002987 s->listen_tag = 0;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302988 return FALSE;
aliguori6f97dba2008-10-31 18:49:55 +00002989 } else if (fd >= 0) {
2990 if (s->do_telnetopt)
2991 tcp_chr_telnet_init(fd);
2992 break;
2993 }
2994 }
Daniel P. Berrange13661082011-06-23 13:31:42 +01002995 if (tcp_chr_add_client(chr, fd) < 0)
2996 close(fd);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302997
2998 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002999}
3000
3001static void tcp_chr_close(CharDriverState *chr)
3002{
3003 TCPCharDriver *s = chr->opaque;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03003004 int i;
Corey Minyardcfb429c2014-10-02 11:17:35 -05003005
Corey Minyard5dd1f022014-10-02 11:17:37 -05003006 if (s->reconnect_timer) {
3007 g_source_remove(s->reconnect_timer);
3008 s->reconnect_timer = 0;
3009 }
Corey Minyardcfb429c2014-10-02 11:17:35 -05003010 qapi_free_SocketAddress(s->addr);
aliguori819f56b2009-03-28 17:58:14 +00003011 if (s->fd >= 0) {
Amit Shah26da70c2013-08-28 15:23:37 +05303012 remove_fd_in_watch(chr);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303013 if (s->chan) {
3014 g_io_channel_unref(s->chan);
3015 }
aliguori6f97dba2008-10-31 18:49:55 +00003016 closesocket(s->fd);
aliguori819f56b2009-03-28 17:58:14 +00003017 }
3018 if (s->listen_fd >= 0) {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303019 if (s->listen_tag) {
3020 g_source_remove(s->listen_tag);
Paolo Bonzini910b6362013-04-19 17:32:06 +02003021 s->listen_tag = 0;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303022 }
3023 if (s->listen_chan) {
3024 g_io_channel_unref(s->listen_chan);
3025 }
aliguori6f97dba2008-10-31 18:49:55 +00003026 closesocket(s->listen_fd);
aliguori819f56b2009-03-28 17:58:14 +00003027 }
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03003028 if (s->read_msgfds_num) {
3029 for (i = 0; i < s->read_msgfds_num; i++) {
3030 close(s->read_msgfds[i]);
3031 }
3032 g_free(s->read_msgfds);
3033 }
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03003034 if (s->write_msgfds_num) {
3035 g_free(s->write_msgfds);
3036 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003037 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01003038 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00003039}
3040
Corey Minyard16cc4ff2014-10-02 11:17:36 -05003041static void qemu_chr_finish_socket_connection(CharDriverState *chr, int fd)
aliguori6f97dba2008-10-31 18:49:55 +00003042{
Corey Minyard43ded1a2014-10-02 11:17:34 -05003043 TCPCharDriver *s = chr->opaque;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003044
Corey Minyardcfb429c2014-10-02 11:17:35 -05003045 if (s->is_listen) {
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003046 s->listen_fd = fd;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303047 s->listen_chan = io_channel_from_socket(s->listen_fd);
Corey Minyard43ded1a2014-10-02 11:17:34 -05003048 s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN,
3049 tcp_chr_accept, chr);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003050 } else {
3051 s->connected = 1;
3052 s->fd = fd;
3053 socket_set_nodelay(fd);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303054 s->chan = io_channel_from_socket(s->fd);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003055 tcp_chr_connect(chr);
3056 }
Corey Minyard43ded1a2014-10-02 11:17:34 -05003057}
3058
Corey Minyard51795022014-10-08 07:11:56 -05003059static void qemu_chr_socket_connected(int fd, Error *err, void *opaque)
Corey Minyard5dd1f022014-10-02 11:17:37 -05003060{
3061 CharDriverState *chr = opaque;
Corey Minyard5008e5b2014-10-08 07:11:55 -05003062 TCPCharDriver *s = chr->opaque;
Corey Minyard5dd1f022014-10-02 11:17:37 -05003063
3064 if (fd < 0) {
Corey Minyard5008e5b2014-10-08 07:11:55 -05003065 check_report_connect_error(chr, err);
Corey Minyard5dd1f022014-10-02 11:17:37 -05003066 return;
3067 }
3068
Corey Minyard5008e5b2014-10-08 07:11:55 -05003069 s->connect_err_reported = false;
Corey Minyard5dd1f022014-10-02 11:17:37 -05003070 qemu_chr_finish_socket_connection(chr, fd);
3071}
3072
Corey Minyardcfb429c2014-10-02 11:17:35 -05003073static bool qemu_chr_open_socket_fd(CharDriverState *chr, Error **errp)
Corey Minyard43ded1a2014-10-02 11:17:34 -05003074{
Corey Minyardcfb429c2014-10-02 11:17:35 -05003075 TCPCharDriver *s = chr->opaque;
Corey Minyard43ded1a2014-10-02 11:17:34 -05003076 int fd;
3077
Corey Minyardcfb429c2014-10-02 11:17:35 -05003078 if (s->is_listen) {
3079 fd = socket_listen(s->addr, errp);
Corey Minyard5dd1f022014-10-02 11:17:37 -05003080 } else if (s->reconnect_time) {
3081 fd = socket_connect(s->addr, errp, qemu_chr_socket_connected, chr);
3082 return fd >= 0;
3083 } else {
Corey Minyardcfb429c2014-10-02 11:17:35 -05003084 fd = socket_connect(s->addr, errp, NULL, NULL);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003085 }
Corey Minyard43ded1a2014-10-02 11:17:34 -05003086 if (fd < 0) {
3087 return false;
3088 }
3089
Corey Minyard16cc4ff2014-10-02 11:17:36 -05003090 qemu_chr_finish_socket_connection(chr, fd);
3091 return true;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003092}
3093
Lei Li51767e72013-01-25 00:03:19 +08003094/*********************************************************/
Markus Armbruster3949e592013-02-06 21:27:24 +01003095/* Ring buffer chardev */
Lei Li51767e72013-01-25 00:03:19 +08003096
3097typedef struct {
3098 size_t size;
3099 size_t prod;
3100 size_t cons;
3101 uint8_t *cbuf;
Markus Armbruster3949e592013-02-06 21:27:24 +01003102} RingBufCharDriver;
Lei Li51767e72013-01-25 00:03:19 +08003103
Markus Armbruster3949e592013-02-06 21:27:24 +01003104static size_t ringbuf_count(const CharDriverState *chr)
Lei Li51767e72013-01-25 00:03:19 +08003105{
Markus Armbruster3949e592013-02-06 21:27:24 +01003106 const RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003107
Markus Armbruster5c230102013-02-06 21:27:23 +01003108 return d->prod - d->cons;
Lei Li51767e72013-01-25 00:03:19 +08003109}
3110
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02003111/* Called with chr_write_lock held. */
Markus Armbruster3949e592013-02-06 21:27:24 +01003112static int ringbuf_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
Lei Li51767e72013-01-25 00:03:19 +08003113{
Markus Armbruster3949e592013-02-06 21:27:24 +01003114 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003115 int i;
3116
3117 if (!buf || (len < 0)) {
3118 return -1;
3119 }
3120
3121 for (i = 0; i < len; i++ ) {
Markus Armbruster5c230102013-02-06 21:27:23 +01003122 d->cbuf[d->prod++ & (d->size - 1)] = buf[i];
3123 if (d->prod - d->cons > d->size) {
Lei Li51767e72013-01-25 00:03:19 +08003124 d->cons = d->prod - d->size;
3125 }
3126 }
3127
3128 return 0;
3129}
3130
Markus Armbruster3949e592013-02-06 21:27:24 +01003131static int ringbuf_chr_read(CharDriverState *chr, uint8_t *buf, int len)
Lei Li51767e72013-01-25 00:03:19 +08003132{
Markus Armbruster3949e592013-02-06 21:27:24 +01003133 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003134 int i;
3135
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02003136 qemu_mutex_lock(&chr->chr_write_lock);
Markus Armbruster5c230102013-02-06 21:27:23 +01003137 for (i = 0; i < len && d->cons != d->prod; i++) {
3138 buf[i] = d->cbuf[d->cons++ & (d->size - 1)];
Lei Li51767e72013-01-25 00:03:19 +08003139 }
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02003140 qemu_mutex_unlock(&chr->chr_write_lock);
Lei Li51767e72013-01-25 00:03:19 +08003141
3142 return i;
3143}
3144
Markus Armbruster3949e592013-02-06 21:27:24 +01003145static void ringbuf_chr_close(struct CharDriverState *chr)
Lei Li51767e72013-01-25 00:03:19 +08003146{
Markus Armbruster3949e592013-02-06 21:27:24 +01003147 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003148
3149 g_free(d->cbuf);
3150 g_free(d);
3151 chr->opaque = NULL;
3152}
3153
Markus Armbruster4f573782013-07-26 16:44:32 +02003154static CharDriverState *qemu_chr_open_ringbuf(ChardevRingbuf *opts,
3155 Error **errp)
Lei Li51767e72013-01-25 00:03:19 +08003156{
3157 CharDriverState *chr;
Markus Armbruster3949e592013-02-06 21:27:24 +01003158 RingBufCharDriver *d;
Lei Li51767e72013-01-25 00:03:19 +08003159
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02003160 chr = qemu_chr_alloc();
Lei Li51767e72013-01-25 00:03:19 +08003161 d = g_malloc(sizeof(*d));
3162
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003163 d->size = opts->has_size ? opts->size : 65536;
Lei Li51767e72013-01-25 00:03:19 +08003164
3165 /* The size must be power of 2 */
3166 if (d->size & (d->size - 1)) {
Markus Armbruster4f573782013-07-26 16:44:32 +02003167 error_setg(errp, "size of ringbuf chardev must be power of two");
Lei Li51767e72013-01-25 00:03:19 +08003168 goto fail;
3169 }
3170
3171 d->prod = 0;
3172 d->cons = 0;
3173 d->cbuf = g_malloc0(d->size);
3174
3175 chr->opaque = d;
Markus Armbruster3949e592013-02-06 21:27:24 +01003176 chr->chr_write = ringbuf_chr_write;
3177 chr->chr_close = ringbuf_chr_close;
Lei Li51767e72013-01-25 00:03:19 +08003178
3179 return chr;
3180
3181fail:
3182 g_free(d);
3183 g_free(chr);
3184 return NULL;
3185}
3186
Hani Benhabiles8e597772014-05-27 23:39:30 +01003187bool chr_is_ringbuf(const CharDriverState *chr)
Lei Li1f590cf2013-01-25 00:03:20 +08003188{
Markus Armbruster3949e592013-02-06 21:27:24 +01003189 return chr->chr_write == ringbuf_chr_write;
Lei Li1f590cf2013-01-25 00:03:20 +08003190}
3191
Markus Armbruster3949e592013-02-06 21:27:24 +01003192void qmp_ringbuf_write(const char *device, const char *data,
Markus Armbruster82e59a62013-02-06 21:27:14 +01003193 bool has_format, enum DataFormat format,
Lei Li1f590cf2013-01-25 00:03:20 +08003194 Error **errp)
3195{
3196 CharDriverState *chr;
Markus Armbrusterc4f331b2013-02-06 21:27:17 +01003197 const uint8_t *write_data;
Lei Li1f590cf2013-01-25 00:03:20 +08003198 int ret;
Peter Crosthwaite3d1bba22013-05-22 13:01:43 +10003199 gsize write_count;
Lei Li1f590cf2013-01-25 00:03:20 +08003200
3201 chr = qemu_chr_find(device);
3202 if (!chr) {
Markus Armbruster1a692782013-02-06 21:27:16 +01003203 error_setg(errp, "Device '%s' not found", device);
Lei Li1f590cf2013-01-25 00:03:20 +08003204 return;
3205 }
3206
Markus Armbruster3949e592013-02-06 21:27:24 +01003207 if (!chr_is_ringbuf(chr)) {
3208 error_setg(errp,"%s is not a ringbuf device", device);
Lei Li1f590cf2013-01-25 00:03:20 +08003209 return;
3210 }
3211
Lei Li1f590cf2013-01-25 00:03:20 +08003212 if (has_format && (format == DATA_FORMAT_BASE64)) {
3213 write_data = g_base64_decode(data, &write_count);
3214 } else {
3215 write_data = (uint8_t *)data;
Markus Armbruster82e59a62013-02-06 21:27:14 +01003216 write_count = strlen(data);
Lei Li1f590cf2013-01-25 00:03:20 +08003217 }
3218
Markus Armbruster3949e592013-02-06 21:27:24 +01003219 ret = ringbuf_chr_write(chr, write_data, write_count);
Lei Li1f590cf2013-01-25 00:03:20 +08003220
Markus Armbruster13289fb2013-02-06 21:27:18 +01003221 if (write_data != (uint8_t *)data) {
3222 g_free((void *)write_data);
3223 }
3224
Lei Li1f590cf2013-01-25 00:03:20 +08003225 if (ret < 0) {
3226 error_setg(errp, "Failed to write to device %s", device);
3227 return;
3228 }
3229}
3230
Markus Armbruster3949e592013-02-06 21:27:24 +01003231char *qmp_ringbuf_read(const char *device, int64_t size,
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003232 bool has_format, enum DataFormat format,
3233 Error **errp)
Lei Li49b6d722013-01-25 00:03:21 +08003234{
3235 CharDriverState *chr;
Markus Armbrusterc4f331b2013-02-06 21:27:17 +01003236 uint8_t *read_data;
Lei Li49b6d722013-01-25 00:03:21 +08003237 size_t count;
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003238 char *data;
Lei Li49b6d722013-01-25 00:03:21 +08003239
3240 chr = qemu_chr_find(device);
3241 if (!chr) {
Markus Armbruster1a692782013-02-06 21:27:16 +01003242 error_setg(errp, "Device '%s' not found", device);
Lei Li49b6d722013-01-25 00:03:21 +08003243 return NULL;
3244 }
3245
Markus Armbruster3949e592013-02-06 21:27:24 +01003246 if (!chr_is_ringbuf(chr)) {
3247 error_setg(errp,"%s is not a ringbuf device", device);
Lei Li49b6d722013-01-25 00:03:21 +08003248 return NULL;
3249 }
3250
3251 if (size <= 0) {
3252 error_setg(errp, "size must be greater than zero");
3253 return NULL;
3254 }
3255
Markus Armbruster3949e592013-02-06 21:27:24 +01003256 count = ringbuf_count(chr);
Lei Li49b6d722013-01-25 00:03:21 +08003257 size = size > count ? count : size;
Markus Armbruster44f3bcd2013-02-06 21:27:20 +01003258 read_data = g_malloc(size + 1);
Lei Li49b6d722013-01-25 00:03:21 +08003259
Markus Armbruster3949e592013-02-06 21:27:24 +01003260 ringbuf_chr_read(chr, read_data, size);
Lei Li49b6d722013-01-25 00:03:21 +08003261
3262 if (has_format && (format == DATA_FORMAT_BASE64)) {
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003263 data = g_base64_encode(read_data, size);
Markus Armbruster13289fb2013-02-06 21:27:18 +01003264 g_free(read_data);
Lei Li49b6d722013-01-25 00:03:21 +08003265 } else {
Markus Armbruster3949e592013-02-06 21:27:24 +01003266 /*
3267 * FIXME should read only complete, valid UTF-8 characters up
3268 * to @size bytes. Invalid sequences should be replaced by a
3269 * suitable replacement character. Except when (and only
3270 * when) ring buffer lost characters since last read, initial
3271 * continuation characters should be dropped.
3272 */
Markus Armbruster44f3bcd2013-02-06 21:27:20 +01003273 read_data[size] = 0;
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003274 data = (char *)read_data;
Lei Li49b6d722013-01-25 00:03:21 +08003275 }
3276
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003277 return data;
Lei Li49b6d722013-01-25 00:03:21 +08003278}
3279
Gerd Hoffmann33521632009-12-08 13:11:49 +01003280QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003281{
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003282 char host[65], port[33], width[8], height[8];
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003283 int pos;
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003284 const char *p;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003285 QemuOpts *opts;
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003286 Error *local_err = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003287
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003288 opts = qemu_opts_create(qemu_find_opts("chardev"), label, 1, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01003289 if (local_err) {
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003290 qerror_report_err(local_err);
3291 error_free(local_err);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003292 return NULL;
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003293 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003294
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003295 if (strstart(filename, "mon:", &p)) {
3296 filename = p;
3297 qemu_opt_set(opts, "mux", "on");
Paolo Bonzini02c4bdf2013-07-03 20:29:45 +04003298 if (strcmp(filename, "stdio") == 0) {
3299 /* Monitor is muxed to stdio: do not exit on Ctrl+C by default
3300 * but pass it to the guest. Handle this only for compat syntax,
3301 * for -chardev syntax we have special option for this.
3302 * This is what -nographic did, redirecting+muxing serial+monitor
3303 * to stdio causing Ctrl+C to be passed to guest. */
3304 qemu_opt_set(opts, "signal", "off");
3305 }
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003306 }
3307
Gerd Hoffmannf0457e82009-09-10 10:58:45 +02003308 if (strcmp(filename, "null") == 0 ||
3309 strcmp(filename, "pty") == 0 ||
3310 strcmp(filename, "msmouse") == 0 ||
Gerd Hoffmanndc1c21e2009-09-10 10:58:46 +02003311 strcmp(filename, "braille") == 0 ||
Paolo Bonzini56923992014-07-11 09:44:26 +02003312 strcmp(filename, "testdev") == 0 ||
Gerd Hoffmannf0457e82009-09-10 10:58:45 +02003313 strcmp(filename, "stdio") == 0) {
Gerd Hoffmann4490dad2009-09-10 10:58:43 +02003314 qemu_opt_set(opts, "backend", filename);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003315 return opts;
3316 }
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003317 if (strstart(filename, "vc", &p)) {
3318 qemu_opt_set(opts, "backend", "vc");
3319 if (*p == ':') {
Stefan Weil49aa4052013-09-30 23:04:49 +02003320 if (sscanf(p+1, "%7[0-9]x%7[0-9]", width, height) == 2) {
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003321 /* pixels */
3322 qemu_opt_set(opts, "width", width);
3323 qemu_opt_set(opts, "height", height);
Stefan Weil49aa4052013-09-30 23:04:49 +02003324 } else if (sscanf(p+1, "%7[0-9]Cx%7[0-9]C", width, height) == 2) {
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003325 /* chars */
3326 qemu_opt_set(opts, "cols", width);
3327 qemu_opt_set(opts, "rows", height);
3328 } else {
3329 goto fail;
3330 }
3331 }
3332 return opts;
3333 }
Gerd Hoffmannd6c983c2009-09-10 10:58:47 +02003334 if (strcmp(filename, "con:") == 0) {
3335 qemu_opt_set(opts, "backend", "console");
3336 return opts;
3337 }
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003338 if (strstart(filename, "COM", NULL)) {
3339 qemu_opt_set(opts, "backend", "serial");
3340 qemu_opt_set(opts, "path", filename);
3341 return opts;
3342 }
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003343 if (strstart(filename, "file:", &p)) {
3344 qemu_opt_set(opts, "backend", "file");
3345 qemu_opt_set(opts, "path", p);
3346 return opts;
3347 }
3348 if (strstart(filename, "pipe:", &p)) {
3349 qemu_opt_set(opts, "backend", "pipe");
3350 qemu_opt_set(opts, "path", p);
3351 return opts;
3352 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003353 if (strstart(filename, "tcp:", &p) ||
3354 strstart(filename, "telnet:", &p)) {
3355 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3356 host[0] = 0;
3357 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1)
3358 goto fail;
3359 }
3360 qemu_opt_set(opts, "backend", "socket");
3361 qemu_opt_set(opts, "host", host);
3362 qemu_opt_set(opts, "port", port);
3363 if (p[pos] == ',') {
3364 if (qemu_opts_do_parse(opts, p+pos+1, NULL) != 0)
3365 goto fail;
3366 }
3367 if (strstart(filename, "telnet:", &p))
3368 qemu_opt_set(opts, "telnet", "on");
3369 return opts;
3370 }
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003371 if (strstart(filename, "udp:", &p)) {
3372 qemu_opt_set(opts, "backend", "udp");
3373 if (sscanf(p, "%64[^:]:%32[^@,]%n", host, port, &pos) < 2) {
3374 host[0] = 0;
Jan Kiszka39324ca2010-03-07 11:28:48 +01003375 if (sscanf(p, ":%32[^@,]%n", port, &pos) < 1) {
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003376 goto fail;
3377 }
3378 }
3379 qemu_opt_set(opts, "host", host);
3380 qemu_opt_set(opts, "port", port);
3381 if (p[pos] == '@') {
3382 p += pos + 1;
3383 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3384 host[0] = 0;
3385 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1) {
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003386 goto fail;
3387 }
3388 }
3389 qemu_opt_set(opts, "localaddr", host);
3390 qemu_opt_set(opts, "localport", port);
3391 }
3392 return opts;
3393 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003394 if (strstart(filename, "unix:", &p)) {
3395 qemu_opt_set(opts, "backend", "socket");
3396 if (qemu_opts_do_parse(opts, p, "path") != 0)
3397 goto fail;
3398 return opts;
3399 }
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003400 if (strstart(filename, "/dev/parport", NULL) ||
3401 strstart(filename, "/dev/ppi", NULL)) {
3402 qemu_opt_set(opts, "backend", "parport");
3403 qemu_opt_set(opts, "path", filename);
3404 return opts;
3405 }
3406 if (strstart(filename, "/dev/", NULL)) {
3407 qemu_opt_set(opts, "backend", "tty");
3408 qemu_opt_set(opts, "path", filename);
3409 return opts;
3410 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003411
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003412fail:
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003413 qemu_opts_del(opts);
3414 return NULL;
3415}
3416
Gerd Hoffmann846e2e42013-02-21 12:07:14 +01003417static void qemu_chr_parse_file_out(QemuOpts *opts, ChardevBackend *backend,
3418 Error **errp)
3419{
3420 const char *path = qemu_opt_get(opts, "path");
3421
3422 if (path == NULL) {
3423 error_setg(errp, "chardev: file: no filename given");
3424 return;
3425 }
3426 backend->file = g_new0(ChardevFile, 1);
3427 backend->file->out = g_strdup(path);
3428}
3429
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003430static void qemu_chr_parse_stdio(QemuOpts *opts, ChardevBackend *backend,
3431 Error **errp)
3432{
3433 backend->stdio = g_new0(ChardevStdio, 1);
3434 backend->stdio->has_signal = true;
Paolo Bonzini02c4bdf2013-07-03 20:29:45 +04003435 backend->stdio->signal = qemu_opt_get_bool(opts, "signal", true);
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003436}
3437
Gerd Hoffmann0f1cb512013-02-22 15:48:05 +01003438static void qemu_chr_parse_serial(QemuOpts *opts, ChardevBackend *backend,
3439 Error **errp)
3440{
3441 const char *device = qemu_opt_get(opts, "path");
3442
3443 if (device == NULL) {
3444 error_setg(errp, "chardev: serial/tty: no device path given");
3445 return;
3446 }
3447 backend->serial = g_new0(ChardevHostdev, 1);
3448 backend->serial->device = g_strdup(device);
3449}
3450
Gerd Hoffmanndc375092013-02-22 16:17:01 +01003451static void qemu_chr_parse_parallel(QemuOpts *opts, ChardevBackend *backend,
3452 Error **errp)
3453{
3454 const char *device = qemu_opt_get(opts, "path");
3455
3456 if (device == NULL) {
3457 error_setg(errp, "chardev: parallel: no device path given");
3458 return;
3459 }
3460 backend->parallel = g_new0(ChardevHostdev, 1);
3461 backend->parallel->device = g_strdup(device);
3462}
3463
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01003464static void qemu_chr_parse_pipe(QemuOpts *opts, ChardevBackend *backend,
3465 Error **errp)
3466{
3467 const char *device = qemu_opt_get(opts, "path");
3468
3469 if (device == NULL) {
3470 error_setg(errp, "chardev: pipe: no device path given");
3471 return;
3472 }
3473 backend->pipe = g_new0(ChardevHostdev, 1);
3474 backend->pipe->device = g_strdup(device);
3475}
3476
Markus Armbruster4f573782013-07-26 16:44:32 +02003477static void qemu_chr_parse_ringbuf(QemuOpts *opts, ChardevBackend *backend,
3478 Error **errp)
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003479{
3480 int val;
3481
Markus Armbruster3a1da422013-07-26 16:44:34 +02003482 backend->ringbuf = g_new0(ChardevRingbuf, 1);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003483
Markus Armbruster0f953052013-06-27 16:22:07 +02003484 val = qemu_opt_get_size(opts, "size", 0);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003485 if (val != 0) {
Markus Armbruster3a1da422013-07-26 16:44:34 +02003486 backend->ringbuf->has_size = true;
3487 backend->ringbuf->size = val;
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003488 }
3489}
3490
Gerd Hoffmannbb6fb7c2013-06-24 08:39:54 +02003491static void qemu_chr_parse_mux(QemuOpts *opts, ChardevBackend *backend,
3492 Error **errp)
3493{
3494 const char *chardev = qemu_opt_get(opts, "chardev");
3495
3496 if (chardev == NULL) {
3497 error_setg(errp, "chardev: mux: no chardev given");
3498 return;
3499 }
3500 backend->mux = g_new0(ChardevMux, 1);
3501 backend->mux->chardev = g_strdup(chardev);
3502}
3503
Peter Maydelldafd3252014-09-02 11:24:13 +01003504static void qemu_chr_parse_socket(QemuOpts *opts, ChardevBackend *backend,
3505 Error **errp)
3506{
3507 bool is_listen = qemu_opt_get_bool(opts, "server", false);
3508 bool is_waitconnect = is_listen && qemu_opt_get_bool(opts, "wait", true);
3509 bool is_telnet = qemu_opt_get_bool(opts, "telnet", false);
3510 bool do_nodelay = !qemu_opt_get_bool(opts, "delay", true);
Corey Minyard5dd1f022014-10-02 11:17:37 -05003511 int64_t reconnect = qemu_opt_get_number(opts, "reconnect", 0);
Peter Maydelldafd3252014-09-02 11:24:13 +01003512 const char *path = qemu_opt_get(opts, "path");
3513 const char *host = qemu_opt_get(opts, "host");
3514 const char *port = qemu_opt_get(opts, "port");
3515 SocketAddress *addr;
3516
3517 if (!path) {
3518 if (!host) {
3519 error_setg(errp, "chardev: socket: no host given");
3520 return;
3521 }
3522 if (!port) {
3523 error_setg(errp, "chardev: socket: no port given");
3524 return;
3525 }
3526 }
3527
3528 backend->socket = g_new0(ChardevSocket, 1);
3529
3530 backend->socket->has_nodelay = true;
3531 backend->socket->nodelay = do_nodelay;
3532 backend->socket->has_server = true;
3533 backend->socket->server = is_listen;
3534 backend->socket->has_telnet = true;
3535 backend->socket->telnet = is_telnet;
3536 backend->socket->has_wait = true;
3537 backend->socket->wait = is_waitconnect;
Corey Minyard5dd1f022014-10-02 11:17:37 -05003538 backend->socket->has_reconnect = true;
3539 backend->socket->reconnect = reconnect;
Peter Maydelldafd3252014-09-02 11:24:13 +01003540
3541 addr = g_new0(SocketAddress, 1);
3542 if (path) {
3543 addr->kind = SOCKET_ADDRESS_KIND_UNIX;
3544 addr->q_unix = g_new0(UnixSocketAddress, 1);
3545 addr->q_unix->path = g_strdup(path);
3546 } else {
3547 addr->kind = SOCKET_ADDRESS_KIND_INET;
3548 addr->inet = g_new0(InetSocketAddress, 1);
3549 addr->inet->host = g_strdup(host);
3550 addr->inet->port = g_strdup(port);
3551 addr->inet->has_to = qemu_opt_get(opts, "to");
3552 addr->inet->to = qemu_opt_get_number(opts, "to", 0);
3553 addr->inet->has_ipv4 = qemu_opt_get(opts, "ipv4");
3554 addr->inet->ipv4 = qemu_opt_get_bool(opts, "ipv4", 0);
3555 addr->inet->has_ipv6 = qemu_opt_get(opts, "ipv6");
3556 addr->inet->ipv6 = qemu_opt_get_bool(opts, "ipv6", 0);
3557 }
3558 backend->socket->addr = addr;
3559}
3560
Peter Maydell90a14bf2014-09-02 11:24:15 +01003561static void qemu_chr_parse_udp(QemuOpts *opts, ChardevBackend *backend,
3562 Error **errp)
3563{
3564 const char *host = qemu_opt_get(opts, "host");
3565 const char *port = qemu_opt_get(opts, "port");
3566 const char *localaddr = qemu_opt_get(opts, "localaddr");
3567 const char *localport = qemu_opt_get(opts, "localport");
3568 bool has_local = false;
3569 SocketAddress *addr;
3570
3571 if (host == NULL || strlen(host) == 0) {
3572 host = "localhost";
3573 }
3574 if (port == NULL || strlen(port) == 0) {
3575 error_setg(errp, "chardev: udp: remote port not specified");
3576 return;
3577 }
3578 if (localport == NULL || strlen(localport) == 0) {
3579 localport = "0";
3580 } else {
3581 has_local = true;
3582 }
3583 if (localaddr == NULL || strlen(localaddr) == 0) {
3584 localaddr = "";
3585 } else {
3586 has_local = true;
3587 }
3588
3589 backend->udp = g_new0(ChardevUdp, 1);
3590
3591 addr = g_new0(SocketAddress, 1);
3592 addr->kind = SOCKET_ADDRESS_KIND_INET;
3593 addr->inet = g_new0(InetSocketAddress, 1);
3594 addr->inet->host = g_strdup(host);
3595 addr->inet->port = g_strdup(port);
3596 addr->inet->has_ipv4 = qemu_opt_get(opts, "ipv4");
3597 addr->inet->ipv4 = qemu_opt_get_bool(opts, "ipv4", 0);
3598 addr->inet->has_ipv6 = qemu_opt_get(opts, "ipv6");
3599 addr->inet->ipv6 = qemu_opt_get_bool(opts, "ipv6", 0);
3600 backend->udp->remote = addr;
3601
3602 if (has_local) {
3603 backend->udp->has_local = true;
3604 addr = g_new0(SocketAddress, 1);
3605 addr->kind = SOCKET_ADDRESS_KIND_INET;
3606 addr->inet = g_new0(InetSocketAddress, 1);
3607 addr->inet->host = g_strdup(localaddr);
3608 addr->inet->port = g_strdup(localport);
3609 backend->udp->local = addr;
3610 }
3611}
3612
Anthony Liguorid654f342013-03-05 23:21:28 +05303613typedef struct CharDriver {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003614 const char *name;
Gerd Hoffmann99aec012013-06-24 08:39:52 +02003615 ChardevBackendKind kind;
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003616 void (*parse)(QemuOpts *opts, ChardevBackend *backend, Error **errp);
Anthony Liguorid654f342013-03-05 23:21:28 +05303617} CharDriver;
3618
3619static GSList *backends;
3620
Peter Maydelle4d50d42014-09-02 11:24:17 +01003621void register_char_driver(const char *name, ChardevBackendKind kind,
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003622 void (*parse)(QemuOpts *opts, ChardevBackend *backend, Error **errp))
3623{
3624 CharDriver *s;
3625
3626 s = g_malloc0(sizeof(*s));
3627 s->name = g_strdup(name);
3628 s->kind = kind;
3629 s->parse = parse;
3630
3631 backends = g_slist_append(backends, s);
3632}
3633
Anthony Liguorif69554b2011-08-15 11:17:37 -05003634CharDriverState *qemu_chr_new_from_opts(QemuOpts *opts,
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003635 void (*init)(struct CharDriverState *s),
3636 Error **errp)
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003637{
Markus Armbruster0aff6372014-05-19 18:57:35 +02003638 Error *local_err = NULL;
Anthony Liguorid654f342013-03-05 23:21:28 +05303639 CharDriver *cd;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003640 CharDriverState *chr;
Anthony Liguorid654f342013-03-05 23:21:28 +05303641 GSList *i;
Peter Maydella61ae7f2014-09-02 11:24:16 +01003642 ChardevReturn *ret = NULL;
3643 ChardevBackend *backend;
3644 const char *id = qemu_opts_id(opts);
3645 char *bid = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003646
Peter Maydella61ae7f2014-09-02 11:24:16 +01003647 if (id == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003648 error_setg(errp, "chardev: no id specified");
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003649 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003650 }
3651
Stefan Hajnoczi1bbd1852011-01-22 13:07:26 +00003652 if (qemu_opt_get(opts, "backend") == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003653 error_setg(errp, "chardev: \"%s\" missing backend",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003654 qemu_opts_id(opts));
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003655 goto err;
Stefan Hajnoczi1bbd1852011-01-22 13:07:26 +00003656 }
Anthony Liguorid654f342013-03-05 23:21:28 +05303657 for (i = backends; i; i = i->next) {
3658 cd = i->data;
3659
3660 if (strcmp(cd->name, qemu_opt_get(opts, "backend")) == 0) {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003661 break;
Anthony Liguorid654f342013-03-05 23:21:28 +05303662 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003663 }
Anthony Liguorid654f342013-03-05 23:21:28 +05303664 if (i == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003665 error_setg(errp, "chardev: backend \"%s\" not found",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003666 qemu_opt_get(opts, "backend"));
Gerd Hoffmanne6682872013-06-24 08:39:51 +02003667 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003668 }
3669
Peter Maydella61ae7f2014-09-02 11:24:16 +01003670 backend = g_new0(ChardevBackend, 1);
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003671
3672 if (qemu_opt_get_bool(opts, "mux", 0)) {
Peter Maydella61ae7f2014-09-02 11:24:16 +01003673 bid = g_strdup_printf("%s-base", id);
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003674 }
Peter Maydella61ae7f2014-09-02 11:24:16 +01003675
3676 chr = NULL;
3677 backend->kind = cd->kind;
3678 if (cd->parse) {
3679 cd->parse(opts, backend, &local_err);
3680 if (local_err) {
3681 error_propagate(errp, local_err);
3682 goto qapi_out;
3683 }
3684 }
3685 ret = qmp_chardev_add(bid ? bid : id, backend, errp);
3686 if (!ret) {
3687 goto qapi_out;
3688 }
3689
3690 if (bid) {
3691 qapi_free_ChardevBackend(backend);
3692 qapi_free_ChardevReturn(ret);
3693 backend = g_new0(ChardevBackend, 1);
3694 backend->mux = g_new0(ChardevMux, 1);
3695 backend->kind = CHARDEV_BACKEND_KIND_MUX;
3696 backend->mux->chardev = g_strdup(bid);
3697 ret = qmp_chardev_add(id, backend, errp);
3698 if (!ret) {
3699 chr = qemu_chr_find(bid);
3700 qemu_chr_delete(chr);
3701 chr = NULL;
3702 goto qapi_out;
3703 }
3704 }
3705
3706 chr = qemu_chr_find(id);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003707 chr->opts = opts;
Peter Maydella61ae7f2014-09-02 11:24:16 +01003708
3709qapi_out:
3710 qapi_free_ChardevBackend(backend);
3711 qapi_free_ChardevReturn(ret);
3712 g_free(bid);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003713 return chr;
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003714
3715err:
3716 qemu_opts_del(opts);
3717 return NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003718}
3719
Anthony Liguori27143a42011-08-15 11:17:36 -05003720CharDriverState *qemu_chr_new(const char *label, const char *filename, void (*init)(struct CharDriverState *s))
aliguori6f97dba2008-10-31 18:49:55 +00003721{
3722 const char *p;
3723 CharDriverState *chr;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003724 QemuOpts *opts;
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003725 Error *err = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003726
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003727 if (strstart(filename, "chardev:", &p)) {
3728 return qemu_chr_find(p);
3729 }
3730
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003731 opts = qemu_chr_parse_compat(label, filename);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003732 if (!opts)
3733 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00003734
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003735 chr = qemu_chr_new_from_opts(opts, init, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01003736 if (err) {
Seiji Aguchi4a44d852013-08-05 15:40:44 -04003737 error_report("%s", error_get_pretty(err));
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003738 error_free(err);
3739 }
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003740 if (chr && qemu_opt_get_bool(opts, "mux", 0)) {
Hans de Goede456d6062013-03-27 20:29:40 +01003741 qemu_chr_fe_claim_no_fail(chr);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003742 monitor_init(chr, MONITOR_USE_READLINE);
aliguori6f97dba2008-10-31 18:49:55 +00003743 }
3744 return chr;
3745}
3746
Anthony Liguori15f31512011-08-15 11:17:35 -05003747void qemu_chr_fe_set_echo(struct CharDriverState *chr, bool echo)
Paolo Bonzinic48855e2010-12-23 13:42:48 +01003748{
3749 if (chr->chr_set_echo) {
3750 chr->chr_set_echo(chr, echo);
3751 }
3752}
3753
Hans de Goede8e25daa2013-03-26 11:07:57 +01003754void qemu_chr_fe_set_open(struct CharDriverState *chr, int fe_open)
Hans de Goede7c32c4f2011-03-24 11:12:02 +01003755{
Hans de Goede8e25daa2013-03-26 11:07:57 +01003756 if (chr->fe_open == fe_open) {
Hans de Goedec0c4bd22013-03-26 11:07:55 +01003757 return;
3758 }
Hans de Goede8e25daa2013-03-26 11:07:57 +01003759 chr->fe_open = fe_open;
Hans de Goede574b7112013-03-26 11:07:58 +01003760 if (chr->chr_set_fe_open) {
3761 chr->chr_set_fe_open(chr, fe_open);
Hans de Goede7c32c4f2011-03-24 11:12:02 +01003762 }
3763}
3764
Marc-André Lureaud61b0c92013-12-01 22:23:39 +01003765void qemu_chr_fe_event(struct CharDriverState *chr, int event)
3766{
3767 if (chr->chr_fe_event) {
3768 chr->chr_fe_event(chr, event);
3769 }
3770}
3771
Kevin Wolf2c8a5942013-03-19 13:38:09 +01003772int qemu_chr_fe_add_watch(CharDriverState *s, GIOCondition cond,
3773 GIOFunc func, void *user_data)
Anthony Liguori23673ca2013-03-05 23:21:23 +05303774{
3775 GSource *src;
3776 guint tag;
3777
3778 if (s->chr_add_watch == NULL) {
3779 return -ENOSYS;
3780 }
3781
3782 src = s->chr_add_watch(s, cond);
Paolo Bonzini62c339c2014-07-24 16:08:04 +02003783 if (!src) {
3784 return -EINVAL;
3785 }
3786
Anthony Liguori23673ca2013-03-05 23:21:23 +05303787 g_source_set_callback(src, (GSourceFunc)func, user_data, NULL);
3788 tag = g_source_attach(src, NULL);
3789 g_source_unref(src);
3790
3791 return tag;
3792}
3793
Hans de Goede44c473d2013-03-27 20:29:39 +01003794int qemu_chr_fe_claim(CharDriverState *s)
3795{
3796 if (s->avail_connections < 1) {
3797 return -1;
3798 }
3799 s->avail_connections--;
3800 return 0;
3801}
3802
3803void qemu_chr_fe_claim_no_fail(CharDriverState *s)
3804{
3805 if (qemu_chr_fe_claim(s) != 0) {
3806 fprintf(stderr, "%s: error chardev \"%s\" already used\n",
3807 __func__, s->label);
3808 exit(1);
3809 }
3810}
3811
3812void qemu_chr_fe_release(CharDriverState *s)
3813{
3814 s->avail_connections++;
3815}
3816
Anthony Liguori70f24fb2011-08-15 11:17:38 -05003817void qemu_chr_delete(CharDriverState *chr)
aliguori6f97dba2008-10-31 18:49:55 +00003818{
Blue Swirl72cf2d42009-09-12 07:36:22 +00003819 QTAILQ_REMOVE(&chardevs, chr, next);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003820 if (chr->chr_close) {
aliguori6f97dba2008-10-31 18:49:55 +00003821 chr->chr_close(chr);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003822 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003823 g_free(chr->filename);
3824 g_free(chr->label);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003825 if (chr->opts) {
3826 qemu_opts_del(chr->opts);
3827 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003828 g_free(chr);
aliguori6f97dba2008-10-31 18:49:55 +00003829}
3830
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003831ChardevInfoList *qmp_query_chardev(Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00003832{
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003833 ChardevInfoList *chr_list = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00003834 CharDriverState *chr;
3835
Blue Swirl72cf2d42009-09-12 07:36:22 +00003836 QTAILQ_FOREACH(chr, &chardevs, next) {
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003837 ChardevInfoList *info = g_malloc0(sizeof(*info));
3838 info->value = g_malloc0(sizeof(*info->value));
3839 info->value->label = g_strdup(chr->label);
3840 info->value->filename = g_strdup(chr->filename);
Laszlo Ersek32a97ea2014-06-26 17:50:03 +02003841 info->value->frontend_open = chr->fe_open;
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003842
3843 info->next = chr_list;
3844 chr_list = info;
aliguori6f97dba2008-10-31 18:49:55 +00003845 }
Luiz Capitulino588b3832009-12-10 17:16:08 -02003846
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003847 return chr_list;
aliguori6f97dba2008-10-31 18:49:55 +00003848}
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003849
Martin Kletzander77d1c3c2014-02-01 12:52:42 +01003850ChardevBackendInfoList *qmp_query_chardev_backends(Error **errp)
3851{
3852 ChardevBackendInfoList *backend_list = NULL;
3853 CharDriver *c = NULL;
3854 GSList *i = NULL;
3855
3856 for (i = backends; i; i = i->next) {
3857 ChardevBackendInfoList *info = g_malloc0(sizeof(*info));
3858 c = i->data;
3859 info->value = g_malloc0(sizeof(*info->value));
3860 info->value->name = g_strdup(c->name);
3861
3862 info->next = backend_list;
3863 backend_list = info;
3864 }
3865
3866 return backend_list;
3867}
3868
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003869CharDriverState *qemu_chr_find(const char *name)
3870{
3871 CharDriverState *chr;
3872
Blue Swirl72cf2d42009-09-12 07:36:22 +00003873 QTAILQ_FOREACH(chr, &chardevs, next) {
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003874 if (strcmp(chr->label, name) != 0)
3875 continue;
3876 return chr;
3877 }
3878 return NULL;
3879}
Anthony Liguori0beb4942011-12-22 15:29:25 -06003880
3881/* Get a character (serial) device interface. */
3882CharDriverState *qemu_char_get_next_serial(void)
3883{
3884 static int next_serial;
Hans de Goede456d6062013-03-27 20:29:40 +01003885 CharDriverState *chr;
Anthony Liguori0beb4942011-12-22 15:29:25 -06003886
3887 /* FIXME: This function needs to go away: use chardev properties! */
Hans de Goede456d6062013-03-27 20:29:40 +01003888
3889 while (next_serial < MAX_SERIAL_PORTS && serial_hds[next_serial]) {
3890 chr = serial_hds[next_serial++];
3891 qemu_chr_fe_claim_no_fail(chr);
3892 return chr;
3893 }
3894 return NULL;
Anthony Liguori0beb4942011-12-22 15:29:25 -06003895}
3896
Paolo Bonzini4d454572012-11-26 16:03:42 +01003897QemuOptsList qemu_chardev_opts = {
3898 .name = "chardev",
3899 .implied_opt_name = "backend",
3900 .head = QTAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
3901 .desc = {
3902 {
3903 .name = "backend",
3904 .type = QEMU_OPT_STRING,
3905 },{
3906 .name = "path",
3907 .type = QEMU_OPT_STRING,
3908 },{
3909 .name = "host",
3910 .type = QEMU_OPT_STRING,
3911 },{
3912 .name = "port",
3913 .type = QEMU_OPT_STRING,
3914 },{
3915 .name = "localaddr",
3916 .type = QEMU_OPT_STRING,
3917 },{
3918 .name = "localport",
3919 .type = QEMU_OPT_STRING,
3920 },{
3921 .name = "to",
3922 .type = QEMU_OPT_NUMBER,
3923 },{
3924 .name = "ipv4",
3925 .type = QEMU_OPT_BOOL,
3926 },{
3927 .name = "ipv6",
3928 .type = QEMU_OPT_BOOL,
3929 },{
3930 .name = "wait",
3931 .type = QEMU_OPT_BOOL,
3932 },{
3933 .name = "server",
3934 .type = QEMU_OPT_BOOL,
3935 },{
3936 .name = "delay",
3937 .type = QEMU_OPT_BOOL,
3938 },{
Corey Minyard5dd1f022014-10-02 11:17:37 -05003939 .name = "reconnect",
3940 .type = QEMU_OPT_NUMBER,
3941 },{
Paolo Bonzini4d454572012-11-26 16:03:42 +01003942 .name = "telnet",
3943 .type = QEMU_OPT_BOOL,
3944 },{
3945 .name = "width",
3946 .type = QEMU_OPT_NUMBER,
3947 },{
3948 .name = "height",
3949 .type = QEMU_OPT_NUMBER,
3950 },{
3951 .name = "cols",
3952 .type = QEMU_OPT_NUMBER,
3953 },{
3954 .name = "rows",
3955 .type = QEMU_OPT_NUMBER,
3956 },{
3957 .name = "mux",
3958 .type = QEMU_OPT_BOOL,
3959 },{
3960 .name = "signal",
3961 .type = QEMU_OPT_BOOL,
3962 },{
3963 .name = "name",
3964 .type = QEMU_OPT_STRING,
3965 },{
3966 .name = "debug",
3967 .type = QEMU_OPT_NUMBER,
Lei Li51767e72013-01-25 00:03:19 +08003968 },{
Markus Armbruster3949e592013-02-06 21:27:24 +01003969 .name = "size",
Markus Armbrusterde1cc362013-02-06 21:27:25 +01003970 .type = QEMU_OPT_SIZE,
Gerd Hoffmannbb6fb7c2013-06-24 08:39:54 +02003971 },{
3972 .name = "chardev",
3973 .type = QEMU_OPT_STRING,
Paolo Bonzini4d454572012-11-26 16:03:42 +01003974 },
3975 { /* end of list */ }
3976 },
3977};
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003978
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003979#ifdef _WIN32
3980
3981static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
3982{
3983 HANDLE out;
3984
Gerd Hoffmanne859eda2013-06-24 08:39:47 +02003985 if (file->has_in) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003986 error_setg(errp, "input file not supported");
3987 return NULL;
3988 }
3989
3990 out = CreateFile(file->out, GENERIC_WRITE, FILE_SHARE_READ, NULL,
3991 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
3992 if (out == INVALID_HANDLE_VALUE) {
3993 error_setg(errp, "open %s failed", file->out);
3994 return NULL;
3995 }
3996 return qemu_chr_open_win_file(out);
3997}
3998
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003999static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
4000 Error **errp)
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004001{
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004002 return qemu_chr_open_win_path(serial->device);
4003}
4004
4005static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
4006 Error **errp)
4007{
4008 error_setg(errp, "character device backend type 'parallel' not supported");
4009 return NULL;
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004010}
4011
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004012#else /* WIN32 */
4013
4014static int qmp_chardev_open_file_source(char *src, int flags,
4015 Error **errp)
4016{
4017 int fd = -1;
4018
4019 TFR(fd = qemu_open(src, flags, 0666));
4020 if (fd == -1) {
Gerd Hoffmann20c39762013-06-24 08:39:48 +02004021 error_setg_file_open(errp, errno, src);
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004022 }
4023 return fd;
4024}
4025
4026static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
4027{
Markus Armbruster5f758362014-05-19 18:57:34 +02004028 int flags, in = -1, out;
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004029
4030 flags = O_WRONLY | O_TRUNC | O_CREAT | O_BINARY;
4031 out = qmp_chardev_open_file_source(file->out, flags, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004032 if (out < 0) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004033 return NULL;
4034 }
4035
Gerd Hoffmanne859eda2013-06-24 08:39:47 +02004036 if (file->has_in) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004037 flags = O_RDONLY;
4038 in = qmp_chardev_open_file_source(file->in, flags, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004039 if (in < 0) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004040 qemu_close(out);
4041 return NULL;
4042 }
4043 }
4044
4045 return qemu_chr_open_fd(in, out);
4046}
4047
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004048static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
4049 Error **errp)
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004050{
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004051#ifdef HAVE_CHARDEV_TTY
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004052 int fd;
4053
4054 fd = qmp_chardev_open_file_source(serial->device, O_RDWR, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004055 if (fd < 0) {
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004056 return NULL;
4057 }
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01004058 qemu_set_nonblock(fd);
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004059 return qemu_chr_open_tty_fd(fd);
4060#else
4061 error_setg(errp, "character device backend type 'serial' not supported");
4062 return NULL;
4063#endif
4064}
4065
4066static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
4067 Error **errp)
4068{
4069#ifdef HAVE_CHARDEV_PARPORT
4070 int fd;
4071
4072 fd = qmp_chardev_open_file_source(parallel->device, O_RDWR, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004073 if (fd < 0) {
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004074 return NULL;
4075 }
4076 return qemu_chr_open_pp_fd(fd);
4077#else
4078 error_setg(errp, "character device backend type 'parallel' not supported");
4079 return NULL;
4080#endif
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004081}
4082
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004083#endif /* WIN32 */
4084
Corey Minyard5008e5b2014-10-08 07:11:55 -05004085static void socket_try_connect(CharDriverState *chr)
4086{
4087 Error *err = NULL;
4088
4089 if (!qemu_chr_open_socket_fd(chr, &err)) {
4090 check_report_connect_error(chr, err);
4091 }
4092}
4093
Corey Minyard5dd1f022014-10-02 11:17:37 -05004094static gboolean socket_reconnect_timeout(gpointer opaque)
4095{
4096 CharDriverState *chr = opaque;
4097 TCPCharDriver *s = chr->opaque;
Corey Minyard5dd1f022014-10-02 11:17:37 -05004098
4099 s->reconnect_timer = 0;
4100
4101 if (chr->be_open) {
4102 return false;
4103 }
4104
Corey Minyard5008e5b2014-10-08 07:11:55 -05004105 socket_try_connect(chr);
Corey Minyard5dd1f022014-10-02 11:17:37 -05004106
4107 return false;
4108}
4109
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004110static CharDriverState *qmp_chardev_open_socket(ChardevSocket *sock,
4111 Error **errp)
4112{
Corey Minyard43ded1a2014-10-02 11:17:34 -05004113 CharDriverState *chr;
4114 TCPCharDriver *s;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004115 SocketAddress *addr = sock->addr;
4116 bool do_nodelay = sock->has_nodelay ? sock->nodelay : false;
4117 bool is_listen = sock->has_server ? sock->server : true;
4118 bool is_telnet = sock->has_telnet ? sock->telnet : false;
4119 bool is_waitconnect = sock->has_wait ? sock->wait : false;
Corey Minyard5dd1f022014-10-02 11:17:37 -05004120 int64_t reconnect = sock->has_reconnect ? sock->reconnect : 0;
Corey Minyard43ded1a2014-10-02 11:17:34 -05004121
4122 chr = qemu_chr_alloc();
4123 s = g_malloc0(sizeof(TCPCharDriver));
4124
4125 s->fd = -1;
4126 s->listen_fd = -1;
4127 s->is_unix = addr->kind == SOCKET_ADDRESS_KIND_UNIX;
Corey Minyardcfb429c2014-10-02 11:17:35 -05004128 s->is_listen = is_listen;
4129 s->is_telnet = is_telnet;
Corey Minyard43ded1a2014-10-02 11:17:34 -05004130 s->do_nodelay = do_nodelay;
Corey Minyardcfb429c2014-10-02 11:17:35 -05004131 qapi_copy_SocketAddress(&s->addr, sock->addr);
Corey Minyard43ded1a2014-10-02 11:17:34 -05004132
4133 chr->opaque = s;
4134 chr->chr_write = tcp_chr_write;
4135 chr->chr_sync_read = tcp_chr_sync_read;
4136 chr->chr_close = tcp_chr_close;
4137 chr->get_msgfds = tcp_get_msgfds;
4138 chr->set_msgfds = tcp_set_msgfds;
4139 chr->chr_add_client = tcp_chr_add_client;
4140 chr->chr_add_watch = tcp_chr_add_watch;
4141 chr->chr_update_read_handler = tcp_chr_update_read_handler;
4142 /* be isn't opened until we get a connection */
4143 chr->explicit_be_open = true;
4144
4145 chr->filename = g_malloc(CHR_MAX_FILENAME_SIZE);
Corey Minyard16cc4ff2014-10-02 11:17:36 -05004146 SocketAddress_to_str(chr->filename, CHR_MAX_FILENAME_SIZE, "disconnected:",
4147 addr, is_listen, is_telnet);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004148
4149 if (is_listen) {
Corey Minyard43ded1a2014-10-02 11:17:34 -05004150 if (is_telnet) {
4151 s->do_telnetopt = 1;
4152 }
Corey Minyard5dd1f022014-10-02 11:17:37 -05004153 } else if (reconnect > 0) {
4154 s->reconnect_time = reconnect;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004155 }
Corey Minyard43ded1a2014-10-02 11:17:34 -05004156
Corey Minyard5008e5b2014-10-08 07:11:55 -05004157 if (s->reconnect_time) {
4158 socket_try_connect(chr);
4159 } else if (!qemu_chr_open_socket_fd(chr, errp)) {
4160 g_free(s);
4161 g_free(chr->filename);
4162 g_free(chr);
4163 return NULL;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004164 }
Corey Minyard43ded1a2014-10-02 11:17:34 -05004165
4166 if (is_listen && is_waitconnect) {
4167 fprintf(stderr, "QEMU waiting for connection on: %s\n",
4168 chr->filename);
4169 tcp_chr_accept(s->listen_chan, G_IO_IN, chr);
4170 qemu_set_nonblock(s->listen_fd);
4171 }
4172
4173 return chr;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004174}
4175
Lei Li08d0ab32013-05-20 14:51:03 +08004176static CharDriverState *qmp_chardev_open_udp(ChardevUdp *udp,
4177 Error **errp)
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01004178{
4179 int fd;
4180
Lei Li08d0ab32013-05-20 14:51:03 +08004181 fd = socket_dgram(udp->remote, udp->local, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004182 if (fd < 0) {
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01004183 return NULL;
4184 }
4185 return qemu_chr_open_udp_fd(fd);
4186}
4187
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004188ChardevReturn *qmp_chardev_add(const char *id, ChardevBackend *backend,
4189 Error **errp)
4190{
4191 ChardevReturn *ret = g_new0(ChardevReturn, 1);
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01004192 CharDriverState *base, *chr = NULL;
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004193
4194 chr = qemu_chr_find(id);
4195 if (chr) {
4196 error_setg(errp, "Chardev '%s' already exists", id);
4197 g_free(ret);
4198 return NULL;
4199 }
4200
4201 switch (backend->kind) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004202 case CHARDEV_BACKEND_KIND_FILE:
4203 chr = qmp_chardev_open_file(backend->file, errp);
4204 break;
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004205 case CHARDEV_BACKEND_KIND_SERIAL:
4206 chr = qmp_chardev_open_serial(backend->serial, errp);
4207 break;
4208 case CHARDEV_BACKEND_KIND_PARALLEL:
4209 chr = qmp_chardev_open_parallel(backend->parallel, errp);
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004210 break;
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01004211 case CHARDEV_BACKEND_KIND_PIPE:
4212 chr = qemu_chr_open_pipe(backend->pipe);
4213 break;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004214 case CHARDEV_BACKEND_KIND_SOCKET:
4215 chr = qmp_chardev_open_socket(backend->socket, errp);
4216 break;
Lei Li08d0ab32013-05-20 14:51:03 +08004217 case CHARDEV_BACKEND_KIND_UDP:
4218 chr = qmp_chardev_open_udp(backend->udp, errp);
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01004219 break;
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01004220#ifdef HAVE_CHARDEV_TTY
4221 case CHARDEV_BACKEND_KIND_PTY:
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01004222 chr = qemu_chr_open_pty(id, ret);
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01004223 break;
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01004224#endif
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004225 case CHARDEV_BACKEND_KIND_NULL:
Gerd Hoffmann80dca9e2013-02-21 11:41:26 +01004226 chr = qemu_chr_open_null();
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004227 break;
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01004228 case CHARDEV_BACKEND_KIND_MUX:
4229 base = qemu_chr_find(backend->mux->chardev);
4230 if (base == NULL) {
4231 error_setg(errp, "mux: base chardev %s not found",
4232 backend->mux->chardev);
4233 break;
4234 }
4235 chr = qemu_chr_open_mux(base);
4236 break;
Gerd Hoffmannf5a51ca2013-02-21 11:58:44 +01004237 case CHARDEV_BACKEND_KIND_MSMOUSE:
4238 chr = qemu_chr_open_msmouse();
4239 break;
Gerd Hoffmann2d572862013-02-21 12:56:10 +01004240#ifdef CONFIG_BRLAPI
4241 case CHARDEV_BACKEND_KIND_BRAILLE:
4242 chr = chr_baum_init();
4243 break;
4244#endif
Paolo Bonzini56923992014-07-11 09:44:26 +02004245 case CHARDEV_BACKEND_KIND_TESTDEV:
4246 chr = chr_testdev_init();
4247 break;
Gerd Hoffmann7c358032013-02-21 12:34:58 +01004248 case CHARDEV_BACKEND_KIND_STDIO:
4249 chr = qemu_chr_open_stdio(backend->stdio);
4250 break;
Gerd Hoffmannd9ac3742013-02-25 11:48:06 +01004251#ifdef _WIN32
4252 case CHARDEV_BACKEND_KIND_CONSOLE:
4253 chr = qemu_chr_open_win_con();
4254 break;
4255#endif
Gerd Hoffmanncd153e22013-02-25 12:39:06 +01004256#ifdef CONFIG_SPICE
4257 case CHARDEV_BACKEND_KIND_SPICEVMC:
4258 chr = qemu_chr_open_spice_vmc(backend->spicevmc->type);
4259 break;
4260 case CHARDEV_BACKEND_KIND_SPICEPORT:
4261 chr = qemu_chr_open_spice_port(backend->spiceport->fqdn);
4262 break;
4263#endif
Gerd Hoffmann702ec692013-02-25 15:52:32 +01004264 case CHARDEV_BACKEND_KIND_VC:
4265 chr = vc_init(backend->vc);
4266 break;
Markus Armbruster3a1da422013-07-26 16:44:34 +02004267 case CHARDEV_BACKEND_KIND_RINGBUF:
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01004268 case CHARDEV_BACKEND_KIND_MEMORY:
Markus Armbruster3a1da422013-07-26 16:44:34 +02004269 chr = qemu_chr_open_ringbuf(backend->ringbuf, errp);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01004270 break;
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004271 default:
4272 error_setg(errp, "unknown chardev backend (%d)", backend->kind);
4273 break;
4274 }
4275
Markus Armbruster3894c782014-05-19 18:57:36 +02004276 /*
4277 * Character backend open hasn't been fully converted to the Error
4278 * API. Some opens fail without setting an error. Set a generic
4279 * error then.
4280 * TODO full conversion to Error API
4281 */
4282 if (chr == NULL && errp && !*errp) {
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004283 error_setg(errp, "Failed to create chardev");
4284 }
4285 if (chr) {
4286 chr->label = g_strdup(id);
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01004287 chr->avail_connections =
4288 (backend->kind == CHARDEV_BACKEND_KIND_MUX) ? MAX_MUX : 1;
Gerd Hoffmann60d95382013-05-27 12:41:24 +02004289 if (!chr->filename) {
4290 chr->filename = g_strdup(ChardevBackendKind_lookup[backend->kind]);
4291 }
Michael Rothbd5c51e2013-06-07 15:19:53 -05004292 if (!chr->explicit_be_open) {
4293 qemu_chr_be_event(chr, CHR_EVENT_OPENED);
4294 }
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004295 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
4296 return ret;
4297 } else {
4298 g_free(ret);
4299 return NULL;
4300 }
4301}
4302
4303void qmp_chardev_remove(const char *id, Error **errp)
4304{
4305 CharDriverState *chr;
4306
4307 chr = qemu_chr_find(id);
Gonglei8108fd32014-08-11 21:00:55 +08004308 if (chr == NULL) {
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004309 error_setg(errp, "Chardev '%s' not found", id);
4310 return;
4311 }
4312 if (chr->chr_can_read || chr->chr_read ||
4313 chr->chr_event || chr->handler_opaque) {
4314 error_setg(errp, "Chardev '%s' is busy", id);
4315 return;
4316 }
4317 qemu_chr_delete(chr);
4318}
Anthony Liguorid654f342013-03-05 23:21:28 +05304319
4320static void register_types(void)
4321{
Peter Maydelle4d50d42014-09-02 11:24:17 +01004322 register_char_driver("null", CHARDEV_BACKEND_KIND_NULL, NULL);
4323 register_char_driver("socket", CHARDEV_BACKEND_KIND_SOCKET,
4324 qemu_chr_parse_socket);
4325 register_char_driver("udp", CHARDEV_BACKEND_KIND_UDP, qemu_chr_parse_udp);
4326 register_char_driver("ringbuf", CHARDEV_BACKEND_KIND_RINGBUF,
4327 qemu_chr_parse_ringbuf);
4328 register_char_driver("file", CHARDEV_BACKEND_KIND_FILE,
4329 qemu_chr_parse_file_out);
4330 register_char_driver("stdio", CHARDEV_BACKEND_KIND_STDIO,
4331 qemu_chr_parse_stdio);
4332 register_char_driver("serial", CHARDEV_BACKEND_KIND_SERIAL,
4333 qemu_chr_parse_serial);
4334 register_char_driver("tty", CHARDEV_BACKEND_KIND_SERIAL,
4335 qemu_chr_parse_serial);
4336 register_char_driver("parallel", CHARDEV_BACKEND_KIND_PARALLEL,
4337 qemu_chr_parse_parallel);
4338 register_char_driver("parport", CHARDEV_BACKEND_KIND_PARALLEL,
4339 qemu_chr_parse_parallel);
4340 register_char_driver("pty", CHARDEV_BACKEND_KIND_PTY, NULL);
4341 register_char_driver("console", CHARDEV_BACKEND_KIND_CONSOLE, NULL);
4342 register_char_driver("pipe", CHARDEV_BACKEND_KIND_PIPE,
4343 qemu_chr_parse_pipe);
4344 register_char_driver("mux", CHARDEV_BACKEND_KIND_MUX, qemu_chr_parse_mux);
Markus Armbrusterc11ed962013-07-26 16:44:33 +02004345 /* Bug-compatibility: */
Peter Maydelle4d50d42014-09-02 11:24:17 +01004346 register_char_driver("memory", CHARDEV_BACKEND_KIND_MEMORY,
4347 qemu_chr_parse_ringbuf);
Michael Roth7b7ab182013-07-30 13:04:22 -05004348 /* this must be done after machine init, since we register FEs with muxes
4349 * as part of realize functions like serial_isa_realizefn when -nographic
4350 * is specified
4351 */
4352 qemu_add_machine_init_done_notifier(&muxes_realize_notify);
Anthony Liguorid654f342013-03-05 23:21:28 +05304353}
4354
4355type_init(register_types);