blob: 22a9777f497af1562e9b0954572e42e17d55d5eb [file] [log] [blame]
aliguori6f97dba2008-10-31 18:49:55 +00001/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24#include "qemu-common.h"
Paolo Bonzini83c90892012-12-17 18:19:49 +010025#include "monitor/monitor.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010026#include "sysemu/sysemu.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010027#include "qemu/timer.h"
Paolo Bonzinidccfcd02013-04-08 16:55:25 +020028#include "sysemu/char.h"
aurel32cf3ebac2008-11-01 00:53:09 +000029#include "hw/usb.h"
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -030030#include "qmp-commands.h"
aliguori6f97dba2008-10-31 18:49:55 +000031
32#include <unistd.h>
33#include <fcntl.h>
aliguori6f97dba2008-10-31 18:49:55 +000034#include <time.h>
35#include <errno.h>
36#include <sys/time.h>
37#include <zlib.h>
38
39#ifndef _WIN32
40#include <sys/times.h>
41#include <sys/wait.h>
42#include <termios.h>
43#include <sys/mman.h>
44#include <sys/ioctl.h>
blueswir124646c72008-11-07 16:55:48 +000045#include <sys/resource.h>
aliguori6f97dba2008-10-31 18:49:55 +000046#include <sys/socket.h>
47#include <netinet/in.h>
blueswir124646c72008-11-07 16:55:48 +000048#include <net/if.h>
blueswir124646c72008-11-07 16:55:48 +000049#include <arpa/inet.h>
aliguori6f97dba2008-10-31 18:49:55 +000050#include <dirent.h>
51#include <netdb.h>
52#include <sys/select.h>
Juan Quintela71e72a12009-07-27 16:12:56 +020053#ifdef CONFIG_BSD
aliguori6f97dba2008-10-31 18:49:55 +000054#include <sys/stat.h>
Michael Tokarev3294ce12012-06-02 23:43:33 +040055#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
56#include <dev/ppbus/ppi.h>
57#include <dev/ppbus/ppbconf.h>
58#elif defined(__DragonFly__)
59#include <dev/misc/ppi/ppi.h>
60#include <bus/ppbus/ppbconf.h>
61#endif
Aurelien Jarnobbe813a2009-11-30 15:42:59 +010062#else
aliguori6f97dba2008-10-31 18:49:55 +000063#ifdef __linux__
aliguori6f97dba2008-10-31 18:49:55 +000064#include <linux/ppdev.h>
65#include <linux/parport.h>
66#endif
67#ifdef __sun__
68#include <sys/stat.h>
69#include <sys/ethernet.h>
70#include <sys/sockio.h>
71#include <netinet/arp.h>
72#include <netinet/in.h>
73#include <netinet/in_systm.h>
74#include <netinet/ip.h>
75#include <netinet/ip_icmp.h> // must come after ip.h
76#include <netinet/udp.h>
77#include <netinet/tcp.h>
aliguori6f97dba2008-10-31 18:49:55 +000078#endif
79#endif
80#endif
81
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010082#include "qemu/sockets.h"
Alon Levycbcc6332011-01-19 10:49:50 +020083#include "ui/qemu-spice.h"
aliguori6f97dba2008-10-31 18:49:55 +000084
Amit Shah9bd78542009-11-03 19:59:54 +053085#define READ_BUF_LEN 4096
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +030086#define READ_RETRIES 10
Amit Shah9bd78542009-11-03 19:59:54 +053087
aliguori6f97dba2008-10-31 18:49:55 +000088/***********************************************************/
89/* character device */
90
Blue Swirl72cf2d42009-09-12 07:36:22 +000091static QTAILQ_HEAD(CharDriverStateHead, CharDriverState) chardevs =
92 QTAILQ_HEAD_INITIALIZER(chardevs);
aliguori2970a6c2009-03-05 22:59:58 +000093
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +020094CharDriverState *qemu_chr_alloc(void)
95{
96 CharDriverState *chr = g_malloc0(sizeof(CharDriverState));
Paolo Bonzinif3db17b2014-06-25 09:04:57 +020097 qemu_mutex_init(&chr->chr_write_lock);
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +020098 return chr;
99}
100
Hans de Goedea425d232011-11-19 10:22:43 +0100101void qemu_chr_be_event(CharDriverState *s, int event)
aliguori6f97dba2008-10-31 18:49:55 +0000102{
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200103 /* Keep track if the char device is open */
104 switch (event) {
105 case CHR_EVENT_OPENED:
Hans de Goede16665b92013-03-26 11:07:53 +0100106 s->be_open = 1;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200107 break;
108 case CHR_EVENT_CLOSED:
Hans de Goede16665b92013-03-26 11:07:53 +0100109 s->be_open = 0;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200110 break;
111 }
112
aliguori6f97dba2008-10-31 18:49:55 +0000113 if (!s->chr_event)
114 return;
115 s->chr_event(s->handler_opaque, event);
116}
117
Hans de Goedefee204f2013-03-26 11:07:54 +0100118void qemu_chr_be_generic_open(CharDriverState *s)
aliguori6f97dba2008-10-31 18:49:55 +0000119{
Michael Rothbd5c51e2013-06-07 15:19:53 -0500120 qemu_chr_be_event(s, CHR_EVENT_OPENED);
aliguori6f97dba2008-10-31 18:49:55 +0000121}
122
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500123int qemu_chr_fe_write(CharDriverState *s, const uint8_t *buf, int len)
aliguori6f97dba2008-10-31 18:49:55 +0000124{
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200125 int ret;
126
127 qemu_mutex_lock(&s->chr_write_lock);
128 ret = s->chr_write(s, buf, len);
129 qemu_mutex_unlock(&s->chr_write_lock);
130 return ret;
aliguori6f97dba2008-10-31 18:49:55 +0000131}
132
Anthony Liguoricd187202013-03-26 10:04:17 -0500133int qemu_chr_fe_write_all(CharDriverState *s, const uint8_t *buf, int len)
134{
135 int offset = 0;
Igor Mammedov09313042014-06-25 10:00:41 +0200136 int res = 0;
Anthony Liguoricd187202013-03-26 10:04:17 -0500137
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200138 qemu_mutex_lock(&s->chr_write_lock);
Anthony Liguoricd187202013-03-26 10:04:17 -0500139 while (offset < len) {
140 do {
141 res = s->chr_write(s, buf + offset, len - offset);
142 if (res == -1 && errno == EAGAIN) {
143 g_usleep(100);
144 }
145 } while (res == -1 && errno == EAGAIN);
146
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200147 if (res <= 0) {
Anthony Liguoricd187202013-03-26 10:04:17 -0500148 break;
149 }
150
Anthony Liguoricd187202013-03-26 10:04:17 -0500151 offset += res;
152 }
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200153 qemu_mutex_unlock(&s->chr_write_lock);
Anthony Liguoricd187202013-03-26 10:04:17 -0500154
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200155 if (res < 0) {
156 return res;
157 }
Anthony Liguoricd187202013-03-26 10:04:17 -0500158 return offset;
159}
160
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +0300161int qemu_chr_fe_read_all(CharDriverState *s, uint8_t *buf, int len)
162{
163 int offset = 0, counter = 10;
164 int res;
165
166 if (!s->chr_sync_read) {
167 return 0;
168 }
169
170 while (offset < len) {
171 do {
172 res = s->chr_sync_read(s, buf + offset, len - offset);
173 if (res == -1 && errno == EAGAIN) {
174 g_usleep(100);
175 }
176 } while (res == -1 && errno == EAGAIN);
177
178 if (res == 0) {
179 break;
180 }
181
182 if (res < 0) {
183 return res;
184 }
185
186 offset += res;
187
188 if (!counter--) {
189 break;
190 }
191 }
192
193 return offset;
194}
195
Anthony Liguori41084f12011-08-15 11:17:34 -0500196int qemu_chr_fe_ioctl(CharDriverState *s, int cmd, void *arg)
aliguori6f97dba2008-10-31 18:49:55 +0000197{
198 if (!s->chr_ioctl)
199 return -ENOTSUP;
200 return s->chr_ioctl(s, cmd, arg);
201}
202
Anthony Liguori909cda12011-08-15 11:17:31 -0500203int qemu_chr_be_can_write(CharDriverState *s)
aliguori6f97dba2008-10-31 18:49:55 +0000204{
205 if (!s->chr_can_read)
206 return 0;
207 return s->chr_can_read(s->handler_opaque);
208}
209
Anthony Liguorifa5efcc2011-08-15 11:17:30 -0500210void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len)
aliguori6f97dba2008-10-31 18:49:55 +0000211{
Stefan Weilac310732012-04-19 22:27:14 +0200212 if (s->chr_read) {
213 s->chr_read(s->handler_opaque, buf, len);
214 }
aliguori6f97dba2008-10-31 18:49:55 +0000215}
216
Anthony Liguori74c0d6f2011-08-15 11:17:39 -0500217int qemu_chr_fe_get_msgfd(CharDriverState *s)
Mark McLoughlin7d174052009-07-22 09:11:39 +0100218{
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +0300219 int fd;
Stefan Hajnoczi4f858612014-06-22 10:38:36 +0800220 return (qemu_chr_fe_get_msgfds(s, &fd, 1) == 1) ? fd : -1;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +0300221}
222
223int qemu_chr_fe_get_msgfds(CharDriverState *s, int *fds, int len)
224{
225 return s->get_msgfds ? s->get_msgfds(s, fds, len) : -1;
Mark McLoughlin7d174052009-07-22 09:11:39 +0100226}
227
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +0300228int qemu_chr_fe_set_msgfds(CharDriverState *s, int *fds, int num)
229{
230 return s->set_msgfds ? s->set_msgfds(s, fds, num) : -1;
231}
232
Daniel P. Berrange13661082011-06-23 13:31:42 +0100233int qemu_chr_add_client(CharDriverState *s, int fd)
234{
235 return s->chr_add_client ? s->chr_add_client(s, fd) : -1;
236}
237
aliguori6f97dba2008-10-31 18:49:55 +0000238void qemu_chr_accept_input(CharDriverState *s)
239{
240 if (s->chr_accept_input)
241 s->chr_accept_input(s);
Jan Kiszka98c8ee12012-03-16 13:18:00 +0100242 qemu_notify_event();
aliguori6f97dba2008-10-31 18:49:55 +0000243}
244
Anthony Liguorie7e71b02011-08-15 11:17:29 -0500245void qemu_chr_fe_printf(CharDriverState *s, const char *fmt, ...)
aliguori6f97dba2008-10-31 18:49:55 +0000246{
Amit Shah9bd78542009-11-03 19:59:54 +0530247 char buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +0000248 va_list ap;
249 va_start(ap, fmt);
250 vsnprintf(buf, sizeof(buf), fmt, ap);
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500251 qemu_chr_fe_write(s, (uint8_t *)buf, strlen(buf));
aliguori6f97dba2008-10-31 18:49:55 +0000252 va_end(ap);
253}
254
Amit Shah386a5a12013-08-28 15:24:05 +0530255static void remove_fd_in_watch(CharDriverState *chr);
256
aliguori6f97dba2008-10-31 18:49:55 +0000257void qemu_chr_add_handlers(CharDriverState *s,
Juan Quintela7b27a762010-03-11 17:55:39 +0100258 IOCanReadHandler *fd_can_read,
aliguori6f97dba2008-10-31 18:49:55 +0000259 IOReadHandler *fd_read,
260 IOEventHandler *fd_event,
261 void *opaque)
262{
Hans de Goede19083222013-03-26 11:07:56 +0100263 int fe_open;
264
Amit Shahda7d9982011-04-25 15:18:22 +0530265 if (!opaque && !fd_can_read && !fd_read && !fd_event) {
Hans de Goede19083222013-03-26 11:07:56 +0100266 fe_open = 0;
Amit Shah386a5a12013-08-28 15:24:05 +0530267 remove_fd_in_watch(s);
Hans de Goede19083222013-03-26 11:07:56 +0100268 } else {
269 fe_open = 1;
Amit Shah2d6c1ef2011-02-10 12:55:20 +0530270 }
aliguori6f97dba2008-10-31 18:49:55 +0000271 s->chr_can_read = fd_can_read;
272 s->chr_read = fd_read;
273 s->chr_event = fd_event;
274 s->handler_opaque = opaque;
Gal Hammerac1b84d2014-02-25 12:12:35 +0200275 if (fe_open && s->chr_update_read_handler)
aliguori6f97dba2008-10-31 18:49:55 +0000276 s->chr_update_read_handler(s);
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200277
Hans de Goede19083222013-03-26 11:07:56 +0100278 if (!s->explicit_fe_open) {
Hans de Goede8e25daa2013-03-26 11:07:57 +0100279 qemu_chr_fe_set_open(s, fe_open);
Hans de Goede19083222013-03-26 11:07:56 +0100280 }
281
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200282 /* We're connecting to an already opened device, so let's make sure we
283 also get the open event */
Hans de Goedea59bcd32013-03-26 11:08:00 +0100284 if (fe_open && s->be_open) {
Hans de Goedefee204f2013-03-26 11:07:54 +0100285 qemu_chr_be_generic_open(s);
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200286 }
aliguori6f97dba2008-10-31 18:49:55 +0000287}
288
289static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
290{
291 return len;
292}
293
Gerd Hoffmann80dca9e2013-02-21 11:41:26 +0100294static CharDriverState *qemu_chr_open_null(void)
aliguori6f97dba2008-10-31 18:49:55 +0000295{
296 CharDriverState *chr;
297
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200298 chr = qemu_chr_alloc();
aliguori6f97dba2008-10-31 18:49:55 +0000299 chr->chr_write = null_chr_write;
Michael Rothbd5c51e2013-06-07 15:19:53 -0500300 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +0100301 return chr;
aliguori6f97dba2008-10-31 18:49:55 +0000302}
303
304/* MUX driver for serial I/O splitting */
aliguori6f97dba2008-10-31 18:49:55 +0000305#define MAX_MUX 4
306#define MUX_BUFFER_SIZE 32 /* Must be a power of 2. */
307#define MUX_BUFFER_MASK (MUX_BUFFER_SIZE - 1)
308typedef struct {
Juan Quintela7b27a762010-03-11 17:55:39 +0100309 IOCanReadHandler *chr_can_read[MAX_MUX];
aliguori6f97dba2008-10-31 18:49:55 +0000310 IOReadHandler *chr_read[MAX_MUX];
311 IOEventHandler *chr_event[MAX_MUX];
312 void *ext_opaque[MAX_MUX];
313 CharDriverState *drv;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200314 int focus;
aliguori6f97dba2008-10-31 18:49:55 +0000315 int mux_cnt;
316 int term_got_escape;
317 int max_size;
aliguoria80bf992009-03-05 23:00:02 +0000318 /* Intermediate input buffer allows to catch escape sequences even if the
319 currently active device is not accepting any input - but only until it
320 is full as well. */
321 unsigned char buffer[MAX_MUX][MUX_BUFFER_SIZE];
322 int prod[MAX_MUX];
323 int cons[MAX_MUX];
Jan Kiszka2d229592009-06-15 22:25:30 +0200324 int timestamps;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200325
326 /* Protected by the CharDriverState chr_write_lock. */
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200327 int linestart;
Jan Kiszka2d229592009-06-15 22:25:30 +0200328 int64_t timestamps_start;
aliguori6f97dba2008-10-31 18:49:55 +0000329} MuxDriver;
330
331
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200332/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +0000333static int mux_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
334{
335 MuxDriver *d = chr->opaque;
336 int ret;
Jan Kiszka2d229592009-06-15 22:25:30 +0200337 if (!d->timestamps) {
Paolo Bonzini6975b712014-06-18 08:43:56 +0200338 ret = qemu_chr_fe_write(d->drv, buf, len);
aliguori6f97dba2008-10-31 18:49:55 +0000339 } else {
340 int i;
341
342 ret = 0;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200343 for (i = 0; i < len; i++) {
344 if (d->linestart) {
aliguori6f97dba2008-10-31 18:49:55 +0000345 char buf1[64];
346 int64_t ti;
347 int secs;
348
Alex Blighbc72ad62013-08-21 16:03:08 +0100349 ti = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Jan Kiszka2d229592009-06-15 22:25:30 +0200350 if (d->timestamps_start == -1)
351 d->timestamps_start = ti;
352 ti -= d->timestamps_start;
aliguoria4bb1db2009-01-22 17:15:16 +0000353 secs = ti / 1000;
aliguori6f97dba2008-10-31 18:49:55 +0000354 snprintf(buf1, sizeof(buf1),
355 "[%02d:%02d:%02d.%03d] ",
356 secs / 3600,
357 (secs / 60) % 60,
358 secs % 60,
aliguoria4bb1db2009-01-22 17:15:16 +0000359 (int)(ti % 1000));
Paolo Bonzini6975b712014-06-18 08:43:56 +0200360 qemu_chr_fe_write(d->drv, (uint8_t *)buf1, strlen(buf1));
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200361 d->linestart = 0;
362 }
Paolo Bonzini6975b712014-06-18 08:43:56 +0200363 ret += qemu_chr_fe_write(d->drv, buf+i, 1);
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200364 if (buf[i] == '\n') {
365 d->linestart = 1;
aliguori6f97dba2008-10-31 18:49:55 +0000366 }
367 }
368 }
369 return ret;
370}
371
372static const char * const mux_help[] = {
373 "% h print this help\n\r",
374 "% x exit emulator\n\r",
375 "% s save disk data back to file (if -snapshot)\n\r",
376 "% t toggle console timestamps\n\r"
377 "% b send break (magic sysrq)\n\r",
378 "% c switch between console and monitor\n\r",
379 "% % sends %\n\r",
380 NULL
381};
382
383int term_escape_char = 0x01; /* ctrl-a is used for escape */
384static void mux_print_help(CharDriverState *chr)
385{
386 int i, j;
387 char ebuf[15] = "Escape-Char";
388 char cbuf[50] = "\n\r";
389
390 if (term_escape_char > 0 && term_escape_char < 26) {
391 snprintf(cbuf, sizeof(cbuf), "\n\r");
392 snprintf(ebuf, sizeof(ebuf), "C-%c", term_escape_char - 1 + 'a');
393 } else {
394 snprintf(cbuf, sizeof(cbuf),
395 "\n\rEscape-Char set to Ascii: 0x%02x\n\r\n\r",
396 term_escape_char);
397 }
Paolo Bonzini6975b712014-06-18 08:43:56 +0200398 qemu_chr_fe_write(chr, (uint8_t *)cbuf, strlen(cbuf));
aliguori6f97dba2008-10-31 18:49:55 +0000399 for (i = 0; mux_help[i] != NULL; i++) {
400 for (j=0; mux_help[i][j] != '\0'; j++) {
401 if (mux_help[i][j] == '%')
Paolo Bonzini6975b712014-06-18 08:43:56 +0200402 qemu_chr_fe_write(chr, (uint8_t *)ebuf, strlen(ebuf));
aliguori6f97dba2008-10-31 18:49:55 +0000403 else
Paolo Bonzini6975b712014-06-18 08:43:56 +0200404 qemu_chr_fe_write(chr, (uint8_t *)&mux_help[i][j], 1);
aliguori6f97dba2008-10-31 18:49:55 +0000405 }
406 }
407}
408
aliguori2724b182009-03-05 23:01:47 +0000409static void mux_chr_send_event(MuxDriver *d, int mux_nr, int event)
410{
411 if (d->chr_event[mux_nr])
412 d->chr_event[mux_nr](d->ext_opaque[mux_nr], event);
413}
414
aliguori6f97dba2008-10-31 18:49:55 +0000415static int mux_proc_byte(CharDriverState *chr, MuxDriver *d, int ch)
416{
417 if (d->term_got_escape) {
418 d->term_got_escape = 0;
419 if (ch == term_escape_char)
420 goto send_char;
421 switch(ch) {
422 case '?':
423 case 'h':
424 mux_print_help(chr);
425 break;
426 case 'x':
427 {
428 const char *term = "QEMU: Terminated\n\r";
Paolo Bonzini6975b712014-06-18 08:43:56 +0200429 qemu_chr_fe_write(chr, (uint8_t *)term, strlen(term));
aliguori6f97dba2008-10-31 18:49:55 +0000430 exit(0);
431 break;
432 }
433 case 's':
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +0200434 bdrv_commit_all();
aliguori6f97dba2008-10-31 18:49:55 +0000435 break;
436 case 'b':
Hans de Goedea425d232011-11-19 10:22:43 +0100437 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
aliguori6f97dba2008-10-31 18:49:55 +0000438 break;
439 case 'c':
440 /* Switch to the next registered device */
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200441 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
442 d->focus++;
443 if (d->focus >= d->mux_cnt)
444 d->focus = 0;
445 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
aliguori6f97dba2008-10-31 18:49:55 +0000446 break;
Jan Kiszka2d229592009-06-15 22:25:30 +0200447 case 't':
448 d->timestamps = !d->timestamps;
449 d->timestamps_start = -1;
Jan Kiszka4ab312f2009-06-15 22:25:34 +0200450 d->linestart = 0;
Jan Kiszka2d229592009-06-15 22:25:30 +0200451 break;
aliguori6f97dba2008-10-31 18:49:55 +0000452 }
453 } else if (ch == term_escape_char) {
454 d->term_got_escape = 1;
455 } else {
456 send_char:
457 return 1;
458 }
459 return 0;
460}
461
462static void mux_chr_accept_input(CharDriverState *chr)
463{
aliguori6f97dba2008-10-31 18:49:55 +0000464 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200465 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000466
aliguoria80bf992009-03-05 23:00:02 +0000467 while (d->prod[m] != d->cons[m] &&
aliguori6f97dba2008-10-31 18:49:55 +0000468 d->chr_can_read[m] &&
469 d->chr_can_read[m](d->ext_opaque[m])) {
470 d->chr_read[m](d->ext_opaque[m],
aliguoria80bf992009-03-05 23:00:02 +0000471 &d->buffer[m][d->cons[m]++ & MUX_BUFFER_MASK], 1);
aliguori6f97dba2008-10-31 18:49:55 +0000472 }
473}
474
475static int mux_chr_can_read(void *opaque)
476{
477 CharDriverState *chr = opaque;
478 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200479 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000480
aliguoria80bf992009-03-05 23:00:02 +0000481 if ((d->prod[m] - d->cons[m]) < MUX_BUFFER_SIZE)
aliguori6f97dba2008-10-31 18:49:55 +0000482 return 1;
aliguoria80bf992009-03-05 23:00:02 +0000483 if (d->chr_can_read[m])
484 return d->chr_can_read[m](d->ext_opaque[m]);
aliguori6f97dba2008-10-31 18:49:55 +0000485 return 0;
486}
487
488static void mux_chr_read(void *opaque, const uint8_t *buf, int size)
489{
490 CharDriverState *chr = opaque;
491 MuxDriver *d = chr->opaque;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200492 int m = d->focus;
aliguori6f97dba2008-10-31 18:49:55 +0000493 int i;
494
495 mux_chr_accept_input (opaque);
496
497 for(i = 0; i < size; i++)
498 if (mux_proc_byte(chr, d, buf[i])) {
aliguoria80bf992009-03-05 23:00:02 +0000499 if (d->prod[m] == d->cons[m] &&
aliguori6f97dba2008-10-31 18:49:55 +0000500 d->chr_can_read[m] &&
501 d->chr_can_read[m](d->ext_opaque[m]))
502 d->chr_read[m](d->ext_opaque[m], &buf[i], 1);
503 else
aliguoria80bf992009-03-05 23:00:02 +0000504 d->buffer[m][d->prod[m]++ & MUX_BUFFER_MASK] = buf[i];
aliguori6f97dba2008-10-31 18:49:55 +0000505 }
506}
507
508static void mux_chr_event(void *opaque, int event)
509{
510 CharDriverState *chr = opaque;
511 MuxDriver *d = chr->opaque;
512 int i;
513
514 /* Send the event to all registered listeners */
515 for (i = 0; i < d->mux_cnt; i++)
aliguori2724b182009-03-05 23:01:47 +0000516 mux_chr_send_event(d, i, event);
aliguori6f97dba2008-10-31 18:49:55 +0000517}
518
519static void mux_chr_update_read_handler(CharDriverState *chr)
520{
521 MuxDriver *d = chr->opaque;
522
523 if (d->mux_cnt >= MAX_MUX) {
524 fprintf(stderr, "Cannot add I/O handlers, MUX array is full\n");
525 return;
526 }
527 d->ext_opaque[d->mux_cnt] = chr->handler_opaque;
528 d->chr_can_read[d->mux_cnt] = chr->chr_can_read;
529 d->chr_read[d->mux_cnt] = chr->chr_read;
530 d->chr_event[d->mux_cnt] = chr->chr_event;
531 /* Fix up the real driver with mux routines */
532 if (d->mux_cnt == 0) {
533 qemu_chr_add_handlers(d->drv, mux_chr_can_read, mux_chr_read,
534 mux_chr_event, chr);
535 }
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200536 if (d->focus != -1) {
537 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200538 }
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200539 d->focus = d->mux_cnt;
aliguori6f97dba2008-10-31 18:49:55 +0000540 d->mux_cnt++;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200541 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
aliguori6f97dba2008-10-31 18:49:55 +0000542}
543
Michael Roth7b7ab182013-07-30 13:04:22 -0500544static bool muxes_realized;
545
546/**
547 * Called after processing of default and command-line-specified
548 * chardevs to deliver CHR_EVENT_OPENED events to any FEs attached
549 * to a mux chardev. This is done here to ensure that
550 * output/prompts/banners are only displayed for the FE that has
551 * focus when initial command-line processing/machine init is
552 * completed.
553 *
554 * After this point, any new FE attached to any new or existing
555 * mux will receive CHR_EVENT_OPENED notifications for the BE
556 * immediately.
557 */
558static void muxes_realize_done(Notifier *notifier, void *unused)
559{
560 CharDriverState *chr;
561
562 QTAILQ_FOREACH(chr, &chardevs, next) {
563 if (chr->is_mux) {
564 MuxDriver *d = chr->opaque;
565 int i;
566
567 /* send OPENED to all already-attached FEs */
568 for (i = 0; i < d->mux_cnt; i++) {
569 mux_chr_send_event(d, i, CHR_EVENT_OPENED);
570 }
571 /* mark mux as OPENED so any new FEs will immediately receive
572 * OPENED event
573 */
574 qemu_chr_be_generic_open(chr);
575 }
576 }
577 muxes_realized = true;
578}
579
580static Notifier muxes_realize_notify = {
581 .notify = muxes_realize_done,
582};
583
aliguori6f97dba2008-10-31 18:49:55 +0000584static CharDriverState *qemu_chr_open_mux(CharDriverState *drv)
585{
586 CharDriverState *chr;
587 MuxDriver *d;
588
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200589 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -0500590 d = g_malloc0(sizeof(MuxDriver));
aliguori6f97dba2008-10-31 18:49:55 +0000591
592 chr->opaque = d;
593 d->drv = drv;
Gerd Hoffmann799f1f22009-09-10 10:58:55 +0200594 d->focus = -1;
aliguori6f97dba2008-10-31 18:49:55 +0000595 chr->chr_write = mux_chr_write;
596 chr->chr_update_read_handler = mux_chr_update_read_handler;
597 chr->chr_accept_input = mux_chr_accept_input;
Hans de Goede7c32c4f2011-03-24 11:12:02 +0100598 /* Frontend guest-open / -close notification is not support with muxes */
Hans de Goede574b7112013-03-26 11:07:58 +0100599 chr->chr_set_fe_open = NULL;
Michael Roth7b7ab182013-07-30 13:04:22 -0500600 /* only default to opened state if we've realized the initial
601 * set of muxes
602 */
603 chr->explicit_be_open = muxes_realized ? 0 : 1;
604 chr->is_mux = 1;
Alexander Graf73cdf3f2010-04-01 18:42:39 +0200605
aliguori6f97dba2008-10-31 18:49:55 +0000606 return chr;
607}
608
609
610#ifdef _WIN32
aliguorid247d252008-11-11 20:46:40 +0000611int send_all(int fd, const void *buf, int len1)
aliguori6f97dba2008-10-31 18:49:55 +0000612{
613 int ret, len;
614
615 len = len1;
616 while (len > 0) {
617 ret = send(fd, buf, len, 0);
618 if (ret < 0) {
aliguori6f97dba2008-10-31 18:49:55 +0000619 errno = WSAGetLastError();
620 if (errno != WSAEWOULDBLOCK) {
621 return -1;
622 }
623 } else if (ret == 0) {
624 break;
625 } else {
626 buf += ret;
627 len -= ret;
628 }
629 }
630 return len1 - len;
631}
632
633#else
634
Jes Sorensen5fc9cfe2010-11-01 20:02:23 +0100635int send_all(int fd, const void *_buf, int len1)
aliguori6f97dba2008-10-31 18:49:55 +0000636{
637 int ret, len;
Jes Sorensen5fc9cfe2010-11-01 20:02:23 +0100638 const uint8_t *buf = _buf;
aliguori6f97dba2008-10-31 18:49:55 +0000639
640 len = len1;
641 while (len > 0) {
642 ret = write(fd, buf, len);
643 if (ret < 0) {
644 if (errno != EINTR && errno != EAGAIN)
645 return -1;
646 } else if (ret == 0) {
647 break;
648 } else {
649 buf += ret;
650 len -= ret;
651 }
652 }
653 return len1 - len;
654}
Stefan Berger4549a8b2013-02-27 12:47:53 -0500655
656int recv_all(int fd, void *_buf, int len1, bool single_read)
657{
658 int ret, len;
659 uint8_t *buf = _buf;
660
661 len = len1;
662 while ((len > 0) && (ret = read(fd, buf, len)) != 0) {
663 if (ret < 0) {
664 if (errno != EINTR && errno != EAGAIN) {
665 return -1;
666 }
667 continue;
668 } else {
669 if (single_read) {
670 return ret;
671 }
672 buf += ret;
673 len -= ret;
674 }
675 }
676 return len1 - len;
677}
678
aliguori6f97dba2008-10-31 18:49:55 +0000679#endif /* !_WIN32 */
680
Anthony Liguori96c63842013-03-05 23:21:18 +0530681typedef struct IOWatchPoll
682{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200683 GSource parent;
684
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200685 GIOChannel *channel;
Anthony Liguori96c63842013-03-05 23:21:18 +0530686 GSource *src;
Anthony Liguori96c63842013-03-05 23:21:18 +0530687
688 IOCanReadHandler *fd_can_read;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200689 GSourceFunc fd_read;
Anthony Liguori96c63842013-03-05 23:21:18 +0530690 void *opaque;
Anthony Liguori96c63842013-03-05 23:21:18 +0530691} IOWatchPoll;
692
Anthony Liguori96c63842013-03-05 23:21:18 +0530693static IOWatchPoll *io_watch_poll_from_source(GSource *source)
694{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200695 return container_of(source, IOWatchPoll, parent);
Anthony Liguori96c63842013-03-05 23:21:18 +0530696}
697
698static gboolean io_watch_poll_prepare(GSource *source, gint *timeout_)
699{
700 IOWatchPoll *iwp = io_watch_poll_from_source(source);
Paolo Bonzinid185c092013-04-05 17:59:33 +0200701 bool now_active = iwp->fd_can_read(iwp->opaque) > 0;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200702 bool was_active = iwp->src != NULL;
Paolo Bonzinid185c092013-04-05 17:59:33 +0200703 if (was_active == now_active) {
Anthony Liguori96c63842013-03-05 23:21:18 +0530704 return FALSE;
705 }
706
Paolo Bonzinid185c092013-04-05 17:59:33 +0200707 if (now_active) {
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200708 iwp->src = g_io_create_watch(iwp->channel, G_IO_IN | G_IO_ERR | G_IO_HUP);
709 g_source_set_callback(iwp->src, iwp->fd_read, iwp->opaque, NULL);
Paolo Bonzinid185c092013-04-05 17:59:33 +0200710 g_source_attach(iwp->src, NULL);
711 } else {
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200712 g_source_destroy(iwp->src);
713 g_source_unref(iwp->src);
714 iwp->src = NULL;
Paolo Bonzinid185c092013-04-05 17:59:33 +0200715 }
716 return FALSE;
Anthony Liguori96c63842013-03-05 23:21:18 +0530717}
718
719static gboolean io_watch_poll_check(GSource *source)
720{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200721 return FALSE;
Anthony Liguori96c63842013-03-05 23:21:18 +0530722}
723
724static gboolean io_watch_poll_dispatch(GSource *source, GSourceFunc callback,
725 gpointer user_data)
726{
Paolo Bonzinid185c092013-04-05 17:59:33 +0200727 abort();
Anthony Liguori96c63842013-03-05 23:21:18 +0530728}
729
730static void io_watch_poll_finalize(GSource *source)
731{
Paolo Bonzini2b316772013-04-19 17:32:09 +0200732 /* Due to a glib bug, removing the last reference to a source
733 * inside a finalize callback causes recursive locking (and a
734 * deadlock). This is not a problem inside other callbacks,
735 * including dispatch callbacks, so we call io_remove_watch_poll
736 * to remove this source. At this point, iwp->src must
737 * be NULL, or we would leak it.
738 *
739 * This would be solved much more elegantly by child sources,
740 * but we support older glib versions that do not have them.
741 */
Anthony Liguori96c63842013-03-05 23:21:18 +0530742 IOWatchPoll *iwp = io_watch_poll_from_source(source);
Paolo Bonzini2b316772013-04-19 17:32:09 +0200743 assert(iwp->src == NULL);
Anthony Liguori96c63842013-03-05 23:21:18 +0530744}
745
746static GSourceFuncs io_watch_poll_funcs = {
747 .prepare = io_watch_poll_prepare,
748 .check = io_watch_poll_check,
749 .dispatch = io_watch_poll_dispatch,
750 .finalize = io_watch_poll_finalize,
751};
752
753/* Can only be used for read */
754static guint io_add_watch_poll(GIOChannel *channel,
755 IOCanReadHandler *fd_can_read,
756 GIOFunc fd_read,
757 gpointer user_data)
758{
759 IOWatchPoll *iwp;
Paolo Bonzini0ca5aa42013-04-10 15:23:27 +0200760 int tag;
Anthony Liguori96c63842013-03-05 23:21:18 +0530761
Paolo Bonzinid185c092013-04-05 17:59:33 +0200762 iwp = (IOWatchPoll *) g_source_new(&io_watch_poll_funcs, sizeof(IOWatchPoll));
Anthony Liguori96c63842013-03-05 23:21:18 +0530763 iwp->fd_can_read = fd_can_read;
764 iwp->opaque = user_data;
Paolo Bonzini1e885b22013-04-08 15:03:15 +0200765 iwp->channel = channel;
766 iwp->fd_read = (GSourceFunc) fd_read;
767 iwp->src = NULL;
Anthony Liguori96c63842013-03-05 23:21:18 +0530768
Paolo Bonzini0ca5aa42013-04-10 15:23:27 +0200769 tag = g_source_attach(&iwp->parent, NULL);
770 g_source_unref(&iwp->parent);
771 return tag;
Anthony Liguori96c63842013-03-05 23:21:18 +0530772}
773
Paolo Bonzini2b316772013-04-19 17:32:09 +0200774static void io_remove_watch_poll(guint tag)
775{
776 GSource *source;
777 IOWatchPoll *iwp;
778
779 g_return_if_fail (tag > 0);
780
781 source = g_main_context_find_source_by_id(NULL, tag);
782 g_return_if_fail (source != NULL);
783
784 iwp = io_watch_poll_from_source(source);
785 if (iwp->src) {
786 g_source_destroy(iwp->src);
787 g_source_unref(iwp->src);
788 iwp->src = NULL;
789 }
790 g_source_destroy(&iwp->parent);
791}
792
Amit Shah26da70c2013-08-28 15:23:37 +0530793static void remove_fd_in_watch(CharDriverState *chr)
794{
795 if (chr->fd_in_tag) {
796 io_remove_watch_poll(chr->fd_in_tag);
797 chr->fd_in_tag = 0;
798 }
799}
800
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000801#ifndef _WIN32
Anthony Liguori96c63842013-03-05 23:21:18 +0530802static GIOChannel *io_channel_from_fd(int fd)
803{
804 GIOChannel *chan;
805
806 if (fd == -1) {
807 return NULL;
808 }
809
810 chan = g_io_channel_unix_new(fd);
811
812 g_io_channel_set_encoding(chan, NULL, NULL);
813 g_io_channel_set_buffered(chan, FALSE);
814
815 return chan;
816}
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000817#endif
Anthony Liguori96c63842013-03-05 23:21:18 +0530818
Anthony Liguori76a96442013-03-05 23:21:21 +0530819static GIOChannel *io_channel_from_socket(int fd)
820{
821 GIOChannel *chan;
822
823 if (fd == -1) {
824 return NULL;
825 }
826
827#ifdef _WIN32
828 chan = g_io_channel_win32_new_socket(fd);
829#else
830 chan = g_io_channel_unix_new(fd);
831#endif
832
833 g_io_channel_set_encoding(chan, NULL, NULL);
834 g_io_channel_set_buffered(chan, FALSE);
835
836 return chan;
837}
838
Anthony Liguori684a0962013-03-29 11:39:50 -0500839static int io_channel_send(GIOChannel *fd, const void *buf, size_t len)
Anthony Liguori96c63842013-03-05 23:21:18 +0530840{
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200841 size_t offset = 0;
842 GIOStatus status = G_IO_STATUS_NORMAL;
Anthony Liguori96c63842013-03-05 23:21:18 +0530843
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200844 while (offset < len && status == G_IO_STATUS_NORMAL) {
845 gsize bytes_written = 0;
Anthony Liguori684a0962013-03-29 11:39:50 -0500846
847 status = g_io_channel_write_chars(fd, buf + offset, len - offset,
Anthony Liguori96c63842013-03-05 23:21:18 +0530848 &bytes_written, NULL);
Anthony Liguori684a0962013-03-29 11:39:50 -0500849 offset += bytes_written;
Anthony Liguori96c63842013-03-05 23:21:18 +0530850 }
Anthony Liguori684a0962013-03-29 11:39:50 -0500851
Laszlo Ersekac8c26f2013-07-16 20:19:40 +0200852 if (offset > 0) {
853 return offset;
854 }
855 switch (status) {
856 case G_IO_STATUS_NORMAL:
857 g_assert(len == 0);
858 return 0;
859 case G_IO_STATUS_AGAIN:
860 errno = EAGAIN;
861 return -1;
862 default:
863 break;
864 }
865 errno = EINVAL;
866 return -1;
Anthony Liguori96c63842013-03-05 23:21:18 +0530867}
Anthony Liguori96c63842013-03-05 23:21:18 +0530868
Blue Swirl44ab9ed2013-03-09 09:56:04 +0000869#ifndef _WIN32
870
Anthony Liguoria29753f2013-03-05 23:21:19 +0530871typedef struct FDCharDriver {
872 CharDriverState *chr;
873 GIOChannel *fd_in, *fd_out;
aliguori6f97dba2008-10-31 18:49:55 +0000874 int max_size;
Anthony Liguoria29753f2013-03-05 23:21:19 +0530875 QTAILQ_ENTRY(FDCharDriver) node;
aliguori6f97dba2008-10-31 18:49:55 +0000876} FDCharDriver;
877
Paolo Bonzini9005b2a2014-06-18 08:43:58 +0200878/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +0000879static int fd_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
880{
881 FDCharDriver *s = chr->opaque;
Anthony Liguoria29753f2013-03-05 23:21:19 +0530882
Anthony Liguori684a0962013-03-29 11:39:50 -0500883 return io_channel_send(s->fd_out, buf, len);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530884}
885
886static gboolean fd_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
887{
888 CharDriverState *chr = opaque;
889 FDCharDriver *s = chr->opaque;
890 int len;
891 uint8_t buf[READ_BUF_LEN];
892 GIOStatus status;
893 gsize bytes_read;
894
895 len = sizeof(buf);
896 if (len > s->max_size) {
897 len = s->max_size;
898 }
899 if (len == 0) {
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +0200900 return TRUE;
Anthony Liguoria29753f2013-03-05 23:21:19 +0530901 }
902
903 status = g_io_channel_read_chars(chan, (gchar *)buf,
904 len, &bytes_read, NULL);
905 if (status == G_IO_STATUS_EOF) {
Amit Shah26da70c2013-08-28 15:23:37 +0530906 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530907 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
908 return FALSE;
909 }
910 if (status == G_IO_STATUS_NORMAL) {
911 qemu_chr_be_write(chr, buf, bytes_read);
912 }
913
914 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +0000915}
916
917static int fd_chr_read_poll(void *opaque)
918{
919 CharDriverState *chr = opaque;
920 FDCharDriver *s = chr->opaque;
921
Anthony Liguori909cda12011-08-15 11:17:31 -0500922 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +0000923 return s->max_size;
924}
925
Anthony Liguori23673ca2013-03-05 23:21:23 +0530926static GSource *fd_chr_add_watch(CharDriverState *chr, GIOCondition cond)
927{
928 FDCharDriver *s = chr->opaque;
929 return g_io_create_watch(s->fd_out, cond);
930}
931
aliguori6f97dba2008-10-31 18:49:55 +0000932static void fd_chr_update_read_handler(CharDriverState *chr)
933{
934 FDCharDriver *s = chr->opaque;
935
Amit Shah26da70c2013-08-28 15:23:37 +0530936 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530937 if (s->fd_in) {
Amit Shah7ba9add2013-08-28 15:18:29 +0530938 chr->fd_in_tag = io_add_watch_poll(s->fd_in, fd_chr_read_poll,
939 fd_chr_read, chr);
aliguori6f97dba2008-10-31 18:49:55 +0000940 }
941}
942
943static void fd_chr_close(struct CharDriverState *chr)
944{
945 FDCharDriver *s = chr->opaque;
946
Amit Shah26da70c2013-08-28 15:23:37 +0530947 remove_fd_in_watch(chr);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530948 if (s->fd_in) {
949 g_io_channel_unref(s->fd_in);
950 }
951 if (s->fd_out) {
952 g_io_channel_unref(s->fd_out);
aliguori6f97dba2008-10-31 18:49:55 +0000953 }
954
Anthony Liguori7267c092011-08-20 22:09:37 -0500955 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +0100956 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +0000957}
958
959/* open a character device to a unix fd */
960static CharDriverState *qemu_chr_open_fd(int fd_in, int fd_out)
961{
962 CharDriverState *chr;
963 FDCharDriver *s;
964
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +0200965 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -0500966 s = g_malloc0(sizeof(FDCharDriver));
Anthony Liguoria29753f2013-03-05 23:21:19 +0530967 s->fd_in = io_channel_from_fd(fd_in);
968 s->fd_out = io_channel_from_fd(fd_out);
Anthony Liguori23673ca2013-03-05 23:21:23 +0530969 fcntl(fd_out, F_SETFL, O_NONBLOCK);
Anthony Liguoria29753f2013-03-05 23:21:19 +0530970 s->chr = chr;
aliguori6f97dba2008-10-31 18:49:55 +0000971 chr->opaque = s;
Anthony Liguori23673ca2013-03-05 23:21:23 +0530972 chr->chr_add_watch = fd_chr_add_watch;
aliguori6f97dba2008-10-31 18:49:55 +0000973 chr->chr_write = fd_chr_write;
974 chr->chr_update_read_handler = fd_chr_update_read_handler;
975 chr->chr_close = fd_chr_close;
976
aliguori6f97dba2008-10-31 18:49:55 +0000977 return chr;
978}
979
Gerd Hoffmann548cbb32013-02-25 11:50:55 +0100980static CharDriverState *qemu_chr_open_pipe(ChardevHostdev *opts)
aliguori6f97dba2008-10-31 18:49:55 +0000981{
982 int fd_in, fd_out;
983 char filename_in[256], filename_out[256];
Gerd Hoffmann548cbb32013-02-25 11:50:55 +0100984 const char *filename = opts->device;
Gerd Hoffmann7d315442009-09-10 10:58:36 +0200985
986 if (filename == NULL) {
987 fprintf(stderr, "chardev: pipe: no filename given\n");
Markus Armbruster1f514702012-02-07 15:09:08 +0100988 return NULL;
Gerd Hoffmann7d315442009-09-10 10:58:36 +0200989 }
aliguori6f97dba2008-10-31 18:49:55 +0000990
991 snprintf(filename_in, 256, "%s.in", filename);
992 snprintf(filename_out, 256, "%s.out", filename);
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100993 TFR(fd_in = qemu_open(filename_in, O_RDWR | O_BINARY));
994 TFR(fd_out = qemu_open(filename_out, O_RDWR | O_BINARY));
aliguori6f97dba2008-10-31 18:49:55 +0000995 if (fd_in < 0 || fd_out < 0) {
996 if (fd_in >= 0)
997 close(fd_in);
998 if (fd_out >= 0)
999 close(fd_out);
Markus Armbrusterb181e042012-02-07 15:09:09 +01001000 TFR(fd_in = fd_out = qemu_open(filename, O_RDWR | O_BINARY));
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01001001 if (fd_in < 0) {
Markus Armbruster1f514702012-02-07 15:09:08 +01001002 return NULL;
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01001003 }
aliguori6f97dba2008-10-31 18:49:55 +00001004 }
Markus Armbruster1f514702012-02-07 15:09:08 +01001005 return qemu_chr_open_fd(fd_in, fd_out);
aliguori6f97dba2008-10-31 18:49:55 +00001006}
1007
aliguori6f97dba2008-10-31 18:49:55 +00001008/* init terminal so that we can grab keys */
1009static struct termios oldtty;
1010static int old_fd0_flags;
Paolo Bonzinibb002512010-12-23 13:42:50 +01001011static bool stdio_allow_signal;
aliguori6f97dba2008-10-31 18:49:55 +00001012
1013static void term_exit(void)
1014{
1015 tcsetattr (0, TCSANOW, &oldtty);
1016 fcntl(0, F_SETFL, old_fd0_flags);
1017}
1018
Paolo Bonzinibb002512010-12-23 13:42:50 +01001019static void qemu_chr_set_echo_stdio(CharDriverState *chr, bool echo)
aliguori6f97dba2008-10-31 18:49:55 +00001020{
1021 struct termios tty;
1022
Paolo Bonzini03693642010-12-23 13:42:49 +01001023 tty = oldtty;
Paolo Bonzinibb002512010-12-23 13:42:50 +01001024 if (!echo) {
1025 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
aliguori6f97dba2008-10-31 18:49:55 +00001026 |INLCR|IGNCR|ICRNL|IXON);
Paolo Bonzinibb002512010-12-23 13:42:50 +01001027 tty.c_oflag |= OPOST;
1028 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
1029 tty.c_cflag &= ~(CSIZE|PARENB);
1030 tty.c_cflag |= CS8;
1031 tty.c_cc[VMIN] = 1;
1032 tty.c_cc[VTIME] = 0;
1033 }
Paolo Bonzinibb002512010-12-23 13:42:50 +01001034 if (!stdio_allow_signal)
aliguori6f97dba2008-10-31 18:49:55 +00001035 tty.c_lflag &= ~ISIG;
aliguori6f97dba2008-10-31 18:49:55 +00001036
1037 tcsetattr (0, TCSANOW, &tty);
aliguori6f97dba2008-10-31 18:49:55 +00001038}
1039
1040static void qemu_chr_close_stdio(struct CharDriverState *chr)
1041{
1042 term_exit();
aliguori6f97dba2008-10-31 18:49:55 +00001043 fd_chr_close(chr);
1044}
1045
Gerd Hoffmann7c358032013-02-21 12:34:58 +01001046static CharDriverState *qemu_chr_open_stdio(ChardevStdio *opts)
aliguori6f97dba2008-10-31 18:49:55 +00001047{
1048 CharDriverState *chr;
1049
Michael Tokarevab51b1d2012-12-30 12:48:14 +04001050 if (is_daemonized()) {
1051 error_report("cannot use stdio with -daemonize");
1052 return NULL;
1053 }
Anthony Liguoried7a1542013-03-05 23:21:17 +05301054 old_fd0_flags = fcntl(0, F_GETFL);
1055 tcgetattr (0, &oldtty);
1056 fcntl(0, F_SETFL, O_NONBLOCK);
1057 atexit(term_exit);
Paolo Bonzini03693642010-12-23 13:42:49 +01001058
aliguori6f97dba2008-10-31 18:49:55 +00001059 chr = qemu_chr_open_fd(0, 1);
1060 chr->chr_close = qemu_chr_close_stdio;
Paolo Bonzinibb002512010-12-23 13:42:50 +01001061 chr->chr_set_echo = qemu_chr_set_echo_stdio;
Gerd Hoffmann7c358032013-02-21 12:34:58 +01001062 if (opts->has_signal) {
1063 stdio_allow_signal = opts->signal;
1064 }
Anthony Liguori15f31512011-08-15 11:17:35 -05001065 qemu_chr_fe_set_echo(chr, false);
aliguori6f97dba2008-10-31 18:49:55 +00001066
Markus Armbruster1f514702012-02-07 15:09:08 +01001067 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001068}
1069
aliguori6f97dba2008-10-31 18:49:55 +00001070#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
Aurelien Jarnoa167ba52009-11-29 18:00:41 +01001071 || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
1072 || defined(__GLIBC__)
aliguori6f97dba2008-10-31 18:49:55 +00001073
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001074#define HAVE_CHARDEV_TTY 1
1075
aliguori6f97dba2008-10-31 18:49:55 +00001076typedef struct {
Anthony Liguori093d3a22013-03-05 23:21:20 +05301077 GIOChannel *fd;
aliguori6f97dba2008-10-31 18:49:55 +00001078 int read_bytes;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001079
1080 /* Protected by the CharDriverState chr_write_lock. */
1081 int connected;
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301082 guint timer_tag;
aliguori6f97dba2008-10-31 18:49:55 +00001083} PtyCharDriver;
1084
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001085static void pty_chr_update_read_handler_locked(CharDriverState *chr);
aliguori6f97dba2008-10-31 18:49:55 +00001086static void pty_chr_state(CharDriverState *chr, int connected);
1087
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301088static gboolean pty_chr_timer(gpointer opaque)
1089{
1090 struct CharDriverState *chr = opaque;
1091 PtyCharDriver *s = chr->opaque;
1092
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001093 qemu_mutex_lock(&chr->chr_write_lock);
Hans de Goede79f20072013-04-25 13:53:02 +02001094 s->timer_tag = 0;
Gerd Hoffmannb0d768c2013-08-22 11:43:58 +02001095 if (!s->connected) {
1096 /* Next poll ... */
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001097 pty_chr_update_read_handler_locked(chr);
Gerd Hoffmannb0d768c2013-08-22 11:43:58 +02001098 }
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001099 qemu_mutex_unlock(&chr->chr_write_lock);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301100 return FALSE;
1101}
1102
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001103/* Called with chr_write_lock held. */
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301104static void pty_chr_rearm_timer(CharDriverState *chr, int ms)
1105{
1106 PtyCharDriver *s = chr->opaque;
1107
1108 if (s->timer_tag) {
1109 g_source_remove(s->timer_tag);
1110 s->timer_tag = 0;
1111 }
1112
1113 if (ms == 1000) {
1114 s->timer_tag = g_timeout_add_seconds(1, pty_chr_timer, chr);
1115 } else {
1116 s->timer_tag = g_timeout_add(ms, pty_chr_timer, chr);
1117 }
1118}
1119
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001120/* Called with chr_write_lock held. */
1121static void pty_chr_update_read_handler_locked(CharDriverState *chr)
Paolo Bonzini1bb7fe72014-06-18 08:43:57 +02001122{
1123 PtyCharDriver *s = chr->opaque;
1124 GPollFD pfd;
1125
1126 pfd.fd = g_io_channel_unix_get_fd(s->fd);
1127 pfd.events = G_IO_OUT;
1128 pfd.revents = 0;
1129 g_poll(&pfd, 1, 0);
1130 if (pfd.revents & G_IO_HUP) {
1131 pty_chr_state(chr, 0);
1132 } else {
1133 pty_chr_state(chr, 1);
1134 }
1135}
1136
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001137static void pty_chr_update_read_handler(CharDriverState *chr)
1138{
1139 qemu_mutex_lock(&chr->chr_write_lock);
1140 pty_chr_update_read_handler_locked(chr);
1141 qemu_mutex_unlock(&chr->chr_write_lock);
1142}
1143
1144/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00001145static int pty_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
1146{
1147 PtyCharDriver *s = chr->opaque;
1148
1149 if (!s->connected) {
1150 /* guest sends data, check for (re-)connect */
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001151 pty_chr_update_read_handler_locked(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001152 return 0;
1153 }
Anthony Liguori684a0962013-03-29 11:39:50 -05001154 return io_channel_send(s->fd, buf, len);
aliguori6f97dba2008-10-31 18:49:55 +00001155}
1156
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301157static GSource *pty_chr_add_watch(CharDriverState *chr, GIOCondition cond)
1158{
1159 PtyCharDriver *s = chr->opaque;
1160 return g_io_create_watch(s->fd, cond);
1161}
1162
aliguori6f97dba2008-10-31 18:49:55 +00001163static int pty_chr_read_poll(void *opaque)
1164{
1165 CharDriverState *chr = opaque;
1166 PtyCharDriver *s = chr->opaque;
1167
Anthony Liguori909cda12011-08-15 11:17:31 -05001168 s->read_bytes = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001169 return s->read_bytes;
1170}
1171
Anthony Liguori093d3a22013-03-05 23:21:20 +05301172static gboolean pty_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00001173{
1174 CharDriverState *chr = opaque;
1175 PtyCharDriver *s = chr->opaque;
Anthony Liguori093d3a22013-03-05 23:21:20 +05301176 gsize size, len;
Amit Shah9bd78542009-11-03 19:59:54 +05301177 uint8_t buf[READ_BUF_LEN];
Anthony Liguori093d3a22013-03-05 23:21:20 +05301178 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00001179
1180 len = sizeof(buf);
1181 if (len > s->read_bytes)
1182 len = s->read_bytes;
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02001183 if (len == 0) {
1184 return TRUE;
1185 }
Anthony Liguori093d3a22013-03-05 23:21:20 +05301186 status = g_io_channel_read_chars(s->fd, (gchar *)buf, len, &size, NULL);
1187 if (status != G_IO_STATUS_NORMAL) {
aliguori6f97dba2008-10-31 18:49:55 +00001188 pty_chr_state(chr, 0);
Anthony Liguori093d3a22013-03-05 23:21:20 +05301189 return FALSE;
1190 } else {
aliguori6f97dba2008-10-31 18:49:55 +00001191 pty_chr_state(chr, 1);
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05001192 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00001193 }
Anthony Liguori093d3a22013-03-05 23:21:20 +05301194 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00001195}
1196
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001197/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00001198static void pty_chr_state(CharDriverState *chr, int connected)
1199{
1200 PtyCharDriver *s = chr->opaque;
1201
1202 if (!connected) {
Amit Shah26da70c2013-08-28 15:23:37 +05301203 remove_fd_in_watch(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001204 s->connected = 0;
aliguori6f97dba2008-10-31 18:49:55 +00001205 /* (re-)connect poll interval for idle guests: once per second.
1206 * We check more frequently in case the guests sends data to
1207 * the virtual device linked to our pty. */
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301208 pty_chr_rearm_timer(chr, 1000);
aliguori6f97dba2008-10-31 18:49:55 +00001209 } else {
Paolo Bonzini85a67692013-04-19 17:32:07 +02001210 if (s->timer_tag) {
1211 g_source_remove(s->timer_tag);
1212 s->timer_tag = 0;
1213 }
1214 if (!s->connected) {
Paolo Bonzini85a67692013-04-19 17:32:07 +02001215 s->connected = 1;
James Hogan3a3567d2013-08-08 12:09:38 +01001216 qemu_chr_be_generic_open(chr);
Gal Hammerac1b84d2014-02-25 12:12:35 +02001217 }
1218 if (!chr->fd_in_tag) {
Amit Shah7ba9add2013-08-28 15:18:29 +05301219 chr->fd_in_tag = io_add_watch_poll(s->fd, pty_chr_read_poll,
1220 pty_chr_read, chr);
Paolo Bonzini85a67692013-04-19 17:32:07 +02001221 }
aliguori6f97dba2008-10-31 18:49:55 +00001222 }
1223}
1224
aliguori6f97dba2008-10-31 18:49:55 +00001225static void pty_chr_close(struct CharDriverState *chr)
1226{
1227 PtyCharDriver *s = chr->opaque;
Anthony Liguori093d3a22013-03-05 23:21:20 +05301228 int fd;
aliguori6f97dba2008-10-31 18:49:55 +00001229
Amit Shah26da70c2013-08-28 15:23:37 +05301230 remove_fd_in_watch(chr);
Anthony Liguori093d3a22013-03-05 23:21:20 +05301231 fd = g_io_channel_unix_get_fd(s->fd);
1232 g_io_channel_unref(s->fd);
1233 close(fd);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301234 if (s->timer_tag) {
1235 g_source_remove(s->timer_tag);
Paolo Bonzini910b6362013-04-19 17:32:06 +02001236 s->timer_tag = 0;
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301237 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001238 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01001239 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001240}
1241
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001242static CharDriverState *qemu_chr_open_pty(const char *id,
1243 ChardevReturn *ret)
aliguori6f97dba2008-10-31 18:49:55 +00001244{
1245 CharDriverState *chr;
1246 PtyCharDriver *s;
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001247 int master_fd, slave_fd;
aliguori6f97dba2008-10-31 18:49:55 +00001248 char pty_name[PATH_MAX];
aliguori6f97dba2008-10-31 18:49:55 +00001249
Michael Tokarev4efeabb2013-06-05 18:44:54 +04001250 master_fd = qemu_openpty_raw(&slave_fd, pty_name);
1251 if (master_fd < 0) {
Markus Armbruster1f514702012-02-07 15:09:08 +01001252 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001253 }
1254
aliguori6f97dba2008-10-31 18:49:55 +00001255 close(slave_fd);
1256
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001257 chr = qemu_chr_alloc();
aliguori6f97dba2008-10-31 18:49:55 +00001258
Michael Tokarev4efeabb2013-06-05 18:44:54 +04001259 chr->filename = g_strdup_printf("pty:%s", pty_name);
1260 ret->pty = g_strdup(pty_name);
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001261 ret->has_pty = true;
Lei Li58650212012-12-21 12:26:38 +08001262
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01001263 fprintf(stderr, "char device redirected to %s (label %s)\n",
Michael Tokarev4efeabb2013-06-05 18:44:54 +04001264 pty_name, id);
Markus Armbrustera4e26042011-11-11 10:40:05 +01001265
1266 s = g_malloc0(sizeof(PtyCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00001267 chr->opaque = s;
1268 chr->chr_write = pty_chr_write;
1269 chr->chr_update_read_handler = pty_chr_update_read_handler;
1270 chr->chr_close = pty_chr_close;
Anthony Liguorie6a87ed2013-03-05 23:21:24 +05301271 chr->chr_add_watch = pty_chr_add_watch;
Michael Rothbd5c51e2013-06-07 15:19:53 -05001272 chr->explicit_be_open = true;
aliguori6f97dba2008-10-31 18:49:55 +00001273
Anthony Liguori093d3a22013-03-05 23:21:20 +05301274 s->fd = io_channel_from_fd(master_fd);
Anthony Liguori8aa33ca2013-03-05 23:21:26 +05301275 s->timer_tag = 0;
aliguori6f97dba2008-10-31 18:49:55 +00001276
Markus Armbruster1f514702012-02-07 15:09:08 +01001277 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001278}
1279
1280static void tty_serial_init(int fd, int speed,
1281 int parity, int data_bits, int stop_bits)
1282{
1283 struct termios tty;
1284 speed_t spd;
1285
1286#if 0
1287 printf("tty_serial_init: speed=%d parity=%c data=%d stop=%d\n",
1288 speed, parity, data_bits, stop_bits);
1289#endif
1290 tcgetattr (fd, &tty);
1291
Stefan Weil45eea132009-10-26 16:10:10 +01001292#define check_speed(val) if (speed <= val) { spd = B##val; break; }
1293 speed = speed * 10 / 11;
1294 do {
1295 check_speed(50);
1296 check_speed(75);
1297 check_speed(110);
1298 check_speed(134);
1299 check_speed(150);
1300 check_speed(200);
1301 check_speed(300);
1302 check_speed(600);
1303 check_speed(1200);
1304 check_speed(1800);
1305 check_speed(2400);
1306 check_speed(4800);
1307 check_speed(9600);
1308 check_speed(19200);
1309 check_speed(38400);
1310 /* Non-Posix values follow. They may be unsupported on some systems. */
1311 check_speed(57600);
1312 check_speed(115200);
1313#ifdef B230400
1314 check_speed(230400);
1315#endif
1316#ifdef B460800
1317 check_speed(460800);
1318#endif
1319#ifdef B500000
1320 check_speed(500000);
1321#endif
1322#ifdef B576000
1323 check_speed(576000);
1324#endif
1325#ifdef B921600
1326 check_speed(921600);
1327#endif
1328#ifdef B1000000
1329 check_speed(1000000);
1330#endif
1331#ifdef B1152000
1332 check_speed(1152000);
1333#endif
1334#ifdef B1500000
1335 check_speed(1500000);
1336#endif
1337#ifdef B2000000
1338 check_speed(2000000);
1339#endif
1340#ifdef B2500000
1341 check_speed(2500000);
1342#endif
1343#ifdef B3000000
1344 check_speed(3000000);
1345#endif
1346#ifdef B3500000
1347 check_speed(3500000);
1348#endif
1349#ifdef B4000000
1350 check_speed(4000000);
1351#endif
aliguori6f97dba2008-10-31 18:49:55 +00001352 spd = B115200;
Stefan Weil45eea132009-10-26 16:10:10 +01001353 } while (0);
aliguori6f97dba2008-10-31 18:49:55 +00001354
1355 cfsetispeed(&tty, spd);
1356 cfsetospeed(&tty, spd);
1357
1358 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
1359 |INLCR|IGNCR|ICRNL|IXON);
1360 tty.c_oflag |= OPOST;
1361 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN|ISIG);
1362 tty.c_cflag &= ~(CSIZE|PARENB|PARODD|CRTSCTS|CSTOPB);
1363 switch(data_bits) {
1364 default:
1365 case 8:
1366 tty.c_cflag |= CS8;
1367 break;
1368 case 7:
1369 tty.c_cflag |= CS7;
1370 break;
1371 case 6:
1372 tty.c_cflag |= CS6;
1373 break;
1374 case 5:
1375 tty.c_cflag |= CS5;
1376 break;
1377 }
1378 switch(parity) {
1379 default:
1380 case 'N':
1381 break;
1382 case 'E':
1383 tty.c_cflag |= PARENB;
1384 break;
1385 case 'O':
1386 tty.c_cflag |= PARENB | PARODD;
1387 break;
1388 }
1389 if (stop_bits == 2)
1390 tty.c_cflag |= CSTOPB;
1391
1392 tcsetattr (fd, TCSANOW, &tty);
1393}
1394
1395static int tty_serial_ioctl(CharDriverState *chr, int cmd, void *arg)
1396{
1397 FDCharDriver *s = chr->opaque;
1398
1399 switch(cmd) {
1400 case CHR_IOCTL_SERIAL_SET_PARAMS:
1401 {
1402 QEMUSerialSetParams *ssp = arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301403 tty_serial_init(g_io_channel_unix_get_fd(s->fd_in),
1404 ssp->speed, ssp->parity,
aliguori6f97dba2008-10-31 18:49:55 +00001405 ssp->data_bits, ssp->stop_bits);
1406 }
1407 break;
1408 case CHR_IOCTL_SERIAL_SET_BREAK:
1409 {
1410 int enable = *(int *)arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301411 if (enable) {
1412 tcsendbreak(g_io_channel_unix_get_fd(s->fd_in), 1);
1413 }
aliguori6f97dba2008-10-31 18:49:55 +00001414 }
1415 break;
1416 case CHR_IOCTL_SERIAL_GET_TIOCM:
1417 {
1418 int sarg = 0;
1419 int *targ = (int *)arg;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301420 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMGET, &sarg);
aliguori6f97dba2008-10-31 18:49:55 +00001421 *targ = 0;
aurel32b4abdfa2009-02-08 14:46:17 +00001422 if (sarg & TIOCM_CTS)
aliguori6f97dba2008-10-31 18:49:55 +00001423 *targ |= CHR_TIOCM_CTS;
aurel32b4abdfa2009-02-08 14:46:17 +00001424 if (sarg & TIOCM_CAR)
aliguori6f97dba2008-10-31 18:49:55 +00001425 *targ |= CHR_TIOCM_CAR;
aurel32b4abdfa2009-02-08 14:46:17 +00001426 if (sarg & TIOCM_DSR)
aliguori6f97dba2008-10-31 18:49:55 +00001427 *targ |= CHR_TIOCM_DSR;
aurel32b4abdfa2009-02-08 14:46:17 +00001428 if (sarg & TIOCM_RI)
aliguori6f97dba2008-10-31 18:49:55 +00001429 *targ |= CHR_TIOCM_RI;
aurel32b4abdfa2009-02-08 14:46:17 +00001430 if (sarg & TIOCM_DTR)
aliguori6f97dba2008-10-31 18:49:55 +00001431 *targ |= CHR_TIOCM_DTR;
aurel32b4abdfa2009-02-08 14:46:17 +00001432 if (sarg & TIOCM_RTS)
aliguori6f97dba2008-10-31 18:49:55 +00001433 *targ |= CHR_TIOCM_RTS;
1434 }
1435 break;
1436 case CHR_IOCTL_SERIAL_SET_TIOCM:
1437 {
1438 int sarg = *(int *)arg;
1439 int targ = 0;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301440 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMGET, &targ);
aurel32b4abdfa2009-02-08 14:46:17 +00001441 targ &= ~(CHR_TIOCM_CTS | CHR_TIOCM_CAR | CHR_TIOCM_DSR
1442 | CHR_TIOCM_RI | CHR_TIOCM_DTR | CHR_TIOCM_RTS);
1443 if (sarg & CHR_TIOCM_CTS)
1444 targ |= TIOCM_CTS;
1445 if (sarg & CHR_TIOCM_CAR)
1446 targ |= TIOCM_CAR;
1447 if (sarg & CHR_TIOCM_DSR)
1448 targ |= TIOCM_DSR;
1449 if (sarg & CHR_TIOCM_RI)
1450 targ |= TIOCM_RI;
1451 if (sarg & CHR_TIOCM_DTR)
aliguori6f97dba2008-10-31 18:49:55 +00001452 targ |= TIOCM_DTR;
aurel32b4abdfa2009-02-08 14:46:17 +00001453 if (sarg & CHR_TIOCM_RTS)
aliguori6f97dba2008-10-31 18:49:55 +00001454 targ |= TIOCM_RTS;
Anthony Liguoria29753f2013-03-05 23:21:19 +05301455 ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMSET, &targ);
aliguori6f97dba2008-10-31 18:49:55 +00001456 }
1457 break;
1458 default:
1459 return -ENOTSUP;
1460 }
1461 return 0;
1462}
1463
David Ahern4266a132010-02-10 18:27:17 -07001464static void qemu_chr_close_tty(CharDriverState *chr)
1465{
1466 FDCharDriver *s = chr->opaque;
1467 int fd = -1;
1468
1469 if (s) {
Anthony Liguoria29753f2013-03-05 23:21:19 +05301470 fd = g_io_channel_unix_get_fd(s->fd_in);
David Ahern4266a132010-02-10 18:27:17 -07001471 }
1472
1473 fd_chr_close(chr);
1474
1475 if (fd >= 0) {
1476 close(fd);
1477 }
1478}
1479
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01001480static CharDriverState *qemu_chr_open_tty_fd(int fd)
1481{
1482 CharDriverState *chr;
1483
1484 tty_serial_init(fd, 115200, 'N', 8, 1);
1485 chr = qemu_chr_open_fd(fd, fd);
1486 chr->chr_ioctl = tty_serial_ioctl;
1487 chr->chr_close = qemu_chr_close_tty;
1488 return chr;
1489}
aliguori6f97dba2008-10-31 18:49:55 +00001490#endif /* __linux__ || __sun__ */
1491
1492#if defined(__linux__)
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001493
1494#define HAVE_CHARDEV_PARPORT 1
1495
aliguori6f97dba2008-10-31 18:49:55 +00001496typedef struct {
1497 int fd;
1498 int mode;
1499} ParallelCharDriver;
1500
1501static int pp_hw_mode(ParallelCharDriver *s, uint16_t mode)
1502{
1503 if (s->mode != mode) {
1504 int m = mode;
1505 if (ioctl(s->fd, PPSETMODE, &m) < 0)
1506 return 0;
1507 s->mode = mode;
1508 }
1509 return 1;
1510}
1511
1512static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1513{
1514 ParallelCharDriver *drv = chr->opaque;
1515 int fd = drv->fd;
1516 uint8_t b;
1517
1518 switch(cmd) {
1519 case CHR_IOCTL_PP_READ_DATA:
1520 if (ioctl(fd, PPRDATA, &b) < 0)
1521 return -ENOTSUP;
1522 *(uint8_t *)arg = b;
1523 break;
1524 case CHR_IOCTL_PP_WRITE_DATA:
1525 b = *(uint8_t *)arg;
1526 if (ioctl(fd, PPWDATA, &b) < 0)
1527 return -ENOTSUP;
1528 break;
1529 case CHR_IOCTL_PP_READ_CONTROL:
1530 if (ioctl(fd, PPRCONTROL, &b) < 0)
1531 return -ENOTSUP;
1532 /* Linux gives only the lowest bits, and no way to know data
1533 direction! For better compatibility set the fixed upper
1534 bits. */
1535 *(uint8_t *)arg = b | 0xc0;
1536 break;
1537 case CHR_IOCTL_PP_WRITE_CONTROL:
1538 b = *(uint8_t *)arg;
1539 if (ioctl(fd, PPWCONTROL, &b) < 0)
1540 return -ENOTSUP;
1541 break;
1542 case CHR_IOCTL_PP_READ_STATUS:
1543 if (ioctl(fd, PPRSTATUS, &b) < 0)
1544 return -ENOTSUP;
1545 *(uint8_t *)arg = b;
1546 break;
1547 case CHR_IOCTL_PP_DATA_DIR:
1548 if (ioctl(fd, PPDATADIR, (int *)arg) < 0)
1549 return -ENOTSUP;
1550 break;
1551 case CHR_IOCTL_PP_EPP_READ_ADDR:
1552 if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1553 struct ParallelIOArg *parg = arg;
1554 int n = read(fd, parg->buffer, parg->count);
1555 if (n != parg->count) {
1556 return -EIO;
1557 }
1558 }
1559 break;
1560 case CHR_IOCTL_PP_EPP_READ:
1561 if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1562 struct ParallelIOArg *parg = arg;
1563 int n = read(fd, parg->buffer, parg->count);
1564 if (n != parg->count) {
1565 return -EIO;
1566 }
1567 }
1568 break;
1569 case CHR_IOCTL_PP_EPP_WRITE_ADDR:
1570 if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1571 struct ParallelIOArg *parg = arg;
1572 int n = write(fd, parg->buffer, parg->count);
1573 if (n != parg->count) {
1574 return -EIO;
1575 }
1576 }
1577 break;
1578 case CHR_IOCTL_PP_EPP_WRITE:
1579 if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1580 struct ParallelIOArg *parg = arg;
1581 int n = write(fd, parg->buffer, parg->count);
1582 if (n != parg->count) {
1583 return -EIO;
1584 }
1585 }
1586 break;
1587 default:
1588 return -ENOTSUP;
1589 }
1590 return 0;
1591}
1592
1593static void pp_close(CharDriverState *chr)
1594{
1595 ParallelCharDriver *drv = chr->opaque;
1596 int fd = drv->fd;
1597
1598 pp_hw_mode(drv, IEEE1284_MODE_COMPAT);
1599 ioctl(fd, PPRELEASE);
1600 close(fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05001601 g_free(drv);
Hans de Goedea425d232011-11-19 10:22:43 +01001602 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001603}
1604
Gerd Hoffmann88a946d2013-01-10 14:20:58 +01001605static CharDriverState *qemu_chr_open_pp_fd(int fd)
aliguori6f97dba2008-10-31 18:49:55 +00001606{
1607 CharDriverState *chr;
1608 ParallelCharDriver *drv;
aliguori6f97dba2008-10-31 18:49:55 +00001609
1610 if (ioctl(fd, PPCLAIM) < 0) {
1611 close(fd);
Markus Armbruster1f514702012-02-07 15:09:08 +01001612 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001613 }
1614
Anthony Liguori7267c092011-08-20 22:09:37 -05001615 drv = g_malloc0(sizeof(ParallelCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00001616 drv->fd = fd;
1617 drv->mode = IEEE1284_MODE_COMPAT;
1618
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001619 chr = qemu_chr_alloc();
aliguori6f97dba2008-10-31 18:49:55 +00001620 chr->chr_write = null_chr_write;
1621 chr->chr_ioctl = pp_ioctl;
1622 chr->chr_close = pp_close;
1623 chr->opaque = drv;
1624
Markus Armbruster1f514702012-02-07 15:09:08 +01001625 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001626}
1627#endif /* __linux__ */
1628
Aurelien Jarnoa167ba52009-11-29 18:00:41 +01001629#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
Gerd Hoffmanne5514982012-12-19 16:35:42 +01001630
1631#define HAVE_CHARDEV_PARPORT 1
1632
blueswir16972f932008-11-22 20:49:12 +00001633static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1634{
Stefan Weile0efb992011-02-23 19:09:16 +01001635 int fd = (int)(intptr_t)chr->opaque;
blueswir16972f932008-11-22 20:49:12 +00001636 uint8_t b;
1637
1638 switch(cmd) {
1639 case CHR_IOCTL_PP_READ_DATA:
1640 if (ioctl(fd, PPIGDATA, &b) < 0)
1641 return -ENOTSUP;
1642 *(uint8_t *)arg = b;
1643 break;
1644 case CHR_IOCTL_PP_WRITE_DATA:
1645 b = *(uint8_t *)arg;
1646 if (ioctl(fd, PPISDATA, &b) < 0)
1647 return -ENOTSUP;
1648 break;
1649 case CHR_IOCTL_PP_READ_CONTROL:
1650 if (ioctl(fd, PPIGCTRL, &b) < 0)
1651 return -ENOTSUP;
1652 *(uint8_t *)arg = b;
1653 break;
1654 case CHR_IOCTL_PP_WRITE_CONTROL:
1655 b = *(uint8_t *)arg;
1656 if (ioctl(fd, PPISCTRL, &b) < 0)
1657 return -ENOTSUP;
1658 break;
1659 case CHR_IOCTL_PP_READ_STATUS:
1660 if (ioctl(fd, PPIGSTATUS, &b) < 0)
1661 return -ENOTSUP;
1662 *(uint8_t *)arg = b;
1663 break;
1664 default:
1665 return -ENOTSUP;
1666 }
1667 return 0;
1668}
1669
Gerd Hoffmann88a946d2013-01-10 14:20:58 +01001670static CharDriverState *qemu_chr_open_pp_fd(int fd)
blueswir16972f932008-11-22 20:49:12 +00001671{
1672 CharDriverState *chr;
blueswir16972f932008-11-22 20:49:12 +00001673
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001674 chr = qemu_chr_alloc();
Stefan Weile0efb992011-02-23 19:09:16 +01001675 chr->opaque = (void *)(intptr_t)fd;
blueswir16972f932008-11-22 20:49:12 +00001676 chr->chr_write = null_chr_write;
1677 chr->chr_ioctl = pp_ioctl;
Michael Rothbd5c51e2013-06-07 15:19:53 -05001678 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +01001679 return chr;
blueswir16972f932008-11-22 20:49:12 +00001680}
1681#endif
1682
aliguori6f97dba2008-10-31 18:49:55 +00001683#else /* _WIN32 */
1684
1685typedef struct {
1686 int max_size;
1687 HANDLE hcom, hrecv, hsend;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001688 OVERLAPPED orecv;
aliguori6f97dba2008-10-31 18:49:55 +00001689 BOOL fpipe;
1690 DWORD len;
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001691
1692 /* Protected by the CharDriverState chr_write_lock. */
1693 OVERLAPPED osend;
aliguori6f97dba2008-10-31 18:49:55 +00001694} WinCharState;
1695
Fabien Chouteaudb418a02011-10-06 16:37:51 +02001696typedef struct {
1697 HANDLE hStdIn;
1698 HANDLE hInputReadyEvent;
1699 HANDLE hInputDoneEvent;
1700 HANDLE hInputThread;
1701 uint8_t win_stdio_buf;
1702} WinStdioCharState;
1703
aliguori6f97dba2008-10-31 18:49:55 +00001704#define NSENDBUF 2048
1705#define NRECVBUF 2048
1706#define MAXCONNECT 1
1707#define NTIMEOUT 5000
1708
1709static int win_chr_poll(void *opaque);
1710static int win_chr_pipe_poll(void *opaque);
1711
1712static void win_chr_close(CharDriverState *chr)
1713{
1714 WinCharState *s = chr->opaque;
1715
1716 if (s->hsend) {
1717 CloseHandle(s->hsend);
1718 s->hsend = NULL;
1719 }
1720 if (s->hrecv) {
1721 CloseHandle(s->hrecv);
1722 s->hrecv = NULL;
1723 }
1724 if (s->hcom) {
1725 CloseHandle(s->hcom);
1726 s->hcom = NULL;
1727 }
1728 if (s->fpipe)
1729 qemu_del_polling_cb(win_chr_pipe_poll, chr);
1730 else
1731 qemu_del_polling_cb(win_chr_poll, chr);
Amit Shah793cbfb2009-08-11 21:27:48 +05301732
Hans de Goedea425d232011-11-19 10:22:43 +01001733 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00001734}
1735
1736static int win_chr_init(CharDriverState *chr, const char *filename)
1737{
1738 WinCharState *s = chr->opaque;
1739 COMMCONFIG comcfg;
1740 COMMTIMEOUTS cto = { 0, 0, 0, 0, 0};
1741 COMSTAT comstat;
1742 DWORD size;
1743 DWORD err;
1744
1745 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1746 if (!s->hsend) {
1747 fprintf(stderr, "Failed CreateEvent\n");
1748 goto fail;
1749 }
1750 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1751 if (!s->hrecv) {
1752 fprintf(stderr, "Failed CreateEvent\n");
1753 goto fail;
1754 }
1755
1756 s->hcom = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, NULL,
1757 OPEN_EXISTING, FILE_FLAG_OVERLAPPED, 0);
1758 if (s->hcom == INVALID_HANDLE_VALUE) {
1759 fprintf(stderr, "Failed CreateFile (%lu)\n", GetLastError());
1760 s->hcom = NULL;
1761 goto fail;
1762 }
1763
1764 if (!SetupComm(s->hcom, NRECVBUF, NSENDBUF)) {
1765 fprintf(stderr, "Failed SetupComm\n");
1766 goto fail;
1767 }
1768
1769 ZeroMemory(&comcfg, sizeof(COMMCONFIG));
1770 size = sizeof(COMMCONFIG);
1771 GetDefaultCommConfig(filename, &comcfg, &size);
1772 comcfg.dcb.DCBlength = sizeof(DCB);
1773 CommConfigDialog(filename, NULL, &comcfg);
1774
1775 if (!SetCommState(s->hcom, &comcfg.dcb)) {
1776 fprintf(stderr, "Failed SetCommState\n");
1777 goto fail;
1778 }
1779
1780 if (!SetCommMask(s->hcom, EV_ERR)) {
1781 fprintf(stderr, "Failed SetCommMask\n");
1782 goto fail;
1783 }
1784
1785 cto.ReadIntervalTimeout = MAXDWORD;
1786 if (!SetCommTimeouts(s->hcom, &cto)) {
1787 fprintf(stderr, "Failed SetCommTimeouts\n");
1788 goto fail;
1789 }
1790
1791 if (!ClearCommError(s->hcom, &err, &comstat)) {
1792 fprintf(stderr, "Failed ClearCommError\n");
1793 goto fail;
1794 }
1795 qemu_add_polling_cb(win_chr_poll, chr);
1796 return 0;
1797
1798 fail:
1799 win_chr_close(chr);
1800 return -1;
1801}
1802
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02001803/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00001804static int win_chr_write(CharDriverState *chr, const uint8_t *buf, int len1)
1805{
1806 WinCharState *s = chr->opaque;
1807 DWORD len, ret, size, err;
1808
1809 len = len1;
1810 ZeroMemory(&s->osend, sizeof(s->osend));
1811 s->osend.hEvent = s->hsend;
1812 while (len > 0) {
1813 if (s->hsend)
1814 ret = WriteFile(s->hcom, buf, len, &size, &s->osend);
1815 else
1816 ret = WriteFile(s->hcom, buf, len, &size, NULL);
1817 if (!ret) {
1818 err = GetLastError();
1819 if (err == ERROR_IO_PENDING) {
1820 ret = GetOverlappedResult(s->hcom, &s->osend, &size, TRUE);
1821 if (ret) {
1822 buf += size;
1823 len -= size;
1824 } else {
1825 break;
1826 }
1827 } else {
1828 break;
1829 }
1830 } else {
1831 buf += size;
1832 len -= size;
1833 }
1834 }
1835 return len1 - len;
1836}
1837
1838static int win_chr_read_poll(CharDriverState *chr)
1839{
1840 WinCharState *s = chr->opaque;
1841
Anthony Liguori909cda12011-08-15 11:17:31 -05001842 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00001843 return s->max_size;
1844}
1845
1846static void win_chr_readfile(CharDriverState *chr)
1847{
1848 WinCharState *s = chr->opaque;
1849 int ret, err;
Amit Shah9bd78542009-11-03 19:59:54 +05301850 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00001851 DWORD size;
1852
1853 ZeroMemory(&s->orecv, sizeof(s->orecv));
1854 s->orecv.hEvent = s->hrecv;
1855 ret = ReadFile(s->hcom, buf, s->len, &size, &s->orecv);
1856 if (!ret) {
1857 err = GetLastError();
1858 if (err == ERROR_IO_PENDING) {
1859 ret = GetOverlappedResult(s->hcom, &s->orecv, &size, TRUE);
1860 }
1861 }
1862
1863 if (size > 0) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05001864 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00001865 }
1866}
1867
1868static void win_chr_read(CharDriverState *chr)
1869{
1870 WinCharState *s = chr->opaque;
1871
1872 if (s->len > s->max_size)
1873 s->len = s->max_size;
1874 if (s->len == 0)
1875 return;
1876
1877 win_chr_readfile(chr);
1878}
1879
1880static int win_chr_poll(void *opaque)
1881{
1882 CharDriverState *chr = opaque;
1883 WinCharState *s = chr->opaque;
1884 COMSTAT status;
1885 DWORD comerr;
1886
1887 ClearCommError(s->hcom, &comerr, &status);
1888 if (status.cbInQue > 0) {
1889 s->len = status.cbInQue;
1890 win_chr_read_poll(chr);
1891 win_chr_read(chr);
1892 return 1;
1893 }
1894 return 0;
1895}
1896
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01001897static CharDriverState *qemu_chr_open_win_path(const char *filename)
aliguori6f97dba2008-10-31 18:49:55 +00001898{
1899 CharDriverState *chr;
1900 WinCharState *s;
1901
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001902 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05001903 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00001904 chr->opaque = s;
1905 chr->chr_write = win_chr_write;
1906 chr->chr_close = win_chr_close;
1907
1908 if (win_chr_init(chr, filename) < 0) {
Stefan Weil2e02e182011-10-07 07:38:46 +02001909 g_free(s);
1910 g_free(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01001911 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00001912 }
Markus Armbruster1f514702012-02-07 15:09:08 +01001913 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00001914}
1915
1916static int win_chr_pipe_poll(void *opaque)
1917{
1918 CharDriverState *chr = opaque;
1919 WinCharState *s = chr->opaque;
1920 DWORD size;
1921
1922 PeekNamedPipe(s->hcom, NULL, 0, NULL, &size, NULL);
1923 if (size > 0) {
1924 s->len = size;
1925 win_chr_read_poll(chr);
1926 win_chr_read(chr);
1927 return 1;
1928 }
1929 return 0;
1930}
1931
1932static int win_chr_pipe_init(CharDriverState *chr, const char *filename)
1933{
1934 WinCharState *s = chr->opaque;
1935 OVERLAPPED ov;
1936 int ret;
1937 DWORD size;
1938 char openname[256];
1939
1940 s->fpipe = TRUE;
1941
1942 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1943 if (!s->hsend) {
1944 fprintf(stderr, "Failed CreateEvent\n");
1945 goto fail;
1946 }
1947 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1948 if (!s->hrecv) {
1949 fprintf(stderr, "Failed CreateEvent\n");
1950 goto fail;
1951 }
1952
1953 snprintf(openname, sizeof(openname), "\\\\.\\pipe\\%s", filename);
1954 s->hcom = CreateNamedPipe(openname, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
1955 PIPE_TYPE_BYTE | PIPE_READMODE_BYTE |
1956 PIPE_WAIT,
1957 MAXCONNECT, NSENDBUF, NRECVBUF, NTIMEOUT, NULL);
1958 if (s->hcom == INVALID_HANDLE_VALUE) {
1959 fprintf(stderr, "Failed CreateNamedPipe (%lu)\n", GetLastError());
1960 s->hcom = NULL;
1961 goto fail;
1962 }
1963
1964 ZeroMemory(&ov, sizeof(ov));
1965 ov.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
1966 ret = ConnectNamedPipe(s->hcom, &ov);
1967 if (ret) {
1968 fprintf(stderr, "Failed ConnectNamedPipe\n");
1969 goto fail;
1970 }
1971
1972 ret = GetOverlappedResult(s->hcom, &ov, &size, TRUE);
1973 if (!ret) {
1974 fprintf(stderr, "Failed GetOverlappedResult\n");
1975 if (ov.hEvent) {
1976 CloseHandle(ov.hEvent);
1977 ov.hEvent = NULL;
1978 }
1979 goto fail;
1980 }
1981
1982 if (ov.hEvent) {
1983 CloseHandle(ov.hEvent);
1984 ov.hEvent = NULL;
1985 }
1986 qemu_add_polling_cb(win_chr_pipe_poll, chr);
1987 return 0;
1988
1989 fail:
1990 win_chr_close(chr);
1991 return -1;
1992}
1993
1994
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01001995static CharDriverState *qemu_chr_open_pipe(ChardevHostdev *opts)
aliguori6f97dba2008-10-31 18:49:55 +00001996{
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01001997 const char *filename = opts->device;
aliguori6f97dba2008-10-31 18:49:55 +00001998 CharDriverState *chr;
1999 WinCharState *s;
2000
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002001 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05002002 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00002003 chr->opaque = s;
2004 chr->chr_write = win_chr_write;
2005 chr->chr_close = win_chr_close;
2006
2007 if (win_chr_pipe_init(chr, filename) < 0) {
Stefan Weil2e02e182011-10-07 07:38:46 +02002008 g_free(s);
2009 g_free(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01002010 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002011 }
Markus Armbruster1f514702012-02-07 15:09:08 +01002012 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00002013}
2014
Markus Armbruster1f514702012-02-07 15:09:08 +01002015static CharDriverState *qemu_chr_open_win_file(HANDLE fd_out)
aliguori6f97dba2008-10-31 18:49:55 +00002016{
2017 CharDriverState *chr;
2018 WinCharState *s;
2019
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002020 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05002021 s = g_malloc0(sizeof(WinCharState));
aliguori6f97dba2008-10-31 18:49:55 +00002022 s->hcom = fd_out;
2023 chr->opaque = s;
2024 chr->chr_write = win_chr_write;
Markus Armbruster1f514702012-02-07 15:09:08 +01002025 return chr;
aliguori6f97dba2008-10-31 18:49:55 +00002026}
2027
Gerd Hoffmannd9ac3742013-02-25 11:48:06 +01002028static CharDriverState *qemu_chr_open_win_con(void)
aliguori6f97dba2008-10-31 18:49:55 +00002029{
Markus Armbruster1f514702012-02-07 15:09:08 +01002030 return qemu_chr_open_win_file(GetStdHandle(STD_OUTPUT_HANDLE));
aliguori6f97dba2008-10-31 18:49:55 +00002031}
2032
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002033static int win_stdio_write(CharDriverState *chr, const uint8_t *buf, int len)
2034{
2035 HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
2036 DWORD dwSize;
2037 int len1;
2038
2039 len1 = len;
2040
2041 while (len1 > 0) {
2042 if (!WriteFile(hStdOut, buf, len1, &dwSize, NULL)) {
2043 break;
2044 }
2045 buf += dwSize;
2046 len1 -= dwSize;
2047 }
2048
2049 return len - len1;
2050}
2051
2052static void win_stdio_wait_func(void *opaque)
2053{
2054 CharDriverState *chr = opaque;
2055 WinStdioCharState *stdio = chr->opaque;
2056 INPUT_RECORD buf[4];
2057 int ret;
2058 DWORD dwSize;
2059 int i;
2060
Stefan Weildff74242013-12-07 14:48:04 +01002061 ret = ReadConsoleInput(stdio->hStdIn, buf, ARRAY_SIZE(buf), &dwSize);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002062
2063 if (!ret) {
2064 /* Avoid error storm */
2065 qemu_del_wait_object(stdio->hStdIn, NULL, NULL);
2066 return;
2067 }
2068
2069 for (i = 0; i < dwSize; i++) {
2070 KEY_EVENT_RECORD *kev = &buf[i].Event.KeyEvent;
2071
2072 if (buf[i].EventType == KEY_EVENT && kev->bKeyDown) {
2073 int j;
2074 if (kev->uChar.AsciiChar != 0) {
2075 for (j = 0; j < kev->wRepeatCount; j++) {
2076 if (qemu_chr_be_can_write(chr)) {
2077 uint8_t c = kev->uChar.AsciiChar;
2078 qemu_chr_be_write(chr, &c, 1);
2079 }
2080 }
2081 }
2082 }
2083 }
2084}
2085
2086static DWORD WINAPI win_stdio_thread(LPVOID param)
2087{
2088 CharDriverState *chr = param;
2089 WinStdioCharState *stdio = chr->opaque;
2090 int ret;
2091 DWORD dwSize;
2092
2093 while (1) {
2094
2095 /* Wait for one byte */
2096 ret = ReadFile(stdio->hStdIn, &stdio->win_stdio_buf, 1, &dwSize, NULL);
2097
2098 /* Exit in case of error, continue if nothing read */
2099 if (!ret) {
2100 break;
2101 }
2102 if (!dwSize) {
2103 continue;
2104 }
2105
2106 /* Some terminal emulator returns \r\n for Enter, just pass \n */
2107 if (stdio->win_stdio_buf == '\r') {
2108 continue;
2109 }
2110
2111 /* Signal the main thread and wait until the byte was eaten */
2112 if (!SetEvent(stdio->hInputReadyEvent)) {
2113 break;
2114 }
2115 if (WaitForSingleObject(stdio->hInputDoneEvent, INFINITE)
2116 != WAIT_OBJECT_0) {
2117 break;
2118 }
2119 }
2120
2121 qemu_del_wait_object(stdio->hInputReadyEvent, NULL, NULL);
2122 return 0;
2123}
2124
2125static void win_stdio_thread_wait_func(void *opaque)
2126{
2127 CharDriverState *chr = opaque;
2128 WinStdioCharState *stdio = chr->opaque;
2129
2130 if (qemu_chr_be_can_write(chr)) {
2131 qemu_chr_be_write(chr, &stdio->win_stdio_buf, 1);
2132 }
2133
2134 SetEvent(stdio->hInputDoneEvent);
2135}
2136
2137static void qemu_chr_set_echo_win_stdio(CharDriverState *chr, bool echo)
2138{
2139 WinStdioCharState *stdio = chr->opaque;
2140 DWORD dwMode = 0;
2141
2142 GetConsoleMode(stdio->hStdIn, &dwMode);
2143
2144 if (echo) {
2145 SetConsoleMode(stdio->hStdIn, dwMode | ENABLE_ECHO_INPUT);
2146 } else {
2147 SetConsoleMode(stdio->hStdIn, dwMode & ~ENABLE_ECHO_INPUT);
2148 }
2149}
2150
2151static void win_stdio_close(CharDriverState *chr)
2152{
2153 WinStdioCharState *stdio = chr->opaque;
2154
2155 if (stdio->hInputReadyEvent != INVALID_HANDLE_VALUE) {
2156 CloseHandle(stdio->hInputReadyEvent);
2157 }
2158 if (stdio->hInputDoneEvent != INVALID_HANDLE_VALUE) {
2159 CloseHandle(stdio->hInputDoneEvent);
2160 }
2161 if (stdio->hInputThread != INVALID_HANDLE_VALUE) {
2162 TerminateThread(stdio->hInputThread, 0);
2163 }
2164
2165 g_free(chr->opaque);
2166 g_free(chr);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002167}
2168
Gerd Hoffmann7c358032013-02-21 12:34:58 +01002169static CharDriverState *qemu_chr_open_stdio(ChardevStdio *opts)
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002170{
2171 CharDriverState *chr;
2172 WinStdioCharState *stdio;
2173 DWORD dwMode;
2174 int is_console = 0;
2175
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002176 chr = qemu_chr_alloc();
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002177 stdio = g_malloc0(sizeof(WinStdioCharState));
2178
2179 stdio->hStdIn = GetStdHandle(STD_INPUT_HANDLE);
2180 if (stdio->hStdIn == INVALID_HANDLE_VALUE) {
2181 fprintf(stderr, "cannot open stdio: invalid handle\n");
2182 exit(1);
2183 }
2184
2185 is_console = GetConsoleMode(stdio->hStdIn, &dwMode) != 0;
2186
2187 chr->opaque = stdio;
2188 chr->chr_write = win_stdio_write;
2189 chr->chr_close = win_stdio_close;
2190
Anthony Liguoried7a1542013-03-05 23:21:17 +05302191 if (is_console) {
2192 if (qemu_add_wait_object(stdio->hStdIn,
2193 win_stdio_wait_func, chr)) {
2194 fprintf(stderr, "qemu_add_wait_object: failed\n");
2195 }
2196 } else {
2197 DWORD dwId;
2198
2199 stdio->hInputReadyEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2200 stdio->hInputDoneEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2201 stdio->hInputThread = CreateThread(NULL, 0, win_stdio_thread,
2202 chr, 0, &dwId);
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002203
Anthony Liguoried7a1542013-03-05 23:21:17 +05302204 if (stdio->hInputThread == INVALID_HANDLE_VALUE
2205 || stdio->hInputReadyEvent == INVALID_HANDLE_VALUE
2206 || stdio->hInputDoneEvent == INVALID_HANDLE_VALUE) {
2207 fprintf(stderr, "cannot create stdio thread or event\n");
2208 exit(1);
2209 }
2210 if (qemu_add_wait_object(stdio->hInputReadyEvent,
2211 win_stdio_thread_wait_func, chr)) {
2212 fprintf(stderr, "qemu_add_wait_object: failed\n");
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002213 }
2214 }
2215
2216 dwMode |= ENABLE_LINE_INPUT;
2217
Anthony Liguoried7a1542013-03-05 23:21:17 +05302218 if (is_console) {
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002219 /* set the terminal in raw mode */
2220 /* ENABLE_QUICK_EDIT_MODE | ENABLE_EXTENDED_FLAGS */
2221 dwMode |= ENABLE_PROCESSED_INPUT;
2222 }
2223
2224 SetConsoleMode(stdio->hStdIn, dwMode);
2225
2226 chr->chr_set_echo = qemu_chr_set_echo_win_stdio;
2227 qemu_chr_fe_set_echo(chr, false);
2228
Markus Armbruster1f514702012-02-07 15:09:08 +01002229 return chr;
Fabien Chouteaudb418a02011-10-06 16:37:51 +02002230}
aliguori6f97dba2008-10-31 18:49:55 +00002231#endif /* !_WIN32 */
2232
Anthony Liguori5ab82112013-03-05 23:21:31 +05302233
aliguori6f97dba2008-10-31 18:49:55 +00002234/***********************************************************/
2235/* UDP Net console */
2236
2237typedef struct {
2238 int fd;
Anthony Liguori76a96442013-03-05 23:21:21 +05302239 GIOChannel *chan;
Amit Shah9bd78542009-11-03 19:59:54 +05302240 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002241 int bufcnt;
2242 int bufptr;
2243 int max_size;
2244} NetCharDriver;
2245
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02002246/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00002247static int udp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2248{
2249 NetCharDriver *s = chr->opaque;
Anthony Liguori76a96442013-03-05 23:21:21 +05302250 gsize bytes_written;
2251 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00002252
Anthony Liguori76a96442013-03-05 23:21:21 +05302253 status = g_io_channel_write_chars(s->chan, (const gchar *)buf, len, &bytes_written, NULL);
2254 if (status == G_IO_STATUS_EOF) {
2255 return 0;
2256 } else if (status != G_IO_STATUS_NORMAL) {
2257 return -1;
2258 }
2259
2260 return bytes_written;
aliguori6f97dba2008-10-31 18:49:55 +00002261}
2262
2263static int udp_chr_read_poll(void *opaque)
2264{
2265 CharDriverState *chr = opaque;
2266 NetCharDriver *s = chr->opaque;
2267
Anthony Liguori909cda12011-08-15 11:17:31 -05002268 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002269
2270 /* If there were any stray characters in the queue process them
2271 * first
2272 */
2273 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002274 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
aliguori6f97dba2008-10-31 18:49:55 +00002275 s->bufptr++;
Anthony Liguori909cda12011-08-15 11:17:31 -05002276 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002277 }
2278 return s->max_size;
2279}
2280
Anthony Liguori76a96442013-03-05 23:21:21 +05302281static gboolean udp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002282{
2283 CharDriverState *chr = opaque;
2284 NetCharDriver *s = chr->opaque;
Anthony Liguori76a96442013-03-05 23:21:21 +05302285 gsize bytes_read = 0;
2286 GIOStatus status;
aliguori6f97dba2008-10-31 18:49:55 +00002287
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02002288 if (s->max_size == 0) {
2289 return TRUE;
2290 }
Anthony Liguori76a96442013-03-05 23:21:21 +05302291 status = g_io_channel_read_chars(s->chan, (gchar *)s->buf, sizeof(s->buf),
2292 &bytes_read, NULL);
2293 s->bufcnt = bytes_read;
aliguori6f97dba2008-10-31 18:49:55 +00002294 s->bufptr = s->bufcnt;
Anthony Liguori76a96442013-03-05 23:21:21 +05302295 if (status != G_IO_STATUS_NORMAL) {
Amit Shah26da70c2013-08-28 15:23:37 +05302296 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302297 return FALSE;
2298 }
aliguori6f97dba2008-10-31 18:49:55 +00002299
2300 s->bufptr = 0;
2301 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002302 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
aliguori6f97dba2008-10-31 18:49:55 +00002303 s->bufptr++;
Anthony Liguori909cda12011-08-15 11:17:31 -05002304 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002305 }
Anthony Liguori76a96442013-03-05 23:21:21 +05302306
2307 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002308}
2309
2310static void udp_chr_update_read_handler(CharDriverState *chr)
2311{
2312 NetCharDriver *s = chr->opaque;
2313
Amit Shah26da70c2013-08-28 15:23:37 +05302314 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302315 if (s->chan) {
Amit Shah7ba9add2013-08-28 15:18:29 +05302316 chr->fd_in_tag = io_add_watch_poll(s->chan, udp_chr_read_poll,
2317 udp_chr_read, chr);
aliguori6f97dba2008-10-31 18:49:55 +00002318 }
2319}
2320
aliguori819f56b2009-03-28 17:58:14 +00002321static void udp_chr_close(CharDriverState *chr)
2322{
2323 NetCharDriver *s = chr->opaque;
Amit Shah26da70c2013-08-28 15:23:37 +05302324
2325 remove_fd_in_watch(chr);
Anthony Liguori76a96442013-03-05 23:21:21 +05302326 if (s->chan) {
2327 g_io_channel_unref(s->chan);
aliguori819f56b2009-03-28 17:58:14 +00002328 closesocket(s->fd);
2329 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002330 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01002331 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori819f56b2009-03-28 17:58:14 +00002332}
2333
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002334static CharDriverState *qemu_chr_open_udp_fd(int fd)
aliguori6f97dba2008-10-31 18:49:55 +00002335{
2336 CharDriverState *chr = NULL;
2337 NetCharDriver *s = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002338
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002339 chr = qemu_chr_alloc();
Anthony Liguori7267c092011-08-20 22:09:37 -05002340 s = g_malloc0(sizeof(NetCharDriver));
aliguori6f97dba2008-10-31 18:49:55 +00002341
aliguori6f97dba2008-10-31 18:49:55 +00002342 s->fd = fd;
Anthony Liguori76a96442013-03-05 23:21:21 +05302343 s->chan = io_channel_from_socket(s->fd);
aliguori6f97dba2008-10-31 18:49:55 +00002344 s->bufcnt = 0;
2345 s->bufptr = 0;
2346 chr->opaque = s;
2347 chr->chr_write = udp_chr_write;
2348 chr->chr_update_read_handler = udp_chr_update_read_handler;
aliguori819f56b2009-03-28 17:58:14 +00002349 chr->chr_close = udp_chr_close;
Michael Rothbd5c51e2013-06-07 15:19:53 -05002350 /* be isn't opened until we get a connection */
2351 chr->explicit_be_open = true;
Markus Armbruster1f514702012-02-07 15:09:08 +01002352 return chr;
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002353}
aliguori6f97dba2008-10-31 18:49:55 +00002354
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002355static CharDriverState *qemu_chr_open_udp(QemuOpts *opts)
2356{
2357 Error *local_err = NULL;
2358 int fd = -1;
2359
2360 fd = inet_dgram_opts(opts, &local_err);
2361 if (fd < 0) {
Gerd Hoffmann58a37142013-06-24 08:39:55 +02002362 qerror_report_err(local_err);
2363 error_free(local_err);
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002364 return NULL;
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002365 }
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002366 return qemu_chr_open_udp_fd(fd);
aliguori6f97dba2008-10-31 18:49:55 +00002367}
2368
2369/***********************************************************/
2370/* TCP Net console */
2371
2372typedef struct {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302373
2374 GIOChannel *chan, *listen_chan;
Amit Shah7ba9add2013-08-28 15:18:29 +05302375 guint listen_tag;
aliguori6f97dba2008-10-31 18:49:55 +00002376 int fd, listen_fd;
2377 int connected;
2378 int max_size;
2379 int do_telnetopt;
2380 int do_nodelay;
2381 int is_unix;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002382 int *read_msgfds;
2383 int read_msgfds_num;
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002384 int *write_msgfds;
2385 int write_msgfds_num;
aliguori6f97dba2008-10-31 18:49:55 +00002386} TCPCharDriver;
2387
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302388static gboolean tcp_chr_accept(GIOChannel *chan, GIOCondition cond, void *opaque);
aliguori6f97dba2008-10-31 18:49:55 +00002389
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002390#ifndef _WIN32
2391static int unix_send_msgfds(CharDriverState *chr, const uint8_t *buf, int len)
2392{
2393 TCPCharDriver *s = chr->opaque;
2394 struct msghdr msgh;
2395 struct iovec iov;
2396 int r;
2397
2398 size_t fd_size = s->write_msgfds_num * sizeof(int);
2399 char control[CMSG_SPACE(fd_size)];
2400 struct cmsghdr *cmsg;
2401
2402 memset(&msgh, 0, sizeof(msgh));
2403 memset(control, 0, sizeof(control));
2404
2405 /* set the payload */
2406 iov.iov_base = (uint8_t *) buf;
2407 iov.iov_len = len;
2408
2409 msgh.msg_iov = &iov;
2410 msgh.msg_iovlen = 1;
2411
2412 msgh.msg_control = control;
2413 msgh.msg_controllen = sizeof(control);
2414
2415 cmsg = CMSG_FIRSTHDR(&msgh);
2416
2417 cmsg->cmsg_len = CMSG_LEN(fd_size);
2418 cmsg->cmsg_level = SOL_SOCKET;
2419 cmsg->cmsg_type = SCM_RIGHTS;
2420 memcpy(CMSG_DATA(cmsg), s->write_msgfds, fd_size);
2421
2422 do {
2423 r = sendmsg(s->fd, &msgh, 0);
2424 } while (r < 0 && errno == EINTR);
2425
2426 /* free the written msgfds, no matter what */
2427 if (s->write_msgfds_num) {
2428 g_free(s->write_msgfds);
2429 s->write_msgfds = 0;
2430 s->write_msgfds_num = 0;
2431 }
2432
2433 return r;
2434}
2435#endif
2436
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02002437/* Called with chr_write_lock held. */
aliguori6f97dba2008-10-31 18:49:55 +00002438static int tcp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2439{
2440 TCPCharDriver *s = chr->opaque;
2441 if (s->connected) {
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002442#ifndef _WIN32
2443 if (s->is_unix && s->write_msgfds_num) {
2444 return unix_send_msgfds(chr, buf, len);
2445 } else
2446#endif
2447 {
2448 return io_channel_send(s->chan, buf, len);
2449 }
Anthony Liguori455aa1e2012-09-05 13:52:49 -05002450 } else {
Anthony Liguori6db0fdc2012-09-12 14:34:07 -05002451 /* XXX: indicate an error ? */
Anthony Liguori455aa1e2012-09-05 13:52:49 -05002452 return len;
aliguori6f97dba2008-10-31 18:49:55 +00002453 }
2454}
2455
2456static int tcp_chr_read_poll(void *opaque)
2457{
2458 CharDriverState *chr = opaque;
2459 TCPCharDriver *s = chr->opaque;
2460 if (!s->connected)
2461 return 0;
Anthony Liguori909cda12011-08-15 11:17:31 -05002462 s->max_size = qemu_chr_be_can_write(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002463 return s->max_size;
2464}
2465
2466#define IAC 255
2467#define IAC_BREAK 243
2468static void tcp_chr_process_IAC_bytes(CharDriverState *chr,
2469 TCPCharDriver *s,
2470 uint8_t *buf, int *size)
2471{
2472 /* Handle any telnet client's basic IAC options to satisfy char by
2473 * char mode with no echo. All IAC options will be removed from
2474 * the buf and the do_telnetopt variable will be used to track the
2475 * state of the width of the IAC information.
2476 *
2477 * IAC commands come in sets of 3 bytes with the exception of the
2478 * "IAC BREAK" command and the double IAC.
2479 */
2480
2481 int i;
2482 int j = 0;
2483
2484 for (i = 0; i < *size; i++) {
2485 if (s->do_telnetopt > 1) {
2486 if ((unsigned char)buf[i] == IAC && s->do_telnetopt == 2) {
2487 /* Double IAC means send an IAC */
2488 if (j != i)
2489 buf[j] = buf[i];
2490 j++;
2491 s->do_telnetopt = 1;
2492 } else {
2493 if ((unsigned char)buf[i] == IAC_BREAK && s->do_telnetopt == 2) {
2494 /* Handle IAC break commands by sending a serial break */
Hans de Goedea425d232011-11-19 10:22:43 +01002495 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
aliguori6f97dba2008-10-31 18:49:55 +00002496 s->do_telnetopt++;
2497 }
2498 s->do_telnetopt++;
2499 }
2500 if (s->do_telnetopt >= 4) {
2501 s->do_telnetopt = 1;
2502 }
2503 } else {
2504 if ((unsigned char)buf[i] == IAC) {
2505 s->do_telnetopt = 2;
2506 } else {
2507 if (j != i)
2508 buf[j] = buf[i];
2509 j++;
2510 }
2511 }
2512 }
2513 *size = j;
2514}
2515
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002516static int tcp_get_msgfds(CharDriverState *chr, int *fds, int num)
Mark McLoughlin7d174052009-07-22 09:11:39 +01002517{
2518 TCPCharDriver *s = chr->opaque;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002519 int to_copy = (s->read_msgfds_num < num) ? s->read_msgfds_num : num;
2520
2521 if (to_copy) {
Stefan Hajnoczid2fc39b2014-06-22 10:38:37 +08002522 int i;
2523
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002524 memcpy(fds, s->read_msgfds, to_copy * sizeof(int));
2525
Stefan Hajnoczid2fc39b2014-06-22 10:38:37 +08002526 /* Close unused fds */
2527 for (i = to_copy; i < s->read_msgfds_num; i++) {
2528 close(s->read_msgfds[i]);
2529 }
2530
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002531 g_free(s->read_msgfds);
2532 s->read_msgfds = 0;
2533 s->read_msgfds_num = 0;
2534 }
2535
2536 return to_copy;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002537}
2538
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002539static int tcp_set_msgfds(CharDriverState *chr, int *fds, int num)
2540{
2541 TCPCharDriver *s = chr->opaque;
2542
2543 /* clear old pending fd array */
2544 if (s->write_msgfds) {
2545 g_free(s->write_msgfds);
2546 }
2547
2548 if (num) {
2549 s->write_msgfds = g_malloc(num * sizeof(int));
2550 memcpy(s->write_msgfds, fds, num * sizeof(int));
2551 }
2552
2553 s->write_msgfds_num = num;
2554
2555 return 0;
2556}
2557
Anthony Liguori73bcc2a2009-07-27 14:55:25 -05002558#ifndef _WIN32
Mark McLoughlin7d174052009-07-22 09:11:39 +01002559static void unix_process_msgfd(CharDriverState *chr, struct msghdr *msg)
2560{
2561 TCPCharDriver *s = chr->opaque;
2562 struct cmsghdr *cmsg;
2563
2564 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002565 int fd_size, i;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002566
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002567 if (cmsg->cmsg_len < CMSG_LEN(sizeof(int)) ||
Mark McLoughlin7d174052009-07-22 09:11:39 +01002568 cmsg->cmsg_level != SOL_SOCKET ||
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002569 cmsg->cmsg_type != SCM_RIGHTS) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002570 continue;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002571 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002572
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002573 fd_size = cmsg->cmsg_len - CMSG_LEN(0);
2574
2575 if (!fd_size) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002576 continue;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002577 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002578
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002579 /* close and clean read_msgfds */
2580 for (i = 0; i < s->read_msgfds_num; i++) {
2581 close(s->read_msgfds[i]);
2582 }
Stefan Hajnoczi9b938c72013-03-27 10:10:46 +01002583
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002584 if (s->read_msgfds_num) {
2585 g_free(s->read_msgfds);
2586 }
2587
2588 s->read_msgfds_num = fd_size / sizeof(int);
2589 s->read_msgfds = g_malloc(fd_size);
2590 memcpy(s->read_msgfds, CMSG_DATA(cmsg), fd_size);
2591
2592 for (i = 0; i < s->read_msgfds_num; i++) {
2593 int fd = s->read_msgfds[i];
2594 if (fd < 0) {
2595 continue;
2596 }
2597
2598 /* O_NONBLOCK is preserved across SCM_RIGHTS so reset it */
2599 qemu_set_block(fd);
2600
2601 #ifndef MSG_CMSG_CLOEXEC
2602 qemu_set_cloexec(fd);
2603 #endif
2604 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002605 }
2606}
2607
Mark McLoughlin9977c892009-07-22 09:11:38 +01002608static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2609{
2610 TCPCharDriver *s = chr->opaque;
Blue Swirl7cba04f2009-08-01 10:13:20 +00002611 struct msghdr msg = { NULL, };
Mark McLoughlin9977c892009-07-22 09:11:38 +01002612 struct iovec iov[1];
Mark McLoughlin7d174052009-07-22 09:11:39 +01002613 union {
2614 struct cmsghdr cmsg;
2615 char control[CMSG_SPACE(sizeof(int))];
2616 } msg_control;
Corey Bryant06138652012-08-14 16:43:42 -04002617 int flags = 0;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002618 ssize_t ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002619
2620 iov[0].iov_base = buf;
2621 iov[0].iov_len = len;
2622
2623 msg.msg_iov = iov;
2624 msg.msg_iovlen = 1;
Mark McLoughlin7d174052009-07-22 09:11:39 +01002625 msg.msg_control = &msg_control;
2626 msg.msg_controllen = sizeof(msg_control);
Mark McLoughlin9977c892009-07-22 09:11:38 +01002627
Corey Bryant06138652012-08-14 16:43:42 -04002628#ifdef MSG_CMSG_CLOEXEC
2629 flags |= MSG_CMSG_CLOEXEC;
2630#endif
2631 ret = recvmsg(s->fd, &msg, flags);
2632 if (ret > 0 && s->is_unix) {
Mark McLoughlin7d174052009-07-22 09:11:39 +01002633 unix_process_msgfd(chr, &msg);
Corey Bryant06138652012-08-14 16:43:42 -04002634 }
Mark McLoughlin7d174052009-07-22 09:11:39 +01002635
2636 return ret;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002637}
2638#else
2639static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2640{
2641 TCPCharDriver *s = chr->opaque;
Blue Swirl00aa0042011-07-23 20:04:29 +00002642 return qemu_recv(s->fd, buf, len, 0);
Mark McLoughlin9977c892009-07-22 09:11:38 +01002643}
2644#endif
2645
Amit Shahd3cc5bc2013-03-05 23:21:25 +05302646static GSource *tcp_chr_add_watch(CharDriverState *chr, GIOCondition cond)
2647{
2648 TCPCharDriver *s = chr->opaque;
2649 return g_io_create_watch(s->chan, cond);
2650}
2651
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002652static void tcp_chr_disconnect(CharDriverState *chr)
2653{
2654 TCPCharDriver *s = chr->opaque;
2655
2656 s->connected = 0;
2657 if (s->listen_chan) {
2658 s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN,
2659 tcp_chr_accept, chr);
2660 }
2661 remove_fd_in_watch(chr);
2662 g_io_channel_unref(s->chan);
2663 s->chan = NULL;
2664 closesocket(s->fd);
2665 s->fd = -1;
2666 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
2667}
2668
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302669static gboolean tcp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002670{
2671 CharDriverState *chr = opaque;
2672 TCPCharDriver *s = chr->opaque;
Amit Shah9bd78542009-11-03 19:59:54 +05302673 uint8_t buf[READ_BUF_LEN];
aliguori6f97dba2008-10-31 18:49:55 +00002674 int len, size;
2675
Kirill Batuzov812c1052014-07-01 15:52:32 +04002676 if (cond & G_IO_HUP) {
2677 /* connection closed */
2678 tcp_chr_disconnect(chr);
2679 return TRUE;
2680 }
2681
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302682 if (!s->connected || s->max_size <= 0) {
Paolo Bonzinicdbf6e12013-04-19 17:32:08 +02002683 return TRUE;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302684 }
aliguori6f97dba2008-10-31 18:49:55 +00002685 len = sizeof(buf);
2686 if (len > s->max_size)
2687 len = s->max_size;
Mark McLoughlin9977c892009-07-22 09:11:38 +01002688 size = tcp_chr_recv(chr, (void *)buf, len);
aliguori6f97dba2008-10-31 18:49:55 +00002689 if (size == 0) {
2690 /* connection closed */
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002691 tcp_chr_disconnect(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002692 } else if (size > 0) {
2693 if (s->do_telnetopt)
2694 tcp_chr_process_IAC_bytes(chr, s, buf, &size);
2695 if (size > 0)
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05002696 qemu_chr_be_write(chr, buf, size);
aliguori6f97dba2008-10-31 18:49:55 +00002697 }
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302698
2699 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002700}
2701
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002702static int tcp_chr_sync_read(CharDriverState *chr, const uint8_t *buf, int len)
2703{
2704 TCPCharDriver *s = chr->opaque;
2705 int size;
2706
2707 if (!s->connected) {
2708 return 0;
2709 }
2710
2711 size = tcp_chr_recv(chr, (void *) buf, len);
2712 if (size == 0) {
2713 /* connection closed */
2714 tcp_chr_disconnect(chr);
2715 }
2716
2717 return size;
2718}
2719
Blue Swirl68c18d12010-08-15 09:46:24 +00002720#ifndef _WIN32
2721CharDriverState *qemu_chr_open_eventfd(int eventfd)
2722{
David Marchande9d21c42014-06-11 17:25:16 +02002723 CharDriverState *chr = qemu_chr_open_fd(eventfd, eventfd);
2724
2725 if (chr) {
2726 chr->avail_connections = 1;
2727 }
2728
2729 return chr;
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002730}
Blue Swirl68c18d12010-08-15 09:46:24 +00002731#endif
Cam Macdonell6cbf4c82010-07-27 10:54:13 -06002732
aliguori6f97dba2008-10-31 18:49:55 +00002733static void tcp_chr_connect(void *opaque)
2734{
2735 CharDriverState *chr = opaque;
2736 TCPCharDriver *s = chr->opaque;
2737
2738 s->connected = 1;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302739 if (s->chan) {
Amit Shah7ba9add2013-08-28 15:18:29 +05302740 chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
2741 tcp_chr_read, chr);
David Gibsonbbdd2ad2012-09-10 12:30:56 +10002742 }
Hans de Goedefee204f2013-03-26 11:07:54 +01002743 qemu_chr_be_generic_open(chr);
aliguori6f97dba2008-10-31 18:49:55 +00002744}
2745
Gal Hammerac1b84d2014-02-25 12:12:35 +02002746static void tcp_chr_update_read_handler(CharDriverState *chr)
2747{
2748 TCPCharDriver *s = chr->opaque;
2749
2750 remove_fd_in_watch(chr);
2751 if (s->chan) {
2752 chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
2753 tcp_chr_read, chr);
2754 }
2755}
2756
aliguori6f97dba2008-10-31 18:49:55 +00002757#define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
2758static void tcp_chr_telnet_init(int fd)
2759{
2760 char buf[3];
2761 /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
2762 IACSET(buf, 0xff, 0xfb, 0x01); /* IAC WILL ECHO */
2763 send(fd, (char *)buf, 3, 0);
2764 IACSET(buf, 0xff, 0xfb, 0x03); /* IAC WILL Suppress go ahead */
2765 send(fd, (char *)buf, 3, 0);
2766 IACSET(buf, 0xff, 0xfb, 0x00); /* IAC WILL Binary */
2767 send(fd, (char *)buf, 3, 0);
2768 IACSET(buf, 0xff, 0xfd, 0x00); /* IAC DO Binary */
2769 send(fd, (char *)buf, 3, 0);
2770}
2771
Daniel P. Berrange13661082011-06-23 13:31:42 +01002772static int tcp_chr_add_client(CharDriverState *chr, int fd)
2773{
2774 TCPCharDriver *s = chr->opaque;
2775 if (s->fd != -1)
2776 return -1;
2777
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01002778 qemu_set_nonblock(fd);
Daniel P. Berrange13661082011-06-23 13:31:42 +01002779 if (s->do_nodelay)
2780 socket_set_nodelay(fd);
2781 s->fd = fd;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302782 s->chan = io_channel_from_socket(fd);
Paolo Bonzini910b6362013-04-19 17:32:06 +02002783 if (s->listen_tag) {
2784 g_source_remove(s->listen_tag);
2785 s->listen_tag = 0;
2786 }
Daniel P. Berrange13661082011-06-23 13:31:42 +01002787 tcp_chr_connect(chr);
2788
2789 return 0;
2790}
2791
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302792static gboolean tcp_chr_accept(GIOChannel *channel, GIOCondition cond, void *opaque)
aliguori6f97dba2008-10-31 18:49:55 +00002793{
2794 CharDriverState *chr = opaque;
2795 TCPCharDriver *s = chr->opaque;
2796 struct sockaddr_in saddr;
2797#ifndef _WIN32
2798 struct sockaddr_un uaddr;
2799#endif
2800 struct sockaddr *addr;
2801 socklen_t len;
2802 int fd;
2803
2804 for(;;) {
2805#ifndef _WIN32
2806 if (s->is_unix) {
2807 len = sizeof(uaddr);
2808 addr = (struct sockaddr *)&uaddr;
2809 } else
2810#endif
2811 {
2812 len = sizeof(saddr);
2813 addr = (struct sockaddr *)&saddr;
2814 }
Kevin Wolf40ff6d72009-12-02 12:24:42 +01002815 fd = qemu_accept(s->listen_fd, addr, &len);
aliguori6f97dba2008-10-31 18:49:55 +00002816 if (fd < 0 && errno != EINTR) {
Hans de Goede79f20072013-04-25 13:53:02 +02002817 s->listen_tag = 0;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302818 return FALSE;
aliguori6f97dba2008-10-31 18:49:55 +00002819 } else if (fd >= 0) {
2820 if (s->do_telnetopt)
2821 tcp_chr_telnet_init(fd);
2822 break;
2823 }
2824 }
Daniel P. Berrange13661082011-06-23 13:31:42 +01002825 if (tcp_chr_add_client(chr, fd) < 0)
2826 close(fd);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302827
2828 return TRUE;
aliguori6f97dba2008-10-31 18:49:55 +00002829}
2830
2831static void tcp_chr_close(CharDriverState *chr)
2832{
2833 TCPCharDriver *s = chr->opaque;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002834 int i;
aliguori819f56b2009-03-28 17:58:14 +00002835 if (s->fd >= 0) {
Amit Shah26da70c2013-08-28 15:23:37 +05302836 remove_fd_in_watch(chr);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302837 if (s->chan) {
2838 g_io_channel_unref(s->chan);
2839 }
aliguori6f97dba2008-10-31 18:49:55 +00002840 closesocket(s->fd);
aliguori819f56b2009-03-28 17:58:14 +00002841 }
2842 if (s->listen_fd >= 0) {
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302843 if (s->listen_tag) {
2844 g_source_remove(s->listen_tag);
Paolo Bonzini910b6362013-04-19 17:32:06 +02002845 s->listen_tag = 0;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302846 }
2847 if (s->listen_chan) {
2848 g_io_channel_unref(s->listen_chan);
2849 }
aliguori6f97dba2008-10-31 18:49:55 +00002850 closesocket(s->listen_fd);
aliguori819f56b2009-03-28 17:58:14 +00002851 }
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002852 if (s->read_msgfds_num) {
2853 for (i = 0; i < s->read_msgfds_num; i++) {
2854 close(s->read_msgfds[i]);
2855 }
2856 g_free(s->read_msgfds);
2857 }
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002858 if (s->write_msgfds_num) {
2859 g_free(s->write_msgfds);
2860 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002861 g_free(s);
Hans de Goedea425d232011-11-19 10:22:43 +01002862 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
aliguori6f97dba2008-10-31 18:49:55 +00002863}
2864
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002865static CharDriverState *qemu_chr_open_socket_fd(int fd, bool do_nodelay,
2866 bool is_listen, bool is_telnet,
2867 bool is_waitconnect,
2868 Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00002869{
2870 CharDriverState *chr = NULL;
2871 TCPCharDriver *s = NULL;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002872 char host[NI_MAXHOST], serv[NI_MAXSERV];
2873 const char *left = "", *right = "";
2874 struct sockaddr_storage ss;
2875 socklen_t ss_len = sizeof(ss);
2876
2877 memset(&ss, 0, ss_len);
2878 if (getsockname(fd, (struct sockaddr *) &ss, &ss_len) != 0) {
Gerd Hoffmann20c39762013-06-24 08:39:48 +02002879 error_setg_errno(errp, errno, "getsockname");
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002880 return NULL;
2881 }
2882
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02002883 chr = qemu_chr_alloc();
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002884 s = g_malloc0(sizeof(TCPCharDriver));
2885
2886 s->connected = 0;
2887 s->fd = -1;
2888 s->listen_fd = -1;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002889 s->read_msgfds = 0;
2890 s->read_msgfds_num = 0;
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002891 s->write_msgfds = 0;
2892 s->write_msgfds_num = 0;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002893
2894 chr->filename = g_malloc(256);
2895 switch (ss.ss_family) {
2896#ifndef _WIN32
2897 case AF_UNIX:
2898 s->is_unix = 1;
2899 snprintf(chr->filename, 256, "unix:%s%s",
2900 ((struct sockaddr_un *)(&ss))->sun_path,
2901 is_listen ? ",server" : "");
2902 break;
2903#endif
2904 case AF_INET6:
2905 left = "[";
2906 right = "]";
2907 /* fall through */
2908 case AF_INET:
2909 s->do_nodelay = do_nodelay;
2910 getnameinfo((struct sockaddr *) &ss, ss_len, host, sizeof(host),
2911 serv, sizeof(serv), NI_NUMERICHOST | NI_NUMERICSERV);
Igor Mitsyankoe5545852013-03-10 17:58:05 +04002912 snprintf(chr->filename, 256, "%s:%s%s%s:%s%s",
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002913 is_telnet ? "telnet" : "tcp",
2914 left, host, right, serv,
2915 is_listen ? ",server" : "");
2916 break;
2917 }
2918
2919 chr->opaque = s;
2920 chr->chr_write = tcp_chr_write;
Nikolay Nikolaev7b0bfdf2014-05-27 15:03:48 +03002921 chr->chr_sync_read = tcp_chr_sync_read;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002922 chr->chr_close = tcp_chr_close;
Nikolay Nikolaevc76bf6b2014-05-27 15:04:15 +03002923 chr->get_msgfds = tcp_get_msgfds;
Nikolay Nikolaevd39aac72014-05-27 15:04:02 +03002924 chr->set_msgfds = tcp_set_msgfds;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002925 chr->chr_add_client = tcp_chr_add_client;
Amit Shahd3cc5bc2013-03-05 23:21:25 +05302926 chr->chr_add_watch = tcp_chr_add_watch;
Gal Hammerac1b84d2014-02-25 12:12:35 +02002927 chr->chr_update_read_handler = tcp_chr_update_read_handler;
Michael Rothbd5c51e2013-06-07 15:19:53 -05002928 /* be isn't opened until we get a connection */
2929 chr->explicit_be_open = true;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002930
2931 if (is_listen) {
2932 s->listen_fd = fd;
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302933 s->listen_chan = io_channel_from_socket(s->listen_fd);
2934 s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN, tcp_chr_accept, chr);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002935 if (is_telnet) {
2936 s->do_telnetopt = 1;
2937 }
2938 } else {
2939 s->connected = 1;
2940 s->fd = fd;
2941 socket_set_nodelay(fd);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302942 s->chan = io_channel_from_socket(s->fd);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002943 tcp_chr_connect(chr);
2944 }
2945
2946 if (is_listen && is_waitconnect) {
Gerd Hoffmannfdca2122013-06-24 08:39:49 +02002947 fprintf(stderr, "QEMU waiting for connection on: %s\n",
2948 chr->filename);
Anthony Liguori2ea5a7a2013-03-05 23:21:22 +05302949 tcp_chr_accept(s->listen_chan, G_IO_IN, chr);
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01002950 qemu_set_nonblock(s->listen_fd);
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002951 }
2952 return chr;
2953}
2954
2955static CharDriverState *qemu_chr_open_socket(QemuOpts *opts)
2956{
2957 CharDriverState *chr = NULL;
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002958 Error *local_err = NULL;
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02002959 int fd = -1;
aliguori6f97dba2008-10-31 18:49:55 +00002960
liguange990a392013-06-18 11:45:35 +08002961 bool is_listen = qemu_opt_get_bool(opts, "server", false);
2962 bool is_waitconnect = is_listen && qemu_opt_get_bool(opts, "wait", true);
2963 bool is_telnet = qemu_opt_get_bool(opts, "telnet", false);
2964 bool do_nodelay = !qemu_opt_get_bool(opts, "delay", true);
2965 bool is_unix = qemu_opt_get(opts, "path") != NULL;
aliguori6f97dba2008-10-31 18:49:55 +00002966
aliguorif07b6002008-11-11 20:54:09 +00002967 if (is_unix) {
2968 if (is_listen) {
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002969 fd = unix_listen_opts(opts, &local_err);
aliguorif07b6002008-11-11 20:54:09 +00002970 } else {
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002971 fd = unix_connect_opts(opts, &local_err, NULL, NULL);
aliguorif07b6002008-11-11 20:54:09 +00002972 }
2973 } else {
2974 if (is_listen) {
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002975 fd = inet_listen_opts(opts, 0, &local_err);
aliguorif07b6002008-11-11 20:54:09 +00002976 } else {
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002977 fd = inet_connect_opts(opts, &local_err, NULL, NULL);
aliguorif07b6002008-11-11 20:54:09 +00002978 }
2979 }
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01002980 if (fd < 0) {
aliguori6f97dba2008-10-31 18:49:55 +00002981 goto fail;
Markus Armbrustera89dd6c2012-02-07 15:09:10 +01002982 }
aliguori6f97dba2008-10-31 18:49:55 +00002983
2984 if (!is_waitconnect)
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01002985 qemu_set_nonblock(fd);
aliguori6f97dba2008-10-31 18:49:55 +00002986
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002987 chr = qemu_chr_open_socket_fd(fd, do_nodelay, is_listen, is_telnet,
2988 is_waitconnect, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002989 if (local_err) {
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002990 goto fail;
aliguori6f97dba2008-10-31 18:49:55 +00002991 }
Markus Armbruster1f514702012-02-07 15:09:08 +01002992 return chr;
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02002993
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002994
aliguori6f97dba2008-10-31 18:49:55 +00002995 fail:
Paolo Bonzini87d5f242012-10-02 09:16:49 +02002996 if (local_err) {
2997 qerror_report_err(local_err);
2998 error_free(local_err);
2999 }
3000 if (fd >= 0) {
aliguori6f97dba2008-10-31 18:49:55 +00003001 closesocket(fd);
Paolo Bonzini87d5f242012-10-02 09:16:49 +02003002 }
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003003 if (chr) {
3004 g_free(chr->opaque);
3005 g_free(chr);
3006 }
Markus Armbruster1f514702012-02-07 15:09:08 +01003007 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00003008}
3009
Lei Li51767e72013-01-25 00:03:19 +08003010/*********************************************************/
Markus Armbruster3949e592013-02-06 21:27:24 +01003011/* Ring buffer chardev */
Lei Li51767e72013-01-25 00:03:19 +08003012
3013typedef struct {
3014 size_t size;
3015 size_t prod;
3016 size_t cons;
3017 uint8_t *cbuf;
Markus Armbruster3949e592013-02-06 21:27:24 +01003018} RingBufCharDriver;
Lei Li51767e72013-01-25 00:03:19 +08003019
Markus Armbruster3949e592013-02-06 21:27:24 +01003020static size_t ringbuf_count(const CharDriverState *chr)
Lei Li51767e72013-01-25 00:03:19 +08003021{
Markus Armbruster3949e592013-02-06 21:27:24 +01003022 const RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003023
Markus Armbruster5c230102013-02-06 21:27:23 +01003024 return d->prod - d->cons;
Lei Li51767e72013-01-25 00:03:19 +08003025}
3026
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02003027/* Called with chr_write_lock held. */
Markus Armbruster3949e592013-02-06 21:27:24 +01003028static int ringbuf_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
Lei Li51767e72013-01-25 00:03:19 +08003029{
Markus Armbruster3949e592013-02-06 21:27:24 +01003030 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003031 int i;
3032
3033 if (!buf || (len < 0)) {
3034 return -1;
3035 }
3036
3037 for (i = 0; i < len; i++ ) {
Markus Armbruster5c230102013-02-06 21:27:23 +01003038 d->cbuf[d->prod++ & (d->size - 1)] = buf[i];
3039 if (d->prod - d->cons > d->size) {
Lei Li51767e72013-01-25 00:03:19 +08003040 d->cons = d->prod - d->size;
3041 }
3042 }
3043
3044 return 0;
3045}
3046
Markus Armbruster3949e592013-02-06 21:27:24 +01003047static int ringbuf_chr_read(CharDriverState *chr, uint8_t *buf, int len)
Lei Li51767e72013-01-25 00:03:19 +08003048{
Markus Armbruster3949e592013-02-06 21:27:24 +01003049 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003050 int i;
3051
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02003052 qemu_mutex_lock(&chr->chr_write_lock);
Markus Armbruster5c230102013-02-06 21:27:23 +01003053 for (i = 0; i < len && d->cons != d->prod; i++) {
3054 buf[i] = d->cbuf[d->cons++ & (d->size - 1)];
Lei Li51767e72013-01-25 00:03:19 +08003055 }
Paolo Bonzini9005b2a2014-06-18 08:43:58 +02003056 qemu_mutex_unlock(&chr->chr_write_lock);
Lei Li51767e72013-01-25 00:03:19 +08003057
3058 return i;
3059}
3060
Markus Armbruster3949e592013-02-06 21:27:24 +01003061static void ringbuf_chr_close(struct CharDriverState *chr)
Lei Li51767e72013-01-25 00:03:19 +08003062{
Markus Armbruster3949e592013-02-06 21:27:24 +01003063 RingBufCharDriver *d = chr->opaque;
Lei Li51767e72013-01-25 00:03:19 +08003064
3065 g_free(d->cbuf);
3066 g_free(d);
3067 chr->opaque = NULL;
3068}
3069
Markus Armbruster4f573782013-07-26 16:44:32 +02003070static CharDriverState *qemu_chr_open_ringbuf(ChardevRingbuf *opts,
3071 Error **errp)
Lei Li51767e72013-01-25 00:03:19 +08003072{
3073 CharDriverState *chr;
Markus Armbruster3949e592013-02-06 21:27:24 +01003074 RingBufCharDriver *d;
Lei Li51767e72013-01-25 00:03:19 +08003075
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02003076 chr = qemu_chr_alloc();
Lei Li51767e72013-01-25 00:03:19 +08003077 d = g_malloc(sizeof(*d));
3078
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003079 d->size = opts->has_size ? opts->size : 65536;
Lei Li51767e72013-01-25 00:03:19 +08003080
3081 /* The size must be power of 2 */
3082 if (d->size & (d->size - 1)) {
Markus Armbruster4f573782013-07-26 16:44:32 +02003083 error_setg(errp, "size of ringbuf chardev must be power of two");
Lei Li51767e72013-01-25 00:03:19 +08003084 goto fail;
3085 }
3086
3087 d->prod = 0;
3088 d->cons = 0;
3089 d->cbuf = g_malloc0(d->size);
3090
3091 chr->opaque = d;
Markus Armbruster3949e592013-02-06 21:27:24 +01003092 chr->chr_write = ringbuf_chr_write;
3093 chr->chr_close = ringbuf_chr_close;
Lei Li51767e72013-01-25 00:03:19 +08003094
3095 return chr;
3096
3097fail:
3098 g_free(d);
3099 g_free(chr);
3100 return NULL;
3101}
3102
Hani Benhabiles8e597772014-05-27 23:39:30 +01003103bool chr_is_ringbuf(const CharDriverState *chr)
Lei Li1f590cf2013-01-25 00:03:20 +08003104{
Markus Armbruster3949e592013-02-06 21:27:24 +01003105 return chr->chr_write == ringbuf_chr_write;
Lei Li1f590cf2013-01-25 00:03:20 +08003106}
3107
Markus Armbruster3949e592013-02-06 21:27:24 +01003108void qmp_ringbuf_write(const char *device, const char *data,
Markus Armbruster82e59a62013-02-06 21:27:14 +01003109 bool has_format, enum DataFormat format,
Lei Li1f590cf2013-01-25 00:03:20 +08003110 Error **errp)
3111{
3112 CharDriverState *chr;
Markus Armbrusterc4f331b2013-02-06 21:27:17 +01003113 const uint8_t *write_data;
Lei Li1f590cf2013-01-25 00:03:20 +08003114 int ret;
Peter Crosthwaite3d1bba22013-05-22 13:01:43 +10003115 gsize write_count;
Lei Li1f590cf2013-01-25 00:03:20 +08003116
3117 chr = qemu_chr_find(device);
3118 if (!chr) {
Markus Armbruster1a692782013-02-06 21:27:16 +01003119 error_setg(errp, "Device '%s' not found", device);
Lei Li1f590cf2013-01-25 00:03:20 +08003120 return;
3121 }
3122
Markus Armbruster3949e592013-02-06 21:27:24 +01003123 if (!chr_is_ringbuf(chr)) {
3124 error_setg(errp,"%s is not a ringbuf device", device);
Lei Li1f590cf2013-01-25 00:03:20 +08003125 return;
3126 }
3127
Lei Li1f590cf2013-01-25 00:03:20 +08003128 if (has_format && (format == DATA_FORMAT_BASE64)) {
3129 write_data = g_base64_decode(data, &write_count);
3130 } else {
3131 write_data = (uint8_t *)data;
Markus Armbruster82e59a62013-02-06 21:27:14 +01003132 write_count = strlen(data);
Lei Li1f590cf2013-01-25 00:03:20 +08003133 }
3134
Markus Armbruster3949e592013-02-06 21:27:24 +01003135 ret = ringbuf_chr_write(chr, write_data, write_count);
Lei Li1f590cf2013-01-25 00:03:20 +08003136
Markus Armbruster13289fb2013-02-06 21:27:18 +01003137 if (write_data != (uint8_t *)data) {
3138 g_free((void *)write_data);
3139 }
3140
Lei Li1f590cf2013-01-25 00:03:20 +08003141 if (ret < 0) {
3142 error_setg(errp, "Failed to write to device %s", device);
3143 return;
3144 }
3145}
3146
Markus Armbruster3949e592013-02-06 21:27:24 +01003147char *qmp_ringbuf_read(const char *device, int64_t size,
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003148 bool has_format, enum DataFormat format,
3149 Error **errp)
Lei Li49b6d722013-01-25 00:03:21 +08003150{
3151 CharDriverState *chr;
Markus Armbrusterc4f331b2013-02-06 21:27:17 +01003152 uint8_t *read_data;
Lei Li49b6d722013-01-25 00:03:21 +08003153 size_t count;
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003154 char *data;
Lei Li49b6d722013-01-25 00:03:21 +08003155
3156 chr = qemu_chr_find(device);
3157 if (!chr) {
Markus Armbruster1a692782013-02-06 21:27:16 +01003158 error_setg(errp, "Device '%s' not found", device);
Lei Li49b6d722013-01-25 00:03:21 +08003159 return NULL;
3160 }
3161
Markus Armbruster3949e592013-02-06 21:27:24 +01003162 if (!chr_is_ringbuf(chr)) {
3163 error_setg(errp,"%s is not a ringbuf device", device);
Lei Li49b6d722013-01-25 00:03:21 +08003164 return NULL;
3165 }
3166
3167 if (size <= 0) {
3168 error_setg(errp, "size must be greater than zero");
3169 return NULL;
3170 }
3171
Markus Armbruster3949e592013-02-06 21:27:24 +01003172 count = ringbuf_count(chr);
Lei Li49b6d722013-01-25 00:03:21 +08003173 size = size > count ? count : size;
Markus Armbruster44f3bcd2013-02-06 21:27:20 +01003174 read_data = g_malloc(size + 1);
Lei Li49b6d722013-01-25 00:03:21 +08003175
Markus Armbruster3949e592013-02-06 21:27:24 +01003176 ringbuf_chr_read(chr, read_data, size);
Lei Li49b6d722013-01-25 00:03:21 +08003177
3178 if (has_format && (format == DATA_FORMAT_BASE64)) {
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003179 data = g_base64_encode(read_data, size);
Markus Armbruster13289fb2013-02-06 21:27:18 +01003180 g_free(read_data);
Lei Li49b6d722013-01-25 00:03:21 +08003181 } else {
Markus Armbruster3949e592013-02-06 21:27:24 +01003182 /*
3183 * FIXME should read only complete, valid UTF-8 characters up
3184 * to @size bytes. Invalid sequences should be replaced by a
3185 * suitable replacement character. Except when (and only
3186 * when) ring buffer lost characters since last read, initial
3187 * continuation characters should be dropped.
3188 */
Markus Armbruster44f3bcd2013-02-06 21:27:20 +01003189 read_data[size] = 0;
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003190 data = (char *)read_data;
Lei Li49b6d722013-01-25 00:03:21 +08003191 }
3192
Markus Armbruster3ab651f2013-02-06 21:27:15 +01003193 return data;
Lei Li49b6d722013-01-25 00:03:21 +08003194}
3195
Gerd Hoffmann33521632009-12-08 13:11:49 +01003196QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003197{
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003198 char host[65], port[33], width[8], height[8];
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003199 int pos;
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003200 const char *p;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003201 QemuOpts *opts;
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003202 Error *local_err = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003203
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003204 opts = qemu_opts_create(qemu_find_opts("chardev"), label, 1, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01003205 if (local_err) {
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003206 qerror_report_err(local_err);
3207 error_free(local_err);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003208 return NULL;
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003209 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003210
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003211 if (strstart(filename, "mon:", &p)) {
3212 filename = p;
3213 qemu_opt_set(opts, "mux", "on");
Paolo Bonzini02c4bdf2013-07-03 20:29:45 +04003214 if (strcmp(filename, "stdio") == 0) {
3215 /* Monitor is muxed to stdio: do not exit on Ctrl+C by default
3216 * but pass it to the guest. Handle this only for compat syntax,
3217 * for -chardev syntax we have special option for this.
3218 * This is what -nographic did, redirecting+muxing serial+monitor
3219 * to stdio causing Ctrl+C to be passed to guest. */
3220 qemu_opt_set(opts, "signal", "off");
3221 }
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003222 }
3223
Gerd Hoffmannf0457e82009-09-10 10:58:45 +02003224 if (strcmp(filename, "null") == 0 ||
3225 strcmp(filename, "pty") == 0 ||
3226 strcmp(filename, "msmouse") == 0 ||
Gerd Hoffmanndc1c21e2009-09-10 10:58:46 +02003227 strcmp(filename, "braille") == 0 ||
Gerd Hoffmannf0457e82009-09-10 10:58:45 +02003228 strcmp(filename, "stdio") == 0) {
Gerd Hoffmann4490dad2009-09-10 10:58:43 +02003229 qemu_opt_set(opts, "backend", filename);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003230 return opts;
3231 }
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003232 if (strstart(filename, "vc", &p)) {
3233 qemu_opt_set(opts, "backend", "vc");
3234 if (*p == ':') {
Stefan Weil49aa4052013-09-30 23:04:49 +02003235 if (sscanf(p+1, "%7[0-9]x%7[0-9]", width, height) == 2) {
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003236 /* pixels */
3237 qemu_opt_set(opts, "width", width);
3238 qemu_opt_set(opts, "height", height);
Stefan Weil49aa4052013-09-30 23:04:49 +02003239 } else if (sscanf(p+1, "%7[0-9]Cx%7[0-9]C", width, height) == 2) {
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02003240 /* chars */
3241 qemu_opt_set(opts, "cols", width);
3242 qemu_opt_set(opts, "rows", height);
3243 } else {
3244 goto fail;
3245 }
3246 }
3247 return opts;
3248 }
Gerd Hoffmannd6c983c2009-09-10 10:58:47 +02003249 if (strcmp(filename, "con:") == 0) {
3250 qemu_opt_set(opts, "backend", "console");
3251 return opts;
3252 }
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003253 if (strstart(filename, "COM", NULL)) {
3254 qemu_opt_set(opts, "backend", "serial");
3255 qemu_opt_set(opts, "path", filename);
3256 return opts;
3257 }
Gerd Hoffmann7d315442009-09-10 10:58:36 +02003258 if (strstart(filename, "file:", &p)) {
3259 qemu_opt_set(opts, "backend", "file");
3260 qemu_opt_set(opts, "path", p);
3261 return opts;
3262 }
3263 if (strstart(filename, "pipe:", &p)) {
3264 qemu_opt_set(opts, "backend", "pipe");
3265 qemu_opt_set(opts, "path", p);
3266 return opts;
3267 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003268 if (strstart(filename, "tcp:", &p) ||
3269 strstart(filename, "telnet:", &p)) {
3270 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3271 host[0] = 0;
3272 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1)
3273 goto fail;
3274 }
3275 qemu_opt_set(opts, "backend", "socket");
3276 qemu_opt_set(opts, "host", host);
3277 qemu_opt_set(opts, "port", port);
3278 if (p[pos] == ',') {
3279 if (qemu_opts_do_parse(opts, p+pos+1, NULL) != 0)
3280 goto fail;
3281 }
3282 if (strstart(filename, "telnet:", &p))
3283 qemu_opt_set(opts, "telnet", "on");
3284 return opts;
3285 }
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003286 if (strstart(filename, "udp:", &p)) {
3287 qemu_opt_set(opts, "backend", "udp");
3288 if (sscanf(p, "%64[^:]:%32[^@,]%n", host, port, &pos) < 2) {
3289 host[0] = 0;
Jan Kiszka39324ca2010-03-07 11:28:48 +01003290 if (sscanf(p, ":%32[^@,]%n", port, &pos) < 1) {
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003291 goto fail;
3292 }
3293 }
3294 qemu_opt_set(opts, "host", host);
3295 qemu_opt_set(opts, "port", port);
3296 if (p[pos] == '@') {
3297 p += pos + 1;
3298 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3299 host[0] = 0;
3300 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1) {
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003301 goto fail;
3302 }
3303 }
3304 qemu_opt_set(opts, "localaddr", host);
3305 qemu_opt_set(opts, "localport", port);
3306 }
3307 return opts;
3308 }
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003309 if (strstart(filename, "unix:", &p)) {
3310 qemu_opt_set(opts, "backend", "socket");
3311 if (qemu_opts_do_parse(opts, p, "path") != 0)
3312 goto fail;
3313 return opts;
3314 }
Gerd Hoffmann48b76492009-09-10 10:58:48 +02003315 if (strstart(filename, "/dev/parport", NULL) ||
3316 strstart(filename, "/dev/ppi", NULL)) {
3317 qemu_opt_set(opts, "backend", "parport");
3318 qemu_opt_set(opts, "path", filename);
3319 return opts;
3320 }
3321 if (strstart(filename, "/dev/", NULL)) {
3322 qemu_opt_set(opts, "backend", "tty");
3323 qemu_opt_set(opts, "path", filename);
3324 return opts;
3325 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003326
Gerd Hoffmannaeb2c472009-09-10 10:58:42 +02003327fail:
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003328 qemu_opts_del(opts);
3329 return NULL;
3330}
3331
Gerd Hoffmann846e2e42013-02-21 12:07:14 +01003332static void qemu_chr_parse_file_out(QemuOpts *opts, ChardevBackend *backend,
3333 Error **errp)
3334{
3335 const char *path = qemu_opt_get(opts, "path");
3336
3337 if (path == NULL) {
3338 error_setg(errp, "chardev: file: no filename given");
3339 return;
3340 }
3341 backend->file = g_new0(ChardevFile, 1);
3342 backend->file->out = g_strdup(path);
3343}
3344
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003345static void qemu_chr_parse_stdio(QemuOpts *opts, ChardevBackend *backend,
3346 Error **errp)
3347{
3348 backend->stdio = g_new0(ChardevStdio, 1);
3349 backend->stdio->has_signal = true;
Paolo Bonzini02c4bdf2013-07-03 20:29:45 +04003350 backend->stdio->signal = qemu_opt_get_bool(opts, "signal", true);
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003351}
3352
Gerd Hoffmann0f1cb512013-02-22 15:48:05 +01003353static void qemu_chr_parse_serial(QemuOpts *opts, ChardevBackend *backend,
3354 Error **errp)
3355{
3356 const char *device = qemu_opt_get(opts, "path");
3357
3358 if (device == NULL) {
3359 error_setg(errp, "chardev: serial/tty: no device path given");
3360 return;
3361 }
3362 backend->serial = g_new0(ChardevHostdev, 1);
3363 backend->serial->device = g_strdup(device);
3364}
3365
Gerd Hoffmanndc375092013-02-22 16:17:01 +01003366static void qemu_chr_parse_parallel(QemuOpts *opts, ChardevBackend *backend,
3367 Error **errp)
3368{
3369 const char *device = qemu_opt_get(opts, "path");
3370
3371 if (device == NULL) {
3372 error_setg(errp, "chardev: parallel: no device path given");
3373 return;
3374 }
3375 backend->parallel = g_new0(ChardevHostdev, 1);
3376 backend->parallel->device = g_strdup(device);
3377}
3378
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01003379static void qemu_chr_parse_pipe(QemuOpts *opts, ChardevBackend *backend,
3380 Error **errp)
3381{
3382 const char *device = qemu_opt_get(opts, "path");
3383
3384 if (device == NULL) {
3385 error_setg(errp, "chardev: pipe: no device path given");
3386 return;
3387 }
3388 backend->pipe = g_new0(ChardevHostdev, 1);
3389 backend->pipe->device = g_strdup(device);
3390}
3391
Markus Armbruster4f573782013-07-26 16:44:32 +02003392static void qemu_chr_parse_ringbuf(QemuOpts *opts, ChardevBackend *backend,
3393 Error **errp)
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003394{
3395 int val;
3396
Markus Armbruster3a1da422013-07-26 16:44:34 +02003397 backend->ringbuf = g_new0(ChardevRingbuf, 1);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003398
Markus Armbruster0f953052013-06-27 16:22:07 +02003399 val = qemu_opt_get_size(opts, "size", 0);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003400 if (val != 0) {
Markus Armbruster3a1da422013-07-26 16:44:34 +02003401 backend->ringbuf->has_size = true;
3402 backend->ringbuf->size = val;
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003403 }
3404}
3405
Gerd Hoffmannbb6fb7c2013-06-24 08:39:54 +02003406static void qemu_chr_parse_mux(QemuOpts *opts, ChardevBackend *backend,
3407 Error **errp)
3408{
3409 const char *chardev = qemu_opt_get(opts, "chardev");
3410
3411 if (chardev == NULL) {
3412 error_setg(errp, "chardev: mux: no chardev given");
3413 return;
3414 }
3415 backend->mux = g_new0(ChardevMux, 1);
3416 backend->mux->chardev = g_strdup(chardev);
3417}
3418
Anthony Liguorid654f342013-03-05 23:21:28 +05303419typedef struct CharDriver {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003420 const char *name;
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003421 /* old, pre qapi */
Markus Armbruster1f514702012-02-07 15:09:08 +01003422 CharDriverState *(*open)(QemuOpts *opts);
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003423 /* new, qapi-based */
Gerd Hoffmann99aec012013-06-24 08:39:52 +02003424 ChardevBackendKind kind;
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003425 void (*parse)(QemuOpts *opts, ChardevBackend *backend, Error **errp);
Anthony Liguorid654f342013-03-05 23:21:28 +05303426} CharDriver;
3427
3428static GSList *backends;
3429
3430void register_char_driver(const char *name, CharDriverState *(*open)(QemuOpts *))
3431{
3432 CharDriver *s;
3433
3434 s = g_malloc0(sizeof(*s));
3435 s->name = g_strdup(name);
3436 s->open = open;
3437
3438 backends = g_slist_append(backends, s);
3439}
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003440
Gerd Hoffmann99aec012013-06-24 08:39:52 +02003441void register_char_driver_qapi(const char *name, ChardevBackendKind kind,
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003442 void (*parse)(QemuOpts *opts, ChardevBackend *backend, Error **errp))
3443{
3444 CharDriver *s;
3445
3446 s = g_malloc0(sizeof(*s));
3447 s->name = g_strdup(name);
3448 s->kind = kind;
3449 s->parse = parse;
3450
3451 backends = g_slist_append(backends, s);
3452}
3453
Anthony Liguorif69554b2011-08-15 11:17:37 -05003454CharDriverState *qemu_chr_new_from_opts(QemuOpts *opts,
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003455 void (*init)(struct CharDriverState *s),
3456 Error **errp)
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003457{
Markus Armbruster0aff6372014-05-19 18:57:35 +02003458 Error *local_err = NULL;
Anthony Liguorid654f342013-03-05 23:21:28 +05303459 CharDriver *cd;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003460 CharDriverState *chr;
Anthony Liguorid654f342013-03-05 23:21:28 +05303461 GSList *i;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003462
3463 if (qemu_opts_id(opts) == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003464 error_setg(errp, "chardev: no id specified");
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003465 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003466 }
3467
Stefan Hajnoczi1bbd1852011-01-22 13:07:26 +00003468 if (qemu_opt_get(opts, "backend") == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003469 error_setg(errp, "chardev: \"%s\" missing backend",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003470 qemu_opts_id(opts));
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003471 goto err;
Stefan Hajnoczi1bbd1852011-01-22 13:07:26 +00003472 }
Anthony Liguorid654f342013-03-05 23:21:28 +05303473 for (i = backends; i; i = i->next) {
3474 cd = i->data;
3475
3476 if (strcmp(cd->name, qemu_opt_get(opts, "backend")) == 0) {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003477 break;
Anthony Liguorid654f342013-03-05 23:21:28 +05303478 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003479 }
Anthony Liguorid654f342013-03-05 23:21:28 +05303480 if (i == NULL) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003481 error_setg(errp, "chardev: backend \"%s\" not found",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003482 qemu_opt_get(opts, "backend"));
Gerd Hoffmanne6682872013-06-24 08:39:51 +02003483 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003484 }
3485
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003486 if (!cd->open) {
3487 /* using new, qapi init */
3488 ChardevBackend *backend = g_new0(ChardevBackend, 1);
3489 ChardevReturn *ret = NULL;
3490 const char *id = qemu_opts_id(opts);
Gerd Hoffmanndc2c4ec2013-06-24 08:39:53 +02003491 char *bid = NULL;
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003492
3493 if (qemu_opt_get_bool(opts, "mux", 0)) {
3494 bid = g_strdup_printf("%s-base", id);
3495 }
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003496
3497 chr = NULL;
3498 backend->kind = cd->kind;
3499 if (cd->parse) {
Markus Armbruster0aff6372014-05-19 18:57:35 +02003500 cd->parse(opts, backend, &local_err);
3501 if (local_err) {
3502 error_propagate(errp, local_err);
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003503 goto qapi_out;
3504 }
3505 }
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003506 ret = qmp_chardev_add(bid ? bid : id, backend, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02003507 if (!ret) {
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003508 goto qapi_out;
3509 }
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003510
3511 if (bid) {
3512 qapi_free_ChardevBackend(backend);
3513 qapi_free_ChardevReturn(ret);
3514 backend = g_new0(ChardevBackend, 1);
3515 backend->mux = g_new0(ChardevMux, 1);
3516 backend->kind = CHARDEV_BACKEND_KIND_MUX;
3517 backend->mux->chardev = g_strdup(bid);
3518 ret = qmp_chardev_add(id, backend, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02003519 if (!ret) {
Gerd Hoffmannee6ee832013-09-13 12:48:47 +02003520 chr = qemu_chr_find(bid);
3521 qemu_chr_delete(chr);
3522 chr = NULL;
3523 goto qapi_out;
3524 }
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003525 }
3526
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003527 chr = qemu_chr_find(id);
Markus Armbruster2ea3e2c2013-06-27 15:25:12 +02003528 chr->opts = opts;
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003529
3530 qapi_out:
3531 qapi_free_ChardevBackend(backend);
3532 qapi_free_ChardevReturn(ret);
Gerd Hoffmanndc2c4ec2013-06-24 08:39:53 +02003533 g_free(bid);
Gerd Hoffmann2c5f4882013-02-21 11:39:12 +01003534 return chr;
3535 }
3536
Anthony Liguorid654f342013-03-05 23:21:28 +05303537 chr = cd->open(opts);
Markus Armbruster1f514702012-02-07 15:09:08 +01003538 if (!chr) {
Markus Armbruster312fd5f2013-02-08 21:22:16 +01003539 error_setg(errp, "chardev: opening backend \"%s\" failed",
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003540 qemu_opt_get(opts, "backend"));
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003541 goto err;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003542 }
3543
3544 if (!chr->filename)
Anthony Liguori7267c092011-08-20 22:09:37 -05003545 chr->filename = g_strdup(qemu_opt_get(opts, "backend"));
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003546 chr->init = init;
Michael Rothbd5c51e2013-06-07 15:19:53 -05003547 /* if we didn't create the chardev via qmp_chardev_add, we
3548 * need to send the OPENED event here
3549 */
3550 if (!chr->explicit_be_open) {
3551 qemu_chr_be_event(chr, CHR_EVENT_OPENED);
3552 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00003553 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003554
3555 if (qemu_opt_get_bool(opts, "mux", 0)) {
3556 CharDriverState *base = chr;
3557 int len = strlen(qemu_opts_id(opts)) + 6;
Anthony Liguori7267c092011-08-20 22:09:37 -05003558 base->label = g_malloc(len);
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003559 snprintf(base->label, len, "%s-base", qemu_opts_id(opts));
3560 chr = qemu_chr_open_mux(base);
3561 chr->filename = base->filename;
Kusanagi Kouichid5b27162011-04-26 19:19:26 +09003562 chr->avail_connections = MAX_MUX;
Blue Swirl72cf2d42009-09-12 07:36:22 +00003563 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
Kusanagi Kouichid5b27162011-04-26 19:19:26 +09003564 } else {
3565 chr->avail_connections = 1;
Gerd Hoffmann7591c5c2009-09-10 10:58:50 +02003566 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003567 chr->label = g_strdup(qemu_opts_id(opts));
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003568 chr->opts = opts;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003569 return chr;
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003570
3571err:
3572 qemu_opts_del(opts);
3573 return NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003574}
3575
Anthony Liguori27143a42011-08-15 11:17:36 -05003576CharDriverState *qemu_chr_new(const char *label, const char *filename, void (*init)(struct CharDriverState *s))
aliguori6f97dba2008-10-31 18:49:55 +00003577{
3578 const char *p;
3579 CharDriverState *chr;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003580 QemuOpts *opts;
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003581 Error *err = NULL;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003582
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003583 if (strstart(filename, "chardev:", &p)) {
3584 return qemu_chr_find(p);
3585 }
3586
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003587 opts = qemu_chr_parse_compat(label, filename);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003588 if (!opts)
3589 return NULL;
aliguori6f97dba2008-10-31 18:49:55 +00003590
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003591 chr = qemu_chr_new_from_opts(opts, init, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01003592 if (err) {
Seiji Aguchi4a44d852013-08-05 15:40:44 -04003593 error_report("%s", error_get_pretty(err));
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02003594 error_free(err);
3595 }
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003596 if (chr && qemu_opt_get_bool(opts, "mux", 0)) {
Hans de Goede456d6062013-03-27 20:29:40 +01003597 qemu_chr_fe_claim_no_fail(chr);
Gerd Hoffmann7e1b35b2009-09-10 10:58:51 +02003598 monitor_init(chr, MONITOR_USE_READLINE);
aliguori6f97dba2008-10-31 18:49:55 +00003599 }
3600 return chr;
3601}
3602
Anthony Liguori15f31512011-08-15 11:17:35 -05003603void qemu_chr_fe_set_echo(struct CharDriverState *chr, bool echo)
Paolo Bonzinic48855e2010-12-23 13:42:48 +01003604{
3605 if (chr->chr_set_echo) {
3606 chr->chr_set_echo(chr, echo);
3607 }
3608}
3609
Hans de Goede8e25daa2013-03-26 11:07:57 +01003610void qemu_chr_fe_set_open(struct CharDriverState *chr, int fe_open)
Hans de Goede7c32c4f2011-03-24 11:12:02 +01003611{
Hans de Goede8e25daa2013-03-26 11:07:57 +01003612 if (chr->fe_open == fe_open) {
Hans de Goedec0c4bd22013-03-26 11:07:55 +01003613 return;
3614 }
Hans de Goede8e25daa2013-03-26 11:07:57 +01003615 chr->fe_open = fe_open;
Hans de Goede574b7112013-03-26 11:07:58 +01003616 if (chr->chr_set_fe_open) {
3617 chr->chr_set_fe_open(chr, fe_open);
Hans de Goede7c32c4f2011-03-24 11:12:02 +01003618 }
3619}
3620
Marc-André Lureaud61b0c92013-12-01 22:23:39 +01003621void qemu_chr_fe_event(struct CharDriverState *chr, int event)
3622{
3623 if (chr->chr_fe_event) {
3624 chr->chr_fe_event(chr, event);
3625 }
3626}
3627
Kevin Wolf2c8a5942013-03-19 13:38:09 +01003628int qemu_chr_fe_add_watch(CharDriverState *s, GIOCondition cond,
3629 GIOFunc func, void *user_data)
Anthony Liguori23673ca2013-03-05 23:21:23 +05303630{
3631 GSource *src;
3632 guint tag;
3633
3634 if (s->chr_add_watch == NULL) {
3635 return -ENOSYS;
3636 }
3637
3638 src = s->chr_add_watch(s, cond);
3639 g_source_set_callback(src, (GSourceFunc)func, user_data, NULL);
3640 tag = g_source_attach(src, NULL);
3641 g_source_unref(src);
3642
3643 return tag;
3644}
3645
Hans de Goede44c473d2013-03-27 20:29:39 +01003646int qemu_chr_fe_claim(CharDriverState *s)
3647{
3648 if (s->avail_connections < 1) {
3649 return -1;
3650 }
3651 s->avail_connections--;
3652 return 0;
3653}
3654
3655void qemu_chr_fe_claim_no_fail(CharDriverState *s)
3656{
3657 if (qemu_chr_fe_claim(s) != 0) {
3658 fprintf(stderr, "%s: error chardev \"%s\" already used\n",
3659 __func__, s->label);
3660 exit(1);
3661 }
3662}
3663
3664void qemu_chr_fe_release(CharDriverState *s)
3665{
3666 s->avail_connections++;
3667}
3668
Anthony Liguori70f24fb2011-08-15 11:17:38 -05003669void qemu_chr_delete(CharDriverState *chr)
aliguori6f97dba2008-10-31 18:49:55 +00003670{
Blue Swirl72cf2d42009-09-12 07:36:22 +00003671 QTAILQ_REMOVE(&chardevs, chr, next);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003672 if (chr->chr_close) {
aliguori6f97dba2008-10-31 18:49:55 +00003673 chr->chr_close(chr);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003674 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003675 g_free(chr->filename);
3676 g_free(chr->label);
Gerd Hoffmann2274ae92012-10-15 09:30:59 +02003677 if (chr->opts) {
3678 qemu_opts_del(chr->opts);
3679 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003680 g_free(chr);
aliguori6f97dba2008-10-31 18:49:55 +00003681}
3682
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003683ChardevInfoList *qmp_query_chardev(Error **errp)
aliguori6f97dba2008-10-31 18:49:55 +00003684{
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003685 ChardevInfoList *chr_list = NULL;
aliguori6f97dba2008-10-31 18:49:55 +00003686 CharDriverState *chr;
3687
Blue Swirl72cf2d42009-09-12 07:36:22 +00003688 QTAILQ_FOREACH(chr, &chardevs, next) {
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003689 ChardevInfoList *info = g_malloc0(sizeof(*info));
3690 info->value = g_malloc0(sizeof(*info->value));
3691 info->value->label = g_strdup(chr->label);
3692 info->value->filename = g_strdup(chr->filename);
Laszlo Ersek32a97ea2014-06-26 17:50:03 +02003693 info->value->frontend_open = chr->fe_open;
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003694
3695 info->next = chr_list;
3696 chr_list = info;
aliguori6f97dba2008-10-31 18:49:55 +00003697 }
Luiz Capitulino588b3832009-12-10 17:16:08 -02003698
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03003699 return chr_list;
aliguori6f97dba2008-10-31 18:49:55 +00003700}
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003701
Martin Kletzander77d1c3c2014-02-01 12:52:42 +01003702ChardevBackendInfoList *qmp_query_chardev_backends(Error **errp)
3703{
3704 ChardevBackendInfoList *backend_list = NULL;
3705 CharDriver *c = NULL;
3706 GSList *i = NULL;
3707
3708 for (i = backends; i; i = i->next) {
3709 ChardevBackendInfoList *info = g_malloc0(sizeof(*info));
3710 c = i->data;
3711 info->value = g_malloc0(sizeof(*info->value));
3712 info->value->name = g_strdup(c->name);
3713
3714 info->next = backend_list;
3715 backend_list = info;
3716 }
3717
3718 return backend_list;
3719}
3720
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003721CharDriverState *qemu_chr_find(const char *name)
3722{
3723 CharDriverState *chr;
3724
Blue Swirl72cf2d42009-09-12 07:36:22 +00003725 QTAILQ_FOREACH(chr, &chardevs, next) {
Gerd Hoffmannc845f402009-09-10 10:58:52 +02003726 if (strcmp(chr->label, name) != 0)
3727 continue;
3728 return chr;
3729 }
3730 return NULL;
3731}
Anthony Liguori0beb4942011-12-22 15:29:25 -06003732
3733/* Get a character (serial) device interface. */
3734CharDriverState *qemu_char_get_next_serial(void)
3735{
3736 static int next_serial;
Hans de Goede456d6062013-03-27 20:29:40 +01003737 CharDriverState *chr;
Anthony Liguori0beb4942011-12-22 15:29:25 -06003738
3739 /* FIXME: This function needs to go away: use chardev properties! */
Hans de Goede456d6062013-03-27 20:29:40 +01003740
3741 while (next_serial < MAX_SERIAL_PORTS && serial_hds[next_serial]) {
3742 chr = serial_hds[next_serial++];
3743 qemu_chr_fe_claim_no_fail(chr);
3744 return chr;
3745 }
3746 return NULL;
Anthony Liguori0beb4942011-12-22 15:29:25 -06003747}
3748
Paolo Bonzini4d454572012-11-26 16:03:42 +01003749QemuOptsList qemu_chardev_opts = {
3750 .name = "chardev",
3751 .implied_opt_name = "backend",
3752 .head = QTAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
3753 .desc = {
3754 {
3755 .name = "backend",
3756 .type = QEMU_OPT_STRING,
3757 },{
3758 .name = "path",
3759 .type = QEMU_OPT_STRING,
3760 },{
3761 .name = "host",
3762 .type = QEMU_OPT_STRING,
3763 },{
3764 .name = "port",
3765 .type = QEMU_OPT_STRING,
3766 },{
3767 .name = "localaddr",
3768 .type = QEMU_OPT_STRING,
3769 },{
3770 .name = "localport",
3771 .type = QEMU_OPT_STRING,
3772 },{
3773 .name = "to",
3774 .type = QEMU_OPT_NUMBER,
3775 },{
3776 .name = "ipv4",
3777 .type = QEMU_OPT_BOOL,
3778 },{
3779 .name = "ipv6",
3780 .type = QEMU_OPT_BOOL,
3781 },{
3782 .name = "wait",
3783 .type = QEMU_OPT_BOOL,
3784 },{
3785 .name = "server",
3786 .type = QEMU_OPT_BOOL,
3787 },{
3788 .name = "delay",
3789 .type = QEMU_OPT_BOOL,
3790 },{
3791 .name = "telnet",
3792 .type = QEMU_OPT_BOOL,
3793 },{
3794 .name = "width",
3795 .type = QEMU_OPT_NUMBER,
3796 },{
3797 .name = "height",
3798 .type = QEMU_OPT_NUMBER,
3799 },{
3800 .name = "cols",
3801 .type = QEMU_OPT_NUMBER,
3802 },{
3803 .name = "rows",
3804 .type = QEMU_OPT_NUMBER,
3805 },{
3806 .name = "mux",
3807 .type = QEMU_OPT_BOOL,
3808 },{
3809 .name = "signal",
3810 .type = QEMU_OPT_BOOL,
3811 },{
3812 .name = "name",
3813 .type = QEMU_OPT_STRING,
3814 },{
3815 .name = "debug",
3816 .type = QEMU_OPT_NUMBER,
Lei Li51767e72013-01-25 00:03:19 +08003817 },{
Markus Armbruster3949e592013-02-06 21:27:24 +01003818 .name = "size",
Markus Armbrusterde1cc362013-02-06 21:27:25 +01003819 .type = QEMU_OPT_SIZE,
Gerd Hoffmannbb6fb7c2013-06-24 08:39:54 +02003820 },{
3821 .name = "chardev",
3822 .type = QEMU_OPT_STRING,
Paolo Bonzini4d454572012-11-26 16:03:42 +01003823 },
3824 { /* end of list */ }
3825 },
3826};
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003827
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003828#ifdef _WIN32
3829
3830static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
3831{
3832 HANDLE out;
3833
Gerd Hoffmanne859eda2013-06-24 08:39:47 +02003834 if (file->has_in) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003835 error_setg(errp, "input file not supported");
3836 return NULL;
3837 }
3838
3839 out = CreateFile(file->out, GENERIC_WRITE, FILE_SHARE_READ, NULL,
3840 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
3841 if (out == INVALID_HANDLE_VALUE) {
3842 error_setg(errp, "open %s failed", file->out);
3843 return NULL;
3844 }
3845 return qemu_chr_open_win_file(out);
3846}
3847
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003848static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
3849 Error **errp)
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003850{
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003851 return qemu_chr_open_win_path(serial->device);
3852}
3853
3854static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
3855 Error **errp)
3856{
3857 error_setg(errp, "character device backend type 'parallel' not supported");
3858 return NULL;
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003859}
3860
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003861#else /* WIN32 */
3862
3863static int qmp_chardev_open_file_source(char *src, int flags,
3864 Error **errp)
3865{
3866 int fd = -1;
3867
3868 TFR(fd = qemu_open(src, flags, 0666));
3869 if (fd == -1) {
Gerd Hoffmann20c39762013-06-24 08:39:48 +02003870 error_setg_file_open(errp, errno, src);
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003871 }
3872 return fd;
3873}
3874
3875static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
3876{
Markus Armbruster5f758362014-05-19 18:57:34 +02003877 int flags, in = -1, out;
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003878
3879 flags = O_WRONLY | O_TRUNC | O_CREAT | O_BINARY;
3880 out = qmp_chardev_open_file_source(file->out, flags, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02003881 if (out < 0) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003882 return NULL;
3883 }
3884
Gerd Hoffmanne859eda2013-06-24 08:39:47 +02003885 if (file->has_in) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003886 flags = O_RDONLY;
3887 in = qmp_chardev_open_file_source(file->in, flags, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02003888 if (in < 0) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003889 qemu_close(out);
3890 return NULL;
3891 }
3892 }
3893
3894 return qemu_chr_open_fd(in, out);
3895}
3896
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003897static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
3898 Error **errp)
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003899{
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003900#ifdef HAVE_CHARDEV_TTY
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003901 int fd;
3902
3903 fd = qmp_chardev_open_file_source(serial->device, O_RDWR, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02003904 if (fd < 0) {
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003905 return NULL;
3906 }
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +01003907 qemu_set_nonblock(fd);
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003908 return qemu_chr_open_tty_fd(fd);
3909#else
3910 error_setg(errp, "character device backend type 'serial' not supported");
3911 return NULL;
3912#endif
3913}
3914
3915static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
3916 Error **errp)
3917{
3918#ifdef HAVE_CHARDEV_PARPORT
3919 int fd;
3920
3921 fd = qmp_chardev_open_file_source(parallel->device, O_RDWR, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02003922 if (fd < 0) {
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003923 return NULL;
3924 }
3925 return qemu_chr_open_pp_fd(fd);
3926#else
3927 error_setg(errp, "character device backend type 'parallel' not supported");
3928 return NULL;
3929#endif
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003930}
3931
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003932#endif /* WIN32 */
3933
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003934static CharDriverState *qmp_chardev_open_socket(ChardevSocket *sock,
3935 Error **errp)
3936{
3937 SocketAddress *addr = sock->addr;
3938 bool do_nodelay = sock->has_nodelay ? sock->nodelay : false;
3939 bool is_listen = sock->has_server ? sock->server : true;
3940 bool is_telnet = sock->has_telnet ? sock->telnet : false;
3941 bool is_waitconnect = sock->has_wait ? sock->wait : false;
3942 int fd;
3943
3944 if (is_listen) {
3945 fd = socket_listen(addr, errp);
3946 } else {
3947 fd = socket_connect(addr, errp, NULL, NULL);
3948 }
Markus Armbruster5f758362014-05-19 18:57:34 +02003949 if (fd < 0) {
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003950 return NULL;
3951 }
3952 return qemu_chr_open_socket_fd(fd, do_nodelay, is_listen,
3953 is_telnet, is_waitconnect, errp);
3954}
3955
Lei Li08d0ab32013-05-20 14:51:03 +08003956static CharDriverState *qmp_chardev_open_udp(ChardevUdp *udp,
3957 Error **errp)
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01003958{
3959 int fd;
3960
Lei Li08d0ab32013-05-20 14:51:03 +08003961 fd = socket_dgram(udp->remote, udp->local, errp);
Markus Armbruster5f758362014-05-19 18:57:34 +02003962 if (fd < 0) {
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01003963 return NULL;
3964 }
3965 return qemu_chr_open_udp_fd(fd);
3966}
3967
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003968ChardevReturn *qmp_chardev_add(const char *id, ChardevBackend *backend,
3969 Error **errp)
3970{
3971 ChardevReturn *ret = g_new0(ChardevReturn, 1);
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003972 CharDriverState *base, *chr = NULL;
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003973
3974 chr = qemu_chr_find(id);
3975 if (chr) {
3976 error_setg(errp, "Chardev '%s' already exists", id);
3977 g_free(ret);
3978 return NULL;
3979 }
3980
3981 switch (backend->kind) {
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003982 case CHARDEV_BACKEND_KIND_FILE:
3983 chr = qmp_chardev_open_file(backend->file, errp);
3984 break;
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003985 case CHARDEV_BACKEND_KIND_SERIAL:
3986 chr = qmp_chardev_open_serial(backend->serial, errp);
3987 break;
3988 case CHARDEV_BACKEND_KIND_PARALLEL:
3989 chr = qmp_chardev_open_parallel(backend->parallel, errp);
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01003990 break;
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01003991 case CHARDEV_BACKEND_KIND_PIPE:
3992 chr = qemu_chr_open_pipe(backend->pipe);
3993 break;
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003994 case CHARDEV_BACKEND_KIND_SOCKET:
3995 chr = qmp_chardev_open_socket(backend->socket, errp);
3996 break;
Lei Li08d0ab32013-05-20 14:51:03 +08003997 case CHARDEV_BACKEND_KIND_UDP:
3998 chr = qmp_chardev_open_udp(backend->udp, errp);
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01003999 break;
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01004000#ifdef HAVE_CHARDEV_TTY
4001 case CHARDEV_BACKEND_KIND_PTY:
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01004002 chr = qemu_chr_open_pty(id, ret);
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01004003 break;
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01004004#endif
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004005 case CHARDEV_BACKEND_KIND_NULL:
Gerd Hoffmann80dca9e2013-02-21 11:41:26 +01004006 chr = qemu_chr_open_null();
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004007 break;
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01004008 case CHARDEV_BACKEND_KIND_MUX:
4009 base = qemu_chr_find(backend->mux->chardev);
4010 if (base == NULL) {
4011 error_setg(errp, "mux: base chardev %s not found",
4012 backend->mux->chardev);
4013 break;
4014 }
4015 chr = qemu_chr_open_mux(base);
4016 break;
Gerd Hoffmannf5a51ca2013-02-21 11:58:44 +01004017 case CHARDEV_BACKEND_KIND_MSMOUSE:
4018 chr = qemu_chr_open_msmouse();
4019 break;
Gerd Hoffmann2d572862013-02-21 12:56:10 +01004020#ifdef CONFIG_BRLAPI
4021 case CHARDEV_BACKEND_KIND_BRAILLE:
4022 chr = chr_baum_init();
4023 break;
4024#endif
Gerd Hoffmann7c358032013-02-21 12:34:58 +01004025 case CHARDEV_BACKEND_KIND_STDIO:
4026 chr = qemu_chr_open_stdio(backend->stdio);
4027 break;
Gerd Hoffmannd9ac3742013-02-25 11:48:06 +01004028#ifdef _WIN32
4029 case CHARDEV_BACKEND_KIND_CONSOLE:
4030 chr = qemu_chr_open_win_con();
4031 break;
4032#endif
Gerd Hoffmanncd153e22013-02-25 12:39:06 +01004033#ifdef CONFIG_SPICE
4034 case CHARDEV_BACKEND_KIND_SPICEVMC:
4035 chr = qemu_chr_open_spice_vmc(backend->spicevmc->type);
4036 break;
4037 case CHARDEV_BACKEND_KIND_SPICEPORT:
4038 chr = qemu_chr_open_spice_port(backend->spiceport->fqdn);
4039 break;
4040#endif
Gerd Hoffmann702ec692013-02-25 15:52:32 +01004041 case CHARDEV_BACKEND_KIND_VC:
4042 chr = vc_init(backend->vc);
4043 break;
Markus Armbruster3a1da422013-07-26 16:44:34 +02004044 case CHARDEV_BACKEND_KIND_RINGBUF:
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01004045 case CHARDEV_BACKEND_KIND_MEMORY:
Markus Armbruster3a1da422013-07-26 16:44:34 +02004046 chr = qemu_chr_open_ringbuf(backend->ringbuf, errp);
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01004047 break;
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004048 default:
4049 error_setg(errp, "unknown chardev backend (%d)", backend->kind);
4050 break;
4051 }
4052
Markus Armbruster3894c782014-05-19 18:57:36 +02004053 /*
4054 * Character backend open hasn't been fully converted to the Error
4055 * API. Some opens fail without setting an error. Set a generic
4056 * error then.
4057 * TODO full conversion to Error API
4058 */
4059 if (chr == NULL && errp && !*errp) {
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004060 error_setg(errp, "Failed to create chardev");
4061 }
4062 if (chr) {
4063 chr->label = g_strdup(id);
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01004064 chr->avail_connections =
4065 (backend->kind == CHARDEV_BACKEND_KIND_MUX) ? MAX_MUX : 1;
Gerd Hoffmann60d95382013-05-27 12:41:24 +02004066 if (!chr->filename) {
4067 chr->filename = g_strdup(ChardevBackendKind_lookup[backend->kind]);
4068 }
Michael Rothbd5c51e2013-06-07 15:19:53 -05004069 if (!chr->explicit_be_open) {
4070 qemu_chr_be_event(chr, CHR_EVENT_OPENED);
4071 }
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01004072 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
4073 return ret;
4074 } else {
4075 g_free(ret);
4076 return NULL;
4077 }
4078}
4079
4080void qmp_chardev_remove(const char *id, Error **errp)
4081{
4082 CharDriverState *chr;
4083
4084 chr = qemu_chr_find(id);
4085 if (NULL == chr) {
4086 error_setg(errp, "Chardev '%s' not found", id);
4087 return;
4088 }
4089 if (chr->chr_can_read || chr->chr_read ||
4090 chr->chr_event || chr->handler_opaque) {
4091 error_setg(errp, "Chardev '%s' is busy", id);
4092 return;
4093 }
4094 qemu_chr_delete(chr);
4095}
Anthony Liguorid654f342013-03-05 23:21:28 +05304096
4097static void register_types(void)
4098{
Gerd Hoffmann80dca9e2013-02-21 11:41:26 +01004099 register_char_driver_qapi("null", CHARDEV_BACKEND_KIND_NULL, NULL);
Anthony Liguorid654f342013-03-05 23:21:28 +05304100 register_char_driver("socket", qemu_chr_open_socket);
4101 register_char_driver("udp", qemu_chr_open_udp);
Markus Armbruster3a1da422013-07-26 16:44:34 +02004102 register_char_driver_qapi("ringbuf", CHARDEV_BACKEND_KIND_RINGBUF,
Markus Armbruster4f573782013-07-26 16:44:32 +02004103 qemu_chr_parse_ringbuf);
Gerd Hoffmann846e2e42013-02-21 12:07:14 +01004104 register_char_driver_qapi("file", CHARDEV_BACKEND_KIND_FILE,
4105 qemu_chr_parse_file_out);
Gerd Hoffmann7c358032013-02-21 12:34:58 +01004106 register_char_driver_qapi("stdio", CHARDEV_BACKEND_KIND_STDIO,
4107 qemu_chr_parse_stdio);
Gerd Hoffmann0f1cb512013-02-22 15:48:05 +01004108 register_char_driver_qapi("serial", CHARDEV_BACKEND_KIND_SERIAL,
4109 qemu_chr_parse_serial);
4110 register_char_driver_qapi("tty", CHARDEV_BACKEND_KIND_SERIAL,
4111 qemu_chr_parse_serial);
Gerd Hoffmanndc375092013-02-22 16:17:01 +01004112 register_char_driver_qapi("parallel", CHARDEV_BACKEND_KIND_PARALLEL,
4113 qemu_chr_parse_parallel);
4114 register_char_driver_qapi("parport", CHARDEV_BACKEND_KIND_PARALLEL,
4115 qemu_chr_parse_parallel);
Gerd Hoffmanne68c5952013-02-25 10:16:46 +01004116 register_char_driver_qapi("pty", CHARDEV_BACKEND_KIND_PTY, NULL);
Gerd Hoffmannd9ac3742013-02-25 11:48:06 +01004117 register_char_driver_qapi("console", CHARDEV_BACKEND_KIND_CONSOLE, NULL);
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01004118 register_char_driver_qapi("pipe", CHARDEV_BACKEND_KIND_PIPE,
4119 qemu_chr_parse_pipe);
Gerd Hoffmannbb6fb7c2013-06-24 08:39:54 +02004120 register_char_driver_qapi("mux", CHARDEV_BACKEND_KIND_MUX,
4121 qemu_chr_parse_mux);
Markus Armbrusterc11ed962013-07-26 16:44:33 +02004122 /* Bug-compatibility: */
4123 register_char_driver_qapi("memory", CHARDEV_BACKEND_KIND_MEMORY,
4124 qemu_chr_parse_ringbuf);
Michael Roth7b7ab182013-07-30 13:04:22 -05004125 /* this must be done after machine init, since we register FEs with muxes
4126 * as part of realize functions like serial_isa_realizefn when -nographic
4127 * is specified
4128 */
4129 qemu_add_machine_init_done_notifier(&muxes_realize_notify);
Anthony Liguorid654f342013-03-05 23:21:28 +05304130}
4131
4132type_init(register_types);