blob: 66703e3f0af1ac705a129422556220723ac5f9cf [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 <netdb.h>
55#include <sys/select.h>
Juan Quintela71e72a12009-07-27 16:12:56 +020056#ifdef CONFIG_BSD
aliguori6f97dba2008-10-31 18:49:55 +000057#include <sys/stat.h>
Michael Tokarev3294ce12012-06-02 23:43:33 +040058#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
59#include <dev/ppbus/ppi.h>
60#include <dev/ppbus/ppbconf.h>
61#elif defined(__DragonFly__)
62#include <dev/misc/ppi/ppi.h>
63#include <bus/ppbus/ppbconf.h>
64#endif
Aurelien Jarnobbe813a2009-11-30 15:42:59 +010065#else
aliguori6f97dba2008-10-31 18:49:55 +000066#ifdef __linux__
aliguori6f97dba2008-10-31 18:49:55 +000067#include <linux/ppdev.h>
68#include <linux/parport.h>
69#endif
70#ifdef __sun__
71#include <sys/stat.h>
72#include <sys/ethernet.h>
73#include <sys/sockio.h>
74#include <netinet/arp.h>
75#include <netinet/in.h>
76#include <netinet/in_systm.h>
77#include <netinet/ip.h>
78#include <netinet/ip_icmp.h> // must come after ip.h
79#include <netinet/udp.h>
80#include <netinet/tcp.h>
aliguori6f97dba2008-10-31 18:49:55 +000081#endif
82#endif
83#endif
84
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010085#include "qemu/sockets.h"
Alon Levycbcc6332011-01-19 10:49:50 +020086#include "ui/qemu-spice.h"
aliguori6f97dba2008-10-31 18:49:55 +000087
Amit Shah9bd78542009-11-03 19:59:54 +053088#define READ_BUF_LEN 4096
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +030089#define READ_RETRIES 10
Corey Minyard9f781162014-10-02 11:17:33 -050090#define CHR_MAX_FILENAME_SIZE 256
Michael S. Tsirkinc4095722014-11-02 18:48:32 +020091#define TCP_MAX_FDS 16
Amit Shah9bd78542009-11-03 19:59:54 +053092
aliguori6f97dba2008-10-31 18:49:55 +000093/***********************************************************/
Corey Minyardcfb429c2014-10-02 11:17:35 -050094/* Socket address helpers */
Corey Minyardcfb429c2014-10-02 11:17:35 -050095
Corey Minyard16cc4ff2014-10-02 11:17:36 -050096static int SocketAddress_to_str(char *dest, int max_len,
97 const char *prefix, SocketAddress *addr,
98 bool is_listen, bool is_telnet)
99{
Eric Blake130257d2015-10-26 16:34:57 -0600100 switch (addr->type) {
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500101 case SOCKET_ADDRESS_KIND_INET:
102 return snprintf(dest, max_len, "%s%s:%s:%s%s", prefix,
Eric Blake130257d2015-10-26 16:34:57 -0600103 is_telnet ? "telnet" : "tcp", addr->u.inet->host,
104 addr->u.inet->port, is_listen ? ",server" : "");
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500105 break;
106 case SOCKET_ADDRESS_KIND_UNIX:
107 return snprintf(dest, max_len, "%sunix:%s%s", prefix,
Eric Blake130257d2015-10-26 16:34:57 -0600108 addr->u.q_unix->path, is_listen ? ",server" : "");
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500109 break;
110 case SOCKET_ADDRESS_KIND_FD:
Eric Blake130257d2015-10-26 16:34:57 -0600111 return snprintf(dest, max_len, "%sfd:%s%s", prefix, addr->u.fd->str,
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500112 is_listen ? ",server" : "");
113 break;
114 default:
115 abort();
116 }
117}
118
119static int sockaddr_to_str(char *dest, int max_len,
120 struct sockaddr_storage *ss, socklen_t ss_len,
Corey Minyard01ca5192014-10-02 11:17:38 -0500121 struct sockaddr_storage *ps, socklen_t ps_len,
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500122 bool is_listen, bool is_telnet)
123{
Corey Minyard01ca5192014-10-02 11:17:38 -0500124 char shost[NI_MAXHOST], sserv[NI_MAXSERV];
125 char phost[NI_MAXHOST], pserv[NI_MAXSERV];
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500126 const char *left = "", *right = "";
127
128 switch (ss->ss_family) {
129#ifndef _WIN32
130 case AF_UNIX:
131 return snprintf(dest, max_len, "unix:%s%s",
132 ((struct sockaddr_un *)(ss))->sun_path,
133 is_listen ? ",server" : "");
134#endif
135 case AF_INET6:
136 left = "[";
137 right = "]";
138 /* fall through */
139 case AF_INET:
Corey Minyard01ca5192014-10-02 11:17:38 -0500140 getnameinfo((struct sockaddr *) ss, ss_len, shost, sizeof(shost),
141 sserv, sizeof(sserv), NI_NUMERICHOST | NI_NUMERICSERV);
142 getnameinfo((struct sockaddr *) ps, ps_len, phost, sizeof(phost),
143 pserv, sizeof(pserv), NI_NUMERICHOST | NI_NUMERICSERV);
144 return snprintf(dest, max_len, "%s:%s%s%s:%s%s <-> %s%s%s:%s",
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500145 is_telnet ? "telnet" : "tcp",
Corey Minyard01ca5192014-10-02 11:17:38 -0500146 left, shost, right, sserv,
147 is_listen ? ",server" : "",
148 left, phost, right, pserv);
Corey Minyard16cc4ff2014-10-02 11:17:36 -0500149
150 default:
151 return snprintf(dest, max_len, "unknown");
152 }
153}
154
Corey Minyardcfb429c2014-10-02 11:17:35 -0500155/***********************************************************/
aliguori6f97dba2008-10-31 18:49:55 +0000156/* character device */
157
Blue Swirl72cf2d42009-09-12 07:36:22 +0000158static QTAILQ_HEAD(CharDriverStateHead, CharDriverState) chardevs =
159 QTAILQ_HEAD_INITIALIZER(chardevs);
aliguori2970a6c2009-03-05 22:59:58 +0000160
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200161CharDriverState *qemu_chr_alloc(void)
162{
163 CharDriverState *chr = g_malloc0(sizeof(CharDriverState));
Paolo Bonzinif3db17b2014-06-25 09:04:57 +0200164 qemu_mutex_init(&chr->chr_write_lock);
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200165 return chr;
166}
167
Hans de Goedea425d232011-11-19 10:22:43 +0100168void qemu_chr_be_event(CharDriverState *s, int event)
aliguori6f97dba2008-10-31 18:49:55 +0000169{
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200170 /* Keep track if the char device is open */
171 switch (event) {
172 case CHR_EVENT_OPENED:
Hans de Goede16665b92013-03-26 11:07:53 +0100173 s->be_open = 1;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200174 break;
175 case CHR_EVENT_CLOSED:
Hans de Goede16665b92013-03-26 11:07:53 +0100176 s->be_open = 0;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200177 break;
178 }
179
aliguori6f97dba2008-10-31 18:49:55 +0000180 if (!s->chr_event)
181 return;
182 s->chr_event(s->handler_opaque, event);
183}
184
Hans de Goedefee204f2013-03-26 11:07:54 +0100185void qemu_chr_be_generic_open(CharDriverState *s)
aliguori6f97dba2008-10-31 18:49:55 +0000186{
Michael Rothbd5c51e2013-06-07 15:19:53 -0500187 qemu_chr_be_event(s, CHR_EVENT_OPENED);
aliguori6f97dba2008-10-31 18:49:55 +0000188}
189
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500190int qemu_chr_fe_write(CharDriverState *s, const uint8_t *buf, int len)
aliguori6f97dba2008-10-31 18:49:55 +0000191{
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200192 int ret;
193
194 qemu_mutex_lock(&s->chr_write_lock);
195 ret = s->chr_write(s, buf, len);
196 qemu_mutex_unlock(&s->chr_write_lock);
197 return ret;
aliguori6f97dba2008-10-31 18:49:55 +0000198}
199
Anthony Liguoricd187202013-03-26 10:04:17 -0500200int qemu_chr_fe_write_all(CharDriverState *s, const uint8_t *buf, int len)
201{
202 int offset = 0;
Igor Mammedov09313042014-06-25 10:00:41 +0200203 int res = 0;
Anthony Liguoricd187202013-03-26 10:04:17 -0500204
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200205 qemu_mutex_lock(&s->chr_write_lock);
Anthony Liguoricd187202013-03-26 10:04:17 -0500206 while (offset < len) {
207 do {
208 res = s->chr_write(s, buf + offset, len - offset);
209 if (res == -1 && errno == EAGAIN) {
210 g_usleep(100);
211 }
212 } while (res == -1 && errno == EAGAIN);
213
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200214 if (res <= 0) {
Anthony Liguoricd187202013-03-26 10:04:17 -0500215 break;
216 }
217
Anthony Liguoricd187202013-03-26 10:04:17 -0500218 offset += res;
219 }
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200220 qemu_mutex_unlock(&s->chr_write_lock);
Anthony Liguoricd187202013-03-26 10:04:17 -0500221
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200222 if (res < 0) {
223 return res;
224 }
Anthony Liguoricd187202013-03-26 10:04:17 -0500225 return offset;
226}
227
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +0300228int qemu_chr_fe_read_all(CharDriverState *s, uint8_t *buf, int len)
229{
230 int offset = 0, counter = 10;
231 int res;
232
233 if (!s->chr_sync_read) {
234 return 0;
235 }
236
237 while (offset < len) {
238 do {
239 res = s->chr_sync_read(s, buf + offset, len - offset);
240 if (res == -1 && errno == EAGAIN) {
241 g_usleep(100);
242 }
243 } while (res == -1 && errno == EAGAIN);
244
245 if (res == 0) {
246 break;
247 }
248
249 if (res < 0) {
250 return res;
251 }
252
253 offset += res;
254
255 if (!counter--) {
256 break;
257 }
258 }
259
260 return offset;
261}
262
Anthony Liguori41084f12011-08-15 11:17:34 -0500263int qemu_chr_fe_ioctl(CharDriverState *s, int cmd, void *arg)
aliguori6f97dba2008-10-31 18:49:55 +0000264{
265 if (!s->chr_ioctl)
266 return -ENOTSUP;
267 return s->chr_ioctl(s, cmd, arg);
268}
269
Anthony Liguori909cda12011-08-15 11:17:31 -0500270int qemu_chr_be_can_write(CharDriverState *s)
aliguori6f97dba2008-10-31 18:49:55 +0000271{
272 if (!s->chr_can_read)
273 return 0;
274 return s->chr_can_read(s->handler_opaque);
275}
276
Anthony Liguorifa5efcc2011-08-15 11:17:30 -0500277void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len)
aliguori6f97dba2008-10-31 18:49:55 +0000278{
Stefan Weilac310732012-04-19 22:27:14 +0200279 if (s->chr_read) {
280 s->chr_read(s->handler_opaque, buf, len);
281 }
aliguori6f97dba2008-10-31 18:49:55 +0000282}
283
Anthony Liguori74c0d6f2011-08-15 11:17:39 -0500284int qemu_chr_fe_get_msgfd(CharDriverState *s)
Mark McLoughlin7d174052009-07-22 09:11:39 +0100285{
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +0300286 int fd;
Stefan Hajnoczi4f858612014-06-22 10:38:36 +0800287 return (qemu_chr_fe_get_msgfds(s, &fd, 1) == 1) ? fd : -1;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +0300288}
289
290int qemu_chr_fe_get_msgfds(CharDriverState *s, int *fds, int len)
291{
292 return s->get_msgfds ? s->get_msgfds(s, fds, len) : -1;
Mark McLoughlin7d174052009-07-22 09:11:39 +0100293}
294
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +0300295int qemu_chr_fe_set_msgfds(CharDriverState *s, int *fds, int num)
296{
297 return s->set_msgfds ? s->set_msgfds(s, fds, num) : -1;
298}
299
Daniel P. Berrange13661082011-06-23 13:31:42 +0100300int qemu_chr_add_client(CharDriverState *s, int fd)
301{
302 return s->chr_add_client ? s->chr_add_client(s, fd) : -1;
303}
304
aliguori6f97dba2008-10-31 18:49:55 +0000305void qemu_chr_accept_input(CharDriverState *s)
306{
307 if (s->chr_accept_input)
308 s->chr_accept_input(s);
Jan Kiszka98c8ee12012-03-16 13:18:00 +0100309 qemu_notify_event();
aliguori6f97dba2008-10-31 18:49:55 +0000310}
311
Anthony Liguorie7e71b02011-08-15 11:17:29 -0500312void qemu_chr_fe_printf(CharDriverState *s, const char *fmt, ...)
aliguori6f97dba2008-10-31 18:49:55 +0000313{
Amit Shah9bd78542009-11-03 19:59:54 +0530314 char buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +0000315 va_list ap;
316 va_start(ap, fmt);
317 vsnprintf(buf, sizeof(buf), fmt, ap);
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500318 qemu_chr_fe_write(s, (uint8_t *)buf, strlen(buf));
aliguori6f97dba2008-10-31 18:49:55 +0000319 va_end(ap);
320}
321
Amit Shah386a5a12013-08-28 15:24:05 +0530322static void remove_fd_in_watch(CharDriverState *chr);
323
aliguori6f97dba2008-10-31 18:49:55 +0000324void qemu_chr_add_handlers(CharDriverState *s,
Juan Quintela7b27a762010-03-11 17:55:39 +0100325 IOCanReadHandler *fd_can_read,
aliguori6f97dba2008-10-31 18:49:55 +0000326 IOReadHandler *fd_read,
327 IOEventHandler *fd_event,
328 void *opaque)
329{
Hans de Goede19083222013-03-26 11:07:56 +0100330 int fe_open;
331
Amit Shahda7d9982011-04-25 15:18:22 +0530332 if (!opaque && !fd_can_read && !fd_read && !fd_event) {
Hans de Goede19083222013-03-26 11:07:56 +0100333 fe_open = 0;
Amit Shah386a5a12013-08-28 15:24:05 +0530334 remove_fd_in_watch(s);
Hans de Goede19083222013-03-26 11:07:56 +0100335 } else {
336 fe_open = 1;
Amit Shah2d6c1ef2011-02-10 12:55:20 +0530337 }
aliguori6f97dba2008-10-31 18:49:55 +0000338 s->chr_can_read = fd_can_read;
339 s->chr_read = fd_read;
340 s->chr_event = fd_event;
341 s->handler_opaque = opaque;
Gal Hammerac1b84d2014-02-25 12:12:35 +0200342 if (fe_open && s->chr_update_read_handler)
aliguori6f97dba2008-10-31 18:49:55 +0000343 s->chr_update_read_handler(s);
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200344
Hans de Goede19083222013-03-26 11:07:56 +0100345 if (!s->explicit_fe_open) {
Hans de Goede8e25daa2013-03-26 11:07:57 +0100346 qemu_chr_fe_set_open(s, fe_open);
Hans de Goede19083222013-03-26 11:07:56 +0100347 }
348
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200349 /* We're connecting to an already opened device, so let's make sure we
350 also get the open event */
Hans de Goedea59bcd32013-03-26 11:08:00 +0100351 if (fe_open && s->be_open) {
Hans de Goedefee204f2013-03-26 11:07:54 +0100352 qemu_chr_be_generic_open(s);
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200353 }
aliguori6f97dba2008-10-31 18:49:55 +0000354}
355
356static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
357{
358 return len;
359}
360
Paolo Bonzini0d649922015-09-29 15:24:29 +0200361static CharDriverState *qemu_chr_open_null(const char *id,
362 ChardevBackend *backend,
363 ChardevReturn *ret,
364 Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +0000365{
366 CharDriverState *chr;
367
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200368 chr = qemu_chr_alloc();
aliguori6f97dba2008-10-31 18:49:55 +0000369 chr->chr_write = null_chr_write;
Michael Rothbd5c51e2013-06-07 15:19:53 -0500370 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +0100371 return chr;
aliguori6f97dba2008-10-31 18:49:55 +0000372}
373
374/* MUX driver for serial I/O splitting */
aliguori6f97dba2008-10-31 18:49:55 +0000375#define MAX_MUX 4
376#define MUX_BUFFER_SIZE 32 /* Must be a power of 2. */
377#define MUX_BUFFER_MASK (MUX_BUFFER_SIZE - 1)
378typedef struct {
Juan Quintela7b27a762010-03-11 17:55:39 +0100379 IOCanReadHandler *chr_can_read[MAX_MUX];
aliguori6f97dba2008-10-31 18:49:55 +0000380 IOReadHandler *chr_read[MAX_MUX];
381 IOEventHandler *chr_event[MAX_MUX];
382 void *ext_opaque[MAX_MUX];
383 CharDriverState *drv;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200384 int focus;
aliguori6f97dba2008-10-31 18:49:55 +0000385 int mux_cnt;
386 int term_got_escape;
387 int max_size;
aliguoria80bf992009-03-05 23:00:02 +0000388 /* Intermediate input buffer allows to catch escape sequences even if the
389 currently active device is not accepting any input - but only until it
390 is full as well. */
391 unsigned char buffer[MAX_MUX][MUX_BUFFER_SIZE];
392 int prod[MAX_MUX];
393 int cons[MAX_MUX];
Jan Kiszka2d229592009-06-15 22:25:30 +0200394 int timestamps;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200395
396 /* Protected by the CharDriverState chr_write_lock. */
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200397 int linestart;
Jan Kiszka2d229592009-06-15 22:25:30 +0200398 int64_t timestamps_start;
aliguori6f97dba2008-10-31 18:49:55 +0000399} MuxDriver;
400
401
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200402/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +0000403static int mux_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
404{
405 MuxDriver *d = chr->opaque;
406 int ret;
Jan Kiszka2d229592009-06-15 22:25:30 +0200407 if (!d->timestamps) {
Paolo Bonzini6975b712014-06-18 08:43:56 +0200408 ret = qemu_chr_fe_write(d->drv, buf, len);
aliguori6f97dba2008-10-31 18:49:55 +0000409 } else {
410 int i;
411
412 ret = 0;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200413 for (i = 0; i < len; i++) {
414 if (d->linestart) {
aliguori6f97dba2008-10-31 18:49:55 +0000415 char buf1[64];
416 int64_t ti;
417 int secs;
418
Alex Blighbc72ad62013-08-21 16:03:08 +0100419 ti = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Jan Kiszka2d229592009-06-15 22:25:30 +0200420 if (d->timestamps_start == -1)
421 d->timestamps_start = ti;
422 ti -= d->timestamps_start;
aliguoria4bb1db2009-01-22 17:15:16 +0000423 secs = ti / 1000;
aliguori6f97dba2008-10-31 18:49:55 +0000424 snprintf(buf1, sizeof(buf1),
425 "[%02d:%02d:%02d.%03d] ",
426 secs / 3600,
427 (secs / 60) % 60,
428 secs % 60,
aliguoria4bb1db2009-01-22 17:15:16 +0000429 (int)(ti % 1000));
Paolo Bonzini6975b712014-06-18 08:43:56 +0200430 qemu_chr_fe_write(d->drv, (uint8_t *)buf1, strlen(buf1));
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200431 d->linestart = 0;
432 }
Paolo Bonzini6975b712014-06-18 08:43:56 +0200433 ret += qemu_chr_fe_write(d->drv, buf+i, 1);
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200434 if (buf[i] == '\n') {
435 d->linestart = 1;
aliguori6f97dba2008-10-31 18:49:55 +0000436 }
437 }
438 }
439 return ret;
440}
441
442static const char * const mux_help[] = {
443 "% h print this help\n\r",
444 "% x exit emulator\n\r",
445 "% s save disk data back to file (if -snapshot)\n\r",
Gonglei86d10322014-11-15 18:06:46 +0800446 "% t toggle console timestamps\n\r",
aliguori6f97dba2008-10-31 18:49:55 +0000447 "% b send break (magic sysrq)\n\r",
448 "% c switch between console and monitor\n\r",
449 "% % sends %\n\r",
450 NULL
451};
452
453int term_escape_char = 0x01; /* ctrl-a is used for escape */
454static void mux_print_help(CharDriverState *chr)
455{
456 int i, j;
457 char ebuf[15] = "Escape-Char";
458 char cbuf[50] = "\n\r";
459
460 if (term_escape_char > 0 && term_escape_char < 26) {
461 snprintf(cbuf, sizeof(cbuf), "\n\r");
462 snprintf(ebuf, sizeof(ebuf), "C-%c", term_escape_char - 1 + 'a');
463 } else {
464 snprintf(cbuf, sizeof(cbuf),
465 "\n\rEscape-Char set to Ascii: 0x%02x\n\r\n\r",
466 term_escape_char);
467 }
Paolo Bonzini6975b712014-06-18 08:43:56 +0200468 qemu_chr_fe_write(chr, (uint8_t *)cbuf, strlen(cbuf));
aliguori6f97dba2008-10-31 18:49:55 +0000469 for (i = 0; mux_help[i] != NULL; i++) {
470 for (j=0; mux_help[i][j] != '\0'; j++) {
471 if (mux_help[i][j] == '%')
Paolo Bonzini6975b712014-06-18 08:43:56 +0200472 qemu_chr_fe_write(chr, (uint8_t *)ebuf, strlen(ebuf));
aliguori6f97dba2008-10-31 18:49:55 +0000473 else
Paolo Bonzini6975b712014-06-18 08:43:56 +0200474 qemu_chr_fe_write(chr, (uint8_t *)&mux_help[i][j], 1);
aliguori6f97dba2008-10-31 18:49:55 +0000475 }
476 }
477}
478
aliguori2724b182009-03-05 23:01:47 +0000479static void mux_chr_send_event(MuxDriver *d, int mux_nr, int event)
480{
481 if (d->chr_event[mux_nr])
482 d->chr_event[mux_nr](d->ext_opaque[mux_nr], event);
483}
484
aliguori6f97dba2008-10-31 18:49:55 +0000485static int mux_proc_byte(CharDriverState *chr, MuxDriver *d, int ch)
486{
487 if (d->term_got_escape) {
488 d->term_got_escape = 0;
489 if (ch == term_escape_char)
490 goto send_char;
491 switch(ch) {
492 case '?':
493 case 'h':
494 mux_print_help(chr);
495 break;
496 case 'x':
497 {
498 const char *term = "QEMU: Terminated\n\r";
Paolo Bonzini6975b712014-06-18 08:43:56 +0200499 qemu_chr_fe_write(chr, (uint8_t *)term, strlen(term));
aliguori6f97dba2008-10-31 18:49:55 +0000500 exit(0);
501 break;
502 }
503 case 's':
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +0200504 bdrv_commit_all();
aliguori6f97dba2008-10-31 18:49:55 +0000505 break;
506 case 'b':
Hans de Goedea425d232011-11-19 10:22:43 +0100507 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
aliguori6f97dba2008-10-31 18:49:55 +0000508 break;
509 case 'c':
510 /* Switch to the next registered device */
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200511 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
512 d->focus++;
513 if (d->focus >= d->mux_cnt)
514 d->focus = 0;
515 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
aliguori6f97dba2008-10-31 18:49:55 +0000516 break;
Jan Kiszka2d229592009-06-15 22:25:30 +0200517 case 't':
518 d->timestamps = !d->timestamps;
519 d->timestamps_start = -1;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200520 d->linestart = 0;
Jan Kiszka2d229592009-06-15 22:25:30 +0200521 break;
aliguori6f97dba2008-10-31 18:49:55 +0000522 }
523 } else if (ch == term_escape_char) {
524 d->term_got_escape = 1;
525 } else {
526 send_char:
527 return 1;
528 }
529 return 0;
530}
531
532static void mux_chr_accept_input(CharDriverState *chr)
533{
aliguori6f97dba2008-10-31 18:49:55 +0000534 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200535 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000536
aliguoria80bf992009-03-05 23:00:02 +0000537 while (d->prod[m] != d->cons[m] &&
aliguori6f97dba2008-10-31 18:49:55 +0000538 d->chr_can_read[m] &&
539 d->chr_can_read[m](d->ext_opaque[m])) {
540 d->chr_read[m](d->ext_opaque[m],
aliguoria80bf992009-03-05 23:00:02 +0000541 &d->buffer[m][d->cons[m]++ & MUX_BUFFER_MASK], 1);
aliguori6f97dba2008-10-31 18:49:55 +0000542 }
543}
544
545static int mux_chr_can_read(void *opaque)
546{
547 CharDriverState *chr = opaque;
548 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200549 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000550
aliguoria80bf992009-03-05 23:00:02 +0000551 if ((d->prod[m] - d->cons[m]) < MUX_BUFFER_SIZE)
aliguori6f97dba2008-10-31 18:49:55 +0000552 return 1;
aliguoria80bf992009-03-05 23:00:02 +0000553 if (d->chr_can_read[m])
554 return d->chr_can_read[m](d->ext_opaque[m]);
aliguori6f97dba2008-10-31 18:49:55 +0000555 return 0;
556}
557
558static void mux_chr_read(void *opaque, const uint8_t *buf, int size)
559{
560 CharDriverState *chr = opaque;
561 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200562 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000563 int i;
564
565 mux_chr_accept_input (opaque);
566
567 for(i = 0; i < size; i++)
568 if (mux_proc_byte(chr, d, buf[i])) {
aliguoria80bf992009-03-05 23:00:02 +0000569 if (d->prod[m] == d->cons[m] &&
aliguori6f97dba2008-10-31 18:49:55 +0000570 d->chr_can_read[m] &&
571 d->chr_can_read[m](d->ext_opaque[m]))
572 d->chr_read[m](d->ext_opaque[m], &buf[i], 1);
573 else
aliguoria80bf992009-03-05 23:00:02 +0000574 d->buffer[m][d->prod[m]++ & MUX_BUFFER_MASK] = buf[i];
aliguori6f97dba2008-10-31 18:49:55 +0000575 }
576}
577
578static void mux_chr_event(void *opaque, int event)
579{
580 CharDriverState *chr = opaque;
581 MuxDriver *d = chr->opaque;
582 int i;
583
584 /* Send the event to all registered listeners */
585 for (i = 0; i < d->mux_cnt; i++)
aliguori2724b182009-03-05 23:01:47 +0000586 mux_chr_send_event(d, i, event);
aliguori6f97dba2008-10-31 18:49:55 +0000587}
588
589static void mux_chr_update_read_handler(CharDriverState *chr)
590{
591 MuxDriver *d = chr->opaque;
592
593 if (d->mux_cnt >= MAX_MUX) {
594 fprintf(stderr, "Cannot add I/O handlers, MUX array is full\n");
595 return;
596 }
597 d->ext_opaque[d->mux_cnt] = chr->handler_opaque;
598 d->chr_can_read[d->mux_cnt] = chr->chr_can_read;
599 d->chr_read[d->mux_cnt] = chr->chr_read;
600 d->chr_event[d->mux_cnt] = chr->chr_event;
601 /* Fix up the real driver with mux routines */
602 if (d->mux_cnt == 0) {
603 qemu_chr_add_handlers(d->drv, mux_chr_can_read, mux_chr_read,
604 mux_chr_event, chr);
605 }
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200606 if (d->focus != -1) {
607 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200608 }
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200609 d->focus = d->mux_cnt;
aliguori6f97dba2008-10-31 18:49:55 +0000610 d->mux_cnt++;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200611 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
aliguori6f97dba2008-10-31 18:49:55 +0000612}
613
Michael Roth7b7ab182013-07-30 13:04:22 -0500614static bool muxes_realized;
615
616/**
617 * Called after processing of default and command-line-specified
618 * chardevs to deliver CHR_EVENT_OPENED events to any FEs attached
619 * to a mux chardev. This is done here to ensure that
620 * output/prompts/banners are only displayed for the FE that has
621 * focus when initial command-line processing/machine init is
622 * completed.
623 *
624 * After this point, any new FE attached to any new or existing
625 * mux will receive CHR_EVENT_OPENED notifications for the BE
626 * immediately.
627 */
628static void muxes_realize_done(Notifier *notifier, void *unused)
629{
630 CharDriverState *chr;
631
632 QTAILQ_FOREACH(chr, &chardevs, next) {
633 if (chr->is_mux) {
634 MuxDriver *d = chr->opaque;
635 int i;
636
637 /* send OPENED to all already-attached FEs */
638 for (i = 0; i < d->mux_cnt; i++) {
639 mux_chr_send_event(d, i, CHR_EVENT_OPENED);
640 }
641 /* mark mux as OPENED so any new FEs will immediately receive
642 * OPENED event
643 */
644 qemu_chr_be_generic_open(chr);
645 }
646 }
647 muxes_realized = true;
648}
649
650static Notifier muxes_realize_notify = {
651 .notify = muxes_realize_done,
652};
653
Kirill Batuzov3f0838a2014-07-04 16:43:15 +0400654static GSource *mux_chr_add_watch(CharDriverState *s, GIOCondition cond)
655{
656 MuxDriver *d = s->opaque;
657 return d->drv->chr_add_watch(d->drv, cond);
658}
659
Paolo Bonzini3c0e5a42015-09-29 15:27:24 +0200660static CharDriverState *qemu_chr_open_mux(const char *id,
661 ChardevBackend *backend,
662 ChardevReturn *ret, Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +0000663{
Eric Blake130257d2015-10-26 16:34:57 -0600664 ChardevMux *mux = backend->u.mux;
Paolo Bonzini3c0e5a42015-09-29 15:27:24 +0200665 CharDriverState *chr, *drv;
aliguori6f97dba2008-10-31 18:49:55 +0000666 MuxDriver *d;
667
Paolo Bonzini3c0e5a42015-09-29 15:27:24 +0200668 drv = qemu_chr_find(mux->chardev);
669 if (drv == NULL) {
670 error_setg(errp, "mux: base chardev %s not found", mux->chardev);
671 return NULL;
672 }
673
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200674 chr = qemu_chr_alloc();
Markus Armbruster2d528d42015-09-14 13:54:03 +0200675 d = g_new0(MuxDriver, 1);
aliguori6f97dba2008-10-31 18:49:55 +0000676
677 chr->opaque = d;
678 d->drv = drv;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200679 d->focus = -1;
aliguori6f97dba2008-10-31 18:49:55 +0000680 chr->chr_write = mux_chr_write;
681 chr->chr_update_read_handler = mux_chr_update_read_handler;
682 chr->chr_accept_input = mux_chr_accept_input;
Hans de Goede7c32c4f2011-03-24 11:12:02 +0100683 /* Frontend guest-open / -close notification is not support with muxes */
Hans de Goede574b7112013-03-26 11:07:58 +0100684 chr->chr_set_fe_open = NULL;
Kirill Batuzov3f0838a2014-07-04 16:43:15 +0400685 if (drv->chr_add_watch) {
686 chr->chr_add_watch = mux_chr_add_watch;
687 }
Michael Roth7b7ab182013-07-30 13:04:22 -0500688 /* only default to opened state if we've realized the initial
689 * set of muxes
690 */
691 chr->explicit_be_open = muxes_realized ? 0 : 1;
692 chr->is_mux = 1;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200693
aliguori6f97dba2008-10-31 18:49:55 +0000694 return chr;
695}
696
697
698#ifdef _WIN32
aliguorid247d252008-11-11 20:46:40 +0000699int send_all(int fd, const void *buf, int len1)
aliguori6f97dba2008-10-31 18:49:55 +0000700{
701 int ret, len;
702
703 len = len1;
704 while (len > 0) {
705 ret = send(fd, buf, len, 0);
706 if (ret < 0) {
aliguori6f97dba2008-10-31 18:49:55 +0000707 errno = WSAGetLastError();
708 if (errno != WSAEWOULDBLOCK) {
709 return -1;
710 }
711 } else if (ret == 0) {
712 break;
713 } else {
714 buf += ret;
715 len -= ret;
716 }
717 }
718 return len1 - len;
719}
720
721#else
722
Jes Sorensen5fc9cfe2010-11-01 20:02:23 +0100723int send_all(int fd, const void *_buf, int len1)
aliguori6f97dba2008-10-31 18:49:55 +0000724{
725 int ret, len;
Jes Sorensen5fc9cfe2010-11-01 20:02:23 +0100726 const uint8_t *buf = _buf;
aliguori6f97dba2008-10-31 18:49:55 +0000727
728 len = len1;
729 while (len > 0) {
730 ret = write(fd, buf, len);
731 if (ret < 0) {
732 if (errno != EINTR && errno != EAGAIN)
733 return -1;
734 } else if (ret == 0) {
735 break;
736 } else {
737 buf += ret;
738 len -= ret;
739 }
740 }
741 return len1 - len;
742}
Stefan Berger4549a8b2013-02-27 12:47:53 -0500743
744int recv_all(int fd, void *_buf, int len1, bool single_read)
745{
746 int ret, len;
747 uint8_t *buf = _buf;
748
749 len = len1;
750 while ((len > 0) && (ret = read(fd, buf, len)) != 0) {
751 if (ret < 0) {
752 if (errno != EINTR && errno != EAGAIN) {
753 return -1;
754 }
755 continue;
756 } else {
757 if (single_read) {
758 return ret;
759 }
760 buf += ret;
761 len -= ret;
762 }
763 }
764 return len1 - len;
765}
766
aliguori6f97dba2008-10-31 18:49:55 +0000767#endif /* !_WIN32 */
768
Anthony Liguori96c63842013-03-05 23:21:18 +0530769typedef struct IOWatchPoll
770{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200771 GSource parent;
772
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200773 GIOChannel *channel;
Anthony Liguori96c63842013-03-05 23:21:18 +0530774 GSource *src;
Anthony Liguori96c63842013-03-05 23:21:18 +0530775
776 IOCanReadHandler *fd_can_read;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200777 GSourceFunc fd_read;
Anthony Liguori96c63842013-03-05 23:21:18 +0530778 void *opaque;
Anthony Liguori96c63842013-03-05 23:21:18 +0530779} IOWatchPoll;
780
Anthony Liguori96c63842013-03-05 23:21:18 +0530781static IOWatchPoll *io_watch_poll_from_source(GSource *source)
782{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200783 return container_of(source, IOWatchPoll, parent);
Anthony Liguori96c63842013-03-05 23:21:18 +0530784}
785
786static gboolean io_watch_poll_prepare(GSource *source, gint *timeout_)
787{
788 IOWatchPoll *iwp = io_watch_poll_from_source(source);
Paolo Bonzinid185c092013-04-05 17:59:33 +0200789 bool now_active = iwp->fd_can_read(iwp->opaque) > 0;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200790 bool was_active = iwp->src != NULL;
Paolo Bonzinid185c092013-04-05 17:59:33 +0200791 if (was_active == now_active) {
Anthony Liguori96c63842013-03-05 23:21:18 +0530792 return FALSE;
793 }
794
Paolo Bonzinid185c092013-04-05 17:59:33 +0200795 if (now_active) {
Nils Carlson4bf1cb02015-07-19 20:39:56 +0000796 iwp->src = g_io_create_watch(iwp->channel,
797 G_IO_IN | G_IO_ERR | G_IO_HUP | G_IO_NVAL);
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200798 g_source_set_callback(iwp->src, iwp->fd_read, iwp->opaque, NULL);
Paolo Bonzinid185c092013-04-05 17:59:33 +0200799 g_source_attach(iwp->src, NULL);
800 } else {
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200801 g_source_destroy(iwp->src);
802 g_source_unref(iwp->src);
803 iwp->src = NULL;
Paolo Bonzinid185c092013-04-05 17:59:33 +0200804 }
805 return FALSE;
Anthony Liguori96c63842013-03-05 23:21:18 +0530806}
807
808static gboolean io_watch_poll_check(GSource *source)
809{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200810 return FALSE;
Anthony Liguori96c63842013-03-05 23:21:18 +0530811}
812
813static gboolean io_watch_poll_dispatch(GSource *source, GSourceFunc callback,
814 gpointer user_data)
815{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200816 abort();
Anthony Liguori96c63842013-03-05 23:21:18 +0530817}
818
819static void io_watch_poll_finalize(GSource *source)
820{
Paolo Bonzini2b316772013-04-19 17:32:09 +0200821 /* Due to a glib bug, removing the last reference to a source
822 * inside a finalize callback causes recursive locking (and a
823 * deadlock). This is not a problem inside other callbacks,
824 * including dispatch callbacks, so we call io_remove_watch_poll
825 * to remove this source. At this point, iwp->src must
826 * be NULL, or we would leak it.
827 *
828 * This would be solved much more elegantly by child sources,
829 * but we support older glib versions that do not have them.
830 */
Anthony Liguori96c63842013-03-05 23:21:18 +0530831 IOWatchPoll *iwp = io_watch_poll_from_source(source);
Paolo Bonzini2b316772013-04-19 17:32:09 +0200832 assert(iwp->src == NULL);
Anthony Liguori96c63842013-03-05 23:21:18 +0530833}
834
835static GSourceFuncs io_watch_poll_funcs = {
836 .prepare = io_watch_poll_prepare,
837 .check = io_watch_poll_check,
838 .dispatch = io_watch_poll_dispatch,
839 .finalize = io_watch_poll_finalize,
840};
841
842/* Can only be used for read */
843static guint io_add_watch_poll(GIOChannel *channel,
844 IOCanReadHandler *fd_can_read,
845 GIOFunc fd_read,
846 gpointer user_data)
847{
848 IOWatchPoll *iwp;
Paolo Bonzini0ca5aa42013-04-10 15:23:27 +0200849 int tag;
Anthony Liguori96c63842013-03-05 23:21:18 +0530850
Paolo Bonzinid185c092013-04-05 17:59:33 +0200851 iwp = (IOWatchPoll *) g_source_new(&io_watch_poll_funcs, sizeof(IOWatchPoll));
Anthony Liguori96c63842013-03-05 23:21:18 +0530852 iwp->fd_can_read = fd_can_read;
853 iwp->opaque = user_data;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200854 iwp->channel = channel;
855 iwp->fd_read = (GSourceFunc) fd_read;
856 iwp->src = NULL;
Anthony Liguori96c63842013-03-05 23:21:18 +0530857
Paolo Bonzini0ca5aa42013-04-10 15:23:27 +0200858 tag = g_source_attach(&iwp->parent, NULL);
859 g_source_unref(&iwp->parent);
860 return tag;
Anthony Liguori96c63842013-03-05 23:21:18 +0530861}
862
Paolo Bonzini2b316772013-04-19 17:32:09 +0200863static void io_remove_watch_poll(guint tag)
864{
865 GSource *source;
866 IOWatchPoll *iwp;
867
868 g_return_if_fail (tag > 0);
869
870 source = g_main_context_find_source_by_id(NULL, tag);
871 g_return_if_fail (source != NULL);
872
873 iwp = io_watch_poll_from_source(source);
874 if (iwp->src) {
875 g_source_destroy(iwp->src);
876 g_source_unref(iwp->src);
877 iwp->src = NULL;
878 }
879 g_source_destroy(&iwp->parent);
880}
881
Amit Shah26da70c2013-08-28 15:23:37 +0530882static void remove_fd_in_watch(CharDriverState *chr)
883{
884 if (chr->fd_in_tag) {
885 io_remove_watch_poll(chr->fd_in_tag);
886 chr->fd_in_tag = 0;
887 }
888}
889
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000890#ifndef _WIN32
Anthony Liguori96c63842013-03-05 23:21:18 +0530891static GIOChannel *io_channel_from_fd(int fd)
892{
893 GIOChannel *chan;
894
895 if (fd == -1) {
896 return NULL;
897 }
898
899 chan = g_io_channel_unix_new(fd);
900
901 g_io_channel_set_encoding(chan, NULL, NULL);
902 g_io_channel_set_buffered(chan, FALSE);
903
904 return chan;
905}
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000906#endif
Anthony Liguori96c63842013-03-05 23:21:18 +0530907
Anthony Liguori76a96442013-03-05 23:21:21 +0530908static GIOChannel *io_channel_from_socket(int fd)
909{
910 GIOChannel *chan;
911
912 if (fd == -1) {
913 return NULL;
914 }
915
916#ifdef _WIN32
917 chan = g_io_channel_win32_new_socket(fd);
918#else
919 chan = g_io_channel_unix_new(fd);
920#endif
921
922 g_io_channel_set_encoding(chan, NULL, NULL);
923 g_io_channel_set_buffered(chan, FALSE);
924
925 return chan;
926}
927
Anthony Liguori684a0962013-03-29 11:39:50 -0500928static int io_channel_send(GIOChannel *fd, const void *buf, size_t len)
Anthony Liguori96c63842013-03-05 23:21:18 +0530929{
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200930 size_t offset = 0;
931 GIOStatus status = G_IO_STATUS_NORMAL;
Anthony Liguori96c63842013-03-05 23:21:18 +0530932
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200933 while (offset < len && status == G_IO_STATUS_NORMAL) {
934 gsize bytes_written = 0;
Anthony Liguori684a0962013-03-29 11:39:50 -0500935
936 status = g_io_channel_write_chars(fd, buf + offset, len - offset,
Anthony Liguori96c63842013-03-05 23:21:18 +0530937 &bytes_written, NULL);
Anthony Liguori684a0962013-03-29 11:39:50 -0500938 offset += bytes_written;
Anthony Liguori96c63842013-03-05 23:21:18 +0530939 }
Anthony Liguori684a0962013-03-29 11:39:50 -0500940
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200941 if (offset > 0) {
942 return offset;
943 }
944 switch (status) {
945 case G_IO_STATUS_NORMAL:
946 g_assert(len == 0);
947 return 0;
948 case G_IO_STATUS_AGAIN:
949 errno = EAGAIN;
950 return -1;
951 default:
952 break;
953 }
954 errno = EINVAL;
955 return -1;
Anthony Liguori96c63842013-03-05 23:21:18 +0530956}
Anthony Liguori96c63842013-03-05 23:21:18 +0530957
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000958#ifndef _WIN32
959
Anthony Liguoria29753f2013-03-05 23:21:19 +0530960typedef struct FDCharDriver {
961 CharDriverState *chr;
962 GIOChannel *fd_in, *fd_out;
aliguori6f97dba2008-10-31 18:49:55 +0000963 int max_size;
964} FDCharDriver;
965
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200966/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +0000967static int fd_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
968{
969 FDCharDriver *s = chr->opaque;
Anthony Liguoria29753f2013-03-05 23:21:19 +0530970
Anthony Liguori684a0962013-03-29 11:39:50 -0500971 return io_channel_send(s->fd_out, buf, len);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530972}
973
974static gboolean fd_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
975{
976 CharDriverState *chr = opaque;
977 FDCharDriver *s = chr->opaque;
978 int len;
979 uint8_t buf[READ_BUF_LEN];
980 GIOStatus status;
981 gsize bytes_read;
982
983 len = sizeof(buf);
984 if (len > s->max_size) {
985 len = s->max_size;
986 }
987 if (len == 0) {
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +0200988 return TRUE;
Anthony Liguoria29753f2013-03-05 23:21:19 +0530989 }
990
991 status = g_io_channel_read_chars(chan, (gchar *)buf,
992 len, &bytes_read, NULL);
993 if (status == G_IO_STATUS_EOF) {
Amit Shah26da70c2013-08-28 15:23:37 +0530994 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530995 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
996 return FALSE;
997 }
998 if (status == G_IO_STATUS_NORMAL) {
999 qemu_chr_be_write(chr, buf, bytes_read);
1000 }
1001
1002 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00001003}
1004
1005static int fd_chr_read_poll(void *opaque)
1006{
1007 CharDriverState *chr = opaque;
1008 FDCharDriver *s = chr->opaque;
1009
Anthony Liguori909cda12011-08-15 11:17:31 -05001010 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001011 return s->max_size;
1012}
1013
Anthony Liguori23673ca2013-03-05 23:21:23 +05301014static GSource *fd_chr_add_watch(CharDriverState *chr, GIOCondition cond)
1015{
1016 FDCharDriver *s = chr->opaque;
1017 return g_io_create_watch(s->fd_out, cond);
1018}
1019
aliguori6f97dba2008-10-31 18:49:55 +00001020static void fd_chr_update_read_handler(CharDriverState *chr)
1021{
1022 FDCharDriver *s = chr->opaque;
1023
Amit Shah26da70c2013-08-28 15:23:37 +05301024 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +05301025 if (s->fd_in) {
Amit Shah7ba9add2013-08-28 15:18:29 +05301026 chr->fd_in_tag = io_add_watch_poll(s->fd_in, fd_chr_read_poll,
1027 fd_chr_read, chr);
aliguori6f97dba2008-10-31 18:49:55 +00001028 }
1029}
1030
1031static void fd_chr_close(struct CharDriverState *chr)
1032{
1033 FDCharDriver *s = chr->opaque;
1034
Amit Shah26da70c2013-08-28 15:23:37 +05301035 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +05301036 if (s->fd_in) {
1037 g_io_channel_unref(s->fd_in);
1038 }
1039 if (s->fd_out) {
1040 g_io_channel_unref(s->fd_out);
aliguori6f97dba2008-10-31 18:49:55 +00001041 }
1042
Anthony Liguori7267c092011-08-20 22:09:37 -05001043 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01001044 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001045}
1046
1047/* open a character device to a unix fd */
1048static CharDriverState *qemu_chr_open_fd(int fd_in, int fd_out)
1049{
1050 CharDriverState *chr;
1051 FDCharDriver *s;
1052
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001053 chr = qemu_chr_alloc();
Markus Armbruster2d528d42015-09-14 13:54:03 +02001054 s = g_new0(FDCharDriver, 1);
Anthony Liguoria29753f2013-03-05 23:21:19 +05301055 s->fd_in = io_channel_from_fd(fd_in);
1056 s->fd_out = io_channel_from_fd(fd_out);
Gonglei4ff12bd2014-08-11 17:34:20 +08001057 qemu_set_nonblock(fd_out);
Anthony Liguoria29753f2013-03-05 23:21:19 +05301058 s->chr = chr;
aliguori6f97dba2008-10-31 18:49:55 +00001059 chr->opaque = s;
Anthony Liguori23673ca2013-03-05 23:21:23 +05301060 chr->chr_add_watch = fd_chr_add_watch;
aliguori6f97dba2008-10-31 18:49:55 +00001061 chr->chr_write = fd_chr_write;
1062 chr->chr_update_read_handler = fd_chr_update_read_handler;
1063 chr->chr_close = fd_chr_close;
1064
aliguori6f97dba2008-10-31 18:49:55 +00001065 return chr;
1066}
1067
Paolo Bonzini20cbe7a2015-09-29 15:14:07 +02001068static CharDriverState *qemu_chr_open_pipe(const char *id,
1069 ChardevBackend *backend,
1070 ChardevReturn *ret,
1071 Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00001072{
Eric Blake130257d2015-10-26 16:34:57 -06001073 ChardevHostdev *opts = backend->u.pipe;
aliguori6f97dba2008-10-31 18:49:55 +00001074 int fd_in, fd_out;
Corey Minyard9f781162014-10-02 11:17:33 -05001075 char filename_in[CHR_MAX_FILENAME_SIZE];
1076 char filename_out[CHR_MAX_FILENAME_SIZE];
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01001077 const char *filename = opts->device;
Gerd Hoffmann7d315442009-09-10 10:58:36 +02001078
Corey Minyard9f781162014-10-02 11:17:33 -05001079 snprintf(filename_in, CHR_MAX_FILENAME_SIZE, "%s.in", filename);
1080 snprintf(filename_out, CHR_MAX_FILENAME_SIZE, "%s.out", filename);
Kevin Wolf40ff6d72009-12-02 12:24:42 +01001081 TFR(fd_in = qemu_open(filename_in, O_RDWR | O_BINARY));
1082 TFR(fd_out = qemu_open(filename_out, O_RDWR | O_BINARY));
aliguori6f97dba2008-10-31 18:49:55 +00001083 if (fd_in < 0 || fd_out < 0) {
1084 if (fd_in >= 0)
1085 close(fd_in);
1086 if (fd_out >= 0)
1087 close(fd_out);
Markus Armbrusterb181e042012-02-07 15:09:09 +01001088 TFR(fd_in = fd_out = qemu_open(filename, O_RDWR | O_BINARY));
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01001089 if (fd_in < 0) {
Paolo Bonzini20cbe7a2015-09-29 15:14:07 +02001090 error_setg_file_open(errp, errno, filename);
Markus Armbruster1f514702012-02-07 15:09:08 +01001091 return NULL;
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01001092 }
aliguori6f97dba2008-10-31 18:49:55 +00001093 }
Markus Armbruster1f514702012-02-07 15:09:08 +01001094 return qemu_chr_open_fd(fd_in, fd_out);
aliguori6f97dba2008-10-31 18:49:55 +00001095}
1096
aliguori6f97dba2008-10-31 18:49:55 +00001097/* init terminal so that we can grab keys */
1098static struct termios oldtty;
1099static int old_fd0_flags;
Li Liuc88930a2014-09-09 19:19:48 +08001100static bool stdio_in_use;
Paolo Bonzinibb002512010-12-23 13:42:50 +01001101static bool stdio_allow_signal;
Gal Hammere76d4422015-01-07 10:38:35 +02001102static bool stdio_echo_state;
1103
1104static void qemu_chr_set_echo_stdio(CharDriverState *chr, bool echo);
aliguori6f97dba2008-10-31 18:49:55 +00001105
1106static void term_exit(void)
1107{
1108 tcsetattr (0, TCSANOW, &oldtty);
1109 fcntl(0, F_SETFL, old_fd0_flags);
1110}
1111
Gal Hammere76d4422015-01-07 10:38:35 +02001112static void term_stdio_handler(int sig)
1113{
1114 /* restore echo after resume from suspend. */
1115 qemu_chr_set_echo_stdio(NULL, stdio_echo_state);
1116}
1117
Paolo Bonzinibb002512010-12-23 13:42:50 +01001118static void qemu_chr_set_echo_stdio(CharDriverState *chr, bool echo)
aliguori6f97dba2008-10-31 18:49:55 +00001119{
1120 struct termios tty;
1121
Gal Hammere76d4422015-01-07 10:38:35 +02001122 stdio_echo_state = echo;
Paolo Bonzini03693642010-12-23 13:42:49 +01001123 tty = oldtty;
Paolo Bonzinibb002512010-12-23 13:42:50 +01001124 if (!echo) {
1125 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
aliguori6f97dba2008-10-31 18:49:55 +00001126 |INLCR|IGNCR|ICRNL|IXON);
Paolo Bonzinibb002512010-12-23 13:42:50 +01001127 tty.c_oflag |= OPOST;
1128 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
1129 tty.c_cflag &= ~(CSIZE|PARENB);
1130 tty.c_cflag |= CS8;
1131 tty.c_cc[VMIN] = 1;
1132 tty.c_cc[VTIME] = 0;
1133 }
Paolo Bonzinibb002512010-12-23 13:42:50 +01001134 if (!stdio_allow_signal)
aliguori6f97dba2008-10-31 18:49:55 +00001135 tty.c_lflag &= ~ISIG;
aliguori6f97dba2008-10-31 18:49:55 +00001136
1137 tcsetattr (0, TCSANOW, &tty);
aliguori6f97dba2008-10-31 18:49:55 +00001138}
1139
1140static void qemu_chr_close_stdio(struct CharDriverState *chr)
1141{
1142 term_exit();
aliguori6f97dba2008-10-31 18:49:55 +00001143 fd_chr_close(chr);
1144}
1145
Paolo Bonzini8c84b252015-09-29 15:40:28 +02001146static CharDriverState *qemu_chr_open_stdio(const char *id,
1147 ChardevBackend *backend,
1148 ChardevReturn *ret,
1149 Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00001150{
Eric Blake130257d2015-10-26 16:34:57 -06001151 ChardevStdio *opts = backend->u.stdio;
aliguori6f97dba2008-10-31 18:49:55 +00001152 CharDriverState *chr;
Gal Hammere76d4422015-01-07 10:38:35 +02001153 struct sigaction act;
aliguori6f97dba2008-10-31 18:49:55 +00001154
Michael Tokarevab51b1d2012-12-30 12:48:14 +04001155 if (is_daemonized()) {
Paolo Bonzini8c84b252015-09-29 15:40:28 +02001156 error_setg(errp, "cannot use stdio with -daemonize");
Michael Tokarevab51b1d2012-12-30 12:48:14 +04001157 return NULL;
1158 }
Li Liuc88930a2014-09-09 19:19:48 +08001159
1160 if (stdio_in_use) {
Paolo Bonzini8c84b252015-09-29 15:40:28 +02001161 error_setg(errp, "cannot use stdio by multiple character devices");
1162 return NULL;
Li Liuc88930a2014-09-09 19:19:48 +08001163 }
1164
1165 stdio_in_use = true;
Anthony Liguoried7a1542013-03-05 23:21:17 +05301166 old_fd0_flags = fcntl(0, F_GETFL);
Li Liuc88930a2014-09-09 19:19:48 +08001167 tcgetattr(0, &oldtty);
Gonglei4ff12bd2014-08-11 17:34:20 +08001168 qemu_set_nonblock(0);
Anthony Liguoried7a1542013-03-05 23:21:17 +05301169 atexit(term_exit);
Paolo Bonzini03693642010-12-23 13:42:49 +01001170
Gal Hammere76d4422015-01-07 10:38:35 +02001171 memset(&act, 0, sizeof(act));
1172 act.sa_handler = term_stdio_handler;
1173 sigaction(SIGCONT, &act, NULL);
1174
aliguori6f97dba2008-10-31 18:49:55 +00001175 chr = qemu_chr_open_fd(0, 1);
1176 chr->chr_close = qemu_chr_close_stdio;
Paolo Bonzinibb002512010-12-23 13:42:50 +01001177 chr->chr_set_echo = qemu_chr_set_echo_stdio;
Gerd Hoffmann7c358032013-02-21 12:34:58 +01001178 if (opts->has_signal) {
1179 stdio_allow_signal = opts->signal;
1180 }
Anthony Liguori15f31512011-08-15 11:17:35 -05001181 qemu_chr_fe_set_echo(chr, false);
aliguori6f97dba2008-10-31 18:49:55 +00001182
Markus Armbruster1f514702012-02-07 15:09:08 +01001183 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001184}
1185
aliguori6f97dba2008-10-31 18:49:55 +00001186#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
Aurelien Jarnoa167ba52009-11-29 18:00:41 +01001187 || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
1188 || defined(__GLIBC__)
aliguori6f97dba2008-10-31 18:49:55 +00001189
Paolo Bonzinid809ab92015-10-12 09:46:23 +02001190#define HAVE_CHARDEV_SERIAL 1
1191#define HAVE_CHARDEV_PTY 1
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001192
aliguori6f97dba2008-10-31 18:49:55 +00001193typedef struct {
Anthony Liguori093d3a22013-03-05 23:21:20 +05301194 GIOChannel *fd;
aliguori6f97dba2008-10-31 18:49:55 +00001195 int read_bytes;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001196
1197 /* Protected by the CharDriverState chr_write_lock. */
1198 int connected;
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301199 guint timer_tag;
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001200 guint open_tag;
aliguori6f97dba2008-10-31 18:49:55 +00001201} PtyCharDriver;
1202
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001203static void pty_chr_update_read_handler_locked(CharDriverState *chr);
aliguori6f97dba2008-10-31 18:49:55 +00001204static void pty_chr_state(CharDriverState *chr, int connected);
1205
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301206static gboolean pty_chr_timer(gpointer opaque)
1207{
1208 struct CharDriverState *chr = opaque;
1209 PtyCharDriver *s = chr->opaque;
1210
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001211 qemu_mutex_lock(&chr->chr_write_lock);
Hans de Goede79f20072013-04-25 13:53:02 +02001212 s->timer_tag = 0;
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001213 s->open_tag = 0;
Gerd Hoffmannb0d768c2013-08-22 11:43:58 +02001214 if (!s->connected) {
1215 /* Next poll ... */
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001216 pty_chr_update_read_handler_locked(chr);
Gerd Hoffmannb0d768c2013-08-22 11:43:58 +02001217 }
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001218 qemu_mutex_unlock(&chr->chr_write_lock);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301219 return FALSE;
1220}
1221
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001222/* Called with chr_write_lock held. */
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301223static void pty_chr_rearm_timer(CharDriverState *chr, int ms)
1224{
1225 PtyCharDriver *s = chr->opaque;
1226
1227 if (s->timer_tag) {
1228 g_source_remove(s->timer_tag);
1229 s->timer_tag = 0;
1230 }
1231
1232 if (ms == 1000) {
1233 s->timer_tag = g_timeout_add_seconds(1, pty_chr_timer, chr);
1234 } else {
1235 s->timer_tag = g_timeout_add(ms, pty_chr_timer, chr);
1236 }
1237}
1238
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001239/* Called with chr_write_lock held. */
1240static void pty_chr_update_read_handler_locked(CharDriverState *chr)
Paolo Bonzini1bb7fe72014-06-18 08:43:57 +02001241{
1242 PtyCharDriver *s = chr->opaque;
1243 GPollFD pfd;
Paolo Bonzinic1f24482015-12-01 11:27:00 +01001244 int rc;
Paolo Bonzini1bb7fe72014-06-18 08:43:57 +02001245
1246 pfd.fd = g_io_channel_unix_get_fd(s->fd);
1247 pfd.events = G_IO_OUT;
1248 pfd.revents = 0;
Paolo Bonzinic1f24482015-12-01 11:27:00 +01001249 do {
1250 rc = g_poll(&pfd, 1, 0);
1251 } while (rc == -1 && errno == EINTR);
1252 assert(rc >= 0);
1253
Paolo Bonzini1bb7fe72014-06-18 08:43:57 +02001254 if (pfd.revents & G_IO_HUP) {
1255 pty_chr_state(chr, 0);
1256 } else {
1257 pty_chr_state(chr, 1);
1258 }
1259}
1260
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001261static void pty_chr_update_read_handler(CharDriverState *chr)
1262{
1263 qemu_mutex_lock(&chr->chr_write_lock);
1264 pty_chr_update_read_handler_locked(chr);
1265 qemu_mutex_unlock(&chr->chr_write_lock);
1266}
1267
1268/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00001269static int pty_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
1270{
1271 PtyCharDriver *s = chr->opaque;
1272
1273 if (!s->connected) {
1274 /* guest sends data, check for (re-)connect */
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001275 pty_chr_update_read_handler_locked(chr);
Sebastian Tanasecf7330c2014-07-28 13:39:14 +02001276 if (!s->connected) {
1277 return 0;
1278 }
aliguori6f97dba2008-10-31 18:49:55 +00001279 }
Anthony Liguori684a0962013-03-29 11:39:50 -05001280 return io_channel_send(s->fd, buf, len);
aliguori6f97dba2008-10-31 18:49:55 +00001281}
1282
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301283static GSource *pty_chr_add_watch(CharDriverState *chr, GIOCondition cond)
1284{
1285 PtyCharDriver *s = chr->opaque;
Paolo Bonzini62c339c2014-07-24 16:08:04 +02001286 if (!s->connected) {
1287 return NULL;
1288 }
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301289 return g_io_create_watch(s->fd, cond);
1290}
1291
aliguori6f97dba2008-10-31 18:49:55 +00001292static int pty_chr_read_poll(void *opaque)
1293{
1294 CharDriverState *chr = opaque;
1295 PtyCharDriver *s = chr->opaque;
1296
Anthony Liguori909cda12011-08-15 11:17:31 -05001297 s->read_bytes = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001298 return s->read_bytes;
1299}
1300
Anthony Liguori093d3a22013-03-05 23:21:20 +05301301static gboolean pty_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00001302{
1303 CharDriverState *chr = opaque;
1304 PtyCharDriver *s = chr->opaque;
Anthony Liguori093d3a22013-03-05 23:21:20 +05301305 gsize size, len;
Amit Shah9bd78542009-11-03 19:59:54 +05301306 uint8_t buf[READ_BUF_LEN];
Anthony Liguori093d3a22013-03-05 23:21:20 +05301307 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00001308
1309 len = sizeof(buf);
1310 if (len > s->read_bytes)
1311 len = s->read_bytes;
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02001312 if (len == 0) {
1313 return TRUE;
1314 }
Anthony Liguori093d3a22013-03-05 23:21:20 +05301315 status = g_io_channel_read_chars(s->fd, (gchar *)buf, len, &size, NULL);
1316 if (status != G_IO_STATUS_NORMAL) {
aliguori6f97dba2008-10-31 18:49:55 +00001317 pty_chr_state(chr, 0);
Anthony Liguori093d3a22013-03-05 23:21:20 +05301318 return FALSE;
1319 } else {
aliguori6f97dba2008-10-31 18:49:55 +00001320 pty_chr_state(chr, 1);
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05001321 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00001322 }
Anthony Liguori093d3a22013-03-05 23:21:20 +05301323 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00001324}
1325
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001326static gboolean qemu_chr_be_generic_open_func(gpointer opaque)
1327{
1328 CharDriverState *chr = opaque;
1329 PtyCharDriver *s = chr->opaque;
1330
1331 s->open_tag = 0;
1332 qemu_chr_be_generic_open(chr);
1333 return FALSE;
1334}
1335
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001336/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00001337static void pty_chr_state(CharDriverState *chr, int connected)
1338{
1339 PtyCharDriver *s = chr->opaque;
1340
1341 if (!connected) {
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001342 if (s->open_tag) {
1343 g_source_remove(s->open_tag);
1344 s->open_tag = 0;
1345 }
Amit Shah26da70c2013-08-28 15:23:37 +05301346 remove_fd_in_watch(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001347 s->connected = 0;
aliguori6f97dba2008-10-31 18:49:55 +00001348 /* (re-)connect poll interval for idle guests: once per second.
1349 * We check more frequently in case the guests sends data to
1350 * the virtual device linked to our pty. */
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301351 pty_chr_rearm_timer(chr, 1000);
aliguori6f97dba2008-10-31 18:49:55 +00001352 } else {
Paolo Bonzini85a67692013-04-19 17:32:07 +02001353 if (s->timer_tag) {
1354 g_source_remove(s->timer_tag);
1355 s->timer_tag = 0;
1356 }
1357 if (!s->connected) {
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001358 g_assert(s->open_tag == 0);
Paolo Bonzini85a67692013-04-19 17:32:07 +02001359 s->connected = 1;
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001360 s->open_tag = g_idle_add(qemu_chr_be_generic_open_func, chr);
Gal Hammerac1b84d2014-02-25 12:12:35 +02001361 }
1362 if (!chr->fd_in_tag) {
Amit Shah7ba9add2013-08-28 15:18:29 +05301363 chr->fd_in_tag = io_add_watch_poll(s->fd, pty_chr_read_poll,
1364 pty_chr_read, chr);
Paolo Bonzini85a67692013-04-19 17:32:07 +02001365 }
aliguori6f97dba2008-10-31 18:49:55 +00001366 }
1367}
1368
aliguori6f97dba2008-10-31 18:49:55 +00001369static void pty_chr_close(struct CharDriverState *chr)
1370{
1371 PtyCharDriver *s = chr->opaque;
Anthony Liguori093d3a22013-03-05 23:21:20 +05301372 int fd;
aliguori6f97dba2008-10-31 18:49:55 +00001373
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001374 qemu_mutex_lock(&chr->chr_write_lock);
1375 pty_chr_state(chr, 0);
Anthony Liguori093d3a22013-03-05 23:21:20 +05301376 fd = g_io_channel_unix_get_fd(s->fd);
1377 g_io_channel_unref(s->fd);
1378 close(fd);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301379 if (s->timer_tag) {
1380 g_source_remove(s->timer_tag);
Paolo Bonzini910b6362013-04-19 17:32:06 +02001381 s->timer_tag = 0;
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301382 }
Paolo Bonzini7b3621f2014-07-11 12:11:38 +02001383 qemu_mutex_unlock(&chr->chr_write_lock);
Anthony Liguori7267c092011-08-20 22:09:37 -05001384 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01001385 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001386}
1387
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001388static CharDriverState *qemu_chr_open_pty(const char *id,
Paolo Bonzinic2e75a42015-09-29 15:23:42 +02001389 ChardevBackend *backend,
1390 ChardevReturn *ret,
1391 Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00001392{
1393 CharDriverState *chr;
1394 PtyCharDriver *s;
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001395 int master_fd, slave_fd;
aliguori6f97dba2008-10-31 18:49:55 +00001396 char pty_name[PATH_MAX];
aliguori6f97dba2008-10-31 18:49:55 +00001397
Michael Tokarev4efeabb2013-06-05 18:44:54 +04001398 master_fd = qemu_openpty_raw(&slave_fd, pty_name);
1399 if (master_fd < 0) {
Paolo Bonzinic2e75a42015-09-29 15:23:42 +02001400 error_setg_errno(errp, errno, "Failed to create PTY");
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
Markus Armbruster2d528d42015-09-14 13:54:03 +02001416 s = g_new0(PtyCharDriver, 1);
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
Paolo Bonzini38bfb1a2015-10-12 09:49:28 +02001755static CharDriverState *qemu_chr_open_pp_fd(int fd, Error **errp)
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) {
Paolo Bonzini38bfb1a2015-10-12 09:49:28 +02001761 error_setg_errno(errp, errno, "not a parallel port");
aliguori6f97dba2008-10-31 18:49:55 +00001762 close(fd);
Markus Armbruster1f514702012-02-07 15:09:08 +01001763 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001764 }
1765
Markus Armbruster2d528d42015-09-14 13:54:03 +02001766 drv = g_new0(ParallelCharDriver, 1);
aliguori6f97dba2008-10-31 18:49:55 +00001767 drv->fd = fd;
1768 drv->mode = IEEE1284_MODE_COMPAT;
1769
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001770 chr = qemu_chr_alloc();
aliguori6f97dba2008-10-31 18:49:55 +00001771 chr->chr_write = null_chr_write;
1772 chr->chr_ioctl = pp_ioctl;
1773 chr->chr_close = pp_close;
1774 chr->opaque = drv;
1775
Markus Armbruster1f514702012-02-07 15:09:08 +01001776 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001777}
1778#endif /* __linux__ */
1779
Aurelien Jarnoa167ba52009-11-29 18:00:41 +01001780#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001781
1782#define HAVE_CHARDEV_PARPORT 1
1783
blueswir16972f932008-11-22 20:49:12 +00001784static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1785{
Stefan Weile0efb992011-02-23 19:09:16 +01001786 int fd = (int)(intptr_t)chr->opaque;
blueswir16972f932008-11-22 20:49:12 +00001787 uint8_t b;
1788
1789 switch(cmd) {
1790 case CHR_IOCTL_PP_READ_DATA:
1791 if (ioctl(fd, PPIGDATA, &b) < 0)
1792 return -ENOTSUP;
1793 *(uint8_t *)arg = b;
1794 break;
1795 case CHR_IOCTL_PP_WRITE_DATA:
1796 b = *(uint8_t *)arg;
1797 if (ioctl(fd, PPISDATA, &b) < 0)
1798 return -ENOTSUP;
1799 break;
1800 case CHR_IOCTL_PP_READ_CONTROL:
1801 if (ioctl(fd, PPIGCTRL, &b) < 0)
1802 return -ENOTSUP;
1803 *(uint8_t *)arg = b;
1804 break;
1805 case CHR_IOCTL_PP_WRITE_CONTROL:
1806 b = *(uint8_t *)arg;
1807 if (ioctl(fd, PPISCTRL, &b) < 0)
1808 return -ENOTSUP;
1809 break;
1810 case CHR_IOCTL_PP_READ_STATUS:
1811 if (ioctl(fd, PPIGSTATUS, &b) < 0)
1812 return -ENOTSUP;
1813 *(uint8_t *)arg = b;
1814 break;
1815 default:
1816 return -ENOTSUP;
1817 }
1818 return 0;
1819}
1820
Paolo Bonzini38bfb1a2015-10-12 09:49:28 +02001821static CharDriverState *qemu_chr_open_pp_fd(int fd, Error **errp)
blueswir16972f932008-11-22 20:49:12 +00001822{
1823 CharDriverState *chr;
blueswir16972f932008-11-22 20:49:12 +00001824
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001825 chr = qemu_chr_alloc();
Stefan Weile0efb992011-02-23 19:09:16 +01001826 chr->opaque = (void *)(intptr_t)fd;
blueswir16972f932008-11-22 20:49:12 +00001827 chr->chr_write = null_chr_write;
1828 chr->chr_ioctl = pp_ioctl;
Michael Rothbd5c51e2013-06-07 15:19:53 -05001829 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +01001830 return chr;
blueswir16972f932008-11-22 20:49:12 +00001831}
1832#endif
1833
aliguori6f97dba2008-10-31 18:49:55 +00001834#else /* _WIN32 */
1835
Paolo Bonzinid809ab92015-10-12 09:46:23 +02001836#define HAVE_CHARDEV_SERIAL 1
1837
aliguori6f97dba2008-10-31 18:49:55 +00001838typedef struct {
1839 int max_size;
1840 HANDLE hcom, hrecv, hsend;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001841 OVERLAPPED orecv;
aliguori6f97dba2008-10-31 18:49:55 +00001842 BOOL fpipe;
1843 DWORD len;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001844
1845 /* Protected by the CharDriverState chr_write_lock. */
1846 OVERLAPPED osend;
aliguori6f97dba2008-10-31 18:49:55 +00001847} WinCharState;
1848
Fabien Chouteaudb418a02011-10-06 16:37:51 +02001849typedef struct {
1850 HANDLE hStdIn;
1851 HANDLE hInputReadyEvent;
1852 HANDLE hInputDoneEvent;
1853 HANDLE hInputThread;
1854 uint8_t win_stdio_buf;
1855} WinStdioCharState;
1856
aliguori6f97dba2008-10-31 18:49:55 +00001857#define NSENDBUF 2048
1858#define NRECVBUF 2048
1859#define MAXCONNECT 1
1860#define NTIMEOUT 5000
1861
1862static int win_chr_poll(void *opaque);
1863static int win_chr_pipe_poll(void *opaque);
1864
1865static void win_chr_close(CharDriverState *chr)
1866{
1867 WinCharState *s = chr->opaque;
1868
1869 if (s->hsend) {
1870 CloseHandle(s->hsend);
1871 s->hsend = NULL;
1872 }
1873 if (s->hrecv) {
1874 CloseHandle(s->hrecv);
1875 s->hrecv = NULL;
1876 }
1877 if (s->hcom) {
1878 CloseHandle(s->hcom);
1879 s->hcom = NULL;
1880 }
1881 if (s->fpipe)
1882 qemu_del_polling_cb(win_chr_pipe_poll, chr);
1883 else
1884 qemu_del_polling_cb(win_chr_poll, chr);
Amit Shah793cbfb2009-08-11 21:27:48 +05301885
Hans de Goedea425d232011-11-19 10:22:43 +01001886 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001887}
1888
Paolo Bonzini6511d392015-09-29 15:08:05 +02001889static int win_chr_init(CharDriverState *chr, const char *filename, Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00001890{
1891 WinCharState *s = chr->opaque;
1892 COMMCONFIG comcfg;
1893 COMMTIMEOUTS cto = { 0, 0, 0, 0, 0};
1894 COMSTAT comstat;
1895 DWORD size;
1896 DWORD err;
1897
1898 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1899 if (!s->hsend) {
Paolo Bonzini6511d392015-09-29 15:08:05 +02001900 error_setg(errp, "Failed CreateEvent");
aliguori6f97dba2008-10-31 18:49:55 +00001901 goto fail;
1902 }
1903 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1904 if (!s->hrecv) {
Paolo Bonzini6511d392015-09-29 15:08:05 +02001905 error_setg(errp, "Failed CreateEvent");
aliguori6f97dba2008-10-31 18:49:55 +00001906 goto fail;
1907 }
1908
1909 s->hcom = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, NULL,
1910 OPEN_EXISTING, FILE_FLAG_OVERLAPPED, 0);
1911 if (s->hcom == INVALID_HANDLE_VALUE) {
Paolo Bonzini6511d392015-09-29 15:08:05 +02001912 error_setg(errp, "Failed CreateFile (%lu)", GetLastError());
aliguori6f97dba2008-10-31 18:49:55 +00001913 s->hcom = NULL;
1914 goto fail;
1915 }
1916
1917 if (!SetupComm(s->hcom, NRECVBUF, NSENDBUF)) {
Paolo Bonzini6511d392015-09-29 15:08:05 +02001918 error_setg(errp, "Failed SetupComm");
aliguori6f97dba2008-10-31 18:49:55 +00001919 goto fail;
1920 }
1921
1922 ZeroMemory(&comcfg, sizeof(COMMCONFIG));
1923 size = sizeof(COMMCONFIG);
1924 GetDefaultCommConfig(filename, &comcfg, &size);
1925 comcfg.dcb.DCBlength = sizeof(DCB);
1926 CommConfigDialog(filename, NULL, &comcfg);
1927
1928 if (!SetCommState(s->hcom, &comcfg.dcb)) {
Paolo Bonzini6511d392015-09-29 15:08:05 +02001929 error_setg(errp, "Failed SetCommState");
aliguori6f97dba2008-10-31 18:49:55 +00001930 goto fail;
1931 }
1932
1933 if (!SetCommMask(s->hcom, EV_ERR)) {
Paolo Bonzini6511d392015-09-29 15:08:05 +02001934 error_setg(errp, "Failed SetCommMask");
aliguori6f97dba2008-10-31 18:49:55 +00001935 goto fail;
1936 }
1937
1938 cto.ReadIntervalTimeout = MAXDWORD;
1939 if (!SetCommTimeouts(s->hcom, &cto)) {
Paolo Bonzini6511d392015-09-29 15:08:05 +02001940 error_setg(errp, "Failed SetCommTimeouts");
aliguori6f97dba2008-10-31 18:49:55 +00001941 goto fail;
1942 }
1943
1944 if (!ClearCommError(s->hcom, &err, &comstat)) {
Paolo Bonzini6511d392015-09-29 15:08:05 +02001945 error_setg(errp, "Failed ClearCommError");
aliguori6f97dba2008-10-31 18:49:55 +00001946 goto fail;
1947 }
1948 qemu_add_polling_cb(win_chr_poll, chr);
1949 return 0;
1950
1951 fail:
1952 win_chr_close(chr);
1953 return -1;
1954}
1955
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001956/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00001957static int win_chr_write(CharDriverState *chr, const uint8_t *buf, int len1)
1958{
1959 WinCharState *s = chr->opaque;
1960 DWORD len, ret, size, err;
1961
1962 len = len1;
1963 ZeroMemory(&s->osend, sizeof(s->osend));
1964 s->osend.hEvent = s->hsend;
1965 while (len > 0) {
1966 if (s->hsend)
1967 ret = WriteFile(s->hcom, buf, len, &size, &s->osend);
1968 else
1969 ret = WriteFile(s->hcom, buf, len, &size, NULL);
1970 if (!ret) {
1971 err = GetLastError();
1972 if (err == ERROR_IO_PENDING) {
1973 ret = GetOverlappedResult(s->hcom, &s->osend, &size, TRUE);
1974 if (ret) {
1975 buf += size;
1976 len -= size;
1977 } else {
1978 break;
1979 }
1980 } else {
1981 break;
1982 }
1983 } else {
1984 buf += size;
1985 len -= size;
1986 }
1987 }
1988 return len1 - len;
1989}
1990
1991static int win_chr_read_poll(CharDriverState *chr)
1992{
1993 WinCharState *s = chr->opaque;
1994
Anthony Liguori909cda12011-08-15 11:17:31 -05001995 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001996 return s->max_size;
1997}
1998
1999static void win_chr_readfile(CharDriverState *chr)
2000{
2001 WinCharState *s = chr->opaque;
2002 int ret, err;
Amit Shah9bd78542009-11-03 19:59:54 +05302003 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002004 DWORD size;
2005
2006 ZeroMemory(&s->orecv, sizeof(s->orecv));
2007 s->orecv.hEvent = s->hrecv;
2008 ret = ReadFile(s->hcom, buf, s->len, &size, &s->orecv);
2009 if (!ret) {
2010 err = GetLastError();
2011 if (err == ERROR_IO_PENDING) {
2012 ret = GetOverlappedResult(s->hcom, &s->orecv, &size, TRUE);
2013 }
2014 }
2015
2016 if (size > 0) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002017 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00002018 }
2019}
2020
2021static void win_chr_read(CharDriverState *chr)
2022{
2023 WinCharState *s = chr->opaque;
2024
2025 if (s->len > s->max_size)
2026 s->len = s->max_size;
2027 if (s->len == 0)
2028 return;
2029
2030 win_chr_readfile(chr);
2031}
2032
2033static int win_chr_poll(void *opaque)
2034{
2035 CharDriverState *chr = opaque;
2036 WinCharState *s = chr->opaque;
2037 COMSTAT status;
2038 DWORD comerr;
2039
2040 ClearCommError(s->hcom, &comerr, &status);
2041 if (status.cbInQue > 0) {
2042 s->len = status.cbInQue;
2043 win_chr_read_poll(chr);
2044 win_chr_read(chr);
2045 return 1;
2046 }
2047 return 0;
2048}
2049
Paolo Bonzini6511d392015-09-29 15:08:05 +02002050static CharDriverState *qemu_chr_open_win_path(const char *filename,
2051 Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00002052{
2053 CharDriverState *chr;
2054 WinCharState *s;
2055
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002056 chr = qemu_chr_alloc();
Markus Armbruster2d528d42015-09-14 13:54:03 +02002057 s = g_new0(WinCharState, 1);
aliguori6f97dba2008-10-31 18:49:55 +00002058 chr->opaque = s;
2059 chr->chr_write = win_chr_write;
2060 chr->chr_close = win_chr_close;
2061
Paolo Bonzini6511d392015-09-29 15:08:05 +02002062 if (win_chr_init(chr, filename, errp) < 0) {
Stefan Weil2e02e182011-10-07 07:38:46 +02002063 g_free(s);
2064 g_free(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01002065 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002066 }
Markus Armbruster1f514702012-02-07 15:09:08 +01002067 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00002068}
2069
2070static int win_chr_pipe_poll(void *opaque)
2071{
2072 CharDriverState *chr = opaque;
2073 WinCharState *s = chr->opaque;
2074 DWORD size;
2075
2076 PeekNamedPipe(s->hcom, NULL, 0, NULL, &size, NULL);
2077 if (size > 0) {
2078 s->len = size;
2079 win_chr_read_poll(chr);
2080 win_chr_read(chr);
2081 return 1;
2082 }
2083 return 0;
2084}
2085
Paolo Bonzini20cbe7a2015-09-29 15:14:07 +02002086static int win_chr_pipe_init(CharDriverState *chr, const char *filename,
2087 Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00002088{
2089 WinCharState *s = chr->opaque;
2090 OVERLAPPED ov;
2091 int ret;
2092 DWORD size;
Corey Minyard9f781162014-10-02 11:17:33 -05002093 char openname[CHR_MAX_FILENAME_SIZE];
aliguori6f97dba2008-10-31 18:49:55 +00002094
2095 s->fpipe = TRUE;
2096
2097 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
2098 if (!s->hsend) {
Paolo Bonzini20cbe7a2015-09-29 15:14:07 +02002099 error_setg(errp, "Failed CreateEvent");
aliguori6f97dba2008-10-31 18:49:55 +00002100 goto fail;
2101 }
2102 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
2103 if (!s->hrecv) {
Paolo Bonzini20cbe7a2015-09-29 15:14:07 +02002104 error_setg(errp, "Failed CreateEvent");
aliguori6f97dba2008-10-31 18:49:55 +00002105 goto fail;
2106 }
2107
2108 snprintf(openname, sizeof(openname), "\\\\.\\pipe\\%s", filename);
2109 s->hcom = CreateNamedPipe(openname, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
2110 PIPE_TYPE_BYTE | PIPE_READMODE_BYTE |
2111 PIPE_WAIT,
2112 MAXCONNECT, NSENDBUF, NRECVBUF, NTIMEOUT, NULL);
2113 if (s->hcom == INVALID_HANDLE_VALUE) {
Paolo Bonzini20cbe7a2015-09-29 15:14:07 +02002114 error_setg(errp, "Failed CreateNamedPipe (%lu)", GetLastError());
aliguori6f97dba2008-10-31 18:49:55 +00002115 s->hcom = NULL;
2116 goto fail;
2117 }
2118
2119 ZeroMemory(&ov, sizeof(ov));
2120 ov.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
2121 ret = ConnectNamedPipe(s->hcom, &ov);
2122 if (ret) {
Paolo Bonzini20cbe7a2015-09-29 15:14:07 +02002123 error_setg(errp, "Failed ConnectNamedPipe");
aliguori6f97dba2008-10-31 18:49:55 +00002124 goto fail;
2125 }
2126
2127 ret = GetOverlappedResult(s->hcom, &ov, &size, TRUE);
2128 if (!ret) {
Paolo Bonzini20cbe7a2015-09-29 15:14:07 +02002129 error_setg(errp, "Failed GetOverlappedResult");
aliguori6f97dba2008-10-31 18:49:55 +00002130 if (ov.hEvent) {
2131 CloseHandle(ov.hEvent);
2132 ov.hEvent = NULL;
2133 }
2134 goto fail;
2135 }
2136
2137 if (ov.hEvent) {
2138 CloseHandle(ov.hEvent);
2139 ov.hEvent = NULL;
2140 }
2141 qemu_add_polling_cb(win_chr_pipe_poll, chr);
2142 return 0;
2143
2144 fail:
2145 win_chr_close(chr);
2146 return -1;
2147}
2148
2149
Paolo Bonzini20cbe7a2015-09-29 15:14:07 +02002150static CharDriverState *qemu_chr_open_pipe(const char *id,
2151 ChardevBackend *backend,
2152 ChardevReturn *ret,
2153 Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00002154{
Eric Blake130257d2015-10-26 16:34:57 -06002155 ChardevHostdev *opts = backend->u.pipe;
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01002156 const char *filename = opts->device;
aliguori6f97dba2008-10-31 18:49:55 +00002157 CharDriverState *chr;
2158 WinCharState *s;
2159
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002160 chr = qemu_chr_alloc();
Markus Armbruster2d528d42015-09-14 13:54:03 +02002161 s = g_new0(WinCharState, 1);
aliguori6f97dba2008-10-31 18:49:55 +00002162 chr->opaque = s;
2163 chr->chr_write = win_chr_write;
2164 chr->chr_close = win_chr_close;
2165
Paolo Bonzini20cbe7a2015-09-29 15:14:07 +02002166 if (win_chr_pipe_init(chr, filename, errp) < 0) {
Stefan Weil2e02e182011-10-07 07:38:46 +02002167 g_free(s);
2168 g_free(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01002169 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002170 }
Markus Armbruster1f514702012-02-07 15:09:08 +01002171 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00002172}
2173
Markus Armbruster1f514702012-02-07 15:09:08 +01002174static CharDriverState *qemu_chr_open_win_file(HANDLE fd_out)
aliguori6f97dba2008-10-31 18:49:55 +00002175{
2176 CharDriverState *chr;
2177 WinCharState *s;
2178
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002179 chr = qemu_chr_alloc();
Markus Armbruster2d528d42015-09-14 13:54:03 +02002180 s = g_new0(WinCharState, 1);
aliguori6f97dba2008-10-31 18:49:55 +00002181 s->hcom = fd_out;
2182 chr->opaque = s;
2183 chr->chr_write = win_chr_write;
Markus Armbruster1f514702012-02-07 15:09:08 +01002184 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00002185}
2186
Paolo Bonzini122e5ed2015-09-29 15:42:04 +02002187static CharDriverState *qemu_chr_open_win_con(const char *id,
2188 ChardevBackend *backend,
2189 ChardevReturn *ret,
2190 Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00002191{
Markus Armbruster1f514702012-02-07 15:09:08 +01002192 return qemu_chr_open_win_file(GetStdHandle(STD_OUTPUT_HANDLE));
aliguori6f97dba2008-10-31 18:49:55 +00002193}
2194
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002195static int win_stdio_write(CharDriverState *chr, const uint8_t *buf, int len)
2196{
2197 HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
2198 DWORD dwSize;
2199 int len1;
2200
2201 len1 = len;
2202
2203 while (len1 > 0) {
2204 if (!WriteFile(hStdOut, buf, len1, &dwSize, NULL)) {
2205 break;
2206 }
2207 buf += dwSize;
2208 len1 -= dwSize;
2209 }
2210
2211 return len - len1;
2212}
2213
2214static void win_stdio_wait_func(void *opaque)
2215{
2216 CharDriverState *chr = opaque;
2217 WinStdioCharState *stdio = chr->opaque;
2218 INPUT_RECORD buf[4];
2219 int ret;
2220 DWORD dwSize;
2221 int i;
2222
Stefan Weildff74242013-12-07 14:48:04 +01002223 ret = ReadConsoleInput(stdio->hStdIn, buf, ARRAY_SIZE(buf), &dwSize);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002224
2225 if (!ret) {
2226 /* Avoid error storm */
2227 qemu_del_wait_object(stdio->hStdIn, NULL, NULL);
2228 return;
2229 }
2230
2231 for (i = 0; i < dwSize; i++) {
2232 KEY_EVENT_RECORD *kev = &buf[i].Event.KeyEvent;
2233
2234 if (buf[i].EventType == KEY_EVENT && kev->bKeyDown) {
2235 int j;
2236 if (kev->uChar.AsciiChar != 0) {
2237 for (j = 0; j < kev->wRepeatCount; j++) {
2238 if (qemu_chr_be_can_write(chr)) {
2239 uint8_t c = kev->uChar.AsciiChar;
2240 qemu_chr_be_write(chr, &c, 1);
2241 }
2242 }
2243 }
2244 }
2245 }
2246}
2247
2248static DWORD WINAPI win_stdio_thread(LPVOID param)
2249{
2250 CharDriverState *chr = param;
2251 WinStdioCharState *stdio = chr->opaque;
2252 int ret;
2253 DWORD dwSize;
2254
2255 while (1) {
2256
2257 /* Wait for one byte */
2258 ret = ReadFile(stdio->hStdIn, &stdio->win_stdio_buf, 1, &dwSize, NULL);
2259
2260 /* Exit in case of error, continue if nothing read */
2261 if (!ret) {
2262 break;
2263 }
2264 if (!dwSize) {
2265 continue;
2266 }
2267
2268 /* Some terminal emulator returns \r\n for Enter, just pass \n */
2269 if (stdio->win_stdio_buf == '\r') {
2270 continue;
2271 }
2272
2273 /* Signal the main thread and wait until the byte was eaten */
2274 if (!SetEvent(stdio->hInputReadyEvent)) {
2275 break;
2276 }
2277 if (WaitForSingleObject(stdio->hInputDoneEvent, INFINITE)
2278 != WAIT_OBJECT_0) {
2279 break;
2280 }
2281 }
2282
2283 qemu_del_wait_object(stdio->hInputReadyEvent, NULL, NULL);
2284 return 0;
2285}
2286
2287static void win_stdio_thread_wait_func(void *opaque)
2288{
2289 CharDriverState *chr = opaque;
2290 WinStdioCharState *stdio = chr->opaque;
2291
2292 if (qemu_chr_be_can_write(chr)) {
2293 qemu_chr_be_write(chr, &stdio->win_stdio_buf, 1);
2294 }
2295
2296 SetEvent(stdio->hInputDoneEvent);
2297}
2298
2299static void qemu_chr_set_echo_win_stdio(CharDriverState *chr, bool echo)
2300{
2301 WinStdioCharState *stdio = chr->opaque;
2302 DWORD dwMode = 0;
2303
2304 GetConsoleMode(stdio->hStdIn, &dwMode);
2305
2306 if (echo) {
2307 SetConsoleMode(stdio->hStdIn, dwMode | ENABLE_ECHO_INPUT);
2308 } else {
2309 SetConsoleMode(stdio->hStdIn, dwMode & ~ENABLE_ECHO_INPUT);
2310 }
2311}
2312
2313static void win_stdio_close(CharDriverState *chr)
2314{
2315 WinStdioCharState *stdio = chr->opaque;
2316
2317 if (stdio->hInputReadyEvent != INVALID_HANDLE_VALUE) {
2318 CloseHandle(stdio->hInputReadyEvent);
2319 }
2320 if (stdio->hInputDoneEvent != INVALID_HANDLE_VALUE) {
2321 CloseHandle(stdio->hInputDoneEvent);
2322 }
2323 if (stdio->hInputThread != INVALID_HANDLE_VALUE) {
2324 TerminateThread(stdio->hInputThread, 0);
2325 }
2326
2327 g_free(chr->opaque);
2328 g_free(chr);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002329}
2330
Paolo Bonzini8c84b252015-09-29 15:40:28 +02002331static CharDriverState *qemu_chr_open_stdio(const char *id,
2332 ChardevBackend *backend,
2333 ChardevReturn *ret,
2334 Error **errp)
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002335{
2336 CharDriverState *chr;
2337 WinStdioCharState *stdio;
2338 DWORD dwMode;
2339 int is_console = 0;
2340
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002341 chr = qemu_chr_alloc();
Markus Armbruster2d528d42015-09-14 13:54:03 +02002342 stdio = g_new0(WinStdioCharState, 1);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002343
2344 stdio->hStdIn = GetStdHandle(STD_INPUT_HANDLE);
2345 if (stdio->hStdIn == INVALID_HANDLE_VALUE) {
Paolo Bonzini8c84b252015-09-29 15:40:28 +02002346 error_setg(errp, "cannot open stdio: invalid handle");
2347 return NULL;
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002348 }
2349
2350 is_console = GetConsoleMode(stdio->hStdIn, &dwMode) != 0;
2351
2352 chr->opaque = stdio;
2353 chr->chr_write = win_stdio_write;
2354 chr->chr_close = win_stdio_close;
2355
Anthony Liguoried7a1542013-03-05 23:21:17 +05302356 if (is_console) {
2357 if (qemu_add_wait_object(stdio->hStdIn,
2358 win_stdio_wait_func, chr)) {
Paolo Bonzini8c84b252015-09-29 15:40:28 +02002359 error_setg(errp, "qemu_add_wait_object: failed");
2360 goto err1;
Anthony Liguoried7a1542013-03-05 23:21:17 +05302361 }
2362 } else {
2363 DWORD dwId;
2364
2365 stdio->hInputReadyEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2366 stdio->hInputDoneEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
Paolo Bonzini8c84b252015-09-29 15:40:28 +02002367 if (stdio->hInputReadyEvent == INVALID_HANDLE_VALUE
Anthony Liguoried7a1542013-03-05 23:21:17 +05302368 || stdio->hInputDoneEvent == INVALID_HANDLE_VALUE) {
Paolo Bonzini8c84b252015-09-29 15:40:28 +02002369 error_setg(errp, "cannot create event");
2370 goto err2;
Anthony Liguoried7a1542013-03-05 23:21:17 +05302371 }
2372 if (qemu_add_wait_object(stdio->hInputReadyEvent,
2373 win_stdio_thread_wait_func, chr)) {
Paolo Bonzini8c84b252015-09-29 15:40:28 +02002374 error_setg(errp, "qemu_add_wait_object: failed");
2375 goto err2;
2376 }
2377 stdio->hInputThread = CreateThread(NULL, 0, win_stdio_thread,
2378 chr, 0, &dwId);
2379
2380 if (stdio->hInputThread == INVALID_HANDLE_VALUE) {
2381 error_setg(errp, "cannot create stdio thread");
2382 goto err3;
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002383 }
2384 }
2385
2386 dwMode |= ENABLE_LINE_INPUT;
2387
Anthony Liguoried7a1542013-03-05 23:21:17 +05302388 if (is_console) {
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002389 /* set the terminal in raw mode */
2390 /* ENABLE_QUICK_EDIT_MODE | ENABLE_EXTENDED_FLAGS */
2391 dwMode |= ENABLE_PROCESSED_INPUT;
2392 }
2393
2394 SetConsoleMode(stdio->hStdIn, dwMode);
2395
2396 chr->chr_set_echo = qemu_chr_set_echo_win_stdio;
2397 qemu_chr_fe_set_echo(chr, false);
2398
Markus Armbruster1f514702012-02-07 15:09:08 +01002399 return chr;
Paolo Bonzini8c84b252015-09-29 15:40:28 +02002400
2401err3:
2402 qemu_del_wait_object(stdio->hInputReadyEvent, NULL, NULL);
2403err2:
2404 CloseHandle(stdio->hInputReadyEvent);
2405 CloseHandle(stdio->hInputDoneEvent);
2406err1:
2407 qemu_del_wait_object(stdio->hStdIn, NULL, NULL);
2408 return NULL;
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002409}
aliguori6f97dba2008-10-31 18:49:55 +00002410#endif /* !_WIN32 */
2411
Anthony Liguori5ab82112013-03-05 23:21:31 +05302412
aliguori6f97dba2008-10-31 18:49:55 +00002413/***********************************************************/
2414/* UDP Net console */
2415
2416typedef struct {
2417 int fd;
Anthony Liguori76a96442013-03-05 23:21:21 +05302418 GIOChannel *chan;
Amit Shah9bd78542009-11-03 19:59:54 +05302419 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002420 int bufcnt;
2421 int bufptr;
2422 int max_size;
2423} NetCharDriver;
2424
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02002425/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00002426static int udp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2427{
2428 NetCharDriver *s = chr->opaque;
Anthony Liguori76a96442013-03-05 23:21:21 +05302429 gsize bytes_written;
2430 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00002431
Anthony Liguori76a96442013-03-05 23:21:21 +05302432 status = g_io_channel_write_chars(s->chan, (const gchar *)buf, len, &bytes_written, NULL);
2433 if (status == G_IO_STATUS_EOF) {
2434 return 0;
2435 } else if (status != G_IO_STATUS_NORMAL) {
2436 return -1;
2437 }
2438
2439 return bytes_written;
aliguori6f97dba2008-10-31 18:49:55 +00002440}
2441
2442static int udp_chr_read_poll(void *opaque)
2443{
2444 CharDriverState *chr = opaque;
2445 NetCharDriver *s = chr->opaque;
2446
Anthony Liguori909cda12011-08-15 11:17:31 -05002447 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002448
2449 /* If there were any stray characters in the queue process them
2450 * first
2451 */
2452 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002453 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
aliguori6f97dba2008-10-31 18:49:55 +00002454 s->bufptr++;
Anthony Liguori909cda12011-08-15 11:17:31 -05002455 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002456 }
2457 return s->max_size;
2458}
2459
Anthony Liguori76a96442013-03-05 23:21:21 +05302460static gboolean udp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002461{
2462 CharDriverState *chr = opaque;
2463 NetCharDriver *s = chr->opaque;
Anthony Liguori76a96442013-03-05 23:21:21 +05302464 gsize bytes_read = 0;
2465 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00002466
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02002467 if (s->max_size == 0) {
2468 return TRUE;
2469 }
Anthony Liguori76a96442013-03-05 23:21:21 +05302470 status = g_io_channel_read_chars(s->chan, (gchar *)s->buf, sizeof(s->buf),
2471 &bytes_read, NULL);
2472 s->bufcnt = bytes_read;
aliguori6f97dba2008-10-31 18:49:55 +00002473 s->bufptr = s->bufcnt;
Anthony Liguori76a96442013-03-05 23:21:21 +05302474 if (status != G_IO_STATUS_NORMAL) {
Amit Shah26da70c2013-08-28 15:23:37 +05302475 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302476 return FALSE;
2477 }
aliguori6f97dba2008-10-31 18:49:55 +00002478
2479 s->bufptr = 0;
2480 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002481 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
aliguori6f97dba2008-10-31 18:49:55 +00002482 s->bufptr++;
Anthony Liguori909cda12011-08-15 11:17:31 -05002483 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002484 }
Anthony Liguori76a96442013-03-05 23:21:21 +05302485
2486 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002487}
2488
2489static void udp_chr_update_read_handler(CharDriverState *chr)
2490{
2491 NetCharDriver *s = chr->opaque;
2492
Amit Shah26da70c2013-08-28 15:23:37 +05302493 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302494 if (s->chan) {
Amit Shah7ba9add2013-08-28 15:18:29 +05302495 chr->fd_in_tag = io_add_watch_poll(s->chan, udp_chr_read_poll,
2496 udp_chr_read, chr);
aliguori6f97dba2008-10-31 18:49:55 +00002497 }
2498}
2499
aliguori819f56b2009-03-28 17:58:14 +00002500static void udp_chr_close(CharDriverState *chr)
2501{
2502 NetCharDriver *s = chr->opaque;
Amit Shah26da70c2013-08-28 15:23:37 +05302503
2504 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302505 if (s->chan) {
2506 g_io_channel_unref(s->chan);
aliguori819f56b2009-03-28 17:58:14 +00002507 closesocket(s->fd);
2508 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002509 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01002510 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori819f56b2009-03-28 17:58:14 +00002511}
2512
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002513static CharDriverState *qemu_chr_open_udp_fd(int fd)
aliguori6f97dba2008-10-31 18:49:55 +00002514{
2515 CharDriverState *chr = NULL;
2516 NetCharDriver *s = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002517
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002518 chr = qemu_chr_alloc();
Markus Armbruster2d528d42015-09-14 13:54:03 +02002519 s = g_new0(NetCharDriver, 1);
aliguori6f97dba2008-10-31 18:49:55 +00002520
aliguori6f97dba2008-10-31 18:49:55 +00002521 s->fd = fd;
Anthony Liguori76a96442013-03-05 23:21:21 +05302522 s->chan = io_channel_from_socket(s->fd);
aliguori6f97dba2008-10-31 18:49:55 +00002523 s->bufcnt = 0;
2524 s->bufptr = 0;
2525 chr->opaque = s;
2526 chr->chr_write = udp_chr_write;
2527 chr->chr_update_read_handler = udp_chr_update_read_handler;
aliguori819f56b2009-03-28 17:58:14 +00002528 chr->chr_close = udp_chr_close;
Michael Rothbd5c51e2013-06-07 15:19:53 -05002529 /* be isn't opened until we get a connection */
2530 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +01002531 return chr;
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002532}
aliguori6f97dba2008-10-31 18:49:55 +00002533
aliguori6f97dba2008-10-31 18:49:55 +00002534/***********************************************************/
2535/* TCP Net console */
2536
2537typedef struct {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302538
2539 GIOChannel *chan, *listen_chan;
Amit Shah7ba9add2013-08-28 15:18:29 +05302540 guint listen_tag;
aliguori6f97dba2008-10-31 18:49:55 +00002541 int fd, listen_fd;
2542 int connected;
2543 int max_size;
2544 int do_telnetopt;
2545 int do_nodelay;
2546 int is_unix;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002547 int *read_msgfds;
2548 int read_msgfds_num;
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002549 int *write_msgfds;
2550 int write_msgfds_num;
Corey Minyardcfb429c2014-10-02 11:17:35 -05002551
2552 SocketAddress *addr;
2553 bool is_listen;
2554 bool is_telnet;
Corey Minyard5dd1f022014-10-02 11:17:37 -05002555
2556 guint reconnect_timer;
2557 int64_t reconnect_time;
Corey Minyard5008e5b2014-10-08 07:11:55 -05002558 bool connect_err_reported;
aliguori6f97dba2008-10-31 18:49:55 +00002559} TCPCharDriver;
2560
Corey Minyard5dd1f022014-10-02 11:17:37 -05002561static gboolean socket_reconnect_timeout(gpointer opaque);
2562
2563static void qemu_chr_socket_restart_timer(CharDriverState *chr)
2564{
2565 TCPCharDriver *s = chr->opaque;
2566 assert(s->connected == 0);
2567 s->reconnect_timer = g_timeout_add_seconds(s->reconnect_time,
2568 socket_reconnect_timeout, chr);
2569}
2570
Corey Minyard5008e5b2014-10-08 07:11:55 -05002571static void check_report_connect_error(CharDriverState *chr,
2572 Error *err)
2573{
2574 TCPCharDriver *s = chr->opaque;
2575
2576 if (!s->connect_err_reported) {
2577 error_report("Unable to connect character device %s: %s",
2578 chr->label, error_get_pretty(err));
2579 s->connect_err_reported = true;
2580 }
2581 qemu_chr_socket_restart_timer(chr);
2582}
2583
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302584static gboolean tcp_chr_accept(GIOChannel *chan, GIOCondition cond, void *opaque);
aliguori6f97dba2008-10-31 18:49:55 +00002585
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002586#ifndef _WIN32
2587static int unix_send_msgfds(CharDriverState *chr, const uint8_t *buf, int len)
2588{
2589 TCPCharDriver *s = chr->opaque;
2590 struct msghdr msgh;
2591 struct iovec iov;
2592 int r;
2593
2594 size_t fd_size = s->write_msgfds_num * sizeof(int);
2595 char control[CMSG_SPACE(fd_size)];
2596 struct cmsghdr *cmsg;
2597
2598 memset(&msgh, 0, sizeof(msgh));
2599 memset(control, 0, sizeof(control));
2600
2601 /* set the payload */
2602 iov.iov_base = (uint8_t *) buf;
2603 iov.iov_len = len;
2604
2605 msgh.msg_iov = &iov;
2606 msgh.msg_iovlen = 1;
2607
2608 msgh.msg_control = control;
2609 msgh.msg_controllen = sizeof(control);
2610
2611 cmsg = CMSG_FIRSTHDR(&msgh);
2612
2613 cmsg->cmsg_len = CMSG_LEN(fd_size);
2614 cmsg->cmsg_level = SOL_SOCKET;
2615 cmsg->cmsg_type = SCM_RIGHTS;
2616 memcpy(CMSG_DATA(cmsg), s->write_msgfds, fd_size);
2617
2618 do {
2619 r = sendmsg(s->fd, &msgh, 0);
2620 } while (r < 0 && errno == EINTR);
2621
2622 /* free the written msgfds, no matter what */
2623 if (s->write_msgfds_num) {
2624 g_free(s->write_msgfds);
2625 s->write_msgfds = 0;
2626 s->write_msgfds_num = 0;
2627 }
2628
2629 return r;
2630}
2631#endif
2632
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02002633/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00002634static int tcp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2635{
2636 TCPCharDriver *s = chr->opaque;
2637 if (s->connected) {
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002638#ifndef _WIN32
2639 if (s->is_unix && s->write_msgfds_num) {
2640 return unix_send_msgfds(chr, buf, len);
2641 } else
2642#endif
2643 {
2644 return io_channel_send(s->chan, buf, len);
2645 }
Anthony Liguori455aa1e2012-09-05 13:52:49 -05002646 } else {
Anthony Liguori6db0fdc2012-09-12 14:34:07 -05002647 /* XXX: indicate an error ? */
Anthony Liguori455aa1e2012-09-05 13:52:49 -05002648 return len;
aliguori6f97dba2008-10-31 18:49:55 +00002649 }
2650}
2651
2652static int tcp_chr_read_poll(void *opaque)
2653{
2654 CharDriverState *chr = opaque;
2655 TCPCharDriver *s = chr->opaque;
2656 if (!s->connected)
2657 return 0;
Anthony Liguori909cda12011-08-15 11:17:31 -05002658 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002659 return s->max_size;
2660}
2661
2662#define IAC 255
2663#define IAC_BREAK 243
2664static void tcp_chr_process_IAC_bytes(CharDriverState *chr,
2665 TCPCharDriver *s,
2666 uint8_t *buf, int *size)
2667{
2668 /* Handle any telnet client's basic IAC options to satisfy char by
2669 * char mode with no echo. All IAC options will be removed from
2670 * the buf and the do_telnetopt variable will be used to track the
2671 * state of the width of the IAC information.
2672 *
2673 * IAC commands come in sets of 3 bytes with the exception of the
2674 * "IAC BREAK" command and the double IAC.
2675 */
2676
2677 int i;
2678 int j = 0;
2679
2680 for (i = 0; i < *size; i++) {
2681 if (s->do_telnetopt > 1) {
2682 if ((unsigned char)buf[i] == IAC && s->do_telnetopt == 2) {
2683 /* Double IAC means send an IAC */
2684 if (j != i)
2685 buf[j] = buf[i];
2686 j++;
2687 s->do_telnetopt = 1;
2688 } else {
2689 if ((unsigned char)buf[i] == IAC_BREAK && s->do_telnetopt == 2) {
2690 /* Handle IAC break commands by sending a serial break */
Hans de Goedea425d232011-11-19 10:22:43 +01002691 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
aliguori6f97dba2008-10-31 18:49:55 +00002692 s->do_telnetopt++;
2693 }
2694 s->do_telnetopt++;
2695 }
2696 if (s->do_telnetopt >= 4) {
2697 s->do_telnetopt = 1;
2698 }
2699 } else {
2700 if ((unsigned char)buf[i] == IAC) {
2701 s->do_telnetopt = 2;
2702 } else {
2703 if (j != i)
2704 buf[j] = buf[i];
2705 j++;
2706 }
2707 }
2708 }
2709 *size = j;
2710}
2711
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002712static int tcp_get_msgfds(CharDriverState *chr, int *fds, int num)
Mark McLoughlin7d174052009-07-22 09:11:39 +01002713{
2714 TCPCharDriver *s = chr->opaque;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002715 int to_copy = (s->read_msgfds_num < num) ? s->read_msgfds_num : num;
2716
Michael S. Tsirkinc4095722014-11-02 18:48:32 +02002717 assert(num <= TCP_MAX_FDS);
2718
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002719 if (to_copy) {
Stefan Hajnoczid2fc39b2014-06-22 10:38:37 +08002720 int i;
2721
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002722 memcpy(fds, s->read_msgfds, to_copy * sizeof(int));
2723
Stefan Hajnoczid2fc39b2014-06-22 10:38:37 +08002724 /* Close unused fds */
2725 for (i = to_copy; i < s->read_msgfds_num; i++) {
2726 close(s->read_msgfds[i]);
2727 }
2728
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002729 g_free(s->read_msgfds);
2730 s->read_msgfds = 0;
2731 s->read_msgfds_num = 0;
2732 }
2733
2734 return to_copy;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002735}
2736
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002737static int tcp_set_msgfds(CharDriverState *chr, int *fds, int num)
2738{
2739 TCPCharDriver *s = chr->opaque;
2740
2741 /* clear old pending fd array */
Daniel P. Berrangeef1e1e02015-08-26 12:17:18 +01002742 g_free(s->write_msgfds);
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002743
2744 if (num) {
Markus Armbruster2d528d42015-09-14 13:54:03 +02002745 s->write_msgfds = g_new(int, num);
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002746 memcpy(s->write_msgfds, fds, num * sizeof(int));
2747 }
2748
2749 s->write_msgfds_num = num;
2750
2751 return 0;
2752}
2753
Anthony Liguori73bcc2a2009-07-27 14:55:25 -05002754#ifndef _WIN32
Mark McLoughlin7d174052009-07-22 09:11:39 +01002755static void unix_process_msgfd(CharDriverState *chr, struct msghdr *msg)
2756{
2757 TCPCharDriver *s = chr->opaque;
2758 struct cmsghdr *cmsg;
2759
2760 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002761 int fd_size, i;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002762
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002763 if (cmsg->cmsg_len < CMSG_LEN(sizeof(int)) ||
Mark McLoughlin7d174052009-07-22 09:11:39 +01002764 cmsg->cmsg_level != SOL_SOCKET ||
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002765 cmsg->cmsg_type != SCM_RIGHTS) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002766 continue;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002767 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002768
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002769 fd_size = cmsg->cmsg_len - CMSG_LEN(0);
2770
2771 if (!fd_size) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002772 continue;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002773 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002774
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002775 /* close and clean read_msgfds */
2776 for (i = 0; i < s->read_msgfds_num; i++) {
2777 close(s->read_msgfds[i]);
2778 }
Stefan Hajnoczi9b938c72013-03-27 10:10:46 +01002779
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002780 if (s->read_msgfds_num) {
2781 g_free(s->read_msgfds);
2782 }
2783
2784 s->read_msgfds_num = fd_size / sizeof(int);
2785 s->read_msgfds = g_malloc(fd_size);
2786 memcpy(s->read_msgfds, CMSG_DATA(cmsg), fd_size);
2787
2788 for (i = 0; i < s->read_msgfds_num; i++) {
2789 int fd = s->read_msgfds[i];
2790 if (fd < 0) {
2791 continue;
2792 }
2793
2794 /* O_NONBLOCK is preserved across SCM_RIGHTS so reset it */
2795 qemu_set_block(fd);
2796
2797 #ifndef MSG_CMSG_CLOEXEC
2798 qemu_set_cloexec(fd);
2799 #endif
2800 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002801 }
2802}
2803
Mark McLoughlin9977c892009-07-22 09:11:38 +01002804static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2805{
2806 TCPCharDriver *s = chr->opaque;
Blue Swirl7cba04f2009-08-01 10:13:20 +00002807 struct msghdr msg = { NULL, };
Mark McLoughlin9977c892009-07-22 09:11:38 +01002808 struct iovec iov[1];
Mark McLoughlin7d174052009-07-22 09:11:39 +01002809 union {
2810 struct cmsghdr cmsg;
Michael S. Tsirkinc4095722014-11-02 18:48:32 +02002811 char control[CMSG_SPACE(sizeof(int) * TCP_MAX_FDS)];
Mark McLoughlin7d174052009-07-22 09:11:39 +01002812 } msg_control;
Corey Bryant06138652012-08-14 16:43:42 -04002813 int flags = 0;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002814 ssize_t ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002815
2816 iov[0].iov_base = buf;
2817 iov[0].iov_len = len;
2818
2819 msg.msg_iov = iov;
2820 msg.msg_iovlen = 1;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002821 msg.msg_control = &msg_control;
2822 msg.msg_controllen = sizeof(msg_control);
Mark McLoughlin9977c892009-07-22 09:11:38 +01002823
Corey Bryant06138652012-08-14 16:43:42 -04002824#ifdef MSG_CMSG_CLOEXEC
2825 flags |= MSG_CMSG_CLOEXEC;
2826#endif
Paolo Bonzini9172f422015-07-21 09:25:54 +02002827 do {
2828 ret = recvmsg(s->fd, &msg, flags);
2829 } while (ret == -1 && errno == EINTR);
2830
Corey Bryant06138652012-08-14 16:43:42 -04002831 if (ret > 0 && s->is_unix) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002832 unix_process_msgfd(chr, &msg);
Corey Bryant06138652012-08-14 16:43:42 -04002833 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002834
2835 return ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002836}
2837#else
2838static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2839{
2840 TCPCharDriver *s = chr->opaque;
Paolo Bonzini9172f422015-07-21 09:25:54 +02002841 ssize_t ret;
2842
2843 do {
2844 ret = qemu_recv(s->fd, buf, len, 0);
2845 } while (ret == -1 && socket_error() == EINTR);
2846
2847 return ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002848}
2849#endif
2850
Amit Shahd3cc5bc2013-03-05 23:21:25 +05302851static GSource *tcp_chr_add_watch(CharDriverState *chr, GIOCondition cond)
2852{
2853 TCPCharDriver *s = chr->opaque;
2854 return g_io_create_watch(s->chan, cond);
2855}
2856
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002857static void tcp_chr_disconnect(CharDriverState *chr)
2858{
2859 TCPCharDriver *s = chr->opaque;
2860
2861 s->connected = 0;
2862 if (s->listen_chan) {
2863 s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN,
2864 tcp_chr_accept, chr);
2865 }
2866 remove_fd_in_watch(chr);
2867 g_io_channel_unref(s->chan);
2868 s->chan = NULL;
2869 closesocket(s->fd);
2870 s->fd = -1;
Corey Minyard16cc4ff2014-10-02 11:17:36 -05002871 SocketAddress_to_str(chr->filename, CHR_MAX_FILENAME_SIZE,
2872 "disconnected:", s->addr, s->is_listen, s->is_telnet);
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002873 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
Corey Minyard5dd1f022014-10-02 11:17:37 -05002874 if (s->reconnect_time) {
2875 qemu_chr_socket_restart_timer(chr);
2876 }
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002877}
2878
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302879static gboolean tcp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002880{
2881 CharDriverState *chr = opaque;
2882 TCPCharDriver *s = chr->opaque;
Amit Shah9bd78542009-11-03 19:59:54 +05302883 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002884 int len, size;
2885
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302886 if (!s->connected || s->max_size <= 0) {
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02002887 return TRUE;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302888 }
aliguori6f97dba2008-10-31 18:49:55 +00002889 len = sizeof(buf);
2890 if (len > s->max_size)
2891 len = s->max_size;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002892 size = tcp_chr_recv(chr, (void *)buf, len);
Nils Carlson4bf1cb02015-07-19 20:39:56 +00002893 if (size == 0 ||
2894 (size < 0 &&
2895 socket_error() != EAGAIN && socket_error() != EWOULDBLOCK)) {
aliguori6f97dba2008-10-31 18:49:55 +00002896 /* connection closed */
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002897 tcp_chr_disconnect(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002898 } else if (size > 0) {
2899 if (s->do_telnetopt)
2900 tcp_chr_process_IAC_bytes(chr, s, buf, &size);
2901 if (size > 0)
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002902 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00002903 }
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302904
2905 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002906}
2907
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002908static int tcp_chr_sync_read(CharDriverState *chr, const uint8_t *buf, int len)
2909{
2910 TCPCharDriver *s = chr->opaque;
2911 int size;
2912
2913 if (!s->connected) {
2914 return 0;
2915 }
2916
2917 size = tcp_chr_recv(chr, (void *) buf, len);
2918 if (size == 0) {
2919 /* connection closed */
2920 tcp_chr_disconnect(chr);
2921 }
2922
2923 return size;
2924}
2925
Blue Swirl68c18d12010-08-15 09:46:24 +00002926#ifndef _WIN32
2927CharDriverState *qemu_chr_open_eventfd(int eventfd)
2928{
David Marchande9d21c42014-06-11 17:25:16 +02002929 CharDriverState *chr = qemu_chr_open_fd(eventfd, eventfd);
2930
2931 if (chr) {
2932 chr->avail_connections = 1;
2933 }
2934
2935 return chr;
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002936}
Blue Swirl68c18d12010-08-15 09:46:24 +00002937#endif
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002938
aliguori6f97dba2008-10-31 18:49:55 +00002939static void tcp_chr_connect(void *opaque)
2940{
2941 CharDriverState *chr = opaque;
2942 TCPCharDriver *s = chr->opaque;
Corey Minyard01ca5192014-10-02 11:17:38 -05002943 struct sockaddr_storage ss, ps;
2944 socklen_t ss_len = sizeof(ss), ps_len = sizeof(ps);
Corey Minyard16cc4ff2014-10-02 11:17:36 -05002945
2946 memset(&ss, 0, ss_len);
2947 if (getsockname(s->fd, (struct sockaddr *) &ss, &ss_len) != 0) {
2948 snprintf(chr->filename, CHR_MAX_FILENAME_SIZE,
2949 "Error in getsockname: %s\n", strerror(errno));
Corey Minyard01ca5192014-10-02 11:17:38 -05002950 } else if (getpeername(s->fd, (struct sockaddr *) &ps, &ps_len) != 0) {
2951 snprintf(chr->filename, CHR_MAX_FILENAME_SIZE,
2952 "Error in getpeername: %s\n", strerror(errno));
Corey Minyard16cc4ff2014-10-02 11:17:36 -05002953 } else {
Corey Minyard01ca5192014-10-02 11:17:38 -05002954 sockaddr_to_str(chr->filename, CHR_MAX_FILENAME_SIZE,
2955 &ss, ss_len, &ps, ps_len,
Corey Minyard16cc4ff2014-10-02 11:17:36 -05002956 s->is_listen, s->is_telnet);
2957 }
aliguori6f97dba2008-10-31 18:49:55 +00002958
2959 s->connected = 1;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302960 if (s->chan) {
Amit Shah7ba9add2013-08-28 15:18:29 +05302961 chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
2962 tcp_chr_read, chr);
David Gibsonbbdd2ad2012-09-10 12:30:56 +10002963 }
Hans de Goedefee204f2013-03-26 11:07:54 +01002964 qemu_chr_be_generic_open(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002965}
2966
Gal Hammerac1b84d2014-02-25 12:12:35 +02002967static void tcp_chr_update_read_handler(CharDriverState *chr)
2968{
2969 TCPCharDriver *s = chr->opaque;
2970
2971 remove_fd_in_watch(chr);
2972 if (s->chan) {
2973 chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
2974 tcp_chr_read, chr);
2975 }
2976}
2977
aliguori6f97dba2008-10-31 18:49:55 +00002978#define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
2979static void tcp_chr_telnet_init(int fd)
2980{
2981 char buf[3];
2982 /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
2983 IACSET(buf, 0xff, 0xfb, 0x01); /* IAC WILL ECHO */
2984 send(fd, (char *)buf, 3, 0);
2985 IACSET(buf, 0xff, 0xfb, 0x03); /* IAC WILL Suppress go ahead */
2986 send(fd, (char *)buf, 3, 0);
2987 IACSET(buf, 0xff, 0xfb, 0x00); /* IAC WILL Binary */
2988 send(fd, (char *)buf, 3, 0);
2989 IACSET(buf, 0xff, 0xfd, 0x00); /* IAC DO Binary */
2990 send(fd, (char *)buf, 3, 0);
2991}
2992
Daniel P. Berrange13661082011-06-23 13:31:42 +01002993static int tcp_chr_add_client(CharDriverState *chr, int fd)
2994{
2995 TCPCharDriver *s = chr->opaque;
2996 if (s->fd != -1)
2997 return -1;
2998
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01002999 qemu_set_nonblock(fd);
Daniel P. Berrange13661082011-06-23 13:31:42 +01003000 if (s->do_nodelay)
3001 socket_set_nodelay(fd);
3002 s->fd = fd;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303003 s->chan = io_channel_from_socket(fd);
Paolo Bonzini910b6362013-04-19 17:32:06 +02003004 if (s->listen_tag) {
3005 g_source_remove(s->listen_tag);
3006 s->listen_tag = 0;
3007 }
Daniel P. Berrange13661082011-06-23 13:31:42 +01003008 tcp_chr_connect(chr);
3009
3010 return 0;
3011}
3012
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303013static gboolean tcp_chr_accept(GIOChannel *channel, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00003014{
3015 CharDriverState *chr = opaque;
3016 TCPCharDriver *s = chr->opaque;
3017 struct sockaddr_in saddr;
3018#ifndef _WIN32
3019 struct sockaddr_un uaddr;
3020#endif
3021 struct sockaddr *addr;
3022 socklen_t len;
3023 int fd;
3024
3025 for(;;) {
3026#ifndef _WIN32
3027 if (s->is_unix) {
3028 len = sizeof(uaddr);
3029 addr = (struct sockaddr *)&uaddr;
3030 } else
3031#endif
3032 {
3033 len = sizeof(saddr);
3034 addr = (struct sockaddr *)&saddr;
3035 }
Kevin Wolf40ff6d72009-12-02 12:24:42 +01003036 fd = qemu_accept(s->listen_fd, addr, &len);
aliguori6f97dba2008-10-31 18:49:55 +00003037 if (fd < 0 && errno != EINTR) {
Hans de Goede79f20072013-04-25 13:53:02 +02003038 s->listen_tag = 0;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303039 return FALSE;
aliguori6f97dba2008-10-31 18:49:55 +00003040 } else if (fd >= 0) {
3041 if (s->do_telnetopt)
3042 tcp_chr_telnet_init(fd);
3043 break;
3044 }
3045 }
Daniel P. Berrange13661082011-06-23 13:31:42 +01003046 if (tcp_chr_add_client(chr, fd) < 0)
3047 close(fd);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303048
3049 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00003050}
3051
3052static void tcp_chr_close(CharDriverState *chr)
3053{
3054 TCPCharDriver *s = chr->opaque;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03003055 int i;
Corey Minyardcfb429c2014-10-02 11:17:35 -05003056
Corey Minyard5dd1f022014-10-02 11:17:37 -05003057 if (s->reconnect_timer) {
3058 g_source_remove(s->reconnect_timer);
3059 s->reconnect_timer = 0;
3060 }
Corey Minyardcfb429c2014-10-02 11:17:35 -05003061 qapi_free_SocketAddress(s->addr);
aliguori819f56b2009-03-28 17:58:14 +00003062 if (s->fd >= 0) {
Amit Shah26da70c2013-08-28 15:23:37 +05303063 remove_fd_in_watch(chr);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303064 if (s->chan) {
3065 g_io_channel_unref(s->chan);
3066 }
aliguori6f97dba2008-10-31 18:49:55 +00003067 closesocket(s->fd);
aliguori819f56b2009-03-28 17:58:14 +00003068 }
3069 if (s->listen_fd >= 0) {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303070 if (s->listen_tag) {
3071 g_source_remove(s->listen_tag);
Paolo Bonzini910b6362013-04-19 17:32:06 +02003072 s->listen_tag = 0;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303073 }
3074 if (s->listen_chan) {
3075 g_io_channel_unref(s->listen_chan);
3076 }
aliguori6f97dba2008-10-31 18:49:55 +00003077 closesocket(s->listen_fd);
aliguori819f56b2009-03-28 17:58:14 +00003078 }
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03003079 if (s->read_msgfds_num) {
3080 for (i = 0; i < s->read_msgfds_num; i++) {
3081 close(s->read_msgfds[i]);
3082 }
3083 g_free(s->read_msgfds);
3084 }
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03003085 if (s->write_msgfds_num) {
3086 g_free(s->write_msgfds);
3087 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003088 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01003089 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00003090}
3091
Corey Minyard16cc4ff2014-10-02 11:17:36 -05003092static void qemu_chr_finish_socket_connection(CharDriverState *chr, int fd)
aliguori6f97dba2008-10-31 18:49:55 +00003093{
Corey Minyard43ded1a2014-10-02 11:17:34 -05003094 TCPCharDriver *s = chr->opaque;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003095
Corey Minyardcfb429c2014-10-02 11:17:35 -05003096 if (s->is_listen) {
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003097 s->listen_fd = fd;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303098 s->listen_chan = io_channel_from_socket(s->listen_fd);
Corey Minyard43ded1a2014-10-02 11:17:34 -05003099 s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN,
3100 tcp_chr_accept, chr);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003101 } else {
3102 s->connected = 1;
3103 s->fd = fd;
3104 socket_set_nodelay(fd);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05303105 s->chan = io_channel_from_socket(s->fd);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003106 tcp_chr_connect(chr);
3107 }
Corey Minyard43ded1a2014-10-02 11:17:34 -05003108}
3109
Corey Minyard51795022014-10-08 07:11:56 -05003110static void qemu_chr_socket_connected(int fd, Error *err, void *opaque)
Corey Minyard5dd1f022014-10-02 11:17:37 -05003111{
3112 CharDriverState *chr = opaque;
Corey Minyard5008e5b2014-10-08 07:11:55 -05003113 TCPCharDriver *s = chr->opaque;
Corey Minyard5dd1f022014-10-02 11:17:37 -05003114
3115 if (fd < 0) {
Corey Minyard5008e5b2014-10-08 07:11:55 -05003116 check_report_connect_error(chr, err);
Corey Minyard5dd1f022014-10-02 11:17:37 -05003117 return;
3118 }
3119
Corey Minyard5008e5b2014-10-08 07:11:55 -05003120 s->connect_err_reported = false;
Corey Minyard5dd1f022014-10-02 11:17:37 -05003121 qemu_chr_finish_socket_connection(chr, fd);
3122}
3123
Corey Minyardcfb429c2014-10-02 11:17:35 -05003124static bool qemu_chr_open_socket_fd(CharDriverState *chr, Error **errp)
Corey Minyard43ded1a2014-10-02 11:17:34 -05003125{
Corey Minyardcfb429c2014-10-02 11:17:35 -05003126 TCPCharDriver *s = chr->opaque;
Corey Minyard43ded1a2014-10-02 11:17:34 -05003127 int fd;
3128
Corey Minyardcfb429c2014-10-02 11:17:35 -05003129 if (s->is_listen) {
3130 fd = socket_listen(s->addr, errp);
Corey Minyard5dd1f022014-10-02 11:17:37 -05003131 } else if (s->reconnect_time) {
3132 fd = socket_connect(s->addr, errp, qemu_chr_socket_connected, chr);
3133 return fd >= 0;
3134 } else {
Corey Minyardcfb429c2014-10-02 11:17:35 -05003135 fd = socket_connect(s->addr, errp, NULL, NULL);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003136 }
Corey Minyard43ded1a2014-10-02 11:17:34 -05003137 if (fd < 0) {
3138 return false;
3139 }
3140
Corey Minyard16cc4ff2014-10-02 11:17:36 -05003141 qemu_chr_finish_socket_connection(chr, fd);
3142 return true;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003143}
3144
Lei Li51767e72013-01-25 00:03:19 +08003145/*********************************************************/
Markus Armbruster3949e592013-02-06 21:27:24 +01003146/* Ring buffer chardev */
Lei Li51767e72013-01-25 00:03:19 +08003147
3148typedef struct {
3149 size_t size;
3150 size_t prod;
3151 size_t cons;
3152 uint8_t *cbuf;
Markus Armbruster3949e592013-02-06 21:27:24 +01003153} RingBufCharDriver;
Lei Li51767e72013-01-25 00:03:19 +08003154
Markus Armbruster3949e592013-02-06 21:27:24 +01003155static size_t ringbuf_count(const CharDriverState *chr)
Lei Li51767e72013-01-25 00:03:19 +08003156{
Markus Armbruster3949e592013-02-06 21:27:24 +01003157 const RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003158
Markus Armbruster5c230102013-02-06 21:27:23 +01003159 return d->prod - d->cons;
Lei Li51767e72013-01-25 00:03:19 +08003160}
3161
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02003162/* Called with chr_write_lock held. */
Markus Armbruster3949e592013-02-06 21:27:24 +01003163static int ringbuf_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
Lei Li51767e72013-01-25 00:03:19 +08003164{
Markus Armbruster3949e592013-02-06 21:27:24 +01003165 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003166 int i;
3167
3168 if (!buf || (len < 0)) {
3169 return -1;
3170 }
3171
3172 for (i = 0; i < len; i++ ) {
Markus Armbruster5c230102013-02-06 21:27:23 +01003173 d->cbuf[d->prod++ & (d->size - 1)] = buf[i];
3174 if (d->prod - d->cons > d->size) {
Lei Li51767e72013-01-25 00:03:19 +08003175 d->cons = d->prod - d->size;
3176 }
3177 }
3178
3179 return 0;
3180}
3181
Markus Armbruster3949e592013-02-06 21:27:24 +01003182static int ringbuf_chr_read(CharDriverState *chr, uint8_t *buf, int len)
Lei Li51767e72013-01-25 00:03:19 +08003183{
Markus Armbruster3949e592013-02-06 21:27:24 +01003184 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003185 int i;
3186
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02003187 qemu_mutex_lock(&chr->chr_write_lock);
Markus Armbruster5c230102013-02-06 21:27:23 +01003188 for (i = 0; i < len && d->cons != d->prod; i++) {
3189 buf[i] = d->cbuf[d->cons++ & (d->size - 1)];
Lei Li51767e72013-01-25 00:03:19 +08003190 }
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02003191 qemu_mutex_unlock(&chr->chr_write_lock);
Lei Li51767e72013-01-25 00:03:19 +08003192
3193 return i;
3194}
3195
Markus Armbruster3949e592013-02-06 21:27:24 +01003196static void ringbuf_chr_close(struct CharDriverState *chr)
Lei Li51767e72013-01-25 00:03:19 +08003197{
Markus Armbruster3949e592013-02-06 21:27:24 +01003198 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003199
3200 g_free(d->cbuf);
3201 g_free(d);
3202 chr->opaque = NULL;
3203}
3204
Paolo Bonzini479f09a2015-09-29 15:51:14 +02003205static CharDriverState *qemu_chr_open_ringbuf(const char *id,
3206 ChardevBackend *backend,
3207 ChardevReturn *ret,
Markus Armbruster4f573782013-07-26 16:44:32 +02003208 Error **errp)
Lei Li51767e72013-01-25 00:03:19 +08003209{
Eric Blake130257d2015-10-26 16:34:57 -06003210 ChardevRingbuf *opts = backend->u.ringbuf;
Lei Li51767e72013-01-25 00:03:19 +08003211 CharDriverState *chr;
Markus Armbruster3949e592013-02-06 21:27:24 +01003212 RingBufCharDriver *d;
Lei Li51767e72013-01-25 00:03:19 +08003213
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02003214 chr = qemu_chr_alloc();
Lei Li51767e72013-01-25 00:03:19 +08003215 d = g_malloc(sizeof(*d));
3216
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003217 d->size = opts->has_size ? opts->size : 65536;
Lei Li51767e72013-01-25 00:03:19 +08003218
3219 /* The size must be power of 2 */
3220 if (d->size & (d->size - 1)) {
Markus Armbruster4f573782013-07-26 16:44:32 +02003221 error_setg(errp, "size of ringbuf chardev must be power of two");
Lei Li51767e72013-01-25 00:03:19 +08003222 goto fail;
3223 }
3224
3225 d->prod = 0;
3226 d->cons = 0;
3227 d->cbuf = g_malloc0(d->size);
3228
3229 chr->opaque = d;
Markus Armbruster3949e592013-02-06 21:27:24 +01003230 chr->chr_write = ringbuf_chr_write;
3231 chr->chr_close = ringbuf_chr_close;
Lei Li51767e72013-01-25 00:03:19 +08003232
3233 return chr;
3234
3235fail:
3236 g_free(d);
3237 g_free(chr);
3238 return NULL;
3239}
3240
Hani Benhabiles8e597772014-05-27 23:39:30 +01003241bool chr_is_ringbuf(const CharDriverState *chr)
Lei Li1f590cf2013-01-25 00:03:20 +08003242{
Markus Armbruster3949e592013-02-06 21:27:24 +01003243 return chr->chr_write == ringbuf_chr_write;
Lei Li1f590cf2013-01-25 00:03:20 +08003244}
3245
Markus Armbruster3949e592013-02-06 21:27:24 +01003246void qmp_ringbuf_write(const char *device, const char *data,
Markus Armbruster82e59a62013-02-06 21:27:14 +01003247 bool has_format, enum DataFormat format,
Lei Li1f590cf2013-01-25 00:03:20 +08003248 Error **errp)
3249{
3250 CharDriverState *chr;
Markus Armbrusterc4f331b2013-02-06 21:27:17 +01003251 const uint8_t *write_data;
Lei Li1f590cf2013-01-25 00:03:20 +08003252 int ret;
Peter Crosthwaite3d1bba22013-05-22 13:01:43 +10003253 gsize write_count;
Lei Li1f590cf2013-01-25 00:03:20 +08003254
3255 chr = qemu_chr_find(device);
3256 if (!chr) {
Markus Armbruster1a692782013-02-06 21:27:16 +01003257 error_setg(errp, "Device '%s' not found", device);
Lei Li1f590cf2013-01-25 00:03:20 +08003258 return;
3259 }
3260
Markus Armbruster3949e592013-02-06 21:27:24 +01003261 if (!chr_is_ringbuf(chr)) {
3262 error_setg(errp,"%s is not a ringbuf device", device);
Lei Li1f590cf2013-01-25 00:03:20 +08003263 return;
3264 }
3265
Lei Li1f590cf2013-01-25 00:03:20 +08003266 if (has_format && (format == DATA_FORMAT_BASE64)) {
3267 write_data = g_base64_decode(data, &write_count);
3268 } else {
3269 write_data = (uint8_t *)data;
Markus Armbruster82e59a62013-02-06 21:27:14 +01003270 write_count = strlen(data);
Lei Li1f590cf2013-01-25 00:03:20 +08003271 }
3272
Markus Armbruster3949e592013-02-06 21:27:24 +01003273 ret = ringbuf_chr_write(chr, write_data, write_count);
Lei Li1f590cf2013-01-25 00:03:20 +08003274
Markus Armbruster13289fb2013-02-06 21:27:18 +01003275 if (write_data != (uint8_t *)data) {
3276 g_free((void *)write_data);
3277 }
3278
Lei Li1f590cf2013-01-25 00:03:20 +08003279 if (ret < 0) {
3280 error_setg(errp, "Failed to write to device %s", device);
3281 return;
3282 }
3283}
3284
Markus Armbruster3949e592013-02-06 21:27:24 +01003285char *qmp_ringbuf_read(const char *device, int64_t size,
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003286 bool has_format, enum DataFormat format,
3287 Error **errp)
Lei Li49b6d722013-01-25 00:03:21 +08003288{
3289 CharDriverState *chr;
Markus Armbrusterc4f331b2013-02-06 21:27:17 +01003290 uint8_t *read_data;
Lei Li49b6d722013-01-25 00:03:21 +08003291 size_t count;
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003292 char *data;
Lei Li49b6d722013-01-25 00:03:21 +08003293
3294 chr = qemu_chr_find(device);
3295 if (!chr) {
Markus Armbruster1a692782013-02-06 21:27:16 +01003296 error_setg(errp, "Device '%s' not found", device);
Lei Li49b6d722013-01-25 00:03:21 +08003297 return NULL;
3298 }
3299
Markus Armbruster3949e592013-02-06 21:27:24 +01003300 if (!chr_is_ringbuf(chr)) {
3301 error_setg(errp,"%s is not a ringbuf device", device);
Lei Li49b6d722013-01-25 00:03:21 +08003302 return NULL;
3303 }
3304
3305 if (size <= 0) {
3306 error_setg(errp, "size must be greater than zero");
3307 return NULL;
3308 }
3309
Markus Armbruster3949e592013-02-06 21:27:24 +01003310 count = ringbuf_count(chr);
Lei Li49b6d722013-01-25 00:03:21 +08003311 size = size > count ? count : size;
Markus Armbruster44f3bcd2013-02-06 21:27:20 +01003312 read_data = g_malloc(size + 1);
Lei Li49b6d722013-01-25 00:03:21 +08003313
Markus Armbruster3949e592013-02-06 21:27:24 +01003314 ringbuf_chr_read(chr, read_data, size);
Lei Li49b6d722013-01-25 00:03:21 +08003315
3316 if (has_format && (format == DATA_FORMAT_BASE64)) {
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003317 data = g_base64_encode(read_data, size);
Markus Armbruster13289fb2013-02-06 21:27:18 +01003318 g_free(read_data);
Lei Li49b6d722013-01-25 00:03:21 +08003319 } else {
Markus Armbruster3949e592013-02-06 21:27:24 +01003320 /*
3321 * FIXME should read only complete, valid UTF-8 characters up
3322 * to @size bytes. Invalid sequences should be replaced by a
3323 * suitable replacement character. Except when (and only
3324 * when) ring buffer lost characters since last read, initial
3325 * continuation characters should be dropped.
3326 */
Markus Armbruster44f3bcd2013-02-06 21:27:20 +01003327 read_data[size] = 0;
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003328 data = (char *)read_data;
Lei Li49b6d722013-01-25 00:03:21 +08003329 }
3330
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003331 return data;
Lei Li49b6d722013-01-25 00:03:21 +08003332}
3333
Gerd Hoffmann33521632009-12-08 13:11:49 +01003334QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003335{
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003336 char host[65], port[33], width[8], height[8];
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003337 int pos;
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003338 const char *p;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003339 QemuOpts *opts;
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003340 Error *local_err = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003341
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003342 opts = qemu_opts_create(qemu_find_opts("chardev"), label, 1, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01003343 if (local_err) {
Markus Armbruster33394882015-02-10 15:21:26 +01003344 error_report_err(local_err);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003345 return NULL;
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003346 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003347
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003348 if (strstart(filename, "mon:", &p)) {
3349 filename = p;
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003350 qemu_opt_set(opts, "mux", "on", &error_abort);
Paolo Bonzini02c4bdf2013-07-03 20:29:45 +04003351 if (strcmp(filename, "stdio") == 0) {
3352 /* Monitor is muxed to stdio: do not exit on Ctrl+C by default
3353 * but pass it to the guest. Handle this only for compat syntax,
3354 * for -chardev syntax we have special option for this.
3355 * This is what -nographic did, redirecting+muxing serial+monitor
3356 * to stdio causing Ctrl+C to be passed to guest. */
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003357 qemu_opt_set(opts, "signal", "off", &error_abort);
Paolo Bonzini02c4bdf2013-07-03 20:29:45 +04003358 }
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003359 }
3360
Gerd Hoffmannf0457e82009-09-10 10:58:45 +02003361 if (strcmp(filename, "null") == 0 ||
3362 strcmp(filename, "pty") == 0 ||
3363 strcmp(filename, "msmouse") == 0 ||
Gerd Hoffmanndc1c21e2009-09-10 10:58:46 +02003364 strcmp(filename, "braille") == 0 ||
Paolo Bonzini56923992014-07-11 09:44:26 +02003365 strcmp(filename, "testdev") == 0 ||
Gerd Hoffmannf0457e82009-09-10 10:58:45 +02003366 strcmp(filename, "stdio") == 0) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003367 qemu_opt_set(opts, "backend", filename, &error_abort);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003368 return opts;
3369 }
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003370 if (strstart(filename, "vc", &p)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003371 qemu_opt_set(opts, "backend", "vc", &error_abort);
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003372 if (*p == ':') {
Stefan Weil49aa4052013-09-30 23:04:49 +02003373 if (sscanf(p+1, "%7[0-9]x%7[0-9]", width, height) == 2) {
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003374 /* pixels */
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003375 qemu_opt_set(opts, "width", width, &error_abort);
3376 qemu_opt_set(opts, "height", height, &error_abort);
Stefan Weil49aa4052013-09-30 23:04:49 +02003377 } else if (sscanf(p+1, "%7[0-9]Cx%7[0-9]C", width, height) == 2) {
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003378 /* chars */
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003379 qemu_opt_set(opts, "cols", width, &error_abort);
3380 qemu_opt_set(opts, "rows", height, &error_abort);
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003381 } else {
3382 goto fail;
3383 }
3384 }
3385 return opts;
3386 }
Gerd Hoffmannd6c983c2009-09-10 10:58:47 +02003387 if (strcmp(filename, "con:") == 0) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003388 qemu_opt_set(opts, "backend", "console", &error_abort);
Gerd Hoffmannd6c983c2009-09-10 10:58:47 +02003389 return opts;
3390 }
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003391 if (strstart(filename, "COM", NULL)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003392 qemu_opt_set(opts, "backend", "serial", &error_abort);
3393 qemu_opt_set(opts, "path", filename, &error_abort);
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003394 return opts;
3395 }
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003396 if (strstart(filename, "file:", &p)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003397 qemu_opt_set(opts, "backend", "file", &error_abort);
3398 qemu_opt_set(opts, "path", p, &error_abort);
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003399 return opts;
3400 }
3401 if (strstart(filename, "pipe:", &p)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003402 qemu_opt_set(opts, "backend", "pipe", &error_abort);
3403 qemu_opt_set(opts, "path", p, &error_abort);
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003404 return opts;
3405 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003406 if (strstart(filename, "tcp:", &p) ||
3407 strstart(filename, "telnet:", &p)) {
3408 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3409 host[0] = 0;
3410 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1)
3411 goto fail;
3412 }
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003413 qemu_opt_set(opts, "backend", "socket", &error_abort);
3414 qemu_opt_set(opts, "host", host, &error_abort);
3415 qemu_opt_set(opts, "port", port, &error_abort);
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003416 if (p[pos] == ',') {
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003417 qemu_opts_do_parse(opts, p+pos+1, NULL, &local_err);
3418 if (local_err) {
3419 error_report_err(local_err);
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003420 goto fail;
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003421 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003422 }
3423 if (strstart(filename, "telnet:", &p))
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003424 qemu_opt_set(opts, "telnet", "on", &error_abort);
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003425 return opts;
3426 }
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003427 if (strstart(filename, "udp:", &p)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003428 qemu_opt_set(opts, "backend", "udp", &error_abort);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003429 if (sscanf(p, "%64[^:]:%32[^@,]%n", host, port, &pos) < 2) {
3430 host[0] = 0;
Jan Kiszka39324ca2010-03-07 11:28:48 +01003431 if (sscanf(p, ":%32[^@,]%n", port, &pos) < 1) {
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003432 goto fail;
3433 }
3434 }
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003435 qemu_opt_set(opts, "host", host, &error_abort);
3436 qemu_opt_set(opts, "port", port, &error_abort);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003437 if (p[pos] == '@') {
3438 p += pos + 1;
3439 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3440 host[0] = 0;
3441 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1) {
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003442 goto fail;
3443 }
3444 }
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003445 qemu_opt_set(opts, "localaddr", host, &error_abort);
3446 qemu_opt_set(opts, "localport", port, &error_abort);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003447 }
3448 return opts;
3449 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003450 if (strstart(filename, "unix:", &p)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003451 qemu_opt_set(opts, "backend", "socket", &error_abort);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003452 qemu_opts_do_parse(opts, p, "path", &local_err);
3453 if (local_err) {
3454 error_report_err(local_err);
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003455 goto fail;
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003456 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003457 return opts;
3458 }
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003459 if (strstart(filename, "/dev/parport", NULL) ||
3460 strstart(filename, "/dev/ppi", NULL)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003461 qemu_opt_set(opts, "backend", "parport", &error_abort);
3462 qemu_opt_set(opts, "path", filename, &error_abort);
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003463 return opts;
3464 }
3465 if (strstart(filename, "/dev/", NULL)) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003466 qemu_opt_set(opts, "backend", "tty", &error_abort);
3467 qemu_opt_set(opts, "path", filename, &error_abort);
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003468 return opts;
3469 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003470
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003471fail:
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003472 qemu_opts_del(opts);
3473 return NULL;
3474}
3475
Gerd Hoffmann846e2e42013-02-21 12:07:14 +01003476static void qemu_chr_parse_file_out(QemuOpts *opts, ChardevBackend *backend,
3477 Error **errp)
3478{
3479 const char *path = qemu_opt_get(opts, "path");
3480
3481 if (path == NULL) {
3482 error_setg(errp, "chardev: file: no filename given");
3483 return;
3484 }
Eric Blake130257d2015-10-26 16:34:57 -06003485 backend->u.file = g_new0(ChardevFile, 1);
3486 backend->u.file->out = g_strdup(path);
Olga Krishtal31e38a22015-12-04 09:42:04 +03003487
3488 backend->u.file->has_append = true;
3489 backend->u.file->append = qemu_opt_get_bool(opts, "append", false);
Gerd Hoffmann846e2e42013-02-21 12:07:14 +01003490}
3491
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003492static void qemu_chr_parse_stdio(QemuOpts *opts, ChardevBackend *backend,
3493 Error **errp)
3494{
Eric Blake130257d2015-10-26 16:34:57 -06003495 backend->u.stdio = g_new0(ChardevStdio, 1);
3496 backend->u.stdio->has_signal = true;
3497 backend->u.stdio->signal = qemu_opt_get_bool(opts, "signal", true);
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003498}
3499
Paolo Bonzini6511d392015-09-29 15:08:05 +02003500#ifdef HAVE_CHARDEV_SERIAL
Gerd Hoffmann0f1cb512013-02-22 15:48:05 +01003501static void qemu_chr_parse_serial(QemuOpts *opts, ChardevBackend *backend,
3502 Error **errp)
3503{
3504 const char *device = qemu_opt_get(opts, "path");
3505
3506 if (device == NULL) {
3507 error_setg(errp, "chardev: serial/tty: no device path given");
3508 return;
3509 }
Eric Blake130257d2015-10-26 16:34:57 -06003510 backend->u.serial = g_new0(ChardevHostdev, 1);
3511 backend->u.serial->device = g_strdup(device);
Gerd Hoffmann0f1cb512013-02-22 15:48:05 +01003512}
Paolo Bonzini6511d392015-09-29 15:08:05 +02003513#endif
Gerd Hoffmann0f1cb512013-02-22 15:48:05 +01003514
Paolo Bonzini38bfb1a2015-10-12 09:49:28 +02003515#ifdef HAVE_CHARDEV_PARPORT
Gerd Hoffmanndc375092013-02-22 16:17:01 +01003516static void qemu_chr_parse_parallel(QemuOpts *opts, ChardevBackend *backend,
3517 Error **errp)
3518{
3519 const char *device = qemu_opt_get(opts, "path");
3520
3521 if (device == NULL) {
3522 error_setg(errp, "chardev: parallel: no device path given");
3523 return;
3524 }
Eric Blake130257d2015-10-26 16:34:57 -06003525 backend->u.parallel = g_new0(ChardevHostdev, 1);
3526 backend->u.parallel->device = g_strdup(device);
Gerd Hoffmanndc375092013-02-22 16:17:01 +01003527}
Paolo Bonzini38bfb1a2015-10-12 09:49:28 +02003528#endif
Gerd Hoffmanndc375092013-02-22 16:17:01 +01003529
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01003530static void qemu_chr_parse_pipe(QemuOpts *opts, ChardevBackend *backend,
3531 Error **errp)
3532{
3533 const char *device = qemu_opt_get(opts, "path");
3534
3535 if (device == NULL) {
3536 error_setg(errp, "chardev: pipe: no device path given");
3537 return;
3538 }
Eric Blake130257d2015-10-26 16:34:57 -06003539 backend->u.pipe = g_new0(ChardevHostdev, 1);
3540 backend->u.pipe->device = g_strdup(device);
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01003541}
3542
Markus Armbruster4f573782013-07-26 16:44:32 +02003543static void qemu_chr_parse_ringbuf(QemuOpts *opts, ChardevBackend *backend,
3544 Error **errp)
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003545{
3546 int val;
3547
Eric Blake130257d2015-10-26 16:34:57 -06003548 backend->u.ringbuf = g_new0(ChardevRingbuf, 1);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003549
Markus Armbruster0f953052013-06-27 16:22:07 +02003550 val = qemu_opt_get_size(opts, "size", 0);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003551 if (val != 0) {
Eric Blake130257d2015-10-26 16:34:57 -06003552 backend->u.ringbuf->has_size = true;
3553 backend->u.ringbuf->size = val;
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003554 }
3555}
3556
Gerd Hoffmannbb6fb7c2013-06-24 08:39:54 +02003557static void qemu_chr_parse_mux(QemuOpts *opts, ChardevBackend *backend,
3558 Error **errp)
3559{
3560 const char *chardev = qemu_opt_get(opts, "chardev");
3561
3562 if (chardev == NULL) {
3563 error_setg(errp, "chardev: mux: no chardev given");
3564 return;
3565 }
Eric Blake130257d2015-10-26 16:34:57 -06003566 backend->u.mux = g_new0(ChardevMux, 1);
3567 backend->u.mux->chardev = g_strdup(chardev);
Gerd Hoffmannbb6fb7c2013-06-24 08:39:54 +02003568}
3569
Peter Maydelldafd3252014-09-02 11:24:13 +01003570static void qemu_chr_parse_socket(QemuOpts *opts, ChardevBackend *backend,
3571 Error **errp)
3572{
3573 bool is_listen = qemu_opt_get_bool(opts, "server", false);
3574 bool is_waitconnect = is_listen && qemu_opt_get_bool(opts, "wait", true);
3575 bool is_telnet = qemu_opt_get_bool(opts, "telnet", false);
3576 bool do_nodelay = !qemu_opt_get_bool(opts, "delay", true);
Corey Minyard5dd1f022014-10-02 11:17:37 -05003577 int64_t reconnect = qemu_opt_get_number(opts, "reconnect", 0);
Peter Maydelldafd3252014-09-02 11:24:13 +01003578 const char *path = qemu_opt_get(opts, "path");
3579 const char *host = qemu_opt_get(opts, "host");
3580 const char *port = qemu_opt_get(opts, "port");
3581 SocketAddress *addr;
3582
3583 if (!path) {
3584 if (!host) {
3585 error_setg(errp, "chardev: socket: no host given");
3586 return;
3587 }
3588 if (!port) {
3589 error_setg(errp, "chardev: socket: no port given");
3590 return;
3591 }
3592 }
3593
Eric Blake130257d2015-10-26 16:34:57 -06003594 backend->u.socket = g_new0(ChardevSocket, 1);
Peter Maydelldafd3252014-09-02 11:24:13 +01003595
Eric Blake130257d2015-10-26 16:34:57 -06003596 backend->u.socket->has_nodelay = true;
3597 backend->u.socket->nodelay = do_nodelay;
3598 backend->u.socket->has_server = true;
3599 backend->u.socket->server = is_listen;
3600 backend->u.socket->has_telnet = true;
3601 backend->u.socket->telnet = is_telnet;
3602 backend->u.socket->has_wait = true;
3603 backend->u.socket->wait = is_waitconnect;
3604 backend->u.socket->has_reconnect = true;
3605 backend->u.socket->reconnect = reconnect;
Peter Maydelldafd3252014-09-02 11:24:13 +01003606
3607 addr = g_new0(SocketAddress, 1);
3608 if (path) {
Eric Blake130257d2015-10-26 16:34:57 -06003609 addr->type = SOCKET_ADDRESS_KIND_UNIX;
3610 addr->u.q_unix = g_new0(UnixSocketAddress, 1);
3611 addr->u.q_unix->path = g_strdup(path);
Peter Maydelldafd3252014-09-02 11:24:13 +01003612 } else {
Eric Blake130257d2015-10-26 16:34:57 -06003613 addr->type = SOCKET_ADDRESS_KIND_INET;
3614 addr->u.inet = g_new0(InetSocketAddress, 1);
3615 addr->u.inet->host = g_strdup(host);
3616 addr->u.inet->port = g_strdup(port);
3617 addr->u.inet->has_to = qemu_opt_get(opts, "to");
3618 addr->u.inet->to = qemu_opt_get_number(opts, "to", 0);
3619 addr->u.inet->has_ipv4 = qemu_opt_get(opts, "ipv4");
3620 addr->u.inet->ipv4 = qemu_opt_get_bool(opts, "ipv4", 0);
3621 addr->u.inet->has_ipv6 = qemu_opt_get(opts, "ipv6");
3622 addr->u.inet->ipv6 = qemu_opt_get_bool(opts, "ipv6", 0);
Peter Maydelldafd3252014-09-02 11:24:13 +01003623 }
Eric Blake130257d2015-10-26 16:34:57 -06003624 backend->u.socket->addr = addr;
Peter Maydelldafd3252014-09-02 11:24:13 +01003625}
3626
Peter Maydell90a14bf2014-09-02 11:24:15 +01003627static void qemu_chr_parse_udp(QemuOpts *opts, ChardevBackend *backend,
3628 Error **errp)
3629{
3630 const char *host = qemu_opt_get(opts, "host");
3631 const char *port = qemu_opt_get(opts, "port");
3632 const char *localaddr = qemu_opt_get(opts, "localaddr");
3633 const char *localport = qemu_opt_get(opts, "localport");
3634 bool has_local = false;
3635 SocketAddress *addr;
3636
3637 if (host == NULL || strlen(host) == 0) {
3638 host = "localhost";
3639 }
3640 if (port == NULL || strlen(port) == 0) {
3641 error_setg(errp, "chardev: udp: remote port not specified");
3642 return;
3643 }
3644 if (localport == NULL || strlen(localport) == 0) {
3645 localport = "0";
3646 } else {
3647 has_local = true;
3648 }
3649 if (localaddr == NULL || strlen(localaddr) == 0) {
3650 localaddr = "";
3651 } else {
3652 has_local = true;
3653 }
3654
Eric Blake130257d2015-10-26 16:34:57 -06003655 backend->u.udp = g_new0(ChardevUdp, 1);
Peter Maydell90a14bf2014-09-02 11:24:15 +01003656
3657 addr = g_new0(SocketAddress, 1);
Eric Blake130257d2015-10-26 16:34:57 -06003658 addr->type = SOCKET_ADDRESS_KIND_INET;
3659 addr->u.inet = g_new0(InetSocketAddress, 1);
3660 addr->u.inet->host = g_strdup(host);
3661 addr->u.inet->port = g_strdup(port);
3662 addr->u.inet->has_ipv4 = qemu_opt_get(opts, "ipv4");
3663 addr->u.inet->ipv4 = qemu_opt_get_bool(opts, "ipv4", 0);
3664 addr->u.inet->has_ipv6 = qemu_opt_get(opts, "ipv6");
3665 addr->u.inet->ipv6 = qemu_opt_get_bool(opts, "ipv6", 0);
3666 backend->u.udp->remote = addr;
Peter Maydell90a14bf2014-09-02 11:24:15 +01003667
3668 if (has_local) {
Eric Blake130257d2015-10-26 16:34:57 -06003669 backend->u.udp->has_local = true;
Peter Maydell90a14bf2014-09-02 11:24:15 +01003670 addr = g_new0(SocketAddress, 1);
Eric Blake130257d2015-10-26 16:34:57 -06003671 addr->type = SOCKET_ADDRESS_KIND_INET;
3672 addr->u.inet = g_new0(InetSocketAddress, 1);
3673 addr->u.inet->host = g_strdup(localaddr);
3674 addr->u.inet->port = g_strdup(localport);
3675 backend->u.udp->local = addr;
Peter Maydell90a14bf2014-09-02 11:24:15 +01003676 }
3677}
3678
Anthony Liguorid654f342013-03-05 23:21:28 +05303679typedef struct CharDriver {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003680 const char *name;
Gerd Hoffmann99aec012013-06-24 08:39:52 +02003681 ChardevBackendKind kind;
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003682 void (*parse)(QemuOpts *opts, ChardevBackend *backend, Error **errp);
Paolo Bonzini4ca17282015-09-29 14:55:59 +02003683 CharDriverState *(*create)(const char *id, ChardevBackend *backend,
3684 ChardevReturn *ret, Error **errp);
Anthony Liguorid654f342013-03-05 23:21:28 +05303685} CharDriver;
3686
3687static GSList *backends;
3688
Peter Maydelle4d50d42014-09-02 11:24:17 +01003689void register_char_driver(const char *name, ChardevBackendKind kind,
Paolo Bonzini4ca17282015-09-29 14:55:59 +02003690 void (*parse)(QemuOpts *opts, ChardevBackend *backend, Error **errp),
3691 CharDriverState *(*create)(const char *id, ChardevBackend *backend,
3692 ChardevReturn *ret, Error **errp))
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003693{
3694 CharDriver *s;
3695
3696 s = g_malloc0(sizeof(*s));
3697 s->name = g_strdup(name);
3698 s->kind = kind;
3699 s->parse = parse;
Paolo Bonzini4ca17282015-09-29 14:55:59 +02003700 s->create = create;
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003701
3702 backends = g_slist_append(backends, s);
3703}
3704
Anthony Liguorif69554b2011-08-15 11:17:37 -05003705CharDriverState *qemu_chr_new_from_opts(QemuOpts *opts,
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003706 void (*init)(struct CharDriverState *s),
3707 Error **errp)
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003708{
Markus Armbruster0aff6372014-05-19 18:57:35 +02003709 Error *local_err = NULL;
Anthony Liguorid654f342013-03-05 23:21:28 +05303710 CharDriver *cd;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003711 CharDriverState *chr;
Anthony Liguorid654f342013-03-05 23:21:28 +05303712 GSList *i;
Peter Maydella61ae7f2014-09-02 11:24:16 +01003713 ChardevReturn *ret = NULL;
3714 ChardevBackend *backend;
3715 const char *id = qemu_opts_id(opts);
3716 char *bid = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003717
Peter Maydella61ae7f2014-09-02 11:24:16 +01003718 if (id == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003719 error_setg(errp, "chardev: no id specified");
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003720 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003721 }
3722
Stefan Hajnoczi1bbd1852011-01-22 13:07:26 +00003723 if (qemu_opt_get(opts, "backend") == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003724 error_setg(errp, "chardev: \"%s\" missing backend",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003725 qemu_opts_id(opts));
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003726 goto err;
Stefan Hajnoczi1bbd1852011-01-22 13:07:26 +00003727 }
Anthony Liguorid654f342013-03-05 23:21:28 +05303728 for (i = backends; i; i = i->next) {
3729 cd = i->data;
3730
3731 if (strcmp(cd->name, qemu_opt_get(opts, "backend")) == 0) {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003732 break;
Anthony Liguorid654f342013-03-05 23:21:28 +05303733 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003734 }
Anthony Liguorid654f342013-03-05 23:21:28 +05303735 if (i == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003736 error_setg(errp, "chardev: backend \"%s\" not found",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003737 qemu_opt_get(opts, "backend"));
Gerd Hoffmanne6682872013-06-24 08:39:51 +02003738 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003739 }
3740
Peter Maydella61ae7f2014-09-02 11:24:16 +01003741 backend = g_new0(ChardevBackend, 1);
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003742
3743 if (qemu_opt_get_bool(opts, "mux", 0)) {
Peter Maydella61ae7f2014-09-02 11:24:16 +01003744 bid = g_strdup_printf("%s-base", id);
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003745 }
Peter Maydella61ae7f2014-09-02 11:24:16 +01003746
3747 chr = NULL;
Eric Blake130257d2015-10-26 16:34:57 -06003748 backend->type = cd->kind;
Peter Maydella61ae7f2014-09-02 11:24:16 +01003749 if (cd->parse) {
3750 cd->parse(opts, backend, &local_err);
3751 if (local_err) {
3752 error_propagate(errp, local_err);
3753 goto qapi_out;
3754 }
3755 }
3756 ret = qmp_chardev_add(bid ? bid : id, backend, errp);
3757 if (!ret) {
3758 goto qapi_out;
3759 }
3760
3761 if (bid) {
3762 qapi_free_ChardevBackend(backend);
3763 qapi_free_ChardevReturn(ret);
3764 backend = g_new0(ChardevBackend, 1);
Eric Blake130257d2015-10-26 16:34:57 -06003765 backend->u.mux = g_new0(ChardevMux, 1);
3766 backend->type = CHARDEV_BACKEND_KIND_MUX;
3767 backend->u.mux->chardev = g_strdup(bid);
Peter Maydella61ae7f2014-09-02 11:24:16 +01003768 ret = qmp_chardev_add(id, backend, errp);
3769 if (!ret) {
3770 chr = qemu_chr_find(bid);
3771 qemu_chr_delete(chr);
3772 chr = NULL;
3773 goto qapi_out;
3774 }
3775 }
3776
3777 chr = qemu_chr_find(id);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003778 chr->opts = opts;
Peter Maydella61ae7f2014-09-02 11:24:16 +01003779
3780qapi_out:
3781 qapi_free_ChardevBackend(backend);
3782 qapi_free_ChardevReturn(ret);
3783 g_free(bid);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003784 return chr;
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003785
3786err:
3787 qemu_opts_del(opts);
3788 return NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003789}
3790
Anthony Liguori27143a42011-08-15 11:17:36 -05003791CharDriverState *qemu_chr_new(const char *label, const char *filename, void (*init)(struct CharDriverState *s))
aliguori6f97dba2008-10-31 18:49:55 +00003792{
3793 const char *p;
3794 CharDriverState *chr;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003795 QemuOpts *opts;
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003796 Error *err = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003797
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003798 if (strstart(filename, "chardev:", &p)) {
3799 return qemu_chr_find(p);
3800 }
3801
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003802 opts = qemu_chr_parse_compat(label, filename);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003803 if (!opts)
3804 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00003805
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003806 chr = qemu_chr_new_from_opts(opts, init, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01003807 if (err) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01003808 error_report_err(err);
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003809 }
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003810 if (chr && qemu_opt_get_bool(opts, "mux", 0)) {
Hans de Goede456d6062013-03-27 20:29:40 +01003811 qemu_chr_fe_claim_no_fail(chr);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003812 monitor_init(chr, MONITOR_USE_READLINE);
aliguori6f97dba2008-10-31 18:49:55 +00003813 }
3814 return chr;
3815}
3816
Anthony Liguori15f31512011-08-15 11:17:35 -05003817void qemu_chr_fe_set_echo(struct CharDriverState *chr, bool echo)
Paolo Bonzinic48855e2010-12-23 13:42:48 +01003818{
3819 if (chr->chr_set_echo) {
3820 chr->chr_set_echo(chr, echo);
3821 }
3822}
3823
Hans de Goede8e25daa2013-03-26 11:07:57 +01003824void qemu_chr_fe_set_open(struct CharDriverState *chr, int fe_open)
Hans de Goede7c32c4f2011-03-24 11:12:02 +01003825{
Hans de Goede8e25daa2013-03-26 11:07:57 +01003826 if (chr->fe_open == fe_open) {
Hans de Goedec0c4bd22013-03-26 11:07:55 +01003827 return;
3828 }
Hans de Goede8e25daa2013-03-26 11:07:57 +01003829 chr->fe_open = fe_open;
Hans de Goede574b7112013-03-26 11:07:58 +01003830 if (chr->chr_set_fe_open) {
3831 chr->chr_set_fe_open(chr, fe_open);
Hans de Goede7c32c4f2011-03-24 11:12:02 +01003832 }
3833}
3834
Marc-André Lureaud61b0c92013-12-01 22:23:39 +01003835void qemu_chr_fe_event(struct CharDriverState *chr, int event)
3836{
3837 if (chr->chr_fe_event) {
3838 chr->chr_fe_event(chr, event);
3839 }
3840}
3841
Kevin Wolf2c8a5942013-03-19 13:38:09 +01003842int qemu_chr_fe_add_watch(CharDriverState *s, GIOCondition cond,
3843 GIOFunc func, void *user_data)
Anthony Liguori23673ca2013-03-05 23:21:23 +05303844{
3845 GSource *src;
3846 guint tag;
3847
3848 if (s->chr_add_watch == NULL) {
3849 return -ENOSYS;
3850 }
3851
3852 src = s->chr_add_watch(s, cond);
Paolo Bonzini62c339c2014-07-24 16:08:04 +02003853 if (!src) {
3854 return -EINVAL;
3855 }
3856
Anthony Liguori23673ca2013-03-05 23:21:23 +05303857 g_source_set_callback(src, (GSourceFunc)func, user_data, NULL);
3858 tag = g_source_attach(src, NULL);
3859 g_source_unref(src);
3860
3861 return tag;
3862}
3863
Hans de Goede44c473d2013-03-27 20:29:39 +01003864int qemu_chr_fe_claim(CharDriverState *s)
3865{
3866 if (s->avail_connections < 1) {
3867 return -1;
3868 }
3869 s->avail_connections--;
3870 return 0;
3871}
3872
3873void qemu_chr_fe_claim_no_fail(CharDriverState *s)
3874{
3875 if (qemu_chr_fe_claim(s) != 0) {
3876 fprintf(stderr, "%s: error chardev \"%s\" already used\n",
3877 __func__, s->label);
3878 exit(1);
3879 }
3880}
3881
3882void qemu_chr_fe_release(CharDriverState *s)
3883{
3884 s->avail_connections++;
3885}
3886
Marc-André Lureau1ad78ea2015-06-22 18:20:18 +02003887void qemu_chr_free(CharDriverState *chr)
aliguori6f97dba2008-10-31 18:49:55 +00003888{
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003889 if (chr->chr_close) {
aliguori6f97dba2008-10-31 18:49:55 +00003890 chr->chr_close(chr);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003891 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003892 g_free(chr->filename);
3893 g_free(chr->label);
Markus Armbruster4ad60882014-12-03 11:28:02 +01003894 qemu_opts_del(chr->opts);
Anthony Liguori7267c092011-08-20 22:09:37 -05003895 g_free(chr);
aliguori6f97dba2008-10-31 18:49:55 +00003896}
3897
Marc-André Lureau1ad78ea2015-06-22 18:20:18 +02003898void qemu_chr_delete(CharDriverState *chr)
3899{
3900 QTAILQ_REMOVE(&chardevs, chr, next);
3901 qemu_chr_free(chr);
3902}
3903
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003904ChardevInfoList *qmp_query_chardev(Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00003905{
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003906 ChardevInfoList *chr_list = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00003907 CharDriverState *chr;
3908
Blue Swirl72cf2d42009-09-12 07:36:22 +00003909 QTAILQ_FOREACH(chr, &chardevs, next) {
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003910 ChardevInfoList *info = g_malloc0(sizeof(*info));
3911 info->value = g_malloc0(sizeof(*info->value));
3912 info->value->label = g_strdup(chr->label);
3913 info->value->filename = g_strdup(chr->filename);
Laszlo Ersek32a97ea2014-06-26 17:50:03 +02003914 info->value->frontend_open = chr->fe_open;
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003915
3916 info->next = chr_list;
3917 chr_list = info;
aliguori6f97dba2008-10-31 18:49:55 +00003918 }
Luiz Capitulino588b3832009-12-10 17:16:08 -02003919
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003920 return chr_list;
aliguori6f97dba2008-10-31 18:49:55 +00003921}
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003922
Martin Kletzander77d1c3c2014-02-01 12:52:42 +01003923ChardevBackendInfoList *qmp_query_chardev_backends(Error **errp)
3924{
3925 ChardevBackendInfoList *backend_list = NULL;
3926 CharDriver *c = NULL;
3927 GSList *i = NULL;
3928
3929 for (i = backends; i; i = i->next) {
3930 ChardevBackendInfoList *info = g_malloc0(sizeof(*info));
3931 c = i->data;
3932 info->value = g_malloc0(sizeof(*info->value));
3933 info->value->name = g_strdup(c->name);
3934
3935 info->next = backend_list;
3936 backend_list = info;
3937 }
3938
3939 return backend_list;
3940}
3941
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003942CharDriverState *qemu_chr_find(const char *name)
3943{
3944 CharDriverState *chr;
3945
Blue Swirl72cf2d42009-09-12 07:36:22 +00003946 QTAILQ_FOREACH(chr, &chardevs, next) {
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003947 if (strcmp(chr->label, name) != 0)
3948 continue;
3949 return chr;
3950 }
3951 return NULL;
3952}
Anthony Liguori0beb4942011-12-22 15:29:25 -06003953
3954/* Get a character (serial) device interface. */
3955CharDriverState *qemu_char_get_next_serial(void)
3956{
3957 static int next_serial;
Hans de Goede456d6062013-03-27 20:29:40 +01003958 CharDriverState *chr;
Anthony Liguori0beb4942011-12-22 15:29:25 -06003959
3960 /* FIXME: This function needs to go away: use chardev properties! */
Hans de Goede456d6062013-03-27 20:29:40 +01003961
3962 while (next_serial < MAX_SERIAL_PORTS && serial_hds[next_serial]) {
3963 chr = serial_hds[next_serial++];
3964 qemu_chr_fe_claim_no_fail(chr);
3965 return chr;
3966 }
3967 return NULL;
Anthony Liguori0beb4942011-12-22 15:29:25 -06003968}
3969
Paolo Bonzini4d454572012-11-26 16:03:42 +01003970QemuOptsList qemu_chardev_opts = {
3971 .name = "chardev",
3972 .implied_opt_name = "backend",
3973 .head = QTAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
3974 .desc = {
3975 {
3976 .name = "backend",
3977 .type = QEMU_OPT_STRING,
3978 },{
3979 .name = "path",
3980 .type = QEMU_OPT_STRING,
3981 },{
3982 .name = "host",
3983 .type = QEMU_OPT_STRING,
3984 },{
3985 .name = "port",
3986 .type = QEMU_OPT_STRING,
3987 },{
3988 .name = "localaddr",
3989 .type = QEMU_OPT_STRING,
3990 },{
3991 .name = "localport",
3992 .type = QEMU_OPT_STRING,
3993 },{
3994 .name = "to",
3995 .type = QEMU_OPT_NUMBER,
3996 },{
3997 .name = "ipv4",
3998 .type = QEMU_OPT_BOOL,
3999 },{
4000 .name = "ipv6",
4001 .type = QEMU_OPT_BOOL,
4002 },{
4003 .name = "wait",
4004 .type = QEMU_OPT_BOOL,
4005 },{
4006 .name = "server",
4007 .type = QEMU_OPT_BOOL,
4008 },{
4009 .name = "delay",
4010 .type = QEMU_OPT_BOOL,
4011 },{
Corey Minyard5dd1f022014-10-02 11:17:37 -05004012 .name = "reconnect",
4013 .type = QEMU_OPT_NUMBER,
4014 },{
Paolo Bonzini4d454572012-11-26 16:03:42 +01004015 .name = "telnet",
4016 .type = QEMU_OPT_BOOL,
4017 },{
4018 .name = "width",
4019 .type = QEMU_OPT_NUMBER,
4020 },{
4021 .name = "height",
4022 .type = QEMU_OPT_NUMBER,
4023 },{
4024 .name = "cols",
4025 .type = QEMU_OPT_NUMBER,
4026 },{
4027 .name = "rows",
4028 .type = QEMU_OPT_NUMBER,
4029 },{
4030 .name = "mux",
4031 .type = QEMU_OPT_BOOL,
4032 },{
4033 .name = "signal",
4034 .type = QEMU_OPT_BOOL,
4035 },{
4036 .name = "name",
4037 .type = QEMU_OPT_STRING,
4038 },{
4039 .name = "debug",
4040 .type = QEMU_OPT_NUMBER,
Lei Li51767e72013-01-25 00:03:19 +08004041 },{
Markus Armbruster3949e592013-02-06 21:27:24 +01004042 .name = "size",
Markus Armbrusterde1cc362013-02-06 21:27:25 +01004043 .type = QEMU_OPT_SIZE,
Gerd Hoffmannbb6fb7c2013-06-24 08:39:54 +02004044 },{
4045 .name = "chardev",
4046 .type = QEMU_OPT_STRING,
Olga Krishtal31e38a22015-12-04 09:42:04 +03004047 },{
4048 .name = "append",
4049 .type = QEMU_OPT_BOOL,
Paolo Bonzini4d454572012-11-26 16:03:42 +01004050 },
4051 { /* end of list */ }
4052 },
4053};
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004054
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004055#ifdef _WIN32
4056
Paolo Bonzinifd5b0362015-09-29 15:06:02 +02004057static CharDriverState *qmp_chardev_open_file(const char *id,
4058 ChardevBackend *backend,
4059 ChardevReturn *ret,
4060 Error **errp)
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004061{
Eric Blake130257d2015-10-26 16:34:57 -06004062 ChardevFile *file = backend->u.file;
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004063 HANDLE out;
4064
Gerd Hoffmanne859eda2013-06-24 08:39:47 +02004065 if (file->has_in) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004066 error_setg(errp, "input file not supported");
4067 return NULL;
4068 }
4069
4070 out = CreateFile(file->out, GENERIC_WRITE, FILE_SHARE_READ, NULL,
4071 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
4072 if (out == INVALID_HANDLE_VALUE) {
4073 error_setg(errp, "open %s failed", file->out);
4074 return NULL;
4075 }
4076 return qemu_chr_open_win_file(out);
4077}
4078
Paolo Bonzini6511d392015-09-29 15:08:05 +02004079static CharDriverState *qmp_chardev_open_serial(const char *id,
4080 ChardevBackend *backend,
4081 ChardevReturn *ret,
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004082 Error **errp)
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004083{
Eric Blake130257d2015-10-26 16:34:57 -06004084 ChardevHostdev *serial = backend->u.serial;
Paolo Bonzini6511d392015-09-29 15:08:05 +02004085 return qemu_chr_open_win_path(serial->device, errp);
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004086}
4087
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004088#else /* WIN32 */
4089
4090static int qmp_chardev_open_file_source(char *src, int flags,
4091 Error **errp)
4092{
4093 int fd = -1;
4094
4095 TFR(fd = qemu_open(src, flags, 0666));
4096 if (fd == -1) {
Gerd Hoffmann20c39762013-06-24 08:39:48 +02004097 error_setg_file_open(errp, errno, src);
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004098 }
4099 return fd;
4100}
4101
Paolo Bonzinifd5b0362015-09-29 15:06:02 +02004102static CharDriverState *qmp_chardev_open_file(const char *id,
4103 ChardevBackend *backend,
4104 ChardevReturn *ret,
4105 Error **errp)
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004106{
Eric Blake130257d2015-10-26 16:34:57 -06004107 ChardevFile *file = backend->u.file;
Markus Armbruster5f758362014-05-19 18:57:34 +02004108 int flags, in = -1, out;
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004109
Olga Krishtal31e38a22015-12-04 09:42:04 +03004110 flags = O_WRONLY | O_CREAT | O_BINARY;
4111 if (file->has_append && file->append) {
4112 flags |= O_APPEND;
4113 } else {
4114 flags |= O_TRUNC;
4115 }
4116
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004117 out = qmp_chardev_open_file_source(file->out, flags, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004118 if (out < 0) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004119 return NULL;
4120 }
4121
Gerd Hoffmanne859eda2013-06-24 08:39:47 +02004122 if (file->has_in) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004123 flags = O_RDONLY;
4124 in = qmp_chardev_open_file_source(file->in, flags, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004125 if (in < 0) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004126 qemu_close(out);
4127 return NULL;
4128 }
4129 }
4130
4131 return qemu_chr_open_fd(in, out);
4132}
4133
Paolo Bonzinid809ab92015-10-12 09:46:23 +02004134#ifdef HAVE_CHARDEV_SERIAL
Paolo Bonzini6511d392015-09-29 15:08:05 +02004135static CharDriverState *qmp_chardev_open_serial(const char *id,
4136 ChardevBackend *backend,
4137 ChardevReturn *ret,
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004138 Error **errp)
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004139{
Eric Blake130257d2015-10-26 16:34:57 -06004140 ChardevHostdev *serial = backend->u.serial;
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004141 int fd;
4142
4143 fd = qmp_chardev_open_file_source(serial->device, O_RDWR, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004144 if (fd < 0) {
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004145 return NULL;
4146 }
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01004147 qemu_set_nonblock(fd);
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004148 return qemu_chr_open_tty_fd(fd);
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004149}
Paolo Bonzini6511d392015-09-29 15:08:05 +02004150#endif
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004151
Paolo Bonzinid809ab92015-10-12 09:46:23 +02004152#ifdef HAVE_CHARDEV_PARPORT
Paolo Bonzini38bfb1a2015-10-12 09:49:28 +02004153static CharDriverState *qmp_chardev_open_parallel(const char *id,
4154 ChardevBackend *backend,
4155 ChardevReturn *ret,
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004156 Error **errp)
4157{
Eric Blake130257d2015-10-26 16:34:57 -06004158 ChardevHostdev *parallel = backend->u.parallel;
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004159 int fd;
4160
4161 fd = qmp_chardev_open_file_source(parallel->device, O_RDWR, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004162 if (fd < 0) {
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01004163 return NULL;
4164 }
Paolo Bonzini38bfb1a2015-10-12 09:49:28 +02004165 return qemu_chr_open_pp_fd(fd, errp);
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004166}
Paolo Bonzinid809ab92015-10-12 09:46:23 +02004167#endif
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01004168
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01004169#endif /* WIN32 */
4170
Corey Minyard5008e5b2014-10-08 07:11:55 -05004171static void socket_try_connect(CharDriverState *chr)
4172{
4173 Error *err = NULL;
4174
4175 if (!qemu_chr_open_socket_fd(chr, &err)) {
4176 check_report_connect_error(chr, err);
4177 }
4178}
4179
Corey Minyard5dd1f022014-10-02 11:17:37 -05004180static gboolean socket_reconnect_timeout(gpointer opaque)
4181{
4182 CharDriverState *chr = opaque;
4183 TCPCharDriver *s = chr->opaque;
Corey Minyard5dd1f022014-10-02 11:17:37 -05004184
4185 s->reconnect_timer = 0;
4186
4187 if (chr->be_open) {
4188 return false;
4189 }
4190
Corey Minyard5008e5b2014-10-08 07:11:55 -05004191 socket_try_connect(chr);
Corey Minyard5dd1f022014-10-02 11:17:37 -05004192
4193 return false;
4194}
4195
Paolo Bonzinidbba8d12015-09-29 15:15:53 +02004196static CharDriverState *qmp_chardev_open_socket(const char *id,
4197 ChardevBackend *backend,
4198 ChardevReturn *ret,
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004199 Error **errp)
4200{
Corey Minyard43ded1a2014-10-02 11:17:34 -05004201 CharDriverState *chr;
4202 TCPCharDriver *s;
Eric Blake130257d2015-10-26 16:34:57 -06004203 ChardevSocket *sock = backend->u.socket;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004204 SocketAddress *addr = sock->addr;
4205 bool do_nodelay = sock->has_nodelay ? sock->nodelay : false;
4206 bool is_listen = sock->has_server ? sock->server : true;
4207 bool is_telnet = sock->has_telnet ? sock->telnet : false;
4208 bool is_waitconnect = sock->has_wait ? sock->wait : false;
Corey Minyard5dd1f022014-10-02 11:17:37 -05004209 int64_t reconnect = sock->has_reconnect ? sock->reconnect : 0;
Corey Minyard43ded1a2014-10-02 11:17:34 -05004210
4211 chr = qemu_chr_alloc();
Markus Armbruster2d528d42015-09-14 13:54:03 +02004212 s = g_new0(TCPCharDriver, 1);
Corey Minyard43ded1a2014-10-02 11:17:34 -05004213
4214 s->fd = -1;
4215 s->listen_fd = -1;
Eric Blake130257d2015-10-26 16:34:57 -06004216 s->is_unix = addr->type == SOCKET_ADDRESS_KIND_UNIX;
Corey Minyardcfb429c2014-10-02 11:17:35 -05004217 s->is_listen = is_listen;
4218 s->is_telnet = is_telnet;
Corey Minyard43ded1a2014-10-02 11:17:34 -05004219 s->do_nodelay = do_nodelay;
Corey Minyardcfb429c2014-10-02 11:17:35 -05004220 qapi_copy_SocketAddress(&s->addr, sock->addr);
Corey Minyard43ded1a2014-10-02 11:17:34 -05004221
4222 chr->opaque = s;
4223 chr->chr_write = tcp_chr_write;
4224 chr->chr_sync_read = tcp_chr_sync_read;
4225 chr->chr_close = tcp_chr_close;
4226 chr->get_msgfds = tcp_get_msgfds;
4227 chr->set_msgfds = tcp_set_msgfds;
4228 chr->chr_add_client = tcp_chr_add_client;
4229 chr->chr_add_watch = tcp_chr_add_watch;
4230 chr->chr_update_read_handler = tcp_chr_update_read_handler;
4231 /* be isn't opened until we get a connection */
4232 chr->explicit_be_open = true;
4233
4234 chr->filename = g_malloc(CHR_MAX_FILENAME_SIZE);
Corey Minyard16cc4ff2014-10-02 11:17:36 -05004235 SocketAddress_to_str(chr->filename, CHR_MAX_FILENAME_SIZE, "disconnected:",
4236 addr, is_listen, is_telnet);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004237
4238 if (is_listen) {
Corey Minyard43ded1a2014-10-02 11:17:34 -05004239 if (is_telnet) {
4240 s->do_telnetopt = 1;
4241 }
Corey Minyard5dd1f022014-10-02 11:17:37 -05004242 } else if (reconnect > 0) {
4243 s->reconnect_time = reconnect;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004244 }
Corey Minyard43ded1a2014-10-02 11:17:34 -05004245
Corey Minyard5008e5b2014-10-08 07:11:55 -05004246 if (s->reconnect_time) {
4247 socket_try_connect(chr);
4248 } else if (!qemu_chr_open_socket_fd(chr, errp)) {
4249 g_free(s);
4250 g_free(chr->filename);
4251 g_free(chr);
4252 return NULL;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004253 }
Corey Minyard43ded1a2014-10-02 11:17:34 -05004254
4255 if (is_listen && is_waitconnect) {
4256 fprintf(stderr, "QEMU waiting for connection on: %s\n",
4257 chr->filename);
4258 tcp_chr_accept(s->listen_chan, G_IO_IN, chr);
4259 qemu_set_nonblock(s->listen_fd);
4260 }
4261
4262 return chr;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01004263}
4264
Paolo Bonzinie79b80d2015-09-29 15:17:20 +02004265static CharDriverState *qmp_chardev_open_udp(const char *id,
4266 ChardevBackend *backend,
4267 ChardevReturn *ret,
Lei Li08d0ab32013-05-20 14:51:03 +08004268 Error **errp)
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01004269{
Eric Blake130257d2015-10-26 16:34:57 -06004270 ChardevUdp *udp = backend->u.udp;
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01004271 int fd;
4272
Lei Li08d0ab32013-05-20 14:51:03 +08004273 fd = socket_dgram(udp->remote, udp->local, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02004274 if (fd < 0) {
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01004275 return NULL;
4276 }
4277 return qemu_chr_open_udp_fd(fd);
4278}
4279
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004280ChardevReturn *qmp_chardev_add(const char *id, ChardevBackend *backend,
4281 Error **errp)
4282{
4283 ChardevReturn *ret = g_new0(ChardevReturn, 1);
Paolo Bonzini3c0e5a42015-09-29 15:27:24 +02004284 CharDriverState *chr = NULL;
Paolo Bonzinieaeba652015-09-29 14:54:05 +02004285 Error *local_err = NULL;
Paolo Bonzini4ca17282015-09-29 14:55:59 +02004286 GSList *i;
4287 CharDriver *cd;
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004288
4289 chr = qemu_chr_find(id);
4290 if (chr) {
4291 error_setg(errp, "Chardev '%s' already exists", id);
4292 g_free(ret);
4293 return NULL;
4294 }
4295
Paolo Bonzini4ca17282015-09-29 14:55:59 +02004296 for (i = backends; i; i = i->next) {
4297 cd = i->data;
4298
Eric Blake130257d2015-10-26 16:34:57 -06004299 if (cd->kind == backend->type) {
Paolo Bonzini4ca17282015-09-29 14:55:59 +02004300 chr = cd->create(id, backend, ret, &local_err);
4301 if (local_err) {
4302 error_propagate(errp, local_err);
4303 goto out_error;
4304 }
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01004305 break;
4306 }
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004307 }
4308
Paolo Bonzinieaeba652015-09-29 14:54:05 +02004309 if (chr == NULL) {
Paolo Bonzini1c3af0f2015-10-12 09:51:41 +02004310 assert(!i);
4311 error_setg(errp, "chardev backend not available");
4312 goto out_error;
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004313 }
Paolo Bonzinieaeba652015-09-29 14:54:05 +02004314
4315 chr->label = g_strdup(id);
4316 chr->avail_connections =
Eric Blake130257d2015-10-26 16:34:57 -06004317 (backend->type == CHARDEV_BACKEND_KIND_MUX) ? MAX_MUX : 1;
Paolo Bonzinieaeba652015-09-29 14:54:05 +02004318 if (!chr->filename) {
Eric Blake130257d2015-10-26 16:34:57 -06004319 chr->filename = g_strdup(ChardevBackendKind_lookup[backend->type]);
Paolo Bonzinieaeba652015-09-29 14:54:05 +02004320 }
4321 if (!chr->explicit_be_open) {
4322 qemu_chr_be_event(chr, CHR_EVENT_OPENED);
4323 }
4324 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
4325 return ret;
4326
4327out_error:
4328 g_free(ret);
4329 return NULL;
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004330}
4331
4332void qmp_chardev_remove(const char *id, Error **errp)
4333{
4334 CharDriverState *chr;
4335
4336 chr = qemu_chr_find(id);
Gonglei8108fd32014-08-11 21:00:55 +08004337 if (chr == NULL) {
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004338 error_setg(errp, "Chardev '%s' not found", id);
4339 return;
4340 }
4341 if (chr->chr_can_read || chr->chr_read ||
4342 chr->chr_event || chr->handler_opaque) {
4343 error_setg(errp, "Chardev '%s' is busy", id);
4344 return;
4345 }
4346 qemu_chr_delete(chr);
4347}
Anthony Liguorid654f342013-03-05 23:21:28 +05304348
4349static void register_types(void)
4350{
Paolo Bonzini4ca17282015-09-29 14:55:59 +02004351 register_char_driver("null", CHARDEV_BACKEND_KIND_NULL, NULL,
Paolo Bonzini0d649922015-09-29 15:24:29 +02004352 qemu_chr_open_null);
Peter Maydelle4d50d42014-09-02 11:24:17 +01004353 register_char_driver("socket", CHARDEV_BACKEND_KIND_SOCKET,
Paolo Bonzinidbba8d12015-09-29 15:15:53 +02004354 qemu_chr_parse_socket, qmp_chardev_open_socket);
Paolo Bonzini4ca17282015-09-29 14:55:59 +02004355 register_char_driver("udp", CHARDEV_BACKEND_KIND_UDP, qemu_chr_parse_udp,
Paolo Bonzinie79b80d2015-09-29 15:17:20 +02004356 qmp_chardev_open_udp);
Peter Maydelle4d50d42014-09-02 11:24:17 +01004357 register_char_driver("ringbuf", CHARDEV_BACKEND_KIND_RINGBUF,
Paolo Bonzini479f09a2015-09-29 15:51:14 +02004358 qemu_chr_parse_ringbuf, qemu_chr_open_ringbuf);
Peter Maydelle4d50d42014-09-02 11:24:17 +01004359 register_char_driver("file", CHARDEV_BACKEND_KIND_FILE,
Paolo Bonzinifd5b0362015-09-29 15:06:02 +02004360 qemu_chr_parse_file_out, qmp_chardev_open_file);
Peter Maydelle4d50d42014-09-02 11:24:17 +01004361 register_char_driver("stdio", CHARDEV_BACKEND_KIND_STDIO,
Paolo Bonzini8c84b252015-09-29 15:40:28 +02004362 qemu_chr_parse_stdio, qemu_chr_open_stdio);
Paolo Bonzini6511d392015-09-29 15:08:05 +02004363#if defined HAVE_CHARDEV_SERIAL
Peter Maydelle4d50d42014-09-02 11:24:17 +01004364 register_char_driver("serial", CHARDEV_BACKEND_KIND_SERIAL,
Paolo Bonzini6511d392015-09-29 15:08:05 +02004365 qemu_chr_parse_serial, qmp_chardev_open_serial);
Peter Maydelle4d50d42014-09-02 11:24:17 +01004366 register_char_driver("tty", CHARDEV_BACKEND_KIND_SERIAL,
Paolo Bonzini6511d392015-09-29 15:08:05 +02004367 qemu_chr_parse_serial, qmp_chardev_open_serial);
4368#endif
Paolo Bonzini38bfb1a2015-10-12 09:49:28 +02004369#ifdef HAVE_CHARDEV_PARPORT
Peter Maydelle4d50d42014-09-02 11:24:17 +01004370 register_char_driver("parallel", CHARDEV_BACKEND_KIND_PARALLEL,
Paolo Bonzini38bfb1a2015-10-12 09:49:28 +02004371 qemu_chr_parse_parallel, qmp_chardev_open_parallel);
Peter Maydelle4d50d42014-09-02 11:24:17 +01004372 register_char_driver("parport", CHARDEV_BACKEND_KIND_PARALLEL,
Paolo Bonzini38bfb1a2015-10-12 09:49:28 +02004373 qemu_chr_parse_parallel, qmp_chardev_open_parallel);
4374#endif
Paolo Bonzinic2e75a42015-09-29 15:23:42 +02004375#ifdef HAVE_CHARDEV_PTY
Paolo Bonzini4ca17282015-09-29 14:55:59 +02004376 register_char_driver("pty", CHARDEV_BACKEND_KIND_PTY, NULL,
Paolo Bonzinic2e75a42015-09-29 15:23:42 +02004377 qemu_chr_open_pty);
4378#endif
Paolo Bonzini122e5ed2015-09-29 15:42:04 +02004379#ifdef _WIN32
Paolo Bonzini4ca17282015-09-29 14:55:59 +02004380 register_char_driver("console", CHARDEV_BACKEND_KIND_CONSOLE, NULL,
Paolo Bonzini122e5ed2015-09-29 15:42:04 +02004381 qemu_chr_open_win_con);
4382#endif
Peter Maydelle4d50d42014-09-02 11:24:17 +01004383 register_char_driver("pipe", CHARDEV_BACKEND_KIND_PIPE,
Paolo Bonzini20cbe7a2015-09-29 15:14:07 +02004384 qemu_chr_parse_pipe, qemu_chr_open_pipe);
Paolo Bonzini4ca17282015-09-29 14:55:59 +02004385 register_char_driver("mux", CHARDEV_BACKEND_KIND_MUX, qemu_chr_parse_mux,
Paolo Bonzini3c0e5a42015-09-29 15:27:24 +02004386 qemu_chr_open_mux);
Markus Armbrusterc11ed962013-07-26 16:44:33 +02004387 /* Bug-compatibility: */
Peter Maydelle4d50d42014-09-02 11:24:17 +01004388 register_char_driver("memory", CHARDEV_BACKEND_KIND_MEMORY,
Paolo Bonzini479f09a2015-09-29 15:51:14 +02004389 qemu_chr_parse_ringbuf, qemu_chr_open_ringbuf);
Michael Roth7b7ab182013-07-30 13:04:22 -05004390 /* this must be done after machine init, since we register FEs with muxes
4391 * as part of realize functions like serial_isa_realizefn when -nographic
4392 * is specified
4393 */
4394 qemu_add_machine_init_done_notifier(&muxes_realize_notify);
Anthony Liguorid654f342013-03-05 23:21:28 +05304395}
4396
4397type_init(register_types);