lxc_controller.c 23.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * Copyright IBM Corp. 2008
 *
 * lxc_controller.c: linux container process controller
 *
 * Authors:
 *  David L. Leskovec <dlesko at linux.vnet.ibm.com>
 *
 * 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
 */

#include <config.h>

#include <sys/epoll.h>
27 28
#include <sys/wait.h>
#include <sys/socket.h>
29 30
#include <sys/types.h>
#include <sys/un.h>
31
#include <unistd.h>
32 33 34
#include <paths.h>
#include <fcntl.h>
#include <signal.h>
35
#include <getopt.h>
36
#include <sys/mount.h>
37

D
Daniel P. Berrange 已提交
38 39 40 41
#if HAVE_CAPNG
#include <cap-ng.h>
#endif

42
#include "virterror_internal.h"
43
#include "logging.h"
44 45 46
#include "util.h"

#include "lxc_conf.h"
47 48 49 50
#include "lxc_container.h"
#include "veth.h"
#include "memory.h"
#include "util.h"
51

52 53
#define VIR_FROM_THIS VIR_FROM_LXC

D
Dan Smith 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
struct cgroup_device_policy {
    char type;
    int major;
    int minor;
};

/**
 * lxcSetContainerResources
 * @def: pointer to virtual machine structure
 *
 * Creates a cgroup for the container, moves the task inside,
 * and sets resource limits
 *
 * Returns 0 on success or -1 in case of error
 */
static int lxcSetContainerResources(virDomainDefPtr def)
{
71
    virCgroupPtr driver;
D
Dan Smith 已提交
72 73 74 75 76 77 78 79 80 81
    virCgroupPtr cgroup;
    int rc = -1;
    int i;
    struct cgroup_device_policy devices[] = {
        {'c', LXC_DEV_MAJ_MEMORY, LXC_DEV_MIN_NULL},
        {'c', LXC_DEV_MAJ_MEMORY, LXC_DEV_MIN_ZERO},
        {'c', LXC_DEV_MAJ_MEMORY, LXC_DEV_MIN_FULL},
        {'c', LXC_DEV_MAJ_MEMORY, LXC_DEV_MIN_RANDOM},
        {'c', LXC_DEV_MAJ_MEMORY, LXC_DEV_MIN_URANDOM},
        {'c', LXC_DEV_MAJ_TTY, LXC_DEV_MIN_CONSOLE},
82
        {'c', LXC_DEV_MAJ_TTY, LXC_DEV_MIN_PTMX},
D
Dan Smith 已提交
83 84
        {0,   0, 0}};

85 86
    rc = virCgroupForDriver("lxc", &driver, 1, 0);
    if (rc != 0) {
87 88 89 90 91 92
        /* Skip all if no driver cgroup is configured */
        if (rc == -ENXIO || rc == -ENOENT)
            return 0;

        virReportSystemError(NULL, -rc, "%s",
                             _("Unable to get cgroup for driver"));
93 94
        return rc;
    }
D
Dan Smith 已提交
95

96
    rc = virCgroupForDomain(driver, def->name, &cgroup, 1);
D
Dan Smith 已提交
97
    if (rc != 0) {
98 99 100
        virReportSystemError(NULL, -rc,
                             _("Unable to create cgroup for domain %s"),
                             def->name);
101
        goto cleanup;
D
Dan Smith 已提交
102 103 104
    }

    rc = virCgroupSetMemory(cgroup, def->maxmem);
105 106 107 108 109 110
    if (rc != 0) {
        virReportSystemError(NULL, -rc,
                             _("Unable to set memory limit for domain %s"),
                             def->name);
        goto cleanup;
    }
D
Dan Smith 已提交
111 112

    rc = virCgroupDenyAllDevices(cgroup);
113 114 115 116 117 118
    if (rc != 0) {
        virReportSystemError(NULL, -rc,
                             _("Unable to deny devices for domain %s"),
                             def->name);
        goto cleanup;
    }
D
Dan Smith 已提交
119 120 121 122 123 124 125

    for (i = 0; devices[i].type != 0; i++) {
        struct cgroup_device_policy *dev = &devices[i];
        rc = virCgroupAllowDevice(cgroup,
                                  dev->type,
                                  dev->major,
                                  dev->minor);
126 127 128 129 130 131
        if (rc != 0) {
            virReportSystemError(NULL, -rc,
                                 _("Unable to allow device %c:%d:%d for domain %s"),
                                 dev->type, dev->major, dev->minor, def->name);
            goto cleanup;
        }
D
Dan Smith 已提交
132 133
    }

134
    rc = virCgroupAllowDeviceMajor(cgroup, 'c', LXC_DEV_MAJ_PTY);
135 136 137 138 139 140
    if (rc != 0) {
        virReportSystemError(NULL, -rc,
                             _("Unable to allow PYT devices for domain %s"),
                             def->name);
        goto cleanup;
    }
141

D
Dan Smith 已提交
142 143
    rc = virCgroupAddTask(cgroup, getpid());
    if (rc != 0) {
144 145 146
        virReportSystemError(NULL, -rc,
                             _("Unable to add task %d to cgroup for domain %s"),
                             getpid(), def->name);
D
Dan Smith 已提交
147 148
    }

149 150
cleanup:
    virCgroupFree(&driver);
D
Dan Smith 已提交
151 152 153 154 155
    virCgroupFree(&cgroup);

    return rc;
}

156 157 158
static char*lxcMonitorPath(virDomainDefPtr def)
{
    char *sockpath;
159 160 161

    if (virAsprintf(&sockpath, "%s/%s.sock",
                    LXC_STATE_DIR, def->name) < 0)
162
        virReportOOMError(NULL);
163 164 165 166 167 168 169 170 171
    return sockpath;
}

static int lxcMonitorServer(const char *sockpath)
{
    int fd;
    struct sockaddr_un addr;

    if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
172 173 174
        virReportSystemError(NULL, errno,
                             _("failed to create server socket '%s'"),
                             sockpath);
175 176 177 178 179 180
        goto error;
    }

    unlink(sockpath);
    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
C
Chris Lalancette 已提交
181 182 183 184 185
    if (virStrcpyStatic(addr.sun_path, sockpath) == NULL) {
        lxcError(NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                 _("Socket path %s too long for destination"), sockpath);
        goto error;
    }
186 187

    if (bind(fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
188 189 190
        virReportSystemError(NULL, errno,
                             _("failed to bind server socket '%s'"),
                             sockpath);
191 192 193
        goto error;
    }
    if (listen(fd, 30 /* backlog */ ) < 0) {
194 195 196
        virReportSystemError(NULL, errno,
                             _("failed to listen server socket %s"),
                             sockpath);
197 198 199 200 201 202 203 204 205 206
        goto error;
    }

    return fd;

error:
    if (fd != -1)
        close(fd);
    return -1;
}
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227

/**
 * lxcFdForward:
 * @readFd: file descriptor to read
 * @writeFd: file desriptor to write
 *
 * Reads 1 byte of data from readFd and writes to writeFd.
 *
 * Returns 0 on success, EAGAIN if returned on read, or -1 in case of error
 */
static int lxcFdForward(int readFd, int writeFd)
{
    int rc = -1;
    char buf[2];

    if (1 != (saferead(readFd, buf, 1))) {
        if (EAGAIN == errno) {
            rc = EAGAIN;
            goto cleanup;
        }

228 229 230
        virReportSystemError(NULL, errno,
                             _("read of fd %d failed"),
                             readFd);
231 232 233 234
        goto cleanup;
    }

    if (1 != (safewrite(writeFd, buf, 1))) {
235 236 237
        virReportSystemError(NULL, errno,
                             _("write to fd %d failed"),
                             writeFd);
238 239 240 241 242 243 244 245 246
        goto cleanup;
    }

    rc = 0;

cleanup:
    return rc;
}

D
Daniel P. Berrange 已提交
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265

static int lxcControllerClearCapabilities(void)
{
#if HAVE_CAPNG
    int ret;

    capng_clear(CAPNG_SELECT_BOTH);

    if ((ret = capng_apply(CAPNG_SELECT_BOTH)) < 0) {
        lxcError(NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                 _("failed to apply capabilities: %d"), ret);
        return -1;
    }
#else
    VIR_WARN0(_("libcap-ng support not compiled in, unable to clear capabilities"));
#endif
    return 0;
}

266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
typedef struct _lxcTtyForwardFd_t {
    int fd;
    int active;
} lxcTtyForwardFd_t;

/**
 * lxcTtyForward:
 * @appPty: Open fd for application facing Pty
 * @contPty: Open fd for container facing Pty
 *
 * Forwards traffic between fds.  Data read from appPty will be written to contPty
 * This process loops forever.
 * This uses epoll in edge triggered mode to avoid a hard loop on POLLHUP
 * events when the user disconnects the virsh console via ctrl-]
 *
 * Returns 0 on success or -1 in case of error
 */
283 284 285 286
static int lxcControllerMain(int monitor,
                             int client,
                             int appPty,
                             int contPty)
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
{
    int rc = -1;
    int epollFd;
    struct epoll_event epollEvent;
    int numEvents;
    int numActive = 0;
    lxcTtyForwardFd_t fdArray[2];
    int timeout = -1;
    int curFdOff = 0;
    int writeFdOff = 0;

    fdArray[0].fd = appPty;
    fdArray[0].active = 0;
    fdArray[1].fd = contPty;
    fdArray[1].active = 0;

    /* create the epoll fild descriptor */
    epollFd = epoll_create(2);
    if (0 > epollFd) {
306 307
        virReportSystemError(NULL, errno, "%s",
                             _("epoll_create(2) failed"));
308 309 310 311 312 313 314 315
        goto cleanup;
    }

    /* add the file descriptors the epoll fd */
    memset(&epollEvent, 0x00, sizeof(epollEvent));
    epollEvent.events = EPOLLIN|EPOLLET;    /* edge triggered */
    epollEvent.data.fd = appPty;
    if (0 > epoll_ctl(epollFd, EPOLL_CTL_ADD, appPty, &epollEvent)) {
316 317
        virReportSystemError(NULL, errno, "%s",
                             _("epoll_ctl(appPty) failed"));
318 319 320 321
        goto cleanup;
    }
    epollEvent.data.fd = contPty;
    if (0 > epoll_ctl(epollFd, EPOLL_CTL_ADD, contPty, &epollEvent)) {
322 323
        virReportSystemError(NULL, errno, "%s",
                             _("epoll_ctl(contPty) failed"));
324 325 326
        goto cleanup;
    }

327 328 329
    epollEvent.events = EPOLLIN;
    epollEvent.data.fd = monitor;
    if (0 > epoll_ctl(epollFd, EPOLL_CTL_ADD, monitor, &epollEvent)) {
330 331
        virReportSystemError(NULL, errno, "%s",
                             _("epoll_ctl(contPty) failed"));
332 333 334 335 336 337
        goto cleanup;
    }

    epollEvent.events = EPOLLHUP;
    epollEvent.data.fd = client;
    if (0 > epoll_ctl(epollFd, EPOLL_CTL_ADD, client, &epollEvent)) {
338 339
        virReportSystemError(NULL, errno, "%s",
                             _("epoll_ctl(contPty) failed"));
340 341 342
        goto cleanup;
    }

343 344 345 346
    while (1) {
        /* if active fd's, return if no events, else wait forever */
        timeout = (numActive > 0) ? 0 : -1;
        numEvents = epoll_wait(epollFd, &epollEvent, 1, timeout);
347 348 349 350 351 352
        if (numEvents > 0) {
            if (epollEvent.data.fd == monitor) {
                int fd = accept(monitor, NULL, 0);
                if (client != -1) { /* Already connected, so kick new one out */
                    close(fd);
                    continue;
353
                }
354 355 356 357
                client = fd;
                epollEvent.events = EPOLLHUP;
                epollEvent.data.fd = client;
                if (0 > epoll_ctl(epollFd, EPOLL_CTL_ADD, client, &epollEvent)) {
358 359
                    virReportSystemError(NULL, errno, "%s",
                                         _("epoll_ctl(contPty) failed"));
360 361 362 363
                    goto cleanup;
                }
            } else if (client != -1 && epollEvent.data.fd == client) {
                if (0 > epoll_ctl(epollFd, EPOLL_CTL_DEL, client, &epollEvent)) {
364 365
                    virReportSystemError(NULL, errno, "%s",
                                         _("epoll_ctl(contPty) failed"));
366 367 368 369
                    goto cleanup;
                }
                close(client);
                client = -1;
370
            } else {
371 372 373 374 375 376 377 378 379 380 381 382 383 384
                if (epollEvent.events & EPOLLIN) {
                    curFdOff = epollEvent.data.fd == appPty ? 0 : 1;
                    if (!fdArray[curFdOff].active) {
                        fdArray[curFdOff].active = 1;
                        ++numActive;
                    }
                } else if (epollEvent.events & EPOLLHUP) {
                    DEBUG("EPOLLHUP from fd %d", epollEvent.data.fd);
                    continue;
                } else {
                    lxcError(NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             _("error event %d"), epollEvent.events);
                    goto cleanup;
                }
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
            }
        } else if (0 == numEvents) {
            if (2 == numActive) {
                /* both fds active, toggle between the two */
                curFdOff ^= 1;
            } else {
                /* only one active, if current is active, use it, else it */
                /* must be the other one (ie. curFd just went inactive) */
                curFdOff = fdArray[curFdOff].active ? curFdOff : curFdOff ^ 1;
            }

        } else  {
            if (EINTR == errno) {
                continue;
            }

            /* error */
402 403
            virReportSystemError(NULL, errno, "%s",
                                 _("epoll_wait() failed"));
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
            goto cleanup;

        }

        if (0 < numActive) {
            writeFdOff = curFdOff ^ 1;
            rc = lxcFdForward(fdArray[curFdOff].fd, fdArray[writeFdOff].fd);

            if (EAGAIN == rc) {
                /* this fd no longer has data, set it as inactive */
                --numActive;
                fdArray[curFdOff].active = 0;
            } else if (-1 == rc) {
                goto cleanup;
            }

        }

    }

    rc = 0;

cleanup:
    close(appPty);
    close(contPty);
    close(epollFd);
    return rc;
}

433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483


/**
 * lxcControllerMoveInterfaces
 * @nveths: number of interfaces
 * @veths: interface names
 * @container: pid of container
 *
 * Moves network interfaces into a container's namespace
 *
 * Returns 0 on success or -1 in case of error
 */
static int lxcControllerMoveInterfaces(unsigned int nveths,
                                       char **veths,
                                       pid_t container)
{
    unsigned int i;
    for (i = 0 ; i < nveths ; i++)
        if (moveInterfaceToNetNs(veths[i], container) < 0) {
            lxcError(NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                     _("failed to move interface %s to ns %d"),
                     veths[i], container);
            return -1;
        }

    return 0;
}


/**
 * lxcCleanupInterfaces:
 * @conn: pointer to connection
 * @vm: pointer to virtual machine structure
 *
 * Cleans up the container interfaces by deleting the veth device pairs.
 *
 * Returns 0 on success or -1 in case of error
 */
static int lxcControllerCleanupInterfaces(unsigned int nveths,
                                          char **veths)
{
    unsigned int i;
    for (i = 0 ; i < nveths ; i++)
        if (vethDelete(veths[i]) < 0)
            lxcError(NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                     _("failed to delete veth: %s"), veths[i]);
            /* will continue to try to cleanup any other interfaces */

    return 0;
}

484 485 486 487 488 489 490
#ifndef MS_REC
#define MS_REC          16384
#endif

#ifndef MS_SLAVE
#define MS_SLAVE              (1<<19)
#endif
491 492

static int
493
lxcControllerRun(virDomainDefPtr def,
494 495 496 497 498 499 500 501 502 503 504
                 unsigned int nveths,
                 char **veths,
                 int monitor,
                 int client,
                 int appPty)
{
    int rc = -1;
    int control[2] = { -1, -1};
    int containerPty;
    char *containerPtyPath;
    pid_t container = -1;
505 506 507
    virDomainFSDefPtr root;
    char *devpts = NULL;
    char *devptmx = NULL;
508 509

    if (socketpair(PF_UNIX, SOCK_STREAM, 0, control) < 0) {
510 511
        virReportSystemError(NULL, errno, "%s",
                             _("sockpair failed"));
512 513 514
        goto cleanup;
    }

515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
    root = virDomainGetRootFilesystem(def);

    /*
     * If doing a chroot style setup, we need to prepare
     * a private /dev/pts for the child now, which they
     * will later move into position.
     *
     * This is complex because 'virsh console' needs to
     * use /dev/pts from the host OS, and the guest OS
     * needs to use /dev/pts from the guest.
     *
     * This means that we (libvirt_lxc) need to see and
     * use both /dev/pts instances. We're running in the
     * host OS context though and don't want to expose
     * the guest OS /dev/pts there.
     *
     * Thus we call unshare(CLONE_NS) so that we can see
     * the guest's new /dev/pts, without it becoming
     * visible to the host OS. We also put the root FS
     * into slave mode, just in case it was currently
     * marked as shared
     */
    if (root) {
        VIR_DEBUG0("Setting up private /dev/pts");
        if (unshare(CLONE_NEWNS) < 0) {
            virReportSystemError(NULL, errno, "%s",
                                 _("cannot unshare mount namespace"));
            goto cleanup;
        }

        if (mount("", "/", NULL, MS_SLAVE|MS_REC, NULL) < 0) {
            virReportSystemError(NULL, errno, "%s",
                                 _("failed to switch root mount into slave mode"));
            goto cleanup;
        }

        if (virAsprintf(&devpts, "%s/dev/pts", root->src) < 0 ||
            virAsprintf(&devptmx, "%s/dev/pts/ptmx", root->src) < 0) {
            virReportOOMError(NULL);
            goto cleanup;
        }

        if (virFileMakePath(devpts) < 0) {
            virReportSystemError(NULL, errno,
                                 _("failed to make path %s"),
                                 devpts);
            goto cleanup;
        }

        VIR_DEBUG("Mouting 'devpts' on %s", devpts);
        if (mount("devpts", devpts, "devpts", 0, "newinstance,ptmxmode=0666") < 0) {
            virReportSystemError(NULL, errno,
                                 _("failed to mount devpts on %s"),
                                 devpts);
            goto cleanup;
        }

        if (access(devptmx, R_OK) < 0) {
            VIR_WARN0("kernel does not support private devpts, using shared devpts");
            VIR_FREE(devptmx);
        }
576 577
    }

578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
    if (devptmx) {
        VIR_DEBUG("Opening tty on private %s", devptmx);
        if (virFileOpenTtyAt(devptmx,
                             &containerPty,
                             &containerPtyPath,
                             0) < 0) {
            virReportSystemError(NULL, errno, "%s",
                                 _("failed to allocate tty"));
            goto cleanup;
        }
    } else {
        VIR_DEBUG0("Opening tty on shared /dev/ptmx");
        if (virFileOpenTty(&containerPty,
                           &containerPtyPath,
                           0) < 0) {
            virReportSystemError(NULL, errno, "%s",
                                 _("failed to allocate tty"));
            goto cleanup;
        }
    }


600 601 602
    if (lxcSetContainerResources(def) < 0)
        goto cleanup;

603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
    if ((container = lxcContainerStart(def,
                                       nveths,
                                       veths,
                                       control[1],
                                       containerPtyPath)) < 0)
        goto cleanup;
    close(control[1]);
    control[1] = -1;

    if (lxcControllerMoveInterfaces(nveths, veths, container) < 0)
        goto cleanup;

    if (lxcContainerSendContinue(control[0]) < 0)
        goto cleanup;

D
Daniel P. Berrange 已提交
618 619 620 621 622
    /* Now the container is running, there's no need for us to keep
       any elevated capabilities */
    if (lxcControllerClearCapabilities() < 0)
        goto cleanup;

623 624 625
    rc = lxcControllerMain(monitor, client, appPty, containerPty);

cleanup:
626 627
    VIR_FREE(devptmx);
    VIR_FREE(devpts);
628 629 630 631 632 633 634 635
    if (control[0] != -1)
        close(control[0]);
    if (control[1] != -1)
        close(control[1]);
    VIR_FREE(containerPtyPath);
    if (containerPty != -1)
        close(containerPty);

636 637 638 639
    if (container > 1) {
        kill(container, SIGTERM);
        waitpid(container, NULL, 0);
    }
640 641 642 643
    return rc;
}


644
int main(int argc, char *argv[])
645 646
{
    pid_t pid;
647
    int rc = 1;
648
    int client;
649 650 651 652 653 654 655 656 657 658
    char *name = NULL;
    int nveths = 0;
    char **veths = NULL;
    int monitor = -1;
    int appPty = -1;
    int bg = 0;
    virCapsPtr caps = NULL;
    virDomainDefPtr def = NULL;
    char *configFile = NULL;
    char *sockpath = NULL;
659
    const struct option options[] = {
660 661 662 663 664 665 666
        { "background", 0, NULL, 'b' },
        { "name",   1, NULL, 'n' },
        { "veth",   1, NULL, 'v' },
        { "console", 1, NULL, 'c' },
        { "help", 0, NULL, 'h' },
        { 0, 0, 0, 0 },
    };
667

668 669
    while (1) {
        int c;
670

671 672 673 674 675 676 677 678 679 680 681 682 683
        c = getopt_long(argc, argv, "dn:v:m:c:h",
                       options, NULL);

        if (c == -1)
            break;

        switch (c) {
        case 'b':
            bg = 1;
            break;

        case 'n':
            if ((name = strdup(optarg)) == NULL) {
684
                virReportOOMError(NULL);
685
                goto cleanup;
686
            }
687 688 689 690
            break;

        case 'v':
            if (VIR_REALLOC_N(veths, nveths+1) < 0) {
691
                virReportOOMError(NULL);
692
                goto cleanup;
693
            }
694
            if ((veths[nveths++] = strdup(optarg)) == NULL) {
695
                virReportOOMError(NULL);
696
                goto cleanup;
697
            }
698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
            break;

        case 'c':
            if (virStrToLong_i(optarg, NULL, 10, &appPty) < 0) {
                fprintf(stderr, "malformed --console argument '%s'", optarg);
                goto cleanup;
            }
            break;

        case 'h':
        case '?':
            fprintf(stderr, "\n");
            fprintf(stderr, "syntax: %s [OPTIONS]\n", argv[0]);
            fprintf(stderr, "\n");
            fprintf(stderr, "Options\n");
            fprintf(stderr, "\n");
            fprintf(stderr, "  -b, --background\n");
            fprintf(stderr, "  -n NAME, --name NAME\n");
            fprintf(stderr, "  -c FD, --console FD\n");
            fprintf(stderr, "  -v VETH, --veth VETH\n");
            fprintf(stderr, "  -h, --help\n");
            fprintf(stderr, "\n");
            goto cleanup;
721 722 723 724
        }
    }


725 726 727 728 729 730 731 732 733 734 735 736 737 738
    if (name == NULL) {
        fprintf(stderr, "%s: missing --name argument for configuration\n", argv[0]);
        goto cleanup;
    }

    if (appPty < 0) {
        fprintf(stderr, "%s: missing --console argument for container PTY\n", argv[0]);
        goto cleanup;
    }

    if (getuid() && 0) {
        fprintf(stderr, "%s: must be run as the 'root' user\n", argv[0]);
        goto cleanup;
    }
739

740 741
    if ((caps = lxcCapsInit()) == NULL)
        goto cleanup;
742

743 744 745 746
    if ((configFile = virDomainConfigFile(NULL,
                                          LXC_STATE_DIR,
                                          name)) == NULL)
        goto cleanup;
747

748 749
    if ((def = virDomainDefParseFile(NULL, caps, configFile,
                                     VIR_DOMAIN_XML_INACTIVE)) == NULL)
750
        goto cleanup;
751

752
    if (def->nnets != nveths) {
753
        fprintf(stderr, "%s: expecting %d veths, but got %d\n",
754
                argv[0], def->nnets, nveths);
755
        goto cleanup;
756 757
    }

758 759
    if ((sockpath = lxcMonitorPath(def)) == NULL)
        goto cleanup;
760

761 762
    if ((monitor = lxcMonitorServer(sockpath)) < 0)
        goto cleanup;
763

764 765 766
    if (bg) {
        if ((pid = fork()) < 0)
            goto cleanup;
767

768 769
        if (pid > 0) {
            if ((rc = virFileWritePid(LXC_STATE_DIR, name, pid)) != 0) {
770 771 772
                virReportSystemError(NULL, rc,
                                     _("Unable to write pid file '%s/%s.pid'"),
                                     LXC_STATE_DIR, name);
773 774
                _exit(1);
            }
775

776 777 778 779
            /* First child now exits, allowing original caller
             * (ie libvirtd's LXC driver to complete their
             * waitpid & continue */
            _exit(0);
780 781
        }

782 783
        /* Don't hold onto any cwd we inherit from libvirtd either */
        if (chdir("/") < 0) {
784 785
            virReportSystemError(NULL, errno, "%s",
                                 _("Unable to change to root dir"));
786 787 788 789
            goto cleanup;
        }

        if (setsid() < 0) {
790 791
            virReportSystemError(NULL, errno, "%s",
                                 _("Unable to become session leader"));
792 793 794
            goto cleanup;
        }
    }
795 796

    /* Accept initial client which is the libvirtd daemon */
797
    if ((client = accept(monitor, NULL, 0)) < 0) {
798 799
        virReportSystemError(NULL, errno, "%s",
                             _("Failed connection from LXC driver"));
800
        goto cleanup;
801 802
    }

803
    rc = lxcControllerRun(def, nveths, veths, monitor, client, appPty);
804 805


806
cleanup:
807 808
    if (def)
        virFileDeletePid(LXC_STATE_DIR, def->name);
809
    lxcControllerCleanupInterfaces(nveths, veths);
J
Jim Meyering 已提交
810 811
    if (sockpath)
        unlink(sockpath);
812 813 814 815
    VIR_FREE(sockpath);

    return rc;
}