blob: 54ed24454223819e4eb157388c8c0014f836865a [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 Bonzini28ecbae2012-11-28 12:06:30 +010026#include "ui/console.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010027#include "sysemu/sysemu.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"
aliguori6f97dba2008-10-31 18:49:55 +000032
33#include <unistd.h>
34#include <fcntl.h>
aliguori6f97dba2008-10-31 18:49:55 +000035#include <time.h>
36#include <errno.h>
37#include <sys/time.h>
38#include <zlib.h>
39
40#ifndef _WIN32
41#include <sys/times.h>
42#include <sys/wait.h>
43#include <termios.h>
44#include <sys/mman.h>
45#include <sys/ioctl.h>
blueswir124646c72008-11-07 16:55:48 +000046#include <sys/resource.h>
aliguori6f97dba2008-10-31 18:49:55 +000047#include <sys/socket.h>
48#include <netinet/in.h>
blueswir124646c72008-11-07 16:55:48 +000049#include <net/if.h>
blueswir124646c72008-11-07 16:55:48 +000050#include <arpa/inet.h>
aliguori6f97dba2008-10-31 18:49:55 +000051#include <dirent.h>
52#include <netdb.h>
53#include <sys/select.h>
Juan Quintela71e72a12009-07-27 16:12:56 +020054#ifdef CONFIG_BSD
aliguori6f97dba2008-10-31 18:49:55 +000055#include <sys/stat.h>
Michael Tokarev3294ce12012-06-02 23:43:33 +040056#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
57#include <dev/ppbus/ppi.h>
58#include <dev/ppbus/ppbconf.h>
59#elif defined(__DragonFly__)
60#include <dev/misc/ppi/ppi.h>
61#include <bus/ppbus/ppbconf.h>
62#endif
Aurelien Jarnobbe813a2009-11-30 15:42:59 +010063#else
aliguori6f97dba2008-10-31 18:49:55 +000064#ifdef __linux__
aliguori6f97dba2008-10-31 18:49:55 +000065#include <linux/ppdev.h>
66#include <linux/parport.h>
67#endif
68#ifdef __sun__
69#include <sys/stat.h>
70#include <sys/ethernet.h>
71#include <sys/sockio.h>
72#include <netinet/arp.h>
73#include <netinet/in.h>
74#include <netinet/in_systm.h>
75#include <netinet/ip.h>
76#include <netinet/ip_icmp.h> // must come after ip.h
77#include <netinet/udp.h>
78#include <netinet/tcp.h>
aliguori6f97dba2008-10-31 18:49:55 +000079#endif
80#endif
81#endif
82
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010083#include "qemu/sockets.h"
Alon Levycbcc6332011-01-19 10:49:50 +020084#include "ui/qemu-spice.h"
aliguori6f97dba2008-10-31 18:49:55 +000085
Amit Shah9bd78542009-11-03 19:59:54 +053086#define READ_BUF_LEN 4096
87
aliguori6f97dba2008-10-31 18:49:55 +000088/***********************************************************/
89/* character device */
90
Blue Swirl72cf2d42009-09-12 07:36:22 +000091static QTAILQ_HEAD(CharDriverStateHead, CharDriverState) chardevs =
92 QTAILQ_HEAD_INITIALIZER(chardevs);
aliguori2970a6c2009-03-05 22:59:58 +000093
Hans de Goedea425d232011-11-19 10:22:43 +010094void qemu_chr_be_event(CharDriverState *s, int event)
aliguori6f97dba2008-10-31 18:49:55 +000095{
Alexander Graf73cdf3f2010-04-01 18:42:39 +020096 /* Keep track if the char device is open */
97 switch (event) {
98 case CHR_EVENT_OPENED:
Hans de Goede16665b92013-03-26 11:07:53 +010099 s->be_open = 1;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200100 break;
101 case CHR_EVENT_CLOSED:
Hans de Goede16665b92013-03-26 11:07:53 +0100102 s->be_open = 0;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200103 break;
104 }
105
aliguori6f97dba2008-10-31 18:49:55 +0000106 if (!s->chr_event)
107 return;
108 s->chr_event(s->handler_opaque, event);
109}
110
Hans de Goedefee204f2013-03-26 11:07:54 +0100111void qemu_chr_be_generic_open(CharDriverState *s)
aliguori6f97dba2008-10-31 18:49:55 +0000112{
Michael Rothbd5c51e2013-06-07 15:19:53 -0500113 qemu_chr_be_event(s, CHR_EVENT_OPENED);
aliguori6f97dba2008-10-31 18:49:55 +0000114}
115
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500116int qemu_chr_fe_write(CharDriverState *s, const uint8_t *buf, int len)
aliguori6f97dba2008-10-31 18:49:55 +0000117{
118 return s->chr_write(s, buf, len);
119}
120
Anthony Liguoricd187202013-03-26 10:04:17 -0500121int qemu_chr_fe_write_all(CharDriverState *s, const uint8_t *buf, int len)
122{
123 int offset = 0;
124 int res;
125
126 while (offset < len) {
127 do {
128 res = s->chr_write(s, buf + offset, len - offset);
129 if (res == -1 && errno == EAGAIN) {
130 g_usleep(100);
131 }
132 } while (res == -1 && errno == EAGAIN);
133
134 if (res == 0) {
135 break;
136 }
137
138 if (res < 0) {
139 return res;
140 }
141
142 offset += res;
143 }
144
145 return offset;
146}
147
Anthony Liguori41084f12011-08-15 11:17:34 -0500148int qemu_chr_fe_ioctl(CharDriverState *s, int cmd, void *arg)
aliguori6f97dba2008-10-31 18:49:55 +0000149{
150 if (!s->chr_ioctl)
151 return -ENOTSUP;
152 return s->chr_ioctl(s, cmd, arg);
153}
154
Anthony Liguori909cda12011-08-15 11:17:31 -0500155int qemu_chr_be_can_write(CharDriverState *s)
aliguori6f97dba2008-10-31 18:49:55 +0000156{
157 if (!s->chr_can_read)
158 return 0;
159 return s->chr_can_read(s->handler_opaque);
160}
161
Anthony Liguorifa5efcc2011-08-15 11:17:30 -0500162void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len)
aliguori6f97dba2008-10-31 18:49:55 +0000163{
Stefan Weilac310732012-04-19 22:27:14 +0200164 if (s->chr_read) {
165 s->chr_read(s->handler_opaque, buf, len);
166 }
aliguori6f97dba2008-10-31 18:49:55 +0000167}
168
Anthony Liguori74c0d6f2011-08-15 11:17:39 -0500169int qemu_chr_fe_get_msgfd(CharDriverState *s)
Mark McLoughlin7d174052009-07-22 09:11:39 +0100170{
171 return s->get_msgfd ? s->get_msgfd(s) : -1;
172}
173
Daniel P. Berrange13661082011-06-23 13:31:42 +0100174int qemu_chr_add_client(CharDriverState *s, int fd)
175{
176 return s->chr_add_client ? s->chr_add_client(s, fd) : -1;
177}
178
aliguori6f97dba2008-10-31 18:49:55 +0000179void qemu_chr_accept_input(CharDriverState *s)
180{
181 if (s->chr_accept_input)
182 s->chr_accept_input(s);
Jan Kiszka98c8ee12012-03-16 13:18:00 +0100183 qemu_notify_event();
aliguori6f97dba2008-10-31 18:49:55 +0000184}
185
Anthony Liguorie7e71b02011-08-15 11:17:29 -0500186void qemu_chr_fe_printf(CharDriverState *s, const char *fmt, ...)
aliguori6f97dba2008-10-31 18:49:55 +0000187{
Amit Shah9bd78542009-11-03 19:59:54 +0530188 char buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +0000189 va_list ap;
190 va_start(ap, fmt);
191 vsnprintf(buf, sizeof(buf), fmt, ap);
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500192 qemu_chr_fe_write(s, (uint8_t *)buf, strlen(buf));
aliguori6f97dba2008-10-31 18:49:55 +0000193 va_end(ap);
194}
195
Amit Shah386a5a12013-08-28 15:24:05 +0530196static void remove_fd_in_watch(CharDriverState *chr);
197
aliguori6f97dba2008-10-31 18:49:55 +0000198void qemu_chr_add_handlers(CharDriverState *s,
Juan Quintela7b27a762010-03-11 17:55:39 +0100199 IOCanReadHandler *fd_can_read,
aliguori6f97dba2008-10-31 18:49:55 +0000200 IOReadHandler *fd_read,
201 IOEventHandler *fd_event,
202 void *opaque)
203{
Hans de Goede19083222013-03-26 11:07:56 +0100204 int fe_open;
205
Amit Shahda7d9982011-04-25 15:18:22 +0530206 if (!opaque && !fd_can_read && !fd_read && !fd_event) {
Hans de Goede19083222013-03-26 11:07:56 +0100207 fe_open = 0;
Amit Shah386a5a12013-08-28 15:24:05 +0530208 remove_fd_in_watch(s);
Hans de Goede19083222013-03-26 11:07:56 +0100209 } else {
210 fe_open = 1;
Amit Shah2d6c1ef2011-02-10 12:55:20 +0530211 }
aliguori6f97dba2008-10-31 18:49:55 +0000212 s->chr_can_read = fd_can_read;
213 s->chr_read = fd_read;
214 s->chr_event = fd_event;
215 s->handler_opaque = opaque;
Gal Hammerac1b84d2014-02-25 12:12:35 +0200216 if (fe_open && s->chr_update_read_handler)
aliguori6f97dba2008-10-31 18:49:55 +0000217 s->chr_update_read_handler(s);
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200218
Hans de Goede19083222013-03-26 11:07:56 +0100219 if (!s->explicit_fe_open) {
Hans de Goede8e25daa2013-03-26 11:07:57 +0100220 qemu_chr_fe_set_open(s, fe_open);
Hans de Goede19083222013-03-26 11:07:56 +0100221 }
222
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200223 /* We're connecting to an already opened device, so let's make sure we
224 also get the open event */
Hans de Goedea59bcd32013-03-26 11:08:00 +0100225 if (fe_open && s->be_open) {
Hans de Goedefee204f2013-03-26 11:07:54 +0100226 qemu_chr_be_generic_open(s);
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200227 }
aliguori6f97dba2008-10-31 18:49:55 +0000228}
229
230static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
231{
232 return len;
233}
234
Gerd Hoffmann80dca9e2013-02-21 11:41:26 +0100235static CharDriverState *qemu_chr_open_null(void)
aliguori6f97dba2008-10-31 18:49:55 +0000236{
237 CharDriverState *chr;
238
Anthony Liguori7267c092011-08-20 22:09:37 -0500239 chr = g_malloc0(sizeof(CharDriverState));
aliguori6f97dba2008-10-31 18:49:55 +0000240 chr->chr_write = null_chr_write;
Michael Rothbd5c51e2013-06-07 15:19:53 -0500241 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +0100242 return chr;
aliguori6f97dba2008-10-31 18:49:55 +0000243}
244
245/* MUX driver for serial I/O splitting */
aliguori6f97dba2008-10-31 18:49:55 +0000246#define MAX_MUX 4
247#define MUX_BUFFER_SIZE 32 /* Must be a power of 2. */
248#define MUX_BUFFER_MASK (MUX_BUFFER_SIZE - 1)
249typedef struct {
Juan Quintela7b27a762010-03-11 17:55:39 +0100250 IOCanReadHandler *chr_can_read[MAX_MUX];
aliguori6f97dba2008-10-31 18:49:55 +0000251 IOReadHandler *chr_read[MAX_MUX];
252 IOEventHandler *chr_event[MAX_MUX];
253 void *ext_opaque[MAX_MUX];
254 CharDriverState *drv;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200255 int focus;
aliguori6f97dba2008-10-31 18:49:55 +0000256 int mux_cnt;
257 int term_got_escape;
258 int max_size;
aliguoria80bf992009-03-05 23:00:02 +0000259 /* Intermediate input buffer allows to catch escape sequences even if the
260 currently active device is not accepting any input - but only until it
261 is full as well. */
262 unsigned char buffer[MAX_MUX][MUX_BUFFER_SIZE];
263 int prod[MAX_MUX];
264 int cons[MAX_MUX];
Jan Kiszka2d229592009-06-15 22:25:30 +0200265 int timestamps;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200266 int linestart;
Jan Kiszka2d229592009-06-15 22:25:30 +0200267 int64_t timestamps_start;
aliguori6f97dba2008-10-31 18:49:55 +0000268} MuxDriver;
269
270
271static int mux_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
272{
273 MuxDriver *d = chr->opaque;
274 int ret;
Jan Kiszka2d229592009-06-15 22:25:30 +0200275 if (!d->timestamps) {
aliguori6f97dba2008-10-31 18:49:55 +0000276 ret = d->drv->chr_write(d->drv, buf, len);
277 } else {
278 int i;
279
280 ret = 0;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200281 for (i = 0; i < len; i++) {
282 if (d->linestart) {
aliguori6f97dba2008-10-31 18:49:55 +0000283 char buf1[64];
284 int64_t ti;
285 int secs;
286
Alex Blighbc72ad62013-08-21 16:03:08 +0100287 ti = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Jan Kiszka2d229592009-06-15 22:25:30 +0200288 if (d->timestamps_start == -1)
289 d->timestamps_start = ti;
290 ti -= d->timestamps_start;
aliguoria4bb1db2009-01-22 17:15:16 +0000291 secs = ti / 1000;
aliguori6f97dba2008-10-31 18:49:55 +0000292 snprintf(buf1, sizeof(buf1),
293 "[%02d:%02d:%02d.%03d] ",
294 secs / 3600,
295 (secs / 60) % 60,
296 secs % 60,
aliguoria4bb1db2009-01-22 17:15:16 +0000297 (int)(ti % 1000));
aliguori6f97dba2008-10-31 18:49:55 +0000298 d->drv->chr_write(d->drv, (uint8_t *)buf1, strlen(buf1));
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200299 d->linestart = 0;
300 }
301 ret += d->drv->chr_write(d->drv, buf+i, 1);
302 if (buf[i] == '\n') {
303 d->linestart = 1;
aliguori6f97dba2008-10-31 18:49:55 +0000304 }
305 }
306 }
307 return ret;
308}
309
310static const char * const mux_help[] = {
311 "% h print this help\n\r",
312 "% x exit emulator\n\r",
313 "% s save disk data back to file (if -snapshot)\n\r",
314 "% t toggle console timestamps\n\r"
315 "% b send break (magic sysrq)\n\r",
316 "% c switch between console and monitor\n\r",
317 "% % sends %\n\r",
318 NULL
319};
320
321int term_escape_char = 0x01; /* ctrl-a is used for escape */
322static void mux_print_help(CharDriverState *chr)
323{
324 int i, j;
325 char ebuf[15] = "Escape-Char";
326 char cbuf[50] = "\n\r";
327
328 if (term_escape_char > 0 && term_escape_char < 26) {
329 snprintf(cbuf, sizeof(cbuf), "\n\r");
330 snprintf(ebuf, sizeof(ebuf), "C-%c", term_escape_char - 1 + 'a');
331 } else {
332 snprintf(cbuf, sizeof(cbuf),
333 "\n\rEscape-Char set to Ascii: 0x%02x\n\r\n\r",
334 term_escape_char);
335 }
336 chr->chr_write(chr, (uint8_t *)cbuf, strlen(cbuf));
337 for (i = 0; mux_help[i] != NULL; i++) {
338 for (j=0; mux_help[i][j] != '\0'; j++) {
339 if (mux_help[i][j] == '%')
340 chr->chr_write(chr, (uint8_t *)ebuf, strlen(ebuf));
341 else
342 chr->chr_write(chr, (uint8_t *)&mux_help[i][j], 1);
343 }
344 }
345}
346
aliguori2724b182009-03-05 23:01:47 +0000347static void mux_chr_send_event(MuxDriver *d, int mux_nr, int event)
348{
349 if (d->chr_event[mux_nr])
350 d->chr_event[mux_nr](d->ext_opaque[mux_nr], event);
351}
352
aliguori6f97dba2008-10-31 18:49:55 +0000353static int mux_proc_byte(CharDriverState *chr, MuxDriver *d, int ch)
354{
355 if (d->term_got_escape) {
356 d->term_got_escape = 0;
357 if (ch == term_escape_char)
358 goto send_char;
359 switch(ch) {
360 case '?':
361 case 'h':
362 mux_print_help(chr);
363 break;
364 case 'x':
365 {
366 const char *term = "QEMU: Terminated\n\r";
367 chr->chr_write(chr,(uint8_t *)term,strlen(term));
368 exit(0);
369 break;
370 }
371 case 's':
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +0200372 bdrv_commit_all();
aliguori6f97dba2008-10-31 18:49:55 +0000373 break;
374 case 'b':
Hans de Goedea425d232011-11-19 10:22:43 +0100375 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
aliguori6f97dba2008-10-31 18:49:55 +0000376 break;
377 case 'c':
378 /* Switch to the next registered device */
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200379 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
380 d->focus++;
381 if (d->focus >= d->mux_cnt)
382 d->focus = 0;
383 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
aliguori6f97dba2008-10-31 18:49:55 +0000384 break;
Jan Kiszka2d229592009-06-15 22:25:30 +0200385 case 't':
386 d->timestamps = !d->timestamps;
387 d->timestamps_start = -1;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200388 d->linestart = 0;
Jan Kiszka2d229592009-06-15 22:25:30 +0200389 break;
aliguori6f97dba2008-10-31 18:49:55 +0000390 }
391 } else if (ch == term_escape_char) {
392 d->term_got_escape = 1;
393 } else {
394 send_char:
395 return 1;
396 }
397 return 0;
398}
399
400static void mux_chr_accept_input(CharDriverState *chr)
401{
aliguori6f97dba2008-10-31 18:49:55 +0000402 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200403 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000404
aliguoria80bf992009-03-05 23:00:02 +0000405 while (d->prod[m] != d->cons[m] &&
aliguori6f97dba2008-10-31 18:49:55 +0000406 d->chr_can_read[m] &&
407 d->chr_can_read[m](d->ext_opaque[m])) {
408 d->chr_read[m](d->ext_opaque[m],
aliguoria80bf992009-03-05 23:00:02 +0000409 &d->buffer[m][d->cons[m]++ & MUX_BUFFER_MASK], 1);
aliguori6f97dba2008-10-31 18:49:55 +0000410 }
411}
412
413static int mux_chr_can_read(void *opaque)
414{
415 CharDriverState *chr = opaque;
416 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200417 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000418
aliguoria80bf992009-03-05 23:00:02 +0000419 if ((d->prod[m] - d->cons[m]) < MUX_BUFFER_SIZE)
aliguori6f97dba2008-10-31 18:49:55 +0000420 return 1;
aliguoria80bf992009-03-05 23:00:02 +0000421 if (d->chr_can_read[m])
422 return d->chr_can_read[m](d->ext_opaque[m]);
aliguori6f97dba2008-10-31 18:49:55 +0000423 return 0;
424}
425
426static void mux_chr_read(void *opaque, const uint8_t *buf, int size)
427{
428 CharDriverState *chr = opaque;
429 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200430 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000431 int i;
432
433 mux_chr_accept_input (opaque);
434
435 for(i = 0; i < size; i++)
436 if (mux_proc_byte(chr, d, buf[i])) {
aliguoria80bf992009-03-05 23:00:02 +0000437 if (d->prod[m] == d->cons[m] &&
aliguori6f97dba2008-10-31 18:49:55 +0000438 d->chr_can_read[m] &&
439 d->chr_can_read[m](d->ext_opaque[m]))
440 d->chr_read[m](d->ext_opaque[m], &buf[i], 1);
441 else
aliguoria80bf992009-03-05 23:00:02 +0000442 d->buffer[m][d->prod[m]++ & MUX_BUFFER_MASK] = buf[i];
aliguori6f97dba2008-10-31 18:49:55 +0000443 }
444}
445
446static void mux_chr_event(void *opaque, int event)
447{
448 CharDriverState *chr = opaque;
449 MuxDriver *d = chr->opaque;
450 int i;
451
452 /* Send the event to all registered listeners */
453 for (i = 0; i < d->mux_cnt; i++)
aliguori2724b182009-03-05 23:01:47 +0000454 mux_chr_send_event(d, i, event);
aliguori6f97dba2008-10-31 18:49:55 +0000455}
456
457static void mux_chr_update_read_handler(CharDriverState *chr)
458{
459 MuxDriver *d = chr->opaque;
460
461 if (d->mux_cnt >= MAX_MUX) {
462 fprintf(stderr, "Cannot add I/O handlers, MUX array is full\n");
463 return;
464 }
465 d->ext_opaque[d->mux_cnt] = chr->handler_opaque;
466 d->chr_can_read[d->mux_cnt] = chr->chr_can_read;
467 d->chr_read[d->mux_cnt] = chr->chr_read;
468 d->chr_event[d->mux_cnt] = chr->chr_event;
469 /* Fix up the real driver with mux routines */
470 if (d->mux_cnt == 0) {
471 qemu_chr_add_handlers(d->drv, mux_chr_can_read, mux_chr_read,
472 mux_chr_event, chr);
473 }
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200474 if (d->focus != -1) {
475 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200476 }
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200477 d->focus = d->mux_cnt;
aliguori6f97dba2008-10-31 18:49:55 +0000478 d->mux_cnt++;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200479 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
aliguori6f97dba2008-10-31 18:49:55 +0000480}
481
Michael Roth7b7ab182013-07-30 13:04:22 -0500482static bool muxes_realized;
483
484/**
485 * Called after processing of default and command-line-specified
486 * chardevs to deliver CHR_EVENT_OPENED events to any FEs attached
487 * to a mux chardev. This is done here to ensure that
488 * output/prompts/banners are only displayed for the FE that has
489 * focus when initial command-line processing/machine init is
490 * completed.
491 *
492 * After this point, any new FE attached to any new or existing
493 * mux will receive CHR_EVENT_OPENED notifications for the BE
494 * immediately.
495 */
496static void muxes_realize_done(Notifier *notifier, void *unused)
497{
498 CharDriverState *chr;
499
500 QTAILQ_FOREACH(chr, &chardevs, next) {
501 if (chr->is_mux) {
502 MuxDriver *d = chr->opaque;
503 int i;
504
505 /* send OPENED to all already-attached FEs */
506 for (i = 0; i < d->mux_cnt; i++) {
507 mux_chr_send_event(d, i, CHR_EVENT_OPENED);
508 }
509 /* mark mux as OPENED so any new FEs will immediately receive
510 * OPENED event
511 */
512 qemu_chr_be_generic_open(chr);
513 }
514 }
515 muxes_realized = true;
516}
517
518static Notifier muxes_realize_notify = {
519 .notify = muxes_realize_done,
520};
521
aliguori6f97dba2008-10-31 18:49:55 +0000522static CharDriverState *qemu_chr_open_mux(CharDriverState *drv)
523{
524 CharDriverState *chr;
525 MuxDriver *d;
526
Anthony Liguori7267c092011-08-20 22:09:37 -0500527 chr = g_malloc0(sizeof(CharDriverState));
528 d = g_malloc0(sizeof(MuxDriver));
aliguori6f97dba2008-10-31 18:49:55 +0000529
530 chr->opaque = d;
531 d->drv = drv;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200532 d->focus = -1;
aliguori6f97dba2008-10-31 18:49:55 +0000533 chr->chr_write = mux_chr_write;
534 chr->chr_update_read_handler = mux_chr_update_read_handler;
535 chr->chr_accept_input = mux_chr_accept_input;
Hans de Goede7c32c4f2011-03-24 11:12:02 +0100536 /* Frontend guest-open / -close notification is not support with muxes */
Hans de Goede574b7112013-03-26 11:07:58 +0100537 chr->chr_set_fe_open = NULL;
Michael Roth7b7ab182013-07-30 13:04:22 -0500538 /* only default to opened state if we've realized the initial
539 * set of muxes
540 */
541 chr->explicit_be_open = muxes_realized ? 0 : 1;
542 chr->is_mux = 1;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200543
aliguori6f97dba2008-10-31 18:49:55 +0000544 return chr;
545}
546
547
548#ifdef _WIN32
aliguorid247d252008-11-11 20:46:40 +0000549int send_all(int fd, const void *buf, int len1)
aliguori6f97dba2008-10-31 18:49:55 +0000550{
551 int ret, len;
552
553 len = len1;
554 while (len > 0) {
555 ret = send(fd, buf, len, 0);
556 if (ret < 0) {
aliguori6f97dba2008-10-31 18:49:55 +0000557 errno = WSAGetLastError();
558 if (errno != WSAEWOULDBLOCK) {
559 return -1;
560 }
561 } else if (ret == 0) {
562 break;
563 } else {
564 buf += ret;
565 len -= ret;
566 }
567 }
568 return len1 - len;
569}
570
571#else
572
Jes Sorensen5fc9cfe2010-11-01 20:02:23 +0100573int send_all(int fd, const void *_buf, int len1)
aliguori6f97dba2008-10-31 18:49:55 +0000574{
575 int ret, len;
Jes Sorensen5fc9cfe2010-11-01 20:02:23 +0100576 const uint8_t *buf = _buf;
aliguori6f97dba2008-10-31 18:49:55 +0000577
578 len = len1;
579 while (len > 0) {
580 ret = write(fd, buf, len);
581 if (ret < 0) {
582 if (errno != EINTR && errno != EAGAIN)
583 return -1;
584 } else if (ret == 0) {
585 break;
586 } else {
587 buf += ret;
588 len -= ret;
589 }
590 }
591 return len1 - len;
592}
Stefan Berger4549a8b2013-02-27 12:47:53 -0500593
594int recv_all(int fd, void *_buf, int len1, bool single_read)
595{
596 int ret, len;
597 uint8_t *buf = _buf;
598
599 len = len1;
600 while ((len > 0) && (ret = read(fd, buf, len)) != 0) {
601 if (ret < 0) {
602 if (errno != EINTR && errno != EAGAIN) {
603 return -1;
604 }
605 continue;
606 } else {
607 if (single_read) {
608 return ret;
609 }
610 buf += ret;
611 len -= ret;
612 }
613 }
614 return len1 - len;
615}
616
aliguori6f97dba2008-10-31 18:49:55 +0000617#endif /* !_WIN32 */
618
Anthony Liguori96c63842013-03-05 23:21:18 +0530619typedef struct IOWatchPoll
620{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200621 GSource parent;
622
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200623 GIOChannel *channel;
Anthony Liguori96c63842013-03-05 23:21:18 +0530624 GSource *src;
Anthony Liguori96c63842013-03-05 23:21:18 +0530625
626 IOCanReadHandler *fd_can_read;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200627 GSourceFunc fd_read;
Anthony Liguori96c63842013-03-05 23:21:18 +0530628 void *opaque;
Anthony Liguori96c63842013-03-05 23:21:18 +0530629} IOWatchPoll;
630
Anthony Liguori96c63842013-03-05 23:21:18 +0530631static IOWatchPoll *io_watch_poll_from_source(GSource *source)
632{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200633 return container_of(source, IOWatchPoll, parent);
Anthony Liguori96c63842013-03-05 23:21:18 +0530634}
635
636static gboolean io_watch_poll_prepare(GSource *source, gint *timeout_)
637{
638 IOWatchPoll *iwp = io_watch_poll_from_source(source);
Paolo Bonzinid185c092013-04-05 17:59:33 +0200639 bool now_active = iwp->fd_can_read(iwp->opaque) > 0;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200640 bool was_active = iwp->src != NULL;
Paolo Bonzinid185c092013-04-05 17:59:33 +0200641 if (was_active == now_active) {
Anthony Liguori96c63842013-03-05 23:21:18 +0530642 return FALSE;
643 }
644
Paolo Bonzinid185c092013-04-05 17:59:33 +0200645 if (now_active) {
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200646 iwp->src = g_io_create_watch(iwp->channel, G_IO_IN | G_IO_ERR | G_IO_HUP);
647 g_source_set_callback(iwp->src, iwp->fd_read, iwp->opaque, NULL);
Paolo Bonzinid185c092013-04-05 17:59:33 +0200648 g_source_attach(iwp->src, NULL);
649 } else {
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200650 g_source_destroy(iwp->src);
651 g_source_unref(iwp->src);
652 iwp->src = NULL;
Paolo Bonzinid185c092013-04-05 17:59:33 +0200653 }
654 return FALSE;
Anthony Liguori96c63842013-03-05 23:21:18 +0530655}
656
657static gboolean io_watch_poll_check(GSource *source)
658{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200659 return FALSE;
Anthony Liguori96c63842013-03-05 23:21:18 +0530660}
661
662static gboolean io_watch_poll_dispatch(GSource *source, GSourceFunc callback,
663 gpointer user_data)
664{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200665 abort();
Anthony Liguori96c63842013-03-05 23:21:18 +0530666}
667
668static void io_watch_poll_finalize(GSource *source)
669{
Paolo Bonzini2b316772013-04-19 17:32:09 +0200670 /* Due to a glib bug, removing the last reference to a source
671 * inside a finalize callback causes recursive locking (and a
672 * deadlock). This is not a problem inside other callbacks,
673 * including dispatch callbacks, so we call io_remove_watch_poll
674 * to remove this source. At this point, iwp->src must
675 * be NULL, or we would leak it.
676 *
677 * This would be solved much more elegantly by child sources,
678 * but we support older glib versions that do not have them.
679 */
Anthony Liguori96c63842013-03-05 23:21:18 +0530680 IOWatchPoll *iwp = io_watch_poll_from_source(source);
Paolo Bonzini2b316772013-04-19 17:32:09 +0200681 assert(iwp->src == NULL);
Anthony Liguori96c63842013-03-05 23:21:18 +0530682}
683
684static GSourceFuncs io_watch_poll_funcs = {
685 .prepare = io_watch_poll_prepare,
686 .check = io_watch_poll_check,
687 .dispatch = io_watch_poll_dispatch,
688 .finalize = io_watch_poll_finalize,
689};
690
691/* Can only be used for read */
692static guint io_add_watch_poll(GIOChannel *channel,
693 IOCanReadHandler *fd_can_read,
694 GIOFunc fd_read,
695 gpointer user_data)
696{
697 IOWatchPoll *iwp;
Paolo Bonzini0ca5aa42013-04-10 15:23:27 +0200698 int tag;
Anthony Liguori96c63842013-03-05 23:21:18 +0530699
Paolo Bonzinid185c092013-04-05 17:59:33 +0200700 iwp = (IOWatchPoll *) g_source_new(&io_watch_poll_funcs, sizeof(IOWatchPoll));
Anthony Liguori96c63842013-03-05 23:21:18 +0530701 iwp->fd_can_read = fd_can_read;
702 iwp->opaque = user_data;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200703 iwp->channel = channel;
704 iwp->fd_read = (GSourceFunc) fd_read;
705 iwp->src = NULL;
Anthony Liguori96c63842013-03-05 23:21:18 +0530706
Paolo Bonzini0ca5aa42013-04-10 15:23:27 +0200707 tag = g_source_attach(&iwp->parent, NULL);
708 g_source_unref(&iwp->parent);
709 return tag;
Anthony Liguori96c63842013-03-05 23:21:18 +0530710}
711
Paolo Bonzini2b316772013-04-19 17:32:09 +0200712static void io_remove_watch_poll(guint tag)
713{
714 GSource *source;
715 IOWatchPoll *iwp;
716
717 g_return_if_fail (tag > 0);
718
719 source = g_main_context_find_source_by_id(NULL, tag);
720 g_return_if_fail (source != NULL);
721
722 iwp = io_watch_poll_from_source(source);
723 if (iwp->src) {
724 g_source_destroy(iwp->src);
725 g_source_unref(iwp->src);
726 iwp->src = NULL;
727 }
728 g_source_destroy(&iwp->parent);
729}
730
Amit Shah26da70c2013-08-28 15:23:37 +0530731static void remove_fd_in_watch(CharDriverState *chr)
732{
733 if (chr->fd_in_tag) {
734 io_remove_watch_poll(chr->fd_in_tag);
735 chr->fd_in_tag = 0;
736 }
737}
738
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000739#ifndef _WIN32
Anthony Liguori96c63842013-03-05 23:21:18 +0530740static GIOChannel *io_channel_from_fd(int fd)
741{
742 GIOChannel *chan;
743
744 if (fd == -1) {
745 return NULL;
746 }
747
748 chan = g_io_channel_unix_new(fd);
749
750 g_io_channel_set_encoding(chan, NULL, NULL);
751 g_io_channel_set_buffered(chan, FALSE);
752
753 return chan;
754}
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000755#endif
Anthony Liguori96c63842013-03-05 23:21:18 +0530756
Anthony Liguori76a96442013-03-05 23:21:21 +0530757static GIOChannel *io_channel_from_socket(int fd)
758{
759 GIOChannel *chan;
760
761 if (fd == -1) {
762 return NULL;
763 }
764
765#ifdef _WIN32
766 chan = g_io_channel_win32_new_socket(fd);
767#else
768 chan = g_io_channel_unix_new(fd);
769#endif
770
771 g_io_channel_set_encoding(chan, NULL, NULL);
772 g_io_channel_set_buffered(chan, FALSE);
773
774 return chan;
775}
776
Anthony Liguori684a0962013-03-29 11:39:50 -0500777static int io_channel_send(GIOChannel *fd, const void *buf, size_t len)
Anthony Liguori96c63842013-03-05 23:21:18 +0530778{
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200779 size_t offset = 0;
780 GIOStatus status = G_IO_STATUS_NORMAL;
Anthony Liguori96c63842013-03-05 23:21:18 +0530781
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200782 while (offset < len && status == G_IO_STATUS_NORMAL) {
783 gsize bytes_written = 0;
Anthony Liguori684a0962013-03-29 11:39:50 -0500784
785 status = g_io_channel_write_chars(fd, buf + offset, len - offset,
Anthony Liguori96c63842013-03-05 23:21:18 +0530786 &bytes_written, NULL);
Anthony Liguori684a0962013-03-29 11:39:50 -0500787 offset += bytes_written;
Anthony Liguori96c63842013-03-05 23:21:18 +0530788 }
Anthony Liguori684a0962013-03-29 11:39:50 -0500789
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200790 if (offset > 0) {
791 return offset;
792 }
793 switch (status) {
794 case G_IO_STATUS_NORMAL:
795 g_assert(len == 0);
796 return 0;
797 case G_IO_STATUS_AGAIN:
798 errno = EAGAIN;
799 return -1;
800 default:
801 break;
802 }
803 errno = EINVAL;
804 return -1;
Anthony Liguori96c63842013-03-05 23:21:18 +0530805}
Anthony Liguori96c63842013-03-05 23:21:18 +0530806
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000807#ifndef _WIN32
808
Anthony Liguoria29753f2013-03-05 23:21:19 +0530809typedef struct FDCharDriver {
810 CharDriverState *chr;
811 GIOChannel *fd_in, *fd_out;
aliguori6f97dba2008-10-31 18:49:55 +0000812 int max_size;
Anthony Liguoria29753f2013-03-05 23:21:19 +0530813 QTAILQ_ENTRY(FDCharDriver) node;
aliguori6f97dba2008-10-31 18:49:55 +0000814} FDCharDriver;
815
aliguori6f97dba2008-10-31 18:49:55 +0000816static int fd_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
817{
818 FDCharDriver *s = chr->opaque;
Anthony Liguoria29753f2013-03-05 23:21:19 +0530819
Anthony Liguori684a0962013-03-29 11:39:50 -0500820 return io_channel_send(s->fd_out, buf, len);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530821}
822
823static gboolean fd_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
824{
825 CharDriverState *chr = opaque;
826 FDCharDriver *s = chr->opaque;
827 int len;
828 uint8_t buf[READ_BUF_LEN];
829 GIOStatus status;
830 gsize bytes_read;
831
832 len = sizeof(buf);
833 if (len > s->max_size) {
834 len = s->max_size;
835 }
836 if (len == 0) {
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +0200837 return TRUE;
Anthony Liguoria29753f2013-03-05 23:21:19 +0530838 }
839
840 status = g_io_channel_read_chars(chan, (gchar *)buf,
841 len, &bytes_read, NULL);
842 if (status == G_IO_STATUS_EOF) {
Amit Shah26da70c2013-08-28 15:23:37 +0530843 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530844 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
845 return FALSE;
846 }
847 if (status == G_IO_STATUS_NORMAL) {
848 qemu_chr_be_write(chr, buf, bytes_read);
849 }
850
851 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +0000852}
853
854static int fd_chr_read_poll(void *opaque)
855{
856 CharDriverState *chr = opaque;
857 FDCharDriver *s = chr->opaque;
858
Anthony Liguori909cda12011-08-15 11:17:31 -0500859 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +0000860 return s->max_size;
861}
862
Anthony Liguori23673ca2013-03-05 23:21:23 +0530863static GSource *fd_chr_add_watch(CharDriverState *chr, GIOCondition cond)
864{
865 FDCharDriver *s = chr->opaque;
866 return g_io_create_watch(s->fd_out, cond);
867}
868
aliguori6f97dba2008-10-31 18:49:55 +0000869static void fd_chr_update_read_handler(CharDriverState *chr)
870{
871 FDCharDriver *s = chr->opaque;
872
Amit Shah26da70c2013-08-28 15:23:37 +0530873 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530874 if (s->fd_in) {
Amit Shah7ba9add2013-08-28 15:18:29 +0530875 chr->fd_in_tag = io_add_watch_poll(s->fd_in, fd_chr_read_poll,
876 fd_chr_read, chr);
aliguori6f97dba2008-10-31 18:49:55 +0000877 }
878}
879
880static void fd_chr_close(struct CharDriverState *chr)
881{
882 FDCharDriver *s = chr->opaque;
883
Amit Shah26da70c2013-08-28 15:23:37 +0530884 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530885 if (s->fd_in) {
886 g_io_channel_unref(s->fd_in);
887 }
888 if (s->fd_out) {
889 g_io_channel_unref(s->fd_out);
aliguori6f97dba2008-10-31 18:49:55 +0000890 }
891
Anthony Liguori7267c092011-08-20 22:09:37 -0500892 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +0100893 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +0000894}
895
896/* open a character device to a unix fd */
897static CharDriverState *qemu_chr_open_fd(int fd_in, int fd_out)
898{
899 CharDriverState *chr;
900 FDCharDriver *s;
901
Anthony Liguori7267c092011-08-20 22:09:37 -0500902 chr = g_malloc0(sizeof(CharDriverState));
903 s = g_malloc0(sizeof(FDCharDriver));
Anthony Liguoria29753f2013-03-05 23:21:19 +0530904 s->fd_in = io_channel_from_fd(fd_in);
905 s->fd_out = io_channel_from_fd(fd_out);
Anthony Liguori23673ca2013-03-05 23:21:23 +0530906 fcntl(fd_out, F_SETFL, O_NONBLOCK);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530907 s->chr = chr;
aliguori6f97dba2008-10-31 18:49:55 +0000908 chr->opaque = s;
Anthony Liguori23673ca2013-03-05 23:21:23 +0530909 chr->chr_add_watch = fd_chr_add_watch;
aliguori6f97dba2008-10-31 18:49:55 +0000910 chr->chr_write = fd_chr_write;
911 chr->chr_update_read_handler = fd_chr_update_read_handler;
912 chr->chr_close = fd_chr_close;
913
aliguori6f97dba2008-10-31 18:49:55 +0000914 return chr;
915}
916
Gerd Hoffmann548cbb32013-02-25 11:50:55 +0100917static CharDriverState *qemu_chr_open_pipe(ChardevHostdev *opts)
aliguori6f97dba2008-10-31 18:49:55 +0000918{
919 int fd_in, fd_out;
920 char filename_in[256], filename_out[256];
Gerd Hoffmann548cbb32013-02-25 11:50:55 +0100921 const char *filename = opts->device;
Gerd Hoffmann7d315442009-09-10 10:58:36 +0200922
923 if (filename == NULL) {
924 fprintf(stderr, "chardev: pipe: no filename given\n");
Markus Armbruster1f514702012-02-07 15:09:08 +0100925 return NULL;
Gerd Hoffmann7d315442009-09-10 10:58:36 +0200926 }
aliguori6f97dba2008-10-31 18:49:55 +0000927
928 snprintf(filename_in, 256, "%s.in", filename);
929 snprintf(filename_out, 256, "%s.out", filename);
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100930 TFR(fd_in = qemu_open(filename_in, O_RDWR | O_BINARY));
931 TFR(fd_out = qemu_open(filename_out, O_RDWR | O_BINARY));
aliguori6f97dba2008-10-31 18:49:55 +0000932 if (fd_in < 0 || fd_out < 0) {
933 if (fd_in >= 0)
934 close(fd_in);
935 if (fd_out >= 0)
936 close(fd_out);
Markus Armbrusterb181e042012-02-07 15:09:09 +0100937 TFR(fd_in = fd_out = qemu_open(filename, O_RDWR | O_BINARY));
Markus Armbrustera89dd6c2012-02-07 15:09:10 +0100938 if (fd_in < 0) {
Markus Armbruster1f514702012-02-07 15:09:08 +0100939 return NULL;
Markus Armbrustera89dd6c2012-02-07 15:09:10 +0100940 }
aliguori6f97dba2008-10-31 18:49:55 +0000941 }
Markus Armbruster1f514702012-02-07 15:09:08 +0100942 return qemu_chr_open_fd(fd_in, fd_out);
aliguori6f97dba2008-10-31 18:49:55 +0000943}
944
aliguori6f97dba2008-10-31 18:49:55 +0000945/* init terminal so that we can grab keys */
946static struct termios oldtty;
947static int old_fd0_flags;
Paolo Bonzinibb002512010-12-23 13:42:50 +0100948static bool stdio_allow_signal;
aliguori6f97dba2008-10-31 18:49:55 +0000949
950static void term_exit(void)
951{
952 tcsetattr (0, TCSANOW, &oldtty);
953 fcntl(0, F_SETFL, old_fd0_flags);
954}
955
Paolo Bonzinibb002512010-12-23 13:42:50 +0100956static void qemu_chr_set_echo_stdio(CharDriverState *chr, bool echo)
aliguori6f97dba2008-10-31 18:49:55 +0000957{
958 struct termios tty;
959
Paolo Bonzini03693642010-12-23 13:42:49 +0100960 tty = oldtty;
Paolo Bonzinibb002512010-12-23 13:42:50 +0100961 if (!echo) {
962 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
aliguori6f97dba2008-10-31 18:49:55 +0000963 |INLCR|IGNCR|ICRNL|IXON);
Paolo Bonzinibb002512010-12-23 13:42:50 +0100964 tty.c_oflag |= OPOST;
965 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
966 tty.c_cflag &= ~(CSIZE|PARENB);
967 tty.c_cflag |= CS8;
968 tty.c_cc[VMIN] = 1;
969 tty.c_cc[VTIME] = 0;
970 }
Paolo Bonzinibb002512010-12-23 13:42:50 +0100971 if (!stdio_allow_signal)
aliguori6f97dba2008-10-31 18:49:55 +0000972 tty.c_lflag &= ~ISIG;
aliguori6f97dba2008-10-31 18:49:55 +0000973
974 tcsetattr (0, TCSANOW, &tty);
aliguori6f97dba2008-10-31 18:49:55 +0000975}
976
977static void qemu_chr_close_stdio(struct CharDriverState *chr)
978{
979 term_exit();
aliguori6f97dba2008-10-31 18:49:55 +0000980 fd_chr_close(chr);
981}
982
Gerd Hoffmann7c358032013-02-21 12:34:58 +0100983static CharDriverState *qemu_chr_open_stdio(ChardevStdio *opts)
aliguori6f97dba2008-10-31 18:49:55 +0000984{
985 CharDriverState *chr;
986
Michael Tokarevab51b1d2012-12-30 12:48:14 +0400987 if (is_daemonized()) {
988 error_report("cannot use stdio with -daemonize");
989 return NULL;
990 }
Anthony Liguoried7a1542013-03-05 23:21:17 +0530991 old_fd0_flags = fcntl(0, F_GETFL);
992 tcgetattr (0, &oldtty);
993 fcntl(0, F_SETFL, O_NONBLOCK);
994 atexit(term_exit);
Paolo Bonzini03693642010-12-23 13:42:49 +0100995
aliguori6f97dba2008-10-31 18:49:55 +0000996 chr = qemu_chr_open_fd(0, 1);
997 chr->chr_close = qemu_chr_close_stdio;
Paolo Bonzinibb002512010-12-23 13:42:50 +0100998 chr->chr_set_echo = qemu_chr_set_echo_stdio;
Gerd Hoffmann7c358032013-02-21 12:34:58 +0100999 if (opts->has_signal) {
1000 stdio_allow_signal = opts->signal;
1001 }
Anthony Liguori15f31512011-08-15 11:17:35 -05001002 qemu_chr_fe_set_echo(chr, false);
aliguori6f97dba2008-10-31 18:49:55 +00001003
Markus Armbruster1f514702012-02-07 15:09:08 +01001004 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001005}
1006
aliguori6f97dba2008-10-31 18:49:55 +00001007#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
Aurelien Jarnoa167ba52009-11-29 18:00:41 +01001008 || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
1009 || defined(__GLIBC__)
aliguori6f97dba2008-10-31 18:49:55 +00001010
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001011#define HAVE_CHARDEV_TTY 1
1012
aliguori6f97dba2008-10-31 18:49:55 +00001013typedef struct {
Anthony Liguori093d3a22013-03-05 23:21:20 +05301014 GIOChannel *fd;
aliguori6f97dba2008-10-31 18:49:55 +00001015 int connected;
aliguori6f97dba2008-10-31 18:49:55 +00001016 int read_bytes;
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301017 guint timer_tag;
aliguori6f97dba2008-10-31 18:49:55 +00001018} PtyCharDriver;
1019
1020static void pty_chr_update_read_handler(CharDriverState *chr);
1021static void pty_chr_state(CharDriverState *chr, int connected);
1022
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301023static gboolean pty_chr_timer(gpointer opaque)
1024{
1025 struct CharDriverState *chr = opaque;
1026 PtyCharDriver *s = chr->opaque;
1027
Hans de Goede79f20072013-04-25 13:53:02 +02001028 s->timer_tag = 0;
Gerd Hoffmannb0d768c2013-08-22 11:43:58 +02001029 if (!s->connected) {
1030 /* Next poll ... */
1031 pty_chr_update_read_handler(chr);
1032 }
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301033 return FALSE;
1034}
1035
1036static void pty_chr_rearm_timer(CharDriverState *chr, int ms)
1037{
1038 PtyCharDriver *s = chr->opaque;
1039
1040 if (s->timer_tag) {
1041 g_source_remove(s->timer_tag);
1042 s->timer_tag = 0;
1043 }
1044
1045 if (ms == 1000) {
1046 s->timer_tag = g_timeout_add_seconds(1, pty_chr_timer, chr);
1047 } else {
1048 s->timer_tag = g_timeout_add(ms, pty_chr_timer, chr);
1049 }
1050}
1051
aliguori6f97dba2008-10-31 18:49:55 +00001052static int pty_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
1053{
1054 PtyCharDriver *s = chr->opaque;
1055
1056 if (!s->connected) {
1057 /* guest sends data, check for (re-)connect */
1058 pty_chr_update_read_handler(chr);
1059 return 0;
1060 }
Anthony Liguori684a0962013-03-29 11:39:50 -05001061 return io_channel_send(s->fd, buf, len);
aliguori6f97dba2008-10-31 18:49:55 +00001062}
1063
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301064static GSource *pty_chr_add_watch(CharDriverState *chr, GIOCondition cond)
1065{
1066 PtyCharDriver *s = chr->opaque;
1067 return g_io_create_watch(s->fd, cond);
1068}
1069
aliguori6f97dba2008-10-31 18:49:55 +00001070static int pty_chr_read_poll(void *opaque)
1071{
1072 CharDriverState *chr = opaque;
1073 PtyCharDriver *s = chr->opaque;
1074
Anthony Liguori909cda12011-08-15 11:17:31 -05001075 s->read_bytes = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001076 return s->read_bytes;
1077}
1078
Anthony Liguori093d3a22013-03-05 23:21:20 +05301079static gboolean pty_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00001080{
1081 CharDriverState *chr = opaque;
1082 PtyCharDriver *s = chr->opaque;
Anthony Liguori093d3a22013-03-05 23:21:20 +05301083 gsize size, len;
Amit Shah9bd78542009-11-03 19:59:54 +05301084 uint8_t buf[READ_BUF_LEN];
Anthony Liguori093d3a22013-03-05 23:21:20 +05301085 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00001086
1087 len = sizeof(buf);
1088 if (len > s->read_bytes)
1089 len = s->read_bytes;
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02001090 if (len == 0) {
1091 return TRUE;
1092 }
Anthony Liguori093d3a22013-03-05 23:21:20 +05301093 status = g_io_channel_read_chars(s->fd, (gchar *)buf, len, &size, NULL);
1094 if (status != G_IO_STATUS_NORMAL) {
aliguori6f97dba2008-10-31 18:49:55 +00001095 pty_chr_state(chr, 0);
Anthony Liguori093d3a22013-03-05 23:21:20 +05301096 return FALSE;
1097 } else {
aliguori6f97dba2008-10-31 18:49:55 +00001098 pty_chr_state(chr, 1);
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05001099 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00001100 }
Anthony Liguori093d3a22013-03-05 23:21:20 +05301101 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00001102}
1103
1104static void pty_chr_update_read_handler(CharDriverState *chr)
1105{
1106 PtyCharDriver *s = chr->opaque;
Paolo Bonzini85a67692013-04-19 17:32:07 +02001107 GPollFD pfd;
aliguori6f97dba2008-10-31 18:49:55 +00001108
Paolo Bonzini85a67692013-04-19 17:32:07 +02001109 pfd.fd = g_io_channel_unix_get_fd(s->fd);
1110 pfd.events = G_IO_OUT;
1111 pfd.revents = 0;
1112 g_poll(&pfd, 1, 0);
1113 if (pfd.revents & G_IO_HUP) {
1114 pty_chr_state(chr, 0);
1115 } else {
1116 pty_chr_state(chr, 1);
Anthony Liguori093d3a22013-03-05 23:21:20 +05301117 }
aliguori6f97dba2008-10-31 18:49:55 +00001118}
1119
1120static void pty_chr_state(CharDriverState *chr, int connected)
1121{
1122 PtyCharDriver *s = chr->opaque;
1123
1124 if (!connected) {
Amit Shah26da70c2013-08-28 15:23:37 +05301125 remove_fd_in_watch(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001126 s->connected = 0;
aliguori6f97dba2008-10-31 18:49:55 +00001127 /* (re-)connect poll interval for idle guests: once per second.
1128 * We check more frequently in case the guests sends data to
1129 * the virtual device linked to our pty. */
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301130 pty_chr_rearm_timer(chr, 1000);
aliguori6f97dba2008-10-31 18:49:55 +00001131 } else {
Paolo Bonzini85a67692013-04-19 17:32:07 +02001132 if (s->timer_tag) {
1133 g_source_remove(s->timer_tag);
1134 s->timer_tag = 0;
1135 }
1136 if (!s->connected) {
Paolo Bonzini85a67692013-04-19 17:32:07 +02001137 s->connected = 1;
James Hogan3a3567d2013-08-08 12:09:38 +01001138 qemu_chr_be_generic_open(chr);
Gal Hammerac1b84d2014-02-25 12:12:35 +02001139 }
1140 if (!chr->fd_in_tag) {
Amit Shah7ba9add2013-08-28 15:18:29 +05301141 chr->fd_in_tag = io_add_watch_poll(s->fd, pty_chr_read_poll,
1142 pty_chr_read, chr);
Paolo Bonzini85a67692013-04-19 17:32:07 +02001143 }
aliguori6f97dba2008-10-31 18:49:55 +00001144 }
1145}
1146
aliguori6f97dba2008-10-31 18:49:55 +00001147static void pty_chr_close(struct CharDriverState *chr)
1148{
1149 PtyCharDriver *s = chr->opaque;
Anthony Liguori093d3a22013-03-05 23:21:20 +05301150 int fd;
aliguori6f97dba2008-10-31 18:49:55 +00001151
Amit Shah26da70c2013-08-28 15:23:37 +05301152 remove_fd_in_watch(chr);
Anthony Liguori093d3a22013-03-05 23:21:20 +05301153 fd = g_io_channel_unix_get_fd(s->fd);
1154 g_io_channel_unref(s->fd);
1155 close(fd);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301156 if (s->timer_tag) {
1157 g_source_remove(s->timer_tag);
Paolo Bonzini910b6362013-04-19 17:32:06 +02001158 s->timer_tag = 0;
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301159 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001160 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01001161 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001162}
1163
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001164static CharDriverState *qemu_chr_open_pty(const char *id,
1165 ChardevReturn *ret)
aliguori6f97dba2008-10-31 18:49:55 +00001166{
1167 CharDriverState *chr;
1168 PtyCharDriver *s;
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001169 int master_fd, slave_fd;
aliguori6f97dba2008-10-31 18:49:55 +00001170 char pty_name[PATH_MAX];
aliguori6f97dba2008-10-31 18:49:55 +00001171
Michael Tokarev4efeabb2013-06-05 18:44:54 +04001172 master_fd = qemu_openpty_raw(&slave_fd, pty_name);
1173 if (master_fd < 0) {
Markus Armbruster1f514702012-02-07 15:09:08 +01001174 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001175 }
1176
aliguori6f97dba2008-10-31 18:49:55 +00001177 close(slave_fd);
1178
Markus Armbrustera4e26042011-11-11 10:40:05 +01001179 chr = g_malloc0(sizeof(CharDriverState));
aliguori6f97dba2008-10-31 18:49:55 +00001180
Michael Tokarev4efeabb2013-06-05 18:44:54 +04001181 chr->filename = g_strdup_printf("pty:%s", pty_name);
1182 ret->pty = g_strdup(pty_name);
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001183 ret->has_pty = true;
Lei Li58650212012-12-21 12:26:38 +08001184
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001185 fprintf(stderr, "char device redirected to %s (label %s)\n",
Michael Tokarev4efeabb2013-06-05 18:44:54 +04001186 pty_name, id);
Markus Armbrustera4e26042011-11-11 10:40:05 +01001187
1188 s = g_malloc0(sizeof(PtyCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00001189 chr->opaque = s;
1190 chr->chr_write = pty_chr_write;
1191 chr->chr_update_read_handler = pty_chr_update_read_handler;
1192 chr->chr_close = pty_chr_close;
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301193 chr->chr_add_watch = pty_chr_add_watch;
Michael Rothbd5c51e2013-06-07 15:19:53 -05001194 chr->explicit_be_open = true;
aliguori6f97dba2008-10-31 18:49:55 +00001195
Anthony Liguori093d3a22013-03-05 23:21:20 +05301196 s->fd = io_channel_from_fd(master_fd);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301197 s->timer_tag = 0;
aliguori6f97dba2008-10-31 18:49:55 +00001198
Markus Armbruster1f514702012-02-07 15:09:08 +01001199 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001200}
1201
1202static void tty_serial_init(int fd, int speed,
1203 int parity, int data_bits, int stop_bits)
1204{
1205 struct termios tty;
1206 speed_t spd;
1207
1208#if 0
1209 printf("tty_serial_init: speed=%d parity=%c data=%d stop=%d\n",
1210 speed, parity, data_bits, stop_bits);
1211#endif
1212 tcgetattr (fd, &tty);
1213
Stefan Weil45eea132009-10-26 16:10:10 +01001214#define check_speed(val) if (speed <= val) { spd = B##val; break; }
1215 speed = speed * 10 / 11;
1216 do {
1217 check_speed(50);
1218 check_speed(75);
1219 check_speed(110);
1220 check_speed(134);
1221 check_speed(150);
1222 check_speed(200);
1223 check_speed(300);
1224 check_speed(600);
1225 check_speed(1200);
1226 check_speed(1800);
1227 check_speed(2400);
1228 check_speed(4800);
1229 check_speed(9600);
1230 check_speed(19200);
1231 check_speed(38400);
1232 /* Non-Posix values follow. They may be unsupported on some systems. */
1233 check_speed(57600);
1234 check_speed(115200);
1235#ifdef B230400
1236 check_speed(230400);
1237#endif
1238#ifdef B460800
1239 check_speed(460800);
1240#endif
1241#ifdef B500000
1242 check_speed(500000);
1243#endif
1244#ifdef B576000
1245 check_speed(576000);
1246#endif
1247#ifdef B921600
1248 check_speed(921600);
1249#endif
1250#ifdef B1000000
1251 check_speed(1000000);
1252#endif
1253#ifdef B1152000
1254 check_speed(1152000);
1255#endif
1256#ifdef B1500000
1257 check_speed(1500000);
1258#endif
1259#ifdef B2000000
1260 check_speed(2000000);
1261#endif
1262#ifdef B2500000
1263 check_speed(2500000);
1264#endif
1265#ifdef B3000000
1266 check_speed(3000000);
1267#endif
1268#ifdef B3500000
1269 check_speed(3500000);
1270#endif
1271#ifdef B4000000
1272 check_speed(4000000);
1273#endif
aliguori6f97dba2008-10-31 18:49:55 +00001274 spd = B115200;
Stefan Weil45eea132009-10-26 16:10:10 +01001275 } while (0);
aliguori6f97dba2008-10-31 18:49:55 +00001276
1277 cfsetispeed(&tty, spd);
1278 cfsetospeed(&tty, spd);
1279
1280 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
1281 |INLCR|IGNCR|ICRNL|IXON);
1282 tty.c_oflag |= OPOST;
1283 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN|ISIG);
1284 tty.c_cflag &= ~(CSIZE|PARENB|PARODD|CRTSCTS|CSTOPB);
1285 switch(data_bits) {
1286 default:
1287 case 8:
1288 tty.c_cflag |= CS8;
1289 break;
1290 case 7:
1291 tty.c_cflag |= CS7;
1292 break;
1293 case 6:
1294 tty.c_cflag |= CS6;
1295 break;
1296 case 5:
1297 tty.c_cflag |= CS5;
1298 break;
1299 }
1300 switch(parity) {
1301 default:
1302 case 'N':
1303 break;
1304 case 'E':
1305 tty.c_cflag |= PARENB;
1306 break;
1307 case 'O':
1308 tty.c_cflag |= PARENB | PARODD;
1309 break;
1310 }
1311 if (stop_bits == 2)
1312 tty.c_cflag |= CSTOPB;
1313
1314 tcsetattr (fd, TCSANOW, &tty);
1315}
1316
1317static int tty_serial_ioctl(CharDriverState *chr, int cmd, void *arg)
1318{
1319 FDCharDriver *s = chr->opaque;
1320
1321 switch(cmd) {
1322 case CHR_IOCTL_SERIAL_SET_PARAMS:
1323 {
1324 QEMUSerialSetParams *ssp = arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301325 tty_serial_init(g_io_channel_unix_get_fd(s->fd_in),
1326 ssp->speed, ssp->parity,
aliguori6f97dba2008-10-31 18:49:55 +00001327 ssp->data_bits, ssp->stop_bits);
1328 }
1329 break;
1330 case CHR_IOCTL_SERIAL_SET_BREAK:
1331 {
1332 int enable = *(int *)arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301333 if (enable) {
1334 tcsendbreak(g_io_channel_unix_get_fd(s->fd_in), 1);
1335 }
aliguori6f97dba2008-10-31 18:49:55 +00001336 }
1337 break;
1338 case CHR_IOCTL_SERIAL_GET_TIOCM:
1339 {
1340 int sarg = 0;
1341 int *targ = (int *)arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301342 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMGET, &sarg);
aliguori6f97dba2008-10-31 18:49:55 +00001343 *targ = 0;
aurel32b4abdfa2009-02-08 14:46:17 +00001344 if (sarg & TIOCM_CTS)
aliguori6f97dba2008-10-31 18:49:55 +00001345 *targ |= CHR_TIOCM_CTS;
aurel32b4abdfa2009-02-08 14:46:17 +00001346 if (sarg & TIOCM_CAR)
aliguori6f97dba2008-10-31 18:49:55 +00001347 *targ |= CHR_TIOCM_CAR;
aurel32b4abdfa2009-02-08 14:46:17 +00001348 if (sarg & TIOCM_DSR)
aliguori6f97dba2008-10-31 18:49:55 +00001349 *targ |= CHR_TIOCM_DSR;
aurel32b4abdfa2009-02-08 14:46:17 +00001350 if (sarg & TIOCM_RI)
aliguori6f97dba2008-10-31 18:49:55 +00001351 *targ |= CHR_TIOCM_RI;
aurel32b4abdfa2009-02-08 14:46:17 +00001352 if (sarg & TIOCM_DTR)
aliguori6f97dba2008-10-31 18:49:55 +00001353 *targ |= CHR_TIOCM_DTR;
aurel32b4abdfa2009-02-08 14:46:17 +00001354 if (sarg & TIOCM_RTS)
aliguori6f97dba2008-10-31 18:49:55 +00001355 *targ |= CHR_TIOCM_RTS;
1356 }
1357 break;
1358 case CHR_IOCTL_SERIAL_SET_TIOCM:
1359 {
1360 int sarg = *(int *)arg;
1361 int targ = 0;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301362 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMGET, &targ);
aurel32b4abdfa2009-02-08 14:46:17 +00001363 targ &= ~(CHR_TIOCM_CTS | CHR_TIOCM_CAR | CHR_TIOCM_DSR
1364 | CHR_TIOCM_RI | CHR_TIOCM_DTR | CHR_TIOCM_RTS);
1365 if (sarg & CHR_TIOCM_CTS)
1366 targ |= TIOCM_CTS;
1367 if (sarg & CHR_TIOCM_CAR)
1368 targ |= TIOCM_CAR;
1369 if (sarg & CHR_TIOCM_DSR)
1370 targ |= TIOCM_DSR;
1371 if (sarg & CHR_TIOCM_RI)
1372 targ |= TIOCM_RI;
1373 if (sarg & CHR_TIOCM_DTR)
aliguori6f97dba2008-10-31 18:49:55 +00001374 targ |= TIOCM_DTR;
aurel32b4abdfa2009-02-08 14:46:17 +00001375 if (sarg & CHR_TIOCM_RTS)
aliguori6f97dba2008-10-31 18:49:55 +00001376 targ |= TIOCM_RTS;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301377 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMSET, &targ);
aliguori6f97dba2008-10-31 18:49:55 +00001378 }
1379 break;
1380 default:
1381 return -ENOTSUP;
1382 }
1383 return 0;
1384}
1385
David Ahern4266a132010-02-10 18:27:17 -07001386static void qemu_chr_close_tty(CharDriverState *chr)
1387{
1388 FDCharDriver *s = chr->opaque;
1389 int fd = -1;
1390
1391 if (s) {
Anthony Liguoria29753f2013-03-05 23:21:19 +05301392 fd = g_io_channel_unix_get_fd(s->fd_in);
David Ahern4266a132010-02-10 18:27:17 -07001393 }
1394
1395 fd_chr_close(chr);
1396
1397 if (fd >= 0) {
1398 close(fd);
1399 }
1400}
1401
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01001402static CharDriverState *qemu_chr_open_tty_fd(int fd)
1403{
1404 CharDriverState *chr;
1405
1406 tty_serial_init(fd, 115200, 'N', 8, 1);
1407 chr = qemu_chr_open_fd(fd, fd);
1408 chr->chr_ioctl = tty_serial_ioctl;
1409 chr->chr_close = qemu_chr_close_tty;
1410 return chr;
1411}
aliguori6f97dba2008-10-31 18:49:55 +00001412#endif /* __linux__ || __sun__ */
1413
1414#if defined(__linux__)
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001415
1416#define HAVE_CHARDEV_PARPORT 1
1417
aliguori6f97dba2008-10-31 18:49:55 +00001418typedef struct {
1419 int fd;
1420 int mode;
1421} ParallelCharDriver;
1422
1423static int pp_hw_mode(ParallelCharDriver *s, uint16_t mode)
1424{
1425 if (s->mode != mode) {
1426 int m = mode;
1427 if (ioctl(s->fd, PPSETMODE, &m) < 0)
1428 return 0;
1429 s->mode = mode;
1430 }
1431 return 1;
1432}
1433
1434static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1435{
1436 ParallelCharDriver *drv = chr->opaque;
1437 int fd = drv->fd;
1438 uint8_t b;
1439
1440 switch(cmd) {
1441 case CHR_IOCTL_PP_READ_DATA:
1442 if (ioctl(fd, PPRDATA, &b) < 0)
1443 return -ENOTSUP;
1444 *(uint8_t *)arg = b;
1445 break;
1446 case CHR_IOCTL_PP_WRITE_DATA:
1447 b = *(uint8_t *)arg;
1448 if (ioctl(fd, PPWDATA, &b) < 0)
1449 return -ENOTSUP;
1450 break;
1451 case CHR_IOCTL_PP_READ_CONTROL:
1452 if (ioctl(fd, PPRCONTROL, &b) < 0)
1453 return -ENOTSUP;
1454 /* Linux gives only the lowest bits, and no way to know data
1455 direction! For better compatibility set the fixed upper
1456 bits. */
1457 *(uint8_t *)arg = b | 0xc0;
1458 break;
1459 case CHR_IOCTL_PP_WRITE_CONTROL:
1460 b = *(uint8_t *)arg;
1461 if (ioctl(fd, PPWCONTROL, &b) < 0)
1462 return -ENOTSUP;
1463 break;
1464 case CHR_IOCTL_PP_READ_STATUS:
1465 if (ioctl(fd, PPRSTATUS, &b) < 0)
1466 return -ENOTSUP;
1467 *(uint8_t *)arg = b;
1468 break;
1469 case CHR_IOCTL_PP_DATA_DIR:
1470 if (ioctl(fd, PPDATADIR, (int *)arg) < 0)
1471 return -ENOTSUP;
1472 break;
1473 case CHR_IOCTL_PP_EPP_READ_ADDR:
1474 if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1475 struct ParallelIOArg *parg = arg;
1476 int n = read(fd, parg->buffer, parg->count);
1477 if (n != parg->count) {
1478 return -EIO;
1479 }
1480 }
1481 break;
1482 case CHR_IOCTL_PP_EPP_READ:
1483 if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1484 struct ParallelIOArg *parg = arg;
1485 int n = read(fd, parg->buffer, parg->count);
1486 if (n != parg->count) {
1487 return -EIO;
1488 }
1489 }
1490 break;
1491 case CHR_IOCTL_PP_EPP_WRITE_ADDR:
1492 if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1493 struct ParallelIOArg *parg = arg;
1494 int n = write(fd, parg->buffer, parg->count);
1495 if (n != parg->count) {
1496 return -EIO;
1497 }
1498 }
1499 break;
1500 case CHR_IOCTL_PP_EPP_WRITE:
1501 if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1502 struct ParallelIOArg *parg = arg;
1503 int n = write(fd, parg->buffer, parg->count);
1504 if (n != parg->count) {
1505 return -EIO;
1506 }
1507 }
1508 break;
1509 default:
1510 return -ENOTSUP;
1511 }
1512 return 0;
1513}
1514
1515static void pp_close(CharDriverState *chr)
1516{
1517 ParallelCharDriver *drv = chr->opaque;
1518 int fd = drv->fd;
1519
1520 pp_hw_mode(drv, IEEE1284_MODE_COMPAT);
1521 ioctl(fd, PPRELEASE);
1522 close(fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05001523 g_free(drv);
Hans de Goedea425d232011-11-19 10:22:43 +01001524 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001525}
1526
Gerd Hoffmann88a946d2013-01-10 14:20:58 +01001527static CharDriverState *qemu_chr_open_pp_fd(int fd)
aliguori6f97dba2008-10-31 18:49:55 +00001528{
1529 CharDriverState *chr;
1530 ParallelCharDriver *drv;
aliguori6f97dba2008-10-31 18:49:55 +00001531
1532 if (ioctl(fd, PPCLAIM) < 0) {
1533 close(fd);
Markus Armbruster1f514702012-02-07 15:09:08 +01001534 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001535 }
1536
Anthony Liguori7267c092011-08-20 22:09:37 -05001537 drv = g_malloc0(sizeof(ParallelCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00001538 drv->fd = fd;
1539 drv->mode = IEEE1284_MODE_COMPAT;
1540
Anthony Liguori7267c092011-08-20 22:09:37 -05001541 chr = g_malloc0(sizeof(CharDriverState));
aliguori6f97dba2008-10-31 18:49:55 +00001542 chr->chr_write = null_chr_write;
1543 chr->chr_ioctl = pp_ioctl;
1544 chr->chr_close = pp_close;
1545 chr->opaque = drv;
1546
Markus Armbruster1f514702012-02-07 15:09:08 +01001547 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001548}
1549#endif /* __linux__ */
1550
Aurelien Jarnoa167ba52009-11-29 18:00:41 +01001551#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001552
1553#define HAVE_CHARDEV_PARPORT 1
1554
blueswir16972f932008-11-22 20:49:12 +00001555static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1556{
Stefan Weile0efb992011-02-23 19:09:16 +01001557 int fd = (int)(intptr_t)chr->opaque;
blueswir16972f932008-11-22 20:49:12 +00001558 uint8_t b;
1559
1560 switch(cmd) {
1561 case CHR_IOCTL_PP_READ_DATA:
1562 if (ioctl(fd, PPIGDATA, &b) < 0)
1563 return -ENOTSUP;
1564 *(uint8_t *)arg = b;
1565 break;
1566 case CHR_IOCTL_PP_WRITE_DATA:
1567 b = *(uint8_t *)arg;
1568 if (ioctl(fd, PPISDATA, &b) < 0)
1569 return -ENOTSUP;
1570 break;
1571 case CHR_IOCTL_PP_READ_CONTROL:
1572 if (ioctl(fd, PPIGCTRL, &b) < 0)
1573 return -ENOTSUP;
1574 *(uint8_t *)arg = b;
1575 break;
1576 case CHR_IOCTL_PP_WRITE_CONTROL:
1577 b = *(uint8_t *)arg;
1578 if (ioctl(fd, PPISCTRL, &b) < 0)
1579 return -ENOTSUP;
1580 break;
1581 case CHR_IOCTL_PP_READ_STATUS:
1582 if (ioctl(fd, PPIGSTATUS, &b) < 0)
1583 return -ENOTSUP;
1584 *(uint8_t *)arg = b;
1585 break;
1586 default:
1587 return -ENOTSUP;
1588 }
1589 return 0;
1590}
1591
Gerd Hoffmann88a946d2013-01-10 14:20:58 +01001592static CharDriverState *qemu_chr_open_pp_fd(int fd)
blueswir16972f932008-11-22 20:49:12 +00001593{
1594 CharDriverState *chr;
blueswir16972f932008-11-22 20:49:12 +00001595
Anthony Liguori7267c092011-08-20 22:09:37 -05001596 chr = g_malloc0(sizeof(CharDriverState));
Stefan Weile0efb992011-02-23 19:09:16 +01001597 chr->opaque = (void *)(intptr_t)fd;
blueswir16972f932008-11-22 20:49:12 +00001598 chr->chr_write = null_chr_write;
1599 chr->chr_ioctl = pp_ioctl;
Michael Rothbd5c51e2013-06-07 15:19:53 -05001600 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +01001601 return chr;
blueswir16972f932008-11-22 20:49:12 +00001602}
1603#endif
1604
aliguori6f97dba2008-10-31 18:49:55 +00001605#else /* _WIN32 */
1606
1607typedef struct {
1608 int max_size;
1609 HANDLE hcom, hrecv, hsend;
1610 OVERLAPPED orecv, osend;
1611 BOOL fpipe;
1612 DWORD len;
1613} WinCharState;
1614
Fabien Chouteaudb418a02011-10-06 16:37:51 +02001615typedef struct {
1616 HANDLE hStdIn;
1617 HANDLE hInputReadyEvent;
1618 HANDLE hInputDoneEvent;
1619 HANDLE hInputThread;
1620 uint8_t win_stdio_buf;
1621} WinStdioCharState;
1622
aliguori6f97dba2008-10-31 18:49:55 +00001623#define NSENDBUF 2048
1624#define NRECVBUF 2048
1625#define MAXCONNECT 1
1626#define NTIMEOUT 5000
1627
1628static int win_chr_poll(void *opaque);
1629static int win_chr_pipe_poll(void *opaque);
1630
1631static void win_chr_close(CharDriverState *chr)
1632{
1633 WinCharState *s = chr->opaque;
1634
1635 if (s->hsend) {
1636 CloseHandle(s->hsend);
1637 s->hsend = NULL;
1638 }
1639 if (s->hrecv) {
1640 CloseHandle(s->hrecv);
1641 s->hrecv = NULL;
1642 }
1643 if (s->hcom) {
1644 CloseHandle(s->hcom);
1645 s->hcom = NULL;
1646 }
1647 if (s->fpipe)
1648 qemu_del_polling_cb(win_chr_pipe_poll, chr);
1649 else
1650 qemu_del_polling_cb(win_chr_poll, chr);
Amit Shah793cbfb2009-08-11 21:27:48 +05301651
Hans de Goedea425d232011-11-19 10:22:43 +01001652 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001653}
1654
1655static int win_chr_init(CharDriverState *chr, const char *filename)
1656{
1657 WinCharState *s = chr->opaque;
1658 COMMCONFIG comcfg;
1659 COMMTIMEOUTS cto = { 0, 0, 0, 0, 0};
1660 COMSTAT comstat;
1661 DWORD size;
1662 DWORD err;
1663
1664 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1665 if (!s->hsend) {
1666 fprintf(stderr, "Failed CreateEvent\n");
1667 goto fail;
1668 }
1669 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1670 if (!s->hrecv) {
1671 fprintf(stderr, "Failed CreateEvent\n");
1672 goto fail;
1673 }
1674
1675 s->hcom = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, NULL,
1676 OPEN_EXISTING, FILE_FLAG_OVERLAPPED, 0);
1677 if (s->hcom == INVALID_HANDLE_VALUE) {
1678 fprintf(stderr, "Failed CreateFile (%lu)\n", GetLastError());
1679 s->hcom = NULL;
1680 goto fail;
1681 }
1682
1683 if (!SetupComm(s->hcom, NRECVBUF, NSENDBUF)) {
1684 fprintf(stderr, "Failed SetupComm\n");
1685 goto fail;
1686 }
1687
1688 ZeroMemory(&comcfg, sizeof(COMMCONFIG));
1689 size = sizeof(COMMCONFIG);
1690 GetDefaultCommConfig(filename, &comcfg, &size);
1691 comcfg.dcb.DCBlength = sizeof(DCB);
1692 CommConfigDialog(filename, NULL, &comcfg);
1693
1694 if (!SetCommState(s->hcom, &comcfg.dcb)) {
1695 fprintf(stderr, "Failed SetCommState\n");
1696 goto fail;
1697 }
1698
1699 if (!SetCommMask(s->hcom, EV_ERR)) {
1700 fprintf(stderr, "Failed SetCommMask\n");
1701 goto fail;
1702 }
1703
1704 cto.ReadIntervalTimeout = MAXDWORD;
1705 if (!SetCommTimeouts(s->hcom, &cto)) {
1706 fprintf(stderr, "Failed SetCommTimeouts\n");
1707 goto fail;
1708 }
1709
1710 if (!ClearCommError(s->hcom, &err, &comstat)) {
1711 fprintf(stderr, "Failed ClearCommError\n");
1712 goto fail;
1713 }
1714 qemu_add_polling_cb(win_chr_poll, chr);
1715 return 0;
1716
1717 fail:
1718 win_chr_close(chr);
1719 return -1;
1720}
1721
1722static int win_chr_write(CharDriverState *chr, const uint8_t *buf, int len1)
1723{
1724 WinCharState *s = chr->opaque;
1725 DWORD len, ret, size, err;
1726
1727 len = len1;
1728 ZeroMemory(&s->osend, sizeof(s->osend));
1729 s->osend.hEvent = s->hsend;
1730 while (len > 0) {
1731 if (s->hsend)
1732 ret = WriteFile(s->hcom, buf, len, &size, &s->osend);
1733 else
1734 ret = WriteFile(s->hcom, buf, len, &size, NULL);
1735 if (!ret) {
1736 err = GetLastError();
1737 if (err == ERROR_IO_PENDING) {
1738 ret = GetOverlappedResult(s->hcom, &s->osend, &size, TRUE);
1739 if (ret) {
1740 buf += size;
1741 len -= size;
1742 } else {
1743 break;
1744 }
1745 } else {
1746 break;
1747 }
1748 } else {
1749 buf += size;
1750 len -= size;
1751 }
1752 }
1753 return len1 - len;
1754}
1755
1756static int win_chr_read_poll(CharDriverState *chr)
1757{
1758 WinCharState *s = chr->opaque;
1759
Anthony Liguori909cda12011-08-15 11:17:31 -05001760 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001761 return s->max_size;
1762}
1763
1764static void win_chr_readfile(CharDriverState *chr)
1765{
1766 WinCharState *s = chr->opaque;
1767 int ret, err;
Amit Shah9bd78542009-11-03 19:59:54 +05301768 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00001769 DWORD size;
1770
1771 ZeroMemory(&s->orecv, sizeof(s->orecv));
1772 s->orecv.hEvent = s->hrecv;
1773 ret = ReadFile(s->hcom, buf, s->len, &size, &s->orecv);
1774 if (!ret) {
1775 err = GetLastError();
1776 if (err == ERROR_IO_PENDING) {
1777 ret = GetOverlappedResult(s->hcom, &s->orecv, &size, TRUE);
1778 }
1779 }
1780
1781 if (size > 0) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05001782 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00001783 }
1784}
1785
1786static void win_chr_read(CharDriverState *chr)
1787{
1788 WinCharState *s = chr->opaque;
1789
1790 if (s->len > s->max_size)
1791 s->len = s->max_size;
1792 if (s->len == 0)
1793 return;
1794
1795 win_chr_readfile(chr);
1796}
1797
1798static int win_chr_poll(void *opaque)
1799{
1800 CharDriverState *chr = opaque;
1801 WinCharState *s = chr->opaque;
1802 COMSTAT status;
1803 DWORD comerr;
1804
1805 ClearCommError(s->hcom, &comerr, &status);
1806 if (status.cbInQue > 0) {
1807 s->len = status.cbInQue;
1808 win_chr_read_poll(chr);
1809 win_chr_read(chr);
1810 return 1;
1811 }
1812 return 0;
1813}
1814
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01001815static CharDriverState *qemu_chr_open_win_path(const char *filename)
aliguori6f97dba2008-10-31 18:49:55 +00001816{
1817 CharDriverState *chr;
1818 WinCharState *s;
1819
Anthony Liguori7267c092011-08-20 22:09:37 -05001820 chr = g_malloc0(sizeof(CharDriverState));
1821 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00001822 chr->opaque = s;
1823 chr->chr_write = win_chr_write;
1824 chr->chr_close = win_chr_close;
1825
1826 if (win_chr_init(chr, filename) < 0) {
Stefan Weil2e02e182011-10-07 07:38:46 +02001827 g_free(s);
1828 g_free(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01001829 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001830 }
Markus Armbruster1f514702012-02-07 15:09:08 +01001831 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001832}
1833
1834static int win_chr_pipe_poll(void *opaque)
1835{
1836 CharDriverState *chr = opaque;
1837 WinCharState *s = chr->opaque;
1838 DWORD size;
1839
1840 PeekNamedPipe(s->hcom, NULL, 0, NULL, &size, NULL);
1841 if (size > 0) {
1842 s->len = size;
1843 win_chr_read_poll(chr);
1844 win_chr_read(chr);
1845 return 1;
1846 }
1847 return 0;
1848}
1849
1850static int win_chr_pipe_init(CharDriverState *chr, const char *filename)
1851{
1852 WinCharState *s = chr->opaque;
1853 OVERLAPPED ov;
1854 int ret;
1855 DWORD size;
1856 char openname[256];
1857
1858 s->fpipe = TRUE;
1859
1860 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1861 if (!s->hsend) {
1862 fprintf(stderr, "Failed CreateEvent\n");
1863 goto fail;
1864 }
1865 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1866 if (!s->hrecv) {
1867 fprintf(stderr, "Failed CreateEvent\n");
1868 goto fail;
1869 }
1870
1871 snprintf(openname, sizeof(openname), "\\\\.\\pipe\\%s", filename);
1872 s->hcom = CreateNamedPipe(openname, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
1873 PIPE_TYPE_BYTE | PIPE_READMODE_BYTE |
1874 PIPE_WAIT,
1875 MAXCONNECT, NSENDBUF, NRECVBUF, NTIMEOUT, NULL);
1876 if (s->hcom == INVALID_HANDLE_VALUE) {
1877 fprintf(stderr, "Failed CreateNamedPipe (%lu)\n", GetLastError());
1878 s->hcom = NULL;
1879 goto fail;
1880 }
1881
1882 ZeroMemory(&ov, sizeof(ov));
1883 ov.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
1884 ret = ConnectNamedPipe(s->hcom, &ov);
1885 if (ret) {
1886 fprintf(stderr, "Failed ConnectNamedPipe\n");
1887 goto fail;
1888 }
1889
1890 ret = GetOverlappedResult(s->hcom, &ov, &size, TRUE);
1891 if (!ret) {
1892 fprintf(stderr, "Failed GetOverlappedResult\n");
1893 if (ov.hEvent) {
1894 CloseHandle(ov.hEvent);
1895 ov.hEvent = NULL;
1896 }
1897 goto fail;
1898 }
1899
1900 if (ov.hEvent) {
1901 CloseHandle(ov.hEvent);
1902 ov.hEvent = NULL;
1903 }
1904 qemu_add_polling_cb(win_chr_pipe_poll, chr);
1905 return 0;
1906
1907 fail:
1908 win_chr_close(chr);
1909 return -1;
1910}
1911
1912
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01001913static CharDriverState *qemu_chr_open_pipe(ChardevHostdev *opts)
aliguori6f97dba2008-10-31 18:49:55 +00001914{
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01001915 const char *filename = opts->device;
aliguori6f97dba2008-10-31 18:49:55 +00001916 CharDriverState *chr;
1917 WinCharState *s;
1918
Anthony Liguori7267c092011-08-20 22:09:37 -05001919 chr = g_malloc0(sizeof(CharDriverState));
1920 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00001921 chr->opaque = s;
1922 chr->chr_write = win_chr_write;
1923 chr->chr_close = win_chr_close;
1924
1925 if (win_chr_pipe_init(chr, filename) < 0) {
Stefan Weil2e02e182011-10-07 07:38:46 +02001926 g_free(s);
1927 g_free(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01001928 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001929 }
Markus Armbruster1f514702012-02-07 15:09:08 +01001930 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001931}
1932
Markus Armbruster1f514702012-02-07 15:09:08 +01001933static CharDriverState *qemu_chr_open_win_file(HANDLE fd_out)
aliguori6f97dba2008-10-31 18:49:55 +00001934{
1935 CharDriverState *chr;
1936 WinCharState *s;
1937
Anthony Liguori7267c092011-08-20 22:09:37 -05001938 chr = g_malloc0(sizeof(CharDriverState));
1939 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00001940 s->hcom = fd_out;
1941 chr->opaque = s;
1942 chr->chr_write = win_chr_write;
Markus Armbruster1f514702012-02-07 15:09:08 +01001943 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001944}
1945
Gerd Hoffmannd9ac3742013-02-25 11:48:06 +01001946static CharDriverState *qemu_chr_open_win_con(void)
aliguori6f97dba2008-10-31 18:49:55 +00001947{
Markus Armbruster1f514702012-02-07 15:09:08 +01001948 return qemu_chr_open_win_file(GetStdHandle(STD_OUTPUT_HANDLE));
aliguori6f97dba2008-10-31 18:49:55 +00001949}
1950
Fabien Chouteaudb418a02011-10-06 16:37:51 +02001951static int win_stdio_write(CharDriverState *chr, const uint8_t *buf, int len)
1952{
1953 HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
1954 DWORD dwSize;
1955 int len1;
1956
1957 len1 = len;
1958
1959 while (len1 > 0) {
1960 if (!WriteFile(hStdOut, buf, len1, &dwSize, NULL)) {
1961 break;
1962 }
1963 buf += dwSize;
1964 len1 -= dwSize;
1965 }
1966
1967 return len - len1;
1968}
1969
1970static void win_stdio_wait_func(void *opaque)
1971{
1972 CharDriverState *chr = opaque;
1973 WinStdioCharState *stdio = chr->opaque;
1974 INPUT_RECORD buf[4];
1975 int ret;
1976 DWORD dwSize;
1977 int i;
1978
Stefan Weildff74242013-12-07 14:48:04 +01001979 ret = ReadConsoleInput(stdio->hStdIn, buf, ARRAY_SIZE(buf), &dwSize);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02001980
1981 if (!ret) {
1982 /* Avoid error storm */
1983 qemu_del_wait_object(stdio->hStdIn, NULL, NULL);
1984 return;
1985 }
1986
1987 for (i = 0; i < dwSize; i++) {
1988 KEY_EVENT_RECORD *kev = &buf[i].Event.KeyEvent;
1989
1990 if (buf[i].EventType == KEY_EVENT && kev->bKeyDown) {
1991 int j;
1992 if (kev->uChar.AsciiChar != 0) {
1993 for (j = 0; j < kev->wRepeatCount; j++) {
1994 if (qemu_chr_be_can_write(chr)) {
1995 uint8_t c = kev->uChar.AsciiChar;
1996 qemu_chr_be_write(chr, &c, 1);
1997 }
1998 }
1999 }
2000 }
2001 }
2002}
2003
2004static DWORD WINAPI win_stdio_thread(LPVOID param)
2005{
2006 CharDriverState *chr = param;
2007 WinStdioCharState *stdio = chr->opaque;
2008 int ret;
2009 DWORD dwSize;
2010
2011 while (1) {
2012
2013 /* Wait for one byte */
2014 ret = ReadFile(stdio->hStdIn, &stdio->win_stdio_buf, 1, &dwSize, NULL);
2015
2016 /* Exit in case of error, continue if nothing read */
2017 if (!ret) {
2018 break;
2019 }
2020 if (!dwSize) {
2021 continue;
2022 }
2023
2024 /* Some terminal emulator returns \r\n for Enter, just pass \n */
2025 if (stdio->win_stdio_buf == '\r') {
2026 continue;
2027 }
2028
2029 /* Signal the main thread and wait until the byte was eaten */
2030 if (!SetEvent(stdio->hInputReadyEvent)) {
2031 break;
2032 }
2033 if (WaitForSingleObject(stdio->hInputDoneEvent, INFINITE)
2034 != WAIT_OBJECT_0) {
2035 break;
2036 }
2037 }
2038
2039 qemu_del_wait_object(stdio->hInputReadyEvent, NULL, NULL);
2040 return 0;
2041}
2042
2043static void win_stdio_thread_wait_func(void *opaque)
2044{
2045 CharDriverState *chr = opaque;
2046 WinStdioCharState *stdio = chr->opaque;
2047
2048 if (qemu_chr_be_can_write(chr)) {
2049 qemu_chr_be_write(chr, &stdio->win_stdio_buf, 1);
2050 }
2051
2052 SetEvent(stdio->hInputDoneEvent);
2053}
2054
2055static void qemu_chr_set_echo_win_stdio(CharDriverState *chr, bool echo)
2056{
2057 WinStdioCharState *stdio = chr->opaque;
2058 DWORD dwMode = 0;
2059
2060 GetConsoleMode(stdio->hStdIn, &dwMode);
2061
2062 if (echo) {
2063 SetConsoleMode(stdio->hStdIn, dwMode | ENABLE_ECHO_INPUT);
2064 } else {
2065 SetConsoleMode(stdio->hStdIn, dwMode & ~ENABLE_ECHO_INPUT);
2066 }
2067}
2068
2069static void win_stdio_close(CharDriverState *chr)
2070{
2071 WinStdioCharState *stdio = chr->opaque;
2072
2073 if (stdio->hInputReadyEvent != INVALID_HANDLE_VALUE) {
2074 CloseHandle(stdio->hInputReadyEvent);
2075 }
2076 if (stdio->hInputDoneEvent != INVALID_HANDLE_VALUE) {
2077 CloseHandle(stdio->hInputDoneEvent);
2078 }
2079 if (stdio->hInputThread != INVALID_HANDLE_VALUE) {
2080 TerminateThread(stdio->hInputThread, 0);
2081 }
2082
2083 g_free(chr->opaque);
2084 g_free(chr);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002085}
2086
Gerd Hoffmann7c358032013-02-21 12:34:58 +01002087static CharDriverState *qemu_chr_open_stdio(ChardevStdio *opts)
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002088{
2089 CharDriverState *chr;
2090 WinStdioCharState *stdio;
2091 DWORD dwMode;
2092 int is_console = 0;
2093
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002094 chr = g_malloc0(sizeof(CharDriverState));
2095 stdio = g_malloc0(sizeof(WinStdioCharState));
2096
2097 stdio->hStdIn = GetStdHandle(STD_INPUT_HANDLE);
2098 if (stdio->hStdIn == INVALID_HANDLE_VALUE) {
2099 fprintf(stderr, "cannot open stdio: invalid handle\n");
2100 exit(1);
2101 }
2102
2103 is_console = GetConsoleMode(stdio->hStdIn, &dwMode) != 0;
2104
2105 chr->opaque = stdio;
2106 chr->chr_write = win_stdio_write;
2107 chr->chr_close = win_stdio_close;
2108
Anthony Liguoried7a1542013-03-05 23:21:17 +05302109 if (is_console) {
2110 if (qemu_add_wait_object(stdio->hStdIn,
2111 win_stdio_wait_func, chr)) {
2112 fprintf(stderr, "qemu_add_wait_object: failed\n");
2113 }
2114 } else {
2115 DWORD dwId;
2116
2117 stdio->hInputReadyEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2118 stdio->hInputDoneEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2119 stdio->hInputThread = CreateThread(NULL, 0, win_stdio_thread,
2120 chr, 0, &dwId);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002121
Anthony Liguoried7a1542013-03-05 23:21:17 +05302122 if (stdio->hInputThread == INVALID_HANDLE_VALUE
2123 || stdio->hInputReadyEvent == INVALID_HANDLE_VALUE
2124 || stdio->hInputDoneEvent == INVALID_HANDLE_VALUE) {
2125 fprintf(stderr, "cannot create stdio thread or event\n");
2126 exit(1);
2127 }
2128 if (qemu_add_wait_object(stdio->hInputReadyEvent,
2129 win_stdio_thread_wait_func, chr)) {
2130 fprintf(stderr, "qemu_add_wait_object: failed\n");
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002131 }
2132 }
2133
2134 dwMode |= ENABLE_LINE_INPUT;
2135
Anthony Liguoried7a1542013-03-05 23:21:17 +05302136 if (is_console) {
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002137 /* set the terminal in raw mode */
2138 /* ENABLE_QUICK_EDIT_MODE | ENABLE_EXTENDED_FLAGS */
2139 dwMode |= ENABLE_PROCESSED_INPUT;
2140 }
2141
2142 SetConsoleMode(stdio->hStdIn, dwMode);
2143
2144 chr->chr_set_echo = qemu_chr_set_echo_win_stdio;
2145 qemu_chr_fe_set_echo(chr, false);
2146
Markus Armbruster1f514702012-02-07 15:09:08 +01002147 return chr;
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002148}
aliguori6f97dba2008-10-31 18:49:55 +00002149#endif /* !_WIN32 */
2150
Anthony Liguori5ab82112013-03-05 23:21:31 +05302151
aliguori6f97dba2008-10-31 18:49:55 +00002152/***********************************************************/
2153/* UDP Net console */
2154
2155typedef struct {
2156 int fd;
Anthony Liguori76a96442013-03-05 23:21:21 +05302157 GIOChannel *chan;
Amit Shah9bd78542009-11-03 19:59:54 +05302158 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002159 int bufcnt;
2160 int bufptr;
2161 int max_size;
2162} NetCharDriver;
2163
2164static int udp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2165{
2166 NetCharDriver *s = chr->opaque;
Anthony Liguori76a96442013-03-05 23:21:21 +05302167 gsize bytes_written;
2168 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00002169
Anthony Liguori76a96442013-03-05 23:21:21 +05302170 status = g_io_channel_write_chars(s->chan, (const gchar *)buf, len, &bytes_written, NULL);
2171 if (status == G_IO_STATUS_EOF) {
2172 return 0;
2173 } else if (status != G_IO_STATUS_NORMAL) {
2174 return -1;
2175 }
2176
2177 return bytes_written;
aliguori6f97dba2008-10-31 18:49:55 +00002178}
2179
2180static int udp_chr_read_poll(void *opaque)
2181{
2182 CharDriverState *chr = opaque;
2183 NetCharDriver *s = chr->opaque;
2184
Anthony Liguori909cda12011-08-15 11:17:31 -05002185 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002186
2187 /* If there were any stray characters in the queue process them
2188 * first
2189 */
2190 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002191 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
aliguori6f97dba2008-10-31 18:49:55 +00002192 s->bufptr++;
Anthony Liguori909cda12011-08-15 11:17:31 -05002193 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002194 }
2195 return s->max_size;
2196}
2197
Anthony Liguori76a96442013-03-05 23:21:21 +05302198static gboolean udp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002199{
2200 CharDriverState *chr = opaque;
2201 NetCharDriver *s = chr->opaque;
Anthony Liguori76a96442013-03-05 23:21:21 +05302202 gsize bytes_read = 0;
2203 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00002204
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02002205 if (s->max_size == 0) {
2206 return TRUE;
2207 }
Anthony Liguori76a96442013-03-05 23:21:21 +05302208 status = g_io_channel_read_chars(s->chan, (gchar *)s->buf, sizeof(s->buf),
2209 &bytes_read, NULL);
2210 s->bufcnt = bytes_read;
aliguori6f97dba2008-10-31 18:49:55 +00002211 s->bufptr = s->bufcnt;
Anthony Liguori76a96442013-03-05 23:21:21 +05302212 if (status != G_IO_STATUS_NORMAL) {
Amit Shah26da70c2013-08-28 15:23:37 +05302213 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302214 return FALSE;
2215 }
aliguori6f97dba2008-10-31 18:49:55 +00002216
2217 s->bufptr = 0;
2218 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002219 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
aliguori6f97dba2008-10-31 18:49:55 +00002220 s->bufptr++;
Anthony Liguori909cda12011-08-15 11:17:31 -05002221 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002222 }
Anthony Liguori76a96442013-03-05 23:21:21 +05302223
2224 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002225}
2226
2227static void udp_chr_update_read_handler(CharDriverState *chr)
2228{
2229 NetCharDriver *s = chr->opaque;
2230
Amit Shah26da70c2013-08-28 15:23:37 +05302231 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302232 if (s->chan) {
Amit Shah7ba9add2013-08-28 15:18:29 +05302233 chr->fd_in_tag = io_add_watch_poll(s->chan, udp_chr_read_poll,
2234 udp_chr_read, chr);
aliguori6f97dba2008-10-31 18:49:55 +00002235 }
2236}
2237
aliguori819f56b2009-03-28 17:58:14 +00002238static void udp_chr_close(CharDriverState *chr)
2239{
2240 NetCharDriver *s = chr->opaque;
Amit Shah26da70c2013-08-28 15:23:37 +05302241
2242 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302243 if (s->chan) {
2244 g_io_channel_unref(s->chan);
aliguori819f56b2009-03-28 17:58:14 +00002245 closesocket(s->fd);
2246 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002247 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01002248 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori819f56b2009-03-28 17:58:14 +00002249}
2250
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002251static CharDriverState *qemu_chr_open_udp_fd(int fd)
aliguori6f97dba2008-10-31 18:49:55 +00002252{
2253 CharDriverState *chr = NULL;
2254 NetCharDriver *s = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002255
Anthony Liguori7267c092011-08-20 22:09:37 -05002256 chr = g_malloc0(sizeof(CharDriverState));
2257 s = g_malloc0(sizeof(NetCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00002258
aliguori6f97dba2008-10-31 18:49:55 +00002259 s->fd = fd;
Anthony Liguori76a96442013-03-05 23:21:21 +05302260 s->chan = io_channel_from_socket(s->fd);
aliguori6f97dba2008-10-31 18:49:55 +00002261 s->bufcnt = 0;
2262 s->bufptr = 0;
2263 chr->opaque = s;
2264 chr->chr_write = udp_chr_write;
2265 chr->chr_update_read_handler = udp_chr_update_read_handler;
aliguori819f56b2009-03-28 17:58:14 +00002266 chr->chr_close = udp_chr_close;
Michael Rothbd5c51e2013-06-07 15:19:53 -05002267 /* be isn't opened until we get a connection */
2268 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +01002269 return chr;
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002270}
aliguori6f97dba2008-10-31 18:49:55 +00002271
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002272static CharDriverState *qemu_chr_open_udp(QemuOpts *opts)
2273{
2274 Error *local_err = NULL;
2275 int fd = -1;
2276
2277 fd = inet_dgram_opts(opts, &local_err);
2278 if (fd < 0) {
Gerd Hoffmann58a37142013-06-24 08:39:55 +02002279 qerror_report_err(local_err);
2280 error_free(local_err);
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002281 return NULL;
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002282 }
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002283 return qemu_chr_open_udp_fd(fd);
aliguori6f97dba2008-10-31 18:49:55 +00002284}
2285
2286/***********************************************************/
2287/* TCP Net console */
2288
2289typedef struct {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302290
2291 GIOChannel *chan, *listen_chan;
Amit Shah7ba9add2013-08-28 15:18:29 +05302292 guint listen_tag;
aliguori6f97dba2008-10-31 18:49:55 +00002293 int fd, listen_fd;
2294 int connected;
2295 int max_size;
2296 int do_telnetopt;
2297 int do_nodelay;
2298 int is_unix;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002299 int msgfd;
aliguori6f97dba2008-10-31 18:49:55 +00002300} TCPCharDriver;
2301
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302302static gboolean tcp_chr_accept(GIOChannel *chan, GIOCondition cond, void *opaque);
aliguori6f97dba2008-10-31 18:49:55 +00002303
2304static int tcp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2305{
2306 TCPCharDriver *s = chr->opaque;
2307 if (s->connected) {
Anthony Liguori684a0962013-03-29 11:39:50 -05002308 return io_channel_send(s->chan, buf, len);
Anthony Liguori455aa1e2012-09-05 13:52:49 -05002309 } else {
Anthony Liguori6db0fdc2012-09-12 14:34:07 -05002310 /* XXX: indicate an error ? */
Anthony Liguori455aa1e2012-09-05 13:52:49 -05002311 return len;
aliguori6f97dba2008-10-31 18:49:55 +00002312 }
2313}
2314
2315static int tcp_chr_read_poll(void *opaque)
2316{
2317 CharDriverState *chr = opaque;
2318 TCPCharDriver *s = chr->opaque;
2319 if (!s->connected)
2320 return 0;
Anthony Liguori909cda12011-08-15 11:17:31 -05002321 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002322 return s->max_size;
2323}
2324
2325#define IAC 255
2326#define IAC_BREAK 243
2327static void tcp_chr_process_IAC_bytes(CharDriverState *chr,
2328 TCPCharDriver *s,
2329 uint8_t *buf, int *size)
2330{
2331 /* Handle any telnet client's basic IAC options to satisfy char by
2332 * char mode with no echo. All IAC options will be removed from
2333 * the buf and the do_telnetopt variable will be used to track the
2334 * state of the width of the IAC information.
2335 *
2336 * IAC commands come in sets of 3 bytes with the exception of the
2337 * "IAC BREAK" command and the double IAC.
2338 */
2339
2340 int i;
2341 int j = 0;
2342
2343 for (i = 0; i < *size; i++) {
2344 if (s->do_telnetopt > 1) {
2345 if ((unsigned char)buf[i] == IAC && s->do_telnetopt == 2) {
2346 /* Double IAC means send an IAC */
2347 if (j != i)
2348 buf[j] = buf[i];
2349 j++;
2350 s->do_telnetopt = 1;
2351 } else {
2352 if ((unsigned char)buf[i] == IAC_BREAK && s->do_telnetopt == 2) {
2353 /* Handle IAC break commands by sending a serial break */
Hans de Goedea425d232011-11-19 10:22:43 +01002354 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
aliguori6f97dba2008-10-31 18:49:55 +00002355 s->do_telnetopt++;
2356 }
2357 s->do_telnetopt++;
2358 }
2359 if (s->do_telnetopt >= 4) {
2360 s->do_telnetopt = 1;
2361 }
2362 } else {
2363 if ((unsigned char)buf[i] == IAC) {
2364 s->do_telnetopt = 2;
2365 } else {
2366 if (j != i)
2367 buf[j] = buf[i];
2368 j++;
2369 }
2370 }
2371 }
2372 *size = j;
2373}
2374
Mark McLoughlin7d174052009-07-22 09:11:39 +01002375static int tcp_get_msgfd(CharDriverState *chr)
2376{
2377 TCPCharDriver *s = chr->opaque;
Paolo Bonzinie53f27b2010-04-16 17:25:23 +02002378 int fd = s->msgfd;
2379 s->msgfd = -1;
2380 return fd;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002381}
2382
Anthony Liguori73bcc2a2009-07-27 14:55:25 -05002383#ifndef _WIN32
Mark McLoughlin7d174052009-07-22 09:11:39 +01002384static void unix_process_msgfd(CharDriverState *chr, struct msghdr *msg)
2385{
2386 TCPCharDriver *s = chr->opaque;
2387 struct cmsghdr *cmsg;
2388
2389 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
2390 int fd;
2391
2392 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)) ||
2393 cmsg->cmsg_level != SOL_SOCKET ||
2394 cmsg->cmsg_type != SCM_RIGHTS)
2395 continue;
2396
2397 fd = *((int *)CMSG_DATA(cmsg));
2398 if (fd < 0)
2399 continue;
2400
Stefan Hajnoczi9b938c72013-03-27 10:10:46 +01002401 /* O_NONBLOCK is preserved across SCM_RIGHTS so reset it */
2402 qemu_set_block(fd);
2403
Corey Bryant06138652012-08-14 16:43:42 -04002404#ifndef MSG_CMSG_CLOEXEC
2405 qemu_set_cloexec(fd);
2406#endif
Mark McLoughlin7d174052009-07-22 09:11:39 +01002407 if (s->msgfd != -1)
2408 close(s->msgfd);
2409 s->msgfd = fd;
2410 }
2411}
2412
Mark McLoughlin9977c892009-07-22 09:11:38 +01002413static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2414{
2415 TCPCharDriver *s = chr->opaque;
Blue Swirl7cba04f2009-08-01 10:13:20 +00002416 struct msghdr msg = { NULL, };
Mark McLoughlin9977c892009-07-22 09:11:38 +01002417 struct iovec iov[1];
Mark McLoughlin7d174052009-07-22 09:11:39 +01002418 union {
2419 struct cmsghdr cmsg;
2420 char control[CMSG_SPACE(sizeof(int))];
2421 } msg_control;
Corey Bryant06138652012-08-14 16:43:42 -04002422 int flags = 0;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002423 ssize_t ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002424
2425 iov[0].iov_base = buf;
2426 iov[0].iov_len = len;
2427
2428 msg.msg_iov = iov;
2429 msg.msg_iovlen = 1;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002430 msg.msg_control = &msg_control;
2431 msg.msg_controllen = sizeof(msg_control);
Mark McLoughlin9977c892009-07-22 09:11:38 +01002432
Corey Bryant06138652012-08-14 16:43:42 -04002433#ifdef MSG_CMSG_CLOEXEC
2434 flags |= MSG_CMSG_CLOEXEC;
2435#endif
2436 ret = recvmsg(s->fd, &msg, flags);
2437 if (ret > 0 && s->is_unix) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002438 unix_process_msgfd(chr, &msg);
Corey Bryant06138652012-08-14 16:43:42 -04002439 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002440
2441 return ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002442}
2443#else
2444static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2445{
2446 TCPCharDriver *s = chr->opaque;
Blue Swirl00aa0042011-07-23 20:04:29 +00002447 return qemu_recv(s->fd, buf, len, 0);
Mark McLoughlin9977c892009-07-22 09:11:38 +01002448}
2449#endif
2450
Amit Shahd3cc5bc2013-03-05 23:21:25 +05302451static GSource *tcp_chr_add_watch(CharDriverState *chr, GIOCondition cond)
2452{
2453 TCPCharDriver *s = chr->opaque;
2454 return g_io_create_watch(s->chan, cond);
2455}
2456
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302457static gboolean tcp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002458{
2459 CharDriverState *chr = opaque;
2460 TCPCharDriver *s = chr->opaque;
Amit Shah9bd78542009-11-03 19:59:54 +05302461 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002462 int len, size;
2463
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302464 if (!s->connected || s->max_size <= 0) {
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02002465 return TRUE;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302466 }
aliguori6f97dba2008-10-31 18:49:55 +00002467 len = sizeof(buf);
2468 if (len > s->max_size)
2469 len = s->max_size;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002470 size = tcp_chr_recv(chr, (void *)buf, len);
aliguori6f97dba2008-10-31 18:49:55 +00002471 if (size == 0) {
2472 /* connection closed */
2473 s->connected = 0;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302474 if (s->listen_chan) {
2475 s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN, tcp_chr_accept, chr);
aliguori6f97dba2008-10-31 18:49:55 +00002476 }
Amit Shah26da70c2013-08-28 15:23:37 +05302477 remove_fd_in_watch(chr);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302478 g_io_channel_unref(s->chan);
2479 s->chan = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002480 closesocket(s->fd);
2481 s->fd = -1;
Hans de Goedea425d232011-11-19 10:22:43 +01002482 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00002483 } else if (size > 0) {
2484 if (s->do_telnetopt)
2485 tcp_chr_process_IAC_bytes(chr, s, buf, &size);
2486 if (size > 0)
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002487 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00002488 }
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302489
2490 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002491}
2492
Blue Swirl68c18d12010-08-15 09:46:24 +00002493#ifndef _WIN32
2494CharDriverState *qemu_chr_open_eventfd(int eventfd)
2495{
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002496 return qemu_chr_open_fd(eventfd, eventfd);
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002497}
Blue Swirl68c18d12010-08-15 09:46:24 +00002498#endif
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002499
aliguori6f97dba2008-10-31 18:49:55 +00002500static void tcp_chr_connect(void *opaque)
2501{
2502 CharDriverState *chr = opaque;
2503 TCPCharDriver *s = chr->opaque;
2504
2505 s->connected = 1;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302506 if (s->chan) {
Amit Shah7ba9add2013-08-28 15:18:29 +05302507 chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
2508 tcp_chr_read, chr);
David Gibsonbbdd2ad2012-09-10 12:30:56 +10002509 }
Hans de Goedefee204f2013-03-26 11:07:54 +01002510 qemu_chr_be_generic_open(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002511}
2512
Gal Hammerac1b84d2014-02-25 12:12:35 +02002513static void tcp_chr_update_read_handler(CharDriverState *chr)
2514{
2515 TCPCharDriver *s = chr->opaque;
2516
2517 remove_fd_in_watch(chr);
2518 if (s->chan) {
2519 chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
2520 tcp_chr_read, chr);
2521 }
2522}
2523
aliguori6f97dba2008-10-31 18:49:55 +00002524#define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
2525static void tcp_chr_telnet_init(int fd)
2526{
2527 char buf[3];
2528 /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
2529 IACSET(buf, 0xff, 0xfb, 0x01); /* IAC WILL ECHO */
2530 send(fd, (char *)buf, 3, 0);
2531 IACSET(buf, 0xff, 0xfb, 0x03); /* IAC WILL Suppress go ahead */
2532 send(fd, (char *)buf, 3, 0);
2533 IACSET(buf, 0xff, 0xfb, 0x00); /* IAC WILL Binary */
2534 send(fd, (char *)buf, 3, 0);
2535 IACSET(buf, 0xff, 0xfd, 0x00); /* IAC DO Binary */
2536 send(fd, (char *)buf, 3, 0);
2537}
2538
Daniel P. Berrange13661082011-06-23 13:31:42 +01002539static int tcp_chr_add_client(CharDriverState *chr, int fd)
2540{
2541 TCPCharDriver *s = chr->opaque;
2542 if (s->fd != -1)
2543 return -1;
2544
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01002545 qemu_set_nonblock(fd);
Daniel P. Berrange13661082011-06-23 13:31:42 +01002546 if (s->do_nodelay)
2547 socket_set_nodelay(fd);
2548 s->fd = fd;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302549 s->chan = io_channel_from_socket(fd);
Paolo Bonzini910b6362013-04-19 17:32:06 +02002550 if (s->listen_tag) {
2551 g_source_remove(s->listen_tag);
2552 s->listen_tag = 0;
2553 }
Daniel P. Berrange13661082011-06-23 13:31:42 +01002554 tcp_chr_connect(chr);
2555
2556 return 0;
2557}
2558
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302559static gboolean tcp_chr_accept(GIOChannel *channel, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002560{
2561 CharDriverState *chr = opaque;
2562 TCPCharDriver *s = chr->opaque;
2563 struct sockaddr_in saddr;
2564#ifndef _WIN32
2565 struct sockaddr_un uaddr;
2566#endif
2567 struct sockaddr *addr;
2568 socklen_t len;
2569 int fd;
2570
2571 for(;;) {
2572#ifndef _WIN32
2573 if (s->is_unix) {
2574 len = sizeof(uaddr);
2575 addr = (struct sockaddr *)&uaddr;
2576 } else
2577#endif
2578 {
2579 len = sizeof(saddr);
2580 addr = (struct sockaddr *)&saddr;
2581 }
Kevin Wolf40ff6d72009-12-02 12:24:42 +01002582 fd = qemu_accept(s->listen_fd, addr, &len);
aliguori6f97dba2008-10-31 18:49:55 +00002583 if (fd < 0 && errno != EINTR) {
Hans de Goede79f20072013-04-25 13:53:02 +02002584 s->listen_tag = 0;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302585 return FALSE;
aliguori6f97dba2008-10-31 18:49:55 +00002586 } else if (fd >= 0) {
2587 if (s->do_telnetopt)
2588 tcp_chr_telnet_init(fd);
2589 break;
2590 }
2591 }
Daniel P. Berrange13661082011-06-23 13:31:42 +01002592 if (tcp_chr_add_client(chr, fd) < 0)
2593 close(fd);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302594
2595 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002596}
2597
2598static void tcp_chr_close(CharDriverState *chr)
2599{
2600 TCPCharDriver *s = chr->opaque;
aliguori819f56b2009-03-28 17:58:14 +00002601 if (s->fd >= 0) {
Amit Shah26da70c2013-08-28 15:23:37 +05302602 remove_fd_in_watch(chr);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302603 if (s->chan) {
2604 g_io_channel_unref(s->chan);
2605 }
aliguori6f97dba2008-10-31 18:49:55 +00002606 closesocket(s->fd);
aliguori819f56b2009-03-28 17:58:14 +00002607 }
2608 if (s->listen_fd >= 0) {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302609 if (s->listen_tag) {
2610 g_source_remove(s->listen_tag);
Paolo Bonzini910b6362013-04-19 17:32:06 +02002611 s->listen_tag = 0;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302612 }
2613 if (s->listen_chan) {
2614 g_io_channel_unref(s->listen_chan);
2615 }
aliguori6f97dba2008-10-31 18:49:55 +00002616 closesocket(s->listen_fd);
aliguori819f56b2009-03-28 17:58:14 +00002617 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002618 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01002619 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00002620}
2621
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002622static CharDriverState *qemu_chr_open_socket_fd(int fd, bool do_nodelay,
2623 bool is_listen, bool is_telnet,
2624 bool is_waitconnect,
2625 Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00002626{
2627 CharDriverState *chr = NULL;
2628 TCPCharDriver *s = NULL;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002629 char host[NI_MAXHOST], serv[NI_MAXSERV];
2630 const char *left = "", *right = "";
2631 struct sockaddr_storage ss;
2632 socklen_t ss_len = sizeof(ss);
2633
2634 memset(&ss, 0, ss_len);
2635 if (getsockname(fd, (struct sockaddr *) &ss, &ss_len) != 0) {
Gerd Hoffmann20c39762013-06-24 08:39:48 +02002636 error_setg_errno(errp, errno, "getsockname");
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002637 return NULL;
2638 }
2639
2640 chr = g_malloc0(sizeof(CharDriverState));
2641 s = g_malloc0(sizeof(TCPCharDriver));
2642
2643 s->connected = 0;
2644 s->fd = -1;
2645 s->listen_fd = -1;
2646 s->msgfd = -1;
2647
2648 chr->filename = g_malloc(256);
2649 switch (ss.ss_family) {
2650#ifndef _WIN32
2651 case AF_UNIX:
2652 s->is_unix = 1;
2653 snprintf(chr->filename, 256, "unix:%s%s",
2654 ((struct sockaddr_un *)(&ss))->sun_path,
2655 is_listen ? ",server" : "");
2656 break;
2657#endif
2658 case AF_INET6:
2659 left = "[";
2660 right = "]";
2661 /* fall through */
2662 case AF_INET:
2663 s->do_nodelay = do_nodelay;
2664 getnameinfo((struct sockaddr *) &ss, ss_len, host, sizeof(host),
2665 serv, sizeof(serv), NI_NUMERICHOST | NI_NUMERICSERV);
Igor Mitsyankoe5545852013-03-10 17:58:05 +04002666 snprintf(chr->filename, 256, "%s:%s%s%s:%s%s",
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002667 is_telnet ? "telnet" : "tcp",
2668 left, host, right, serv,
2669 is_listen ? ",server" : "");
2670 break;
2671 }
2672
2673 chr->opaque = s;
2674 chr->chr_write = tcp_chr_write;
2675 chr->chr_close = tcp_chr_close;
2676 chr->get_msgfd = tcp_get_msgfd;
2677 chr->chr_add_client = tcp_chr_add_client;
Amit Shahd3cc5bc2013-03-05 23:21:25 +05302678 chr->chr_add_watch = tcp_chr_add_watch;
Gal Hammerac1b84d2014-02-25 12:12:35 +02002679 chr->chr_update_read_handler = tcp_chr_update_read_handler;
Michael Rothbd5c51e2013-06-07 15:19:53 -05002680 /* be isn't opened until we get a connection */
2681 chr->explicit_be_open = true;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002682
2683 if (is_listen) {
2684 s->listen_fd = fd;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302685 s->listen_chan = io_channel_from_socket(s->listen_fd);
2686 s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN, tcp_chr_accept, chr);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002687 if (is_telnet) {
2688 s->do_telnetopt = 1;
2689 }
2690 } else {
2691 s->connected = 1;
2692 s->fd = fd;
2693 socket_set_nodelay(fd);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302694 s->chan = io_channel_from_socket(s->fd);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002695 tcp_chr_connect(chr);
2696 }
2697
2698 if (is_listen && is_waitconnect) {
Gerd Hoffmannfdca2122013-06-24 08:39:49 +02002699 fprintf(stderr, "QEMU waiting for connection on: %s\n",
2700 chr->filename);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302701 tcp_chr_accept(s->listen_chan, G_IO_IN, chr);
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01002702 qemu_set_nonblock(s->listen_fd);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002703 }
2704 return chr;
2705}
2706
2707static CharDriverState *qemu_chr_open_socket(QemuOpts *opts)
2708{
2709 CharDriverState *chr = NULL;
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002710 Error *local_err = NULL;
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02002711 int fd = -1;
aliguori6f97dba2008-10-31 18:49:55 +00002712
liguange990a392013-06-18 11:45:35 +08002713 bool is_listen = qemu_opt_get_bool(opts, "server", false);
2714 bool is_waitconnect = is_listen && qemu_opt_get_bool(opts, "wait", true);
2715 bool is_telnet = qemu_opt_get_bool(opts, "telnet", false);
2716 bool do_nodelay = !qemu_opt_get_bool(opts, "delay", true);
2717 bool is_unix = qemu_opt_get(opts, "path") != NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002718
aliguorif07b6002008-11-11 20:54:09 +00002719 if (is_unix) {
2720 if (is_listen) {
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002721 fd = unix_listen_opts(opts, &local_err);
aliguorif07b6002008-11-11 20:54:09 +00002722 } else {
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002723 fd = unix_connect_opts(opts, &local_err, NULL, NULL);
aliguorif07b6002008-11-11 20:54:09 +00002724 }
2725 } else {
2726 if (is_listen) {
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002727 fd = inet_listen_opts(opts, 0, &local_err);
aliguorif07b6002008-11-11 20:54:09 +00002728 } else {
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002729 fd = inet_connect_opts(opts, &local_err, NULL, NULL);
aliguorif07b6002008-11-11 20:54:09 +00002730 }
2731 }
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01002732 if (fd < 0) {
aliguori6f97dba2008-10-31 18:49:55 +00002733 goto fail;
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01002734 }
aliguori6f97dba2008-10-31 18:49:55 +00002735
2736 if (!is_waitconnect)
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01002737 qemu_set_nonblock(fd);
aliguori6f97dba2008-10-31 18:49:55 +00002738
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002739 chr = qemu_chr_open_socket_fd(fd, do_nodelay, is_listen, is_telnet,
2740 is_waitconnect, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002741 if (local_err) {
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002742 goto fail;
aliguori6f97dba2008-10-31 18:49:55 +00002743 }
Markus Armbruster1f514702012-02-07 15:09:08 +01002744 return chr;
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02002745
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002746
aliguori6f97dba2008-10-31 18:49:55 +00002747 fail:
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002748 if (local_err) {
2749 qerror_report_err(local_err);
2750 error_free(local_err);
2751 }
2752 if (fd >= 0) {
aliguori6f97dba2008-10-31 18:49:55 +00002753 closesocket(fd);
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002754 }
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002755 if (chr) {
2756 g_free(chr->opaque);
2757 g_free(chr);
2758 }
Markus Armbruster1f514702012-02-07 15:09:08 +01002759 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002760}
2761
Lei Li51767e72013-01-25 00:03:19 +08002762/*********************************************************/
Markus Armbruster3949e592013-02-06 21:27:24 +01002763/* Ring buffer chardev */
Lei Li51767e72013-01-25 00:03:19 +08002764
2765typedef struct {
2766 size_t size;
2767 size_t prod;
2768 size_t cons;
2769 uint8_t *cbuf;
Markus Armbruster3949e592013-02-06 21:27:24 +01002770} RingBufCharDriver;
Lei Li51767e72013-01-25 00:03:19 +08002771
Markus Armbruster3949e592013-02-06 21:27:24 +01002772static size_t ringbuf_count(const CharDriverState *chr)
Lei Li51767e72013-01-25 00:03:19 +08002773{
Markus Armbruster3949e592013-02-06 21:27:24 +01002774 const RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08002775
Markus Armbruster5c230102013-02-06 21:27:23 +01002776 return d->prod - d->cons;
Lei Li51767e72013-01-25 00:03:19 +08002777}
2778
Markus Armbruster3949e592013-02-06 21:27:24 +01002779static int ringbuf_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
Lei Li51767e72013-01-25 00:03:19 +08002780{
Markus Armbruster3949e592013-02-06 21:27:24 +01002781 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08002782 int i;
2783
2784 if (!buf || (len < 0)) {
2785 return -1;
2786 }
2787
2788 for (i = 0; i < len; i++ ) {
Markus Armbruster5c230102013-02-06 21:27:23 +01002789 d->cbuf[d->prod++ & (d->size - 1)] = buf[i];
2790 if (d->prod - d->cons > d->size) {
Lei Li51767e72013-01-25 00:03:19 +08002791 d->cons = d->prod - d->size;
2792 }
2793 }
2794
2795 return 0;
2796}
2797
Markus Armbruster3949e592013-02-06 21:27:24 +01002798static int ringbuf_chr_read(CharDriverState *chr, uint8_t *buf, int len)
Lei Li51767e72013-01-25 00:03:19 +08002799{
Markus Armbruster3949e592013-02-06 21:27:24 +01002800 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08002801 int i;
2802
Markus Armbruster5c230102013-02-06 21:27:23 +01002803 for (i = 0; i < len && d->cons != d->prod; i++) {
2804 buf[i] = d->cbuf[d->cons++ & (d->size - 1)];
Lei Li51767e72013-01-25 00:03:19 +08002805 }
2806
2807 return i;
2808}
2809
Markus Armbruster3949e592013-02-06 21:27:24 +01002810static void ringbuf_chr_close(struct CharDriverState *chr)
Lei Li51767e72013-01-25 00:03:19 +08002811{
Markus Armbruster3949e592013-02-06 21:27:24 +01002812 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08002813
2814 g_free(d->cbuf);
2815 g_free(d);
2816 chr->opaque = NULL;
2817}
2818
Markus Armbruster4f573782013-07-26 16:44:32 +02002819static CharDriverState *qemu_chr_open_ringbuf(ChardevRingbuf *opts,
2820 Error **errp)
Lei Li51767e72013-01-25 00:03:19 +08002821{
2822 CharDriverState *chr;
Markus Armbruster3949e592013-02-06 21:27:24 +01002823 RingBufCharDriver *d;
Lei Li51767e72013-01-25 00:03:19 +08002824
2825 chr = g_malloc0(sizeof(CharDriverState));
2826 d = g_malloc(sizeof(*d));
2827
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01002828 d->size = opts->has_size ? opts->size : 65536;
Lei Li51767e72013-01-25 00:03:19 +08002829
2830 /* The size must be power of 2 */
2831 if (d->size & (d->size - 1)) {
Markus Armbruster4f573782013-07-26 16:44:32 +02002832 error_setg(errp, "size of ringbuf chardev must be power of two");
Lei Li51767e72013-01-25 00:03:19 +08002833 goto fail;
2834 }
2835
2836 d->prod = 0;
2837 d->cons = 0;
2838 d->cbuf = g_malloc0(d->size);
2839
2840 chr->opaque = d;
Markus Armbruster3949e592013-02-06 21:27:24 +01002841 chr->chr_write = ringbuf_chr_write;
2842 chr->chr_close = ringbuf_chr_close;
Lei Li51767e72013-01-25 00:03:19 +08002843
2844 return chr;
2845
2846fail:
2847 g_free(d);
2848 g_free(chr);
2849 return NULL;
2850}
2851
Markus Armbruster3949e592013-02-06 21:27:24 +01002852static bool chr_is_ringbuf(const CharDriverState *chr)
Lei Li1f590cf2013-01-25 00:03:20 +08002853{
Markus Armbruster3949e592013-02-06 21:27:24 +01002854 return chr->chr_write == ringbuf_chr_write;
Lei Li1f590cf2013-01-25 00:03:20 +08002855}
2856
Markus Armbruster3949e592013-02-06 21:27:24 +01002857void qmp_ringbuf_write(const char *device, const char *data,
Markus Armbruster82e59a62013-02-06 21:27:14 +01002858 bool has_format, enum DataFormat format,
Lei Li1f590cf2013-01-25 00:03:20 +08002859 Error **errp)
2860{
2861 CharDriverState *chr;
Markus Armbrusterc4f331b2013-02-06 21:27:17 +01002862 const uint8_t *write_data;
Lei Li1f590cf2013-01-25 00:03:20 +08002863 int ret;
Peter Crosthwaite3d1bba22013-05-22 13:01:43 +10002864 gsize write_count;
Lei Li1f590cf2013-01-25 00:03:20 +08002865
2866 chr = qemu_chr_find(device);
2867 if (!chr) {
Markus Armbruster1a692782013-02-06 21:27:16 +01002868 error_setg(errp, "Device '%s' not found", device);
Lei Li1f590cf2013-01-25 00:03:20 +08002869 return;
2870 }
2871
Markus Armbruster3949e592013-02-06 21:27:24 +01002872 if (!chr_is_ringbuf(chr)) {
2873 error_setg(errp,"%s is not a ringbuf device", device);
Lei Li1f590cf2013-01-25 00:03:20 +08002874 return;
2875 }
2876
Lei Li1f590cf2013-01-25 00:03:20 +08002877 if (has_format && (format == DATA_FORMAT_BASE64)) {
2878 write_data = g_base64_decode(data, &write_count);
2879 } else {
2880 write_data = (uint8_t *)data;
Markus Armbruster82e59a62013-02-06 21:27:14 +01002881 write_count = strlen(data);
Lei Li1f590cf2013-01-25 00:03:20 +08002882 }
2883
Markus Armbruster3949e592013-02-06 21:27:24 +01002884 ret = ringbuf_chr_write(chr, write_data, write_count);
Lei Li1f590cf2013-01-25 00:03:20 +08002885
Markus Armbruster13289fb2013-02-06 21:27:18 +01002886 if (write_data != (uint8_t *)data) {
2887 g_free((void *)write_data);
2888 }
2889
Lei Li1f590cf2013-01-25 00:03:20 +08002890 if (ret < 0) {
2891 error_setg(errp, "Failed to write to device %s", device);
2892 return;
2893 }
2894}
2895
Markus Armbruster3949e592013-02-06 21:27:24 +01002896char *qmp_ringbuf_read(const char *device, int64_t size,
Markus Armbruster3ab651f2013-02-06 21:27:15 +01002897 bool has_format, enum DataFormat format,
2898 Error **errp)
Lei Li49b6d722013-01-25 00:03:21 +08002899{
2900 CharDriverState *chr;
Markus Armbrusterc4f331b2013-02-06 21:27:17 +01002901 uint8_t *read_data;
Lei Li49b6d722013-01-25 00:03:21 +08002902 size_t count;
Markus Armbruster3ab651f2013-02-06 21:27:15 +01002903 char *data;
Lei Li49b6d722013-01-25 00:03:21 +08002904
2905 chr = qemu_chr_find(device);
2906 if (!chr) {
Markus Armbruster1a692782013-02-06 21:27:16 +01002907 error_setg(errp, "Device '%s' not found", device);
Lei Li49b6d722013-01-25 00:03:21 +08002908 return NULL;
2909 }
2910
Markus Armbruster3949e592013-02-06 21:27:24 +01002911 if (!chr_is_ringbuf(chr)) {
2912 error_setg(errp,"%s is not a ringbuf device", device);
Lei Li49b6d722013-01-25 00:03:21 +08002913 return NULL;
2914 }
2915
2916 if (size <= 0) {
2917 error_setg(errp, "size must be greater than zero");
2918 return NULL;
2919 }
2920
Markus Armbruster3949e592013-02-06 21:27:24 +01002921 count = ringbuf_count(chr);
Lei Li49b6d722013-01-25 00:03:21 +08002922 size = size > count ? count : size;
Markus Armbruster44f3bcd2013-02-06 21:27:20 +01002923 read_data = g_malloc(size + 1);
Lei Li49b6d722013-01-25 00:03:21 +08002924
Markus Armbruster3949e592013-02-06 21:27:24 +01002925 ringbuf_chr_read(chr, read_data, size);
Lei Li49b6d722013-01-25 00:03:21 +08002926
2927 if (has_format && (format == DATA_FORMAT_BASE64)) {
Markus Armbruster3ab651f2013-02-06 21:27:15 +01002928 data = g_base64_encode(read_data, size);
Markus Armbruster13289fb2013-02-06 21:27:18 +01002929 g_free(read_data);
Lei Li49b6d722013-01-25 00:03:21 +08002930 } else {
Markus Armbruster3949e592013-02-06 21:27:24 +01002931 /*
2932 * FIXME should read only complete, valid UTF-8 characters up
2933 * to @size bytes. Invalid sequences should be replaced by a
2934 * suitable replacement character. Except when (and only
2935 * when) ring buffer lost characters since last read, initial
2936 * continuation characters should be dropped.
2937 */
Markus Armbruster44f3bcd2013-02-06 21:27:20 +01002938 read_data[size] = 0;
Markus Armbruster3ab651f2013-02-06 21:27:15 +01002939 data = (char *)read_data;
Lei Li49b6d722013-01-25 00:03:21 +08002940 }
2941
Markus Armbruster3ab651f2013-02-06 21:27:15 +01002942 return data;
Lei Li49b6d722013-01-25 00:03:21 +08002943}
2944
Gerd Hoffmann33521632009-12-08 13:11:49 +01002945QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
Gerd Hoffmann191bc012009-09-10 10:58:35 +02002946{
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02002947 char host[65], port[33], width[8], height[8];
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02002948 int pos;
Gerd Hoffmann7d315442009-09-10 10:58:36 +02002949 const char *p;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02002950 QemuOpts *opts;
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002951 Error *local_err = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02002952
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002953 opts = qemu_opts_create(qemu_find_opts("chardev"), label, 1, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002954 if (local_err) {
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002955 qerror_report_err(local_err);
2956 error_free(local_err);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02002957 return NULL;
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002958 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02002959
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02002960 if (strstart(filename, "mon:", &p)) {
2961 filename = p;
2962 qemu_opt_set(opts, "mux", "on");
Paolo Bonzini02c4bdf2013-07-03 20:29:45 +04002963 if (strcmp(filename, "stdio") == 0) {
2964 /* Monitor is muxed to stdio: do not exit on Ctrl+C by default
2965 * but pass it to the guest. Handle this only for compat syntax,
2966 * for -chardev syntax we have special option for this.
2967 * This is what -nographic did, redirecting+muxing serial+monitor
2968 * to stdio causing Ctrl+C to be passed to guest. */
2969 qemu_opt_set(opts, "signal", "off");
2970 }
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02002971 }
2972
Gerd Hoffmannf0457e82009-09-10 10:58:45 +02002973 if (strcmp(filename, "null") == 0 ||
2974 strcmp(filename, "pty") == 0 ||
2975 strcmp(filename, "msmouse") == 0 ||
Gerd Hoffmanndc1c21e2009-09-10 10:58:46 +02002976 strcmp(filename, "braille") == 0 ||
Gerd Hoffmannf0457e82009-09-10 10:58:45 +02002977 strcmp(filename, "stdio") == 0) {
Gerd Hoffmann4490dad2009-09-10 10:58:43 +02002978 qemu_opt_set(opts, "backend", filename);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02002979 return opts;
2980 }
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02002981 if (strstart(filename, "vc", &p)) {
2982 qemu_opt_set(opts, "backend", "vc");
2983 if (*p == ':') {
Stefan Weil49aa4052013-09-30 23:04:49 +02002984 if (sscanf(p+1, "%7[0-9]x%7[0-9]", width, height) == 2) {
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02002985 /* pixels */
2986 qemu_opt_set(opts, "width", width);
2987 qemu_opt_set(opts, "height", height);
Stefan Weil49aa4052013-09-30 23:04:49 +02002988 } else if (sscanf(p+1, "%7[0-9]Cx%7[0-9]C", width, height) == 2) {
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02002989 /* chars */
2990 qemu_opt_set(opts, "cols", width);
2991 qemu_opt_set(opts, "rows", height);
2992 } else {
2993 goto fail;
2994 }
2995 }
2996 return opts;
2997 }
Gerd Hoffmannd6c983c2009-09-10 10:58:47 +02002998 if (strcmp(filename, "con:") == 0) {
2999 qemu_opt_set(opts, "backend", "console");
3000 return opts;
3001 }
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003002 if (strstart(filename, "COM", NULL)) {
3003 qemu_opt_set(opts, "backend", "serial");
3004 qemu_opt_set(opts, "path", filename);
3005 return opts;
3006 }
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003007 if (strstart(filename, "file:", &p)) {
3008 qemu_opt_set(opts, "backend", "file");
3009 qemu_opt_set(opts, "path", p);
3010 return opts;
3011 }
3012 if (strstart(filename, "pipe:", &p)) {
3013 qemu_opt_set(opts, "backend", "pipe");
3014 qemu_opt_set(opts, "path", p);
3015 return opts;
3016 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003017 if (strstart(filename, "tcp:", &p) ||
3018 strstart(filename, "telnet:", &p)) {
3019 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3020 host[0] = 0;
3021 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1)
3022 goto fail;
3023 }
3024 qemu_opt_set(opts, "backend", "socket");
3025 qemu_opt_set(opts, "host", host);
3026 qemu_opt_set(opts, "port", port);
3027 if (p[pos] == ',') {
3028 if (qemu_opts_do_parse(opts, p+pos+1, NULL) != 0)
3029 goto fail;
3030 }
3031 if (strstart(filename, "telnet:", &p))
3032 qemu_opt_set(opts, "telnet", "on");
3033 return opts;
3034 }
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003035 if (strstart(filename, "udp:", &p)) {
3036 qemu_opt_set(opts, "backend", "udp");
3037 if (sscanf(p, "%64[^:]:%32[^@,]%n", host, port, &pos) < 2) {
3038 host[0] = 0;
Jan Kiszka39324ca2010-03-07 11:28:48 +01003039 if (sscanf(p, ":%32[^@,]%n", port, &pos) < 1) {
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003040 goto fail;
3041 }
3042 }
3043 qemu_opt_set(opts, "host", host);
3044 qemu_opt_set(opts, "port", port);
3045 if (p[pos] == '@') {
3046 p += pos + 1;
3047 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3048 host[0] = 0;
3049 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1) {
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003050 goto fail;
3051 }
3052 }
3053 qemu_opt_set(opts, "localaddr", host);
3054 qemu_opt_set(opts, "localport", port);
3055 }
3056 return opts;
3057 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003058 if (strstart(filename, "unix:", &p)) {
3059 qemu_opt_set(opts, "backend", "socket");
3060 if (qemu_opts_do_parse(opts, p, "path") != 0)
3061 goto fail;
3062 return opts;
3063 }
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003064 if (strstart(filename, "/dev/parport", NULL) ||
3065 strstart(filename, "/dev/ppi", NULL)) {
3066 qemu_opt_set(opts, "backend", "parport");
3067 qemu_opt_set(opts, "path", filename);
3068 return opts;
3069 }
3070 if (strstart(filename, "/dev/", NULL)) {
3071 qemu_opt_set(opts, "backend", "tty");
3072 qemu_opt_set(opts, "path", filename);
3073 return opts;
3074 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003075
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003076fail:
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003077 qemu_opts_del(opts);
3078 return NULL;
3079}
3080
Gerd Hoffmann846e2e42013-02-21 12:07:14 +01003081static void qemu_chr_parse_file_out(QemuOpts *opts, ChardevBackend *backend,
3082 Error **errp)
3083{
3084 const char *path = qemu_opt_get(opts, "path");
3085
3086 if (path == NULL) {
3087 error_setg(errp, "chardev: file: no filename given");
3088 return;
3089 }
3090 backend->file = g_new0(ChardevFile, 1);
3091 backend->file->out = g_strdup(path);
3092}
3093
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003094static void qemu_chr_parse_stdio(QemuOpts *opts, ChardevBackend *backend,
3095 Error **errp)
3096{
3097 backend->stdio = g_new0(ChardevStdio, 1);
3098 backend->stdio->has_signal = true;
Paolo Bonzini02c4bdf2013-07-03 20:29:45 +04003099 backend->stdio->signal = qemu_opt_get_bool(opts, "signal", true);
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003100}
3101
Gerd Hoffmann0f1cb512013-02-22 15:48:05 +01003102static void qemu_chr_parse_serial(QemuOpts *opts, ChardevBackend *backend,
3103 Error **errp)
3104{
3105 const char *device = qemu_opt_get(opts, "path");
3106
3107 if (device == NULL) {
3108 error_setg(errp, "chardev: serial/tty: no device path given");
3109 return;
3110 }
3111 backend->serial = g_new0(ChardevHostdev, 1);
3112 backend->serial->device = g_strdup(device);
3113}
3114
Gerd Hoffmanndc375092013-02-22 16:17:01 +01003115static void qemu_chr_parse_parallel(QemuOpts *opts, ChardevBackend *backend,
3116 Error **errp)
3117{
3118 const char *device = qemu_opt_get(opts, "path");
3119
3120 if (device == NULL) {
3121 error_setg(errp, "chardev: parallel: no device path given");
3122 return;
3123 }
3124 backend->parallel = g_new0(ChardevHostdev, 1);
3125 backend->parallel->device = g_strdup(device);
3126}
3127
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01003128static void qemu_chr_parse_pipe(QemuOpts *opts, ChardevBackend *backend,
3129 Error **errp)
3130{
3131 const char *device = qemu_opt_get(opts, "path");
3132
3133 if (device == NULL) {
3134 error_setg(errp, "chardev: pipe: no device path given");
3135 return;
3136 }
3137 backend->pipe = g_new0(ChardevHostdev, 1);
3138 backend->pipe->device = g_strdup(device);
3139}
3140
Markus Armbruster4f573782013-07-26 16:44:32 +02003141static void qemu_chr_parse_ringbuf(QemuOpts *opts, ChardevBackend *backend,
3142 Error **errp)
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003143{
3144 int val;
3145
Markus Armbruster3a1da422013-07-26 16:44:34 +02003146 backend->ringbuf = g_new0(ChardevRingbuf, 1);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003147
Markus Armbruster0f953052013-06-27 16:22:07 +02003148 val = qemu_opt_get_size(opts, "size", 0);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003149 if (val != 0) {
Markus Armbruster3a1da422013-07-26 16:44:34 +02003150 backend->ringbuf->has_size = true;
3151 backend->ringbuf->size = val;
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003152 }
3153}
3154
Gerd Hoffmannbb6fb7c2013-06-24 08:39:54 +02003155static void qemu_chr_parse_mux(QemuOpts *opts, ChardevBackend *backend,
3156 Error **errp)
3157{
3158 const char *chardev = qemu_opt_get(opts, "chardev");
3159
3160 if (chardev == NULL) {
3161 error_setg(errp, "chardev: mux: no chardev given");
3162 return;
3163 }
3164 backend->mux = g_new0(ChardevMux, 1);
3165 backend->mux->chardev = g_strdup(chardev);
3166}
3167
Anthony Liguorid654f342013-03-05 23:21:28 +05303168typedef struct CharDriver {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003169 const char *name;
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003170 /* old, pre qapi */
Markus Armbruster1f514702012-02-07 15:09:08 +01003171 CharDriverState *(*open)(QemuOpts *opts);
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003172 /* new, qapi-based */
Gerd Hoffmann99aec012013-06-24 08:39:52 +02003173 ChardevBackendKind kind;
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003174 void (*parse)(QemuOpts *opts, ChardevBackend *backend, Error **errp);
Anthony Liguorid654f342013-03-05 23:21:28 +05303175} CharDriver;
3176
3177static GSList *backends;
3178
3179void register_char_driver(const char *name, CharDriverState *(*open)(QemuOpts *))
3180{
3181 CharDriver *s;
3182
3183 s = g_malloc0(sizeof(*s));
3184 s->name = g_strdup(name);
3185 s->open = open;
3186
3187 backends = g_slist_append(backends, s);
3188}
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003189
Gerd Hoffmann99aec012013-06-24 08:39:52 +02003190void register_char_driver_qapi(const char *name, ChardevBackendKind kind,
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003191 void (*parse)(QemuOpts *opts, ChardevBackend *backend, Error **errp))
3192{
3193 CharDriver *s;
3194
3195 s = g_malloc0(sizeof(*s));
3196 s->name = g_strdup(name);
3197 s->kind = kind;
3198 s->parse = parse;
3199
3200 backends = g_slist_append(backends, s);
3201}
3202
Anthony Liguorif69554b2011-08-15 11:17:37 -05003203CharDriverState *qemu_chr_new_from_opts(QemuOpts *opts,
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003204 void (*init)(struct CharDriverState *s),
3205 Error **errp)
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003206{
Anthony Liguorid654f342013-03-05 23:21:28 +05303207 CharDriver *cd;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003208 CharDriverState *chr;
Anthony Liguorid654f342013-03-05 23:21:28 +05303209 GSList *i;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003210
3211 if (qemu_opts_id(opts) == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003212 error_setg(errp, "chardev: no id specified");
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003213 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003214 }
3215
Stefan Hajnoczi1bbd1852011-01-22 13:07:26 +00003216 if (qemu_opt_get(opts, "backend") == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003217 error_setg(errp, "chardev: \"%s\" missing backend",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003218 qemu_opts_id(opts));
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003219 goto err;
Stefan Hajnoczi1bbd1852011-01-22 13:07:26 +00003220 }
Anthony Liguorid654f342013-03-05 23:21:28 +05303221 for (i = backends; i; i = i->next) {
3222 cd = i->data;
3223
3224 if (strcmp(cd->name, qemu_opt_get(opts, "backend")) == 0) {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003225 break;
Anthony Liguorid654f342013-03-05 23:21:28 +05303226 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003227 }
Anthony Liguorid654f342013-03-05 23:21:28 +05303228 if (i == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003229 error_setg(errp, "chardev: backend \"%s\" not found",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003230 qemu_opt_get(opts, "backend"));
Gerd Hoffmanne6682872013-06-24 08:39:51 +02003231 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003232 }
3233
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003234 if (!cd->open) {
3235 /* using new, qapi init */
3236 ChardevBackend *backend = g_new0(ChardevBackend, 1);
3237 ChardevReturn *ret = NULL;
3238 const char *id = qemu_opts_id(opts);
Gerd Hoffmanndc2c4ec2013-06-24 08:39:53 +02003239 char *bid = NULL;
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003240
3241 if (qemu_opt_get_bool(opts, "mux", 0)) {
3242 bid = g_strdup_printf("%s-base", id);
3243 }
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003244
3245 chr = NULL;
3246 backend->kind = cd->kind;
3247 if (cd->parse) {
3248 cd->parse(opts, backend, errp);
3249 if (error_is_set(errp)) {
3250 goto qapi_out;
3251 }
3252 }
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003253 ret = qmp_chardev_add(bid ? bid : id, backend, errp);
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003254 if (error_is_set(errp)) {
3255 goto qapi_out;
3256 }
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003257
3258 if (bid) {
3259 qapi_free_ChardevBackend(backend);
3260 qapi_free_ChardevReturn(ret);
3261 backend = g_new0(ChardevBackend, 1);
3262 backend->mux = g_new0(ChardevMux, 1);
3263 backend->kind = CHARDEV_BACKEND_KIND_MUX;
3264 backend->mux->chardev = g_strdup(bid);
3265 ret = qmp_chardev_add(id, backend, errp);
Gerd Hoffmannee6ee832013-09-13 12:48:47 +02003266 if (error_is_set(errp)) {
3267 chr = qemu_chr_find(bid);
3268 qemu_chr_delete(chr);
3269 chr = NULL;
3270 goto qapi_out;
3271 }
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003272 }
3273
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003274 chr = qemu_chr_find(id);
Markus Armbruster2ea3e2c2013-06-27 15:25:12 +02003275 chr->opts = opts;
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003276
3277 qapi_out:
3278 qapi_free_ChardevBackend(backend);
3279 qapi_free_ChardevReturn(ret);
Gerd Hoffmanndc2c4ec2013-06-24 08:39:53 +02003280 g_free(bid);
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003281 return chr;
3282 }
3283
Anthony Liguorid654f342013-03-05 23:21:28 +05303284 chr = cd->open(opts);
Markus Armbruster1f514702012-02-07 15:09:08 +01003285 if (!chr) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003286 error_setg(errp, "chardev: opening backend \"%s\" failed",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003287 qemu_opt_get(opts, "backend"));
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003288 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003289 }
3290
3291 if (!chr->filename)
Anthony Liguori7267c092011-08-20 22:09:37 -05003292 chr->filename = g_strdup(qemu_opt_get(opts, "backend"));
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003293 chr->init = init;
Michael Rothbd5c51e2013-06-07 15:19:53 -05003294 /* if we didn't create the chardev via qmp_chardev_add, we
3295 * need to send the OPENED event here
3296 */
3297 if (!chr->explicit_be_open) {
3298 qemu_chr_be_event(chr, CHR_EVENT_OPENED);
3299 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00003300 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003301
3302 if (qemu_opt_get_bool(opts, "mux", 0)) {
3303 CharDriverState *base = chr;
3304 int len = strlen(qemu_opts_id(opts)) + 6;
Anthony Liguori7267c092011-08-20 22:09:37 -05003305 base->label = g_malloc(len);
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003306 snprintf(base->label, len, "%s-base", qemu_opts_id(opts));
3307 chr = qemu_chr_open_mux(base);
3308 chr->filename = base->filename;
Kusanagi Kouichid5b27162011-04-26 19:19:26 +09003309 chr->avail_connections = MAX_MUX;
Blue Swirl72cf2d42009-09-12 07:36:22 +00003310 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
Kusanagi Kouichid5b27162011-04-26 19:19:26 +09003311 } else {
3312 chr->avail_connections = 1;
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003313 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003314 chr->label = g_strdup(qemu_opts_id(opts));
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003315 chr->opts = opts;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003316 return chr;
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003317
3318err:
3319 qemu_opts_del(opts);
3320 return NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003321}
3322
Anthony Liguori27143a42011-08-15 11:17:36 -05003323CharDriverState *qemu_chr_new(const char *label, const char *filename, void (*init)(struct CharDriverState *s))
aliguori6f97dba2008-10-31 18:49:55 +00003324{
3325 const char *p;
3326 CharDriverState *chr;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003327 QemuOpts *opts;
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003328 Error *err = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003329
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003330 if (strstart(filename, "chardev:", &p)) {
3331 return qemu_chr_find(p);
3332 }
3333
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003334 opts = qemu_chr_parse_compat(label, filename);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003335 if (!opts)
3336 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00003337
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003338 chr = qemu_chr_new_from_opts(opts, init, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01003339 if (err) {
Seiji Aguchi4a44d852013-08-05 15:40:44 -04003340 error_report("%s", error_get_pretty(err));
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003341 error_free(err);
3342 }
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003343 if (chr && qemu_opt_get_bool(opts, "mux", 0)) {
Hans de Goede456d6062013-03-27 20:29:40 +01003344 qemu_chr_fe_claim_no_fail(chr);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003345 monitor_init(chr, MONITOR_USE_READLINE);
aliguori6f97dba2008-10-31 18:49:55 +00003346 }
3347 return chr;
3348}
3349
Anthony Liguori15f31512011-08-15 11:17:35 -05003350void qemu_chr_fe_set_echo(struct CharDriverState *chr, bool echo)
Paolo Bonzinic48855e2010-12-23 13:42:48 +01003351{
3352 if (chr->chr_set_echo) {
3353 chr->chr_set_echo(chr, echo);
3354 }
3355}
3356
Hans de Goede8e25daa2013-03-26 11:07:57 +01003357void qemu_chr_fe_set_open(struct CharDriverState *chr, int fe_open)
Hans de Goede7c32c4f2011-03-24 11:12:02 +01003358{
Hans de Goede8e25daa2013-03-26 11:07:57 +01003359 if (chr->fe_open == fe_open) {
Hans de Goedec0c4bd22013-03-26 11:07:55 +01003360 return;
3361 }
Hans de Goede8e25daa2013-03-26 11:07:57 +01003362 chr->fe_open = fe_open;
Hans de Goede574b7112013-03-26 11:07:58 +01003363 if (chr->chr_set_fe_open) {
3364 chr->chr_set_fe_open(chr, fe_open);
Hans de Goede7c32c4f2011-03-24 11:12:02 +01003365 }
3366}
3367
Marc-André Lureaud61b0c92013-12-01 22:23:39 +01003368void qemu_chr_fe_event(struct CharDriverState *chr, int event)
3369{
3370 if (chr->chr_fe_event) {
3371 chr->chr_fe_event(chr, event);
3372 }
3373}
3374
Kevin Wolf2c8a5942013-03-19 13:38:09 +01003375int qemu_chr_fe_add_watch(CharDriverState *s, GIOCondition cond,
3376 GIOFunc func, void *user_data)
Anthony Liguori23673ca2013-03-05 23:21:23 +05303377{
3378 GSource *src;
3379 guint tag;
3380
3381 if (s->chr_add_watch == NULL) {
3382 return -ENOSYS;
3383 }
3384
3385 src = s->chr_add_watch(s, cond);
3386 g_source_set_callback(src, (GSourceFunc)func, user_data, NULL);
3387 tag = g_source_attach(src, NULL);
3388 g_source_unref(src);
3389
3390 return tag;
3391}
3392
Hans de Goede44c473d2013-03-27 20:29:39 +01003393int qemu_chr_fe_claim(CharDriverState *s)
3394{
3395 if (s->avail_connections < 1) {
3396 return -1;
3397 }
3398 s->avail_connections--;
3399 return 0;
3400}
3401
3402void qemu_chr_fe_claim_no_fail(CharDriverState *s)
3403{
3404 if (qemu_chr_fe_claim(s) != 0) {
3405 fprintf(stderr, "%s: error chardev \"%s\" already used\n",
3406 __func__, s->label);
3407 exit(1);
3408 }
3409}
3410
3411void qemu_chr_fe_release(CharDriverState *s)
3412{
3413 s->avail_connections++;
3414}
3415
Anthony Liguori70f24fb2011-08-15 11:17:38 -05003416void qemu_chr_delete(CharDriverState *chr)
aliguori6f97dba2008-10-31 18:49:55 +00003417{
Blue Swirl72cf2d42009-09-12 07:36:22 +00003418 QTAILQ_REMOVE(&chardevs, chr, next);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003419 if (chr->chr_close) {
aliguori6f97dba2008-10-31 18:49:55 +00003420 chr->chr_close(chr);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003421 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003422 g_free(chr->filename);
3423 g_free(chr->label);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003424 if (chr->opts) {
3425 qemu_opts_del(chr->opts);
3426 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003427 g_free(chr);
aliguori6f97dba2008-10-31 18:49:55 +00003428}
3429
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003430ChardevInfoList *qmp_query_chardev(Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00003431{
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003432 ChardevInfoList *chr_list = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00003433 CharDriverState *chr;
3434
Blue Swirl72cf2d42009-09-12 07:36:22 +00003435 QTAILQ_FOREACH(chr, &chardevs, next) {
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003436 ChardevInfoList *info = g_malloc0(sizeof(*info));
3437 info->value = g_malloc0(sizeof(*info->value));
3438 info->value->label = g_strdup(chr->label);
3439 info->value->filename = g_strdup(chr->filename);
3440
3441 info->next = chr_list;
3442 chr_list = info;
aliguori6f97dba2008-10-31 18:49:55 +00003443 }
Luiz Capitulino588b3832009-12-10 17:16:08 -02003444
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003445 return chr_list;
aliguori6f97dba2008-10-31 18:49:55 +00003446}
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003447
Martin Kletzander77d1c3c2014-02-01 12:52:42 +01003448ChardevBackendInfoList *qmp_query_chardev_backends(Error **errp)
3449{
3450 ChardevBackendInfoList *backend_list = NULL;
3451 CharDriver *c = NULL;
3452 GSList *i = NULL;
3453
3454 for (i = backends; i; i = i->next) {
3455 ChardevBackendInfoList *info = g_malloc0(sizeof(*info));
3456 c = i->data;
3457 info->value = g_malloc0(sizeof(*info->value));
3458 info->value->name = g_strdup(c->name);
3459
3460 info->next = backend_list;
3461 backend_list = info;
3462 }
3463
3464 return backend_list;
3465}
3466
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003467CharDriverState *qemu_chr_find(const char *name)
3468{
3469 CharDriverState *chr;
3470
Blue Swirl72cf2d42009-09-12 07:36:22 +00003471 QTAILQ_FOREACH(chr, &chardevs, next) {
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003472 if (strcmp(chr->label, name) != 0)
3473 continue;
3474 return chr;
3475 }
3476 return NULL;
3477}
Anthony Liguori0beb4942011-12-22 15:29:25 -06003478
3479/* Get a character (serial) device interface. */
3480CharDriverState *qemu_char_get_next_serial(void)
3481{
3482 static int next_serial;
Hans de Goede456d6062013-03-27 20:29:40 +01003483 CharDriverState *chr;
Anthony Liguori0beb4942011-12-22 15:29:25 -06003484
3485 /* FIXME: This function needs to go away: use chardev properties! */
Hans de Goede456d6062013-03-27 20:29:40 +01003486
3487 while (next_serial < MAX_SERIAL_PORTS && serial_hds[next_serial]) {
3488 chr = serial_hds[next_serial++];
3489 qemu_chr_fe_claim_no_fail(chr);
3490 return chr;
3491 }
3492 return NULL;
Anthony Liguori0beb4942011-12-22 15:29:25 -06003493}
3494
Paolo Bonzini4d454572012-11-26 16:03:42 +01003495QemuOptsList qemu_chardev_opts = {
3496 .name = "chardev",
3497 .implied_opt_name = "backend",
3498 .head = QTAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
3499 .desc = {
3500 {
3501 .name = "backend",
3502 .type = QEMU_OPT_STRING,
3503 },{
3504 .name = "path",
3505 .type = QEMU_OPT_STRING,
3506 },{
3507 .name = "host",
3508 .type = QEMU_OPT_STRING,
3509 },{
3510 .name = "port",
3511 .type = QEMU_OPT_STRING,
3512 },{
3513 .name = "localaddr",
3514 .type = QEMU_OPT_STRING,
3515 },{
3516 .name = "localport",
3517 .type = QEMU_OPT_STRING,
3518 },{
3519 .name = "to",
3520 .type = QEMU_OPT_NUMBER,
3521 },{
3522 .name = "ipv4",
3523 .type = QEMU_OPT_BOOL,
3524 },{
3525 .name = "ipv6",
3526 .type = QEMU_OPT_BOOL,
3527 },{
3528 .name = "wait",
3529 .type = QEMU_OPT_BOOL,
3530 },{
3531 .name = "server",
3532 .type = QEMU_OPT_BOOL,
3533 },{
3534 .name = "delay",
3535 .type = QEMU_OPT_BOOL,
3536 },{
3537 .name = "telnet",
3538 .type = QEMU_OPT_BOOL,
3539 },{
3540 .name = "width",
3541 .type = QEMU_OPT_NUMBER,
3542 },{
3543 .name = "height",
3544 .type = QEMU_OPT_NUMBER,
3545 },{
3546 .name = "cols",
3547 .type = QEMU_OPT_NUMBER,
3548 },{
3549 .name = "rows",
3550 .type = QEMU_OPT_NUMBER,
3551 },{
3552 .name = "mux",
3553 .type = QEMU_OPT_BOOL,
3554 },{
3555 .name = "signal",
3556 .type = QEMU_OPT_BOOL,
3557 },{
3558 .name = "name",
3559 .type = QEMU_OPT_STRING,
3560 },{
3561 .name = "debug",
3562 .type = QEMU_OPT_NUMBER,
Lei Li51767e72013-01-25 00:03:19 +08003563 },{
Markus Armbruster3949e592013-02-06 21:27:24 +01003564 .name = "size",
Markus Armbrusterde1cc362013-02-06 21:27:25 +01003565 .type = QEMU_OPT_SIZE,
Gerd Hoffmannbb6fb7c2013-06-24 08:39:54 +02003566 },{
3567 .name = "chardev",
3568 .type = QEMU_OPT_STRING,
Paolo Bonzini4d454572012-11-26 16:03:42 +01003569 },
3570 { /* end of list */ }
3571 },
3572};
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003573
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003574#ifdef _WIN32
3575
3576static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
3577{
3578 HANDLE out;
3579
Gerd Hoffmanne859eda2013-06-24 08:39:47 +02003580 if (file->has_in) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003581 error_setg(errp, "input file not supported");
3582 return NULL;
3583 }
3584
3585 out = CreateFile(file->out, GENERIC_WRITE, FILE_SHARE_READ, NULL,
3586 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
3587 if (out == INVALID_HANDLE_VALUE) {
3588 error_setg(errp, "open %s failed", file->out);
3589 return NULL;
3590 }
3591 return qemu_chr_open_win_file(out);
3592}
3593
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003594static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
3595 Error **errp)
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003596{
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003597 return qemu_chr_open_win_path(serial->device);
3598}
3599
3600static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
3601 Error **errp)
3602{
3603 error_setg(errp, "character device backend type 'parallel' not supported");
3604 return NULL;
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003605}
3606
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003607#else /* WIN32 */
3608
3609static int qmp_chardev_open_file_source(char *src, int flags,
3610 Error **errp)
3611{
3612 int fd = -1;
3613
3614 TFR(fd = qemu_open(src, flags, 0666));
3615 if (fd == -1) {
Gerd Hoffmann20c39762013-06-24 08:39:48 +02003616 error_setg_file_open(errp, errno, src);
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003617 }
3618 return fd;
3619}
3620
3621static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
3622{
3623 int flags, in = -1, out = -1;
3624
3625 flags = O_WRONLY | O_TRUNC | O_CREAT | O_BINARY;
3626 out = qmp_chardev_open_file_source(file->out, flags, errp);
3627 if (error_is_set(errp)) {
3628 return NULL;
3629 }
3630
Gerd Hoffmanne859eda2013-06-24 08:39:47 +02003631 if (file->has_in) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003632 flags = O_RDONLY;
3633 in = qmp_chardev_open_file_source(file->in, flags, errp);
3634 if (error_is_set(errp)) {
3635 qemu_close(out);
3636 return NULL;
3637 }
3638 }
3639
3640 return qemu_chr_open_fd(in, out);
3641}
3642
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003643static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
3644 Error **errp)
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003645{
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003646#ifdef HAVE_CHARDEV_TTY
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003647 int fd;
3648
3649 fd = qmp_chardev_open_file_source(serial->device, O_RDWR, errp);
3650 if (error_is_set(errp)) {
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003651 return NULL;
3652 }
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01003653 qemu_set_nonblock(fd);
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003654 return qemu_chr_open_tty_fd(fd);
3655#else
3656 error_setg(errp, "character device backend type 'serial' not supported");
3657 return NULL;
3658#endif
3659}
3660
3661static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
3662 Error **errp)
3663{
3664#ifdef HAVE_CHARDEV_PARPORT
3665 int fd;
3666
3667 fd = qmp_chardev_open_file_source(parallel->device, O_RDWR, errp);
3668 if (error_is_set(errp)) {
3669 return NULL;
3670 }
3671 return qemu_chr_open_pp_fd(fd);
3672#else
3673 error_setg(errp, "character device backend type 'parallel' not supported");
3674 return NULL;
3675#endif
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003676}
3677
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003678#endif /* WIN32 */
3679
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003680static CharDriverState *qmp_chardev_open_socket(ChardevSocket *sock,
3681 Error **errp)
3682{
3683 SocketAddress *addr = sock->addr;
3684 bool do_nodelay = sock->has_nodelay ? sock->nodelay : false;
3685 bool is_listen = sock->has_server ? sock->server : true;
3686 bool is_telnet = sock->has_telnet ? sock->telnet : false;
3687 bool is_waitconnect = sock->has_wait ? sock->wait : false;
3688 int fd;
3689
3690 if (is_listen) {
3691 fd = socket_listen(addr, errp);
3692 } else {
3693 fd = socket_connect(addr, errp, NULL, NULL);
3694 }
3695 if (error_is_set(errp)) {
3696 return NULL;
3697 }
3698 return qemu_chr_open_socket_fd(fd, do_nodelay, is_listen,
3699 is_telnet, is_waitconnect, errp);
3700}
3701
Lei Li08d0ab32013-05-20 14:51:03 +08003702static CharDriverState *qmp_chardev_open_udp(ChardevUdp *udp,
3703 Error **errp)
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01003704{
3705 int fd;
3706
Lei Li08d0ab32013-05-20 14:51:03 +08003707 fd = socket_dgram(udp->remote, udp->local, errp);
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01003708 if (error_is_set(errp)) {
3709 return NULL;
3710 }
3711 return qemu_chr_open_udp_fd(fd);
3712}
3713
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003714ChardevReturn *qmp_chardev_add(const char *id, ChardevBackend *backend,
3715 Error **errp)
3716{
3717 ChardevReturn *ret = g_new0(ChardevReturn, 1);
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003718 CharDriverState *base, *chr = NULL;
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003719
3720 chr = qemu_chr_find(id);
3721 if (chr) {
3722 error_setg(errp, "Chardev '%s' already exists", id);
3723 g_free(ret);
3724 return NULL;
3725 }
3726
3727 switch (backend->kind) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003728 case CHARDEV_BACKEND_KIND_FILE:
3729 chr = qmp_chardev_open_file(backend->file, errp);
3730 break;
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003731 case CHARDEV_BACKEND_KIND_SERIAL:
3732 chr = qmp_chardev_open_serial(backend->serial, errp);
3733 break;
3734 case CHARDEV_BACKEND_KIND_PARALLEL:
3735 chr = qmp_chardev_open_parallel(backend->parallel, errp);
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003736 break;
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01003737 case CHARDEV_BACKEND_KIND_PIPE:
3738 chr = qemu_chr_open_pipe(backend->pipe);
3739 break;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003740 case CHARDEV_BACKEND_KIND_SOCKET:
3741 chr = qmp_chardev_open_socket(backend->socket, errp);
3742 break;
Lei Li08d0ab32013-05-20 14:51:03 +08003743 case CHARDEV_BACKEND_KIND_UDP:
3744 chr = qmp_chardev_open_udp(backend->udp, errp);
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01003745 break;
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01003746#ifdef HAVE_CHARDEV_TTY
3747 case CHARDEV_BACKEND_KIND_PTY:
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01003748 chr = qemu_chr_open_pty(id, ret);
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01003749 break;
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01003750#endif
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003751 case CHARDEV_BACKEND_KIND_NULL:
Gerd Hoffmann80dca9e2013-02-21 11:41:26 +01003752 chr = qemu_chr_open_null();
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003753 break;
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003754 case CHARDEV_BACKEND_KIND_MUX:
3755 base = qemu_chr_find(backend->mux->chardev);
3756 if (base == NULL) {
3757 error_setg(errp, "mux: base chardev %s not found",
3758 backend->mux->chardev);
3759 break;
3760 }
3761 chr = qemu_chr_open_mux(base);
3762 break;
Gerd Hoffmannf5a51ca2013-02-21 11:58:44 +01003763 case CHARDEV_BACKEND_KIND_MSMOUSE:
3764 chr = qemu_chr_open_msmouse();
3765 break;
Gerd Hoffmann2d572862013-02-21 12:56:10 +01003766#ifdef CONFIG_BRLAPI
3767 case CHARDEV_BACKEND_KIND_BRAILLE:
3768 chr = chr_baum_init();
3769 break;
3770#endif
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003771 case CHARDEV_BACKEND_KIND_STDIO:
3772 chr = qemu_chr_open_stdio(backend->stdio);
3773 break;
Gerd Hoffmannd9ac3742013-02-25 11:48:06 +01003774#ifdef _WIN32
3775 case CHARDEV_BACKEND_KIND_CONSOLE:
3776 chr = qemu_chr_open_win_con();
3777 break;
3778#endif
Gerd Hoffmanncd153e22013-02-25 12:39:06 +01003779#ifdef CONFIG_SPICE
3780 case CHARDEV_BACKEND_KIND_SPICEVMC:
3781 chr = qemu_chr_open_spice_vmc(backend->spicevmc->type);
3782 break;
3783 case CHARDEV_BACKEND_KIND_SPICEPORT:
3784 chr = qemu_chr_open_spice_port(backend->spiceport->fqdn);
3785 break;
3786#endif
Gerd Hoffmann702ec692013-02-25 15:52:32 +01003787 case CHARDEV_BACKEND_KIND_VC:
3788 chr = vc_init(backend->vc);
3789 break;
Markus Armbruster3a1da422013-07-26 16:44:34 +02003790 case CHARDEV_BACKEND_KIND_RINGBUF:
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003791 case CHARDEV_BACKEND_KIND_MEMORY:
Markus Armbruster3a1da422013-07-26 16:44:34 +02003792 chr = qemu_chr_open_ringbuf(backend->ringbuf, errp);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003793 break;
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003794 default:
3795 error_setg(errp, "unknown chardev backend (%d)", backend->kind);
3796 break;
3797 }
3798
3799 if (chr == NULL && !error_is_set(errp)) {
3800 error_setg(errp, "Failed to create chardev");
3801 }
3802 if (chr) {
3803 chr->label = g_strdup(id);
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003804 chr->avail_connections =
3805 (backend->kind == CHARDEV_BACKEND_KIND_MUX) ? MAX_MUX : 1;
Gerd Hoffmann60d95382013-05-27 12:41:24 +02003806 if (!chr->filename) {
3807 chr->filename = g_strdup(ChardevBackendKind_lookup[backend->kind]);
3808 }
Michael Rothbd5c51e2013-06-07 15:19:53 -05003809 if (!chr->explicit_be_open) {
3810 qemu_chr_be_event(chr, CHR_EVENT_OPENED);
3811 }
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003812 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
3813 return ret;
3814 } else {
3815 g_free(ret);
3816 return NULL;
3817 }
3818}
3819
3820void qmp_chardev_remove(const char *id, Error **errp)
3821{
3822 CharDriverState *chr;
3823
3824 chr = qemu_chr_find(id);
3825 if (NULL == chr) {
3826 error_setg(errp, "Chardev '%s' not found", id);
3827 return;
3828 }
3829 if (chr->chr_can_read || chr->chr_read ||
3830 chr->chr_event || chr->handler_opaque) {
3831 error_setg(errp, "Chardev '%s' is busy", id);
3832 return;
3833 }
3834 qemu_chr_delete(chr);
3835}
Anthony Liguorid654f342013-03-05 23:21:28 +05303836
3837static void register_types(void)
3838{
Gerd Hoffmann80dca9e2013-02-21 11:41:26 +01003839 register_char_driver_qapi("null", CHARDEV_BACKEND_KIND_NULL, NULL);
Anthony Liguorid654f342013-03-05 23:21:28 +05303840 register_char_driver("socket", qemu_chr_open_socket);
3841 register_char_driver("udp", qemu_chr_open_udp);
Markus Armbruster3a1da422013-07-26 16:44:34 +02003842 register_char_driver_qapi("ringbuf", CHARDEV_BACKEND_KIND_RINGBUF,
Markus Armbruster4f573782013-07-26 16:44:32 +02003843 qemu_chr_parse_ringbuf);
Gerd Hoffmann846e2e42013-02-21 12:07:14 +01003844 register_char_driver_qapi("file", CHARDEV_BACKEND_KIND_FILE,
3845 qemu_chr_parse_file_out);
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003846 register_char_driver_qapi("stdio", CHARDEV_BACKEND_KIND_STDIO,
3847 qemu_chr_parse_stdio);
Gerd Hoffmann0f1cb512013-02-22 15:48:05 +01003848 register_char_driver_qapi("serial", CHARDEV_BACKEND_KIND_SERIAL,
3849 qemu_chr_parse_serial);
3850 register_char_driver_qapi("tty", CHARDEV_BACKEND_KIND_SERIAL,
3851 qemu_chr_parse_serial);
Gerd Hoffmanndc375092013-02-22 16:17:01 +01003852 register_char_driver_qapi("parallel", CHARDEV_BACKEND_KIND_PARALLEL,
3853 qemu_chr_parse_parallel);
3854 register_char_driver_qapi("parport", CHARDEV_BACKEND_KIND_PARALLEL,
3855 qemu_chr_parse_parallel);
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01003856 register_char_driver_qapi("pty", CHARDEV_BACKEND_KIND_PTY, NULL);
Gerd Hoffmannd9ac3742013-02-25 11:48:06 +01003857 register_char_driver_qapi("console", CHARDEV_BACKEND_KIND_CONSOLE, NULL);
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01003858 register_char_driver_qapi("pipe", CHARDEV_BACKEND_KIND_PIPE,
3859 qemu_chr_parse_pipe);
Gerd Hoffmannbb6fb7c2013-06-24 08:39:54 +02003860 register_char_driver_qapi("mux", CHARDEV_BACKEND_KIND_MUX,
3861 qemu_chr_parse_mux);
Markus Armbrusterc11ed962013-07-26 16:44:33 +02003862 /* Bug-compatibility: */
3863 register_char_driver_qapi("memory", CHARDEV_BACKEND_KIND_MEMORY,
3864 qemu_chr_parse_ringbuf);
Michael Roth7b7ab182013-07-30 13:04:22 -05003865 /* this must be done after machine init, since we register FEs with muxes
3866 * as part of realize functions like serial_isa_realizefn when -nographic
3867 * is specified
3868 */
3869 qemu_add_machine_init_done_notifier(&muxes_realize_notify);
Anthony Liguorid654f342013-03-05 23:21:28 +05303870}
3871
3872type_init(register_types);