blob: 6dba943667ffbba9714614f50ac4cdaf915b7492 [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 Bonzini927d4872012-12-17 18:20:05 +010029#include "char/char.h"
aurel32cf3ebac2008-11-01 00:53:09 +000030#include "hw/usb.h"
31#include "hw/baum.h"
aurel32aa71cf82009-02-08 15:53:20 +000032#include "hw/msmouse.h"
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -030033#include "qmp-commands.h"
aliguori6f97dba2008-10-31 18:49:55 +000034
35#include <unistd.h>
36#include <fcntl.h>
aliguori6f97dba2008-10-31 18:49:55 +000037#include <time.h>
38#include <errno.h>
39#include <sys/time.h>
40#include <zlib.h>
41
42#ifndef _WIN32
43#include <sys/times.h>
44#include <sys/wait.h>
45#include <termios.h>
46#include <sys/mman.h>
47#include <sys/ioctl.h>
blueswir124646c72008-11-07 16:55:48 +000048#include <sys/resource.h>
aliguori6f97dba2008-10-31 18:49:55 +000049#include <sys/socket.h>
50#include <netinet/in.h>
blueswir124646c72008-11-07 16:55:48 +000051#include <net/if.h>
blueswir124646c72008-11-07 16:55:48 +000052#include <arpa/inet.h>
aliguori6f97dba2008-10-31 18:49:55 +000053#include <dirent.h>
54#include <netdb.h>
55#include <sys/select.h>
Juan Quintela71e72a12009-07-27 16:12:56 +020056#ifdef CONFIG_BSD
aliguori6f97dba2008-10-31 18:49:55 +000057#include <sys/stat.h>
Aurelien Jarnoa167ba52009-11-29 18:00:41 +010058#if defined(__GLIBC__)
59#include <pty.h>
Michael Tokarev3294ce12012-06-02 23:43:33 +040060#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
blueswir1c5e97232009-03-07 20:06:23 +000061#include <libutil.h>
blueswir124646c72008-11-07 16:55:48 +000062#else
63#include <util.h>
aliguori6f97dba2008-10-31 18:49:55 +000064#endif
Michael Tokarev3294ce12012-06-02 23:43:33 +040065#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
66#include <dev/ppbus/ppi.h>
67#include <dev/ppbus/ppbconf.h>
68#elif defined(__DragonFly__)
69#include <dev/misc/ppi/ppi.h>
70#include <bus/ppbus/ppbconf.h>
71#endif
Aurelien Jarnobbe813a2009-11-30 15:42:59 +010072#else
aliguori6f97dba2008-10-31 18:49:55 +000073#ifdef __linux__
aliguori6f97dba2008-10-31 18:49:55 +000074#include <pty.h>
75
76#include <linux/ppdev.h>
77#include <linux/parport.h>
78#endif
79#ifdef __sun__
80#include <sys/stat.h>
81#include <sys/ethernet.h>
82#include <sys/sockio.h>
83#include <netinet/arp.h>
84#include <netinet/in.h>
85#include <netinet/in_systm.h>
86#include <netinet/ip.h>
87#include <netinet/ip_icmp.h> // must come after ip.h
88#include <netinet/udp.h>
89#include <netinet/tcp.h>
90#include <net/if.h>
91#include <syslog.h>
92#include <stropts.h>
93#endif
94#endif
95#endif
96
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010097#include "qemu/sockets.h"
Alon Levycbcc6332011-01-19 10:49:50 +020098#include "ui/qemu-spice.h"
aliguori6f97dba2008-10-31 18:49:55 +000099
Amit Shah9bd78542009-11-03 19:59:54 +0530100#define READ_BUF_LEN 4096
101
aliguori6f97dba2008-10-31 18:49:55 +0000102/***********************************************************/
103/* character device */
104
Blue Swirl72cf2d42009-09-12 07:36:22 +0000105static QTAILQ_HEAD(CharDriverStateHead, CharDriverState) chardevs =
106 QTAILQ_HEAD_INITIALIZER(chardevs);
aliguori2970a6c2009-03-05 22:59:58 +0000107
Hans de Goedea425d232011-11-19 10:22:43 +0100108void qemu_chr_be_event(CharDriverState *s, int event)
aliguori6f97dba2008-10-31 18:49:55 +0000109{
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200110 /* Keep track if the char device is open */
111 switch (event) {
112 case CHR_EVENT_OPENED:
113 s->opened = 1;
114 break;
115 case CHR_EVENT_CLOSED:
116 s->opened = 0;
117 break;
118 }
119
aliguori6f97dba2008-10-31 18:49:55 +0000120 if (!s->chr_event)
121 return;
122 s->chr_event(s->handler_opaque, event);
123}
124
Jan Kiszkaac4119c2012-10-12 09:52:49 +0200125static void qemu_chr_fire_open_event(void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +0000126{
127 CharDriverState *s = opaque;
Hans de Goedea425d232011-11-19 10:22:43 +0100128 qemu_chr_be_event(s, CHR_EVENT_OPENED);
Jan Kiszkaac4119c2012-10-12 09:52:49 +0200129 qemu_free_timer(s->open_timer);
130 s->open_timer = NULL;
aliguori6f97dba2008-10-31 18:49:55 +0000131}
132
Amit Shah127338e2009-11-03 19:59:56 +0530133void qemu_chr_generic_open(CharDriverState *s)
aliguori6f97dba2008-10-31 18:49:55 +0000134{
Jan Kiszkaac4119c2012-10-12 09:52:49 +0200135 if (s->open_timer == NULL) {
Jan Kiszka06dec082012-11-22 18:30:02 +0100136 s->open_timer = qemu_new_timer_ms(rt_clock,
Jan Kiszkaac4119c2012-10-12 09:52:49 +0200137 qemu_chr_fire_open_event, s);
Jan Kiszka06dec082012-11-22 18:30:02 +0100138 qemu_mod_timer(s->open_timer, qemu_get_clock_ms(rt_clock) - 1);
aliguori6f97dba2008-10-31 18:49:55 +0000139 }
140}
141
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500142int qemu_chr_fe_write(CharDriverState *s, const uint8_t *buf, int len)
aliguori6f97dba2008-10-31 18:49:55 +0000143{
144 return s->chr_write(s, buf, len);
145}
146
Anthony Liguori41084f12011-08-15 11:17:34 -0500147int qemu_chr_fe_ioctl(CharDriverState *s, int cmd, void *arg)
aliguori6f97dba2008-10-31 18:49:55 +0000148{
149 if (!s->chr_ioctl)
150 return -ENOTSUP;
151 return s->chr_ioctl(s, cmd, arg);
152}
153
Anthony Liguori909cda12011-08-15 11:17:31 -0500154int qemu_chr_be_can_write(CharDriverState *s)
aliguori6f97dba2008-10-31 18:49:55 +0000155{
156 if (!s->chr_can_read)
157 return 0;
158 return s->chr_can_read(s->handler_opaque);
159}
160
Anthony Liguorifa5efcc2011-08-15 11:17:30 -0500161void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len)
aliguori6f97dba2008-10-31 18:49:55 +0000162{
Stefan Weilac310732012-04-19 22:27:14 +0200163 if (s->chr_read) {
164 s->chr_read(s->handler_opaque, buf, len);
165 }
aliguori6f97dba2008-10-31 18:49:55 +0000166}
167
Anthony Liguori74c0d6f2011-08-15 11:17:39 -0500168int qemu_chr_fe_get_msgfd(CharDriverState *s)
Mark McLoughlin7d174052009-07-22 09:11:39 +0100169{
170 return s->get_msgfd ? s->get_msgfd(s) : -1;
171}
172
Daniel P. Berrange13661082011-06-23 13:31:42 +0100173int qemu_chr_add_client(CharDriverState *s, int fd)
174{
175 return s->chr_add_client ? s->chr_add_client(s, fd) : -1;
176}
177
aliguori6f97dba2008-10-31 18:49:55 +0000178void qemu_chr_accept_input(CharDriverState *s)
179{
180 if (s->chr_accept_input)
181 s->chr_accept_input(s);
Jan Kiszka98c8ee12012-03-16 13:18:00 +0100182 qemu_notify_event();
aliguori6f97dba2008-10-31 18:49:55 +0000183}
184
Anthony Liguorie7e71b02011-08-15 11:17:29 -0500185void qemu_chr_fe_printf(CharDriverState *s, const char *fmt, ...)
aliguori6f97dba2008-10-31 18:49:55 +0000186{
Amit Shah9bd78542009-11-03 19:59:54 +0530187 char buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +0000188 va_list ap;
189 va_start(ap, fmt);
190 vsnprintf(buf, sizeof(buf), fmt, ap);
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500191 qemu_chr_fe_write(s, (uint8_t *)buf, strlen(buf));
aliguori6f97dba2008-10-31 18:49:55 +0000192 va_end(ap);
193}
194
aliguori6f97dba2008-10-31 18:49:55 +0000195void qemu_chr_add_handlers(CharDriverState *s,
Juan Quintela7b27a762010-03-11 17:55:39 +0100196 IOCanReadHandler *fd_can_read,
aliguori6f97dba2008-10-31 18:49:55 +0000197 IOReadHandler *fd_read,
198 IOEventHandler *fd_event,
199 void *opaque)
200{
Amit Shahda7d9982011-04-25 15:18:22 +0530201 if (!opaque && !fd_can_read && !fd_read && !fd_event) {
Amit Shah2d6c1ef2011-02-10 12:55:20 +0530202 /* chr driver being released. */
Kusanagi Kouichid5b27162011-04-26 19:19:26 +0900203 ++s->avail_connections;
Amit Shah2d6c1ef2011-02-10 12:55:20 +0530204 }
aliguori6f97dba2008-10-31 18:49:55 +0000205 s->chr_can_read = fd_can_read;
206 s->chr_read = fd_read;
207 s->chr_event = fd_event;
208 s->handler_opaque = opaque;
209 if (s->chr_update_read_handler)
210 s->chr_update_read_handler(s);
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200211
212 /* We're connecting to an already opened device, so let's make sure we
213 also get the open event */
214 if (s->opened) {
215 qemu_chr_generic_open(s);
216 }
aliguori6f97dba2008-10-31 18:49:55 +0000217}
218
219static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
220{
221 return len;
222}
223
Markus Armbruster1f514702012-02-07 15:09:08 +0100224static CharDriverState *qemu_chr_open_null(QemuOpts *opts)
aliguori6f97dba2008-10-31 18:49:55 +0000225{
226 CharDriverState *chr;
227
Anthony Liguori7267c092011-08-20 22:09:37 -0500228 chr = g_malloc0(sizeof(CharDriverState));
aliguori6f97dba2008-10-31 18:49:55 +0000229 chr->chr_write = null_chr_write;
Markus Armbruster1f514702012-02-07 15:09:08 +0100230 return chr;
aliguori6f97dba2008-10-31 18:49:55 +0000231}
232
233/* MUX driver for serial I/O splitting */
aliguori6f97dba2008-10-31 18:49:55 +0000234#define MAX_MUX 4
235#define MUX_BUFFER_SIZE 32 /* Must be a power of 2. */
236#define MUX_BUFFER_MASK (MUX_BUFFER_SIZE - 1)
237typedef struct {
Juan Quintela7b27a762010-03-11 17:55:39 +0100238 IOCanReadHandler *chr_can_read[MAX_MUX];
aliguori6f97dba2008-10-31 18:49:55 +0000239 IOReadHandler *chr_read[MAX_MUX];
240 IOEventHandler *chr_event[MAX_MUX];
241 void *ext_opaque[MAX_MUX];
242 CharDriverState *drv;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200243 int focus;
aliguori6f97dba2008-10-31 18:49:55 +0000244 int mux_cnt;
245 int term_got_escape;
246 int max_size;
aliguoria80bf992009-03-05 23:00:02 +0000247 /* Intermediate input buffer allows to catch escape sequences even if the
248 currently active device is not accepting any input - but only until it
249 is full as well. */
250 unsigned char buffer[MAX_MUX][MUX_BUFFER_SIZE];
251 int prod[MAX_MUX];
252 int cons[MAX_MUX];
Jan Kiszka2d229592009-06-15 22:25:30 +0200253 int timestamps;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200254 int linestart;
Jan Kiszka2d229592009-06-15 22:25:30 +0200255 int64_t timestamps_start;
aliguori6f97dba2008-10-31 18:49:55 +0000256} MuxDriver;
257
258
259static int mux_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
260{
261 MuxDriver *d = chr->opaque;
262 int ret;
Jan Kiszka2d229592009-06-15 22:25:30 +0200263 if (!d->timestamps) {
aliguori6f97dba2008-10-31 18:49:55 +0000264 ret = d->drv->chr_write(d->drv, buf, len);
265 } else {
266 int i;
267
268 ret = 0;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200269 for (i = 0; i < len; i++) {
270 if (d->linestart) {
aliguori6f97dba2008-10-31 18:49:55 +0000271 char buf1[64];
272 int64_t ti;
273 int secs;
274
Paolo Bonzini7bd427d2011-03-11 16:47:48 +0100275 ti = qemu_get_clock_ms(rt_clock);
Jan Kiszka2d229592009-06-15 22:25:30 +0200276 if (d->timestamps_start == -1)
277 d->timestamps_start = ti;
278 ti -= d->timestamps_start;
aliguoria4bb1db2009-01-22 17:15:16 +0000279 secs = ti / 1000;
aliguori6f97dba2008-10-31 18:49:55 +0000280 snprintf(buf1, sizeof(buf1),
281 "[%02d:%02d:%02d.%03d] ",
282 secs / 3600,
283 (secs / 60) % 60,
284 secs % 60,
aliguoria4bb1db2009-01-22 17:15:16 +0000285 (int)(ti % 1000));
aliguori6f97dba2008-10-31 18:49:55 +0000286 d->drv->chr_write(d->drv, (uint8_t *)buf1, strlen(buf1));
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200287 d->linestart = 0;
288 }
289 ret += d->drv->chr_write(d->drv, buf+i, 1);
290 if (buf[i] == '\n') {
291 d->linestart = 1;
aliguori6f97dba2008-10-31 18:49:55 +0000292 }
293 }
294 }
295 return ret;
296}
297
298static const char * const mux_help[] = {
299 "% h print this help\n\r",
300 "% x exit emulator\n\r",
301 "% s save disk data back to file (if -snapshot)\n\r",
302 "% t toggle console timestamps\n\r"
303 "% b send break (magic sysrq)\n\r",
304 "% c switch between console and monitor\n\r",
305 "% % sends %\n\r",
306 NULL
307};
308
309int term_escape_char = 0x01; /* ctrl-a is used for escape */
310static void mux_print_help(CharDriverState *chr)
311{
312 int i, j;
313 char ebuf[15] = "Escape-Char";
314 char cbuf[50] = "\n\r";
315
316 if (term_escape_char > 0 && term_escape_char < 26) {
317 snprintf(cbuf, sizeof(cbuf), "\n\r");
318 snprintf(ebuf, sizeof(ebuf), "C-%c", term_escape_char - 1 + 'a');
319 } else {
320 snprintf(cbuf, sizeof(cbuf),
321 "\n\rEscape-Char set to Ascii: 0x%02x\n\r\n\r",
322 term_escape_char);
323 }
324 chr->chr_write(chr, (uint8_t *)cbuf, strlen(cbuf));
325 for (i = 0; mux_help[i] != NULL; i++) {
326 for (j=0; mux_help[i][j] != '\0'; j++) {
327 if (mux_help[i][j] == '%')
328 chr->chr_write(chr, (uint8_t *)ebuf, strlen(ebuf));
329 else
330 chr->chr_write(chr, (uint8_t *)&mux_help[i][j], 1);
331 }
332 }
333}
334
aliguori2724b182009-03-05 23:01:47 +0000335static void mux_chr_send_event(MuxDriver *d, int mux_nr, int event)
336{
337 if (d->chr_event[mux_nr])
338 d->chr_event[mux_nr](d->ext_opaque[mux_nr], event);
339}
340
aliguori6f97dba2008-10-31 18:49:55 +0000341static int mux_proc_byte(CharDriverState *chr, MuxDriver *d, int ch)
342{
343 if (d->term_got_escape) {
344 d->term_got_escape = 0;
345 if (ch == term_escape_char)
346 goto send_char;
347 switch(ch) {
348 case '?':
349 case 'h':
350 mux_print_help(chr);
351 break;
352 case 'x':
353 {
354 const char *term = "QEMU: Terminated\n\r";
355 chr->chr_write(chr,(uint8_t *)term,strlen(term));
356 exit(0);
357 break;
358 }
359 case 's':
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +0200360 bdrv_commit_all();
aliguori6f97dba2008-10-31 18:49:55 +0000361 break;
362 case 'b':
Hans de Goedea425d232011-11-19 10:22:43 +0100363 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
aliguori6f97dba2008-10-31 18:49:55 +0000364 break;
365 case 'c':
366 /* Switch to the next registered device */
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200367 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
368 d->focus++;
369 if (d->focus >= d->mux_cnt)
370 d->focus = 0;
371 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
aliguori6f97dba2008-10-31 18:49:55 +0000372 break;
Jan Kiszka2d229592009-06-15 22:25:30 +0200373 case 't':
374 d->timestamps = !d->timestamps;
375 d->timestamps_start = -1;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200376 d->linestart = 0;
Jan Kiszka2d229592009-06-15 22:25:30 +0200377 break;
aliguori6f97dba2008-10-31 18:49:55 +0000378 }
379 } else if (ch == term_escape_char) {
380 d->term_got_escape = 1;
381 } else {
382 send_char:
383 return 1;
384 }
385 return 0;
386}
387
388static void mux_chr_accept_input(CharDriverState *chr)
389{
aliguori6f97dba2008-10-31 18:49:55 +0000390 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200391 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000392
aliguoria80bf992009-03-05 23:00:02 +0000393 while (d->prod[m] != d->cons[m] &&
aliguori6f97dba2008-10-31 18:49:55 +0000394 d->chr_can_read[m] &&
395 d->chr_can_read[m](d->ext_opaque[m])) {
396 d->chr_read[m](d->ext_opaque[m],
aliguoria80bf992009-03-05 23:00:02 +0000397 &d->buffer[m][d->cons[m]++ & MUX_BUFFER_MASK], 1);
aliguori6f97dba2008-10-31 18:49:55 +0000398 }
399}
400
401static int mux_chr_can_read(void *opaque)
402{
403 CharDriverState *chr = opaque;
404 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200405 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000406
aliguoria80bf992009-03-05 23:00:02 +0000407 if ((d->prod[m] - d->cons[m]) < MUX_BUFFER_SIZE)
aliguori6f97dba2008-10-31 18:49:55 +0000408 return 1;
aliguoria80bf992009-03-05 23:00:02 +0000409 if (d->chr_can_read[m])
410 return d->chr_can_read[m](d->ext_opaque[m]);
aliguori6f97dba2008-10-31 18:49:55 +0000411 return 0;
412}
413
414static void mux_chr_read(void *opaque, const uint8_t *buf, int size)
415{
416 CharDriverState *chr = opaque;
417 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200418 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000419 int i;
420
421 mux_chr_accept_input (opaque);
422
423 for(i = 0; i < size; i++)
424 if (mux_proc_byte(chr, d, buf[i])) {
aliguoria80bf992009-03-05 23:00:02 +0000425 if (d->prod[m] == d->cons[m] &&
aliguori6f97dba2008-10-31 18:49:55 +0000426 d->chr_can_read[m] &&
427 d->chr_can_read[m](d->ext_opaque[m]))
428 d->chr_read[m](d->ext_opaque[m], &buf[i], 1);
429 else
aliguoria80bf992009-03-05 23:00:02 +0000430 d->buffer[m][d->prod[m]++ & MUX_BUFFER_MASK] = buf[i];
aliguori6f97dba2008-10-31 18:49:55 +0000431 }
432}
433
434static void mux_chr_event(void *opaque, int event)
435{
436 CharDriverState *chr = opaque;
437 MuxDriver *d = chr->opaque;
438 int i;
439
440 /* Send the event to all registered listeners */
441 for (i = 0; i < d->mux_cnt; i++)
aliguori2724b182009-03-05 23:01:47 +0000442 mux_chr_send_event(d, i, event);
aliguori6f97dba2008-10-31 18:49:55 +0000443}
444
445static void mux_chr_update_read_handler(CharDriverState *chr)
446{
447 MuxDriver *d = chr->opaque;
448
449 if (d->mux_cnt >= MAX_MUX) {
450 fprintf(stderr, "Cannot add I/O handlers, MUX array is full\n");
451 return;
452 }
453 d->ext_opaque[d->mux_cnt] = chr->handler_opaque;
454 d->chr_can_read[d->mux_cnt] = chr->chr_can_read;
455 d->chr_read[d->mux_cnt] = chr->chr_read;
456 d->chr_event[d->mux_cnt] = chr->chr_event;
457 /* Fix up the real driver with mux routines */
458 if (d->mux_cnt == 0) {
459 qemu_chr_add_handlers(d->drv, mux_chr_can_read, mux_chr_read,
460 mux_chr_event, chr);
461 }
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200462 if (d->focus != -1) {
463 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200464 }
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200465 d->focus = d->mux_cnt;
aliguori6f97dba2008-10-31 18:49:55 +0000466 d->mux_cnt++;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200467 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
aliguori6f97dba2008-10-31 18:49:55 +0000468}
469
470static CharDriverState *qemu_chr_open_mux(CharDriverState *drv)
471{
472 CharDriverState *chr;
473 MuxDriver *d;
474
Anthony Liguori7267c092011-08-20 22:09:37 -0500475 chr = g_malloc0(sizeof(CharDriverState));
476 d = g_malloc0(sizeof(MuxDriver));
aliguori6f97dba2008-10-31 18:49:55 +0000477
478 chr->opaque = d;
479 d->drv = drv;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200480 d->focus = -1;
aliguori6f97dba2008-10-31 18:49:55 +0000481 chr->chr_write = mux_chr_write;
482 chr->chr_update_read_handler = mux_chr_update_read_handler;
483 chr->chr_accept_input = mux_chr_accept_input;
Hans de Goede7c32c4f2011-03-24 11:12:02 +0100484 /* Frontend guest-open / -close notification is not support with muxes */
485 chr->chr_guest_open = NULL;
486 chr->chr_guest_close = NULL;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200487
488 /* Muxes are always open on creation */
489 qemu_chr_generic_open(chr);
490
aliguori6f97dba2008-10-31 18:49:55 +0000491 return chr;
492}
493
494
495#ifdef _WIN32
aliguorid247d252008-11-11 20:46:40 +0000496int send_all(int fd, const void *buf, int len1)
aliguori6f97dba2008-10-31 18:49:55 +0000497{
498 int ret, len;
499
500 len = len1;
501 while (len > 0) {
502 ret = send(fd, buf, len, 0);
503 if (ret < 0) {
aliguori6f97dba2008-10-31 18:49:55 +0000504 errno = WSAGetLastError();
505 if (errno != WSAEWOULDBLOCK) {
506 return -1;
507 }
508 } else if (ret == 0) {
509 break;
510 } else {
511 buf += ret;
512 len -= ret;
513 }
514 }
515 return len1 - len;
516}
517
518#else
519
Jes Sorensen5fc9cfe2010-11-01 20:02:23 +0100520int send_all(int fd, const void *_buf, int len1)
aliguori6f97dba2008-10-31 18:49:55 +0000521{
522 int ret, len;
Jes Sorensen5fc9cfe2010-11-01 20:02:23 +0100523 const uint8_t *buf = _buf;
aliguori6f97dba2008-10-31 18:49:55 +0000524
525 len = len1;
526 while (len > 0) {
527 ret = write(fd, buf, len);
528 if (ret < 0) {
529 if (errno != EINTR && errno != EAGAIN)
530 return -1;
531 } else if (ret == 0) {
532 break;
533 } else {
534 buf += ret;
535 len -= ret;
536 }
537 }
538 return len1 - len;
539}
aliguori6f97dba2008-10-31 18:49:55 +0000540#endif /* !_WIN32 */
541
542#ifndef _WIN32
543
Anthony Liguori96c63842013-03-05 23:21:18 +0530544typedef struct IOWatchPoll
545{
546 GSource *src;
547 int max_size;
548
549 IOCanReadHandler *fd_can_read;
550 void *opaque;
551
552 QTAILQ_ENTRY(IOWatchPoll) node;
553} IOWatchPoll;
554
555static QTAILQ_HEAD(, IOWatchPoll) io_watch_poll_list =
556 QTAILQ_HEAD_INITIALIZER(io_watch_poll_list);
557
558static IOWatchPoll *io_watch_poll_from_source(GSource *source)
559{
560 IOWatchPoll *i;
561
562 QTAILQ_FOREACH(i, &io_watch_poll_list, node) {
563 if (i->src == source) {
564 return i;
565 }
566 }
567
568 return NULL;
569}
570
571static gboolean io_watch_poll_prepare(GSource *source, gint *timeout_)
572{
573 IOWatchPoll *iwp = io_watch_poll_from_source(source);
574
575 iwp->max_size = iwp->fd_can_read(iwp->opaque);
576 if (iwp->max_size == 0) {
577 return FALSE;
578 }
579
580 return g_io_watch_funcs.prepare(source, timeout_);
581}
582
583static gboolean io_watch_poll_check(GSource *source)
584{
585 IOWatchPoll *iwp = io_watch_poll_from_source(source);
586
587 if (iwp->max_size == 0) {
588 return FALSE;
589 }
590
591 return g_io_watch_funcs.check(source);
592}
593
594static gboolean io_watch_poll_dispatch(GSource *source, GSourceFunc callback,
595 gpointer user_data)
596{
597 return g_io_watch_funcs.dispatch(source, callback, user_data);
598}
599
600static void io_watch_poll_finalize(GSource *source)
601{
602 IOWatchPoll *iwp = io_watch_poll_from_source(source);
603 QTAILQ_REMOVE(&io_watch_poll_list, iwp, node);
604 g_io_watch_funcs.finalize(source);
605}
606
607static GSourceFuncs io_watch_poll_funcs = {
608 .prepare = io_watch_poll_prepare,
609 .check = io_watch_poll_check,
610 .dispatch = io_watch_poll_dispatch,
611 .finalize = io_watch_poll_finalize,
612};
613
614/* Can only be used for read */
615static guint io_add_watch_poll(GIOChannel *channel,
616 IOCanReadHandler *fd_can_read,
617 GIOFunc fd_read,
618 gpointer user_data)
619{
620 IOWatchPoll *iwp;
621 GSource *src;
622 guint tag;
623
624 src = g_io_create_watch(channel, G_IO_IN | G_IO_ERR | G_IO_HUP);
625 g_source_set_funcs(src, &io_watch_poll_funcs);
626 g_source_set_callback(src, (GSourceFunc)fd_read, user_data, NULL);
627 tag = g_source_attach(src, NULL);
628 g_source_unref(src);
629
630 iwp = g_malloc0(sizeof(*iwp));
631 iwp->src = src;
632 iwp->max_size = 0;
633 iwp->fd_can_read = fd_can_read;
634 iwp->opaque = user_data;
635
636 QTAILQ_INSERT_HEAD(&io_watch_poll_list, iwp, node);
637
638 return tag;
639}
640
641static GIOChannel *io_channel_from_fd(int fd)
642{
643 GIOChannel *chan;
644
645 if (fd == -1) {
646 return NULL;
647 }
648
649 chan = g_io_channel_unix_new(fd);
650
651 g_io_channel_set_encoding(chan, NULL, NULL);
652 g_io_channel_set_buffered(chan, FALSE);
653
654 return chan;
655}
656
Anthony Liguori76a96442013-03-05 23:21:21 +0530657static GIOChannel *io_channel_from_socket(int fd)
658{
659 GIOChannel *chan;
660
661 if (fd == -1) {
662 return NULL;
663 }
664
665#ifdef _WIN32
666 chan = g_io_channel_win32_new_socket(fd);
667#else
668 chan = g_io_channel_unix_new(fd);
669#endif
670
671 g_io_channel_set_encoding(chan, NULL, NULL);
672 g_io_channel_set_buffered(chan, FALSE);
673
674 return chan;
675}
676
Anthony Liguori96c63842013-03-05 23:21:18 +0530677static int io_channel_send_all(GIOChannel *fd, const void *_buf, int len1)
678{
679 GIOStatus status;
680 gsize bytes_written;
681 int len;
682 const uint8_t *buf = _buf;
683
684 len = len1;
685 while (len > 0) {
686 status = g_io_channel_write_chars(fd, (const gchar *)buf, len,
687 &bytes_written, NULL);
688 if (status != G_IO_STATUS_NORMAL) {
Anthony Liguori23673ca2013-03-05 23:21:23 +0530689 if (status == G_IO_STATUS_AGAIN) {
690 errno = EAGAIN;
691 return -1;
692 } else {
693 errno = EINVAL;
Anthony Liguori96c63842013-03-05 23:21:18 +0530694 return -1;
695 }
696 } else if (status == G_IO_STATUS_EOF) {
697 break;
698 } else {
699 buf += bytes_written;
700 len -= bytes_written;
701 }
702 }
703 return len1 - len;
704}
Anthony Liguori96c63842013-03-05 23:21:18 +0530705
Anthony Liguoria29753f2013-03-05 23:21:19 +0530706typedef struct FDCharDriver {
707 CharDriverState *chr;
708 GIOChannel *fd_in, *fd_out;
709 guint fd_in_tag;
aliguori6f97dba2008-10-31 18:49:55 +0000710 int max_size;
Anthony Liguoria29753f2013-03-05 23:21:19 +0530711 QTAILQ_ENTRY(FDCharDriver) node;
aliguori6f97dba2008-10-31 18:49:55 +0000712} FDCharDriver;
713
aliguori6f97dba2008-10-31 18:49:55 +0000714static int fd_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
715{
716 FDCharDriver *s = chr->opaque;
Anthony Liguoria29753f2013-03-05 23:21:19 +0530717
718 return io_channel_send_all(s->fd_out, buf, len);
719}
720
721static gboolean fd_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
722{
723 CharDriverState *chr = opaque;
724 FDCharDriver *s = chr->opaque;
725 int len;
726 uint8_t buf[READ_BUF_LEN];
727 GIOStatus status;
728 gsize bytes_read;
729
730 len = sizeof(buf);
731 if (len > s->max_size) {
732 len = s->max_size;
733 }
734 if (len == 0) {
735 return FALSE;
736 }
737
738 status = g_io_channel_read_chars(chan, (gchar *)buf,
739 len, &bytes_read, NULL);
740 if (status == G_IO_STATUS_EOF) {
741 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
742 return FALSE;
743 }
744 if (status == G_IO_STATUS_NORMAL) {
745 qemu_chr_be_write(chr, buf, bytes_read);
746 }
747
748 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +0000749}
750
751static int fd_chr_read_poll(void *opaque)
752{
753 CharDriverState *chr = opaque;
754 FDCharDriver *s = chr->opaque;
755
Anthony Liguori909cda12011-08-15 11:17:31 -0500756 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +0000757 return s->max_size;
758}
759
Anthony Liguori23673ca2013-03-05 23:21:23 +0530760static GSource *fd_chr_add_watch(CharDriverState *chr, GIOCondition cond)
761{
762 FDCharDriver *s = chr->opaque;
763 return g_io_create_watch(s->fd_out, cond);
764}
765
aliguori6f97dba2008-10-31 18:49:55 +0000766static void fd_chr_update_read_handler(CharDriverState *chr)
767{
768 FDCharDriver *s = chr->opaque;
769
Anthony Liguoria29753f2013-03-05 23:21:19 +0530770 if (s->fd_in_tag) {
771 g_source_remove(s->fd_in_tag);
772 }
773
774 if (s->fd_in) {
775 s->fd_in_tag = io_add_watch_poll(s->fd_in, fd_chr_read_poll, fd_chr_read, chr);
aliguori6f97dba2008-10-31 18:49:55 +0000776 }
777}
778
779static void fd_chr_close(struct CharDriverState *chr)
780{
781 FDCharDriver *s = chr->opaque;
782
Anthony Liguoria29753f2013-03-05 23:21:19 +0530783 if (s->fd_in_tag) {
784 g_source_remove(s->fd_in_tag);
785 s->fd_in_tag = 0;
786 }
787
788 if (s->fd_in) {
789 g_io_channel_unref(s->fd_in);
790 }
791 if (s->fd_out) {
792 g_io_channel_unref(s->fd_out);
aliguori6f97dba2008-10-31 18:49:55 +0000793 }
794
Anthony Liguori7267c092011-08-20 22:09:37 -0500795 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +0100796 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +0000797}
798
799/* open a character device to a unix fd */
800static CharDriverState *qemu_chr_open_fd(int fd_in, int fd_out)
801{
802 CharDriverState *chr;
803 FDCharDriver *s;
804
Anthony Liguori7267c092011-08-20 22:09:37 -0500805 chr = g_malloc0(sizeof(CharDriverState));
806 s = g_malloc0(sizeof(FDCharDriver));
Anthony Liguoria29753f2013-03-05 23:21:19 +0530807 s->fd_in = io_channel_from_fd(fd_in);
808 s->fd_out = io_channel_from_fd(fd_out);
Anthony Liguori23673ca2013-03-05 23:21:23 +0530809 fcntl(fd_out, F_SETFL, O_NONBLOCK);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530810 s->chr = chr;
aliguori6f97dba2008-10-31 18:49:55 +0000811 chr->opaque = s;
Anthony Liguori23673ca2013-03-05 23:21:23 +0530812 chr->chr_add_watch = fd_chr_add_watch;
aliguori6f97dba2008-10-31 18:49:55 +0000813 chr->chr_write = fd_chr_write;
814 chr->chr_update_read_handler = fd_chr_update_read_handler;
815 chr->chr_close = fd_chr_close;
816
Amit Shah127338e2009-11-03 19:59:56 +0530817 qemu_chr_generic_open(chr);
aliguori6f97dba2008-10-31 18:49:55 +0000818
819 return chr;
820}
821
Markus Armbruster1f514702012-02-07 15:09:08 +0100822static CharDriverState *qemu_chr_open_file_out(QemuOpts *opts)
aliguori6f97dba2008-10-31 18:49:55 +0000823{
824 int fd_out;
825
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100826 TFR(fd_out = qemu_open(qemu_opt_get(opts, "path"),
Gerd Hoffmann7d315442009-09-10 10:58:36 +0200827 O_WRONLY | O_TRUNC | O_CREAT | O_BINARY, 0666));
Markus Armbrustera89dd6c2012-02-07 15:09:10 +0100828 if (fd_out < 0) {
Markus Armbruster1f514702012-02-07 15:09:08 +0100829 return NULL;
Markus Armbrustera89dd6c2012-02-07 15:09:10 +0100830 }
Markus Armbruster1f514702012-02-07 15:09:08 +0100831 return qemu_chr_open_fd(-1, fd_out);
aliguori6f97dba2008-10-31 18:49:55 +0000832}
833
Markus Armbruster1f514702012-02-07 15:09:08 +0100834static CharDriverState *qemu_chr_open_pipe(QemuOpts *opts)
aliguori6f97dba2008-10-31 18:49:55 +0000835{
836 int fd_in, fd_out;
837 char filename_in[256], filename_out[256];
Gerd Hoffmann7d315442009-09-10 10:58:36 +0200838 const char *filename = qemu_opt_get(opts, "path");
839
840 if (filename == NULL) {
841 fprintf(stderr, "chardev: pipe: no filename given\n");
Markus Armbruster1f514702012-02-07 15:09:08 +0100842 return NULL;
Gerd Hoffmann7d315442009-09-10 10:58:36 +0200843 }
aliguori6f97dba2008-10-31 18:49:55 +0000844
845 snprintf(filename_in, 256, "%s.in", filename);
846 snprintf(filename_out, 256, "%s.out", filename);
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100847 TFR(fd_in = qemu_open(filename_in, O_RDWR | O_BINARY));
848 TFR(fd_out = qemu_open(filename_out, O_RDWR | O_BINARY));
aliguori6f97dba2008-10-31 18:49:55 +0000849 if (fd_in < 0 || fd_out < 0) {
850 if (fd_in >= 0)
851 close(fd_in);
852 if (fd_out >= 0)
853 close(fd_out);
Markus Armbrusterb181e042012-02-07 15:09:09 +0100854 TFR(fd_in = fd_out = qemu_open(filename, O_RDWR | O_BINARY));
Markus Armbrustera89dd6c2012-02-07 15:09:10 +0100855 if (fd_in < 0) {
Markus Armbruster1f514702012-02-07 15:09:08 +0100856 return NULL;
Markus Armbrustera89dd6c2012-02-07 15:09:10 +0100857 }
aliguori6f97dba2008-10-31 18:49:55 +0000858 }
Markus Armbruster1f514702012-02-07 15:09:08 +0100859 return qemu_chr_open_fd(fd_in, fd_out);
aliguori6f97dba2008-10-31 18:49:55 +0000860}
861
aliguori6f97dba2008-10-31 18:49:55 +0000862/* init terminal so that we can grab keys */
863static struct termios oldtty;
864static int old_fd0_flags;
Paolo Bonzinibb002512010-12-23 13:42:50 +0100865static bool stdio_allow_signal;
aliguori6f97dba2008-10-31 18:49:55 +0000866
867static void term_exit(void)
868{
869 tcsetattr (0, TCSANOW, &oldtty);
870 fcntl(0, F_SETFL, old_fd0_flags);
871}
872
Paolo Bonzinibb002512010-12-23 13:42:50 +0100873static void qemu_chr_set_echo_stdio(CharDriverState *chr, bool echo)
aliguori6f97dba2008-10-31 18:49:55 +0000874{
875 struct termios tty;
876
Paolo Bonzini03693642010-12-23 13:42:49 +0100877 tty = oldtty;
Paolo Bonzinibb002512010-12-23 13:42:50 +0100878 if (!echo) {
879 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
aliguori6f97dba2008-10-31 18:49:55 +0000880 |INLCR|IGNCR|ICRNL|IXON);
Paolo Bonzinibb002512010-12-23 13:42:50 +0100881 tty.c_oflag |= OPOST;
882 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
883 tty.c_cflag &= ~(CSIZE|PARENB);
884 tty.c_cflag |= CS8;
885 tty.c_cc[VMIN] = 1;
886 tty.c_cc[VTIME] = 0;
887 }
aliguori6f97dba2008-10-31 18:49:55 +0000888 /* if graphical mode, we allow Ctrl-C handling */
Paolo Bonzinibb002512010-12-23 13:42:50 +0100889 if (!stdio_allow_signal)
aliguori6f97dba2008-10-31 18:49:55 +0000890 tty.c_lflag &= ~ISIG;
aliguori6f97dba2008-10-31 18:49:55 +0000891
892 tcsetattr (0, TCSANOW, &tty);
aliguori6f97dba2008-10-31 18:49:55 +0000893}
894
895static void qemu_chr_close_stdio(struct CharDriverState *chr)
896{
897 term_exit();
aliguori6f97dba2008-10-31 18:49:55 +0000898 fd_chr_close(chr);
899}
900
Markus Armbruster1f514702012-02-07 15:09:08 +0100901static CharDriverState *qemu_chr_open_stdio(QemuOpts *opts)
aliguori6f97dba2008-10-31 18:49:55 +0000902{
903 CharDriverState *chr;
904
Michael Tokarevab51b1d2012-12-30 12:48:14 +0400905 if (is_daemonized()) {
906 error_report("cannot use stdio with -daemonize");
907 return NULL;
908 }
Anthony Liguoried7a1542013-03-05 23:21:17 +0530909 old_fd0_flags = fcntl(0, F_GETFL);
910 tcgetattr (0, &oldtty);
911 fcntl(0, F_SETFL, O_NONBLOCK);
912 atexit(term_exit);
Paolo Bonzini03693642010-12-23 13:42:49 +0100913
aliguori6f97dba2008-10-31 18:49:55 +0000914 chr = qemu_chr_open_fd(0, 1);
915 chr->chr_close = qemu_chr_close_stdio;
Paolo Bonzinibb002512010-12-23 13:42:50 +0100916 chr->chr_set_echo = qemu_chr_set_echo_stdio;
Paolo Bonzinibb002512010-12-23 13:42:50 +0100917 stdio_allow_signal = qemu_opt_get_bool(opts, "signal",
918 display_type != DT_NOGRAPHIC);
Anthony Liguori15f31512011-08-15 11:17:35 -0500919 qemu_chr_fe_set_echo(chr, false);
aliguori6f97dba2008-10-31 18:49:55 +0000920
Markus Armbruster1f514702012-02-07 15:09:08 +0100921 return chr;
aliguori6f97dba2008-10-31 18:49:55 +0000922}
923
924#ifdef __sun__
925/* Once Solaris has openpty(), this is going to be removed. */
blueswir13f4cb3d2009-04-13 16:31:01 +0000926static int openpty(int *amaster, int *aslave, char *name,
927 struct termios *termp, struct winsize *winp)
aliguori6f97dba2008-10-31 18:49:55 +0000928{
929 const char *slave;
930 int mfd = -1, sfd = -1;
931
932 *amaster = *aslave = -1;
933
934 mfd = open("/dev/ptmx", O_RDWR | O_NOCTTY);
935 if (mfd < 0)
936 goto err;
937
938 if (grantpt(mfd) == -1 || unlockpt(mfd) == -1)
939 goto err;
940
941 if ((slave = ptsname(mfd)) == NULL)
942 goto err;
943
944 if ((sfd = open(slave, O_RDONLY | O_NOCTTY)) == -1)
945 goto err;
946
947 if (ioctl(sfd, I_PUSH, "ptem") == -1 ||
948 (termp != NULL && tcgetattr(sfd, termp) < 0))
949 goto err;
950
951 if (amaster)
952 *amaster = mfd;
953 if (aslave)
954 *aslave = sfd;
955 if (winp)
956 ioctl(sfd, TIOCSWINSZ, winp);
957
958 return 0;
959
960err:
961 if (sfd != -1)
962 close(sfd);
963 close(mfd);
964 return -1;
965}
966
blueswir13f4cb3d2009-04-13 16:31:01 +0000967static void cfmakeraw (struct termios *termios_p)
aliguori6f97dba2008-10-31 18:49:55 +0000968{
969 termios_p->c_iflag &=
970 ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
971 termios_p->c_oflag &= ~OPOST;
972 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
973 termios_p->c_cflag &= ~(CSIZE|PARENB);
974 termios_p->c_cflag |= CS8;
975
976 termios_p->c_cc[VMIN] = 0;
977 termios_p->c_cc[VTIME] = 0;
978}
979#endif
980
981#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
Aurelien Jarnoa167ba52009-11-29 18:00:41 +0100982 || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
983 || defined(__GLIBC__)
aliguori6f97dba2008-10-31 18:49:55 +0000984
Gerd Hoffmanne5514982012-12-19 16:35:42 +0100985#define HAVE_CHARDEV_TTY 1
986
aliguori6f97dba2008-10-31 18:49:55 +0000987typedef struct {
Anthony Liguori093d3a22013-03-05 23:21:20 +0530988 GIOChannel *fd;
989 guint fd_tag;
aliguori6f97dba2008-10-31 18:49:55 +0000990 int connected;
991 int polling;
992 int read_bytes;
Anthony Liguori8aa33ca2013-03-05 23:21:26 +0530993 guint timer_tag;
aliguori6f97dba2008-10-31 18:49:55 +0000994} PtyCharDriver;
995
996static void pty_chr_update_read_handler(CharDriverState *chr);
997static void pty_chr_state(CharDriverState *chr, int connected);
998
Anthony Liguori8aa33ca2013-03-05 23:21:26 +0530999static gboolean pty_chr_timer(gpointer opaque)
1000{
1001 struct CharDriverState *chr = opaque;
1002 PtyCharDriver *s = chr->opaque;
1003
1004 if (s->connected) {
1005 goto out;
1006 }
1007 if (s->polling) {
1008 /* If we arrive here without polling being cleared due
1009 * read returning -EIO, then we are (re-)connected */
1010 pty_chr_state(chr, 1);
1011 goto out;
1012 }
1013
1014 /* Next poll ... */
1015 pty_chr_update_read_handler(chr);
1016
1017out:
1018 return FALSE;
1019}
1020
1021static void pty_chr_rearm_timer(CharDriverState *chr, int ms)
1022{
1023 PtyCharDriver *s = chr->opaque;
1024
1025 if (s->timer_tag) {
1026 g_source_remove(s->timer_tag);
1027 s->timer_tag = 0;
1028 }
1029
1030 if (ms == 1000) {
1031 s->timer_tag = g_timeout_add_seconds(1, pty_chr_timer, chr);
1032 } else {
1033 s->timer_tag = g_timeout_add(ms, pty_chr_timer, chr);
1034 }
1035}
1036
aliguori6f97dba2008-10-31 18:49:55 +00001037static int pty_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
1038{
1039 PtyCharDriver *s = chr->opaque;
1040
1041 if (!s->connected) {
1042 /* guest sends data, check for (re-)connect */
1043 pty_chr_update_read_handler(chr);
1044 return 0;
1045 }
Anthony Liguori093d3a22013-03-05 23:21:20 +05301046 return io_channel_send_all(s->fd, buf, len);
aliguori6f97dba2008-10-31 18:49:55 +00001047}
1048
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301049static GSource *pty_chr_add_watch(CharDriverState *chr, GIOCondition cond)
1050{
1051 PtyCharDriver *s = chr->opaque;
1052 return g_io_create_watch(s->fd, cond);
1053}
1054
aliguori6f97dba2008-10-31 18:49:55 +00001055static int pty_chr_read_poll(void *opaque)
1056{
1057 CharDriverState *chr = opaque;
1058 PtyCharDriver *s = chr->opaque;
1059
Anthony Liguori909cda12011-08-15 11:17:31 -05001060 s->read_bytes = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001061 return s->read_bytes;
1062}
1063
Anthony Liguori093d3a22013-03-05 23:21:20 +05301064static gboolean pty_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00001065{
1066 CharDriverState *chr = opaque;
1067 PtyCharDriver *s = chr->opaque;
Anthony Liguori093d3a22013-03-05 23:21:20 +05301068 gsize size, len;
Amit Shah9bd78542009-11-03 19:59:54 +05301069 uint8_t buf[READ_BUF_LEN];
Anthony Liguori093d3a22013-03-05 23:21:20 +05301070 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00001071
1072 len = sizeof(buf);
1073 if (len > s->read_bytes)
1074 len = s->read_bytes;
1075 if (len == 0)
Anthony Liguori093d3a22013-03-05 23:21:20 +05301076 return FALSE;
1077 status = g_io_channel_read_chars(s->fd, (gchar *)buf, len, &size, NULL);
1078 if (status != G_IO_STATUS_NORMAL) {
aliguori6f97dba2008-10-31 18:49:55 +00001079 pty_chr_state(chr, 0);
Anthony Liguori093d3a22013-03-05 23:21:20 +05301080 return FALSE;
1081 } else {
aliguori6f97dba2008-10-31 18:49:55 +00001082 pty_chr_state(chr, 1);
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05001083 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00001084 }
Anthony Liguori093d3a22013-03-05 23:21:20 +05301085 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00001086}
1087
1088static void pty_chr_update_read_handler(CharDriverState *chr)
1089{
1090 PtyCharDriver *s = chr->opaque;
1091
Anthony Liguori093d3a22013-03-05 23:21:20 +05301092 if (s->fd_tag) {
1093 g_source_remove(s->fd_tag);
1094 }
1095
1096 s->fd_tag = io_add_watch_poll(s->fd, pty_chr_read_poll, pty_chr_read, chr);
aliguori6f97dba2008-10-31 18:49:55 +00001097 s->polling = 1;
1098 /*
1099 * Short timeout here: just need wait long enougth that qemu makes
1100 * it through the poll loop once. When reconnected we want a
1101 * short timeout so we notice it almost instantly. Otherwise
1102 * read() gives us -EIO instantly, making pty_chr_state() reset the
1103 * timeout to the normal (much longer) poll interval before the
1104 * timer triggers.
1105 */
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301106 pty_chr_rearm_timer(chr, 10);
aliguori6f97dba2008-10-31 18:49:55 +00001107}
1108
1109static void pty_chr_state(CharDriverState *chr, int connected)
1110{
1111 PtyCharDriver *s = chr->opaque;
1112
1113 if (!connected) {
Anthony Liguori093d3a22013-03-05 23:21:20 +05301114 g_source_remove(s->fd_tag);
1115 s->fd_tag = 0;
aliguori6f97dba2008-10-31 18:49:55 +00001116 s->connected = 0;
1117 s->polling = 0;
1118 /* (re-)connect poll interval for idle guests: once per second.
1119 * We check more frequently in case the guests sends data to
1120 * the virtual device linked to our pty. */
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301121 pty_chr_rearm_timer(chr, 1000);
aliguori6f97dba2008-10-31 18:49:55 +00001122 } else {
1123 if (!s->connected)
Amit Shah127338e2009-11-03 19:59:56 +05301124 qemu_chr_generic_open(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001125 s->connected = 1;
1126 }
1127}
1128
aliguori6f97dba2008-10-31 18:49:55 +00001129
1130static void pty_chr_close(struct CharDriverState *chr)
1131{
1132 PtyCharDriver *s = chr->opaque;
Anthony Liguori093d3a22013-03-05 23:21:20 +05301133 int fd;
aliguori6f97dba2008-10-31 18:49:55 +00001134
Anthony Liguori093d3a22013-03-05 23:21:20 +05301135 if (s->fd_tag) {
1136 g_source_remove(s->fd_tag);
1137 }
1138 fd = g_io_channel_unix_get_fd(s->fd);
1139 g_io_channel_unref(s->fd);
1140 close(fd);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301141 if (s->timer_tag) {
1142 g_source_remove(s->timer_tag);
1143 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001144 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01001145 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001146}
1147
Markus Armbruster1f514702012-02-07 15:09:08 +01001148static CharDriverState *qemu_chr_open_pty(QemuOpts *opts)
aliguori6f97dba2008-10-31 18:49:55 +00001149{
1150 CharDriverState *chr;
1151 PtyCharDriver *s;
1152 struct termios tty;
Lei Li58650212012-12-21 12:26:38 +08001153 const char *label;
Markus Armbrustera4e26042011-11-11 10:40:05 +01001154 int master_fd, slave_fd, len;
blueswir1c5e97232009-03-07 20:06:23 +00001155#if defined(__OpenBSD__) || defined(__DragonFly__)
aliguori6f97dba2008-10-31 18:49:55 +00001156 char pty_name[PATH_MAX];
1157#define q_ptsname(x) pty_name
1158#else
1159 char *pty_name = NULL;
1160#define q_ptsname(x) ptsname(x)
1161#endif
1162
Markus Armbrustera4e26042011-11-11 10:40:05 +01001163 if (openpty(&master_fd, &slave_fd, pty_name, NULL, NULL) < 0) {
Markus Armbruster1f514702012-02-07 15:09:08 +01001164 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001165 }
1166
1167 /* Set raw attributes on the pty. */
aliguoric3b972c2008-11-12 15:00:36 +00001168 tcgetattr(slave_fd, &tty);
aliguori6f97dba2008-10-31 18:49:55 +00001169 cfmakeraw(&tty);
1170 tcsetattr(slave_fd, TCSAFLUSH, &tty);
1171 close(slave_fd);
1172
Markus Armbrustera4e26042011-11-11 10:40:05 +01001173 chr = g_malloc0(sizeof(CharDriverState));
aliguori6f97dba2008-10-31 18:49:55 +00001174
Markus Armbrustera4e26042011-11-11 10:40:05 +01001175 len = strlen(q_ptsname(master_fd)) + 5;
1176 chr->filename = g_malloc(len);
1177 snprintf(chr->filename, len, "pty:%s", q_ptsname(master_fd));
1178 qemu_opt_set(opts, "path", q_ptsname(master_fd));
Lei Li58650212012-12-21 12:26:38 +08001179
1180 label = qemu_opts_id(opts);
Gerd Hoffmann25bbf612013-01-03 14:23:03 +01001181 fprintf(stderr, "char device redirected to %s%s%s%s\n",
1182 q_ptsname(master_fd),
1183 label ? " (label " : "",
1184 label ? label : "",
1185 label ? ")" : "");
Markus Armbrustera4e26042011-11-11 10:40:05 +01001186
1187 s = g_malloc0(sizeof(PtyCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00001188 chr->opaque = s;
1189 chr->chr_write = pty_chr_write;
1190 chr->chr_update_read_handler = pty_chr_update_read_handler;
1191 chr->chr_close = pty_chr_close;
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301192 chr->chr_add_watch = pty_chr_add_watch;
aliguori6f97dba2008-10-31 18:49:55 +00001193
Anthony Liguori093d3a22013-03-05 23:21:20 +05301194 s->fd = io_channel_from_fd(master_fd);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301195 s->timer_tag = 0;
aliguori6f97dba2008-10-31 18:49:55 +00001196
Markus Armbruster1f514702012-02-07 15:09:08 +01001197 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001198}
1199
1200static void tty_serial_init(int fd, int speed,
1201 int parity, int data_bits, int stop_bits)
1202{
1203 struct termios tty;
1204 speed_t spd;
1205
1206#if 0
1207 printf("tty_serial_init: speed=%d parity=%c data=%d stop=%d\n",
1208 speed, parity, data_bits, stop_bits);
1209#endif
1210 tcgetattr (fd, &tty);
1211
Stefan Weil45eea132009-10-26 16:10:10 +01001212#define check_speed(val) if (speed <= val) { spd = B##val; break; }
1213 speed = speed * 10 / 11;
1214 do {
1215 check_speed(50);
1216 check_speed(75);
1217 check_speed(110);
1218 check_speed(134);
1219 check_speed(150);
1220 check_speed(200);
1221 check_speed(300);
1222 check_speed(600);
1223 check_speed(1200);
1224 check_speed(1800);
1225 check_speed(2400);
1226 check_speed(4800);
1227 check_speed(9600);
1228 check_speed(19200);
1229 check_speed(38400);
1230 /* Non-Posix values follow. They may be unsupported on some systems. */
1231 check_speed(57600);
1232 check_speed(115200);
1233#ifdef B230400
1234 check_speed(230400);
1235#endif
1236#ifdef B460800
1237 check_speed(460800);
1238#endif
1239#ifdef B500000
1240 check_speed(500000);
1241#endif
1242#ifdef B576000
1243 check_speed(576000);
1244#endif
1245#ifdef B921600
1246 check_speed(921600);
1247#endif
1248#ifdef B1000000
1249 check_speed(1000000);
1250#endif
1251#ifdef B1152000
1252 check_speed(1152000);
1253#endif
1254#ifdef B1500000
1255 check_speed(1500000);
1256#endif
1257#ifdef B2000000
1258 check_speed(2000000);
1259#endif
1260#ifdef B2500000
1261 check_speed(2500000);
1262#endif
1263#ifdef B3000000
1264 check_speed(3000000);
1265#endif
1266#ifdef B3500000
1267 check_speed(3500000);
1268#endif
1269#ifdef B4000000
1270 check_speed(4000000);
1271#endif
aliguori6f97dba2008-10-31 18:49:55 +00001272 spd = B115200;
Stefan Weil45eea132009-10-26 16:10:10 +01001273 } while (0);
aliguori6f97dba2008-10-31 18:49:55 +00001274
1275 cfsetispeed(&tty, spd);
1276 cfsetospeed(&tty, spd);
1277
1278 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
1279 |INLCR|IGNCR|ICRNL|IXON);
1280 tty.c_oflag |= OPOST;
1281 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN|ISIG);
1282 tty.c_cflag &= ~(CSIZE|PARENB|PARODD|CRTSCTS|CSTOPB);
1283 switch(data_bits) {
1284 default:
1285 case 8:
1286 tty.c_cflag |= CS8;
1287 break;
1288 case 7:
1289 tty.c_cflag |= CS7;
1290 break;
1291 case 6:
1292 tty.c_cflag |= CS6;
1293 break;
1294 case 5:
1295 tty.c_cflag |= CS5;
1296 break;
1297 }
1298 switch(parity) {
1299 default:
1300 case 'N':
1301 break;
1302 case 'E':
1303 tty.c_cflag |= PARENB;
1304 break;
1305 case 'O':
1306 tty.c_cflag |= PARENB | PARODD;
1307 break;
1308 }
1309 if (stop_bits == 2)
1310 tty.c_cflag |= CSTOPB;
1311
1312 tcsetattr (fd, TCSANOW, &tty);
1313}
1314
1315static int tty_serial_ioctl(CharDriverState *chr, int cmd, void *arg)
1316{
1317 FDCharDriver *s = chr->opaque;
1318
1319 switch(cmd) {
1320 case CHR_IOCTL_SERIAL_SET_PARAMS:
1321 {
1322 QEMUSerialSetParams *ssp = arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301323 tty_serial_init(g_io_channel_unix_get_fd(s->fd_in),
1324 ssp->speed, ssp->parity,
aliguori6f97dba2008-10-31 18:49:55 +00001325 ssp->data_bits, ssp->stop_bits);
1326 }
1327 break;
1328 case CHR_IOCTL_SERIAL_SET_BREAK:
1329 {
1330 int enable = *(int *)arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301331 if (enable) {
1332 tcsendbreak(g_io_channel_unix_get_fd(s->fd_in), 1);
1333 }
aliguori6f97dba2008-10-31 18:49:55 +00001334 }
1335 break;
1336 case CHR_IOCTL_SERIAL_GET_TIOCM:
1337 {
1338 int sarg = 0;
1339 int *targ = (int *)arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301340 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMGET, &sarg);
aliguori6f97dba2008-10-31 18:49:55 +00001341 *targ = 0;
aurel32b4abdfa2009-02-08 14:46:17 +00001342 if (sarg & TIOCM_CTS)
aliguori6f97dba2008-10-31 18:49:55 +00001343 *targ |= CHR_TIOCM_CTS;
aurel32b4abdfa2009-02-08 14:46:17 +00001344 if (sarg & TIOCM_CAR)
aliguori6f97dba2008-10-31 18:49:55 +00001345 *targ |= CHR_TIOCM_CAR;
aurel32b4abdfa2009-02-08 14:46:17 +00001346 if (sarg & TIOCM_DSR)
aliguori6f97dba2008-10-31 18:49:55 +00001347 *targ |= CHR_TIOCM_DSR;
aurel32b4abdfa2009-02-08 14:46:17 +00001348 if (sarg & TIOCM_RI)
aliguori6f97dba2008-10-31 18:49:55 +00001349 *targ |= CHR_TIOCM_RI;
aurel32b4abdfa2009-02-08 14:46:17 +00001350 if (sarg & TIOCM_DTR)
aliguori6f97dba2008-10-31 18:49:55 +00001351 *targ |= CHR_TIOCM_DTR;
aurel32b4abdfa2009-02-08 14:46:17 +00001352 if (sarg & TIOCM_RTS)
aliguori6f97dba2008-10-31 18:49:55 +00001353 *targ |= CHR_TIOCM_RTS;
1354 }
1355 break;
1356 case CHR_IOCTL_SERIAL_SET_TIOCM:
1357 {
1358 int sarg = *(int *)arg;
1359 int targ = 0;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301360 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMGET, &targ);
aurel32b4abdfa2009-02-08 14:46:17 +00001361 targ &= ~(CHR_TIOCM_CTS | CHR_TIOCM_CAR | CHR_TIOCM_DSR
1362 | CHR_TIOCM_RI | CHR_TIOCM_DTR | CHR_TIOCM_RTS);
1363 if (sarg & CHR_TIOCM_CTS)
1364 targ |= TIOCM_CTS;
1365 if (sarg & CHR_TIOCM_CAR)
1366 targ |= TIOCM_CAR;
1367 if (sarg & CHR_TIOCM_DSR)
1368 targ |= TIOCM_DSR;
1369 if (sarg & CHR_TIOCM_RI)
1370 targ |= TIOCM_RI;
1371 if (sarg & CHR_TIOCM_DTR)
aliguori6f97dba2008-10-31 18:49:55 +00001372 targ |= TIOCM_DTR;
aurel32b4abdfa2009-02-08 14:46:17 +00001373 if (sarg & CHR_TIOCM_RTS)
aliguori6f97dba2008-10-31 18:49:55 +00001374 targ |= TIOCM_RTS;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301375 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMSET, &targ);
aliguori6f97dba2008-10-31 18:49:55 +00001376 }
1377 break;
1378 default:
1379 return -ENOTSUP;
1380 }
1381 return 0;
1382}
1383
David Ahern4266a132010-02-10 18:27:17 -07001384static void qemu_chr_close_tty(CharDriverState *chr)
1385{
1386 FDCharDriver *s = chr->opaque;
1387 int fd = -1;
1388
1389 if (s) {
Anthony Liguoria29753f2013-03-05 23:21:19 +05301390 fd = g_io_channel_unix_get_fd(s->fd_in);
David Ahern4266a132010-02-10 18:27:17 -07001391 }
1392
1393 fd_chr_close(chr);
1394
1395 if (fd >= 0) {
1396 close(fd);
1397 }
1398}
1399
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01001400static CharDriverState *qemu_chr_open_tty_fd(int fd)
1401{
1402 CharDriverState *chr;
1403
1404 tty_serial_init(fd, 115200, 'N', 8, 1);
1405 chr = qemu_chr_open_fd(fd, fd);
1406 chr->chr_ioctl = tty_serial_ioctl;
1407 chr->chr_close = qemu_chr_close_tty;
1408 return chr;
1409}
1410
Markus Armbruster1f514702012-02-07 15:09:08 +01001411static CharDriverState *qemu_chr_open_tty(QemuOpts *opts)
aliguori6f97dba2008-10-31 18:49:55 +00001412{
Gerd Hoffmann48b76492009-09-10 10:58:48 +02001413 const char *filename = qemu_opt_get(opts, "path");
aliguori6f97dba2008-10-31 18:49:55 +00001414 int fd;
1415
Markus Armbrusterb181e042012-02-07 15:09:09 +01001416 TFR(fd = qemu_open(filename, O_RDWR | O_NONBLOCK));
Evgeniy Dushistovafc535a2010-01-28 21:44:46 +03001417 if (fd < 0) {
Markus Armbruster1f514702012-02-07 15:09:08 +01001418 return NULL;
Evgeniy Dushistovafc535a2010-01-28 21:44:46 +03001419 }
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01001420 return qemu_chr_open_tty_fd(fd);
aliguori6f97dba2008-10-31 18:49:55 +00001421}
aliguori6f97dba2008-10-31 18:49:55 +00001422#endif /* __linux__ || __sun__ */
1423
1424#if defined(__linux__)
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001425
1426#define HAVE_CHARDEV_PARPORT 1
1427
aliguori6f97dba2008-10-31 18:49:55 +00001428typedef struct {
1429 int fd;
1430 int mode;
1431} ParallelCharDriver;
1432
1433static int pp_hw_mode(ParallelCharDriver *s, uint16_t mode)
1434{
1435 if (s->mode != mode) {
1436 int m = mode;
1437 if (ioctl(s->fd, PPSETMODE, &m) < 0)
1438 return 0;
1439 s->mode = mode;
1440 }
1441 return 1;
1442}
1443
1444static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1445{
1446 ParallelCharDriver *drv = chr->opaque;
1447 int fd = drv->fd;
1448 uint8_t b;
1449
1450 switch(cmd) {
1451 case CHR_IOCTL_PP_READ_DATA:
1452 if (ioctl(fd, PPRDATA, &b) < 0)
1453 return -ENOTSUP;
1454 *(uint8_t *)arg = b;
1455 break;
1456 case CHR_IOCTL_PP_WRITE_DATA:
1457 b = *(uint8_t *)arg;
1458 if (ioctl(fd, PPWDATA, &b) < 0)
1459 return -ENOTSUP;
1460 break;
1461 case CHR_IOCTL_PP_READ_CONTROL:
1462 if (ioctl(fd, PPRCONTROL, &b) < 0)
1463 return -ENOTSUP;
1464 /* Linux gives only the lowest bits, and no way to know data
1465 direction! For better compatibility set the fixed upper
1466 bits. */
1467 *(uint8_t *)arg = b | 0xc0;
1468 break;
1469 case CHR_IOCTL_PP_WRITE_CONTROL:
1470 b = *(uint8_t *)arg;
1471 if (ioctl(fd, PPWCONTROL, &b) < 0)
1472 return -ENOTSUP;
1473 break;
1474 case CHR_IOCTL_PP_READ_STATUS:
1475 if (ioctl(fd, PPRSTATUS, &b) < 0)
1476 return -ENOTSUP;
1477 *(uint8_t *)arg = b;
1478 break;
1479 case CHR_IOCTL_PP_DATA_DIR:
1480 if (ioctl(fd, PPDATADIR, (int *)arg) < 0)
1481 return -ENOTSUP;
1482 break;
1483 case CHR_IOCTL_PP_EPP_READ_ADDR:
1484 if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1485 struct ParallelIOArg *parg = arg;
1486 int n = read(fd, parg->buffer, parg->count);
1487 if (n != parg->count) {
1488 return -EIO;
1489 }
1490 }
1491 break;
1492 case CHR_IOCTL_PP_EPP_READ:
1493 if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1494 struct ParallelIOArg *parg = arg;
1495 int n = read(fd, parg->buffer, parg->count);
1496 if (n != parg->count) {
1497 return -EIO;
1498 }
1499 }
1500 break;
1501 case CHR_IOCTL_PP_EPP_WRITE_ADDR:
1502 if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1503 struct ParallelIOArg *parg = arg;
1504 int n = write(fd, parg->buffer, parg->count);
1505 if (n != parg->count) {
1506 return -EIO;
1507 }
1508 }
1509 break;
1510 case CHR_IOCTL_PP_EPP_WRITE:
1511 if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1512 struct ParallelIOArg *parg = arg;
1513 int n = write(fd, parg->buffer, parg->count);
1514 if (n != parg->count) {
1515 return -EIO;
1516 }
1517 }
1518 break;
1519 default:
1520 return -ENOTSUP;
1521 }
1522 return 0;
1523}
1524
1525static void pp_close(CharDriverState *chr)
1526{
1527 ParallelCharDriver *drv = chr->opaque;
1528 int fd = drv->fd;
1529
1530 pp_hw_mode(drv, IEEE1284_MODE_COMPAT);
1531 ioctl(fd, PPRELEASE);
1532 close(fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05001533 g_free(drv);
Hans de Goedea425d232011-11-19 10:22:43 +01001534 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001535}
1536
Gerd Hoffmann88a946d2013-01-10 14:20:58 +01001537static CharDriverState *qemu_chr_open_pp_fd(int fd)
aliguori6f97dba2008-10-31 18:49:55 +00001538{
1539 CharDriverState *chr;
1540 ParallelCharDriver *drv;
aliguori6f97dba2008-10-31 18:49:55 +00001541
1542 if (ioctl(fd, PPCLAIM) < 0) {
1543 close(fd);
Markus Armbruster1f514702012-02-07 15:09:08 +01001544 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001545 }
1546
Anthony Liguori7267c092011-08-20 22:09:37 -05001547 drv = g_malloc0(sizeof(ParallelCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00001548 drv->fd = fd;
1549 drv->mode = IEEE1284_MODE_COMPAT;
1550
Anthony Liguori7267c092011-08-20 22:09:37 -05001551 chr = g_malloc0(sizeof(CharDriverState));
aliguori6f97dba2008-10-31 18:49:55 +00001552 chr->chr_write = null_chr_write;
1553 chr->chr_ioctl = pp_ioctl;
1554 chr->chr_close = pp_close;
1555 chr->opaque = drv;
1556
Amit Shah127338e2009-11-03 19:59:56 +05301557 qemu_chr_generic_open(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001558
Markus Armbruster1f514702012-02-07 15:09:08 +01001559 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001560}
1561#endif /* __linux__ */
1562
Aurelien Jarnoa167ba52009-11-29 18:00:41 +01001563#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001564
1565#define HAVE_CHARDEV_PARPORT 1
1566
blueswir16972f932008-11-22 20:49:12 +00001567static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1568{
Stefan Weile0efb992011-02-23 19:09:16 +01001569 int fd = (int)(intptr_t)chr->opaque;
blueswir16972f932008-11-22 20:49:12 +00001570 uint8_t b;
1571
1572 switch(cmd) {
1573 case CHR_IOCTL_PP_READ_DATA:
1574 if (ioctl(fd, PPIGDATA, &b) < 0)
1575 return -ENOTSUP;
1576 *(uint8_t *)arg = b;
1577 break;
1578 case CHR_IOCTL_PP_WRITE_DATA:
1579 b = *(uint8_t *)arg;
1580 if (ioctl(fd, PPISDATA, &b) < 0)
1581 return -ENOTSUP;
1582 break;
1583 case CHR_IOCTL_PP_READ_CONTROL:
1584 if (ioctl(fd, PPIGCTRL, &b) < 0)
1585 return -ENOTSUP;
1586 *(uint8_t *)arg = b;
1587 break;
1588 case CHR_IOCTL_PP_WRITE_CONTROL:
1589 b = *(uint8_t *)arg;
1590 if (ioctl(fd, PPISCTRL, &b) < 0)
1591 return -ENOTSUP;
1592 break;
1593 case CHR_IOCTL_PP_READ_STATUS:
1594 if (ioctl(fd, PPIGSTATUS, &b) < 0)
1595 return -ENOTSUP;
1596 *(uint8_t *)arg = b;
1597 break;
1598 default:
1599 return -ENOTSUP;
1600 }
1601 return 0;
1602}
1603
Gerd Hoffmann88a946d2013-01-10 14:20:58 +01001604static CharDriverState *qemu_chr_open_pp_fd(int fd)
blueswir16972f932008-11-22 20:49:12 +00001605{
1606 CharDriverState *chr;
blueswir16972f932008-11-22 20:49:12 +00001607
Anthony Liguori7267c092011-08-20 22:09:37 -05001608 chr = g_malloc0(sizeof(CharDriverState));
Stefan Weile0efb992011-02-23 19:09:16 +01001609 chr->opaque = (void *)(intptr_t)fd;
blueswir16972f932008-11-22 20:49:12 +00001610 chr->chr_write = null_chr_write;
1611 chr->chr_ioctl = pp_ioctl;
Markus Armbruster1f514702012-02-07 15:09:08 +01001612 return chr;
blueswir16972f932008-11-22 20:49:12 +00001613}
1614#endif
1615
aliguori6f97dba2008-10-31 18:49:55 +00001616#else /* _WIN32 */
1617
1618typedef struct {
1619 int max_size;
1620 HANDLE hcom, hrecv, hsend;
1621 OVERLAPPED orecv, osend;
1622 BOOL fpipe;
1623 DWORD len;
1624} WinCharState;
1625
Fabien Chouteaudb418a02011-10-06 16:37:51 +02001626typedef struct {
1627 HANDLE hStdIn;
1628 HANDLE hInputReadyEvent;
1629 HANDLE hInputDoneEvent;
1630 HANDLE hInputThread;
1631 uint8_t win_stdio_buf;
1632} WinStdioCharState;
1633
aliguori6f97dba2008-10-31 18:49:55 +00001634#define NSENDBUF 2048
1635#define NRECVBUF 2048
1636#define MAXCONNECT 1
1637#define NTIMEOUT 5000
1638
1639static int win_chr_poll(void *opaque);
1640static int win_chr_pipe_poll(void *opaque);
1641
1642static void win_chr_close(CharDriverState *chr)
1643{
1644 WinCharState *s = chr->opaque;
1645
1646 if (s->hsend) {
1647 CloseHandle(s->hsend);
1648 s->hsend = NULL;
1649 }
1650 if (s->hrecv) {
1651 CloseHandle(s->hrecv);
1652 s->hrecv = NULL;
1653 }
1654 if (s->hcom) {
1655 CloseHandle(s->hcom);
1656 s->hcom = NULL;
1657 }
1658 if (s->fpipe)
1659 qemu_del_polling_cb(win_chr_pipe_poll, chr);
1660 else
1661 qemu_del_polling_cb(win_chr_poll, chr);
Amit Shah793cbfb2009-08-11 21:27:48 +05301662
Hans de Goedea425d232011-11-19 10:22:43 +01001663 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001664}
1665
1666static int win_chr_init(CharDriverState *chr, const char *filename)
1667{
1668 WinCharState *s = chr->opaque;
1669 COMMCONFIG comcfg;
1670 COMMTIMEOUTS cto = { 0, 0, 0, 0, 0};
1671 COMSTAT comstat;
1672 DWORD size;
1673 DWORD err;
1674
1675 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1676 if (!s->hsend) {
1677 fprintf(stderr, "Failed CreateEvent\n");
1678 goto fail;
1679 }
1680 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1681 if (!s->hrecv) {
1682 fprintf(stderr, "Failed CreateEvent\n");
1683 goto fail;
1684 }
1685
1686 s->hcom = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, NULL,
1687 OPEN_EXISTING, FILE_FLAG_OVERLAPPED, 0);
1688 if (s->hcom == INVALID_HANDLE_VALUE) {
1689 fprintf(stderr, "Failed CreateFile (%lu)\n", GetLastError());
1690 s->hcom = NULL;
1691 goto fail;
1692 }
1693
1694 if (!SetupComm(s->hcom, NRECVBUF, NSENDBUF)) {
1695 fprintf(stderr, "Failed SetupComm\n");
1696 goto fail;
1697 }
1698
1699 ZeroMemory(&comcfg, sizeof(COMMCONFIG));
1700 size = sizeof(COMMCONFIG);
1701 GetDefaultCommConfig(filename, &comcfg, &size);
1702 comcfg.dcb.DCBlength = sizeof(DCB);
1703 CommConfigDialog(filename, NULL, &comcfg);
1704
1705 if (!SetCommState(s->hcom, &comcfg.dcb)) {
1706 fprintf(stderr, "Failed SetCommState\n");
1707 goto fail;
1708 }
1709
1710 if (!SetCommMask(s->hcom, EV_ERR)) {
1711 fprintf(stderr, "Failed SetCommMask\n");
1712 goto fail;
1713 }
1714
1715 cto.ReadIntervalTimeout = MAXDWORD;
1716 if (!SetCommTimeouts(s->hcom, &cto)) {
1717 fprintf(stderr, "Failed SetCommTimeouts\n");
1718 goto fail;
1719 }
1720
1721 if (!ClearCommError(s->hcom, &err, &comstat)) {
1722 fprintf(stderr, "Failed ClearCommError\n");
1723 goto fail;
1724 }
1725 qemu_add_polling_cb(win_chr_poll, chr);
1726 return 0;
1727
1728 fail:
1729 win_chr_close(chr);
1730 return -1;
1731}
1732
1733static int win_chr_write(CharDriverState *chr, const uint8_t *buf, int len1)
1734{
1735 WinCharState *s = chr->opaque;
1736 DWORD len, ret, size, err;
1737
1738 len = len1;
1739 ZeroMemory(&s->osend, sizeof(s->osend));
1740 s->osend.hEvent = s->hsend;
1741 while (len > 0) {
1742 if (s->hsend)
1743 ret = WriteFile(s->hcom, buf, len, &size, &s->osend);
1744 else
1745 ret = WriteFile(s->hcom, buf, len, &size, NULL);
1746 if (!ret) {
1747 err = GetLastError();
1748 if (err == ERROR_IO_PENDING) {
1749 ret = GetOverlappedResult(s->hcom, &s->osend, &size, TRUE);
1750 if (ret) {
1751 buf += size;
1752 len -= size;
1753 } else {
1754 break;
1755 }
1756 } else {
1757 break;
1758 }
1759 } else {
1760 buf += size;
1761 len -= size;
1762 }
1763 }
1764 return len1 - len;
1765}
1766
1767static int win_chr_read_poll(CharDriverState *chr)
1768{
1769 WinCharState *s = chr->opaque;
1770
Anthony Liguori909cda12011-08-15 11:17:31 -05001771 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001772 return s->max_size;
1773}
1774
1775static void win_chr_readfile(CharDriverState *chr)
1776{
1777 WinCharState *s = chr->opaque;
1778 int ret, err;
Amit Shah9bd78542009-11-03 19:59:54 +05301779 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00001780 DWORD size;
1781
1782 ZeroMemory(&s->orecv, sizeof(s->orecv));
1783 s->orecv.hEvent = s->hrecv;
1784 ret = ReadFile(s->hcom, buf, s->len, &size, &s->orecv);
1785 if (!ret) {
1786 err = GetLastError();
1787 if (err == ERROR_IO_PENDING) {
1788 ret = GetOverlappedResult(s->hcom, &s->orecv, &size, TRUE);
1789 }
1790 }
1791
1792 if (size > 0) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05001793 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00001794 }
1795}
1796
1797static void win_chr_read(CharDriverState *chr)
1798{
1799 WinCharState *s = chr->opaque;
1800
1801 if (s->len > s->max_size)
1802 s->len = s->max_size;
1803 if (s->len == 0)
1804 return;
1805
1806 win_chr_readfile(chr);
1807}
1808
1809static int win_chr_poll(void *opaque)
1810{
1811 CharDriverState *chr = opaque;
1812 WinCharState *s = chr->opaque;
1813 COMSTAT status;
1814 DWORD comerr;
1815
1816 ClearCommError(s->hcom, &comerr, &status);
1817 if (status.cbInQue > 0) {
1818 s->len = status.cbInQue;
1819 win_chr_read_poll(chr);
1820 win_chr_read(chr);
1821 return 1;
1822 }
1823 return 0;
1824}
1825
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01001826static CharDriverState *qemu_chr_open_win_path(const char *filename)
aliguori6f97dba2008-10-31 18:49:55 +00001827{
1828 CharDriverState *chr;
1829 WinCharState *s;
1830
Anthony Liguori7267c092011-08-20 22:09:37 -05001831 chr = g_malloc0(sizeof(CharDriverState));
1832 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00001833 chr->opaque = s;
1834 chr->chr_write = win_chr_write;
1835 chr->chr_close = win_chr_close;
1836
1837 if (win_chr_init(chr, filename) < 0) {
Stefan Weil2e02e182011-10-07 07:38:46 +02001838 g_free(s);
1839 g_free(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01001840 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001841 }
Amit Shah127338e2009-11-03 19:59:56 +05301842 qemu_chr_generic_open(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01001843 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001844}
1845
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01001846static CharDriverState *qemu_chr_open_win(QemuOpts *opts)
1847{
1848 return qemu_chr_open_win_path(qemu_opt_get(opts, "path"));
1849}
1850
aliguori6f97dba2008-10-31 18:49:55 +00001851static int win_chr_pipe_poll(void *opaque)
1852{
1853 CharDriverState *chr = opaque;
1854 WinCharState *s = chr->opaque;
1855 DWORD size;
1856
1857 PeekNamedPipe(s->hcom, NULL, 0, NULL, &size, NULL);
1858 if (size > 0) {
1859 s->len = size;
1860 win_chr_read_poll(chr);
1861 win_chr_read(chr);
1862 return 1;
1863 }
1864 return 0;
1865}
1866
1867static int win_chr_pipe_init(CharDriverState *chr, const char *filename)
1868{
1869 WinCharState *s = chr->opaque;
1870 OVERLAPPED ov;
1871 int ret;
1872 DWORD size;
1873 char openname[256];
1874
1875 s->fpipe = TRUE;
1876
1877 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1878 if (!s->hsend) {
1879 fprintf(stderr, "Failed CreateEvent\n");
1880 goto fail;
1881 }
1882 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1883 if (!s->hrecv) {
1884 fprintf(stderr, "Failed CreateEvent\n");
1885 goto fail;
1886 }
1887
1888 snprintf(openname, sizeof(openname), "\\\\.\\pipe\\%s", filename);
1889 s->hcom = CreateNamedPipe(openname, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
1890 PIPE_TYPE_BYTE | PIPE_READMODE_BYTE |
1891 PIPE_WAIT,
1892 MAXCONNECT, NSENDBUF, NRECVBUF, NTIMEOUT, NULL);
1893 if (s->hcom == INVALID_HANDLE_VALUE) {
1894 fprintf(stderr, "Failed CreateNamedPipe (%lu)\n", GetLastError());
1895 s->hcom = NULL;
1896 goto fail;
1897 }
1898
1899 ZeroMemory(&ov, sizeof(ov));
1900 ov.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
1901 ret = ConnectNamedPipe(s->hcom, &ov);
1902 if (ret) {
1903 fprintf(stderr, "Failed ConnectNamedPipe\n");
1904 goto fail;
1905 }
1906
1907 ret = GetOverlappedResult(s->hcom, &ov, &size, TRUE);
1908 if (!ret) {
1909 fprintf(stderr, "Failed GetOverlappedResult\n");
1910 if (ov.hEvent) {
1911 CloseHandle(ov.hEvent);
1912 ov.hEvent = NULL;
1913 }
1914 goto fail;
1915 }
1916
1917 if (ov.hEvent) {
1918 CloseHandle(ov.hEvent);
1919 ov.hEvent = NULL;
1920 }
1921 qemu_add_polling_cb(win_chr_pipe_poll, chr);
1922 return 0;
1923
1924 fail:
1925 win_chr_close(chr);
1926 return -1;
1927}
1928
1929
Markus Armbruster1f514702012-02-07 15:09:08 +01001930static CharDriverState *qemu_chr_open_win_pipe(QemuOpts *opts)
aliguori6f97dba2008-10-31 18:49:55 +00001931{
Gerd Hoffmann7d315442009-09-10 10:58:36 +02001932 const char *filename = qemu_opt_get(opts, "path");
aliguori6f97dba2008-10-31 18:49:55 +00001933 CharDriverState *chr;
1934 WinCharState *s;
1935
Anthony Liguori7267c092011-08-20 22:09:37 -05001936 chr = g_malloc0(sizeof(CharDriverState));
1937 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00001938 chr->opaque = s;
1939 chr->chr_write = win_chr_write;
1940 chr->chr_close = win_chr_close;
1941
1942 if (win_chr_pipe_init(chr, filename) < 0) {
Stefan Weil2e02e182011-10-07 07:38:46 +02001943 g_free(s);
1944 g_free(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01001945 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001946 }
Amit Shah127338e2009-11-03 19:59:56 +05301947 qemu_chr_generic_open(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01001948 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001949}
1950
Markus Armbruster1f514702012-02-07 15:09:08 +01001951static CharDriverState *qemu_chr_open_win_file(HANDLE fd_out)
aliguori6f97dba2008-10-31 18:49:55 +00001952{
1953 CharDriverState *chr;
1954 WinCharState *s;
1955
Anthony Liguori7267c092011-08-20 22:09:37 -05001956 chr = g_malloc0(sizeof(CharDriverState));
1957 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00001958 s->hcom = fd_out;
1959 chr->opaque = s;
1960 chr->chr_write = win_chr_write;
Amit Shah127338e2009-11-03 19:59:56 +05301961 qemu_chr_generic_open(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01001962 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001963}
1964
Markus Armbruster1f514702012-02-07 15:09:08 +01001965static CharDriverState *qemu_chr_open_win_con(QemuOpts *opts)
aliguori6f97dba2008-10-31 18:49:55 +00001966{
Markus Armbruster1f514702012-02-07 15:09:08 +01001967 return qemu_chr_open_win_file(GetStdHandle(STD_OUTPUT_HANDLE));
aliguori6f97dba2008-10-31 18:49:55 +00001968}
1969
Markus Armbruster1f514702012-02-07 15:09:08 +01001970static CharDriverState *qemu_chr_open_win_file_out(QemuOpts *opts)
aliguori6f97dba2008-10-31 18:49:55 +00001971{
Gerd Hoffmann7d315442009-09-10 10:58:36 +02001972 const char *file_out = qemu_opt_get(opts, "path");
aliguori6f97dba2008-10-31 18:49:55 +00001973 HANDLE fd_out;
1974
1975 fd_out = CreateFile(file_out, GENERIC_WRITE, FILE_SHARE_READ, NULL,
1976 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01001977 if (fd_out == INVALID_HANDLE_VALUE) {
Markus Armbruster1f514702012-02-07 15:09:08 +01001978 return NULL;
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01001979 }
aliguori6f97dba2008-10-31 18:49:55 +00001980
Markus Armbruster1f514702012-02-07 15:09:08 +01001981 return qemu_chr_open_win_file(fd_out);
aliguori6f97dba2008-10-31 18:49:55 +00001982}
Fabien Chouteaudb418a02011-10-06 16:37:51 +02001983
1984static int win_stdio_write(CharDriverState *chr, const uint8_t *buf, int len)
1985{
1986 HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
1987 DWORD dwSize;
1988 int len1;
1989
1990 len1 = len;
1991
1992 while (len1 > 0) {
1993 if (!WriteFile(hStdOut, buf, len1, &dwSize, NULL)) {
1994 break;
1995 }
1996 buf += dwSize;
1997 len1 -= dwSize;
1998 }
1999
2000 return len - len1;
2001}
2002
2003static void win_stdio_wait_func(void *opaque)
2004{
2005 CharDriverState *chr = opaque;
2006 WinStdioCharState *stdio = chr->opaque;
2007 INPUT_RECORD buf[4];
2008 int ret;
2009 DWORD dwSize;
2010 int i;
2011
2012 ret = ReadConsoleInput(stdio->hStdIn, buf, sizeof(buf) / sizeof(*buf),
2013 &dwSize);
2014
2015 if (!ret) {
2016 /* Avoid error storm */
2017 qemu_del_wait_object(stdio->hStdIn, NULL, NULL);
2018 return;
2019 }
2020
2021 for (i = 0; i < dwSize; i++) {
2022 KEY_EVENT_RECORD *kev = &buf[i].Event.KeyEvent;
2023
2024 if (buf[i].EventType == KEY_EVENT && kev->bKeyDown) {
2025 int j;
2026 if (kev->uChar.AsciiChar != 0) {
2027 for (j = 0; j < kev->wRepeatCount; j++) {
2028 if (qemu_chr_be_can_write(chr)) {
2029 uint8_t c = kev->uChar.AsciiChar;
2030 qemu_chr_be_write(chr, &c, 1);
2031 }
2032 }
2033 }
2034 }
2035 }
2036}
2037
2038static DWORD WINAPI win_stdio_thread(LPVOID param)
2039{
2040 CharDriverState *chr = param;
2041 WinStdioCharState *stdio = chr->opaque;
2042 int ret;
2043 DWORD dwSize;
2044
2045 while (1) {
2046
2047 /* Wait for one byte */
2048 ret = ReadFile(stdio->hStdIn, &stdio->win_stdio_buf, 1, &dwSize, NULL);
2049
2050 /* Exit in case of error, continue if nothing read */
2051 if (!ret) {
2052 break;
2053 }
2054 if (!dwSize) {
2055 continue;
2056 }
2057
2058 /* Some terminal emulator returns \r\n for Enter, just pass \n */
2059 if (stdio->win_stdio_buf == '\r') {
2060 continue;
2061 }
2062
2063 /* Signal the main thread and wait until the byte was eaten */
2064 if (!SetEvent(stdio->hInputReadyEvent)) {
2065 break;
2066 }
2067 if (WaitForSingleObject(stdio->hInputDoneEvent, INFINITE)
2068 != WAIT_OBJECT_0) {
2069 break;
2070 }
2071 }
2072
2073 qemu_del_wait_object(stdio->hInputReadyEvent, NULL, NULL);
2074 return 0;
2075}
2076
2077static void win_stdio_thread_wait_func(void *opaque)
2078{
2079 CharDriverState *chr = opaque;
2080 WinStdioCharState *stdio = chr->opaque;
2081
2082 if (qemu_chr_be_can_write(chr)) {
2083 qemu_chr_be_write(chr, &stdio->win_stdio_buf, 1);
2084 }
2085
2086 SetEvent(stdio->hInputDoneEvent);
2087}
2088
2089static void qemu_chr_set_echo_win_stdio(CharDriverState *chr, bool echo)
2090{
2091 WinStdioCharState *stdio = chr->opaque;
2092 DWORD dwMode = 0;
2093
2094 GetConsoleMode(stdio->hStdIn, &dwMode);
2095
2096 if (echo) {
2097 SetConsoleMode(stdio->hStdIn, dwMode | ENABLE_ECHO_INPUT);
2098 } else {
2099 SetConsoleMode(stdio->hStdIn, dwMode & ~ENABLE_ECHO_INPUT);
2100 }
2101}
2102
2103static void win_stdio_close(CharDriverState *chr)
2104{
2105 WinStdioCharState *stdio = chr->opaque;
2106
2107 if (stdio->hInputReadyEvent != INVALID_HANDLE_VALUE) {
2108 CloseHandle(stdio->hInputReadyEvent);
2109 }
2110 if (stdio->hInputDoneEvent != INVALID_HANDLE_VALUE) {
2111 CloseHandle(stdio->hInputDoneEvent);
2112 }
2113 if (stdio->hInputThread != INVALID_HANDLE_VALUE) {
2114 TerminateThread(stdio->hInputThread, 0);
2115 }
2116
2117 g_free(chr->opaque);
2118 g_free(chr);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002119}
2120
Markus Armbruster1f514702012-02-07 15:09:08 +01002121static CharDriverState *qemu_chr_open_win_stdio(QemuOpts *opts)
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002122{
2123 CharDriverState *chr;
2124 WinStdioCharState *stdio;
2125 DWORD dwMode;
2126 int is_console = 0;
2127
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002128 chr = g_malloc0(sizeof(CharDriverState));
2129 stdio = g_malloc0(sizeof(WinStdioCharState));
2130
2131 stdio->hStdIn = GetStdHandle(STD_INPUT_HANDLE);
2132 if (stdio->hStdIn == INVALID_HANDLE_VALUE) {
2133 fprintf(stderr, "cannot open stdio: invalid handle\n");
2134 exit(1);
2135 }
2136
2137 is_console = GetConsoleMode(stdio->hStdIn, &dwMode) != 0;
2138
2139 chr->opaque = stdio;
2140 chr->chr_write = win_stdio_write;
2141 chr->chr_close = win_stdio_close;
2142
Anthony Liguoried7a1542013-03-05 23:21:17 +05302143 if (is_console) {
2144 if (qemu_add_wait_object(stdio->hStdIn,
2145 win_stdio_wait_func, chr)) {
2146 fprintf(stderr, "qemu_add_wait_object: failed\n");
2147 }
2148 } else {
2149 DWORD dwId;
2150
2151 stdio->hInputReadyEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2152 stdio->hInputDoneEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2153 stdio->hInputThread = CreateThread(NULL, 0, win_stdio_thread,
2154 chr, 0, &dwId);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002155
Anthony Liguoried7a1542013-03-05 23:21:17 +05302156 if (stdio->hInputThread == INVALID_HANDLE_VALUE
2157 || stdio->hInputReadyEvent == INVALID_HANDLE_VALUE
2158 || stdio->hInputDoneEvent == INVALID_HANDLE_VALUE) {
2159 fprintf(stderr, "cannot create stdio thread or event\n");
2160 exit(1);
2161 }
2162 if (qemu_add_wait_object(stdio->hInputReadyEvent,
2163 win_stdio_thread_wait_func, chr)) {
2164 fprintf(stderr, "qemu_add_wait_object: failed\n");
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002165 }
2166 }
2167
2168 dwMode |= ENABLE_LINE_INPUT;
2169
Anthony Liguoried7a1542013-03-05 23:21:17 +05302170 if (is_console) {
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002171 /* set the terminal in raw mode */
2172 /* ENABLE_QUICK_EDIT_MODE | ENABLE_EXTENDED_FLAGS */
2173 dwMode |= ENABLE_PROCESSED_INPUT;
2174 }
2175
2176 SetConsoleMode(stdio->hStdIn, dwMode);
2177
2178 chr->chr_set_echo = qemu_chr_set_echo_win_stdio;
2179 qemu_chr_fe_set_echo(chr, false);
2180
Markus Armbruster1f514702012-02-07 15:09:08 +01002181 return chr;
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002182}
aliguori6f97dba2008-10-31 18:49:55 +00002183#endif /* !_WIN32 */
2184
2185/***********************************************************/
2186/* UDP Net console */
2187
2188typedef struct {
2189 int fd;
Anthony Liguori76a96442013-03-05 23:21:21 +05302190 GIOChannel *chan;
2191 guint tag;
Amit Shah9bd78542009-11-03 19:59:54 +05302192 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002193 int bufcnt;
2194 int bufptr;
2195 int max_size;
2196} NetCharDriver;
2197
2198static int udp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2199{
2200 NetCharDriver *s = chr->opaque;
Anthony Liguori76a96442013-03-05 23:21:21 +05302201 gsize bytes_written;
2202 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00002203
Anthony Liguori76a96442013-03-05 23:21:21 +05302204 status = g_io_channel_write_chars(s->chan, (const gchar *)buf, len, &bytes_written, NULL);
2205 if (status == G_IO_STATUS_EOF) {
2206 return 0;
2207 } else if (status != G_IO_STATUS_NORMAL) {
2208 return -1;
2209 }
2210
2211 return bytes_written;
aliguori6f97dba2008-10-31 18:49:55 +00002212}
2213
2214static int udp_chr_read_poll(void *opaque)
2215{
2216 CharDriverState *chr = opaque;
2217 NetCharDriver *s = chr->opaque;
2218
Anthony Liguori909cda12011-08-15 11:17:31 -05002219 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002220
2221 /* If there were any stray characters in the queue process them
2222 * first
2223 */
2224 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002225 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
aliguori6f97dba2008-10-31 18:49:55 +00002226 s->bufptr++;
Anthony Liguori909cda12011-08-15 11:17:31 -05002227 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002228 }
2229 return s->max_size;
2230}
2231
Anthony Liguori76a96442013-03-05 23:21:21 +05302232static gboolean udp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002233{
2234 CharDriverState *chr = opaque;
2235 NetCharDriver *s = chr->opaque;
Anthony Liguori76a96442013-03-05 23:21:21 +05302236 gsize bytes_read = 0;
2237 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00002238
2239 if (s->max_size == 0)
Anthony Liguori76a96442013-03-05 23:21:21 +05302240 return FALSE;
2241 status = g_io_channel_read_chars(s->chan, (gchar *)s->buf, sizeof(s->buf),
2242 &bytes_read, NULL);
2243 s->bufcnt = bytes_read;
aliguori6f97dba2008-10-31 18:49:55 +00002244 s->bufptr = s->bufcnt;
Anthony Liguori76a96442013-03-05 23:21:21 +05302245 if (status != G_IO_STATUS_NORMAL) {
2246 return FALSE;
2247 }
aliguori6f97dba2008-10-31 18:49:55 +00002248
2249 s->bufptr = 0;
2250 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002251 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
aliguori6f97dba2008-10-31 18:49:55 +00002252 s->bufptr++;
Anthony Liguori909cda12011-08-15 11:17:31 -05002253 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002254 }
Anthony Liguori76a96442013-03-05 23:21:21 +05302255
2256 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002257}
2258
2259static void udp_chr_update_read_handler(CharDriverState *chr)
2260{
2261 NetCharDriver *s = chr->opaque;
2262
Anthony Liguori76a96442013-03-05 23:21:21 +05302263 if (s->tag) {
2264 g_source_remove(s->tag);
2265 s->tag = 0;
2266 }
2267
2268 if (s->chan) {
2269 s->tag = io_add_watch_poll(s->chan, udp_chr_read_poll, udp_chr_read, chr);
aliguori6f97dba2008-10-31 18:49:55 +00002270 }
2271}
2272
aliguori819f56b2009-03-28 17:58:14 +00002273static void udp_chr_close(CharDriverState *chr)
2274{
2275 NetCharDriver *s = chr->opaque;
Anthony Liguori76a96442013-03-05 23:21:21 +05302276 if (s->tag) {
2277 g_source_remove(s->tag);
2278 }
2279 if (s->chan) {
2280 g_io_channel_unref(s->chan);
aliguori819f56b2009-03-28 17:58:14 +00002281 closesocket(s->fd);
2282 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002283 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01002284 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori819f56b2009-03-28 17:58:14 +00002285}
2286
Markus Armbruster1f514702012-02-07 15:09:08 +01002287static CharDriverState *qemu_chr_open_udp(QemuOpts *opts)
aliguori6f97dba2008-10-31 18:49:55 +00002288{
2289 CharDriverState *chr = NULL;
2290 NetCharDriver *s = NULL;
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002291 Error *local_err = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002292 int fd = -1;
aliguori6f97dba2008-10-31 18:49:55 +00002293
Anthony Liguori7267c092011-08-20 22:09:37 -05002294 chr = g_malloc0(sizeof(CharDriverState));
2295 s = g_malloc0(sizeof(NetCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00002296
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002297 fd = inet_dgram_opts(opts, &local_err);
aliguori6f97dba2008-10-31 18:49:55 +00002298 if (fd < 0) {
aliguori6f97dba2008-10-31 18:49:55 +00002299 goto return_err;
2300 }
2301
2302 s->fd = fd;
Anthony Liguori76a96442013-03-05 23:21:21 +05302303 s->chan = io_channel_from_socket(s->fd);
aliguori6f97dba2008-10-31 18:49:55 +00002304 s->bufcnt = 0;
2305 s->bufptr = 0;
2306 chr->opaque = s;
2307 chr->chr_write = udp_chr_write;
2308 chr->chr_update_read_handler = udp_chr_update_read_handler;
aliguori819f56b2009-03-28 17:58:14 +00002309 chr->chr_close = udp_chr_close;
Markus Armbruster1f514702012-02-07 15:09:08 +01002310 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00002311
2312return_err:
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002313 if (local_err) {
2314 qerror_report_err(local_err);
2315 error_free(local_err);
2316 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002317 g_free(chr);
2318 g_free(s);
Kevin Wolf6e1db572011-06-01 13:29:11 +02002319 if (fd >= 0) {
aliguori6f97dba2008-10-31 18:49:55 +00002320 closesocket(fd);
Kevin Wolf6e1db572011-06-01 13:29:11 +02002321 }
Markus Armbruster1f514702012-02-07 15:09:08 +01002322 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002323}
2324
2325/***********************************************************/
2326/* TCP Net console */
2327
2328typedef struct {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302329
2330 GIOChannel *chan, *listen_chan;
2331 guint tag, listen_tag;
aliguori6f97dba2008-10-31 18:49:55 +00002332 int fd, listen_fd;
2333 int connected;
2334 int max_size;
2335 int do_telnetopt;
2336 int do_nodelay;
2337 int is_unix;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002338 int msgfd;
aliguori6f97dba2008-10-31 18:49:55 +00002339} TCPCharDriver;
2340
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302341static gboolean tcp_chr_accept(GIOChannel *chan, GIOCondition cond, void *opaque);
aliguori6f97dba2008-10-31 18:49:55 +00002342
2343static int tcp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2344{
2345 TCPCharDriver *s = chr->opaque;
2346 if (s->connected) {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302347 return io_channel_send_all(s->chan, buf, len);
Anthony Liguori455aa1e2012-09-05 13:52:49 -05002348 } else {
Anthony Liguori6db0fdc2012-09-12 14:34:07 -05002349 /* XXX: indicate an error ? */
Anthony Liguori455aa1e2012-09-05 13:52:49 -05002350 return len;
aliguori6f97dba2008-10-31 18:49:55 +00002351 }
2352}
2353
2354static int tcp_chr_read_poll(void *opaque)
2355{
2356 CharDriverState *chr = opaque;
2357 TCPCharDriver *s = chr->opaque;
2358 if (!s->connected)
2359 return 0;
Anthony Liguori909cda12011-08-15 11:17:31 -05002360 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002361 return s->max_size;
2362}
2363
2364#define IAC 255
2365#define IAC_BREAK 243
2366static void tcp_chr_process_IAC_bytes(CharDriverState *chr,
2367 TCPCharDriver *s,
2368 uint8_t *buf, int *size)
2369{
2370 /* Handle any telnet client's basic IAC options to satisfy char by
2371 * char mode with no echo. All IAC options will be removed from
2372 * the buf and the do_telnetopt variable will be used to track the
2373 * state of the width of the IAC information.
2374 *
2375 * IAC commands come in sets of 3 bytes with the exception of the
2376 * "IAC BREAK" command and the double IAC.
2377 */
2378
2379 int i;
2380 int j = 0;
2381
2382 for (i = 0; i < *size; i++) {
2383 if (s->do_telnetopt > 1) {
2384 if ((unsigned char)buf[i] == IAC && s->do_telnetopt == 2) {
2385 /* Double IAC means send an IAC */
2386 if (j != i)
2387 buf[j] = buf[i];
2388 j++;
2389 s->do_telnetopt = 1;
2390 } else {
2391 if ((unsigned char)buf[i] == IAC_BREAK && s->do_telnetopt == 2) {
2392 /* Handle IAC break commands by sending a serial break */
Hans de Goedea425d232011-11-19 10:22:43 +01002393 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
aliguori6f97dba2008-10-31 18:49:55 +00002394 s->do_telnetopt++;
2395 }
2396 s->do_telnetopt++;
2397 }
2398 if (s->do_telnetopt >= 4) {
2399 s->do_telnetopt = 1;
2400 }
2401 } else {
2402 if ((unsigned char)buf[i] == IAC) {
2403 s->do_telnetopt = 2;
2404 } else {
2405 if (j != i)
2406 buf[j] = buf[i];
2407 j++;
2408 }
2409 }
2410 }
2411 *size = j;
2412}
2413
Mark McLoughlin7d174052009-07-22 09:11:39 +01002414static int tcp_get_msgfd(CharDriverState *chr)
2415{
2416 TCPCharDriver *s = chr->opaque;
Paolo Bonzinie53f27b2010-04-16 17:25:23 +02002417 int fd = s->msgfd;
2418 s->msgfd = -1;
2419 return fd;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002420}
2421
Anthony Liguori73bcc2a2009-07-27 14:55:25 -05002422#ifndef _WIN32
Mark McLoughlin7d174052009-07-22 09:11:39 +01002423static void unix_process_msgfd(CharDriverState *chr, struct msghdr *msg)
2424{
2425 TCPCharDriver *s = chr->opaque;
2426 struct cmsghdr *cmsg;
2427
2428 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
2429 int fd;
2430
2431 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)) ||
2432 cmsg->cmsg_level != SOL_SOCKET ||
2433 cmsg->cmsg_type != SCM_RIGHTS)
2434 continue;
2435
2436 fd = *((int *)CMSG_DATA(cmsg));
2437 if (fd < 0)
2438 continue;
2439
Corey Bryant06138652012-08-14 16:43:42 -04002440#ifndef MSG_CMSG_CLOEXEC
2441 qemu_set_cloexec(fd);
2442#endif
Mark McLoughlin7d174052009-07-22 09:11:39 +01002443 if (s->msgfd != -1)
2444 close(s->msgfd);
2445 s->msgfd = fd;
2446 }
2447}
2448
Mark McLoughlin9977c892009-07-22 09:11:38 +01002449static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2450{
2451 TCPCharDriver *s = chr->opaque;
Blue Swirl7cba04f2009-08-01 10:13:20 +00002452 struct msghdr msg = { NULL, };
Mark McLoughlin9977c892009-07-22 09:11:38 +01002453 struct iovec iov[1];
Mark McLoughlin7d174052009-07-22 09:11:39 +01002454 union {
2455 struct cmsghdr cmsg;
2456 char control[CMSG_SPACE(sizeof(int))];
2457 } msg_control;
Corey Bryant06138652012-08-14 16:43:42 -04002458 int flags = 0;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002459 ssize_t ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002460
2461 iov[0].iov_base = buf;
2462 iov[0].iov_len = len;
2463
2464 msg.msg_iov = iov;
2465 msg.msg_iovlen = 1;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002466 msg.msg_control = &msg_control;
2467 msg.msg_controllen = sizeof(msg_control);
Mark McLoughlin9977c892009-07-22 09:11:38 +01002468
Corey Bryant06138652012-08-14 16:43:42 -04002469#ifdef MSG_CMSG_CLOEXEC
2470 flags |= MSG_CMSG_CLOEXEC;
2471#endif
2472 ret = recvmsg(s->fd, &msg, flags);
2473 if (ret > 0 && s->is_unix) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002474 unix_process_msgfd(chr, &msg);
Corey Bryant06138652012-08-14 16:43:42 -04002475 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002476
2477 return ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002478}
2479#else
2480static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2481{
2482 TCPCharDriver *s = chr->opaque;
Blue Swirl00aa0042011-07-23 20:04:29 +00002483 return qemu_recv(s->fd, buf, len, 0);
Mark McLoughlin9977c892009-07-22 09:11:38 +01002484}
2485#endif
2486
Amit Shahd3cc5bc2013-03-05 23:21:25 +05302487static GSource *tcp_chr_add_watch(CharDriverState *chr, GIOCondition cond)
2488{
2489 TCPCharDriver *s = chr->opaque;
2490 return g_io_create_watch(s->chan, cond);
2491}
2492
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302493static gboolean tcp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002494{
2495 CharDriverState *chr = opaque;
2496 TCPCharDriver *s = chr->opaque;
Amit Shah9bd78542009-11-03 19:59:54 +05302497 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002498 int len, size;
2499
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302500 if (!s->connected || s->max_size <= 0) {
2501 return FALSE;
2502 }
aliguori6f97dba2008-10-31 18:49:55 +00002503 len = sizeof(buf);
2504 if (len > s->max_size)
2505 len = s->max_size;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002506 size = tcp_chr_recv(chr, (void *)buf, len);
aliguori6f97dba2008-10-31 18:49:55 +00002507 if (size == 0) {
2508 /* connection closed */
2509 s->connected = 0;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302510 if (s->listen_chan) {
2511 s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN, tcp_chr_accept, chr);
aliguori6f97dba2008-10-31 18:49:55 +00002512 }
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302513 g_source_remove(s->tag);
2514 s->tag = 0;
2515 g_io_channel_unref(s->chan);
2516 s->chan = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002517 closesocket(s->fd);
2518 s->fd = -1;
Hans de Goedea425d232011-11-19 10:22:43 +01002519 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00002520 } else if (size > 0) {
2521 if (s->do_telnetopt)
2522 tcp_chr_process_IAC_bytes(chr, s, buf, &size);
2523 if (size > 0)
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002524 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00002525 }
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302526
2527 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002528}
2529
Blue Swirl68c18d12010-08-15 09:46:24 +00002530#ifndef _WIN32
2531CharDriverState *qemu_chr_open_eventfd(int eventfd)
2532{
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002533 return qemu_chr_open_fd(eventfd, eventfd);
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002534}
Blue Swirl68c18d12010-08-15 09:46:24 +00002535#endif
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002536
aliguori6f97dba2008-10-31 18:49:55 +00002537static void tcp_chr_connect(void *opaque)
2538{
2539 CharDriverState *chr = opaque;
2540 TCPCharDriver *s = chr->opaque;
2541
2542 s->connected = 1;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302543 if (s->chan) {
2544 s->tag = io_add_watch_poll(s->chan, tcp_chr_read_poll, tcp_chr_read, chr);
David Gibsonbbdd2ad2012-09-10 12:30:56 +10002545 }
Amit Shah127338e2009-11-03 19:59:56 +05302546 qemu_chr_generic_open(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002547}
2548
2549#define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
2550static void tcp_chr_telnet_init(int fd)
2551{
2552 char buf[3];
2553 /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
2554 IACSET(buf, 0xff, 0xfb, 0x01); /* IAC WILL ECHO */
2555 send(fd, (char *)buf, 3, 0);
2556 IACSET(buf, 0xff, 0xfb, 0x03); /* IAC WILL Suppress go ahead */
2557 send(fd, (char *)buf, 3, 0);
2558 IACSET(buf, 0xff, 0xfb, 0x00); /* IAC WILL Binary */
2559 send(fd, (char *)buf, 3, 0);
2560 IACSET(buf, 0xff, 0xfd, 0x00); /* IAC DO Binary */
2561 send(fd, (char *)buf, 3, 0);
2562}
2563
Daniel P. Berrange13661082011-06-23 13:31:42 +01002564static int tcp_chr_add_client(CharDriverState *chr, int fd)
2565{
2566 TCPCharDriver *s = chr->opaque;
2567 if (s->fd != -1)
2568 return -1;
2569
2570 socket_set_nonblock(fd);
2571 if (s->do_nodelay)
2572 socket_set_nodelay(fd);
2573 s->fd = fd;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302574 s->chan = io_channel_from_socket(fd);
2575 g_source_remove(s->listen_tag);
2576 s->listen_tag = 0;
Daniel P. Berrange13661082011-06-23 13:31:42 +01002577 tcp_chr_connect(chr);
2578
2579 return 0;
2580}
2581
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302582static gboolean tcp_chr_accept(GIOChannel *channel, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002583{
2584 CharDriverState *chr = opaque;
2585 TCPCharDriver *s = chr->opaque;
2586 struct sockaddr_in saddr;
2587#ifndef _WIN32
2588 struct sockaddr_un uaddr;
2589#endif
2590 struct sockaddr *addr;
2591 socklen_t len;
2592 int fd;
2593
2594 for(;;) {
2595#ifndef _WIN32
2596 if (s->is_unix) {
2597 len = sizeof(uaddr);
2598 addr = (struct sockaddr *)&uaddr;
2599 } else
2600#endif
2601 {
2602 len = sizeof(saddr);
2603 addr = (struct sockaddr *)&saddr;
2604 }
Kevin Wolf40ff6d72009-12-02 12:24:42 +01002605 fd = qemu_accept(s->listen_fd, addr, &len);
aliguori6f97dba2008-10-31 18:49:55 +00002606 if (fd < 0 && errno != EINTR) {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302607 return FALSE;
aliguori6f97dba2008-10-31 18:49:55 +00002608 } else if (fd >= 0) {
2609 if (s->do_telnetopt)
2610 tcp_chr_telnet_init(fd);
2611 break;
2612 }
2613 }
Daniel P. Berrange13661082011-06-23 13:31:42 +01002614 if (tcp_chr_add_client(chr, fd) < 0)
2615 close(fd);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302616
2617 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002618}
2619
2620static void tcp_chr_close(CharDriverState *chr)
2621{
2622 TCPCharDriver *s = chr->opaque;
aliguori819f56b2009-03-28 17:58:14 +00002623 if (s->fd >= 0) {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302624 if (s->tag) {
2625 g_source_remove(s->tag);
2626 }
2627 if (s->chan) {
2628 g_io_channel_unref(s->chan);
2629 }
aliguori6f97dba2008-10-31 18:49:55 +00002630 closesocket(s->fd);
aliguori819f56b2009-03-28 17:58:14 +00002631 }
2632 if (s->listen_fd >= 0) {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302633 if (s->listen_tag) {
2634 g_source_remove(s->listen_tag);
2635 }
2636 if (s->listen_chan) {
2637 g_io_channel_unref(s->listen_chan);
2638 }
aliguori6f97dba2008-10-31 18:49:55 +00002639 closesocket(s->listen_fd);
aliguori819f56b2009-03-28 17:58:14 +00002640 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002641 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01002642 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00002643}
2644
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002645static CharDriverState *qemu_chr_open_socket_fd(int fd, bool do_nodelay,
2646 bool is_listen, bool is_telnet,
2647 bool is_waitconnect,
2648 Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00002649{
2650 CharDriverState *chr = NULL;
2651 TCPCharDriver *s = NULL;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002652 char host[NI_MAXHOST], serv[NI_MAXSERV];
2653 const char *left = "", *right = "";
2654 struct sockaddr_storage ss;
2655 socklen_t ss_len = sizeof(ss);
2656
2657 memset(&ss, 0, ss_len);
2658 if (getsockname(fd, (struct sockaddr *) &ss, &ss_len) != 0) {
2659 error_setg(errp, "getsockname: %s", strerror(errno));
2660 return NULL;
2661 }
2662
2663 chr = g_malloc0(sizeof(CharDriverState));
2664 s = g_malloc0(sizeof(TCPCharDriver));
2665
2666 s->connected = 0;
2667 s->fd = -1;
2668 s->listen_fd = -1;
2669 s->msgfd = -1;
2670
2671 chr->filename = g_malloc(256);
2672 switch (ss.ss_family) {
2673#ifndef _WIN32
2674 case AF_UNIX:
2675 s->is_unix = 1;
2676 snprintf(chr->filename, 256, "unix:%s%s",
2677 ((struct sockaddr_un *)(&ss))->sun_path,
2678 is_listen ? ",server" : "");
2679 break;
2680#endif
2681 case AF_INET6:
2682 left = "[";
2683 right = "]";
2684 /* fall through */
2685 case AF_INET:
2686 s->do_nodelay = do_nodelay;
2687 getnameinfo((struct sockaddr *) &ss, ss_len, host, sizeof(host),
2688 serv, sizeof(serv), NI_NUMERICHOST | NI_NUMERICSERV);
2689 snprintf(chr->filename, 256, "%s:%s:%s%s%s%s",
2690 is_telnet ? "telnet" : "tcp",
2691 left, host, right, serv,
2692 is_listen ? ",server" : "");
2693 break;
2694 }
2695
2696 chr->opaque = s;
2697 chr->chr_write = tcp_chr_write;
2698 chr->chr_close = tcp_chr_close;
2699 chr->get_msgfd = tcp_get_msgfd;
2700 chr->chr_add_client = tcp_chr_add_client;
Amit Shahd3cc5bc2013-03-05 23:21:25 +05302701 chr->chr_add_watch = tcp_chr_add_watch;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002702
2703 if (is_listen) {
2704 s->listen_fd = fd;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302705 s->listen_chan = io_channel_from_socket(s->listen_fd);
2706 s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN, tcp_chr_accept, chr);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002707 if (is_telnet) {
2708 s->do_telnetopt = 1;
2709 }
2710 } else {
2711 s->connected = 1;
2712 s->fd = fd;
2713 socket_set_nodelay(fd);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302714 s->chan = io_channel_from_socket(s->fd);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002715 tcp_chr_connect(chr);
2716 }
2717
2718 if (is_listen && is_waitconnect) {
2719 printf("QEMU waiting for connection on: %s\n",
2720 chr->filename);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302721 tcp_chr_accept(s->listen_chan, G_IO_IN, chr);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002722 socket_set_nonblock(s->listen_fd);
2723 }
2724 return chr;
2725}
2726
2727static CharDriverState *qemu_chr_open_socket(QemuOpts *opts)
2728{
2729 CharDriverState *chr = NULL;
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002730 Error *local_err = NULL;
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02002731 int fd = -1;
2732 int is_listen;
2733 int is_waitconnect;
2734 int do_nodelay;
2735 int is_unix;
2736 int is_telnet;
aliguori6f97dba2008-10-31 18:49:55 +00002737
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02002738 is_listen = qemu_opt_get_bool(opts, "server", 0);
2739 is_waitconnect = qemu_opt_get_bool(opts, "wait", 1);
2740 is_telnet = qemu_opt_get_bool(opts, "telnet", 0);
2741 do_nodelay = !qemu_opt_get_bool(opts, "delay", 1);
2742 is_unix = qemu_opt_get(opts, "path") != NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002743 if (!is_listen)
2744 is_waitconnect = 0;
2745
aliguorif07b6002008-11-11 20:54:09 +00002746 if (is_unix) {
2747 if (is_listen) {
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002748 fd = unix_listen_opts(opts, &local_err);
aliguorif07b6002008-11-11 20:54:09 +00002749 } else {
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002750 fd = unix_connect_opts(opts, &local_err, NULL, NULL);
aliguorif07b6002008-11-11 20:54:09 +00002751 }
2752 } else {
2753 if (is_listen) {
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002754 fd = inet_listen_opts(opts, 0, &local_err);
aliguorif07b6002008-11-11 20:54:09 +00002755 } else {
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002756 fd = inet_connect_opts(opts, &local_err, NULL, NULL);
aliguorif07b6002008-11-11 20:54:09 +00002757 }
2758 }
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01002759 if (fd < 0) {
aliguori6f97dba2008-10-31 18:49:55 +00002760 goto fail;
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01002761 }
aliguori6f97dba2008-10-31 18:49:55 +00002762
2763 if (!is_waitconnect)
2764 socket_set_nonblock(fd);
2765
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002766 chr = qemu_chr_open_socket_fd(fd, do_nodelay, is_listen, is_telnet,
2767 is_waitconnect, &local_err);
2768 if (error_is_set(&local_err)) {
2769 goto fail;
aliguori6f97dba2008-10-31 18:49:55 +00002770 }
Markus Armbruster1f514702012-02-07 15:09:08 +01002771 return chr;
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02002772
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002773
aliguori6f97dba2008-10-31 18:49:55 +00002774 fail:
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002775 if (local_err) {
2776 qerror_report_err(local_err);
2777 error_free(local_err);
2778 }
2779 if (fd >= 0) {
aliguori6f97dba2008-10-31 18:49:55 +00002780 closesocket(fd);
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002781 }
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002782 if (chr) {
2783 g_free(chr->opaque);
2784 g_free(chr);
2785 }
Markus Armbruster1f514702012-02-07 15:09:08 +01002786 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002787}
2788
Luiz Capitulino999bd672010-10-22 16:09:05 -02002789/***********************************************************/
2790/* Memory chardev */
2791typedef struct {
2792 size_t outbuf_size;
2793 size_t outbuf_capacity;
2794 uint8_t *outbuf;
2795} MemoryDriver;
2796
2797static int mem_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2798{
2799 MemoryDriver *d = chr->opaque;
2800
2801 /* TODO: the QString implementation has the same code, we should
2802 * introduce a generic way to do this in cutils.c */
2803 if (d->outbuf_capacity < d->outbuf_size + len) {
2804 /* grow outbuf */
2805 d->outbuf_capacity += len;
2806 d->outbuf_capacity *= 2;
Anthony Liguori7267c092011-08-20 22:09:37 -05002807 d->outbuf = g_realloc(d->outbuf, d->outbuf_capacity);
Luiz Capitulino999bd672010-10-22 16:09:05 -02002808 }
2809
2810 memcpy(d->outbuf + d->outbuf_size, buf, len);
2811 d->outbuf_size += len;
2812
2813 return len;
2814}
2815
2816void qemu_chr_init_mem(CharDriverState *chr)
2817{
2818 MemoryDriver *d;
2819
Anthony Liguori7267c092011-08-20 22:09:37 -05002820 d = g_malloc(sizeof(*d));
Luiz Capitulino999bd672010-10-22 16:09:05 -02002821 d->outbuf_size = 0;
2822 d->outbuf_capacity = 4096;
Anthony Liguori7267c092011-08-20 22:09:37 -05002823 d->outbuf = g_malloc0(d->outbuf_capacity);
Luiz Capitulino999bd672010-10-22 16:09:05 -02002824
2825 memset(chr, 0, sizeof(*chr));
2826 chr->opaque = d;
2827 chr->chr_write = mem_chr_write;
2828}
2829
2830QString *qemu_chr_mem_to_qs(CharDriverState *chr)
2831{
2832 MemoryDriver *d = chr->opaque;
2833 return qstring_from_substr((char *) d->outbuf, 0, d->outbuf_size - 1);
2834}
2835
Anthony Liguori70f24fb2011-08-15 11:17:38 -05002836/* NOTE: this driver can not be closed with qemu_chr_delete()! */
Luiz Capitulino999bd672010-10-22 16:09:05 -02002837void qemu_chr_close_mem(CharDriverState *chr)
2838{
2839 MemoryDriver *d = chr->opaque;
2840
Anthony Liguori7267c092011-08-20 22:09:37 -05002841 g_free(d->outbuf);
2842 g_free(chr->opaque);
Luiz Capitulino999bd672010-10-22 16:09:05 -02002843 chr->opaque = NULL;
2844 chr->chr_write = NULL;
2845}
2846
2847size_t qemu_chr_mem_osize(const CharDriverState *chr)
2848{
2849 const MemoryDriver *d = chr->opaque;
2850 return d->outbuf_size;
2851}
2852
Lei Li51767e72013-01-25 00:03:19 +08002853/*********************************************************/
Markus Armbruster3949e592013-02-06 21:27:24 +01002854/* Ring buffer chardev */
Lei Li51767e72013-01-25 00:03:19 +08002855
2856typedef struct {
2857 size_t size;
2858 size_t prod;
2859 size_t cons;
2860 uint8_t *cbuf;
Markus Armbruster3949e592013-02-06 21:27:24 +01002861} RingBufCharDriver;
Lei Li51767e72013-01-25 00:03:19 +08002862
Markus Armbruster3949e592013-02-06 21:27:24 +01002863static size_t ringbuf_count(const CharDriverState *chr)
Lei Li51767e72013-01-25 00:03:19 +08002864{
Markus Armbruster3949e592013-02-06 21:27:24 +01002865 const RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08002866
Markus Armbruster5c230102013-02-06 21:27:23 +01002867 return d->prod - d->cons;
Lei Li51767e72013-01-25 00:03:19 +08002868}
2869
Markus Armbruster3949e592013-02-06 21:27:24 +01002870static int ringbuf_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
Lei Li51767e72013-01-25 00:03:19 +08002871{
Markus Armbruster3949e592013-02-06 21:27:24 +01002872 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08002873 int i;
2874
2875 if (!buf || (len < 0)) {
2876 return -1;
2877 }
2878
2879 for (i = 0; i < len; i++ ) {
Markus Armbruster5c230102013-02-06 21:27:23 +01002880 d->cbuf[d->prod++ & (d->size - 1)] = buf[i];
2881 if (d->prod - d->cons > d->size) {
Lei Li51767e72013-01-25 00:03:19 +08002882 d->cons = d->prod - d->size;
2883 }
2884 }
2885
2886 return 0;
2887}
2888
Markus Armbruster3949e592013-02-06 21:27:24 +01002889static int ringbuf_chr_read(CharDriverState *chr, uint8_t *buf, int len)
Lei Li51767e72013-01-25 00:03:19 +08002890{
Markus Armbruster3949e592013-02-06 21:27:24 +01002891 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08002892 int i;
2893
Markus Armbruster5c230102013-02-06 21:27:23 +01002894 for (i = 0; i < len && d->cons != d->prod; i++) {
2895 buf[i] = d->cbuf[d->cons++ & (d->size - 1)];
Lei Li51767e72013-01-25 00:03:19 +08002896 }
2897
2898 return i;
2899}
2900
Markus Armbruster3949e592013-02-06 21:27:24 +01002901static void ringbuf_chr_close(struct CharDriverState *chr)
Lei Li51767e72013-01-25 00:03:19 +08002902{
Markus Armbruster3949e592013-02-06 21:27:24 +01002903 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08002904
2905 g_free(d->cbuf);
2906 g_free(d);
2907 chr->opaque = NULL;
2908}
2909
Markus Armbruster3949e592013-02-06 21:27:24 +01002910static CharDriverState *qemu_chr_open_ringbuf(QemuOpts *opts)
Lei Li51767e72013-01-25 00:03:19 +08002911{
2912 CharDriverState *chr;
Markus Armbruster3949e592013-02-06 21:27:24 +01002913 RingBufCharDriver *d;
Lei Li51767e72013-01-25 00:03:19 +08002914
2915 chr = g_malloc0(sizeof(CharDriverState));
2916 d = g_malloc(sizeof(*d));
2917
Markus Armbrusterde1cc362013-02-06 21:27:25 +01002918 d->size = qemu_opt_get_size(opts, "size", 0);
Lei Li51767e72013-01-25 00:03:19 +08002919 if (d->size == 0) {
Markus Armbrusterde1cc362013-02-06 21:27:25 +01002920 d->size = 65536;
Lei Li51767e72013-01-25 00:03:19 +08002921 }
2922
2923 /* The size must be power of 2 */
2924 if (d->size & (d->size - 1)) {
Markus Armbruster3949e592013-02-06 21:27:24 +01002925 error_report("size of ringbuf device must be power of two");
Lei Li51767e72013-01-25 00:03:19 +08002926 goto fail;
2927 }
2928
2929 d->prod = 0;
2930 d->cons = 0;
2931 d->cbuf = g_malloc0(d->size);
2932
2933 chr->opaque = d;
Markus Armbruster3949e592013-02-06 21:27:24 +01002934 chr->chr_write = ringbuf_chr_write;
2935 chr->chr_close = ringbuf_chr_close;
Lei Li51767e72013-01-25 00:03:19 +08002936
2937 return chr;
2938
2939fail:
2940 g_free(d);
2941 g_free(chr);
2942 return NULL;
2943}
2944
Markus Armbruster3949e592013-02-06 21:27:24 +01002945static bool chr_is_ringbuf(const CharDriverState *chr)
Lei Li1f590cf2013-01-25 00:03:20 +08002946{
Markus Armbruster3949e592013-02-06 21:27:24 +01002947 return chr->chr_write == ringbuf_chr_write;
Lei Li1f590cf2013-01-25 00:03:20 +08002948}
2949
Markus Armbruster3949e592013-02-06 21:27:24 +01002950void qmp_ringbuf_write(const char *device, const char *data,
Markus Armbruster82e59a62013-02-06 21:27:14 +01002951 bool has_format, enum DataFormat format,
Lei Li1f590cf2013-01-25 00:03:20 +08002952 Error **errp)
2953{
2954 CharDriverState *chr;
Markus Armbrusterc4f331b2013-02-06 21:27:17 +01002955 const uint8_t *write_data;
Lei Li1f590cf2013-01-25 00:03:20 +08002956 int ret;
Markus Armbrusterc4f331b2013-02-06 21:27:17 +01002957 size_t write_count;
Lei Li1f590cf2013-01-25 00:03:20 +08002958
2959 chr = qemu_chr_find(device);
2960 if (!chr) {
Markus Armbruster1a692782013-02-06 21:27:16 +01002961 error_setg(errp, "Device '%s' not found", device);
Lei Li1f590cf2013-01-25 00:03:20 +08002962 return;
2963 }
2964
Markus Armbruster3949e592013-02-06 21:27:24 +01002965 if (!chr_is_ringbuf(chr)) {
2966 error_setg(errp,"%s is not a ringbuf device", device);
Lei Li1f590cf2013-01-25 00:03:20 +08002967 return;
2968 }
2969
Lei Li1f590cf2013-01-25 00:03:20 +08002970 if (has_format && (format == DATA_FORMAT_BASE64)) {
2971 write_data = g_base64_decode(data, &write_count);
2972 } else {
2973 write_data = (uint8_t *)data;
Markus Armbruster82e59a62013-02-06 21:27:14 +01002974 write_count = strlen(data);
Lei Li1f590cf2013-01-25 00:03:20 +08002975 }
2976
Markus Armbruster3949e592013-02-06 21:27:24 +01002977 ret = ringbuf_chr_write(chr, write_data, write_count);
Lei Li1f590cf2013-01-25 00:03:20 +08002978
Markus Armbruster13289fb2013-02-06 21:27:18 +01002979 if (write_data != (uint8_t *)data) {
2980 g_free((void *)write_data);
2981 }
2982
Lei Li1f590cf2013-01-25 00:03:20 +08002983 if (ret < 0) {
2984 error_setg(errp, "Failed to write to device %s", device);
2985 return;
2986 }
2987}
2988
Markus Armbruster3949e592013-02-06 21:27:24 +01002989char *qmp_ringbuf_read(const char *device, int64_t size,
Markus Armbruster3ab651f2013-02-06 21:27:15 +01002990 bool has_format, enum DataFormat format,
2991 Error **errp)
Lei Li49b6d722013-01-25 00:03:21 +08002992{
2993 CharDriverState *chr;
Markus Armbrusterc4f331b2013-02-06 21:27:17 +01002994 uint8_t *read_data;
Lei Li49b6d722013-01-25 00:03:21 +08002995 size_t count;
Markus Armbruster3ab651f2013-02-06 21:27:15 +01002996 char *data;
Lei Li49b6d722013-01-25 00:03:21 +08002997
2998 chr = qemu_chr_find(device);
2999 if (!chr) {
Markus Armbruster1a692782013-02-06 21:27:16 +01003000 error_setg(errp, "Device '%s' not found", device);
Lei Li49b6d722013-01-25 00:03:21 +08003001 return NULL;
3002 }
3003
Markus Armbruster3949e592013-02-06 21:27:24 +01003004 if (!chr_is_ringbuf(chr)) {
3005 error_setg(errp,"%s is not a ringbuf device", device);
Lei Li49b6d722013-01-25 00:03:21 +08003006 return NULL;
3007 }
3008
3009 if (size <= 0) {
3010 error_setg(errp, "size must be greater than zero");
3011 return NULL;
3012 }
3013
Markus Armbruster3949e592013-02-06 21:27:24 +01003014 count = ringbuf_count(chr);
Lei Li49b6d722013-01-25 00:03:21 +08003015 size = size > count ? count : size;
Markus Armbruster44f3bcd2013-02-06 21:27:20 +01003016 read_data = g_malloc(size + 1);
Lei Li49b6d722013-01-25 00:03:21 +08003017
Markus Armbruster3949e592013-02-06 21:27:24 +01003018 ringbuf_chr_read(chr, read_data, size);
Lei Li49b6d722013-01-25 00:03:21 +08003019
3020 if (has_format && (format == DATA_FORMAT_BASE64)) {
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003021 data = g_base64_encode(read_data, size);
Markus Armbruster13289fb2013-02-06 21:27:18 +01003022 g_free(read_data);
Lei Li49b6d722013-01-25 00:03:21 +08003023 } else {
Markus Armbruster3949e592013-02-06 21:27:24 +01003024 /*
3025 * FIXME should read only complete, valid UTF-8 characters up
3026 * to @size bytes. Invalid sequences should be replaced by a
3027 * suitable replacement character. Except when (and only
3028 * when) ring buffer lost characters since last read, initial
3029 * continuation characters should be dropped.
3030 */
Markus Armbruster44f3bcd2013-02-06 21:27:20 +01003031 read_data[size] = 0;
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003032 data = (char *)read_data;
Lei Li49b6d722013-01-25 00:03:21 +08003033 }
3034
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003035 return data;
Lei Li49b6d722013-01-25 00:03:21 +08003036}
3037
Gerd Hoffmann33521632009-12-08 13:11:49 +01003038QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003039{
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003040 char host[65], port[33], width[8], height[8];
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003041 int pos;
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003042 const char *p;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003043 QemuOpts *opts;
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003044 Error *local_err = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003045
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003046 opts = qemu_opts_create(qemu_find_opts("chardev"), label, 1, &local_err);
3047 if (error_is_set(&local_err)) {
3048 qerror_report_err(local_err);
3049 error_free(local_err);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003050 return NULL;
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003051 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003052
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003053 if (strstart(filename, "mon:", &p)) {
3054 filename = p;
3055 qemu_opt_set(opts, "mux", "on");
3056 }
3057
Gerd Hoffmannf0457e82009-09-10 10:58:45 +02003058 if (strcmp(filename, "null") == 0 ||
3059 strcmp(filename, "pty") == 0 ||
3060 strcmp(filename, "msmouse") == 0 ||
Gerd Hoffmanndc1c21e2009-09-10 10:58:46 +02003061 strcmp(filename, "braille") == 0 ||
Gerd Hoffmannf0457e82009-09-10 10:58:45 +02003062 strcmp(filename, "stdio") == 0) {
Gerd Hoffmann4490dad2009-09-10 10:58:43 +02003063 qemu_opt_set(opts, "backend", filename);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003064 return opts;
3065 }
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003066 if (strstart(filename, "vc", &p)) {
3067 qemu_opt_set(opts, "backend", "vc");
3068 if (*p == ':') {
3069 if (sscanf(p+1, "%8[0-9]x%8[0-9]", width, height) == 2) {
3070 /* pixels */
3071 qemu_opt_set(opts, "width", width);
3072 qemu_opt_set(opts, "height", height);
3073 } else if (sscanf(p+1, "%8[0-9]Cx%8[0-9]C", width, height) == 2) {
3074 /* chars */
3075 qemu_opt_set(opts, "cols", width);
3076 qemu_opt_set(opts, "rows", height);
3077 } else {
3078 goto fail;
3079 }
3080 }
3081 return opts;
3082 }
Gerd Hoffmannd6c983c2009-09-10 10:58:47 +02003083 if (strcmp(filename, "con:") == 0) {
3084 qemu_opt_set(opts, "backend", "console");
3085 return opts;
3086 }
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003087 if (strstart(filename, "COM", NULL)) {
3088 qemu_opt_set(opts, "backend", "serial");
3089 qemu_opt_set(opts, "path", filename);
3090 return opts;
3091 }
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003092 if (strstart(filename, "file:", &p)) {
3093 qemu_opt_set(opts, "backend", "file");
3094 qemu_opt_set(opts, "path", p);
3095 return opts;
3096 }
3097 if (strstart(filename, "pipe:", &p)) {
3098 qemu_opt_set(opts, "backend", "pipe");
3099 qemu_opt_set(opts, "path", p);
3100 return opts;
3101 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003102 if (strstart(filename, "tcp:", &p) ||
3103 strstart(filename, "telnet:", &p)) {
3104 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3105 host[0] = 0;
3106 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1)
3107 goto fail;
3108 }
3109 qemu_opt_set(opts, "backend", "socket");
3110 qemu_opt_set(opts, "host", host);
3111 qemu_opt_set(opts, "port", port);
3112 if (p[pos] == ',') {
3113 if (qemu_opts_do_parse(opts, p+pos+1, NULL) != 0)
3114 goto fail;
3115 }
3116 if (strstart(filename, "telnet:", &p))
3117 qemu_opt_set(opts, "telnet", "on");
3118 return opts;
3119 }
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003120 if (strstart(filename, "udp:", &p)) {
3121 qemu_opt_set(opts, "backend", "udp");
3122 if (sscanf(p, "%64[^:]:%32[^@,]%n", host, port, &pos) < 2) {
3123 host[0] = 0;
Jan Kiszka39324ca2010-03-07 11:28:48 +01003124 if (sscanf(p, ":%32[^@,]%n", port, &pos) < 1) {
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003125 goto fail;
3126 }
3127 }
3128 qemu_opt_set(opts, "host", host);
3129 qemu_opt_set(opts, "port", port);
3130 if (p[pos] == '@') {
3131 p += pos + 1;
3132 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3133 host[0] = 0;
3134 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1) {
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003135 goto fail;
3136 }
3137 }
3138 qemu_opt_set(opts, "localaddr", host);
3139 qemu_opt_set(opts, "localport", port);
3140 }
3141 return opts;
3142 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003143 if (strstart(filename, "unix:", &p)) {
3144 qemu_opt_set(opts, "backend", "socket");
3145 if (qemu_opts_do_parse(opts, p, "path") != 0)
3146 goto fail;
3147 return opts;
3148 }
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003149 if (strstart(filename, "/dev/parport", NULL) ||
3150 strstart(filename, "/dev/ppi", NULL)) {
3151 qemu_opt_set(opts, "backend", "parport");
3152 qemu_opt_set(opts, "path", filename);
3153 return opts;
3154 }
3155 if (strstart(filename, "/dev/", NULL)) {
3156 qemu_opt_set(opts, "backend", "tty");
3157 qemu_opt_set(opts, "path", filename);
3158 return opts;
3159 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003160
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003161fail:
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003162 qemu_opts_del(opts);
3163 return NULL;
3164}
3165
Gerd Hoffmann88a946d2013-01-10 14:20:58 +01003166#ifdef HAVE_CHARDEV_PARPORT
3167
3168static CharDriverState *qemu_chr_open_pp(QemuOpts *opts)
3169{
3170 const char *filename = qemu_opt_get(opts, "path");
3171 int fd;
3172
3173 fd = qemu_open(filename, O_RDWR);
3174 if (fd < 0) {
3175 return NULL;
3176 }
3177 return qemu_chr_open_pp_fd(fd);
3178}
3179
3180#endif
3181
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003182static const struct {
3183 const char *name;
Markus Armbruster1f514702012-02-07 15:09:08 +01003184 CharDriverState *(*open)(QemuOpts *opts);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003185} backend_table[] = {
3186 { .name = "null", .open = qemu_chr_open_null },
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003187 { .name = "socket", .open = qemu_chr_open_socket },
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003188 { .name = "udp", .open = qemu_chr_open_udp },
Gerd Hoffmannf0457e82009-09-10 10:58:45 +02003189 { .name = "msmouse", .open = qemu_chr_open_msmouse },
Anthony Liguorid82831d2013-02-20 07:43:19 -06003190 { .name = "vc", .open = vc_init },
Markus Armbruster3949e592013-02-06 21:27:24 +01003191 { .name = "memory", .open = qemu_chr_open_ringbuf },
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003192#ifdef _WIN32
3193 { .name = "file", .open = qemu_chr_open_win_file_out },
3194 { .name = "pipe", .open = qemu_chr_open_win_pipe },
Gerd Hoffmannd6c983c2009-09-10 10:58:47 +02003195 { .name = "console", .open = qemu_chr_open_win_con },
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003196 { .name = "serial", .open = qemu_chr_open_win },
Fabien Chouteaudb418a02011-10-06 16:37:51 +02003197 { .name = "stdio", .open = qemu_chr_open_win_stdio },
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003198#else
3199 { .name = "file", .open = qemu_chr_open_file_out },
3200 { .name = "pipe", .open = qemu_chr_open_pipe },
Gerd Hoffmann3c17aff2009-09-10 10:58:44 +02003201 { .name = "stdio", .open = qemu_chr_open_stdio },
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003202#endif
Gerd Hoffmanndc1c21e2009-09-10 10:58:46 +02003203#ifdef CONFIG_BRLAPI
3204 { .name = "braille", .open = chr_baum_init },
3205#endif
Gerd Hoffmanne5514982012-12-19 16:35:42 +01003206#ifdef HAVE_CHARDEV_TTY
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003207 { .name = "tty", .open = qemu_chr_open_tty },
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003208 { .name = "serial", .open = qemu_chr_open_tty },
Gerd Hoffmanne5514982012-12-19 16:35:42 +01003209 { .name = "pty", .open = qemu_chr_open_pty },
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003210#endif
Gerd Hoffmanne5514982012-12-19 16:35:42 +01003211#ifdef HAVE_CHARDEV_PARPORT
Gerd Hoffmann88a946d2013-01-10 14:20:58 +01003212 { .name = "parallel", .open = qemu_chr_open_pp },
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003213 { .name = "parport", .open = qemu_chr_open_pp },
3214#endif
Alon Levycbcc6332011-01-19 10:49:50 +02003215#ifdef CONFIG_SPICE
3216 { .name = "spicevmc", .open = qemu_chr_open_spice },
Marc-André Lureau5a49d3e2012-12-05 16:15:34 +01003217#if SPICE_SERVER_VERSION >= 0x000c02
3218 { .name = "spiceport", .open = qemu_chr_open_spice_port },
3219#endif
Alon Levycbcc6332011-01-19 10:49:50 +02003220#endif
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003221};
3222
Anthony Liguorif69554b2011-08-15 11:17:37 -05003223CharDriverState *qemu_chr_new_from_opts(QemuOpts *opts,
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003224 void (*init)(struct CharDriverState *s),
3225 Error **errp)
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003226{
3227 CharDriverState *chr;
3228 int i;
3229
3230 if (qemu_opts_id(opts) == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003231 error_setg(errp, "chardev: no id specified");
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003232 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003233 }
3234
Stefan Hajnoczi1bbd1852011-01-22 13:07:26 +00003235 if (qemu_opt_get(opts, "backend") == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003236 error_setg(errp, "chardev: \"%s\" missing backend",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003237 qemu_opts_id(opts));
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003238 goto err;
Stefan Hajnoczi1bbd1852011-01-22 13:07:26 +00003239 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003240 for (i = 0; i < ARRAY_SIZE(backend_table); i++) {
3241 if (strcmp(backend_table[i].name, qemu_opt_get(opts, "backend")) == 0)
3242 break;
3243 }
3244 if (i == ARRAY_SIZE(backend_table)) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003245 error_setg(errp, "chardev: backend \"%s\" not found",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003246 qemu_opt_get(opts, "backend"));
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003247 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003248 }
3249
Markus Armbruster1f514702012-02-07 15:09:08 +01003250 chr = backend_table[i].open(opts);
3251 if (!chr) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003252 error_setg(errp, "chardev: opening backend \"%s\" failed",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003253 qemu_opt_get(opts, "backend"));
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003254 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003255 }
3256
3257 if (!chr->filename)
Anthony Liguori7267c092011-08-20 22:09:37 -05003258 chr->filename = g_strdup(qemu_opt_get(opts, "backend"));
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003259 chr->init = init;
Blue Swirl72cf2d42009-09-12 07:36:22 +00003260 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003261
3262 if (qemu_opt_get_bool(opts, "mux", 0)) {
3263 CharDriverState *base = chr;
3264 int len = strlen(qemu_opts_id(opts)) + 6;
Anthony Liguori7267c092011-08-20 22:09:37 -05003265 base->label = g_malloc(len);
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003266 snprintf(base->label, len, "%s-base", qemu_opts_id(opts));
3267 chr = qemu_chr_open_mux(base);
3268 chr->filename = base->filename;
Kusanagi Kouichid5b27162011-04-26 19:19:26 +09003269 chr->avail_connections = MAX_MUX;
Blue Swirl72cf2d42009-09-12 07:36:22 +00003270 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
Kusanagi Kouichid5b27162011-04-26 19:19:26 +09003271 } else {
3272 chr->avail_connections = 1;
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003273 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003274 chr->label = g_strdup(qemu_opts_id(opts));
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003275 chr->opts = opts;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003276 return chr;
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003277
3278err:
3279 qemu_opts_del(opts);
3280 return NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003281}
3282
Anthony Liguori27143a42011-08-15 11:17:36 -05003283CharDriverState *qemu_chr_new(const char *label, const char *filename, void (*init)(struct CharDriverState *s))
aliguori6f97dba2008-10-31 18:49:55 +00003284{
3285 const char *p;
3286 CharDriverState *chr;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003287 QemuOpts *opts;
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003288 Error *err = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003289
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003290 if (strstart(filename, "chardev:", &p)) {
3291 return qemu_chr_find(p);
3292 }
3293
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003294 opts = qemu_chr_parse_compat(label, filename);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003295 if (!opts)
3296 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00003297
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003298 chr = qemu_chr_new_from_opts(opts, init, &err);
3299 if (error_is_set(&err)) {
3300 fprintf(stderr, "%s\n", error_get_pretty(err));
3301 error_free(err);
3302 }
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003303 if (chr && qemu_opt_get_bool(opts, "mux", 0)) {
3304 monitor_init(chr, MONITOR_USE_READLINE);
aliguori6f97dba2008-10-31 18:49:55 +00003305 }
3306 return chr;
3307}
3308
Anthony Liguori15f31512011-08-15 11:17:35 -05003309void qemu_chr_fe_set_echo(struct CharDriverState *chr, bool echo)
Paolo Bonzinic48855e2010-12-23 13:42:48 +01003310{
3311 if (chr->chr_set_echo) {
3312 chr->chr_set_echo(chr, echo);
3313 }
3314}
3315
Anthony Liguoric9d830e2011-08-15 11:17:32 -05003316void qemu_chr_fe_open(struct CharDriverState *chr)
Hans de Goede7c32c4f2011-03-24 11:12:02 +01003317{
3318 if (chr->chr_guest_open) {
3319 chr->chr_guest_open(chr);
3320 }
3321}
3322
Anthony Liguori28178222011-08-15 11:17:33 -05003323void qemu_chr_fe_close(struct CharDriverState *chr)
Hans de Goede7c32c4f2011-03-24 11:12:02 +01003324{
3325 if (chr->chr_guest_close) {
3326 chr->chr_guest_close(chr);
3327 }
3328}
3329
Anthony Liguori23673ca2013-03-05 23:21:23 +05303330guint qemu_chr_fe_add_watch(CharDriverState *s, GIOCondition cond,
3331 GIOFunc func, void *user_data)
3332{
3333 GSource *src;
3334 guint tag;
3335
3336 if (s->chr_add_watch == NULL) {
3337 return -ENOSYS;
3338 }
3339
3340 src = s->chr_add_watch(s, cond);
3341 g_source_set_callback(src, (GSourceFunc)func, user_data, NULL);
3342 tag = g_source_attach(src, NULL);
3343 g_source_unref(src);
3344
3345 return tag;
3346}
3347
Anthony Liguori70f24fb2011-08-15 11:17:38 -05003348void qemu_chr_delete(CharDriverState *chr)
aliguori6f97dba2008-10-31 18:49:55 +00003349{
Blue Swirl72cf2d42009-09-12 07:36:22 +00003350 QTAILQ_REMOVE(&chardevs, chr, next);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003351 if (chr->chr_close) {
aliguori6f97dba2008-10-31 18:49:55 +00003352 chr->chr_close(chr);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003353 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003354 g_free(chr->filename);
3355 g_free(chr->label);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003356 if (chr->opts) {
3357 qemu_opts_del(chr->opts);
3358 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003359 g_free(chr);
aliguori6f97dba2008-10-31 18:49:55 +00003360}
3361
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003362ChardevInfoList *qmp_query_chardev(Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00003363{
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003364 ChardevInfoList *chr_list = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00003365 CharDriverState *chr;
3366
Blue Swirl72cf2d42009-09-12 07:36:22 +00003367 QTAILQ_FOREACH(chr, &chardevs, next) {
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003368 ChardevInfoList *info = g_malloc0(sizeof(*info));
3369 info->value = g_malloc0(sizeof(*info->value));
3370 info->value->label = g_strdup(chr->label);
3371 info->value->filename = g_strdup(chr->filename);
3372
3373 info->next = chr_list;
3374 chr_list = info;
aliguori6f97dba2008-10-31 18:49:55 +00003375 }
Luiz Capitulino588b3832009-12-10 17:16:08 -02003376
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003377 return chr_list;
aliguori6f97dba2008-10-31 18:49:55 +00003378}
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003379
3380CharDriverState *qemu_chr_find(const char *name)
3381{
3382 CharDriverState *chr;
3383
Blue Swirl72cf2d42009-09-12 07:36:22 +00003384 QTAILQ_FOREACH(chr, &chardevs, next) {
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003385 if (strcmp(chr->label, name) != 0)
3386 continue;
3387 return chr;
3388 }
3389 return NULL;
3390}
Anthony Liguori0beb4942011-12-22 15:29:25 -06003391
3392/* Get a character (serial) device interface. */
3393CharDriverState *qemu_char_get_next_serial(void)
3394{
3395 static int next_serial;
3396
3397 /* FIXME: This function needs to go away: use chardev properties! */
3398 return serial_hds[next_serial++];
3399}
3400
Paolo Bonzini4d454572012-11-26 16:03:42 +01003401QemuOptsList qemu_chardev_opts = {
3402 .name = "chardev",
3403 .implied_opt_name = "backend",
3404 .head = QTAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
3405 .desc = {
3406 {
3407 .name = "backend",
3408 .type = QEMU_OPT_STRING,
3409 },{
3410 .name = "path",
3411 .type = QEMU_OPT_STRING,
3412 },{
3413 .name = "host",
3414 .type = QEMU_OPT_STRING,
3415 },{
3416 .name = "port",
3417 .type = QEMU_OPT_STRING,
3418 },{
3419 .name = "localaddr",
3420 .type = QEMU_OPT_STRING,
3421 },{
3422 .name = "localport",
3423 .type = QEMU_OPT_STRING,
3424 },{
3425 .name = "to",
3426 .type = QEMU_OPT_NUMBER,
3427 },{
3428 .name = "ipv4",
3429 .type = QEMU_OPT_BOOL,
3430 },{
3431 .name = "ipv6",
3432 .type = QEMU_OPT_BOOL,
3433 },{
3434 .name = "wait",
3435 .type = QEMU_OPT_BOOL,
3436 },{
3437 .name = "server",
3438 .type = QEMU_OPT_BOOL,
3439 },{
3440 .name = "delay",
3441 .type = QEMU_OPT_BOOL,
3442 },{
3443 .name = "telnet",
3444 .type = QEMU_OPT_BOOL,
3445 },{
3446 .name = "width",
3447 .type = QEMU_OPT_NUMBER,
3448 },{
3449 .name = "height",
3450 .type = QEMU_OPT_NUMBER,
3451 },{
3452 .name = "cols",
3453 .type = QEMU_OPT_NUMBER,
3454 },{
3455 .name = "rows",
3456 .type = QEMU_OPT_NUMBER,
3457 },{
3458 .name = "mux",
3459 .type = QEMU_OPT_BOOL,
3460 },{
3461 .name = "signal",
3462 .type = QEMU_OPT_BOOL,
3463 },{
3464 .name = "name",
3465 .type = QEMU_OPT_STRING,
3466 },{
3467 .name = "debug",
3468 .type = QEMU_OPT_NUMBER,
Lei Li51767e72013-01-25 00:03:19 +08003469 },{
Markus Armbruster3949e592013-02-06 21:27:24 +01003470 .name = "size",
Markus Armbrusterde1cc362013-02-06 21:27:25 +01003471 .type = QEMU_OPT_SIZE,
Paolo Bonzini4d454572012-11-26 16:03:42 +01003472 },
3473 { /* end of list */ }
3474 },
3475};
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003476
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003477#ifdef _WIN32
3478
3479static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
3480{
3481 HANDLE out;
3482
3483 if (file->in) {
3484 error_setg(errp, "input file not supported");
3485 return NULL;
3486 }
3487
3488 out = CreateFile(file->out, GENERIC_WRITE, FILE_SHARE_READ, NULL,
3489 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
3490 if (out == INVALID_HANDLE_VALUE) {
3491 error_setg(errp, "open %s failed", file->out);
3492 return NULL;
3493 }
3494 return qemu_chr_open_win_file(out);
3495}
3496
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003497static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
3498 Error **errp)
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003499{
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003500 return qemu_chr_open_win_path(serial->device);
3501}
3502
3503static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
3504 Error **errp)
3505{
3506 error_setg(errp, "character device backend type 'parallel' not supported");
3507 return NULL;
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003508}
3509
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003510#else /* WIN32 */
3511
3512static int qmp_chardev_open_file_source(char *src, int flags,
3513 Error **errp)
3514{
3515 int fd = -1;
3516
3517 TFR(fd = qemu_open(src, flags, 0666));
3518 if (fd == -1) {
3519 error_setg(errp, "open %s: %s", src, strerror(errno));
3520 }
3521 return fd;
3522}
3523
3524static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
3525{
3526 int flags, in = -1, out = -1;
3527
3528 flags = O_WRONLY | O_TRUNC | O_CREAT | O_BINARY;
3529 out = qmp_chardev_open_file_source(file->out, flags, errp);
3530 if (error_is_set(errp)) {
3531 return NULL;
3532 }
3533
3534 if (file->in) {
3535 flags = O_RDONLY;
3536 in = qmp_chardev_open_file_source(file->in, flags, errp);
3537 if (error_is_set(errp)) {
3538 qemu_close(out);
3539 return NULL;
3540 }
3541 }
3542
3543 return qemu_chr_open_fd(in, out);
3544}
3545
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003546static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
3547 Error **errp)
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003548{
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003549#ifdef HAVE_CHARDEV_TTY
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003550 int fd;
3551
3552 fd = qmp_chardev_open_file_source(serial->device, O_RDWR, errp);
3553 if (error_is_set(errp)) {
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003554 return NULL;
3555 }
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003556 socket_set_nonblock(fd);
3557 return qemu_chr_open_tty_fd(fd);
3558#else
3559 error_setg(errp, "character device backend type 'serial' not supported");
3560 return NULL;
3561#endif
3562}
3563
3564static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
3565 Error **errp)
3566{
3567#ifdef HAVE_CHARDEV_PARPORT
3568 int fd;
3569
3570 fd = qmp_chardev_open_file_source(parallel->device, O_RDWR, errp);
3571 if (error_is_set(errp)) {
3572 return NULL;
3573 }
3574 return qemu_chr_open_pp_fd(fd);
3575#else
3576 error_setg(errp, "character device backend type 'parallel' not supported");
3577 return NULL;
3578#endif
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003579}
3580
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003581#endif /* WIN32 */
3582
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003583static CharDriverState *qmp_chardev_open_socket(ChardevSocket *sock,
3584 Error **errp)
3585{
3586 SocketAddress *addr = sock->addr;
3587 bool do_nodelay = sock->has_nodelay ? sock->nodelay : false;
3588 bool is_listen = sock->has_server ? sock->server : true;
3589 bool is_telnet = sock->has_telnet ? sock->telnet : false;
3590 bool is_waitconnect = sock->has_wait ? sock->wait : false;
3591 int fd;
3592
3593 if (is_listen) {
3594 fd = socket_listen(addr, errp);
3595 } else {
3596 fd = socket_connect(addr, errp, NULL, NULL);
3597 }
3598 if (error_is_set(errp)) {
3599 return NULL;
3600 }
3601 return qemu_chr_open_socket_fd(fd, do_nodelay, is_listen,
3602 is_telnet, is_waitconnect, errp);
3603}
3604
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003605ChardevReturn *qmp_chardev_add(const char *id, ChardevBackend *backend,
3606 Error **errp)
3607{
3608 ChardevReturn *ret = g_new0(ChardevReturn, 1);
3609 CharDriverState *chr = NULL;
3610
3611 chr = qemu_chr_find(id);
3612 if (chr) {
3613 error_setg(errp, "Chardev '%s' already exists", id);
3614 g_free(ret);
3615 return NULL;
3616 }
3617
3618 switch (backend->kind) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003619 case CHARDEV_BACKEND_KIND_FILE:
3620 chr = qmp_chardev_open_file(backend->file, errp);
3621 break;
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003622 case CHARDEV_BACKEND_KIND_SERIAL:
3623 chr = qmp_chardev_open_serial(backend->serial, errp);
3624 break;
3625 case CHARDEV_BACKEND_KIND_PARALLEL:
3626 chr = qmp_chardev_open_parallel(backend->parallel, errp);
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003627 break;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003628 case CHARDEV_BACKEND_KIND_SOCKET:
3629 chr = qmp_chardev_open_socket(backend->socket, errp);
3630 break;
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01003631#ifdef HAVE_CHARDEV_TTY
3632 case CHARDEV_BACKEND_KIND_PTY:
3633 {
3634 /* qemu_chr_open_pty sets "path" in opts */
3635 QemuOpts *opts;
3636 opts = qemu_opts_create_nofail(qemu_find_opts("chardev"));
3637 chr = qemu_chr_open_pty(opts);
3638 ret->pty = g_strdup(qemu_opt_get(opts, "path"));
3639 ret->has_pty = true;
3640 qemu_opts_del(opts);
3641 break;
3642 }
3643#endif
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003644 case CHARDEV_BACKEND_KIND_NULL:
3645 chr = qemu_chr_open_null(NULL);
3646 break;
3647 default:
3648 error_setg(errp, "unknown chardev backend (%d)", backend->kind);
3649 break;
3650 }
3651
3652 if (chr == NULL && !error_is_set(errp)) {
3653 error_setg(errp, "Failed to create chardev");
3654 }
3655 if (chr) {
3656 chr->label = g_strdup(id);
3657 chr->avail_connections = 1;
3658 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
3659 return ret;
3660 } else {
3661 g_free(ret);
3662 return NULL;
3663 }
3664}
3665
3666void qmp_chardev_remove(const char *id, Error **errp)
3667{
3668 CharDriverState *chr;
3669
3670 chr = qemu_chr_find(id);
3671 if (NULL == chr) {
3672 error_setg(errp, "Chardev '%s' not found", id);
3673 return;
3674 }
3675 if (chr->chr_can_read || chr->chr_read ||
3676 chr->chr_event || chr->handler_opaque) {
3677 error_setg(errp, "Chardev '%s' is busy", id);
3678 return;
3679 }
3680 qemu_chr_delete(chr);
3681}