qemu-char.c 74.9 KB
Newer Older
A
aliguori 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * QEMU System Emulator
 *
 * Copyright (c) 2003-2008 Fabrice Bellard
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
#include "qemu-common.h"
25
#include "monitor/monitor.h"
26
#include "ui/console.h"
A
aliguori 已提交
27 28 29
#include "sysemu.h"
#include "qemu-timer.h"
#include "qemu-char.h"
A
aurel32 已提交
30 31
#include "hw/usb.h"
#include "hw/baum.h"
A
aurel32 已提交
32
#include "hw/msmouse.h"
L
Luiz Capitulino 已提交
33
#include "qmp-commands.h"
A
aliguori 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47

#include <unistd.h>
#include <fcntl.h>
#include <time.h>
#include <errno.h>
#include <sys/time.h>
#include <zlib.h>

#ifndef _WIN32
#include <sys/times.h>
#include <sys/wait.h>
#include <termios.h>
#include <sys/mman.h>
#include <sys/ioctl.h>
B
blueswir1 已提交
48
#include <sys/resource.h>
A
aliguori 已提交
49 50
#include <sys/socket.h>
#include <netinet/in.h>
B
blueswir1 已提交
51 52
#include <net/if.h>
#include <arpa/inet.h>
A
aliguori 已提交
53 54 55
#include <dirent.h>
#include <netdb.h>
#include <sys/select.h>
J
Juan Quintela 已提交
56
#ifdef CONFIG_BSD
A
aliguori 已提交
57
#include <sys/stat.h>
A
Aurelien Jarno 已提交
58 59
#if defined(__GLIBC__)
#include <pty.h>
60 61 62 63
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
#include <libutil.h>
#else
#include <util.h>
A
Aurelien Jarno 已提交
64
#endif
65 66 67
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
#include <dev/ppbus/ppi.h>
#include <dev/ppbus/ppbconf.h>
68 69 70
#elif defined(__DragonFly__)
#include <dev/misc/ppi/ppi.h>
#include <bus/ppbus/ppbconf.h>
A
aliguori 已提交
71
#endif
72
#else
A
aliguori 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
#ifdef __linux__
#include <pty.h>

#include <linux/ppdev.h>
#include <linux/parport.h>
#endif
#ifdef __sun__
#include <sys/stat.h>
#include <sys/ethernet.h>
#include <sys/sockio.h>
#include <netinet/arp.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/ip_icmp.h> // must come after ip.h
#include <netinet/udp.h>
#include <netinet/tcp.h>
#include <net/if.h>
#include <syslog.h>
#include <stropts.h>
#endif
#endif
#endif

#include "qemu_socket.h"
A
Alon Levy 已提交
98
#include "ui/qemu-spice.h"
A
aliguori 已提交
99

100 101
#define READ_BUF_LEN 4096

A
aliguori 已提交
102 103 104
/***********************************************************/
/* character device */

B
Blue Swirl 已提交
105 106
static QTAILQ_HEAD(CharDriverStateHead, CharDriverState) chardevs =
    QTAILQ_HEAD_INITIALIZER(chardevs);
A
aliguori 已提交
107

108
void qemu_chr_be_event(CharDriverState *s, int event)
A
aliguori 已提交
109
{
110 111 112 113 114 115 116 117 118 119
    /* Keep track if the char device is open */
    switch (event) {
        case CHR_EVENT_OPENED:
            s->opened = 1;
            break;
        case CHR_EVENT_CLOSED:
            s->opened = 0;
            break;
    }

A
aliguori 已提交
120 121 122 123 124
    if (!s->chr_event)
        return;
    s->chr_event(s->handler_opaque, event);
}

125
static void qemu_chr_fire_open_event(void *opaque)
A
aliguori 已提交
126 127
{
    CharDriverState *s = opaque;
128
    qemu_chr_be_event(s, CHR_EVENT_OPENED);
129 130
    qemu_free_timer(s->open_timer);
    s->open_timer = NULL;
A
aliguori 已提交
131 132
}

133
void qemu_chr_generic_open(CharDriverState *s)
A
aliguori 已提交
134
{
135
    if (s->open_timer == NULL) {
136
        s->open_timer = qemu_new_timer_ms(rt_clock,
137
                                          qemu_chr_fire_open_event, s);
138
        qemu_mod_timer(s->open_timer, qemu_get_clock_ms(rt_clock) - 1);
A
aliguori 已提交
139 140 141
    }
}

142
int qemu_chr_fe_write(CharDriverState *s, const uint8_t *buf, int len)
A
aliguori 已提交
143 144 145 146
{
    return s->chr_write(s, buf, len);
}

147
int qemu_chr_fe_ioctl(CharDriverState *s, int cmd, void *arg)
A
aliguori 已提交
148 149 150 151 152 153
{
    if (!s->chr_ioctl)
        return -ENOTSUP;
    return s->chr_ioctl(s, cmd, arg);
}

154
int qemu_chr_be_can_write(CharDriverState *s)
A
aliguori 已提交
155 156 157 158 159 160
{
    if (!s->chr_can_read)
        return 0;
    return s->chr_can_read(s->handler_opaque);
}

161
void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len)
A
aliguori 已提交
162
{
163 164 165
    if (s->chr_read) {
        s->chr_read(s->handler_opaque, buf, len);
    }
A
aliguori 已提交
166 167
}

168
int qemu_chr_fe_get_msgfd(CharDriverState *s)
169 170 171 172
{
    return s->get_msgfd ? s->get_msgfd(s) : -1;
}

173 174 175 176 177
int qemu_chr_add_client(CharDriverState *s, int fd)
{
    return s->chr_add_client ? s->chr_add_client(s, fd) : -1;
}

A
aliguori 已提交
178 179 180 181
void qemu_chr_accept_input(CharDriverState *s)
{
    if (s->chr_accept_input)
        s->chr_accept_input(s);
182
    qemu_notify_event();
A
aliguori 已提交
183 184
}

185
void qemu_chr_fe_printf(CharDriverState *s, const char *fmt, ...)
A
aliguori 已提交
186
{
187
    char buf[READ_BUF_LEN];
A
aliguori 已提交
188 189 190
    va_list ap;
    va_start(ap, fmt);
    vsnprintf(buf, sizeof(buf), fmt, ap);
191
    qemu_chr_fe_write(s, (uint8_t *)buf, strlen(buf));
A
aliguori 已提交
192 193 194 195
    va_end(ap);
}

void qemu_chr_add_handlers(CharDriverState *s,
196
                           IOCanReadHandler *fd_can_read,
A
aliguori 已提交
197 198 199 200
                           IOReadHandler *fd_read,
                           IOEventHandler *fd_event,
                           void *opaque)
{
201
    if (!opaque && !fd_can_read && !fd_read && !fd_event) {
202
        /* chr driver being released. */
203
        ++s->avail_connections;
204
    }
A
aliguori 已提交
205 206 207 208 209 210
    s->chr_can_read = fd_can_read;
    s->chr_read = fd_read;
    s->chr_event = fd_event;
    s->handler_opaque = opaque;
    if (s->chr_update_read_handler)
        s->chr_update_read_handler(s);
211 212 213 214 215 216

    /* We're connecting to an already opened device, so let's make sure we
       also get the open event */
    if (s->opened) {
        qemu_chr_generic_open(s);
    }
A
aliguori 已提交
217 218 219 220 221 222 223
}

static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
{
    return len;
}

224
static CharDriverState *qemu_chr_open_null(QemuOpts *opts)
A
aliguori 已提交
225 226 227
{
    CharDriverState *chr;

228
    chr = g_malloc0(sizeof(CharDriverState));
A
aliguori 已提交
229
    chr->chr_write = null_chr_write;
230
    return chr;
A
aliguori 已提交
231 232 233 234 235 236 237
}

/* MUX driver for serial I/O splitting */
#define MAX_MUX 4
#define MUX_BUFFER_SIZE 32	/* Must be a power of 2.  */
#define MUX_BUFFER_MASK (MUX_BUFFER_SIZE - 1)
typedef struct {
238
    IOCanReadHandler *chr_can_read[MAX_MUX];
A
aliguori 已提交
239 240 241 242
    IOReadHandler *chr_read[MAX_MUX];
    IOEventHandler *chr_event[MAX_MUX];
    void *ext_opaque[MAX_MUX];
    CharDriverState *drv;
243
    int focus;
A
aliguori 已提交
244 245 246
    int mux_cnt;
    int term_got_escape;
    int max_size;
247 248 249 250 251 252
    /* Intermediate input buffer allows to catch escape sequences even if the
       currently active device is not accepting any input - but only until it
       is full as well. */
    unsigned char buffer[MAX_MUX][MUX_BUFFER_SIZE];
    int prod[MAX_MUX];
    int cons[MAX_MUX];
J
Jan Kiszka 已提交
253
    int timestamps;
J
Jan Kiszka 已提交
254
    int linestart;
J
Jan Kiszka 已提交
255
    int64_t timestamps_start;
A
aliguori 已提交
256 257 258 259 260 261 262
} MuxDriver;


static int mux_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
{
    MuxDriver *d = chr->opaque;
    int ret;
J
Jan Kiszka 已提交
263
    if (!d->timestamps) {
A
aliguori 已提交
264 265 266 267 268
        ret = d->drv->chr_write(d->drv, buf, len);
    } else {
        int i;

        ret = 0;
J
Jan Kiszka 已提交
269 270
        for (i = 0; i < len; i++) {
            if (d->linestart) {
A
aliguori 已提交
271 272 273 274
                char buf1[64];
                int64_t ti;
                int secs;

275
                ti = qemu_get_clock_ms(rt_clock);
J
Jan Kiszka 已提交
276 277 278
                if (d->timestamps_start == -1)
                    d->timestamps_start = ti;
                ti -= d->timestamps_start;
279
                secs = ti / 1000;
A
aliguori 已提交
280 281 282 283 284
                snprintf(buf1, sizeof(buf1),
                         "[%02d:%02d:%02d.%03d] ",
                         secs / 3600,
                         (secs / 60) % 60,
                         secs % 60,
285
                         (int)(ti % 1000));
A
aliguori 已提交
286
                d->drv->chr_write(d->drv, (uint8_t *)buf1, strlen(buf1));
J
Jan Kiszka 已提交
287 288 289 290 291
                d->linestart = 0;
            }
            ret += d->drv->chr_write(d->drv, buf+i, 1);
            if (buf[i] == '\n') {
                d->linestart = 1;
A
aliguori 已提交
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
            }
        }
    }
    return ret;
}

static const char * const mux_help[] = {
    "% h    print this help\n\r",
    "% x    exit emulator\n\r",
    "% s    save disk data back to file (if -snapshot)\n\r",
    "% t    toggle console timestamps\n\r"
    "% b    send break (magic sysrq)\n\r",
    "% c    switch between console and monitor\n\r",
    "% %  sends %\n\r",
    NULL
};

int term_escape_char = 0x01; /* ctrl-a is used for escape */
static void mux_print_help(CharDriverState *chr)
{
    int i, j;
    char ebuf[15] = "Escape-Char";
    char cbuf[50] = "\n\r";

    if (term_escape_char > 0 && term_escape_char < 26) {
        snprintf(cbuf, sizeof(cbuf), "\n\r");
        snprintf(ebuf, sizeof(ebuf), "C-%c", term_escape_char - 1 + 'a');
    } else {
        snprintf(cbuf, sizeof(cbuf),
                 "\n\rEscape-Char set to Ascii: 0x%02x\n\r\n\r",
                 term_escape_char);
    }
    chr->chr_write(chr, (uint8_t *)cbuf, strlen(cbuf));
    for (i = 0; mux_help[i] != NULL; i++) {
        for (j=0; mux_help[i][j] != '\0'; j++) {
            if (mux_help[i][j] == '%')
                chr->chr_write(chr, (uint8_t *)ebuf, strlen(ebuf));
            else
                chr->chr_write(chr, (uint8_t *)&mux_help[i][j], 1);
        }
    }
}

335 336 337 338 339 340
static void mux_chr_send_event(MuxDriver *d, int mux_nr, int event)
{
    if (d->chr_event[mux_nr])
        d->chr_event[mux_nr](d->ext_opaque[mux_nr], event);
}

A
aliguori 已提交
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
static int mux_proc_byte(CharDriverState *chr, MuxDriver *d, int ch)
{
    if (d->term_got_escape) {
        d->term_got_escape = 0;
        if (ch == term_escape_char)
            goto send_char;
        switch(ch) {
        case '?':
        case 'h':
            mux_print_help(chr);
            break;
        case 'x':
            {
                 const char *term =  "QEMU: Terminated\n\r";
                 chr->chr_write(chr,(uint8_t *)term,strlen(term));
                 exit(0);
                 break;
            }
        case 's':
360
            bdrv_commit_all();
A
aliguori 已提交
361 362
            break;
        case 'b':
363
            qemu_chr_be_event(chr, CHR_EVENT_BREAK);
A
aliguori 已提交
364 365 366
            break;
        case 'c':
            /* Switch to the next registered device */
367 368 369 370 371
            mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
            d->focus++;
            if (d->focus >= d->mux_cnt)
                d->focus = 0;
            mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
A
aliguori 已提交
372
            break;
J
Jan Kiszka 已提交
373 374 375
        case 't':
            d->timestamps = !d->timestamps;
            d->timestamps_start = -1;
J
Jan Kiszka 已提交
376
            d->linestart = 0;
J
Jan Kiszka 已提交
377
            break;
A
aliguori 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390
        }
    } else if (ch == term_escape_char) {
        d->term_got_escape = 1;
    } else {
    send_char:
        return 1;
    }
    return 0;
}

static void mux_chr_accept_input(CharDriverState *chr)
{
    MuxDriver *d = chr->opaque;
391
    int m = d->focus;
A
aliguori 已提交
392

393
    while (d->prod[m] != d->cons[m] &&
A
aliguori 已提交
394 395 396
           d->chr_can_read[m] &&
           d->chr_can_read[m](d->ext_opaque[m])) {
        d->chr_read[m](d->ext_opaque[m],
397
                       &d->buffer[m][d->cons[m]++ & MUX_BUFFER_MASK], 1);
A
aliguori 已提交
398 399 400 401 402 403 404
    }
}

static int mux_chr_can_read(void *opaque)
{
    CharDriverState *chr = opaque;
    MuxDriver *d = chr->opaque;
405
    int m = d->focus;
A
aliguori 已提交
406

407
    if ((d->prod[m] - d->cons[m]) < MUX_BUFFER_SIZE)
A
aliguori 已提交
408
        return 1;
409 410
    if (d->chr_can_read[m])
        return d->chr_can_read[m](d->ext_opaque[m]);
A
aliguori 已提交
411 412 413 414 415 416 417
    return 0;
}

static void mux_chr_read(void *opaque, const uint8_t *buf, int size)
{
    CharDriverState *chr = opaque;
    MuxDriver *d = chr->opaque;
418
    int m = d->focus;
A
aliguori 已提交
419 420 421 422 423 424
    int i;

    mux_chr_accept_input (opaque);

    for(i = 0; i < size; i++)
        if (mux_proc_byte(chr, d, buf[i])) {
425
            if (d->prod[m] == d->cons[m] &&
A
aliguori 已提交
426 427 428 429
                d->chr_can_read[m] &&
                d->chr_can_read[m](d->ext_opaque[m]))
                d->chr_read[m](d->ext_opaque[m], &buf[i], 1);
            else
430
                d->buffer[m][d->prod[m]++ & MUX_BUFFER_MASK] = buf[i];
A
aliguori 已提交
431 432 433 434 435 436 437 438 439 440 441
        }
}

static void mux_chr_event(void *opaque, int event)
{
    CharDriverState *chr = opaque;
    MuxDriver *d = chr->opaque;
    int i;

    /* Send the event to all registered listeners */
    for (i = 0; i < d->mux_cnt; i++)
442
        mux_chr_send_event(d, i, event);
A
aliguori 已提交
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
}

static void mux_chr_update_read_handler(CharDriverState *chr)
{
    MuxDriver *d = chr->opaque;

    if (d->mux_cnt >= MAX_MUX) {
        fprintf(stderr, "Cannot add I/O handlers, MUX array is full\n");
        return;
    }
    d->ext_opaque[d->mux_cnt] = chr->handler_opaque;
    d->chr_can_read[d->mux_cnt] = chr->chr_can_read;
    d->chr_read[d->mux_cnt] = chr->chr_read;
    d->chr_event[d->mux_cnt] = chr->chr_event;
    /* Fix up the real driver with mux routines */
    if (d->mux_cnt == 0) {
        qemu_chr_add_handlers(d->drv, mux_chr_can_read, mux_chr_read,
                              mux_chr_event, chr);
    }
462 463
    if (d->focus != -1) {
        mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
G
Gerd Hoffmann 已提交
464
    }
465
    d->focus = d->mux_cnt;
A
aliguori 已提交
466
    d->mux_cnt++;
467
    mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
A
aliguori 已提交
468 469 470 471 472 473 474
}

static CharDriverState *qemu_chr_open_mux(CharDriverState *drv)
{
    CharDriverState *chr;
    MuxDriver *d;

475 476
    chr = g_malloc0(sizeof(CharDriverState));
    d = g_malloc0(sizeof(MuxDriver));
A
aliguori 已提交
477 478 479

    chr->opaque = d;
    d->drv = drv;
480
    d->focus = -1;
A
aliguori 已提交
481 482 483
    chr->chr_write = mux_chr_write;
    chr->chr_update_read_handler = mux_chr_update_read_handler;
    chr->chr_accept_input = mux_chr_accept_input;
484 485 486
    /* Frontend guest-open / -close notification is not support with muxes */
    chr->chr_guest_open = NULL;
    chr->chr_guest_close = NULL;
487 488 489 490

    /* Muxes are always open on creation */
    qemu_chr_generic_open(chr);

A
aliguori 已提交
491 492 493 494 495
    return chr;
}


#ifdef _WIN32
496
int send_all(int fd, const void *buf, int len1)
A
aliguori 已提交
497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
{
    int ret, len;

    len = len1;
    while (len > 0) {
        ret = send(fd, buf, len, 0);
        if (ret < 0) {
            errno = WSAGetLastError();
            if (errno != WSAEWOULDBLOCK) {
                return -1;
            }
        } else if (ret == 0) {
            break;
        } else {
            buf += ret;
            len -= ret;
        }
    }
    return len1 - len;
}

#else

520
int send_all(int fd, const void *_buf, int len1)
A
aliguori 已提交
521 522
{
    int ret, len;
523
    const uint8_t *buf = _buf;
A
aliguori 已提交
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541

    len = len1;
    while (len > 0) {
        ret = write(fd, buf, len);
        if (ret < 0) {
            if (errno != EINTR && errno != EAGAIN)
                return -1;
        } else if (ret == 0) {
            break;
        } else {
            buf += ret;
            len -= ret;
        }
    }
    return len1 - len;
}
#endif /* !_WIN32 */

F
Fabien Chouteau 已提交
542 543 544
#define STDIO_MAX_CLIENTS 1
static int stdio_nb_clients;

A
aliguori 已提交
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
#ifndef _WIN32

typedef struct {
    int fd_in, fd_out;
    int max_size;
} FDCharDriver;


static int fd_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
{
    FDCharDriver *s = chr->opaque;
    return send_all(s->fd_out, buf, len);
}

static int fd_chr_read_poll(void *opaque)
{
    CharDriverState *chr = opaque;
    FDCharDriver *s = chr->opaque;

564
    s->max_size = qemu_chr_be_can_write(chr);
A
aliguori 已提交
565 566 567 568 569 570 571 572
    return s->max_size;
}

static void fd_chr_read(void *opaque)
{
    CharDriverState *chr = opaque;
    FDCharDriver *s = chr->opaque;
    int size, len;
573
    uint8_t buf[READ_BUF_LEN];
A
aliguori 已提交
574 575 576 577 578 579 580 581 582 583

    len = sizeof(buf);
    if (len > s->max_size)
        len = s->max_size;
    if (len == 0)
        return;
    size = read(s->fd_in, buf, len);
    if (size == 0) {
        /* FD has been closed. Remove it from the active list.  */
        qemu_set_fd_handler2(s->fd_in, NULL, NULL, NULL, NULL);
584
        qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
A
aliguori 已提交
585 586 587
        return;
    }
    if (size > 0) {
588
        qemu_chr_be_write(chr, buf, size);
A
aliguori 已提交
589 590 591 592 593 594 595 596
    }
}

static void fd_chr_update_read_handler(CharDriverState *chr)
{
    FDCharDriver *s = chr->opaque;

    if (s->fd_in >= 0) {
597
        if (display_type == DT_NOGRAPHIC && s->fd_in == 0) {
A
aliguori 已提交
598 599 600 601 602 603 604 605 606 607 608 609
        } else {
            qemu_set_fd_handler2(s->fd_in, fd_chr_read_poll,
                                 fd_chr_read, NULL, chr);
        }
    }
}

static void fd_chr_close(struct CharDriverState *chr)
{
    FDCharDriver *s = chr->opaque;

    if (s->fd_in >= 0) {
610
        if (display_type == DT_NOGRAPHIC && s->fd_in == 0) {
A
aliguori 已提交
611 612 613 614 615
        } else {
            qemu_set_fd_handler2(s->fd_in, NULL, NULL, NULL, NULL);
        }
    }

616
    g_free(s);
617
    qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
A
aliguori 已提交
618 619 620 621 622 623 624 625
}

/* open a character device to a unix fd */
static CharDriverState *qemu_chr_open_fd(int fd_in, int fd_out)
{
    CharDriverState *chr;
    FDCharDriver *s;

626 627
    chr = g_malloc0(sizeof(CharDriverState));
    s = g_malloc0(sizeof(FDCharDriver));
A
aliguori 已提交
628 629 630 631 632 633 634
    s->fd_in = fd_in;
    s->fd_out = fd_out;
    chr->opaque = s;
    chr->chr_write = fd_chr_write;
    chr->chr_update_read_handler = fd_chr_update_read_handler;
    chr->chr_close = fd_chr_close;

635
    qemu_chr_generic_open(chr);
A
aliguori 已提交
636 637 638 639

    return chr;
}

640
static CharDriverState *qemu_chr_open_file_out(QemuOpts *opts)
A
aliguori 已提交
641 642 643
{
    int fd_out;

K
Kevin Wolf 已提交
644
    TFR(fd_out = qemu_open(qemu_opt_get(opts, "path"),
645
                      O_WRONLY | O_TRUNC | O_CREAT | O_BINARY, 0666));
646
    if (fd_out < 0) {
647
        return NULL;
648
    }
649
    return qemu_chr_open_fd(-1, fd_out);
A
aliguori 已提交
650 651
}

652
static CharDriverState *qemu_chr_open_pipe(QemuOpts *opts)
A
aliguori 已提交
653 654 655
{
    int fd_in, fd_out;
    char filename_in[256], filename_out[256];
656 657 658 659
    const char *filename = qemu_opt_get(opts, "path");

    if (filename == NULL) {
        fprintf(stderr, "chardev: pipe: no filename given\n");
660
        return NULL;
661
    }
A
aliguori 已提交
662 663 664

    snprintf(filename_in, 256, "%s.in", filename);
    snprintf(filename_out, 256, "%s.out", filename);
K
Kevin Wolf 已提交
665 666
    TFR(fd_in = qemu_open(filename_in, O_RDWR | O_BINARY));
    TFR(fd_out = qemu_open(filename_out, O_RDWR | O_BINARY));
A
aliguori 已提交
667 668 669 670 671
    if (fd_in < 0 || fd_out < 0) {
	if (fd_in >= 0)
	    close(fd_in);
	if (fd_out >= 0)
	    close(fd_out);
672
        TFR(fd_in = fd_out = qemu_open(filename, O_RDWR | O_BINARY));
673
        if (fd_in < 0) {
674
            return NULL;
675
        }
A
aliguori 已提交
676
    }
677
    return qemu_chr_open_fd(fd_in, fd_out);
A
aliguori 已提交
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
}


/* for STDIO, we handle the case where several clients use it
   (nographic mode) */

#define TERM_FIFO_MAX_SIZE 1

static uint8_t term_fifo[TERM_FIFO_MAX_SIZE];
static int term_fifo_size;

static int stdio_read_poll(void *opaque)
{
    CharDriverState *chr = opaque;

    /* try to flush the queue if needed */
694
    if (term_fifo_size != 0 && qemu_chr_be_can_write(chr) > 0) {
695
        qemu_chr_be_write(chr, term_fifo, 1);
A
aliguori 已提交
696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
        term_fifo_size = 0;
    }
    /* see if we can absorb more chars */
    if (term_fifo_size == 0)
        return 1;
    else
        return 0;
}

static void stdio_read(void *opaque)
{
    int size;
    uint8_t buf[1];
    CharDriverState *chr = opaque;

    size = read(0, buf, 1);
    if (size == 0) {
        /* stdin has been closed. Remove it from the active list.  */
        qemu_set_fd_handler2(0, NULL, NULL, NULL, NULL);
715
        qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
A
aliguori 已提交
716 717 718
        return;
    }
    if (size > 0) {
719
        if (qemu_chr_be_can_write(chr) > 0) {
720
            qemu_chr_be_write(chr, buf, 1);
A
aliguori 已提交
721 722 723 724 725 726 727 728 729
        } else if (term_fifo_size == 0) {
            term_fifo[term_fifo_size++] = buf[0];
        }
    }
}

/* init terminal so that we can grab keys */
static struct termios oldtty;
static int old_fd0_flags;
730
static bool stdio_allow_signal;
A
aliguori 已提交
731 732 733 734 735 736 737

static void term_exit(void)
{
    tcsetattr (0, TCSANOW, &oldtty);
    fcntl(0, F_SETFL, old_fd0_flags);
}

738
static void qemu_chr_set_echo_stdio(CharDriverState *chr, bool echo)
A
aliguori 已提交
739 740 741
{
    struct termios tty;

742
    tty = oldtty;
743 744
    if (!echo) {
        tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
A
aliguori 已提交
745
                          |INLCR|IGNCR|ICRNL|IXON);
746 747 748 749 750 751 752
        tty.c_oflag |= OPOST;
        tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
        tty.c_cflag &= ~(CSIZE|PARENB);
        tty.c_cflag |= CS8;
        tty.c_cc[VMIN] = 1;
        tty.c_cc[VTIME] = 0;
    }
A
aliguori 已提交
753
    /* if graphical mode, we allow Ctrl-C handling */
754
    if (!stdio_allow_signal)
A
aliguori 已提交
755 756 757 758 759 760 761 762 763 764 765 766 767
        tty.c_lflag &= ~ISIG;

    tcsetattr (0, TCSANOW, &tty);
}

static void qemu_chr_close_stdio(struct CharDriverState *chr)
{
    term_exit();
    stdio_nb_clients--;
    qemu_set_fd_handler2(0, NULL, NULL, NULL, NULL);
    fd_chr_close(chr);
}

768
static CharDriverState *qemu_chr_open_stdio(QemuOpts *opts)
A
aliguori 已提交
769 770 771
{
    CharDriverState *chr;

772
    if (stdio_nb_clients >= STDIO_MAX_CLIENTS) {
773
        return NULL;
774
    }
775 776 777 778 779 780 781
    if (stdio_nb_clients == 0) {
        old_fd0_flags = fcntl(0, F_GETFL);
        tcgetattr (0, &oldtty);
        fcntl(0, F_SETFL, O_NONBLOCK);
        atexit(term_exit);
    }

A
aliguori 已提交
782 783
    chr = qemu_chr_open_fd(0, 1);
    chr->chr_close = qemu_chr_close_stdio;
784
    chr->chr_set_echo = qemu_chr_set_echo_stdio;
A
aliguori 已提交
785 786
    qemu_set_fd_handler2(0, stdio_read_poll, stdio_read, NULL, chr);
    stdio_nb_clients++;
787 788
    stdio_allow_signal = qemu_opt_get_bool(opts, "signal",
                                           display_type != DT_NOGRAPHIC);
789
    qemu_chr_fe_set_echo(chr, false);
A
aliguori 已提交
790

791
    return chr;
A
aliguori 已提交
792 793 794 795
}

#ifdef __sun__
/* Once Solaris has openpty(), this is going to be removed. */
796 797
static int openpty(int *amaster, int *aslave, char *name,
                   struct termios *termp, struct winsize *winp)
A
aliguori 已提交
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
{
        const char *slave;
        int mfd = -1, sfd = -1;

        *amaster = *aslave = -1;

        mfd = open("/dev/ptmx", O_RDWR | O_NOCTTY);
        if (mfd < 0)
                goto err;

        if (grantpt(mfd) == -1 || unlockpt(mfd) == -1)
                goto err;

        if ((slave = ptsname(mfd)) == NULL)
                goto err;

        if ((sfd = open(slave, O_RDONLY | O_NOCTTY)) == -1)
                goto err;

        if (ioctl(sfd, I_PUSH, "ptem") == -1 ||
            (termp != NULL && tcgetattr(sfd, termp) < 0))
                goto err;

        if (amaster)
                *amaster = mfd;
        if (aslave)
                *aslave = sfd;
        if (winp)
                ioctl(sfd, TIOCSWINSZ, winp);

        return 0;

err:
        if (sfd != -1)
                close(sfd);
        close(mfd);
        return -1;
}

837
static void cfmakeraw (struct termios *termios_p)
A
aliguori 已提交
838 839 840 841 842 843 844 845 846 847 848 849 850 851
{
        termios_p->c_iflag &=
                ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
        termios_p->c_oflag &= ~OPOST;
        termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
        termios_p->c_cflag &= ~(CSIZE|PARENB);
        termios_p->c_cflag |= CS8;

        termios_p->c_cc[VMIN] = 0;
        termios_p->c_cc[VTIME] = 0;
}
#endif

#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
A
Aurelien Jarno 已提交
852 853
    || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
    || defined(__GLIBC__)
A
aliguori 已提交
854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882

typedef struct {
    int fd;
    int connected;
    int polling;
    int read_bytes;
    QEMUTimer *timer;
} PtyCharDriver;

static void pty_chr_update_read_handler(CharDriverState *chr);
static void pty_chr_state(CharDriverState *chr, int connected);

static int pty_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
{
    PtyCharDriver *s = chr->opaque;

    if (!s->connected) {
        /* guest sends data, check for (re-)connect */
        pty_chr_update_read_handler(chr);
        return 0;
    }
    return send_all(s->fd, buf, len);
}

static int pty_chr_read_poll(void *opaque)
{
    CharDriverState *chr = opaque;
    PtyCharDriver *s = chr->opaque;

883
    s->read_bytes = qemu_chr_be_can_write(chr);
A
aliguori 已提交
884 885 886 887 888 889 890 891
    return s->read_bytes;
}

static void pty_chr_read(void *opaque)
{
    CharDriverState *chr = opaque;
    PtyCharDriver *s = chr->opaque;
    int size, len;
892
    uint8_t buf[READ_BUF_LEN];
A
aliguori 已提交
893 894 895 896 897 898 899 900 901 902 903 904 905 906

    len = sizeof(buf);
    if (len > s->read_bytes)
        len = s->read_bytes;
    if (len == 0)
        return;
    size = read(s->fd, buf, len);
    if ((size == -1 && errno == EIO) ||
        (size == 0)) {
        pty_chr_state(chr, 0);
        return;
    }
    if (size > 0) {
        pty_chr_state(chr, 1);
907
        qemu_chr_be_write(chr, buf, size);
A
aliguori 已提交
908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925
    }
}

static void pty_chr_update_read_handler(CharDriverState *chr)
{
    PtyCharDriver *s = chr->opaque;

    qemu_set_fd_handler2(s->fd, pty_chr_read_poll,
                         pty_chr_read, NULL, chr);
    s->polling = 1;
    /*
     * Short timeout here: just need wait long enougth that qemu makes
     * it through the poll loop once.  When reconnected we want a
     * short timeout so we notice it almost instantly.  Otherwise
     * read() gives us -EIO instantly, making pty_chr_state() reset the
     * timeout to the normal (much longer) poll interval before the
     * timer triggers.
     */
926
    qemu_mod_timer(s->timer, qemu_get_clock_ms(rt_clock) + 10);
A
aliguori 已提交
927 928 929 930 931 932 933 934 935 936 937 938 939
}

static void pty_chr_state(CharDriverState *chr, int connected)
{
    PtyCharDriver *s = chr->opaque;

    if (!connected) {
        qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
        s->connected = 0;
        s->polling = 0;
        /* (re-)connect poll interval for idle guests: once per second.
         * We check more frequently in case the guests sends data to
         * the virtual device linked to our pty. */
940
        qemu_mod_timer(s->timer, qemu_get_clock_ms(rt_clock) + 1000);
A
aliguori 已提交
941 942
    } else {
        if (!s->connected)
943
            qemu_chr_generic_open(chr);
A
aliguori 已提交
944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971
        s->connected = 1;
    }
}

static void pty_chr_timer(void *opaque)
{
    struct CharDriverState *chr = opaque;
    PtyCharDriver *s = chr->opaque;

    if (s->connected)
        return;
    if (s->polling) {
        /* If we arrive here without polling being cleared due
         * read returning -EIO, then we are (re-)connected */
        pty_chr_state(chr, 1);
        return;
    }

    /* Next poll ... */
    pty_chr_update_read_handler(chr);
}

static void pty_chr_close(struct CharDriverState *chr)
{
    PtyCharDriver *s = chr->opaque;

    qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
    close(s->fd);
972 973
    qemu_del_timer(s->timer);
    qemu_free_timer(s->timer);
974
    g_free(s);
975
    qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
A
aliguori 已提交
976 977
}

978
static CharDriverState *qemu_chr_open_pty(QemuOpts *opts)
A
aliguori 已提交
979 980 981 982
{
    CharDriverState *chr;
    PtyCharDriver *s;
    struct termios tty;
983
    int master_fd, slave_fd, len;
984
#if defined(__OpenBSD__) || defined(__DragonFly__)
A
aliguori 已提交
985 986 987 988 989 990 991
    char pty_name[PATH_MAX];
#define q_ptsname(x) pty_name
#else
    char *pty_name = NULL;
#define q_ptsname(x) ptsname(x)
#endif

992
    if (openpty(&master_fd, &slave_fd, pty_name, NULL, NULL) < 0) {
993
        return NULL;
A
aliguori 已提交
994 995 996
    }

    /* Set raw attributes on the pty. */
997
    tcgetattr(slave_fd, &tty);
A
aliguori 已提交
998 999 1000 1001
    cfmakeraw(&tty);
    tcsetattr(slave_fd, TCSAFLUSH, &tty);
    close(slave_fd);

1002 1003 1004
    chr = g_malloc0(sizeof(CharDriverState));

    len = strlen(q_ptsname(master_fd)) + 5;
1005
    chr->filename = g_malloc(len);
1006 1007 1008
    snprintf(chr->filename, len, "pty:%s", q_ptsname(master_fd));
    qemu_opt_set(opts, "path", q_ptsname(master_fd));
    fprintf(stderr, "char device redirected to %s\n", q_ptsname(master_fd));
A
aliguori 已提交
1009

1010
    s = g_malloc0(sizeof(PtyCharDriver));
A
aliguori 已提交
1011 1012 1013 1014 1015
    chr->opaque = s;
    chr->chr_write = pty_chr_write;
    chr->chr_update_read_handler = pty_chr_update_read_handler;
    chr->chr_close = pty_chr_close;

1016
    s->fd = master_fd;
1017
    s->timer = qemu_new_timer_ms(rt_clock, pty_chr_timer, chr);
A
aliguori 已提交
1018

1019
    return chr;
A
aliguori 已提交
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
}

static void tty_serial_init(int fd, int speed,
                            int parity, int data_bits, int stop_bits)
{
    struct termios tty;
    speed_t spd;

#if 0
    printf("tty_serial_init: speed=%d parity=%c data=%d stop=%d\n",
           speed, parity, data_bits, stop_bits);
#endif
    tcgetattr (fd, &tty);

1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
#define check_speed(val) if (speed <= val) { spd = B##val; break; }
    speed = speed * 10 / 11;
    do {
        check_speed(50);
        check_speed(75);
        check_speed(110);
        check_speed(134);
        check_speed(150);
        check_speed(200);
        check_speed(300);
        check_speed(600);
        check_speed(1200);
        check_speed(1800);
        check_speed(2400);
        check_speed(4800);
        check_speed(9600);
        check_speed(19200);
        check_speed(38400);
        /* Non-Posix values follow. They may be unsupported on some systems. */
        check_speed(57600);
        check_speed(115200);
#ifdef B230400
        check_speed(230400);
#endif
#ifdef B460800
        check_speed(460800);
#endif
#ifdef B500000
        check_speed(500000);
#endif
#ifdef B576000
        check_speed(576000);
#endif
#ifdef B921600
        check_speed(921600);
#endif
#ifdef B1000000
        check_speed(1000000);
#endif
#ifdef B1152000
        check_speed(1152000);
#endif
#ifdef B1500000
        check_speed(1500000);
#endif
#ifdef B2000000
        check_speed(2000000);
#endif
#ifdef B2500000
        check_speed(2500000);
#endif
#ifdef B3000000
        check_speed(3000000);
#endif
#ifdef B3500000
        check_speed(3500000);
#endif
#ifdef B4000000
        check_speed(4000000);
#endif
A
aliguori 已提交
1094
        spd = B115200;
1095
    } while (0);
A
aliguori 已提交
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161

    cfsetispeed(&tty, spd);
    cfsetospeed(&tty, spd);

    tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
                          |INLCR|IGNCR|ICRNL|IXON);
    tty.c_oflag |= OPOST;
    tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN|ISIG);
    tty.c_cflag &= ~(CSIZE|PARENB|PARODD|CRTSCTS|CSTOPB);
    switch(data_bits) {
    default:
    case 8:
        tty.c_cflag |= CS8;
        break;
    case 7:
        tty.c_cflag |= CS7;
        break;
    case 6:
        tty.c_cflag |= CS6;
        break;
    case 5:
        tty.c_cflag |= CS5;
        break;
    }
    switch(parity) {
    default:
    case 'N':
        break;
    case 'E':
        tty.c_cflag |= PARENB;
        break;
    case 'O':
        tty.c_cflag |= PARENB | PARODD;
        break;
    }
    if (stop_bits == 2)
        tty.c_cflag |= CSTOPB;

    tcsetattr (fd, TCSANOW, &tty);
}

static int tty_serial_ioctl(CharDriverState *chr, int cmd, void *arg)
{
    FDCharDriver *s = chr->opaque;

    switch(cmd) {
    case CHR_IOCTL_SERIAL_SET_PARAMS:
        {
            QEMUSerialSetParams *ssp = arg;
            tty_serial_init(s->fd_in, ssp->speed, ssp->parity,
                            ssp->data_bits, ssp->stop_bits);
        }
        break;
    case CHR_IOCTL_SERIAL_SET_BREAK:
        {
            int enable = *(int *)arg;
            if (enable)
                tcsendbreak(s->fd_in, 1);
        }
        break;
    case CHR_IOCTL_SERIAL_GET_TIOCM:
        {
            int sarg = 0;
            int *targ = (int *)arg;
            ioctl(s->fd_in, TIOCMGET, &sarg);
            *targ = 0;
A
aurel32 已提交
1162
            if (sarg & TIOCM_CTS)
A
aliguori 已提交
1163
                *targ |= CHR_TIOCM_CTS;
A
aurel32 已提交
1164
            if (sarg & TIOCM_CAR)
A
aliguori 已提交
1165
                *targ |= CHR_TIOCM_CAR;
A
aurel32 已提交
1166
            if (sarg & TIOCM_DSR)
A
aliguori 已提交
1167
                *targ |= CHR_TIOCM_DSR;
A
aurel32 已提交
1168
            if (sarg & TIOCM_RI)
A
aliguori 已提交
1169
                *targ |= CHR_TIOCM_RI;
A
aurel32 已提交
1170
            if (sarg & TIOCM_DTR)
A
aliguori 已提交
1171
                *targ |= CHR_TIOCM_DTR;
A
aurel32 已提交
1172
            if (sarg & TIOCM_RTS)
A
aliguori 已提交
1173 1174 1175 1176 1177 1178 1179
                *targ |= CHR_TIOCM_RTS;
        }
        break;
    case CHR_IOCTL_SERIAL_SET_TIOCM:
        {
            int sarg = *(int *)arg;
            int targ = 0;
A
aurel32 已提交
1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
            ioctl(s->fd_in, TIOCMGET, &targ);
            targ &= ~(CHR_TIOCM_CTS | CHR_TIOCM_CAR | CHR_TIOCM_DSR
                     | CHR_TIOCM_RI | CHR_TIOCM_DTR | CHR_TIOCM_RTS);
            if (sarg & CHR_TIOCM_CTS)
                targ |= TIOCM_CTS;
            if (sarg & CHR_TIOCM_CAR)
                targ |= TIOCM_CAR;
            if (sarg & CHR_TIOCM_DSR)
                targ |= TIOCM_DSR;
            if (sarg & CHR_TIOCM_RI)
                targ |= TIOCM_RI;
            if (sarg & CHR_TIOCM_DTR)
A
aliguori 已提交
1192
                targ |= TIOCM_DTR;
A
aurel32 已提交
1193
            if (sarg & CHR_TIOCM_RTS)
A
aliguori 已提交
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
                targ |= TIOCM_RTS;
            ioctl(s->fd_in, TIOCMSET, &targ);
        }
        break;
    default:
        return -ENOTSUP;
    }
    return 0;
}

1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
static void qemu_chr_close_tty(CharDriverState *chr)
{
    FDCharDriver *s = chr->opaque;
    int fd = -1;

    if (s) {
        fd = s->fd_in;
    }

    fd_chr_close(chr);

    if (fd >= 0) {
        close(fd);
    }
}

1220
static CharDriverState *qemu_chr_open_tty(QemuOpts *opts)
A
aliguori 已提交
1221
{
1222
    const char *filename = qemu_opt_get(opts, "path");
A
aliguori 已提交
1223 1224 1225
    CharDriverState *chr;
    int fd;

1226
    TFR(fd = qemu_open(filename, O_RDWR | O_NONBLOCK));
1227
    if (fd < 0) {
1228
        return NULL;
1229
    }
A
aliguori 已提交
1230 1231 1232
    tty_serial_init(fd, 115200, 'N', 8, 1);
    chr = qemu_chr_open_fd(fd, fd);
    chr->chr_ioctl = tty_serial_ioctl;
1233
    chr->chr_close = qemu_chr_close_tty;
1234
    return chr;
A
aliguori 已提交
1235 1236
}
#else  /* ! __linux__ && ! __sun__ */
1237
static CharDriverState *qemu_chr_open_pty(QemuOpts *opts)
A
aliguori 已提交
1238
{
1239
    return NULL;
A
aliguori 已提交
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348
}
#endif /* __linux__ || __sun__ */

#if defined(__linux__)
typedef struct {
    int fd;
    int mode;
} ParallelCharDriver;

static int pp_hw_mode(ParallelCharDriver *s, uint16_t mode)
{
    if (s->mode != mode) {
	int m = mode;
        if (ioctl(s->fd, PPSETMODE, &m) < 0)
            return 0;
	s->mode = mode;
    }
    return 1;
}

static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
{
    ParallelCharDriver *drv = chr->opaque;
    int fd = drv->fd;
    uint8_t b;

    switch(cmd) {
    case CHR_IOCTL_PP_READ_DATA:
        if (ioctl(fd, PPRDATA, &b) < 0)
            return -ENOTSUP;
        *(uint8_t *)arg = b;
        break;
    case CHR_IOCTL_PP_WRITE_DATA:
        b = *(uint8_t *)arg;
        if (ioctl(fd, PPWDATA, &b) < 0)
            return -ENOTSUP;
        break;
    case CHR_IOCTL_PP_READ_CONTROL:
        if (ioctl(fd, PPRCONTROL, &b) < 0)
            return -ENOTSUP;
	/* Linux gives only the lowest bits, and no way to know data
	   direction! For better compatibility set the fixed upper
	   bits. */
        *(uint8_t *)arg = b | 0xc0;
        break;
    case CHR_IOCTL_PP_WRITE_CONTROL:
        b = *(uint8_t *)arg;
        if (ioctl(fd, PPWCONTROL, &b) < 0)
            return -ENOTSUP;
        break;
    case CHR_IOCTL_PP_READ_STATUS:
        if (ioctl(fd, PPRSTATUS, &b) < 0)
            return -ENOTSUP;
        *(uint8_t *)arg = b;
        break;
    case CHR_IOCTL_PP_DATA_DIR:
        if (ioctl(fd, PPDATADIR, (int *)arg) < 0)
            return -ENOTSUP;
        break;
    case CHR_IOCTL_PP_EPP_READ_ADDR:
	if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
	    struct ParallelIOArg *parg = arg;
	    int n = read(fd, parg->buffer, parg->count);
	    if (n != parg->count) {
		return -EIO;
	    }
	}
        break;
    case CHR_IOCTL_PP_EPP_READ:
	if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
	    struct ParallelIOArg *parg = arg;
	    int n = read(fd, parg->buffer, parg->count);
	    if (n != parg->count) {
		return -EIO;
	    }
	}
        break;
    case CHR_IOCTL_PP_EPP_WRITE_ADDR:
	if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
	    struct ParallelIOArg *parg = arg;
	    int n = write(fd, parg->buffer, parg->count);
	    if (n != parg->count) {
		return -EIO;
	    }
	}
        break;
    case CHR_IOCTL_PP_EPP_WRITE:
	if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
	    struct ParallelIOArg *parg = arg;
	    int n = write(fd, parg->buffer, parg->count);
	    if (n != parg->count) {
		return -EIO;
	    }
	}
        break;
    default:
        return -ENOTSUP;
    }
    return 0;
}

static void pp_close(CharDriverState *chr)
{
    ParallelCharDriver *drv = chr->opaque;
    int fd = drv->fd;

    pp_hw_mode(drv, IEEE1284_MODE_COMPAT);
    ioctl(fd, PPRELEASE);
    close(fd);
1349
    g_free(drv);
1350
    qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
A
aliguori 已提交
1351 1352
}

1353
static CharDriverState *qemu_chr_open_pp(QemuOpts *opts)
A
aliguori 已提交
1354
{
1355
    const char *filename = qemu_opt_get(opts, "path");
A
aliguori 已提交
1356 1357 1358 1359
    CharDriverState *chr;
    ParallelCharDriver *drv;
    int fd;

1360
    TFR(fd = qemu_open(filename, O_RDWR));
1361
    if (fd < 0) {
1362
        return NULL;
1363
    }
A
aliguori 已提交
1364 1365 1366

    if (ioctl(fd, PPCLAIM) < 0) {
        close(fd);
1367
        return NULL;
A
aliguori 已提交
1368 1369
    }

1370
    drv = g_malloc0(sizeof(ParallelCharDriver));
A
aliguori 已提交
1371 1372 1373
    drv->fd = fd;
    drv->mode = IEEE1284_MODE_COMPAT;

1374
    chr = g_malloc0(sizeof(CharDriverState));
A
aliguori 已提交
1375 1376 1377 1378 1379
    chr->chr_write = null_chr_write;
    chr->chr_ioctl = pp_ioctl;
    chr->chr_close = pp_close;
    chr->opaque = drv;

1380
    qemu_chr_generic_open(chr);
A
aliguori 已提交
1381

1382
    return chr;
A
aliguori 已提交
1383 1384 1385
}
#endif /* __linux__ */

A
Aurelien Jarno 已提交
1386
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
1387 1388
static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
{
1389
    int fd = (int)(intptr_t)chr->opaque;
1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
    uint8_t b;

    switch(cmd) {
    case CHR_IOCTL_PP_READ_DATA:
        if (ioctl(fd, PPIGDATA, &b) < 0)
            return -ENOTSUP;
        *(uint8_t *)arg = b;
        break;
    case CHR_IOCTL_PP_WRITE_DATA:
        b = *(uint8_t *)arg;
        if (ioctl(fd, PPISDATA, &b) < 0)
            return -ENOTSUP;
        break;
    case CHR_IOCTL_PP_READ_CONTROL:
        if (ioctl(fd, PPIGCTRL, &b) < 0)
            return -ENOTSUP;
        *(uint8_t *)arg = b;
        break;
    case CHR_IOCTL_PP_WRITE_CONTROL:
        b = *(uint8_t *)arg;
        if (ioctl(fd, PPISCTRL, &b) < 0)
            return -ENOTSUP;
        break;
    case CHR_IOCTL_PP_READ_STATUS:
        if (ioctl(fd, PPIGSTATUS, &b) < 0)
            return -ENOTSUP;
        *(uint8_t *)arg = b;
        break;
    default:
        return -ENOTSUP;
    }
    return 0;
}

1424
static CharDriverState *qemu_chr_open_pp(QemuOpts *opts)
1425
{
1426
    const char *filename = qemu_opt_get(opts, "path");
1427 1428 1429
    CharDriverState *chr;
    int fd;

1430
    fd = qemu_open(filename, O_RDWR);
1431
    if (fd < 0) {
1432
        return NULL;
1433
    }
1434

1435
    chr = g_malloc0(sizeof(CharDriverState));
1436
    chr->opaque = (void *)(intptr_t)fd;
1437 1438
    chr->chr_write = null_chr_write;
    chr->chr_ioctl = pp_ioctl;
1439
    return chr;
1440 1441 1442
}
#endif

A
aliguori 已提交
1443 1444
#else /* _WIN32 */

F
Fabien Chouteau 已提交
1445 1446
static CharDriverState *stdio_clients[STDIO_MAX_CLIENTS];

A
aliguori 已提交
1447 1448 1449 1450 1451 1452 1453 1454
typedef struct {
    int max_size;
    HANDLE hcom, hrecv, hsend;
    OVERLAPPED orecv, osend;
    BOOL fpipe;
    DWORD len;
} WinCharState;

F
Fabien Chouteau 已提交
1455 1456 1457 1458 1459 1460 1461 1462
typedef struct {
    HANDLE  hStdIn;
    HANDLE  hInputReadyEvent;
    HANDLE  hInputDoneEvent;
    HANDLE  hInputThread;
    uint8_t win_stdio_buf;
} WinStdioCharState;

A
aliguori 已提交
1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490
#define NSENDBUF 2048
#define NRECVBUF 2048
#define MAXCONNECT 1
#define NTIMEOUT 5000

static int win_chr_poll(void *opaque);
static int win_chr_pipe_poll(void *opaque);

static void win_chr_close(CharDriverState *chr)
{
    WinCharState *s = chr->opaque;

    if (s->hsend) {
        CloseHandle(s->hsend);
        s->hsend = NULL;
    }
    if (s->hrecv) {
        CloseHandle(s->hrecv);
        s->hrecv = NULL;
    }
    if (s->hcom) {
        CloseHandle(s->hcom);
        s->hcom = NULL;
    }
    if (s->fpipe)
        qemu_del_polling_cb(win_chr_pipe_poll, chr);
    else
        qemu_del_polling_cb(win_chr_poll, chr);
1491

1492
    qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
A
aliguori 已提交
1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599
}

static int win_chr_init(CharDriverState *chr, const char *filename)
{
    WinCharState *s = chr->opaque;
    COMMCONFIG comcfg;
    COMMTIMEOUTS cto = { 0, 0, 0, 0, 0};
    COMSTAT comstat;
    DWORD size;
    DWORD err;

    s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
    if (!s->hsend) {
        fprintf(stderr, "Failed CreateEvent\n");
        goto fail;
    }
    s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
    if (!s->hrecv) {
        fprintf(stderr, "Failed CreateEvent\n");
        goto fail;
    }

    s->hcom = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, NULL,
                      OPEN_EXISTING, FILE_FLAG_OVERLAPPED, 0);
    if (s->hcom == INVALID_HANDLE_VALUE) {
        fprintf(stderr, "Failed CreateFile (%lu)\n", GetLastError());
        s->hcom = NULL;
        goto fail;
    }

    if (!SetupComm(s->hcom, NRECVBUF, NSENDBUF)) {
        fprintf(stderr, "Failed SetupComm\n");
        goto fail;
    }

    ZeroMemory(&comcfg, sizeof(COMMCONFIG));
    size = sizeof(COMMCONFIG);
    GetDefaultCommConfig(filename, &comcfg, &size);
    comcfg.dcb.DCBlength = sizeof(DCB);
    CommConfigDialog(filename, NULL, &comcfg);

    if (!SetCommState(s->hcom, &comcfg.dcb)) {
        fprintf(stderr, "Failed SetCommState\n");
        goto fail;
    }

    if (!SetCommMask(s->hcom, EV_ERR)) {
        fprintf(stderr, "Failed SetCommMask\n");
        goto fail;
    }

    cto.ReadIntervalTimeout = MAXDWORD;
    if (!SetCommTimeouts(s->hcom, &cto)) {
        fprintf(stderr, "Failed SetCommTimeouts\n");
        goto fail;
    }

    if (!ClearCommError(s->hcom, &err, &comstat)) {
        fprintf(stderr, "Failed ClearCommError\n");
        goto fail;
    }
    qemu_add_polling_cb(win_chr_poll, chr);
    return 0;

 fail:
    win_chr_close(chr);
    return -1;
}

static int win_chr_write(CharDriverState *chr, const uint8_t *buf, int len1)
{
    WinCharState *s = chr->opaque;
    DWORD len, ret, size, err;

    len = len1;
    ZeroMemory(&s->osend, sizeof(s->osend));
    s->osend.hEvent = s->hsend;
    while (len > 0) {
        if (s->hsend)
            ret = WriteFile(s->hcom, buf, len, &size, &s->osend);
        else
            ret = WriteFile(s->hcom, buf, len, &size, NULL);
        if (!ret) {
            err = GetLastError();
            if (err == ERROR_IO_PENDING) {
                ret = GetOverlappedResult(s->hcom, &s->osend, &size, TRUE);
                if (ret) {
                    buf += size;
                    len -= size;
                } else {
                    break;
                }
            } else {
                break;
            }
        } else {
            buf += size;
            len -= size;
        }
    }
    return len1 - len;
}

static int win_chr_read_poll(CharDriverState *chr)
{
    WinCharState *s = chr->opaque;

1600
    s->max_size = qemu_chr_be_can_write(chr);
A
aliguori 已提交
1601 1602 1603 1604 1605 1606 1607
    return s->max_size;
}

static void win_chr_readfile(CharDriverState *chr)
{
    WinCharState *s = chr->opaque;
    int ret, err;
1608
    uint8_t buf[READ_BUF_LEN];
A
aliguori 已提交
1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621
    DWORD size;

    ZeroMemory(&s->orecv, sizeof(s->orecv));
    s->orecv.hEvent = s->hrecv;
    ret = ReadFile(s->hcom, buf, s->len, &size, &s->orecv);
    if (!ret) {
        err = GetLastError();
        if (err == ERROR_IO_PENDING) {
            ret = GetOverlappedResult(s->hcom, &s->orecv, &size, TRUE);
        }
    }

    if (size > 0) {
1622
        qemu_chr_be_write(chr, buf, size);
A
aliguori 已提交
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
    }
}

static void win_chr_read(CharDriverState *chr)
{
    WinCharState *s = chr->opaque;

    if (s->len > s->max_size)
        s->len = s->max_size;
    if (s->len == 0)
        return;

    win_chr_readfile(chr);
}

static int win_chr_poll(void *opaque)
{
    CharDriverState *chr = opaque;
    WinCharState *s = chr->opaque;
    COMSTAT status;
    DWORD comerr;

    ClearCommError(s->hcom, &comerr, &status);
    if (status.cbInQue > 0) {
        s->len = status.cbInQue;
        win_chr_read_poll(chr);
        win_chr_read(chr);
        return 1;
    }
    return 0;
}

1655
static CharDriverState *qemu_chr_open_win(QemuOpts *opts)
A
aliguori 已提交
1656
{
1657
    const char *filename = qemu_opt_get(opts, "path");
A
aliguori 已提交
1658 1659 1660
    CharDriverState *chr;
    WinCharState *s;

1661 1662
    chr = g_malloc0(sizeof(CharDriverState));
    s = g_malloc0(sizeof(WinCharState));
A
aliguori 已提交
1663 1664 1665 1666 1667
    chr->opaque = s;
    chr->chr_write = win_chr_write;
    chr->chr_close = win_chr_close;

    if (win_chr_init(chr, filename) < 0) {
1668 1669
        g_free(s);
        g_free(chr);
1670
        return NULL;
A
aliguori 已提交
1671
    }
1672
    qemu_chr_generic_open(chr);
1673
    return chr;
A
aliguori 已提交
1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754
}

static int win_chr_pipe_poll(void *opaque)
{
    CharDriverState *chr = opaque;
    WinCharState *s = chr->opaque;
    DWORD size;

    PeekNamedPipe(s->hcom, NULL, 0, NULL, &size, NULL);
    if (size > 0) {
        s->len = size;
        win_chr_read_poll(chr);
        win_chr_read(chr);
        return 1;
    }
    return 0;
}

static int win_chr_pipe_init(CharDriverState *chr, const char *filename)
{
    WinCharState *s = chr->opaque;
    OVERLAPPED ov;
    int ret;
    DWORD size;
    char openname[256];

    s->fpipe = TRUE;

    s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
    if (!s->hsend) {
        fprintf(stderr, "Failed CreateEvent\n");
        goto fail;
    }
    s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
    if (!s->hrecv) {
        fprintf(stderr, "Failed CreateEvent\n");
        goto fail;
    }

    snprintf(openname, sizeof(openname), "\\\\.\\pipe\\%s", filename);
    s->hcom = CreateNamedPipe(openname, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
                              PIPE_TYPE_BYTE | PIPE_READMODE_BYTE |
                              PIPE_WAIT,
                              MAXCONNECT, NSENDBUF, NRECVBUF, NTIMEOUT, NULL);
    if (s->hcom == INVALID_HANDLE_VALUE) {
        fprintf(stderr, "Failed CreateNamedPipe (%lu)\n", GetLastError());
        s->hcom = NULL;
        goto fail;
    }

    ZeroMemory(&ov, sizeof(ov));
    ov.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
    ret = ConnectNamedPipe(s->hcom, &ov);
    if (ret) {
        fprintf(stderr, "Failed ConnectNamedPipe\n");
        goto fail;
    }

    ret = GetOverlappedResult(s->hcom, &ov, &size, TRUE);
    if (!ret) {
        fprintf(stderr, "Failed GetOverlappedResult\n");
        if (ov.hEvent) {
            CloseHandle(ov.hEvent);
            ov.hEvent = NULL;
        }
        goto fail;
    }

    if (ov.hEvent) {
        CloseHandle(ov.hEvent);
        ov.hEvent = NULL;
    }
    qemu_add_polling_cb(win_chr_pipe_poll, chr);
    return 0;

 fail:
    win_chr_close(chr);
    return -1;
}


1755
static CharDriverState *qemu_chr_open_win_pipe(QemuOpts *opts)
A
aliguori 已提交
1756
{
1757
    const char *filename = qemu_opt_get(opts, "path");
A
aliguori 已提交
1758 1759 1760
    CharDriverState *chr;
    WinCharState *s;

1761 1762
    chr = g_malloc0(sizeof(CharDriverState));
    s = g_malloc0(sizeof(WinCharState));
A
aliguori 已提交
1763 1764 1765 1766 1767
    chr->opaque = s;
    chr->chr_write = win_chr_write;
    chr->chr_close = win_chr_close;

    if (win_chr_pipe_init(chr, filename) < 0) {
1768 1769
        g_free(s);
        g_free(chr);
1770
        return NULL;
A
aliguori 已提交
1771
    }
1772
    qemu_chr_generic_open(chr);
1773
    return chr;
A
aliguori 已提交
1774 1775
}

1776
static CharDriverState *qemu_chr_open_win_file(HANDLE fd_out)
A
aliguori 已提交
1777 1778 1779 1780
{
    CharDriverState *chr;
    WinCharState *s;

1781 1782
    chr = g_malloc0(sizeof(CharDriverState));
    s = g_malloc0(sizeof(WinCharState));
A
aliguori 已提交
1783 1784 1785
    s->hcom = fd_out;
    chr->opaque = s;
    chr->chr_write = win_chr_write;
1786
    qemu_chr_generic_open(chr);
1787
    return chr;
A
aliguori 已提交
1788 1789
}

1790
static CharDriverState *qemu_chr_open_win_con(QemuOpts *opts)
A
aliguori 已提交
1791
{
1792
    return qemu_chr_open_win_file(GetStdHandle(STD_OUTPUT_HANDLE));
A
aliguori 已提交
1793 1794
}

1795
static CharDriverState *qemu_chr_open_win_file_out(QemuOpts *opts)
A
aliguori 已提交
1796
{
1797
    const char *file_out = qemu_opt_get(opts, "path");
A
aliguori 已提交
1798 1799 1800 1801
    HANDLE fd_out;

    fd_out = CreateFile(file_out, GENERIC_WRITE, FILE_SHARE_READ, NULL,
                        OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
1802
    if (fd_out == INVALID_HANDLE_VALUE) {
1803
        return NULL;
1804
    }
A
aliguori 已提交
1805

1806
    return qemu_chr_open_win_file(fd_out);
A
aliguori 已提交
1807
}
F
Fabien Chouteau 已提交
1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946

static int win_stdio_write(CharDriverState *chr, const uint8_t *buf, int len)
{
    HANDLE  hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
    DWORD   dwSize;
    int     len1;

    len1 = len;

    while (len1 > 0) {
        if (!WriteFile(hStdOut, buf, len1, &dwSize, NULL)) {
            break;
        }
        buf  += dwSize;
        len1 -= dwSize;
    }

    return len - len1;
}

static void win_stdio_wait_func(void *opaque)
{
    CharDriverState   *chr   = opaque;
    WinStdioCharState *stdio = chr->opaque;
    INPUT_RECORD       buf[4];
    int                ret;
    DWORD              dwSize;
    int                i;

    ret = ReadConsoleInput(stdio->hStdIn, buf, sizeof(buf) / sizeof(*buf),
                           &dwSize);

    if (!ret) {
        /* Avoid error storm */
        qemu_del_wait_object(stdio->hStdIn, NULL, NULL);
        return;
    }

    for (i = 0; i < dwSize; i++) {
        KEY_EVENT_RECORD *kev = &buf[i].Event.KeyEvent;

        if (buf[i].EventType == KEY_EVENT && kev->bKeyDown) {
            int j;
            if (kev->uChar.AsciiChar != 0) {
                for (j = 0; j < kev->wRepeatCount; j++) {
                    if (qemu_chr_be_can_write(chr)) {
                        uint8_t c = kev->uChar.AsciiChar;
                        qemu_chr_be_write(chr, &c, 1);
                    }
                }
            }
        }
    }
}

static DWORD WINAPI win_stdio_thread(LPVOID param)
{
    CharDriverState   *chr   = param;
    WinStdioCharState *stdio = chr->opaque;
    int                ret;
    DWORD              dwSize;

    while (1) {

        /* Wait for one byte */
        ret = ReadFile(stdio->hStdIn, &stdio->win_stdio_buf, 1, &dwSize, NULL);

        /* Exit in case of error, continue if nothing read */
        if (!ret) {
            break;
        }
        if (!dwSize) {
            continue;
        }

        /* Some terminal emulator returns \r\n for Enter, just pass \n */
        if (stdio->win_stdio_buf == '\r') {
            continue;
        }

        /* Signal the main thread and wait until the byte was eaten */
        if (!SetEvent(stdio->hInputReadyEvent)) {
            break;
        }
        if (WaitForSingleObject(stdio->hInputDoneEvent, INFINITE)
            != WAIT_OBJECT_0) {
            break;
        }
    }

    qemu_del_wait_object(stdio->hInputReadyEvent, NULL, NULL);
    return 0;
}

static void win_stdio_thread_wait_func(void *opaque)
{
    CharDriverState   *chr   = opaque;
    WinStdioCharState *stdio = chr->opaque;

    if (qemu_chr_be_can_write(chr)) {
        qemu_chr_be_write(chr, &stdio->win_stdio_buf, 1);
    }

    SetEvent(stdio->hInputDoneEvent);
}

static void qemu_chr_set_echo_win_stdio(CharDriverState *chr, bool echo)
{
    WinStdioCharState *stdio  = chr->opaque;
    DWORD              dwMode = 0;

    GetConsoleMode(stdio->hStdIn, &dwMode);

    if (echo) {
        SetConsoleMode(stdio->hStdIn, dwMode | ENABLE_ECHO_INPUT);
    } else {
        SetConsoleMode(stdio->hStdIn, dwMode & ~ENABLE_ECHO_INPUT);
    }
}

static void win_stdio_close(CharDriverState *chr)
{
    WinStdioCharState *stdio = chr->opaque;

    if (stdio->hInputReadyEvent != INVALID_HANDLE_VALUE) {
        CloseHandle(stdio->hInputReadyEvent);
    }
    if (stdio->hInputDoneEvent != INVALID_HANDLE_VALUE) {
        CloseHandle(stdio->hInputDoneEvent);
    }
    if (stdio->hInputThread != INVALID_HANDLE_VALUE) {
        TerminateThread(stdio->hInputThread, 0);
    }

    g_free(chr->opaque);
    g_free(chr);
    stdio_nb_clients--;
}

1947
static CharDriverState *qemu_chr_open_win_stdio(QemuOpts *opts)
F
Fabien Chouteau 已提交
1948 1949 1950 1951 1952 1953 1954 1955
{
    CharDriverState   *chr;
    WinStdioCharState *stdio;
    DWORD              dwMode;
    int                is_console = 0;

    if (stdio_nb_clients >= STDIO_MAX_CLIENTS
        || ((display_type != DT_NOGRAPHIC) && (stdio_nb_clients != 0))) {
1956
        return NULL;
F
Fabien Chouteau 已提交
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014
    }

    chr   = g_malloc0(sizeof(CharDriverState));
    stdio = g_malloc0(sizeof(WinStdioCharState));

    stdio->hStdIn = GetStdHandle(STD_INPUT_HANDLE);
    if (stdio->hStdIn == INVALID_HANDLE_VALUE) {
        fprintf(stderr, "cannot open stdio: invalid handle\n");
        exit(1);
    }

    is_console = GetConsoleMode(stdio->hStdIn, &dwMode) != 0;

    chr->opaque    = stdio;
    chr->chr_write = win_stdio_write;
    chr->chr_close = win_stdio_close;

    if (stdio_nb_clients == 0) {
        if (is_console) {
            if (qemu_add_wait_object(stdio->hStdIn,
                                     win_stdio_wait_func, chr)) {
                fprintf(stderr, "qemu_add_wait_object: failed\n");
            }
        } else {
            DWORD   dwId;

            stdio->hInputReadyEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
            stdio->hInputDoneEvent  = CreateEvent(NULL, FALSE, FALSE, NULL);
            stdio->hInputThread     = CreateThread(NULL, 0, win_stdio_thread,
                                            chr, 0, &dwId);

            if (stdio->hInputThread == INVALID_HANDLE_VALUE
                || stdio->hInputReadyEvent == INVALID_HANDLE_VALUE
                || stdio->hInputDoneEvent == INVALID_HANDLE_VALUE) {
                fprintf(stderr, "cannot create stdio thread or event\n");
                exit(1);
            }
            if (qemu_add_wait_object(stdio->hInputReadyEvent,
                                     win_stdio_thread_wait_func, chr)) {
                fprintf(stderr, "qemu_add_wait_object: failed\n");
            }
        }
    }

    dwMode |= ENABLE_LINE_INPUT;

    stdio_clients[stdio_nb_clients++] = chr;
    if (stdio_nb_clients == 1 && is_console) {
        /* set the terminal in raw mode */
        /* ENABLE_QUICK_EDIT_MODE | ENABLE_EXTENDED_FLAGS */
        dwMode |= ENABLE_PROCESSED_INPUT;
    }

    SetConsoleMode(stdio->hStdIn, dwMode);

    chr->chr_set_echo = qemu_chr_set_echo_win_stdio;
    qemu_chr_fe_set_echo(chr, false);

2015
    return chr;
F
Fabien Chouteau 已提交
2016
}
A
aliguori 已提交
2017 2018 2019 2020 2021 2022 2023
#endif /* !_WIN32 */

/***********************************************************/
/* UDP Net console */

typedef struct {
    int fd;
2024
    uint8_t buf[READ_BUF_LEN];
A
aliguori 已提交
2025 2026 2027 2028 2029 2030 2031 2032 2033
    int bufcnt;
    int bufptr;
    int max_size;
} NetCharDriver;

static int udp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
{
    NetCharDriver *s = chr->opaque;

G
Gerd Hoffmann 已提交
2034
    return send(s->fd, (const void *)buf, len, 0);
A
aliguori 已提交
2035 2036 2037 2038 2039 2040 2041
}

static int udp_chr_read_poll(void *opaque)
{
    CharDriverState *chr = opaque;
    NetCharDriver *s = chr->opaque;

2042
    s->max_size = qemu_chr_be_can_write(chr);
A
aliguori 已提交
2043 2044 2045 2046 2047

    /* If there were any stray characters in the queue process them
     * first
     */
    while (s->max_size > 0 && s->bufptr < s->bufcnt) {
2048
        qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
A
aliguori 已提交
2049
        s->bufptr++;
2050
        s->max_size = qemu_chr_be_can_write(chr);
A
aliguori 已提交
2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061
    }
    return s->max_size;
}

static void udp_chr_read(void *opaque)
{
    CharDriverState *chr = opaque;
    NetCharDriver *s = chr->opaque;

    if (s->max_size == 0)
        return;
B
Blue Swirl 已提交
2062
    s->bufcnt = qemu_recv(s->fd, s->buf, sizeof(s->buf), 0);
A
aliguori 已提交
2063 2064 2065 2066 2067 2068
    s->bufptr = s->bufcnt;
    if (s->bufcnt <= 0)
        return;

    s->bufptr = 0;
    while (s->max_size > 0 && s->bufptr < s->bufcnt) {
2069
        qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
A
aliguori 已提交
2070
        s->bufptr++;
2071
        s->max_size = qemu_chr_be_can_write(chr);
A
aliguori 已提交
2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084
    }
}

static void udp_chr_update_read_handler(CharDriverState *chr)
{
    NetCharDriver *s = chr->opaque;

    if (s->fd >= 0) {
        qemu_set_fd_handler2(s->fd, udp_chr_read_poll,
                             udp_chr_read, NULL, chr);
    }
}

2085 2086 2087 2088
static void udp_chr_close(CharDriverState *chr)
{
    NetCharDriver *s = chr->opaque;
    if (s->fd >= 0) {
2089
        qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
2090 2091
        closesocket(s->fd);
    }
2092
    g_free(s);
2093
    qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
2094 2095
}

2096
static CharDriverState *qemu_chr_open_udp(QemuOpts *opts)
A
aliguori 已提交
2097 2098 2099
{
    CharDriverState *chr = NULL;
    NetCharDriver *s = NULL;
2100
    Error *local_err = NULL;
A
aliguori 已提交
2101 2102
    int fd = -1;

2103 2104
    chr = g_malloc0(sizeof(CharDriverState));
    s = g_malloc0(sizeof(NetCharDriver));
A
aliguori 已提交
2105

2106
    fd = inet_dgram_opts(opts, &local_err);
A
aliguori 已提交
2107 2108 2109 2110 2111 2112 2113 2114 2115 2116
    if (fd < 0) {
        goto return_err;
    }

    s->fd = fd;
    s->bufcnt = 0;
    s->bufptr = 0;
    chr->opaque = s;
    chr->chr_write = udp_chr_write;
    chr->chr_update_read_handler = udp_chr_update_read_handler;
2117
    chr->chr_close = udp_chr_close;
2118
    return chr;
A
aliguori 已提交
2119 2120

return_err:
2121 2122 2123 2124
    if (local_err) {
        qerror_report_err(local_err);
        error_free(local_err);
    }
2125 2126
    g_free(chr);
    g_free(s);
2127
    if (fd >= 0) {
A
aliguori 已提交
2128
        closesocket(fd);
2129
    }
2130
    return NULL;
A
aliguori 已提交
2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142
}

/***********************************************************/
/* TCP Net console */

typedef struct {
    int fd, listen_fd;
    int connected;
    int max_size;
    int do_telnetopt;
    int do_nodelay;
    int is_unix;
2143
    int msgfd;
A
aliguori 已提交
2144 2145 2146 2147 2148 2149 2150 2151 2152
} TCPCharDriver;

static void tcp_chr_accept(void *opaque);

static int tcp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
{
    TCPCharDriver *s = chr->opaque;
    if (s->connected) {
        return send_all(s->fd, buf, len);
2153
    } else {
2154
        /* XXX: indicate an error ? */
2155
        return len;
A
aliguori 已提交
2156 2157 2158 2159 2160 2161 2162 2163 2164
    }
}

static int tcp_chr_read_poll(void *opaque)
{
    CharDriverState *chr = opaque;
    TCPCharDriver *s = chr->opaque;
    if (!s->connected)
        return 0;
2165
    s->max_size = qemu_chr_be_can_write(chr);
A
aliguori 已提交
2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197
    return s->max_size;
}

#define IAC 255
#define IAC_BREAK 243
static void tcp_chr_process_IAC_bytes(CharDriverState *chr,
                                      TCPCharDriver *s,
                                      uint8_t *buf, int *size)
{
    /* Handle any telnet client's basic IAC options to satisfy char by
     * char mode with no echo.  All IAC options will be removed from
     * the buf and the do_telnetopt variable will be used to track the
     * state of the width of the IAC information.
     *
     * IAC commands come in sets of 3 bytes with the exception of the
     * "IAC BREAK" command and the double IAC.
     */

    int i;
    int j = 0;

    for (i = 0; i < *size; i++) {
        if (s->do_telnetopt > 1) {
            if ((unsigned char)buf[i] == IAC && s->do_telnetopt == 2) {
                /* Double IAC means send an IAC */
                if (j != i)
                    buf[j] = buf[i];
                j++;
                s->do_telnetopt = 1;
            } else {
                if ((unsigned char)buf[i] == IAC_BREAK && s->do_telnetopt == 2) {
                    /* Handle IAC break commands by sending a serial break */
2198
                    qemu_chr_be_event(chr, CHR_EVENT_BREAK);
A
aliguori 已提交
2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218
                    s->do_telnetopt++;
                }
                s->do_telnetopt++;
            }
            if (s->do_telnetopt >= 4) {
                s->do_telnetopt = 1;
            }
        } else {
            if ((unsigned char)buf[i] == IAC) {
                s->do_telnetopt = 2;
            } else {
                if (j != i)
                    buf[j] = buf[i];
                j++;
            }
        }
    }
    *size = j;
}

2219 2220 2221
static int tcp_get_msgfd(CharDriverState *chr)
{
    TCPCharDriver *s = chr->opaque;
2222 2223 2224
    int fd = s->msgfd;
    s->msgfd = -1;
    return fd;
2225 2226
}

A
Anthony Liguori 已提交
2227
#ifndef _WIN32
2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244
static void unix_process_msgfd(CharDriverState *chr, struct msghdr *msg)
{
    TCPCharDriver *s = chr->opaque;
    struct cmsghdr *cmsg;

    for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
        int fd;

        if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)) ||
            cmsg->cmsg_level != SOL_SOCKET ||
            cmsg->cmsg_type != SCM_RIGHTS)
            continue;

        fd = *((int *)CMSG_DATA(cmsg));
        if (fd < 0)
            continue;

2245 2246 2247
#ifndef MSG_CMSG_CLOEXEC
        qemu_set_cloexec(fd);
#endif
2248 2249 2250 2251 2252 2253
        if (s->msgfd != -1)
            close(s->msgfd);
        s->msgfd = fd;
    }
}

2254 2255 2256
static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
{
    TCPCharDriver *s = chr->opaque;
B
Blue Swirl 已提交
2257
    struct msghdr msg = { NULL, };
2258
    struct iovec iov[1];
2259 2260 2261 2262
    union {
        struct cmsghdr cmsg;
        char control[CMSG_SPACE(sizeof(int))];
    } msg_control;
2263
    int flags = 0;
2264
    ssize_t ret;
2265 2266 2267 2268 2269 2270

    iov[0].iov_base = buf;
    iov[0].iov_len = len;

    msg.msg_iov = iov;
    msg.msg_iovlen = 1;
2271 2272 2273
    msg.msg_control = &msg_control;
    msg.msg_controllen = sizeof(msg_control);

2274 2275 2276 2277 2278
#ifdef MSG_CMSG_CLOEXEC
    flags |= MSG_CMSG_CLOEXEC;
#endif
    ret = recvmsg(s->fd, &msg, flags);
    if (ret > 0 && s->is_unix) {
2279
        unix_process_msgfd(chr, &msg);
2280
    }
2281

2282
    return ret;
2283 2284 2285 2286 2287
}
#else
static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
{
    TCPCharDriver *s = chr->opaque;
B
Blue Swirl 已提交
2288
    return qemu_recv(s->fd, buf, len, 0);
2289 2290 2291
}
#endif

A
aliguori 已提交
2292 2293 2294 2295
static void tcp_chr_read(void *opaque)
{
    CharDriverState *chr = opaque;
    TCPCharDriver *s = chr->opaque;
2296
    uint8_t buf[READ_BUF_LEN];
A
aliguori 已提交
2297 2298 2299 2300 2301 2302 2303
    int len, size;

    if (!s->connected || s->max_size <= 0)
        return;
    len = sizeof(buf);
    if (len > s->max_size)
        len = s->max_size;
2304
    size = tcp_chr_recv(chr, (void *)buf, len);
A
aliguori 已提交
2305 2306 2307 2308
    if (size == 0) {
        /* connection closed */
        s->connected = 0;
        if (s->listen_fd >= 0) {
2309
            qemu_set_fd_handler2(s->listen_fd, NULL, tcp_chr_accept, NULL, chr);
A
aliguori 已提交
2310
        }
2311
        qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
A
aliguori 已提交
2312 2313
        closesocket(s->fd);
        s->fd = -1;
2314
        qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
A
aliguori 已提交
2315 2316 2317 2318
    } else if (size > 0) {
        if (s->do_telnetopt)
            tcp_chr_process_IAC_bytes(chr, s, buf, &size);
        if (size > 0)
2319
            qemu_chr_be_write(chr, buf, size);
A
aliguori 已提交
2320 2321 2322
    }
}

B
Blue Swirl 已提交
2323 2324 2325
#ifndef _WIN32
CharDriverState *qemu_chr_open_eventfd(int eventfd)
{
2326 2327
    return qemu_chr_open_fd(eventfd, eventfd);
}
B
Blue Swirl 已提交
2328
#endif
2329

A
aliguori 已提交
2330 2331 2332 2333 2334 2335
static void tcp_chr_connect(void *opaque)
{
    CharDriverState *chr = opaque;
    TCPCharDriver *s = chr->opaque;

    s->connected = 1;
2336 2337 2338 2339
    if (s->fd >= 0) {
        qemu_set_fd_handler2(s->fd, tcp_chr_read_poll,
                             tcp_chr_read, NULL, chr);
    }
2340
    qemu_chr_generic_open(chr);
A
aliguori 已提交
2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363
}

#define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
static void tcp_chr_telnet_init(int fd)
{
    char buf[3];
    /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
    IACSET(buf, 0xff, 0xfb, 0x01);  /* IAC WILL ECHO */
    send(fd, (char *)buf, 3, 0);
    IACSET(buf, 0xff, 0xfb, 0x03);  /* IAC WILL Suppress go ahead */
    send(fd, (char *)buf, 3, 0);
    IACSET(buf, 0xff, 0xfb, 0x00);  /* IAC WILL Binary */
    send(fd, (char *)buf, 3, 0);
    IACSET(buf, 0xff, 0xfd, 0x00);  /* IAC DO Binary */
    send(fd, (char *)buf, 3, 0);
}

static void socket_set_nodelay(int fd)
{
    int val = 1;
    setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *)&val, sizeof(val));
}

2364 2365 2366 2367 2368 2369 2370 2371 2372 2373
static int tcp_chr_add_client(CharDriverState *chr, int fd)
{
    TCPCharDriver *s = chr->opaque;
    if (s->fd != -1)
	return -1;

    socket_set_nonblock(fd);
    if (s->do_nodelay)
        socket_set_nodelay(fd);
    s->fd = fd;
2374
    qemu_set_fd_handler2(s->listen_fd, NULL, NULL, NULL, NULL);
2375 2376 2377 2378 2379
    tcp_chr_connect(chr);

    return 0;
}

A
aliguori 已提交
2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402
static void tcp_chr_accept(void *opaque)
{
    CharDriverState *chr = opaque;
    TCPCharDriver *s = chr->opaque;
    struct sockaddr_in saddr;
#ifndef _WIN32
    struct sockaddr_un uaddr;
#endif
    struct sockaddr *addr;
    socklen_t len;
    int fd;

    for(;;) {
#ifndef _WIN32
	if (s->is_unix) {
	    len = sizeof(uaddr);
	    addr = (struct sockaddr *)&uaddr;
	} else
#endif
	{
	    len = sizeof(saddr);
	    addr = (struct sockaddr *)&saddr;
	}
K
Kevin Wolf 已提交
2403
        fd = qemu_accept(s->listen_fd, addr, &len);
A
aliguori 已提交
2404 2405 2406 2407 2408 2409 2410 2411
        if (fd < 0 && errno != EINTR) {
            return;
        } else if (fd >= 0) {
            if (s->do_telnetopt)
                tcp_chr_telnet_init(fd);
            break;
        }
    }
2412 2413
    if (tcp_chr_add_client(chr, fd) < 0)
	close(fd);
A
aliguori 已提交
2414 2415 2416 2417 2418
}

static void tcp_chr_close(CharDriverState *chr)
{
    TCPCharDriver *s = chr->opaque;
2419
    if (s->fd >= 0) {
2420
        qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
A
aliguori 已提交
2421
        closesocket(s->fd);
2422 2423
    }
    if (s->listen_fd >= 0) {
2424
        qemu_set_fd_handler2(s->listen_fd, NULL, NULL, NULL, NULL);
A
aliguori 已提交
2425
        closesocket(s->listen_fd);
2426
    }
2427
    g_free(s);
2428
    qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
A
aliguori 已提交
2429 2430
}

2431
static CharDriverState *qemu_chr_open_socket(QemuOpts *opts)
A
aliguori 已提交
2432 2433 2434
{
    CharDriverState *chr = NULL;
    TCPCharDriver *s = NULL;
2435
    Error *local_err = NULL;
2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447
    int fd = -1;
    int is_listen;
    int is_waitconnect;
    int do_nodelay;
    int is_unix;
    int is_telnet;

    is_listen      = qemu_opt_get_bool(opts, "server", 0);
    is_waitconnect = qemu_opt_get_bool(opts, "wait", 1);
    is_telnet      = qemu_opt_get_bool(opts, "telnet", 0);
    do_nodelay     = !qemu_opt_get_bool(opts, "delay", 1);
    is_unix        = qemu_opt_get(opts, "path") != NULL;
A
aliguori 已提交
2448 2449 2450
    if (!is_listen)
        is_waitconnect = 0;

2451 2452
    chr = g_malloc0(sizeof(CharDriverState));
    s = g_malloc0(sizeof(TCPCharDriver));
A
aliguori 已提交
2453

2454 2455
    if (is_unix) {
        if (is_listen) {
2456
            fd = unix_listen_opts(opts, &local_err);
2457
        } else {
2458
            fd = unix_connect_opts(opts, &local_err, NULL, NULL);
2459 2460 2461
        }
    } else {
        if (is_listen) {
2462
            fd = inet_listen_opts(opts, 0, &local_err);
2463
        } else {
2464
            fd = inet_connect_opts(opts, &local_err, NULL, NULL);
2465 2466
        }
    }
2467
    if (fd < 0) {
A
aliguori 已提交
2468
        goto fail;
2469
    }
A
aliguori 已提交
2470 2471 2472 2473 2474 2475 2476

    if (!is_waitconnect)
        socket_set_nonblock(fd);

    s->connected = 0;
    s->fd = -1;
    s->listen_fd = -1;
2477
    s->msgfd = -1;
A
aliguori 已提交
2478 2479 2480 2481 2482 2483
    s->is_unix = is_unix;
    s->do_nodelay = do_nodelay && !is_unix;

    chr->opaque = s;
    chr->chr_write = tcp_chr_write;
    chr->chr_close = tcp_chr_close;
2484
    chr->get_msgfd = tcp_get_msgfd;
2485
    chr->chr_add_client = tcp_chr_add_client;
A
aliguori 已提交
2486 2487 2488

    if (is_listen) {
        s->listen_fd = fd;
2489
        qemu_set_fd_handler2(s->listen_fd, NULL, tcp_chr_accept, NULL, chr);
A
aliguori 已提交
2490 2491
        if (is_telnet)
            s->do_telnetopt = 1;
2492

A
aliguori 已提交
2493
    } else {
2494
        s->connected = 1;
A
aliguori 已提交
2495 2496
        s->fd = fd;
        socket_set_nodelay(fd);
2497
        tcp_chr_connect(chr);
A
aliguori 已提交
2498 2499
    }

2500
    /* for "info chardev" monitor command */
2501
    chr->filename = g_malloc(256);
2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515
    if (is_unix) {
        snprintf(chr->filename, 256, "unix:%s%s",
                 qemu_opt_get(opts, "path"),
                 qemu_opt_get_bool(opts, "server", 0) ? ",server" : "");
    } else if (is_telnet) {
        snprintf(chr->filename, 256, "telnet:%s:%s%s",
                 qemu_opt_get(opts, "host"), qemu_opt_get(opts, "port"),
                 qemu_opt_get_bool(opts, "server", 0) ? ",server" : "");
    } else {
        snprintf(chr->filename, 256, "tcp:%s:%s%s",
                 qemu_opt_get(opts, "host"), qemu_opt_get(opts, "port"),
                 qemu_opt_get_bool(opts, "server", 0) ? ",server" : "");
    }

A
aliguori 已提交
2516
    if (is_listen && is_waitconnect) {
2517
        printf("QEMU waiting for connection on: %s\n",
2518
               chr->filename);
A
aliguori 已提交
2519 2520 2521
        tcp_chr_accept(chr);
        socket_set_nonblock(s->listen_fd);
    }
2522
    return chr;
2523

A
aliguori 已提交
2524
 fail:
2525 2526 2527 2528 2529
    if (local_err) {
        qerror_report_err(local_err);
        error_free(local_err);
    }
    if (fd >= 0) {
A
aliguori 已提交
2530
        closesocket(fd);
2531
    }
2532 2533
    g_free(s);
    g_free(chr);
2534
    return NULL;
A
aliguori 已提交
2535 2536
}

2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554
/***********************************************************/
/* Memory chardev */
typedef struct {
    size_t outbuf_size;
    size_t outbuf_capacity;
    uint8_t *outbuf;
} MemoryDriver;

static int mem_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
{
    MemoryDriver *d = chr->opaque;

    /* TODO: the QString implementation has the same code, we should
     * introduce a generic way to do this in cutils.c */
    if (d->outbuf_capacity < d->outbuf_size + len) {
        /* grow outbuf */
        d->outbuf_capacity += len;
        d->outbuf_capacity *= 2;
2555
        d->outbuf = g_realloc(d->outbuf, d->outbuf_capacity);
2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567
    }

    memcpy(d->outbuf + d->outbuf_size, buf, len);
    d->outbuf_size += len;

    return len;
}

void qemu_chr_init_mem(CharDriverState *chr)
{
    MemoryDriver *d;

2568
    d = g_malloc(sizeof(*d));
2569 2570
    d->outbuf_size = 0;
    d->outbuf_capacity = 4096;
2571
    d->outbuf = g_malloc0(d->outbuf_capacity);
2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583

    memset(chr, 0, sizeof(*chr));
    chr->opaque = d;
    chr->chr_write = mem_chr_write;
}

QString *qemu_chr_mem_to_qs(CharDriverState *chr)
{
    MemoryDriver *d = chr->opaque;
    return qstring_from_substr((char *) d->outbuf, 0, d->outbuf_size - 1);
}

2584
/* NOTE: this driver can not be closed with qemu_chr_delete()! */
2585 2586 2587 2588
void qemu_chr_close_mem(CharDriverState *chr)
{
    MemoryDriver *d = chr->opaque;

2589 2590
    g_free(d->outbuf);
    g_free(chr->opaque);
2591 2592 2593 2594 2595 2596 2597 2598 2599 2600
    chr->opaque = NULL;
    chr->chr_write = NULL;
}

size_t qemu_chr_mem_osize(const CharDriverState *chr)
{
    const MemoryDriver *d = chr->opaque;
    return d->outbuf_size;
}

G
Gerd Hoffmann 已提交
2601
QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
2602
{
G
Gerd Hoffmann 已提交
2603
    char host[65], port[33], width[8], height[8];
2604
    int pos;
2605
    const char *p;
2606
    QemuOpts *opts;
2607
    Error *local_err = NULL;
2608

2609 2610 2611 2612
    opts = qemu_opts_create(qemu_find_opts("chardev"), label, 1, &local_err);
    if (error_is_set(&local_err)) {
        qerror_report_err(local_err);
        error_free(local_err);
2613
        return NULL;
2614
    }
2615

G
Gerd Hoffmann 已提交
2616 2617 2618 2619 2620
    if (strstart(filename, "mon:", &p)) {
        filename = p;
        qemu_opt_set(opts, "mux", "on");
    }

2621 2622 2623
    if (strcmp(filename, "null")    == 0 ||
        strcmp(filename, "pty")     == 0 ||
        strcmp(filename, "msmouse") == 0 ||
2624
        strcmp(filename, "braille") == 0 ||
2625
        strcmp(filename, "stdio")   == 0) {
G
Gerd Hoffmann 已提交
2626
        qemu_opt_set(opts, "backend", filename);
2627 2628
        return opts;
    }
G
Gerd Hoffmann 已提交
2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645
    if (strstart(filename, "vc", &p)) {
        qemu_opt_set(opts, "backend", "vc");
        if (*p == ':') {
            if (sscanf(p+1, "%8[0-9]x%8[0-9]", width, height) == 2) {
                /* pixels */
                qemu_opt_set(opts, "width", width);
                qemu_opt_set(opts, "height", height);
            } else if (sscanf(p+1, "%8[0-9]Cx%8[0-9]C", width, height) == 2) {
                /* chars */
                qemu_opt_set(opts, "cols", width);
                qemu_opt_set(opts, "rows", height);
            } else {
                goto fail;
            }
        }
        return opts;
    }
2646 2647 2648 2649
    if (strcmp(filename, "con:") == 0) {
        qemu_opt_set(opts, "backend", "console");
        return opts;
    }
2650 2651 2652 2653 2654
    if (strstart(filename, "COM", NULL)) {
        qemu_opt_set(opts, "backend", "serial");
        qemu_opt_set(opts, "path", filename);
        return opts;
    }
2655 2656 2657 2658 2659 2660 2661 2662 2663 2664
    if (strstart(filename, "file:", &p)) {
        qemu_opt_set(opts, "backend", "file");
        qemu_opt_set(opts, "path", p);
        return opts;
    }
    if (strstart(filename, "pipe:", &p)) {
        qemu_opt_set(opts, "backend", "pipe");
        qemu_opt_set(opts, "path", p);
        return opts;
    }
2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682
    if (strstart(filename, "tcp:", &p) ||
        strstart(filename, "telnet:", &p)) {
        if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
            host[0] = 0;
            if (sscanf(p, ":%32[^,]%n", port, &pos) < 1)
                goto fail;
        }
        qemu_opt_set(opts, "backend", "socket");
        qemu_opt_set(opts, "host", host);
        qemu_opt_set(opts, "port", port);
        if (p[pos] == ',') {
            if (qemu_opts_do_parse(opts, p+pos+1, NULL) != 0)
                goto fail;
        }
        if (strstart(filename, "telnet:", &p))
            qemu_opt_set(opts, "telnet", "on");
        return opts;
    }
G
Gerd Hoffmann 已提交
2683 2684 2685 2686
    if (strstart(filename, "udp:", &p)) {
        qemu_opt_set(opts, "backend", "udp");
        if (sscanf(p, "%64[^:]:%32[^@,]%n", host, port, &pos) < 2) {
            host[0] = 0;
2687
            if (sscanf(p, ":%32[^@,]%n", port, &pos) < 1) {
G
Gerd Hoffmann 已提交
2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705
                goto fail;
            }
        }
        qemu_opt_set(opts, "host", host);
        qemu_opt_set(opts, "port", port);
        if (p[pos] == '@') {
            p += pos + 1;
            if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
                host[0] = 0;
                if (sscanf(p, ":%32[^,]%n", port, &pos) < 1) {
                    goto fail;
                }
            }
            qemu_opt_set(opts, "localaddr", host);
            qemu_opt_set(opts, "localport", port);
        }
        return opts;
    }
2706 2707 2708 2709 2710 2711
    if (strstart(filename, "unix:", &p)) {
        qemu_opt_set(opts, "backend", "socket");
        if (qemu_opts_do_parse(opts, p, "path") != 0)
            goto fail;
        return opts;
    }
2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722
    if (strstart(filename, "/dev/parport", NULL) ||
        strstart(filename, "/dev/ppi", NULL)) {
        qemu_opt_set(opts, "backend", "parport");
        qemu_opt_set(opts, "path", filename);
        return opts;
    }
    if (strstart(filename, "/dev/", NULL)) {
        qemu_opt_set(opts, "backend", "tty");
        qemu_opt_set(opts, "path", filename);
        return opts;
    }
2723

2724
fail:
2725 2726 2727 2728 2729 2730
    qemu_opts_del(opts);
    return NULL;
}

static const struct {
    const char *name;
2731
    CharDriverState *(*open)(QemuOpts *opts);
2732 2733
} backend_table[] = {
    { .name = "null",      .open = qemu_chr_open_null },
2734
    { .name = "socket",    .open = qemu_chr_open_socket },
G
Gerd Hoffmann 已提交
2735
    { .name = "udp",       .open = qemu_chr_open_udp },
2736
    { .name = "msmouse",   .open = qemu_chr_open_msmouse },
G
Gerd Hoffmann 已提交
2737
    { .name = "vc",        .open = text_console_init },
2738 2739 2740
#ifdef _WIN32
    { .name = "file",      .open = qemu_chr_open_win_file_out },
    { .name = "pipe",      .open = qemu_chr_open_win_pipe },
2741
    { .name = "console",   .open = qemu_chr_open_win_con },
2742
    { .name = "serial",    .open = qemu_chr_open_win },
F
Fabien Chouteau 已提交
2743
    { .name = "stdio",     .open = qemu_chr_open_win_stdio },
2744 2745 2746
#else
    { .name = "file",      .open = qemu_chr_open_file_out },
    { .name = "pipe",      .open = qemu_chr_open_pipe },
G
Gerd Hoffmann 已提交
2747
    { .name = "pty",       .open = qemu_chr_open_pty },
2748
    { .name = "stdio",     .open = qemu_chr_open_stdio },
2749
#endif
2750 2751 2752
#ifdef CONFIG_BRLAPI
    { .name = "braille",   .open = chr_baum_init },
#endif
2753
#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
A
Aurelien Jarno 已提交
2754 2755
    || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
    || defined(__FreeBSD_kernel__)
2756 2757
    { .name = "tty",       .open = qemu_chr_open_tty },
#endif
A
Aurelien Jarno 已提交
2758 2759
#if defined(__linux__) || defined(__FreeBSD__) || defined(__DragonFly__) \
    || defined(__FreeBSD_kernel__)
2760 2761
    { .name = "parport",   .open = qemu_chr_open_pp },
#endif
A
Alon Levy 已提交
2762 2763 2764
#ifdef CONFIG_SPICE
    { .name = "spicevmc",     .open = qemu_chr_open_spice },
#endif
2765 2766
};

2767
CharDriverState *qemu_chr_new_from_opts(QemuOpts *opts,
2768 2769 2770 2771 2772 2773 2774 2775 2776 2777
                                    void (*init)(struct CharDriverState *s))
{
    CharDriverState *chr;
    int i;

    if (qemu_opts_id(opts) == NULL) {
        fprintf(stderr, "chardev: no id specified\n");
        return NULL;
    }

2778 2779 2780 2781 2782
    if (qemu_opt_get(opts, "backend") == NULL) {
        fprintf(stderr, "chardev: \"%s\" missing backend\n",
                qemu_opts_id(opts));
        return NULL;
    }
2783 2784 2785 2786 2787 2788 2789 2790 2791 2792
    for (i = 0; i < ARRAY_SIZE(backend_table); i++) {
        if (strcmp(backend_table[i].name, qemu_opt_get(opts, "backend")) == 0)
            break;
    }
    if (i == ARRAY_SIZE(backend_table)) {
        fprintf(stderr, "chardev: backend \"%s\" not found\n",
                qemu_opt_get(opts, "backend"));
        return NULL;
    }

2793 2794 2795 2796
    chr = backend_table[i].open(opts);
    if (!chr) {
        fprintf(stderr, "chardev: opening backend \"%s\" failed\n",
                qemu_opt_get(opts, "backend"));
2797 2798 2799 2800
        return NULL;
    }

    if (!chr->filename)
2801
        chr->filename = g_strdup(qemu_opt_get(opts, "backend"));
2802
    chr->init = init;
B
Blue Swirl 已提交
2803
    QTAILQ_INSERT_TAIL(&chardevs, chr, next);
G
Gerd Hoffmann 已提交
2804 2805 2806 2807

    if (qemu_opt_get_bool(opts, "mux", 0)) {
        CharDriverState *base = chr;
        int len = strlen(qemu_opts_id(opts)) + 6;
2808
        base->label = g_malloc(len);
G
Gerd Hoffmann 已提交
2809 2810 2811
        snprintf(base->label, len, "%s-base", qemu_opts_id(opts));
        chr = qemu_chr_open_mux(base);
        chr->filename = base->filename;
2812
        chr->avail_connections = MAX_MUX;
B
Blue Swirl 已提交
2813
        QTAILQ_INSERT_TAIL(&chardevs, chr, next);
2814 2815
    } else {
        chr->avail_connections = 1;
G
Gerd Hoffmann 已提交
2816
    }
2817
    chr->label = g_strdup(qemu_opts_id(opts));
2818 2819 2820
    return chr;
}

2821
CharDriverState *qemu_chr_new(const char *label, const char *filename, void (*init)(struct CharDriverState *s))
A
aliguori 已提交
2822 2823 2824
{
    const char *p;
    CharDriverState *chr;
2825 2826
    QemuOpts *opts;

G
Gerd Hoffmann 已提交
2827 2828 2829 2830
    if (strstart(filename, "chardev:", &p)) {
        return qemu_chr_find(p);
    }

2831
    opts = qemu_chr_parse_compat(label, filename);
G
Gerd Hoffmann 已提交
2832 2833
    if (!opts)
        return NULL;
A
aliguori 已提交
2834

2835
    chr = qemu_chr_new_from_opts(opts, init);
G
Gerd Hoffmann 已提交
2836 2837
    if (chr && qemu_opt_get_bool(opts, "mux", 0)) {
        monitor_init(chr, MONITOR_USE_READLINE);
A
aliguori 已提交
2838
    }
P
Paolo Bonzini 已提交
2839
    qemu_opts_del(opts);
A
aliguori 已提交
2840 2841 2842
    return chr;
}

2843
void qemu_chr_fe_set_echo(struct CharDriverState *chr, bool echo)
P
Paolo Bonzini 已提交
2844 2845 2846 2847 2848 2849
{
    if (chr->chr_set_echo) {
        chr->chr_set_echo(chr, echo);
    }
}

2850
void qemu_chr_fe_open(struct CharDriverState *chr)
2851 2852 2853 2854 2855 2856
{
    if (chr->chr_guest_open) {
        chr->chr_guest_open(chr);
    }
}

2857
void qemu_chr_fe_close(struct CharDriverState *chr)
2858 2859 2860 2861 2862 2863
{
    if (chr->chr_guest_close) {
        chr->chr_guest_close(chr);
    }
}

2864
void qemu_chr_delete(CharDriverState *chr)
A
aliguori 已提交
2865
{
B
Blue Swirl 已提交
2866
    QTAILQ_REMOVE(&chardevs, chr, next);
A
aliguori 已提交
2867 2868
    if (chr->chr_close)
        chr->chr_close(chr);
2869 2870 2871
    g_free(chr->filename);
    g_free(chr->label);
    g_free(chr);
A
aliguori 已提交
2872 2873
}

L
Luiz Capitulino 已提交
2874
ChardevInfoList *qmp_query_chardev(Error **errp)
A
aliguori 已提交
2875
{
L
Luiz Capitulino 已提交
2876
    ChardevInfoList *chr_list = NULL;
A
aliguori 已提交
2877 2878
    CharDriverState *chr;

B
Blue Swirl 已提交
2879
    QTAILQ_FOREACH(chr, &chardevs, next) {
L
Luiz Capitulino 已提交
2880 2881 2882 2883 2884 2885 2886
        ChardevInfoList *info = g_malloc0(sizeof(*info));
        info->value = g_malloc0(sizeof(*info->value));
        info->value->label = g_strdup(chr->label);
        info->value->filename = g_strdup(chr->filename);

        info->next = chr_list;
        chr_list = info;
A
aliguori 已提交
2887
    }
2888

L
Luiz Capitulino 已提交
2889
    return chr_list;
A
aliguori 已提交
2890
}
G
Gerd Hoffmann 已提交
2891 2892 2893 2894 2895

CharDriverState *qemu_chr_find(const char *name)
{
    CharDriverState *chr;

B
Blue Swirl 已提交
2896
    QTAILQ_FOREACH(chr, &chardevs, next) {
G
Gerd Hoffmann 已提交
2897 2898 2899 2900 2901 2902
        if (strcmp(chr->label, name) != 0)
            continue;
        return chr;
    }
    return NULL;
}
A
Anthony Liguori 已提交
2903 2904 2905 2906 2907 2908 2909 2910 2911 2912

/* Get a character (serial) device interface.  */
CharDriverState *qemu_char_get_next_serial(void)
{
    static int next_serial;

    /* FIXME: This function needs to go away: use chardev properties!  */
    return serial_hds[next_serial++];
}