lock_daemon.c 44.4 KB
Newer Older
1 2 3
/*
 * lock_daemon.c: lock management daemon
 *
4
 * Copyright (C) 2006-2015 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
 *
 * 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, see
 * <http://www.gnu.org/licenses/>.
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

#include <unistd.h>
#include <fcntl.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <getopt.h>
#include <stdlib.h>


#include "lock_daemon.h"
#include "lock_daemon_config.h"
35
#include "admin/admin_server_dispatch.h"
36
#include "virutil.h"
37 38
#include "virfile.h"
#include "virpidfile.h"
39
#include "virprocess.h"
40
#include "virerror.h"
41
#include "virlog.h"
42
#include "viralloc.h"
43
#include "virconf.h"
44
#include "rpc/virnetdaemon.h"
45 46 47
#include "rpc/virnetserver.h"
#include "virrandom.h"
#include "virhash.h"
48
#include "viruuid.h"
49
#include "virstring.h"
50
#include "virgettext.h"
51

52 53 54
#include "locking/lock_daemon_dispatch.h"
#include "locking/lock_protocol.h"

55 56 57 58
#include "configmake.h"

#define VIR_FROM_THIS VIR_FROM_LOCKING

59 60
VIR_LOG_INIT("locking.lock_daemon");

61 62
#define VIR_LOCK_DAEMON_NUM_LOCKSPACES 3

63 64
struct _virLockDaemon {
    virMutex lock;
65
    virNetDaemonPtr dmn;
66 67
    virHashTablePtr lockspaces;
    virLockSpacePtr defaultLockspace;
68 69 70 71
};

virLockDaemonPtr lockDaemon = NULL;

72
static bool execRestart;
73

74 75 76 77 78 79 80 81 82 83
enum {
    VIR_LOCK_DAEMON_ERR_NONE = 0,
    VIR_LOCK_DAEMON_ERR_PIDFILE,
    VIR_LOCK_DAEMON_ERR_RUNDIR,
    VIR_LOCK_DAEMON_ERR_INIT,
    VIR_LOCK_DAEMON_ERR_SIGNAL,
    VIR_LOCK_DAEMON_ERR_PRIVS,
    VIR_LOCK_DAEMON_ERR_NETWORK,
    VIR_LOCK_DAEMON_ERR_CONFIG,
    VIR_LOCK_DAEMON_ERR_HOOKS,
84
    VIR_LOCK_DAEMON_ERR_REEXEC,
85 86 87 88 89 90 91 92 93 94 95 96 97 98

    VIR_LOCK_DAEMON_ERR_LAST
};

VIR_ENUM_DECL(virDaemonErr)
VIR_ENUM_IMPL(virDaemonErr, VIR_LOCK_DAEMON_ERR_LAST,
              "Initialization successful",
              "Unable to obtain pidfile",
              "Unable to create rundir",
              "Unable to initialize libvirt",
              "Unable to setup signal handlers",
              "Unable to drop privileges",
              "Unable to initialize network sockets",
              "Unable to load configuration file",
99 100
              "Unable to look for hook scripts",
              "Unable to re-execute daemon");
101 102 103 104 105 106 107

static void *
virLockDaemonClientNew(virNetServerClientPtr client,
                       void *opaque);
static void
virLockDaemonClientFree(void *opaque);

108 109 110 111 112 113 114 115
static void *
virLockDaemonClientNewPostExecRestart(virNetServerClientPtr client,
                                      virJSONValuePtr object,
                                      void *opaque);
static virJSONValuePtr
virLockDaemonClientPreExecRestart(virNetServerClientPtr client,
                                  void *opaque);

116 117 118 119 120 121
static void
virLockDaemonFree(virLockDaemonPtr lockd)
{
    if (!lockd)
        return;

122
    virMutexDestroy(&lockd->lock);
123
    virObjectUnref(lockd->dmn);
124 125
    virHashFree(lockd->lockspaces);
    virLockSpaceFree(lockd->defaultLockspace);
126 127 128 129

    VIR_FREE(lockd);
}

130 131 132 133 134 135 136 137 138 139 140
static inline void
virLockDaemonLock(virLockDaemonPtr lockd)
{
    virMutexLock(&lockd->lock);
}

static inline void
virLockDaemonUnlock(virLockDaemonPtr lockd)
{
    virMutexUnlock(&lockd->lock);
}
141

142 143 144 145 146 147
static void virLockDaemonLockSpaceDataFree(void *data,
                                           const void *key ATTRIBUTE_UNUSED)
{
    virLockSpaceFree(data);
}

148
static virLockDaemonPtr
149
virLockDaemonNew(virLockDaemonConfigPtr config, bool privileged)
150 151
{
    virLockDaemonPtr lockd;
152
    virNetServerPtr srv = NULL;
153

154
    if (VIR_ALLOC(lockd) < 0)
155 156 157 158 159 160 161 162 163
        return NULL;

    if (virMutexInit(&lockd->lock) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Unable to initialize mutex"));
        VIR_FREE(lockd);
        return NULL;
    }

164 165 166
    if (!(lockd->dmn = virNetDaemonNew()))
        goto error;

167
    if (!(srv = virNetServerNew("virtlockd", 1,
168
                                0, 0, 0, config->max_clients,
169 170 171 172 173 174
                                config->max_clients, -1, 0,
                                NULL,
                                virLockDaemonClientNew,
                                virLockDaemonClientPreExecRestart,
                                virLockDaemonClientFree,
                                (void*)(intptr_t)(privileged ? 0x1 : 0x0))))
175 176
        goto error;

177 178 179 180 181 182
    if (virNetDaemonAddServer(lockd->dmn, srv) < 0)
        goto error;
    virObjectUnref(srv);
    srv = NULL;

    if (!(srv = virNetServerNew("admin", 1,
183
                                0, 0, 0, config->admin_max_clients,
184 185 186 187 188 189
                                config->admin_max_clients, -1, 0,
                                NULL,
                                remoteAdmClientNew,
                                remoteAdmClientPreExecRestart,
                                remoteAdmClientFree,
                                lockd->dmn)))
190
        goto error;
191 192 193

    if (virNetDaemonAddServer(lockd->dmn, srv) < 0)
         goto error;
194 195
    virObjectUnref(srv);
    srv = NULL;
196

197 198 199 200 201 202 203
    if (!(lockd->lockspaces = virHashCreate(VIR_LOCK_DAEMON_NUM_LOCKSPACES,
                                            virLockDaemonLockSpaceDataFree)))
        goto error;

    if (!(lockd->defaultLockspace = virLockSpaceNew(NULL)))
        goto error;

204 205
    return lockd;

206
 error:
207
    virObjectUnref(srv);
208 209 210 211 212
    virLockDaemonFree(lockd);
    return NULL;
}


213 214 215 216 217 218 219 220 221 222 223 224 225 226
static virNetServerPtr
virLockDaemonNewServerPostExecRestart(virNetDaemonPtr dmn ATTRIBUTE_UNUSED,
                                      const char *name,
                                      virJSONValuePtr object,
                                      void *opaque)
{
    if (STREQ(name, "virtlockd")) {
        return virNetServerNewPostExecRestart(object,
                                              name,
                                              virLockDaemonClientNew,
                                              virLockDaemonClientNewPostExecRestart,
                                              virLockDaemonClientPreExecRestart,
                                              virLockDaemonClientFree,
                                              opaque);
227 228 229 230 231 232 233 234
    } else if (STREQ(name, "admin")) {
        return virNetServerNewPostExecRestart(object,
                                              name,
                                              remoteAdmClientNew,
                                              remoteAdmClientNewPostExecRestart,
                                              remoteAdmClientPreExecRestart,
                                              remoteAdmClientFree,
                                              dmn);
235 236 237 238 239 240 241 242 243
    } else {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unexpected server name '%s' during restart"),
                       name);
        return NULL;
    }
}


244 245 246 247 248 249 250
static virLockDaemonPtr
virLockDaemonNewPostExecRestart(virJSONValuePtr object, bool privileged)
{
    virLockDaemonPtr lockd;
    virJSONValuePtr child;
    virJSONValuePtr lockspaces;
    size_t i;
251
    ssize_t n;
252
    const char *serverNames[] = { "virtlockd" };
253

254
    if (VIR_ALLOC(lockd) < 0)
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
        return NULL;

    if (virMutexInit(&lockd->lock) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Unable to initialize mutex"));
        VIR_FREE(lockd);
        return NULL;
    }

    if (!(lockd->lockspaces = virHashCreate(VIR_LOCK_DAEMON_NUM_LOCKSPACES,
                                            virLockDaemonLockSpaceDataFree)))
        goto error;

    if (!(child = virJSONValueObjectGet(object, "defaultLockspace"))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Missing defaultLockspace data from JSON file"));
        goto error;
    }

    if (!(lockd->defaultLockspace =
          virLockSpaceNewPostExecRestart(child)))
        goto error;

    if (!(lockspaces = virJSONValueObjectGet(object, "lockspaces"))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Missing lockspaces data from JSON file"));
        goto error;
    }

    if ((n = virJSONValueArraySize(lockspaces)) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Malformed lockspaces data from JSON file"));
        goto error;
    }

290
    for (i = 0; i < n; i++) {
291 292 293 294 295 296 297 298 299 300 301 302 303 304
        virLockSpacePtr lockspace;

        child = virJSONValueArrayGet(lockspaces, i);

        if (!(lockspace = virLockSpaceNewPostExecRestart(child)))
            goto error;

        if (virHashAddEntry(lockd->lockspaces,
                            virLockSpaceGetDirectory(lockspace),
                            lockspace) < 0) {
            virLockSpaceFree(lockspace);
        }
    }

305 306 307 308 309 310 311 312 313 314 315 316
    if (virJSONValueObjectHasKey(object, "daemon")) {
        if (!(child = virJSONValueObjectGet(object, "daemon"))) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Malformed daemon data from JSON file"));
            goto error;
        }
    } else {
        if (!(child = virJSONValueObjectGet(object, "server"))) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Missing server data from JSON file"));
            goto error;
        }
317 318
    }

319 320 321 322 323
    if (!(lockd->dmn = virNetDaemonNewPostExecRestart(child,
                                                      ARRAY_CARDINALITY(serverNames),
                                                      serverNames,
                                                      virLockDaemonNewServerPostExecRestart,
                                                      (void*)(intptr_t)(privileged ? 0x1 : 0x0))))
324 325 326 327
        goto error;

    return lockd;

328
 error:
329 330 331 332 333
    virLockDaemonFree(lockd);
    return NULL;
}


334 335 336 337 338
int virLockDaemonAddLockSpace(virLockDaemonPtr lockd,
                              const char *path,
                              virLockSpacePtr lockspace)
{
    int ret;
339
    virLockDaemonLock(lockd);
340
    ret = virHashAddEntry(lockd->lockspaces, path, lockspace);
341
    virLockDaemonUnlock(lockd);
342 343 344 345 346 347 348
    return ret;
}

virLockSpacePtr virLockDaemonFindLockSpace(virLockDaemonPtr lockd,
                                           const char *path)
{
    virLockSpacePtr lockspace;
349
    virLockDaemonLock(lockd);
350 351 352 353
    if (path && STRNEQ(path, ""))
        lockspace = virHashLookup(lockd->lockspaces, path);
    else
        lockspace = lockd->defaultLockspace;
354
    virLockDaemonUnlock(lockd);
355 356 357 358
    return lockspace;
}


359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
static int
virLockDaemonForkIntoBackground(const char *argv0)
{
    int statuspipe[2];
    if (pipe(statuspipe) < 0)
        return -1;

    pid_t pid = fork();
    switch (pid) {
    case 0:
        {
            int stdinfd = -1;
            int stdoutfd = -1;
            int nextpid;

            VIR_FORCE_CLOSE(statuspipe[0]);

            if ((stdinfd = open("/dev/null", O_RDONLY)) < 0)
                goto cleanup;
            if ((stdoutfd = open("/dev/null", O_WRONLY)) < 0)
                goto cleanup;
            if (dup2(stdinfd, STDIN_FILENO) != STDIN_FILENO)
                goto cleanup;
            if (dup2(stdoutfd, STDOUT_FILENO) != STDOUT_FILENO)
                goto cleanup;
            if (dup2(stdoutfd, STDERR_FILENO) != STDERR_FILENO)
                goto cleanup;
            if (VIR_CLOSE(stdinfd) < 0)
                goto cleanup;
            if (VIR_CLOSE(stdoutfd) < 0)
                goto cleanup;

            if (setsid() < 0)
                goto cleanup;

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

        cleanup:
            VIR_FORCE_CLOSE(stdoutfd);
            VIR_FORCE_CLOSE(stdinfd);
            return -1;

        }

    case -1:
        return -1;

    default:
        {
            int got, exitstatus = 0;
            int ret;
            char status;

            VIR_FORCE_CLOSE(statuspipe[1]);

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

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

            if (ret == 1 && status != 0) {
                fprintf(stderr,
                        _("%s: error: %s. Check /var/log/messages or run without "
                          "--daemon for more info.\n"), argv0,
                        virDaemonErrTypeToString(status));
            }
            _exit(ret == 1 && status == 0 ? 0 : 1);
        }
    }
}


static int
virLockDaemonUnixSocketPaths(bool privileged,
449 450
                             char **sockfile,
                             char **adminSockfile)
451 452
{
    if (privileged) {
453 454
        if (VIR_STRDUP(*sockfile, LOCALSTATEDIR "/run/libvirt/virtlockd-sock") < 0 ||
            VIR_STRDUP(*adminSockfile, LOCALSTATEDIR "/run/libvirt/virtlockd-admin-sock") < 0)
455
            goto error;
456 457 458 459 460 461 462 463 464
    } else {
        char *rundir = NULL;
        mode_t old_umask;

        if (!(rundir = virGetUserRuntimeDirectory()))
            goto error;

        old_umask = umask(077);
        if (virFileMakePath(rundir) < 0) {
465
            VIR_FREE(rundir);
466 467 468 469 470
            umask(old_umask);
            goto error;
        }
        umask(old_umask);

471 472
        if (virAsprintf(sockfile, "%s/virtlockd-sock", rundir) < 0 ||
            virAsprintf(adminSockfile, "%s/virtlockd-admin-sock", rundir) < 0) {
473
            VIR_FREE(rundir);
474
            goto error;
475 476 477 478 479 480
        }

        VIR_FREE(rundir);
    }
    return 0;

481
 error:
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
    return -1;
}


static void
virLockDaemonErrorHandler(void *opaque ATTRIBUTE_UNUSED,
                          virErrorPtr err ATTRIBUTE_UNUSED)
{
    /* Don't do anything, since logging infrastructure already
     * took care of reporting the error */
}


/*
 * Set up the logging environment
 * By default if daemonized all errors go to the logfile libvirtd.log,
 * but if verbose or error debugging is asked for then also output
 * informational and debug messages. Default size if 64 kB.
 */
static int
virLockDaemonSetupLogging(virLockDaemonConfigPtr config,
                          bool privileged,
                          bool verbose,
                          bool godaemon)
{
    virLogReset();

    /*
     * Libvirtd's order of precedence is:
     * cmdline > environment > config
     *
513
     * Given the precedence, we must process the variables in the opposite
514 515 516 517 518
     * order, each one overriding the previous.
     */
    if (config->log_level != 0)
        virLogSetDefaultPriority(config->log_level);

519 520 521
    /* In case the config is empty, both filters and outputs will become empty,
     * however we can't start with empty outputs, thus we'll need to define and
     * setup a default one.
522 523 524
     */
    ignore_value(virLogSetFilters(config->log_filters));
    ignore_value(virLogSetOutputs(config->log_outputs));
525

526 527
    /* If there are some environment variables defined, use those instead */
    virLogSetFromEnv();
528

529 530 531 532 533 534
    /*
     * Command line override for --verbose
     */
    if ((verbose) && (virLogGetDefaultPriority() > VIR_LOG_INFO))
        virLogSetDefaultPriority(VIR_LOG_INFO);

535 536 537 538 539 540 541 542 543
    /* Define the default output. This is only applied if there was no setting
     * from either the config or the environment.
     */
    if (virLogSetDefaultOutput("virtlockd.log", godaemon, privileged) < 0)
        return -1;

    if (virLogGetNbOutputs() == 0)
        virLogSetOutputs(virLogGetDefaultOutput());

544 545 546 547 548 549 550 551 552 553 554 555 556
    return 0;
}



/* Display version information. */
static void
virLockDaemonVersion(const char *argv0)
{
    printf("%s (%s) %s\n", argv0, PACKAGE_NAME, PACKAGE_VERSION);
}

static void
557
virLockDaemonShutdownHandler(virNetDaemonPtr dmn,
558 559 560
                             siginfo_t *sig ATTRIBUTE_UNUSED,
                             void *opaque ATTRIBUTE_UNUSED)
{
561
    virNetDaemonQuit(dmn);
562 563
}

564
static void
565
virLockDaemonExecRestartHandler(virNetDaemonPtr dmn,
566 567 568 569
                                siginfo_t *sig ATTRIBUTE_UNUSED,
                                void *opaque ATTRIBUTE_UNUSED)
{
    execRestart = true;
570
    virNetDaemonQuit(dmn);
571 572
}

573
static int
574
virLockDaemonSetupSignals(virNetDaemonPtr dmn)
575
{
576
    if (virNetDaemonAddSignalHandler(dmn, SIGINT, virLockDaemonShutdownHandler, NULL) < 0)
577
        return -1;
578
    if (virNetDaemonAddSignalHandler(dmn, SIGQUIT, virLockDaemonShutdownHandler, NULL) < 0)
579
        return -1;
580
    if (virNetDaemonAddSignalHandler(dmn, SIGTERM, virLockDaemonShutdownHandler, NULL) < 0)
581
        return -1;
582
    if (virNetDaemonAddSignalHandler(dmn, SIGUSR1, virLockDaemonExecRestartHandler, NULL) < 0)
583
        return -1;
584 585 586
    return 0;
}

587

588
static int
589
virLockDaemonSetupNetworkingSystemD(virNetServerPtr lockSrv, virNetServerPtr adminSrv)
590 591
{
    unsigned int nfds;
592
    size_t i;
593

594
    if ((nfds = virGetListenFDs()) == 0)
595
        return 0;
596
    if (nfds > 2)
597
        VIR_DEBUG("Too many (%d) file descriptors from systemd", nfds);
598

599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
    for (i = 0; i < nfds && i < 2; i++) {
        virNetServerServicePtr svc;
        char *path = virGetUNIXSocketPath(3 + i);
        virNetServerPtr srv;

        if (!path)
            return -1;

        if (strstr(path, "virtlockd-admin-sock")) {
            srv = adminSrv;
        } else if (strstr(path, "virtlockd-sock")) {
            srv = lockSrv;
        } else {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown UNIX socket %s passed in"),
                           path);
            VIR_FREE(path);
            return -1;
        }
        VIR_FREE(path);

        /* Systemd passes FDs, starting immediately after stderr,
         * so the first FD we'll get is '3'. */
        if (!(svc = virNetServerServiceNewFD(3 + i, 0,
623
#if WITH_GNUTLS
624
                                             NULL,
625
#endif
626 627
                                             false, 0, 1)))
            return -1;
628

629 630 631 632
        if (virNetServerAddService(srv, svc, NULL) < 0) {
            virObjectUnref(svc);
            return -1;
        }
633 634 635 636 637 638 639
    }
    return 1;
}


static int
virLockDaemonSetupNetworkingNative(virNetServerPtr srv, const char *sock_path)
640 641 642 643 644
{
    virNetServerServicePtr svc;

    VIR_DEBUG("Setting up networking natively");

645
    if (!(svc = virNetServerServiceNewUNIX(sock_path, 0700, 0, 0,
646
#if WITH_GNUTLS
647 648
                                           NULL,
#endif
M
Michal Privoznik 已提交
649
                                           false, 0, 1)))
650 651 652 653 654 655 656 657 658 659
        return -1;

    if (virNetServerAddService(srv, svc, NULL) < 0) {
        virObjectUnref(svc);
        return -1;
    }
    return 0;
}


660 661 662 663 664 665
struct virLockDaemonClientReleaseData {
    virLockDaemonClientPtr client;
    bool hadSomeLeases;
    bool gotError;
};

666
static int
667 668 669 670 671 672 673 674 675 676 677 678 679 680
virLockDaemonClientReleaseLockspace(void *payload,
                                    const void *name ATTRIBUTE_UNUSED,
                                    void *opaque)
{
    virLockSpacePtr lockspace = payload;
    struct virLockDaemonClientReleaseData *data = opaque;
    int rc;

    rc = virLockSpaceReleaseResourcesForOwner(lockspace,
                                              data->client->clientPid);
    if (rc > 0)
        data->hadSomeLeases = true;
    else if (rc < 0)
        data->gotError = true;
681
    return 0;
682 683 684
}


685 686 687 688 689 690 691 692
static void
virLockDaemonClientFree(void *opaque)
{
    virLockDaemonClientPtr priv = opaque;

    if (!priv)
        return;

693
    VIR_DEBUG("priv=%p client=%lld owner=%lld",
694
              priv,
695 696 697 698 699 700 701 702 703 704 705 706
              (unsigned long long)priv->clientPid,
              (unsigned long long)priv->ownerPid);

    /* If client & owner match, this is the lock holder */
    if (priv->clientPid == priv->ownerPid) {
        size_t i;
        struct virLockDaemonClientReleaseData data = {
            .client = priv, .hadSomeLeases = false, .gotError = false
        };

        /* Release all locks associated with this
         * owner in all lockspaces */
707
        virLockDaemonLock(lockDaemon);
708 709 710 711 712 713
        virHashForEach(lockDaemon->lockspaces,
                       virLockDaemonClientReleaseLockspace,
                       &data);
        virLockDaemonClientReleaseLockspace(lockDaemon->defaultLockspace,
                                            "",
                                            &data);
714
        virLockDaemonUnlock(lockDaemon);
715 716 717 718 719

        /* If the client had some active leases when it
         * closed the connection, we must kill it off
         * to make sure it doesn't do nasty stuff */
        if (data.gotError || data.hadSomeLeases) {
720
            for (i = 0; i < 15; i++) {
721 722 723 724 725 726 727
                int signum;
                if (i == 0)
                    signum = SIGTERM;
                else if (i == 8)
                    signum = SIGKILL;
                else
                    signum = 0;
J
Jim Fehlig 已提交
728
                if (priv->clientPid != 0 && virProcessKill(priv->clientPid, signum) < 0) {
729 730 731 732 733 734 735 736 737 738
                    if (errno == ESRCH)
                        break;

                    VIR_WARN("Failed to kill off pid %lld",
                             (unsigned long long)priv->clientPid);
                }
                usleep(200 * 1000);
            }
        }
    }
739 740 741 742 743 744 745 746 747 748 749 750 751

    virMutexDestroy(&priv->lock);
    VIR_FREE(priv);
}


static void *
virLockDaemonClientNew(virNetServerClientPtr client,
                       void *opaque)
{
    virLockDaemonClientPtr priv;
    uid_t clientuid;
    gid_t clientgid;
752
    unsigned long long timestamp;
753 754
    bool privileged = opaque != NULL;

755
    if (VIR_ALLOC(priv) < 0)
756 757 758 759
        return NULL;

    if (virMutexInit(&priv->lock) < 0) {
        VIR_FREE(priv);
760
        virReportSystemError(errno, "%s", _("unable to init mutex"));
761 762 763 764 765 766
        return NULL;
    }

    if (virNetServerClientGetUNIXIdentity(client,
                                          &clientuid,
                                          &clientgid,
767 768
                                          &priv->clientPid,
                                          &timestamp) < 0)
769 770 771 772 773 774 775 776
        goto error;

    VIR_DEBUG("New client pid %llu uid %llu",
              (unsigned long long)priv->clientPid,
              (unsigned long long)clientuid);

    if (!privileged) {
        if (geteuid() != clientuid) {
777 778 779
            virReportRestrictedError(_("Disallowing client %llu with uid %llu"),
                                     (unsigned long long)priv->clientPid,
                                     (unsigned long long)clientuid);
780 781 782 783
            goto error;
        }
    } else {
        if (clientuid != 0) {
784 785 786
            virReportRestrictedError(_("Disallowing client %llu with uid %llu"),
                                     (unsigned long long)priv->clientPid,
                                     (unsigned long long)clientuid);
787 788 789 790
            goto error;
        }
    }

791 792 793
    /* there's no closing handshake in the locking protocol */
    virNetServerClientSetQuietEOF(client);

794 795
    return priv;

796
 error:
797 798 799 800 801 802
    virMutexDestroy(&priv->lock);
    VIR_FREE(priv);
    return NULL;
}


803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
static void *
virLockDaemonClientNewPostExecRestart(virNetServerClientPtr client,
                                      virJSONValuePtr object,
                                      void *opaque)
{
    virLockDaemonClientPtr priv = virLockDaemonClientNew(client, opaque);
    unsigned int ownerPid;
    const char *ownerUUID;
    const char *ownerName;

    if (!priv)
        return NULL;

    if (virJSONValueObjectGetBoolean(object, "restricted", &priv->restricted) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Missing restricted data in JSON document"));
        goto error;
    }
    if (virJSONValueObjectGetNumberUint(object, "ownerPid", &ownerPid) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Missing ownerPid data in JSON document"));
        goto error;
    }
    priv->ownerPid = (pid_t)ownerPid;
    if (virJSONValueObjectGetNumberUint(object, "ownerId", &priv->ownerId) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Missing ownerId data in JSON document"));
        goto error;
    }
    if (!(ownerName = virJSONValueObjectGetString(object, "ownerName"))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Missing ownerName data in JSON document"));
        goto error;
    }
837
    if (VIR_STRDUP(priv->ownerName, ownerName) < 0)
838 839 840 841 842 843 844 845 846 847 848 849 850
        goto error;
    if (!(ownerUUID = virJSONValueObjectGetString(object, "ownerUUID"))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Missing ownerUUID data in JSON document"));
        goto error;
    }
    if (virUUIDParse(ownerUUID, priv->ownerUUID) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Missing ownerUUID data in JSON document"));
        goto error;
    }
    return priv;

851
 error:
852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896
    virLockDaemonClientFree(priv);
    return NULL;
}


static virJSONValuePtr
virLockDaemonClientPreExecRestart(virNetServerClientPtr client ATTRIBUTE_UNUSED,
                                  void *opaque)
{
    virLockDaemonClientPtr priv = opaque;
    virJSONValuePtr object = virJSONValueNewObject();
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    if (!object)
        return NULL;

    if (virJSONValueObjectAppendBoolean(object, "restricted", priv->restricted) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Cannot set restricted data in JSON document"));
        goto error;
    }
    if (virJSONValueObjectAppendNumberUint(object, "ownerPid", priv->ownerPid) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Cannot set ownerPid data in JSON document"));
        goto error;
    }
    if (virJSONValueObjectAppendNumberUint(object, "ownerId", priv->ownerId) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Cannot set ownerId data in JSON document"));
        goto error;
    }
    if (virJSONValueObjectAppendString(object, "ownerName", priv->ownerName) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Cannot set ownerName data in JSON document"));
        goto error;
    }
    virUUIDFormat(priv->ownerUUID, uuidstr);
    if (virJSONValueObjectAppendString(object, "ownerUUID", uuidstr) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Cannot set ownerUUID data in JSON document"));
        goto error;
    }

    return object;

897
 error:
898 899 900 901 902
    virJSONValueFree(object);
    return NULL;
}


903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934
static int
virLockDaemonExecRestartStatePath(bool privileged,
                                  char **state_file)
{
    if (privileged) {
        if (VIR_STRDUP(*state_file, LOCALSTATEDIR "/run/virtlockd-restart-exec.json") < 0)
            goto error;
    } else {
        char *rundir = NULL;
        mode_t old_umask;

        if (!(rundir = virGetUserRuntimeDirectory()))
            goto error;

        old_umask = umask(077);
        if (virFileMakePath(rundir) < 0) {
            umask(old_umask);
            VIR_FREE(rundir);
            goto error;
        }
        umask(old_umask);

        if (virAsprintf(state_file, "%s/virtlockd-restart-exec.json", rundir) < 0) {
            VIR_FREE(rundir);
            goto error;
        }

        VIR_FREE(rundir);
    }

    return 0;

935
 error:
936 937 938
    return -1;
}

939 940 941 942 943 944

static char *
virLockDaemonGetExecRestartMagic(void)
{
    char *ret;

945
    ignore_value(virAsprintf(&ret, "%lld", (long long int)getpid()));
946 947 948 949 950
    return ret;
}


static int
951 952 953 954
virLockDaemonPostExecRestart(const char *state_file,
                             const char *pid_file,
                             int *pid_file_fd,
                             bool privileged)
955 956 957 958 959 960 961 962 963
{
    const char *gotmagic;
    char *wantmagic = NULL;
    int ret = -1;
    char *state = NULL;
    virJSONValuePtr object = NULL;

    VIR_DEBUG("Running post-restart exec");

964 965 966
    if (!virFileExists(state_file)) {
        VIR_DEBUG("No restart state file %s present",
                  state_file);
967 968 969 970
        ret = 0;
        goto cleanup;
    }

971
    if (virFileReadAll(state_file,
972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997
                       1024 * 1024 * 10, /* 10 MB */
                       &state) < 0)
        goto cleanup;

    VIR_DEBUG("Loading state %s", state);

    if (!(object = virJSONValueFromString(state)))
        goto cleanup;

    gotmagic = virJSONValueObjectGetString(object, "magic");
    if (!gotmagic) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Missing magic data in JSON document"));
        goto cleanup;
    }

    if (!(wantmagic = virLockDaemonGetExecRestartMagic()))
        goto cleanup;

    if (STRNEQ(gotmagic, wantmagic)) {
        VIR_WARN("Found restart exec file with old magic %s vs wanted %s",
                 gotmagic, wantmagic);
        ret = 0;
        goto cleanup;
    }

998 999
    /* Re-claim PID file now as we will not be daemonizing */
    if (pid_file &&
1000
        (*pid_file_fd = virPidFileAcquirePath(pid_file, false, getpid())) < 0)
1001 1002
        goto cleanup;

1003 1004 1005 1006 1007
    if (!(lockDaemon = virLockDaemonNewPostExecRestart(object, privileged)))
        goto cleanup;

    ret = 1;

1008
 cleanup:
1009
    unlink(state_file);
1010 1011 1012 1013 1014 1015 1016 1017
    VIR_FREE(wantmagic);
    VIR_FREE(state);
    virJSONValueFree(object);
    return ret;
}


static int
1018
virLockDaemonPreExecRestart(const char *state_file,
1019
                            virNetDaemonPtr dmn,
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
                            char **argv)
{
    virJSONValuePtr child;
    char *state = NULL;
    int ret = -1;
    virJSONValuePtr object;
    char *magic;
    virHashKeyValuePairPtr pairs = NULL, tmp;
    virJSONValuePtr lockspaces;

    VIR_DEBUG("Running pre-restart exec");

    if (!(object = virJSONValueNewObject()))
        goto cleanup;

1035
    if (!(child = virNetDaemonPreExecRestart(dmn)))
1036 1037
        goto cleanup;

1038
    if (virJSONValueObjectAppend(object, "daemon", child) < 0) {
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
        virJSONValueFree(child);
        goto cleanup;
    }

    if (!(child = virLockSpacePreExecRestart(lockDaemon->defaultLockspace)))
        goto cleanup;

    if (virJSONValueObjectAppend(object, "defaultLockspace", child) < 0) {
        virJSONValueFree(child);
        goto cleanup;
    }

    if (!(lockspaces = virJSONValueNewArray()))
        goto cleanup;
    if (virJSONValueObjectAppend(object, "lockspaces", lockspaces) < 0) {
        virJSONValueFree(lockspaces);
        goto cleanup;
    }


    tmp = pairs = virHashGetItems(lockDaemon->lockspaces, NULL);
    while (tmp && tmp->key) {
        virLockSpacePtr lockspace = (virLockSpacePtr)tmp->value;

        if (!(child = virLockSpacePreExecRestart(lockspace)))
            goto cleanup;

        if (virJSONValueArrayAppend(lockspaces, child) < 0) {
            virJSONValueFree(child);
            goto cleanup;
        }

        tmp++;
    }

    if (!(magic = virLockDaemonGetExecRestartMagic()))
        goto cleanup;

    if (virJSONValueObjectAppendString(object, "magic", magic) < 0) {
        VIR_FREE(magic);
        goto cleanup;
    }

    if (!(state = virJSONValueToString(object, true)))
        goto cleanup;

    VIR_DEBUG("Saving state %s", state);

1087
    if (virFileWriteStr(state_file,
1088 1089 1090
                        state, 0700) < 0) {
        virReportSystemError(errno,
                             _("Unable to save state file %s"),
1091
                             state_file);
1092 1093 1094
        goto cleanup;
    }

1095
    if (execvp(argv[0], argv) < 0) {
1096 1097 1098 1099 1100 1101 1102
        virReportSystemError(errno, "%s",
                             _("Unable to restart self"));
        goto cleanup;
    }

    abort(); /* This should be impossible to reach */

1103
 cleanup:
1104 1105 1106 1107 1108 1109 1110
    VIR_FREE(pairs);
    VIR_FREE(state);
    virJSONValueFree(object);
    return ret;
}


1111 1112 1113 1114 1115 1116 1117 1118 1119
static void
virLockDaemonUsage(const char *argv0, bool privileged)
{
    fprintf(stderr,
            _("\n"
              "Usage:\n"
              "  %s [options]\n"
              "\n"
              "Options:\n"
1120
              "  -h | --help            Display program help:\n"
1121 1122
              "  -v | --verbose         Verbose messages.\n"
              "  -d | --daemon          Run as a daemon & write PID file.\n"
1123
              "  -t | --timeout <secs>  Exit after timeout period.\n"
1124
              "  -f | --config <file>   Configuration file.\n"
1125
              "  -V | --version         Display version information.\n"
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
              "  -p | --pid-file <file> Change name of PID file.\n"
              "\n"
              "libvirt lock management daemon:\n"), argv0);

    if (privileged) {
        fprintf(stderr,
                _("\n"
                  "  Default paths:\n"
                  "\n"
                  "    Configuration file (unless overridden by -f):\n"
                  "      %s/libvirt/virtlockd.conf\n"
                  "\n"
                  "    Sockets:\n"
                  "      %s/run/libvirt/virtlockd-sock\n"
                  "\n"
                  "    PID file (unless overridden by -p):\n"
                  "      %s/run/virtlockd.pid\n"
                  "\n"),
                SYSCONFDIR,
                LOCALSTATEDIR,
                LOCALSTATEDIR);
    } else {
        fprintf(stderr, "%s",
                _("\n"
                  "  Default paths:\n"
                  "\n"
                  "    Configuration file (unless overridden by -f):\n"
                  "      $XDG_CONFIG_HOME/libvirt/virtlockd.conf\n"
                  "\n"
                  "    Sockets:\n"
                  "      $XDG_RUNTIME_DIR/libvirt/virtlockd-sock\n"
                  "\n"
                  "    PID file:\n"
                  "      $XDG_RUNTIME_DIR/libvirt/virtlockd.pid\n"
                  "\n"));
    }
}

int main(int argc, char **argv) {
1165 1166
    virNetServerPtr lockSrv = NULL;
    virNetServerPtr adminSrv = NULL;
1167
    virNetServerProgramPtr lockProgram = NULL;
1168
    virNetServerProgramPtr adminProgram = NULL;
1169 1170 1171 1172 1173 1174 1175 1176 1177
    char *remote_config_file = NULL;
    int statuswrite = -1;
    int ret = 1;
    int verbose = 0;
    int godaemon = 0;
    char *run_dir = NULL;
    char *pid_file = NULL;
    int pid_file_fd = -1;
    char *sock_file = NULL;
1178
    char *admin_sock_file = NULL;
1179
    int timeout = -1;        /* -t: Shutdown timeout */
1180
    char *state_file = NULL;
1181 1182 1183 1184
    bool implicit_conf = false;
    mode_t old_umask;
    bool privileged = false;
    virLockDaemonConfigPtr config = NULL;
1185
    int rv;
1186 1187

    struct option opts[] = {
1188 1189
        { "verbose", no_argument, &verbose, 'v'},
        { "daemon", no_argument, &godaemon, 'd'},
1190
        { "config", required_argument, NULL, 'f'},
1191
        { "timeout", required_argument, NULL, 't'},
1192
        { "pid-file", required_argument, NULL, 'p'},
1193 1194
        { "version", no_argument, NULL, 'V' },
        { "help", no_argument, NULL, 'h' },
1195 1196 1197
        {0, 0, 0, 0}
    };

1198
    privileged = geteuid() == 0;
1199

1200
    if (virGettextInitialize() < 0 ||
1201 1202 1203 1204 1205 1206 1207 1208 1209
        virThreadInitialize() < 0 ||
        virErrorInitialize() < 0) {
        fprintf(stderr, _("%s: initialization failed\n"), argv[0]);
        exit(EXIT_FAILURE);
    }

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

1212
        c = getopt_long(argc, argv, "df:p:t:vVh", opts, &optidx);
1213

1214
        if (c == -1)
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
            break;

        switch (c) {
        case 0:
            /* Got one of the flags */
            break;
        case 'v':
            verbose = 1;
            break;
        case 'd':
            godaemon = 1;
            break;

1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
        case 't':
            if (virStrToLong_i(optarg, &tmp, 10, &timeout) != 0
                || timeout <= 0
                /* Ensure that we can multiply by 1000 without overflowing.  */
                || timeout > INT_MAX / 1000) {
                VIR_ERROR(_("Invalid value for timeout"));
                exit(EXIT_FAILURE);
            }
            break;

1238 1239
        case 'p':
            VIR_FREE(pid_file);
1240 1241
            if (VIR_STRDUP_QUIET(pid_file, optarg) < 0)
                goto no_memory;
1242 1243 1244 1245
            break;

        case 'f':
            VIR_FREE(remote_config_file);
1246 1247
            if (VIR_STRDUP_QUIET(remote_config_file, optarg) < 0)
                goto no_memory;
1248 1249
            break;

1250
        case 'V':
1251
            virLockDaemonVersion(argv[0]);
1252
            exit(EXIT_SUCCESS);
1253

1254
        case 'h':
1255
            virLockDaemonUsage(argv[0], privileged);
1256
            exit(EXIT_SUCCESS);
1257

1258
        case '?':
1259
        default:
1260
            virLockDaemonUsage(argv[0], privileged);
1261 1262 1263 1264
            exit(EXIT_FAILURE);
        }
    }

1265 1266
    virFileActivateDirOverride(argv[0]);

1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
    if (!(config = virLockDaemonConfigNew(privileged))) {
        VIR_ERROR(_("Can't create initial configuration"));
        exit(EXIT_FAILURE);
    }

    /* No explicit config, so try and find a default one */
    if (remote_config_file == NULL) {
        implicit_conf = true;
        if (virLockDaemonConfigFilePath(privileged,
                                        &remote_config_file) < 0) {
            VIR_ERROR(_("Can't determine config path"));
            exit(EXIT_FAILURE);
        }
    }

    /* Read the config file if it exists*/
    if (remote_config_file &&
        virLockDaemonConfigLoadFile(config, remote_config_file, implicit_conf) < 0) {
1285 1286
        VIR_ERROR(_("Can't load config file: %s: %s"),
                  virGetLastErrorMessage(), remote_config_file);
1287 1288 1289 1290 1291 1292 1293 1294 1295
        exit(EXIT_FAILURE);
    }

    if (virLockDaemonSetupLogging(config, privileged, verbose, godaemon) < 0) {
        VIR_ERROR(_("Can't initialize logging"));
        exit(EXIT_FAILURE);
    }

    if (!pid_file &&
1296 1297 1298 1299
        virPidFileConstructPath(privileged,
                                LOCALSTATEDIR,
                                "virtlockd",
                                &pid_file) < 0) {
1300 1301 1302 1303 1304 1305
        VIR_ERROR(_("Can't determine pid file path."));
        exit(EXIT_FAILURE);
    }
    VIR_DEBUG("Decided on pid file path '%s'", NULLSTR(pid_file));

    if (virLockDaemonUnixSocketPaths(privileged,
1306 1307
                                     &sock_file,
                                     &admin_sock_file) < 0) {
1308 1309 1310
        VIR_ERROR(_("Can't determine socket paths"));
        exit(EXIT_FAILURE);
    }
1311 1312
    VIR_DEBUG("Decided on socket paths '%s' and '%s'",
              sock_file, admin_sock_file);
1313

1314 1315 1316 1317
    if (virLockDaemonExecRestartStatePath(privileged,
                                          &state_file) < 0) {
        VIR_ERROR(_("Can't determine restart state file path"));
        exit(EXIT_FAILURE);
1318
    }
1319 1320
    VIR_DEBUG("Decided on restart state file path '%s'",
              state_file);
1321 1322 1323

    /* Ensure the rundir exists (on tmpfs on some systems) */
    if (privileged) {
1324 1325
        if (VIR_STRDUP_QUIET(run_dir, LOCALSTATEDIR "/run/libvirt") < 0)
            goto no_memory;
1326
    } else {
1327
        if (!(run_dir = virGetUserRuntimeDirectory())) {
1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342
            VIR_ERROR(_("Can't determine user directory"));
            goto cleanup;
        }
    }

    if (privileged)
        old_umask = umask(022);
    else
        old_umask = umask(077);
    VIR_DEBUG("Ensuring run dir '%s' exists", run_dir);
    if (virFileMakePath(run_dir) < 0) {
        char ebuf[1024];
        VIR_ERROR(_("unable to create rundir %s: %s"), run_dir,
                  virStrerror(errno, ebuf, sizeof(ebuf)));
        ret = VIR_LOCK_DAEMON_ERR_RUNDIR;
1343
        umask(old_umask);
1344 1345 1346 1347
        goto cleanup;
    }
    umask(old_umask);

1348 1349 1350 1351
    if ((rv = virLockDaemonPostExecRestart(state_file,
                                           pid_file,
                                           &pid_file_fd,
                                           privileged)) < 0) {
1352 1353 1354 1355
        ret = VIR_LOCK_DAEMON_ERR_INIT;
        goto cleanup;
    }

1356 1357 1358
    /* rv == 1 means we successfully restored from the saved internal state
     * (but still need to add @lockProgram into @srv). rv == 0 means that no
     * saved state is present, therefore initialize from scratch here. */
1359
    if (rv == 0) {
1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376
        if (godaemon) {
            char ebuf[1024];

            if (chdir("/") < 0) {
                VIR_ERROR(_("cannot change to root directory: %s"),
                          virStrerror(errno, ebuf, sizeof(ebuf)));
                goto cleanup;
            }

            if ((statuswrite = virLockDaemonForkIntoBackground(argv[0])) < 0) {
                VIR_ERROR(_("Failed to fork as daemon: %s"),
                          virStrerror(errno, ebuf, sizeof(ebuf)));
                goto cleanup;
            }
        }

        /* If we have a pidfile set, claim it now, exiting if already taken */
1377
        if ((pid_file_fd = virPidFileAcquirePath(pid_file, false, getpid())) < 0) {
1378 1379 1380 1381
            ret = VIR_LOCK_DAEMON_ERR_PIDFILE;
            goto cleanup;
        }

1382
        if (!(lockDaemon = virLockDaemonNew(config, privileged))) {
1383 1384 1385
            ret = VIR_LOCK_DAEMON_ERR_INIT;
            goto cleanup;
        }
1386

1387 1388 1389
        lockSrv = virNetDaemonGetServer(lockDaemon->dmn, "virtlockd");
        adminSrv = virNetDaemonGetServer(lockDaemon->dmn, "admin");
        if ((rv = virLockDaemonSetupNetworkingSystemD(lockSrv, adminSrv)) < 0) {
1390 1391 1392 1393 1394
            ret = VIR_LOCK_DAEMON_ERR_NETWORK;
            goto cleanup;
        }

        /* Only do this, if systemd did not pass a FD */
1395 1396 1397 1398 1399 1400
        if (rv == 0) {
            if (virLockDaemonSetupNetworkingNative(lockSrv, sock_file) < 0 ||
                virLockDaemonSetupNetworkingNative(adminSrv, admin_sock_file) < 0) {
                ret = VIR_LOCK_DAEMON_ERR_NETWORK;
                goto cleanup;
            }
1401
        }
1402 1403
        virObjectUnref(lockSrv);
        virObjectUnref(adminSrv);
1404 1405
    }

1406 1407 1408 1409 1410
    lockSrv = virNetDaemonGetServer(lockDaemon->dmn, "virtlockd");
    /* If exec-restarting from old virtlockd, we won't have an
     * admin server present */
    if (virNetDaemonHasServer(lockDaemon->dmn, "admin"))
        adminSrv = virNetDaemonGetServer(lockDaemon->dmn, "admin");
1411

1412 1413
    if (timeout != -1) {
        VIR_DEBUG("Registering shutdown timeout %d", timeout);
1414
        virNetDaemonAutoShutdown(lockDaemon->dmn,
1415 1416 1417
                                 timeout);
    }

1418
    if ((virLockDaemonSetupSignals(lockDaemon->dmn)) < 0) {
1419 1420 1421 1422
        ret = VIR_LOCK_DAEMON_ERR_SIGNAL;
        goto cleanup;
    }

1423 1424 1425 1426 1427 1428 1429
    if (!(lockProgram = virNetServerProgramNew(VIR_LOCK_SPACE_PROTOCOL_PROGRAM,
                                               VIR_LOCK_SPACE_PROTOCOL_PROGRAM_VERSION,
                                               virLockSpaceProtocolProcs,
                                               virLockSpaceProtocolNProcs))) {
        ret = VIR_LOCK_DAEMON_ERR_INIT;
        goto cleanup;
    }
1430

1431
    if (virNetServerAddProgram(lockSrv, lockProgram) < 0) {
1432 1433 1434 1435
        ret = VIR_LOCK_DAEMON_ERR_INIT;
        goto cleanup;
    }

1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449
    if (adminSrv != NULL) {
        if (!(adminProgram = virNetServerProgramNew(ADMIN_PROGRAM,
                                                    ADMIN_PROTOCOL_VERSION,
                                                    adminProcs,
                                                    adminNProcs))) {
            ret = VIR_LOCK_DAEMON_ERR_INIT;
            goto cleanup;
        }
        if (virNetServerAddProgram(adminSrv, adminProgram) < 0) {
            ret = VIR_LOCK_DAEMON_ERR_INIT;
            goto cleanup;
        }
    }

1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
    /* Disable error func, now logging is setup */
    virSetErrorFunc(NULL, virLockDaemonErrorHandler);


    /* Tell parent of daemon that basic initialization is complete
     * In particular we're ready to accept net connections & have
     * written the pidfile
     */
    if (statuswrite != -1) {
        char status = 0;
        while (write(statuswrite, &status, 1) == -1 &&
               errno == EINTR)
            ;
        VIR_FORCE_CLOSE(statuswrite);
    }

    /* Start accepting new clients from network */

1468 1469
    virNetDaemonUpdateServices(lockDaemon->dmn, true);
    virNetDaemonRun(lockDaemon->dmn);
1470 1471

    if (execRestart &&
1472
        virLockDaemonPreExecRestart(state_file,
1473
                                    lockDaemon->dmn,
1474
                                    argv) < 0)
1475
        ret = VIR_LOCK_DAEMON_ERR_REEXEC;
1476 1477
    else
        ret = 0;
1478

1479
 cleanup:
1480
    virObjectUnref(lockProgram);
1481 1482 1483
    virObjectUnref(adminProgram);
    virObjectUnref(lockSrv);
    virObjectUnref(adminSrv);
1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498
    virLockDaemonFree(lockDaemon);
    if (statuswrite != -1) {
        if (ret != 0) {
            /* Tell parent of daemon what failed */
            char status = ret;
            while (write(statuswrite, &status, 1) == -1 &&
                   errno == EINTR)
                ;
        }
        VIR_FORCE_CLOSE(statuswrite);
    }
    if (pid_file_fd != -1)
        virPidFileReleasePath(pid_file, pid_file_fd);
    VIR_FREE(pid_file);
    VIR_FREE(sock_file);
1499
    VIR_FREE(admin_sock_file);
1500
    VIR_FREE(state_file);
1501 1502
    VIR_FREE(run_dir);
    return ret;
1503

1504
 no_memory:
1505 1506
    VIR_ERROR(_("Can't allocate memory"));
    exit(EXIT_FAILURE);
1507
}