qemud.c 81.1 KB
Newer Older
D
Daniel P. Berrange 已提交
1 2 3
/*
 * qemud.c: daemon start of day, guest process & i/o management
 *
4
 * Copyright (C) 2006, 2007, 2008, 2009 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 53 54 55 56

#include "qemud.h"
#include "util.h"
#include "remote_internal.h"
#include "conf.h"
D
Daniel P. Berrange 已提交
57
#include "event.h"
58
#include "memory.h"
59 60 61
#ifdef HAVE_AVAHI
#include "mdns.h"
#endif
D
Daniel P. Berrange 已提交
62

63 64 65
#ifdef WITH_DRIVER_MODULES
#include "driver.h"
#else
66 67 68 69 70 71
#ifdef WITH_QEMU
#include "qemu_driver.h"
#endif
#ifdef WITH_LXC
#include "lxc_driver.h"
#endif
72 73 74
#ifdef WITH_UML
#include "uml_driver.h"
#endif
75 76 77 78 79 80
#ifdef WITH_NETWORK
#include "network_driver.h"
#endif
#ifdef WITH_STORAGE_DIR
#include "storage_driver.h"
#endif
81 82 83
#ifdef WITH_NODE_DEVICES
#include "node_device.h"
#endif
84
#endif
85 86


J
John Levon 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
#ifdef __sun
#include <ucred.h>
#include <priv.h>

#ifndef PRIV_VIRT_MANAGE
#define PRIV_VIRT_MANAGE ((const char *)"virt_manage")
#endif

#ifndef PRIV_XVM_CONTROL
#define PRIV_XVM_CONTROL ((const char *)"xvm_control")
#endif

#define PU_RESETGROUPS          0x0001  /* Remove supplemental groups */
#define PU_CLEARLIMITSET        0x0008  /* L=0 */

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

#define SYSTEM_UID 60

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

#else

#define SYSTEM_UID 0

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 */

120 121
static int godaemon = 0;        /* -d: Be a daemon */
static int verbose = 0;         /* -v: Verbose mode */
122
static int timeout = -1;        /* -t: Shutdown timeout */
123
static int sigwrite = -1;       /* Signal handler pipe */
124
static int ipsock = 0;          /* -l  Listen for TCP/IP */
125

126 127 128 129 130
/* Defaults for logging */
static int log_level = 3;
static char *log_filters = NULL;
static char *log_outputs = NULL;

131
/* Defaults for configuration file elements */
132 133
static int listen_tls = 1;
static int listen_tcp = 0;
134
static char *listen_addr  = (char *) LIBVIRTD_LISTEN_ADDR;
135 136
static char *tls_port = (char *) LIBVIRTD_TLS_PORT;
static char *tcp_port = (char *) LIBVIRTD_TCP_PORT;
137

138 139 140 141
#if HAVE_POLKIT
static int auth_unix_rw = REMOTE_AUTH_POLKIT;
static int auth_unix_ro = REMOTE_AUTH_POLKIT;
#else
142 143
static int auth_unix_rw = REMOTE_AUTH_NONE;
static int auth_unix_ro = REMOTE_AUTH_NONE;
144
#endif /* HAVE_POLKIT */
145 146 147 148 149 150 151
#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;

152
static int mdns_adv = 1;
153
static char *mdns_name = NULL;
154

155
static int tls_no_verify_certificate = 0;
156
static char **tls_allowed_dn_list = NULL;
157

158 159 160 161
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 *) "";
162 163 164 165

static gnutls_certificate_credentials_t x509_cred;
static gnutls_dh_params_t dh_params;

166 167 168 169
static int min_workers = 5;
static int max_workers = 20;
static int max_clients = 20;

170 171 172 173 174
/* 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;

175
#define DH_BITS 1024
176

177 178 179
static sig_atomic_t sig_errors = 0;
static int sig_lasterrno = 0;

180 181
static void sig_handler(int sig, siginfo_t * siginfo,
                        void* context ATTRIBUTE_UNUSED) {
182
    int origerrno;
183
    int r;
184

185 186
    /* set the sig num in the struct */
    siginfo->si_signo = sig;
187 188

    origerrno = errno;
189
    r = safewrite(sigwrite, siginfo, sizeof(*siginfo));
190 191 192 193
    if (r == -1) {
        sig_errors++;
        sig_lasterrno = errno;
    }
194
    errno = origerrno;
D
Daniel P. Berrange 已提交
195
}
196

197 198
static void qemudDispatchClientEvent(int watch, int fd, int events, void *opaque);
static void qemudDispatchServerEvent(int watch, int fd, int events, void *opaque);
199
static int qemudStartWorker(struct qemud_server *server, struct qemud_worker *worker);
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227

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

static struct qemud_client_message *
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 已提交
228

229 230 231 232 233
static int
remoteCheckCertFile(const char *type, const char *file)
{
    struct stat sb;
    if (stat(file, &sb) < 0) {
234
        VIR_ERROR(_("Cannot access %s '%s': %s (%d)"),
235 236 237 238 239 240
                  type, file, strerror(errno), errno);
        return -1;
    }
    return 0;
}

241 242 243 244 245 246 247 248 249 250
static int
remoteInitializeGnuTLS (void)
{
    int err;

    /* Initialise GnuTLS. */
    gnutls_global_init ();

    err = gnutls_certificate_allocate_credentials (&x509_cred);
    if (err) {
251
        VIR_ERROR(_("gnutls_certificate_allocate_credentials: %s"),
252 253 254 255 256
                  gnutls_strerror (err));
        return -1;
    }

    if (ca_file && ca_file[0] != '\0') {
257 258 259
        if (remoteCheckCertFile("CA certificate", ca_file) < 0)
            return -1;

260 261 262 263
        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) {
264
            VIR_ERROR(_("gnutls_certificate_set_x509_trust_file: %s"),
265 266 267 268 269 270
                      gnutls_strerror (err));
            return -1;
        }
    }

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

274
        DEBUG("loading CRL from %s", crl_file);
275 276 277
        err = gnutls_certificate_set_x509_crl_file (x509_cred, crl_file,
                                                    GNUTLS_X509_FMT_PEM);
        if (err < 0) {
278
            VIR_ERROR(_("gnutls_certificate_set_x509_crl_file: %s"),
279 280 281 282 283 284
                      gnutls_strerror (err));
            return -1;
        }
    }

    if (cert_file && cert_file[0] != '\0' && key_file && key_file[0] != '\0') {
285 286 287 288
        if (remoteCheckCertFile("server certificate", cert_file) < 0)
            return -1;
        if (remoteCheckCertFile("server key", key_file) < 0)
            return -1;
289
        DEBUG("loading cert and key from %s and %s", cert_file, key_file);
290 291 292 293 294
        err =
            gnutls_certificate_set_x509_key_file (x509_cred,
                                                  cert_file, key_file,
                                                  GNUTLS_X509_FMT_PEM);
        if (err < 0) {
295
            VIR_ERROR(_("gnutls_certificate_set_x509_key_file: %s"),
296 297 298 299 300 301 302 303 304 305 306 307
                      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) {
308
        VIR_ERROR(_("gnutls_dh_params_init: %s"), gnutls_strerror (err));
309 310 311 312
        return -1;
    }
    err = gnutls_dh_params_generate2 (dh_params, DH_BITS);
    if (err < 0) {
313
        VIR_ERROR(_("gnutls_dh_params_generate2: %s"), gnutls_strerror (err));
314 315 316 317 318 319 320 321
        return -1;
    }

    gnutls_certificate_set_dh_params (x509_cred, dh_params);

    return 0;
}

322
static void
323 324
qemudDispatchSignalEvent(int watch ATTRIBUTE_UNUSED,
                         int fd ATTRIBUTE_UNUSED,
325 326
                         int events ATTRIBUTE_UNUSED,
                         void *opaque) {
D
Daniel P. Berrange 已提交
327
    struct qemud_server *server = (struct qemud_server *)opaque;
328
    siginfo_t siginfo;
329 330
    int ret;

331
    virMutexLock(&server->lock);
332

333
    if (saferead(server->sigread, &siginfo, sizeof(siginfo)) != sizeof(siginfo)) {
334
        VIR_ERROR(_("Failed to read from signal pipe: %s"), strerror(errno));
335
        virMutexUnlock(&server->lock);
D
Daniel P. Berrange 已提交
336
        return;
337 338
    }

339 340
    ret = 0;

341
    switch (siginfo.si_signo) {
342
    case SIGHUP:
343
        VIR_INFO0(_("Reloading configuration on SIGHUP"));
344
        if (virStateReload() < 0)
345
            VIR_WARN0(_("Error while reloading drivers"));
346 347 348
        break;

    case SIGINT:
349
    case SIGQUIT:
350
    case SIGTERM:
351
        VIR_WARN(_("Shutting down on signal %d"), siginfo.si_signo);
352 353 354 355
        server->shutdown = 1;
        break;

    default:
356
        VIR_INFO(_("Received unexpected signal %d"), siginfo.si_signo);
357 358 359
        break;
    }

D
Daniel P. Berrange 已提交
360 361
    if (ret != 0)
        server->shutdown = 1;
362

363
    virMutexUnlock(&server->lock);
364 365
}

366
int qemudSetCloseExec(int fd) {
D
Daniel P. Berrange 已提交
367
    int flags;
368 369
    if ((flags = fcntl(fd, F_GETFD)) < 0)
        goto error;
D
Daniel P. Berrange 已提交
370
    flags |= FD_CLOEXEC;
371 372
    if ((fcntl(fd, F_SETFD, flags)) < 0)
        goto error;
D
Daniel P. Berrange 已提交
373
    return 0;
374
 error:
375
    VIR_ERROR0(_("Failed to set close-on-exec file descriptor flag"));
376
    return -1;
D
Daniel P. Berrange 已提交
377 378 379
}


380
int qemudSetNonBlock(int fd) {
D
Daniel P. Berrange 已提交
381
    int flags;
382 383
    if ((flags = fcntl(fd, F_GETFL)) < 0)
        goto error;
D
Daniel P. Berrange 已提交
384
    flags |= O_NONBLOCK;
385 386
    if ((fcntl(fd, F_SETFL, flags)) < 0)
        goto error;
D
Daniel P. Berrange 已提交
387
    return 0;
388
 error:
389
    VIR_ERROR0(_("Failed to set non-blocking file descriptor flag"));
390 391 392
    return -1;
}

D
Daniel P. Berrange 已提交
393 394 395 396 397 398 399
static int qemudGoDaemon(void) {
    int pid = fork();
    switch (pid) {
    case 0:
        {
            int stdinfd = -1;
            int stdoutfd = -1;
400
            int nextpid;
D
Daniel P. Berrange 已提交
401

402
            if ((stdinfd = open("/dev/null", O_RDONLY)) < 0)
D
Daniel P. Berrange 已提交
403
                goto cleanup;
404
            if ((stdoutfd = open("/dev/null", O_WRONLY)) < 0)
D
Daniel P. Berrange 已提交
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
                goto cleanup;
            if (dup2(stdinfd, STDIN_FILENO) != STDIN_FILENO)
                goto cleanup;
            if (dup2(stdoutfd, STDOUT_FILENO) != STDOUT_FILENO)
                goto cleanup;
            if (dup2(stdoutfd, STDERR_FILENO) != STDERR_FILENO)
                goto cleanup;
            if (close(stdinfd) < 0)
                goto cleanup;
            stdinfd = -1;
            if (close(stdoutfd) < 0)
                goto cleanup;
            stdoutfd = -1;

            if (setsid() < 0)
                goto cleanup;

            nextpid = fork();
            switch (nextpid) {
            case 0:
                return 0;
            case -1:
                return -1;
            default:
429
                _exit(0);
D
Daniel P. Berrange 已提交
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
            }

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

        }

    case -1:
        return -1;

    default:
        {
            int got, status = 0;
            /* We wait to make sure the next child forked
               successfully */
            if ((got = waitpid(pid, &status, 0)) < 0 ||
                got != pid ||
                status != 0) {
                return -1;
            }
454
            _exit(0);
D
Daniel P. Berrange 已提交
455 456 457 458
        }
    }
}

459 460 461 462 463 464 465 466
static int qemudWritePidFile(const char *pidFile) {
    int fd;
    FILE *fh;

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

    if ((fd = open(pidFile, O_WRONLY|O_CREAT|O_EXCL, 0644)) < 0) {
467 468
        VIR_ERROR(_("Failed to open pid file '%s' : %s"),
                  pidFile, strerror(errno));
469 470 471 472
        return -1;
    }

    if (!(fh = fdopen(fd, "w"))) {
473 474
        VIR_ERROR(_("Failed to fdopen pid file '%s' : %s"),
                  pidFile, strerror(errno));
475 476 477 478 479
        close(fd);
        return -1;
    }

    if (fprintf(fh, "%lu\n", (unsigned long)getpid()) < 0) {
480 481
        VIR_ERROR(_("Failed to write to pid file '%s' : %s"),
                  pidFile, strerror(errno));
482 483 484 485 486
        close(fd);
        return -1;
    }

    if (fclose(fh) == EOF) {
487 488
        VIR_ERROR(_("Failed to close pid file '%s' : %s"),
                  pidFile, strerror(errno));
489 490 491 492 493 494
        return -1;
    }

    return 0;
}

D
Daniel P. Berrange 已提交
495
static int qemudListenUnix(struct qemud_server *server,
496
                           const char *path, int readonly, int auth) {
497
    struct qemud_socket *sock;
D
Daniel P. Berrange 已提交
498 499
    struct sockaddr_un addr;
    mode_t oldmask;
500
    gid_t oldgrp;
D
Daniel P. Berrange 已提交
501

502
    if (VIR_ALLOC(sock) < 0) {
503
        VIR_ERROR("%s", _("Failed to allocate memory for struct qemud_socket"));
D
Daniel P. Berrange 已提交
504
        return -1;
505
    }
D
Daniel P. Berrange 已提交
506 507

    sock->readonly = readonly;
508
    sock->port = -1;
509
    sock->type = QEMUD_SOCK_TYPE_UNIX;
510
    sock->auth = auth;
D
Daniel P. Berrange 已提交
511

512
    if ((sock->fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
513 514
        VIR_ERROR(_("Failed to create socket: %s"),
                  strerror(errno));
D
Daniel P. Berrange 已提交
515
        goto cleanup;
516
    }
D
Daniel P. Berrange 已提交
517

518 519
    if (qemudSetCloseExec(sock->fd) < 0 ||
        qemudSetNonBlock(sock->fd) < 0)
D
Daniel P. Berrange 已提交
520
        goto cleanup;
D
Daniel P. Berrange 已提交
521 522 523 524 525 526 527 528

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


529
    oldgrp = getgid();
530
    oldmask = umask(readonly ? ~unix_sock_ro_mask : ~unix_sock_rw_mask);
531 532 533
    if (getuid() == 0)
        setgid(unix_sock_gid);

534
    if (bind(sock->fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
535 536
        VIR_ERROR(_("Failed to bind socket to '%s': %s"),
                  path, strerror(errno));
D
Daniel P. Berrange 已提交
537
        goto cleanup;
538
    }
D
Daniel P. Berrange 已提交
539
    umask(oldmask);
540 541
    if (getuid() == 0)
        setgid(oldgrp);
D
Daniel P. Berrange 已提交
542

543
    if (listen(sock->fd, 30) < 0) {
544 545
        VIR_ERROR(_("Failed to listen for connections on '%s': %s"),
                  path, strerror(errno));
D
Daniel P. Berrange 已提交
546 547 548
        goto cleanup;
    }

549 550 551 552 553
    if ((sock->watch = virEventAddHandleImpl(sock->fd,
                                             VIR_EVENT_HANDLE_READABLE |
                                             VIR_EVENT_HANDLE_ERROR |
                                             VIR_EVENT_HANDLE_HANGUP,
                                             qemudDispatchServerEvent,
554
                                             server, NULL)) < 0) {
555
        VIR_ERROR0(_("Failed to add server event callback"));
D
Daniel P. Berrange 已提交
556
        goto cleanup;
557
    }
D
Daniel P. Berrange 已提交
558

D
Daniel P. Berrange 已提交
559 560 561 562
    sock->next = server->sockets;
    server->sockets = sock;
    server->nsockets++;

D
Daniel P. Berrange 已提交
563
    return 0;
D
Daniel P. Berrange 已提交
564 565 566 567 568 569

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

572 573
// See: http://people.redhat.com/drepper/userapi-ipv6.html
static int
574
remoteMakeSockets (int *fds, int max_fds, int *nfds_r, const char *node, const char *service)
575 576 577 578 579 580 581
{
    struct addrinfo *ai;
    struct addrinfo hints;
    memset (&hints, 0, sizeof hints);
    hints.ai_flags = AI_PASSIVE | AI_ADDRCONFIG;
    hints.ai_socktype = SOCK_STREAM;

582
    int e = getaddrinfo (node, service, &hints, &ai);
583
    if (e != 0) {
584
        VIR_ERROR(_("getaddrinfo: %s\n"), gai_strerror (e));
585 586 587 588 589 590 591 592
        return -1;
    }

    struct addrinfo *runp = ai;
    while (runp && *nfds_r < max_fds) {
        fds[*nfds_r] = socket (runp->ai_family, runp->ai_socktype,
                               runp->ai_protocol);
        if (fds[*nfds_r] == -1) {
593
            VIR_ERROR(_("socket: %s"), strerror (errno));
594 595 596 597 598 599 600 601
            return -1;
        }

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

        if (bind (fds[*nfds_r], runp->ai_addr, runp->ai_addrlen) == -1) {
            if (errno != EADDRINUSE) {
602
                VIR_ERROR(_("bind: %s"), strerror (errno));
603 604 605 606 607 608
                return -1;
            }
            close (fds[*nfds_r]);
        }
        else {
            if (listen (fds[*nfds_r], SOMAXCONN) == -1) {
609
                VIR_ERROR(_("listen: %s"), strerror (errno));
610 611 612 613 614 615
                return -1;
            }
            ++*nfds_r;
        }
        runp = runp->ai_next;
    }
616

617 618 619 620 621 622 623 624 625
    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,
626
                 const char *addr,
627
                 const char *port,
628
                 int type,
629
                 int auth)
630 631 632
{
    int fds[2];
    int nfds = 0;
633
    int i;
634 635
    struct qemud_socket *sock;

636
    if (remoteMakeSockets (fds, 2, &nfds, addr, port) == -1)
637 638 639
        return -1;

    for (i = 0; i < nfds; ++i) {
640 641 642
        struct sockaddr_storage sa;
        socklen_t salen = sizeof(sa);

643
        if (VIR_ALLOC(sock) < 0) {
644
            VIR_ERROR(_("remoteListenTCP: calloc: %s"), strerror (errno));
645
            goto cleanup;
646 647 648 649 650 651 652 653
        }

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

        sock->fd = fds[i];
654
        sock->type = type;
655
        sock->auth = auth;
D
Daniel P. Berrange 已提交
656

657
        if (getsockname(sock->fd, (struct sockaddr *)(&sa), &salen) < 0)
658
            goto cleanup;
659 660 661

        if (sa.ss_family == AF_INET)
            sock->port = htons(((struct sockaddr_in*)&sa)->sin_port);
662
#ifdef AF_INET6
663 664
        else if (sa.ss_family == AF_INET6)
            sock->port = htons(((struct sockaddr_in6*)&sa)->sin6_port);
665
#endif
666 667 668
        else
            sock->port = -1;

669 670
        if (qemudSetCloseExec(sock->fd) < 0 ||
            qemudSetNonBlock(sock->fd) < 0)
671
            goto cleanup;
672 673

        if (listen (sock->fd, 30) < 0) {
674
            VIR_ERROR(_("remoteListenTCP: listen: %s"), strerror (errno));
675
            goto cleanup;
676
        }
D
Daniel P. Berrange 已提交
677

678 679 680 681 682
        if ((sock->watch = virEventAddHandleImpl(sock->fd,
                                                 VIR_EVENT_HANDLE_READABLE |
                                                 VIR_EVENT_HANDLE_ERROR |
                                                 VIR_EVENT_HANDLE_HANGUP,
                                                 qemudDispatchServerEvent,
683
                                                 server, NULL)) < 0) {
684
            VIR_ERROR0(_("Failed to add server event callback"));
685
            goto cleanup;
D
Daniel P. Berrange 已提交
686 687
        }

688 689 690
    }

    return 0;
691 692 693 694 695

cleanup:
    for (i = 0; i < nfds; ++i)
        close(fds[0]);
    return -1;
696 697 698 699 700
}

static int qemudInitPaths(struct qemud_server *server,
                          char *sockname,
                          char *roSockname,
J
John Levon 已提交
701 702
                          int maxlen)
{
703
    uid_t uid = geteuid();
704

J
John Levon 已提交
705
    if (uid == SYSTEM_UID) {
706 707
        if (snprintf (sockname, maxlen, "%s/run/libvirt/libvirt-sock",
                      LOCAL_STATE_DIR) >= maxlen)
708 709
            goto snprintf_error;

D
Daniel P. Berrange 已提交
710 711
        unlink(sockname);

712 713
        if (snprintf (roSockname, maxlen, "%s/run/libvirt/libvirt-sock-ro",
                      LOCAL_STATE_DIR) >= maxlen)
714
            goto snprintf_error;
D
Daniel P. Berrange 已提交
715

716
        unlink(roSockname);
D
Daniel P. Berrange 已提交
717

718
        if (snprintf(server->logDir, PATH_MAX, "%s/log/libvirt/", LOCAL_STATE_DIR) >= PATH_MAX)
D
Daniel P. Berrange 已提交
719
            goto snprintf_error;
D
Daniel P. Berrange 已提交
720
    } else {
721
        char *userdir = virGetUserDirectory(NULL, uid);
722 723 724 725
        if (userdir == NULL) {
            /* Do not diagnose here; virGetUserDirectory does that.  */
            return -1;
        }
726

727 728
        if (snprintf(sockname, maxlen, "@%s/.libvirt/libvirt-sock", userdir) >= maxlen) {
            VIR_FREE(userdir);
729
            goto snprintf_error;
730
        }
731

732 733
        if (snprintf(server->logDir, PATH_MAX, "%s/.libvirt/log", userdir) >= PATH_MAX) {
            VIR_FREE(userdir);
734
            goto snprintf_error;
735 736
        }
        VIR_FREE(userdir);
737 738
    } /* !remote */

D
Daniel P. Berrange 已提交
739
    return 0;
740 741

 snprintf_error:
742
    VIR_ERROR("%s", _("Resulting path too long for buffer in qemudInitPaths()"));
743
    return -1;
D
Daniel P. Berrange 已提交
744 745
}

746
static struct qemud_server *qemudInitialize(int sigread) {
D
Daniel P. Berrange 已提交
747 748
    struct qemud_server *server;

749
    if (VIR_ALLOC(server) < 0) {
750
        VIR_ERROR0(_("Failed to allocate struct qemud_server"));
D
Daniel P. Berrange 已提交
751
        return NULL;
752
    }
D
Daniel P. Berrange 已提交
753

754 755 756 757 758 759 760
    if (virMutexInit(&server->lock) < 0) {
        VIR_ERROR("%s", _("cannot initialize mutex"));
        VIR_FREE(server);
    }
    if (virCondInit(&server->job) < 0) {
        VIR_ERROR("%s", _("cannot initialize condition variable"));
        virMutexDestroy(&server->lock);
761 762 763
        VIR_FREE(server);
    }

764
    server->sigread = sigread;
D
Daniel P. Berrange 已提交
765

766
    if (virEventInit() < 0) {
767
        VIR_ERROR0(_("Failed to initialize event system"));
768 769 770 771
        VIR_FREE(server);
        return NULL;
    }

772 773
    virInitialize();

774 775 776 777 778 779 780
    /*
     * 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.
     */
781 782 783 784 785 786 787 788
#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.
     * If they try to use a open a connection for a module that
     * is not loaded they'll get a suitable error at that point
     */
    virDriverLoadModule("network");
    virDriverLoadModule("storage");
789
    virDriverLoadModule("nodedev");
790 791 792
    virDriverLoadModule("qemu");
    virDriverLoadModule("lxc");
    virDriverLoadModule("uml");
793
#else
794 795 796 797 798
#ifdef WITH_NETWORK
    networkRegister();
#endif
#ifdef WITH_STORAGE_DIR
    storageRegister();
799
#endif
800 801
#if defined(WITH_NODE_DEVICES) && \
    (defined(HAVE_HAL) || defined(HAVE_DEVKIT))
802 803
    nodedevRegister();
#endif
804 805 806 807 808 809 810 811 812
#ifdef WITH_QEMU
    qemuRegister();
#endif
#ifdef WITH_LXC
    lxcRegister();
#endif
#ifdef WITH_UML
    umlRegister();
#endif
813 814
#endif

815 816 817 818 819 820
    virEventRegisterImpl(virEventAddHandleImpl,
                         virEventUpdateHandleImpl,
                         virEventRemoveHandleImpl,
                         virEventAddTimeoutImpl,
                         virEventUpdateTimeoutImpl,
                         virEventRemoveTimeoutImpl);
821

822 823
    virStateInitialize();

824 825 826 827 828 829 830
    return server;
}

static struct qemud_server *qemudNetworkInit(struct qemud_server *server) {
    struct qemud_socket *sock;
    char sockname[PATH_MAX];
    char roSockname[PATH_MAX];
831
#if HAVE_SASL
832 833 834 835 836 837 838 839 840
    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)
841
        goto cleanup;
842 843 844 845 846 847 848 849 850 851

    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) {
852 853
            VIR_ERROR(_("Failed to initialize SASL authentication %s"),
                      sasl_errstring(err, NULL, NULL));
854 855
            goto cleanup;
        }
856 857 858
    }
#endif

859 860 861 862 863 864 865
#ifdef HAVE_POLKIT
    if (auth_unix_rw == REMOTE_AUTH_POLKIT ||
        auth_unix_ro == REMOTE_AUTH_POLKIT) {
        DBusError derr;
        dbus_error_init(&derr);
        server->sysbus = dbus_bus_get(DBUS_BUS_SYSTEM, &derr);
        if (!(server->sysbus)) {
866 867
            VIR_ERROR(_("Failed to connect to system bus for PolicyKit auth: %s"),
                      derr.message);
868 869 870 871 872 873
            dbus_error_free(&derr);
            goto cleanup;
        }
    }
#endif

874
    if (ipsock) {
875
        if (listen_tcp && remoteListenTCP (server, listen_addr, tcp_port, QEMUD_SOCK_TYPE_TCP, auth_tcp) < 0)
876 877 878 879 880 881
            goto cleanup;

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

882
            if (remoteListenTCP (server, listen_addr, tls_port, QEMUD_SOCK_TYPE_TLS, auth_tls) < 0)
883 884
                goto cleanup;
        }
D
Daniel P. Berrange 已提交
885 886
    }

887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
#ifdef HAVE_AVAHI
    if (getuid() == 0 && mdns_adv) {
        struct libvirtd_mdns_group *group;
        int port = 0;

        server->mdns = libvirtd_mdns_new();

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

908
        /*
909 910 911 912 913 914
         * 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) {
915
            if (sock->port != -1 && sock->type == QEMUD_SOCK_TYPE_TLS) {
916 917 918 919 920
                port = sock->port;
                break;
            }
            sock = sock->next;
        }
921

922 923 924 925 926 927 928 929 930
        /*
         * Add the primary entry - we choose SSH because its most likely to always
         * be available
         */
        libvirtd_mdns_add_entry(group, "_libvirt._tcp", port);
        libvirtd_mdns_start(server->mdns);
    }
#endif

D
Daniel P. Berrange 已提交
931 932 933 934
    return server;

 cleanup:
    if (server) {
935
        sock = server->sockets;
D
Daniel P. Berrange 已提交
936 937 938 939 940
        while (sock) {
            close(sock->fd);
            sock = sock->next;
        }

941 942 943 944
#ifdef HAVE_POLKIT
        if (server->sysbus)
            dbus_connection_unref(server->sysbus);
#endif
D
Daniel P. Berrange 已提交
945 946 947 948 949
        free(server);
    }
    return NULL;
}

950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976
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:
977
  VIR_ERROR(_("remoteInitializeTLSSession: %s"),
978 979 980 981 982 983 984 985 986 987
            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;
988
    char **wildcards;
989 990 991 992
    int err;

    err = gnutls_x509_crt_get_dn (cert, name, &namesize);
    if (err != 0) {
993
        VIR_ERROR(_("remoteCheckDN: gnutls_x509_cert_get_dn: %s"),
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
                  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. */
1010
    DEBUG(_("remoteCheckDN: failed: client DN is %s"), name);
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024

    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){
1025
        VIR_ERROR(_("remoteCheckCertificate: verify failed: %s"),
1026 1027 1028 1029 1030 1031
                  gnutls_strerror (ret));
        return -1;
    }

    if (status != 0) {
        if (status & GNUTLS_CERT_INVALID)
1032 1033
            VIR_ERROR0(_("remoteCheckCertificate: "
                         "the client certificate is not trusted."));
1034 1035

        if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
1036 1037
            VIR_ERROR0(_("remoteCheckCertificate: the client "
                         "certificate has unknown issuer."));
1038 1039

        if (status & GNUTLS_CERT_REVOKED)
1040 1041
            VIR_ERROR0(_("remoteCheckCertificate: "
                         "the client certificate has been revoked."));
1042

1043
#ifndef GNUTLS_1_0_COMPAT
1044
        if (status & GNUTLS_CERT_INSECURE_ALGORITHM)
1045 1046
            VIR_ERROR0(_("remoteCheckCertificate: the client certificate"
                         " uses an insecure algorithm."));
1047
#endif
1048 1049 1050 1051 1052

        return -1;
    }

    if (gnutls_certificate_type_get (session) != GNUTLS_CRT_X509) {
1053
        VIR_ERROR0(_("remoteCheckCertificate: certificate is not X.509"));
1054 1055 1056 1057
        return -1;
    }

    if (!(certs = gnutls_certificate_get_peers(session, &nCerts))) {
1058
        VIR_ERROR0(_("remoteCheckCertificate: no peers"));
1059 1060 1061 1062 1063 1064 1065 1066 1067
        return -1;
    }

    now = time (NULL);

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

        if (gnutls_x509_crt_init (&cert) < 0) {
1068
            VIR_ERROR0(_("remoteCheckCertificate: gnutls_x509_crt_init failed"));
1069 1070 1071 1072 1073 1074 1075
            return -1;
        }

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

1077
        if (gnutls_x509_crt_get_expiration_time (cert) < now) {
1078 1079
            VIR_ERROR0(_("remoteCheckCertificate: "
                         "the client certificate has expired"));
1080 1081 1082
            gnutls_x509_crt_deinit (cert);
            return -1;
        }
1083

1084
        if (gnutls_x509_crt_get_activation_time (cert) > now) {
1085 1086
            VIR_ERROR0(_("remoteCheckCertificate: the client "
                         "certificate is not yet activated"));
1087 1088 1089 1090 1091 1092 1093
            gnutls_x509_crt_deinit (cert);
            return -1;
        }

        if (i == 0) {
            if (!remoteCheckDN (cert)) {
                /* This is the most common error: make it informative. */
1094
                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."));
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107
                gnutls_x509_crt_deinit (cert);
                return -1;
            }
        }
    }

    return 0;
}

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

1110
    /* Verify client certificate. */
1111
    if (remoteCheckCertificate (client->tlssession) == -1) {
1112 1113
        VIR_ERROR0(_("remoteCheckCertificate: "
                     "failed to verify client's certificate"));
1114
        if (!tls_no_verify_certificate) return -1;
1115 1116
        else VIR_INFO0(_("remoteCheckCertificate: tls_no_verify_certificate "
                          "is set so the bad certificate is ignored"));
1117 1118
    }

1119 1120 1121 1122 1123 1124 1125 1126 1127
    if (client->tx) {
        VIR_INFO("%s",
                 _("client had unexpected data pending tx after access check"));
        return -1;
    }

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

1128 1129 1130 1131
    /* 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).
     */
1132 1133 1134 1135 1136 1137
    confirm->async = 1;
    confirm->bufferLength = 1;
    confirm->bufferOffset = 0;
    confirm->buffer[0] = '\1';

    client->tx = confirm;
1138 1139
    return 0;
}
D
Daniel P. Berrange 已提交
1140

1141 1142 1143 1144 1145 1146 1147
#if HAVE_POLKIT
int qemudGetSocketIdentity(int fd, uid_t *uid, pid_t *pid) {
#ifdef SO_PEERCRED
    struct ucred cr;
    unsigned int cr_len = sizeof (cr);

    if (getsockopt (fd, SOL_SOCKET, SO_PEERCRED, &cr, &cr_len) < 0) {
1148 1149
        VIR_ERROR(_("Failed to verify client credentials: %s"),
                  strerror(errno));
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162
        return -1;
    }

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

1163

D
Daniel P. Berrange 已提交
1164 1165 1166
static int qemudDispatchServer(struct qemud_server *server, struct qemud_socket *sock) {
    int fd;
    struct sockaddr_storage addr;
1167
    socklen_t addrlen = (socklen_t) (sizeof addr);
D
Daniel P. Berrange 已提交
1168
    struct qemud_client *client;
1169
    int no_slow_start = 1;
D
Daniel P. Berrange 已提交
1170 1171 1172 1173

    if ((fd = accept(sock->fd, (struct sockaddr *)&addr, &addrlen)) < 0) {
        if (errno == EAGAIN)
            return 0;
1174
        VIR_ERROR(_("Failed to accept connection: %s"), strerror(errno));
D
Daniel P. Berrange 已提交
1175 1176 1177
        return -1;
    }

1178
    if (server->nclients >= max_clients) {
1179
        VIR_ERROR(_("Too many active clients (%d), dropping connection"), max_clients);
1180 1181 1182 1183
        close(fd);
        return -1;
    }

1184
    if (VIR_REALLOC_N(server->clients, server->nclients+1) < 0) {
1185
        VIR_ERROR0(_("Out of memory allocating clients"));
1186 1187 1188 1189
        close(fd);
        return -1;
    }

J
John Levon 已提交
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
#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 */

1213 1214 1215 1216
    /* Disable Nagle.  Unix sockets will ignore this. */
    setsockopt (fd, IPPROTO_TCP, TCP_NODELAY, (void *)&no_slow_start,
                sizeof no_slow_start);

1217 1218
    if (qemudSetCloseExec(fd) < 0 ||
        qemudSetNonBlock(fd) < 0) {
D
Daniel P. Berrange 已提交
1219 1220 1221 1222
        close(fd);
        return -1;
    }

1223
    if (VIR_ALLOC(client) < 0)
1224
        goto cleanup;
1225 1226 1227
    if (virMutexInit(&client->lock) < 0) {
        VIR_ERROR("%s", _("cannot initialize mutex"));
        VIR_FREE(client);
1228
        goto cleanup;
1229
    }
1230

1231
    client->magic = QEMUD_CLIENT_MAGIC;
D
Daniel P. Berrange 已提交
1232 1233
    client->fd = fd;
    client->readonly = sock->readonly;
1234
    client->type = sock->type;
1235
    client->auth = sock->auth;
1236 1237
    memcpy (&client->addr, &addr, sizeof addr);
    client->addrlen = addrlen;
1238
    client->server = server;
1239

1240 1241 1242 1243 1244 1245
    /* Prepare one for packet receive */
    if (VIR_ALLOC(client->rx) < 0)
        goto cleanup;
    client->rx->bufferLength = REMOTE_MESSAGE_HEADER_XDR_LEN;


1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257
#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;

1258
        /* Client is running as root, so disable auth */
1259
        if (uid == 0) {
1260
            VIR_INFO(_("Turn off polkit auth for privileged client %d"), pid);
1261 1262 1263 1264 1265
            client->auth = REMOTE_AUTH_NONE;
        }
    }
#endif

1266
    if (client->type != QEMUD_SOCK_TYPE_TLS) {
1267
        /* Plain socket, so prepare to read first message */
D
Daniel P. Berrange 已提交
1268 1269
        if (qemudRegisterClientEvent (server, client, 0) < 0)
            goto cleanup;
1270 1271 1272
    } else {
        int ret;

1273 1274
        client->tlssession = remoteInitializeTLSSession ();
        if (client->tlssession == NULL)
D
Daniel P. Berrange 已提交
1275
            goto cleanup;
1276

1277
        gnutls_transport_set_ptr (client->tlssession,
1278 1279 1280
                                  (gnutls_transport_ptr_t) (long) fd);

        /* Begin the TLS handshake. */
1281
        ret = gnutls_handshake (client->tlssession);
1282 1283 1284
        if (ret == 0) {
            /* Unlikely, but ...  Next step is to check the certificate. */
            if (remoteCheckAccess (client) == -1)
D
Daniel P. Berrange 已提交
1285 1286
                goto cleanup;

1287
            /* Handshake & cert check OK,  so prepare to read first message */
D
Daniel P. Berrange 已提交
1288 1289
            if (qemudRegisterClientEvent(server, client, 0) < 0)
                goto cleanup;
1290
        } else if (ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN) {
1291 1292
            /* Most likely, need to do more handshake data */
            client->handshake = 1;
D
Daniel P. Berrange 已提交
1293 1294 1295

            if (qemudRegisterClientEvent (server, client, 0) < 0)
                goto cleanup;
1296
        } else {
1297
            VIR_ERROR(_("TLS handshake failed: %s"),
1298
                      gnutls_strerror (ret));
D
Daniel P. Berrange 已提交
1299
            goto cleanup;
1300 1301
        }
    }
D
Daniel P. Berrange 已提交
1302

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

1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318
    if (server->nclients > server->nactiveworkers &&
        server->nactiveworkers < server->nworkers) {
        int i;
        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 已提交
1319
    return 0;
1320

D
Daniel P. Berrange 已提交
1321
 cleanup:
1322 1323
    if (client &&
        client->tlssession) gnutls_deinit (client->tlssession);
1324
    close (fd);
1325 1326
    VIR_FREE(client->rx);
    VIR_FREE(client);
1327
    return -1;
D
Daniel P. Berrange 已提交
1328 1329 1330
}


1331 1332 1333 1334 1335 1336 1337
/*
 * 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
 */
1338
void qemudDispatchClientFailure(struct qemud_client *client) {
1339
    virEventRemoveHandleImpl(client->watch);
D
Daniel P. Berrange 已提交
1340

1341 1342
    /* Deregister event delivery callback */
    if(client->conn) {
1343
        DEBUG0("Deregistering to relay remote events");
1344 1345 1346
        virConnectDomainEventDeregister(client->conn, remoteRelayDomainEvent);
    }

1347 1348
#if HAVE_SASL
    if (client->saslconn) sasl_dispose(&client->saslconn);
1349
    free(client->saslUsername);
1350
#endif
1351
    if (client->tlssession) gnutls_deinit (client->tlssession);
D
Daniel P. Berrange 已提交
1352
    close(client->fd);
1353 1354 1355 1356 1357 1358 1359 1360 1361
    client->fd = -1;
}


/* Caller must hold server lock */
static struct qemud_client *qemudPendingJob(struct qemud_server *server)
{
    int i;
    for (i = 0 ; i < server->nclients ; i++) {
1362
        virMutexLock(&server->clients[i]->lock);
1363
        if (server->clients[i]->dx) {
1364 1365 1366
            /* Delibrately don't unlock client - caller wants the lock */
            return server->clients[i];
        }
1367
        virMutexUnlock(&server->clients[i]->lock);
1368 1369
    }
    return NULL;
D
Daniel P. Berrange 已提交
1370 1371
}

1372 1373
static void *qemudWorker(void *data)
{
1374 1375
    struct qemud_worker *worker = data;
    struct qemud_server *server = worker->server;
1376 1377

    while (1) {
1378 1379 1380
        struct qemud_client *client = NULL;
        struct qemud_client_message *reply;

1381
        virMutexLock(&server->lock);
1382 1383
        while (((client = qemudPendingJob(server)) == NULL) &&
               !worker->quitRequest) {
1384 1385 1386 1387 1388
            if (virCondWait(&server->job, &server->lock) < 0) {
                virMutexUnlock(&server->lock);
                return NULL;
            }
        }
1389 1390 1391 1392 1393 1394 1395
        if (worker->quitRequest) {
            if (client)
                virMutexUnlock(&client->lock);
            virMutexUnlock(&server->lock);
            return NULL;
        }
        worker->processingCall = 1;
1396
        virMutexUnlock(&server->lock);
1397 1398 1399 1400

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

1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412
        /* Remove our message from dispatch queue while we use it */
        reply = qemudClientMessageQueueServe(&client->dx);

        /* This function drops the lock during dispatch,
         * and re-acquires it before returning */
        if (remoteDispatchClientRequest (server, client, reply) < 0) {
            VIR_FREE(reply);
            qemudDispatchClientFailure(client);
            client->refs--;
            virMutexUnlock(&client->lock);
            continue;
        }
1413

1414 1415
        /* Put reply on end of tx queue to send out  */
        qemudClientMessageQueuePush(&client->tx, reply);
1416 1417

        if (qemudRegisterClientEvent(server, client, 1) < 0)
1418
            qemudDispatchClientFailure(client);
1419 1420

        client->refs--;
1421
        virMutexUnlock(&client->lock);
1422 1423 1424 1425

        virMutexLock(&server->lock);
        worker->processingCall = 0;
        virMutexUnlock(&server->lock);
1426 1427
    }
}
D
Daniel P. Berrange 已提交
1428

1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455
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 已提交
1456

1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
/*
 * 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) {
1470 1471
        VIR_ERROR(_("unexpected negative length request %lld"),
                  (long long int) len);
1472 1473 1474
        qemudDispatchClientFailure(client);
        return -1;
    }
1475 1476 1477

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

1478
    if (!client->tlssession) {
1479 1480 1481 1482 1483 1484 1485 1486
        ret = read (client->fd, data, len);
        if (ret == -1 && (errno == EAGAIN ||
                          errno == EINTR))
            return 0;
        if (ret <= 0) {
            if (ret != 0)
                VIR_ERROR(_("read: %s"), strerror (errno));
            qemudDispatchClientFailure(client);
1487 1488 1489
            return -1;
        }
    } else {
1490
        ret = gnutls_record_recv (client->tlssession, data, len);
1491 1492 1493 1494 1495 1496 1497 1498 1499

        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);
1500 1501
            return -1;
        }
D
Daniel P. Berrange 已提交
1502
    }
1503

1504 1505 1506
    return ret;
}

1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
/*
 * 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 已提交
1525 1526
}

1527
#if HAVE_SASL
1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
/*
 * 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;
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547

    /* 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) {
1548
        int ret;
1549
        char encoded[8192];
1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561
        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);
1562
            return -1;
1563
        }
1564 1565 1566 1567 1568 1569

        client->saslDecodedOffset = 0;
    }

    /* Some buffered decoded data to return now */
    got = client->saslDecodedLength - client->saslDecodedOffset;
1570
    want = client->rx->bufferLength - client->rx->bufferOffset;
1571 1572 1573 1574

    if (want > got)
        want = got;

1575
    memcpy(client->rx->buffer + client->rx->bufferOffset,
1576 1577
           client->saslDecoded + client->saslDecodedOffset, want);
    client->saslDecodedOffset += want;
1578
    client->rx->bufferOffset += want;
1579 1580 1581 1582 1583 1584

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

1585
    return want;
1586 1587 1588
}
#endif

1589 1590 1591 1592 1593
/*
 * 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) {
1594 1595
#if HAVE_SASL
    if (client->saslSSF & QEMUD_SASL_SSF_READ)
1596
        return qemudClientReadSASL(client);
1597 1598
    else
#endif
1599
        return qemudClientReadPlain(client);
1600 1601 1602
}


1603 1604 1605 1606 1607
/*
 * Read data until we get a complete message to process
 */
static void qemudDispatchClientRead(struct qemud_server *server,
                                    struct qemud_client *client) {
1608
    /*qemudDebug ("qemudDispatchClientRead: mode = %d", client->mode);*/
D
Daniel P. Berrange 已提交
1609

1610 1611 1612
readmore:
    if (qemudClientRead(client) < 0)
        return; /* Error */
1613

1614 1615
    if (client->rx->bufferOffset < client->rx->bufferLength)
        return; /* Still not read enough */
1616

1617 1618 1619 1620
    /* Either done with length word header */
    if (client->rx->bufferLength == REMOTE_MESSAGE_HEADER_XDR_LEN) {
        unsigned int len;
        XDR x;
1621

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

1624 1625
        if (!xdr_u_int(&x, &len)) {
            xdr_destroy (&x);
1626
            DEBUG0("Failed to decode packet length");
1627
            qemudDispatchClientFailure(client);
D
Daniel P. Berrange 已提交
1628 1629
            return;
        }
1630
        xdr_destroy (&x);
1631

1632 1633 1634
        if (len < REMOTE_MESSAGE_HEADER_XDR_LEN) {
            DEBUG("Packet length %u too small", len);
            qemudDispatchClientFailure(client);
1635
            return;
D
Daniel P. Berrange 已提交
1636
        }
1637

1638 1639 1640 1641 1642 1643
        /* 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);
1644 1645 1646
            return;
        }

1647 1648
        /* Prepare to read rest of message */
        client->rx->bufferLength += len;
1649

D
Daniel P. Berrange 已提交
1650
        if (qemudRegisterClientEvent(server, client, 1) < 0) {
1651
            qemudDispatchClientFailure(client);
D
Daniel P. Berrange 已提交
1652 1653 1654
            return;
        }

1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668
        /* Try and read payload immediately instead of going back
           into poll() because chances are the data is already
           waiting for us */
        goto readmore;
    } else {
        /* Move completed message to the end of the dispatch queue */
        qemudClientMessageQueuePush(&client->dx, client->rx);
        client->rx = NULL;
        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 已提交
1669
        } else {
1670 1671 1672 1673 1674 1675 1676 1677
            if (client->rx)
                client->rx->bufferLength = REMOTE_MESSAGE_HEADER_XDR_LEN;

            if (qemudRegisterClientEvent(server, client, 1) < 0)
                qemudDispatchClientFailure(client);
            else
                /* Tell one of the workers to get on with it... */
                virCondSignal(&server->job);
D
Daniel P. Berrange 已提交
1678
        }
D
Daniel P. Berrange 已提交
1679 1680 1681 1682
    }
}


1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
/*
 * 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) {
1696 1697
        VIR_ERROR(_("unexpected negative length request %lld"),
                  (long long int) len);
1698 1699 1700 1701
        qemudDispatchClientFailure(client);
        return -1;
    }

1702
    if (!client->tlssession) {
1703 1704 1705
        if ((ret = write(client->fd, data, len)) == -1) {
            if (errno == EAGAIN || errno == EINTR)
                return 0;
1706
            VIR_ERROR(_("write: %s"), strerror (errno));
1707
            qemudDispatchClientFailure(client);
1708 1709 1710
            return -1;
        }
    } else {
1711
        ret = gnutls_record_send (client->tlssession, data, len);
1712 1713 1714 1715 1716 1717 1718
        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);
1719 1720
            return -1;
        }
D
Daniel P. Berrange 已提交
1721
    }
1722 1723
    return ret;
}
1724

1725

1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741
/*
 * 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 已提交
1742 1743 1744
}


1745
#if HAVE_SASL
1746 1747 1748 1749 1750 1751 1752 1753 1754
/*
 * Send client->tx using SASL encoding
 *
 * Returns:
 *   -1 on error
 *    0 on EAGAIN
 *    n number of bytes
 */
static int qemudClientWriteSASL(struct qemud_client *client) {
1755 1756 1757 1758
    int ret;

    /* Not got any pending encoded data, so we need to encode raw stuff */
    if (client->saslEncoded == NULL) {
1759 1760 1761
        ret = sasl_encode(client->saslconn,
                          client->tx->buffer + client->tx->bufferOffset,
                          client->tx->bufferLength - client->tx->bufferOffset,
1762 1763 1764
                          &client->saslEncoded,
                          &client->saslEncodedLength);

1765 1766 1767 1768 1769 1770 1771
        if (ret != SASL_OK) {
            VIR_ERROR(_("failed to encode SASL data %s"),
                      sasl_errstring(ret, NULL, NULL));
            qemudDispatchClientFailure(client);
            return -1;
        }

1772 1773 1774 1775
        client->saslEncodedOffset = 0;
    }

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

1780 1781
    if (ret <= 0)
        return ret; /* -1 error, 0 == egain */
1782 1783 1784 1785 1786 1787 1788 1789

    /* 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;
1790 1791 1792

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

1795
    return ret;
1796 1797 1798
}
#endif

1799 1800 1801 1802 1803 1804 1805 1806 1807
/*
 * 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) {
1808 1809
#if HAVE_SASL
    if (client->saslSSF & QEMUD_SASL_SSF_WRITE)
1810
        return qemudClientWriteSASL(client);
1811 1812
    else
#endif
1813
        return qemudClientWritePlain(client);
1814 1815 1816
}


1817 1818 1819 1820 1821
/*
 * Process all queued client->tx messages until
 * we would block on I/O
 */
static void
1822 1823
qemudDispatchClientWrite(struct qemud_server *server,
                         struct qemud_client *client) {
1824 1825
    while (client->tx) {
        ssize_t ret;
1826

1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852
        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);

            /* If its not an async message, then we have
             * just completed an RPC request */
            if (!reply->async)
                client->nrequests--;

            /* Move record to end of 'rx' ist */
            if (!client->rx &&
                client->nrequests < max_client_requests) {
                /* Reset message record for next RX attempt */
                client->rx = reply;
                client->rx->bufferOffset = 0;
                client->rx->bufferLength = REMOTE_MESSAGE_HEADER_XDR_LEN;
1853
            } else {
1854
                VIR_FREE(reply);
1855
            }
1856

1857 1858 1859 1860
            if (client->closing ||
                qemudRegisterClientEvent (server, client, 1) < 0)
                 qemudDispatchClientFailure(client);
         }
1861
    }
1862
}
1863

1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887
static void
qemudDispatchClientHandshake(struct qemud_server *server,
                             struct qemud_client *client) {
    int ret;
    /* Continue the handshake. */
    ret = gnutls_handshake (client->tlssession);
    if (ret == 0) {
        /* Finished.  Next step is to check the certificate. */
        if (remoteCheckAccess (client) == -1)
            qemudDispatchClientFailure(client);
        else if (qemudRegisterClientEvent (server, client, 1))
            qemudDispatchClientFailure(client);
    } 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 */
        if (qemudRegisterClientEvent (server, client, 1))
            qemudDispatchClientFailure(client);
    } else {
        /* Fatal error in handshake */
        VIR_ERROR(_("TLS handshake failed: %s"),
                  gnutls_strerror (ret));
        qemudDispatchClientFailure(client);
D
Daniel P. Berrange 已提交
1888 1889 1890
    }
}

1891
static void
1892
qemudDispatchClientEvent(int watch, int fd, int events, void *opaque) {
D
Daniel P. Berrange 已提交
1893
    struct qemud_server *server = (struct qemud_server *)opaque;
1894 1895
    struct qemud_client *client = NULL;
    int i;
1896

1897
    virMutexLock(&server->lock);
1898

1899
    for (i = 0 ; i < server->nclients ; i++) {
1900
        virMutexLock(&server->clients[i]->lock);
1901 1902
        if (server->clients[i]->watch == watch) {
            client = server->clients[i];
D
Daniel P. Berrange 已提交
1903
            break;
1904
        }
1905
        virMutexUnlock(&server->clients[i]->lock);
D
Daniel P. Berrange 已提交
1906
    }
1907

1908 1909
    virMutexUnlock(&server->lock);

1910
    if (!client) {
D
Daniel P. Berrange 已提交
1911
        return;
1912 1913
    }

1914 1915
    if (client->fd != fd) {
        virMutexUnlock(&client->lock);
1916
        return;
1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935
    }

    if (events & (VIR_EVENT_HANDLE_WRITABLE |
                  VIR_EVENT_HANDLE_READABLE)) {
        if (client->handshake) {
            qemudDispatchClientHandshake(server, client);
        } else {
            if (events & VIR_EVENT_HANDLE_WRITABLE)
                qemudDispatchClientWrite(server, client);
            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);
1936

1937
    virMutexUnlock(&client->lock);
D
Daniel P. Berrange 已提交
1938 1939
}

1940 1941 1942 1943 1944 1945
int qemudRegisterClientEvent(struct qemud_server *server,
                             struct qemud_client *client,
                             int update) {
    int mode = 0;

    if (client->handshake) {
1946
        if (gnutls_record_get_direction (client->tlssession) == 0)
1947
            mode |= VIR_EVENT_HANDLE_READABLE;
1948
        else
1949 1950 1951 1952 1953 1954
            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;
1955

1956 1957 1958 1959
        /* 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;
1960 1961
    }

1962 1963 1964 1965 1966 1967 1968
    if (update) {
        virEventUpdateHandleImpl(client->watch, mode);
    } else {
        if ((client->watch = virEventAddHandleImpl(client->fd,
                                                   mode,
                                                   qemudDispatchClientEvent,
                                                   server, NULL)) < 0)
D
Daniel P. Berrange 已提交
1969
            return -1;
1970
    }
D
Daniel P. Berrange 已提交
1971 1972 1973 1974

    return 0;
}

1975
static void
1976
qemudDispatchServerEvent(int watch, int fd, int events, void *opaque) {
D
Daniel P. Berrange 已提交
1977
    struct qemud_server *server = (struct qemud_server *)opaque;
1978 1979
    struct qemud_socket *sock;

1980
    virMutexLock(&server->lock);
1981 1982

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

D
Daniel P. Berrange 已提交
1984
    while (sock) {
1985
        if (sock->watch == watch)
D
Daniel P. Berrange 已提交
1986 1987 1988
            break;

        sock = sock->next;
D
Daniel P. Berrange 已提交
1989
    }
D
Daniel P. Berrange 已提交
1990

1991
    if (sock && sock->fd == fd && events)
D
Daniel P. Berrange 已提交
1992
        qemudDispatchServer(server, sock);
1993

1994
    virMutexUnlock(&server->lock);
D
Daniel P. Berrange 已提交
1995 1996 1997
}


1998
static int qemudOneLoop(void) {
1999
    sig_atomic_t errors;
D
Daniel P. Berrange 已提交
2000

D
Daniel P. Berrange 已提交
2001
    if (virEventRunOnce() < 0)
D
Daniel P. Berrange 已提交
2002 2003
        return -1;

2004 2005 2006 2007
    /* Check for any signal handling errors and log them. */
    errors = sig_errors;
    if (errors) {
        sig_errors -= errors;
2008
        VIR_ERROR(_("Signal handler reported %d errors: last error: %s"),
2009 2010 2011 2012
                  errors, strerror (sig_lasterrno));
        return -1;
    }

D
Daniel P. Berrange 已提交
2013 2014 2015
    return 0;
}

2016 2017
static void qemudInactiveTimer(int timer ATTRIBUTE_UNUSED, void *data) {
    struct qemud_server *server = (struct qemud_server *)data;
2018
    DEBUG0("Got inactive timer expiry");
2019
    if (!virStateActive()) {
2020
        DEBUG0("No state active, shutting down");
2021 2022 2023 2024
        server->shutdown = 1;
    }
}

2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047
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);
    }

    if (client->conn)
        virConnectClose(client->conn);
    virMutexDestroy(&client->lock);
    VIR_FREE(client);
}

2048
static int qemudRunLoop(struct qemud_server *server) {
2049
    int timerid = -1;
2050 2051
    int ret = -1, i;

2052
    virMutexLock(&server->lock);
2053

2054 2055 2056 2057
    if (min_workers > max_workers)
        max_workers = min_workers;

    server->nworkers = max_workers;
2058
    if (VIR_ALLOC_N(server->workers, server->nworkers) < 0) {
2059
        VIR_ERROR0(_("Failed to allocate workers"));
2060 2061 2062
        return -1;
    }

2063 2064 2065 2066
    for (i = 0 ; i < min_workers ; i++) {
        if (qemudStartWorker(server, &server->workers[i]) < 0)
            goto cleanup;
        server->nactiveworkers++;
2067
    }
2068 2069 2070 2071 2072 2073 2074

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

2081
        virMutexUnlock(&server->lock);
2082 2083 2084
        if (qemudOneLoop() < 0) {
            virMutexLock(&server->lock);
            DEBUG0("Loop iteration error, exiting\n");
2085
            break;
2086
        }
2087
        virMutexLock(&server->lock);
2088 2089 2090 2091

    reprocess:
        for (i = 0 ; i < server->nclients ; i++) {
            int inactive;
2092
            virMutexLock(&server->clients[i]->lock);
2093 2094
            inactive = server->clients[i]->fd == -1
                && server->clients[i]->refs == 0;
2095
            virMutexUnlock(&server->clients[i]->lock);
2096
            if (inactive) {
2097
                qemudFreeClient(server->clients[i]);
2098
                server->nclients--;
2099
                if (i < server->nclients)
2100 2101
                    memmove(server->clients + i,
                            server->clients + i + 1,
2102 2103 2104 2105 2106
                            sizeof (*server->clients) * (server->nclients - i));

                if (VIR_REALLOC_N(server->clients,
                                  server->nclients) < 0) {
                    ; /* ignore */
2107
                }
2108
                goto reprocess;
2109 2110
            }
        }
D
Daniel P. Berrange 已提交
2111

2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131
        /* 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--;
            }
        }

2132 2133 2134 2135
        /* Unregister any timeout that's active, since we
         * just had an event processed
         */
        if (timerid != -1) {
2136
            DEBUG("Removing shutdown timer %d", timerid);
2137 2138 2139
            virEventRemoveTimeoutImpl(timerid);
            timerid = -1;
        }
D
Daniel P. Berrange 已提交
2140

2141 2142 2143 2144
        if (server->shutdown) {
            ret = 0;
            break;
        }
2145 2146
    }

2147
cleanup:
2148
    for (i = 0 ; i < server->nworkers ; i++) {
2149 2150 2151 2152 2153 2154
        if (!server->workers[i].hasThread)
            continue;

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

2155
        virMutexUnlock(&server->lock);
2156
        pthread_join(server->workers[i].thread, NULL);
2157
        virMutexLock(&server->lock);
2158
        server->workers[i].hasThread = 0;
2159
    }
2160
    VIR_FREE(server->workers);
2161

J
Jim Meyering 已提交
2162
    free(server->workers);
2163
    virMutexUnlock(&server->lock);
2164
    return ret;
D
Daniel P. Berrange 已提交
2165 2166 2167
}

static void qemudCleanup(struct qemud_server *server) {
2168 2169
    struct qemud_socket *sock;

2170
    close(server->sigread);
2171 2172

    sock = server->sockets;
D
Daniel P. Berrange 已提交
2173
    while (sock) {
2174
        struct qemud_socket *next = sock->next;
D
Daniel P. Berrange 已提交
2175
        close(sock->fd);
2176 2177
        free(sock);
        sock = next;
D
Daniel P. Berrange 已提交
2178
    }
2179

2180
#ifdef HAVE_SASL
2181 2182 2183
    if (server->saslUsernameWhitelist) {
        char **list = server->saslUsernameWhitelist;
        while (*list) {
2184
            free(*list);
2185 2186
            list++;
        }
J
Jim Meyering 已提交
2187
        free(server->saslUsernameWhitelist);
2188
    }
2189
#endif
2190

2191
    virStateCleanup();
2192

2193 2194 2195 2196 2197 2198
    if (virCondDestroy(&server->job) < 0) {
        ;
    }
    virMutexDestroy(&server->lock);

    VIR_FREE(server);
D
Daniel P. Berrange 已提交
2199 2200
}

2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216
/* 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:
2217
        if (VIR_ALLOC_N(list, 2) < 0) {
2218
            VIR_ERROR(_("failed to allocate memory for %s config list"), key);
2219 2220 2221 2222 2223
            return -1;
        }
        list[0] = strdup (p->str);
        list[1] = NULL;
        if (list[0] == NULL) {
2224
            VIR_ERROR(_("failed to allocate memory for %s config list value"),
2225
                      key);
2226
            VIR_FREE(list);
2227 2228 2229 2230 2231 2232 2233 2234 2235
            return -1;
        }
        break;

    case VIR_CONF_LIST: {
        int i, len = 0;
        virConfValuePtr pp;
        for (pp = p->list; pp; pp = pp->next)
            len++;
2236
        if (VIR_ALLOC_N(list, 1+len) < 0) {
2237
            VIR_ERROR(_("failed to allocate memory for %s config list"), key);
2238 2239 2240 2241
            return -1;
        }
        for (i = 0, pp = p->list; pp; ++i, pp = pp->next) {
            if (pp->type != VIR_CONF_STRING) {
2242 2243
                VIR_ERROR(_("remoteReadConfigFile: %s: %s:"
                            " must be a string or list of strings\n"),
2244
                          filename, key);
2245
                VIR_FREE(list);
2246 2247 2248 2249 2250 2251
                return -1;
            }
            list[i] = strdup (pp->str);
            if (list[i] == NULL) {
                int j;
                for (j = 0 ; j < i ; j++)
2252 2253
                    VIR_FREE(list[j]);
                VIR_FREE(list);
2254 2255
                VIR_ERROR(_("failed to allocate memory for %s config list value"),
                          key);
2256 2257 2258 2259 2260 2261 2262 2263 2264
                return -1;
            }

        }
        list[i] = NULL;
        break;
    }

    default:
2265 2266
        VIR_ERROR(_("remoteReadConfigFile: %s: %s:"
                    " must be a string or list of strings\n"),
2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280
                  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) {
2281
        VIR_ERROR(_("remoteReadConfigFile: %s: %s: invalid type:"
2282
                    " got %s; expected %s\n"), filename, key,
2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301
                  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) {                                   \
2302
                VIR_ERROR(_("remoteReadConfigFile: %s\n"),strerror (errno)); \
2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318
                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)

2319 2320 2321 2322 2323 2324 2325 2326

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

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

2327
    if (checkType (p, filename, key, VIR_CONF_STRING) < 0)
2328 2329 2330 2331 2332 2333 2334 2335 2336 2337
        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;
2338 2339 2340 2341
#endif
#if HAVE_POLKIT
    } else if (STREQ(p->str, "polkit")) {
        *auth = REMOTE_AUTH_POLKIT;
2342 2343
#endif
    } else {
2344
        VIR_ERROR(_("remoteReadConfigFile: %s: %s: unsupported auth %s\n"),
2345
                  filename, key, p->str);
2346 2347 2348 2349 2350 2351
        return -1;
    }

    return 0;
}

2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371
#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

2372 2373 2374 2375 2376 2377
/*
 * 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.
 */
2378
static int
2379
qemudSetLogging(virConfPtr conf, const char *filename) {
2380 2381 2382
    char *debugEnv;
    int ret = -1;

2383 2384
    virLogReset();

2385 2386 2387 2388 2389
    /*
     * look for default logging level first from config file,
     * then from environment variable and finally from command
     * line options
     */
2390
    GET_CONF_INT (conf, filename, log_level);
2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401
    debugEnv = getenv("LIBVIRT_DEBUG");
    if (debugEnv && *debugEnv && *debugEnv != '0') {
        if (STREQ(debugEnv, "2") || STREQ(debugEnv, "info"))
            log_level = VIR_LOG_INFO;
        else if (STREQ(debugEnv, "3") || STREQ(debugEnv, "warning"))
            log_level = VIR_LOG_WARN;
        else if (STREQ(debugEnv, "4") || STREQ(debugEnv, "error"))
            log_level = VIR_LOG_ERROR;
        else
            log_level = VIR_LOG_DEBUG;
    }
2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415
    if ((verbose) && (log_level >= VIR_LOG_WARN))
        log_level = VIR_LOG_INFO;
    virLogSetDefaultPriority(log_level);

    /* there is no default filters */
    GET_CONF_STR (conf, filename, log_filters);
    virLogParseFilters(log_filters);

    /*
     * by default save all warning and errors to syslog or
     * all logs to stderr if not running as daemon
     */
    GET_CONF_STR (conf, filename, log_outputs);
    if (log_outputs == NULL) {
2416 2417 2418 2419 2420 2421 2422
        if (godaemon) {
            char *tmp = NULL;
            if (virAsprintf (&tmp, "%d:syslog:libvirtd", log_level) < 0)
                goto free_and_fail;
            virLogParseOutputs (tmp);
            VIR_FREE (tmp);
        } else {
2423
            virLogParseOutputs("0:stderr:libvirtd");
2424
        }
2425 2426
    } else
        virLogParseOutputs(log_outputs);
2427 2428
    ret = 0;

2429 2430 2431
free_and_fail:
    VIR_FREE(log_filters);
    VIR_FREE(log_outputs);
2432
    return(ret);
2433
}
2434

2435 2436 2437 2438
/* Read the config file if it exists.
 * Only used in the remote case, hence the name.
 */
static int
2439
remoteReadConfigFile (struct qemud_server *server, const char *filename)
2440 2441 2442
{
    virConfPtr conf;

2443 2444 2445 2446 2447 2448
    /* 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;

2449 2450 2451 2452 2453 2454 2455 2456
#if HAVE_POLKIT
    /* Change the default back to no auth for non-root */
    if (getuid() != 0 && auth_unix_rw == REMOTE_AUTH_POLKIT)
        auth_unix_rw = REMOTE_AUTH_NONE;
    if (getuid() != 0 && auth_unix_ro == REMOTE_AUTH_POLKIT)
        auth_unix_ro = REMOTE_AUTH_NONE;
#endif

2457
    conf = virConfReadFile (filename);
2458
    if (!conf) return -1;
2459

2460 2461 2462
    /*
     * First get all the logging settings and activate them
     */
2463 2464
    if (qemudSetLogging(conf, filename) < 0)
        goto free_and_fail;
2465

2466 2467
    GET_CONF_INT (conf, filename, listen_tcp);
    GET_CONF_INT (conf, filename, listen_tls);
2468 2469
    GET_CONF_STR (conf, filename, tls_port);
    GET_CONF_STR (conf, filename, tcp_port);
2470
    GET_CONF_STR (conf, filename, listen_addr);
J
Jim Meyering 已提交
2471

2472
    if (remoteConfigGetAuth(conf, "auth_unix_rw", &auth_unix_rw, filename) < 0)
J
Jim Meyering 已提交
2473
        goto free_and_fail;
2474 2475 2476 2477 2478 2479 2480
#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
2481
    if (remoteConfigGetAuth(conf, "auth_unix_ro", &auth_unix_ro, filename) < 0)
J
Jim Meyering 已提交
2482
        goto free_and_fail;
2483
    if (remoteConfigGetAuth(conf, "auth_tcp", &auth_tcp, filename) < 0)
J
Jim Meyering 已提交
2484
        goto free_and_fail;
2485
    if (remoteConfigGetAuth(conf, "auth_tls", &auth_tls, filename) < 0)
J
Jim Meyering 已提交
2486
        goto free_and_fail;
2487

2488 2489
    GET_CONF_STR (conf, filename, unix_sock_group);
    if (unix_sock_group) {
2490
        if (getuid() != 0) {
2491
            VIR_WARN0(_("Cannot set group when not running as root"));
2492
        } else {
2493 2494 2495
            char buf[1024];
            struct group grpdata, *grp;
            if (getgrnam_r(unix_sock_group, &grpdata, buf, sizeof(buf), &grp) != 0 || !grp) {
2496
                VIR_ERROR(_("Failed to lookup group '%s'"), unix_sock_group);
2497
                goto free_and_fail;
2498 2499 2500
            }
            unix_sock_gid = grp->gr_gid;
        }
2501 2502
        free (unix_sock_group);
        unix_sock_group = NULL;
2503 2504
    }

2505 2506
    GET_CONF_STR (conf, filename, unix_sock_ro_perms);
    if (unix_sock_ro_perms) {
2507
        if (virStrToLong_i (unix_sock_ro_perms, NULL, 8, &unix_sock_ro_mask) != 0) {
2508
            VIR_ERROR(_("Failed to parse mode '%s'"), unix_sock_ro_perms);
2509
            goto free_and_fail;
2510
        }
2511 2512
        free (unix_sock_ro_perms);
        unix_sock_ro_perms = NULL;
2513 2514
    }

2515 2516
    GET_CONF_STR (conf, filename, unix_sock_rw_perms);
    if (unix_sock_rw_perms) {
2517
        if (virStrToLong_i (unix_sock_rw_perms, NULL, 8, &unix_sock_rw_mask) != 0) {
2518
            VIR_ERROR(_("Failed to parse mode '%s'"), unix_sock_rw_perms);
2519
            goto free_and_fail;
2520
        }
2521 2522
        free (unix_sock_rw_perms);
        unix_sock_rw_perms = NULL;
2523 2524
    }

2525 2526
    GET_CONF_INT (conf, filename, mdns_adv);
    GET_CONF_STR (conf, filename, mdns_name);
2527

2528
    GET_CONF_INT (conf, filename, tls_no_verify_certificate);
2529

2530 2531 2532 2533
    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);
2534

2535 2536 2537
    if (remoteConfigGetStringList (conf, "tls_allowed_dn_list",
                                   &tls_allowed_dn_list, filename) < 0)
        goto free_and_fail;
2538

2539
    if (remoteReadSaslAllowedUsernameList (conf, server, filename) < 0)
2540
        goto free_and_fail;
2541

2542 2543 2544 2545 2546

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

2547 2548 2549
    GET_CONF_INT (conf, filename, max_requests);
    GET_CONF_INT (conf, filename, max_client_requests);

2550 2551
    virConfFree (conf);
    return 0;
2552

2553 2554 2555 2556 2557 2558 2559 2560
 free_and_fail:
    virConfFree (conf);
    free (mdns_name);
    mdns_name = NULL;
    free (unix_sock_ro_perms);
    free (unix_sock_rw_perms);
    free (unix_sock_group);

2561 2562 2563 2564
    /* 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
2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575
       even be a real leak.  */

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

    return -1;
2576 2577
}

2578 2579 2580 2581 2582 2583 2584
/* Display version information. */
static void
version (const char *argv0)
{
    printf ("%s (%s) %s\n", argv0, PACKAGE_NAME, PACKAGE_VERSION);
}

J
John Levon 已提交
2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608
#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)) {
        fprintf (stderr, "additional privileges are required\n");
        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)) {
        fprintf (stderr, "failed to set reduced privileges\n");
        return -1;
    }

    return 0;
}
#else
#define qemudSetupPrivs() 0
#endif

2609 2610 2611 2612 2613
/* Print command-line usage. */
static void
usage (const char *argv0)
{
    fprintf (stderr,
2614 2615 2616 2617 2618 2619 2620
             "\n\
Usage:\n\
  %s [options]\n\
\n\
Options:\n\
  -v | --verbose         Verbose messages.\n\
  -d | --daemon          Run as a daemon & write PID file.\n\
2621 2622
  -l | --listen          Listen for TCP/IP connections.\n\
  -t | --timeout <secs>  Exit after timeout period.\n\
2623
  -f | --config <file>   Configuration file.\n\
2624
     | --version         Display version information.\n\
2625 2626
  -p | --pid-file <file> Change name of PID file.\n\
\n\
2627
libvirt management daemon:\n\
2628 2629 2630
\n\
  Default paths:\n\
\n\
2631
    Configuration file (unless overridden by -c):\n\
2632 2633
      " SYSCONF_DIR "/libvirt/libvirtd.conf\n\
\n\
2634
    Sockets (as root):\n\
2635 2636
      " LOCAL_STATE_DIR "/run/libvirt/libvirt-sock\n\
      " LOCAL_STATE_DIR "/run/libvirt/libvirt-sock-ro\n\
2637 2638 2639
\n\
    Sockets (as non-root):\n\
      $HOME/.libvirt/libvirt-sock (in UNIX abstract namespace)\n\
2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652
\n\
    TLS:\n\
      CA certificate:     " LIBVIRT_CACERT "\n\
      Server certificate: " LIBVIRT_SERVERCERT "\n\
      Server private key: " LIBVIRT_SERVERKEY "\n\
\n\
    PID file (unless overridden by --pid-file):\n\
      %s\n\
\n",
             argv0,
             REMOTE_PID_FILE[0] != '\0'
               ? REMOTE_PID_FILE
               : "(disabled in ./configure)");
2653 2654
}

2655 2656 2657 2658
enum {
    OPT_VERSION = 129
};

D
Daniel P. Berrange 已提交
2659 2660
#define MAX_LISTEN 5
int main(int argc, char **argv) {
2661
    struct qemud_server *server = NULL;
2662 2663
    struct sigaction sig_action;
    int sigpipe[2];
2664
    const char *pid_file = NULL;
2665
    const char *remote_config_file = NULL;
2666
    int ret = 1;
D
Daniel P. Berrange 已提交
2667 2668 2669 2670

    struct option opts[] = {
        { "verbose", no_argument, &verbose, 1},
        { "daemon", no_argument, &godaemon, 1},
2671
        { "listen", no_argument, &ipsock, 1},
2672
        { "config", required_argument, NULL, 'f'},
2673 2674
        { "timeout", required_argument, NULL, 't'},
        { "pid-file", required_argument, NULL, 'p'},
2675
        { "version", no_argument, NULL, OPT_VERSION },
2676
        { "help", no_argument, NULL, '?' },
D
Daniel P. Berrange 已提交
2677 2678 2679 2680 2681 2682 2683 2684
        {0, 0, 0, 0}
    };

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

2685
        c = getopt_long(argc, argv, "ldf:p:t:v", opts, &optidx);
D
Daniel P. Berrange 已提交
2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700

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

        switch (c) {
        case 0:
            /* Got one of the flags */
            break;
        case 'v':
            verbose = 1;
            break;
        case 'd':
            godaemon = 1;
            break;
2701 2702
        case 'l':
            ipsock = 1;
D
Daniel P. Berrange 已提交
2703 2704 2705
            break;

        case 't':
2706
            if (virStrToLong_i(optarg, &tmp, 10, &timeout) != 0
2707 2708 2709
                || timeout <= 0
                /* Ensure that we can multiply by 1000 without overflowing.  */
                || timeout > INT_MAX / 1000)
D
Daniel P. Berrange 已提交
2710 2711
                timeout = -1;
            break;
2712 2713

        case 'p':
2714 2715 2716 2717 2718
            pid_file = optarg;
            break;

        case 'f':
            remote_config_file = optarg;
2719 2720
            break;

2721 2722 2723 2724
        case OPT_VERSION:
            version (argv[0]);
            return 0;

D
Daniel P. Berrange 已提交
2725
        case '?':
2726
            usage (argv[0]);
D
Daniel P. Berrange 已提交
2727 2728 2729
            return 2;

        default:
2730 2731 2732
            fprintf (stderr, "libvirtd: internal error: unknown flag: %c\n",
                     c);
            exit (1);
D
Daniel P. Berrange 已提交
2733 2734 2735
        }
    }

2736 2737 2738 2739
    if (remote_config_file == NULL) {
        static const char *default_config_file
            = SYSCONF_DIR "/libvirt/libvirtd.conf";
        remote_config_file =
2740
            (access(default_config_file, R_OK) == 0
2741 2742 2743 2744
             ? default_config_file
             : "/dev/null");
    }

2745 2746
    if (godaemon) {
        if (qemudGoDaemon() < 0) {
2747
            VIR_ERROR(_("Failed to fork as daemon: %s"), strerror(errno));
2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762
            goto error1;
        }
    }

    /* If running as root and no PID file is set, use the default */
    if (pid_file == NULL &&
        getuid() == 0 &&
        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 &&
        qemudWritePidFile (pid_file) < 0)
        goto error1;

2763 2764
    if (pipe(sigpipe) < 0 ||
        qemudSetNonBlock(sigpipe[0]) < 0 ||
2765 2766 2767
        qemudSetNonBlock(sigpipe[1]) < 0 ||
        qemudSetCloseExec(sigpipe[0]) < 0 ||
        qemudSetCloseExec(sigpipe[1]) < 0) {
2768
        VIR_ERROR(_("Failed to create pipe: %s"), strerror(errno));
2769
        goto error2;
2770
    }
2771 2772
    sigwrite = sigpipe[1];

2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785
    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);

J
John Levon 已提交
2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800
    /* Ensure the rundir exists (on tmpfs on some systems) */
    if (geteuid () == 0) {
        const char *rundir = LOCAL_STATE_DIR "/run/libvirt";

        if (mkdir (rundir, 0755)) {
            if (errno != EEXIST) {
                VIR_ERROR0 (_("unable to create rundir"));
                return -1;
            }
        }
    }

    if (qemudSetupPrivs() < 0)
        goto error2;

2801 2802
    if (!(server = qemudInitialize(sigpipe[0]))) {
        ret = 2;
2803
        goto error2;
2804
    }
2805

2806 2807
    /* Read the config file (if it exists). */
    if (remoteReadConfigFile (server, remote_config_file) < 0)
2808
        goto error2;
D
Daniel P. Berrange 已提交
2809

2810
    /* Change the group ownership of /var/run/libvirt to unix_sock_gid */
2811
    if (getuid() == 0) {
2812 2813 2814
        const char *sockdirname = LOCAL_STATE_DIR "/run/libvirt";

        if (chown(sockdirname, -1, unix_sock_gid) < 0)
2815
            VIR_ERROR(_("Failed to change group ownership of %s"), sockdirname);
2816 2817
    }

2818
    if (virEventAddHandleImpl(sigpipe[0],
2819
                              VIR_EVENT_HANDLE_READABLE,
2820
                              qemudDispatchSignalEvent,
2821
                              server, NULL) < 0) {
2822
        VIR_ERROR0(_("Failed to register callback for signal pipe"));
D
Daniel P. Berrange 已提交
2823 2824 2825 2826
        ret = 3;
        goto error2;
    }

2827 2828 2829 2830 2831
    if (!(server = qemudNetworkInit(server))) {
        ret = 2;
        goto error2;
    }

2832
    qemudRunLoop(server);
D
Daniel P. Berrange 已提交
2833

2834 2835
    ret = 0;

2836
error2:
2837 2838
    if (server)
        qemudCleanup(server);
2839 2840 2841 2842 2843
    if (pid_file)
        unlink (pid_file);
    close(sigwrite);

error1:
2844
    virLogShutdown();
2845
    return ret;
D
Daniel P. Berrange 已提交
2846
}