blob: 3200200f0fc3c6ccb251f82e4da73c0aa87bd394 [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"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010027#include "qemu/error-report.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010028#include "qemu/timer.h"
Paolo Bonzinidccfcd02013-04-08 16:55:25 +020029#include "sysemu/char.h"
aurel32cf3ebac2008-11-01 00:53:09 +000030#include "hw/usb.h"
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -030031#include "qmp-commands.h"
Corey Minyardcfb429c2014-10-02 11:17:35 -050032#include "qapi/qmp-input-visitor.h"
33#include "qapi/qmp-output-visitor.h"
34#include "qapi-visit.h"
aliguori6f97dba2008-10-31 18:49:55 +000035
36#include <unistd.h>
37#include <fcntl.h>
aliguori6f97dba2008-10-31 18:49:55 +000038#include <time.h>
39#include <errno.h>
40#include <sys/time.h>
41#include <zlib.h>
42
43#ifndef _WIN32
44#include <sys/times.h>
45#include <sys/wait.h>
46#include <termios.h>
47#include <sys/mman.h>
48#include <sys/ioctl.h>
blueswir124646c72008-11-07 16:55:48 +000049#include <sys/resource.h>
aliguori6f97dba2008-10-31 18:49:55 +000050#include <sys/socket.h>
51#include <netinet/in.h>
blueswir124646c72008-11-07 16:55:48 +000052#include <net/if.h>
blueswir124646c72008-11-07 16:55:48 +000053#include <arpa/inet.h>
aliguori6f97dba2008-10-31 18:49:55 +000054#include <dirent.h>
55#include <netdb.h>
56#include <sys/select.h>
Juan Quintela71e72a12009-07-27 16:12:56 +020057#ifdef CONFIG_BSD
aliguori6f97dba2008-10-31 18:49:55 +000058#include <sys/stat.h>
Michael Tokarev3294ce12012-06-02 23:43:33 +040059#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
60#include <dev/ppbus/ppi.h>
61#include <dev/ppbus/ppbconf.h>
62#elif defined(__DragonFly__)
63#include <dev/misc/ppi/ppi.h>
64#include <bus/ppbus/ppbconf.h>
65#endif
Aurelien Jarnobbe813a2009-11-30 15:42:59 +010066#else
aliguori6f97dba2008-10-31 18:49:55 +000067#ifdef __linux__
aliguori6f97dba2008-10-31 18:49:55 +000068#include <linux/ppdev.h>
69#include <linux/parport.h>
70#endif
71#ifdef __sun__
72#include <sys/stat.h>
73#include <sys/ethernet.h>
74#include <sys/sockio.h>
75#include <netinet/arp.h>
76#include <netinet/in.h>
77#include <netinet/in_systm.h>
78#include <netinet/ip.h>
79#include <netinet/ip_icmp.h> // must come after ip.h
80#include <netinet/udp.h>
81#include <netinet/tcp.h>
aliguori6f97dba2008-10-31 18:49:55 +000082#endif
83#endif
84#endif
85
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010086#include "qemu/sockets.h"
Alon Levycbcc6332011-01-19 10:49:50 +020087#include "ui/qemu-spice.h"
aliguori6f97dba2008-10-31 18:49:55 +000088
Amit Shah9bd78542009-11-03 19:59:54 +053089#define READ_BUF_LEN 4096
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +030090#define READ_RETRIES 10
Corey Minyard9f781162014-10-02 11:17:33 -050091#define CHR_MAX_FILENAME_SIZE 256
Michael S. Tsirkinc4095722014-11-02 18:48:32 +020092#define TCP_MAX_FDS 16
Amit Shah9bd78542009-11-03 19:59:54 +053093
aliguori6f97dba2008-10-31 18:49:55 +000094/***********************************************************/
Corey Minyardcfb429c2014-10-02 11:17:35 -050095/* Socket address helpers */
96static void qapi_copy_SocketAddress(SocketAddress **p_dest,
97 SocketAddress *src)
98{
99 QmpOutputVisitor *qov;
100 QmpInputVisitor *qiv;
101 Visitor *ov, *iv;
102 QObject *obj;
103
104 *p_dest = NULL;
105
106 qov = qmp_output_visitor_new();
107 ov = qmp_output_get_visitor(qov);
108 visit_type_SocketAddress(ov, &src, NULL, &error_abort);
109 obj = qmp_output_get_qobject(qov);
110 qmp_output_visitor_cleanup(qov);
111 if (!obj) {
112 return;
113 }
114
115 qiv = qmp_input_visitor_new(obj);
116 iv = qmp_input_get_visitor(qiv);
117 visit_type_SocketAddress(iv, p_dest, NULL, &error_abort);
118 qmp_input_visitor_cleanup(qiv);
119 qobject_decref(obj);
120}
121
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500122static int SocketAddress_to_str(char *dest, int max_len,
123 const char *prefix, SocketAddress *addr,
124 bool is_listen, bool is_telnet)
125{
126 switch (addr->kind) {
127 case SOCKET_ADDRESS_KIND_INET:
128 return snprintf(dest, max_len, "%s%s:%s:%s%s", prefix,
129 is_telnet ? "telnet" : "tcp", addr->inet->host,
130 addr->inet->port, is_listen ? ",server" : "");
131 break;
132 case SOCKET_ADDRESS_KIND_UNIX:
133 return snprintf(dest, max_len, "%sunix:%s%s", prefix,
134 addr->q_unix->path, is_listen ? ",server" : "");
135 break;
136 case SOCKET_ADDRESS_KIND_FD:
137 return snprintf(dest, max_len, "%sfd:%s%s", prefix, addr->fd->str,
138 is_listen ? ",server" : "");
139 break;
140 default:
141 abort();
142 }
143}
144
145static int sockaddr_to_str(char *dest, int max_len,
146 struct sockaddr_storage *ss, socklen_t ss_len,
Corey Minyard01ca5192014-10-02 11:17:38 -0500147 struct sockaddr_storage *ps, socklen_t ps_len,
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500148 bool is_listen, bool is_telnet)
149{
Corey Minyard01ca5192014-10-02 11:17:38 -0500150 char shost[NI_MAXHOST], sserv[NI_MAXSERV];
151 char phost[NI_MAXHOST], pserv[NI_MAXSERV];
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500152 const char *left = "", *right = "";
153
154 switch (ss->ss_family) {
155#ifndef _WIN32
156 case AF_UNIX:
157 return snprintf(dest, max_len, "unix:%s%s",
158 ((struct sockaddr_un *)(ss))->sun_path,
159 is_listen ? ",server" : "");
160#endif
161 case AF_INET6:
162 left = "[";
163 right = "]";
164 /* fall through */
165 case AF_INET:
Corey Minyard01ca5192014-10-02 11:17:38 -0500166 getnameinfo((struct sockaddr *) ss, ss_len, shost, sizeof(shost),
167 sserv, sizeof(sserv), NI_NUMERICHOST | NI_NUMERICSERV);
168 getnameinfo((struct sockaddr *) ps, ps_len, phost, sizeof(phost),
169 pserv, sizeof(pserv), NI_NUMERICHOST | NI_NUMERICSERV);
170 return snprintf(dest, max_len, "%s:%s%s%s:%s%s <-> %s%s%s:%s",
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500171 is_telnet ? "telnet" : "tcp",
Corey Minyard01ca5192014-10-02 11:17:38 -0500172 left, shost, right, sserv,
173 is_listen ? ",server" : "",
174 left, phost, right, pserv);
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500175
176 default:
177 return snprintf(dest, max_len, "unknown");
178 }
179}
180
Corey Minyardcfb429c2014-10-02 11:17:35 -0500181/***********************************************************/
aliguori6f97dba2008-10-31 18:49:55 +0000182/* character device */
183
Blue Swirl72cf2d42009-09-12 07:36:22 +0000184static QTAILQ_HEAD(CharDriverStateHead, CharDriverState) chardevs =
185 QTAILQ_HEAD_INITIALIZER(chardevs);
aliguori2970a6c2009-03-05 22:59:58 +0000186
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200187CharDriverState *qemu_chr_alloc(void)
188{
189 CharDriverState *chr = g_malloc0(sizeof(CharDriverState));
Paolo Bonzinif3db17b2014-06-25 09:04:57 +0200190 qemu_mutex_init(&chr->chr_write_lock);
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200191 return chr;
192}
193
Hans de Goedea425d232011-11-19 10:22:43 +0100194void qemu_chr_be_event(CharDriverState *s, int event)
aliguori6f97dba2008-10-31 18:49:55 +0000195{
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200196 /* Keep track if the char device is open */
197 switch (event) {
198 case CHR_EVENT_OPENED:
Hans de Goede16665b92013-03-26 11:07:53 +0100199 s->be_open = 1;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200200 break;
201 case CHR_EVENT_CLOSED:
Hans de Goede16665b92013-03-26 11:07:53 +0100202 s->be_open = 0;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200203 break;
204 }
205
aliguori6f97dba2008-10-31 18:49:55 +0000206 if (!s->chr_event)
207 return;
208 s->chr_event(s->handler_opaque, event);
209}
210
Hans de Goedefee204f2013-03-26 11:07:54 +0100211void qemu_chr_be_generic_open(CharDriverState *s)
aliguori6f97dba2008-10-31 18:49:55 +0000212{
Michael Rothbd5c51e2013-06-07 15:19:53 -0500213 qemu_chr_be_event(s, CHR_EVENT_OPENED);
aliguori6f97dba2008-10-31 18:49:55 +0000214}
215
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500216int qemu_chr_fe_write(CharDriverState *s, const uint8_t *buf, int len)
aliguori6f97dba2008-10-31 18:49:55 +0000217{
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200218 int ret;
219
220 qemu_mutex_lock(&s->chr_write_lock);
221 ret = s->chr_write(s, buf, len);
222 qemu_mutex_unlock(&s->chr_write_lock);
223 return ret;
aliguori6f97dba2008-10-31 18:49:55 +0000224}
225
Anthony Liguoricd187202013-03-26 10:04:17 -0500226int qemu_chr_fe_write_all(CharDriverState *s, const uint8_t *buf, int len)
227{
228 int offset = 0;
Igor Mammedov09313042014-06-25 10:00:41 +0200229 int res = 0;
Anthony Liguoricd187202013-03-26 10:04:17 -0500230
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200231 qemu_mutex_lock(&s->chr_write_lock);
Anthony Liguoricd187202013-03-26 10:04:17 -0500232 while (offset < len) {
233 do {
234 res = s->chr_write(s, buf + offset, len - offset);
235 if (res == -1 && errno == EAGAIN) {
236 g_usleep(100);
237 }
238 } while (res == -1 && errno == EAGAIN);
239
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200240 if (res <= 0) {
Anthony Liguoricd187202013-03-26 10:04:17 -0500241 break;
242 }
243
Anthony Liguoricd187202013-03-26 10:04:17 -0500244 offset += res;
245 }
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200246 qemu_mutex_unlock(&s->chr_write_lock);
Anthony Liguoricd187202013-03-26 10:04:17 -0500247
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200248 if (res < 0) {
249 return res;
250 }
Anthony Liguoricd187202013-03-26 10:04:17 -0500251 return offset;
252}
253
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +0300254int qemu_chr_fe_read_all(CharDriverState *s, uint8_t *buf, int len)
255{
256 int offset = 0, counter = 10;
257 int res;
258
259 if (!s->chr_sync_read) {
260 return 0;
261 }
262
263 while (offset < len) {
264 do {
265 res = s->chr_sync_read(s, buf + offset, len - offset);
266 if (res == -1 && errno == EAGAIN) {
267 g_usleep(100);
268 }
269 } while (res == -1 && errno == EAGAIN);
270
271 if (res == 0) {
272 break;
273 }
274
275 if (res < 0) {
276 return res;
277 }
278
279 offset += res;
280
281 if (!counter--) {
282 break;
283 }
284 }
285
286 return offset;
287}
288
Anthony Liguori41084f12011-08-15 11:17:34 -0500289int qemu_chr_fe_ioctl(CharDriverState *s, int cmd, void *arg)
aliguori6f97dba2008-10-31 18:49:55 +0000290{
291 if (!s->chr_ioctl)
292 return -ENOTSUP;
293 return s->chr_ioctl(s, cmd, arg);
294}
295
Anthony Liguori909cda12011-08-15 11:17:31 -0500296int qemu_chr_be_can_write(CharDriverState *s)
aliguori6f97dba2008-10-31 18:49:55 +0000297{
298 if (!s->chr_can_read)
299 return 0;
300 return s->chr_can_read(s->handler_opaque);
301}
302
Anthony Liguorifa5efcc2011-08-15 11:17:30 -0500303void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len)
aliguori6f97dba2008-10-31 18:49:55 +0000304{
Stefan Weilac310732012-04-19 22:27:14 +0200305 if (s->chr_read) {
306 s->chr_read(s->handler_opaque, buf, len);
307 }
aliguori6f97dba2008-10-31 18:49:55 +0000308}
309
Anthony Liguori74c0d6f2011-08-15 11:17:39 -0500310int qemu_chr_fe_get_msgfd(CharDriverState *s)
Mark McLoughlin7d174052009-07-22 09:11:39 +0100311{
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +0300312 int fd;
Stefan Hajnoczi4f858612014-06-22 10:38:36 +0800313 return (qemu_chr_fe_get_msgfds(s, &fd, 1) == 1) ? fd : -1;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +0300314}
315
316int qemu_chr_fe_get_msgfds(CharDriverState *s, int *fds, int len)
317{
318 return s->get_msgfds ? s->get_msgfds(s, fds, len) : -1;
Mark McLoughlin7d174052009-07-22 09:11:39 +0100319}
320
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +0300321int qemu_chr_fe_set_msgfds(CharDriverState *s, int *fds, int num)
322{
323 return s->set_msgfds ? s->set_msgfds(s, fds, num) : -1;
324}
325
Daniel P. Berrange13661082011-06-23 13:31:42 +0100326int qemu_chr_add_client(CharDriverState *s, int fd)
327{
328 return s->chr_add_client ? s->chr_add_client(s, fd) : -1;
329}
330
aliguori6f97dba2008-10-31 18:49:55 +0000331void qemu_chr_accept_input(CharDriverState *s)
332{
333 if (s->chr_accept_input)
334 s->chr_accept_input(s);
Jan Kiszka98c8ee12012-03-16 13:18:00 +0100335 qemu_notify_event();
aliguori6f97dba2008-10-31 18:49:55 +0000336}
337
Anthony Liguorie7e71b02011-08-15 11:17:29 -0500338void qemu_chr_fe_printf(CharDriverState *s, const char *fmt, ...)
aliguori6f97dba2008-10-31 18:49:55 +0000339{
Amit Shah9bd78542009-11-03 19:59:54 +0530340 char buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +0000341 va_list ap;
342 va_start(ap, fmt);
343 vsnprintf(buf, sizeof(buf), fmt, ap);
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500344 qemu_chr_fe_write(s, (uint8_t *)buf, strlen(buf));
aliguori6f97dba2008-10-31 18:49:55 +0000345 va_end(ap);
346}
347
Amit Shah386a5a12013-08-28 15:24:05 +0530348static void remove_fd_in_watch(CharDriverState *chr);
349
aliguori6f97dba2008-10-31 18:49:55 +0000350void qemu_chr_add_handlers(CharDriverState *s,
Juan Quintela7b27a762010-03-11 17:55:39 +0100351 IOCanReadHandler *fd_can_read,
aliguori6f97dba2008-10-31 18:49:55 +0000352 IOReadHandler *fd_read,
353 IOEventHandler *fd_event,
354 void *opaque)
355{
Hans de Goede19083222013-03-26 11:07:56 +0100356 int fe_open;
357
Amit Shahda7d9982011-04-25 15:18:22 +0530358 if (!opaque && !fd_can_read && !fd_read && !fd_event) {
Hans de Goede19083222013-03-26 11:07:56 +0100359 fe_open = 0;
Amit Shah386a5a12013-08-28 15:24:05 +0530360 remove_fd_in_watch(s);
Hans de Goede19083222013-03-26 11:07:56 +0100361 } else {
362 fe_open = 1;
Amit Shah2d6c1ef2011-02-10 12:55:20 +0530363 }
aliguori6f97dba2008-10-31 18:49:55 +0000364 s->chr_can_read = fd_can_read;
365 s->chr_read = fd_read;
366 s->chr_event = fd_event;
367 s->handler_opaque = opaque;
Gal Hammerac1b84d2014-02-25 12:12:35 +0200368 if (fe_open && s->chr_update_read_handler)
aliguori6f97dba2008-10-31 18:49:55 +0000369 s->chr_update_read_handler(s);
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200370
Hans de Goede19083222013-03-26 11:07:56 +0100371 if (!s->explicit_fe_open) {
Hans de Goede8e25daa2013-03-26 11:07:57 +0100372 qemu_chr_fe_set_open(s, fe_open);
Hans de Goede19083222013-03-26 11:07:56 +0100373 }
374
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200375 /* We're connecting to an already opened device, so let's make sure we
376 also get the open event */
Hans de Goedea59bcd32013-03-26 11:08:00 +0100377 if (fe_open && s->be_open) {
Hans de Goedefee204f2013-03-26 11:07:54 +0100378 qemu_chr_be_generic_open(s);
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200379 }
aliguori6f97dba2008-10-31 18:49:55 +0000380}
381
382static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
383{
384 return len;
385}
386
Gerd Hoffmann80dca9e2013-02-21 11:41:26 +0100387static CharDriverState *qemu_chr_open_null(void)
aliguori6f97dba2008-10-31 18:49:55 +0000388{
389 CharDriverState *chr;
390
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200391 chr = qemu_chr_alloc();
aliguori6f97dba2008-10-31 18:49:55 +0000392 chr->chr_write = null_chr_write;
Michael Rothbd5c51e2013-06-07 15:19:53 -0500393 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +0100394 return chr;
aliguori6f97dba2008-10-31 18:49:55 +0000395}
396
397/* MUX driver for serial I/O splitting */
aliguori6f97dba2008-10-31 18:49:55 +0000398#define MAX_MUX 4
399#define MUX_BUFFER_SIZE 32 /* Must be a power of 2. */
400#define MUX_BUFFER_MASK (MUX_BUFFER_SIZE - 1)
401typedef struct {
Juan Quintela7b27a762010-03-11 17:55:39 +0100402 IOCanReadHandler *chr_can_read[MAX_MUX];
aliguori6f97dba2008-10-31 18:49:55 +0000403 IOReadHandler *chr_read[MAX_MUX];
404 IOEventHandler *chr_event[MAX_MUX];
405 void *ext_opaque[MAX_MUX];
406 CharDriverState *drv;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200407 int focus;
aliguori6f97dba2008-10-31 18:49:55 +0000408 int mux_cnt;
409 int term_got_escape;
410 int max_size;
aliguoria80bf992009-03-05 23:00:02 +0000411 /* Intermediate input buffer allows to catch escape sequences even if the
412 currently active device is not accepting any input - but only until it
413 is full as well. */
414 unsigned char buffer[MAX_MUX][MUX_BUFFER_SIZE];
415 int prod[MAX_MUX];
416 int cons[MAX_MUX];
Jan Kiszka2d229592009-06-15 22:25:30 +0200417 int timestamps;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200418
419 /* Protected by the CharDriverState chr_write_lock. */
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200420 int linestart;
Jan Kiszka2d229592009-06-15 22:25:30 +0200421 int64_t timestamps_start;
aliguori6f97dba2008-10-31 18:49:55 +0000422} MuxDriver;
423
424
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200425/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +0000426static int mux_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
427{
428 MuxDriver *d = chr->opaque;
429 int ret;
Jan Kiszka2d229592009-06-15 22:25:30 +0200430 if (!d->timestamps) {
Paolo Bonzini6975b712014-06-18 08:43:56 +0200431 ret = qemu_chr_fe_write(d->drv, buf, len);
aliguori6f97dba2008-10-31 18:49:55 +0000432 } else {
433 int i;
434
435 ret = 0;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200436 for (i = 0; i < len; i++) {
437 if (d->linestart) {
aliguori6f97dba2008-10-31 18:49:55 +0000438 char buf1[64];
439 int64_t ti;
440 int secs;
441
Alex Blighbc72ad62013-08-21 16:03:08 +0100442 ti = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Jan Kiszka2d229592009-06-15 22:25:30 +0200443 if (d->timestamps_start == -1)
444 d->timestamps_start = ti;
445 ti -= d->timestamps_start;
aliguoria4bb1db2009-01-22 17:15:16 +0000446 secs = ti / 1000;
aliguori6f97dba2008-10-31 18:49:55 +0000447 snprintf(buf1, sizeof(buf1),
448 "[%02d:%02d:%02d.%03d] ",
449 secs / 3600,
450 (secs / 60) % 60,
451 secs % 60,
aliguoria4bb1db2009-01-22 17:15:16 +0000452 (int)(ti % 1000));
Paolo Bonzini6975b712014-06-18 08:43:56 +0200453 qemu_chr_fe_write(d->drv, (uint8_t *)buf1, strlen(buf1));
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200454 d->linestart = 0;
455 }
Paolo Bonzini6975b712014-06-18 08:43:56 +0200456 ret += qemu_chr_fe_write(d->drv, buf+i, 1);
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200457 if (buf[i] == '\n') {
458 d->linestart = 1;
aliguori6f97dba2008-10-31 18:49:55 +0000459 }
460 }
461 }
462 return ret;
463}
464
465static const char * const mux_help[] = {
466 "% h print this help\n\r",
467 "% x exit emulator\n\r",
468 "% s save disk data back to file (if -snapshot)\n\r",
Gonglei86d10322014-11-15 18:06:46 +0800469 "% t toggle console timestamps\n\r",
aliguori6f97dba2008-10-31 18:49:55 +0000470 "% b send break (magic sysrq)\n\r",
471 "% c switch between console and monitor\n\r",
472 "% % sends %\n\r",
473 NULL
474};
475
476int term_escape_char = 0x01; /* ctrl-a is used for escape */
477static void mux_print_help(CharDriverState *chr)
478{
479 int i, j;
480 char ebuf[15] = "Escape-Char";
481 char cbuf[50] = "\n\r";
482
483 if (term_escape_char > 0 && term_escape_char < 26) {
484 snprintf(cbuf, sizeof(cbuf), "\n\r");
485 snprintf(ebuf, sizeof(ebuf), "C-%c", term_escape_char - 1 + 'a');
486 } else {
487 snprintf(cbuf, sizeof(cbuf),
488 "\n\rEscape-Char set to Ascii: 0x%02x\n\r\n\r",
489 term_escape_char);
490 }
Paolo Bonzini6975b712014-06-18 08:43:56 +0200491 qemu_chr_fe_write(chr, (uint8_t *)cbuf, strlen(cbuf));
aliguori6f97dba2008-10-31 18:49:55 +0000492 for (i = 0; mux_help[i] != NULL; i++) {
493 for (j=0; mux_help[i][j] != '\0'; j++) {
494 if (mux_help[i][j] == '%')
Paolo Bonzini6975b712014-06-18 08:43:56 +0200495 qemu_chr_fe_write(chr, (uint8_t *)ebuf, strlen(ebuf));
aliguori6f97dba2008-10-31 18:49:55 +0000496 else
Paolo Bonzini6975b712014-06-18 08:43:56 +0200497 qemu_chr_fe_write(chr, (uint8_t *)&mux_help[i][j], 1);
aliguori6f97dba2008-10-31 18:49:55 +0000498 }
499 }
500}
501
aliguori2724b182009-03-05 23:01:47 +0000502static void mux_chr_send_event(MuxDriver *d, int mux_nr, int event)
503{
504 if (d->chr_event[mux_nr])
505 d->chr_event[mux_nr](d->ext_opaque[mux_nr], event);
506}
507
aliguori6f97dba2008-10-31 18:49:55 +0000508static int mux_proc_byte(CharDriverState *chr, MuxDriver *d, int ch)
509{
510 if (d->term_got_escape) {
511 d->term_got_escape = 0;
512 if (ch == term_escape_char)
513 goto send_char;
514 switch(ch) {
515 case '?':
516 case 'h':
517 mux_print_help(chr);
518 break;
519 case 'x':
520 {
521 const char *term = "QEMU: Terminated\n\r";
Paolo Bonzini6975b712014-06-18 08:43:56 +0200522 qemu_chr_fe_write(chr, (uint8_t *)term, strlen(term));
aliguori6f97dba2008-10-31 18:49:55 +0000523 exit(0);
524 break;
525 }
526 case 's':
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +0200527 bdrv_commit_all();
aliguori6f97dba2008-10-31 18:49:55 +0000528 break;
529 case 'b':
Hans de Goedea425d232011-11-19 10:22:43 +0100530 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
aliguori6f97dba2008-10-31 18:49:55 +0000531 break;
532 case 'c':
533 /* Switch to the next registered device */
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200534 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
535 d->focus++;
536 if (d->focus >= d->mux_cnt)
537 d->focus = 0;
538 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
aliguori6f97dba2008-10-31 18:49:55 +0000539 break;
Jan Kiszka2d229592009-06-15 22:25:30 +0200540 case 't':
541 d->timestamps = !d->timestamps;
542 d->timestamps_start = -1;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200543 d->linestart = 0;
Jan Kiszka2d229592009-06-15 22:25:30 +0200544 break;
aliguori6f97dba2008-10-31 18:49:55 +0000545 }
546 } else if (ch == term_escape_char) {
547 d->term_got_escape = 1;
548 } else {
549 send_char:
550 return 1;
551 }
552 return 0;
553}
554
555static void mux_chr_accept_input(CharDriverState *chr)
556{
aliguori6f97dba2008-10-31 18:49:55 +0000557 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200558 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000559
aliguoria80bf992009-03-05 23:00:02 +0000560 while (d->prod[m] != d->cons[m] &&
aliguori6f97dba2008-10-31 18:49:55 +0000561 d->chr_can_read[m] &&
562 d->chr_can_read[m](d->ext_opaque[m])) {
563 d->chr_read[m](d->ext_opaque[m],
aliguoria80bf992009-03-05 23:00:02 +0000564 &d->buffer[m][d->cons[m]++ & MUX_BUFFER_MASK], 1);
aliguori6f97dba2008-10-31 18:49:55 +0000565 }
566}
567
568static int mux_chr_can_read(void *opaque)
569{
570 CharDriverState *chr = opaque;
571 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200572 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000573
aliguoria80bf992009-03-05 23:00:02 +0000574 if ((d->prod[m] - d->cons[m]) < MUX_BUFFER_SIZE)
aliguori6f97dba2008-10-31 18:49:55 +0000575 return 1;
aliguoria80bf992009-03-05 23:00:02 +0000576 if (d->chr_can_read[m])
577 return d->chr_can_read[m](d->ext_opaque[m]);
aliguori6f97dba2008-10-31 18:49:55 +0000578 return 0;
579}
580
581static void mux_chr_read(void *opaque, const uint8_t *buf, int size)
582{
583 CharDriverState *chr = opaque;
584 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200585 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000586 int i;
587
588 mux_chr_accept_input (opaque);
589
590 for(i = 0; i < size; i++)
591 if (mux_proc_byte(chr, d, buf[i])) {
aliguoria80bf992009-03-05 23:00:02 +0000592 if (d->prod[m] == d->cons[m] &&
aliguori6f97dba2008-10-31 18:49:55 +0000593 d->chr_can_read[m] &&
594 d->chr_can_read[m](d->ext_opaque[m]))
595 d->chr_read[m](d->ext_opaque[m], &buf[i], 1);
596 else
aliguoria80bf992009-03-05 23:00:02 +0000597 d->buffer[m][d->prod[m]++ & MUX_BUFFER_MASK] = buf[i];
aliguori6f97dba2008-10-31 18:49:55 +0000598 }
599}
600
601static void mux_chr_event(void *opaque, int event)
602{
603 CharDriverState *chr = opaque;
604 MuxDriver *d = chr->opaque;
605 int i;
606
607 /* Send the event to all registered listeners */
608 for (i = 0; i < d->mux_cnt; i++)
aliguori2724b182009-03-05 23:01:47 +0000609 mux_chr_send_event(d, i, event);
aliguori6f97dba2008-10-31 18:49:55 +0000610}
611
612static void mux_chr_update_read_handler(CharDriverState *chr)
613{
614 MuxDriver *d = chr->opaque;
615
616 if (d->mux_cnt >= MAX_MUX) {
617 fprintf(stderr, "Cannot add I/O handlers, MUX array is full\n");
618 return;
619 }
620 d->ext_opaque[d->mux_cnt] = chr->handler_opaque;
621 d->chr_can_read[d->mux_cnt] = chr->chr_can_read;
622 d->chr_read[d->mux_cnt] = chr->chr_read;
623 d->chr_event[d->mux_cnt] = chr->chr_event;
624 /* Fix up the real driver with mux routines */
625 if (d->mux_cnt == 0) {
626 qemu_chr_add_handlers(d->drv, mux_chr_can_read, mux_chr_read,
627 mux_chr_event, chr);
628 }
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200629 if (d->focus != -1) {
630 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200631 }
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200632 d->focus = d->mux_cnt;
aliguori6f97dba2008-10-31 18:49:55 +0000633 d->mux_cnt++;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200634 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
aliguori6f97dba2008-10-31 18:49:55 +0000635}
636
Michael Roth7b7ab182013-07-30 13:04:22 -0500637static bool muxes_realized;
638
639/**
640 * Called after processing of default and command-line-specified
641 * chardevs to deliver CHR_EVENT_OPENED events to any FEs attached
642 * to a mux chardev. This is done here to ensure that
643 * output/prompts/banners are only displayed for the FE that has
644 * focus when initial command-line processing/machine init is
645 * completed.
646 *
647 * After this point, any new FE attached to any new or existing
648 * mux will receive CHR_EVENT_OPENED notifications for the BE
649 * immediately.
650 */
651static void muxes_realize_done(Notifier *notifier, void *unused)
652{
653 CharDriverState *chr;
654
655 QTAILQ_FOREACH(chr, &chardevs, next) {
656 if (chr->is_mux) {
657 MuxDriver *d = chr->opaque;
658 int i;
659
660 /* send OPENED to all already-attached FEs */
661 for (i = 0; i < d->mux_cnt; i++) {
662 mux_chr_send_event(d, i, CHR_EVENT_OPENED);
663 }
664 /* mark mux as OPENED so any new FEs will immediately receive
665 * OPENED event
666 */
667 qemu_chr_be_generic_open(chr);
668 }
669 }
670 muxes_realized = true;
671}
672
673static Notifier muxes_realize_notify = {
674 .notify = muxes_realize_done,
675};
676
Kirill Batuzov3f0838a2014-07-04 16:43:15 +0400677static GSource *mux_chr_add_watch(CharDriverState *s, GIOCondition cond)
678{
679 MuxDriver *d = s->opaque;
680 return d->drv->chr_add_watch(d->drv, cond);
681}
682
aliguori6f97dba2008-10-31 18:49:55 +0000683static CharDriverState *qemu_chr_open_mux(CharDriverState *drv)
684{
685 CharDriverState *chr;
686 MuxDriver *d;
687
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200688 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -0500689 d = g_malloc0(sizeof(MuxDriver));
aliguori6f97dba2008-10-31 18:49:55 +0000690
691 chr->opaque = d;
692 d->drv = drv;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200693 d->focus = -1;
aliguori6f97dba2008-10-31 18:49:55 +0000694 chr->chr_write = mux_chr_write;
695 chr->chr_update_read_handler = mux_chr_update_read_handler;
696 chr->chr_accept_input = mux_chr_accept_input;
Hans de Goede7c32c4f2011-03-24 11:12:02 +0100697 /* Frontend guest-open / -close notification is not support with muxes */
Hans de Goede574b7112013-03-26 11:07:58 +0100698 chr->chr_set_fe_open = NULL;
Kirill Batuzov3f0838a2014-07-04 16:43:15 +0400699 if (drv->chr_add_watch) {
700 chr->chr_add_watch = mux_chr_add_watch;
701 }
Michael Roth7b7ab182013-07-30 13:04:22 -0500702 /* only default to opened state if we've realized the initial
703 * set of muxes
704 */
705 chr->explicit_be_open = muxes_realized ? 0 : 1;
706 chr->is_mux = 1;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200707
aliguori6f97dba2008-10-31 18:49:55 +0000708 return chr;
709}
710
711
712#ifdef _WIN32
aliguorid247d252008-11-11 20:46:40 +0000713int send_all(int fd, const void *buf, int len1)
aliguori6f97dba2008-10-31 18:49:55 +0000714{
715 int ret, len;
716
717 len = len1;
718 while (len > 0) {
719 ret = send(fd, buf, len, 0);
720 if (ret < 0) {
aliguori6f97dba2008-10-31 18:49:55 +0000721 errno = WSAGetLastError();
722 if (errno != WSAEWOULDBLOCK) {
723 return -1;
724 }
725 } else if (ret == 0) {
726 break;
727 } else {
728 buf += ret;
729 len -= ret;
730 }
731 }
732 return len1 - len;
733}
734
735#else
736
Jes Sorensen5fc9cfe2010-11-01 20:02:23 +0100737int send_all(int fd, const void *_buf, int len1)
aliguori6f97dba2008-10-31 18:49:55 +0000738{
739 int ret, len;
Jes Sorensen5fc9cfe2010-11-01 20:02:23 +0100740 const uint8_t *buf = _buf;
aliguori6f97dba2008-10-31 18:49:55 +0000741
742 len = len1;
743 while (len > 0) {
744 ret = write(fd, buf, len);
745 if (ret < 0) {
746 if (errno != EINTR && errno != EAGAIN)
747 return -1;
748 } else if (ret == 0) {
749 break;
750 } else {
751 buf += ret;
752 len -= ret;
753 }
754 }
755 return len1 - len;
756}
Stefan Berger4549a8b2013-02-27 12:47:53 -0500757
758int recv_all(int fd, void *_buf, int len1, bool single_read)
759{
760 int ret, len;
761 uint8_t *buf = _buf;
762
763 len = len1;
764 while ((len > 0) && (ret = read(fd, buf, len)) != 0) {
765 if (ret < 0) {
766 if (errno != EINTR && errno != EAGAIN) {
767 return -1;
768 }
769 continue;
770 } else {
771 if (single_read) {
772 return ret;
773 }
774 buf += ret;
775 len -= ret;
776 }
777 }
778 return len1 - len;
779}
780
aliguori6f97dba2008-10-31 18:49:55 +0000781#endif /* !_WIN32 */
782
Anthony Liguori96c63842013-03-05 23:21:18 +0530783typedef struct IOWatchPoll
784{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200785 GSource parent;
786
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200787 GIOChannel *channel;
Anthony Liguori96c63842013-03-05 23:21:18 +0530788 GSource *src;
Anthony Liguori96c63842013-03-05 23:21:18 +0530789
790 IOCanReadHandler *fd_can_read;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200791 GSourceFunc fd_read;
Anthony Liguori96c63842013-03-05 23:21:18 +0530792 void *opaque;
Anthony Liguori96c63842013-03-05 23:21:18 +0530793} IOWatchPoll;
794
Anthony Liguori96c63842013-03-05 23:21:18 +0530795static IOWatchPoll *io_watch_poll_from_source(GSource *source)
796{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200797 return container_of(source, IOWatchPoll, parent);
Anthony Liguori96c63842013-03-05 23:21:18 +0530798}
799
800static gboolean io_watch_poll_prepare(GSource *source, gint *timeout_)
801{
802 IOWatchPoll *iwp = io_watch_poll_from_source(source);
Paolo Bonzinid185c092013-04-05 17:59:33 +0200803 bool now_active = iwp->fd_can_read(iwp->opaque) > 0;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200804 bool was_active = iwp->src != NULL;
Paolo Bonzinid185c092013-04-05 17:59:33 +0200805 if (was_active == now_active) {
Anthony Liguori96c63842013-03-05 23:21:18 +0530806 return FALSE;
807 }
808
Paolo Bonzinid185c092013-04-05 17:59:33 +0200809 if (now_active) {
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200810 iwp->src = g_io_create_watch(iwp->channel, G_IO_IN | G_IO_ERR | G_IO_HUP);
811 g_source_set_callback(iwp->src, iwp->fd_read, iwp->opaque, NULL);
Paolo Bonzinid185c092013-04-05 17:59:33 +0200812 g_source_attach(iwp->src, NULL);
813 } else {
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200814 g_source_destroy(iwp->src);
815 g_source_unref(iwp->src);
816 iwp->src = NULL;
Paolo Bonzinid185c092013-04-05 17:59:33 +0200817 }
818 return FALSE;
Anthony Liguori96c63842013-03-05 23:21:18 +0530819}
820
821static gboolean io_watch_poll_check(GSource *source)
822{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200823 return FALSE;
Anthony Liguori96c63842013-03-05 23:21:18 +0530824}
825
826static gboolean io_watch_poll_dispatch(GSource *source, GSourceFunc callback,
827 gpointer user_data)
828{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200829 abort();
Anthony Liguori96c63842013-03-05 23:21:18 +0530830}
831
832static void io_watch_poll_finalize(GSource *source)
833{
Paolo Bonzini2b316772013-04-19 17:32:09 +0200834 /* Due to a glib bug, removing the last reference to a source
835 * inside a finalize callback causes recursive locking (and a
836 * deadlock). This is not a problem inside other callbacks,
837 * including dispatch callbacks, so we call io_remove_watch_poll
838 * to remove this source. At this point, iwp->src must
839 * be NULL, or we would leak it.
840 *
841 * This would be solved much more elegantly by child sources,
842 * but we support older glib versions that do not have them.
843 */
Anthony Liguori96c63842013-03-05 23:21:18 +0530844 IOWatchPoll *iwp = io_watch_poll_from_source(source);
Paolo Bonzini2b316772013-04-19 17:32:09 +0200845 assert(iwp->src == NULL);
Anthony Liguori96c63842013-03-05 23:21:18 +0530846}
847
848static GSourceFuncs io_watch_poll_funcs = {
849 .prepare = io_watch_poll_prepare,
850 .check = io_watch_poll_check,
851 .dispatch = io_watch_poll_dispatch,
852 .finalize = io_watch_poll_finalize,
853};
854
855/* Can only be used for read */
856static guint io_add_watch_poll(GIOChannel *channel,
857 IOCanReadHandler *fd_can_read,
858 GIOFunc fd_read,
859 gpointer user_data)
860{
861 IOWatchPoll *iwp;
Paolo Bonzini0ca5aa42013-04-10 15:23:27 +0200862 int tag;
Anthony Liguori96c63842013-03-05 23:21:18 +0530863
Paolo Bonzinid185c092013-04-05 17:59:33 +0200864 iwp = (IOWatchPoll *) g_source_new(&io_watch_poll_funcs, sizeof(IOWatchPoll));
Anthony Liguori96c63842013-03-05 23:21:18 +0530865 iwp->fd_can_read = fd_can_read;
866 iwp->opaque = user_data;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200867 iwp->channel = channel;
868 iwp->fd_read = (GSourceFunc) fd_read;
869 iwp->src = NULL;
Anthony Liguori96c63842013-03-05 23:21:18 +0530870
Paolo Bonzini0ca5aa42013-04-10 15:23:27 +0200871 tag = g_source_attach(&iwp->parent, NULL);
872 g_source_unref(&iwp->parent);
873 return tag;
Anthony Liguori96c63842013-03-05 23:21:18 +0530874}
875
Paolo Bonzini2b316772013-04-19 17:32:09 +0200876static void io_remove_watch_poll(guint tag)
877{
878 GSource *source;
879 IOWatchPoll *iwp;
880
881 g_return_if_fail (tag > 0);
882
883 source = g_main_context_find_source_by_id(NULL, tag);
884 g_return_if_fail (source != NULL);
885
886 iwp = io_watch_poll_from_source(source);
887 if (iwp->src) {
888 g_source_destroy(iwp->src);
889 g_source_unref(iwp->src);
890 iwp->src = NULL;
891 }
892 g_source_destroy(&iwp->parent);
893}
894
Amit Shah26da70c2013-08-28 15:23:37 +0530895static void remove_fd_in_watch(CharDriverState *chr)
896{
897 if (chr->fd_in_tag) {
898 io_remove_watch_poll(chr->fd_in_tag);
899 chr->fd_in_tag = 0;
900 }
901}
902
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000903#ifndef _WIN32
Anthony Liguori96c63842013-03-05 23:21:18 +0530904static GIOChannel *io_channel_from_fd(int fd)
905{
906 GIOChannel *chan;
907
908 if (fd == -1) {
909 return NULL;
910 }
911
912 chan = g_io_channel_unix_new(fd);
913
914 g_io_channel_set_encoding(chan, NULL, NULL);
915 g_io_channel_set_buffered(chan, FALSE);
916
917 return chan;
918}
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000919#endif
Anthony Liguori96c63842013-03-05 23:21:18 +0530920
Anthony Liguori76a96442013-03-05 23:21:21 +0530921static GIOChannel *io_channel_from_socket(int fd)
922{
923 GIOChannel *chan;
924
925 if (fd == -1) {
926 return NULL;
927 }
928
929#ifdef _WIN32
930 chan = g_io_channel_win32_new_socket(fd);
931#else
932 chan = g_io_channel_unix_new(fd);
933#endif
934
935 g_io_channel_set_encoding(chan, NULL, NULL);
936 g_io_channel_set_buffered(chan, FALSE);
937
938 return chan;
939}
940
Anthony Liguori684a0962013-03-29 11:39:50 -0500941static int io_channel_send(GIOChannel *fd, const void *buf, size_t len)
Anthony Liguori96c63842013-03-05 23:21:18 +0530942{
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200943 size_t offset = 0;
944 GIOStatus status = G_IO_STATUS_NORMAL;
Anthony Liguori96c63842013-03-05 23:21:18 +0530945
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200946 while (offset < len && status == G_IO_STATUS_NORMAL) {
947 gsize bytes_written = 0;
Anthony Liguori684a0962013-03-29 11:39:50 -0500948
949 status = g_io_channel_write_chars(fd, buf + offset, len - offset,
Anthony Liguori96c63842013-03-05 23:21:18 +0530950 &bytes_written, NULL);
Anthony Liguori684a0962013-03-29 11:39:50 -0500951 offset += bytes_written;
Anthony Liguori96c63842013-03-05 23:21:18 +0530952 }
Anthony Liguori684a0962013-03-29 11:39:50 -0500953
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200954 if (offset > 0) {
955 return offset;
956 }
957 switch (status) {
958 case G_IO_STATUS_NORMAL:
959 g_assert(len == 0);
960 return 0;
961 case G_IO_STATUS_AGAIN:
962 errno = EAGAIN;
963 return -1;
964 default:
965 break;
966 }
967 errno = EINVAL;
968 return -1;
Anthony Liguori96c63842013-03-05 23:21:18 +0530969}
Anthony Liguori96c63842013-03-05 23:21:18 +0530970
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000971#ifndef _WIN32
972
Anthony Liguoria29753f2013-03-05 23:21:19 +0530973typedef struct FDCharDriver {
974 CharDriverState *chr;
975 GIOChannel *fd_in, *fd_out;
aliguori6f97dba2008-10-31 18:49:55 +0000976 int max_size;
977} FDCharDriver;
978
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200979/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +0000980static int fd_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
981{
982 FDCharDriver *s = chr->opaque;
Anthony Liguoria29753f2013-03-05 23:21:19 +0530983
Anthony Liguori684a0962013-03-29 11:39:50 -0500984 return io_channel_send(s->fd_out, buf, len);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530985}
986
987static gboolean fd_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
988{
989 CharDriverState *chr = opaque;
990 FDCharDriver *s = chr->opaque;
991 int len;
992 uint8_t buf[READ_BUF_LEN];
993 GIOStatus status;
994 gsize bytes_read;
995
996 len = sizeof(buf);
997 if (len > s->max_size) {
998 len = s->max_size;
999 }
1000 if (len == 0) {
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02001001 return TRUE;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301002 }
1003
1004 status = g_io_channel_read_chars(chan, (gchar *)buf,
1005 len, &bytes_read, NULL);
1006 if (status == G_IO_STATUS_EOF) {
Amit Shah26da70c2013-08-28 15:23:37 +05301007 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +05301008 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
1009 return FALSE;
1010 }
1011 if (status == G_IO_STATUS_NORMAL) {
1012 qemu_chr_be_write(chr, buf, bytes_read);
1013 }
1014
1015 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00001016}
1017
1018static int fd_chr_read_poll(void *opaque)
1019{
1020 CharDriverState *chr = opaque;
1021 FDCharDriver *s = chr->opaque;
1022
Anthony Liguori909cda12011-08-15 11:17:31 -05001023 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001024 return s->max_size;
1025}
1026
Anthony Liguori23673ca2013-03-05 23:21:23 +05301027static GSource *fd_chr_add_watch(CharDriverState *chr, GIOCondition cond)
1028{
1029 FDCharDriver *s = chr->opaque;
1030 return g_io_create_watch(s->fd_out, cond);
1031}
1032
aliguori6f97dba2008-10-31 18:49:55 +00001033static void fd_chr_update_read_handler(CharDriverState *chr)
1034{
1035 FDCharDriver *s = chr->opaque;
1036
Amit Shah26da70c2013-08-28 15:23:37 +05301037 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +05301038 if (s->fd_in) {
Amit Shah7ba9add2013-08-28 15:18:29 +05301039 chr->fd_in_tag = io_add_watch_poll(s->fd_in, fd_chr_read_poll,
1040 fd_chr_read, chr);
aliguori6f97dba2008-10-31 18:49:55 +00001041 }
1042}
1043
1044static void fd_chr_close(struct CharDriverState *chr)
1045{
1046 FDCharDriver *s = chr->opaque;
1047
Amit Shah26da70c2013-08-28 15:23:37 +05301048 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +05301049 if (s->fd_in) {
1050 g_io_channel_unref(s->fd_in);
1051 }
1052 if (s->fd_out) {
1053 g_io_channel_unref(s->fd_out);
aliguori6f97dba2008-10-31 18:49:55 +00001054 }
1055
Anthony Liguori7267c092011-08-20 22:09:37 -05001056 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01001057 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001058}
1059
1060/* open a character device to a unix fd */
1061static CharDriverState *qemu_chr_open_fd(int fd_in, int fd_out)
1062{
1063 CharDriverState *chr;
1064 FDCharDriver *s;
1065
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001066 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05001067 s = g_malloc0(sizeof(FDCharDriver));
Anthony Liguoria29753f2013-03-05 23:21:19 +05301068 s->fd_in = io_channel_from_fd(fd_in);
1069 s->fd_out = io_channel_from_fd(fd_out);
Gonglei4ff12bd2014-08-11 17:34:20 +08001070 qemu_set_nonblock(fd_out);
Anthony Liguoria29753f2013-03-05 23:21:19 +05301071 s->chr = chr;
aliguori6f97dba2008-10-31 18:49:55 +00001072 chr->opaque = s;
Anthony Liguori23673ca2013-03-05 23:21:23 +05301073 chr->chr_add_watch = fd_chr_add_watch;
aliguori6f97dba2008-10-31 18:49:55 +00001074 chr->chr_write = fd_chr_write;
1075 chr->chr_update_read_handler = fd_chr_update_read_handler;
1076 chr->chr_close = fd_chr_close;
1077
aliguori6f97dba2008-10-31 18:49:55 +00001078 return chr;
1079}
1080
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01001081static CharDriverState *qemu_chr_open_pipe(ChardevHostdev *opts)
aliguori6f97dba2008-10-31 18:49:55 +00001082{
1083 int fd_in, fd_out;
Corey Minyard9f781162014-10-02 11:17:33 -05001084 char filename_in[CHR_MAX_FILENAME_SIZE];
1085 char filename_out[CHR_MAX_FILENAME_SIZE];
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01001086 const char *filename = opts->device;
Gerd Hoffmann7d315442009-09-10 10:58:36 +02001087
1088 if (filename == NULL) {
1089 fprintf(stderr, "chardev: pipe: no filename given\n");
Markus Armbruster1f514702012-02-07 15:09:08 +01001090 return NULL;
Gerd Hoffmann7d315442009-09-10 10:58:36 +02001091 }
aliguori6f97dba2008-10-31 18:49:55 +00001092
Corey Minyard9f781162014-10-02 11:17:33 -05001093 snprintf(filename_in, CHR_MAX_FILENAME_SIZE, "%s.in", filename);
1094 snprintf(filename_out, CHR_MAX_FILENAME_SIZE, "%s.out", filename);
Kevin Wolf40ff6d72009-12-02 12:24:42 +01001095 TFR(fd_in = qemu_open(filename_in, O_RDWR | O_BINARY));
1096 TFR(fd_out = qemu_open(filename_out, O_RDWR | O_BINARY));
aliguori6f97dba2008-10-31 18:49:55 +00001097 if (fd_in < 0 || fd_out < 0) {
1098 if (fd_in >= 0)
1099 close(fd_in);
1100 if (fd_out >= 0)
1101 close(fd_out);
Markus Armbrusterb181e042012-02-07 15:09:09 +01001102 TFR(fd_in = fd_out = qemu_open(filename, O_RDWR | O_BINARY));
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01001103 if (fd_in < 0) {
Markus Armbruster1f514702012-02-07 15:09:08 +01001104 return NULL;
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01001105 }
aliguori6f97dba2008-10-31 18:49:55 +00001106 }
Markus Armbruster1f514702012-02-07 15:09:08 +01001107 return qemu_chr_open_fd(fd_in, fd_out);
aliguori6f97dba2008-10-31 18:49:55 +00001108}
1109
aliguori6f97dba2008-10-31 18:49:55 +00001110/* init terminal so that we can grab keys */
1111static struct termios oldtty;
1112static int old_fd0_flags;
Li Liuc88930a2014-09-09 19:19:48 +08001113static bool stdio_in_use;
Paolo Bonzinibb002512010-12-23 13:42:50 +01001114static bool stdio_allow_signal;
Gal Hammere76d4422015-01-07 10:38:35 +02001115static bool stdio_echo_state;
1116
1117static void qemu_chr_set_echo_stdio(CharDriverState *chr, bool echo);
aliguori6f97dba2008-10-31 18:49:55 +00001118
1119static void term_exit(void)
1120{
1121 tcsetattr (0, TCSANOW, &oldtty);
1122 fcntl(0, F_SETFL, old_fd0_flags);
1123}
1124
Gal Hammere76d4422015-01-07 10:38:35 +02001125static void term_stdio_handler(int sig)
1126{
1127 /* restore echo after resume from suspend. */
1128 qemu_chr_set_echo_stdio(NULL, stdio_echo_state);
1129}
1130
Paolo Bonzinibb002512010-12-23 13:42:50 +01001131static void qemu_chr_set_echo_stdio(CharDriverState *chr, bool echo)
aliguori6f97dba2008-10-31 18:49:55 +00001132{
1133 struct termios tty;
1134
Gal Hammere76d4422015-01-07 10:38:35 +02001135 stdio_echo_state = echo;
Paolo Bonzini03693642010-12-23 13:42:49 +01001136 tty = oldtty;
Paolo Bonzinibb002512010-12-23 13:42:50 +01001137 if (!echo) {
1138 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
aliguori6f97dba2008-10-31 18:49:55 +00001139 |INLCR|IGNCR|ICRNL|IXON);
Paolo Bonzinibb002512010-12-23 13:42:50 +01001140 tty.c_oflag |= OPOST;
1141 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
1142 tty.c_cflag &= ~(CSIZE|PARENB);
1143 tty.c_cflag |= CS8;
1144 tty.c_cc[VMIN] = 1;
1145 tty.c_cc[VTIME] = 0;
1146 }
Paolo Bonzinibb002512010-12-23 13:42:50 +01001147 if (!stdio_allow_signal)
aliguori6f97dba2008-10-31 18:49:55 +00001148 tty.c_lflag &= ~ISIG;
aliguori6f97dba2008-10-31 18:49:55 +00001149
1150 tcsetattr (0, TCSANOW, &tty);
aliguori6f97dba2008-10-31 18:49:55 +00001151}
1152
1153static void qemu_chr_close_stdio(struct CharDriverState *chr)
1154{
1155 term_exit();
aliguori6f97dba2008-10-31 18:49:55 +00001156 fd_chr_close(chr);
1157}
1158
Gerd Hoffmann7c358032013-02-21 12:34:58 +01001159static CharDriverState *qemu_chr_open_stdio(ChardevStdio *opts)
aliguori6f97dba2008-10-31 18:49:55 +00001160{
1161 CharDriverState *chr;
Gal Hammere76d4422015-01-07 10:38:35 +02001162 struct sigaction act;
aliguori6f97dba2008-10-31 18:49:55 +00001163
Michael Tokarevab51b1d2012-12-30 12:48:14 +04001164 if (is_daemonized()) {
1165 error_report("cannot use stdio with -daemonize");
1166 return NULL;
1167 }
Li Liuc88930a2014-09-09 19:19:48 +08001168
1169 if (stdio_in_use) {
1170 error_report("cannot use stdio by multiple character devices");
1171 exit(1);
1172 }
1173
1174 stdio_in_use = true;
Anthony Liguoried7a1542013-03-05 23:21:17 +05301175 old_fd0_flags = fcntl(0, F_GETFL);
Li Liuc88930a2014-09-09 19:19:48 +08001176 tcgetattr(0, &oldtty);
Gonglei4ff12bd2014-08-11 17:34:20 +08001177 qemu_set_nonblock(0);
Anthony Liguoried7a1542013-03-05 23:21:17 +05301178 atexit(term_exit);
Paolo Bonzini03693642010-12-23 13:42:49 +01001179
Gal Hammere76d4422015-01-07 10:38:35 +02001180 memset(&act, 0, sizeof(act));
1181 act.sa_handler = term_stdio_handler;
1182 sigaction(SIGCONT, &act, NULL);
1183
aliguori6f97dba2008-10-31 18:49:55 +00001184 chr = qemu_chr_open_fd(0, 1);
1185 chr->chr_close = qemu_chr_close_stdio;
Paolo Bonzinibb002512010-12-23 13:42:50 +01001186 chr->chr_set_echo = qemu_chr_set_echo_stdio;
Gerd Hoffmann7c358032013-02-21 12:34:58 +01001187 if (opts->has_signal) {
1188 stdio_allow_signal = opts->signal;
1189 }
Anthony Liguori15f31512011-08-15 11:17:35 -05001190 qemu_chr_fe_set_echo(chr, false);
aliguori6f97dba2008-10-31 18:49:55 +00001191
Markus Armbruster1f514702012-02-07 15:09:08 +01001192 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001193}
1194
aliguori6f97dba2008-10-31 18:49:55 +00001195#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
Aurelien Jarnoa167ba52009-11-29 18:00:41 +01001196 || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
1197 || defined(__GLIBC__)
aliguori6f97dba2008-10-31 18:49:55 +00001198
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001199#define HAVE_CHARDEV_TTY 1
1200
aliguori6f97dba2008-10-31 18:49:55 +00001201typedef struct {
Anthony Liguori093d3a22013-03-05 23:21:20 +05301202 GIOChannel *fd;
aliguori6f97dba2008-10-31 18:49:55 +00001203 int read_bytes;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001204
1205 /* Protected by the CharDriverState chr_write_lock. */
1206 int connected;
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301207 guint timer_tag;
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001208 guint open_tag;
aliguori6f97dba2008-10-31 18:49:55 +00001209} PtyCharDriver;
1210
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001211static void pty_chr_update_read_handler_locked(CharDriverState *chr);
aliguori6f97dba2008-10-31 18:49:55 +00001212static void pty_chr_state(CharDriverState *chr, int connected);
1213
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301214static gboolean pty_chr_timer(gpointer opaque)
1215{
1216 struct CharDriverState *chr = opaque;
1217 PtyCharDriver *s = chr->opaque;
1218
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001219 qemu_mutex_lock(&chr->chr_write_lock);
Hans de Goede79f20072013-04-25 13:53:02 +02001220 s->timer_tag = 0;
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001221 s->open_tag = 0;
Gerd Hoffmannb0d768c2013-08-22 11:43:58 +02001222 if (!s->connected) {
1223 /* Next poll ... */
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001224 pty_chr_update_read_handler_locked(chr);
Gerd Hoffmannb0d768c2013-08-22 11:43:58 +02001225 }
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001226 qemu_mutex_unlock(&chr->chr_write_lock);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301227 return FALSE;
1228}
1229
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001230/* Called with chr_write_lock held. */
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301231static void pty_chr_rearm_timer(CharDriverState *chr, int ms)
1232{
1233 PtyCharDriver *s = chr->opaque;
1234
1235 if (s->timer_tag) {
1236 g_source_remove(s->timer_tag);
1237 s->timer_tag = 0;
1238 }
1239
1240 if (ms == 1000) {
1241 s->timer_tag = g_timeout_add_seconds(1, pty_chr_timer, chr);
1242 } else {
1243 s->timer_tag = g_timeout_add(ms, pty_chr_timer, chr);
1244 }
1245}
1246
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001247/* Called with chr_write_lock held. */
1248static void pty_chr_update_read_handler_locked(CharDriverState *chr)
Paolo Bonzini1bb7fe72014-06-18 08:43:57 +02001249{
1250 PtyCharDriver *s = chr->opaque;
1251 GPollFD pfd;
1252
1253 pfd.fd = g_io_channel_unix_get_fd(s->fd);
1254 pfd.events = G_IO_OUT;
1255 pfd.revents = 0;
1256 g_poll(&pfd, 1, 0);
1257 if (pfd.revents & G_IO_HUP) {
1258 pty_chr_state(chr, 0);
1259 } else {
1260 pty_chr_state(chr, 1);
1261 }
1262}
1263
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001264static void pty_chr_update_read_handler(CharDriverState *chr)
1265{
1266 qemu_mutex_lock(&chr->chr_write_lock);
1267 pty_chr_update_read_handler_locked(chr);
1268 qemu_mutex_unlock(&chr->chr_write_lock);
1269}
1270
1271/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00001272static int pty_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
1273{
1274 PtyCharDriver *s = chr->opaque;
1275
1276 if (!s->connected) {
1277 /* guest sends data, check for (re-)connect */
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001278 pty_chr_update_read_handler_locked(chr);
Sebastian Tanasecf7330c2014-07-28 13:39:14 +02001279 if (!s->connected) {
1280 return 0;
1281 }
aliguori6f97dba2008-10-31 18:49:55 +00001282 }
Anthony Liguori684a0962013-03-29 11:39:50 -05001283 return io_channel_send(s->fd, buf, len);
aliguori6f97dba2008-10-31 18:49:55 +00001284}
1285
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301286static GSource *pty_chr_add_watch(CharDriverState *chr, GIOCondition cond)
1287{
1288 PtyCharDriver *s = chr->opaque;
Paolo Bonzini62c339c2014-07-24 16:08:04 +02001289 if (!s->connected) {
1290 return NULL;
1291 }
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301292 return g_io_create_watch(s->fd, cond);
1293}
1294
aliguori6f97dba2008-10-31 18:49:55 +00001295static int pty_chr_read_poll(void *opaque)
1296{
1297 CharDriverState *chr = opaque;
1298 PtyCharDriver *s = chr->opaque;
1299
Anthony Liguori909cda12011-08-15 11:17:31 -05001300 s->read_bytes = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001301 return s->read_bytes;
1302}
1303
Anthony Liguori093d3a22013-03-05 23:21:20 +05301304static gboolean pty_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00001305{
1306 CharDriverState *chr = opaque;
1307 PtyCharDriver *s = chr->opaque;
Anthony Liguori093d3a22013-03-05 23:21:20 +05301308 gsize size, len;
Amit Shah9bd78542009-11-03 19:59:54 +05301309 uint8_t buf[READ_BUF_LEN];
Anthony Liguori093d3a22013-03-05 23:21:20 +05301310 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00001311
1312 len = sizeof(buf);
1313 if (len > s->read_bytes)
1314 len = s->read_bytes;
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02001315 if (len == 0) {
1316 return TRUE;
1317 }
Anthony Liguori093d3a22013-03-05 23:21:20 +05301318 status = g_io_channel_read_chars(s->fd, (gchar *)buf, len, &size, NULL);
1319 if (status != G_IO_STATUS_NORMAL) {
aliguori6f97dba2008-10-31 18:49:55 +00001320 pty_chr_state(chr, 0);
Anthony Liguori093d3a22013-03-05 23:21:20 +05301321 return FALSE;
1322 } else {
aliguori6f97dba2008-10-31 18:49:55 +00001323 pty_chr_state(chr, 1);
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05001324 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00001325 }
Anthony Liguori093d3a22013-03-05 23:21:20 +05301326 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00001327}
1328
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001329static gboolean qemu_chr_be_generic_open_func(gpointer opaque)
1330{
1331 CharDriverState *chr = opaque;
1332 PtyCharDriver *s = chr->opaque;
1333
1334 s->open_tag = 0;
1335 qemu_chr_be_generic_open(chr);
1336 return FALSE;
1337}
1338
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001339/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00001340static void pty_chr_state(CharDriverState *chr, int connected)
1341{
1342 PtyCharDriver *s = chr->opaque;
1343
1344 if (!connected) {
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001345 if (s->open_tag) {
1346 g_source_remove(s->open_tag);
1347 s->open_tag = 0;
1348 }
Amit Shah26da70c2013-08-28 15:23:37 +05301349 remove_fd_in_watch(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001350 s->connected = 0;
aliguori6f97dba2008-10-31 18:49:55 +00001351 /* (re-)connect poll interval for idle guests: once per second.
1352 * We check more frequently in case the guests sends data to
1353 * the virtual device linked to our pty. */
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301354 pty_chr_rearm_timer(chr, 1000);
aliguori6f97dba2008-10-31 18:49:55 +00001355 } else {
Paolo Bonzini85a67692013-04-19 17:32:07 +02001356 if (s->timer_tag) {
1357 g_source_remove(s->timer_tag);
1358 s->timer_tag = 0;
1359 }
1360 if (!s->connected) {
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001361 g_assert(s->open_tag == 0);
Paolo Bonzini85a67692013-04-19 17:32:07 +02001362 s->connected = 1;
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001363 s->open_tag = g_idle_add(qemu_chr_be_generic_open_func, chr);
Gal Hammerac1b84d2014-02-25 12:12:35 +02001364 }
1365 if (!chr->fd_in_tag) {
Amit Shah7ba9add2013-08-28 15:18:29 +05301366 chr->fd_in_tag = io_add_watch_poll(s->fd, pty_chr_read_poll,
1367 pty_chr_read, chr);
Paolo Bonzini85a67692013-04-19 17:32:07 +02001368 }
aliguori6f97dba2008-10-31 18:49:55 +00001369 }
1370}
1371
aliguori6f97dba2008-10-31 18:49:55 +00001372static void pty_chr_close(struct CharDriverState *chr)
1373{
1374 PtyCharDriver *s = chr->opaque;
Anthony Liguori093d3a22013-03-05 23:21:20 +05301375 int fd;
aliguori6f97dba2008-10-31 18:49:55 +00001376
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001377 qemu_mutex_lock(&chr->chr_write_lock);
1378 pty_chr_state(chr, 0);
Anthony Liguori093d3a22013-03-05 23:21:20 +05301379 fd = g_io_channel_unix_get_fd(s->fd);
1380 g_io_channel_unref(s->fd);
1381 close(fd);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301382 if (s->timer_tag) {
1383 g_source_remove(s->timer_tag);
Paolo Bonzini910b6362013-04-19 17:32:06 +02001384 s->timer_tag = 0;
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301385 }
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001386 qemu_mutex_unlock(&chr->chr_write_lock);
Anthony Liguori7267c092011-08-20 22:09:37 -05001387 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01001388 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001389}
1390
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001391static CharDriverState *qemu_chr_open_pty(const char *id,
1392 ChardevReturn *ret)
aliguori6f97dba2008-10-31 18:49:55 +00001393{
1394 CharDriverState *chr;
1395 PtyCharDriver *s;
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001396 int master_fd, slave_fd;
aliguori6f97dba2008-10-31 18:49:55 +00001397 char pty_name[PATH_MAX];
aliguori6f97dba2008-10-31 18:49:55 +00001398
Michael Tokarev4efeabb2013-06-05 18:44:54 +04001399 master_fd = qemu_openpty_raw(&slave_fd, pty_name);
1400 if (master_fd < 0) {
Markus Armbruster1f514702012-02-07 15:09:08 +01001401 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001402 }
1403
aliguori6f97dba2008-10-31 18:49:55 +00001404 close(slave_fd);
Don Slutzfac66882014-12-22 10:04:00 -05001405 qemu_set_nonblock(master_fd);
aliguori6f97dba2008-10-31 18:49:55 +00001406
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001407 chr = qemu_chr_alloc();
aliguori6f97dba2008-10-31 18:49:55 +00001408
Michael Tokarev4efeabb2013-06-05 18:44:54 +04001409 chr->filename = g_strdup_printf("pty:%s", pty_name);
1410 ret->pty = g_strdup(pty_name);
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001411 ret->has_pty = true;
Lei Li58650212012-12-21 12:26:38 +08001412
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001413 fprintf(stderr, "char device redirected to %s (label %s)\n",
Michael Tokarev4efeabb2013-06-05 18:44:54 +04001414 pty_name, id);
Markus Armbrustera4e26042011-11-11 10:40:05 +01001415
1416 s = g_malloc0(sizeof(PtyCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00001417 chr->opaque = s;
1418 chr->chr_write = pty_chr_write;
1419 chr->chr_update_read_handler = pty_chr_update_read_handler;
1420 chr->chr_close = pty_chr_close;
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301421 chr->chr_add_watch = pty_chr_add_watch;
Michael Rothbd5c51e2013-06-07 15:19:53 -05001422 chr->explicit_be_open = true;
aliguori6f97dba2008-10-31 18:49:55 +00001423
Anthony Liguori093d3a22013-03-05 23:21:20 +05301424 s->fd = io_channel_from_fd(master_fd);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301425 s->timer_tag = 0;
aliguori6f97dba2008-10-31 18:49:55 +00001426
Markus Armbruster1f514702012-02-07 15:09:08 +01001427 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001428}
1429
1430static void tty_serial_init(int fd, int speed,
1431 int parity, int data_bits, int stop_bits)
1432{
1433 struct termios tty;
1434 speed_t spd;
1435
1436#if 0
1437 printf("tty_serial_init: speed=%d parity=%c data=%d stop=%d\n",
1438 speed, parity, data_bits, stop_bits);
1439#endif
1440 tcgetattr (fd, &tty);
1441
Stefan Weil45eea132009-10-26 16:10:10 +01001442#define check_speed(val) if (speed <= val) { spd = B##val; break; }
1443 speed = speed * 10 / 11;
1444 do {
1445 check_speed(50);
1446 check_speed(75);
1447 check_speed(110);
1448 check_speed(134);
1449 check_speed(150);
1450 check_speed(200);
1451 check_speed(300);
1452 check_speed(600);
1453 check_speed(1200);
1454 check_speed(1800);
1455 check_speed(2400);
1456 check_speed(4800);
1457 check_speed(9600);
1458 check_speed(19200);
1459 check_speed(38400);
1460 /* Non-Posix values follow. They may be unsupported on some systems. */
1461 check_speed(57600);
1462 check_speed(115200);
1463#ifdef B230400
1464 check_speed(230400);
1465#endif
1466#ifdef B460800
1467 check_speed(460800);
1468#endif
1469#ifdef B500000
1470 check_speed(500000);
1471#endif
1472#ifdef B576000
1473 check_speed(576000);
1474#endif
1475#ifdef B921600
1476 check_speed(921600);
1477#endif
1478#ifdef B1000000
1479 check_speed(1000000);
1480#endif
1481#ifdef B1152000
1482 check_speed(1152000);
1483#endif
1484#ifdef B1500000
1485 check_speed(1500000);
1486#endif
1487#ifdef B2000000
1488 check_speed(2000000);
1489#endif
1490#ifdef B2500000
1491 check_speed(2500000);
1492#endif
1493#ifdef B3000000
1494 check_speed(3000000);
1495#endif
1496#ifdef B3500000
1497 check_speed(3500000);
1498#endif
1499#ifdef B4000000
1500 check_speed(4000000);
1501#endif
aliguori6f97dba2008-10-31 18:49:55 +00001502 spd = B115200;
Stefan Weil45eea132009-10-26 16:10:10 +01001503 } while (0);
aliguori6f97dba2008-10-31 18:49:55 +00001504
1505 cfsetispeed(&tty, spd);
1506 cfsetospeed(&tty, spd);
1507
1508 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
1509 |INLCR|IGNCR|ICRNL|IXON);
1510 tty.c_oflag |= OPOST;
1511 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN|ISIG);
1512 tty.c_cflag &= ~(CSIZE|PARENB|PARODD|CRTSCTS|CSTOPB);
1513 switch(data_bits) {
1514 default:
1515 case 8:
1516 tty.c_cflag |= CS8;
1517 break;
1518 case 7:
1519 tty.c_cflag |= CS7;
1520 break;
1521 case 6:
1522 tty.c_cflag |= CS6;
1523 break;
1524 case 5:
1525 tty.c_cflag |= CS5;
1526 break;
1527 }
1528 switch(parity) {
1529 default:
1530 case 'N':
1531 break;
1532 case 'E':
1533 tty.c_cflag |= PARENB;
1534 break;
1535 case 'O':
1536 tty.c_cflag |= PARENB | PARODD;
1537 break;
1538 }
1539 if (stop_bits == 2)
1540 tty.c_cflag |= CSTOPB;
1541
1542 tcsetattr (fd, TCSANOW, &tty);
1543}
1544
1545static int tty_serial_ioctl(CharDriverState *chr, int cmd, void *arg)
1546{
1547 FDCharDriver *s = chr->opaque;
1548
1549 switch(cmd) {
1550 case CHR_IOCTL_SERIAL_SET_PARAMS:
1551 {
1552 QEMUSerialSetParams *ssp = arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301553 tty_serial_init(g_io_channel_unix_get_fd(s->fd_in),
1554 ssp->speed, ssp->parity,
aliguori6f97dba2008-10-31 18:49:55 +00001555 ssp->data_bits, ssp->stop_bits);
1556 }
1557 break;
1558 case CHR_IOCTL_SERIAL_SET_BREAK:
1559 {
1560 int enable = *(int *)arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301561 if (enable) {
1562 tcsendbreak(g_io_channel_unix_get_fd(s->fd_in), 1);
1563 }
aliguori6f97dba2008-10-31 18:49:55 +00001564 }
1565 break;
1566 case CHR_IOCTL_SERIAL_GET_TIOCM:
1567 {
1568 int sarg = 0;
1569 int *targ = (int *)arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301570 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMGET, &sarg);
aliguori6f97dba2008-10-31 18:49:55 +00001571 *targ = 0;
aurel32b4abdfa2009-02-08 14:46:17 +00001572 if (sarg & TIOCM_CTS)
aliguori6f97dba2008-10-31 18:49:55 +00001573 *targ |= CHR_TIOCM_CTS;
aurel32b4abdfa2009-02-08 14:46:17 +00001574 if (sarg & TIOCM_CAR)
aliguori6f97dba2008-10-31 18:49:55 +00001575 *targ |= CHR_TIOCM_CAR;
aurel32b4abdfa2009-02-08 14:46:17 +00001576 if (sarg & TIOCM_DSR)
aliguori6f97dba2008-10-31 18:49:55 +00001577 *targ |= CHR_TIOCM_DSR;
aurel32b4abdfa2009-02-08 14:46:17 +00001578 if (sarg & TIOCM_RI)
aliguori6f97dba2008-10-31 18:49:55 +00001579 *targ |= CHR_TIOCM_RI;
aurel32b4abdfa2009-02-08 14:46:17 +00001580 if (sarg & TIOCM_DTR)
aliguori6f97dba2008-10-31 18:49:55 +00001581 *targ |= CHR_TIOCM_DTR;
aurel32b4abdfa2009-02-08 14:46:17 +00001582 if (sarg & TIOCM_RTS)
aliguori6f97dba2008-10-31 18:49:55 +00001583 *targ |= CHR_TIOCM_RTS;
1584 }
1585 break;
1586 case CHR_IOCTL_SERIAL_SET_TIOCM:
1587 {
1588 int sarg = *(int *)arg;
1589 int targ = 0;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301590 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMGET, &targ);
aurel32b4abdfa2009-02-08 14:46:17 +00001591 targ &= ~(CHR_TIOCM_CTS | CHR_TIOCM_CAR | CHR_TIOCM_DSR
1592 | CHR_TIOCM_RI | CHR_TIOCM_DTR | CHR_TIOCM_RTS);
1593 if (sarg & CHR_TIOCM_CTS)
1594 targ |= TIOCM_CTS;
1595 if (sarg & CHR_TIOCM_CAR)
1596 targ |= TIOCM_CAR;
1597 if (sarg & CHR_TIOCM_DSR)
1598 targ |= TIOCM_DSR;
1599 if (sarg & CHR_TIOCM_RI)
1600 targ |= TIOCM_RI;
1601 if (sarg & CHR_TIOCM_DTR)
aliguori6f97dba2008-10-31 18:49:55 +00001602 targ |= TIOCM_DTR;
aurel32b4abdfa2009-02-08 14:46:17 +00001603 if (sarg & CHR_TIOCM_RTS)
aliguori6f97dba2008-10-31 18:49:55 +00001604 targ |= TIOCM_RTS;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301605 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMSET, &targ);
aliguori6f97dba2008-10-31 18:49:55 +00001606 }
1607 break;
1608 default:
1609 return -ENOTSUP;
1610 }
1611 return 0;
1612}
1613
David Ahern4266a132010-02-10 18:27:17 -07001614static void qemu_chr_close_tty(CharDriverState *chr)
1615{
1616 FDCharDriver *s = chr->opaque;
1617 int fd = -1;
1618
1619 if (s) {
Anthony Liguoria29753f2013-03-05 23:21:19 +05301620 fd = g_io_channel_unix_get_fd(s->fd_in);
David Ahern4266a132010-02-10 18:27:17 -07001621 }
1622
1623 fd_chr_close(chr);
1624
1625 if (fd >= 0) {
1626 close(fd);
1627 }
1628}
1629
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01001630static CharDriverState *qemu_chr_open_tty_fd(int fd)
1631{
1632 CharDriverState *chr;
1633
1634 tty_serial_init(fd, 115200, 'N', 8, 1);
1635 chr = qemu_chr_open_fd(fd, fd);
1636 chr->chr_ioctl = tty_serial_ioctl;
1637 chr->chr_close = qemu_chr_close_tty;
1638 return chr;
1639}
aliguori6f97dba2008-10-31 18:49:55 +00001640#endif /* __linux__ || __sun__ */
1641
1642#if defined(__linux__)
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001643
1644#define HAVE_CHARDEV_PARPORT 1
1645
aliguori6f97dba2008-10-31 18:49:55 +00001646typedef struct {
1647 int fd;
1648 int mode;
1649} ParallelCharDriver;
1650
1651static int pp_hw_mode(ParallelCharDriver *s, uint16_t mode)
1652{
1653 if (s->mode != mode) {
1654 int m = mode;
1655 if (ioctl(s->fd, PPSETMODE, &m) < 0)
1656 return 0;
1657 s->mode = mode;
1658 }
1659 return 1;
1660}
1661
1662static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1663{
1664 ParallelCharDriver *drv = chr->opaque;
1665 int fd = drv->fd;
1666 uint8_t b;
1667
1668 switch(cmd) {
1669 case CHR_IOCTL_PP_READ_DATA:
1670 if (ioctl(fd, PPRDATA, &b) < 0)
1671 return -ENOTSUP;
1672 *(uint8_t *)arg = b;
1673 break;
1674 case CHR_IOCTL_PP_WRITE_DATA:
1675 b = *(uint8_t *)arg;
1676 if (ioctl(fd, PPWDATA, &b) < 0)
1677 return -ENOTSUP;
1678 break;
1679 case CHR_IOCTL_PP_READ_CONTROL:
1680 if (ioctl(fd, PPRCONTROL, &b) < 0)
1681 return -ENOTSUP;
1682 /* Linux gives only the lowest bits, and no way to know data
1683 direction! For better compatibility set the fixed upper
1684 bits. */
1685 *(uint8_t *)arg = b | 0xc0;
1686 break;
1687 case CHR_IOCTL_PP_WRITE_CONTROL:
1688 b = *(uint8_t *)arg;
1689 if (ioctl(fd, PPWCONTROL, &b) < 0)
1690 return -ENOTSUP;
1691 break;
1692 case CHR_IOCTL_PP_READ_STATUS:
1693 if (ioctl(fd, PPRSTATUS, &b) < 0)
1694 return -ENOTSUP;
1695 *(uint8_t *)arg = b;
1696 break;
1697 case CHR_IOCTL_PP_DATA_DIR:
1698 if (ioctl(fd, PPDATADIR, (int *)arg) < 0)
1699 return -ENOTSUP;
1700 break;
1701 case CHR_IOCTL_PP_EPP_READ_ADDR:
1702 if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1703 struct ParallelIOArg *parg = arg;
1704 int n = read(fd, parg->buffer, parg->count);
1705 if (n != parg->count) {
1706 return -EIO;
1707 }
1708 }
1709 break;
1710 case CHR_IOCTL_PP_EPP_READ:
1711 if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1712 struct ParallelIOArg *parg = arg;
1713 int n = read(fd, parg->buffer, parg->count);
1714 if (n != parg->count) {
1715 return -EIO;
1716 }
1717 }
1718 break;
1719 case CHR_IOCTL_PP_EPP_WRITE_ADDR:
1720 if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1721 struct ParallelIOArg *parg = arg;
1722 int n = write(fd, parg->buffer, parg->count);
1723 if (n != parg->count) {
1724 return -EIO;
1725 }
1726 }
1727 break;
1728 case CHR_IOCTL_PP_EPP_WRITE:
1729 if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1730 struct ParallelIOArg *parg = arg;
1731 int n = write(fd, parg->buffer, parg->count);
1732 if (n != parg->count) {
1733 return -EIO;
1734 }
1735 }
1736 break;
1737 default:
1738 return -ENOTSUP;
1739 }
1740 return 0;
1741}
1742
1743static void pp_close(CharDriverState *chr)
1744{
1745 ParallelCharDriver *drv = chr->opaque;
1746 int fd = drv->fd;
1747
1748 pp_hw_mode(drv, IEEE1284_MODE_COMPAT);
1749 ioctl(fd, PPRELEASE);
1750 close(fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05001751 g_free(drv);
Hans de Goedea425d232011-11-19 10:22:43 +01001752 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001753}
1754
Gerd Hoffmann88a946d2013-01-10 14:20:58 +01001755static CharDriverState *qemu_chr_open_pp_fd(int fd)
aliguori6f97dba2008-10-31 18:49:55 +00001756{
1757 CharDriverState *chr;
1758 ParallelCharDriver *drv;
aliguori6f97dba2008-10-31 18:49:55 +00001759
1760 if (ioctl(fd, PPCLAIM) < 0) {
1761 close(fd);
Markus Armbruster1f514702012-02-07 15:09:08 +01001762 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001763 }
1764
Anthony Liguori7267c092011-08-20 22:09:37 -05001765 drv = g_malloc0(sizeof(ParallelCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00001766 drv->fd = fd;
1767 drv->mode = IEEE1284_MODE_COMPAT;
1768
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001769 chr = qemu_chr_alloc();
aliguori6f97dba2008-10-31 18:49:55 +00001770 chr->chr_write = null_chr_write;
1771 chr->chr_ioctl = pp_ioctl;
1772 chr->chr_close = pp_close;
1773 chr->opaque = drv;
1774
Markus Armbruster1f514702012-02-07 15:09:08 +01001775 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001776}
1777#endif /* __linux__ */
1778
Aurelien Jarnoa167ba52009-11-29 18:00:41 +01001779#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001780
1781#define HAVE_CHARDEV_PARPORT 1
1782
blueswir16972f932008-11-22 20:49:12 +00001783static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1784{
Stefan Weile0efb992011-02-23 19:09:16 +01001785 int fd = (int)(intptr_t)chr->opaque;
blueswir16972f932008-11-22 20:49:12 +00001786 uint8_t b;
1787
1788 switch(cmd) {
1789 case CHR_IOCTL_PP_READ_DATA:
1790 if (ioctl(fd, PPIGDATA, &b) < 0)
1791 return -ENOTSUP;
1792 *(uint8_t *)arg = b;
1793 break;
1794 case CHR_IOCTL_PP_WRITE_DATA:
1795 b = *(uint8_t *)arg;
1796 if (ioctl(fd, PPISDATA, &b) < 0)
1797 return -ENOTSUP;
1798 break;
1799 case CHR_IOCTL_PP_READ_CONTROL:
1800 if (ioctl(fd, PPIGCTRL, &b) < 0)
1801 return -ENOTSUP;
1802 *(uint8_t *)arg = b;
1803 break;
1804 case CHR_IOCTL_PP_WRITE_CONTROL:
1805 b = *(uint8_t *)arg;
1806 if (ioctl(fd, PPISCTRL, &b) < 0)
1807 return -ENOTSUP;
1808 break;
1809 case CHR_IOCTL_PP_READ_STATUS:
1810 if (ioctl(fd, PPIGSTATUS, &b) < 0)
1811 return -ENOTSUP;
1812 *(uint8_t *)arg = b;
1813 break;
1814 default:
1815 return -ENOTSUP;
1816 }
1817 return 0;
1818}
1819
Gerd Hoffmann88a946d2013-01-10 14:20:58 +01001820static CharDriverState *qemu_chr_open_pp_fd(int fd)
blueswir16972f932008-11-22 20:49:12 +00001821{
1822 CharDriverState *chr;
blueswir16972f932008-11-22 20:49:12 +00001823
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001824 chr = qemu_chr_alloc();
Stefan Weile0efb992011-02-23 19:09:16 +01001825 chr->opaque = (void *)(intptr_t)fd;
blueswir16972f932008-11-22 20:49:12 +00001826 chr->chr_write = null_chr_write;
1827 chr->chr_ioctl = pp_ioctl;
Michael Rothbd5c51e2013-06-07 15:19:53 -05001828 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +01001829 return chr;
blueswir16972f932008-11-22 20:49:12 +00001830}
1831#endif
1832
aliguori6f97dba2008-10-31 18:49:55 +00001833#else /* _WIN32 */
1834
1835typedef struct {
1836 int max_size;
1837 HANDLE hcom, hrecv, hsend;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001838 OVERLAPPED orecv;
aliguori6f97dba2008-10-31 18:49:55 +00001839 BOOL fpipe;
1840 DWORD len;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001841
1842 /* Protected by the CharDriverState chr_write_lock. */
1843 OVERLAPPED osend;
aliguori6f97dba2008-10-31 18:49:55 +00001844} WinCharState;
1845
Fabien Chouteaudb418a02011-10-06 16:37:51 +02001846typedef struct {
1847 HANDLE hStdIn;
1848 HANDLE hInputReadyEvent;
1849 HANDLE hInputDoneEvent;
1850 HANDLE hInputThread;
1851 uint8_t win_stdio_buf;
1852} WinStdioCharState;
1853
aliguori6f97dba2008-10-31 18:49:55 +00001854#define NSENDBUF 2048
1855#define NRECVBUF 2048
1856#define MAXCONNECT 1
1857#define NTIMEOUT 5000
1858
1859static int win_chr_poll(void *opaque);
1860static int win_chr_pipe_poll(void *opaque);
1861
1862static void win_chr_close(CharDriverState *chr)
1863{
1864 WinCharState *s = chr->opaque;
1865
1866 if (s->hsend) {
1867 CloseHandle(s->hsend);
1868 s->hsend = NULL;
1869 }
1870 if (s->hrecv) {
1871 CloseHandle(s->hrecv);
1872 s->hrecv = NULL;
1873 }
1874 if (s->hcom) {
1875 CloseHandle(s->hcom);
1876 s->hcom = NULL;
1877 }
1878 if (s->fpipe)
1879 qemu_del_polling_cb(win_chr_pipe_poll, chr);
1880 else
1881 qemu_del_polling_cb(win_chr_poll, chr);
Amit Shah793cbfb2009-08-11 21:27:48 +05301882
Hans de Goedea425d232011-11-19 10:22:43 +01001883 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001884}
1885
1886static int win_chr_init(CharDriverState *chr, const char *filename)
1887{
1888 WinCharState *s = chr->opaque;
1889 COMMCONFIG comcfg;
1890 COMMTIMEOUTS cto = { 0, 0, 0, 0, 0};
1891 COMSTAT comstat;
1892 DWORD size;
1893 DWORD err;
1894
1895 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1896 if (!s->hsend) {
1897 fprintf(stderr, "Failed CreateEvent\n");
1898 goto fail;
1899 }
1900 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1901 if (!s->hrecv) {
1902 fprintf(stderr, "Failed CreateEvent\n");
1903 goto fail;
1904 }
1905
1906 s->hcom = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, NULL,
1907 OPEN_EXISTING, FILE_FLAG_OVERLAPPED, 0);
1908 if (s->hcom == INVALID_HANDLE_VALUE) {
1909 fprintf(stderr, "Failed CreateFile (%lu)\n", GetLastError());
1910 s->hcom = NULL;
1911 goto fail;
1912 }
1913
1914 if (!SetupComm(s->hcom, NRECVBUF, NSENDBUF)) {
1915 fprintf(stderr, "Failed SetupComm\n");
1916 goto fail;
1917 }
1918
1919 ZeroMemory(&comcfg, sizeof(COMMCONFIG));
1920 size = sizeof(COMMCONFIG);
1921 GetDefaultCommConfig(filename, &comcfg, &size);
1922 comcfg.dcb.DCBlength = sizeof(DCB);
1923 CommConfigDialog(filename, NULL, &comcfg);
1924
1925 if (!SetCommState(s->hcom, &comcfg.dcb)) {
1926 fprintf(stderr, "Failed SetCommState\n");
1927 goto fail;
1928 }
1929
1930 if (!SetCommMask(s->hcom, EV_ERR)) {
1931 fprintf(stderr, "Failed SetCommMask\n");
1932 goto fail;
1933 }
1934
1935 cto.ReadIntervalTimeout = MAXDWORD;
1936 if (!SetCommTimeouts(s->hcom, &cto)) {
1937 fprintf(stderr, "Failed SetCommTimeouts\n");
1938 goto fail;
1939 }
1940
1941 if (!ClearCommError(s->hcom, &err, &comstat)) {
1942 fprintf(stderr, "Failed ClearCommError\n");
1943 goto fail;
1944 }
1945 qemu_add_polling_cb(win_chr_poll, chr);
1946 return 0;
1947
1948 fail:
1949 win_chr_close(chr);
1950 return -1;
1951}
1952
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001953/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00001954static int win_chr_write(CharDriverState *chr, const uint8_t *buf, int len1)
1955{
1956 WinCharState *s = chr->opaque;
1957 DWORD len, ret, size, err;
1958
1959 len = len1;
1960 ZeroMemory(&s->osend, sizeof(s->osend));
1961 s->osend.hEvent = s->hsend;
1962 while (len > 0) {
1963 if (s->hsend)
1964 ret = WriteFile(s->hcom, buf, len, &size, &s->osend);
1965 else
1966 ret = WriteFile(s->hcom, buf, len, &size, NULL);
1967 if (!ret) {
1968 err = GetLastError();
1969 if (err == ERROR_IO_PENDING) {
1970 ret = GetOverlappedResult(s->hcom, &s->osend, &size, TRUE);
1971 if (ret) {
1972 buf += size;
1973 len -= size;
1974 } else {
1975 break;
1976 }
1977 } else {
1978 break;
1979 }
1980 } else {
1981 buf += size;
1982 len -= size;
1983 }
1984 }
1985 return len1 - len;
1986}
1987
1988static int win_chr_read_poll(CharDriverState *chr)
1989{
1990 WinCharState *s = chr->opaque;
1991
Anthony Liguori909cda12011-08-15 11:17:31 -05001992 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001993 return s->max_size;
1994}
1995
1996static void win_chr_readfile(CharDriverState *chr)
1997{
1998 WinCharState *s = chr->opaque;
1999 int ret, err;
Amit Shah9bd78542009-11-03 19:59:54 +05302000 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002001 DWORD size;
2002
2003 ZeroMemory(&s->orecv, sizeof(s->orecv));
2004 s->orecv.hEvent = s->hrecv;
2005 ret = ReadFile(s->hcom, buf, s->len, &size, &s->orecv);
2006 if (!ret) {
2007 err = GetLastError();
2008 if (err == ERROR_IO_PENDING) {
2009 ret = GetOverlappedResult(s->hcom, &s->orecv, &size, TRUE);
2010 }
2011 }
2012
2013 if (size > 0) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002014 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00002015 }
2016}
2017
2018static void win_chr_read(CharDriverState *chr)
2019{
2020 WinCharState *s = chr->opaque;
2021
2022 if (s->len > s->max_size)
2023 s->len = s->max_size;
2024 if (s->len == 0)
2025 return;
2026
2027 win_chr_readfile(chr);
2028}
2029
2030static int win_chr_poll(void *opaque)
2031{
2032 CharDriverState *chr = opaque;
2033 WinCharState *s = chr->opaque;
2034 COMSTAT status;
2035 DWORD comerr;
2036
2037 ClearCommError(s->hcom, &comerr, &status);
2038 if (status.cbInQue > 0) {
2039 s->len = status.cbInQue;
2040 win_chr_read_poll(chr);
2041 win_chr_read(chr);
2042 return 1;
2043 }
2044 return 0;
2045}
2046
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01002047static CharDriverState *qemu_chr_open_win_path(const char *filename)
aliguori6f97dba2008-10-31 18:49:55 +00002048{
2049 CharDriverState *chr;
2050 WinCharState *s;
2051
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002052 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05002053 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00002054 chr->opaque = s;
2055 chr->chr_write = win_chr_write;
2056 chr->chr_close = win_chr_close;
2057
2058 if (win_chr_init(chr, filename) < 0) {
Stefan Weil2e02e182011-10-07 07:38:46 +02002059 g_free(s);
2060 g_free(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01002061 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002062 }
Markus Armbruster1f514702012-02-07 15:09:08 +01002063 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00002064}
2065
2066static int win_chr_pipe_poll(void *opaque)
2067{
2068 CharDriverState *chr = opaque;
2069 WinCharState *s = chr->opaque;
2070 DWORD size;
2071
2072 PeekNamedPipe(s->hcom, NULL, 0, NULL, &size, NULL);
2073 if (size > 0) {
2074 s->len = size;
2075 win_chr_read_poll(chr);
2076 win_chr_read(chr);
2077 return 1;
2078 }
2079 return 0;
2080}
2081
2082static int win_chr_pipe_init(CharDriverState *chr, const char *filename)
2083{
2084 WinCharState *s = chr->opaque;
2085 OVERLAPPED ov;
2086 int ret;
2087 DWORD size;
Corey Minyard9f781162014-10-02 11:17:33 -05002088 char openname[CHR_MAX_FILENAME_SIZE];
aliguori6f97dba2008-10-31 18:49:55 +00002089
2090 s->fpipe = TRUE;
2091
2092 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
2093 if (!s->hsend) {
2094 fprintf(stderr, "Failed CreateEvent\n");
2095 goto fail;
2096 }
2097 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
2098 if (!s->hrecv) {
2099 fprintf(stderr, "Failed CreateEvent\n");
2100 goto fail;
2101 }
2102
2103 snprintf(openname, sizeof(openname), "\\\\.\\pipe\\%s", filename);
2104 s->hcom = CreateNamedPipe(openname, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
2105 PIPE_TYPE_BYTE | PIPE_READMODE_BYTE |
2106 PIPE_WAIT,
2107 MAXCONNECT, NSENDBUF, NRECVBUF, NTIMEOUT, NULL);
2108 if (s->hcom == INVALID_HANDLE_VALUE) {
2109 fprintf(stderr, "Failed CreateNamedPipe (%lu)\n", GetLastError());
2110 s->hcom = NULL;
2111 goto fail;
2112 }
2113
2114 ZeroMemory(&ov, sizeof(ov));
2115 ov.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
2116 ret = ConnectNamedPipe(s->hcom, &ov);
2117 if (ret) {
2118 fprintf(stderr, "Failed ConnectNamedPipe\n");
2119 goto fail;
2120 }
2121
2122 ret = GetOverlappedResult(s->hcom, &ov, &size, TRUE);
2123 if (!ret) {
2124 fprintf(stderr, "Failed GetOverlappedResult\n");
2125 if (ov.hEvent) {
2126 CloseHandle(ov.hEvent);
2127 ov.hEvent = NULL;
2128 }
2129 goto fail;
2130 }
2131
2132 if (ov.hEvent) {
2133 CloseHandle(ov.hEvent);
2134 ov.hEvent = NULL;
2135 }
2136 qemu_add_polling_cb(win_chr_pipe_poll, chr);
2137 return 0;
2138
2139 fail:
2140 win_chr_close(chr);
2141 return -1;
2142}
2143
2144
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01002145static CharDriverState *qemu_chr_open_pipe(ChardevHostdev *opts)
aliguori6f97dba2008-10-31 18:49:55 +00002146{
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01002147 const char *filename = opts->device;
aliguori6f97dba2008-10-31 18:49:55 +00002148 CharDriverState *chr;
2149 WinCharState *s;
2150
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002151 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05002152 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00002153 chr->opaque = s;
2154 chr->chr_write = win_chr_write;
2155 chr->chr_close = win_chr_close;
2156
2157 if (win_chr_pipe_init(chr, filename) < 0) {
Stefan Weil2e02e182011-10-07 07:38:46 +02002158 g_free(s);
2159 g_free(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01002160 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002161 }
Markus Armbruster1f514702012-02-07 15:09:08 +01002162 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00002163}
2164
Markus Armbruster1f514702012-02-07 15:09:08 +01002165static CharDriverState *qemu_chr_open_win_file(HANDLE fd_out)
aliguori6f97dba2008-10-31 18:49:55 +00002166{
2167 CharDriverState *chr;
2168 WinCharState *s;
2169
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002170 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05002171 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00002172 s->hcom = fd_out;
2173 chr->opaque = s;
2174 chr->chr_write = win_chr_write;
Markus Armbruster1f514702012-02-07 15:09:08 +01002175 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00002176}
2177
Gerd Hoffmannd9ac3742013-02-25 11:48:06 +01002178static CharDriverState *qemu_chr_open_win_con(void)
aliguori6f97dba2008-10-31 18:49:55 +00002179{
Markus Armbruster1f514702012-02-07 15:09:08 +01002180 return qemu_chr_open_win_file(GetStdHandle(STD_OUTPUT_HANDLE));
aliguori6f97dba2008-10-31 18:49:55 +00002181}
2182
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002183static int win_stdio_write(CharDriverState *chr, const uint8_t *buf, int len)
2184{
2185 HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
2186 DWORD dwSize;
2187 int len1;
2188
2189 len1 = len;
2190
2191 while (len1 > 0) {
2192 if (!WriteFile(hStdOut, buf, len1, &dwSize, NULL)) {
2193 break;
2194 }
2195 buf += dwSize;
2196 len1 -= dwSize;
2197 }
2198
2199 return len - len1;
2200}
2201
2202static void win_stdio_wait_func(void *opaque)
2203{
2204 CharDriverState *chr = opaque;
2205 WinStdioCharState *stdio = chr->opaque;
2206 INPUT_RECORD buf[4];
2207 int ret;
2208 DWORD dwSize;
2209 int i;
2210
Stefan Weildff74242013-12-07 14:48:04 +01002211 ret = ReadConsoleInput(stdio->hStdIn, buf, ARRAY_SIZE(buf), &dwSize);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002212
2213 if (!ret) {
2214 /* Avoid error storm */
2215 qemu_del_wait_object(stdio->hStdIn, NULL, NULL);
2216 return;
2217 }
2218
2219 for (i = 0; i < dwSize; i++) {
2220 KEY_EVENT_RECORD *kev = &buf[i].Event.KeyEvent;
2221
2222 if (buf[i].EventType == KEY_EVENT && kev->bKeyDown) {
2223 int j;
2224 if (kev->uChar.AsciiChar != 0) {
2225 for (j = 0; j < kev->wRepeatCount; j++) {
2226 if (qemu_chr_be_can_write(chr)) {
2227 uint8_t c = kev->uChar.AsciiChar;
2228 qemu_chr_be_write(chr, &c, 1);
2229 }
2230 }
2231 }
2232 }
2233 }
2234}
2235
2236static DWORD WINAPI win_stdio_thread(LPVOID param)
2237{
2238 CharDriverState *chr = param;
2239 WinStdioCharState *stdio = chr->opaque;
2240 int ret;
2241 DWORD dwSize;
2242
2243 while (1) {
2244
2245 /* Wait for one byte */
2246 ret = ReadFile(stdio->hStdIn, &stdio->win_stdio_buf, 1, &dwSize, NULL);
2247
2248 /* Exit in case of error, continue if nothing read */
2249 if (!ret) {
2250 break;
2251 }
2252 if (!dwSize) {
2253 continue;
2254 }
2255
2256 /* Some terminal emulator returns \r\n for Enter, just pass \n */
2257 if (stdio->win_stdio_buf == '\r') {
2258 continue;
2259 }
2260
2261 /* Signal the main thread and wait until the byte was eaten */
2262 if (!SetEvent(stdio->hInputReadyEvent)) {
2263 break;
2264 }
2265 if (WaitForSingleObject(stdio->hInputDoneEvent, INFINITE)
2266 != WAIT_OBJECT_0) {
2267 break;
2268 }
2269 }
2270
2271 qemu_del_wait_object(stdio->hInputReadyEvent, NULL, NULL);
2272 return 0;
2273}
2274
2275static void win_stdio_thread_wait_func(void *opaque)
2276{
2277 CharDriverState *chr = opaque;
2278 WinStdioCharState *stdio = chr->opaque;
2279
2280 if (qemu_chr_be_can_write(chr)) {
2281 qemu_chr_be_write(chr, &stdio->win_stdio_buf, 1);
2282 }
2283
2284 SetEvent(stdio->hInputDoneEvent);
2285}
2286
2287static void qemu_chr_set_echo_win_stdio(CharDriverState *chr, bool echo)
2288{
2289 WinStdioCharState *stdio = chr->opaque;
2290 DWORD dwMode = 0;
2291
2292 GetConsoleMode(stdio->hStdIn, &dwMode);
2293
2294 if (echo) {
2295 SetConsoleMode(stdio->hStdIn, dwMode | ENABLE_ECHO_INPUT);
2296 } else {
2297 SetConsoleMode(stdio->hStdIn, dwMode & ~ENABLE_ECHO_INPUT);
2298 }
2299}
2300
2301static void win_stdio_close(CharDriverState *chr)
2302{
2303 WinStdioCharState *stdio = chr->opaque;
2304
2305 if (stdio->hInputReadyEvent != INVALID_HANDLE_VALUE) {
2306 CloseHandle(stdio->hInputReadyEvent);
2307 }
2308 if (stdio->hInputDoneEvent != INVALID_HANDLE_VALUE) {
2309 CloseHandle(stdio->hInputDoneEvent);
2310 }
2311 if (stdio->hInputThread != INVALID_HANDLE_VALUE) {
2312 TerminateThread(stdio->hInputThread, 0);
2313 }
2314
2315 g_free(chr->opaque);
2316 g_free(chr);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002317}
2318
Gerd Hoffmann7c358032013-02-21 12:34:58 +01002319static CharDriverState *qemu_chr_open_stdio(ChardevStdio *opts)
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002320{
2321 CharDriverState *chr;
2322 WinStdioCharState *stdio;
2323 DWORD dwMode;
2324 int is_console = 0;
2325
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002326 chr = qemu_chr_alloc();
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002327 stdio = g_malloc0(sizeof(WinStdioCharState));
2328
2329 stdio->hStdIn = GetStdHandle(STD_INPUT_HANDLE);
2330 if (stdio->hStdIn == INVALID_HANDLE_VALUE) {
2331 fprintf(stderr, "cannot open stdio: invalid handle\n");
2332 exit(1);
2333 }
2334
2335 is_console = GetConsoleMode(stdio->hStdIn, &dwMode) != 0;
2336
2337 chr->opaque = stdio;
2338 chr->chr_write = win_stdio_write;
2339 chr->chr_close = win_stdio_close;
2340
Anthony Liguoried7a1542013-03-05 23:21:17 +05302341 if (is_console) {
2342 if (qemu_add_wait_object(stdio->hStdIn,
2343 win_stdio_wait_func, chr)) {
2344 fprintf(stderr, "qemu_add_wait_object: failed\n");
2345 }
2346 } else {
2347 DWORD dwId;
2348
2349 stdio->hInputReadyEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2350 stdio->hInputDoneEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2351 stdio->hInputThread = CreateThread(NULL, 0, win_stdio_thread,
2352 chr, 0, &dwId);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002353
Anthony Liguoried7a1542013-03-05 23:21:17 +05302354 if (stdio->hInputThread == INVALID_HANDLE_VALUE
2355 || stdio->hInputReadyEvent == INVALID_HANDLE_VALUE
2356 || stdio->hInputDoneEvent == INVALID_HANDLE_VALUE) {
2357 fprintf(stderr, "cannot create stdio thread or event\n");
2358 exit(1);
2359 }
2360 if (qemu_add_wait_object(stdio->hInputReadyEvent,
2361 win_stdio_thread_wait_func, chr)) {
2362 fprintf(stderr, "qemu_add_wait_object: failed\n");
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002363 }
2364 }
2365
2366 dwMode |= ENABLE_LINE_INPUT;
2367
Anthony Liguoried7a1542013-03-05 23:21:17 +05302368 if (is_console) {
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002369 /* set the terminal in raw mode */
2370 /* ENABLE_QUICK_EDIT_MODE | ENABLE_EXTENDED_FLAGS */
2371 dwMode |= ENABLE_PROCESSED_INPUT;
2372 }
2373
2374 SetConsoleMode(stdio->hStdIn, dwMode);
2375
2376 chr->chr_set_echo = qemu_chr_set_echo_win_stdio;
2377 qemu_chr_fe_set_echo(chr, false);
2378
Markus Armbruster1f514702012-02-07 15:09:08 +01002379 return chr;
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002380}
aliguori6f97dba2008-10-31 18:49:55 +00002381#endif /* !_WIN32 */
2382
Anthony Liguori5ab82112013-03-05 23:21:31 +05302383
aliguori6f97dba2008-10-31 18:49:55 +00002384/***********************************************************/
2385/* UDP Net console */
2386
2387typedef struct {
2388 int fd;
Anthony Liguori76a96442013-03-05 23:21:21 +05302389 GIOChannel *chan;
Amit Shah9bd78542009-11-03 19:59:54 +05302390 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002391 int bufcnt;
2392 int bufptr;
2393 int max_size;
2394} NetCharDriver;
2395
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02002396/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00002397static int udp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2398{
2399 NetCharDriver *s = chr->opaque;
Anthony Liguori76a96442013-03-05 23:21:21 +05302400 gsize bytes_written;
2401 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00002402
Anthony Liguori76a96442013-03-05 23:21:21 +05302403 status = g_io_channel_write_chars(s->chan, (const gchar *)buf, len, &bytes_written, NULL);
2404 if (status == G_IO_STATUS_EOF) {
2405 return 0;
2406 } else if (status != G_IO_STATUS_NORMAL) {
2407 return -1;
2408 }
2409
2410 return bytes_written;
aliguori6f97dba2008-10-31 18:49:55 +00002411}
2412
2413static int udp_chr_read_poll(void *opaque)
2414{
2415 CharDriverState *chr = opaque;
2416 NetCharDriver *s = chr->opaque;
2417
Anthony Liguori909cda12011-08-15 11:17:31 -05002418 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002419
2420 /* If there were any stray characters in the queue process them
2421 * first
2422 */
2423 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002424 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
aliguori6f97dba2008-10-31 18:49:55 +00002425 s->bufptr++;
Anthony Liguori909cda12011-08-15 11:17:31 -05002426 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002427 }
2428 return s->max_size;
2429}
2430
Anthony Liguori76a96442013-03-05 23:21:21 +05302431static gboolean udp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002432{
2433 CharDriverState *chr = opaque;
2434 NetCharDriver *s = chr->opaque;
Anthony Liguori76a96442013-03-05 23:21:21 +05302435 gsize bytes_read = 0;
2436 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00002437
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02002438 if (s->max_size == 0) {
2439 return TRUE;
2440 }
Anthony Liguori76a96442013-03-05 23:21:21 +05302441 status = g_io_channel_read_chars(s->chan, (gchar *)s->buf, sizeof(s->buf),
2442 &bytes_read, NULL);
2443 s->bufcnt = bytes_read;
aliguori6f97dba2008-10-31 18:49:55 +00002444 s->bufptr = s->bufcnt;
Anthony Liguori76a96442013-03-05 23:21:21 +05302445 if (status != G_IO_STATUS_NORMAL) {
Amit Shah26da70c2013-08-28 15:23:37 +05302446 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302447 return FALSE;
2448 }
aliguori6f97dba2008-10-31 18:49:55 +00002449
2450 s->bufptr = 0;
2451 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002452 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
aliguori6f97dba2008-10-31 18:49:55 +00002453 s->bufptr++;
Anthony Liguori909cda12011-08-15 11:17:31 -05002454 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002455 }
Anthony Liguori76a96442013-03-05 23:21:21 +05302456
2457 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002458}
2459
2460static void udp_chr_update_read_handler(CharDriverState *chr)
2461{
2462 NetCharDriver *s = chr->opaque;
2463
Amit Shah26da70c2013-08-28 15:23:37 +05302464 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302465 if (s->chan) {
Amit Shah7ba9add2013-08-28 15:18:29 +05302466 chr->fd_in_tag = io_add_watch_poll(s->chan, udp_chr_read_poll,
2467 udp_chr_read, chr);
aliguori6f97dba2008-10-31 18:49:55 +00002468 }
2469}
2470
aliguori819f56b2009-03-28 17:58:14 +00002471static void udp_chr_close(CharDriverState *chr)
2472{
2473 NetCharDriver *s = chr->opaque;
Amit Shah26da70c2013-08-28 15:23:37 +05302474
2475 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302476 if (s->chan) {
2477 g_io_channel_unref(s->chan);
aliguori819f56b2009-03-28 17:58:14 +00002478 closesocket(s->fd);
2479 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002480 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01002481 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori819f56b2009-03-28 17:58:14 +00002482}
2483
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002484static CharDriverState *qemu_chr_open_udp_fd(int fd)
aliguori6f97dba2008-10-31 18:49:55 +00002485{
2486 CharDriverState *chr = NULL;
2487 NetCharDriver *s = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002488
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002489 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05002490 s = g_malloc0(sizeof(NetCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00002491
aliguori6f97dba2008-10-31 18:49:55 +00002492 s->fd = fd;
Anthony Liguori76a96442013-03-05 23:21:21 +05302493 s->chan = io_channel_from_socket(s->fd);
aliguori6f97dba2008-10-31 18:49:55 +00002494 s->bufcnt = 0;
2495 s->bufptr = 0;
2496 chr->opaque = s;
2497 chr->chr_write = udp_chr_write;
2498 chr->chr_update_read_handler = udp_chr_update_read_handler;
aliguori819f56b2009-03-28 17:58:14 +00002499 chr->chr_close = udp_chr_close;
Michael Rothbd5c51e2013-06-07 15:19:53 -05002500 /* be isn't opened until we get a connection */
2501 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +01002502 return chr;
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002503}
aliguori6f97dba2008-10-31 18:49:55 +00002504
aliguori6f97dba2008-10-31 18:49:55 +00002505/***********************************************************/
2506/* TCP Net console */
2507
2508typedef struct {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302509
2510 GIOChannel *chan, *listen_chan;
Amit Shah7ba9add2013-08-28 15:18:29 +05302511 guint listen_tag;
aliguori6f97dba2008-10-31 18:49:55 +00002512 int fd, listen_fd;
2513 int connected;
2514 int max_size;
2515 int do_telnetopt;
2516 int do_nodelay;
2517 int is_unix;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002518 int *read_msgfds;
2519 int read_msgfds_num;
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002520 int *write_msgfds;
2521 int write_msgfds_num;
Corey Minyardcfb429c2014-10-02 11:17:35 -05002522
2523 SocketAddress *addr;
2524 bool is_listen;
2525 bool is_telnet;
Corey Minyard5dd1f022014-10-02 11:17:37 -05002526
2527 guint reconnect_timer;
2528 int64_t reconnect_time;
Corey Minyard5008e5b2014-10-08 07:11:55 -05002529 bool connect_err_reported;
aliguori6f97dba2008-10-31 18:49:55 +00002530} TCPCharDriver;
2531
Corey Minyard5dd1f022014-10-02 11:17:37 -05002532static gboolean socket_reconnect_timeout(gpointer opaque);
2533
2534static void qemu_chr_socket_restart_timer(CharDriverState *chr)
2535{
2536 TCPCharDriver *s = chr->opaque;
2537 assert(s->connected == 0);
2538 s->reconnect_timer = g_timeout_add_seconds(s->reconnect_time,
2539 socket_reconnect_timeout, chr);
2540}
2541
Corey Minyard5008e5b2014-10-08 07:11:55 -05002542static void check_report_connect_error(CharDriverState *chr,
2543 Error *err)
2544{
2545 TCPCharDriver *s = chr->opaque;
2546
2547 if (!s->connect_err_reported) {
2548 error_report("Unable to connect character device %s: %s",
2549 chr->label, error_get_pretty(err));
2550 s->connect_err_reported = true;
2551 }
2552 qemu_chr_socket_restart_timer(chr);
2553}
2554
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302555static gboolean tcp_chr_accept(GIOChannel *chan, GIOCondition cond, void *opaque);
aliguori6f97dba2008-10-31 18:49:55 +00002556
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002557#ifndef _WIN32
2558static int unix_send_msgfds(CharDriverState *chr, const uint8_t *buf, int len)
2559{
2560 TCPCharDriver *s = chr->opaque;
2561 struct msghdr msgh;
2562 struct iovec iov;
2563 int r;
2564
2565 size_t fd_size = s->write_msgfds_num * sizeof(int);
2566 char control[CMSG_SPACE(fd_size)];
2567 struct cmsghdr *cmsg;
2568
2569 memset(&msgh, 0, sizeof(msgh));
2570 memset(control, 0, sizeof(control));
2571
2572 /* set the payload */
2573 iov.iov_base = (uint8_t *) buf;
2574 iov.iov_len = len;
2575
2576 msgh.msg_iov = &iov;
2577 msgh.msg_iovlen = 1;
2578
2579 msgh.msg_control = control;
2580 msgh.msg_controllen = sizeof(control);
2581
2582 cmsg = CMSG_FIRSTHDR(&msgh);
2583
2584 cmsg->cmsg_len = CMSG_LEN(fd_size);
2585 cmsg->cmsg_level = SOL_SOCKET;
2586 cmsg->cmsg_type = SCM_RIGHTS;
2587 memcpy(CMSG_DATA(cmsg), s->write_msgfds, fd_size);
2588
2589 do {
2590 r = sendmsg(s->fd, &msgh, 0);
2591 } while (r < 0 && errno == EINTR);
2592
2593 /* free the written msgfds, no matter what */
2594 if (s->write_msgfds_num) {
2595 g_free(s->write_msgfds);
2596 s->write_msgfds = 0;
2597 s->write_msgfds_num = 0;
2598 }
2599
2600 return r;
2601}
2602#endif
2603
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02002604/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00002605static int tcp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2606{
2607 TCPCharDriver *s = chr->opaque;
2608 if (s->connected) {
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002609#ifndef _WIN32
2610 if (s->is_unix && s->write_msgfds_num) {
2611 return unix_send_msgfds(chr, buf, len);
2612 } else
2613#endif
2614 {
2615 return io_channel_send(s->chan, buf, len);
2616 }
Anthony Liguori455aa1e2012-09-05 13:52:49 -05002617 } else {
Anthony Liguori6db0fdc2012-09-12 14:34:07 -05002618 /* XXX: indicate an error ? */
Anthony Liguori455aa1e2012-09-05 13:52:49 -05002619 return len;
aliguori6f97dba2008-10-31 18:49:55 +00002620 }
2621}
2622
2623static int tcp_chr_read_poll(void *opaque)
2624{
2625 CharDriverState *chr = opaque;
2626 TCPCharDriver *s = chr->opaque;
2627 if (!s->connected)
2628 return 0;
Anthony Liguori909cda12011-08-15 11:17:31 -05002629 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002630 return s->max_size;
2631}
2632
2633#define IAC 255
2634#define IAC_BREAK 243
2635static void tcp_chr_process_IAC_bytes(CharDriverState *chr,
2636 TCPCharDriver *s,
2637 uint8_t *buf, int *size)
2638{
2639 /* Handle any telnet client's basic IAC options to satisfy char by
2640 * char mode with no echo. All IAC options will be removed from
2641 * the buf and the do_telnetopt variable will be used to track the
2642 * state of the width of the IAC information.
2643 *
2644 * IAC commands come in sets of 3 bytes with the exception of the
2645 * "IAC BREAK" command and the double IAC.
2646 */
2647
2648 int i;
2649 int j = 0;
2650
2651 for (i = 0; i < *size; i++) {
2652 if (s->do_telnetopt > 1) {
2653 if ((unsigned char)buf[i] == IAC && s->do_telnetopt == 2) {
2654 /* Double IAC means send an IAC */
2655 if (j != i)
2656 buf[j] = buf[i];
2657 j++;
2658 s->do_telnetopt = 1;
2659 } else {
2660 if ((unsigned char)buf[i] == IAC_BREAK && s->do_telnetopt == 2) {
2661 /* Handle IAC break commands by sending a serial break */
Hans de Goedea425d232011-11-19 10:22:43 +01002662 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
aliguori6f97dba2008-10-31 18:49:55 +00002663 s->do_telnetopt++;
2664 }
2665 s->do_telnetopt++;
2666 }
2667 if (s->do_telnetopt >= 4) {
2668 s->do_telnetopt = 1;
2669 }
2670 } else {
2671 if ((unsigned char)buf[i] == IAC) {
2672 s->do_telnetopt = 2;
2673 } else {
2674 if (j != i)
2675 buf[j] = buf[i];
2676 j++;
2677 }
2678 }
2679 }
2680 *size = j;
2681}
2682
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002683static int tcp_get_msgfds(CharDriverState *chr, int *fds, int num)
Mark McLoughlin7d174052009-07-22 09:11:39 +01002684{
2685 TCPCharDriver *s = chr->opaque;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002686 int to_copy = (s->read_msgfds_num < num) ? s->read_msgfds_num : num;
2687
Michael S. Tsirkinc4095722014-11-02 18:48:32 +02002688 assert(num <= TCP_MAX_FDS);
2689
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002690 if (to_copy) {
Stefan Hajnoczid2fc39b2014-06-22 10:38:37 +08002691 int i;
2692
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002693 memcpy(fds, s->read_msgfds, to_copy * sizeof(int));
2694
Stefan Hajnoczid2fc39b2014-06-22 10:38:37 +08002695 /* Close unused fds */
2696 for (i = to_copy; i < s->read_msgfds_num; i++) {
2697 close(s->read_msgfds[i]);
2698 }
2699
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002700 g_free(s->read_msgfds);
2701 s->read_msgfds = 0;
2702 s->read_msgfds_num = 0;
2703 }
2704
2705 return to_copy;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002706}
2707
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002708static int tcp_set_msgfds(CharDriverState *chr, int *fds, int num)
2709{
2710 TCPCharDriver *s = chr->opaque;
2711
2712 /* clear old pending fd array */
2713 if (s->write_msgfds) {
2714 g_free(s->write_msgfds);
2715 }
2716
2717 if (num) {
2718 s->write_msgfds = g_malloc(num * sizeof(int));
2719 memcpy(s->write_msgfds, fds, num * sizeof(int));
2720 }
2721
2722 s->write_msgfds_num = num;
2723
2724 return 0;
2725}
2726
Anthony Liguori73bcc2a2009-07-27 14:55:25 -05002727#ifndef _WIN32
Mark McLoughlin7d174052009-07-22 09:11:39 +01002728static void unix_process_msgfd(CharDriverState *chr, struct msghdr *msg)
2729{
2730 TCPCharDriver *s = chr->opaque;
2731 struct cmsghdr *cmsg;
2732
2733 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002734 int fd_size, i;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002735
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002736 if (cmsg->cmsg_len < CMSG_LEN(sizeof(int)) ||
Mark McLoughlin7d174052009-07-22 09:11:39 +01002737 cmsg->cmsg_level != SOL_SOCKET ||
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002738 cmsg->cmsg_type != SCM_RIGHTS) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002739 continue;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002740 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002741
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002742 fd_size = cmsg->cmsg_len - CMSG_LEN(0);
2743
2744 if (!fd_size) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002745 continue;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002746 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002747
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002748 /* close and clean read_msgfds */
2749 for (i = 0; i < s->read_msgfds_num; i++) {
2750 close(s->read_msgfds[i]);
2751 }
Stefan Hajnoczi9b938c72013-03-27 10:10:46 +01002752
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002753 if (s->read_msgfds_num) {
2754 g_free(s->read_msgfds);
2755 }
2756
2757 s->read_msgfds_num = fd_size / sizeof(int);
2758 s->read_msgfds = g_malloc(fd_size);
2759 memcpy(s->read_msgfds, CMSG_DATA(cmsg), fd_size);
2760
2761 for (i = 0; i < s->read_msgfds_num; i++) {
2762 int fd = s->read_msgfds[i];
2763 if (fd < 0) {
2764 continue;
2765 }
2766
2767 /* O_NONBLOCK is preserved across SCM_RIGHTS so reset it */
2768 qemu_set_block(fd);
2769
2770 #ifndef MSG_CMSG_CLOEXEC
2771 qemu_set_cloexec(fd);
2772 #endif
2773 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002774 }
2775}
2776
Mark McLoughlin9977c892009-07-22 09:11:38 +01002777static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2778{
2779 TCPCharDriver *s = chr->opaque;
Blue Swirl7cba04f2009-08-01 10:13:20 +00002780 struct msghdr msg = { NULL, };
Mark McLoughlin9977c892009-07-22 09:11:38 +01002781 struct iovec iov[1];
Mark McLoughlin7d174052009-07-22 09:11:39 +01002782 union {
2783 struct cmsghdr cmsg;
Michael S. Tsirkinc4095722014-11-02 18:48:32 +02002784 char control[CMSG_SPACE(sizeof(int) * TCP_MAX_FDS)];
Mark McLoughlin7d174052009-07-22 09:11:39 +01002785 } msg_control;
Corey Bryant06138652012-08-14 16:43:42 -04002786 int flags = 0;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002787 ssize_t ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002788
2789 iov[0].iov_base = buf;
2790 iov[0].iov_len = len;
2791
2792 msg.msg_iov = iov;
2793 msg.msg_iovlen = 1;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002794 msg.msg_control = &msg_control;
2795 msg.msg_controllen = sizeof(msg_control);
Mark McLoughlin9977c892009-07-22 09:11:38 +01002796
Corey Bryant06138652012-08-14 16:43:42 -04002797#ifdef MSG_CMSG_CLOEXEC
2798 flags |= MSG_CMSG_CLOEXEC;
2799#endif
Paolo Bonzini9172f422015-07-21 09:25:54 +02002800 do {
2801 ret = recvmsg(s->fd, &msg, flags);
2802 } while (ret == -1 && errno == EINTR);
2803
Corey Bryant06138652012-08-14 16:43:42 -04002804 if (ret > 0 && s->is_unix) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002805 unix_process_msgfd(chr, &msg);
Corey Bryant06138652012-08-14 16:43:42 -04002806 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002807
2808 return ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002809}
2810#else
2811static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2812{
2813 TCPCharDriver *s = chr->opaque;
Paolo Bonzini9172f422015-07-21 09:25:54 +02002814 ssize_t ret;
2815
2816 do {
2817 ret = qemu_recv(s->fd, buf, len, 0);
2818 } while (ret == -1 && socket_error() == EINTR);
2819
2820 return ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002821}
2822#endif
2823
Amit Shahd3cc5bc2013-03-05 23:21:25 +05302824static GSource *tcp_chr_add_watch(CharDriverState *chr, GIOCondition cond)
2825{
2826 TCPCharDriver *s = chr->opaque;
2827 return g_io_create_watch(s->chan, cond);
2828}
2829
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002830static void tcp_chr_disconnect(CharDriverState *chr)
2831{
2832 TCPCharDriver *s = chr->opaque;
2833
2834 s->connected = 0;
2835 if (s->listen_chan) {
2836 s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN,
2837 tcp_chr_accept, chr);
2838 }
2839 remove_fd_in_watch(chr);
2840 g_io_channel_unref(s->chan);
2841 s->chan = NULL;
2842 closesocket(s->fd);
2843 s->fd = -1;
Corey Minyard16cc4ff2014-10-02 11:17:36 -05002844 SocketAddress_to_str(chr->filename, CHR_MAX_FILENAME_SIZE,
2845 "disconnected:", s->addr, s->is_listen, s->is_telnet);
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002846 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
Corey Minyard5dd1f022014-10-02 11:17:37 -05002847 if (s->reconnect_time) {
2848 qemu_chr_socket_restart_timer(chr);
2849 }
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002850}
2851
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302852static gboolean tcp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002853{
2854 CharDriverState *chr = opaque;
2855 TCPCharDriver *s = chr->opaque;
Amit Shah9bd78542009-11-03 19:59:54 +05302856 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002857 int len, size;
2858
Kirill Batuzov812c1052014-07-01 15:52:32 +04002859 if (cond & G_IO_HUP) {
2860 /* connection closed */
2861 tcp_chr_disconnect(chr);
2862 return TRUE;
2863 }
2864
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302865 if (!s->connected || s->max_size <= 0) {
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02002866 return TRUE;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302867 }
aliguori6f97dba2008-10-31 18:49:55 +00002868 len = sizeof(buf);
2869 if (len > s->max_size)
2870 len = s->max_size;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002871 size = tcp_chr_recv(chr, (void *)buf, len);
aliguori6f97dba2008-10-31 18:49:55 +00002872 if (size == 0) {
2873 /* connection closed */
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002874 tcp_chr_disconnect(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002875 } else if (size > 0) {
2876 if (s->do_telnetopt)
2877 tcp_chr_process_IAC_bytes(chr, s, buf, &size);
2878 if (size > 0)
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002879 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00002880 }
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302881
2882 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002883}
2884
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002885static int tcp_chr_sync_read(CharDriverState *chr, const uint8_t *buf, int len)
2886{
2887 TCPCharDriver *s = chr->opaque;
2888 int size;
2889
2890 if (!s->connected) {
2891 return 0;
2892 }
2893
2894 size = tcp_chr_recv(chr, (void *) buf, len);
2895 if (size == 0) {
2896 /* connection closed */
2897 tcp_chr_disconnect(chr);
2898 }
2899
2900 return size;
2901}
2902
Blue Swirl68c18d12010-08-15 09:46:24 +00002903#ifndef _WIN32
2904CharDriverState *qemu_chr_open_eventfd(int eventfd)
2905{
David Marchande9d21c42014-06-11 17:25:16 +02002906 CharDriverState *chr = qemu_chr_open_fd(eventfd, eventfd);
2907
2908 if (chr) {
2909 chr->avail_connections = 1;
2910 }
2911
2912 return chr;
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002913}
Blue Swirl68c18d12010-08-15 09:46:24 +00002914#endif
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002915
aliguori6f97dba2008-10-31 18:49:55 +00002916static void tcp_chr_connect(void *opaque)
2917{
2918 CharDriverState *chr = opaque;
2919 TCPCharDriver *s = chr->opaque;
Corey Minyard01ca5192014-10-02 11:17:38 -05002920 struct sockaddr_storage ss, ps;
2921 socklen_t ss_len = sizeof(ss), ps_len = sizeof(ps);
Corey Minyard16cc4ff2014-10-02 11:17:36 -05002922
2923 memset(&ss, 0, ss_len);
2924 if (getsockname(s->fd, (struct sockaddr *) &ss, &ss_len) != 0) {
2925 snprintf(chr->filename, CHR_MAX_FILENAME_SIZE,
2926 "Error in getsockname: %s\n", strerror(errno));
Corey Minyard01ca5192014-10-02 11:17:38 -05002927 } else if (getpeername(s->fd, (struct sockaddr *) &ps, &ps_len) != 0) {
2928 snprintf(chr->filename, CHR_MAX_FILENAME_SIZE,
2929 "Error in getpeername: %s\n", strerror(errno));
Corey Minyard16cc4ff2014-10-02 11:17:36 -05002930 } else {
Corey Minyard01ca5192014-10-02 11:17:38 -05002931 sockaddr_to_str(chr->filename, CHR_MAX_FILENAME_SIZE,
2932 &ss, ss_len, &ps, ps_len,
Corey Minyard16cc4ff2014-10-02 11:17:36 -05002933 s->is_listen, s->is_telnet);
2934 }
aliguori6f97dba2008-10-31 18:49:55 +00002935
2936 s->connected = 1;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302937 if (s->chan) {
Amit Shah7ba9add2013-08-28 15:18:29 +05302938 chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
2939 tcp_chr_read, chr);
David Gibsonbbdd2ad2012-09-10 12:30:56 +10002940 }
Hans de Goedefee204f2013-03-26 11:07:54 +01002941 qemu_chr_be_generic_open(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002942}
2943
Gal Hammerac1b84d2014-02-25 12:12:35 +02002944static void tcp_chr_update_read_handler(CharDriverState *chr)
2945{
2946 TCPCharDriver *s = chr->opaque;
2947
2948 remove_fd_in_watch(chr);
2949 if (s->chan) {
2950 chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
2951 tcp_chr_read, chr);
2952 }
2953}
2954
aliguori6f97dba2008-10-31 18:49:55 +00002955#define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
2956static void tcp_chr_telnet_init(int fd)
2957{
2958 char buf[3];
2959 /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
2960 IACSET(buf, 0xff, 0xfb, 0x01); /* IAC WILL ECHO */
2961 send(fd, (char *)buf, 3, 0);
2962 IACSET(buf, 0xff, 0xfb, 0x03); /* IAC WILL Suppress go ahead */
2963 send(fd, (char *)buf, 3, 0);
2964 IACSET(buf, 0xff, 0xfb, 0x00); /* IAC WILL Binary */
2965 send(fd, (char *)buf, 3, 0);
2966 IACSET(buf, 0xff, 0xfd, 0x00); /* IAC DO Binary */
2967 send(fd, (char *)buf, 3, 0);
2968}
2969
Daniel P. Berrange13661082011-06-23 13:31:42 +01002970static int tcp_chr_add_client(CharDriverState *chr, int fd)
2971{
2972 TCPCharDriver *s = chr->opaque;
2973 if (s->fd != -1)
2974 return -1;
2975
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01002976 qemu_set_nonblock(fd);
Daniel P. Berrange13661082011-06-23 13:31:42 +01002977 if (s->do_nodelay)
2978 socket_set_nodelay(fd);
2979 s->fd = fd;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302980 s->chan = io_channel_from_socket(fd);
Paolo Bonzini910b6362013-04-19 17:32:06 +02002981 if (s->listen_tag) {
2982 g_source_remove(s->listen_tag);
2983 s->listen_tag = 0;
2984 }
Daniel P. Berrange13661082011-06-23 13:31:42 +01002985 tcp_chr_connect(chr);
2986
2987 return 0;
2988}
2989
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302990static gboolean tcp_chr_accept(GIOChannel *channel, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002991{
2992 CharDriverState *chr = opaque;
2993 TCPCharDriver *s = chr->opaque;
2994 struct sockaddr_in saddr;
2995#ifndef _WIN32
2996 struct sockaddr_un uaddr;
2997#endif
2998 struct sockaddr *addr;
2999 socklen_t len;
3000 int fd;
3001
3002 for(;;) {
3003#ifndef _WIN32
3004 if (s->is_unix) {
3005 len = sizeof(uaddr);
3006 addr = (struct sockaddr *)&uaddr;
3007 } else
3008#endif
3009 {
3010 len = sizeof(saddr);
3011 addr = (struct sockaddr *)&saddr;
3012 }
Kevin Wolf40ff6d72009-12-02 12:24:42 +01003013 fd = qemu_accept(s->listen_fd, addr, &len);
aliguori6f97dba2008-10-31 18:49:55 +00003014 if (fd < 0 && errno != EINTR) {
Hans de Goede79f20072013-04-25 13:53:02 +02003015 s->listen_tag = 0;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303016 return FALSE;
aliguori6f97dba2008-10-31 18:49:55 +00003017 } else if (fd >= 0) {
3018 if (s->do_telnetopt)
3019 tcp_chr_telnet_init(fd);
3020 break;
3021 }
3022 }
Daniel P. Berrange13661082011-06-23 13:31:42 +01003023 if (tcp_chr_add_client(chr, fd) < 0)
3024 close(fd);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303025
3026 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00003027}
3028
3029static void tcp_chr_close(CharDriverState *chr)
3030{
3031 TCPCharDriver *s = chr->opaque;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03003032 int i;
Corey Minyardcfb429c2014-10-02 11:17:35 -05003033
Corey Minyard5dd1f022014-10-02 11:17:37 -05003034 if (s->reconnect_timer) {
3035 g_source_remove(s->reconnect_timer);
3036 s->reconnect_timer = 0;
3037 }
Corey Minyardcfb429c2014-10-02 11:17:35 -05003038 qapi_free_SocketAddress(s->addr);
aliguori819f56b2009-03-28 17:58:14 +00003039 if (s->fd >= 0) {
Amit Shah26da70c2013-08-28 15:23:37 +05303040 remove_fd_in_watch(chr);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303041 if (s->chan) {
3042 g_io_channel_unref(s->chan);
3043 }
aliguori6f97dba2008-10-31 18:49:55 +00003044 closesocket(s->fd);
aliguori819f56b2009-03-28 17:58:14 +00003045 }
3046 if (s->listen_fd >= 0) {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303047 if (s->listen_tag) {
3048 g_source_remove(s->listen_tag);
Paolo Bonzini910b6362013-04-19 17:32:06 +02003049 s->listen_tag = 0;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303050 }
3051 if (s->listen_chan) {
3052 g_io_channel_unref(s->listen_chan);
3053 }
aliguori6f97dba2008-10-31 18:49:55 +00003054 closesocket(s->listen_fd);
aliguori819f56b2009-03-28 17:58:14 +00003055 }
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03003056 if (s->read_msgfds_num) {
3057 for (i = 0; i < s->read_msgfds_num; i++) {
3058 close(s->read_msgfds[i]);
3059 }
3060 g_free(s->read_msgfds);
3061 }
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03003062 if (s->write_msgfds_num) {
3063 g_free(s->write_msgfds);
3064 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003065 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01003066 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00003067}
3068
Corey Minyard16cc4ff2014-10-02 11:17:36 -05003069static void qemu_chr_finish_socket_connection(CharDriverState *chr, int fd)
aliguori6f97dba2008-10-31 18:49:55 +00003070{
Corey Minyard43ded1a2014-10-02 11:17:34 -05003071 TCPCharDriver *s = chr->opaque;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003072
Corey Minyardcfb429c2014-10-02 11:17:35 -05003073 if (s->is_listen) {
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003074 s->listen_fd = fd;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303075 s->listen_chan = io_channel_from_socket(s->listen_fd);
Corey Minyard43ded1a2014-10-02 11:17:34 -05003076 s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN,
3077 tcp_chr_accept, chr);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003078 } else {
3079 s->connected = 1;
3080 s->fd = fd;
3081 socket_set_nodelay(fd);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303082 s->chan = io_channel_from_socket(s->fd);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003083 tcp_chr_connect(chr);
3084 }
Corey Minyard43ded1a2014-10-02 11:17:34 -05003085}
3086
Corey Minyard51795022014-10-08 07:11:56 -05003087static void qemu_chr_socket_connected(int fd, Error *err, void *opaque)
Corey Minyard5dd1f022014-10-02 11:17:37 -05003088{
3089 CharDriverState *chr = opaque;
Corey Minyard5008e5b2014-10-08 07:11:55 -05003090 TCPCharDriver *s = chr->opaque;
Corey Minyard5dd1f022014-10-02 11:17:37 -05003091
3092 if (fd < 0) {
Corey Minyard5008e5b2014-10-08 07:11:55 -05003093 check_report_connect_error(chr, err);
Corey Minyard5dd1f022014-10-02 11:17:37 -05003094 return;
3095 }
3096
Corey Minyard5008e5b2014-10-08 07:11:55 -05003097 s->connect_err_reported = false;
Corey Minyard5dd1f022014-10-02 11:17:37 -05003098 qemu_chr_finish_socket_connection(chr, fd);
3099}
3100
Corey Minyardcfb429c2014-10-02 11:17:35 -05003101static bool qemu_chr_open_socket_fd(CharDriverState *chr, Error **errp)
Corey Minyard43ded1a2014-10-02 11:17:34 -05003102{
Corey Minyardcfb429c2014-10-02 11:17:35 -05003103 TCPCharDriver *s = chr->opaque;
Corey Minyard43ded1a2014-10-02 11:17:34 -05003104 int fd;
3105
Corey Minyardcfb429c2014-10-02 11:17:35 -05003106 if (s->is_listen) {
3107 fd = socket_listen(s->addr, errp);
Corey Minyard5dd1f022014-10-02 11:17:37 -05003108 } else if (s->reconnect_time) {
3109 fd = socket_connect(s->addr, errp, qemu_chr_socket_connected, chr);
3110 return fd >= 0;
3111 } else {
Corey Minyardcfb429c2014-10-02 11:17:35 -05003112 fd = socket_connect(s->addr, errp, NULL, NULL);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003113 }
Corey Minyard43ded1a2014-10-02 11:17:34 -05003114 if (fd < 0) {
3115 return false;
3116 }
3117
Corey Minyard16cc4ff2014-10-02 11:17:36 -05003118 qemu_chr_finish_socket_connection(chr, fd);
3119 return true;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003120}
3121
Lei Li51767e72013-01-25 00:03:19 +08003122/*********************************************************/
Markus Armbruster3949e592013-02-06 21:27:24 +01003123/* Ring buffer chardev */
Lei Li51767e72013-01-25 00:03:19 +08003124
3125typedef struct {
3126 size_t size;
3127 size_t prod;
3128 size_t cons;
3129 uint8_t *cbuf;
Markus Armbruster3949e592013-02-06 21:27:24 +01003130} RingBufCharDriver;
Lei Li51767e72013-01-25 00:03:19 +08003131
Markus Armbruster3949e592013-02-06 21:27:24 +01003132static size_t ringbuf_count(const CharDriverState *chr)
Lei Li51767e72013-01-25 00:03:19 +08003133{
Markus Armbruster3949e592013-02-06 21:27:24 +01003134 const RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003135
Markus Armbruster5c230102013-02-06 21:27:23 +01003136 return d->prod - d->cons;
Lei Li51767e72013-01-25 00:03:19 +08003137}
3138
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02003139/* Called with chr_write_lock held. */
Markus Armbruster3949e592013-02-06 21:27:24 +01003140static int ringbuf_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
Lei Li51767e72013-01-25 00:03:19 +08003141{
Markus Armbruster3949e592013-02-06 21:27:24 +01003142 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003143 int i;
3144
3145 if (!buf || (len < 0)) {
3146 return -1;
3147 }
3148
3149 for (i = 0; i < len; i++ ) {
Markus Armbruster5c230102013-02-06 21:27:23 +01003150 d->cbuf[d->prod++ & (d->size - 1)] = buf[i];
3151 if (d->prod - d->cons > d->size) {
Lei Li51767e72013-01-25 00:03:19 +08003152 d->cons = d->prod - d->size;
3153 }
3154 }
3155
3156 return 0;
3157}
3158
Markus Armbruster3949e592013-02-06 21:27:24 +01003159static int ringbuf_chr_read(CharDriverState *chr, uint8_t *buf, int len)
Lei Li51767e72013-01-25 00:03:19 +08003160{
Markus Armbruster3949e592013-02-06 21:27:24 +01003161 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003162 int i;
3163
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02003164 qemu_mutex_lock(&chr->chr_write_lock);
Markus Armbruster5c230102013-02-06 21:27:23 +01003165 for (i = 0; i < len && d->cons != d->prod; i++) {
3166 buf[i] = d->cbuf[d->cons++ & (d->size - 1)];
Lei Li51767e72013-01-25 00:03:19 +08003167 }
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02003168 qemu_mutex_unlock(&chr->chr_write_lock);
Lei Li51767e72013-01-25 00:03:19 +08003169
3170 return i;
3171}
3172
Markus Armbruster3949e592013-02-06 21:27:24 +01003173static void ringbuf_chr_close(struct CharDriverState *chr)
Lei Li51767e72013-01-25 00:03:19 +08003174{
Markus Armbruster3949e592013-02-06 21:27:24 +01003175 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003176
3177 g_free(d->cbuf);
3178 g_free(d);
3179 chr->opaque = NULL;
3180}
3181
Markus Armbruster4f573782013-07-26 16:44:32 +02003182static CharDriverState *qemu_chr_open_ringbuf(ChardevRingbuf *opts,
3183 Error **errp)
Lei Li51767e72013-01-25 00:03:19 +08003184{
3185 CharDriverState *chr;
Markus Armbruster3949e592013-02-06 21:27:24 +01003186 RingBufCharDriver *d;
Lei Li51767e72013-01-25 00:03:19 +08003187
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02003188 chr = qemu_chr_alloc();
Lei Li51767e72013-01-25 00:03:19 +08003189 d = g_malloc(sizeof(*d));
3190
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003191 d->size = opts->has_size ? opts->size : 65536;
Lei Li51767e72013-01-25 00:03:19 +08003192
3193 /* The size must be power of 2 */
3194 if (d->size & (d->size - 1)) {
Markus Armbruster4f573782013-07-26 16:44:32 +02003195 error_setg(errp, "size of ringbuf chardev must be power of two");
Lei Li51767e72013-01-25 00:03:19 +08003196 goto fail;
3197 }
3198
3199 d->prod = 0;
3200 d->cons = 0;
3201 d->cbuf = g_malloc0(d->size);
3202
3203 chr->opaque = d;
Markus Armbruster3949e592013-02-06 21:27:24 +01003204 chr->chr_write = ringbuf_chr_write;
3205 chr->chr_close = ringbuf_chr_close;
Lei Li51767e72013-01-25 00:03:19 +08003206
3207 return chr;
3208
3209fail:
3210 g_free(d);
3211 g_free(chr);
3212 return NULL;
3213}
3214
Hani Benhabiles8e597772014-05-27 23:39:30 +01003215bool chr_is_ringbuf(const CharDriverState *chr)
Lei Li1f590cf2013-01-25 00:03:20 +08003216{
Markus Armbruster3949e592013-02-06 21:27:24 +01003217 return chr->chr_write == ringbuf_chr_write;
Lei Li1f590cf2013-01-25 00:03:20 +08003218}
3219
Markus Armbruster3949e592013-02-06 21:27:24 +01003220void qmp_ringbuf_write(const char *device, const char *data,
Markus Armbruster82e59a62013-02-06 21:27:14 +01003221 bool has_format, enum DataFormat format,
Lei Li1f590cf2013-01-25 00:03:20 +08003222 Error **errp)
3223{
3224 CharDriverState *chr;
Markus Armbrusterc4f331b2013-02-06 21:27:17 +01003225 const uint8_t *write_data;
Lei Li1f590cf2013-01-25 00:03:20 +08003226 int ret;
Peter Crosthwaite3d1bba22013-05-22 13:01:43 +10003227 gsize write_count;
Lei Li1f590cf2013-01-25 00:03:20 +08003228
3229 chr = qemu_chr_find(device);
3230 if (!chr) {
Markus Armbruster1a692782013-02-06 21:27:16 +01003231 error_setg(errp, "Device '%s' not found", device);
Lei Li1f590cf2013-01-25 00:03:20 +08003232 return;
3233 }
3234
Markus Armbruster3949e592013-02-06 21:27:24 +01003235 if (!chr_is_ringbuf(chr)) {
3236 error_setg(errp,"%s is not a ringbuf device", device);
Lei Li1f590cf2013-01-25 00:03:20 +08003237 return;
3238 }
3239
Lei Li1f590cf2013-01-25 00:03:20 +08003240 if (has_format && (format == DATA_FORMAT_BASE64)) {
3241 write_data = g_base64_decode(data, &write_count);
3242 } else {
3243 write_data = (uint8_t *)data;
Markus Armbruster82e59a62013-02-06 21:27:14 +01003244 write_count = strlen(data);
Lei Li1f590cf2013-01-25 00:03:20 +08003245 }
3246
Markus Armbruster3949e592013-02-06 21:27:24 +01003247 ret = ringbuf_chr_write(chr, write_data, write_count);
Lei Li1f590cf2013-01-25 00:03:20 +08003248
Markus Armbruster13289fb2013-02-06 21:27:18 +01003249 if (write_data != (uint8_t *)data) {
3250 g_free((void *)write_data);
3251 }
3252
Lei Li1f590cf2013-01-25 00:03:20 +08003253 if (ret < 0) {
3254 error_setg(errp, "Failed to write to device %s", device);
3255 return;
3256 }
3257}
3258
Markus Armbruster3949e592013-02-06 21:27:24 +01003259char *qmp_ringbuf_read(const char *device, int64_t size,
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003260 bool has_format, enum DataFormat format,
3261 Error **errp)
Lei Li49b6d722013-01-25 00:03:21 +08003262{
3263 CharDriverState *chr;
Markus Armbrusterc4f331b2013-02-06 21:27:17 +01003264 uint8_t *read_data;
Lei Li49b6d722013-01-25 00:03:21 +08003265 size_t count;
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003266 char *data;
Lei Li49b6d722013-01-25 00:03:21 +08003267
3268 chr = qemu_chr_find(device);
3269 if (!chr) {
Markus Armbruster1a692782013-02-06 21:27:16 +01003270 error_setg(errp, "Device '%s' not found", device);
Lei Li49b6d722013-01-25 00:03:21 +08003271 return NULL;
3272 }
3273
Markus Armbruster3949e592013-02-06 21:27:24 +01003274 if (!chr_is_ringbuf(chr)) {
3275 error_setg(errp,"%s is not a ringbuf device", device);
Lei Li49b6d722013-01-25 00:03:21 +08003276 return NULL;
3277 }
3278
3279 if (size <= 0) {
3280 error_setg(errp, "size must be greater than zero");
3281 return NULL;
3282 }
3283
Markus Armbruster3949e592013-02-06 21:27:24 +01003284 count = ringbuf_count(chr);
Lei Li49b6d722013-01-25 00:03:21 +08003285 size = size > count ? count : size;
Markus Armbruster44f3bcd2013-02-06 21:27:20 +01003286 read_data = g_malloc(size + 1);
Lei Li49b6d722013-01-25 00:03:21 +08003287
Markus Armbruster3949e592013-02-06 21:27:24 +01003288 ringbuf_chr_read(chr, read_data, size);
Lei Li49b6d722013-01-25 00:03:21 +08003289
3290 if (has_format && (format == DATA_FORMAT_BASE64)) {
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003291 data = g_base64_encode(read_data, size);
Markus Armbruster13289fb2013-02-06 21:27:18 +01003292 g_free(read_data);
Lei Li49b6d722013-01-25 00:03:21 +08003293 } else {
Markus Armbruster3949e592013-02-06 21:27:24 +01003294 /*
3295 * FIXME should read only complete, valid UTF-8 characters up
3296 * to @size bytes. Invalid sequences should be replaced by a
3297 * suitable replacement character. Except when (and only
3298 * when) ring buffer lost characters since last read, initial
3299 * continuation characters should be dropped.
3300 */
Markus Armbruster44f3bcd2013-02-06 21:27:20 +01003301 read_data[size] = 0;
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003302 data = (char *)read_data;
Lei Li49b6d722013-01-25 00:03:21 +08003303 }
3304
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003305 return data;
Lei Li49b6d722013-01-25 00:03:21 +08003306}
3307
Gerd Hoffmann33521632009-12-08 13:11:49 +01003308QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003309{
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003310 char host[65], port[33], width[8], height[8];
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003311 int pos;
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003312 const char *p;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003313 QemuOpts *opts;
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003314 Error *local_err = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003315
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003316 opts = qemu_opts_create(qemu_find_opts("chardev"), label, 1, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01003317 if (local_err) {
Markus Armbruster33394882015-02-10 15:21:26 +01003318 error_report_err(local_err);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003319 return NULL;
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003320 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003321
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003322 if (strstart(filename, "mon:", &p)) {
3323 filename = p;
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003324 qemu_opt_set(opts, "mux", "on", &error_abort);
Paolo Bonzini02c4bdf2013-07-03 20:29:45 +04003325 if (strcmp(filename, "stdio") == 0) {
3326 /* Monitor is muxed to stdio: do not exit on Ctrl+C by default
3327 * but pass it to the guest. Handle this only for compat syntax,
3328 * for -chardev syntax we have special option for this.
3329 * This is what -nographic did, redirecting+muxing serial+monitor
3330 * to stdio causing Ctrl+C to be passed to guest. */
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003331 qemu_opt_set(opts, "signal", "off", &error_abort);
Paolo Bonzini02c4bdf2013-07-03 20:29:45 +04003332 }
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003333 }
3334
Gerd Hoffmannf0457e82009-09-10 10:58:45 +02003335 if (strcmp(filename, "null") == 0 ||
3336 strcmp(filename, "pty") == 0 ||
3337 strcmp(filename, "msmouse") == 0 ||
Gerd Hoffmanndc1c21e2009-09-10 10:58:46 +02003338 strcmp(filename, "braille") == 0 ||
Paolo Bonzini56923992014-07-11 09:44:26 +02003339 strcmp(filename, "testdev") == 0 ||
Gerd Hoffmannf0457e82009-09-10 10:58:45 +02003340 strcmp(filename, "stdio") == 0) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003341 qemu_opt_set(opts, "backend", filename, &error_abort);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003342 return opts;
3343 }
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003344 if (strstart(filename, "vc", &p)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003345 qemu_opt_set(opts, "backend", "vc", &error_abort);
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003346 if (*p == ':') {
Stefan Weil49aa4052013-09-30 23:04:49 +02003347 if (sscanf(p+1, "%7[0-9]x%7[0-9]", width, height) == 2) {
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003348 /* pixels */
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003349 qemu_opt_set(opts, "width", width, &error_abort);
3350 qemu_opt_set(opts, "height", height, &error_abort);
Stefan Weil49aa4052013-09-30 23:04:49 +02003351 } else if (sscanf(p+1, "%7[0-9]Cx%7[0-9]C", width, height) == 2) {
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003352 /* chars */
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003353 qemu_opt_set(opts, "cols", width, &error_abort);
3354 qemu_opt_set(opts, "rows", height, &error_abort);
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003355 } else {
3356 goto fail;
3357 }
3358 }
3359 return opts;
3360 }
Gerd Hoffmannd6c983c2009-09-10 10:58:47 +02003361 if (strcmp(filename, "con:") == 0) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003362 qemu_opt_set(opts, "backend", "console", &error_abort);
Gerd Hoffmannd6c983c2009-09-10 10:58:47 +02003363 return opts;
3364 }
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003365 if (strstart(filename, "COM", NULL)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003366 qemu_opt_set(opts, "backend", "serial", &error_abort);
3367 qemu_opt_set(opts, "path", filename, &error_abort);
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003368 return opts;
3369 }
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003370 if (strstart(filename, "file:", &p)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003371 qemu_opt_set(opts, "backend", "file", &error_abort);
3372 qemu_opt_set(opts, "path", p, &error_abort);
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003373 return opts;
3374 }
3375 if (strstart(filename, "pipe:", &p)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003376 qemu_opt_set(opts, "backend", "pipe", &error_abort);
3377 qemu_opt_set(opts, "path", p, &error_abort);
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003378 return opts;
3379 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003380 if (strstart(filename, "tcp:", &p) ||
3381 strstart(filename, "telnet:", &p)) {
3382 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3383 host[0] = 0;
3384 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1)
3385 goto fail;
3386 }
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003387 qemu_opt_set(opts, "backend", "socket", &error_abort);
3388 qemu_opt_set(opts, "host", host, &error_abort);
3389 qemu_opt_set(opts, "port", port, &error_abort);
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003390 if (p[pos] == ',') {
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003391 qemu_opts_do_parse(opts, p+pos+1, NULL, &local_err);
3392 if (local_err) {
3393 error_report_err(local_err);
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003394 goto fail;
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003395 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003396 }
3397 if (strstart(filename, "telnet:", &p))
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003398 qemu_opt_set(opts, "telnet", "on", &error_abort);
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003399 return opts;
3400 }
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003401 if (strstart(filename, "udp:", &p)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003402 qemu_opt_set(opts, "backend", "udp", &error_abort);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003403 if (sscanf(p, "%64[^:]:%32[^@,]%n", host, port, &pos) < 2) {
3404 host[0] = 0;
Jan Kiszka39324ca2010-03-07 11:28:48 +01003405 if (sscanf(p, ":%32[^@,]%n", port, &pos) < 1) {
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003406 goto fail;
3407 }
3408 }
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003409 qemu_opt_set(opts, "host", host, &error_abort);
3410 qemu_opt_set(opts, "port", port, &error_abort);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003411 if (p[pos] == '@') {
3412 p += pos + 1;
3413 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3414 host[0] = 0;
3415 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1) {
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003416 goto fail;
3417 }
3418 }
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003419 qemu_opt_set(opts, "localaddr", host, &error_abort);
3420 qemu_opt_set(opts, "localport", port, &error_abort);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003421 }
3422 return opts;
3423 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003424 if (strstart(filename, "unix:", &p)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003425 qemu_opt_set(opts, "backend", "socket", &error_abort);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003426 qemu_opts_do_parse(opts, p, "path", &local_err);
3427 if (local_err) {
3428 error_report_err(local_err);
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003429 goto fail;
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003430 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003431 return opts;
3432 }
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003433 if (strstart(filename, "/dev/parport", NULL) ||
3434 strstart(filename, "/dev/ppi", NULL)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003435 qemu_opt_set(opts, "backend", "parport", &error_abort);
3436 qemu_opt_set(opts, "path", filename, &error_abort);
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003437 return opts;
3438 }
3439 if (strstart(filename, "/dev/", NULL)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003440 qemu_opt_set(opts, "backend", "tty", &error_abort);
3441 qemu_opt_set(opts, "path", filename, &error_abort);
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003442 return opts;
3443 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003444
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003445fail:
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003446 qemu_opts_del(opts);
3447 return NULL;
3448}
3449
Gerd Hoffmann846e2e42013-02-21 12:07:14 +01003450static void qemu_chr_parse_file_out(QemuOpts *opts, ChardevBackend *backend,
3451 Error **errp)
3452{
3453 const char *path = qemu_opt_get(opts, "path");
3454
3455 if (path == NULL) {
3456 error_setg(errp, "chardev: file: no filename given");
3457 return;
3458 }
3459 backend->file = g_new0(ChardevFile, 1);
3460 backend->file->out = g_strdup(path);
3461}
3462
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003463static void qemu_chr_parse_stdio(QemuOpts *opts, ChardevBackend *backend,
3464 Error **errp)
3465{
3466 backend->stdio = g_new0(ChardevStdio, 1);
3467 backend->stdio->has_signal = true;
Paolo Bonzini02c4bdf2013-07-03 20:29:45 +04003468 backend->stdio->signal = qemu_opt_get_bool(opts, "signal", true);
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003469}
3470
Gerd Hoffmann0f1cb512013-02-22 15:48:05 +01003471static void qemu_chr_parse_serial(QemuOpts *opts, ChardevBackend *backend,
3472 Error **errp)
3473{
3474 const char *device = qemu_opt_get(opts, "path");
3475
3476 if (device == NULL) {
3477 error_setg(errp, "chardev: serial/tty: no device path given");
3478 return;
3479 }
3480 backend->serial = g_new0(ChardevHostdev, 1);
3481 backend->serial->device = g_strdup(device);
3482}
3483
Gerd Hoffmanndc375092013-02-22 16:17:01 +01003484static void qemu_chr_parse_parallel(QemuOpts *opts, ChardevBackend *backend,
3485 Error **errp)
3486{
3487 const char *device = qemu_opt_get(opts, "path");
3488
3489 if (device == NULL) {
3490 error_setg(errp, "chardev: parallel: no device path given");
3491 return;
3492 }
3493 backend->parallel = g_new0(ChardevHostdev, 1);
3494 backend->parallel->device = g_strdup(device);
3495}
3496
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01003497static void qemu_chr_parse_pipe(QemuOpts *opts, ChardevBackend *backend,
3498 Error **errp)
3499{
3500 const char *device = qemu_opt_get(opts, "path");
3501
3502 if (device == NULL) {
3503 error_setg(errp, "chardev: pipe: no device path given");
3504 return;
3505 }
3506 backend->pipe = g_new0(ChardevHostdev, 1);
3507 backend->pipe->device = g_strdup(device);
3508}
3509
Markus Armbruster4f573782013-07-26 16:44:32 +02003510static void qemu_chr_parse_ringbuf(QemuOpts *opts, ChardevBackend *backend,
3511 Error **errp)
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003512{
3513 int val;
3514
Markus Armbruster3a1da422013-07-26 16:44:34 +02003515 backend->ringbuf = g_new0(ChardevRingbuf, 1);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003516
Markus Armbruster0f953052013-06-27 16:22:07 +02003517 val = qemu_opt_get_size(opts, "size", 0);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003518 if (val != 0) {
Markus Armbruster3a1da422013-07-26 16:44:34 +02003519 backend->ringbuf->has_size = true;
3520 backend->ringbuf->size = val;
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003521 }
3522}
3523
Gerd Hoffmannbb6fb7c2013-06-24 08:39:54 +02003524static void qemu_chr_parse_mux(QemuOpts *opts, ChardevBackend *backend,
3525 Error **errp)
3526{
3527 const char *chardev = qemu_opt_get(opts, "chardev");
3528
3529 if (chardev == NULL) {
3530 error_setg(errp, "chardev: mux: no chardev given");
3531 return;
3532 }
3533 backend->mux = g_new0(ChardevMux, 1);
3534 backend->mux->chardev = g_strdup(chardev);
3535}
3536
Peter Maydelldafd3252014-09-02 11:24:13 +01003537static void qemu_chr_parse_socket(QemuOpts *opts, ChardevBackend *backend,
3538 Error **errp)
3539{
3540 bool is_listen = qemu_opt_get_bool(opts, "server", false);
3541 bool is_waitconnect = is_listen && qemu_opt_get_bool(opts, "wait", true);
3542 bool is_telnet = qemu_opt_get_bool(opts, "telnet", false);
3543 bool do_nodelay = !qemu_opt_get_bool(opts, "delay", true);
Corey Minyard5dd1f022014-10-02 11:17:37 -05003544 int64_t reconnect = qemu_opt_get_number(opts, "reconnect", 0);
Peter Maydelldafd3252014-09-02 11:24:13 +01003545 const char *path = qemu_opt_get(opts, "path");
3546 const char *host = qemu_opt_get(opts, "host");
3547 const char *port = qemu_opt_get(opts, "port");
3548 SocketAddress *addr;
3549
3550 if (!path) {
3551 if (!host) {
3552 error_setg(errp, "chardev: socket: no host given");
3553 return;
3554 }
3555 if (!port) {
3556 error_setg(errp, "chardev: socket: no port given");
3557 return;
3558 }
3559 }
3560
3561 backend->socket = g_new0(ChardevSocket, 1);
3562
3563 backend->socket->has_nodelay = true;
3564 backend->socket->nodelay = do_nodelay;
3565 backend->socket->has_server = true;
3566 backend->socket->server = is_listen;
3567 backend->socket->has_telnet = true;
3568 backend->socket->telnet = is_telnet;
3569 backend->socket->has_wait = true;
3570 backend->socket->wait = is_waitconnect;
Corey Minyard5dd1f022014-10-02 11:17:37 -05003571 backend->socket->has_reconnect = true;
3572 backend->socket->reconnect = reconnect;
Peter Maydelldafd3252014-09-02 11:24:13 +01003573
3574 addr = g_new0(SocketAddress, 1);
3575 if (path) {
3576 addr->kind = SOCKET_ADDRESS_KIND_UNIX;
3577 addr->q_unix = g_new0(UnixSocketAddress, 1);
3578 addr->q_unix->path = g_strdup(path);
3579 } else {
3580 addr->kind = SOCKET_ADDRESS_KIND_INET;
3581 addr->inet = g_new0(InetSocketAddress, 1);
3582 addr->inet->host = g_strdup(host);
3583 addr->inet->port = g_strdup(port);
3584 addr->inet->has_to = qemu_opt_get(opts, "to");
3585 addr->inet->to = qemu_opt_get_number(opts, "to", 0);
3586 addr->inet->has_ipv4 = qemu_opt_get(opts, "ipv4");
3587 addr->inet->ipv4 = qemu_opt_get_bool(opts, "ipv4", 0);
3588 addr->inet->has_ipv6 = qemu_opt_get(opts, "ipv6");
3589 addr->inet->ipv6 = qemu_opt_get_bool(opts, "ipv6", 0);
3590 }
3591 backend->socket->addr = addr;
3592}
3593
Peter Maydell90a14bf2014-09-02 11:24:15 +01003594static void qemu_chr_parse_udp(QemuOpts *opts, ChardevBackend *backend,
3595 Error **errp)
3596{
3597 const char *host = qemu_opt_get(opts, "host");
3598 const char *port = qemu_opt_get(opts, "port");
3599 const char *localaddr = qemu_opt_get(opts, "localaddr");
3600 const char *localport = qemu_opt_get(opts, "localport");
3601 bool has_local = false;
3602 SocketAddress *addr;
3603
3604 if (host == NULL || strlen(host) == 0) {
3605 host = "localhost";
3606 }
3607 if (port == NULL || strlen(port) == 0) {
3608 error_setg(errp, "chardev: udp: remote port not specified");
3609 return;
3610 }
3611 if (localport == NULL || strlen(localport) == 0) {
3612 localport = "0";
3613 } else {
3614 has_local = true;
3615 }
3616 if (localaddr == NULL || strlen(localaddr) == 0) {
3617 localaddr = "";
3618 } else {
3619 has_local = true;
3620 }
3621
3622 backend->udp = g_new0(ChardevUdp, 1);
3623
3624 addr = g_new0(SocketAddress, 1);
3625 addr->kind = SOCKET_ADDRESS_KIND_INET;
3626 addr->inet = g_new0(InetSocketAddress, 1);
3627 addr->inet->host = g_strdup(host);
3628 addr->inet->port = g_strdup(port);
3629 addr->inet->has_ipv4 = qemu_opt_get(opts, "ipv4");
3630 addr->inet->ipv4 = qemu_opt_get_bool(opts, "ipv4", 0);
3631 addr->inet->has_ipv6 = qemu_opt_get(opts, "ipv6");
3632 addr->inet->ipv6 = qemu_opt_get_bool(opts, "ipv6", 0);
3633 backend->udp->remote = addr;
3634
3635 if (has_local) {
3636 backend->udp->has_local = true;
3637 addr = g_new0(SocketAddress, 1);
3638 addr->kind = SOCKET_ADDRESS_KIND_INET;
3639 addr->inet = g_new0(InetSocketAddress, 1);
3640 addr->inet->host = g_strdup(localaddr);
3641 addr->inet->port = g_strdup(localport);
3642 backend->udp->local = addr;
3643 }
3644}
3645
Anthony Liguorid654f342013-03-05 23:21:28 +05303646typedef struct CharDriver {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003647 const char *name;
Gerd Hoffmann99aec012013-06-24 08:39:52 +02003648 ChardevBackendKind kind;
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003649 void (*parse)(QemuOpts *opts, ChardevBackend *backend, Error **errp);
Anthony Liguorid654f342013-03-05 23:21:28 +05303650} CharDriver;
3651
3652static GSList *backends;
3653
Peter Maydelle4d50d42014-09-02 11:24:17 +01003654void register_char_driver(const char *name, ChardevBackendKind kind,
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003655 void (*parse)(QemuOpts *opts, ChardevBackend *backend, Error **errp))
3656{
3657 CharDriver *s;
3658
3659 s = g_malloc0(sizeof(*s));
3660 s->name = g_strdup(name);
3661 s->kind = kind;
3662 s->parse = parse;
3663
3664 backends = g_slist_append(backends, s);
3665}
3666
Anthony Liguorif69554b2011-08-15 11:17:37 -05003667CharDriverState *qemu_chr_new_from_opts(QemuOpts *opts,
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003668 void (*init)(struct CharDriverState *s),
3669 Error **errp)
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003670{
Markus Armbruster0aff6372014-05-19 18:57:35 +02003671 Error *local_err = NULL;
Anthony Liguorid654f342013-03-05 23:21:28 +05303672 CharDriver *cd;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003673 CharDriverState *chr;
Anthony Liguorid654f342013-03-05 23:21:28 +05303674 GSList *i;
Peter Maydella61ae7f2014-09-02 11:24:16 +01003675 ChardevReturn *ret = NULL;
3676 ChardevBackend *backend;
3677 const char *id = qemu_opts_id(opts);
3678 char *bid = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003679
Peter Maydella61ae7f2014-09-02 11:24:16 +01003680 if (id == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003681 error_setg(errp, "chardev: no id specified");
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003682 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003683 }
3684
Stefan Hajnoczi1bbd1852011-01-22 13:07:26 +00003685 if (qemu_opt_get(opts, "backend") == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003686 error_setg(errp, "chardev: \"%s\" missing backend",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003687 qemu_opts_id(opts));
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003688 goto err;
Stefan Hajnoczi1bbd1852011-01-22 13:07:26 +00003689 }
Anthony Liguorid654f342013-03-05 23:21:28 +05303690 for (i = backends; i; i = i->next) {
3691 cd = i->data;
3692
3693 if (strcmp(cd->name, qemu_opt_get(opts, "backend")) == 0) {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003694 break;
Anthony Liguorid654f342013-03-05 23:21:28 +05303695 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003696 }
Anthony Liguorid654f342013-03-05 23:21:28 +05303697 if (i == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003698 error_setg(errp, "chardev: backend \"%s\" not found",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003699 qemu_opt_get(opts, "backend"));
Gerd Hoffmanne6682872013-06-24 08:39:51 +02003700 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003701 }
3702
Peter Maydella61ae7f2014-09-02 11:24:16 +01003703 backend = g_new0(ChardevBackend, 1);
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003704
3705 if (qemu_opt_get_bool(opts, "mux", 0)) {
Peter Maydella61ae7f2014-09-02 11:24:16 +01003706 bid = g_strdup_printf("%s-base", id);
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003707 }
Peter Maydella61ae7f2014-09-02 11:24:16 +01003708
3709 chr = NULL;
3710 backend->kind = cd->kind;
3711 if (cd->parse) {
3712 cd->parse(opts, backend, &local_err);
3713 if (local_err) {
3714 error_propagate(errp, local_err);
3715 goto qapi_out;
3716 }
3717 }
3718 ret = qmp_chardev_add(bid ? bid : id, backend, errp);
3719 if (!ret) {
3720 goto qapi_out;
3721 }
3722
3723 if (bid) {
3724 qapi_free_ChardevBackend(backend);
3725 qapi_free_ChardevReturn(ret);
3726 backend = g_new0(ChardevBackend, 1);
3727 backend->mux = g_new0(ChardevMux, 1);
3728 backend->kind = CHARDEV_BACKEND_KIND_MUX;
3729 backend->mux->chardev = g_strdup(bid);
3730 ret = qmp_chardev_add(id, backend, errp);
3731 if (!ret) {
3732 chr = qemu_chr_find(bid);
3733 qemu_chr_delete(chr);
3734 chr = NULL;
3735 goto qapi_out;
3736 }
3737 }
3738
3739 chr = qemu_chr_find(id);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003740 chr->opts = opts;
Peter Maydella61ae7f2014-09-02 11:24:16 +01003741
3742qapi_out:
3743 qapi_free_ChardevBackend(backend);
3744 qapi_free_ChardevReturn(ret);
3745 g_free(bid);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003746 return chr;
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003747
3748err:
3749 qemu_opts_del(opts);
3750 return NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003751}
3752
Anthony Liguori27143a42011-08-15 11:17:36 -05003753CharDriverState *qemu_chr_new(const char *label, const char *filename, void (*init)(struct CharDriverState *s))
aliguori6f97dba2008-10-31 18:49:55 +00003754{
3755 const char *p;
3756 CharDriverState *chr;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003757 QemuOpts *opts;
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003758 Error *err = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003759
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003760 if (strstart(filename, "chardev:", &p)) {
3761 return qemu_chr_find(p);
3762 }
3763
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003764 opts = qemu_chr_parse_compat(label, filename);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003765 if (!opts)
3766 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00003767
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003768 chr = qemu_chr_new_from_opts(opts, init, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01003769 if (err) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01003770 error_report_err(err);
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003771 }
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003772 if (chr && qemu_opt_get_bool(opts, "mux", 0)) {
Hans de Goede456d6062013-03-27 20:29:40 +01003773 qemu_chr_fe_claim_no_fail(chr);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003774 monitor_init(chr, MONITOR_USE_READLINE);
aliguori6f97dba2008-10-31 18:49:55 +00003775 }
3776 return chr;
3777}
3778
Anthony Liguori15f31512011-08-15 11:17:35 -05003779void qemu_chr_fe_set_echo(struct CharDriverState *chr, bool echo)
Paolo Bonzinic48855e2010-12-23 13:42:48 +01003780{
3781 if (chr->chr_set_echo) {
3782 chr->chr_set_echo(chr, echo);
3783 }
3784}
3785
Hans de Goede8e25daa2013-03-26 11:07:57 +01003786void qemu_chr_fe_set_open(struct CharDriverState *chr, int fe_open)
Hans de Goede7c32c4f2011-03-24 11:12:02 +01003787{
Hans de Goede8e25daa2013-03-26 11:07:57 +01003788 if (chr->fe_open == fe_open) {
Hans de Goedec0c4bd22013-03-26 11:07:55 +01003789 return;
3790 }
Hans de Goede8e25daa2013-03-26 11:07:57 +01003791 chr->fe_open = fe_open;
Hans de Goede574b7112013-03-26 11:07:58 +01003792 if (chr->chr_set_fe_open) {
3793 chr->chr_set_fe_open(chr, fe_open);
Hans de Goede7c32c4f2011-03-24 11:12:02 +01003794 }
3795}
3796
Marc-André Lureaud61b0c92013-12-01 22:23:39 +01003797void qemu_chr_fe_event(struct CharDriverState *chr, int event)
3798{
3799 if (chr->chr_fe_event) {
3800 chr->chr_fe_event(chr, event);
3801 }
3802}
3803
Kevin Wolf2c8a5942013-03-19 13:38:09 +01003804int qemu_chr_fe_add_watch(CharDriverState *s, GIOCondition cond,
3805 GIOFunc func, void *user_data)
Anthony Liguori23673ca2013-03-05 23:21:23 +05303806{
3807 GSource *src;
3808 guint tag;
3809
3810 if (s->chr_add_watch == NULL) {
3811 return -ENOSYS;
3812 }
3813
3814 src = s->chr_add_watch(s, cond);
Paolo Bonzini62c339c2014-07-24 16:08:04 +02003815 if (!src) {
3816 return -EINVAL;
3817 }
3818
Anthony Liguori23673ca2013-03-05 23:21:23 +05303819 g_source_set_callback(src, (GSourceFunc)func, user_data, NULL);
3820 tag = g_source_attach(src, NULL);
3821 g_source_unref(src);
3822
3823 return tag;
3824}
3825
Hans de Goede44c473d2013-03-27 20:29:39 +01003826int qemu_chr_fe_claim(CharDriverState *s)
3827{
3828 if (s->avail_connections < 1) {
3829 return -1;
3830 }
3831 s->avail_connections--;
3832 return 0;
3833}
3834
3835void qemu_chr_fe_claim_no_fail(CharDriverState *s)
3836{
3837 if (qemu_chr_fe_claim(s) != 0) {
3838 fprintf(stderr, "%s: error chardev \"%s\" already used\n",
3839 __func__, s->label);
3840 exit(1);
3841 }
3842}
3843
3844void qemu_chr_fe_release(CharDriverState *s)
3845{
3846 s->avail_connections++;
3847}
3848
Anthony Liguori70f24fb2011-08-15 11:17:38 -05003849void qemu_chr_delete(CharDriverState *chr)
aliguori6f97dba2008-10-31 18:49:55 +00003850{
Blue Swirl72cf2d42009-09-12 07:36:22 +00003851 QTAILQ_REMOVE(&chardevs, chr, next);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003852 if (chr->chr_close) {
aliguori6f97dba2008-10-31 18:49:55 +00003853 chr->chr_close(chr);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003854 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003855 g_free(chr->filename);
3856 g_free(chr->label);
Markus Armbruster4ad60882014-12-03 11:28:02 +01003857 qemu_opts_del(chr->opts);
Anthony Liguori7267c092011-08-20 22:09:37 -05003858 g_free(chr);
aliguori6f97dba2008-10-31 18:49:55 +00003859}
3860
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003861ChardevInfoList *qmp_query_chardev(Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00003862{
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003863 ChardevInfoList *chr_list = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00003864 CharDriverState *chr;
3865
Blue Swirl72cf2d42009-09-12 07:36:22 +00003866 QTAILQ_FOREACH(chr, &chardevs, next) {
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003867 ChardevInfoList *info = g_malloc0(sizeof(*info));
3868 info->value = g_malloc0(sizeof(*info->value));
3869 info->value->label = g_strdup(chr->label);
3870 info->value->filename = g_strdup(chr->filename);
Laszlo Ersek32a97ea2014-06-26 17:50:03 +02003871 info->value->frontend_open = chr->fe_open;
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003872
3873 info->next = chr_list;
3874 chr_list = info;
aliguori6f97dba2008-10-31 18:49:55 +00003875 }
Luiz Capitulino588b3832009-12-10 17:16:08 -02003876
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003877 return chr_list;
aliguori6f97dba2008-10-31 18:49:55 +00003878}
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003879
Martin Kletzander77d1c3c2014-02-01 12:52:42 +01003880ChardevBackendInfoList *qmp_query_chardev_backends(Error **errp)
3881{
3882 ChardevBackendInfoList *backend_list = NULL;
3883 CharDriver *c = NULL;
3884 GSList *i = NULL;
3885
3886 for (i = backends; i; i = i->next) {
3887 ChardevBackendInfoList *info = g_malloc0(sizeof(*info));
3888 c = i->data;
3889 info->value = g_malloc0(sizeof(*info->value));
3890 info->value->name = g_strdup(c->name);
3891
3892 info->next = backend_list;
3893 backend_list = info;
3894 }
3895
3896 return backend_list;
3897}
3898
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003899CharDriverState *qemu_chr_find(const char *name)
3900{
3901 CharDriverState *chr;
3902
Blue Swirl72cf2d42009-09-12 07:36:22 +00003903 QTAILQ_FOREACH(chr, &chardevs, next) {
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003904 if (strcmp(chr->label, name) != 0)
3905 continue;
3906 return chr;
3907 }
3908 return NULL;
3909}
Anthony Liguori0beb4942011-12-22 15:29:25 -06003910
3911/* Get a character (serial) device interface. */
3912CharDriverState *qemu_char_get_next_serial(void)
3913{
3914 static int next_serial;
Hans de Goede456d6062013-03-27 20:29:40 +01003915 CharDriverState *chr;
Anthony Liguori0beb4942011-12-22 15:29:25 -06003916
3917 /* FIXME: This function needs to go away: use chardev properties! */
Hans de Goede456d6062013-03-27 20:29:40 +01003918
3919 while (next_serial < MAX_SERIAL_PORTS && serial_hds[next_serial]) {
3920 chr = serial_hds[next_serial++];
3921 qemu_chr_fe_claim_no_fail(chr);
3922 return chr;
3923 }
3924 return NULL;
Anthony Liguori0beb4942011-12-22 15:29:25 -06003925}
3926
Paolo Bonzini4d454572012-11-26 16:03:42 +01003927QemuOptsList qemu_chardev_opts = {
3928 .name = "chardev",
3929 .implied_opt_name = "backend",
3930 .head = QTAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
3931 .desc = {
3932 {
3933 .name = "backend",
3934 .type = QEMU_OPT_STRING,
3935 },{
3936 .name = "path",
3937 .type = QEMU_OPT_STRING,
3938 },{
3939 .name = "host",
3940 .type = QEMU_OPT_STRING,
3941 },{
3942 .name = "port",
3943 .type = QEMU_OPT_STRING,
3944 },{
3945 .name = "localaddr",
3946 .type = QEMU_OPT_STRING,
3947 },{
3948 .name = "localport",
3949 .type = QEMU_OPT_STRING,
3950 },{
3951 .name = "to",
3952 .type = QEMU_OPT_NUMBER,
3953 },{
3954 .name = "ipv4",
3955 .type = QEMU_OPT_BOOL,
3956 },{
3957 .name = "ipv6",
3958 .type = QEMU_OPT_BOOL,
3959 },{
3960 .name = "wait",
3961 .type = QEMU_OPT_BOOL,
3962 },{
3963 .name = "server",
3964 .type = QEMU_OPT_BOOL,
3965 },{
3966 .name = "delay",
3967 .type = QEMU_OPT_BOOL,
3968 },{
Corey Minyard5dd1f022014-10-02 11:17:37 -05003969 .name = "reconnect",
3970 .type = QEMU_OPT_NUMBER,
3971 },{
Paolo Bonzini4d454572012-11-26 16:03:42 +01003972 .name = "telnet",
3973 .type = QEMU_OPT_BOOL,
3974 },{
3975 .name = "width",
3976 .type = QEMU_OPT_NUMBER,
3977 },{
3978 .name = "height",
3979 .type = QEMU_OPT_NUMBER,
3980 },{
3981 .name = "cols",
3982 .type = QEMU_OPT_NUMBER,
3983 },{
3984 .name = "rows",
3985 .type = QEMU_OPT_NUMBER,
3986 },{
3987 .name = "mux",
3988 .type = QEMU_OPT_BOOL,
3989 },{
3990 .name = "signal",
3991 .type = QEMU_OPT_BOOL,
3992 },{
3993 .name = "name",
3994 .type = QEMU_OPT_STRING,
3995 },{
3996 .name = "debug",
3997 .type = QEMU_OPT_NUMBER,
Lei Li51767e72013-01-25 00:03:19 +08003998 },{
Markus Armbruster3949e592013-02-06 21:27:24 +01003999 .name = "size",
Markus Armbrusterde1cc362013-02-06 21:27:25 +01004000 .type = QEMU_OPT_SIZE,
Gerd Hoffmannbb6fb7c2013-06-24 08:39:54 +02004001 },{
4002 .name = "chardev",
4003 .type = QEMU_OPT_STRING,
Paolo Bonzini4d454572012-11-26 16:03:42 +01004004 },
4005 { /* end of list */ }
4006 },
4007};
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004008
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004009#ifdef _WIN32
4010
4011static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
4012{
4013 HANDLE out;
4014
Gerd Hoffmanne859eda2013-06-24 08:39:47 +02004015 if (file->has_in) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004016 error_setg(errp, "input file not supported");
4017 return NULL;
4018 }
4019
4020 out = CreateFile(file->out, GENERIC_WRITE, FILE_SHARE_READ, NULL,
4021 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
4022 if (out == INVALID_HANDLE_VALUE) {
4023 error_setg(errp, "open %s failed", file->out);
4024 return NULL;
4025 }
4026 return qemu_chr_open_win_file(out);
4027}
4028
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004029static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
4030 Error **errp)
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004031{
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004032 return qemu_chr_open_win_path(serial->device);
4033}
4034
4035static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
4036 Error **errp)
4037{
4038 error_setg(errp, "character device backend type 'parallel' not supported");
4039 return NULL;
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004040}
4041
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004042#else /* WIN32 */
4043
4044static int qmp_chardev_open_file_source(char *src, int flags,
4045 Error **errp)
4046{
4047 int fd = -1;
4048
4049 TFR(fd = qemu_open(src, flags, 0666));
4050 if (fd == -1) {
Gerd Hoffmann20c39762013-06-24 08:39:48 +02004051 error_setg_file_open(errp, errno, src);
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004052 }
4053 return fd;
4054}
4055
4056static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
4057{
Markus Armbruster5f758362014-05-19 18:57:34 +02004058 int flags, in = -1, out;
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004059
4060 flags = O_WRONLY | O_TRUNC | O_CREAT | O_BINARY;
4061 out = qmp_chardev_open_file_source(file->out, flags, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004062 if (out < 0) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004063 return NULL;
4064 }
4065
Gerd Hoffmanne859eda2013-06-24 08:39:47 +02004066 if (file->has_in) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004067 flags = O_RDONLY;
4068 in = qmp_chardev_open_file_source(file->in, flags, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004069 if (in < 0) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004070 qemu_close(out);
4071 return NULL;
4072 }
4073 }
4074
4075 return qemu_chr_open_fd(in, out);
4076}
4077
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004078static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
4079 Error **errp)
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004080{
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004081#ifdef HAVE_CHARDEV_TTY
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004082 int fd;
4083
4084 fd = qmp_chardev_open_file_source(serial->device, O_RDWR, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004085 if (fd < 0) {
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004086 return NULL;
4087 }
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01004088 qemu_set_nonblock(fd);
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004089 return qemu_chr_open_tty_fd(fd);
4090#else
4091 error_setg(errp, "character device backend type 'serial' not supported");
4092 return NULL;
4093#endif
4094}
4095
4096static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
4097 Error **errp)
4098{
4099#ifdef HAVE_CHARDEV_PARPORT
4100 int fd;
4101
4102 fd = qmp_chardev_open_file_source(parallel->device, O_RDWR, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004103 if (fd < 0) {
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004104 return NULL;
4105 }
4106 return qemu_chr_open_pp_fd(fd);
4107#else
4108 error_setg(errp, "character device backend type 'parallel' not supported");
4109 return NULL;
4110#endif
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004111}
4112
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004113#endif /* WIN32 */
4114
Corey Minyard5008e5b2014-10-08 07:11:55 -05004115static void socket_try_connect(CharDriverState *chr)
4116{
4117 Error *err = NULL;
4118
4119 if (!qemu_chr_open_socket_fd(chr, &err)) {
4120 check_report_connect_error(chr, err);
4121 }
4122}
4123
Corey Minyard5dd1f022014-10-02 11:17:37 -05004124static gboolean socket_reconnect_timeout(gpointer opaque)
4125{
4126 CharDriverState *chr = opaque;
4127 TCPCharDriver *s = chr->opaque;
Corey Minyard5dd1f022014-10-02 11:17:37 -05004128
4129 s->reconnect_timer = 0;
4130
4131 if (chr->be_open) {
4132 return false;
4133 }
4134
Corey Minyard5008e5b2014-10-08 07:11:55 -05004135 socket_try_connect(chr);
Corey Minyard5dd1f022014-10-02 11:17:37 -05004136
4137 return false;
4138}
4139
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004140static CharDriverState *qmp_chardev_open_socket(ChardevSocket *sock,
4141 Error **errp)
4142{
Corey Minyard43ded1a2014-10-02 11:17:34 -05004143 CharDriverState *chr;
4144 TCPCharDriver *s;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004145 SocketAddress *addr = sock->addr;
4146 bool do_nodelay = sock->has_nodelay ? sock->nodelay : false;
4147 bool is_listen = sock->has_server ? sock->server : true;
4148 bool is_telnet = sock->has_telnet ? sock->telnet : false;
4149 bool is_waitconnect = sock->has_wait ? sock->wait : false;
Corey Minyard5dd1f022014-10-02 11:17:37 -05004150 int64_t reconnect = sock->has_reconnect ? sock->reconnect : 0;
Corey Minyard43ded1a2014-10-02 11:17:34 -05004151
4152 chr = qemu_chr_alloc();
4153 s = g_malloc0(sizeof(TCPCharDriver));
4154
4155 s->fd = -1;
4156 s->listen_fd = -1;
4157 s->is_unix = addr->kind == SOCKET_ADDRESS_KIND_UNIX;
Corey Minyardcfb429c2014-10-02 11:17:35 -05004158 s->is_listen = is_listen;
4159 s->is_telnet = is_telnet;
Corey Minyard43ded1a2014-10-02 11:17:34 -05004160 s->do_nodelay = do_nodelay;
Corey Minyardcfb429c2014-10-02 11:17:35 -05004161 qapi_copy_SocketAddress(&s->addr, sock->addr);
Corey Minyard43ded1a2014-10-02 11:17:34 -05004162
4163 chr->opaque = s;
4164 chr->chr_write = tcp_chr_write;
4165 chr->chr_sync_read = tcp_chr_sync_read;
4166 chr->chr_close = tcp_chr_close;
4167 chr->get_msgfds = tcp_get_msgfds;
4168 chr->set_msgfds = tcp_set_msgfds;
4169 chr->chr_add_client = tcp_chr_add_client;
4170 chr->chr_add_watch = tcp_chr_add_watch;
4171 chr->chr_update_read_handler = tcp_chr_update_read_handler;
4172 /* be isn't opened until we get a connection */
4173 chr->explicit_be_open = true;
4174
4175 chr->filename = g_malloc(CHR_MAX_FILENAME_SIZE);
Corey Minyard16cc4ff2014-10-02 11:17:36 -05004176 SocketAddress_to_str(chr->filename, CHR_MAX_FILENAME_SIZE, "disconnected:",
4177 addr, is_listen, is_telnet);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004178
4179 if (is_listen) {
Corey Minyard43ded1a2014-10-02 11:17:34 -05004180 if (is_telnet) {
4181 s->do_telnetopt = 1;
4182 }
Corey Minyard5dd1f022014-10-02 11:17:37 -05004183 } else if (reconnect > 0) {
4184 s->reconnect_time = reconnect;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004185 }
Corey Minyard43ded1a2014-10-02 11:17:34 -05004186
Corey Minyard5008e5b2014-10-08 07:11:55 -05004187 if (s->reconnect_time) {
4188 socket_try_connect(chr);
4189 } else if (!qemu_chr_open_socket_fd(chr, errp)) {
4190 g_free(s);
4191 g_free(chr->filename);
4192 g_free(chr);
4193 return NULL;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004194 }
Corey Minyard43ded1a2014-10-02 11:17:34 -05004195
4196 if (is_listen && is_waitconnect) {
4197 fprintf(stderr, "QEMU waiting for connection on: %s\n",
4198 chr->filename);
4199 tcp_chr_accept(s->listen_chan, G_IO_IN, chr);
4200 qemu_set_nonblock(s->listen_fd);
4201 }
4202
4203 return chr;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004204}
4205
Lei Li08d0ab32013-05-20 14:51:03 +08004206static CharDriverState *qmp_chardev_open_udp(ChardevUdp *udp,
4207 Error **errp)
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01004208{
4209 int fd;
4210
Lei Li08d0ab32013-05-20 14:51:03 +08004211 fd = socket_dgram(udp->remote, udp->local, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004212 if (fd < 0) {
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01004213 return NULL;
4214 }
4215 return qemu_chr_open_udp_fd(fd);
4216}
4217
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004218ChardevReturn *qmp_chardev_add(const char *id, ChardevBackend *backend,
4219 Error **errp)
4220{
4221 ChardevReturn *ret = g_new0(ChardevReturn, 1);
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01004222 CharDriverState *base, *chr = NULL;
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004223
4224 chr = qemu_chr_find(id);
4225 if (chr) {
4226 error_setg(errp, "Chardev '%s' already exists", id);
4227 g_free(ret);
4228 return NULL;
4229 }
4230
4231 switch (backend->kind) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004232 case CHARDEV_BACKEND_KIND_FILE:
4233 chr = qmp_chardev_open_file(backend->file, errp);
4234 break;
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004235 case CHARDEV_BACKEND_KIND_SERIAL:
4236 chr = qmp_chardev_open_serial(backend->serial, errp);
4237 break;
4238 case CHARDEV_BACKEND_KIND_PARALLEL:
4239 chr = qmp_chardev_open_parallel(backend->parallel, errp);
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004240 break;
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01004241 case CHARDEV_BACKEND_KIND_PIPE:
4242 chr = qemu_chr_open_pipe(backend->pipe);
4243 break;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004244 case CHARDEV_BACKEND_KIND_SOCKET:
4245 chr = qmp_chardev_open_socket(backend->socket, errp);
4246 break;
Lei Li08d0ab32013-05-20 14:51:03 +08004247 case CHARDEV_BACKEND_KIND_UDP:
4248 chr = qmp_chardev_open_udp(backend->udp, errp);
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01004249 break;
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01004250#ifdef HAVE_CHARDEV_TTY
4251 case CHARDEV_BACKEND_KIND_PTY:
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01004252 chr = qemu_chr_open_pty(id, ret);
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01004253 break;
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01004254#endif
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004255 case CHARDEV_BACKEND_KIND_NULL:
Gerd Hoffmann80dca9e2013-02-21 11:41:26 +01004256 chr = qemu_chr_open_null();
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004257 break;
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01004258 case CHARDEV_BACKEND_KIND_MUX:
4259 base = qemu_chr_find(backend->mux->chardev);
4260 if (base == NULL) {
4261 error_setg(errp, "mux: base chardev %s not found",
4262 backend->mux->chardev);
4263 break;
4264 }
4265 chr = qemu_chr_open_mux(base);
4266 break;
Gerd Hoffmannf5a51ca2013-02-21 11:58:44 +01004267 case CHARDEV_BACKEND_KIND_MSMOUSE:
4268 chr = qemu_chr_open_msmouse();
4269 break;
Gerd Hoffmann2d572862013-02-21 12:56:10 +01004270#ifdef CONFIG_BRLAPI
4271 case CHARDEV_BACKEND_KIND_BRAILLE:
4272 chr = chr_baum_init();
4273 break;
4274#endif
Paolo Bonzini56923992014-07-11 09:44:26 +02004275 case CHARDEV_BACKEND_KIND_TESTDEV:
4276 chr = chr_testdev_init();
4277 break;
Gerd Hoffmann7c358032013-02-21 12:34:58 +01004278 case CHARDEV_BACKEND_KIND_STDIO:
4279 chr = qemu_chr_open_stdio(backend->stdio);
4280 break;
Gerd Hoffmannd9ac3742013-02-25 11:48:06 +01004281#ifdef _WIN32
4282 case CHARDEV_BACKEND_KIND_CONSOLE:
4283 chr = qemu_chr_open_win_con();
4284 break;
4285#endif
Gerd Hoffmanncd153e22013-02-25 12:39:06 +01004286#ifdef CONFIG_SPICE
4287 case CHARDEV_BACKEND_KIND_SPICEVMC:
4288 chr = qemu_chr_open_spice_vmc(backend->spicevmc->type);
4289 break;
4290 case CHARDEV_BACKEND_KIND_SPICEPORT:
4291 chr = qemu_chr_open_spice_port(backend->spiceport->fqdn);
4292 break;
4293#endif
Gerd Hoffmann702ec692013-02-25 15:52:32 +01004294 case CHARDEV_BACKEND_KIND_VC:
4295 chr = vc_init(backend->vc);
4296 break;
Markus Armbruster3a1da422013-07-26 16:44:34 +02004297 case CHARDEV_BACKEND_KIND_RINGBUF:
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01004298 case CHARDEV_BACKEND_KIND_MEMORY:
Markus Armbruster3a1da422013-07-26 16:44:34 +02004299 chr = qemu_chr_open_ringbuf(backend->ringbuf, errp);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01004300 break;
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004301 default:
4302 error_setg(errp, "unknown chardev backend (%d)", backend->kind);
4303 break;
4304 }
4305
Markus Armbruster3894c782014-05-19 18:57:36 +02004306 /*
4307 * Character backend open hasn't been fully converted to the Error
4308 * API. Some opens fail without setting an error. Set a generic
4309 * error then.
4310 * TODO full conversion to Error API
4311 */
4312 if (chr == NULL && errp && !*errp) {
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004313 error_setg(errp, "Failed to create chardev");
4314 }
4315 if (chr) {
4316 chr->label = g_strdup(id);
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01004317 chr->avail_connections =
4318 (backend->kind == CHARDEV_BACKEND_KIND_MUX) ? MAX_MUX : 1;
Gerd Hoffmann60d95382013-05-27 12:41:24 +02004319 if (!chr->filename) {
4320 chr->filename = g_strdup(ChardevBackendKind_lookup[backend->kind]);
4321 }
Michael Rothbd5c51e2013-06-07 15:19:53 -05004322 if (!chr->explicit_be_open) {
4323 qemu_chr_be_event(chr, CHR_EVENT_OPENED);
4324 }
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004325 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
4326 return ret;
4327 } else {
4328 g_free(ret);
4329 return NULL;
4330 }
4331}
4332
4333void qmp_chardev_remove(const char *id, Error **errp)
4334{
4335 CharDriverState *chr;
4336
4337 chr = qemu_chr_find(id);
Gonglei8108fd32014-08-11 21:00:55 +08004338 if (chr == NULL) {
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004339 error_setg(errp, "Chardev '%s' not found", id);
4340 return;
4341 }
4342 if (chr->chr_can_read || chr->chr_read ||
4343 chr->chr_event || chr->handler_opaque) {
4344 error_setg(errp, "Chardev '%s' is busy", id);
4345 return;
4346 }
4347 qemu_chr_delete(chr);
4348}
Anthony Liguorid654f342013-03-05 23:21:28 +05304349
4350static void register_types(void)
4351{
Peter Maydelle4d50d42014-09-02 11:24:17 +01004352 register_char_driver("null", CHARDEV_BACKEND_KIND_NULL, NULL);
4353 register_char_driver("socket", CHARDEV_BACKEND_KIND_SOCKET,
4354 qemu_chr_parse_socket);
4355 register_char_driver("udp", CHARDEV_BACKEND_KIND_UDP, qemu_chr_parse_udp);
4356 register_char_driver("ringbuf", CHARDEV_BACKEND_KIND_RINGBUF,
4357 qemu_chr_parse_ringbuf);
4358 register_char_driver("file", CHARDEV_BACKEND_KIND_FILE,
4359 qemu_chr_parse_file_out);
4360 register_char_driver("stdio", CHARDEV_BACKEND_KIND_STDIO,
4361 qemu_chr_parse_stdio);
4362 register_char_driver("serial", CHARDEV_BACKEND_KIND_SERIAL,
4363 qemu_chr_parse_serial);
4364 register_char_driver("tty", CHARDEV_BACKEND_KIND_SERIAL,
4365 qemu_chr_parse_serial);
4366 register_char_driver("parallel", CHARDEV_BACKEND_KIND_PARALLEL,
4367 qemu_chr_parse_parallel);
4368 register_char_driver("parport", CHARDEV_BACKEND_KIND_PARALLEL,
4369 qemu_chr_parse_parallel);
4370 register_char_driver("pty", CHARDEV_BACKEND_KIND_PTY, NULL);
4371 register_char_driver("console", CHARDEV_BACKEND_KIND_CONSOLE, NULL);
4372 register_char_driver("pipe", CHARDEV_BACKEND_KIND_PIPE,
4373 qemu_chr_parse_pipe);
4374 register_char_driver("mux", CHARDEV_BACKEND_KIND_MUX, qemu_chr_parse_mux);
Markus Armbrusterc11ed962013-07-26 16:44:33 +02004375 /* Bug-compatibility: */
Peter Maydelle4d50d42014-09-02 11:24:17 +01004376 register_char_driver("memory", CHARDEV_BACKEND_KIND_MEMORY,
4377 qemu_chr_parse_ringbuf);
Michael Roth7b7ab182013-07-30 13:04:22 -05004378 /* this must be done after machine init, since we register FEs with muxes
4379 * as part of realize functions like serial_isa_realizefn when -nographic
4380 * is specified
4381 */
4382 qemu_add_machine_init_done_notifier(&muxes_realize_notify);
Anthony Liguorid654f342013-03-05 23:21:28 +05304383}
4384
4385type_init(register_types);