qemud.c 55.6 KB
Newer Older
D
Daniel P. Berrange 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * qemud.c: daemon start of day, guest process & i/o management
 *
 * Copyright (C) 2006, 2007 Red Hat, Inc.
 * Copyright (C) 2006 Daniel P. Berrange
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

24 25
#include <config.h>

26 27
#define _GNU_SOURCE /* for asprintf */

D
Daniel P. Berrange 已提交
28 29 30 31 32 33 34 35 36 37 38
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <paths.h>
#include <limits.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/poll.h>
#include <netinet/in.h>
39
#include <netinet/tcp.h>
D
Daniel P. Berrange 已提交
40 41 42 43
#include <netdb.h>
#include <stdlib.h>
#include <pwd.h>
#include <stdio.h>
44 45
#include <stdarg.h>
#include <syslog.h>
D
Daniel P. Berrange 已提交
46 47 48
#include <string.h>
#include <errno.h>
#include <getopt.h>
49 50 51 52
#include <assert.h>
#include <fnmatch.h>
#include <gnutls/gnutls.h>
#include <gnutls/x509.h>
53

D
Daniel P. Berrange 已提交
54 55 56
#include <libvirt/virterror.h>

#include "internal.h"
57
#include "../src/internal.h"
58 59
#include "../src/remote_internal.h"
#include "../src/conf.h"
D
Daniel P. Berrange 已提交
60
#include "dispatch.h"
61
#include "driver.h"
D
Daniel P. Berrange 已提交
62
#include "event.h"
D
Daniel P. Berrange 已提交
63

64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
static int godaemon = 0;        /* -d: Be a daemon */
static int verbose = 0;         /* -v: Verbose mode */
static int remote = 0;          /* -r: Remote mode */
static int sys = 0;             /* -s: (QEMUD only) system mode */
static int timeout = -1;        /* -t: (QEMUD only) timeout */
static int sigwrite = -1;       /* Signal handler pipe */

/* Defaults for configuration file elements (remote only). */
static int listen_tls = 1;
static int listen_tcp = 0;
static const char *tls_port = LIBVIRTD_TLS_PORT;
static const char *tcp_port = LIBVIRTD_TCP_PORT;

static int tls_no_verify_certificate = 0;
static int tls_no_verify_address = 0;
static const char **tls_allowed_ip_list = 0;
static const char **tls_allowed_dn_list = 0;

static const char *key_file = LIBVIRT_SERVERKEY;
static const char *cert_file = LIBVIRT_SERVERCERT;
static const char *ca_file = LIBVIRT_CACERT;
static const char *crl_file = "";

static gnutls_certificate_credentials_t x509_cred;
static gnutls_dh_params_t dh_params;

#define DH_BITS 1024
91

92 93 94
static sig_atomic_t sig_errors = 0;
static int sig_lasterrno = 0;

95 96 97
static void sig_handler(int sig) {
    unsigned char sigc = sig;
    int origerrno;
98
    int r;
99 100 101 102 103

    if (sig == SIGCHLD) /* We explicitly waitpid the child later */
        return;

    origerrno = errno;
104 105 106 107 108
    r = write(sigwrite, &sigc, 1);
    if (r == -1) {
        sig_errors++;
        sig_lasterrno = errno;
    }
109
    errno = origerrno;
D
Daniel P. Berrange 已提交
110
}
111

D
Daniel P. Berrange 已提交
112 113 114 115 116 117
static void qemudDispatchClientEvent(int fd, int events, void *opaque);
static void qemudDispatchServerEvent(int fd, int events, void *opaque);
static int qemudRegisterClientEvent(struct qemud_server *server,
                                    struct qemud_client *client,
                                    int remove);

118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
static int
remoteInitializeGnuTLS (void)
{
    int err;

    /* Initialise GnuTLS. */
    gnutls_global_init ();

    err = gnutls_certificate_allocate_credentials (&x509_cred);
    if (err) {
        qemudLog (QEMUD_ERR, "gnutls_certificate_allocate_credentials: %s",
                  gnutls_strerror (err));
        return -1;
    }

    if (ca_file && ca_file[0] != '\0') {
        qemudDebug ("loading CA cert from %s", ca_file);
        err = gnutls_certificate_set_x509_trust_file (x509_cred, ca_file,
                                                      GNUTLS_X509_FMT_PEM);
        if (err < 0) {
            qemudLog (QEMUD_ERR, "gnutls_certificate_set_x509_trust_file: %s",
                      gnutls_strerror (err));
            return -1;
        }
    }

    if (crl_file && crl_file[0] != '\0') {
        qemudDebug ("loading CRL from %s", crl_file);
        err = gnutls_certificate_set_x509_crl_file (x509_cred, crl_file,
                                                    GNUTLS_X509_FMT_PEM);
        if (err < 0) {
            qemudLog (QEMUD_ERR, "gnutls_certificate_set_x509_crl_file: %s",
                      gnutls_strerror (err));
            return -1;
        }
    }

    if (cert_file && cert_file[0] != '\0' && key_file && key_file[0] != '\0') {
        qemudDebug ("loading cert and key from %s and %s",
                    cert_file, key_file);
        err =
            gnutls_certificate_set_x509_key_file (x509_cred,
                                                  cert_file, key_file,
                                                  GNUTLS_X509_FMT_PEM);
        if (err < 0) {
            qemudLog (QEMUD_ERR, "gnutls_certificate_set_x509_key_file: %s",
                      gnutls_strerror (err));
            return -1;
        }
    }

    /* Generate Diffie Hellman parameters - for use with DHE
     * kx algorithms. These should be discarded and regenerated
     * once a day, once a week or once a month. Depending on the
     * security requirements.
     */
    err = gnutls_dh_params_init (&dh_params);
    if (err < 0) {
        qemudLog (QEMUD_ERR, "gnutls_dh_params_init: %s",
                  gnutls_strerror (err));
        return -1;
    }
    err = gnutls_dh_params_generate2 (dh_params, DH_BITS);
    if (err < 0) {
        qemudLog (QEMUD_ERR, "gnutls_dh_params_generate2: %s",
                  gnutls_strerror (err));
        return -1;
    }

    gnutls_certificate_set_dh_params (x509_cred, dh_params);

    return 0;
}

D
Daniel P. Berrange 已提交
192 193 194 195
static void qemudDispatchSignalEvent(int fd ATTRIBUTE_UNUSED,
                                     int events ATTRIBUTE_UNUSED,
                                     void *opaque) {
    struct qemud_server *server = (struct qemud_server *)opaque;
196 197 198
    unsigned char sigc;
    int ret;

199 200 201
    if (read(server->sigread, &sigc, 1) != 1) {
        qemudLog(QEMUD_ERR, "Failed to read from signal pipe: %s",
                 strerror(errno));
D
Daniel P. Berrange 已提交
202
        return;
203 204
    }

205 206 207 208
    ret = 0;

    switch (sigc) {
    case SIGHUP:
209
        qemudLog(QEMUD_INFO, "Reloading configuration on SIGHUP");
210 211 212
        if (virStateReload() < 0)
            qemudLog(QEMUD_WARN, "Error while reloading drivers");

213
        if (!remote) {
214
            qemudReload();
215
        }
216 217 218
        break;

    case SIGINT:
219
    case SIGQUIT:
220
    case SIGTERM:
221
        qemudLog(QEMUD_WARN, "Shutting down on signal %d", sigc);
222

223
        if (!remote) {
224
            qemudShutdown();
225 226
        }

227 228 229 230 231 232 233
        server->shutdown = 1;
        break;

    default:
        break;
    }

D
Daniel P. Berrange 已提交
234 235
    if (ret != 0)
        server->shutdown = 1;
236 237
}

D
Daniel P. Berrange 已提交
238 239
static int qemudSetCloseExec(int fd) {
    int flags;
240 241
    if ((flags = fcntl(fd, F_GETFD)) < 0)
        goto error;
D
Daniel P. Berrange 已提交
242
    flags |= FD_CLOEXEC;
243 244
    if ((fcntl(fd, F_SETFD, flags)) < 0)
        goto error;
D
Daniel P. Berrange 已提交
245
    return 0;
246 247 248
 error:
    qemudLog(QEMUD_ERR, "Failed to set close-on-exec file descriptor flag");
    return -1;
D
Daniel P. Berrange 已提交
249 250 251 252 253
}


static int qemudSetNonBlock(int fd) {
    int flags;
254 255
    if ((flags = fcntl(fd, F_GETFL)) < 0)
        goto error;
D
Daniel P. Berrange 已提交
256
    flags |= O_NONBLOCK;
257 258
    if ((fcntl(fd, F_SETFL, flags)) < 0)
        goto error;
D
Daniel P. Berrange 已提交
259
    return 0;
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
 error:
    qemudLog(QEMUD_ERR, "Failed to set non-blocking file descriptor flag");
    return -1;
}

void qemudLog(int priority, const char *fmt, ...)
{
    va_list args;

    va_start(args, fmt);

    if (godaemon) {
        int sysprio = -1;

        switch(priority) {
        case QEMUD_ERR:
            sysprio = LOG_ERR;
            break;
        case QEMUD_WARN:
            sysprio = LOG_WARNING;
            break;
        case QEMUD_INFO:
            if (verbose)
                sysprio = LOG_INFO;
            break;
#ifdef ENABLE_DEBUG
        case QEMUD_DEBUG:
            if (verbose)
                sysprio = LOG_DEBUG;
            break;
#endif
        default:
            break;
        }

        if (sysprio != -1)
            vsyslog(sysprio, fmt, args);
    } else {
        switch(priority) {
        case QEMUD_ERR:
        case QEMUD_WARN:
            vfprintf(stderr, fmt, args);
            fputc('\n', stderr);
            break;

        case QEMUD_INFO:
            if (verbose) {
                vprintf(fmt, args);
                fputc('\n', stdout);
            }
            break;

#ifdef ENABLE_DEBUG
        case QEMUD_DEBUG:
            if (verbose) {
                vprintf(fmt, args);
                fputc('\n', stdout);
            }
            break;
#endif
        default:
            break;
        }
    }

    va_end(args);
D
Daniel P. Berrange 已提交
326 327 328 329 330 331 332 333 334
}

static int qemudGoDaemon(void) {
    int pid = fork();
    switch (pid) {
    case 0:
        {
            int stdinfd = -1;
            int stdoutfd = -1;
335
            int nextpid;
D
Daniel P. Berrange 已提交
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394

            if ((stdinfd = open(_PATH_DEVNULL, O_RDONLY)) < 0)
                goto cleanup;
            if ((stdoutfd = open(_PATH_DEVNULL, O_WRONLY)) < 0)
                goto cleanup;
            if (dup2(stdinfd, STDIN_FILENO) != STDIN_FILENO)
                goto cleanup;
            if (dup2(stdoutfd, STDOUT_FILENO) != STDOUT_FILENO)
                goto cleanup;
            if (dup2(stdoutfd, STDERR_FILENO) != STDERR_FILENO)
                goto cleanup;
            if (close(stdinfd) < 0)
                goto cleanup;
            stdinfd = -1;
            if (close(stdoutfd) < 0)
                goto cleanup;
            stdoutfd = -1;

            if (setsid() < 0)
                goto cleanup;

            nextpid = fork();
            switch (nextpid) {
            case 0:
                return 0;
            case -1:
                return -1;
            default:
                return nextpid;
            }

        cleanup:
            if (stdoutfd != -1)
                close(stdoutfd);
            if (stdinfd != -1)
                close(stdinfd);
            return -1;

        }

    case -1:
        return -1;

    default:
        {
            int got, status = 0;
            /* We wait to make sure the next child forked
               successfully */
            if ((got = waitpid(pid, &status, 0)) < 0 ||
                got != pid ||
                status != 0) {
                return -1;
            }
      
            return pid;
        }
    }
}

395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
static int qemudWritePidFile(const char *pidFile) {
    int fd;
    FILE *fh;

    if (pidFile[0] == '\0')
        return 0;

    if ((fd = open(pidFile, O_WRONLY|O_CREAT|O_EXCL, 0644)) < 0) {
        qemudLog(QEMUD_ERR, "Failed to open pid file '%s' : %s",
                 pidFile, strerror(errno));
        return -1;
    }

    if (!(fh = fdopen(fd, "w"))) {
        qemudLog(QEMUD_ERR, "Failed to fdopen pid file '%s' : %s",
                 pidFile, strerror(errno));
        close(fd);
        return -1;
    }

    if (fprintf(fh, "%lu\n", (unsigned long)getpid()) < 0) {
        qemudLog(QEMUD_ERR, "Failed to write to pid file '%s' : %s",
                 pidFile, strerror(errno));
        close(fd);
        return -1;
    }

    if (fclose(fh) == EOF) {
        qemudLog(QEMUD_ERR, "Failed to close pid file '%s' : %s",
                 pidFile, strerror(errno));
        return -1;
    }

    return 0;
}

D
Daniel P. Berrange 已提交
431 432 433 434 435 436
static int qemudListenUnix(struct qemud_server *server,
                           const char *path, int readonly) {
    struct qemud_socket *sock = calloc(1, sizeof(struct qemud_socket));
    struct sockaddr_un addr;
    mode_t oldmask;

437 438
    if (!sock) {
        qemudLog(QEMUD_ERR, "Failed to allocate memory for struct qemud_socket");
D
Daniel P. Berrange 已提交
439
        return -1;
440
    }
D
Daniel P. Berrange 已提交
441 442 443

    sock->readonly = readonly;

444 445 446
    if ((sock->fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
        qemudLog(QEMUD_ERR, "Failed to create socket: %s",
                 strerror(errno));
D
Daniel P. Berrange 已提交
447
        goto cleanup;
448
    }
D
Daniel P. Berrange 已提交
449

450 451
    if (qemudSetCloseExec(sock->fd) < 0 ||
        qemudSetNonBlock(sock->fd) < 0)
D
Daniel P. Berrange 已提交
452
        goto cleanup;
D
Daniel P. Berrange 已提交
453 454 455 456 457 458 459 460 461 462 463 464

    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
    strncpy(addr.sun_path, path, sizeof(addr.sun_path)-1);
    if (addr.sun_path[0] == '@')
        addr.sun_path[0] = '\0';


    if (readonly)
        oldmask = umask(~(S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH));
    else
        oldmask = umask(~(S_IRUSR | S_IWUSR));
465 466 467
    if (bind(sock->fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
        qemudLog(QEMUD_ERR, "Failed to bind socket to '%s': %s",
                 path, strerror(errno));
D
Daniel P. Berrange 已提交
468
        goto cleanup;
469
    }
D
Daniel P. Berrange 已提交
470 471
    umask(oldmask);

472 473 474
    if (listen(sock->fd, 30) < 0) {
        qemudLog(QEMUD_ERR, "Failed to listen for connections on '%s': %s",
                 path, strerror(errno));
D
Daniel P. Berrange 已提交
475 476 477
        goto cleanup;
    }

478 479 480 481
    if (virEventAddHandleImpl(sock->fd,
                              POLLIN| POLLERR | POLLHUP,
                              qemudDispatchServerEvent,
                              server) < 0) {
D
Daniel P. Berrange 已提交
482 483
        qemudLog(QEMUD_ERR, "Failed to add server event callback");
        goto cleanup;
484
    }
D
Daniel P. Berrange 已提交
485

D
Daniel P. Berrange 已提交
486 487 488 489
    sock->next = server->sockets;
    server->sockets = sock;
    server->nsockets++;

D
Daniel P. Berrange 已提交
490
    return 0;
D
Daniel P. Berrange 已提交
491 492 493 494 495 496

 cleanup:
    if (sock->fd)
        close(sock->fd);
    free(sock);
    return -1;
D
Daniel P. Berrange 已提交
497 498
}

499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
// See: http://people.redhat.com/drepper/userapi-ipv6.html
static int
remoteMakeSockets (int *fds, int max_fds, int *nfds_r, const char *service)
{
    struct addrinfo *ai;
    struct addrinfo hints;
    memset (&hints, 0, sizeof hints);
    hints.ai_flags = AI_PASSIVE | AI_ADDRCONFIG;
    hints.ai_socktype = SOCK_STREAM;

    int e = getaddrinfo (NULL, service, &hints, &ai);
    if (e != 0) {
        qemudLog (QEMUD_ERR, "getaddrinfo: %s\n", gai_strerror (e));
        return -1;
    }

    struct addrinfo *runp = ai;
    while (runp && *nfds_r < max_fds) {
        fds[*nfds_r] = socket (runp->ai_family, runp->ai_socktype,
                               runp->ai_protocol);
        if (fds[*nfds_r] == -1) {
            qemudLog (QEMUD_ERR, "socket: %s", strerror (errno));
            return -1;
        }

        int opt = 1;
        setsockopt (fds[*nfds_r], SOL_SOCKET, SO_REUSEADDR, &opt, sizeof opt);

        if (bind (fds[*nfds_r], runp->ai_addr, runp->ai_addrlen) == -1) {
            if (errno != EADDRINUSE) {
                qemudLog (QEMUD_ERR, "bind: %s", strerror (errno));
                return -1;
            }
            close (fds[*nfds_r]);
        }
        else {
            if (listen (fds[*nfds_r], SOMAXCONN) == -1) {
                qemudLog (QEMUD_ERR, "listen: %s", strerror (errno));
                return -1;
            }
            ++*nfds_r;
        }
        runp = runp->ai_next;
    }
543

544 545 546 547 548 549 550 551 552 553 554 555 556 557
    freeaddrinfo (ai);
    return 0;
}

/* Listen on the named/numbered TCP port.  On a machine with IPv4 and
 * IPv6 interfaces this may generate several sockets.
 */
static int
remoteListenTCP (struct qemud_server *server,
                 const char *port,
                 int tls)
{
    int fds[2];
    int nfds = 0;
558
    int i;
559 560 561 562 563 564 565
    struct qemud_socket *sock;

    if (remoteMakeSockets (fds, 2, &nfds, port) == -1)
        return -1;

    for (i = 0; i < nfds; ++i) {
        sock = calloc (1, sizeof *sock);
566

567 568 569 570 571 572 573 574 575 576 577 578 579
        if (!sock) {
            qemudLog (QEMUD_ERR,
                      "remoteListenTCP: calloc: %s", strerror (errno));
            return -1;
        }

        sock->readonly = 0;
        sock->next = server->sockets;
        server->sockets = sock;
        server->nsockets++;

        sock->fd = fds[i];
        sock->tls = tls;
D
Daniel P. Berrange 已提交
580

581 582 583 584 585 586 587
        if (qemudSetCloseExec(sock->fd) < 0 ||
            qemudSetNonBlock(sock->fd) < 0)
            return -1;

        if (listen (sock->fd, 30) < 0) {
            qemudLog (QEMUD_ERR,
                      "remoteListenTCP: listen: %s", strerror (errno));
588 589
            return -1;
        }
D
Daniel P. Berrange 已提交
590

591 592 593 594
        if (virEventAddHandleImpl(sock->fd,
                                  POLLIN| POLLERR | POLLHUP,
                                  qemudDispatchServerEvent,
                                  server) < 0) {
D
Daniel P. Berrange 已提交
595 596 597 598
            qemudLog(QEMUD_ERR, "Failed to add server event callback");
            return -1;
        }

599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
    }

    return 0;
}

static int qemudInitPaths(struct qemud_server *server,
                          char *sockname,
                          char *roSockname,
                          int maxlen) {
    char *base = 0;

    if (remote) {               /* Remote daemon */
        /* I'm not sure if it's meaningful to have a "session remote daemon"
         * so currently this code ignores the --system flag. - RWMJ.
         */
614

615 616
        if (snprintf (sockname, maxlen, "%s/run/libvirt/libvirt-sock",
                      LOCAL_STATE_DIR) >= maxlen)
617 618
            goto snprintf_error;

D
Daniel P. Berrange 已提交
619 620
        unlink(sockname);

621 622
        if (snprintf (roSockname, maxlen, "%s/run/libvirt/libvirt-sock-ro",
                      LOCAL_STATE_DIR) >= maxlen)
623
            goto snprintf_error;
D
Daniel P. Berrange 已提交
624

625
        unlink(roSockname);
D
Daniel P. Berrange 已提交
626 627 628

        if (snprintf(server->logDir, PATH_MAX, "%s/log/libvirt/qemu", LOCAL_STATE_DIR) >= PATH_MAX)
            goto snprintf_error;
D
Daniel P. Berrange 已提交
629
    } else {
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661
        uid_t uid = geteuid();
        struct passwd *pw;

        if (sys) {              /* QEMUD, system */
            if (uid != 0) {
                qemudLog (QEMUD_ERR,
                      "You must run the daemon as root to use system mode");
                return -1;
            }

            if (snprintf(sockname, maxlen, "%s/run/libvirt/qemud-sock", LOCAL_STATE_DIR) >= maxlen)
                goto snprintf_error;

            unlink(sockname);

            if (snprintf(roSockname, maxlen, "%s/run/libvirt/qemud-sock-ro", LOCAL_STATE_DIR) >= maxlen)
                goto snprintf_error;

            unlink(roSockname);

            if ((base = strdup (SYSCONF_DIR "/libvirt/qemu")) == NULL)
                goto out_of_memory;
        } else {                /* QEMUD, session */
            if (!(pw = getpwuid(uid))) {
                qemudLog(QEMUD_ERR, "Failed to find user record for uid '%d': %s",
                         uid, strerror(errno));
                return -1;
            }

            if (snprintf(sockname, maxlen, "@%s/.libvirt/qemud-sock", pw->pw_dir) >= maxlen)
                goto snprintf_error;

662 663 664
            if (snprintf(server->logDir, PATH_MAX, "%s/.libvirt/qemu/log", pw->pw_dir) >= PATH_MAX)
                goto snprintf_error;

665 666 667 668
            if (asprintf (&base, "%s/.libvirt/qemu", pw->pw_dir) == -1) {
                qemudLog (QEMUD_ERR, "out of memory in asprintf");
                return -1;
            }
D
Daniel P. Berrange 已提交
669 670
        }

671 672 673
    } /* !remote */

    if (base) free (base);
674

D
Daniel P. Berrange 已提交
675
    return 0;
676 677

 snprintf_error:
678
    qemudLog(QEMUD_ERR, "Resulting path to long for buffer in qemudInitPaths()");
679
    return -1;
680 681 682 683 684

 out_of_memory:
    qemudLog (QEMUD_ERR, "qemudInitPaths: out of memory");
    if (base) free (base);
    return -1;
D
Daniel P. Berrange 已提交
685 686
}

687
static struct qemud_server *qemudInitialize(int sigread) {
D
Daniel P. Berrange 已提交
688
    struct qemud_server *server;
689 690
    char sockname[PATH_MAX];
    char roSockname[PATH_MAX];
D
Daniel P. Berrange 已提交
691

692 693
    if (!(server = calloc(1, sizeof(struct qemud_server)))) {
        qemudLog(QEMUD_ERR, "Failed to allocate struct qemud_server");
D
Daniel P. Berrange 已提交
694
        return NULL;
695
    }
D
Daniel P. Berrange 已提交
696 697

    /* We don't have a dom-0, so start from 1 */
698
    server->sigread = sigread;
D
Daniel P. Berrange 已提交
699

700
    roSockname[0] = '\0';
701

702
    if (qemudInitPaths(server, sockname, roSockname, PATH_MAX) < 0)
703
        goto cleanup;
D
Daniel P. Berrange 已提交
704

705 706
    if (qemudListenUnix(server, sockname, 0) < 0)
        goto cleanup;
707

708
    if (roSockname[0] != '\0' && qemudListenUnix(server, roSockname, 1) < 0)
D
Daniel P. Berrange 已提交
709 710
        goto cleanup;

711 712
    virStateInitialize();

713
    if (!remote) /* qemud only */ {
714
        if (qemudStartup() < 0) {
715 716 717 718 719 720 721 722 723 724 725 726 727
            goto cleanup;
        }
    } else /* remote only */ {
        if (listen_tcp && remoteListenTCP (server, tcp_port, 0) < 0)
            goto cleanup;

        if (listen_tls) {
            if (remoteInitializeGnuTLS () < 0)
                goto cleanup;

            if (remoteListenTCP (server, tls_port, 1) < 0)
                goto cleanup;
        }
D
Daniel P. Berrange 已提交
728 729 730 731 732
    }

    return server;

 cleanup:
733
    qemudShutdown();
D
Daniel P. Berrange 已提交
734 735 736 737 738 739 740 741 742 743 744 745
    if (server) {
        struct qemud_socket *sock = server->sockets;
        while (sock) {
            close(sock->fd);
            sock = sock->next;
        }

        free(server);
    }
    return NULL;
}

746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805
static gnutls_session_t
remoteInitializeTLSSession (void)
{
  gnutls_session_t session;
  int err;

  err = gnutls_init (&session, GNUTLS_SERVER);
  if (err != 0) goto failed;

  /* avoid calling all the priority functions, since the defaults
   * are adequate.
   */
  err = gnutls_set_default_priority (session);
  if (err != 0) goto failed;

  err = gnutls_credentials_set (session, GNUTLS_CRD_CERTIFICATE, x509_cred);
  if (err != 0) goto failed;

  /* request client certificate if any.
   */
  gnutls_certificate_server_set_request (session, GNUTLS_CERT_REQUEST);

  gnutls_dh_set_prime_bits (session, DH_BITS);

  return session;

 failed:
  qemudLog (QEMUD_ERR, "remoteInitializeTLSSession: %s",
            gnutls_strerror (err));
  return NULL;
}

/* Check DN is on tls_allowed_dn_list. */
static int
remoteCheckDN (gnutls_x509_crt_t cert)
{
    char name[256];
    size_t namesize = sizeof name;
    const char **wildcards;
    int err;

    err = gnutls_x509_crt_get_dn (cert, name, &namesize);
    if (err != 0) {
        qemudLog (QEMUD_ERR,
                  "remoteCheckDN: gnutls_x509_cert_get_dn: %s",
                  gnutls_strerror (err));
        return 0;
    }

    /* If the list is not set, allow any DN. */
    wildcards = tls_allowed_dn_list;
    if (!wildcards)
        return 1;

    while (*wildcards) {
        if (fnmatch (*wildcards, name, 0) == 0)
            return 1;
        wildcards++;
    }

R
Richard W.M. Jones 已提交
806
#ifdef ENABLE_DEBUG
807 808 809
    /* Print the client's DN. */
    qemudLog (QEMUD_DEBUG,
              "remoteCheckDN: failed: client DN is %s", name);
R
Richard W.M. Jones 已提交
810
#endif
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959

    return 0; // Not found.
}

static int
remoteCheckCertificate (gnutls_session_t session)
{
    int ret;
    unsigned int status;
    const gnutls_datum_t *certs;
    unsigned int nCerts, i;
    time_t now;

    if ((ret = gnutls_certificate_verify_peers2 (session, &status)) < 0){
        qemudLog (QEMUD_ERR, "remoteCheckCertificate: verify failed: %s",
                  gnutls_strerror (ret));
        return -1;
    }

    if (status != 0) {
        if (status & GNUTLS_CERT_INVALID)
            qemudLog (QEMUD_ERR, "remoteCheckCertificate: the client certificate is not trusted.");

        if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
            qemudLog (QEMUD_ERR, "remoteCheckCertificate: the client certificate hasn't got a known issuer.");

        if (status & GNUTLS_CERT_REVOKED)
            qemudLog (QEMUD_ERR, "remoteCheckCertificate: the client certificate has been revoked.");

        if (status & GNUTLS_CERT_INSECURE_ALGORITHM)
            qemudLog (QEMUD_ERR, "remoteCheckCertificate: the client certificate uses an insecure algorithm.");

        return -1;
    }

    if (gnutls_certificate_type_get (session) != GNUTLS_CRT_X509) {
        qemudLog (QEMUD_ERR, "remoteCheckCertificate: certificate is not X.509");
        return -1;
    }

    if (!(certs = gnutls_certificate_get_peers(session, &nCerts))) {
        qemudLog (QEMUD_ERR, "remoteCheckCertificate: no peers");
        return -1;
    }

    now = time (NULL);

    for (i = 0; i < nCerts; i++) {
        gnutls_x509_crt_t cert;

        if (gnutls_x509_crt_init (&cert) < 0) {
            qemudLog (QEMUD_ERR, "remoteCheckCertificate: gnutls_x509_crt_init failed");
            return -1;
        }

        if (gnutls_x509_crt_import(cert, &certs[i], GNUTLS_X509_FMT_DER) < 0) {
            gnutls_x509_crt_deinit (cert);
            return -1;
        }
    
        if (gnutls_x509_crt_get_expiration_time (cert) < now) {
            qemudLog (QEMUD_ERR, "remoteCheckCertificate: the client certificate has expired");
            gnutls_x509_crt_deinit (cert);
            return -1;
        }
    
        if (gnutls_x509_crt_get_activation_time (cert) > now) {
            qemudLog (QEMUD_ERR, "remoteCheckCertificate: the client certificate is not yet activated");
            gnutls_x509_crt_deinit (cert);
            return -1;
        }

        if (i == 0) {
            if (!remoteCheckDN (cert)) {
                /* This is the most common error: make it informative. */
                qemudLog (QEMUD_ERR, "remoteCheckCertificate: client's Distinguished Name is not on the list of allowed clients (tls_allowed_dn_list).  Use 'openssl x509 -in clientcert.pem -text' to view the Distinguished Name field in the client certificate, or run this daemon with --verbose option.");
                gnutls_x509_crt_deinit (cert);
                return -1;
            }
        }
    }

    return 0;
}

/* Check the client's access. */
static int
remoteCheckAccess (struct qemud_client *client)
{
    char addr[NI_MAXHOST];
    const char **wildcards;
    int found, err;

    /* Verify client certificate. */
    if (remoteCheckCertificate (client->session) == -1) {
        qemudLog (QEMUD_ERR, "remoteCheckCertificate: failed to verify client's certificate");
        if (!tls_no_verify_certificate) return -1;
        else qemudLog (QEMUD_INFO, "remoteCheckCertificate: tls_no_verify_certificate is set so the bad certificate is ignored");
    }

    /*----- IP address check, similar to tcp wrappers -----*/

    /* Convert IP address to printable string (eg. "127.0.0.1" or "::1"). */
    err = getnameinfo ((struct sockaddr *) &client->addr, client->addrlen,
                       addr, sizeof addr, NULL, 0,
                       NI_NUMERICHOST);
    if (err != 0) {
        qemudLog (QEMUD_ERR, "getnameinfo: %s", gai_strerror (err));
        return -1;
    }

    /* Verify the client is on the list of allowed clients.
     *
     * NB: No tls_allowed_ip_list in config file means anyone can access.
     * If tls_allowed_ip_list is in the config file but empty, means no
     * one can access (not particularly useful, but it's what the sysadmin
     * would expect).
     */
    wildcards = tls_allowed_ip_list;
    if (wildcards) {
        found = 0;

        while (*wildcards) {
            if (fnmatch (*wildcards, addr, 0) == 0) {
                found = 1;
                break;
            }
            wildcards++;
        }
    } else
        found = 1;

    if (!found) {
        qemudLog (QEMUD_ERR, "remoteCheckAccess: client's IP address (%s) is not on the list of allowed clients (tls_allowed_ip_list)", addr);
        if (!tls_no_verify_address) return -1;
        else qemudLog (QEMUD_INFO, "remoteCheckAccess: tls_no_verify_address is set so the client's IP address is ignored");
    }

    /* Checks have succeeded.  Write a '\1' byte back to the client to
     * indicate this (otherwise the socket is abruptly closed).
     * (NB. The '\1' byte is sent in an encrypted record).
     */
    client->bufferLength = 1;
    client->bufferOffset = 0;
    client->buffer[0] = '\1';
    client->mode = QEMUD_MODE_TX_PACKET;
    client->direction = QEMUD_TLS_DIRECTION_WRITE;
    return 0;
}
D
Daniel P. Berrange 已提交
960 961 962 963

static int qemudDispatchServer(struct qemud_server *server, struct qemud_socket *sock) {
    int fd;
    struct sockaddr_storage addr;
964
    socklen_t addrlen = (socklen_t) (sizeof addr);
D
Daniel P. Berrange 已提交
965
    struct qemud_client *client;
966
    int no_slow_start = 1;
D
Daniel P. Berrange 已提交
967 968 969 970

    if ((fd = accept(sock->fd, (struct sockaddr *)&addr, &addrlen)) < 0) {
        if (errno == EAGAIN)
            return 0;
971
        qemudLog(QEMUD_ERR, "Failed to accept connection: %s", strerror(errno));
D
Daniel P. Berrange 已提交
972 973 974
        return -1;
    }

975 976 977 978
    /* Disable Nagle.  Unix sockets will ignore this. */
    setsockopt (fd, IPPROTO_TCP, TCP_NODELAY, (void *)&no_slow_start,
                sizeof no_slow_start);

979 980
    if (qemudSetCloseExec(fd) < 0 ||
        qemudSetNonBlock(fd) < 0) {
D
Daniel P. Berrange 已提交
981 982 983 984 985
        close(fd);
        return -1;
    }

    client = calloc(1, sizeof(struct qemud_client));
986
    client->magic = QEMUD_CLIENT_MAGIC;
D
Daniel P. Berrange 已提交
987 988
    client->fd = fd;
    client->readonly = sock->readonly;
989 990 991 992 993 994 995
    client->tls = sock->tls;
    memcpy (&client->addr, &addr, sizeof addr);
    client->addrlen = addrlen;

    if (!client->tls) {
        client->mode = QEMUD_MODE_RX_HEADER;
        client->bufferLength = QEMUD_PKT_HEADER_XDR_LEN;
D
Daniel P. Berrange 已提交
996 997 998

        if (qemudRegisterClientEvent (server, client, 0) < 0)
            goto cleanup;
999 1000 1001 1002
    } else {
        int ret;

        client->session = remoteInitializeTLSSession ();
D
Daniel P. Berrange 已提交
1003 1004
        if (client->session == NULL)
            goto cleanup;
1005 1006 1007 1008 1009 1010 1011 1012 1013

        gnutls_transport_set_ptr (client->session,
                                  (gnutls_transport_ptr_t) (long) fd);

        /* Begin the TLS handshake. */
        ret = gnutls_handshake (client->session);
        if (ret == 0) {
            /* Unlikely, but ...  Next step is to check the certificate. */
            if (remoteCheckAccess (client) == -1)
D
Daniel P. Berrange 已提交
1014 1015 1016 1017
                goto cleanup;

            if (qemudRegisterClientEvent(server, client, 0) < 0)
                goto cleanup;
1018 1019 1020 1021 1022
        } else if (ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN) {
            /* Most likely. */
            client->mode = QEMUD_MODE_TLS_HANDSHAKE;
            client->bufferLength = -1;
            client->direction = gnutls_record_get_direction (client->session);
D
Daniel P. Berrange 已提交
1023 1024 1025

            if (qemudRegisterClientEvent (server, client, 0) < 0)
                goto cleanup;
1026 1027 1028
        } else {
            qemudLog (QEMUD_ERR, "TLS handshake failed: %s",
                      gnutls_strerror (ret));
D
Daniel P. Berrange 已提交
1029
            goto cleanup;
1030 1031
        }
    }
D
Daniel P. Berrange 已提交
1032 1033 1034 1035 1036 1037

    client->next = server->clients;
    server->clients = client;
    server->nclients++;

    return 0;
1038

D
Daniel P. Berrange 已提交
1039
 cleanup:
1040 1041 1042 1043
    if (client->session) gnutls_deinit (client->session);
    close (fd);
    free (client);
    return -1;
D
Daniel P. Berrange 已提交
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
}




static void qemudDispatchClientFailure(struct qemud_server *server, struct qemud_client *client) {
    struct qemud_client *tmp = server->clients;
    struct qemud_client *prev = NULL;
    while (tmp) {
        if (tmp == client) {
            if (prev == NULL)
                server->clients = client->next;
            else
                prev->next = client->next;
            server->nclients--;
            break;
        }
        prev = tmp;
        tmp = tmp->next;
    }
1064

1065
    virEventRemoveHandleImpl(client->fd);
D
Daniel P. Berrange 已提交
1066

1067
    if (client->tls && client->session) gnutls_deinit (client->session);
D
Daniel P. Berrange 已提交
1068 1069 1070 1071 1072
    close(client->fd);
    free(client);
}


1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
static void qemudDispatchClientRequest(struct qemud_server *server,
                                       struct qemud_client *client,
                                       qemud_packet_client *req) {
    qemud_packet_server res;
    qemud_packet_header h;
    XDR x;

    assert (client->magic == QEMUD_CLIENT_MAGIC);

    if (req->serial != ++client->incomingSerial) {
        qemudDebug("Invalid serial number. Got %d expect %d",
                   req->serial, client->incomingSerial);
        qemudDispatchClientFailure(server, client);
        return;
    }

D
Daniel P. Berrange 已提交
1089 1090
    if (qemudDispatch(server,
                      client,
1091 1092 1093 1094
                      &req->data,
                      &res.data) < 0) {
        qemudDispatchClientFailure(server, client);
        return;
D
Daniel P. Berrange 已提交
1095 1096
    }

1097 1098
    res.serial = ++client->outgoingSerial;
    res.inReplyTo = req->serial;
D
Daniel P. Berrange 已提交
1099

1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
    xdrmem_create(&x, client->buffer, sizeof client->buffer,
                  XDR_ENCODE);

    /* Encode a dummy header.  We'll come back to encode the real header. */
    if (!xdr_qemud_packet_header (&x, &h)) {
        qemudDebug ("failed to encode dummy header");
        qemudDispatchClientFailure (server, client);
        return;
    }

    /* Real payload. */
    if (!xdr_qemud_packet_server(&x, &res)) {
        qemudDebug("Failed to XDR encode reply payload");
        qemudDispatchClientFailure(server, client);
        return;
    }

    /* Go back and encode the real header. */
    h.length = xdr_getpos (&x);
    h.prog = QEMUD_PROGRAM;

    if (xdr_setpos (&x, 0) == 0) {
        qemudDebug("xdr_setpos failed");
        qemudDispatchClientFailure(server, client);
        return;
    }

    if (!xdr_qemud_packet_header(&x, &h)) {
        qemudDebug("Failed to XDR encode reply header");
        qemudDispatchClientFailure(server, client);
        return;
    }

    client->mode = QEMUD_MODE_TX_PACKET;
    client->bufferLength = h.length;
    client->bufferOffset = 0;
D
Daniel P. Berrange 已提交
1136 1137 1138
}

static int qemudClientRead(struct qemud_server *server,
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
                           struct qemud_client *client) {
    int ret, len;
    char *data;

    data = client->buffer + client->bufferOffset;
    len = client->bufferLength - client->bufferOffset;

    /*qemudDebug ("qemudClientRead: len = %d", len);*/

    if (!client->tls) {
        if ((ret = read (client->fd, data, len)) <= 0) {
            if (ret == 0 || errno != EAGAIN) {
                if (ret != 0)
                    qemudLog (QEMUD_ERR, "read: %s", strerror (errno));
                qemudDispatchClientFailure(server, client);
            }
            return -1;
        }
    } else {
        ret = gnutls_record_recv (client->session, data, len);
        client->direction = gnutls_record_get_direction (client->session);
D
Daniel P. Berrange 已提交
1160 1161
        if (qemudRegisterClientEvent (server, client, 1) < 0)
            qemudDispatchClientFailure (server, client);
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
        if (ret <= 0) {
            if (ret == 0 || (ret != GNUTLS_E_AGAIN &&
                             ret != GNUTLS_E_INTERRUPTED)) {
                if (ret != 0)
                    qemudLog (QEMUD_ERR, "gnutls_record_recv: %s",
                              gnutls_strerror (ret));
                qemudDispatchClientFailure (server, client);
            }
            return -1;
        }
D
Daniel P. Berrange 已提交
1172
    }
1173 1174 1175

    client->bufferOffset += ret;
    return 0;
D
Daniel P. Berrange 已提交
1176 1177 1178 1179
}

static void qemudDispatchClientRead(struct qemud_server *server, struct qemud_client *client) {

1180
    /*qemudDebug ("qemudDispatchClientRead: mode = %d", client->mode);*/
D
Daniel P. Berrange 已提交
1181

1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
    switch (client->mode) {
    case QEMUD_MODE_RX_HEADER: {
        XDR x;
        qemud_packet_header h;

        if (qemudClientRead(server, client) < 0)
            return; /* Error, or blocking */

        if (client->bufferOffset < client->bufferLength)
            return; /* Not read enough */

        xdrmem_create(&x, client->buffer, client->bufferLength, XDR_DECODE);

        if (!xdr_qemud_packet_header(&x, &h)) {
            qemudDebug("Failed to decode packet header");
D
Daniel P. Berrange 已提交
1197 1198 1199
            qemudDispatchClientFailure(server, client);
            return;
        }
1200 1201 1202 1203 1204 1205 1206 1207 1208

        /* We're expecting either QEMUD_PROGRAM or REMOTE_PROGRAM,
         * corresponding to qemud or remote calls respectively.
         */
        if ((!remote && h.prog != QEMUD_PROGRAM)
            || (remote && h.prog != REMOTE_PROGRAM)) {
            qemudDebug("Header magic %x mismatch", h.prog);
            qemudDispatchClientFailure(server, client);
            return;
D
Daniel P. Berrange 已提交
1209
        }
1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226

        /* NB: h.length is unsigned. */
        if (h.length > REMOTE_MESSAGE_MAX) {
            qemudDebug("Packet length %u too large", h.length);
            qemudDispatchClientFailure(server, client);
            return;
        }

        client->mode = QEMUD_MODE_RX_PAYLOAD;
        client->bufferLength = h.length;
        if (client->tls) client->direction = QEMUD_TLS_DIRECTION_READ;
        /* Note that we don't reset bufferOffset here because we want
         * to retain the whole message, including header.
         */

        xdr_destroy (&x);

D
Daniel P. Berrange 已提交
1227 1228 1229 1230 1231
        if (qemudRegisterClientEvent(server, client, 1) < 0) {
            qemudDispatchClientFailure(server, client);
            return;
        }

1232
        /* Fall through */
D
Daniel P. Berrange 已提交
1233 1234
    }

1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
    case QEMUD_MODE_RX_PAYLOAD: {
        XDR x;
        qemud_packet_header h;

        if (qemudClientRead(server, client) < 0)
            return; /* Error, or blocking */

        if (client->bufferOffset < client->bufferLength)
            return; /* Not read enough */

        /* Reparse the header to decide if this is for qemud or remote. */
        xdrmem_create(&x, client->buffer, client->bufferLength, XDR_DECODE);

        if (!xdr_qemud_packet_header(&x, &h)) {
            qemudDebug("Failed to decode packet header");
            qemudDispatchClientFailure(server, client);
            return;
        }

        if (remote && h.prog == REMOTE_PROGRAM) {
            remoteDispatchClientRequest (server, client);
D
Daniel P. Berrange 已提交
1256 1257
            if (qemudRegisterClientEvent(server, client, 1) < 0)
                qemudDispatchClientFailure(server, client);
1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
        } else if (!remote && h.prog == QEMUD_PROGRAM) {
            qemud_packet_client p;

            if (!xdr_qemud_packet_client(&x, &p)) {
                qemudDebug("Failed to decode client packet");
                qemudDispatchClientFailure(server, client);
                return;
            }

            qemudDispatchClientRequest(server, client, &p);
D
Daniel P. Berrange 已提交
1268 1269 1270

            if (qemudRegisterClientEvent(server, client, 1) < 0)
                qemudDispatchClientFailure(server, client);
1271 1272 1273
        } else {
            /* An internal error. */
            qemudDebug ("Not REMOTE_PROGRAM or QEMUD_PROGRAM");
D
Daniel P. Berrange 已提交
1274
            qemudDispatchClientFailure(server, client);
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
        }

        xdr_destroy (&x);

        break;
    }

    case QEMUD_MODE_TLS_HANDSHAKE: {
        int ret;

        /* Continue the handshake. */
        ret = gnutls_handshake (client->session);
        if (ret == 0) {
            /* Finished.  Next step is to check the certificate. */
            if (remoteCheckAccess (client) == -1)
                qemudDispatchClientFailure (server, client);
D
Daniel P. Berrange 已提交
1291 1292
            if (qemudRegisterClientEvent (server, client, 1) < 0)
                qemudDispatchClientFailure (server, client);
1293 1294 1295 1296
        } else if (ret != GNUTLS_E_AGAIN && ret != GNUTLS_E_INTERRUPTED) {
            qemudLog (QEMUD_ERR, "TLS handshake failed: %s",
                      gnutls_strerror (ret));
            qemudDispatchClientFailure (server, client);
D
Daniel P. Berrange 已提交
1297
        } else {
1298
            client->direction = gnutls_record_get_direction (client->session);
D
Daniel P. Berrange 已提交
1299 1300 1301
            if (qemudRegisterClientEvent (server ,client, 1) < 0)
                qemudDispatchClientFailure (server, client);
        }
1302 1303 1304 1305 1306 1307 1308

        break;
    }

    default:
        qemudDebug("Got unexpected data read while in %d mode", client->mode);
        qemudDispatchClientFailure(server, client);
D
Daniel P. Berrange 已提交
1309 1310 1311 1312 1313
    }
}


static int qemudClientWrite(struct qemud_server *server,
1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
                            struct qemud_client *client) {
    int ret, len;
    char *data;

    data = client->buffer + client->bufferOffset;
    len = client->bufferLength - client->bufferOffset;

    if (!client->tls) {
        if ((ret = write(client->fd, data, len)) == -1) {
            if (errno != EAGAIN) {
                qemudLog (QEMUD_ERR, "write: %s", strerror (errno));
                qemudDispatchClientFailure(server, client);
            }
            return -1;
        }
    } else {
        ret = gnutls_record_send (client->session, data, len);
        client->direction = gnutls_record_get_direction (client->session);
D
Daniel P. Berrange 已提交
1332 1333
        if (qemudRegisterClientEvent (server, client, 1) < 0)
            qemudDispatchClientFailure (server, client);
1334 1335 1336 1337 1338 1339 1340 1341
        if (ret < 0) {
            if (ret != GNUTLS_E_INTERRUPTED && ret != GNUTLS_E_AGAIN) {
                qemudLog (QEMUD_ERR, "gnutls_record_send: %s",
                          gnutls_strerror (ret));
                qemudDispatchClientFailure (server, client);
            }
            return -1;
        }
D
Daniel P. Berrange 已提交
1342
    }
1343 1344 1345

    client->bufferOffset += ret;
    return 0;
D
Daniel P. Berrange 已提交
1346 1347 1348 1349
}


static void qemudDispatchClientWrite(struct qemud_server *server, struct qemud_client *client) {
1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
    switch (client->mode) {
    case QEMUD_MODE_TX_PACKET: {
        if (qemudClientWrite(server, client) < 0)
            return;

        if (client->bufferOffset == client->bufferLength) {
            /* Done writing, switch back to receive */
            client->mode = QEMUD_MODE_RX_HEADER;
            client->bufferLength = QEMUD_PKT_HEADER_XDR_LEN;
            client->bufferOffset = 0;
            if (client->tls) client->direction = QEMUD_TLS_DIRECTION_READ;
D
Daniel P. Berrange 已提交
1361 1362 1363

            if (qemudRegisterClientEvent (server, client, 1) < 0)
                qemudDispatchClientFailure (server, client);
1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377
        }
        /* Still writing */
        break;
    }

    case QEMUD_MODE_TLS_HANDSHAKE: {
        int ret;

        /* Continue the handshake. */
        ret = gnutls_handshake (client->session);
        if (ret == 0) {
            /* Finished.  Next step is to check the certificate. */
            if (remoteCheckAccess (client) == -1)
                qemudDispatchClientFailure (server, client);
D
Daniel P. Berrange 已提交
1378 1379 1380

            if (qemudRegisterClientEvent (server, client, 1))
                qemudDispatchClientFailure (server, client);
1381 1382 1383 1384
        } else if (ret != GNUTLS_E_AGAIN && ret != GNUTLS_E_INTERRUPTED) {
            qemudLog (QEMUD_ERR, "TLS handshake failed: %s",
                      gnutls_strerror (ret));
            qemudDispatchClientFailure (server, client);
D
Daniel P. Berrange 已提交
1385
        } else {
1386
            client->direction = gnutls_record_get_direction (client->session);
D
Daniel P. Berrange 已提交
1387 1388 1389
            if (qemudRegisterClientEvent (server, client, 1))
                qemudDispatchClientFailure (server, client);
        }
1390 1391 1392 1393 1394 1395 1396

        break;
    }

    default:
        qemudDebug("Got unexpected data write while in %d mode", client->mode);
        qemudDispatchClientFailure(server, client);
D
Daniel P. Berrange 已提交
1397 1398 1399
    }
}

D
Daniel P. Berrange 已提交
1400 1401 1402 1403

static void qemudDispatchClientEvent(int fd, int events, void *opaque) {
    struct qemud_server *server = (struct qemud_server *)opaque;
    struct qemud_client *client = server->clients;
1404

D
Daniel P. Berrange 已提交
1405
    while (client) {
D
Daniel P. Berrange 已提交
1406 1407 1408 1409 1410
        if (client->fd == fd)
            break;

        client = client->next;
    }
1411

D
Daniel P. Berrange 已提交
1412 1413
    if (!client)
        return;
1414

D
Daniel P. Berrange 已提交
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426
    if (events == POLLOUT)
        qemudDispatchClientWrite(server, client);
    else if (events == POLLIN)
        qemudDispatchClientRead(server, client);
    else
        qemudDispatchClientFailure(server, client);
}

static int qemudRegisterClientEvent(struct qemud_server *server,
                                    struct qemud_client *client,
                                    int removeFirst) {
    if (removeFirst)
1427
        if (virEventRemoveHandleImpl(client->fd) < 0)
D
Daniel P. Berrange 已提交
1428 1429 1430
            return -1;

    if (client->tls) {
1431 1432 1433 1434 1435
        if (virEventAddHandleImpl(client->fd,
                                  (client->direction ?
                                   POLLOUT : POLLIN) | POLLERR | POLLHUP,
                                  qemudDispatchClientEvent,
                                  server) < 0)
D
Daniel P. Berrange 已提交
1436 1437
            return -1;
    } else {
1438 1439 1440 1441 1442
        if (virEventAddHandleImpl(client->fd,
                                  (client->mode == QEMUD_MODE_TX_PACKET ?
                                   POLLOUT : POLLIN) | POLLERR | POLLHUP,
                                  qemudDispatchClientEvent,
                                  server) < 0)
D
Daniel P. Berrange 已提交
1443
            return -1;
D
Daniel P. Berrange 已提交
1444
    }
D
Daniel P. Berrange 已提交
1445 1446 1447 1448 1449 1450 1451 1452

    return 0;
}

static void qemudDispatchServerEvent(int fd, int events, void *opaque) {
    struct qemud_server *server = (struct qemud_server *)opaque;
    struct qemud_socket *sock = server->sockets;

D
Daniel P. Berrange 已提交
1453
    while (sock) {
D
Daniel P. Berrange 已提交
1454 1455 1456 1457
        if (sock->fd == fd)
            break;

        sock = sock->next;
D
Daniel P. Berrange 已提交
1458
    }
D
Daniel P. Berrange 已提交
1459

D
Daniel P. Berrange 已提交
1460 1461 1462 1463 1464 1465 1466 1467
    if (!sock)
        return;

    if (events)
        qemudDispatchServer(server, sock);
}


1468
static int qemudOneLoop(void) {
1469
    sig_atomic_t errors;
D
Daniel P. Berrange 已提交
1470

D
Daniel P. Berrange 已提交
1471
    if (virEventRunOnce() < 0)
D
Daniel P. Berrange 已提交
1472 1473
        return -1;

1474 1475 1476 1477 1478 1479 1480 1481 1482 1483
    /* Check for any signal handling errors and log them. */
    errors = sig_errors;
    if (errors) {
        sig_errors -= errors;
        qemudLog (QEMUD_ERR,
                  "Signal handler reported %d errors: last error: %s",
                  errors, strerror (sig_lasterrno));
        return -1;
    }

D
Daniel P. Berrange 已提交
1484 1485 1486
    return 0;
}

1487 1488 1489 1490 1491 1492 1493 1494 1495
static void qemudInactiveTimer(int timer ATTRIBUTE_UNUSED, void *data) {
    struct qemud_server *server = (struct qemud_server *)data;
    qemudDebug("Got inactive timer expiry");
    if (!virStateActive()) {
        qemudDebug("No state active, shutting down");
        server->shutdown = 1;
    }
}

1496
static int qemudRunLoop(struct qemud_server *server) {
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510
    int timerid = -1;

    for (;;) {
        /* A shutdown timeout is specified, so check
         * if any drivers have active state, if not
         * shutdown after timeout seconds
         */
        if (timeout > 0 && !virStateActive() && !server->clients) {
            timerid = virEventAddTimeoutImpl(timeout*1000, qemudInactiveTimer, server);
            qemudDebug("Scheduling shutdown timer %d", timerid);
        }

        if (qemudOneLoop() < 0)
            break;
D
Daniel P. Berrange 已提交
1511

1512 1513 1514 1515 1516 1517 1518 1519
        /* Unregister any timeout that's active, since we
         * just had an event processed
         */
        if (timerid != -1) {
            qemudDebug("Removing shutdown timer %d", timerid);
            virEventRemoveTimeoutImpl(timerid);
            timerid = -1;
        }
D
Daniel P. Berrange 已提交
1520

1521 1522 1523 1524 1525
        if (server->shutdown)
            return 0;
    }

    return -1;
D
Daniel P. Berrange 已提交
1526 1527 1528
}

static void qemudCleanup(struct qemud_server *server) {
1529 1530
    struct qemud_socket *sock;

1531
    close(server->sigread);
1532 1533

    sock = server->sockets;
D
Daniel P. Berrange 已提交
1534
    while (sock) {
1535
        struct qemud_socket *next = sock->next;
D
Daniel P. Berrange 已提交
1536
        close(sock->fd);
1537 1538
        free(sock);
        sock = next;
D
Daniel P. Berrange 已提交
1539
    }
1540 1541


1542
    qemudShutdown();
1543
    virStateCleanup();
1544

D
Daniel P. Berrange 已提交
1545 1546 1547
    free(server);
}

1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682
/* Read the config file if it exists.
 * Only used in the remote case, hence the name.
 */
static int
remoteReadConfigFile (const char *filename)
{
    virConfPtr conf;

    /* Just check the file is readable before opening it, otherwise
     * libvirt emits an error.
     */
    if (access (filename, R_OK) == -1) return 0;

    conf = virConfReadFile (filename);
    if (!conf) return 0;

    virConfValuePtr p;

#define CHECK_TYPE(name,typ) if (p && p->type != (typ)) {               \
        qemudLog (QEMUD_ERR,                                            \
                  "remoteReadConfigFile: %s: %s: expected type " #typ "\n", \
                  filename, (name));                                    \
        return -1;                                                      \
    }

    p = virConfGetValue (conf, "listen_tls");
    CHECK_TYPE ("listen_tls", VIR_CONF_LONG);
    listen_tls = p ? p->l : listen_tls;

    p = virConfGetValue (conf, "listen_tcp");
    CHECK_TYPE ("listen_tcp", VIR_CONF_LONG);
    listen_tcp = p ? p->l : listen_tcp;

    p = virConfGetValue (conf, "tls_port");
    CHECK_TYPE ("tls_port", VIR_CONF_STRING);
    tls_port = p ? strdup (p->str) : tls_port;

    p = virConfGetValue (conf, "tcp_port");
    CHECK_TYPE ("tcp_port", VIR_CONF_STRING);
    tcp_port = p ? strdup (p->str) : tcp_port;

    p = virConfGetValue (conf, "tls_no_verify_certificate");
    CHECK_TYPE ("tls_no_verify_certificate", VIR_CONF_LONG);
    tls_no_verify_certificate = p ? p->l : tls_no_verify_certificate;

    p = virConfGetValue (conf, "tls_no_verify_address");
    CHECK_TYPE ("tls_no_verify_address", VIR_CONF_LONG);
    tls_no_verify_address = p ? p->l : tls_no_verify_address;

    p = virConfGetValue (conf, "key_file");
    CHECK_TYPE ("key_file", VIR_CONF_STRING);
    key_file = p ? strdup (p->str) : key_file;

    p = virConfGetValue (conf, "cert_file");
    CHECK_TYPE ("cert_file", VIR_CONF_STRING);
    cert_file = p ? strdup (p->str) : cert_file;

    p = virConfGetValue (conf, "ca_file");
    CHECK_TYPE ("ca_file", VIR_CONF_STRING);
    ca_file = p ? strdup (p->str) : ca_file;

    p = virConfGetValue (conf, "crl_file");
    CHECK_TYPE ("crl_file", VIR_CONF_STRING);
    crl_file = p ? strdup (p->str) : crl_file;

    p = virConfGetValue (conf, "tls_allowed_dn_list");
    if (p) {
        switch (p->type) {
        case VIR_CONF_STRING:
            tls_allowed_dn_list = malloc (2 * sizeof (char *));
            tls_allowed_dn_list[0] = strdup (p->str);
            tls_allowed_dn_list[1] = 0;
            break;

        case VIR_CONF_LIST: {
            int i, len = 0;
            virConfValuePtr pp;
            for (pp = p->list; pp; pp = p->next)
                len++;
            tls_allowed_dn_list =
                malloc ((1+len) * sizeof (char *));
            for (i = 0, pp = p->list; pp; ++i, pp = p->next) {
                if (pp->type != VIR_CONF_STRING) {
                    qemudLog (QEMUD_ERR, "remoteReadConfigFile: %s: tls_allowed_dn_list: should be a string or list of strings\n", filename);
                    return -1;
                }
                tls_allowed_dn_list[i] = strdup (pp->str);
            }
            tls_allowed_dn_list[i] = 0;
            break;
        }

        default:
            qemudLog (QEMUD_ERR, "remoteReadConfigFile: %s: tls_allowed_dn_list: should be a string or list of strings\n", filename);
            return -1;
        }
    }

    p = virConfGetValue (conf, "tls_allowed_ip_list");
    if (p) {
        switch (p->type) {
        case VIR_CONF_STRING:
            tls_allowed_ip_list = malloc (2 * sizeof (char *));
            tls_allowed_ip_list[0] = strdup (p->str);
            tls_allowed_ip_list[1] = 0;
            break;

        case VIR_CONF_LIST: {
            int i, len = 0;
            virConfValuePtr pp;
            for (pp = p->list; pp; pp = p->next)
                len++;
            tls_allowed_ip_list =
                malloc ((1+len) * sizeof (char *));
            for (i = 0, pp = p->list; pp; ++i, pp = p->next) {
                if (pp->type != VIR_CONF_STRING) {
                    qemudLog (QEMUD_ERR, "remoteReadConfigFile: %s: tls_allowed_ip_list: should be a string or list of strings\n", filename);
                    return -1;
                }
                tls_allowed_ip_list[i] = strdup (pp->str);
            }
            tls_allowed_ip_list[i] = 0;
            break;
        }

        default:
            qemudLog (QEMUD_ERR, "remoteReadConfigFile: %s: tls_allowed_ip_list: should be a string or list of strings\n", filename);
            return -1;
        }
    }

    virConfFree (conf);
    return 0;
}

1683 1684 1685 1686 1687
/* Print command-line usage. */
static void
usage (const char *argv0)
{
    fprintf (stderr,
1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767
             "\n\
Usage:\n\
  %s [options]\n\
\n\
Options:\n\
  -v | --verbose         Verbose messages.\n\
  -d | --daemon          Run as a daemon & write PID file.\n\
  -r | --remote          Act as remote server.\n\
  -s | --system          Run as system daemon (QEMUD only).\n\
  -t | --timeout <secs>  Exit after timeout period (QEMUD only).\n\
  -f | --config <file>   Configuration file (remote only).\n\
  -p | --pid-file <file> Change name of PID file.\n\
\n\
Remote and QEMU/network management:\n\
\n\
The '--remote' flag selects between running as a remote server\n\
for remote libvirt requests, versus running as a QEMU\n\
and network management daemon.\n\
\n\
Normally you need to have one daemon of each type.\n\
\n\
See also http://libvirt.org/remote.html\n\
\n\
For remote daemon:\n\
\n\
  Default paths:\n\
\n\
    Configuration file (unless overridden by -f):\n\
      " SYSCONF_DIR "/libvirt/libvirtd.conf\n\
\n\
    Sockets:\n\
      " LOCAL_STATE_DIR "/run/libvirt/libvirt-sock\n\
      " LOCAL_STATE_DIR "/run/libvirt/libvirt-sock-ro\n\
\n\
    TLS:\n\
      CA certificate:     " LIBVIRT_CACERT "\n\
      Server certificate: " LIBVIRT_SERVERCERT "\n\
      Server private key: " LIBVIRT_SERVERKEY "\n\
\n\
    PID file (unless overridden by --pid-file):\n\
      %s\n\
\n\
For QEMU and network management daemon:\n\
\n\
  For '--system' option you must be running this daemon as root.\n\
\n\
  The '--timeout' applies only when the daemon is not servicing\n\
  clients.\n\
\n\
  Default paths:\n\
\n\
    Configuration files (in system mode):\n\
      " SYSCONF_DIR "/libvirt/qemu\n\
      " SYSCONF_DIR "/libvirt/qemu/autostart\n\
      " SYSCONF_DIR "/libvirt/qemu/networkd\n\
      " SYSCONF_DIR "/libvirt/qemu/networks/autostart\n\
\n\
    Configuration files (not in system mode):\n\
      $HOME/.libvirt/qemu\n\
      $HOME/.libvirt/qemu/autostart\n\
      $HOME/.libvirt/qemu/networks\n\
      $HOME/.libvirt/qemu/networks/autostart\n\
\n\
    Sockets (in system mode):\n\
      " LOCAL_STATE_DIR "/run/libvirt/qemud-sock\n\
      " LOCAL_STATE_DIR "/run/libvirt/qemud-sock-ro\n\
\n\
    Sockets (not in system mode):\n\
      $HOME/.libvirt/qemud-sock (in Unix abstract namespace)\n\
\n\
    PID file (unless overridden by --pid-file):\n\
      %s\n\
\n",
             argv0,
             REMOTE_PID_FILE[0] != '\0'
               ? REMOTE_PID_FILE
               : "(disabled in ./configure)",
             QEMUD_PID_FILE[0] != '\0'
               ? QEMUD_PID_FILE
               : "(disabled in ./configure)");
1768 1769
}

D
Daniel P. Berrange 已提交
1770 1771 1772
#define MAX_LISTEN 5
int main(int argc, char **argv) {
    struct qemud_server *server;
1773 1774
    struct sigaction sig_action;
    int sigpipe[2];
1775 1776
    const char *pid_file = NULL;
    const char *remote_config_file = SYSCONF_DIR "/libvirt/libvirtd.conf";
1777
    int ret = 1;
D
Daniel P. Berrange 已提交
1778 1779 1780 1781

    struct option opts[] = {
        { "verbose", no_argument, &verbose, 1},
        { "daemon", no_argument, &godaemon, 1},
1782 1783
        { "remote", no_argument, &remote, 1},
        { "config", required_argument, NULL, 'f'},
D
Daniel P. Berrange 已提交
1784
        { "system", no_argument, &sys, 1},
1785 1786 1787
        { "timeout", required_argument, NULL, 't'},
        { "pid-file", required_argument, NULL, 'p'},
        { "help", no_argument, NULL, '?' },
D
Daniel P. Berrange 已提交
1788 1789 1790 1791 1792 1793 1794 1795
        {0, 0, 0, 0}
    };

    while (1) {
        int optidx = 0;
        int c;
        char *tmp;

1796
        c = getopt_long(argc, argv, "dfp:s:t:v", opts, &optidx);
D
Daniel P. Berrange 已提交
1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811

        if (c == -1) {
            break;
        }

        switch (c) {
        case 0:
            /* Got one of the flags */
            break;
        case 'v':
            verbose = 1;
            break;
        case 'd':
            godaemon = 1;
            break;
1812 1813 1814
        case 'r':
            remote = 1;
            break;
D
Daniel P. Berrange 已提交
1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825
        case 's':
            sys = 1;
            break;

        case 't':
            timeout = strtol(optarg, &tmp, 10);
            if (!tmp)
                timeout = -1;
            if (timeout <= 0)
                timeout = -1;
            break;
1826 1827

        case 'p':
1828 1829 1830 1831 1832
            pid_file = optarg;
            break;

        case 'f':
            remote_config_file = optarg;
1833 1834
            break;

D
Daniel P. Berrange 已提交
1835
        case '?':
1836
            usage (argv[0]);
D
Daniel P. Berrange 已提交
1837 1838 1839 1840 1841 1842 1843
            return 2;

        default:
            abort();
        }
    }

1844 1845 1846 1847 1848 1849
    /* In remote mode only, now read the config file (if it exists). */
    if (remote) {
        if (remoteReadConfigFile (remote_config_file) < 0)
            goto error1;
    }

1850 1851 1852
    if (godaemon)
        openlog("libvirt-qemud", 0, 0);

1853 1854
    if (pipe(sigpipe) < 0 ||
        qemudSetNonBlock(sigpipe[0]) < 0 ||
1855 1856 1857
        qemudSetNonBlock(sigpipe[1]) < 0) {
        qemudLog(QEMUD_ERR, "Failed to create pipe: %s",
                 strerror(errno));
1858
        goto error1;
1859
    }
1860 1861 1862 1863 1864 1865 1866 1867 1868

    sigwrite = sigpipe[1];

    sig_action.sa_handler = sig_handler;
    sig_action.sa_flags = 0;
    sigemptyset(&sig_action.sa_mask);

    sigaction(SIGHUP, &sig_action, NULL);
    sigaction(SIGINT, &sig_action, NULL);
1869
    sigaction(SIGQUIT, &sig_action, NULL);
1870 1871 1872 1873 1874
    sigaction(SIGTERM, &sig_action, NULL);
    sigaction(SIGCHLD, &sig_action, NULL);

    sig_action.sa_handler = SIG_IGN;
    sigaction(SIGPIPE, &sig_action, NULL);
D
Daniel P. Berrange 已提交
1875 1876 1877

    if (godaemon) {
        int pid = qemudGoDaemon();
1878 1879 1880
        if (pid < 0) {
            qemudLog(QEMUD_ERR, "Failed to fork as daemon: %s",
                     strerror(errno));
1881
            goto error1;
1882
        }
D
Daniel P. Berrange 已提交
1883
        if (pid > 0)
1884 1885
            goto out;

1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897
        /* Choose the name of the PID file. */
        if (!pid_file) {
            if (remote) {
                if (REMOTE_PID_FILE[0] != '\0')
                    pid_file = REMOTE_PID_FILE;
            } else {
                if (QEMUD_PID_FILE[0] != '\0')
                    pid_file = QEMUD_PID_FILE;
            }
        }

        if (pid_file && qemudWritePidFile (pid_file) < 0)
1898
            goto error1;
D
Daniel P. Berrange 已提交
1899 1900
    }

1901
    if (!(server = qemudInitialize(sigpipe[0]))) {
1902 1903 1904
        ret = 2;
        goto error2;
    }
D
Daniel P. Berrange 已提交
1905

1906 1907 1908 1909
    if (virEventAddHandleImpl(sigpipe[0],
                              POLLIN,
                              qemudDispatchSignalEvent,
                              server) < 0) {
D
Daniel P. Berrange 已提交
1910 1911 1912 1913 1914
        qemudLog(QEMUD_ERR, "Failed to register callback for signal pipe");
        ret = 3;
        goto error2;
    }

1915
    qemudRunLoop(server);
D
Daniel P. Berrange 已提交
1916 1917 1918

    qemudCleanup(server);

1919 1920
    close(sigwrite);

1921 1922 1923
    if (godaemon)
        closelog();

1924 1925 1926 1927
 out:
    ret = 0;

 error2:
1928 1929
    if (godaemon && pid_file)
        unlink (pid_file);
1930 1931 1932

 error1:
    return ret;
D
Daniel P. Berrange 已提交
1933 1934 1935 1936 1937 1938 1939 1940 1941 1942
}

/*
 * Local variables:
 *  indent-tabs-mode: nil
 *  c-indent-level: 4
 *  c-basic-offset: 4
 *  tab-width: 4
 * End:
 */