libvirtd.c 93.6 KB
Newer Older
D
Daniel P. Berrange 已提交
1
/*
D
Daniel P. Berrange 已提交
2
 * libvirtd.c: daemon start of day, guest process & i/o management
D
Daniel P. Berrange 已提交
3
 *
4
 * Copyright (C) 2006-2010 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
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <limits.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/poll.h>
#include <netinet/in.h>
36
#include <netinet/tcp.h>
D
Daniel P. Berrange 已提交
37 38 39 40
#include <netdb.h>
#include <stdlib.h>
#include <pwd.h>
#include <stdio.h>
41 42
#include <stdarg.h>
#include <syslog.h>
D
Daniel P. Berrange 已提交
43 44 45
#include <string.h>
#include <errno.h>
#include <getopt.h>
46
#include <fnmatch.h>
47
#include <grp.h>
48
#include <signal.h>
J
Jim Meyering 已提交
49
#include <netdb.h>
50

51
#include "libvirt_internal.h"
52
#include "virterror_internal.h"
53

54 55
#define VIR_FROM_THIS VIR_FROM_QEMU

D
Daniel P. Berrange 已提交
56
#include "libvirtd.h"
57 58
#include "dispatch.h"

59
#include "util.h"
60
#include "uuid.h"
61
#include "remote_driver.h"
62
#include "conf.h"
D
Daniel P. Berrange 已提交
63
#include "event.h"
64
#include "memory.h"
65
#include "stream.h"
66
#include "hooks.h"
67
#ifdef HAVE_AVAHI
68
# include "mdns.h"
69
#endif
D
Daniel P. Berrange 已提交
70

71
#ifdef WITH_DRIVER_MODULES
72
# include "driver.h"
73
#else
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
# ifdef WITH_QEMU
#  include "qemu/qemu_driver.h"
# endif
# ifdef WITH_LXC
#  include "lxc/lxc_driver.h"
# endif
# ifdef WITH_UML
#  include "uml/uml_driver.h"
# endif
# ifdef WITH_ONE
#  include "opennebula/one_driver.h"
# endif
# ifdef WITH_NETWORK
#  include "network/bridge_driver.h"
# endif
# ifdef WITH_NETCF
#  include "interface/netcf_driver.h"
# endif
# ifdef WITH_STORAGE_DIR
#  include "storage/storage_driver.h"
# endif
# ifdef WITH_NODE_DEVICES
#  include "node_device/node_device_driver.h"
# endif
# ifdef WITH_SECRETS
#  include "secret/secret_driver.h"
# endif
101 102 103
# ifdef WITH_NWFILTER
#  include "nwfilter/nwfilter_driver.h"
# endif
104
#endif
105 106


J
John Levon 已提交
107
#ifdef __sun
108 109
# include <ucred.h>
# include <priv.h>
J
John Levon 已提交
110

111 112 113
# ifndef PRIV_VIRT_MANAGE
#  define PRIV_VIRT_MANAGE ((const char *)"virt_manage")
# endif
J
John Levon 已提交
114

115 116 117
# ifndef PRIV_XVM_CONTROL
#  define PRIV_XVM_CONTROL ((const char *)"xvm_control")
# endif
J
John Levon 已提交
118

119 120
# define PU_RESETGROUPS          0x0001  /* Remove supplemental groups */
# define PU_CLEARLIMITSET        0x0008  /* L=0 */
J
John Levon 已提交
121 122 123

extern int __init_daemon_priv(int, uid_t, gid_t, ...);

124
# define SYSTEM_UID 60
J
John Levon 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137

static gid_t unix_sock_gid = 60; /* Not used */
static int unix_sock_rw_mask = 0666;
static int unix_sock_ro_mask = 0666;

#else

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

#endif /* __sun */

138 139
static int godaemon = 0;        /* -d: Be a daemon */
static int verbose = 0;         /* -v: Verbose mode */
140
static int timeout = -1;        /* -t: Shutdown timeout */
141
static int sigwrite = -1;       /* Signal handler pipe */
142
static int ipsock = 0;          /* -l  Listen for TCP/IP */
143

144
/* Defaults for configuration file elements */
145 146
static int listen_tls = 1;
static int listen_tcp = 0;
147
static char *listen_addr  = (char *) LIBVIRTD_LISTEN_ADDR;
148 149
static char *tls_port = (char *) LIBVIRTD_TLS_PORT;
static char *tcp_port = (char *) LIBVIRTD_TCP_PORT;
150

151 152
static char *unix_sock_dir = NULL;

153 154 155 156
#if HAVE_POLKIT
static int auth_unix_rw = REMOTE_AUTH_POLKIT;
static int auth_unix_ro = REMOTE_AUTH_POLKIT;
#else
157 158
static int auth_unix_rw = REMOTE_AUTH_NONE;
static int auth_unix_ro = REMOTE_AUTH_NONE;
159
#endif /* HAVE_POLKIT */
160 161 162 163 164 165 166
#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;

167
static int mdns_adv = 1;
168
static char *mdns_name = NULL;
169

170
static int tls_no_verify_certificate = 0;
171
static char **tls_allowed_dn_list = NULL;
172

173 174 175 176
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 *) "";
177 178 179 180

static gnutls_certificate_credentials_t x509_cred;
static gnutls_dh_params_t dh_params;

181 182 183 184
static int min_workers = 5;
static int max_workers = 20;
static int max_clients = 20;

185 186 187 188 189
/* Total number of 'in-process' RPC calls allowed across all clients */
static int max_requests = 20;
/* Total number of 'in-process' RPC calls allowed by a single client*/
static int max_client_requests = 5;

190
#define DH_BITS 1024
191

192 193
static sig_atomic_t sig_errors = 0;
static int sig_lasterrno = 0;
194
static const char *argv0;
195

196 197 198 199 200 201 202 203 204
enum {
    VIR_DAEMON_ERR_NONE = 0,
    VIR_DAEMON_ERR_PIDFILE,
    VIR_DAEMON_ERR_RUNDIR,
    VIR_DAEMON_ERR_INIT,
    VIR_DAEMON_ERR_SIGNAL,
    VIR_DAEMON_ERR_PRIVS,
    VIR_DAEMON_ERR_NETWORK,
    VIR_DAEMON_ERR_CONFIG,
205
    VIR_DAEMON_ERR_HOOKS,
206 207 208 209 210 211 212 213 214 215 216 217 218

    VIR_DAEMON_ERR_LAST
};

VIR_ENUM_DECL(virDaemonErr)
VIR_ENUM_IMPL(virDaemonErr, VIR_DAEMON_ERR_LAST,
              "Initialization successful",
              "Unable to obtain pidfile",
              "Unable to create rundir",
              "Unable to initialize libvirt",
              "Unable to setup signal handlers",
              "Unable to drop privileges",
              "Unable to initialize network sockets",
219 220
              "Unable to load configuration file",
              "Unable to look for hook scripts")
221

222 223
static void sig_handler(int sig, siginfo_t * siginfo,
                        void* context ATTRIBUTE_UNUSED) {
224
    int origerrno;
225
    int r;
226

227 228
    /* set the sig num in the struct */
    siginfo->si_signo = sig;
229 230

    origerrno = errno;
231
    r = safewrite(sigwrite, siginfo, sizeof(*siginfo));
232 233 234 235
    if (r == -1) {
        sig_errors++;
        sig_lasterrno = errno;
    }
236
    errno = origerrno;
D
Daniel P. Berrange 已提交
237
}
238

239 240
static void qemudDispatchClientEvent(int watch, int fd, int events, void *opaque);
static void qemudDispatchServerEvent(int watch, int fd, int events, void *opaque);
241
static int qemudStartWorker(struct qemud_server *server, struct qemud_worker *worker);
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257

void
qemudClientMessageQueuePush(struct qemud_client_message **queue,
                            struct qemud_client_message *msg)
{
    struct qemud_client_message *tmp = *queue;

    if (tmp) {
        while (tmp->next)
            tmp = tmp->next;
        tmp->next = msg;
    } else {
        *queue = msg;
    }
}

258
struct qemud_client_message *
259 260 261 262 263 264 265 266 267 268 269
qemudClientMessageQueueServe(struct qemud_client_message **queue)
{
    struct qemud_client_message *tmp = *queue;

    if (tmp) {
        *queue = tmp->next;
        tmp->next = NULL;
    }

    return tmp;
}
D
Daniel P. Berrange 已提交
270

271 272 273 274 275
static int
remoteCheckCertFile(const char *type, const char *file)
{
    struct stat sb;
    if (stat(file, &sb) < 0) {
276 277 278
        char ebuf[1024];
        VIR_ERROR(_("Cannot access %s '%s': %s"),
                  type, file, virStrerror(errno, ebuf, sizeof ebuf));
279 280 281 282 283
        return -1;
    }
    return 0;
}

284 285 286 287 288 289 290 291 292 293
static int
remoteInitializeGnuTLS (void)
{
    int err;

    /* Initialise GnuTLS. */
    gnutls_global_init ();

    err = gnutls_certificate_allocate_credentials (&x509_cred);
    if (err) {
294
        VIR_ERROR(_("gnutls_certificate_allocate_credentials: %s"),
295 296 297 298 299
                  gnutls_strerror (err));
        return -1;
    }

    if (ca_file && ca_file[0] != '\0') {
300 301 302
        if (remoteCheckCertFile("CA certificate", ca_file) < 0)
            return -1;

303 304 305 306
        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) {
307
            VIR_ERROR(_("gnutls_certificate_set_x509_trust_file: %s"),
308 309 310 311 312 313
                      gnutls_strerror (err));
            return -1;
        }
    }

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

317
        DEBUG("loading CRL from %s", crl_file);
318 319 320
        err = gnutls_certificate_set_x509_crl_file (x509_cred, crl_file,
                                                    GNUTLS_X509_FMT_PEM);
        if (err < 0) {
321
            VIR_ERROR(_("gnutls_certificate_set_x509_crl_file: %s"),
322 323 324 325 326 327
                      gnutls_strerror (err));
            return -1;
        }
    }

    if (cert_file && cert_file[0] != '\0' && key_file && key_file[0] != '\0') {
328 329 330 331
        if (remoteCheckCertFile("server certificate", cert_file) < 0)
            return -1;
        if (remoteCheckCertFile("server key", key_file) < 0)
            return -1;
332
        DEBUG("loading cert and key from %s and %s", cert_file, key_file);
333 334 335 336 337
        err =
            gnutls_certificate_set_x509_key_file (x509_cred,
                                                  cert_file, key_file,
                                                  GNUTLS_X509_FMT_PEM);
        if (err < 0) {
338
            VIR_ERROR(_("gnutls_certificate_set_x509_key_file: %s"),
339 340 341 342 343 344 345 346 347 348 349 350
                      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) {
351
        VIR_ERROR(_("gnutls_dh_params_init: %s"), gnutls_strerror (err));
352 353 354 355
        return -1;
    }
    err = gnutls_dh_params_generate2 (dh_params, DH_BITS);
    if (err < 0) {
356
        VIR_ERROR(_("gnutls_dh_params_generate2: %s"), gnutls_strerror (err));
357 358 359 360 361 362 363 364
        return -1;
    }

    gnutls_certificate_set_dh_params (x509_cred, dh_params);

    return 0;
}

365
static void
366 367
qemudDispatchSignalEvent(int watch ATTRIBUTE_UNUSED,
                         int fd ATTRIBUTE_UNUSED,
368 369
                         int events ATTRIBUTE_UNUSED,
                         void *opaque) {
D
Daniel P. Berrange 已提交
370
    struct qemud_server *server = (struct qemud_server *)opaque;
371
    siginfo_t siginfo;
372

373
    virMutexLock(&server->lock);
374

375
    if (saferead(server->sigread, &siginfo, sizeof(siginfo)) != sizeof(siginfo)) {
376 377 378
        char ebuf[1024];
        VIR_ERROR(_("Failed to read from signal pipe: %s"),
                  virStrerror(errno, ebuf, sizeof ebuf));
379
        virMutexUnlock(&server->lock);
D
Daniel P. Berrange 已提交
380
        return;
381 382
    }

383
    switch (siginfo.si_signo) {
384
    case SIGHUP:
385
        VIR_INFO0(_("Reloading configuration on SIGHUP"));
386 387
        virHookCall(VIR_HOOK_DRIVER_DAEMON, "-",
                    VIR_HOOK_DAEMON_OP_RELOAD, SIGHUP, "SIGHUP", NULL);
388
        if (virStateReload() < 0)
389
            VIR_WARN0("Error while reloading drivers");
390

391 392 393
        break;

    case SIGINT:
394
    case SIGQUIT:
395
    case SIGTERM:
396
        VIR_WARN("Shutting down on signal %d", siginfo.si_signo);
397
        server->quitEventThread = 1;
398 399 400
        break;

    default:
401
        VIR_INFO(_("Received unexpected signal %d"), siginfo.si_signo);
402 403 404
        break;
    }

405
    virMutexUnlock(&server->lock);
406 407
}

408

409 410 411 412 413
static int daemonForkIntoBackground(void) {
    int statuspipe[2];
    if (pipe(statuspipe) < 0)
        return -1;

D
Daniel P. Berrange 已提交
414 415 416 417 418 419
    int pid = fork();
    switch (pid) {
    case 0:
        {
            int stdinfd = -1;
            int stdoutfd = -1;
420
            int nextpid;
D
Daniel P. Berrange 已提交
421

422 423
            close(statuspipe[0]);

424
            if ((stdinfd = open("/dev/null", O_RDONLY)) < 0)
D
Daniel P. Berrange 已提交
425
                goto cleanup;
426
            if ((stdoutfd = open("/dev/null", O_WRONLY)) < 0)
D
Daniel P. Berrange 已提交
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
                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:
447
                return statuspipe[1];
D
Daniel P. Berrange 已提交
448 449 450
            case -1:
                return -1;
            default:
451
                _exit(0);
D
Daniel P. Berrange 已提交
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
            }

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

        }

    case -1:
        return -1;

    default:
        {
468 469 470 471 472 473 474 475
            int got, exitstatus = 0;
            int ret;
            char status;

            close(statuspipe[1]);

            /* We wait to make sure the first child forked successfully */
            if ((got = waitpid(pid, &exitstatus, 0)) < 0 ||
D
Daniel P. Berrange 已提交
476
                got != pid ||
477
                exitstatus != 0) {
D
Daniel P. Berrange 已提交
478 479
                return -1;
            }
480 481 482 483 484 485 486 487

            /* Now block until the second child initializes successfully */
        again:
            ret = read(statuspipe[0], &status, 1);
            if (ret == -1 && errno == EINTR)
                goto again;

            if (ret == 1 && status != 0) {
488
                fprintf(stderr,
489 490
                        _("%s: error: %s. Check /var/log/messages or run without "
                          "--daemon for more info.\n"), argv0,
491
                        virDaemonErrTypeToString(status));
492 493
            }
            _exit(ret == 1 && status == 0 ? 0 : 1);
D
Daniel P. Berrange 已提交
494 495 496 497
        }
    }
}

498 499 500
static int qemudWritePidFile(const char *pidFile) {
    int fd;
    FILE *fh;
501
    char ebuf[1024];
502 503 504 505 506

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

    if ((fd = open(pidFile, O_WRONLY|O_CREAT|O_EXCL, 0644)) < 0) {
507
        VIR_ERROR(_("Failed to open pid file '%s' : %s"),
508
                  pidFile, virStrerror(errno, ebuf, sizeof ebuf));
509 510 511 512
        return -1;
    }

    if (!(fh = fdopen(fd, "w"))) {
513
        VIR_ERROR(_("Failed to fdopen pid file '%s' : %s"),
514
                  pidFile, virStrerror(errno, ebuf, sizeof ebuf));
515 516 517 518 519
        close(fd);
        return -1;
    }

    if (fprintf(fh, "%lu\n", (unsigned long)getpid()) < 0) {
520 521
        VIR_ERROR(_("%s: Failed to write to pid file '%s' : %s"),
                  argv0, pidFile, virStrerror(errno, ebuf, sizeof ebuf));
522
        fclose(fh);
523 524 525 526
        return -1;
    }

    if (fclose(fh) == EOF) {
527 528
        VIR_ERROR(_("%s: Failed to close pid file '%s' : %s"),
                  argv0, pidFile, virStrerror(errno, ebuf, sizeof ebuf));
529 530 531 532 533 534
        return -1;
    }

    return 0;
}

D
Daniel P. Berrange 已提交
535
static int qemudListenUnix(struct qemud_server *server,
536
                           const char *path, int readonly, int auth) {
537
    struct qemud_socket *sock;
D
Daniel P. Berrange 已提交
538 539
    struct sockaddr_un addr;
    mode_t oldmask;
540
    gid_t oldgrp;
541
    char ebuf[1024];
D
Daniel P. Berrange 已提交
542

543
    if (VIR_ALLOC(sock) < 0) {
544
        VIR_ERROR0(_("Failed to allocate memory for struct qemud_socket"));
D
Daniel P. Berrange 已提交
545
        return -1;
546
    }
D
Daniel P. Berrange 已提交
547 548

    sock->readonly = readonly;
549
    sock->port = -1;
550
    sock->type = QEMUD_SOCK_TYPE_UNIX;
551
    sock->auth = auth;
D
Daniel P. Berrange 已提交
552

553
    if ((sock->fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
554
        VIR_ERROR(_("Failed to create socket: %s"),
555
                  virStrerror(errno, ebuf, sizeof ebuf));
D
Daniel P. Berrange 已提交
556
        goto cleanup;
557
    }
D
Daniel P. Berrange 已提交
558

559 560
    if (virSetCloseExec(sock->fd) < 0 ||
        virSetNonBlock(sock->fd) < 0)
D
Daniel P. Berrange 已提交
561
        goto cleanup;
D
Daniel P. Berrange 已提交
562 563 564

    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
C
Chris Lalancette 已提交
565 566 567 568
    if (virStrcpyStatic(addr.sun_path, path) == NULL) {
        VIR_ERROR(_("Path %s too long for unix socket"), path);
        goto cleanup;
    }
D
Daniel P. Berrange 已提交
569 570 571
    if (addr.sun_path[0] == '@')
        addr.sun_path[0] = '\0';

572
    oldgrp = getgid();
573
    oldmask = umask(readonly ? ~unix_sock_ro_mask : ~unix_sock_rw_mask);
574 575 576 577
    if (server->privileged && setgid(unix_sock_gid)) {
        VIR_ERROR(_("Failed to set group ID to %d"), unix_sock_gid);
        goto cleanup;
    }
578

579
    if (bind(sock->fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
580
        VIR_ERROR(_("Failed to bind socket to '%s': %s"),
581
                  path, virStrerror(errno, ebuf, sizeof ebuf));
D
Daniel P. Berrange 已提交
582
        goto cleanup;
583
    }
D
Daniel P. Berrange 已提交
584
    umask(oldmask);
585 586 587 588
    if (server->privileged && setgid(oldgrp)) {
        VIR_ERROR(_("Failed to restore group ID to %d"), oldgrp);
        goto cleanup;
    }
D
Daniel P. Berrange 已提交
589

590
    if (listen(sock->fd, 30) < 0) {
591
        VIR_ERROR(_("Failed to listen for connections on '%s': %s"),
592
                  path, virStrerror(errno, ebuf, sizeof ebuf));
D
Daniel P. Berrange 已提交
593 594 595 596 597 598 599
        goto cleanup;
    }

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

D
Daniel P. Berrange 已提交
600
    return 0;
D
Daniel P. Berrange 已提交
601 602

 cleanup:
603
    if (sock->fd >= 0)
D
Daniel P. Berrange 已提交
604
        close(sock->fd);
605
    VIR_FREE(sock);
D
Daniel P. Berrange 已提交
606
    return -1;
D
Daniel P. Berrange 已提交
607 608
}

609 610
// See: http://people.redhat.com/drepper/userapi-ipv6.html
static int
611
remoteMakeSockets (int *fds, int max_fds, int *nfds_r, const char *node, const char *service)
612 613 614 615 616 617 618
{
    struct addrinfo *ai;
    struct addrinfo hints;
    memset (&hints, 0, sizeof hints);
    hints.ai_flags = AI_PASSIVE | AI_ADDRCONFIG;
    hints.ai_socktype = SOCK_STREAM;

619
    int e = getaddrinfo (node, service, &hints, &ai);
620
    if (e != 0) {
621
        VIR_ERROR(_("getaddrinfo: %s"), gai_strerror (e));
622 623 624 625 626
        return -1;
    }

    struct addrinfo *runp = ai;
    while (runp && *nfds_r < max_fds) {
627
        char ebuf[1024];
628 629 630
        fds[*nfds_r] = socket (runp->ai_family, runp->ai_socktype,
                               runp->ai_protocol);
        if (fds[*nfds_r] == -1) {
631
            VIR_ERROR(_("socket: %s"), virStrerror (errno, ebuf, sizeof ebuf));
632 633 634 635 636 637
            return -1;
        }

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

638 639 640 641 642 643 644 645 646 647 648 649 650 651 652
#ifdef IPV6_V6ONLY
        if (runp->ai_family == PF_INET6) {
            int on = 1;
            /*
             * Normally on Linux an INET6 socket will bind to the INET4
             * address too. If getaddrinfo returns results with INET4
             * first though, this will result in INET6 binding failing.
             * We can trivially cope with multiple server sockets, so
             * we force it to only listen on IPv6
             */
            setsockopt(fds[*nfds_r], IPPROTO_IPV6,IPV6_V6ONLY,
                       (void*)&on, sizeof on);
        }
#endif

653 654
        if (bind (fds[*nfds_r], runp->ai_addr, runp->ai_addrlen) == -1) {
            if (errno != EADDRINUSE) {
655
                VIR_ERROR(_("bind: %s"), virStrerror (errno, ebuf, sizeof ebuf));
656 657 658
                return -1;
            }
            close (fds[*nfds_r]);
659
        } else {
660 661 662 663
            ++*nfds_r;
        }
        runp = runp->ai_next;
    }
664

665 666 667 668 669 670 671 672 673
    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,
674
                 const char *addr,
675
                 const char *port,
676
                 int type,
677
                 int auth)
678 679 680
{
    int fds[2];
    int nfds = 0;
681
    int i;
682 683
    struct qemud_socket *sock;

684
    if (remoteMakeSockets (fds, 2, &nfds, addr, port) == -1)
685 686 687
        return -1;

    for (i = 0; i < nfds; ++i) {
688 689 690 691 692 693 694 695
        union {
            struct sockaddr_storage sa_stor;
            struct sockaddr sa;
            struct sockaddr_in sa_in;
#ifdef AF_INET6
            struct sockaddr_in6 sa_in6;
#endif
        } s;
696
        char ebuf[1024];
697
        socklen_t salen = sizeof(s);
698

699
        if (VIR_ALLOC(sock) < 0) {
700 701
            VIR_ERROR(_("remoteListenTCP: calloc: %s"),
                      virStrerror (errno, ebuf, sizeof ebuf));
702
            goto cleanup;
703 704 705 706 707 708 709 710
        }

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

        sock->fd = fds[i];
711
        sock->type = type;
712
        sock->auth = auth;
D
Daniel P. Berrange 已提交
713

714
        if (getsockname(sock->fd, &s.sa, &salen) < 0)
715
            goto cleanup;
716

717 718
        if (s.sa.sa_family == AF_INET) {
            sock->port = htons(s.sa_in.sin_port);
719
#ifdef AF_INET6
720 721
        } else if (s.sa.sa_family == AF_INET6)
            sock->port = htons(s.sa_in6.sin6_port);
722
#endif
723 724 725
        else
            sock->port = -1;

726 727
        if (virSetCloseExec(sock->fd) < 0 ||
            virSetNonBlock(sock->fd) < 0)
728
            goto cleanup;
729 730

        if (listen (sock->fd, 30) < 0) {
731 732
            VIR_ERROR(_("remoteListenTCP: listen: %s"),
                      virStrerror (errno, ebuf, sizeof ebuf));
733
            goto cleanup;
734
        }
735 736 737
    }

    return 0;
738 739 740

cleanup:
    for (i = 0; i < nfds; ++i)
C
Cole Robinson 已提交
741
        close(fds[i]);
742
    return -1;
743 744 745 746 747
}

static int qemudInitPaths(struct qemud_server *server,
                          char *sockname,
                          char *roSockname,
J
John Levon 已提交
748 749
                          int maxlen)
{
750 751 752 753 754
    char *sock_dir;
    char *dir_prefix = NULL;
    int ret = -1;
    char *sock_dir_prefix = NULL;

D
Daniel P. Berrange 已提交
755
    if (unix_sock_dir) {
756
        sock_dir = unix_sock_dir;
D
Daniel P. Berrange 已提交
757 758 759 760 761 762 763
        /* Change the group ownership of /var/run/libvirt to unix_sock_gid */
        if (server->privileged) {
            if (chown(unix_sock_dir, -1, unix_sock_gid) < 0)
                VIR_ERROR(_("Failed to change group ownership of %s"),
                          unix_sock_dir);
        }
    } else {
764
        sock_dir = sockname;
765
        if (server->privileged) {
766 767
            dir_prefix = strdup (LOCAL_STATE_DIR);
            if (dir_prefix == NULL) {
768
                virReportOOMError();
769 770 771 772 773 774
                goto cleanup;
            }
            if (snprintf (sock_dir, maxlen, "%s/run/libvirt",
                          dir_prefix) >= maxlen)
                goto snprintf_error;
        } else {
775
            uid_t uid = geteuid();
776
            dir_prefix = virGetUserDirectory(uid);
777 778 779 780
            if (dir_prefix == NULL) {
                /* Do not diagnose here; virGetUserDirectory does that.  */
                goto snprintf_error;
            }
781

782 783 784 785
            if (snprintf(sock_dir, maxlen, "%s/.libvirt", dir_prefix) >= maxlen)
                goto snprintf_error;
        }
    }
786

787 788
    sock_dir_prefix = strdup (sock_dir);
    if (!sock_dir_prefix) {
789
        virReportOOMError();
790 791
        goto cleanup;
    }
D
Daniel P. Berrange 已提交
792

793
    if (server->privileged) {
794 795 796 797
        if (snprintf (sockname, maxlen, "%s/libvirt-sock",
                      sock_dir_prefix) >= maxlen
            || (snprintf (roSockname, maxlen, "%s/libvirt-sock-ro",
                          sock_dir_prefix) >= maxlen))
798
            goto snprintf_error;
799
        unlink(sockname);
800
        unlink(roSockname);
D
Daniel P. Berrange 已提交
801
    } else {
802 803
        if (snprintf(sockname, maxlen, "@%s/libvirt-sock",
                     sock_dir_prefix) >= maxlen)
804
            goto snprintf_error;
805
    }
806

807 808
    if (server->privileged) {
        if (!(server->logDir = strdup (LOCAL_STATE_DIR "/log/libvirt")))
809
            virReportOOMError();
810 811
    } else {
        if (virAsprintf(&server->logDir, "%s/.libvirt/log", dir_prefix) < 0)
812
            virReportOOMError();
813
    }
814

815
    if (server->logDir == NULL)
816
        goto cleanup;
817 818

    ret = 0;
819 820

 snprintf_error:
821
    if (ret)
822
        VIR_ERROR0(_("Resulting path too long for buffer in qemudInitPaths()"));
823 824

 cleanup:
825 826
    VIR_FREE(dir_prefix);
    VIR_FREE(sock_dir_prefix);
827
    return ret;
D
Daniel P. Berrange 已提交
828 829
}

830 831 832 833 834 835
static void virshErrorHandler(void *opaque ATTRIBUTE_UNUSED, virErrorPtr err ATTRIBUTE_UNUSED)
{
    /* Don't do anything, since logging infrastructure already
     * took care of reporting the error */
}

836
static struct qemud_server *qemudInitialize(void) {
D
Daniel P. Berrange 已提交
837 838
    struct qemud_server *server;

839
    if (VIR_ALLOC(server) < 0) {
840
        VIR_ERROR0(_("Failed to allocate struct qemud_server"));
D
Daniel P. Berrange 已提交
841
        return NULL;
842
    }
D
Daniel P. Berrange 已提交
843

844 845 846
    server->privileged = geteuid() == 0 ? 1 : 0;
    server->sigread = server->sigwrite = -1;

847
    if (virMutexInit(&server->lock) < 0) {
848
        VIR_ERROR0(_("cannot initialize mutex"));
849
        VIR_FREE(server);
850
        return NULL;
851 852
    }
    if (virCondInit(&server->job) < 0) {
853
        VIR_ERROR0(_("cannot initialize condition variable"));
854
        virMutexDestroy(&server->lock);
855
        VIR_FREE(server);
856
        return NULL;
857 858
    }

859
    if (virEventInit() < 0) {
860
        VIR_ERROR0(_("Failed to initialize event system"));
861 862 863
        virMutexDestroy(&server->lock);
        if (virCondDestroy(&server->job) < 0)
        {}
864 865 866 867
        VIR_FREE(server);
        return NULL;
    }

868 869 870 871 872 873 874
    /*
     * Note that the order is important: the first ones have a higher
     * priority when calling virStateInitialize. We must register
     * the network, storage and nodedev drivers before any domain
     * drivers, since their resources must be auto-started before
     * any domains can be auto-started.
     */
875 876 877
#ifdef WITH_DRIVER_MODULES
    /* We don't care if any of these fail, because the whole point
     * is to allow users to only install modules they want to use.
D
Dan Kenigsberg 已提交
878
     * If they try to open a connection for a module that
879 880 881 882
     * is not loaded they'll get a suitable error at that point
     */
    virDriverLoadModule("network");
    virDriverLoadModule("storage");
883
    virDriverLoadModule("nodedev");
884
    virDriverLoadModule("secret");
885 886 887
    virDriverLoadModule("qemu");
    virDriverLoadModule("lxc");
    virDriverLoadModule("uml");
D
Daniel Veillard 已提交
888
    virDriverLoadModule("one");
889
    virDriverLoadModule("nwfilter");
890
#else
891
# ifdef WITH_NETWORK
892
    networkRegister();
893 894
# endif
# ifdef WITH_NETCF
895
    interfaceRegister();
896 897
# endif
# ifdef WITH_STORAGE_DIR
898
    storageRegister();
899 900
# endif
# if defined(WITH_NODE_DEVICES)
901
    nodedevRegister();
902 903
# endif
# ifdef WITH_SECRETS
904
    secretRegister();
905
# endif
906 907 908
# ifdef WITH_NWFILTER
    nwfilterRegister();
# endif
909
# ifdef WITH_QEMU
910
    qemuRegister();
911 912
# endif
# ifdef WITH_LXC
913
    lxcRegister();
914 915
# endif
# ifdef WITH_UML
916
    umlRegister();
917 918
# endif
# ifdef WITH_ONE
D
Daniel Veillard 已提交
919
    oneRegister();
920
# endif
921 922
#endif

923 924 925 926 927 928
    virEventRegisterImpl(virEventAddHandleImpl,
                         virEventUpdateHandleImpl,
                         virEventRemoveHandleImpl,
                         virEventAddTimeoutImpl,
                         virEventUpdateTimeoutImpl,
                         virEventRemoveTimeoutImpl);
929

930 931 932
    return server;
}

933
static int qemudNetworkInit(struct qemud_server *server) {
934 935
    char sockname[PATH_MAX];
    char roSockname[PATH_MAX];
936
#if HAVE_SASL
937 938 939 940 941 942 943 944 945
    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)
946
        goto cleanup;
947 948 949 950 951 952 953 954 955 956

    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) {
957 958
            VIR_ERROR(_("Failed to initialize SASL authentication %s"),
                      sasl_errstring(err, NULL, NULL));
959 960
            goto cleanup;
        }
961 962 963
    }
#endif

964
#if HAVE_POLKIT0
965 966 967
    if (auth_unix_rw == REMOTE_AUTH_POLKIT ||
        auth_unix_ro == REMOTE_AUTH_POLKIT) {
        DBusError derr;
968 969 970 971

        dbus_connection_set_change_sigpipe(FALSE);
        dbus_threads_init_default();

972 973 974
        dbus_error_init(&derr);
        server->sysbus = dbus_bus_get(DBUS_BUS_SYSTEM, &derr);
        if (!(server->sysbus)) {
975 976
            VIR_ERROR(_("Failed to connect to system bus for PolicyKit auth: %s"),
                      derr.message);
977 978 979
            dbus_error_free(&derr);
            goto cleanup;
        }
980
        dbus_connection_set_exit_on_disconnect(server->sysbus, FALSE);
981 982 983
    }
#endif

984
    if (ipsock) {
985
        if (listen_tcp && remoteListenTCP (server, listen_addr, tcp_port, QEMUD_SOCK_TYPE_TCP, auth_tcp) < 0)
986 987 988 989 990 991
            goto cleanup;

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

992
            if (remoteListenTCP (server, listen_addr, tls_port, QEMUD_SOCK_TYPE_TLS, auth_tls) < 0)
993 994
                goto cleanup;
        }
D
Daniel P. Berrange 已提交
995 996
    }

997
#ifdef HAVE_AVAHI
998
    if (server->privileged && mdns_adv) {
999
        struct libvirtd_mdns_group *group;
1000
        struct qemud_socket *sock;
1001
        int port = 0;
1002
        int ret;
1003 1004 1005 1006

        server->mdns = libvirtd_mdns_new();

        if (!mdns_name) {
1007 1008
            char *groupname, *localhost, *tmp;

1009 1010
            localhost = virGetHostname(NULL);
            if (localhost == NULL)
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
                /* we couldn't resolve the hostname; assume that we are
                 * running in disconnected operation, and report a less
                 * useful Avahi string
                 */
                ret = virAsprintf(&groupname, "Virtualization Host");
            else {
                /* Extract the host part of the potentially FQDN */
                if ((tmp = strchr(localhost, '.')))
                    *tmp = '\0';
                ret = virAsprintf(&groupname, "Virtualization Host %s",
                                  localhost);
            }
            VIR_FREE(localhost);
            if (ret < 0) {
                virReportOOMError();
1026
                goto cleanup;
1027
            }
1028
            group = libvirtd_mdns_add_group(server->mdns, groupname);
1029
            VIR_FREE(groupname);
1030 1031 1032 1033
        } else {
            group = libvirtd_mdns_add_group(server->mdns, mdns_name);
        }

1034
        /*
1035 1036 1037 1038 1039 1040
         * 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) {
1041
            if (sock->port != -1 && sock->type == QEMUD_SOCK_TYPE_TLS) {
1042 1043 1044 1045 1046
                port = sock->port;
                break;
            }
            sock = sock->next;
        }
1047

1048 1049 1050 1051 1052 1053 1054 1055 1056
        /*
         * 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

1057
    return 0;
D
Daniel P. Berrange 已提交
1058 1059

 cleanup:
1060
    return -1;
D
Daniel P. Berrange 已提交
1061 1062
}

1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
static int qemudNetworkEnable(struct qemud_server *server) {
    struct qemud_socket *sock;

    sock = server->sockets;
    while (sock) {
        if ((sock->watch = virEventAddHandleImpl(sock->fd,
                                                 VIR_EVENT_HANDLE_READABLE |
                                                 VIR_EVENT_HANDLE_ERROR |
                                                 VIR_EVENT_HANDLE_HANGUP,
                                                 qemudDispatchServerEvent,
                                                 server, NULL)) < 0) {
            VIR_ERROR0(_("Failed to add server event callback"));
            return -1;
        }

        sock = sock->next;
    }
    return 0;
}
1082

1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
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:
1110
  VIR_ERROR(_("remoteInitializeTLSSession: %s"),
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120
            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;
1121
    char **wildcards;
1122 1123 1124 1125
    int err;

    err = gnutls_x509_crt_get_dn (cert, name, &namesize);
    if (err != 0) {
1126
        VIR_ERROR(_("remoteCheckDN: gnutls_x509_cert_get_dn: %s"),
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
                  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++;
    }

    /* Print the client's DN. */
1143
    DEBUG(_("remoteCheckDN: failed: client DN is %s"), name);
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157

    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){
1158
        VIR_ERROR(_("remoteCheckCertificate: verify failed: %s"),
1159 1160 1161 1162 1163 1164
                  gnutls_strerror (ret));
        return -1;
    }

    if (status != 0) {
        if (status & GNUTLS_CERT_INVALID)
1165 1166
            VIR_ERROR0(_("remoteCheckCertificate: "
                         "the client certificate is not trusted."));
1167 1168

        if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
1169 1170
            VIR_ERROR0(_("remoteCheckCertificate: the client "
                         "certificate has unknown issuer."));
1171 1172

        if (status & GNUTLS_CERT_REVOKED)
1173 1174
            VIR_ERROR0(_("remoteCheckCertificate: "
                         "the client certificate has been revoked."));
1175

1176
#ifndef GNUTLS_1_0_COMPAT
1177
        if (status & GNUTLS_CERT_INSECURE_ALGORITHM)
1178 1179
            VIR_ERROR0(_("remoteCheckCertificate: the client certificate"
                         " uses an insecure algorithm."));
1180
#endif
1181 1182 1183 1184 1185

        return -1;
    }

    if (gnutls_certificate_type_get (session) != GNUTLS_CRT_X509) {
1186
        VIR_ERROR0(_("remoteCheckCertificate: certificate is not X.509"));
1187 1188 1189 1190
        return -1;
    }

    if (!(certs = gnutls_certificate_get_peers(session, &nCerts))) {
1191
        VIR_ERROR0(_("remoteCheckCertificate: no peers"));
1192 1193 1194 1195 1196 1197 1198 1199 1200
        return -1;
    }

    now = time (NULL);

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

        if (gnutls_x509_crt_init (&cert) < 0) {
1201
            VIR_ERROR0(_("remoteCheckCertificate: gnutls_x509_crt_init failed"));
1202 1203 1204 1205 1206 1207 1208
            return -1;
        }

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

1210
        if (gnutls_x509_crt_get_expiration_time (cert) < now) {
1211 1212
            VIR_ERROR0(_("remoteCheckCertificate: "
                         "the client certificate has expired"));
1213 1214 1215
            gnutls_x509_crt_deinit (cert);
            return -1;
        }
1216

1217
        if (gnutls_x509_crt_get_activation_time (cert) > now) {
1218 1219
            VIR_ERROR0(_("remoteCheckCertificate: the client "
                         "certificate is not yet activated"));
1220 1221 1222 1223 1224 1225 1226
            gnutls_x509_crt_deinit (cert);
            return -1;
        }

        if (i == 0) {
            if (!remoteCheckDN (cert)) {
                /* This is the most common error: make it informative. */
1227
                VIR_ERROR0(_("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."));
1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240
                gnutls_x509_crt_deinit (cert);
                return -1;
            }
        }
    }

    return 0;
}

/* Check the client's access. */
static int
remoteCheckAccess (struct qemud_client *client)
{
1241 1242
    struct qemud_client_message *confirm;

1243
    /* Verify client certificate. */
1244
    if (remoteCheckCertificate (client->tlssession) == -1) {
1245 1246
        VIR_ERROR0(_("remoteCheckCertificate: "
                     "failed to verify client's certificate"));
1247
        if (!tls_no_verify_certificate) return -1;
1248 1249
        else VIR_INFO0(_("remoteCheckCertificate: tls_no_verify_certificate "
                          "is set so the bad certificate is ignored"));
1250 1251
    }

1252 1253 1254 1255 1256 1257 1258 1259 1260
    if (client->tx) {
        VIR_INFO("%s",
                 _("client had unexpected data pending tx after access check"));
        return -1;
    }

    if (VIR_ALLOC(confirm) < 0)
        return -1;

1261 1262 1263 1264
    /* 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).
     */
1265 1266 1267 1268 1269 1270
    confirm->async = 1;
    confirm->bufferLength = 1;
    confirm->bufferOffset = 0;
    confirm->buffer[0] = '\1';

    client->tx = confirm;
1271 1272
    return 0;
}
D
Daniel P. Berrange 已提交
1273

1274 1275
#if HAVE_POLKIT
int qemudGetSocketIdentity(int fd, uid_t *uid, pid_t *pid) {
1276
# ifdef SO_PEERCRED
1277 1278 1279 1280
    struct ucred cr;
    unsigned int cr_len = sizeof (cr);

    if (getsockopt (fd, SOL_SOCKET, SO_PEERCRED, &cr, &cr_len) < 0) {
1281
        char ebuf[1024];
1282
        VIR_ERROR(_("Failed to verify client credentials: %s"),
1283
                  virStrerror(errno, ebuf, sizeof ebuf));
1284 1285 1286 1287 1288
        return -1;
    }

    *pid = cr.pid;
    *uid = cr.uid;
1289
# else
1290
    /* XXX Many more OS support UNIX socket credentials we could port to. See dbus ....*/
1291 1292
#  error "UNIX socket credentials not supported/implemented on this platform yet..."
# endif
1293 1294 1295 1296
    return 0;
}
#endif

1297

D
Daniel P. Berrange 已提交
1298 1299 1300
static int qemudDispatchServer(struct qemud_server *server, struct qemud_socket *sock) {
    int fd;
    struct sockaddr_storage addr;
1301
    socklen_t addrlen = (socklen_t) (sizeof addr);
D
Daniel P. Berrange 已提交
1302
    struct qemud_client *client;
1303
    int no_slow_start = 1;
1304
    int i;
D
Daniel P. Berrange 已提交
1305 1306

    if ((fd = accept(sock->fd, (struct sockaddr *)&addr, &addrlen)) < 0) {
1307
        char ebuf[1024];
D
Daniel P. Berrange 已提交
1308 1309
        if (errno == EAGAIN)
            return 0;
1310 1311
        VIR_ERROR(_("Failed to accept connection: %s"),
                  virStrerror(errno, ebuf, sizeof ebuf));
D
Daniel P. Berrange 已提交
1312 1313 1314
        return -1;
    }

1315
    if (server->nclients >= max_clients) {
1316
        VIR_ERROR(_("Too many active clients (%d), dropping connection"), max_clients);
1317 1318 1319 1320
        close(fd);
        return -1;
    }

1321
    if (VIR_REALLOC_N(server->clients, server->nclients+1) < 0) {
1322
        VIR_ERROR0(_("Out of memory allocating clients"));
1323 1324 1325 1326
        close(fd);
        return -1;
    }

J
John Levon 已提交
1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349
#ifdef __sun
    {
        ucred_t *ucred = NULL;
        const priv_set_t *privs;

        if (getpeerucred (fd, &ucred) == -1 ||
            (privs = ucred_getprivset (ucred, PRIV_EFFECTIVE)) == NULL) {
            if (ucred != NULL)
                ucred_free (ucred);
            close (fd);
            return -1;
        }

        if (!priv_ismember (privs, PRIV_VIRT_MANAGE)) {
            ucred_free (ucred);
            close (fd);
            return -1;
        }

        ucred_free (ucred);
    }
#endif /* __sun */

1350 1351 1352 1353
    /* Disable Nagle.  Unix sockets will ignore this. */
    setsockopt (fd, IPPROTO_TCP, TCP_NODELAY, (void *)&no_slow_start,
                sizeof no_slow_start);

1354 1355
    if (virSetCloseExec(fd) < 0 ||
        virSetNonBlock(fd) < 0) {
D
Daniel P. Berrange 已提交
1356 1357 1358 1359
        close(fd);
        return -1;
    }

1360
    if (VIR_ALLOC(client) < 0)
1361
        goto cleanup;
1362
    if (virMutexInit(&client->lock) < 0) {
1363
        VIR_ERROR0(_("cannot initialize mutex"));
1364
        VIR_FREE(client);
1365
        goto cleanup;
1366
    }
1367

1368
    client->magic = QEMUD_CLIENT_MAGIC;
D
Daniel P. Berrange 已提交
1369 1370
    client->fd = fd;
    client->readonly = sock->readonly;
1371
    client->type = sock->type;
1372
    client->auth = sock->auth;
1373 1374 1375
    memcpy (&client->addr, &addr, sizeof addr);
    client->addrlen = addrlen;

1376 1377 1378 1379
    for (i = 0 ; i < VIR_DOMAIN_EVENT_ID_LAST ; i++) {
        client->domainEventCallbackID[i] = -1;
    }

1380 1381 1382 1383 1384 1385
    /* Prepare one for packet receive */
    if (VIR_ALLOC(client->rx) < 0)
        goto cleanup;
    client->rx->bufferLength = REMOTE_MESSAGE_HEADER_XDR_LEN;


1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
#if HAVE_POLKIT
    /* Only do policy checks for non-root - allow root user
       through with no checks, as a fail-safe - root can easily
       change policykit policy anyway, so its pointless trying
       to restrict root */
    if (client->auth == REMOTE_AUTH_POLKIT) {
        uid_t uid;
        pid_t pid;

        if (qemudGetSocketIdentity(client->fd, &uid, &pid) < 0)
            goto cleanup;

1398
        /* Client is running as root, so disable auth */
1399
        if (uid == 0) {
1400
            VIR_INFO(_("Turn off polkit auth for privileged client %d"), pid);
1401 1402 1403 1404 1405
            client->auth = REMOTE_AUTH_NONE;
        }
    }
#endif

1406
    if (client->type != QEMUD_SOCK_TYPE_TLS) {
1407
        /* Plain socket, so prepare to read first message */
1408
        if (qemudRegisterClientEvent (server, client) < 0)
D
Daniel P. Berrange 已提交
1409
            goto cleanup;
1410 1411 1412
    } else {
        int ret;

1413 1414
        client->tlssession = remoteInitializeTLSSession ();
        if (client->tlssession == NULL)
D
Daniel P. Berrange 已提交
1415
            goto cleanup;
1416

1417
        gnutls_transport_set_ptr (client->tlssession,
1418 1419 1420
                                  (gnutls_transport_ptr_t) (long) fd);

        /* Begin the TLS handshake. */
1421
        ret = gnutls_handshake (client->tlssession);
1422
        if (ret == 0) {
1423 1424
            client->handshake = 0;

1425 1426
            /* Unlikely, but ...  Next step is to check the certificate. */
            if (remoteCheckAccess (client) == -1)
D
Daniel P. Berrange 已提交
1427 1428
                goto cleanup;

1429
            /* Handshake & cert check OK,  so prepare to read first message */
1430
            if (qemudRegisterClientEvent(server, client) < 0)
D
Daniel P. Berrange 已提交
1431
                goto cleanup;
1432
        } else if (ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN) {
1433 1434
            /* Most likely, need to do more handshake data */
            client->handshake = 1;
D
Daniel P. Berrange 已提交
1435

1436
            if (qemudRegisterClientEvent (server, client) < 0)
D
Daniel P. Berrange 已提交
1437
                goto cleanup;
1438
        } else {
1439
            VIR_ERROR(_("TLS handshake failed: %s"),
1440
                      gnutls_strerror (ret));
D
Daniel P. Berrange 已提交
1441
            goto cleanup;
1442 1443
        }
    }
D
Daniel P. Berrange 已提交
1444

1445
    server->clients[server->nclients++] = client;
D
Daniel P. Berrange 已提交
1446

1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459
    if (server->nclients > server->nactiveworkers &&
        server->nactiveworkers < server->nworkers) {
        for (i = 0 ; i < server->nworkers ; i++) {
            if (!server->workers[i].hasThread) {
                if (qemudStartWorker(server, &server->workers[i]) < 0)
                    return -1;
                server->nactiveworkers++;
                break;
            }
        }
    }


D
Daniel P. Berrange 已提交
1460
    return 0;
1461

D
Daniel P. Berrange 已提交
1462
 cleanup:
1463 1464
    if (client &&
        client->tlssession) gnutls_deinit (client->tlssession);
1465
    close (fd);
1466 1467
    if (client)
        VIR_FREE(client->rx);
1468
    VIR_FREE(client);
1469
    return -1;
D
Daniel P. Berrange 已提交
1470 1471 1472
}


1473 1474 1475 1476 1477 1478 1479
/*
 * You must hold lock for at least the client
 * We don't free stuff here, merely disconnect the client's
 * network socket & resources.
 * We keep the libvirt connection open until any async
 * jobs have finished, then clean it up elsehwere
 */
1480
void qemudDispatchClientFailure(struct qemud_client *client) {
1481 1482 1483 1484
    if (client->watch != -1) {
        virEventRemoveHandleImpl(client->watch);
        client->watch = -1;
    }
D
Daniel P. Berrange 已提交
1485

1486
    /* Deregister event delivery callback */
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
    if (client->conn) {
        int i;

        for (i = 0 ; i < VIR_DOMAIN_EVENT_ID_LAST ; i++) {
            if (client->domainEventCallbackID[i] != -1) {
                DEBUG("Deregistering to relay remote events %d", i);
                virConnectDomainEventDeregisterAny(client->conn,
                                                   client->domainEventCallbackID[i]);
            }
            client->domainEventCallbackID[i] = -1;
        }
1498 1499
    }

1500
#if HAVE_SASL
1501 1502 1503 1504
    if (client->saslconn) {
        sasl_dispose(&client->saslconn);
        client->saslconn = NULL;
    }
1505
    VIR_FREE(client->saslUsername);
1506
#endif
1507 1508 1509 1510 1511 1512 1513 1514
    if (client->tlssession) {
        gnutls_deinit (client->tlssession);
        client->tlssession = NULL;
    }
    if (client->fd != -1) {
        close(client->fd);
        client->fd = -1;
    }
1515 1516 1517 1518 1519 1520 1521 1522
}


/* Caller must hold server lock */
static struct qemud_client *qemudPendingJob(struct qemud_server *server)
{
    int i;
    for (i = 0 ; i < server->nclients ; i++) {
1523
        virMutexLock(&server->clients[i]->lock);
1524
        if (server->clients[i]->dx) {
1525 1526 1527
            /* Delibrately don't unlock client - caller wants the lock */
            return server->clients[i];
        }
1528
        virMutexUnlock(&server->clients[i]->lock);
1529 1530
    }
    return NULL;
D
Daniel P. Berrange 已提交
1531 1532
}

1533 1534
static void *qemudWorker(void *data)
{
1535 1536
    struct qemud_worker *worker = data;
    struct qemud_server *server = worker->server;
1537 1538

    while (1) {
1539
        struct qemud_client *client = NULL;
1540
        struct qemud_client_message *msg;
1541

1542
        virMutexLock(&server->lock);
1543 1544 1545
        while ((client = qemudPendingJob(server)) == NULL) {
            if (worker->quitRequest ||
                virCondWait(&server->job, &server->lock) < 0) {
1546 1547 1548 1549
                virMutexUnlock(&server->lock);
                return NULL;
            }
        }
1550
        if (worker->quitRequest) {
1551
            virMutexUnlock(&client->lock);
1552 1553 1554 1555
            virMutexUnlock(&server->lock);
            return NULL;
        }
        worker->processingCall = 1;
1556
        virMutexUnlock(&server->lock);
1557 1558 1559 1560

        /* We own a locked client now... */
        client->refs++;

1561
        /* Remove our message from dispatch queue while we use it */
1562
        msg = qemudClientMessageQueueServe(&client->dx);
1563 1564 1565

        /* This function drops the lock during dispatch,
         * and re-acquires it before returning */
1566
        if (remoteDispatchClientRequest (server, client, msg) < 0) {
1567
            VIR_FREE(msg);
1568 1569 1570 1571 1572
            qemudDispatchClientFailure(client);
            client->refs--;
            virMutexUnlock(&client->lock);
            continue;
        }
1573 1574

        client->refs--;
1575
        virMutexUnlock(&client->lock);
1576 1577 1578 1579

        virMutexLock(&server->lock);
        worker->processingCall = 0;
        virMutexUnlock(&server->lock);
1580 1581
    }
}
D
Daniel P. Berrange 已提交
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
static int qemudStartWorker(struct qemud_server *server,
                            struct qemud_worker *worker) {
    pthread_attr_t attr;
    pthread_attr_init(&attr);
    /* We want to join workers, so don't detach them */
    /*pthread_attr_setdetachstate(&attr, 1);*/

    if (worker->hasThread)
        return -1;

    worker->server = server;
    worker->hasThread = 1;
    worker->quitRequest = 0;
    worker->processingCall = 0;

    if (pthread_create(&worker->thread,
                       &attr,
                       qemudWorker,
                       worker) != 0) {
        worker->hasThread = 0;
        worker->server = NULL;
        return -1;
    }

    return 0;
}

D
Daniel P. Berrange 已提交
1610

1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623
/*
 * Read data into buffer using wire decoding (plain or TLS)
 *
 * Returns:
 *   -1 on error or EOF
 *    0 on EAGAIN
 *    n number of bytes
 */
static ssize_t qemudClientReadBuf(struct qemud_client *client,
                                  char *data, ssize_t len) {
    ssize_t ret;

    if (len < 0) {
1624 1625
        VIR_ERROR(_("unexpected negative length request %lld"),
                  (long long int) len);
1626 1627 1628
        qemudDispatchClientFailure(client);
        return -1;
    }
1629 1630 1631

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

1632
    if (!client->tlssession) {
1633
        char ebuf[1024];
1634 1635 1636 1637 1638 1639
        ret = read (client->fd, data, len);
        if (ret == -1 && (errno == EAGAIN ||
                          errno == EINTR))
            return 0;
        if (ret <= 0) {
            if (ret != 0)
1640 1641
                VIR_ERROR(_("read: %s"),
                          virStrerror (errno, ebuf, sizeof ebuf));
1642
            qemudDispatchClientFailure(client);
1643 1644 1645
            return -1;
        }
    } else {
1646
        ret = gnutls_record_recv (client->tlssession, data, len);
1647 1648 1649 1650 1651 1652 1653 1654 1655

        if (ret < 0 && (ret == GNUTLS_E_AGAIN ||
                        ret == GNUTLS_E_INTERRUPTED))
            return 0;
        if (ret <= 0) {
            if (ret != 0)
                VIR_ERROR(_("gnutls_record_recv: %s"),
                          gnutls_strerror (ret));
            qemudDispatchClientFailure(client);
1656 1657
            return -1;
        }
D
Daniel P. Berrange 已提交
1658
    }
1659

1660 1661 1662
    return ret;
}

1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680
/*
 * Read data into buffer without decoding
 *
 * Returns:
 *   -1 on error or EOF
 *    0 on EAGAIN
 *    n number of bytes
 */
static ssize_t qemudClientReadPlain(struct qemud_client *client) {
    ssize_t ret;
    ret = qemudClientReadBuf(client,
                             client->rx->buffer + client->rx->bufferOffset,
                             client->rx->bufferLength - client->rx->bufferOffset);
    if (ret <= 0)
        return ret; /* -1 error, 0 eagain */

    client->rx->bufferOffset += ret;
    return ret;
D
Daniel P. Berrange 已提交
1681 1682
}

1683
#if HAVE_SASL
1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
/*
 * Read data into buffer decoding with SASL
 *
 * Returns:
 *   -1 on error or EOF
 *    0 on EAGAIN
 *    n number of bytes
 */
static ssize_t qemudClientReadSASL(struct qemud_client *client) {
    ssize_t got, want;
1694 1695 1696 1697 1698 1699 1700 1701 1702 1703

    /* 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) {
1704
        int ret;
1705
        char encoded[8192];
1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717
        ssize_t encodedLen = sizeof(encoded);
        encodedLen = qemudClientReadBuf(client, encoded, encodedLen);

        if (encodedLen <= 0)
            return encodedLen;

        ret = sasl_decode(client->saslconn, encoded, encodedLen,
                          &client->saslDecoded, &client->saslDecodedLength);
        if (ret != SASL_OK) {
            VIR_ERROR(_("failed to decode SASL data %s"),
                      sasl_errstring(ret, NULL, NULL));
            qemudDispatchClientFailure(client);
1718
            return -1;
1719
        }
1720 1721 1722 1723 1724 1725

        client->saslDecodedOffset = 0;
    }

    /* Some buffered decoded data to return now */
    got = client->saslDecodedLength - client->saslDecodedOffset;
1726
    want = client->rx->bufferLength - client->rx->bufferOffset;
1727 1728 1729 1730

    if (want > got)
        want = got;

1731
    memcpy(client->rx->buffer + client->rx->bufferOffset,
1732 1733
           client->saslDecoded + client->saslDecodedOffset, want);
    client->saslDecodedOffset += want;
1734
    client->rx->bufferOffset += want;
1735 1736 1737 1738 1739 1740

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

1741
    return want;
1742 1743 1744
}
#endif

1745 1746 1747 1748 1749
/*
 * Read as much data off wire as possible till we fill our
 * buffer, or would block on I/O
 */
static ssize_t qemudClientRead(struct qemud_client *client) {
1750 1751
#if HAVE_SASL
    if (client->saslSSF & QEMUD_SASL_SSF_READ)
1752
        return qemudClientReadSASL(client);
1753 1754
    else
#endif
1755
        return qemudClientReadPlain(client);
1756 1757 1758
}


1759 1760 1761 1762 1763
/*
 * Read data until we get a complete message to process
 */
static void qemudDispatchClientRead(struct qemud_server *server,
                                    struct qemud_client *client) {
1764
    /*qemudDebug ("qemudDispatchClientRead: mode = %d", client->mode);*/
D
Daniel P. Berrange 已提交
1765

1766 1767 1768
readmore:
    if (qemudClientRead(client) < 0)
        return; /* Error */
1769

1770 1771
    if (client->rx->bufferOffset < client->rx->bufferLength)
        return; /* Still not read enough */
1772

1773 1774 1775 1776
    /* Either done with length word header */
    if (client->rx->bufferLength == REMOTE_MESSAGE_HEADER_XDR_LEN) {
        unsigned int len;
        XDR x;
1777

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

1780 1781
        if (!xdr_u_int(&x, &len)) {
            xdr_destroy (&x);
1782
            DEBUG0("Failed to decode packet length");
1783
            qemudDispatchClientFailure(client);
D
Daniel P. Berrange 已提交
1784 1785
            return;
        }
1786
        xdr_destroy (&x);
1787

1788 1789 1790
        if (len < REMOTE_MESSAGE_HEADER_XDR_LEN) {
            DEBUG("Packet length %u too small", len);
            qemudDispatchClientFailure(client);
1791
            return;
D
Daniel P. Berrange 已提交
1792
        }
1793

1794 1795 1796 1797 1798 1799
        /* Length includes the size of the length word itself */
        len -= REMOTE_MESSAGE_HEADER_XDR_LEN;

        if (len > REMOTE_MESSAGE_MAX) {
            DEBUG("Packet length %u too large", len);
            qemudDispatchClientFailure(client);
1800 1801 1802
            return;
        }

1803 1804
        /* Prepare to read rest of message */
        client->rx->bufferLength += len;
1805

1806
        qemudUpdateClientEvent(client);
D
Daniel P. Berrange 已提交
1807

1808 1809 1810 1811 1812
        /* Try and read payload immediately instead of going back
           into poll() because chances are the data is already
           waiting for us */
        goto readmore;
    } else {
1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825
        /* Grab the completed message */
        struct qemud_client_message *msg = qemudClientMessageQueueServe(&client->rx);
        struct qemud_client_filter *filter;

        /* Decode the header so we can use it for routing decisions */
        if (remoteDecodeClientMessageHeader(msg) < 0) {
            VIR_FREE(msg);
            qemudDispatchClientFailure(client);
        }

        /* Check if any filters match this message */
        filter = client->filters;
        while (filter) {
1826 1827 1828
            int ret;
            ret = (filter->query)(client, msg, filter->opaque);
            if (ret == 1) {
1829 1830
                msg = NULL;
                break;
1831 1832 1833 1834
            } else if (ret == -1) {
                VIR_FREE(msg);
                qemudDispatchClientFailure(client);
                return;
1835 1836 1837 1838
            }
            filter = filter->next;
        }

1839
        /* Move completed message to the end of the dispatch queue */
1840 1841
        if (msg)
            qemudClientMessageQueuePush(&client->dx, msg);
1842 1843 1844 1845 1846 1847
        client->nrequests++;

        /* Possibly need to create another receive buffer */
        if ((client->nrequests < max_client_requests &&
             VIR_ALLOC(client->rx) < 0)) {
            qemudDispatchClientFailure(client);
D
Daniel P. Berrange 已提交
1848
        } else {
1849 1850 1851
            if (client->rx)
                client->rx->bufferLength = REMOTE_MESSAGE_HEADER_XDR_LEN;

1852 1853 1854 1855
            qemudUpdateClientEvent(client);

            /* Tell one of the workers to get on with it... */
            virCondSignal(&server->job);
D
Daniel P. Berrange 已提交
1856
        }
D
Daniel P. Berrange 已提交
1857 1858 1859 1860
    }
}


1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873
/*
 * Send a chunk of data using wire encoding (plain or TLS)
 *
 * Returns:
 *   -1 on error
 *    0 on EAGAIN
 *    n number of bytes
 */
static ssize_t qemudClientWriteBuf(struct qemud_client *client,
                                   const char *data, ssize_t len) {
    ssize_t ret;

    if (len < 0) {
1874 1875
        VIR_ERROR(_("unexpected negative length request %lld"),
                  (long long int) len);
1876 1877 1878 1879
        qemudDispatchClientFailure(client);
        return -1;
    }

1880
    if (!client->tlssession) {
1881
        char ebuf[1024];
1882 1883 1884
        if ((ret = write(client->fd, data, len)) == -1) {
            if (errno == EAGAIN || errno == EINTR)
                return 0;
1885
            VIR_ERROR(_("write: %s"), virStrerror (errno, ebuf, sizeof ebuf));
1886
            qemudDispatchClientFailure(client);
1887 1888 1889
            return -1;
        }
    } else {
1890
        ret = gnutls_record_send (client->tlssession, data, len);
1891 1892 1893 1894 1895 1896 1897
        if (ret < 0) {
            if (ret == GNUTLS_E_INTERRUPTED ||
                ret == GNUTLS_E_AGAIN)
                return 0;

            VIR_ERROR(_("gnutls_record_send: %s"), gnutls_strerror (ret));
            qemudDispatchClientFailure(client);
1898 1899
            return -1;
        }
D
Daniel P. Berrange 已提交
1900
    }
1901 1902
    return ret;
}
1903

1904

1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920
/*
 * Send client->tx using no encoding
 *
 * Returns:
 *   -1 on error or EOF
 *    0 on EAGAIN
 *    n number of bytes
 */
static int qemudClientWritePlain(struct qemud_client *client) {
    int ret = qemudClientWriteBuf(client,
                                  client->tx->buffer + client->tx->bufferOffset,
                                  client->tx->bufferLength - client->tx->bufferOffset);
    if (ret <= 0)
        return ret; /* -1 error, 0 = egain */
    client->tx->bufferOffset += ret;
    return ret;
D
Daniel P. Berrange 已提交
1921 1922 1923
}


1924
#if HAVE_SASL
1925 1926 1927 1928 1929 1930 1931 1932 1933
/*
 * Send client->tx using SASL encoding
 *
 * Returns:
 *   -1 on error
 *    0 on EAGAIN
 *    n number of bytes
 */
static int qemudClientWriteSASL(struct qemud_client *client) {
1934 1935 1936 1937
    int ret;

    /* Not got any pending encoded data, so we need to encode raw stuff */
    if (client->saslEncoded == NULL) {
1938 1939 1940
        ret = sasl_encode(client->saslconn,
                          client->tx->buffer + client->tx->bufferOffset,
                          client->tx->bufferLength - client->tx->bufferOffset,
1941 1942 1943
                          &client->saslEncoded,
                          &client->saslEncodedLength);

1944 1945 1946 1947 1948 1949 1950
        if (ret != SASL_OK) {
            VIR_ERROR(_("failed to encode SASL data %s"),
                      sasl_errstring(ret, NULL, NULL));
            qemudDispatchClientFailure(client);
            return -1;
        }

1951 1952 1953 1954
        client->saslEncodedOffset = 0;
    }

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

1959 1960
    if (ret <= 0)
        return ret; /* -1 error, 0 == egain */
1961 1962 1963 1964 1965 1966 1967 1968

    /* 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;
1969 1970 1971

        /* Mark as complete, so caller detects completion */
        client->tx->bufferOffset = client->tx->bufferLength;
1972 1973
    }

1974
    return ret;
1975 1976 1977
}
#endif

1978 1979 1980 1981 1982 1983 1984 1985 1986
/*
 * Send as much data in the client->tx as possible
 *
 * Returns:
 *   -1 on error or EOF
 *    0 on EAGAIN
 *    n number of bytes
 */
static ssize_t qemudClientWrite(struct qemud_client *client) {
1987 1988
#if HAVE_SASL
    if (client->saslSSF & QEMUD_SASL_SSF_WRITE)
1989
        return qemudClientWriteSASL(client);
1990 1991
    else
#endif
1992
        return qemudClientWritePlain(client);
1993 1994 1995
}


1996 1997 1998 1999
void
qemudClientMessageRelease(struct qemud_client *client,
                          struct qemud_client_message *msg)
{
2000 2001 2002
    if (msg->streamTX) {
        remoteStreamMessageFinished(client, msg);
    } else if (!msg->async)
2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020
        client->nrequests--;

    /* See if the recv queue is currently throttled */
    if (!client->rx &&
        client->nrequests < max_client_requests) {
        /* Reset message record for next RX attempt */
        memset(msg, 0, sizeof(*msg));
        client->rx = msg;
        /* Get ready to receive next message */
        client->rx->bufferLength = REMOTE_MESSAGE_HEADER_XDR_LEN;
    } else {
        VIR_FREE(msg);
    }

    qemudUpdateClientEvent(client);
}


2021 2022 2023 2024 2025
/*
 * Process all queued client->tx messages until
 * we would block on I/O
 */
static void
2026
qemudDispatchClientWrite(struct qemud_client *client) {
2027 2028
    while (client->tx) {
        ssize_t ret;
2029

2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043
        ret = qemudClientWrite(client);
        if (ret < 0) {
            qemudDispatchClientFailure(client);
            return;
        }
        if (ret == 0)
            return; /* Would block on write EAGAIN */

        if (client->tx->bufferOffset == client->tx->bufferLength) {
            struct qemud_client_message *reply;

            /* Get finished reply from head of tx queue */
            reply = qemudClientMessageQueueServe(&client->tx);

2044
            qemudClientMessageRelease(client, reply);
2045

2046 2047
            if (client->closing)
                qemudDispatchClientFailure(client);
2048
         }
2049
    }
2050
}
2051

2052
static void
2053
qemudDispatchClientHandshake(struct qemud_client *client) {
2054 2055 2056 2057
    int ret;
    /* Continue the handshake. */
    ret = gnutls_handshake (client->tlssession);
    if (ret == 0) {
2058 2059
        client->handshake = 0;

2060 2061 2062
        /* Finished.  Next step is to check the certificate. */
        if (remoteCheckAccess (client) == -1)
            qemudDispatchClientFailure(client);
2063 2064
        else
            qemudUpdateClientEvent(client);
2065 2066 2067 2068 2069
    } else if (ret == GNUTLS_E_AGAIN ||
               ret == GNUTLS_E_INTERRUPTED) {
        /* Carry on waiting for more handshake. Update
           the events just in case handshake data flow
           direction has changed */
2070
        qemudUpdateClientEvent (client);
2071 2072 2073 2074 2075
    } else {
        /* Fatal error in handshake */
        VIR_ERROR(_("TLS handshake failed: %s"),
                  gnutls_strerror (ret));
        qemudDispatchClientFailure(client);
D
Daniel P. Berrange 已提交
2076 2077 2078
    }
}

2079
static void
2080
qemudDispatchClientEvent(int watch, int fd, int events, void *opaque) {
D
Daniel P. Berrange 已提交
2081
    struct qemud_server *server = (struct qemud_server *)opaque;
2082 2083
    struct qemud_client *client = NULL;
    int i;
2084

2085
    virMutexLock(&server->lock);
2086

2087
    for (i = 0 ; i < server->nclients ; i++) {
2088
        virMutexLock(&server->clients[i]->lock);
2089 2090
        if (server->clients[i]->watch == watch) {
            client = server->clients[i];
D
Daniel P. Berrange 已提交
2091
            break;
2092
        }
2093
        virMutexUnlock(&server->clients[i]->lock);
D
Daniel P. Berrange 已提交
2094
    }
2095

2096 2097
    virMutexUnlock(&server->lock);

2098
    if (!client) {
D
Daniel P. Berrange 已提交
2099
        return;
2100 2101
    }

2102 2103
    if (client->fd != fd) {
        virMutexUnlock(&client->lock);
2104
        return;
2105 2106 2107 2108 2109
    }

    if (events & (VIR_EVENT_HANDLE_WRITABLE |
                  VIR_EVENT_HANDLE_READABLE)) {
        if (client->handshake) {
2110
            qemudDispatchClientHandshake(client);
2111 2112
        } else {
            if (events & VIR_EVENT_HANDLE_WRITABLE)
2113
                qemudDispatchClientWrite(client);
2114 2115 2116 2117 2118 2119 2120 2121 2122 2123
            if (events & VIR_EVENT_HANDLE_READABLE)
                qemudDispatchClientRead(server, client);
        }
    }

    /* NB, will get HANGUP + READABLE at same time upon
     * disconnect */
    if (events & (VIR_EVENT_HANDLE_ERROR |
                  VIR_EVENT_HANDLE_HANGUP))
        qemudDispatchClientFailure(client);
2124

2125
    virMutexUnlock(&client->lock);
D
Daniel P. Berrange 已提交
2126 2127
}

2128 2129 2130 2131 2132 2133

/*
 * @client: a locked client object
 */
static int
qemudCalculateHandleMode(struct qemud_client *client) {
2134 2135 2136
    int mode = 0;

    if (client->handshake) {
2137
        if (gnutls_record_get_direction (client->tlssession) == 0)
2138
            mode |= VIR_EVENT_HANDLE_READABLE;
2139
        else
2140 2141 2142 2143 2144 2145
            mode |= VIR_EVENT_HANDLE_WRITABLE;
    } else {
        /* If there is a message on the rx queue then
         * we're wanting more input */
        if (client->rx)
            mode |= VIR_EVENT_HANDLE_READABLE;
2146

2147 2148 2149 2150
        /* If there are one or more messages to send back to client,
           then monitor for writability on socket */
        if (client->tx)
            mode |= VIR_EVENT_HANDLE_WRITABLE;
2151 2152
    }

2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170
    return mode;
}

/*
 * @server: a locked or unlocked server object
 * @client: a locked client object
 */
int qemudRegisterClientEvent(struct qemud_server *server,
                             struct qemud_client *client) {
    int mode;

    mode = qemudCalculateHandleMode(client);

    if ((client->watch = virEventAddHandleImpl(client->fd,
                                               mode,
                                               qemudDispatchClientEvent,
                                               server, NULL)) < 0)
        return -1;
D
Daniel P. Berrange 已提交
2171 2172 2173 2174

    return 0;
}

2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186
/*
 * @client: a locked client object
 */
void qemudUpdateClientEvent(struct qemud_client *client) {
    int mode;

    mode = qemudCalculateHandleMode(client);

    virEventUpdateHandleImpl(client->watch, mode);
}


2187
static void
2188
qemudDispatchServerEvent(int watch, int fd, int events, void *opaque) {
D
Daniel P. Berrange 已提交
2189
    struct qemud_server *server = (struct qemud_server *)opaque;
2190 2191
    struct qemud_socket *sock;

2192
    virMutexLock(&server->lock);
2193 2194

    sock = server->sockets;
D
Daniel P. Berrange 已提交
2195

D
Daniel P. Berrange 已提交
2196
    while (sock) {
2197
        if (sock->watch == watch)
D
Daniel P. Berrange 已提交
2198 2199 2200
            break;

        sock = sock->next;
D
Daniel P. Berrange 已提交
2201
    }
D
Daniel P. Berrange 已提交
2202

2203
    if (sock && sock->fd == fd && events)
D
Daniel P. Berrange 已提交
2204
        qemudDispatchServer(server, sock);
2205

2206
    virMutexUnlock(&server->lock);
D
Daniel P. Berrange 已提交
2207 2208 2209
}


2210
static int qemudOneLoop(void) {
2211
    sig_atomic_t errors;
D
Daniel P. Berrange 已提交
2212

D
Daniel P. Berrange 已提交
2213
    if (virEventRunOnce() < 0)
D
Daniel P. Berrange 已提交
2214 2215
        return -1;

2216 2217 2218
    /* Check for any signal handling errors and log them. */
    errors = sig_errors;
    if (errors) {
2219
        char ebuf[1024];
2220
        sig_errors -= errors;
2221
        VIR_ERROR(_("Signal handler reported %d errors: last error: %s"),
2222
                  errors, virStrerror (sig_lasterrno, ebuf, sizeof ebuf));
2223 2224 2225
        return -1;
    }

D
Daniel P. Berrange 已提交
2226 2227 2228
    return 0;
}

2229
static void qemudInactiveTimer(int timerid, void *data) {
2230
    struct qemud_server *server = (struct qemud_server *)data;
2231 2232 2233 2234 2235 2236 2237

    if (virStateActive() ||
        server->clients) {
        DEBUG0("Timer expired but still active, not shutting down");
        virEventUpdateTimeoutImpl(timerid, -1);
    } else {
        DEBUG0("Timer expired and inactive, shutting down");
2238
        server->quitEventThread = 1;
2239 2240 2241
    }
}

2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258
static void qemudFreeClient(struct qemud_client *client) {
    while (client->rx) {
        struct qemud_client_message *msg
            = qemudClientMessageQueueServe(&client->rx);
        VIR_FREE(msg);
    }
    while (client->dx) {
        struct qemud_client_message *msg
            = qemudClientMessageQueueServe(&client->dx);
        VIR_FREE(msg);
    }
    while (client->tx) {
        struct qemud_client_message *msg
            = qemudClientMessageQueueServe(&client->tx);
        VIR_FREE(msg);
    }

2259 2260 2261
    while (client->streams)
        remoteRemoveClientStream(client, client->streams);

2262 2263 2264 2265 2266 2267
    if (client->conn)
        virConnectClose(client->conn);
    virMutexDestroy(&client->lock);
    VIR_FREE(client);
}

2268 2269
static void *qemudRunLoop(void *opaque) {
    struct qemud_server *server = opaque;
2270
    int timerid = -1;
2271
    int i;
2272
    int timerActive = 0;
2273

2274
    virMutexLock(&server->lock);
2275

2276 2277 2278 2279 2280
    if (timeout > 0 &&
        (timerid = virEventAddTimeoutImpl(-1,
                                          qemudInactiveTimer,
                                          server, NULL)) < 0) {
        VIR_ERROR0(_("Failed to register shutdown timeout"));
2281
        return NULL;
2282 2283
    }

2284 2285 2286 2287
    if (min_workers > max_workers)
        max_workers = min_workers;

    server->nworkers = max_workers;
2288
    if (VIR_ALLOC_N(server->workers, server->nworkers) < 0) {
2289
        VIR_ERROR0(_("Failed to allocate workers"));
2290
        return NULL;
2291 2292
    }

2293 2294 2295 2296
    for (i = 0 ; i < min_workers ; i++) {
        if (qemudStartWorker(server, &server->workers[i]) < 0)
            goto cleanup;
        server->nactiveworkers++;
2297
    }
2298

2299
    for (;!server->quitEventThread;) {
2300 2301 2302 2303
        /* A shutdown timeout is specified, so check
         * if any drivers have active state, if not
         * shutdown after timeout seconds
         */
2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318
        if (timeout > 0) {
            if (timerActive) {
                if (server->clients) {
                    DEBUG("Deactivating shutdown timer %d", timerid);
                    virEventUpdateTimeoutImpl(timerid, -1);
                    timerActive = 0;
                }
            } else {
                if (!virStateActive() &&
                    !server->clients) {
                    DEBUG("Activating shutdown timer %d", timerid);
                    virEventUpdateTimeoutImpl(timerid, timeout * 1000);
                    timerActive = 1;
                }
            }
2319 2320
        }

2321
        virMutexUnlock(&server->lock);
2322 2323
        if (qemudOneLoop() < 0) {
            virMutexLock(&server->lock);
2324
            DEBUG0("Loop iteration error, exiting");
2325
            break;
2326
        }
2327
        virMutexLock(&server->lock);
2328 2329 2330 2331

    reprocess:
        for (i = 0 ; i < server->nclients ; i++) {
            int inactive;
2332
            virMutexLock(&server->clients[i]->lock);
2333 2334
            inactive = server->clients[i]->fd == -1
                && server->clients[i]->refs == 0;
2335
            virMutexUnlock(&server->clients[i]->lock);
2336
            if (inactive) {
2337
                qemudFreeClient(server->clients[i]);
2338
                server->nclients--;
2339
                if (i < server->nclients)
2340 2341
                    memmove(server->clients + i,
                            server->clients + i + 1,
2342 2343 2344 2345 2346
                            sizeof (*server->clients) * (server->nclients - i));

                if (VIR_REALLOC_N(server->clients,
                                  server->nclients) < 0) {
                    ; /* ignore */
2347
                }
2348
                goto reprocess;
2349 2350
            }
        }
D
Daniel P. Berrange 已提交
2351

2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370
        /* If number of active workers exceeds both the min_workers
         * threshold and the number of clients, then kill some
         * off */
        for (i = 0 ; (i < server->nworkers &&
                      server->nactiveworkers > server->nclients &&
                      server->nactiveworkers > min_workers) ; i++) {

            if (server->workers[i].hasThread &&
                !server->workers[i].processingCall) {
                server->workers[i].quitRequest = 1;

                virCondBroadcast(&server->job);
                virMutexUnlock(&server->lock);
                pthread_join(server->workers[i].thread, NULL);
                virMutexLock(&server->lock);
                server->workers[i].hasThread = 0;
                server->nactiveworkers--;
            }
        }
2371 2372
    }

2373
cleanup:
2374
    for (i = 0 ; i < server->nworkers ; i++) {
2375 2376 2377 2378 2379 2380
        if (!server->workers[i].hasThread)
            continue;

        server->workers[i].quitRequest = 1;
        virCondBroadcast(&server->job);

2381
        virMutexUnlock(&server->lock);
2382
        pthread_join(server->workers[i].thread, NULL);
2383
        virMutexLock(&server->lock);
2384
        server->workers[i].hasThread = 0;
2385
    }
2386
    VIR_FREE(server->workers);
2387

2388
    virMutexUnlock(&server->lock);
2389
    return NULL;
D
Daniel P. Berrange 已提交
2390 2391
}

2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410

static int qemudStartEventLoop(struct qemud_server *server) {
    pthread_attr_t attr;
    pthread_attr_init(&attr);
    /* We want to join the eventloop, so don't detach it */
    /*pthread_attr_setdetachstate(&attr, 1);*/

    if (pthread_create(&server->eventThread,
                       &attr,
                       qemudRunLoop,
                       server) != 0)
        return -1;

    server->hasEventThread = 1;

    return 0;
}


D
Daniel P. Berrange 已提交
2411
static void qemudCleanup(struct qemud_server *server) {
2412 2413
    struct qemud_socket *sock;

2414 2415 2416 2417
    if (server->sigread != -1)
        close(server->sigread);
    if (server->sigwrite != -1)
        close(server->sigwrite);
2418 2419

    sock = server->sockets;
D
Daniel P. Berrange 已提交
2420
    while (sock) {
2421
        struct qemud_socket *next = sock->next;
2422 2423
        if (sock->watch)
            virEventRemoveHandleImpl(sock->watch);
D
Daniel P. Berrange 已提交
2424
        close(sock->fd);
2425
        VIR_FREE(sock);
2426
        sock = next;
D
Daniel P. Berrange 已提交
2427
    }
2428
    VIR_FREE(server->logDir);
2429

2430
#ifdef HAVE_SASL
2431 2432 2433
    if (server->saslUsernameWhitelist) {
        char **list = server->saslUsernameWhitelist;
        while (*list) {
2434
            VIR_FREE(*list);
2435 2436
            list++;
        }
2437
        VIR_FREE(server->saslUsernameWhitelist);
2438
    }
2439
#endif
2440

2441 2442 2443 2444 2445
#if HAVE_POLKIT0
        if (server->sysbus)
            dbus_connection_unref(server->sysbus);
#endif

2446
    virStateCleanup();
2447

2448 2449 2450 2451 2452 2453
    if (virCondDestroy(&server->job) < 0) {
        ;
    }
    virMutexDestroy(&server->lock);

    VIR_FREE(server);
D
Daniel P. Berrange 已提交
2454 2455
}

2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471
/* 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:
2472
        if (VIR_ALLOC_N(list, 2) < 0) {
2473
            VIR_ERROR(_("failed to allocate memory for %s config list"), key);
2474 2475 2476 2477 2478
            return -1;
        }
        list[0] = strdup (p->str);
        list[1] = NULL;
        if (list[0] == NULL) {
2479
            VIR_ERROR(_("failed to allocate memory for %s config list value"),
2480
                      key);
2481
            VIR_FREE(list);
2482 2483 2484 2485 2486 2487 2488 2489 2490
            return -1;
        }
        break;

    case VIR_CONF_LIST: {
        int i, len = 0;
        virConfValuePtr pp;
        for (pp = p->list; pp; pp = pp->next)
            len++;
2491
        if (VIR_ALLOC_N(list, 1+len) < 0) {
2492
            VIR_ERROR(_("failed to allocate memory for %s config list"), key);
2493 2494 2495 2496
            return -1;
        }
        for (i = 0, pp = p->list; pp; ++i, pp = pp->next) {
            if (pp->type != VIR_CONF_STRING) {
2497
                VIR_ERROR(_("remoteReadConfigFile: %s: %s:"
2498
                            " must be a string or list of strings"),
2499
                          filename, key);
2500
                VIR_FREE(list);
2501 2502 2503 2504 2505 2506
                return -1;
            }
            list[i] = strdup (pp->str);
            if (list[i] == NULL) {
                int j;
                for (j = 0 ; j < i ; j++)
2507 2508
                    VIR_FREE(list[j]);
                VIR_FREE(list);
2509 2510
                VIR_ERROR(_("failed to allocate memory for %s config list value"),
                          key);
2511 2512 2513 2514 2515 2516 2517 2518 2519
                return -1;
            }

        }
        list[i] = NULL;
        break;
    }

    default:
2520
        VIR_ERROR(_("remoteReadConfigFile: %s: %s:"
2521
                    " must be a string or list of strings"),
2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535
                  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) {
2536
        VIR_ERROR(_("remoteReadConfigFile: %s: %s: invalid type:"
2537
                    " got %s; expected %s"), filename, key,
2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556
                  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) {                                   \
2557
                char ebuf[1024];                                        \
2558
                VIR_ERROR(_("remoteReadConfigFile: %s"),		\
2559
                          virStrerror(errno, ebuf, sizeof ebuf));       \
2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575
                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)

2576 2577 2578 2579 2580 2581 2582 2583

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

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

2584
    if (checkType (p, filename, key, VIR_CONF_STRING) < 0)
2585 2586 2587 2588 2589 2590 2591 2592 2593 2594
        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;
2595 2596 2597 2598
#endif
#if HAVE_POLKIT
    } else if (STREQ(p->str, "polkit")) {
        *auth = REMOTE_AUTH_POLKIT;
2599 2600
#endif
    } else {
2601
        VIR_ERROR(_("remoteReadConfigFile: %s: %s: unsupported auth %s"),
2602
                  filename, key, p->str);
2603 2604 2605 2606 2607 2608
        return -1;
    }

    return 0;
}

2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628
#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

2629 2630 2631 2632 2633 2634
/*
 * Set up the logging environment
 * By default if daemonized all errors go to syslog and the logging
 * is also saved onto the logfile libvird.log, but if verbose or error
 * debugging is asked for then output informations or debug.
 */
2635
static int
2636 2637 2638
qemudSetLogging(virConfPtr conf, const char *filename)
{
    int log_level = 0;
2639 2640
    char *log_filters = NULL;
    char *log_outputs = NULL;
2641 2642
    int ret = -1;

2643 2644
    virLogReset();

2645
    /*
2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657
     * Libvirtd's order of precedence is:
     * cmdline > environment > config
     *
     * In order to achieve this, we must process configuration in
     * different order for the log level versus the filters and
     * outputs. Because filters and outputs append, we have to look at
     * the environment first and then only check the config file if
     * there was no result from the environment. The default output is
     * then applied only if there was no setting from either of the
     * first two. Because we don't have a way to determine if the log
     * level has been set, we must process variables in the opposite
     * order, each one overriding the previous.
2658
     */
2659
    GET_CONF_INT (conf, filename, log_level);
2660 2661 2662
    if (log_level != 0)
        virLogSetDefaultPriority(log_level);

2663
    virLogSetFromEnv();
2664 2665 2666 2667

    if (virLogGetNbFilters() == 0) {
        GET_CONF_STR (conf, filename, log_filters);
        virLogParseFilters(log_filters);
2668
    }
2669

2670 2671 2672
    if (virLogGetNbOutputs() == 0) {
        GET_CONF_STR (conf, filename, log_outputs);
        virLogParseOutputs(log_outputs);
2673
    }
2674 2675

    /*
2676 2677
     * If no defined outputs, then direct to syslog when running
     * as daemon. Otherwise the default output is stderr.
2678
     */
2679
    if (virLogGetNbOutputs() == 0) {
2680
        char *tmp = NULL;
2681
        if (godaemon) {
2682 2683
            if (virAsprintf (&tmp, "%d:syslog:libvirtd",
                             virLogGetDefaultPriority()) < 0)
2684 2685
                goto free_and_fail;
        } else {
2686 2687
            if (virAsprintf (&tmp, "%d:stderr",
                             virLogGetDefaultPriority()) < 0)
2688
                goto free_and_fail;
2689
        }
2690 2691
        virLogParseOutputs(tmp);
        VIR_FREE(tmp);
2692
    }
2693 2694 2695 2696 2697 2698 2699

    /*
     * Command line override for --verbose
     */
    if ((verbose) && (virLogGetDefaultPriority() > VIR_LOG_INFO))
        virLogSetDefaultPriority(VIR_LOG_INFO);

2700 2701
    ret = 0;

2702 2703 2704
free_and_fail:
    VIR_FREE(log_filters);
    VIR_FREE(log_outputs);
2705
    return(ret);
2706
}
2707

2708 2709 2710 2711
/* Read the config file if it exists.
 * Only used in the remote case, hence the name.
 */
static int
2712
remoteReadConfigFile (struct qemud_server *server, const char *filename)
2713 2714 2715
{
    virConfPtr conf;

2716 2717 2718 2719 2720
    /* 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;
2721
    char *buf = NULL;
2722
    char *host_uuid = NULL;
2723

2724 2725
#if HAVE_POLKIT
    /* Change the default back to no auth for non-root */
2726
    if (!server->privileged && auth_unix_rw == REMOTE_AUTH_POLKIT)
2727
        auth_unix_rw = REMOTE_AUTH_NONE;
2728
    if (!server->privileged && auth_unix_ro == REMOTE_AUTH_POLKIT)
2729 2730 2731
        auth_unix_ro = REMOTE_AUTH_NONE;
#endif

2732
    conf = virConfReadFile (filename, 0);
2733
    if (!conf) return -1;
2734

2735 2736 2737
    /*
     * First get all the logging settings and activate them
     */
2738 2739
    if (qemudSetLogging(conf, filename) < 0)
        goto free_and_fail;
2740

2741 2742
    GET_CONF_INT (conf, filename, listen_tcp);
    GET_CONF_INT (conf, filename, listen_tls);
2743 2744
    GET_CONF_STR (conf, filename, tls_port);
    GET_CONF_STR (conf, filename, tcp_port);
2745
    GET_CONF_STR (conf, filename, listen_addr);
J
Jim Meyering 已提交
2746

2747
    if (remoteConfigGetAuth(conf, "auth_unix_rw", &auth_unix_rw, filename) < 0)
J
Jim Meyering 已提交
2748
        goto free_and_fail;
2749 2750 2751 2752 2753 2754 2755
#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
2756
    if (remoteConfigGetAuth(conf, "auth_unix_ro", &auth_unix_ro, filename) < 0)
J
Jim Meyering 已提交
2757
        goto free_and_fail;
2758
    if (remoteConfigGetAuth(conf, "auth_tcp", &auth_tcp, filename) < 0)
J
Jim Meyering 已提交
2759
        goto free_and_fail;
2760
    if (remoteConfigGetAuth(conf, "auth_tls", &auth_tls, filename) < 0)
J
Jim Meyering 已提交
2761
        goto free_and_fail;
2762

2763 2764
    GET_CONF_STR (conf, filename, unix_sock_group);
    if (unix_sock_group) {
2765
        if (!server->privileged) {
2766
            VIR_WARN0("Cannot set group when not running as root");
2767
        } else {
2768
            int ret;
2769
            struct group grpdata, *grp;
2770 2771 2772 2773 2774 2775
            size_t maxbuf = sysconf(_SC_GETGR_R_SIZE_MAX);

            if (maxbuf == -1)
                maxbuf = 1024;

            if (VIR_ALLOC_N(buf, maxbuf) < 0) {
2776
                VIR_ERROR0(_("Failed to allocate memory for buffer"));
2777 2778 2779 2780 2781 2782 2783 2784
                goto free_and_fail;
            }

            while ((ret = getgrnam_r(unix_sock_group, &grpdata,
                                     buf, maxbuf,
                                     &grp)) == ERANGE) {
                    maxbuf *= 2;
                    if (maxbuf > 65536 || VIR_REALLOC_N(buf, maxbuf) < 0) {
2785
                        VIR_ERROR0(_("Failed to reallocate enough memory for buffer"));
2786 2787 2788 2789 2790
                        goto free_and_fail;
                    }
            }

            if (ret != 0 || !grp) {
2791
                VIR_ERROR(_("Failed to lookup group '%s'"), unix_sock_group);
2792
                goto free_and_fail;
2793 2794
            }
            unix_sock_gid = grp->gr_gid;
2795
            VIR_FREE(buf);
2796
        }
2797
        VIR_FREE(unix_sock_group);
2798 2799
    }

2800 2801
    GET_CONF_STR (conf, filename, unix_sock_ro_perms);
    if (unix_sock_ro_perms) {
2802
        if (virStrToLong_i (unix_sock_ro_perms, NULL, 8, &unix_sock_ro_mask) != 0) {
2803
            VIR_ERROR(_("Failed to parse mode '%s'"), unix_sock_ro_perms);
2804
            goto free_and_fail;
2805
        }
2806
        VIR_FREE(unix_sock_ro_perms);
2807 2808
    }

2809 2810
    GET_CONF_STR (conf, filename, unix_sock_rw_perms);
    if (unix_sock_rw_perms) {
2811
        if (virStrToLong_i (unix_sock_rw_perms, NULL, 8, &unix_sock_rw_mask) != 0) {
2812
            VIR_ERROR(_("Failed to parse mode '%s'"), unix_sock_rw_perms);
2813
            goto free_and_fail;
2814
        }
2815
        VIR_FREE(unix_sock_rw_perms);
2816 2817
    }

2818 2819
    GET_CONF_STR (conf, filename, unix_sock_dir);

2820 2821
    GET_CONF_INT (conf, filename, mdns_adv);
    GET_CONF_STR (conf, filename, mdns_name);
2822

2823
    GET_CONF_INT (conf, filename, tls_no_verify_certificate);
2824

2825 2826 2827 2828
    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);
2829

2830 2831 2832
    if (remoteConfigGetStringList (conf, "tls_allowed_dn_list",
                                   &tls_allowed_dn_list, filename) < 0)
        goto free_and_fail;
2833

2834
    if (remoteReadSaslAllowedUsernameList (conf, server, filename) < 0)
2835
        goto free_and_fail;
2836

2837 2838 2839 2840 2841

    GET_CONF_INT (conf, filename, min_workers);
    GET_CONF_INT (conf, filename, max_workers);
    GET_CONF_INT (conf, filename, max_clients);

2842 2843 2844
    GET_CONF_INT (conf, filename, max_requests);
    GET_CONF_INT (conf, filename, max_client_requests);

2845
    GET_CONF_STR (conf, filename, host_uuid);
2846 2847
    if (virSetHostUUIDStr(host_uuid)) {
        VIR_ERROR(_("invalid host UUID: %s"), host_uuid);
2848
        goto free_and_fail;
2849
    }
2850 2851 2852

    VIR_FREE(host_uuid);

2853 2854
    virConfFree (conf);
    return 0;
2855

2856 2857
 free_and_fail:
    virConfFree (conf);
2858
    VIR_FREE(host_uuid);
2859 2860 2861 2862 2863
    VIR_FREE(mdns_name);
    VIR_FREE(unix_sock_ro_perms);
    VIR_FREE(unix_sock_rw_perms);
    VIR_FREE(unix_sock_group);
    VIR_FREE(buf);
2864

2865 2866 2867 2868
    /* Don't bother trying to free listen_addr, 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
2869 2870 2871 2872 2873
       even be a real leak.  */

    if (tls_allowed_dn_list) {
        int i;
        for (i = 0; tls_allowed_dn_list[i]; i++)
2874 2875
            VIR_FREE(tls_allowed_dn_list[i]);
        VIR_FREE(tls_allowed_dn_list);
2876 2877 2878
    }

    return -1;
2879 2880
}

2881 2882
/* Display version information. */
static void
2883
version (void)
2884 2885 2886 2887
{
    printf ("%s (%s) %s\n", argv0, PACKAGE_NAME, PACKAGE_VERSION);
}

J
John Levon 已提交
2888 2889 2890 2891 2892 2893 2894 2895
#ifdef __sun
static int
qemudSetupPrivs (void)
{
    chown ("/var/run/libvirt", SYSTEM_UID, SYSTEM_UID);

    if (__init_daemon_priv (PU_RESETGROUPS | PU_CLEARLIMITSET,
        SYSTEM_UID, SYSTEM_UID, PRIV_XVM_CONTROL, NULL)) {
2896
        VIR_ERROR0(_("additional privileges are required"));
J
John Levon 已提交
2897 2898 2899 2900 2901
        return -1;
    }

    if (priv_set (PRIV_OFF, PRIV_ALLSETS, PRIV_FILE_LINK_ANY, PRIV_PROC_INFO,
        PRIV_PROC_SESSION, PRIV_PROC_EXEC, PRIV_PROC_FORK, NULL)) {
2902
        VIR_ERROR0(_("failed to set reduced privileges"));
J
John Levon 已提交
2903 2904 2905 2906 2907 2908
        return -1;
    }

    return 0;
}
#else
2909
# define qemudSetupPrivs() 0
J
John Levon 已提交
2910 2911
#endif

2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972

/*
 * Doing anything non-trivial in signal handlers is pretty dangerous,
 * since there are very few async-signal safe POSIX funtions. To
 * deal with this we setup a very simple signal handler. It simply
 * writes the signal number to a pipe. The main event loop then sees
 * the signal on the pipe and can safely do the processing from
 * event loop context
 */
static int
daemonSetupSignals(struct qemud_server *server)
{
    struct sigaction sig_action;
    int sigpipe[2];

    if (pipe(sigpipe) < 0)
        return -1;

    if (virSetNonBlock(sigpipe[0]) < 0 ||
        virSetNonBlock(sigpipe[1]) < 0 ||
        virSetCloseExec(sigpipe[0]) < 0 ||
        virSetCloseExec(sigpipe[1]) < 0) {
        char ebuf[1024];
        VIR_ERROR(_("Failed to create pipe: %s"),
                  virStrerror(errno, ebuf, sizeof ebuf));
        goto error;
    }

    sig_action.sa_sigaction = sig_handler;
    sig_action.sa_flags = SA_SIGINFO;
    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);

    if (virEventAddHandleImpl(sigpipe[0],
                              VIR_EVENT_HANDLE_READABLE,
                              qemudDispatchSignalEvent,
                              server, NULL) < 0) {
        VIR_ERROR0(_("Failed to register callback for signal pipe"));
        goto error;
    }

    server->sigread = sigpipe[0];
    server->sigwrite = sigpipe[1];
    sigwrite = sigpipe[1];

    return 0;

error:
    close(sigpipe[0]);
    close(sigpipe[1]);
    return -1;
}

2973 2974
/* Print command-line usage. */
static void
2975
usage (void)
2976 2977
{
    fprintf (stderr,
2978
             _("\n\
2979 2980 2981 2982 2983 2984
Usage:\n\
  %s [options]\n\
\n\
Options:\n\
  -v | --verbose         Verbose messages.\n\
  -d | --daemon          Run as a daemon & write PID file.\n\
2985 2986
  -l | --listen          Listen for TCP/IP connections.\n\
  -t | --timeout <secs>  Exit after timeout period.\n\
2987
  -f | --config <file>   Configuration file.\n\
2988
     | --version         Display version information.\n\
2989 2990
  -p | --pid-file <file> Change name of PID file.\n\
\n\
2991
libvirt management daemon:\n\
2992 2993 2994
\n\
  Default paths:\n\
\n\
W
Wolfgang Mauerer 已提交
2995
    Configuration file (unless overridden by -f):\n\
2996
      %s/libvirt/libvirtd.conf\n\
2997
\n\
2998
    Sockets (as root):\n\
2999 3000
      %s/run/libvirt/libvirt-sock\n\
      %s/run/libvirt/libvirt-sock-ro\n\
3001 3002 3003
\n\
    Sockets (as non-root):\n\
      $HOME/.libvirt/libvirt-sock (in UNIX abstract namespace)\n\
3004 3005
\n\
    TLS:\n\
3006 3007 3008
      CA certificate:     %s\n\
      Server certificate: %s\n\
      Server private key: %s\n\
3009 3010 3011
\n\
    PID file (unless overridden by --pid-file):\n\
      %s\n\
3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022
\n"),
               argv0,
               SYSCONF_DIR,
               LOCAL_STATE_DIR,
               LOCAL_STATE_DIR,
               LIBVIRT_CACERT,
               LIBVIRT_SERVERCERT,
               LIBVIRT_SERVERKEY,
               (REMOTE_PID_FILE[0] != '\0'
                ? REMOTE_PID_FILE
                : _("(disabled in ./configure)")));
3023 3024
}

3025 3026 3027 3028
enum {
    OPT_VERSION = 129
};

D
Daniel P. Berrange 已提交
3029 3030
#define MAX_LISTEN 5
int main(int argc, char **argv) {
3031
    struct qemud_server *server = NULL;
3032
    const char *pid_file = NULL;
3033
    const char *remote_config_file = NULL;
3034
    int statuswrite = -1;
3035
    int ret = 1;
3036
    argv0 = argv[0];
D
Daniel P. Berrange 已提交
3037 3038 3039 3040

    struct option opts[] = {
        { "verbose", no_argument, &verbose, 1},
        { "daemon", no_argument, &godaemon, 1},
3041
        { "listen", no_argument, &ipsock, 1},
3042
        { "config", required_argument, NULL, 'f'},
3043 3044
        { "timeout", required_argument, NULL, 't'},
        { "pid-file", required_argument, NULL, 'p'},
3045
        { "version", no_argument, NULL, OPT_VERSION },
3046
        { "help", no_argument, NULL, '?' },
D
Daniel P. Berrange 已提交
3047 3048 3049
        {0, 0, 0, 0}
    };

3050
    if (virInitialize() < 0) {
3051
        fprintf (stderr, _("%s: initialization failed\n"), argv0);
3052 3053
        exit (EXIT_FAILURE);
    }
D
Daniel P. Berrange 已提交
3054

D
Daniel P. Berrange 已提交
3055 3056 3057 3058 3059
    while (1) {
        int optidx = 0;
        int c;
        char *tmp;

3060
        c = getopt_long(argc, argv, "ldf:p:t:v", opts, &optidx);
D
Daniel P. Berrange 已提交
3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075

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

        switch (c) {
        case 0:
            /* Got one of the flags */
            break;
        case 'v':
            verbose = 1;
            break;
        case 'd':
            godaemon = 1;
            break;
3076 3077
        case 'l':
            ipsock = 1;
D
Daniel P. Berrange 已提交
3078 3079 3080
            break;

        case 't':
3081
            if (virStrToLong_i(optarg, &tmp, 10, &timeout) != 0
3082 3083 3084
                || timeout <= 0
                /* Ensure that we can multiply by 1000 without overflowing.  */
                || timeout > INT_MAX / 1000)
D
Daniel P. Berrange 已提交
3085 3086
                timeout = -1;
            break;
3087 3088

        case 'p':
3089 3090 3091 3092 3093
            pid_file = optarg;
            break;

        case 'f':
            remote_config_file = optarg;
3094 3095
            break;

3096
        case OPT_VERSION:
3097
            version ();
3098 3099
            return 0;

D
Daniel P. Berrange 已提交
3100
        case '?':
3101
            usage ();
D
Daniel P. Berrange 已提交
3102 3103 3104
            return 2;

        default:
3105 3106
            fprintf (stderr, _("%s: internal error: unknown flag: %c\n"),
                     argv0, c);
3107
            exit (EXIT_FAILURE);
D
Daniel P. Berrange 已提交
3108 3109 3110
        }
    }

3111 3112 3113 3114
    if (remote_config_file == NULL) {
        static const char *default_config_file
            = SYSCONF_DIR "/libvirt/libvirtd.conf";
        remote_config_file =
3115
            (access(default_config_file, R_OK) == 0
3116 3117 3118 3119
             ? default_config_file
             : "/dev/null");
    }

3120
    if (godaemon) {
3121
        char ebuf[1024];
3122
        if ((statuswrite = daemonForkIntoBackground()) < 0) {
3123 3124
            VIR_ERROR(_("Failed to fork as daemon: %s"),
                      virStrerror(errno, ebuf, sizeof ebuf));
3125
            goto error;
3126 3127 3128 3129 3130
        }
    }

    /* If running as root and no PID file is set, use the default */
    if (pid_file == NULL &&
3131
        geteuid() == 0 &&
3132 3133 3134 3135 3136
        REMOTE_PID_FILE[0] != '\0')
        pid_file = REMOTE_PID_FILE;

    /* If we have a pidfile set, claim it now, exiting if already taken */
    if (pid_file != NULL &&
3137 3138 3139
        qemudWritePidFile (pid_file) < 0) {
        pid_file = NULL; /* Prevent unlinking of someone else's pid ! */
        ret = VIR_DAEMON_ERR_PIDFILE;
3140
        goto error;
3141
    }
3142

J
John Levon 已提交
3143
    /* Ensure the rundir exists (on tmpfs on some systems) */
3144
    if (geteuid() == 0) {
J
John Levon 已提交
3145 3146 3147 3148
        const char *rundir = LOCAL_STATE_DIR "/run/libvirt";

        if (mkdir (rundir, 0755)) {
            if (errno != EEXIST) {
3149 3150 3151
                char ebuf[1024];
                VIR_ERROR(_("unable to create rundir %s: %s"), rundir,
                          virStrerror(errno, ebuf, sizeof(ebuf)));
3152 3153
                ret = VIR_DAEMON_ERR_RUNDIR;
                goto error;
J
John Levon 已提交
3154 3155 3156 3157
            }
        }
    }

3158 3159 3160 3161 3162 3163
    /* Beyond this point, nothing should rely on using
     * getuid/geteuid() == 0, for privilege level checks.
     * It must all use the flag 'server->privileged'
     * which is also passed into all libvirt stateful
     * drivers
     */
3164 3165
    if (qemudSetupPrivs() < 0) {
        ret = VIR_DAEMON_ERR_PRIVS;
3166
        goto error;
3167
    }
J
John Levon 已提交
3168

3169
    if (!(server = qemudInitialize())) {
3170
        ret = VIR_DAEMON_ERR_INIT;
3171
        goto error;
3172
    }
3173

3174 3175
    if ((daemonSetupSignals(server)) < 0) {
        ret = VIR_DAEMON_ERR_SIGNAL;
3176
        goto error;
3177
    }
3178

3179
    /* Read the config file (if it exists). */
3180 3181
    if (remoteReadConfigFile (server, remote_config_file) < 0) {
        ret = VIR_DAEMON_ERR_CONFIG;
3182
        goto error;
3183
    }
D
Daniel P. Berrange 已提交
3184

3185
    /* setup the hooks if any */
3186
    if (virHookInitialize() < 0) {
3187 3188 3189 3190
        ret = VIR_DAEMON_ERR_HOOKS;
        goto error;
    }

3191 3192 3193
    /* Disable error func, now logging is setup */
    virSetErrorFunc(NULL, virshErrorHandler);

3194 3195 3196 3197 3198 3199 3200 3201
    /*
     * Call the daemon startup hook
     * TODO: should we abort the daemon startup if the script returned
     *       an error ?
     */
    virHookCall(VIR_HOOK_DRIVER_DAEMON, "-", VIR_HOOK_DAEMON_OP_START,
                0, "start", NULL);

3202
    if (qemudNetworkInit(server) < 0) {
3203
        ret = VIR_DAEMON_ERR_NETWORK;
3204
        goto error;
3205 3206
    }

3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219
    /* Tell parent of daemon that basic initialization is complete
     * In particular we're ready to accept net connections & have
     * written the pidfile
     */
    if (statuswrite != -1) {
        char status = 0;
        while (write(statuswrite, &status, 1) == -1 &&
               errno == EINTR)
            ;
        close(statuswrite);
        statuswrite = -1;
    }

3220 3221 3222
    /* Start the event loop in a background thread, since
     * state initialization needs events to be being processed */
    if (qemudStartEventLoop(server) < 0) {
3223
        VIR_ERROR0(_("Event thread startup failed"));
3224 3225 3226
        goto error;
    }

3227 3228 3229 3230 3231
    /* Start the stateful HV drivers
     * This is delibrately done after telling the parent process
     * we're ready, since it can take a long time and this will
     * seriously delay OS bootup process */
    if (virStateInitialize(server->privileged) < 0) {
3232
        VIR_ERROR0(_("Driver state initialization failed"));
3233
        goto shutdown;
3234
    }
D
Daniel P. Berrange 已提交
3235

3236 3237 3238
    /* Start accepting new clients from network */
    virMutexLock(&server->lock);
    if (qemudNetworkEnable(server) < 0) {
3239
        VIR_ERROR0(_("Network event loop enablement failed"));
3240 3241 3242 3243
        goto shutdown;
    }
    virMutexUnlock(&server->lock);

3244 3245
    ret = 0;

3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261
shutdown:
    /* In a non-0 shutdown scenario we need to tell event loop
     * to quit immediately. Otherwise in normal case we just
     * sit in the thread join forever. Sure this means the
     * main thread doesn't do anything useful ever, but that's
     * not too much of drain on resources
     */
    if (ret != 0) {
        virMutexLock(&server->lock);
        if (server->hasEventThread)
            /* This SIGQUIT triggers the shutdown process */
            kill(getpid(), SIGQUIT);
        virMutexUnlock(&server->lock);
    }
    pthread_join(server->eventThread, NULL);

3262 3263 3264
    virHookCall(VIR_HOOK_DRIVER_DAEMON, "-", VIR_HOOK_DAEMON_OP_SHUTDOWN,
                0, "shutdown", NULL);

3265
error:
3266 3267 3268 3269 3270 3271 3272 3273 3274 3275
    if (statuswrite != -1) {
        if (ret != 0) {
            /* Tell parent of daemon what failed */
            char status = ret;
            while (write(statuswrite, &status, 1) == -1 &&
                   errno == EINTR)
                ;
        }
        close(statuswrite);
    }
3276 3277
    if (server)
        qemudCleanup(server);
3278 3279
    if (pid_file)
        unlink (pid_file);
3280
    virLogShutdown();
3281
    return ret;
D
Daniel P. Berrange 已提交
3282
}