qemu/qemu-char.c
<<
>>
Prefs
   1/*
   2 * QEMU System Emulator
   3 *
   4 * Copyright (c) 2003-2008 Fabrice Bellard
   5 *
   6 * Permission is hereby granted, free of charge, to any person obtaining a copy
   7 * of this software and associated documentation files (the "Software"), to deal
   8 * in the Software without restriction, including without limitation the rights
   9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10 * copies of the Software, and to permit persons to whom the Software is
  11 * furnished to do so, subject to the following conditions:
  12 *
  13 * The above copyright notice and this permission notice shall be included in
  14 * all copies or substantial portions of the Software.
  15 *
  16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22 * THE SOFTWARE.
  23 */
  24#include "qemu-common.h"
  25#include "monitor/monitor.h"
  26#include "sysemu/sysemu.h"
  27#include "qemu/timer.h"
  28#include "sysemu/char.h"
  29#include "hw/usb.h"
  30#include "qmp-commands.h"
  31#include "qapi/qmp-input-visitor.h"
  32#include "qapi/qmp-output-visitor.h"
  33#include "qapi-visit.h"
  34
  35#include <unistd.h>
  36#include <fcntl.h>
  37#include <time.h>
  38#include <errno.h>
  39#include <sys/time.h>
  40#include <zlib.h>
  41
  42#ifndef _WIN32
  43#include <sys/times.h>
  44#include <sys/wait.h>
  45#include <termios.h>
  46#include <sys/mman.h>
  47#include <sys/ioctl.h>
  48#include <sys/resource.h>
  49#include <sys/socket.h>
  50#include <netinet/in.h>
  51#include <net/if.h>
  52#include <arpa/inet.h>
  53#include <dirent.h>
  54#include <netdb.h>
  55#include <sys/select.h>
  56#ifdef CONFIG_BSD
  57#include <sys/stat.h>
  58#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
  59#include <dev/ppbus/ppi.h>
  60#include <dev/ppbus/ppbconf.h>
  61#elif defined(__DragonFly__)
  62#include <dev/misc/ppi/ppi.h>
  63#include <bus/ppbus/ppbconf.h>
  64#endif
  65#else
  66#ifdef __linux__
  67#include <linux/ppdev.h>
  68#include <linux/parport.h>
  69#endif
  70#ifdef __sun__
  71#include <sys/stat.h>
  72#include <sys/ethernet.h>
  73#include <sys/sockio.h>
  74#include <netinet/arp.h>
  75#include <netinet/in.h>
  76#include <netinet/in_systm.h>
  77#include <netinet/ip.h>
  78#include <netinet/ip_icmp.h> // must come after ip.h
  79#include <netinet/udp.h>
  80#include <netinet/tcp.h>
  81#endif
  82#endif
  83#endif
  84
  85#include "qemu/sockets.h"
  86#include "ui/qemu-spice.h"
  87
  88#define READ_BUF_LEN 4096
  89#define READ_RETRIES 10
  90#define CHR_MAX_FILENAME_SIZE 256
  91#define TCP_MAX_FDS 16
  92
  93/***********************************************************/
  94/* Socket address helpers */
  95static void qapi_copy_SocketAddress(SocketAddress **p_dest,
  96                                    SocketAddress *src)
  97{
  98    QmpOutputVisitor *qov;
  99    QmpInputVisitor *qiv;
 100    Visitor *ov, *iv;
 101    QObject *obj;
 102
 103    *p_dest = NULL;
 104
 105    qov = qmp_output_visitor_new();
 106    ov = qmp_output_get_visitor(qov);
 107    visit_type_SocketAddress(ov, &src, NULL, &error_abort);
 108    obj = qmp_output_get_qobject(qov);
 109    qmp_output_visitor_cleanup(qov);
 110    if (!obj) {
 111        return;
 112    }
 113
 114    qiv = qmp_input_visitor_new(obj);
 115    iv = qmp_input_get_visitor(qiv);
 116    visit_type_SocketAddress(iv, p_dest, NULL, &error_abort);
 117    qmp_input_visitor_cleanup(qiv);
 118    qobject_decref(obj);
 119}
 120
 121static int SocketAddress_to_str(char *dest, int max_len,
 122                                const char *prefix, SocketAddress *addr,
 123                                bool is_listen, bool is_telnet)
 124{
 125    switch (addr->kind) {
 126    case SOCKET_ADDRESS_KIND_INET:
 127        return snprintf(dest, max_len, "%s%s:%s:%s%s", prefix,
 128                        is_telnet ? "telnet" : "tcp", addr->inet->host,
 129                        addr->inet->port, is_listen ? ",server" : "");
 130        break;
 131    case SOCKET_ADDRESS_KIND_UNIX:
 132        return snprintf(dest, max_len, "%sunix:%s%s", prefix,
 133                        addr->q_unix->path, is_listen ? ",server" : "");
 134        break;
 135    case SOCKET_ADDRESS_KIND_FD:
 136        return snprintf(dest, max_len, "%sfd:%s%s", prefix, addr->fd->str,
 137                        is_listen ? ",server" : "");
 138        break;
 139    default:
 140        abort();
 141    }
 142}
 143
 144static int sockaddr_to_str(char *dest, int max_len,
 145                           struct sockaddr_storage *ss, socklen_t ss_len,
 146                           struct sockaddr_storage *ps, socklen_t ps_len,
 147                           bool is_listen, bool is_telnet)
 148{
 149    char shost[NI_MAXHOST], sserv[NI_MAXSERV];
 150    char phost[NI_MAXHOST], pserv[NI_MAXSERV];
 151    const char *left = "", *right = "";
 152
 153    switch (ss->ss_family) {
 154#ifndef _WIN32
 155    case AF_UNIX:
 156        return snprintf(dest, max_len, "unix:%s%s",
 157                        ((struct sockaddr_un *)(ss))->sun_path,
 158                        is_listen ? ",server" : "");
 159#endif
 160    case AF_INET6:
 161        left  = "[";
 162        right = "]";
 163        /* fall through */
 164    case AF_INET:
 165        getnameinfo((struct sockaddr *) ss, ss_len, shost, sizeof(shost),
 166                    sserv, sizeof(sserv), NI_NUMERICHOST | NI_NUMERICSERV);
 167        getnameinfo((struct sockaddr *) ps, ps_len, phost, sizeof(phost),
 168                    pserv, sizeof(pserv), NI_NUMERICHOST | NI_NUMERICSERV);
 169        return snprintf(dest, max_len, "%s:%s%s%s:%s%s <-> %s%s%s:%s",
 170                        is_telnet ? "telnet" : "tcp",
 171                        left, shost, right, sserv,
 172                        is_listen ? ",server" : "",
 173                        left, phost, right, pserv);
 174
 175    default:
 176        return snprintf(dest, max_len, "unknown");
 177    }
 178}
 179
 180/***********************************************************/
 181/* character device */
 182
 183static QTAILQ_HEAD(CharDriverStateHead, CharDriverState) chardevs =
 184    QTAILQ_HEAD_INITIALIZER(chardevs);
 185
 186CharDriverState *qemu_chr_alloc(void)
 187{
 188    CharDriverState *chr = g_malloc0(sizeof(CharDriverState));
 189    qemu_mutex_init(&chr->chr_write_lock);
 190    return chr;
 191}
 192
 193void qemu_chr_be_event(CharDriverState *s, int event)
 194{
 195    /* Keep track if the char device is open */
 196    switch (event) {
 197        case CHR_EVENT_OPENED:
 198            s->be_open = 1;
 199            break;
 200        case CHR_EVENT_CLOSED:
 201            s->be_open = 0;
 202            break;
 203    }
 204
 205    if (!s->chr_event)
 206        return;
 207    s->chr_event(s->handler_opaque, event);
 208}
 209
 210void qemu_chr_be_generic_open(CharDriverState *s)
 211{
 212    qemu_chr_be_event(s, CHR_EVENT_OPENED);
 213}
 214
 215int qemu_chr_fe_write(CharDriverState *s, const uint8_t *buf, int len)
 216{
 217    int ret;
 218
 219    qemu_mutex_lock(&s->chr_write_lock);
 220    ret = s->chr_write(s, buf, len);
 221    qemu_mutex_unlock(&s->chr_write_lock);
 222    return ret;
 223}
 224
 225int qemu_chr_fe_write_all(CharDriverState *s, const uint8_t *buf, int len)
 226{
 227    int offset = 0;
 228    int res = 0;
 229
 230    qemu_mutex_lock(&s->chr_write_lock);
 231    while (offset < len) {
 232        do {
 233            res = s->chr_write(s, buf + offset, len - offset);
 234            if (res == -1 && errno == EAGAIN) {
 235                g_usleep(100);
 236            }
 237        } while (res == -1 && errno == EAGAIN);
 238
 239        if (res <= 0) {
 240            break;
 241        }
 242
 243        offset += res;
 244    }
 245    qemu_mutex_unlock(&s->chr_write_lock);
 246
 247    if (res < 0) {
 248        return res;
 249    }
 250    return offset;
 251}
 252
 253int qemu_chr_fe_read_all(CharDriverState *s, uint8_t *buf, int len)
 254{
 255    int offset = 0, counter = 10;
 256    int res;
 257
 258    if (!s->chr_sync_read) {
 259        return 0;
 260    }
 261
 262    while (offset < len) {
 263        do {
 264            res = s->chr_sync_read(s, buf + offset, len - offset);
 265            if (res == -1 && errno == EAGAIN) {
 266                g_usleep(100);
 267            }
 268        } while (res == -1 && errno == EAGAIN);
 269
 270        if (res == 0) {
 271            break;
 272        }
 273
 274        if (res < 0) {
 275            return res;
 276        }
 277
 278        offset += res;
 279
 280        if (!counter--) {
 281            break;
 282        }
 283    }
 284
 285    return offset;
 286}
 287
 288int qemu_chr_fe_ioctl(CharDriverState *s, int cmd, void *arg)
 289{
 290    if (!s->chr_ioctl)
 291        return -ENOTSUP;
 292    return s->chr_ioctl(s, cmd, arg);
 293}
 294
 295int qemu_chr_be_can_write(CharDriverState *s)
 296{
 297    if (!s->chr_can_read)
 298        return 0;
 299    return s->chr_can_read(s->handler_opaque);
 300}
 301
 302void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len)
 303{
 304    if (s->chr_read) {
 305        s->chr_read(s->handler_opaque, buf, len);
 306    }
 307}
 308
 309int qemu_chr_fe_get_msgfd(CharDriverState *s)
 310{
 311    int fd;
 312    return (qemu_chr_fe_get_msgfds(s, &fd, 1) == 1) ? fd : -1;
 313}
 314
 315int qemu_chr_fe_get_msgfds(CharDriverState *s, int *fds, int len)
 316{
 317    return s->get_msgfds ? s->get_msgfds(s, fds, len) : -1;
 318}
 319
 320int qemu_chr_fe_set_msgfds(CharDriverState *s, int *fds, int num)
 321{
 322    return s->set_msgfds ? s->set_msgfds(s, fds, num) : -1;
 323}
 324
 325int qemu_chr_add_client(CharDriverState *s, int fd)
 326{
 327    return s->chr_add_client ? s->chr_add_client(s, fd) : -1;
 328}
 329
 330void qemu_chr_accept_input(CharDriverState *s)
 331{
 332    if (s->chr_accept_input)
 333        s->chr_accept_input(s);
 334    qemu_notify_event();
 335}
 336
 337void qemu_chr_fe_printf(CharDriverState *s, const char *fmt, ...)
 338{
 339    char buf[READ_BUF_LEN];
 340    va_list ap;
 341    va_start(ap, fmt);
 342    vsnprintf(buf, sizeof(buf), fmt, ap);
 343    qemu_chr_fe_write(s, (uint8_t *)buf, strlen(buf));
 344    va_end(ap);
 345}
 346
 347static void remove_fd_in_watch(CharDriverState *chr);
 348
 349void qemu_chr_add_handlers(CharDriverState *s,
 350                           IOCanReadHandler *fd_can_read,
 351                           IOReadHandler *fd_read,
 352                           IOEventHandler *fd_event,
 353                           void *opaque)
 354{
 355    int fe_open;
 356
 357    if (!opaque && !fd_can_read && !fd_read && !fd_event) {
 358        fe_open = 0;
 359        remove_fd_in_watch(s);
 360    } else {
 361        fe_open = 1;
 362    }
 363    s->chr_can_read = fd_can_read;
 364    s->chr_read = fd_read;
 365    s->chr_event = fd_event;
 366    s->handler_opaque = opaque;
 367    if (fe_open && s->chr_update_read_handler)
 368        s->chr_update_read_handler(s);
 369
 370    if (!s->explicit_fe_open) {
 371        qemu_chr_fe_set_open(s, fe_open);
 372    }
 373
 374    /* We're connecting to an already opened device, so let's make sure we
 375       also get the open event */
 376    if (fe_open && s->be_open) {
 377        qemu_chr_be_generic_open(s);
 378    }
 379}
 380
 381static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
 382{
 383    return len;
 384}
 385
 386static CharDriverState *qemu_chr_open_null(void)
 387{
 388    CharDriverState *chr;
 389
 390    chr = qemu_chr_alloc();
 391    chr->chr_write = null_chr_write;
 392    chr->explicit_be_open = true;
 393    return chr;
 394}
 395
 396/* MUX driver for serial I/O splitting */
 397#define MAX_MUX 4
 398#define MUX_BUFFER_SIZE 32      /* Must be a power of 2.  */
 399#define MUX_BUFFER_MASK (MUX_BUFFER_SIZE - 1)
 400typedef struct {
 401    IOCanReadHandler *chr_can_read[MAX_MUX];
 402    IOReadHandler *chr_read[MAX_MUX];
 403    IOEventHandler *chr_event[MAX_MUX];
 404    void *ext_opaque[MAX_MUX];
 405    CharDriverState *drv;
 406    int focus;
 407    int mux_cnt;
 408    int term_got_escape;
 409    int max_size;
 410    /* Intermediate input buffer allows to catch escape sequences even if the
 411       currently active device is not accepting any input - but only until it
 412       is full as well. */
 413    unsigned char buffer[MAX_MUX][MUX_BUFFER_SIZE];
 414    int prod[MAX_MUX];
 415    int cons[MAX_MUX];
 416    int timestamps;
 417
 418    /* Protected by the CharDriverState chr_write_lock.  */
 419    int linestart;
 420    int64_t timestamps_start;
 421} MuxDriver;
 422
 423
 424/* Called with chr_write_lock held.  */
 425static int mux_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
 426{
 427    MuxDriver *d = chr->opaque;
 428    int ret;
 429    if (!d->timestamps) {
 430        ret = qemu_chr_fe_write(d->drv, buf, len);
 431    } else {
 432        int i;
 433
 434        ret = 0;
 435        for (i = 0; i < len; i++) {
 436            if (d->linestart) {
 437                char buf1[64];
 438                int64_t ti;
 439                int secs;
 440
 441                ti = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
 442                if (d->timestamps_start == -1)
 443                    d->timestamps_start = ti;
 444                ti -= d->timestamps_start;
 445                secs = ti / 1000;
 446                snprintf(buf1, sizeof(buf1),
 447                         "[%02d:%02d:%02d.%03d] ",
 448                         secs / 3600,
 449                         (secs / 60) % 60,
 450                         secs % 60,
 451                         (int)(ti % 1000));
 452                qemu_chr_fe_write(d->drv, (uint8_t *)buf1, strlen(buf1));
 453                d->linestart = 0;
 454            }
 455            ret += qemu_chr_fe_write(d->drv, buf+i, 1);
 456            if (buf[i] == '\n') {
 457                d->linestart = 1;
 458            }
 459        }
 460    }
 461    return ret;
 462}
 463
 464static const char * const mux_help[] = {
 465    "% h    print this help\n\r",
 466    "% x    exit emulator\n\r",
 467    "% s    save disk data back to file (if -snapshot)\n\r",
 468    "% t    toggle console timestamps\n\r",
 469    "% b    send break (magic sysrq)\n\r",
 470    "% c    switch between console and monitor\n\r",
 471    "% %  sends %\n\r",
 472    NULL
 473};
 474
 475int term_escape_char = 0x01; /* ctrl-a is used for escape */
 476static void mux_print_help(CharDriverState *chr)
 477{
 478    int i, j;
 479    char ebuf[15] = "Escape-Char";
 480    char cbuf[50] = "\n\r";
 481
 482    if (term_escape_char > 0 && term_escape_char < 26) {
 483        snprintf(cbuf, sizeof(cbuf), "\n\r");
 484        snprintf(ebuf, sizeof(ebuf), "C-%c", term_escape_char - 1 + 'a');
 485    } else {
 486        snprintf(cbuf, sizeof(cbuf),
 487                 "\n\rEscape-Char set to Ascii: 0x%02x\n\r\n\r",
 488                 term_escape_char);
 489    }
 490    qemu_chr_fe_write(chr, (uint8_t *)cbuf, strlen(cbuf));
 491    for (i = 0; mux_help[i] != NULL; i++) {
 492        for (j=0; mux_help[i][j] != '\0'; j++) {
 493            if (mux_help[i][j] == '%')
 494                qemu_chr_fe_write(chr, (uint8_t *)ebuf, strlen(ebuf));
 495            else
 496                qemu_chr_fe_write(chr, (uint8_t *)&mux_help[i][j], 1);
 497        }
 498    }
 499}
 500
 501static void mux_chr_send_event(MuxDriver *d, int mux_nr, int event)
 502{
 503    if (d->chr_event[mux_nr])
 504        d->chr_event[mux_nr](d->ext_opaque[mux_nr], event);
 505}
 506
 507static int mux_proc_byte(CharDriverState *chr, MuxDriver *d, int ch)
 508{
 509    if (d->term_got_escape) {
 510        d->term_got_escape = 0;
 511        if (ch == term_escape_char)
 512            goto send_char;
 513        switch(ch) {
 514        case '?':
 515        case 'h':
 516            mux_print_help(chr);
 517            break;
 518        case 'x':
 519            {
 520                 const char *term =  "QEMU: Terminated\n\r";
 521                 qemu_chr_fe_write(chr, (uint8_t *)term, strlen(term));
 522                 exit(0);
 523                 break;
 524            }
 525        case 's':
 526            bdrv_commit_all();
 527            break;
 528        case 'b':
 529            qemu_chr_be_event(chr, CHR_EVENT_BREAK);
 530            break;
 531        case 'c':
 532            /* Switch to the next registered device */
 533            mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
 534            d->focus++;
 535            if (d->focus >= d->mux_cnt)
 536                d->focus = 0;
 537            mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
 538            break;
 539        case 't':
 540            d->timestamps = !d->timestamps;
 541            d->timestamps_start = -1;
 542            d->linestart = 0;
 543            break;
 544        }
 545    } else if (ch == term_escape_char) {
 546        d->term_got_escape = 1;
 547    } else {
 548    send_char:
 549        return 1;
 550    }
 551    return 0;
 552}
 553
 554static void mux_chr_accept_input(CharDriverState *chr)
 555{
 556    MuxDriver *d = chr->opaque;
 557    int m = d->focus;
 558
 559    while (d->prod[m] != d->cons[m] &&
 560           d->chr_can_read[m] &&
 561           d->chr_can_read[m](d->ext_opaque[m])) {
 562        d->chr_read[m](d->ext_opaque[m],
 563                       &d->buffer[m][d->cons[m]++ & MUX_BUFFER_MASK], 1);
 564    }
 565}
 566
 567static int mux_chr_can_read(void *opaque)
 568{
 569    CharDriverState *chr = opaque;
 570    MuxDriver *d = chr->opaque;
 571    int m = d->focus;
 572
 573    if ((d->prod[m] - d->cons[m]) < MUX_BUFFER_SIZE)
 574        return 1;
 575    if (d->chr_can_read[m])
 576        return d->chr_can_read[m](d->ext_opaque[m]);
 577    return 0;
 578}
 579
 580static void mux_chr_read(void *opaque, const uint8_t *buf, int size)
 581{
 582    CharDriverState *chr = opaque;
 583    MuxDriver *d = chr->opaque;
 584    int m = d->focus;
 585    int i;
 586
 587    mux_chr_accept_input (opaque);
 588
 589    for(i = 0; i < size; i++)
 590        if (mux_proc_byte(chr, d, buf[i])) {
 591            if (d->prod[m] == d->cons[m] &&
 592                d->chr_can_read[m] &&
 593                d->chr_can_read[m](d->ext_opaque[m]))
 594                d->chr_read[m](d->ext_opaque[m], &buf[i], 1);
 595            else
 596                d->buffer[m][d->prod[m]++ & MUX_BUFFER_MASK] = buf[i];
 597        }
 598}
 599
 600static void mux_chr_event(void *opaque, int event)
 601{
 602    CharDriverState *chr = opaque;
 603    MuxDriver *d = chr->opaque;
 604    int i;
 605
 606    /* Send the event to all registered listeners */
 607    for (i = 0; i < d->mux_cnt; i++)
 608        mux_chr_send_event(d, i, event);
 609}
 610
 611static void mux_chr_update_read_handler(CharDriverState *chr)
 612{
 613    MuxDriver *d = chr->opaque;
 614
 615    if (d->mux_cnt >= MAX_MUX) {
 616        fprintf(stderr, "Cannot add I/O handlers, MUX array is full\n");
 617        return;
 618    }
 619    d->ext_opaque[d->mux_cnt] = chr->handler_opaque;
 620    d->chr_can_read[d->mux_cnt] = chr->chr_can_read;
 621    d->chr_read[d->mux_cnt] = chr->chr_read;
 622    d->chr_event[d->mux_cnt] = chr->chr_event;
 623    /* Fix up the real driver with mux routines */
 624    if (d->mux_cnt == 0) {
 625        qemu_chr_add_handlers(d->drv, mux_chr_can_read, mux_chr_read,
 626                              mux_chr_event, chr);
 627    }
 628    if (d->focus != -1) {
 629        mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
 630    }
 631    d->focus = d->mux_cnt;
 632    d->mux_cnt++;
 633    mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
 634}
 635
 636static bool muxes_realized;
 637
 638/**
 639 * Called after processing of default and command-line-specified
 640 * chardevs to deliver CHR_EVENT_OPENED events to any FEs attached
 641 * to a mux chardev. This is done here to ensure that
 642 * output/prompts/banners are only displayed for the FE that has
 643 * focus when initial command-line processing/machine init is
 644 * completed.
 645 *
 646 * After this point, any new FE attached to any new or existing
 647 * mux will receive CHR_EVENT_OPENED notifications for the BE
 648 * immediately.
 649 */
 650static void muxes_realize_done(Notifier *notifier, void *unused)
 651{
 652    CharDriverState *chr;
 653
 654    QTAILQ_FOREACH(chr, &chardevs, next) {
 655        if (chr->is_mux) {
 656            MuxDriver *d = chr->opaque;
 657            int i;
 658
 659            /* send OPENED to all already-attached FEs */
 660            for (i = 0; i < d->mux_cnt; i++) {
 661                mux_chr_send_event(d, i, CHR_EVENT_OPENED);
 662            }
 663            /* mark mux as OPENED so any new FEs will immediately receive
 664             * OPENED event
 665             */
 666            qemu_chr_be_generic_open(chr);
 667        }
 668    }
 669    muxes_realized = true;
 670}
 671
 672static Notifier muxes_realize_notify = {
 673    .notify = muxes_realize_done,
 674};
 675
 676static GSource *mux_chr_add_watch(CharDriverState *s, GIOCondition cond)
 677{
 678    MuxDriver *d = s->opaque;
 679    return d->drv->chr_add_watch(d->drv, cond);
 680}
 681
 682static CharDriverState *qemu_chr_open_mux(CharDriverState *drv)
 683{
 684    CharDriverState *chr;
 685    MuxDriver *d;
 686
 687    chr = qemu_chr_alloc();
 688    d = g_malloc0(sizeof(MuxDriver));
 689
 690    chr->opaque = d;
 691    d->drv = drv;
 692    d->focus = -1;
 693    chr->chr_write = mux_chr_write;
 694    chr->chr_update_read_handler = mux_chr_update_read_handler;
 695    chr->chr_accept_input = mux_chr_accept_input;
 696    /* Frontend guest-open / -close notification is not support with muxes */
 697    chr->chr_set_fe_open = NULL;
 698    if (drv->chr_add_watch) {
 699        chr->chr_add_watch = mux_chr_add_watch;
 700    }
 701    /* only default to opened state if we've realized the initial
 702     * set of muxes
 703     */
 704    chr->explicit_be_open = muxes_realized ? 0 : 1;
 705    chr->is_mux = 1;
 706
 707    return chr;
 708}
 709
 710
 711#ifdef _WIN32
 712int send_all(int fd, const void *buf, int len1)
 713{
 714    int ret, len;
 715
 716    len = len1;
 717    while (len > 0) {
 718        ret = send(fd, buf, len, 0);
 719        if (ret < 0) {
 720            errno = WSAGetLastError();
 721            if (errno != WSAEWOULDBLOCK) {
 722                return -1;
 723            }
 724        } else if (ret == 0) {
 725            break;
 726        } else {
 727            buf += ret;
 728            len -= ret;
 729        }
 730    }
 731    return len1 - len;
 732}
 733
 734#else
 735
 736int send_all(int fd, const void *_buf, int len1)
 737{
 738    int ret, len;
 739    const uint8_t *buf = _buf;
 740
 741    len = len1;
 742    while (len > 0) {
 743        ret = write(fd, buf, len);
 744        if (ret < 0) {
 745            if (errno != EINTR && errno != EAGAIN)
 746                return -1;
 747        } else if (ret == 0) {
 748            break;
 749        } else {
 750            buf += ret;
 751            len -= ret;
 752        }
 753    }
 754    return len1 - len;
 755}
 756
 757int recv_all(int fd, void *_buf, int len1, bool single_read)
 758{
 759    int ret, len;
 760    uint8_t *buf = _buf;
 761
 762    len = len1;
 763    while ((len > 0) && (ret = read(fd, buf, len)) != 0) {
 764        if (ret < 0) {
 765            if (errno != EINTR && errno != EAGAIN) {
 766                return -1;
 767            }
 768            continue;
 769        } else {
 770            if (single_read) {
 771                return ret;
 772            }
 773            buf += ret;
 774            len -= ret;
 775        }
 776    }
 777    return len1 - len;
 778}
 779
 780#endif /* !_WIN32 */
 781
 782typedef struct IOWatchPoll
 783{
 784    GSource parent;
 785
 786    GIOChannel *channel;
 787    GSource *src;
 788
 789    IOCanReadHandler *fd_can_read;
 790    GSourceFunc fd_read;
 791    void *opaque;
 792} IOWatchPoll;
 793
 794static IOWatchPoll *io_watch_poll_from_source(GSource *source)
 795{
 796    return container_of(source, IOWatchPoll, parent);
 797}
 798
 799static gboolean io_watch_poll_prepare(GSource *source, gint *timeout_)
 800{
 801    IOWatchPoll *iwp = io_watch_poll_from_source(source);
 802    bool now_active = iwp->fd_can_read(iwp->opaque) > 0;
 803    bool was_active = iwp->src != NULL;
 804    if (was_active == now_active) {
 805        return FALSE;
 806    }
 807
 808    if (now_active) {
 809        iwp->src = g_io_create_watch(iwp->channel, G_IO_IN | G_IO_ERR | G_IO_HUP);
 810        g_source_set_callback(iwp->src, iwp->fd_read, iwp->opaque, NULL);
 811        g_source_attach(iwp->src, NULL);
 812    } else {
 813        g_source_destroy(iwp->src);
 814        g_source_unref(iwp->src);
 815        iwp->src = NULL;
 816    }
 817    return FALSE;
 818}
 819
 820static gboolean io_watch_poll_check(GSource *source)
 821{
 822    return FALSE;
 823}
 824
 825static gboolean io_watch_poll_dispatch(GSource *source, GSourceFunc callback,
 826                                       gpointer user_data)
 827{
 828    abort();
 829}
 830
 831static void io_watch_poll_finalize(GSource *source)
 832{
 833    /* Due to a glib bug, removing the last reference to a source
 834     * inside a finalize callback causes recursive locking (and a
 835     * deadlock).  This is not a problem inside other callbacks,
 836     * including dispatch callbacks, so we call io_remove_watch_poll
 837     * to remove this source.  At this point, iwp->src must
 838     * be NULL, or we would leak it.
 839     *
 840     * This would be solved much more elegantly by child sources,
 841     * but we support older glib versions that do not have them.
 842     */
 843    IOWatchPoll *iwp = io_watch_poll_from_source(source);
 844    assert(iwp->src == NULL);
 845}
 846
 847static GSourceFuncs io_watch_poll_funcs = {
 848    .prepare = io_watch_poll_prepare,
 849    .check = io_watch_poll_check,
 850    .dispatch = io_watch_poll_dispatch,
 851    .finalize = io_watch_poll_finalize,
 852};
 853
 854/* Can only be used for read */
 855static guint io_add_watch_poll(GIOChannel *channel,
 856                               IOCanReadHandler *fd_can_read,
 857                               GIOFunc fd_read,
 858                               gpointer user_data)
 859{
 860    IOWatchPoll *iwp;
 861    int tag;
 862
 863    iwp = (IOWatchPoll *) g_source_new(&io_watch_poll_funcs, sizeof(IOWatchPoll));
 864    iwp->fd_can_read = fd_can_read;
 865    iwp->opaque = user_data;
 866    iwp->channel = channel;
 867    iwp->fd_read = (GSourceFunc) fd_read;
 868    iwp->src = NULL;
 869
 870    tag = g_source_attach(&iwp->parent, NULL);
 871    g_source_unref(&iwp->parent);
 872    return tag;
 873}
 874
 875static void io_remove_watch_poll(guint tag)
 876{
 877    GSource *source;
 878    IOWatchPoll *iwp;
 879
 880    g_return_if_fail (tag > 0);
 881
 882    source = g_main_context_find_source_by_id(NULL, tag);
 883    g_return_if_fail (source != NULL);
 884
 885    iwp = io_watch_poll_from_source(source);
 886    if (iwp->src) {
 887        g_source_destroy(iwp->src);
 888        g_source_unref(iwp->src);
 889        iwp->src = NULL;
 890    }
 891    g_source_destroy(&iwp->parent);
 892}
 893
 894static void remove_fd_in_watch(CharDriverState *chr)
 895{
 896    if (chr->fd_in_tag) {
 897        io_remove_watch_poll(chr->fd_in_tag);
 898        chr->fd_in_tag = 0;
 899    }
 900}
 901
 902#ifndef _WIN32
 903static GIOChannel *io_channel_from_fd(int fd)
 904{
 905    GIOChannel *chan;
 906
 907    if (fd == -1) {
 908        return NULL;
 909    }
 910
 911    chan = g_io_channel_unix_new(fd);
 912
 913    g_io_channel_set_encoding(chan, NULL, NULL);
 914    g_io_channel_set_buffered(chan, FALSE);
 915
 916    return chan;
 917}
 918#endif
 919
 920static GIOChannel *io_channel_from_socket(int fd)
 921{
 922    GIOChannel *chan;
 923
 924    if (fd == -1) {
 925        return NULL;
 926    }
 927
 928#ifdef _WIN32
 929    chan = g_io_channel_win32_new_socket(fd);
 930#else
 931    chan = g_io_channel_unix_new(fd);
 932#endif
 933
 934    g_io_channel_set_encoding(chan, NULL, NULL);
 935    g_io_channel_set_buffered(chan, FALSE);
 936
 937    return chan;
 938}
 939
 940static int io_channel_send(GIOChannel *fd, const void *buf, size_t len)
 941{
 942    size_t offset = 0;
 943    GIOStatus status = G_IO_STATUS_NORMAL;
 944
 945    while (offset < len && status == G_IO_STATUS_NORMAL) {
 946        gsize bytes_written = 0;
 947
 948        status = g_io_channel_write_chars(fd, buf + offset, len - offset,
 949                                          &bytes_written, NULL);
 950        offset += bytes_written;
 951    }
 952
 953    if (offset > 0) {
 954        return offset;
 955    }
 956    switch (status) {
 957    case G_IO_STATUS_NORMAL:
 958        g_assert(len == 0);
 959        return 0;
 960    case G_IO_STATUS_AGAIN:
 961        errno = EAGAIN;
 962        return -1;
 963    default:
 964        break;
 965    }
 966    errno = EINVAL;
 967    return -1;
 968}
 969
 970#ifndef _WIN32
 971
 972typedef struct FDCharDriver {
 973    CharDriverState *chr;
 974    GIOChannel *fd_in, *fd_out;
 975    int max_size;
 976    QTAILQ_ENTRY(FDCharDriver) node;
 977} FDCharDriver;
 978
 979/* Called with chr_write_lock held.  */
 980static int fd_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
 981{
 982    FDCharDriver *s = chr->opaque;
 983    
 984    return io_channel_send(s->fd_out, buf, len);
 985}
 986
 987static gboolean fd_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
 988{
 989    CharDriverState *chr = opaque;
 990    FDCharDriver *s = chr->opaque;
 991    int len;
 992    uint8_t buf[READ_BUF_LEN];
 993    GIOStatus status;
 994    gsize bytes_read;
 995
 996    len = sizeof(buf);
 997    if (len > s->max_size) {
 998        len = s->max_size;
 999    }
1000    if (len == 0) {
1001        return TRUE;
1002    }
1003
1004    status = g_io_channel_read_chars(chan, (gchar *)buf,
1005                                     len, &bytes_read, NULL);
1006    if (status == G_IO_STATUS_EOF) {
1007        remove_fd_in_watch(chr);
1008        qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
1009        return FALSE;
1010    }
1011    if (status == G_IO_STATUS_NORMAL) {
1012        qemu_chr_be_write(chr, buf, bytes_read);
1013    }
1014
1015    return TRUE;
1016}
1017
1018static int fd_chr_read_poll(void *opaque)
1019{
1020    CharDriverState *chr = opaque;
1021    FDCharDriver *s = chr->opaque;
1022
1023    s->max_size = qemu_chr_be_can_write(chr);
1024    return s->max_size;
1025}
1026
1027static GSource *fd_chr_add_watch(CharDriverState *chr, GIOCondition cond)
1028{
1029    FDCharDriver *s = chr->opaque;
1030    return g_io_create_watch(s->fd_out, cond);
1031}
1032
1033static void fd_chr_update_read_handler(CharDriverState *chr)
1034{
1035    FDCharDriver *s = chr->opaque;
1036
1037    remove_fd_in_watch(chr);
1038    if (s->fd_in) {
1039        chr->fd_in_tag = io_add_watch_poll(s->fd_in, fd_chr_read_poll,
1040                                           fd_chr_read, chr);
1041    }
1042}
1043
1044static void fd_chr_close(struct CharDriverState *chr)
1045{
1046    FDCharDriver *s = chr->opaque;
1047
1048    remove_fd_in_watch(chr);
1049    if (s->fd_in) {
1050        g_io_channel_unref(s->fd_in);
1051    }
1052    if (s->fd_out) {
1053        g_io_channel_unref(s->fd_out);
1054    }
1055
1056    g_free(s);
1057    qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
1058}
1059
1060/* open a character device to a unix fd */
1061static CharDriverState *qemu_chr_open_fd(int fd_in, int fd_out)
1062{
1063    CharDriverState *chr;
1064    FDCharDriver *s;
1065
1066    chr = qemu_chr_alloc();
1067    s = g_malloc0(sizeof(FDCharDriver));
1068    s->fd_in = io_channel_from_fd(fd_in);
1069    s->fd_out = io_channel_from_fd(fd_out);
1070    qemu_set_nonblock(fd_out);
1071    s->chr = chr;
1072    chr->opaque = s;
1073    chr->chr_add_watch = fd_chr_add_watch;
1074    chr->chr_write = fd_chr_write;
1075    chr->chr_update_read_handler = fd_chr_update_read_handler;
1076    chr->chr_close = fd_chr_close;
1077
1078    return chr;
1079}
1080
1081static CharDriverState *qemu_chr_open_pipe(ChardevHostdev *opts)
1082{
1083    int fd_in, fd_out;
1084    char filename_in[CHR_MAX_FILENAME_SIZE];
1085    char filename_out[CHR_MAX_FILENAME_SIZE];
1086    const char *filename = opts->device;
1087
1088    if (filename == NULL) {
1089        fprintf(stderr, "chardev: pipe: no filename given\n");
1090        return NULL;
1091    }
1092
1093    snprintf(filename_in, CHR_MAX_FILENAME_SIZE, "%s.in", filename);
1094    snprintf(filename_out, CHR_MAX_FILENAME_SIZE, "%s.out", filename);
1095    TFR(fd_in = qemu_open(filename_in, O_RDWR | O_BINARY));
1096    TFR(fd_out = qemu_open(filename_out, O_RDWR | O_BINARY));
1097    if (fd_in < 0 || fd_out < 0) {
1098        if (fd_in >= 0)
1099            close(fd_in);
1100        if (fd_out >= 0)
1101            close(fd_out);
1102        TFR(fd_in = fd_out = qemu_open(filename, O_RDWR | O_BINARY));
1103        if (fd_in < 0) {
1104            return NULL;
1105        }
1106    }
1107    return qemu_chr_open_fd(fd_in, fd_out);
1108}
1109
1110/* init terminal so that we can grab keys */
1111static struct termios oldtty;
1112static int old_fd0_flags;
1113static bool stdio_in_use;
1114static bool stdio_allow_signal;
1115static bool stdio_echo_state;
1116
1117static void qemu_chr_set_echo_stdio(CharDriverState *chr, bool echo);
1118
1119static void term_exit(void)
1120{
1121    tcsetattr (0, TCSANOW, &oldtty);
1122    fcntl(0, F_SETFL, old_fd0_flags);
1123}
1124
1125static void term_stdio_handler(int sig)
1126{
1127    /* restore echo after resume from suspend. */
1128    qemu_chr_set_echo_stdio(NULL, stdio_echo_state);
1129}
1130
1131static void qemu_chr_set_echo_stdio(CharDriverState *chr, bool echo)
1132{
1133    struct termios tty;
1134
1135    stdio_echo_state = echo;
1136    tty = oldtty;
1137    if (!echo) {
1138        tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
1139                          |INLCR|IGNCR|ICRNL|IXON);
1140        tty.c_oflag |= OPOST;
1141        tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
1142        tty.c_cflag &= ~(CSIZE|PARENB);
1143        tty.c_cflag |= CS8;
1144        tty.c_cc[VMIN] = 1;
1145        tty.c_cc[VTIME] = 0;
1146    }
1147    if (!stdio_allow_signal)
1148        tty.c_lflag &= ~ISIG;
1149
1150    tcsetattr (0, TCSANOW, &tty);
1151}
1152
1153static void qemu_chr_close_stdio(struct CharDriverState *chr)
1154{
1155    term_exit();
1156    fd_chr_close(chr);
1157}
1158
1159static CharDriverState *qemu_chr_open_stdio(ChardevStdio *opts)
1160{
1161    CharDriverState *chr;
1162    struct sigaction act;
1163
1164    if (is_daemonized()) {
1165        error_report("cannot use stdio with -daemonize");
1166        return NULL;
1167    }
1168
1169    if (stdio_in_use) {
1170        error_report("cannot use stdio by multiple character devices");
1171        exit(1);
1172    }
1173
1174    stdio_in_use = true;
1175    old_fd0_flags = fcntl(0, F_GETFL);
1176    tcgetattr(0, &oldtty);
1177    qemu_set_nonblock(0);
1178    atexit(term_exit);
1179
1180    memset(&act, 0, sizeof(act));
1181    act.sa_handler = term_stdio_handler;
1182    sigaction(SIGCONT, &act, NULL);
1183
1184    chr = qemu_chr_open_fd(0, 1);
1185    chr->chr_close = qemu_chr_close_stdio;
1186    chr->chr_set_echo = qemu_chr_set_echo_stdio;
1187    if (opts->has_signal) {
1188        stdio_allow_signal = opts->signal;
1189    }
1190    qemu_chr_fe_set_echo(chr, false);
1191
1192    return chr;
1193}
1194
1195#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
1196    || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
1197    || defined(__GLIBC__)
1198
1199#define HAVE_CHARDEV_TTY 1
1200
1201typedef struct {
1202    GIOChannel *fd;
1203    int read_bytes;
1204
1205    /* Protected by the CharDriverState chr_write_lock.  */
1206    int connected;
1207    guint timer_tag;
1208    guint open_tag;
1209} PtyCharDriver;
1210
1211static void pty_chr_update_read_handler_locked(CharDriverState *chr);
1212static void pty_chr_state(CharDriverState *chr, int connected);
1213
1214static gboolean pty_chr_timer(gpointer opaque)
1215{
1216    struct CharDriverState *chr = opaque;
1217    PtyCharDriver *s = chr->opaque;
1218
1219    qemu_mutex_lock(&chr->chr_write_lock);
1220    s->timer_tag = 0;
1221    s->open_tag = 0;
1222    if (!s->connected) {
1223        /* Next poll ... */
1224        pty_chr_update_read_handler_locked(chr);
1225    }
1226    qemu_mutex_unlock(&chr->chr_write_lock);
1227    return FALSE;
1228}
1229
1230/* Called with chr_write_lock held.  */
1231static void pty_chr_rearm_timer(CharDriverState *chr, int ms)
1232{
1233    PtyCharDriver *s = chr->opaque;
1234
1235    if (s->timer_tag) {
1236        g_source_remove(s->timer_tag);
1237        s->timer_tag = 0;
1238    }
1239
1240    if (ms == 1000) {
1241        s->timer_tag = g_timeout_add_seconds(1, pty_chr_timer, chr);
1242    } else {
1243        s->timer_tag = g_timeout_add(ms, pty_chr_timer, chr);
1244    }
1245}
1246
1247/* Called with chr_write_lock held.  */
1248static void pty_chr_update_read_handler_locked(CharDriverState *chr)
1249{
1250    PtyCharDriver *s = chr->opaque;
1251    GPollFD pfd;
1252
1253    pfd.fd = g_io_channel_unix_get_fd(s->fd);
1254    pfd.events = G_IO_OUT;
1255    pfd.revents = 0;
1256    g_poll(&pfd, 1, 0);
1257    if (pfd.revents & G_IO_HUP) {
1258        pty_chr_state(chr, 0);
1259    } else {
1260        pty_chr_state(chr, 1);
1261    }
1262}
1263
1264static void pty_chr_update_read_handler(CharDriverState *chr)
1265{
1266    qemu_mutex_lock(&chr->chr_write_lock);
1267    pty_chr_update_read_handler_locked(chr);
1268    qemu_mutex_unlock(&chr->chr_write_lock);
1269}
1270
1271/* Called with chr_write_lock held.  */
1272static int pty_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
1273{
1274    PtyCharDriver *s = chr->opaque;
1275
1276    if (!s->connected) {
1277        /* guest sends data, check for (re-)connect */
1278        pty_chr_update_read_handler_locked(chr);
1279        if (!s->connected) {
1280            return 0;
1281        }
1282    }
1283    return io_channel_send(s->fd, buf, len);
1284}
1285
1286static GSource *pty_chr_add_watch(CharDriverState *chr, GIOCondition cond)
1287{
1288    PtyCharDriver *s = chr->opaque;
1289    if (!s->connected) {
1290        return NULL;
1291    }
1292    return g_io_create_watch(s->fd, cond);
1293}
1294
1295static int pty_chr_read_poll(void *opaque)
1296{
1297    CharDriverState *chr = opaque;
1298    PtyCharDriver *s = chr->opaque;
1299
1300    s->read_bytes = qemu_chr_be_can_write(chr);
1301    return s->read_bytes;
1302}
1303
1304static gboolean pty_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
1305{
1306    CharDriverState *chr = opaque;
1307    PtyCharDriver *s = chr->opaque;
1308    gsize size, len;
1309    uint8_t buf[READ_BUF_LEN];
1310    GIOStatus status;
1311
1312    len = sizeof(buf);
1313    if (len > s->read_bytes)
1314        len = s->read_bytes;
1315    if (len == 0) {
1316        return TRUE;
1317    }
1318    status = g_io_channel_read_chars(s->fd, (gchar *)buf, len, &size, NULL);
1319    if (status != G_IO_STATUS_NORMAL) {
1320        pty_chr_state(chr, 0);
1321        return FALSE;
1322    } else {
1323        pty_chr_state(chr, 1);
1324        qemu_chr_be_write(chr, buf, size);
1325    }
1326    return TRUE;
1327}
1328
1329static gboolean qemu_chr_be_generic_open_func(gpointer opaque)
1330{
1331    CharDriverState *chr = opaque;
1332    PtyCharDriver *s = chr->opaque;
1333
1334    s->open_tag = 0;
1335    qemu_chr_be_generic_open(chr);
1336    return FALSE;
1337}
1338
1339/* Called with chr_write_lock held.  */
1340static void pty_chr_state(CharDriverState *chr, int connected)
1341{
1342    PtyCharDriver *s = chr->opaque;
1343
1344    if (!connected) {
1345        if (s->open_tag) {
1346            g_source_remove(s->open_tag);
1347            s->open_tag = 0;
1348        }
1349        remove_fd_in_watch(chr);
1350        s->connected = 0;
1351        /* (re-)connect poll interval for idle guests: once per second.
1352         * We check more frequently in case the guests sends data to
1353         * the virtual device linked to our pty. */
1354        pty_chr_rearm_timer(chr, 1000);
1355    } else {
1356        if (s->timer_tag) {
1357            g_source_remove(s->timer_tag);
1358            s->timer_tag = 0;
1359        }
1360        if (!s->connected) {
1361            g_assert(s->open_tag == 0);
1362            s->connected = 1;
1363            s->open_tag = g_idle_add(qemu_chr_be_generic_open_func, chr);
1364        }
1365        if (!chr->fd_in_tag) {
1366            chr->fd_in_tag = io_add_watch_poll(s->fd, pty_chr_read_poll,
1367                                               pty_chr_read, chr);
1368        }
1369    }
1370}
1371
1372static void pty_chr_close(struct CharDriverState *chr)
1373{
1374    PtyCharDriver *s = chr->opaque;
1375    int fd;
1376
1377    qemu_mutex_lock(&chr->chr_write_lock);
1378    pty_chr_state(chr, 0);
1379    fd = g_io_channel_unix_get_fd(s->fd);
1380    g_io_channel_unref(s->fd);
1381    close(fd);
1382    if (s->timer_tag) {
1383        g_source_remove(s->timer_tag);
1384        s->timer_tag = 0;
1385    }
1386    qemu_mutex_unlock(&chr->chr_write_lock);
1387    g_free(s);
1388    qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
1389}
1390
1391static CharDriverState *qemu_chr_open_pty(const char *id,
1392                                          ChardevReturn *ret)
1393{
1394    CharDriverState *chr;
1395    PtyCharDriver *s;
1396    int master_fd, slave_fd;
1397    char pty_name[PATH_MAX];
1398
1399    master_fd = qemu_openpty_raw(&slave_fd, pty_name);
1400    if (master_fd < 0) {
1401        return NULL;
1402    }
1403
1404    close(slave_fd);
1405    qemu_set_nonblock(master_fd);
1406
1407    chr = qemu_chr_alloc();
1408
1409    chr->filename = g_strdup_printf("pty:%s", pty_name);
1410    ret->pty = g_strdup(pty_name);
1411    ret->has_pty = true;
1412
1413    fprintf(stderr, "char device redirected to %s (label %s)\n",
1414            pty_name, id);
1415
1416    s = g_malloc0(sizeof(PtyCharDriver));
1417    chr->opaque = s;
1418    chr->chr_write = pty_chr_write;
1419    chr->chr_update_read_handler = pty_chr_update_read_handler;
1420    chr->chr_close = pty_chr_close;
1421    chr->chr_add_watch = pty_chr_add_watch;
1422    chr->explicit_be_open = true;
1423
1424    s->fd = io_channel_from_fd(master_fd);
1425    s->timer_tag = 0;
1426
1427    return chr;
1428}
1429
1430static void tty_serial_init(int fd, int speed,
1431                            int parity, int data_bits, int stop_bits)
1432{
1433    struct termios tty;
1434    speed_t spd;
1435
1436#if 0
1437    printf("tty_serial_init: speed=%d parity=%c data=%d stop=%d\n",
1438           speed, parity, data_bits, stop_bits);
1439#endif
1440    tcgetattr (fd, &tty);
1441
1442#define check_speed(val) if (speed <= val) { spd = B##val; break; }
1443    speed = speed * 10 / 11;
1444    do {
1445        check_speed(50);
1446        check_speed(75);
1447        check_speed(110);
1448        check_speed(134);
1449        check_speed(150);
1450        check_speed(200);
1451        check_speed(300);
1452        check_speed(600);
1453        check_speed(1200);
1454        check_speed(1800);
1455        check_speed(2400);
1456        check_speed(4800);
1457        check_speed(9600);
1458        check_speed(19200);
1459        check_speed(38400);
1460        /* Non-Posix values follow. They may be unsupported on some systems. */
1461        check_speed(57600);
1462        check_speed(115200);
1463#ifdef B230400
1464        check_speed(230400);
1465#endif
1466#ifdef B460800
1467        check_speed(460800);
1468#endif
1469#ifdef B500000
1470        check_speed(500000);
1471#endif
1472#ifdef B576000
1473        check_speed(576000);
1474#endif
1475#ifdef B921600
1476        check_speed(921600);
1477#endif
1478#ifdef B1000000
1479        check_speed(1000000);
1480#endif
1481#ifdef B1152000
1482        check_speed(1152000);
1483#endif
1484#ifdef B1500000
1485        check_speed(1500000);
1486#endif
1487#ifdef B2000000
1488        check_speed(2000000);
1489#endif
1490#ifdef B2500000
1491        check_speed(2500000);
1492#endif
1493#ifdef B3000000
1494        check_speed(3000000);
1495#endif
1496#ifdef B3500000
1497        check_speed(3500000);
1498#endif
1499#ifdef B4000000
1500        check_speed(4000000);
1501#endif
1502        spd = B115200;
1503    } while (0);
1504
1505    cfsetispeed(&tty, spd);
1506    cfsetospeed(&tty, spd);
1507
1508    tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
1509                          |INLCR|IGNCR|ICRNL|IXON);
1510    tty.c_oflag |= OPOST;
1511    tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN|ISIG);
1512    tty.c_cflag &= ~(CSIZE|PARENB|PARODD|CRTSCTS|CSTOPB);
1513    switch(data_bits) {
1514    default:
1515    case 8:
1516        tty.c_cflag |= CS8;
1517        break;
1518    case 7:
1519        tty.c_cflag |= CS7;
1520        break;
1521    case 6:
1522        tty.c_cflag |= CS6;
1523        break;
1524    case 5:
1525        tty.c_cflag |= CS5;
1526        break;
1527    }
1528    switch(parity) {
1529    default:
1530    case 'N':
1531        break;
1532    case 'E':
1533        tty.c_cflag |= PARENB;
1534        break;
1535    case 'O':
1536        tty.c_cflag |= PARENB | PARODD;
1537        break;
1538    }
1539    if (stop_bits == 2)
1540        tty.c_cflag |= CSTOPB;
1541
1542    tcsetattr (fd, TCSANOW, &tty);
1543}
1544
1545static int tty_serial_ioctl(CharDriverState *chr, int cmd, void *arg)
1546{
1547    FDCharDriver *s = chr->opaque;
1548
1549    switch(cmd) {
1550    case CHR_IOCTL_SERIAL_SET_PARAMS:
1551        {
1552            QEMUSerialSetParams *ssp = arg;
1553            tty_serial_init(g_io_channel_unix_get_fd(s->fd_in),
1554                            ssp->speed, ssp->parity,
1555                            ssp->data_bits, ssp->stop_bits);
1556        }
1557        break;
1558    case CHR_IOCTL_SERIAL_SET_BREAK:
1559        {
1560            int enable = *(int *)arg;
1561            if (enable) {
1562                tcsendbreak(g_io_channel_unix_get_fd(s->fd_in), 1);
1563            }
1564        }
1565        break;
1566    case CHR_IOCTL_SERIAL_GET_TIOCM:
1567        {
1568            int sarg = 0;
1569            int *targ = (int *)arg;
1570            ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMGET, &sarg);
1571            *targ = 0;
1572            if (sarg & TIOCM_CTS)
1573                *targ |= CHR_TIOCM_CTS;
1574            if (sarg & TIOCM_CAR)
1575                *targ |= CHR_TIOCM_CAR;
1576            if (sarg & TIOCM_DSR)
1577                *targ |= CHR_TIOCM_DSR;
1578            if (sarg & TIOCM_RI)
1579                *targ |= CHR_TIOCM_RI;
1580            if (sarg & TIOCM_DTR)
1581                *targ |= CHR_TIOCM_DTR;
1582            if (sarg & TIOCM_RTS)
1583                *targ |= CHR_TIOCM_RTS;
1584        }
1585        break;
1586    case CHR_IOCTL_SERIAL_SET_TIOCM:
1587        {
1588            int sarg = *(int *)arg;
1589            int targ = 0;
1590            ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMGET, &targ);
1591            targ &= ~(CHR_TIOCM_CTS | CHR_TIOCM_CAR | CHR_TIOCM_DSR
1592                     | CHR_TIOCM_RI | CHR_TIOCM_DTR | CHR_TIOCM_RTS);
1593            if (sarg & CHR_TIOCM_CTS)
1594                targ |= TIOCM_CTS;
1595            if (sarg & CHR_TIOCM_CAR)
1596                targ |= TIOCM_CAR;
1597            if (sarg & CHR_TIOCM_DSR)
1598                targ |= TIOCM_DSR;
1599            if (sarg & CHR_TIOCM_RI)
1600                targ |= TIOCM_RI;
1601            if (sarg & CHR_TIOCM_DTR)
1602                targ |= TIOCM_DTR;
1603            if (sarg & CHR_TIOCM_RTS)
1604                targ |= TIOCM_RTS;
1605            ioctl(g_io_channel_unix_get_fd(s->fd_in), TIOCMSET, &targ);
1606        }
1607        break;
1608    default:
1609        return -ENOTSUP;
1610    }
1611    return 0;
1612}
1613
1614static void qemu_chr_close_tty(CharDriverState *chr)
1615{
1616    FDCharDriver *s = chr->opaque;
1617    int fd = -1;
1618
1619    if (s) {
1620        fd = g_io_channel_unix_get_fd(s->fd_in);
1621    }
1622
1623    fd_chr_close(chr);
1624
1625    if (fd >= 0) {
1626        close(fd);
1627    }
1628}
1629
1630static CharDriverState *qemu_chr_open_tty_fd(int fd)
1631{
1632    CharDriverState *chr;
1633
1634    tty_serial_init(fd, 115200, 'N', 8, 1);
1635    chr = qemu_chr_open_fd(fd, fd);
1636    chr->chr_ioctl = tty_serial_ioctl;
1637    chr->chr_close = qemu_chr_close_tty;
1638    return chr;
1639}
1640#endif /* __linux__ || __sun__ */
1641
1642#if defined(__linux__)
1643
1644#define HAVE_CHARDEV_PARPORT 1
1645
1646typedef struct {
1647    int fd;
1648    int mode;
1649} ParallelCharDriver;
1650
1651static int pp_hw_mode(ParallelCharDriver *s, uint16_t mode)
1652{
1653    if (s->mode != mode) {
1654        int m = mode;
1655        if (ioctl(s->fd, PPSETMODE, &m) < 0)
1656            return 0;
1657        s->mode = mode;
1658    }
1659    return 1;
1660}
1661
1662static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1663{
1664    ParallelCharDriver *drv = chr->opaque;
1665    int fd = drv->fd;
1666    uint8_t b;
1667
1668    switch(cmd) {
1669    case CHR_IOCTL_PP_READ_DATA:
1670        if (ioctl(fd, PPRDATA, &b) < 0)
1671            return -ENOTSUP;
1672        *(uint8_t *)arg = b;
1673        break;
1674    case CHR_IOCTL_PP_WRITE_DATA:
1675        b = *(uint8_t *)arg;
1676        if (ioctl(fd, PPWDATA, &b) < 0)
1677            return -ENOTSUP;
1678        break;
1679    case CHR_IOCTL_PP_READ_CONTROL:
1680        if (ioctl(fd, PPRCONTROL, &b) < 0)
1681            return -ENOTSUP;
1682        /* Linux gives only the lowest bits, and no way to know data
1683           direction! For better compatibility set the fixed upper
1684           bits. */
1685        *(uint8_t *)arg = b | 0xc0;
1686        break;
1687    case CHR_IOCTL_PP_WRITE_CONTROL:
1688        b = *(uint8_t *)arg;
1689        if (ioctl(fd, PPWCONTROL, &b) < 0)
1690            return -ENOTSUP;
1691        break;
1692    case CHR_IOCTL_PP_READ_STATUS:
1693        if (ioctl(fd, PPRSTATUS, &b) < 0)
1694            return -ENOTSUP;
1695        *(uint8_t *)arg = b;
1696        break;
1697    case CHR_IOCTL_PP_DATA_DIR:
1698        if (ioctl(fd, PPDATADIR, (int *)arg) < 0)
1699            return -ENOTSUP;
1700        break;
1701    case CHR_IOCTL_PP_EPP_READ_ADDR:
1702        if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1703            struct ParallelIOArg *parg = arg;
1704            int n = read(fd, parg->buffer, parg->count);
1705            if (n != parg->count) {
1706                return -EIO;
1707            }
1708        }
1709        break;
1710    case CHR_IOCTL_PP_EPP_READ:
1711        if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1712            struct ParallelIOArg *parg = arg;
1713            int n = read(fd, parg->buffer, parg->count);
1714            if (n != parg->count) {
1715                return -EIO;
1716            }
1717        }
1718        break;
1719    case CHR_IOCTL_PP_EPP_WRITE_ADDR:
1720        if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1721            struct ParallelIOArg *parg = arg;
1722            int n = write(fd, parg->buffer, parg->count);
1723            if (n != parg->count) {
1724                return -EIO;
1725            }
1726        }
1727        break;
1728    case CHR_IOCTL_PP_EPP_WRITE:
1729        if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1730            struct ParallelIOArg *parg = arg;
1731            int n = write(fd, parg->buffer, parg->count);
1732            if (n != parg->count) {
1733                return -EIO;
1734            }
1735        }
1736        break;
1737    default:
1738        return -ENOTSUP;
1739    }
1740    return 0;
1741}
1742
1743static void pp_close(CharDriverState *chr)
1744{
1745    ParallelCharDriver *drv = chr->opaque;
1746    int fd = drv->fd;
1747
1748    pp_hw_mode(drv, IEEE1284_MODE_COMPAT);
1749    ioctl(fd, PPRELEASE);
1750    close(fd);
1751    g_free(drv);
1752    qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
1753}
1754
1755static CharDriverState *qemu_chr_open_pp_fd(int fd)
1756{
1757    CharDriverState *chr;
1758    ParallelCharDriver *drv;
1759
1760    if (ioctl(fd, PPCLAIM) < 0) {
1761        close(fd);
1762        return NULL;
1763    }
1764
1765    drv = g_malloc0(sizeof(ParallelCharDriver));
1766    drv->fd = fd;
1767    drv->mode = IEEE1284_MODE_COMPAT;
1768
1769    chr = qemu_chr_alloc();
1770    chr->chr_write = null_chr_write;
1771    chr->chr_ioctl = pp_ioctl;
1772    chr->chr_close = pp_close;
1773    chr->opaque = drv;
1774
1775    return chr;
1776}
1777#endif /* __linux__ */
1778
1779#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
1780
1781#define HAVE_CHARDEV_PARPORT 1
1782
1783static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1784{
1785    int fd = (int)(intptr_t)chr->opaque;
1786    uint8_t b;
1787
1788    switch(cmd) {
1789    case CHR_IOCTL_PP_READ_DATA:
1790        if (ioctl(fd, PPIGDATA, &b) < 0)
1791            return -ENOTSUP;
1792        *(uint8_t *)arg = b;
1793        break;
1794    case CHR_IOCTL_PP_WRITE_DATA:
1795        b = *(uint8_t *)arg;
1796        if (ioctl(fd, PPISDATA, &b) < 0)
1797            return -ENOTSUP;
1798        break;
1799    case CHR_IOCTL_PP_READ_CONTROL:
1800        if (ioctl(fd, PPIGCTRL, &b) < 0)
1801            return -ENOTSUP;
1802        *(uint8_t *)arg = b;
1803        break;
1804    case CHR_IOCTL_PP_WRITE_CONTROL:
1805        b = *(uint8_t *)arg;
1806        if (ioctl(fd, PPISCTRL, &b) < 0)
1807            return -ENOTSUP;
1808        break;
1809    case CHR_IOCTL_PP_READ_STATUS:
1810        if (ioctl(fd, PPIGSTATUS, &b) < 0)
1811            return -ENOTSUP;
1812        *(uint8_t *)arg = b;
1813        break;
1814    default:
1815        return -ENOTSUP;
1816    }
1817    return 0;
1818}
1819
1820static CharDriverState *qemu_chr_open_pp_fd(int fd)
1821{
1822    CharDriverState *chr;
1823
1824    chr = qemu_chr_alloc();
1825    chr->opaque = (void *)(intptr_t)fd;
1826    chr->chr_write = null_chr_write;
1827    chr->chr_ioctl = pp_ioctl;
1828    chr->explicit_be_open = true;
1829    return chr;
1830}
1831#endif
1832
1833#else /* _WIN32 */
1834
1835typedef struct {
1836    int max_size;
1837    HANDLE hcom, hrecv, hsend;
1838    OVERLAPPED orecv;
1839    BOOL fpipe;
1840    DWORD len;
1841
1842    /* Protected by the CharDriverState chr_write_lock.  */
1843    OVERLAPPED osend;
1844} WinCharState;
1845
1846typedef struct {
1847    HANDLE  hStdIn;
1848    HANDLE  hInputReadyEvent;
1849    HANDLE  hInputDoneEvent;
1850    HANDLE  hInputThread;
1851    uint8_t win_stdio_buf;
1852} WinStdioCharState;
1853
1854#define NSENDBUF 2048
1855#define NRECVBUF 2048
1856#define MAXCONNECT 1
1857#define NTIMEOUT 5000
1858
1859static int win_chr_poll(void *opaque);
1860static int win_chr_pipe_poll(void *opaque);
1861
1862static void win_chr_close(CharDriverState *chr)
1863{
1864    WinCharState *s = chr->opaque;
1865
1866    if (s->hsend) {
1867        CloseHandle(s->hsend);
1868        s->hsend = NULL;
1869    }
1870    if (s->hrecv) {
1871        CloseHandle(s->hrecv);
1872        s->hrecv = NULL;
1873    }
1874    if (s->hcom) {
1875        CloseHandle(s->hcom);
1876        s->hcom = NULL;
1877    }
1878    if (s->fpipe)
1879        qemu_del_polling_cb(win_chr_pipe_poll, chr);
1880    else
1881        qemu_del_polling_cb(win_chr_poll, chr);
1882
1883    qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
1884}
1885
1886static int win_chr_init(CharDriverState *chr, const char *filename)
1887{
1888    WinCharState *s = chr->opaque;
1889    COMMCONFIG comcfg;
1890    COMMTIMEOUTS cto = { 0, 0, 0, 0, 0};
1891    COMSTAT comstat;
1892    DWORD size;
1893    DWORD err;
1894
1895    s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1896    if (!s->hsend) {
1897        fprintf(stderr, "Failed CreateEvent\n");
1898        goto fail;
1899    }
1900    s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1901    if (!s->hrecv) {
1902        fprintf(stderr, "Failed CreateEvent\n");
1903        goto fail;
1904    }
1905
1906    s->hcom = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, NULL,
1907                      OPEN_EXISTING, FILE_FLAG_OVERLAPPED, 0);
1908    if (s->hcom == INVALID_HANDLE_VALUE) {
1909        fprintf(stderr, "Failed CreateFile (%lu)\n", GetLastError());
1910        s->hcom = NULL;
1911        goto fail;
1912    }
1913
1914    if (!SetupComm(s->hcom, NRECVBUF, NSENDBUF)) {
1915        fprintf(stderr, "Failed SetupComm\n");
1916        goto fail;
1917    }
1918
1919    ZeroMemory(&comcfg, sizeof(COMMCONFIG));
1920    size = sizeof(COMMCONFIG);
1921    GetDefaultCommConfig(filename, &comcfg, &size);
1922    comcfg.dcb.DCBlength = sizeof(DCB);
1923    CommConfigDialog(filename, NULL, &comcfg);
1924
1925    if (!SetCommState(s->hcom, &comcfg.dcb)) {
1926        fprintf(stderr, "Failed SetCommState\n");
1927        goto fail;
1928    }
1929
1930    if (!SetCommMask(s->hcom, EV_ERR)) {
1931        fprintf(stderr, "Failed SetCommMask\n");
1932        goto fail;
1933    }
1934
1935    cto.ReadIntervalTimeout = MAXDWORD;
1936    if (!SetCommTimeouts(s->hcom, &cto)) {
1937        fprintf(stderr, "Failed SetCommTimeouts\n");
1938        goto fail;
1939    }
1940
1941    if (!ClearCommError(s->hcom, &err, &comstat)) {
1942        fprintf(stderr, "Failed ClearCommError\n");
1943        goto fail;
1944    }
1945    qemu_add_polling_cb(win_chr_poll, chr);
1946    return 0;
1947
1948 fail:
1949    win_chr_close(chr);
1950    return -1;
1951}
1952
1953/* Called with chr_write_lock held.  */
1954static int win_chr_write(CharDriverState *chr, const uint8_t *buf, int len1)
1955{
1956    WinCharState *s = chr->opaque;
1957    DWORD len, ret, size, err;
1958
1959    len = len1;
1960    ZeroMemory(&s->osend, sizeof(s->osend));
1961    s->osend.hEvent = s->hsend;
1962    while (len > 0) {
1963        if (s->hsend)
1964            ret = WriteFile(s->hcom, buf, len, &size, &s->osend);
1965        else
1966            ret = WriteFile(s->hcom, buf, len, &size, NULL);
1967        if (!ret) {
1968            err = GetLastError();
1969            if (err == ERROR_IO_PENDING) {
1970                ret = GetOverlappedResult(s->hcom, &s->osend, &size, TRUE);
1971                if (ret) {
1972                    buf += size;
1973                    len -= size;
1974                } else {
1975                    break;
1976                }
1977            } else {
1978                break;
1979            }
1980        } else {
1981            buf += size;
1982            len -= size;
1983        }
1984    }
1985    return len1 - len;
1986}
1987
1988static int win_chr_read_poll(CharDriverState *chr)
1989{
1990    WinCharState *s = chr->opaque;
1991
1992    s->max_size = qemu_chr_be_can_write(chr);
1993    return s->max_size;
1994}
1995
1996static void win_chr_readfile(CharDriverState *chr)
1997{
1998    WinCharState *s = chr->opaque;
1999    int ret, err;
2000    uint8_t buf[READ_BUF_LEN];
2001    DWORD size;
2002
2003    ZeroMemory(&s->orecv, sizeof(s->orecv));
2004    s->orecv.hEvent = s->hrecv;
2005    ret = ReadFile(s->hcom, buf, s->len, &size, &s->orecv);
2006    if (!ret) {
2007        err = GetLastError();
2008        if (err == ERROR_IO_PENDING) {
2009            ret = GetOverlappedResult(s->hcom, &s->orecv, &size, TRUE);
2010        }
2011    }
2012
2013    if (size > 0) {
2014        qemu_chr_be_write(chr, buf, size);
2015    }
2016}
2017
2018static void win_chr_read(CharDriverState *chr)
2019{
2020    WinCharState *s = chr->opaque;
2021
2022    if (s->len > s->max_size)
2023        s->len = s->max_size;
2024    if (s->len == 0)
2025        return;
2026
2027    win_chr_readfile(chr);
2028}
2029
2030static int win_chr_poll(void *opaque)
2031{
2032    CharDriverState *chr = opaque;
2033    WinCharState *s = chr->opaque;
2034    COMSTAT status;
2035    DWORD comerr;
2036
2037    ClearCommError(s->hcom, &comerr, &status);
2038    if (status.cbInQue > 0) {
2039        s->len = status.cbInQue;
2040        win_chr_read_poll(chr);
2041        win_chr_read(chr);
2042        return 1;
2043    }
2044    return 0;
2045}
2046
2047static CharDriverState *qemu_chr_open_win_path(const char *filename)
2048{
2049    CharDriverState *chr;
2050    WinCharState *s;
2051
2052    chr = qemu_chr_alloc();
2053    s = g_malloc0(sizeof(WinCharState));
2054    chr->opaque = s;
2055    chr->chr_write = win_chr_write;
2056    chr->chr_close = win_chr_close;
2057
2058    if (win_chr_init(chr, filename) < 0) {
2059        g_free(s);
2060        g_free(chr);
2061        return NULL;
2062    }
2063    return chr;
2064}
2065
2066static int win_chr_pipe_poll(void *opaque)
2067{
2068    CharDriverState *chr = opaque;
2069    WinCharState *s = chr->opaque;
2070    DWORD size;
2071
2072    PeekNamedPipe(s->hcom, NULL, 0, NULL, &size, NULL);
2073    if (size > 0) {
2074        s->len = size;
2075        win_chr_read_poll(chr);
2076        win_chr_read(chr);
2077        return 1;
2078    }
2079    return 0;
2080}
2081
2082static int win_chr_pipe_init(CharDriverState *chr, const char *filename)
2083{
2084    WinCharState *s = chr->opaque;
2085    OVERLAPPED ov;
2086    int ret;
2087    DWORD size;
2088    char openname[CHR_MAX_FILENAME_SIZE];
2089
2090    s->fpipe = TRUE;
2091
2092    s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
2093    if (!s->hsend) {
2094        fprintf(stderr, "Failed CreateEvent\n");
2095        goto fail;
2096    }
2097    s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
2098    if (!s->hrecv) {
2099        fprintf(stderr, "Failed CreateEvent\n");
2100        goto fail;
2101    }
2102
2103    snprintf(openname, sizeof(openname), "\\\\.\\pipe\\%s", filename);
2104    s->hcom = CreateNamedPipe(openname, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
2105                              PIPE_TYPE_BYTE | PIPE_READMODE_BYTE |
2106                              PIPE_WAIT,
2107                              MAXCONNECT, NSENDBUF, NRECVBUF, NTIMEOUT, NULL);
2108    if (s->hcom == INVALID_HANDLE_VALUE) {
2109        fprintf(stderr, "Failed CreateNamedPipe (%lu)\n", GetLastError());
2110        s->hcom = NULL;
2111        goto fail;
2112    }
2113
2114    ZeroMemory(&ov, sizeof(ov));
2115    ov.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
2116    ret = ConnectNamedPipe(s->hcom, &ov);
2117    if (ret) {
2118        fprintf(stderr, "Failed ConnectNamedPipe\n");
2119        goto fail;
2120    }
2121
2122    ret = GetOverlappedResult(s->hcom, &ov, &size, TRUE);
2123    if (!ret) {
2124        fprintf(stderr, "Failed GetOverlappedResult\n");
2125        if (ov.hEvent) {
2126            CloseHandle(ov.hEvent);
2127            ov.hEvent = NULL;
2128        }
2129        goto fail;
2130    }
2131
2132    if (ov.hEvent) {
2133        CloseHandle(ov.hEvent);
2134        ov.hEvent = NULL;
2135    }
2136    qemu_add_polling_cb(win_chr_pipe_poll, chr);
2137    return 0;
2138
2139 fail:
2140    win_chr_close(chr);
2141    return -1;
2142}
2143
2144
2145static CharDriverState *qemu_chr_open_pipe(ChardevHostdev *opts)
2146{
2147    const char *filename = opts->device;
2148    CharDriverState *chr;
2149    WinCharState *s;
2150
2151    chr = qemu_chr_alloc();
2152    s = g_malloc0(sizeof(WinCharState));
2153    chr->opaque = s;
2154    chr->chr_write = win_chr_write;
2155    chr->chr_close = win_chr_close;
2156
2157    if (win_chr_pipe_init(chr, filename) < 0) {
2158        g_free(s);
2159        g_free(chr);
2160        return NULL;
2161    }
2162    return chr;
2163}
2164
2165static CharDriverState *qemu_chr_open_win_file(HANDLE fd_out)
2166{
2167    CharDriverState *chr;
2168    WinCharState *s;
2169
2170    chr = qemu_chr_alloc();
2171    s = g_malloc0(sizeof(WinCharState));
2172    s->hcom = fd_out;
2173    chr->opaque = s;
2174    chr->chr_write = win_chr_write;
2175    return chr;
2176}
2177
2178static CharDriverState *qemu_chr_open_win_con(void)
2179{
2180    return qemu_chr_open_win_file(GetStdHandle(STD_OUTPUT_HANDLE));
2181}
2182
2183static int win_stdio_write(CharDriverState *chr, const uint8_t *buf, int len)
2184{
2185    HANDLE  hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
2186    DWORD   dwSize;
2187    int     len1;
2188
2189    len1 = len;
2190
2191    while (len1 > 0) {
2192        if (!WriteFile(hStdOut, buf, len1, &dwSize, NULL)) {
2193            break;
2194        }
2195        buf  += dwSize;
2196        len1 -= dwSize;
2197    }
2198
2199    return len - len1;
2200}
2201
2202static void win_stdio_wait_func(void *opaque)
2203{
2204    CharDriverState   *chr   = opaque;
2205    WinStdioCharState *stdio = chr->opaque;
2206    INPUT_RECORD       buf[4];
2207    int                ret;
2208    DWORD              dwSize;
2209    int                i;
2210
2211    ret = ReadConsoleInput(stdio->hStdIn, buf, ARRAY_SIZE(buf), &dwSize);
2212
2213    if (!ret) {
2214        /* Avoid error storm */
2215        qemu_del_wait_object(stdio->hStdIn, NULL, NULL);
2216        return;
2217    }
2218
2219    for (i = 0; i < dwSize; i++) {
2220        KEY_EVENT_RECORD *kev = &buf[i].Event.KeyEvent;
2221
2222        if (buf[i].EventType == KEY_EVENT && kev->bKeyDown) {
2223            int j;
2224            if (kev->uChar.AsciiChar != 0) {
2225                for (j = 0; j < kev->wRepeatCount; j++) {
2226                    if (qemu_chr_be_can_write(chr)) {
2227                        uint8_t c = kev->uChar.AsciiChar;
2228                        qemu_chr_be_write(chr, &c, 1);
2229                    }
2230                }
2231            }
2232        }
2233    }
2234}
2235
2236static DWORD WINAPI win_stdio_thread(LPVOID param)
2237{
2238    CharDriverState   *chr   = param;
2239    WinStdioCharState *stdio = chr->opaque;
2240    int                ret;
2241    DWORD              dwSize;
2242
2243    while (1) {
2244
2245        /* Wait for one byte */
2246        ret = ReadFile(stdio->hStdIn, &stdio->win_stdio_buf, 1, &dwSize, NULL);
2247
2248        /* Exit in case of error, continue if nothing read */
2249        if (!ret) {
2250            break;
2251        }
2252        if (!dwSize) {
2253            continue;
2254        }
2255
2256        /* Some terminal emulator returns \r\n for Enter, just pass \n */
2257        if (stdio->win_stdio_buf == '\r') {
2258            continue;
2259        }
2260
2261        /* Signal the main thread and wait until the byte was eaten */
2262        if (!SetEvent(stdio->hInputReadyEvent)) {
2263            break;
2264        }
2265        if (WaitForSingleObject(stdio->hInputDoneEvent, INFINITE)
2266            != WAIT_OBJECT_0) {
2267            break;
2268        }
2269    }
2270
2271    qemu_del_wait_object(stdio->hInputReadyEvent, NULL, NULL);
2272    return 0;
2273}
2274
2275static void win_stdio_thread_wait_func(void *opaque)
2276{
2277    CharDriverState   *chr   = opaque;
2278    WinStdioCharState *stdio = chr->opaque;
2279
2280    if (qemu_chr_be_can_write(chr)) {
2281        qemu_chr_be_write(chr, &stdio->win_stdio_buf, 1);
2282    }
2283
2284    SetEvent(stdio->hInputDoneEvent);
2285}
2286
2287static void qemu_chr_set_echo_win_stdio(CharDriverState *chr, bool echo)
2288{
2289    WinStdioCharState *stdio  = chr->opaque;
2290    DWORD              dwMode = 0;
2291
2292    GetConsoleMode(stdio->hStdIn, &dwMode);
2293
2294    if (echo) {
2295        SetConsoleMode(stdio->hStdIn, dwMode | ENABLE_ECHO_INPUT);
2296    } else {
2297        SetConsoleMode(stdio->hStdIn, dwMode & ~ENABLE_ECHO_INPUT);
2298    }
2299}
2300
2301static void win_stdio_close(CharDriverState *chr)
2302{
2303    WinStdioCharState *stdio = chr->opaque;
2304
2305    if (stdio->hInputReadyEvent != INVALID_HANDLE_VALUE) {
2306        CloseHandle(stdio->hInputReadyEvent);
2307    }
2308    if (stdio->hInputDoneEvent != INVALID_HANDLE_VALUE) {
2309        CloseHandle(stdio->hInputDoneEvent);
2310    }
2311    if (stdio->hInputThread != INVALID_HANDLE_VALUE) {
2312        TerminateThread(stdio->hInputThread, 0);
2313    }
2314
2315    g_free(chr->opaque);
2316    g_free(chr);
2317}
2318
2319static CharDriverState *qemu_chr_open_stdio(ChardevStdio *opts)
2320{
2321    CharDriverState   *chr;
2322    WinStdioCharState *stdio;
2323    DWORD              dwMode;
2324    int                is_console = 0;
2325
2326    chr   = qemu_chr_alloc();
2327    stdio = g_malloc0(sizeof(WinStdioCharState));
2328
2329    stdio->hStdIn = GetStdHandle(STD_INPUT_HANDLE);
2330    if (stdio->hStdIn == INVALID_HANDLE_VALUE) {
2331        fprintf(stderr, "cannot open stdio: invalid handle\n");
2332        exit(1);
2333    }
2334
2335    is_console = GetConsoleMode(stdio->hStdIn, &dwMode) != 0;
2336
2337    chr->opaque    = stdio;
2338    chr->chr_write = win_stdio_write;
2339    chr->chr_close = win_stdio_close;
2340
2341    if (is_console) {
2342        if (qemu_add_wait_object(stdio->hStdIn,
2343                                 win_stdio_wait_func, chr)) {
2344            fprintf(stderr, "qemu_add_wait_object: failed\n");
2345        }
2346    } else {
2347        DWORD   dwId;
2348            
2349        stdio->hInputReadyEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2350        stdio->hInputDoneEvent  = CreateEvent(NULL, FALSE, FALSE, NULL);
2351        stdio->hInputThread     = CreateThread(NULL, 0, win_stdio_thread,
2352                                               chr, 0, &dwId);
2353
2354        if (stdio->hInputThread == INVALID_HANDLE_VALUE
2355            || stdio->hInputReadyEvent == INVALID_HANDLE_VALUE
2356            || stdio->hInputDoneEvent == INVALID_HANDLE_VALUE) {
2357            fprintf(stderr, "cannot create stdio thread or event\n");
2358            exit(1);
2359        }
2360        if (qemu_add_wait_object(stdio->hInputReadyEvent,
2361                                 win_stdio_thread_wait_func, chr)) {
2362            fprintf(stderr, "qemu_add_wait_object: failed\n");
2363        }
2364    }
2365
2366    dwMode |= ENABLE_LINE_INPUT;
2367
2368    if (is_console) {
2369        /* set the terminal in raw mode */
2370        /* ENABLE_QUICK_EDIT_MODE | ENABLE_EXTENDED_FLAGS */
2371        dwMode |= ENABLE_PROCESSED_INPUT;
2372    }
2373
2374    SetConsoleMode(stdio->hStdIn, dwMode);
2375
2376    chr->chr_set_echo = qemu_chr_set_echo_win_stdio;
2377    qemu_chr_fe_set_echo(chr, false);
2378
2379    return chr;
2380}
2381#endif /* !_WIN32 */
2382
2383
2384/***********************************************************/
2385/* UDP Net console */
2386
2387typedef struct {
2388    int fd;
2389    GIOChannel *chan;
2390    uint8_t buf[READ_BUF_LEN];
2391    int bufcnt;
2392    int bufptr;
2393    int max_size;
2394} NetCharDriver;
2395
2396/* Called with chr_write_lock held.  */
2397static int udp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2398{
2399    NetCharDriver *s = chr->opaque;
2400    gsize bytes_written;
2401    GIOStatus status;
2402
2403    status = g_io_channel_write_chars(s->chan, (const gchar *)buf, len, &bytes_written, NULL);
2404    if (status == G_IO_STATUS_EOF) {
2405        return 0;
2406    } else if (status != G_IO_STATUS_NORMAL) {
2407        return -1;
2408    }
2409
2410    return bytes_written;
2411}
2412
2413static int udp_chr_read_poll(void *opaque)
2414{
2415    CharDriverState *chr = opaque;
2416    NetCharDriver *s = chr->opaque;
2417
2418    s->max_size = qemu_chr_be_can_write(chr);
2419
2420    /* If there were any stray characters in the queue process them
2421     * first
2422     */
2423    while (s->max_size > 0 && s->bufptr < s->bufcnt) {
2424        qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
2425        s->bufptr++;
2426        s->max_size = qemu_chr_be_can_write(chr);
2427    }
2428    return s->max_size;
2429}
2430
2431static gboolean udp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
2432{
2433    CharDriverState *chr = opaque;
2434    NetCharDriver *s = chr->opaque;
2435    gsize bytes_read = 0;
2436    GIOStatus status;
2437
2438    if (s->max_size == 0) {
2439        return TRUE;
2440    }
2441    status = g_io_channel_read_chars(s->chan, (gchar *)s->buf, sizeof(s->buf),
2442                                     &bytes_read, NULL);
2443    s->bufcnt = bytes_read;
2444    s->bufptr = s->bufcnt;
2445    if (status != G_IO_STATUS_NORMAL) {
2446        remove_fd_in_watch(chr);
2447        return FALSE;
2448    }
2449
2450    s->bufptr = 0;
2451    while (s->max_size > 0 && s->bufptr < s->bufcnt) {
2452        qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
2453        s->bufptr++;
2454        s->max_size = qemu_chr_be_can_write(chr);
2455    }
2456
2457    return TRUE;
2458}
2459
2460static void udp_chr_update_read_handler(CharDriverState *chr)
2461{
2462    NetCharDriver *s = chr->opaque;
2463
2464    remove_fd_in_watch(chr);
2465    if (s->chan) {
2466        chr->fd_in_tag = io_add_watch_poll(s->chan, udp_chr_read_poll,
2467                                           udp_chr_read, chr);
2468    }
2469}
2470
2471static void udp_chr_close(CharDriverState *chr)
2472{
2473    NetCharDriver *s = chr->opaque;
2474
2475    remove_fd_in_watch(chr);
2476    if (s->chan) {
2477        g_io_channel_unref(s->chan);
2478        closesocket(s->fd);
2479    }
2480    g_free(s);
2481    qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
2482}
2483
2484static CharDriverState *qemu_chr_open_udp_fd(int fd)
2485{
2486    CharDriverState *chr = NULL;
2487    NetCharDriver *s = NULL;
2488
2489    chr = qemu_chr_alloc();
2490    s = g_malloc0(sizeof(NetCharDriver));
2491
2492    s->fd = fd;
2493    s->chan = io_channel_from_socket(s->fd);
2494    s->bufcnt = 0;
2495    s->bufptr = 0;
2496    chr->opaque = s;
2497    chr->chr_write = udp_chr_write;
2498    chr->chr_update_read_handler = udp_chr_update_read_handler;
2499    chr->chr_close = udp_chr_close;
2500    /* be isn't opened until we get a connection */
2501    chr->explicit_be_open = true;
2502    return chr;
2503}
2504
2505/***********************************************************/
2506/* TCP Net console */
2507
2508typedef struct {
2509
2510    GIOChannel *chan, *listen_chan;
2511    guint listen_tag;
2512    int fd, listen_fd;
2513    int connected;
2514    int max_size;
2515    int do_telnetopt;
2516    int do_nodelay;
2517    int is_unix;
2518    int *read_msgfds;
2519    int read_msgfds_num;
2520    int *write_msgfds;
2521    int write_msgfds_num;
2522
2523    SocketAddress *addr;
2524    bool is_listen;
2525    bool is_telnet;
2526
2527    guint reconnect_timer;
2528    int64_t reconnect_time;
2529    bool connect_err_reported;
2530} TCPCharDriver;
2531
2532static gboolean socket_reconnect_timeout(gpointer opaque);
2533
2534static void qemu_chr_socket_restart_timer(CharDriverState *chr)
2535{
2536    TCPCharDriver *s = chr->opaque;
2537    assert(s->connected == 0);
2538    s->reconnect_timer = g_timeout_add_seconds(s->reconnect_time,
2539                                               socket_reconnect_timeout, chr);
2540}
2541
2542static void check_report_connect_error(CharDriverState *chr,
2543                                       Error *err)
2544{
2545    TCPCharDriver *s = chr->opaque;
2546
2547    if (!s->connect_err_reported) {
2548        error_report("Unable to connect character device %s: %s",
2549                     chr->label, error_get_pretty(err));
2550        s->connect_err_reported = true;
2551    }
2552    qemu_chr_socket_restart_timer(chr);
2553}
2554
2555static gboolean tcp_chr_accept(GIOChannel *chan, GIOCondition cond, void *opaque);
2556
2557#ifndef _WIN32
2558static int unix_send_msgfds(CharDriverState *chr, const uint8_t *buf, int len)
2559{
2560    TCPCharDriver *s = chr->opaque;
2561    struct msghdr msgh;
2562    struct iovec iov;
2563    int r;
2564
2565    size_t fd_size = s->write_msgfds_num * sizeof(int);
2566    char control[CMSG_SPACE(fd_size)];
2567    struct cmsghdr *cmsg;
2568
2569    memset(&msgh, 0, sizeof(msgh));
2570    memset(control, 0, sizeof(control));
2571
2572    /* set the payload */
2573    iov.iov_base = (uint8_t *) buf;
2574    iov.iov_len = len;
2575
2576    msgh.msg_iov = &iov;
2577    msgh.msg_iovlen = 1;
2578
2579    msgh.msg_control = control;
2580    msgh.msg_controllen = sizeof(control);
2581
2582    cmsg = CMSG_FIRSTHDR(&msgh);
2583
2584    cmsg->cmsg_len = CMSG_LEN(fd_size);
2585    cmsg->cmsg_level = SOL_SOCKET;
2586    cmsg->cmsg_type = SCM_RIGHTS;
2587    memcpy(CMSG_DATA(cmsg), s->write_msgfds, fd_size);
2588
2589    do {
2590        r = sendmsg(s->fd, &msgh, 0);
2591    } while (r < 0 && errno == EINTR);
2592
2593    /* free the written msgfds, no matter what */
2594    if (s->write_msgfds_num) {
2595        g_free(s->write_msgfds);
2596        s->write_msgfds = 0;
2597        s->write_msgfds_num = 0;
2598    }
2599
2600    return r;
2601}
2602#endif
2603
2604/* Called with chr_write_lock held.  */
2605static int tcp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2606{
2607    TCPCharDriver *s = chr->opaque;
2608    if (s->connected) {
2609#ifndef _WIN32
2610        if (s->is_unix && s->write_msgfds_num) {
2611            return unix_send_msgfds(chr, buf, len);
2612        } else
2613#endif
2614        {
2615            return io_channel_send(s->chan, buf, len);
2616        }
2617    } else {
2618        /* XXX: indicate an error ? */
2619        return len;
2620    }
2621}
2622
2623static int tcp_chr_read_poll(void *opaque)
2624{
2625    CharDriverState *chr = opaque;
2626    TCPCharDriver *s = chr->opaque;
2627    if (!s->connected)
2628        return 0;
2629    s->max_size = qemu_chr_be_can_write(chr);
2630    return s->max_size;
2631}
2632
2633#define IAC 255
2634#define IAC_BREAK 243
2635static void tcp_chr_process_IAC_bytes(CharDriverState *chr,
2636                                      TCPCharDriver *s,
2637                                      uint8_t *buf, int *size)
2638{
2639    /* Handle any telnet client's basic IAC options to satisfy char by
2640     * char mode with no echo.  All IAC options will be removed from
2641     * the buf and the do_telnetopt variable will be used to track the
2642     * state of the width of the IAC information.
2643     *
2644     * IAC commands come in sets of 3 bytes with the exception of the
2645     * "IAC BREAK" command and the double IAC.
2646     */
2647
2648    int i;
2649    int j = 0;
2650
2651    for (i = 0; i < *size; i++) {
2652        if (s->do_telnetopt > 1) {
2653            if ((unsigned char)buf[i] == IAC && s->do_telnetopt == 2) {
2654                /* Double IAC means send an IAC */
2655                if (j != i)
2656                    buf[j] = buf[i];
2657                j++;
2658                s->do_telnetopt = 1;
2659            } else {
2660                if ((unsigned char)buf[i] == IAC_BREAK && s->do_telnetopt == 2) {
2661                    /* Handle IAC break commands by sending a serial break */
2662                    qemu_chr_be_event(chr, CHR_EVENT_BREAK);
2663                    s->do_telnetopt++;
2664                }
2665                s->do_telnetopt++;
2666            }
2667            if (s->do_telnetopt >= 4) {
2668                s->do_telnetopt = 1;
2669            }
2670        } else {
2671            if ((unsigned char)buf[i] == IAC) {
2672                s->do_telnetopt = 2;
2673            } else {
2674                if (j != i)
2675                    buf[j] = buf[i];
2676                j++;
2677            }
2678        }
2679    }
2680    *size = j;
2681}
2682
2683static int tcp_get_msgfds(CharDriverState *chr, int *fds, int num)
2684{
2685    TCPCharDriver *s = chr->opaque;
2686    int to_copy = (s->read_msgfds_num < num) ? s->read_msgfds_num : num;
2687
2688    assert(num <= TCP_MAX_FDS);
2689
2690    if (to_copy) {
2691        int i;
2692
2693        memcpy(fds, s->read_msgfds, to_copy * sizeof(int));
2694
2695        /* Close unused fds */
2696        for (i = to_copy; i < s->read_msgfds_num; i++) {
2697            close(s->read_msgfds[i]);
2698        }
2699
2700        g_free(s->read_msgfds);
2701        s->read_msgfds = 0;
2702        s->read_msgfds_num = 0;
2703    }
2704
2705    return to_copy;
2706}
2707
2708static int tcp_set_msgfds(CharDriverState *chr, int *fds, int num)
2709{
2710    TCPCharDriver *s = chr->opaque;
2711
2712    /* clear old pending fd array */
2713    if (s->write_msgfds) {
2714        g_free(s->write_msgfds);
2715    }
2716
2717    if (num) {
2718        s->write_msgfds = g_malloc(num * sizeof(int));
2719        memcpy(s->write_msgfds, fds, num * sizeof(int));
2720    }
2721
2722    s->write_msgfds_num = num;
2723
2724    return 0;
2725}
2726
2727#ifndef _WIN32
2728static void unix_process_msgfd(CharDriverState *chr, struct msghdr *msg)
2729{
2730    TCPCharDriver *s = chr->opaque;
2731    struct cmsghdr *cmsg;
2732
2733    for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
2734        int fd_size, i;
2735
2736        if (cmsg->cmsg_len < CMSG_LEN(sizeof(int)) ||
2737            cmsg->cmsg_level != SOL_SOCKET ||
2738            cmsg->cmsg_type != SCM_RIGHTS) {
2739            continue;
2740        }
2741
2742        fd_size = cmsg->cmsg_len - CMSG_LEN(0);
2743
2744        if (!fd_size) {
2745            continue;
2746        }
2747
2748        /* close and clean read_msgfds */
2749        for (i = 0; i < s->read_msgfds_num; i++) {
2750            close(s->read_msgfds[i]);
2751        }
2752
2753        if (s->read_msgfds_num) {
2754            g_free(s->read_msgfds);
2755        }
2756
2757        s->read_msgfds_num = fd_size / sizeof(int);
2758        s->read_msgfds = g_malloc(fd_size);
2759        memcpy(s->read_msgfds, CMSG_DATA(cmsg), fd_size);
2760
2761        for (i = 0; i < s->read_msgfds_num; i++) {
2762            int fd = s->read_msgfds[i];
2763            if (fd < 0) {
2764                continue;
2765            }
2766
2767            /* O_NONBLOCK is preserved across SCM_RIGHTS so reset it */
2768            qemu_set_block(fd);
2769
2770    #ifndef MSG_CMSG_CLOEXEC
2771            qemu_set_cloexec(fd);
2772    #endif
2773        }
2774    }
2775}
2776
2777static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2778{
2779    TCPCharDriver *s = chr->opaque;
2780    struct msghdr msg = { NULL, };
2781    struct iovec iov[1];
2782    union {
2783        struct cmsghdr cmsg;
2784        char control[CMSG_SPACE(sizeof(int) * TCP_MAX_FDS)];
2785    } msg_control;
2786    int flags = 0;
2787    ssize_t ret;
2788
2789    iov[0].iov_base = buf;
2790    iov[0].iov_len = len;
2791
2792    msg.msg_iov = iov;
2793    msg.msg_iovlen = 1;
2794    msg.msg_control = &msg_control;
2795    msg.msg_controllen = sizeof(msg_control);
2796
2797#ifdef MSG_CMSG_CLOEXEC
2798    flags |= MSG_CMSG_CLOEXEC;
2799#endif
2800    do {
2801        ret = recvmsg(s->fd, &msg, flags);
2802    } while (ret == -1 && errno == EINTR);
2803
2804    if (ret > 0 && s->is_unix) {
2805        unix_process_msgfd(chr, &msg);
2806    }
2807
2808    return ret;
2809}
2810#else
2811static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2812{
2813    TCPCharDriver *s = chr->opaque;
2814    ssize_t ret;
2815
2816    do {
2817        ret = qemu_recv(s->fd, buf, len, 0);
2818    } while (ret == -1 && socket_error() == EINTR);
2819
2820    return ret;
2821}
2822#endif
2823
2824static GSource *tcp_chr_add_watch(CharDriverState *chr, GIOCondition cond)
2825{
2826    TCPCharDriver *s = chr->opaque;
2827    return g_io_create_watch(s->chan, cond);
2828}
2829
2830static void tcp_chr_disconnect(CharDriverState *chr)
2831{
2832    TCPCharDriver *s = chr->opaque;
2833
2834    s->connected = 0;
2835    if (s->listen_chan) {
2836        s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN,
2837                                       tcp_chr_accept, chr);
2838    }
2839    remove_fd_in_watch(chr);
2840    g_io_channel_unref(s->chan);
2841    s->chan = NULL;
2842    closesocket(s->fd);
2843    s->fd = -1;
2844    SocketAddress_to_str(chr->filename, CHR_MAX_FILENAME_SIZE,
2845                         "disconnected:", s->addr, s->is_listen, s->is_telnet);
2846    qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
2847    if (s->reconnect_time) {
2848        qemu_chr_socket_restart_timer(chr);
2849    }
2850}
2851
2852static gboolean tcp_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque)
2853{
2854    CharDriverState *chr = opaque;
2855    TCPCharDriver *s = chr->opaque;
2856    uint8_t buf[READ_BUF_LEN];
2857    int len, size;
2858
2859    if (cond & G_IO_HUP) {
2860        /* connection closed */
2861        tcp_chr_disconnect(chr);
2862        return TRUE;
2863    }
2864
2865    if (!s->connected || s->max_size <= 0) {
2866        return TRUE;
2867    }
2868    len = sizeof(buf);
2869    if (len > s->max_size)
2870        len = s->max_size;
2871    size = tcp_chr_recv(chr, (void *)buf, len);
2872    if (size == 0) {
2873        /* connection closed */
2874        tcp_chr_disconnect(chr);
2875    } else if (size > 0) {
2876        if (s->do_telnetopt)
2877            tcp_chr_process_IAC_bytes(chr, s, buf, &size);
2878        if (size > 0)
2879            qemu_chr_be_write(chr, buf, size);
2880    }
2881
2882    return TRUE;
2883}
2884
2885static int tcp_chr_sync_read(CharDriverState *chr, const uint8_t *buf, int len)
2886{
2887    TCPCharDriver *s = chr->opaque;
2888    int size;
2889
2890    if (!s->connected) {
2891        return 0;
2892    }
2893
2894    size = tcp_chr_recv(chr, (void *) buf, len);
2895    if (size == 0) {
2896        /* connection closed */
2897        tcp_chr_disconnect(chr);
2898    }
2899
2900    return size;
2901}
2902
2903#ifndef _WIN32
2904CharDriverState *qemu_chr_open_eventfd(int eventfd)
2905{
2906    CharDriverState *chr = qemu_chr_open_fd(eventfd, eventfd);
2907
2908    if (chr) {
2909        chr->avail_connections = 1;
2910    }
2911
2912    return chr;
2913}
2914#endif
2915
2916static void tcp_chr_connect(void *opaque)
2917{
2918    CharDriverState *chr = opaque;
2919    TCPCharDriver *s = chr->opaque;
2920    struct sockaddr_storage ss, ps;
2921    socklen_t ss_len = sizeof(ss), ps_len = sizeof(ps);
2922
2923    memset(&ss, 0, ss_len);
2924    if (getsockname(s->fd, (struct sockaddr *) &ss, &ss_len) != 0) {
2925        snprintf(chr->filename, CHR_MAX_FILENAME_SIZE,
2926                 "Error in getsockname: %s\n", strerror(errno));
2927    } else if (getpeername(s->fd, (struct sockaddr *) &ps, &ps_len) != 0) {
2928        snprintf(chr->filename, CHR_MAX_FILENAME_SIZE,
2929                 "Error in getpeername: %s\n", strerror(errno));
2930    } else {
2931        sockaddr_to_str(chr->filename, CHR_MAX_FILENAME_SIZE,
2932                        &ss, ss_len, &ps, ps_len,
2933                        s->is_listen, s->is_telnet);
2934    }
2935
2936    s->connected = 1;
2937    if (s->chan) {
2938        chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
2939                                           tcp_chr_read, chr);
2940    }
2941    qemu_chr_be_generic_open(chr);
2942}
2943
2944static void tcp_chr_update_read_handler(CharDriverState *chr)
2945{
2946    TCPCharDriver *s = chr->opaque;
2947
2948    remove_fd_in_watch(chr);
2949    if (s->chan) {
2950        chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
2951                                           tcp_chr_read, chr);
2952    }
2953}
2954
2955#define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
2956static void tcp_chr_telnet_init(int fd)
2957{
2958    char buf[3];
2959    /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
2960    IACSET(buf, 0xff, 0xfb, 0x01);  /* IAC WILL ECHO */
2961    send(fd, (char *)buf, 3, 0);
2962    IACSET(buf, 0xff, 0xfb, 0x03);  /* IAC WILL Suppress go ahead */
2963    send(fd, (char *)buf, 3, 0);
2964    IACSET(buf, 0xff, 0xfb, 0x00);  /* IAC WILL Binary */
2965    send(fd, (char *)buf, 3, 0);
2966    IACSET(buf, 0xff, 0xfd, 0x00);  /* IAC DO Binary */
2967    send(fd, (char *)buf, 3, 0);
2968}
2969
2970static int tcp_chr_add_client(CharDriverState *chr, int fd)
2971{
2972    TCPCharDriver *s = chr->opaque;
2973    if (s->fd != -1)
2974        return -1;
2975
2976    qemu_set_nonblock(fd);
2977    if (s->do_nodelay)
2978        socket_set_nodelay(fd);
2979    s->fd = fd;
2980    s->chan = io_channel_from_socket(fd);
2981    if (s->listen_tag) {
2982        g_source_remove(s->listen_tag);
2983        s->listen_tag = 0;
2984    }
2985    tcp_chr_connect(chr);
2986
2987    return 0;
2988}
2989
2990static gboolean tcp_chr_accept(GIOChannel *channel, GIOCondition cond, void *opaque)
2991{
2992    CharDriverState *chr = opaque;
2993    TCPCharDriver *s = chr->opaque;
2994    struct sockaddr_in saddr;
2995#ifndef _WIN32
2996    struct sockaddr_un uaddr;
2997#endif
2998    struct sockaddr *addr;
2999    socklen_t len;
3000    int fd;
3001
3002    for(;;) {
3003#ifndef _WIN32
3004        if (s->is_unix) {
3005            len = sizeof(uaddr);
3006            addr = (struct sockaddr *)&uaddr;
3007        } else
3008#endif
3009        {
3010            len = sizeof(saddr);
3011            addr = (struct sockaddr *)&saddr;
3012        }
3013        fd = qemu_accept(s->listen_fd, addr, &len);
3014        if (fd < 0 && errno != EINTR) {
3015            s->listen_tag = 0;
3016            return FALSE;
3017        } else if (fd >= 0) {
3018            if (s->do_telnetopt)
3019                tcp_chr_telnet_init(fd);
3020            break;
3021        }
3022    }
3023    if (tcp_chr_add_client(chr, fd) < 0)
3024        close(fd);
3025
3026    return TRUE;
3027}
3028
3029static void tcp_chr_close(CharDriverState *chr)
3030{
3031    TCPCharDriver *s = chr->opaque;
3032    int i;
3033
3034    if (s->reconnect_timer) {
3035        g_source_remove(s->reconnect_timer);
3036        s->reconnect_timer = 0;
3037    }
3038    qapi_free_SocketAddress(s->addr);
3039    if (s->fd >= 0) {
3040        remove_fd_in_watch(chr);
3041        if (s->chan) {
3042            g_io_channel_unref(s->chan);
3043        }
3044        closesocket(s->fd);
3045    }
3046    if (s->listen_fd >= 0) {
3047        if (s->listen_tag) {
3048            g_source_remove(s->listen_tag);
3049            s->listen_tag = 0;
3050        }
3051        if (s->listen_chan) {
3052            g_io_channel_unref(s->listen_chan);
3053        }
3054        closesocket(s->listen_fd);
3055    }
3056    if (s->read_msgfds_num) {
3057        for (i = 0; i < s->read_msgfds_num; i++) {
3058            close(s->read_msgfds[i]);
3059        }
3060        g_free(s->read_msgfds);
3061    }
3062    if (s->write_msgfds_num) {
3063        g_free(s->write_msgfds);
3064    }
3065    g_free(s);
3066    qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
3067}
3068
3069static void qemu_chr_finish_socket_connection(CharDriverState *chr, int fd)
3070{
3071    TCPCharDriver *s = chr->opaque;
3072
3073    if (s->is_listen) {
3074        s->listen_fd = fd;
3075        s->listen_chan = io_channel_from_socket(s->listen_fd);
3076        s->listen_tag = g_io_add_watch(s->listen_chan, G_IO_IN,
3077                                       tcp_chr_accept, chr);
3078    } else {
3079        s->connected = 1;
3080        s->fd = fd;
3081        socket_set_nodelay(fd);
3082        s->chan = io_channel_from_socket(s->fd);
3083        tcp_chr_connect(chr);
3084    }
3085}
3086
3087static void qemu_chr_socket_connected(int fd, Error *err, void *opaque)
3088{
3089    CharDriverState *chr = opaque;
3090    TCPCharDriver *s = chr->opaque;
3091
3092    if (fd < 0) {
3093        check_report_connect_error(chr, err);
3094        return;
3095    }
3096
3097    s->connect_err_reported = false;
3098    qemu_chr_finish_socket_connection(chr, fd);
3099}
3100
3101static bool qemu_chr_open_socket_fd(CharDriverState *chr, Error **errp)
3102{
3103    TCPCharDriver *s = chr->opaque;
3104    int fd;
3105
3106    if (s->is_listen) {
3107        fd = socket_listen(s->addr, errp);
3108    } else if (s->reconnect_time) {
3109        fd = socket_connect(s->addr, errp, qemu_chr_socket_connected, chr);
3110        return fd >= 0;
3111    } else {
3112        fd = socket_connect(s->addr, errp, NULL, NULL);
3113    }
3114    if (fd < 0) {
3115        return false;
3116    }
3117
3118    qemu_chr_finish_socket_connection(chr, fd);
3119    return true;
3120}
3121
3122/*********************************************************/
3123/* Ring buffer chardev */
3124
3125typedef struct {
3126    size_t size;
3127    size_t prod;
3128    size_t cons;
3129    uint8_t *cbuf;
3130} RingBufCharDriver;
3131
3132static size_t ringbuf_count(const CharDriverState *chr)
3133{
3134    const RingBufCharDriver *d = chr->opaque;
3135
3136    return d->prod - d->cons;
3137}
3138
3139/* Called with chr_write_lock held.  */
3140static int ringbuf_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
3141{
3142    RingBufCharDriver *d = chr->opaque;
3143    int i;
3144
3145    if (!buf || (len < 0)) {
3146        return -1;
3147    }
3148
3149    for (i = 0; i < len; i++ ) {
3150        d->cbuf[d->prod++ & (d->size - 1)] = buf[i];
3151        if (d->prod - d->cons > d->size) {
3152            d->cons = d->prod - d->size;
3153        }
3154    }
3155
3156    return 0;
3157}
3158
3159static int ringbuf_chr_read(CharDriverState *chr, uint8_t *buf, int len)
3160{
3161    RingBufCharDriver *d = chr->opaque;
3162    int i;
3163
3164    qemu_mutex_lock(&chr->chr_write_lock);
3165    for (i = 0; i < len && d->cons != d->prod; i++) {
3166        buf[i] = d->cbuf[d->cons++ & (d->size - 1)];
3167    }
3168    qemu_mutex_unlock(&chr->chr_write_lock);
3169
3170    return i;
3171}
3172
3173static void ringbuf_chr_close(struct CharDriverState *chr)
3174{
3175    RingBufCharDriver *d = chr->opaque;
3176
3177    g_free(d->cbuf);
3178    g_free(d);
3179    chr->opaque = NULL;
3180}
3181
3182static CharDriverState *qemu_chr_open_ringbuf(ChardevRingbuf *opts,
3183                                              Error **errp)
3184{
3185    CharDriverState *chr;
3186    RingBufCharDriver *d;
3187
3188    chr = qemu_chr_alloc();
3189    d = g_malloc(sizeof(*d));
3190
3191    d->size = opts->has_size ? opts->size : 65536;
3192
3193    /* The size must be power of 2 */
3194    if (d->size & (d->size - 1)) {
3195        error_setg(errp, "size of ringbuf chardev must be power of two");
3196        goto fail;
3197    }
3198
3199    d->prod = 0;
3200    d->cons = 0;
3201    d->cbuf = g_malloc0(d->size);
3202
3203    chr->opaque = d;
3204    chr->chr_write = ringbuf_chr_write;
3205    chr->chr_close = ringbuf_chr_close;
3206
3207    return chr;
3208
3209fail:
3210    g_free(d);
3211    g_free(chr);
3212    return NULL;
3213}
3214
3215bool chr_is_ringbuf(const CharDriverState *chr)
3216{
3217    return chr->chr_write == ringbuf_chr_write;
3218}
3219
3220void qmp_ringbuf_write(const char *device, const char *data,
3221                       bool has_format, enum DataFormat format,
3222                       Error **errp)
3223{
3224    CharDriverState *chr;
3225    const uint8_t *write_data;
3226    int ret;
3227    gsize write_count;
3228
3229    chr = qemu_chr_find(device);
3230    if (!chr) {
3231        error_setg(errp, "Device '%s' not found", device);
3232        return;
3233    }
3234
3235    if (!chr_is_ringbuf(chr)) {
3236        error_setg(errp,"%s is not a ringbuf device", device);
3237        return;
3238    }
3239
3240    if (has_format && (format == DATA_FORMAT_BASE64)) {
3241        write_data = g_base64_decode(data, &write_count);
3242    } else {
3243        write_data = (uint8_t *)data;
3244        write_count = strlen(data);
3245    }
3246
3247    ret = ringbuf_chr_write(chr, write_data, write_count);
3248
3249    if (write_data != (uint8_t *)data) {
3250        g_free((void *)write_data);
3251    }
3252
3253    if (ret < 0) {
3254        error_setg(errp, "Failed to write to device %s", device);
3255        return;
3256    }
3257}
3258
3259char *qmp_ringbuf_read(const char *device, int64_t size,
3260                       bool has_format, enum DataFormat format,
3261                       Error **errp)
3262{
3263    CharDriverState *chr;
3264    uint8_t *read_data;
3265    size_t count;
3266    char *data;
3267
3268    chr = qemu_chr_find(device);
3269    if (!chr) {
3270        error_setg(errp, "Device '%s' not found", device);
3271        return NULL;
3272    }
3273
3274    if (!chr_is_ringbuf(chr)) {
3275        error_setg(errp,"%s is not a ringbuf device", device);
3276        return NULL;
3277    }
3278
3279    if (size <= 0) {
3280        error_setg(errp, "size must be greater than zero");
3281        return NULL;
3282    }
3283
3284    count = ringbuf_count(chr);
3285    size = size > count ? count : size;
3286    read_data = g_malloc(size + 1);
3287
3288    ringbuf_chr_read(chr, read_data, size);
3289
3290    if (has_format && (format == DATA_FORMAT_BASE64)) {
3291        data = g_base64_encode(read_data, size);
3292        g_free(read_data);
3293    } else {
3294        /*
3295         * FIXME should read only complete, valid UTF-8 characters up
3296         * to @size bytes.  Invalid sequences should be replaced by a
3297         * suitable replacement character.  Except when (and only
3298         * when) ring buffer lost characters since last read, initial
3299         * continuation characters should be dropped.
3300         */
3301        read_data[size] = 0;
3302        data = (char *)read_data;
3303    }
3304
3305    return data;
3306}
3307
3308QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
3309{
3310    char host[65], port[33], width[8], height[8];
3311    int pos;
3312    const char *p;
3313    QemuOpts *opts;
3314    Error *local_err = NULL;
3315
3316    opts = qemu_opts_create(qemu_find_opts("chardev"), label, 1, &local_err);
3317    if (local_err) {
3318        error_report_err(local_err);
3319        return NULL;
3320    }
3321
3322    if (strstart(filename, "mon:", &p)) {
3323        filename = p;
3324        qemu_opt_set(opts, "mux", "on", &error_abort);
3325        if (strcmp(filename, "stdio") == 0) {
3326            /* Monitor is muxed to stdio: do not exit on Ctrl+C by default
3327             * but pass it to the guest.  Handle this only for compat syntax,
3328             * for -chardev syntax we have special option for this.
3329             * This is what -nographic did, redirecting+muxing serial+monitor
3330             * to stdio causing Ctrl+C to be passed to guest. */
3331            qemu_opt_set(opts, "signal", "off", &error_abort);
3332        }
3333    }
3334
3335    if (strcmp(filename, "null")    == 0 ||
3336        strcmp(filename, "pty")     == 0 ||
3337        strcmp(filename, "msmouse") == 0 ||
3338        strcmp(filename, "braille") == 0 ||
3339        strcmp(filename, "testdev") == 0 ||
3340        strcmp(filename, "stdio")   == 0) {
3341        qemu_opt_set(opts, "backend", filename, &error_abort);
3342        return opts;
3343    }
3344    if (strstart(filename, "vc", &p)) {
3345        qemu_opt_set(opts, "backend", "vc", &error_abort);
3346        if (*p == ':') {
3347            if (sscanf(p+1, "%7[0-9]x%7[0-9]", width, height) == 2) {
3348                /* pixels */
3349                qemu_opt_set(opts, "width", width, &error_abort);
3350                qemu_opt_set(opts, "height", height, &error_abort);
3351            } else if (sscanf(p+1, "%7[0-9]Cx%7[0-9]C", width, height) == 2) {
3352                /* chars */
3353                qemu_opt_set(opts, "cols", width, &error_abort);
3354                qemu_opt_set(opts, "rows", height, &error_abort);
3355            } else {
3356                goto fail;
3357            }
3358        }
3359        return opts;
3360    }
3361    if (strcmp(filename, "con:") == 0) {
3362        qemu_opt_set(opts, "backend", "console", &error_abort);
3363        return opts;
3364    }
3365    if (strstart(filename, "COM", NULL)) {
3366        qemu_opt_set(opts, "backend", "serial", &error_abort);
3367        qemu_opt_set(opts, "path", filename, &error_abort);
3368        return opts;
3369    }
3370    if (strstart(filename, "file:", &p)) {
3371        qemu_opt_set(opts, "backend", "file", &error_abort);
3372        qemu_opt_set(opts, "path", p, &error_abort);
3373        return opts;
3374    }
3375    if (strstart(filename, "pipe:", &p)) {
3376        qemu_opt_set(opts, "backend", "pipe", &error_abort);
3377        qemu_opt_set(opts, "path", p, &error_abort);
3378        return opts;
3379    }
3380    if (strstart(filename, "tcp:", &p) ||
3381        strstart(filename, "telnet:", &p)) {
3382        if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3383            host[0] = 0;
3384            if (sscanf(p, ":%32[^,]%n", port, &pos) < 1)
3385                goto fail;
3386        }
3387        qemu_opt_set(opts, "backend", "socket", &error_abort);
3388        qemu_opt_set(opts, "host", host, &error_abort);
3389        qemu_opt_set(opts, "port", port, &error_abort);
3390        if (p[pos] == ',') {
3391            qemu_opts_do_parse(opts, p+pos+1, NULL, &local_err);
3392            if (local_err) {
3393                error_report_err(local_err);
3394                goto fail;
3395            }
3396        }
3397        if (strstart(filename, "telnet:", &p))
3398            qemu_opt_set(opts, "telnet", "on", &error_abort);
3399        return opts;
3400    }
3401    if (strstart(filename, "udp:", &p)) {
3402        qemu_opt_set(opts, "backend", "udp", &error_abort);
3403        if (sscanf(p, "%64[^:]:%32[^@,]%n", host, port, &pos) < 2) {
3404            host[0] = 0;
3405            if (sscanf(p, ":%32[^@,]%n", port, &pos) < 1) {
3406                goto fail;
3407            }
3408        }
3409        qemu_opt_set(opts, "host", host, &error_abort);
3410        qemu_opt_set(opts, "port", port, &error_abort);
3411        if (p[pos] == '@') {
3412            p += pos + 1;
3413            if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
3414                host[0] = 0;
3415                if (sscanf(p, ":%32[^,]%n", port, &pos) < 1) {
3416                    goto fail;
3417                }
3418            }
3419            qemu_opt_set(opts, "localaddr", host, &error_abort);
3420            qemu_opt_set(opts, "localport", port, &error_abort);
3421        }
3422        return opts;
3423    }
3424    if (strstart(filename, "unix:", &p)) {
3425        qemu_opt_set(opts, "backend", "socket", &error_abort);
3426        qemu_opts_do_parse(opts, p, "path", &local_err);
3427        if (local_err) {
3428            error_report_err(local_err);
3429            goto fail;
3430        }
3431        return opts;
3432    }
3433    if (strstart(filename, "/dev/parport", NULL) ||
3434        strstart(filename, "/dev/ppi", NULL)) {
3435        qemu_opt_set(opts, "backend", "parport", &error_abort);
3436        qemu_opt_set(opts, "path", filename, &error_abort);
3437        return opts;
3438    }
3439    if (strstart(filename, "/dev/", NULL)) {
3440        qemu_opt_set(opts, "backend", "tty", &error_abort);
3441        qemu_opt_set(opts, "path", filename, &error_abort);
3442        return opts;
3443    }
3444
3445fail:
3446    qemu_opts_del(opts);
3447    return NULL;
3448}
3449
3450static void qemu_chr_parse_file_out(QemuOpts *opts, ChardevBackend *backend,
3451                                    Error **errp)
3452{
3453    const char *path = qemu_opt_get(opts, "path");
3454
3455    if (path == NULL) {
3456        error_setg(errp, "chardev: file: no filename given");
3457        return;
3458    }
3459    backend->file = g_new0(ChardevFile, 1);
3460    backend->file->out = g_strdup(path);
3461}
3462
3463static void qemu_chr_parse_stdio(QemuOpts *opts, ChardevBackend *backend,
3464                                 Error **errp)
3465{
3466    backend->stdio = g_new0(ChardevStdio, 1);
3467    backend->stdio->has_signal = true;
3468    backend->stdio->signal = qemu_opt_get_bool(opts, "signal", true);
3469}
3470
3471static void qemu_chr_parse_serial(QemuOpts *opts, ChardevBackend *backend,
3472                                  Error **errp)
3473{
3474    const char *device = qemu_opt_get(opts, "path");
3475
3476    if (device == NULL) {
3477        error_setg(errp, "chardev: serial/tty: no device path given");
3478        return;
3479    }
3480    backend->serial = g_new0(ChardevHostdev, 1);
3481    backend->serial->device = g_strdup(device);
3482}
3483
3484static void qemu_chr_parse_parallel(QemuOpts *opts, ChardevBackend *backend,
3485                                    Error **errp)
3486{
3487    const char *device = qemu_opt_get(opts, "path");
3488
3489    if (device == NULL) {
3490        error_setg(errp, "chardev: parallel: no device path given");
3491        return;
3492    }
3493    backend->parallel = g_new0(ChardevHostdev, 1);
3494    backend->parallel->device = g_strdup(device);
3495}
3496
3497static void qemu_chr_parse_pipe(QemuOpts *opts, ChardevBackend *backend,
3498                                Error **errp)
3499{
3500    const char *device = qemu_opt_get(opts, "path");
3501
3502    if (device == NULL) {
3503        error_setg(errp, "chardev: pipe: no device path given");
3504        return;
3505    }
3506    backend->pipe = g_new0(ChardevHostdev, 1);
3507    backend->pipe->device = g_strdup(device);
3508}
3509
3510static void qemu_chr_parse_ringbuf(QemuOpts *opts, ChardevBackend *backend,
3511                                   Error **errp)
3512{
3513    int val;
3514
3515    backend->ringbuf = g_new0(ChardevRingbuf, 1);
3516
3517    val = qemu_opt_get_size(opts, "size", 0);
3518    if (val != 0) {
3519        backend->ringbuf->has_size = true;
3520        backend->ringbuf->size = val;
3521    }
3522}
3523
3524static void qemu_chr_parse_mux(QemuOpts *opts, ChardevBackend *backend,
3525                               Error **errp)
3526{
3527    const char *chardev = qemu_opt_get(opts, "chardev");
3528
3529    if (chardev == NULL) {
3530        error_setg(errp, "chardev: mux: no chardev given");
3531        return;
3532    }
3533    backend->mux = g_new0(ChardevMux, 1);
3534    backend->mux->chardev = g_strdup(chardev);
3535}
3536
3537static void qemu_chr_parse_socket(QemuOpts *opts, ChardevBackend *backend,
3538                                  Error **errp)
3539{
3540    bool is_listen      = qemu_opt_get_bool(opts, "server", false);
3541    bool is_waitconnect = is_listen && qemu_opt_get_bool(opts, "wait", true);
3542    bool is_telnet      = qemu_opt_get_bool(opts, "telnet", false);
3543    bool do_nodelay     = !qemu_opt_get_bool(opts, "delay", true);
3544    int64_t reconnect   = qemu_opt_get_number(opts, "reconnect", 0);
3545    const char *path = qemu_opt_get(opts, "path");
3546    const char *host = qemu_opt_get(opts, "host");
3547    const char *port = qemu_opt_get(opts, "port");
3548    SocketAddress *addr;
3549
3550    if (!path) {
3551        if (!host) {
3552            error_setg(errp, "chardev: socket: no host given");
3553            return;
3554        }
3555        if (!port) {
3556            error_setg(errp, "chardev: socket: no port given");
3557            return;
3558        }
3559    }
3560
3561    backend->socket = g_new0(ChardevSocket, 1);
3562
3563    backend->socket->has_nodelay = true;
3564    backend->socket->nodelay = do_nodelay;
3565    backend->socket->has_server = true;
3566    backend->socket->server = is_listen;
3567    backend->socket->has_telnet = true;
3568    backend->socket->telnet = is_telnet;
3569    backend->socket->has_wait = true;
3570    backend->socket->wait = is_waitconnect;
3571    backend->socket->has_reconnect = true;
3572    backend->socket->reconnect = reconnect;
3573
3574    addr = g_new0(SocketAddress, 1);
3575    if (path) {
3576        addr->kind = SOCKET_ADDRESS_KIND_UNIX;
3577        addr->q_unix = g_new0(UnixSocketAddress, 1);
3578        addr->q_unix->path = g_strdup(path);
3579    } else {
3580        addr->kind = SOCKET_ADDRESS_KIND_INET;
3581        addr->inet = g_new0(InetSocketAddress, 1);
3582        addr->inet->host = g_strdup(host);
3583        addr->inet->port = g_strdup(port);
3584        addr->inet->has_to = qemu_opt_get(opts, "to");
3585        addr->inet->to = qemu_opt_get_number(opts, "to", 0);
3586        addr->inet->has_ipv4 = qemu_opt_get(opts, "ipv4");
3587        addr->inet->ipv4 = qemu_opt_get_bool(opts, "ipv4", 0);
3588        addr->inet->has_ipv6 = qemu_opt_get(opts, "ipv6");
3589        addr->inet->ipv6 = qemu_opt_get_bool(opts, "ipv6", 0);
3590    }
3591    backend->socket->addr = addr;
3592}
3593
3594static void qemu_chr_parse_udp(QemuOpts *opts, ChardevBackend *backend,
3595                               Error **errp)
3596{
3597    const char *host = qemu_opt_get(opts, "host");
3598    const char *port = qemu_opt_get(opts, "port");
3599    const char *localaddr = qemu_opt_get(opts, "localaddr");
3600    const char *localport = qemu_opt_get(opts, "localport");
3601    bool has_local = false;
3602    SocketAddress *addr;
3603
3604    if (host == NULL || strlen(host) == 0) {
3605        host = "localhost";
3606    }
3607    if (port == NULL || strlen(port) == 0) {
3608        error_setg(errp, "chardev: udp: remote port not specified");
3609        return;
3610    }
3611    if (localport == NULL || strlen(localport) == 0) {
3612        localport = "0";
3613    } else {
3614        has_local = true;
3615    }
3616    if (localaddr == NULL || strlen(localaddr) == 0) {
3617        localaddr = "";
3618    } else {
3619        has_local = true;
3620    }
3621
3622    backend->udp = g_new0(ChardevUdp, 1);
3623
3624    addr = g_new0(SocketAddress, 1);
3625    addr->kind = SOCKET_ADDRESS_KIND_INET;
3626    addr->inet = g_new0(InetSocketAddress, 1);
3627    addr->inet->host = g_strdup(host);
3628    addr->inet->port = g_strdup(port);
3629    addr->inet->has_ipv4 = qemu_opt_get(opts, "ipv4");
3630    addr->inet->ipv4 = qemu_opt_get_bool(opts, "ipv4", 0);
3631    addr->inet->has_ipv6 = qemu_opt_get(opts, "ipv6");
3632    addr->inet->ipv6 = qemu_opt_get_bool(opts, "ipv6", 0);
3633    backend->udp->remote = addr;
3634
3635    if (has_local) {
3636        backend->udp->has_local = true;
3637        addr = g_new0(SocketAddress, 1);
3638        addr->kind = SOCKET_ADDRESS_KIND_INET;
3639        addr->inet = g_new0(InetSocketAddress, 1);
3640        addr->inet->host = g_strdup(localaddr);
3641        addr->inet->port = g_strdup(localport);
3642        backend->udp->local = addr;
3643    }
3644}
3645
3646typedef struct CharDriver {
3647    const char *name;
3648    ChardevBackendKind kind;
3649    void (*parse)(QemuOpts *opts, ChardevBackend *backend, Error **errp);
3650} CharDriver;
3651
3652static GSList *backends;
3653
3654void register_char_driver(const char *name, ChardevBackendKind kind,
3655        void (*parse)(QemuOpts *opts, ChardevBackend *backend, Error **errp))
3656{
3657    CharDriver *s;
3658
3659    s = g_malloc0(sizeof(*s));
3660    s->name = g_strdup(name);
3661    s->kind = kind;
3662    s->parse = parse;
3663
3664    backends = g_slist_append(backends, s);
3665}
3666
3667CharDriverState *qemu_chr_new_from_opts(QemuOpts *opts,
3668                                    void (*init)(struct CharDriverState *s),
3669                                    Error **errp)
3670{
3671    Error *local_err = NULL;
3672    CharDriver *cd;
3673    CharDriverState *chr;
3674    GSList *i;
3675    ChardevReturn *ret = NULL;
3676    ChardevBackend *backend;
3677    const char *id = qemu_opts_id(opts);
3678    char *bid = NULL;
3679
3680    if (id == NULL) {
3681        error_setg(errp, "chardev: no id specified");
3682        goto err;
3683    }
3684
3685    if (qemu_opt_get(opts, "backend") == NULL) {
3686        error_setg(errp, "chardev: \"%s\" missing backend",
3687                   qemu_opts_id(opts));
3688        goto err;
3689    }
3690    for (i = backends; i; i = i->next) {
3691        cd = i->data;
3692
3693        if (strcmp(cd->name, qemu_opt_get(opts, "backend")) == 0) {
3694            break;
3695        }
3696    }
3697    if (i == NULL) {
3698        error_setg(errp, "chardev: backend \"%s\" not found",
3699                   qemu_opt_get(opts, "backend"));
3700        goto err;
3701    }
3702
3703    backend = g_new0(ChardevBackend, 1);
3704
3705    if (qemu_opt_get_bool(opts, "mux", 0)) {
3706        bid = g_strdup_printf("%s-base", id);
3707    }
3708
3709    chr = NULL;
3710    backend->kind = cd->kind;
3711    if (cd->parse) {
3712        cd->parse(opts, backend, &local_err);
3713        if (local_err) {
3714            error_propagate(errp, local_err);
3715            goto qapi_out;
3716        }
3717    }
3718    ret = qmp_chardev_add(bid ? bid : id, backend, errp);
3719    if (!ret) {
3720        goto qapi_out;
3721    }
3722
3723    if (bid) {
3724        qapi_free_ChardevBackend(backend);
3725        qapi_free_ChardevReturn(ret);
3726        backend = g_new0(ChardevBackend, 1);
3727        backend->mux = g_new0(ChardevMux, 1);
3728        backend->kind = CHARDEV_BACKEND_KIND_MUX;
3729        backend->mux->chardev = g_strdup(bid);
3730        ret = qmp_chardev_add(id, backend, errp);
3731        if (!ret) {
3732            chr = qemu_chr_find(bid);
3733            qemu_chr_delete(chr);
3734            chr = NULL;
3735            goto qapi_out;
3736        }
3737    }
3738
3739    chr = qemu_chr_find(id);
3740    chr->opts = opts;
3741
3742qapi_out:
3743    qapi_free_ChardevBackend(backend);
3744    qapi_free_ChardevReturn(ret);
3745    g_free(bid);
3746    return chr;
3747
3748err:
3749    qemu_opts_del(opts);
3750    return NULL;
3751}
3752
3753CharDriverState *qemu_chr_new(const char *label, const char *filename, void (*init)(struct CharDriverState *s))
3754{
3755    const char *p;
3756    CharDriverState *chr;
3757    QemuOpts *opts;
3758    Error *err = NULL;
3759
3760    if (strstart(filename, "chardev:", &p)) {
3761        return qemu_chr_find(p);
3762    }
3763
3764    opts = qemu_chr_parse_compat(label, filename);
3765    if (!opts)
3766        return NULL;
3767
3768    chr = qemu_chr_new_from_opts(opts, init, &err);
3769    if (err) {
3770        error_report_err(err);
3771    }
3772    if (chr && qemu_opt_get_bool(opts, "mux", 0)) {
3773        qemu_chr_fe_claim_no_fail(chr);
3774        monitor_init(chr, MONITOR_USE_READLINE);
3775    }
3776    return chr;
3777}
3778
3779void qemu_chr_fe_set_echo(struct CharDriverState *chr, bool echo)
3780{
3781    if (chr->chr_set_echo) {
3782        chr->chr_set_echo(chr, echo);
3783    }
3784}
3785
3786void qemu_chr_fe_set_open(struct CharDriverState *chr, int fe_open)
3787{
3788    if (chr->fe_open == fe_open) {
3789        return;
3790    }
3791    chr->fe_open = fe_open;
3792    if (chr->chr_set_fe_open) {
3793        chr->chr_set_fe_open(chr, fe_open);
3794    }
3795}
3796
3797void qemu_chr_fe_event(struct CharDriverState *chr, int event)
3798{
3799    if (chr->chr_fe_event) {
3800        chr->chr_fe_event(chr, event);
3801    }
3802}
3803
3804int qemu_chr_fe_add_watch(CharDriverState *s, GIOCondition cond,
3805                          GIOFunc func, void *user_data)
3806{
3807    GSource *src;
3808    guint tag;
3809
3810    if (s->chr_add_watch == NULL) {
3811        return -ENOSYS;
3812    }
3813
3814    src = s->chr_add_watch(s, cond);
3815    if (!src) {
3816        return -EINVAL;
3817    }
3818
3819    g_source_set_callback(src, (GSourceFunc)func, user_data, NULL);
3820    tag = g_source_attach(src, NULL);
3821    g_source_unref(src);
3822
3823    return tag;
3824}
3825
3826int qemu_chr_fe_claim(CharDriverState *s)
3827{
3828    if (s->avail_connections < 1) {
3829        return -1;
3830    }
3831    s->avail_connections--;
3832    return 0;
3833}
3834
3835void qemu_chr_fe_claim_no_fail(CharDriverState *s)
3836{
3837    if (qemu_chr_fe_claim(s) != 0) {
3838        fprintf(stderr, "%s: error chardev \"%s\" already used\n",
3839                __func__, s->label);
3840        exit(1);
3841    }
3842}
3843
3844void qemu_chr_fe_release(CharDriverState *s)
3845{
3846    s->avail_connections++;
3847}
3848
3849void qemu_chr_delete(CharDriverState *chr)
3850{
3851    QTAILQ_REMOVE(&chardevs, chr, next);
3852    if (chr->chr_close) {
3853        chr->chr_close(chr);
3854    }
3855    g_free(chr->filename);
3856    g_free(chr->label);
3857    qemu_opts_del(chr->opts);
3858    g_free(chr);
3859}
3860
3861ChardevInfoList *qmp_query_chardev(Error **errp)
3862{
3863    ChardevInfoList *chr_list = NULL;
3864    CharDriverState *chr;
3865
3866    QTAILQ_FOREACH(chr, &chardevs, next) {
3867        ChardevInfoList *info = g_malloc0(sizeof(*info));
3868        info->value = g_malloc0(sizeof(*info->value));
3869        info->value->label = g_strdup(chr->label);
3870        info->value->filename = g_strdup(chr->filename);
3871        info->value->frontend_open = chr->fe_open;
3872
3873        info->next = chr_list;
3874        chr_list = info;
3875    }
3876
3877    return chr_list;
3878}
3879
3880ChardevBackendInfoList *qmp_query_chardev_backends(Error **errp)
3881{
3882    ChardevBackendInfoList *backend_list = NULL;
3883    CharDriver *c = NULL;
3884    GSList *i = NULL;
3885
3886    for (i = backends; i; i = i->next) {
3887        ChardevBackendInfoList *info = g_malloc0(sizeof(*info));
3888        c = i->data;
3889        info->value = g_malloc0(sizeof(*info->value));
3890        info->value->name = g_strdup(c->name);
3891
3892        info->next = backend_list;
3893        backend_list = info;
3894    }
3895
3896    return backend_list;
3897}
3898
3899CharDriverState *qemu_chr_find(const char *name)
3900{
3901    CharDriverState *chr;
3902
3903    QTAILQ_FOREACH(chr, &chardevs, next) {
3904        if (strcmp(chr->label, name) != 0)
3905            continue;
3906        return chr;
3907    }
3908    return NULL;
3909}
3910
3911/* Get a character (serial) device interface.  */
3912CharDriverState *qemu_char_get_next_serial(void)
3913{
3914    static int next_serial;
3915    CharDriverState *chr;
3916
3917    /* FIXME: This function needs to go away: use chardev properties!  */
3918
3919    while (next_serial < MAX_SERIAL_PORTS && serial_hds[next_serial]) {
3920        chr = serial_hds[next_serial++];
3921        qemu_chr_fe_claim_no_fail(chr);
3922        return chr;
3923    }
3924    return NULL;
3925}
3926
3927QemuOptsList qemu_chardev_opts = {
3928    .name = "chardev",
3929    .implied_opt_name = "backend",
3930    .head = QTAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
3931    .desc = {
3932        {
3933            .name = "backend",
3934            .type = QEMU_OPT_STRING,
3935        },{
3936            .name = "path",
3937            .type = QEMU_OPT_STRING,
3938        },{
3939            .name = "host",
3940            .type = QEMU_OPT_STRING,
3941        },{
3942            .name = "port",
3943            .type = QEMU_OPT_STRING,
3944        },{
3945            .name = "localaddr",
3946            .type = QEMU_OPT_STRING,
3947        },{
3948            .name = "localport",
3949            .type = QEMU_OPT_STRING,
3950        },{
3951            .name = "to",
3952            .type = QEMU_OPT_NUMBER,
3953        },{
3954            .name = "ipv4",
3955            .type = QEMU_OPT_BOOL,
3956        },{
3957            .name = "ipv6",
3958            .type = QEMU_OPT_BOOL,
3959        },{
3960            .name = "wait",
3961            .type = QEMU_OPT_BOOL,
3962        },{
3963            .name = "server",
3964            .type = QEMU_OPT_BOOL,
3965        },{
3966            .name = "delay",
3967            .type = QEMU_OPT_BOOL,
3968        },{
3969            .name = "reconnect",
3970            .type = QEMU_OPT_NUMBER,
3971        },{
3972            .name = "telnet",
3973            .type = QEMU_OPT_BOOL,
3974        },{
3975            .name = "width",
3976            .type = QEMU_OPT_NUMBER,
3977        },{
3978            .name = "height",
3979            .type = QEMU_OPT_NUMBER,
3980        },{
3981            .name = "cols",
3982            .type = QEMU_OPT_NUMBER,
3983        },{
3984            .name = "rows",
3985            .type = QEMU_OPT_NUMBER,
3986        },{
3987            .name = "mux",
3988            .type = QEMU_OPT_BOOL,
3989        },{
3990            .name = "signal",
3991            .type = QEMU_OPT_BOOL,
3992        },{
3993            .name = "name",
3994            .type = QEMU_OPT_STRING,
3995        },{
3996            .name = "debug",
3997            .type = QEMU_OPT_NUMBER,
3998        },{
3999            .name = "size",
4000            .type = QEMU_OPT_SIZE,
4001        },{
4002            .name = "chardev",
4003            .type = QEMU_OPT_STRING,
4004        },
4005        { /* end of list */ }
4006    },
4007};
4008
4009#ifdef _WIN32
4010
4011static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
4012{
4013    HANDLE out;
4014
4015    if (file->has_in) {
4016        error_setg(errp, "input file not supported");
4017        return NULL;
4018    }
4019
4020    out = CreateFile(file->out, GENERIC_WRITE, FILE_SHARE_READ, NULL,
4021                     OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
4022    if (out == INVALID_HANDLE_VALUE) {
4023        error_setg(errp, "open %s failed", file->out);
4024        return NULL;
4025    }
4026    return qemu_chr_open_win_file(out);
4027}
4028
4029static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
4030                                                Error **errp)
4031{
4032    return qemu_chr_open_win_path(serial->device);
4033}
4034
4035static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
4036                                                  Error **errp)
4037{
4038    error_setg(errp, "character device backend type 'parallel' not supported");
4039    return NULL;
4040}
4041
4042#else /* WIN32 */
4043
4044static int qmp_chardev_open_file_source(char *src, int flags,
4045                                        Error **errp)
4046{
4047    int fd = -1;
4048
4049    TFR(fd = qemu_open(src, flags, 0666));
4050    if (fd == -1) {
4051        error_setg_file_open(errp, errno, src);
4052    }
4053    return fd;
4054}
4055
4056static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
4057{
4058    int flags, in = -1, out;
4059
4060    flags = O_WRONLY | O_TRUNC | O_CREAT | O_BINARY;
4061    out = qmp_chardev_open_file_source(file->out, flags, errp);
4062    if (out < 0) {
4063        return NULL;
4064    }
4065
4066    if (file->has_in) {
4067        flags = O_RDONLY;
4068        in = qmp_chardev_open_file_source(file->in, flags, errp);
4069        if (in < 0) {
4070            qemu_close(out);
4071            return NULL;
4072        }
4073    }
4074
4075    return qemu_chr_open_fd(in, out);
4076}
4077
4078static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
4079                                                Error **errp)
4080{
4081#ifdef HAVE_CHARDEV_TTY
4082    int fd;
4083
4084    fd = qmp_chardev_open_file_source(serial->device, O_RDWR, errp);
4085    if (fd < 0) {
4086        return NULL;
4087    }
4088    qemu_set_nonblock(fd);
4089    return qemu_chr_open_tty_fd(fd);
4090#else
4091    error_setg(errp, "character device backend type 'serial' not supported");
4092    return NULL;
4093#endif
4094}
4095
4096static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
4097                                                  Error **errp)
4098{
4099#ifdef HAVE_CHARDEV_PARPORT
4100    int fd;
4101
4102    fd = qmp_chardev_open_file_source(parallel->device, O_RDWR, errp);
4103    if (fd < 0) {
4104        return NULL;
4105    }
4106    return qemu_chr_open_pp_fd(fd);
4107#else
4108    error_setg(errp, "character device backend type 'parallel' not supported");
4109    return NULL;
4110#endif
4111}
4112
4113#endif /* WIN32 */
4114
4115static void socket_try_connect(CharDriverState *chr)
4116{
4117    Error *err = NULL;
4118
4119    if (!qemu_chr_open_socket_fd(chr, &err)) {
4120        check_report_connect_error(chr, err);
4121    }
4122}
4123
4124static gboolean socket_reconnect_timeout(gpointer opaque)
4125{
4126    CharDriverState *chr = opaque;
4127    TCPCharDriver *s = chr->opaque;
4128
4129    s->reconnect_timer = 0;
4130
4131    if (chr->be_open) {
4132        return false;
4133    }
4134
4135    socket_try_connect(chr);
4136
4137    return false;
4138}
4139
4140static CharDriverState *qmp_chardev_open_socket(ChardevSocket *sock,
4141                                                Error **errp)
4142{
4143    CharDriverState *chr;
4144    TCPCharDriver *s;
4145    SocketAddress *addr = sock->addr;
4146    bool do_nodelay     = sock->has_nodelay ? sock->nodelay : false;
4147    bool is_listen      = sock->has_server  ? sock->server  : true;
4148    bool is_telnet      = sock->has_telnet  ? sock->telnet  : false;
4149    bool is_waitconnect = sock->has_wait    ? sock->wait    : false;
4150    int64_t reconnect   = sock->has_reconnect ? sock->reconnect : 0;
4151
4152    chr = qemu_chr_alloc();
4153    s = g_malloc0(sizeof(TCPCharDriver));
4154
4155    s->fd = -1;
4156    s->listen_fd = -1;
4157    s->is_unix = addr->kind == SOCKET_ADDRESS_KIND_UNIX;
4158    s->is_listen = is_listen;
4159    s->is_telnet = is_telnet;
4160    s->do_nodelay = do_nodelay;
4161    qapi_copy_SocketAddress(&s->addr, sock->addr);
4162
4163    chr->opaque = s;
4164    chr->chr_write = tcp_chr_write;
4165    chr->chr_sync_read = tcp_chr_sync_read;
4166    chr->chr_close = tcp_chr_close;
4167    chr->get_msgfds = tcp_get_msgfds;
4168    chr->set_msgfds = tcp_set_msgfds;
4169    chr->chr_add_client = tcp_chr_add_client;
4170    chr->chr_add_watch = tcp_chr_add_watch;
4171    chr->chr_update_read_handler = tcp_chr_update_read_handler;
4172    /* be isn't opened until we get a connection */
4173    chr->explicit_be_open = true;
4174
4175    chr->filename = g_malloc(CHR_MAX_FILENAME_SIZE);
4176    SocketAddress_to_str(chr->filename, CHR_MAX_FILENAME_SIZE, "disconnected:",
4177                         addr, is_listen, is_telnet);
4178
4179    if (is_listen) {
4180        if (is_telnet) {
4181            s->do_telnetopt = 1;
4182        }
4183    } else if (reconnect > 0) {
4184        s->reconnect_time = reconnect;
4185    }
4186
4187    if (s->reconnect_time) {
4188        socket_try_connect(chr);
4189    } else if (!qemu_chr_open_socket_fd(chr, errp)) {
4190        g_free(s);
4191        g_free(chr->filename);
4192        g_free(chr);
4193        return NULL;
4194    }
4195
4196    if (is_listen && is_waitconnect) {
4197        fprintf(stderr, "QEMU waiting for connection on: %s\n",
4198                chr->filename);
4199        tcp_chr_accept(s->listen_chan, G_IO_IN, chr);
4200        qemu_set_nonblock(s->listen_fd);
4201    }
4202
4203    return chr;
4204}
4205
4206static CharDriverState *qmp_chardev_open_udp(ChardevUdp *udp,
4207                                             Error **errp)
4208{
4209    int fd;
4210
4211    fd = socket_dgram(udp->remote, udp->local, errp);
4212    if (fd < 0) {
4213        return NULL;
4214    }
4215    return qemu_chr_open_udp_fd(fd);
4216}
4217
4218ChardevReturn *qmp_chardev_add(const char *id, ChardevBackend *backend,
4219                               Error **errp)
4220{
4221    ChardevReturn *ret = g_new0(ChardevReturn, 1);
4222    CharDriverState *base, *chr = NULL;
4223
4224    chr = qemu_chr_find(id);
4225    if (chr) {
4226        error_setg(errp, "Chardev '%s' already exists", id);
4227        g_free(ret);
4228        return NULL;
4229    }
4230
4231    switch (backend->kind) {
4232    case CHARDEV_BACKEND_KIND_FILE:
4233        chr = qmp_chardev_open_file(backend->file, errp);
4234        break;
4235    case CHARDEV_BACKEND_KIND_SERIAL:
4236        chr = qmp_chardev_open_serial(backend->serial, errp);
4237        break;
4238    case CHARDEV_BACKEND_KIND_PARALLEL:
4239        chr = qmp_chardev_open_parallel(backend->parallel, errp);
4240        break;
4241    case CHARDEV_BACKEND_KIND_PIPE:
4242        chr = qemu_chr_open_pipe(backend->pipe);
4243        break;
4244    case CHARDEV_BACKEND_KIND_SOCKET:
4245        chr = qmp_chardev_open_socket(backend->socket, errp);
4246        break;
4247    case CHARDEV_BACKEND_KIND_UDP:
4248        chr = qmp_chardev_open_udp(backend->udp, errp);
4249        break;
4250#ifdef HAVE_CHARDEV_TTY
4251    case CHARDEV_BACKEND_KIND_PTY:
4252        chr = qemu_chr_open_pty(id, ret);
4253        break;
4254#endif
4255    case CHARDEV_BACKEND_KIND_NULL:
4256        chr = qemu_chr_open_null();
4257        break;
4258    case CHARDEV_BACKEND_KIND_MUX:
4259        base = qemu_chr_find(backend->mux->chardev);
4260        if (base == NULL) {
4261            error_setg(errp, "mux: base chardev %s not found",
4262                       backend->mux->chardev);
4263            break;
4264        }
4265        chr = qemu_chr_open_mux(base);
4266        break;
4267    case CHARDEV_BACKEND_KIND_MSMOUSE:
4268        chr = qemu_chr_open_msmouse();
4269        break;
4270#ifdef CONFIG_BRLAPI
4271    case CHARDEV_BACKEND_KIND_BRAILLE:
4272        chr = chr_baum_init();
4273        break;
4274#endif
4275    case CHARDEV_BACKEND_KIND_TESTDEV:
4276        chr = chr_testdev_init();
4277        break;
4278    case CHARDEV_BACKEND_KIND_STDIO:
4279        chr = qemu_chr_open_stdio(backend->stdio);
4280        break;
4281#ifdef _WIN32
4282    case CHARDEV_BACKEND_KIND_CONSOLE:
4283        chr = qemu_chr_open_win_con();
4284        break;
4285#endif
4286#ifdef CONFIG_SPICE
4287    case CHARDEV_BACKEND_KIND_SPICEVMC:
4288        chr = qemu_chr_open_spice_vmc(backend->spicevmc->type);
4289        break;
4290    case CHARDEV_BACKEND_KIND_SPICEPORT:
4291        chr = qemu_chr_open_spice_port(backend->spiceport->fqdn);
4292        break;
4293#endif
4294    case CHARDEV_BACKEND_KIND_VC:
4295        chr = vc_init(backend->vc);
4296        break;
4297    case CHARDEV_BACKEND_KIND_RINGBUF:
4298    case CHARDEV_BACKEND_KIND_MEMORY:
4299        chr = qemu_chr_open_ringbuf(backend->ringbuf, errp);
4300        break;
4301    default:
4302        error_setg(errp, "unknown chardev backend (%d)", backend->kind);
4303        break;
4304    }
4305
4306    /*
4307     * Character backend open hasn't been fully converted to the Error
4308     * API.  Some opens fail without setting an error.  Set a generic
4309     * error then.
4310     * TODO full conversion to Error API
4311     */
4312    if (chr == NULL && errp && !*errp) {
4313        error_setg(errp, "Failed to create chardev");
4314    }
4315    if (chr) {
4316        chr->label = g_strdup(id);
4317        chr->avail_connections =
4318            (backend->kind == CHARDEV_BACKEND_KIND_MUX) ? MAX_MUX : 1;
4319        if (!chr->filename) {
4320            chr->filename = g_strdup(ChardevBackendKind_lookup[backend->kind]);
4321        }
4322        if (!chr->explicit_be_open) {
4323            qemu_chr_be_event(chr, CHR_EVENT_OPENED);
4324        }
4325        QTAILQ_INSERT_TAIL(&chardevs, chr, next);
4326        return ret;
4327    } else {
4328        g_free(ret);
4329        return NULL;
4330    }
4331}
4332
4333void qmp_chardev_remove(const char *id, Error **errp)
4334{
4335    CharDriverState *chr;
4336
4337    chr = qemu_chr_find(id);
4338    if (chr == NULL) {
4339        error_setg(errp, "Chardev '%s' not found", id);
4340        return;
4341    }
4342    if (chr->chr_can_read || chr->chr_read ||
4343        chr->chr_event || chr->handler_opaque) {
4344        error_setg(errp, "Chardev '%s' is busy", id);
4345        return;
4346    }
4347    qemu_chr_delete(chr);
4348}
4349
4350static void register_types(void)
4351{
4352    register_char_driver("null", CHARDEV_BACKEND_KIND_NULL, NULL);
4353    register_char_driver("socket", CHARDEV_BACKEND_KIND_SOCKET,
4354                         qemu_chr_parse_socket);
4355    register_char_driver("udp", CHARDEV_BACKEND_KIND_UDP, qemu_chr_parse_udp);
4356    register_char_driver("ringbuf", CHARDEV_BACKEND_KIND_RINGBUF,
4357                         qemu_chr_parse_ringbuf);
4358    register_char_driver("file", CHARDEV_BACKEND_KIND_FILE,
4359                         qemu_chr_parse_file_out);
4360    register_char_driver("stdio", CHARDEV_BACKEND_KIND_STDIO,
4361                         qemu_chr_parse_stdio);
4362    register_char_driver("serial", CHARDEV_BACKEND_KIND_SERIAL,
4363                         qemu_chr_parse_serial);
4364    register_char_driver("tty", CHARDEV_BACKEND_KIND_SERIAL,
4365                         qemu_chr_parse_serial);
4366    register_char_driver("parallel", CHARDEV_BACKEND_KIND_PARALLEL,
4367                         qemu_chr_parse_parallel);
4368    register_char_driver("parport", CHARDEV_BACKEND_KIND_PARALLEL,
4369                         qemu_chr_parse_parallel);
4370    register_char_driver("pty", CHARDEV_BACKEND_KIND_PTY, NULL);
4371    register_char_driver("console", CHARDEV_BACKEND_KIND_CONSOLE, NULL);
4372    register_char_driver("pipe", CHARDEV_BACKEND_KIND_PIPE,
4373                         qemu_chr_parse_pipe);
4374    register_char_driver("mux", CHARDEV_BACKEND_KIND_MUX, qemu_chr_parse_mux);
4375    /* Bug-compatibility: */
4376    register_char_driver("memory", CHARDEV_BACKEND_KIND_MEMORY,
4377                         qemu_chr_parse_ringbuf);
4378    /* this must be done after machine init, since we register FEs with muxes
4379     * as part of realize functions like serial_isa_realizefn when -nographic
4380     * is specified
4381     */
4382    qemu_add_machine_init_done_notifier(&muxes_realize_notify);
4383}
4384
4385type_init(register_types);
4386