qemud.c 62.8 KB
Newer Older
D
Daniel P. Berrange 已提交
1 2 3
/*
 * qemud.c: daemon start of day, guest process & i/o management
 *
4
 * Copyright (C) 2006, 2007, 2008 Red Hat, Inc.
D
Daniel P. Berrange 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * 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
#include <config.h>
25

D
Daniel P. Berrange 已提交
26 27 28 29 30 31 32 33 34 35 36
#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>
37
#include <netinet/tcp.h>
D
Daniel P. Berrange 已提交
38 39 40 41
#include <netdb.h>
#include <stdlib.h>
#include <pwd.h>
#include <stdio.h>
42 43
#include <stdarg.h>
#include <syslog.h>
D
Daniel P. Berrange 已提交
44 45 46
#include <string.h>
#include <errno.h>
#include <getopt.h>
47
#include <fnmatch.h>
48
#include <grp.h>
49
#include <signal.h>
50

51
#include "libvirt/virterror.h"
D
Daniel P. Berrange 已提交
52 53

#include "internal.h"
54
#include "getaddrinfo.h"
55
#include "../src/util.h"
56 57
#include "../src/remote_internal.h"
#include "../src/conf.h"
D
Daniel P. Berrange 已提交
58
#include "event.h"
59 60 61
#ifdef HAVE_AVAHI
#include "mdns.h"
#endif
D
Daniel P. Berrange 已提交
62

63 64
static int godaemon = 0;        /* -d: Be a daemon */
static int verbose = 0;         /* -v: Verbose mode */
65
static int timeout = -1;        /* -t: Shutdown timeout */
66
static int sigwrite = -1;       /* Signal handler pipe */
67
static int ipsock = 0;          /* -l  Listen for TCP/IP */
68

69
/* Defaults for configuration file elements */
70 71
static int listen_tls = 1;
static int listen_tcp = 0;
72 73
static char *tls_port = (char *) LIBVIRTD_TLS_PORT;
static char *tcp_port = (char *) LIBVIRTD_TCP_PORT;
74

75
static gid_t unix_sock_gid = 0; /* Only root by default */
76 77
static int unix_sock_rw_mask = 0700; /* Allow user only */
static int unix_sock_ro_mask = 0777; /* Allow world */
78

79 80 81 82
#if HAVE_POLKIT
static int auth_unix_rw = REMOTE_AUTH_POLKIT;
static int auth_unix_ro = REMOTE_AUTH_POLKIT;
#else
83 84
static int auth_unix_rw = REMOTE_AUTH_NONE;
static int auth_unix_ro = REMOTE_AUTH_NONE;
85
#endif /* HAVE_POLKIT */
86 87 88 89 90 91 92
#if HAVE_SASL
static int auth_tcp = REMOTE_AUTH_SASL;
#else
static int auth_tcp = REMOTE_AUTH_NONE;
#endif
static int auth_tls = REMOTE_AUTH_NONE;

93
static int mdns_adv = 1;
94
static char *mdns_name = NULL;
95

96
static int tls_no_verify_certificate = 0;
97
static char **tls_allowed_dn_list = NULL;
98

99 100 101 102
static char *key_file = (char *) LIBVIRT_SERVERKEY;
static char *cert_file = (char *) LIBVIRT_SERVERCERT;
static char *ca_file = (char *) LIBVIRT_CACERT;
static char *crl_file = (char *) "";
103 104 105 106 107

static gnutls_certificate_credentials_t x509_cred;
static gnutls_dh_params_t dh_params;

#define DH_BITS 1024
108

109 110 111
static sig_atomic_t sig_errors = 0;
static int sig_lasterrno = 0;

112 113 114
static void sig_handler(int sig) {
    unsigned char sigc = sig;
    int origerrno;
115
    int r;
116 117 118 119 120

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

    origerrno = errno;
121 122 123 124 125
    r = write(sigwrite, &sigc, 1);
    if (r == -1) {
        sig_errors++;
        sig_lasterrno = errno;
    }
126
    errno = origerrno;
D
Daniel P. Berrange 已提交
127
}
128

D
Daniel P. Berrange 已提交
129 130 131 132
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,
133
                                    int removeFirst);
D
Daniel P. Berrange 已提交
134

135 136 137 138 139
static int
remoteCheckCertFile(const char *type, const char *file)
{
    struct stat sb;
    if (stat(file, &sb) < 0) {
140
        qemudLog (QEMUD_ERR, _("Cannot access %s '%s': %s (%d)"),
141 142 143 144 145 146
                  type, file, strerror(errno), errno);
        return -1;
    }
    return 0;
}

147 148 149 150 151 152 153 154 155 156
static int
remoteInitializeGnuTLS (void)
{
    int err;

    /* Initialise GnuTLS. */
    gnutls_global_init ();

    err = gnutls_certificate_allocate_credentials (&x509_cred);
    if (err) {
157
        qemudLog (QEMUD_ERR, _("gnutls_certificate_allocate_credentials: %s"),
158 159 160 161 162
                  gnutls_strerror (err));
        return -1;
    }

    if (ca_file && ca_file[0] != '\0') {
163 164 165
        if (remoteCheckCertFile("CA certificate", ca_file) < 0)
            return -1;

166 167 168 169
        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) {
170
            qemudLog (QEMUD_ERR, _("gnutls_certificate_set_x509_trust_file: %s"),
171 172 173 174 175 176
                      gnutls_strerror (err));
            return -1;
        }
    }

    if (crl_file && crl_file[0] != '\0') {
J
Jim Meyering 已提交
177
        if (remoteCheckCertFile("CA revocation list", crl_file) < 0)
178 179
            return -1;

180 181 182 183
        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) {
184
            qemudLog (QEMUD_ERR, _("gnutls_certificate_set_x509_crl_file: %s"),
185 186 187 188 189 190
                      gnutls_strerror (err));
            return -1;
        }
    }

    if (cert_file && cert_file[0] != '\0' && key_file && key_file[0] != '\0') {
191 192 193 194
        if (remoteCheckCertFile("server certificate", cert_file) < 0)
            return -1;
        if (remoteCheckCertFile("server key", key_file) < 0)
            return -1;
195 196 197 198 199 200 201
        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) {
202
            qemudLog (QEMUD_ERR, _("gnutls_certificate_set_x509_key_file: %s"),
203 204 205 206 207 208 209 210 211 212 213 214
                      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) {
215
        qemudLog (QEMUD_ERR, _("gnutls_dh_params_init: %s"),
216 217 218 219 220
                  gnutls_strerror (err));
        return -1;
    }
    err = gnutls_dh_params_generate2 (dh_params, DH_BITS);
    if (err < 0) {
221
        qemudLog (QEMUD_ERR, _("gnutls_dh_params_generate2: %s"),
222 223 224 225 226 227 228 229 230
                  gnutls_strerror (err));
        return -1;
    }

    gnutls_certificate_set_dh_params (x509_cred, dh_params);

    return 0;
}

D
Daniel P. Berrange 已提交
231 232 233 234
static void qemudDispatchSignalEvent(int fd ATTRIBUTE_UNUSED,
                                     int events ATTRIBUTE_UNUSED,
                                     void *opaque) {
    struct qemud_server *server = (struct qemud_server *)opaque;
235 236 237
    unsigned char sigc;
    int ret;

238
    if (read(server->sigread, &sigc, 1) != 1) {
239
        qemudLog(QEMUD_ERR, _("Failed to read from signal pipe: %s"),
240
                 strerror(errno));
D
Daniel P. Berrange 已提交
241
        return;
242 243
    }

244 245 246 247
    ret = 0;

    switch (sigc) {
    case SIGHUP:
248
        qemudLog(QEMUD_INFO, _("Reloading configuration on SIGHUP"));
249
        if (virStateReload() < 0)
250
            qemudLog(QEMUD_WARN, _("Error while reloading drivers"));
251 252 253
        break;

    case SIGINT:
254
    case SIGQUIT:
255
    case SIGTERM:
256
        qemudLog(QEMUD_WARN, _("Shutting down on signal %d"), sigc);
257 258 259 260 261 262 263
        server->shutdown = 1;
        break;

    default:
        break;
    }

D
Daniel P. Berrange 已提交
264 265
    if (ret != 0)
        server->shutdown = 1;
266 267
}

D
Daniel P. Berrange 已提交
268 269
static int qemudSetCloseExec(int fd) {
    int flags;
270 271
    if ((flags = fcntl(fd, F_GETFD)) < 0)
        goto error;
D
Daniel P. Berrange 已提交
272
    flags |= FD_CLOEXEC;
273 274
    if ((fcntl(fd, F_SETFD, flags)) < 0)
        goto error;
D
Daniel P. Berrange 已提交
275
    return 0;
276
 error:
277
    qemudLog(QEMUD_ERR, _("Failed to set close-on-exec file descriptor flag"));
278
    return -1;
D
Daniel P. Berrange 已提交
279 280 281 282 283
}


static int qemudSetNonBlock(int fd) {
    int flags;
284 285
    if ((flags = fcntl(fd, F_GETFL)) < 0)
        goto error;
D
Daniel P. Berrange 已提交
286
    flags |= O_NONBLOCK;
287 288
    if ((fcntl(fd, F_SETFL, flags)) < 0)
        goto error;
D
Daniel P. Berrange 已提交
289
    return 0;
290
 error:
291
    qemudLog(QEMUD_ERR, _("Failed to set non-blocking file descriptor flag"));
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
    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 已提交
356 357 358 359 360 361 362 363 364
}

static int qemudGoDaemon(void) {
    int pid = fork();
    switch (pid) {
    case 0:
        {
            int stdinfd = -1;
            int stdoutfd = -1;
365
            int nextpid;
D
Daniel P. Berrange 已提交
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 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418

            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;
            }
419

D
Daniel P. Berrange 已提交
420 421 422 423 424
            return pid;
        }
    }
}

425 426 427 428 429 430 431 432
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) {
433
        qemudLog(QEMUD_ERR, _("Failed to open pid file '%s' : %s"),
434 435 436 437 438
                 pidFile, strerror(errno));
        return -1;
    }

    if (!(fh = fdopen(fd, "w"))) {
439
        qemudLog(QEMUD_ERR, _("Failed to fdopen pid file '%s' : %s"),
440 441 442 443 444 445
                 pidFile, strerror(errno));
        close(fd);
        return -1;
    }

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

    if (fclose(fh) == EOF) {
453
        qemudLog(QEMUD_ERR, _("Failed to close pid file '%s' : %s"),
454 455 456 457 458 459 460
                 pidFile, strerror(errno));
        return -1;
    }

    return 0;
}

D
Daniel P. Berrange 已提交
461
static int qemudListenUnix(struct qemud_server *server,
462
                           const char *path, int readonly, int auth) {
463
    struct qemud_socket *sock = calloc(1, sizeof(*sock));
D
Daniel P. Berrange 已提交
464 465
    struct sockaddr_un addr;
    mode_t oldmask;
466
    gid_t oldgrp;
D
Daniel P. Berrange 已提交
467

468
    if (!sock) {
469 470
        qemudLog(QEMUD_ERR,
                 _("Failed to allocate memory for struct qemud_socket"));
D
Daniel P. Berrange 已提交
471
        return -1;
472
    }
D
Daniel P. Berrange 已提交
473 474

    sock->readonly = readonly;
475
    sock->port = -1;
476
    sock->type = QEMUD_SOCK_TYPE_UNIX;
477
    sock->auth = auth;
D
Daniel P. Berrange 已提交
478

479
    if ((sock->fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
480
        qemudLog(QEMUD_ERR, _("Failed to create socket: %s"),
481
                 strerror(errno));
D
Daniel P. Berrange 已提交
482
        goto cleanup;
483
    }
D
Daniel P. Berrange 已提交
484

485 486
    if (qemudSetCloseExec(sock->fd) < 0 ||
        qemudSetNonBlock(sock->fd) < 0)
D
Daniel P. Berrange 已提交
487
        goto cleanup;
D
Daniel P. Berrange 已提交
488 489 490 491 492 493 494 495

    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';


496
    oldgrp = getgid();
497
    oldmask = umask(readonly ? ~unix_sock_ro_mask : ~unix_sock_rw_mask);
498 499 500
    if (getuid() == 0)
        setgid(unix_sock_gid);

501
    if (bind(sock->fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
502
        qemudLog(QEMUD_ERR, _("Failed to bind socket to '%s': %s"),
503
                 path, strerror(errno));
D
Daniel P. Berrange 已提交
504
        goto cleanup;
505
    }
D
Daniel P. Berrange 已提交
506
    umask(oldmask);
507 508
    if (getuid() == 0)
        setgid(oldgrp);
D
Daniel P. Berrange 已提交
509

510
    if (listen(sock->fd, 30) < 0) {
511
        qemudLog(QEMUD_ERR, _("Failed to listen for connections on '%s': %s"),
512
                 path, strerror(errno));
D
Daniel P. Berrange 已提交
513 514 515
        goto cleanup;
    }

516 517 518 519
    if (virEventAddHandleImpl(sock->fd,
                              POLLIN| POLLERR | POLLHUP,
                              qemudDispatchServerEvent,
                              server) < 0) {
520
        qemudLog(QEMUD_ERR, _("Failed to add server event callback"));
D
Daniel P. Berrange 已提交
521
        goto cleanup;
522
    }
D
Daniel P. Berrange 已提交
523

D
Daniel P. Berrange 已提交
524 525 526 527
    sock->next = server->sockets;
    server->sockets = sock;
    server->nsockets++;

D
Daniel P. Berrange 已提交
528
    return 0;
D
Daniel P. Berrange 已提交
529 530 531 532 533 534

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

537 538 539 540 541 542 543 544 545 546 547 548
// 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) {
549
        qemudLog (QEMUD_ERR, _("getaddrinfo: %s\n"), gai_strerror (e));
550 551 552 553 554 555 556 557
        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) {
558
            qemudLog (QEMUD_ERR, _("socket: %s"), strerror (errno));
559 560 561 562 563 564 565 566
            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) {
567
                qemudLog (QEMUD_ERR, _("bind: %s"), strerror (errno));
568 569 570 571 572 573
                return -1;
            }
            close (fds[*nfds_r]);
        }
        else {
            if (listen (fds[*nfds_r], SOMAXCONN) == -1) {
574
                qemudLog (QEMUD_ERR, _("listen: %s"), strerror (errno));
575 576 577 578 579 580
                return -1;
            }
            ++*nfds_r;
        }
        runp = runp->ai_next;
    }
581

582 583 584 585 586 587 588 589 590 591
    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,
592
                 int type,
593
                 int auth)
594 595 596
{
    int fds[2];
    int nfds = 0;
597
    int i;
598 599 600 601 602 603
    struct qemud_socket *sock;

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

    for (i = 0; i < nfds; ++i) {
604 605 606
        struct sockaddr_storage sa;
        socklen_t salen = sizeof(sa);

607
        sock = calloc (1, sizeof *sock);
608

609 610
        if (!sock) {
            qemudLog (QEMUD_ERR,
611
                      _("remoteListenTCP: calloc: %s"), strerror (errno));
612 613 614 615 616 617 618 619 620
            return -1;
        }

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

        sock->fd = fds[i];
621
        sock->type = type;
622
        sock->auth = auth;
D
Daniel P. Berrange 已提交
623

624 625 626 627 628
        if (getsockname(sock->fd, (struct sockaddr *)(&sa), &salen) < 0)
            return -1;

        if (sa.ss_family == AF_INET)
            sock->port = htons(((struct sockaddr_in*)&sa)->sin_port);
629
#ifdef AF_INET6
630 631
        else if (sa.ss_family == AF_INET6)
            sock->port = htons(((struct sockaddr_in6*)&sa)->sin6_port);
632
#endif
633 634 635
        else
            sock->port = -1;

636 637 638 639 640 641
        if (qemudSetCloseExec(sock->fd) < 0 ||
            qemudSetNonBlock(sock->fd) < 0)
            return -1;

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

646 647 648 649
        if (virEventAddHandleImpl(sock->fd,
                                  POLLIN| POLLERR | POLLHUP,
                                  qemudDispatchServerEvent,
                                  server) < 0) {
650
            qemudLog(QEMUD_ERR, _("Failed to add server event callback"));
D
Daniel P. Berrange 已提交
651 652 653
            return -1;
        }

654 655 656 657 658 659 660 661 662
    }

    return 0;
}

static int qemudInitPaths(struct qemud_server *server,
                          char *sockname,
                          char *roSockname,
                          int maxlen) {
663
    uid_t uid = geteuid();
664

665
    if (!uid) {
666 667
        if (snprintf (sockname, maxlen, "%s/run/libvirt/libvirt-sock",
                      LOCAL_STATE_DIR) >= maxlen)
668 669
            goto snprintf_error;

D
Daniel P. Berrange 已提交
670 671
        unlink(sockname);

672 673
        if (snprintf (roSockname, maxlen, "%s/run/libvirt/libvirt-sock-ro",
                      LOCAL_STATE_DIR) >= maxlen)
674
            goto snprintf_error;
D
Daniel P. Berrange 已提交
675

676
        unlink(roSockname);
D
Daniel P. Berrange 已提交
677

678
        if (snprintf(server->logDir, PATH_MAX, "%s/log/libvirt/", LOCAL_STATE_DIR) >= PATH_MAX)
D
Daniel P. Berrange 已提交
679
            goto snprintf_error;
D
Daniel P. Berrange 已提交
680
    } else {
681 682
        struct passwd *pw;

683
        if (!(pw = getpwuid(uid))) {
684
            qemudLog(QEMUD_ERR, _("Failed to find user record for uid '%d': %s"),
685 686 687
                     uid, strerror(errno));
            return -1;
        }
688

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

692 693
        if (snprintf(server->logDir, PATH_MAX, "%s/.libvirt/log", pw->pw_dir) >= PATH_MAX)
            goto snprintf_error;
694

695 696
    } /* !remote */

D
Daniel P. Berrange 已提交
697
    return 0;
698 699

 snprintf_error:
700 701
    qemudLog(QEMUD_ERR,
             _("Resulting path to long for buffer in qemudInitPaths()"));
702
    return -1;
D
Daniel P. Berrange 已提交
703 704
}

705
static struct qemud_server *qemudInitialize(int sigread) {
D
Daniel P. Berrange 已提交
706 707
    struct qemud_server *server;

708
    if (!(server = calloc(1, sizeof(*server)))) {
709
        qemudLog(QEMUD_ERR, _("Failed to allocate struct qemud_server"));
D
Daniel P. Berrange 已提交
710
        return NULL;
711
    }
D
Daniel P. Berrange 已提交
712

713
    server->sigread = sigread;
D
Daniel P. Berrange 已提交
714

715
    __virEventRegisterImpl(virEventAddHandleImpl,
716
                           virEventUpdateHandleImpl,
717 718
                           virEventRemoveHandleImpl,
                           virEventAddTimeoutImpl,
719
                           virEventUpdateTimeoutImpl,
720 721
                           virEventRemoveTimeoutImpl);

722 723
    virStateInitialize();

724 725 726 727 728 729 730
    return server;
}

static struct qemud_server *qemudNetworkInit(struct qemud_server *server) {
    struct qemud_socket *sock;
    char sockname[PATH_MAX];
    char roSockname[PATH_MAX];
731
#if HAVE_SASL
732 733 734 735 736 737 738 739 740
    int err;
#endif /* HAVE_SASL */

    roSockname[0] = '\0';

    if (qemudInitPaths(server, sockname, roSockname, PATH_MAX) < 0)
        goto cleanup;

    if (qemudListenUnix(server, sockname, 0, auth_unix_rw) < 0)
741
        goto cleanup;
742 743 744 745 746 747 748 749 750 751

    if (roSockname[0] != '\0' && qemudListenUnix(server, roSockname, 1, auth_unix_ro) < 0)
        goto cleanup;

#if HAVE_SASL
    if (auth_unix_rw == REMOTE_AUTH_SASL ||
        auth_unix_ro == REMOTE_AUTH_SASL ||
        auth_tcp == REMOTE_AUTH_SASL ||
        auth_tls == REMOTE_AUTH_SASL) {
        if ((err = sasl_server_init(NULL, "libvirt")) != SASL_OK) {
752 753
            qemudLog(QEMUD_ERR,
                     _("Failed to initialize SASL authentication %s"),
754 755 756
                     sasl_errstring(err, NULL, NULL));
            goto cleanup;
        }
757 758 759
    }
#endif

760 761 762 763 764 765 766
#ifdef HAVE_POLKIT
    if (auth_unix_rw == REMOTE_AUTH_POLKIT ||
        auth_unix_ro == REMOTE_AUTH_POLKIT) {
        DBusError derr;
        dbus_error_init(&derr);
        server->sysbus = dbus_bus_get(DBUS_BUS_SYSTEM, &derr);
        if (!(server->sysbus)) {
767 768
            qemudLog(QEMUD_ERR,
                     _("Failed to connect to system bus for PolicyKit auth: %s"),
769 770 771 772 773 774 775
                     derr.message);
            dbus_error_free(&derr);
            goto cleanup;
        }
    }
#endif

776
    if (ipsock) {
777
        if (listen_tcp && remoteListenTCP (server, tcp_port, QEMUD_SOCK_TYPE_TCP, auth_tcp) < 0)
778 779 780 781 782 783
            goto cleanup;

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

784
            if (remoteListenTCP (server, tls_port, QEMUD_SOCK_TYPE_TLS, auth_tls) < 0)
785 786
                goto cleanup;
        }
D
Daniel P. Berrange 已提交
787 788
    }

789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
#ifdef HAVE_AVAHI
    if (getuid() == 0 && mdns_adv) {
        struct libvirtd_mdns_group *group;
        int port = 0;

        server->mdns = libvirtd_mdns_new();

        if (!mdns_name) {
            char groupname[64], localhost[HOST_NAME_MAX+1], *tmp;
            /* Extract the host part of the potentially FQDN */
            gethostname(localhost, HOST_NAME_MAX);
            localhost[HOST_NAME_MAX] = '\0';
            if ((tmp = strchr(localhost, '.')))
                *tmp = '\0';
            snprintf(groupname, sizeof(groupname)-1, "Virtualization Host %s", localhost);
            groupname[sizeof(groupname)-1] = '\0';
            group = libvirtd_mdns_add_group(server->mdns, groupname);
        } else {
            group = libvirtd_mdns_add_group(server->mdns, mdns_name);
        }

810
        /*
811 812 813 814 815 816
         * See if there's a TLS enabled port we can advertise. Cowardly
         * don't bother to advertise TCP since we don't want people using
         * them for real world apps
         */
        sock = server->sockets;
        while (sock) {
817
            if (sock->port != -1 && sock->type == QEMUD_SOCK_TYPE_TLS) {
818 819 820 821 822
                port = sock->port;
                break;
            }
            sock = sock->next;
        }
823

824 825 826 827 828 829 830 831 832
        /*
         * Add the primary entry - we choose SSH because its most likely to always
         * be available
         */
        libvirtd_mdns_add_entry(group, "_libvirt._tcp", port);
        libvirtd_mdns_start(server->mdns);
    }
#endif

D
Daniel P. Berrange 已提交
833 834 835 836
    return server;

 cleanup:
    if (server) {
837
        sock = server->sockets;
D
Daniel P. Berrange 已提交
838 839 840 841 842
        while (sock) {
            close(sock->fd);
            sock = sock->next;
        }

843 844 845 846
#ifdef HAVE_POLKIT
        if (server->sysbus)
            dbus_connection_unref(server->sysbus);
#endif
D
Daniel P. Berrange 已提交
847 848 849 850 851
        free(server);
    }
    return NULL;
}

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
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:
879
  qemudLog (QEMUD_ERR, _("remoteInitializeTLSSession: %s"),
880 881 882 883 884 885 886 887 888 889
            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;
890
    char **wildcards;
891 892 893 894 895
    int err;

    err = gnutls_x509_crt_get_dn (cert, name, &namesize);
    if (err != 0) {
        qemudLog (QEMUD_ERR,
896
                  _("remoteCheckDN: gnutls_x509_cert_get_dn: %s"),
897 898 899 900 901 902 903 904 905 906 907 908 909 910 911
                  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 已提交
912
#ifdef ENABLE_DEBUG
913 914
    /* Print the client's DN. */
    qemudLog (QEMUD_DEBUG,
915
              _("remoteCheckDN: failed: client DN is %s"), name);
R
Richard W.M. Jones 已提交
916
#endif
917 918 919 920 921 922 923 924 925 926 927 928 929 930

    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){
931
        qemudLog (QEMUD_ERR, _("remoteCheckCertificate: verify failed: %s"),
932 933 934 935 936 937
                  gnutls_strerror (ret));
        return -1;
    }

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

        if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
942 943
            qemudLog (QEMUD_ERR, _("remoteCheckCertificate: the client "
                                   "certificate has unknown issuer."));
944 945

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

949
#ifndef GNUTLS_1_0_COMPAT
950
        if (status & GNUTLS_CERT_INSECURE_ALGORITHM)
951 952 953
            qemudLog (QEMUD_ERR,
                      _("remoteCheckCertificate: the client certificate"
                        " uses an insecure algorithm."));
954
#endif
955 956 957 958 959

        return -1;
    }

    if (gnutls_certificate_type_get (session) != GNUTLS_CRT_X509) {
960 961
        qemudLog (QEMUD_ERR, _("remoteCheckCertificate: "
                               "certificate is not X.509"));
962 963 964 965
        return -1;
    }

    if (!(certs = gnutls_certificate_get_peers(session, &nCerts))) {
966
        qemudLog (QEMUD_ERR, _("remoteCheckCertificate: no peers"));
967 968 969 970 971 972 973 974 975
        return -1;
    }

    now = time (NULL);

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

        if (gnutls_x509_crt_init (&cert) < 0) {
976 977
            qemudLog (QEMUD_ERR,
                      _("remoteCheckCertificate: gnutls_x509_crt_init failed"));
978 979 980 981 982 983 984
            return -1;
        }

        if (gnutls_x509_crt_import(cert, &certs[i], GNUTLS_X509_FMT_DER) < 0) {
            gnutls_x509_crt_deinit (cert);
            return -1;
        }
985

986
        if (gnutls_x509_crt_get_expiration_time (cert) < now) {
987 988
            qemudLog (QEMUD_ERR, _("remoteCheckCertificate: "
                                   "the client certificate has expired"));
989 990 991
            gnutls_x509_crt_deinit (cert);
            return -1;
        }
992

993
        if (gnutls_x509_crt_get_activation_time (cert) > now) {
994 995
            qemudLog (QEMUD_ERR, _("remoteCheckCertificate: the client "
                                   "certificate is not yet activated"));
996 997 998 999 1000 1001 1002
            gnutls_x509_crt_deinit (cert);
            return -1;
        }

        if (i == 0) {
            if (!remoteCheckDN (cert)) {
                /* This is the most common error: make it informative. */
1003
                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."));
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
                gnutls_x509_crt_deinit (cert);
                return -1;
            }
        }
    }

    return 0;
}

/* Check the client's access. */
static int
remoteCheckAccess (struct qemud_client *client)
{
    /* Verify client certificate. */
1018
    if (remoteCheckCertificate (client->tlssession) == -1) {
1019
        qemudLog (QEMUD_ERR, _("remoteCheckCertificate: failed to verify client's certificate"));
1020
        if (!tls_no_verify_certificate) return -1;
1021
        else qemudLog (QEMUD_INFO, _("remoteCheckCertificate: tls_no_verify_certificate is set so the bad certificate is ignored"));
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
    }

    /* 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;
    return 0;
}
D
Daniel P. Berrange 已提交
1034 1035 1036 1037

static int qemudDispatchServer(struct qemud_server *server, struct qemud_socket *sock) {
    int fd;
    struct sockaddr_storage addr;
1038
    socklen_t addrlen = (socklen_t) (sizeof addr);
D
Daniel P. Berrange 已提交
1039
    struct qemud_client *client;
1040
    int no_slow_start = 1;
D
Daniel P. Berrange 已提交
1041 1042 1043 1044

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

1049 1050 1051 1052
    /* Disable Nagle.  Unix sockets will ignore this. */
    setsockopt (fd, IPPROTO_TCP, TCP_NODELAY, (void *)&no_slow_start,
                sizeof no_slow_start);

1053 1054
    if (qemudSetCloseExec(fd) < 0 ||
        qemudSetNonBlock(fd) < 0) {
D
Daniel P. Berrange 已提交
1055 1056 1057 1058
        close(fd);
        return -1;
    }

1059
    client = calloc(1, sizeof(*client));
1060 1061
    if (client == NULL)
        goto cleanup;
1062
    client->magic = QEMUD_CLIENT_MAGIC;
D
Daniel P. Berrange 已提交
1063 1064
    client->fd = fd;
    client->readonly = sock->readonly;
1065
    client->type = sock->type;
1066
    client->auth = sock->auth;
1067 1068 1069
    memcpy (&client->addr, &addr, sizeof addr);
    client->addrlen = addrlen;

1070
    if (client->type != QEMUD_SOCK_TYPE_TLS) {
1071
        client->mode = QEMUD_MODE_RX_HEADER;
1072
        client->bufferLength = REMOTE_MESSAGE_HEADER_XDR_LEN;
D
Daniel P. Berrange 已提交
1073 1074 1075

        if (qemudRegisterClientEvent (server, client, 0) < 0)
            goto cleanup;
1076 1077 1078
    } else {
        int ret;

1079 1080
        client->tlssession = remoteInitializeTLSSession ();
        if (client->tlssession == NULL)
D
Daniel P. Berrange 已提交
1081
            goto cleanup;
1082

1083
        gnutls_transport_set_ptr (client->tlssession,
1084 1085 1086
                                  (gnutls_transport_ptr_t) (long) fd);

        /* Begin the TLS handshake. */
1087
        ret = gnutls_handshake (client->tlssession);
1088 1089 1090
        if (ret == 0) {
            /* Unlikely, but ...  Next step is to check the certificate. */
            if (remoteCheckAccess (client) == -1)
D
Daniel P. Berrange 已提交
1091 1092 1093 1094
                goto cleanup;

            if (qemudRegisterClientEvent(server, client, 0) < 0)
                goto cleanup;
1095 1096 1097 1098
        } else if (ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN) {
            /* Most likely. */
            client->mode = QEMUD_MODE_TLS_HANDSHAKE;
            client->bufferLength = -1;
D
Daniel P. Berrange 已提交
1099 1100 1101

            if (qemudRegisterClientEvent (server, client, 0) < 0)
                goto cleanup;
1102
        } else {
1103
            qemudLog (QEMUD_ERR, _("TLS handshake failed: %s"),
1104
                      gnutls_strerror (ret));
D
Daniel P. Berrange 已提交
1105
            goto cleanup;
1106 1107
        }
    }
D
Daniel P. Berrange 已提交
1108 1109 1110 1111 1112 1113

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

    return 0;
1114

D
Daniel P. Berrange 已提交
1115
 cleanup:
1116
    if (client->tlssession) gnutls_deinit (client->tlssession);
1117 1118 1119
    close (fd);
    free (client);
    return -1;
D
Daniel P. Berrange 已提交
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
}




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;
    }
1140

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

1143 1144 1145
    if (client->conn)
        virConnectClose(client->conn);

1146 1147
#if HAVE_SASL
    if (client->saslconn) sasl_dispose(&client->saslconn);
1148
    free(client->saslUsername);
1149
#endif
1150
    if (client->tlssession) gnutls_deinit (client->tlssession);
D
Daniel P. Berrange 已提交
1151 1152 1153 1154 1155 1156
    close(client->fd);
    free(client);
}



1157 1158 1159 1160
static int qemudClientReadBuf(struct qemud_server *server,
                              struct qemud_client *client,
                              char *data, unsigned len) {
    int ret;
1161 1162 1163

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

1164
    if (!client->tlssession) {
1165 1166 1167
        if ((ret = read (client->fd, data, len)) <= 0) {
            if (ret == 0 || errno != EAGAIN) {
                if (ret != 0)
1168
                    qemudLog (QEMUD_ERR, _("read: %s"), strerror (errno));
1169 1170 1171 1172 1173
                qemudDispatchClientFailure(server, client);
            }
            return -1;
        }
    } else {
1174
        ret = gnutls_record_recv (client->tlssession, data, len);
D
Daniel P. Berrange 已提交
1175 1176
        if (qemudRegisterClientEvent (server, client, 1) < 0)
            qemudDispatchClientFailure (server, client);
1177
        else if (ret <= 0) {
1178 1179 1180
            if (ret == 0 || (ret != GNUTLS_E_AGAIN &&
                             ret != GNUTLS_E_INTERRUPTED)) {
                if (ret != 0)
1181
                    qemudLog (QEMUD_ERR, _("gnutls_record_recv: %s"),
1182 1183 1184 1185 1186
                              gnutls_strerror (ret));
                qemudDispatchClientFailure (server, client);
            }
            return -1;
        }
D
Daniel P. Berrange 已提交
1187
    }
1188

1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
    return ret;
}

static int qemudClientReadPlain(struct qemud_server *server,
                                struct qemud_client *client) {
    int ret;
    ret = qemudClientReadBuf(server, client,
                             client->buffer + client->bufferOffset,
                             client->bufferLength - client->bufferOffset);
    if (ret < 0)
        return ret;
1200 1201
    client->bufferOffset += ret;
    return 0;
D
Daniel P. Berrange 已提交
1202 1203
}

1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
#if HAVE_SASL
static int qemudClientReadSASL(struct qemud_server *server,
                               struct qemud_client *client) {
    int got, want;

    /* We're doing a SSF data read, so now its times to ensure
     * future writes are under SSF too.
     *
     * cf remoteSASLCheckSSF in remote.c
     */
    client->saslSSF |= QEMUD_SASL_SSF_WRITE;

    /* Need to read some more data off the wire */
    if (client->saslDecoded == NULL) {
        char encoded[8192];
        int encodedLen = sizeof(encoded);
        encodedLen = qemudClientReadBuf(server, client, encoded, encodedLen);

        if (encodedLen < 0)
            return -1;

        sasl_decode(client->saslconn, encoded, encodedLen,
                    &client->saslDecoded, &client->saslDecodedLength);

        client->saslDecodedOffset = 0;
    }

    /* Some buffered decoded data to return now */
    got = client->saslDecodedLength - client->saslDecodedOffset;
    want = client->bufferLength - client->bufferOffset;

    if (want > got)
        want = got;

    memcpy(client->buffer + client->bufferOffset,
           client->saslDecoded + client->saslDecodedOffset, want);
    client->saslDecodedOffset += want;
    client->bufferOffset += want;

    if (client->saslDecodedOffset == client->saslDecodedLength) {
        client->saslDecoded = NULL;
        client->saslDecodedOffset = client->saslDecodedLength = 0;
    }

    return 0;
}
#endif

static int qemudClientRead(struct qemud_server *server,
                           struct qemud_client *client) {
#if HAVE_SASL
    if (client->saslSSF & QEMUD_SASL_SSF_READ)
        return qemudClientReadSASL(server, client);
    else
#endif
        return qemudClientReadPlain(server, client);
}


D
Daniel P. Berrange 已提交
1263 1264
static void qemudDispatchClientRead(struct qemud_server *server, struct qemud_client *client) {

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

1267 1268 1269
    switch (client->mode) {
    case QEMUD_MODE_RX_HEADER: {
        XDR x;
1270
        unsigned int len;
1271 1272 1273 1274 1275 1276 1277 1278 1279

        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);

1280 1281 1282
        if (!xdr_u_int(&x, &len)) {
            xdr_destroy (&x);
            qemudDebug("Failed to decode packet length");
D
Daniel P. Berrange 已提交
1283 1284 1285
            qemudDispatchClientFailure(server, client);
            return;
        }
1286
        xdr_destroy (&x);
1287

1288 1289
        if (len > REMOTE_MESSAGE_MAX) {
            qemudDebug("Packet length %u too large", len);
1290 1291
            qemudDispatchClientFailure(server, client);
            return;
D
Daniel P. Berrange 已提交
1292
        }
1293

1294 1295 1296 1297
        /* Length include length of the length field itself, so
         * check minimum size requirements */
        if (len <= REMOTE_MESSAGE_HEADER_XDR_LEN) {
            qemudDebug("Packet length %u too small", len);
1298 1299 1300 1301 1302
            qemudDispatchClientFailure(server, client);
            return;
        }

        client->mode = QEMUD_MODE_RX_PAYLOAD;
1303 1304
        client->bufferLength = len - REMOTE_MESSAGE_HEADER_XDR_LEN;
        client->bufferOffset = 0;
1305

D
Daniel P. Berrange 已提交
1306 1307 1308 1309 1310
        if (qemudRegisterClientEvent(server, client, 1) < 0) {
            qemudDispatchClientFailure(server, client);
            return;
        }

1311
        /* Fall through */
D
Daniel P. Berrange 已提交
1312 1313
    }

1314 1315 1316 1317 1318 1319 1320
    case QEMUD_MODE_RX_PAYLOAD: {
        if (qemudClientRead(server, client) < 0)
            return; /* Error, or blocking */

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

1321 1322
        remoteDispatchClientRequest (server, client);
        if (qemudRegisterClientEvent(server, client, 1) < 0)
1323 1324 1325 1326 1327 1328 1329 1330 1331
            qemudDispatchClientFailure(server, client);

        break;
    }

    case QEMUD_MODE_TLS_HANDSHAKE: {
        int ret;

        /* Continue the handshake. */
1332
        ret = gnutls_handshake (client->tlssession);
1333 1334 1335 1336
        if (ret == 0) {
            /* Finished.  Next step is to check the certificate. */
            if (remoteCheckAccess (client) == -1)
                qemudDispatchClientFailure (server, client);
1337
            else if (qemudRegisterClientEvent (server, client, 1) < 0)
D
Daniel P. Berrange 已提交
1338
                qemudDispatchClientFailure (server, client);
1339
        } else if (ret != GNUTLS_E_AGAIN && ret != GNUTLS_E_INTERRUPTED) {
1340
            qemudLog (QEMUD_ERR, _("TLS handshake failed: %s"),
1341 1342
                      gnutls_strerror (ret));
            qemudDispatchClientFailure (server, client);
D
Daniel P. Berrange 已提交
1343 1344 1345 1346
        } else {
            if (qemudRegisterClientEvent (server ,client, 1) < 0)
                qemudDispatchClientFailure (server, client);
        }
1347 1348 1349 1350 1351 1352 1353

        break;
    }

    default:
        qemudDebug("Got unexpected data read while in %d mode", client->mode);
        qemudDispatchClientFailure(server, client);
D
Daniel P. Berrange 已提交
1354 1355 1356 1357
    }
}


1358 1359 1360 1361 1362
static int qemudClientWriteBuf(struct qemud_server *server,
                               struct qemud_client *client,
                               const char *data, int len) {
    int ret;
    if (!client->tlssession) {
1363 1364
        if ((ret = write(client->fd, data, len)) == -1) {
            if (errno != EAGAIN) {
1365
                qemudLog (QEMUD_ERR, _("write: %s"), strerror (errno));
1366 1367 1368 1369 1370
                qemudDispatchClientFailure(server, client);
            }
            return -1;
        }
    } else {
1371
        ret = gnutls_record_send (client->tlssession, data, len);
D
Daniel P. Berrange 已提交
1372 1373
        if (qemudRegisterClientEvent (server, client, 1) < 0)
            qemudDispatchClientFailure (server, client);
1374
        else if (ret < 0) {
1375
            if (ret != GNUTLS_E_INTERRUPTED && ret != GNUTLS_E_AGAIN) {
1376
                qemudLog (QEMUD_ERR, _("gnutls_record_send: %s"),
1377 1378 1379 1380 1381
                          gnutls_strerror (ret));
                qemudDispatchClientFailure (server, client);
            }
            return -1;
        }
D
Daniel P. Berrange 已提交
1382
    }
1383 1384
    return ret;
}
1385

1386 1387 1388 1389 1390 1391 1392 1393

static int qemudClientWritePlain(struct qemud_server *server,
                                 struct qemud_client *client) {
    int ret = qemudClientWriteBuf(server, client,
                                  client->buffer + client->bufferOffset,
                                  client->bufferLength - client->bufferOffset);
    if (ret < 0)
        return -1;
1394 1395
    client->bufferOffset += ret;
    return 0;
D
Daniel P. Berrange 已提交
1396 1397 1398
}


1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448
#if HAVE_SASL
static int qemudClientWriteSASL(struct qemud_server *server,
                                struct qemud_client *client) {
    int ret;

    /* Not got any pending encoded data, so we need to encode raw stuff */
    if (client->saslEncoded == NULL) {
        int err;
        err = sasl_encode(client->saslconn,
                          client->buffer + client->bufferOffset,
                          client->bufferLength - client->bufferOffset,
                          &client->saslEncoded,
                          &client->saslEncodedLength);

        client->saslEncodedOffset = 0;
    }

    /* Send some of the encoded stuff out on the wire */
    ret = qemudClientWriteBuf(server, client,
                              client->saslEncoded + client->saslEncodedOffset,
                              client->saslEncodedLength - client->saslEncodedOffset);

    if (ret < 0)
        return -1;

    /* Note how much we sent */
    client->saslEncodedOffset += ret;

    /* Sent all encoded, so update raw buffer to indicate completion */
    if (client->saslEncodedOffset == client->saslEncodedLength) {
        client->saslEncoded = NULL;
        client->saslEncodedOffset = client->saslEncodedLength = 0;
        client->bufferOffset = client->bufferLength;
    }

    return 0;
}
#endif

static int qemudClientWrite(struct qemud_server *server,
                            struct qemud_client *client) {
#if HAVE_SASL
    if (client->saslSSF & QEMUD_SASL_SSF_WRITE)
        return qemudClientWriteSASL(server, client);
    else
#endif
        return qemudClientWritePlain(server, client);
}


D
Daniel P. Berrange 已提交
1449
static void qemudDispatchClientWrite(struct qemud_server *server, struct qemud_client *client) {
1450 1451 1452 1453 1454 1455 1456 1457
    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;
1458
            client->bufferLength = REMOTE_MESSAGE_HEADER_XDR_LEN;
1459
            client->bufferOffset = 0;
D
Daniel P. Berrange 已提交
1460 1461 1462

            if (qemudRegisterClientEvent (server, client, 1) < 0)
                qemudDispatchClientFailure (server, client);
1463 1464 1465 1466 1467 1468 1469 1470 1471
        }
        /* Still writing */
        break;
    }

    case QEMUD_MODE_TLS_HANDSHAKE: {
        int ret;

        /* Continue the handshake. */
1472
        ret = gnutls_handshake (client->tlssession);
1473 1474 1475 1476
        if (ret == 0) {
            /* Finished.  Next step is to check the certificate. */
            if (remoteCheckAccess (client) == -1)
                qemudDispatchClientFailure (server, client);
1477
            else if (qemudRegisterClientEvent (server, client, 1))
D
Daniel P. Berrange 已提交
1478
                qemudDispatchClientFailure (server, client);
1479
        } else if (ret != GNUTLS_E_AGAIN && ret != GNUTLS_E_INTERRUPTED) {
1480
            qemudLog (QEMUD_ERR, _("TLS handshake failed: %s"),
1481 1482
                      gnutls_strerror (ret));
            qemudDispatchClientFailure (server, client);
D
Daniel P. Berrange 已提交
1483 1484 1485 1486
        } else {
            if (qemudRegisterClientEvent (server, client, 1))
                qemudDispatchClientFailure (server, client);
        }
1487 1488 1489 1490 1491 1492 1493

        break;
    }

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

D
Daniel P. Berrange 已提交
1497 1498 1499 1500

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

D
Daniel P. Berrange 已提交
1502
    while (client) {
D
Daniel P. Berrange 已提交
1503 1504 1505 1506 1507
        if (client->fd == fd)
            break;

        client = client->next;
    }
1508

D
Daniel P. Berrange 已提交
1509 1510
    if (!client)
        return;
1511

D
Daniel P. Berrange 已提交
1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522
    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) {
1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544
    int mode;
    switch (client->mode) {
    case QEMUD_MODE_TLS_HANDSHAKE:
        if (gnutls_record_get_direction (client->tlssession) == 0)
            mode = POLLIN;
        else
            mode = POLLOUT;
        break;

    case QEMUD_MODE_RX_HEADER:
    case QEMUD_MODE_RX_PAYLOAD:
        mode = POLLIN;
        break;

    case QEMUD_MODE_TX_PACKET:
        mode = POLLOUT;
        break;

    default:
        return -1;
    }

D
Daniel P. Berrange 已提交
1545
    if (removeFirst)
1546
        if (virEventRemoveHandleImpl(client->fd) < 0)
D
Daniel P. Berrange 已提交
1547 1548
            return -1;

1549 1550 1551 1552
    if (virEventAddHandleImpl(client->fd,
                              mode | POLLERR | POLLHUP,
                              qemudDispatchClientEvent,
                              server) < 0)
D
Daniel P. Berrange 已提交
1553 1554 1555 1556 1557 1558 1559 1560 1561
            return -1;

    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 已提交
1562
    while (sock) {
D
Daniel P. Berrange 已提交
1563 1564 1565 1566
        if (sock->fd == fd)
            break;

        sock = sock->next;
D
Daniel P. Berrange 已提交
1567
    }
D
Daniel P. Berrange 已提交
1568

D
Daniel P. Berrange 已提交
1569 1570 1571 1572 1573 1574 1575 1576
    if (!sock)
        return;

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


1577
static int qemudOneLoop(void) {
1578
    sig_atomic_t errors;
D
Daniel P. Berrange 已提交
1579

D
Daniel P. Berrange 已提交
1580
    if (virEventRunOnce() < 0)
D
Daniel P. Berrange 已提交
1581 1582
        return -1;

1583 1584 1585 1586 1587
    /* Check for any signal handling errors and log them. */
    errors = sig_errors;
    if (errors) {
        sig_errors -= errors;
        qemudLog (QEMUD_ERR,
1588
                  _("Signal handler reported %d errors: last error: %s"),
1589 1590 1591 1592
                  errors, strerror (sig_lasterrno));
        return -1;
    }

D
Daniel P. Berrange 已提交
1593 1594 1595
    return 0;
}

1596 1597 1598 1599 1600 1601 1602 1603 1604
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;
    }
}

1605
static int qemudRunLoop(struct qemud_server *server) {
1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619
    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 已提交
1620

1621 1622 1623 1624 1625 1626 1627 1628
        /* 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 已提交
1629

1630 1631 1632 1633 1634
        if (server->shutdown)
            return 0;
    }

    return -1;
D
Daniel P. Berrange 已提交
1635 1636 1637
}

static void qemudCleanup(struct qemud_server *server) {
1638 1639
    struct qemud_socket *sock;

1640
    close(server->sigread);
1641 1642

    sock = server->sockets;
D
Daniel P. Berrange 已提交
1643
    while (sock) {
1644
        struct qemud_socket *next = sock->next;
D
Daniel P. Berrange 已提交
1645
        close(sock->fd);
1646 1647
        free(sock);
        sock = next;
D
Daniel P. Berrange 已提交
1648
    }
1649

1650
#ifdef HAVE_SASL
1651 1652 1653
    if (server->saslUsernameWhitelist) {
        char **list = server->saslUsernameWhitelist;
        while (*list) {
1654
            free(*list);
1655 1656 1657
            list++;
        }
    }
1658
#endif
1659

1660
    virStateCleanup();
1661

D
Daniel P. Berrange 已提交
1662 1663 1664
    free(server);
}

1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683
/* Allocate an array of malloc'd strings from the config file, filename
 * (used only in diagnostics), using handle "conf".  Upon error, return -1
 * and free any allocated memory.  Otherwise, save the array in *list_arg
 * and return 0.
 */
static int
remoteConfigGetStringList(virConfPtr conf, const char *key, char ***list_arg,
                          const char *filename)
{
    char **list;
    virConfValuePtr p = virConfGetValue (conf, key);
    if (!p)
        return 0;

    switch (p->type) {
    case VIR_CONF_STRING:
        list = malloc (2 * sizeof (*list));
        if (list == NULL) {
            qemudLog (QEMUD_ERR,
1684
                      _("failed to allocate memory for %s config list"), key);
1685 1686 1687 1688 1689 1690
            return -1;
        }
        list[0] = strdup (p->str);
        list[1] = NULL;
        if (list[0] == NULL) {
            qemudLog (QEMUD_ERR,
1691
                      _("failed to allocate memory for %s config list value"),
1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705
                      key);
            free (list);
            return -1;
        }
        break;

    case VIR_CONF_LIST: {
        int i, len = 0;
        virConfValuePtr pp;
        for (pp = p->list; pp; pp = pp->next)
            len++;
        list = calloc (1+len, sizeof (*list));
        if (list == NULL) {
            qemudLog (QEMUD_ERR,
1706
                      _("failed to allocate memory for %s config list"), key);
1707 1708 1709 1710
            return -1;
        }
        for (i = 0, pp = p->list; pp; ++i, pp = pp->next) {
            if (pp->type != VIR_CONF_STRING) {
1711 1712
                qemudLog (QEMUD_ERR, _("remoteReadConfigFile: %s: %s:"
                          " must be a string or list of strings\n"),
1713 1714 1715 1716 1717 1718 1719 1720 1721 1722
                          filename, key);
                free (list);
                return -1;
            }
            list[i] = strdup (pp->str);
            if (list[i] == NULL) {
                int j;
                for (j = 0 ; j < i ; j++)
                    free (list[j]);
                free (list);
1723 1724
                qemudLog (QEMUD_ERR, _("failed to allocate memory"
                                       " for %s config list value"), key);
1725 1726 1727 1728 1729 1730 1731 1732 1733
                return -1;
            }

        }
        list[i] = NULL;
        break;
    }

    default:
1734 1735
        qemudLog (QEMUD_ERR, _("remoteReadConfigFile: %s: %s:"
                               " must be a string or list of strings\n"),
1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750
                  filename, key);
        return -1;
    }

    *list_arg = list;
    return 0;
}

/* A helper function used by each of the following macros.  */
static int
checkType (virConfValuePtr p, const char *filename,
           const char *key, virConfType required_type)
{
    if (p->type != required_type) {
        qemudLog (QEMUD_ERR,
1751 1752
                  _("remoteReadConfigFile: %s: %s: invalid type:"
                    " got %s; expected %s\n"), filename, key,
1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771
                  virConfTypeName (p->type),
                  virConfTypeName (required_type));
        return -1;
    }
    return 0;
}

/* If there is no config data for the key, #var_name, then do nothing.
   If there is valid data of type VIR_CONF_STRING, and strdup succeeds,
   store the result in var_name.  Otherwise, (i.e. invalid type, or strdup
   failure), give a diagnostic and "goto" the cleanup-and-fail label.  */
#define GET_CONF_STR(conf, filename, var_name)                          \
    do {                                                                \
        virConfValuePtr p = virConfGetValue (conf, #var_name);          \
        if (p) {                                                        \
            if (checkType (p, filename, #var_name, VIR_CONF_STRING) < 0) \
                goto free_and_fail;                                     \
            (var_name) = strdup (p->str);                               \
            if ((var_name) == NULL) {                                   \
1772
                qemudLog (QEMUD_ERR, _("remoteReadConfigFile: %s\n"),   \
1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789
                          strerror (errno));                            \
                goto free_and_fail;                                     \
            }                                                           \
        }                                                               \
    } while (0)

/* Like GET_CONF_STR, but for integral values.  */
#define GET_CONF_INT(conf, filename, var_name)                          \
    do {                                                                \
        virConfValuePtr p = virConfGetValue (conf, #var_name);          \
        if (p) {                                                        \
            if (checkType (p, filename, #var_name, VIR_CONF_LONG) < 0)  \
                goto free_and_fail;                                     \
            (var_name) = p->l;                                          \
        }                                                               \
    } while (0)

1790 1791 1792 1793 1794 1795 1796 1797

static int remoteConfigGetAuth(virConfPtr conf, const char *key, int *auth, const char *filename) {
    virConfValuePtr p;

    p = virConfGetValue (conf, key);
    if (!p)
        return 0;

1798
    if (checkType (p, filename, key, VIR_CONF_STRING) < 0)
1799 1800 1801 1802 1803 1804 1805 1806 1807 1808
        return -1;

    if (!p->str)
        return 0;

    if (STREQ(p->str, "none")) {
        *auth = REMOTE_AUTH_NONE;
#if HAVE_SASL
    } else if (STREQ(p->str, "sasl")) {
        *auth = REMOTE_AUTH_SASL;
1809 1810 1811 1812
#endif
#if HAVE_POLKIT
    } else if (STREQ(p->str, "polkit")) {
        *auth = REMOTE_AUTH_POLKIT;
1813 1814
#endif
    } else {
1815 1816 1817
        qemudLog (QEMUD_ERR,
                  _("remoteReadConfigFile: %s: %s: unsupported auth %s\n"),
                  filename, key, p->str);
1818 1819 1820 1821 1822 1823
        return -1;
    }

    return 0;
}

1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844
#ifdef HAVE_SASL
static inline int
remoteReadSaslAllowedUsernameList (virConfPtr conf,
                                   struct qemud_server *server,
                                   const char *filename)
{
    return
        remoteConfigGetStringList (conf, "sasl_allowed_username_list",
                                   &server->saslUsernameWhitelist, filename);
}
#else
static inline int
remoteReadSaslAllowedUsernameList (virConfPtr conf ATTRIBUTE_UNUSED,
                                   struct qemud_server *server ATTRIBUTE_UNUSED,
                                   const char *filename ATTRIBUTE_UNUSED)
{
    return 0;
}
#endif


1845 1846 1847 1848
/* Read the config file if it exists.
 * Only used in the remote case, hence the name.
 */
static int
1849
remoteReadConfigFile (struct qemud_server *server, const char *filename)
1850 1851 1852
{
    virConfPtr conf;

1853 1854 1855 1856 1857 1858
    /* The following variable names must match the corresponding
       configuration strings.  */
    char *unix_sock_ro_perms = NULL;
    char *unix_sock_rw_perms = NULL;
    char *unix_sock_group = NULL;

1859 1860 1861 1862 1863 1864 1865 1866
    /* 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;

1867 1868
    GET_CONF_INT (conf, filename, listen_tcp);
    GET_CONF_INT (conf, filename, listen_tls);
1869 1870
    GET_CONF_STR (conf, filename, tls_port);
    GET_CONF_STR (conf, filename, tcp_port);
1871

1872 1873
    if (remoteConfigGetAuth(conf, "auth_unix_rw", &auth_unix_rw, filename) < 0)
        return -1;
1874 1875 1876 1877 1878 1879 1880
#if HAVE_POLKIT
    /* Change default perms to be wide-open if PolicyKit is enabled.
     * Admin can always override in config file
     */
    if (auth_unix_rw == REMOTE_AUTH_POLKIT)
        unix_sock_rw_mask = 0777;
#endif
1881 1882 1883 1884 1885 1886 1887
    if (remoteConfigGetAuth(conf, "auth_unix_ro", &auth_unix_ro, filename) < 0)
        return -1;
    if (remoteConfigGetAuth(conf, "auth_tcp", &auth_tcp, filename) < 0)
        return -1;
    if (remoteConfigGetAuth(conf, "auth_tls", &auth_tls, filename) < 0)
        return -1;

1888 1889
    GET_CONF_STR (conf, filename, unix_sock_group);
    if (unix_sock_group) {
1890
        if (getuid() != 0) {
1891 1892
            qemudLog (QEMUD_WARN,
                      _("Cannot set group when not running as root"));
1893
        } else {
1894
            struct group *grp = getgrnam(unix_sock_group);
1895
            if (!grp) {
1896
                qemudLog (QEMUD_ERR, _("Failed to lookup group '%s'"),
1897 1898
                          unix_sock_group);
                goto free_and_fail;
1899 1900 1901
            }
            unix_sock_gid = grp->gr_gid;
        }
1902 1903
        free (unix_sock_group);
        unix_sock_group = NULL;
1904 1905
    }

1906 1907
    GET_CONF_STR (conf, filename, unix_sock_ro_perms);
    if (unix_sock_ro_perms) {
1908
        if (virStrToLong_i (unix_sock_ro_perms, NULL, 8, &unix_sock_ro_mask) != 0) {
1909
            qemudLog (QEMUD_ERR, _("Failed to parse mode '%s'"),
1910 1911
                      unix_sock_ro_perms);
            goto free_and_fail;
1912
        }
1913 1914
        free (unix_sock_ro_perms);
        unix_sock_ro_perms = NULL;
1915 1916
    }

1917 1918
    GET_CONF_STR (conf, filename, unix_sock_rw_perms);
    if (unix_sock_rw_perms) {
1919
        if (virStrToLong_i (unix_sock_rw_perms, NULL, 8, &unix_sock_rw_mask) != 0) {
1920
            qemudLog (QEMUD_ERR, _("Failed to parse mode '%s'"),
1921 1922
                      unix_sock_rw_perms);
            goto free_and_fail;
1923
        }
1924 1925
        free (unix_sock_rw_perms);
        unix_sock_rw_perms = NULL;
1926 1927
    }

1928 1929
    GET_CONF_INT (conf, filename, mdns_adv);
    GET_CONF_STR (conf, filename, mdns_name);
1930

1931
    GET_CONF_INT (conf, filename, tls_no_verify_certificate);
1932

1933 1934 1935 1936
    GET_CONF_STR (conf, filename, key_file);
    GET_CONF_STR (conf, filename, cert_file);
    GET_CONF_STR (conf, filename, ca_file);
    GET_CONF_STR (conf, filename, crl_file);
1937

1938 1939 1940
    if (remoteConfigGetStringList (conf, "tls_allowed_dn_list",
                                   &tls_allowed_dn_list, filename) < 0)
        goto free_and_fail;
1941

1942
    if (remoteReadSaslAllowedUsernameList (conf, server, filename) < 0)
1943
        goto free_and_fail;
1944

1945 1946
    virConfFree (conf);
    return 0;
1947

1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970
 free_and_fail:
    virConfFree (conf);
    free (mdns_name);
    mdns_name = NULL;
    free (unix_sock_ro_perms);
    free (unix_sock_rw_perms);
    free (unix_sock_group);

    /* Don't bother trying to free tcp_port, tls_port, key_file, cert_file,
       ca_file, or crl_file, since they are initialized to non-malloc'd
       strings.  Besides, these are static variables, and callers are
       unlikely to call this function more than once, so there wouldn't
       even be a real leak.  */

    if (tls_allowed_dn_list) {
        int i;
        for (i = 0; tls_allowed_dn_list[i]; i++)
            free (tls_allowed_dn_list[i]);
        free (tls_allowed_dn_list);
        tls_allowed_dn_list = NULL;
    }

    return -1;
1971 1972
}

1973 1974 1975 1976 1977
/* Print command-line usage. */
static void
usage (const char *argv0)
{
    fprintf (stderr,
1978 1979 1980 1981 1982 1983 1984
             "\n\
Usage:\n\
  %s [options]\n\
\n\
Options:\n\
  -v | --verbose         Verbose messages.\n\
  -d | --daemon          Run as a daemon & write PID file.\n\
1985 1986
  -l | --listen          Listen for TCP/IP connections.\n\
  -t | --timeout <secs>  Exit after timeout period.\n\
1987
  -f | --config <file>   Configuration file.\n\
1988 1989
  -p | --pid-file <file> Change name of PID file.\n\
\n\
1990
libvirt management daemon:\n\
1991 1992 1993
\n\
  Default paths:\n\
\n\
1994
    Configuration file (unless overridden by -c):\n\
1995 1996
      " SYSCONF_DIR "/libvirt/libvirtd.conf\n\
\n\
1997
    Sockets (as root):\n\
1998 1999
      " LOCAL_STATE_DIR "/run/libvirt/libvirt-sock\n\
      " LOCAL_STATE_DIR "/run/libvirt/libvirt-sock-ro\n\
2000 2001 2002
\n\
    Sockets (as non-root):\n\
      $HOME/.libvirt/libvirt-sock (in UNIX abstract namespace)\n\
2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015
\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",
             argv0,
             REMOTE_PID_FILE[0] != '\0'
               ? REMOTE_PID_FILE
               : "(disabled in ./configure)");
2016 2017
}

D
Daniel P. Berrange 已提交
2018 2019 2020
#define MAX_LISTEN 5
int main(int argc, char **argv) {
    struct qemud_server *server;
2021 2022
    struct sigaction sig_action;
    int sigpipe[2];
2023 2024
    const char *pid_file = NULL;
    const char *remote_config_file = SYSCONF_DIR "/libvirt/libvirtd.conf";
2025
    int ret = 1;
D
Daniel P. Berrange 已提交
2026 2027 2028 2029

    struct option opts[] = {
        { "verbose", no_argument, &verbose, 1},
        { "daemon", no_argument, &godaemon, 1},
2030
        { "listen", no_argument, &ipsock, 1},
2031
        { "config", required_argument, NULL, 'f'},
2032 2033 2034
        { "timeout", required_argument, NULL, 't'},
        { "pid-file", required_argument, NULL, 'p'},
        { "help", no_argument, NULL, '?' },
D
Daniel P. Berrange 已提交
2035 2036 2037 2038 2039 2040 2041 2042
        {0, 0, 0, 0}
    };

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

2043
        c = getopt_long(argc, argv, "ldf:p:t:v", opts, &optidx);
D
Daniel P. Berrange 已提交
2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058

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

        switch (c) {
        case 0:
            /* Got one of the flags */
            break;
        case 'v':
            verbose = 1;
            break;
        case 'd':
            godaemon = 1;
            break;
2059 2060
        case 'l':
            ipsock = 1;
D
Daniel P. Berrange 已提交
2061 2062 2063
            break;

        case 't':
2064
            if (virStrToLong_i(optarg, &tmp, 10, &timeout) != 0
2065 2066 2067
                || timeout <= 0
                /* Ensure that we can multiply by 1000 without overflowing.  */
                || timeout > INT_MAX / 1000)
D
Daniel P. Berrange 已提交
2068 2069
                timeout = -1;
            break;
2070 2071

        case 'p':
2072 2073 2074 2075 2076
            pid_file = optarg;
            break;

        case 'f':
            remote_config_file = optarg;
2077 2078
            break;

D
Daniel P. Berrange 已提交
2079
        case '?':
2080
            usage (argv[0]);
D
Daniel P. Berrange 已提交
2081 2082 2083
            return 2;

        default:
2084 2085 2086
            fprintf (stderr, "libvirtd: internal error: unknown flag: %c\n",
                     c);
            exit (1);
D
Daniel P. Berrange 已提交
2087 2088 2089
        }
    }

2090 2091
    if (pipe(sigpipe) < 0 ||
        qemudSetNonBlock(sigpipe[0]) < 0 ||
2092 2093 2094
        qemudSetNonBlock(sigpipe[1]) < 0 ||
        qemudSetCloseExec(sigpipe[0]) < 0 ||
        qemudSetCloseExec(sigpipe[1]) < 0) {
2095
        qemudLog(QEMUD_ERR, _("Failed to create pipe: %s"),
2096
                 strerror(errno));
2097
        goto error1;
2098
    }
2099 2100
    sigwrite = sigpipe[1];

2101 2102 2103 2104
    if (!(server = qemudInitialize(sigpipe[0]))) {
        ret = 2;
        goto error1;
    }
2105

2106 2107 2108
    /* Read the config file (if it exists). */
    if (remoteReadConfigFile (server, remote_config_file) < 0)
        goto error1;
D
Daniel P. Berrange 已提交
2109 2110

    if (godaemon) {
2111 2112 2113
        int pid;
        openlog("libvirtd", 0, 0);
        pid = qemudGoDaemon();
2114
        if (pid < 0) {
2115
            qemudLog(QEMUD_ERR, _("Failed to fork as daemon: %s"),
2116
                     strerror(errno));
2117
            goto error1;
2118
        }
D
Daniel P. Berrange 已提交
2119
        if (pid > 0)
2120 2121
            goto out;

2122 2123
        /* Choose the name of the PID file. */
        if (!pid_file) {
2124 2125
            if (REMOTE_PID_FILE[0] != '\0')
                pid_file = REMOTE_PID_FILE;
2126 2127 2128
        }

        if (pid_file && qemudWritePidFile (pid_file) < 0)
2129
            goto error1;
D
Daniel P. Berrange 已提交
2130 2131
    }

2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143
    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);
    sigaction(SIGQUIT, &sig_action, NULL);
    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 已提交
2144

2145 2146 2147 2148
    if (virEventAddHandleImpl(sigpipe[0],
                              POLLIN,
                              qemudDispatchSignalEvent,
                              server) < 0) {
2149
        qemudLog(QEMUD_ERR, _("Failed to register callback for signal pipe"));
D
Daniel P. Berrange 已提交
2150 2151 2152 2153
        ret = 3;
        goto error2;
    }

2154 2155 2156 2157 2158
    if (!(server = qemudNetworkInit(server))) {
        ret = 2;
        goto error2;
    }

2159
    qemudRunLoop(server);
D
Daniel P. Berrange 已提交
2160 2161 2162

    qemudCleanup(server);

2163 2164
    close(sigwrite);

2165 2166 2167
    if (godaemon)
        closelog();

2168 2169 2170 2171
 out:
    ret = 0;

 error2:
2172 2173
    if (godaemon && pid_file)
        unlink (pid_file);
2174 2175 2176

 error1:
    return ret;
D
Daniel P. Berrange 已提交
2177 2178 2179 2180 2181 2182 2183 2184 2185 2186
}

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