lxc_controller.c 57.1 KB
Newer Older
1
/*
2 3
 * Copyright (C) 2010-2011 Red Hat, Inc.
 * Copyright IBM Corp. 2008
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *
 * 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>
28 29
#include <sys/wait.h>
#include <sys/socket.h>
30 31
#include <sys/types.h>
#include <sys/un.h>
32 33
#include <sys/utsname.h>
#include <sys/personality.h>
34
#include <unistd.h>
35
#include <paths.h>
36
#include <errno.h>
37 38
#include <fcntl.h>
#include <signal.h>
39
#include <getopt.h>
40
#include <sys/mount.h>
E
Eric Blake 已提交
41
#include <locale.h>
42 43
#include <linux/loop.h>
#include <dirent.h>
44 45
#include <grp.h>
#include <sys/stat.h>
46
#include <time.h>
47

D
Daniel P. Berrange 已提交
48
#if HAVE_CAPNG
49
# include <cap-ng.h>
D
Daniel P. Berrange 已提交
50 51
#endif

52 53 54 55 56
#if HAVE_NUMACTL
# define NUMA_VERSION1_COMPATIBILITY 1
# include <numa.h>
#endif

57
#include "virterror_internal.h"
58
#include "logging.h"
59 60 61
#include "util.h"

#include "lxc_conf.h"
62
#include "lxc_container.h"
63 64
#include "virnetdev.h"
#include "virnetdevveth.h"
65 66
#include "memory.h"
#include "util.h"
E
Eric Blake 已提交
67
#include "virfile.h"
68
#include "virpidfile.h"
69
#include "command.h"
70 71
#include "processinfo.h"
#include "nodeinfo.h"
72
#include "virrandom.h"
73

74 75
#define VIR_FROM_THIS VIR_FROM_LXC

D
Dan Smith 已提交
76 77 78 79 80 81
struct cgroup_device_policy {
    char type;
    int major;
    int minor;
};

82

83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
typedef struct _virLXCControllerConsole virLXCControllerConsole;
typedef virLXCControllerConsole *virLXCControllerConsolePtr;
struct _virLXCControllerConsole {
    int hostWatch;
    int hostFd;  /* PTY FD in the host OS */
    bool hostClosed;
    int hostEpoll;
    bool hostBlocking;

    int contWatch;
    int contFd;  /* PTY FD in the container */
    bool contClosed;
    int contEpoll;
    bool contBlocking;

    int epollWatch;
    int epollFd; /* epoll FD for dealing with EOF */

    size_t fromHostLen;
    char fromHostBuf[1024];
    size_t fromContLen;
    char fromContBuf[1024];
};

107 108 109 110 111
typedef struct _virLXCController virLXCController;
typedef virLXCController *virLXCControllerPtr;
struct _virLXCController {
    char *name;
    virDomainDefPtr def;
112

113 114
    int handshakeFd;

115 116
    pid_t initpid;

117 118
    size_t nveths;
    char **veths;
119 120 121

    size_t nconsoles;
    virLXCControllerConsolePtr consoles;
122 123 124

    size_t nloopDevs;
    int *loopDevFds;
125 126

    virSecurityManagerPtr securityManager;
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
};

static void virLXCControllerFree(virLXCControllerPtr ctrl);

static virLXCControllerPtr virLXCControllerNew(const char *name)
{
    virLXCControllerPtr ctrl = NULL;
    virCapsPtr caps = NULL;
    char *configFile = NULL;

    if (VIR_ALLOC(ctrl) < 0)
        goto no_memory;

    if (!(ctrl->name = strdup(name)))
        goto no_memory;

    if ((caps = lxcCapsInit(NULL)) == NULL)
        goto error;

    if ((configFile = virDomainConfigFile(LXC_STATE_DIR,
                                          ctrl->name)) == NULL)
        goto error;

    if ((ctrl->def = virDomainDefParseFile(caps,
                                           configFile,
                                           1 << VIR_DOMAIN_VIRT_LXC,
                                           0)) == NULL)
        goto error;

cleanup:
    VIR_FREE(configFile);
    virCapabilitiesFree(caps);
    return ctrl;

no_memory:
    virReportOOMError();
error:
    virLXCControllerFree(ctrl);
    ctrl = NULL;
    goto cleanup;
}

169

170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
static int virLXCControllerCloseLoopDevices(virLXCControllerPtr ctrl,
                                            bool force)
{
    size_t i;

    for (i = 0 ; i < ctrl->nloopDevs ; i++) {
        if (force) {
            VIR_FORCE_CLOSE(ctrl->loopDevFds[i]);
        } else {
            if (VIR_CLOSE(ctrl->loopDevFds[i]) < 0) {
                virReportSystemError(errno, "%s",
                                     _("Unable to close loop device"));
                return -1;
            }
        }
    }

    return 0;
}


191 192 193 194 195
static void virLXCControllerStopInit(virLXCControllerPtr ctrl)
{
    if (ctrl->initpid == 0)
        return;

196
    virLXCControllerCloseLoopDevices(ctrl, true);
197 198 199 200 201
    virPidAbort(ctrl->initpid);
    ctrl->initpid = 0;
}


202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
static void virLXCControllerConsoleClose(virLXCControllerConsolePtr console)
{
    if (console->hostWatch != -1)
        virEventRemoveHandle(console->hostWatch);
    VIR_FORCE_CLOSE(console->hostFd);

    if (console->contWatch != -1)
        virEventRemoveHandle(console->contWatch);
    VIR_FORCE_CLOSE(console->contFd);

    if (console->epollWatch != -1)
        virEventRemoveHandle(console->epollWatch);
    VIR_FORCE_CLOSE(console->epollFd);
}


218 219
static void virLXCControllerFree(virLXCControllerPtr ctrl)
{
220 221
    size_t i;

222 223 224
    if (!ctrl)
        return;

225 226
    virLXCControllerStopInit(ctrl);

227 228
    virSecurityManagerFree(ctrl->securityManager);

229 230 231 232
    for (i = 0 ; i < ctrl->nveths ; i++)
        VIR_FREE(ctrl->veths[i]);
    VIR_FREE(ctrl->veths);

233 234 235 236
    for (i = 0 ; i < ctrl->nconsoles ; i++)
        virLXCControllerConsoleClose(&(ctrl->consoles[i]));
    VIR_FREE(ctrl->consoles);

237 238
    VIR_FORCE_CLOSE(ctrl->handshakeFd);

239 240 241 242 243 244
    virDomainDefFree(ctrl->def);
    VIR_FREE(ctrl->name);

    VIR_FREE(ctrl);
}

245

246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
static int virLXCControllerAddConsole(virLXCControllerPtr ctrl,
                                      int hostFd)
{
    if (VIR_EXPAND_N(ctrl->consoles, ctrl->nconsoles, 1) < 0) {
        virReportOOMError();
        return -1;
    }
    ctrl->consoles[ctrl->nconsoles-1].hostFd = hostFd;
    ctrl->consoles[ctrl->nconsoles-1].hostWatch = -1;

    ctrl->consoles[ctrl->nconsoles-1].contFd = -1;
    ctrl->consoles[ctrl->nconsoles-1].contWatch = -1;

    ctrl->consoles[ctrl->nconsoles-1].epollFd = -1;
    ctrl->consoles[ctrl->nconsoles-1].epollWatch = -1;
    return 0;
}


static int virLXCControllerConsoleSetNonblocking(virLXCControllerConsolePtr console)
{
    if (virSetBlocking(console->hostFd, false) < 0 ||
        virSetBlocking(console->contFd, false) < 0) {
        virReportSystemError(errno, "%s",
                             _("Unable to set console file descriptor non-blocking"));
        return -1;
    }

    return 0;
}


278 279 280 281 282 283 284 285 286 287 288 289
static int virLXCControllerDaemonHandshake(virLXCControllerPtr ctrl)
{
    if (lxcContainerSendContinue(ctrl->handshakeFd) < 0) {
        virReportSystemError(errno, "%s",
                             _("error sending continue signal to daemon"));
        return -1;
    }
    VIR_FORCE_CLOSE(ctrl->handshakeFd);
    return 0;
}


290 291 292 293 294 295 296 297 298 299 300 301 302
static int virLXCControllerValidateNICs(virLXCControllerPtr ctrl)
{
    if (ctrl->def->nnets != ctrl->nveths) {
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("expecting %d veths, but got %zu"),
                 ctrl->def->nnets, ctrl->nveths);
        return -1;
    }

    return 0;
}


303 304 305 306 307 308 309 310 311 312 313 314 315
static int virLXCControllerValidateConsoles(virLXCControllerPtr ctrl)
{
    if (ctrl->def->nconsoles != ctrl->nconsoles) {
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("expecting %d consoles, but got %zu tty file handlers"),
                 ctrl->def->nconsoles, ctrl->nconsoles);
        return -1;
    }

    return 0;
}


316
static int lxcGetLoopFD(char **dev_name)
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
{
    int fd = -1;
    DIR *dh = NULL;
    struct dirent *de;
    char *looppath;
    struct loop_info64 lo;

    VIR_DEBUG("Looking for loop devices in /dev");

    if (!(dh = opendir("/dev"))) {
        virReportSystemError(errno, "%s",
                             _("Unable to read /dev"));
        goto cleanup;
    }

    while ((de = readdir(dh)) != NULL) {
        if (!STRPREFIX(de->d_name, "loop"))
            continue;

        if (virAsprintf(&looppath, "/dev/%s", de->d_name) < 0) {
            virReportOOMError();
            goto cleanup;
        }

        VIR_DEBUG("Checking up on device %s", looppath);
        if ((fd = open(looppath, O_RDWR)) < 0) {
            virReportSystemError(errno,
                                 _("Unable to open %s"), looppath);
            goto cleanup;
        }

        if (ioctl(fd, LOOP_GET_STATUS64, &lo) < 0) {
            /* Got a free device, return the fd */
            if (errno == ENXIO)
                goto cleanup;

            VIR_FORCE_CLOSE(fd);
            virReportSystemError(errno,
                                 _("Unable to get loop status on %s"),
                                 looppath);
            goto cleanup;
        }

        /* Oh well, try the next device */
        VIR_FORCE_CLOSE(fd);
        VIR_FREE(looppath);
    }

    lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
             _("Unable to find a free loop device in /dev"));

cleanup:
    if (fd != -1) {
        VIR_DEBUG("Got free loop device %s %d", looppath, fd);
371
        *dev_name = looppath;
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
    } else {
        VIR_DEBUG("No free loop devices available");
        VIR_FREE(looppath);
    }
    if (dh)
        closedir(dh);
    return fd;
}

static int lxcSetupLoopDevice(virDomainFSDefPtr fs)
{
    int lofd = -1;
    int fsfd = -1;
    struct loop_info64 lo;
    char *loname = NULL;
    int ret = -1;

    if ((lofd = lxcGetLoopFD(&loname)) < 0)
        return -1;

    memset(&lo, 0, sizeof(lo));
    lo.lo_flags = LO_FLAGS_AUTOCLEAR;

    if ((fsfd = open(fs->src, O_RDWR)) < 0) {
        virReportSystemError(errno,
                             _("Unable to open %s"), fs->src);
        goto cleanup;
    }

    if (ioctl(lofd, LOOP_SET_FD, fsfd) < 0) {
        virReportSystemError(errno,
                             _("Unable to attach %s to loop device"),
                             fs->src);
        goto cleanup;
    }

    if (ioctl(lofd, LOOP_SET_STATUS64, &lo) < 0) {
        virReportSystemError(errno, "%s",
                             _("Unable to mark loop device as autoclear"));

        if (ioctl(lofd, LOOP_CLR_FD, 0) < 0)
            VIR_WARN("Unable to detach %s from loop device", fs->src);
        goto cleanup;
    }

    VIR_DEBUG("Attached loop device  %s %d to %s", fs->src, lofd, loname);
    /*
     * We now change it into a block device type, so that
     * the rest of container setup 'just works'
     */
    fs->type = VIR_DOMAIN_FS_TYPE_BLOCK;
    VIR_FREE(fs->src);
    fs->src = loname;
    loname = NULL;

    ret = 0;

cleanup:
    VIR_FREE(loname);
    VIR_FORCE_CLOSE(fsfd);
    if (ret == -1)
        VIR_FORCE_CLOSE(lofd);
    return lofd;
}


438
static int virLXCControllerSetupLoopDevices(virLXCControllerPtr ctrl)
439 440 441 442
{
    size_t i;
    int ret = -1;

443
    for (i = 0 ; i < ctrl->def->nfss ; i++) {
444 445
        int fd;

446
        if (ctrl->def->fss[i]->type != VIR_DOMAIN_FS_TYPE_FILE)
447 448
            continue;

449
        fd = lxcSetupLoopDevice(ctrl->def->fss[i]);
450 451 452 453
        if (fd < 0)
            goto cleanup;

        VIR_DEBUG("Saving loop fd %d", fd);
454
        if (VIR_EXPAND_N(ctrl->loopDevFds, ctrl->nloopDevs, 1) < 0) {
455 456 457 458
            VIR_FORCE_CLOSE(fd);
            virReportOOMError();
            goto cleanup;
        }
459
        ctrl->loopDevFds[ctrl->nloopDevs - 1] = fd;
460 461 462 463 464 465 466 467 468
    }

    VIR_DEBUG("Setup all loop devices");
    ret = 0;

cleanup:
    return ret;
}

469 470 471 472 473 474 475 476 477 478 479 480 481 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 513 514 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
#if HAVE_NUMACTL
static int lxcSetContainerNUMAPolicy(virDomainDefPtr def)
{
    nodemask_t mask;
    int mode = -1;
    int node = -1;
    int ret = -1;
    int i = 0;
    int maxnode = 0;
    bool warned = false;

    if (!def->numatune.memory.nodemask)
        return 0;

    VIR_DEBUG("Setting NUMA memory policy");

    if (numa_available() < 0) {
        lxcError(VIR_ERR_CONFIG_UNSUPPORTED,
                 "%s", _("Host kernel is not aware of NUMA."));
        return -1;
    }

    maxnode = numa_max_node() + 1;

    /* Convert nodemask to NUMA bitmask. */
    nodemask_zero(&mask);
    for (i = 0; i < VIR_DOMAIN_CPUMASK_LEN; i++) {
        if (def->numatune.memory.nodemask[i]) {
            if (i > NUMA_NUM_NODES) {
                lxcError(VIR_ERR_CONFIG_UNSUPPORTED,
                         _("Host cannot support NUMA node %d"), i);
                return -1;
            }
            if (i > maxnode && !warned) {
                VIR_WARN("nodeset is out of range, there is only %d NUMA "
                         "nodes on host", maxnode);
                warned = true;
            }
            nodemask_set(&mask, i);
        }
    }

    mode = def->numatune.memory.mode;

    if (mode == VIR_DOMAIN_NUMATUNE_MEM_STRICT) {
        numa_set_bind_policy(1);
        numa_set_membind(&mask);
        numa_set_bind_policy(0);
    } else if (mode == VIR_DOMAIN_NUMATUNE_MEM_PREFERRED) {
        int nnodes = 0;
        for (i = 0; i < NUMA_NUM_NODES; i++) {
            if (nodemask_isset(&mask, i)) {
                node = i;
                nnodes++;
            }
        }

        if (nnodes != 1) {
            lxcError(VIR_ERR_CONFIG_UNSUPPORTED,
                     "%s", _("NUMA memory tuning in 'preferred' mode "
                             "only supports single node"));
            goto cleanup;
        }

        numa_set_bind_policy(0);
        numa_set_preferred(node);
    } else if (mode == VIR_DOMAIN_NUMATUNE_MEM_INTERLEAVE) {
        numa_set_interleave_mask(&mask);
    } else {
        lxcError(VIR_ERR_CONFIG_UNSUPPORTED,
                 _("Unable to set NUMA policy %s"),
                 virDomainNumatuneMemModeTypeToString(mode));
        goto cleanup;
    }

    ret = 0;

cleanup:
    return ret;
}
#else
static int lxcSetContainerNUMAPolicy(virDomainDefPtr def)
{
    if (def->numatune.memory.nodemask) {
        lxcError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                 _("NUMA policy is not available on this platform"));
        return -1;
    }

    return 0;
}
#endif

562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619

/*
 * To be run while still single threaded
 */
static int lxcSetContainerCpuAffinity(virDomainDefPtr def)
{
    int i, hostcpus, maxcpu = CPU_SETSIZE;
    virNodeInfo nodeinfo;
    unsigned char *cpumap;
    int cpumaplen;

    VIR_DEBUG("Setting CPU affinity");

    if (nodeGetInfo(NULL, &nodeinfo) < 0)
        return -1;

    /* setaffinity fails if you set bits for CPUs which
     * aren't present, so we have to limit ourselves */
    hostcpus = VIR_NODEINFO_MAXCPUS(nodeinfo);
    if (maxcpu > hostcpus)
        maxcpu = hostcpus;

    cpumaplen = VIR_CPU_MAPLEN(maxcpu);
    if (VIR_ALLOC_N(cpumap, cpumaplen) < 0) {
        virReportOOMError();
        return -1;
    }

    if (def->cpumask) {
        /* XXX why don't we keep 'cpumask' in the libvirt cpumap
         * format to start with ?!?! */
        for (i = 0 ; i < maxcpu && i < def->cpumasklen ; i++)
            if (def->cpumask[i])
                VIR_USE_CPU(cpumap, i);
    } else {
        /* You may think this is redundant, but we can't assume libvirtd
         * itself is running on all pCPUs, so we need to explicitly set
         * the spawned LXC instance to all pCPUs if no map is given in
         * its config file */
        for (i = 0 ; i < maxcpu ; i++)
            VIR_USE_CPU(cpumap, i);
    }

    /* We are pressuming we are running between fork/exec of LXC
     * so use '0' to indicate our own process ID. No threads are
     * running at this point
     */
    if (virProcessInfoSetAffinity(0, /* Self */
                                  cpumap, cpumaplen, maxcpu) < 0) {
        VIR_FREE(cpumap);
        return -1;
    }
    VIR_FREE(cpumap);

    return 0;
}


620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655
static int lxcSetContainerCpuTune(virCgroupPtr cgroup, virDomainDefPtr def)
{
    int ret = -1;
    if (def->cputune.shares != 0) {
        int rc = virCgroupSetCpuShares(cgroup, def->cputune.shares);
        if (rc != 0) {
            virReportSystemError(-rc,
                                 _("Unable to set io cpu shares for domain %s"),
                                 def->name);
            goto cleanup;
        }
    }
    if (def->cputune.quota != 0) {
        int rc = virCgroupSetCpuCfsQuota(cgroup, def->cputune.quota);
        if (rc != 0) {
            virReportSystemError(-rc,
                                 _("Unable to set io cpu quota for domain %s"),
                                 def->name);
            goto cleanup;
        }
    }
    if (def->cputune.period != 0) {
        int rc = virCgroupSetCpuCfsPeriod(cgroup, def->cputune.period);
        if (rc != 0) {
            virReportSystemError(-rc,
                                 _("Unable to set io cpu period for domain %s"),
                                 def->name);
            goto cleanup;
        }
    }
    ret = 0;
cleanup:
    return ret;
}


656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
static int lxcSetContainerBlkioTune(virCgroupPtr cgroup, virDomainDefPtr def)
{
    int ret = -1;

    if (def->blkio.weight) {
        int rc = virCgroupSetBlkioWeight(cgroup, def->blkio.weight);
        if (rc != 0) {
            virReportSystemError(-rc,
                                 _("Unable to set Blkio weight for domain %s"),
                                 def->name);
            goto cleanup;
        }
    }

    ret = 0;
cleanup:
    return ret;
}


676
static int lxcSetContainerMemTune(virCgroupPtr cgroup, virDomainDefPtr def)
D
Dan Smith 已提交
677
{
678 679
    int ret = -1;
    int rc;
680

681
    rc = virCgroupSetMemory(cgroup, def->mem.max_balloon);
682
    if (rc != 0) {
683
        virReportSystemError(-rc,
684 685
                             _("Unable to set memory limit for domain %s"),
                             def->name);
686
        goto cleanup;
687
    }
D
Dan Smith 已提交
688

689
    if (def->mem.hard_limit) {
690 691 692 693 694 695 696 697 698
        rc = virCgroupSetMemoryHardLimit(cgroup, def->mem.hard_limit);
        if (rc != 0) {
            virReportSystemError(-rc,
                                 _("Unable to set memory hard limit for domain %s"),
                                 def->name);
            goto cleanup;
        }
    }

699
    if (def->mem.soft_limit) {
700 701 702 703 704 705 706 707 708
        rc = virCgroupSetMemorySoftLimit(cgroup, def->mem.soft_limit);
        if (rc != 0) {
            virReportSystemError(-rc,
                                 _("Unable to set memory soft limit for domain %s"),
                                 def->name);
            goto cleanup;
        }
    }

709
    if (def->mem.swap_hard_limit) {
710
        rc = virCgroupSetMemSwapHardLimit(cgroup, def->mem.swap_hard_limit);
711 712 713 714 715 716 717 718
        if (rc != 0) {
            virReportSystemError(-rc,
                                 _("Unable to set swap hard limit for domain %s"),
                                 def->name);
            goto cleanup;
        }
    }

719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
    ret = 0;
cleanup:
    return ret;
}


static int lxcSetContainerDeviceACL(virCgroupPtr cgroup, virDomainDefPtr def)
{
    int ret = -1;
    int rc;
    size_t i;
    static const 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_TTY},
        {'c', LXC_DEV_MAJ_TTY, LXC_DEV_MIN_PTMX},
        {0,   0, 0}};

D
Dan Smith 已提交
740
    rc = virCgroupDenyAllDevices(cgroup);
741
    if (rc != 0) {
742
        virReportSystemError(-rc,
743 744 745 746
                             _("Unable to deny devices for domain %s"),
                             def->name);
        goto cleanup;
    }
D
Dan Smith 已提交
747 748

    for (i = 0; devices[i].type != 0; i++) {
749
        const struct cgroup_device_policy *dev = &devices[i];
D
Dan Smith 已提交
750 751 752
        rc = virCgroupAllowDevice(cgroup,
                                  dev->type,
                                  dev->major,
753 754
                                  dev->minor,
                                  VIR_CGROUP_DEVICE_RWM);
755
        if (rc != 0) {
756
            virReportSystemError(-rc,
757 758 759 760
                                 _("Unable to allow device %c:%d:%d for domain %s"),
                                 dev->type, dev->major, dev->minor, def->name);
            goto cleanup;
        }
D
Dan Smith 已提交
761 762
    }

763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
    for (i = 0 ; i < def->nfss ; i++) {
        if (def->fss[i]->type != VIR_DOMAIN_FS_TYPE_BLOCK)
            continue;

        rc = virCgroupAllowDevicePath(cgroup,
                                      def->fss[i]->src,
                                      def->fss[i]->readonly ?
                                      VIR_CGROUP_DEVICE_READ :
                                      VIR_CGROUP_DEVICE_RW);
        if (rc != 0) {
            virReportSystemError(-rc,
                                 _("Unable to allow device %s for domain %s"),
                                 def->fss[i]->src, def->name);
            goto cleanup;
        }
    }

780 781
    rc = virCgroupAllowDeviceMajor(cgroup, 'c', LXC_DEV_MAJ_PTY,
                                   VIR_CGROUP_DEVICE_RWM);
782
    if (rc != 0) {
783
        virReportSystemError(-rc,
784
                             _("Unable to allow PTY devices for domain %s"),
785 786 787
                             def->name);
        goto cleanup;
    }
788

789 790 791 792 793 794 795 796 797 798 799 800 801 802 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 837 838 839 840 841 842 843 844 845 846
    ret = 0;
cleanup:
    return ret;
}


/**
 * 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)
{
    virCgroupPtr driver;
    virCgroupPtr cgroup;
    int rc = -1;

    if (lxcSetContainerCpuAffinity(def) < 0)
        return -1;

    if (lxcSetContainerNUMAPolicy(def) < 0)
        return -1;

    rc = virCgroupForDriver("lxc", &driver, 1, 0);
    if (rc != 0) {
        /* Skip all if no driver cgroup is configured */
        if (rc == -ENXIO || rc == -ENOENT)
            return 0;

        virReportSystemError(-rc, "%s",
                             _("Unable to get cgroup for driver"));
        return rc;
    }

    rc = virCgroupForDomain(driver, def->name, &cgroup, 1);
    if (rc != 0) {
        virReportSystemError(-rc,
                             _("Unable to create cgroup for domain %s"),
                             def->name);
        goto cleanup;
    }

    if (lxcSetContainerCpuTune(cgroup, def) < 0)
        goto cleanup;

    if (lxcSetContainerBlkioTune(cgroup, def) < 0)
        goto cleanup;

    if (lxcSetContainerMemTune(cgroup, def) < 0)
        goto cleanup;

    if (lxcSetContainerDeviceACL(cgroup, def) < 0)
        goto cleanup;

D
Dan Smith 已提交
847 848
    rc = virCgroupAddTask(cgroup, getpid());
    if (rc != 0) {
849
        virReportSystemError(-rc,
850 851
                             _("Unable to add task %d to cgroup for domain %s"),
                             getpid(), def->name);
D
Dan Smith 已提交
852 853
    }

854 855
cleanup:
    virCgroupFree(&driver);
D
Dan Smith 已提交
856 857 858 859 860
    virCgroupFree(&cgroup);

    return rc;
}

861
static char*lxcMonitorPath(virLXCControllerPtr ctrl)
862 863
{
    char *sockpath;
864 865

    if (virAsprintf(&sockpath, "%s/%s.sock",
866
                    LXC_STATE_DIR, ctrl->def->name) < 0)
867
        virReportOOMError();
868 869 870 871 872 873 874 875 876
    return sockpath;
}

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

    if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
877
        virReportSystemError(errno,
878 879
                             _("failed to create server socket '%s'"),
                             sockpath);
880 881 882 883 884 885
        goto error;
    }

    unlink(sockpath);
    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
C
Chris Lalancette 已提交
886
    if (virStrcpyStatic(addr.sun_path, sockpath) == NULL) {
887
        lxcError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
888 889 890
                 _("Socket path %s too long for destination"), sockpath);
        goto error;
    }
891 892

    if (bind(fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
893
        virReportSystemError(errno,
894 895
                             _("failed to bind server socket '%s'"),
                             sockpath);
896 897 898
        goto error;
    }
    if (listen(fd, 30 /* backlog */ ) < 0) {
899
        virReportSystemError(errno,
900 901
                             _("failed to listen server socket %s"),
                             sockpath);
902 903 904 905 906 907
        goto error;
    }

    return fd;

error:
908
    VIR_FORCE_CLOSE(fd);
909 910
    return -1;
}
911

D
Daniel P. Berrange 已提交
912 913 914 915 916 917 918 919 920

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

    capng_clear(CAPNG_SELECT_BOTH);

    if ((ret = capng_apply(CAPNG_SELECT_BOTH)) < 0) {
921
        lxcError(VIR_ERR_INTERNAL_ERROR,
D
Daniel P. Berrange 已提交
922 923 924 925
                 _("failed to apply capabilities: %d"), ret);
        return -1;
    }
#else
926
    VIR_WARN("libcap-ng support not compiled in, unable to clear capabilities");
D
Daniel P. Berrange 已提交
927 928 929 930
#endif
    return 0;
}

931 932 933
/* Return true if it is ok to ignore an accept-after-epoll syscall
   that fails with the specified errno value.  Else false.  */
static bool
934
ignorable_accept_errno(int errnum)
935 936 937 938 939 940 941
{
  return (errnum == EINVAL
          || errnum == ECONNABORTED
          || errnum == EAGAIN
          || errnum == EWOULDBLOCK);
}

942 943 944 945
static bool quit = false;
static virMutex lock;
static int sigpipe[2];

946
static void virLXCControllerSignalChildHandler(int signum ATTRIBUTE_UNUSED)
947 948 949 950
{
    ignore_value(write(sigpipe[1], "1", 1));
}

951 952 953 954
static void virLXCControllerSignalChildIO(int watch ATTRIBUTE_UNUSED,
                                          int fd ATTRIBUTE_UNUSED,
                                          int events ATTRIBUTE_UNUSED,
                                          void *opaque)
955
{
956 957
    char buf[1];
    int ret;
958
    virLXCControllerPtr ctrl = opaque;
959 960 961

    ignore_value(read(sigpipe[0], buf, 1));
    ret = waitpid(-1, NULL, WNOHANG);
962
    if (ret == ctrl->initpid) {
963 964 965 966 967 968 969 970 971 972 973 974 975
        virMutexLock(&lock);
        quit = true;
        virMutexUnlock(&lock);
    }
}


struct lxcMonitor {
    int serverWatch;
    int serverFd;  /* Server listen socket */
    int clientWatch;
    int clientFd;  /* Current client FD (if any) */
};
976 977


978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
static void lxcClientIO(int watch ATTRIBUTE_UNUSED, int fd, int events, void *opaque)
{
    struct lxcMonitor *monitor = opaque;
    char buf[1024];
    ssize_t ret;

    if (events & (VIR_EVENT_HANDLE_HANGUP |
                  VIR_EVENT_HANDLE_ERROR)) {
        virEventRemoveHandle(monitor->clientWatch);
        monitor->clientWatch = -1;
        return;
    }

reread:
    ret = read(fd, buf, sizeof(buf));
    if (ret == -1 && errno == EINTR)
        goto reread;
    if (ret == -1 && errno == EAGAIN)
        return;
    if (ret == -1) {
        lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                 _("Unable to read from monitor client"));
        virMutexLock(&lock);
        quit = true;
        virMutexUnlock(&lock);
        return;
    }
    if (ret == 0) {
        VIR_DEBUG("Client %d gone", fd);
        VIR_FORCE_CLOSE(monitor->clientFd);
        virEventRemoveHandle(monitor->clientWatch);
        monitor->clientWatch = -1;
    }
}


static void lxcServerAccept(int watch ATTRIBUTE_UNUSED, int fd, int events ATTRIBUTE_UNUSED, void *opaque)
{
    struct lxcMonitor *monitor = opaque;
    int client;

    if ((client = accept(fd, NULL, NULL)) < 0) {
        /* First reflex may be simply to declare accept failure
           to be a fatal error.  However, accept may fail when
           a client quits between the above poll and here.
           That case is not fatal, but rather to be expected,
           if not common, so ignore it.  */
        if (ignorable_accept_errno(errno))
            return;
        virReportSystemError(errno, "%s",
                             _("Unable to accept monitor client"));
        virMutexLock(&lock);
        quit = true;
        virMutexUnlock(&lock);
        return;
    }
    VIR_DEBUG("New client %d (old %d)\n", client, monitor->clientFd);
    VIR_FORCE_CLOSE(monitor->clientFd);
    virEventRemoveHandle(monitor->clientWatch);

    monitor->clientFd = client;
    if ((monitor->clientWatch = virEventAddHandle(monitor->clientFd,
                                                  VIR_EVENT_HANDLE_READABLE,
                                                  lxcClientIO,
                                                  monitor,
                                                  NULL)) < 0) {
        lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                 _("Unable to watch client socket"));
        virMutexLock(&lock);
        quit = true;
        virMutexUnlock(&lock);
        return;
    }
}

1053
static void virLXCControllerConsoleUpdateWatch(virLXCControllerConsolePtr console)
1054 1055 1056 1057
{
    int hostEvents = 0;
    int contEvents = 0;

1058
    if (!console->hostClosed || (!console->hostBlocking && console->fromContLen)) {
1059 1060 1061 1062 1063
        if (console->fromHostLen < sizeof(console->fromHostBuf))
            hostEvents |= VIR_EVENT_HANDLE_READABLE;
        if (console->fromContLen)
            hostEvents |= VIR_EVENT_HANDLE_WRITABLE;
    }
1064
    if (!console->contClosed || (!console->contBlocking && console->fromHostLen)) {
1065 1066 1067 1068 1069 1070
        if (console->fromContLen < sizeof(console->fromContBuf))
            contEvents |= VIR_EVENT_HANDLE_READABLE;
        if (console->fromHostLen)
            contEvents |= VIR_EVENT_HANDLE_WRITABLE;
    }

1071 1072 1073
    VIR_DEBUG("Container watch %d=%d host watch %d=%d",
              console->contWatch, contEvents,
              console->hostWatch, hostEvents);
1074 1075
    virEventUpdateHandle(console->contWatch, contEvents);
    virEventUpdateHandle(console->hostWatch, hostEvents);
1076

1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
    if (console->hostClosed) {
        int events = EPOLLIN | EPOLLET;
        if (console->hostBlocking)
            events |= EPOLLOUT;

        if (events != console->hostEpoll) {
            struct epoll_event event;
            int action = EPOLL_CTL_ADD;
            if (console->hostEpoll)
                action = EPOLL_CTL_MOD;

            VIR_DEBUG("newHostEvents=%x oldHostEvents=%x", events, console->hostEpoll);

            event.events = events;
            event.data.fd = console->hostFd;
            if (epoll_ctl(console->epollFd, action, console->hostFd, &event) < 0) {
                VIR_DEBUG(":fail");
                virReportSystemError(errno, "%s",
                                     _("Unable to add epoll fd"));
                quit = true;
                goto cleanup;
            }
            console->hostEpoll = events;
            VIR_DEBUG("newHostEvents=%x oldHostEvents=%x", events, console->hostEpoll);
        }
    } else if (console->hostEpoll) {
        VIR_DEBUG("Stop epoll oldContEvents=%x", console->hostEpoll);
        if (epoll_ctl(console->epollFd, EPOLL_CTL_DEL, console->hostFd, NULL) < 0) {
            virReportSystemError(errno, "%s",
                                 _("Unable to remove epoll fd"));
                VIR_DEBUG(":fail");
            quit = true;
            goto cleanup;
        }
        console->hostEpoll = 0;
    }
1113

1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 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
    if (console->contClosed) {
        int events = EPOLLIN | EPOLLET;
        if (console->contBlocking)
            events |= EPOLLOUT;

        if (events != console->contEpoll) {
            struct epoll_event event;
            int action = EPOLL_CTL_ADD;
            if (console->contEpoll)
                action = EPOLL_CTL_MOD;

            VIR_DEBUG("newContEvents=%x oldContEvents=%x", events, console->contEpoll);

            event.events = events;
            event.data.fd = console->contFd;
            if (epoll_ctl(console->epollFd, action, console->contFd, &event) < 0) {
                virReportSystemError(errno, "%s",
                                     _("Unable to add epoll fd"));
                VIR_DEBUG(":fail");
                quit = true;
                goto cleanup;
            }
            console->contEpoll = events;
            VIR_DEBUG("newHostEvents=%x oldHostEvents=%x", events, console->contEpoll);
        }
    } else if (console->contEpoll) {
        VIR_DEBUG("Stop epoll oldContEvents=%x", console->contEpoll);
        if (epoll_ctl(console->epollFd, EPOLL_CTL_DEL, console->contFd, NULL) < 0) {
            virReportSystemError(errno, "%s",
                                 _("Unable to remove epoll fd"));
                VIR_DEBUG(":fail");
            quit = true;
            goto cleanup;
        }
        console->contEpoll = 0;
    }
cleanup:
    return;
}
1153 1154


1155
static void virLXCControllerConsoleEPoll(int watch, int fd, int events, void *opaque)
1156
{
1157
    virLXCControllerConsolePtr console = opaque;
1158

1159 1160 1161 1162 1163 1164 1165 1166 1167 1168
    virMutexLock(&lock);
    VIR_DEBUG("IO event watch=%d fd=%d events=%d fromHost=%zu fromcont=%zu",
              watch, fd, events,
              console->fromHostLen,
              console->fromContLen);

    while (1) {
        struct epoll_event event;
        int ret;
        ret = epoll_wait(console->epollFd, &event, 1, 0);
1169
        if (ret < 0) {
S
Stefan Berger 已提交
1170
            if (errno == EINTR)
1171 1172 1173 1174 1175 1176 1177
                continue;
            virReportSystemError(errno, "%s",
                                 _("Unable to wait on epoll"));
            quit = true;
            goto cleanup;
        }

1178 1179 1180 1181 1182 1183 1184
        if (ret == 0)
            break;

        VIR_DEBUG("fd=%d hostFd=%d contFd=%d hostEpoll=%x contEpoll=%x",
                  event.data.fd, console->hostFd, console->contFd,
                  console->hostEpoll, console->contEpoll);

1185 1186 1187
        /* If we get HUP+dead PID, we just re-enable the main loop
         * which will see the PID has died and exit */
        if ((event.events & EPOLLIN)) {
1188 1189
            if (event.data.fd == console->hostFd) {
                console->hostClosed = false;
1190
            } else {
1191
                console->contClosed = false;
1192
            }
1193
            virLXCControllerConsoleUpdateWatch(console);
1194 1195 1196 1197 1198
            break;
        }
    }

cleanup:
1199
    virMutexUnlock(&lock);
1200 1201
}

1202
static void virLXCControllerConsoleIO(int watch, int fd, int events, void *opaque)
1203
{
1204
    virLXCControllerConsolePtr console = opaque;
1205 1206

    virMutexLock(&lock);
1207 1208 1209 1210
    VIR_DEBUG("IO event watch=%d fd=%d events=%d fromHost=%zu fromcont=%zu",
              watch, fd, events,
              console->fromHostLen,
              console->fromContLen);
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
    if (events & VIR_EVENT_HANDLE_READABLE) {
        char *buf;
        size_t *len;
        size_t avail;
        ssize_t done;
        if (watch == console->hostWatch) {
            buf = console->fromHostBuf;
            len = &console->fromHostLen;
            avail = sizeof(console->fromHostBuf) - *len;
        } else {
            buf = console->fromContBuf;
            len = &console->fromContLen;
            avail = sizeof(console->fromContBuf) - *len;
        }
    reread:
        done = read(fd, buf + *len, avail);
        if (done == -1 && errno == EINTR)
            goto reread;
        if (done == -1 && errno != EAGAIN) {
            virReportSystemError(errno, "%s",
                                 _("Unable to read container pty"));
            goto error;
        }
        if (done > 0) {
            *len += done;
        } else {
            VIR_DEBUG("Read fd %d done %d errno %d", fd, (int)done, errno);
        }
    }

    if (events & VIR_EVENT_HANDLE_WRITABLE) {
        char *buf;
        size_t *len;
        ssize_t done;
        if (watch == console->hostWatch) {
            buf = console->fromContBuf;
            len = &console->fromContLen;
        } else {
            buf = console->fromHostBuf;
            len = &console->fromHostLen;
        }

    rewrite:
        done = write(fd, buf, *len);
        if (done == -1 && errno == EINTR)
            goto rewrite;
        if (done == -1 && errno != EAGAIN) {
            virReportSystemError(errno, "%s",
                                 _("Unable to write to container pty"));
            goto error;
        }
        if (done > 0) {
            memmove(buf, buf + done, (*len - done));
            *len -= done;
        } else {
            VIR_DEBUG("Write fd %d done %d errno %d", fd, (int)done, errno);
1267 1268 1269 1270
            if (watch == console->hostWatch)
                console->hostBlocking = true;
            else
                console->contBlocking = true;
1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
        }
    }

    if (events & VIR_EVENT_HANDLE_HANGUP) {
        if (watch == console->hostWatch) {
            console->hostClosed = true;
        } else {
            console->contClosed = true;
        }
        VIR_DEBUG("Got EOF on %d %d", watch, fd);
    }

1283
    virLXCControllerConsoleUpdateWatch(console);
1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295
    virMutexUnlock(&lock);
    return;

error:
    virEventRemoveHandle(console->contWatch);
    virEventRemoveHandle(console->hostWatch);
    console->contWatch = console->hostWatch = -1;
    quit = true;
    virMutexUnlock(&lock);
}


1296
/**
1297
 * lxcControllerMain
1298 1299
 * @serverFd: server socket fd to accept client requests
 * @clientFd: initial client which is the libvirtd daemon
1300
 *
1301
 * Processes I/O on consoles and the monitor
1302 1303 1304
 *
 * Returns 0 on success or -1 in case of error
 */
1305 1306
static int virLXCControllerMain(virLXCControllerPtr ctrl,
                                int serverFd,
1307
                                int clientFd)
1308
{
1309 1310 1311 1312 1313
    struct lxcMonitor monitor = {
        .serverFd = serverFd,
        .clientFd = clientFd,
    };
    virErrorPtr err;
1314
    int rc = -1;
1315
    size_t i;
1316 1317 1318 1319 1320

    if (virMutexInit(&lock) < 0)
        goto cleanup2;

    if (pipe2(sigpipe, O_CLOEXEC|O_NONBLOCK) < 0) {
1321
        virReportSystemError(errno, "%s",
1322
                             _("Cannot create signal pipe"));
1323 1324 1325
        goto cleanup;
    }

1326 1327
    if (virEventAddHandle(sigpipe[0],
                          VIR_EVENT_HANDLE_READABLE,
1328 1329
                          virLXCControllerSignalChildIO,
                          ctrl,
1330 1331 1332
                          NULL) < 0) {
        lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                 _("Unable to watch signal pipe"));
1333 1334
        goto cleanup;
    }
1335

1336
    if (signal(SIGCHLD, virLXCControllerSignalChildHandler) == SIG_ERR) {
1337
        virReportSystemError(errno, "%s",
1338
                             _("Cannot install signal handler"));
1339 1340 1341
        goto cleanup;
    }

1342 1343
    VIR_DEBUG("serverFd=%d clientFd=%d",
              serverFd, clientFd);
1344 1345 1346 1347 1348 1349 1350 1351 1352
    virResetLastError();

    if ((monitor.serverWatch = virEventAddHandle(monitor.serverFd,
                                                 VIR_EVENT_HANDLE_READABLE,
                                                 lxcServerAccept,
                                                 &monitor,
                                                 NULL)) < 0) {
        lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                 _("Unable to watch monitor socket"));
1353 1354 1355
        goto cleanup;
    }

1356 1357 1358 1359 1360 1361 1362 1363
    if (monitor.clientFd != -1 &&
        (monitor.clientWatch = virEventAddHandle(monitor.clientFd,
                                                 VIR_EVENT_HANDLE_READABLE,
                                                 lxcClientIO,
                                                 &monitor,
                                                 NULL)) < 0) {
        lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                 _("Unable to watch client socket"));
1364 1365 1366
        goto cleanup;
    }

1367 1368
    for (i = 0 ; i < ctrl->nconsoles ; i++) {
        if ((ctrl->consoles[i].epollFd = epoll_create1(EPOLL_CLOEXEC)) < 0) {
1369 1370 1371 1372 1373
            virReportSystemError(errno, "%s",
                                 _("Unable to create epoll fd"));
            goto cleanup;
        }

1374 1375 1376 1377 1378
        if ((ctrl->consoles[i].epollWatch = virEventAddHandle(ctrl->consoles[i].epollFd,
                                                              VIR_EVENT_HANDLE_READABLE,
                                                              virLXCControllerConsoleEPoll,
                                                              &(ctrl->consoles[i]),
                                                              NULL)) < 0) {
1379 1380 1381 1382 1383
            lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Unable to watch epoll FD"));
            goto cleanup;
        }

1384 1385 1386 1387 1388
        if ((ctrl->consoles[i].hostWatch = virEventAddHandle(ctrl->consoles[i].hostFd,
                                                             VIR_EVENT_HANDLE_READABLE,
                                                             virLXCControllerConsoleIO,
                                                             &(ctrl->consoles[i]),
                                                             NULL)) < 0) {
1389 1390 1391 1392 1393
            lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Unable to watch host console PTY"));
            goto cleanup;
        }

1394 1395 1396 1397 1398
        if ((ctrl->consoles[i].contWatch = virEventAddHandle(ctrl->consoles[i].contFd,
                                                             VIR_EVENT_HANDLE_READABLE,
                                                             virLXCControllerConsoleIO,
                                                             &(ctrl->consoles[i]),
                                                             NULL)) < 0) {
1399 1400 1401 1402
            lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Unable to watch host console PTY"));
            goto cleanup;
        }
1403
    }
1404

1405 1406 1407 1408
    virMutexLock(&lock);
    while (!quit) {
        virMutexUnlock(&lock);
        if (virEventRunDefaultImpl() < 0)
1409
            goto cleanup;
1410
        virMutexLock(&lock);
1411
    }
1412
    virMutexUnlock(&lock);
1413

1414 1415 1416
    err = virGetLastError();
    if (!err || err->code == VIR_ERR_OK)
        rc = 0;
1417 1418

cleanup:
1419 1420 1421 1422 1423
    virMutexDestroy(&lock);
    signal(SIGCHLD, SIG_DFL);
cleanup2:
    VIR_FORCE_CLOSE(monitor.serverFd);
    VIR_FORCE_CLOSE(monitor.clientFd);
1424

1425 1426
    for (i = 0 ; i < ctrl->nconsoles ; i++)
        virLXCControllerConsoleClose(&(ctrl->consoles[i]));
1427

1428 1429 1430
    return rc;
}

1431 1432 1433


/**
1434
 * virLXCControllerMoveInterfaces
1435 1436 1437 1438 1439 1440 1441 1442
 * @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
 */
1443
static int virLXCControllerMoveInterfaces(virLXCControllerPtr ctrl)
1444
{
1445 1446 1447
    size_t i;

    for (i = 0 ; i < ctrl->nveths ; i++) {
1448
        if (virNetDevSetNamespace(ctrl->veths[i], ctrl->initpid) < 0)
1449
            return -1;
1450
    }
1451 1452 1453 1454 1455 1456

    return 0;
}


/**
1457 1458
 * virLXCControllerDeleteInterfaces:
 * @ctrl: the LXC controller
1459 1460 1461 1462 1463
 *
 * Cleans up the container interfaces by deleting the veth device pairs.
 *
 * Returns 0 on success or -1 in case of error
 */
1464
static int virLXCControllerDeleteInterfaces(virLXCControllerPtr ctrl)
1465
{
1466 1467
    size_t i;
    int ret = 0;
1468

1469 1470 1471 1472 1473 1474
    for (i = 0 ; i < ctrl->nveths ; i++) {
        if (virNetDevVethDelete(ctrl->veths[i]) < 0)
            ret = -1;
    }

    return ret;
1475 1476
}

1477

1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496
static int lxcSetPersonality(virDomainDefPtr def)
{
    struct utsname utsname;
    const char *altArch;

    uname(&utsname);

    altArch = lxcContainerGetAlt32bitArch(utsname.machine);
    if (altArch &&
        STREQ(def->os.arch, altArch)) {
        if (personality(PER_LINUX32) < 0) {
            virReportSystemError(errno, _("Unable to request personality for %s on %s"),
                                 altArch, utsname.machine);
            return -1;
        }
    }
    return 0;
}

1497
#ifndef MS_REC
1498
# define MS_REC          16384
1499 1500 1501
#endif

#ifndef MS_SLAVE
1502
# define MS_SLAVE              (1<<19)
1503
#endif
1504

1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548
/* Create a private tty using the private devpts at PTMX, returning
 * the master in *TTYMASTER and the name of the slave, _from the
 * perspective of the guest after remounting file systems_, in
 * *TTYNAME.  Heavily borrowed from glibc, but doesn't require that
 * devpts == "/dev/pts" */
static int
lxcCreateTty(char *ptmx, int *ttymaster, char **ttyName)
{
    int ret = -1;
    int ptyno;
    int unlock = 0;

    if ((*ttymaster = open(ptmx, O_RDWR|O_NOCTTY|O_NONBLOCK)) < 0)
        goto cleanup;

    if (ioctl(*ttymaster, TIOCSPTLCK, &unlock) < 0)
        goto cleanup;

    if (ioctl(*ttymaster, TIOCGPTN, &ptyno) < 0)
        goto cleanup;

    /* If mount() succeeded at honoring newinstance, then the kernel
     * was new enough to also honor the mode=0620,gid=5 options, which
     * guarantee that the new pty already has correct permissions; so
     * while glibc has to fstat(), fchmod(), and fchown() for older
     * kernels, we can skip those steps.  ptyno shouldn't currently be
     * anything other than 0, but let's play it safe.  */
    if (virAsprintf(ttyName, "/dev/pts/%d", ptyno) < 0) {
        virReportOOMError();
        errno = ENOMEM;
        goto cleanup;
    }

    ret = 0;

cleanup:
    if (ret != 0) {
        VIR_FORCE_CLOSE(*ttymaster);
        VIR_FREE(*ttyName);
    }

    return ret;
}

1549
static int
1550 1551
virLXCControllerRun(virLXCControllerPtr ctrl,
                    int monitor,
1552
                    int client)
1553 1554 1555
{
    int rc = -1;
    int control[2] = { -1, -1};
1556
    int containerhandshake[2] = { -1, -1 };
1557
    char **containerTTYPaths = NULL;
1558 1559 1560
    virDomainFSDefPtr root;
    char *devpts = NULL;
    char *devptmx = NULL;
1561
    size_t i;
1562
    char *mount_options = NULL;
1563

1564
    if (VIR_ALLOC_N(containerTTYPaths, ctrl->nconsoles) < 0) {
1565 1566 1567 1568
        virReportOOMError();
        goto cleanup;
    }

1569
    if (socketpair(PF_UNIX, SOCK_STREAM, 0, control) < 0) {
1570
        virReportSystemError(errno, "%s",
1571
                             _("sockpair failed"));
1572 1573 1574
        goto cleanup;
    }

1575 1576 1577 1578 1579 1580
    if (socketpair(PF_UNIX, SOCK_STREAM, 0, containerhandshake) < 0) {
        virReportSystemError(errno, "%s",
                             _("socketpair failed"));
        goto cleanup;
    }

1581
    if (virLXCControllerSetupLoopDevices(ctrl) < 0)
1582 1583
        goto cleanup;

1584
    root = virDomainGetRootFilesystem(ctrl->def);
1585

1586
    if (lxcSetContainerResources(ctrl->def) < 0)
1587 1588
        goto cleanup;

1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609
    /*
     * 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) {
1610 1611
        mount_options = virSecurityManagerGetMountOptions(ctrl->securityManager,
                                                          ctrl->def);
1612
        char *opts;
1613
        VIR_DEBUG("Setting up private /dev/pts");
1614 1615 1616 1617 1618 1619 1620 1621

        if (!virFileExists(root->src)) {
            virReportSystemError(errno,
                                 _("root source %s does not exist"),
                                 root->src);
            goto cleanup;
        }

1622
        if (unshare(CLONE_NEWNS) < 0) {
1623
            virReportSystemError(errno, "%s",
1624
                                 _("Cannot unshare mount namespace"));
1625 1626 1627 1628
            goto cleanup;
        }

        if (mount("", "/", NULL, MS_SLAVE|MS_REC, NULL) < 0) {
1629
            virReportSystemError(errno, "%s",
1630
                                 _("Failed to switch root mount into slave mode"));
1631 1632 1633 1634 1635
            goto cleanup;
        }

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

1640
        if (virFileMakePath(devpts) < 0) {
1641
            virReportSystemError(errno,
1642
                                 _("Failed to make path %s"),
1643 1644 1645 1646
                                 devpts);
            goto cleanup;
        }

1647 1648
        /* XXX should we support gid=X for X!=5 for distros which use
         * a different gid for tty?  */
1649 1650
        if (virAsprintf(&opts, "newinstance,ptmxmode=0666,mode=0620,gid=5%s",
                        (mount_options ? mount_options : "")) < 0) {
1651 1652 1653 1654 1655 1656 1657 1658
            virReportOOMError();
            goto cleanup;
        }

        VIR_DEBUG("Mount devpts on %s type=tmpfs flags=%x, opts=%s",
                  devpts, MS_NOSUID, opts);
        if (mount("devpts", devpts, "devpts", MS_NOSUID, opts) < 0) {
            VIR_FREE(opts);
1659
            virReportSystemError(errno,
1660
                                 _("Failed to mount devpts on %s"),
1661 1662 1663
                                 devpts);
            goto cleanup;
        }
1664
        VIR_FREE(opts);
1665 1666

        if (access(devptmx, R_OK) < 0) {
1667
            VIR_WARN("Kernel does not support private devpts, using shared devpts");
1668 1669 1670
            VIR_FREE(devptmx);
        }
    } else {
1671
        if (ctrl->nconsoles != 1) {
1672
            lxcError(VIR_ERR_CONFIG_UNSUPPORTED,
1673 1674
                     _("Expected exactly one console, but got %zu"),
                     ctrl->nconsoles);
1675 1676 1677 1678
            goto cleanup;
        }
    }

1679
    for (i = 0 ; i < ctrl->nconsoles ; i++) {
1680 1681 1682
        if (devptmx) {
            VIR_DEBUG("Opening tty on private %s", devptmx);
            if (lxcCreateTty(devptmx,
1683 1684
                             &ctrl->consoles[i].contFd,
                             &containerTTYPaths[i]) < 0) {
1685 1686 1687 1688 1689 1690
                virReportSystemError(errno, "%s",
                                     _("Failed to allocate tty"));
                goto cleanup;
            }
        } else {
            VIR_DEBUG("Opening tty on shared /dev/ptmx");
1691 1692
            if (virFileOpenTty(&ctrl->consoles[i].contFd,
                               &containerTTYPaths[i],
1693 1694 1695 1696 1697 1698 1699 1700
                               0) < 0) {
                virReportSystemError(errno, "%s",
                                     _("Failed to allocate tty"));
                goto cleanup;
            }
        }
    }

1701
    if (lxcSetPersonality(ctrl->def) < 0)
1702
        goto cleanup;
1703

1704
    if ((ctrl->initpid = lxcContainerStart(ctrl->def,
1705
                                           ctrl->securityManager,
1706 1707 1708 1709
                                           ctrl->nveths,
                                           ctrl->veths,
                                           control[1],
                                           containerhandshake[1],
1710 1711
                                           containerTTYPaths,
                                           ctrl->nconsoles)) < 0)
1712
        goto cleanup;
1713
    VIR_FORCE_CLOSE(control[1]);
1714
    VIR_FORCE_CLOSE(containerhandshake[1]);
1715

1716
    if (virLXCControllerMoveInterfaces(ctrl) < 0)
1717 1718
        goto cleanup;

1719 1720 1721
    if (lxcContainerSendContinue(control[0]) < 0) {
        virReportSystemError(errno, "%s",
                             _("Unable to send container continue message"));
1722
        goto cleanup;
1723
    }
1724

1725 1726 1727 1728 1729 1730
    if (lxcContainerWaitForContinue(containerhandshake[0]) < 0) {
        virReportSystemError(errno, "%s",
                             _("error receiving signal from container"));
        goto cleanup;
    }

1731 1732 1733
    /* Now the container is fully setup... */

    /* ...we can close the loop devices... */
1734 1735
    if (virLXCControllerCloseLoopDevices(ctrl, false) < 0)
        goto cleanup;
1736 1737

    /* ...and reduce our privileges */
D
Daniel P. Berrange 已提交
1738 1739 1740
    if (lxcControllerClearCapabilities() < 0)
        goto cleanup;

1741
    if (virLXCControllerDaemonHandshake(ctrl) < 0)
1742 1743
        goto cleanup;

1744
    if (virSetBlocking(monitor, false) < 0 ||
1745
        virSetBlocking(client, false) < 0) {
1746
        virReportSystemError(errno, "%s",
1747
                             _("Unable to set file descriptor non-blocking"));
1748 1749
        goto cleanup;
    }
1750 1751
    for (i = 0 ; i < ctrl->nconsoles ; i++)
        if (virLXCControllerConsoleSetNonblocking(&(ctrl->consoles[i])) < 0)
1752
            goto cleanup;
1753

1754
    rc = virLXCControllerMain(ctrl, monitor, client);
1755
    monitor = client = -1;
1756 1757

cleanup:
1758
    VIR_FREE(mount_options);
1759 1760
    VIR_FREE(devptmx);
    VIR_FREE(devpts);
1761 1762
    VIR_FORCE_CLOSE(control[0]);
    VIR_FORCE_CLOSE(control[1]);
1763 1764
    VIR_FORCE_CLOSE(containerhandshake[0]);
    VIR_FORCE_CLOSE(containerhandshake[1]);
1765

1766 1767 1768
    for (i = 0 ; i < ctrl->nconsoles ; i++)
        VIR_FREE(containerTTYPaths[i]);
    VIR_FREE(containerTTYPaths);
1769

1770
    virLXCControllerStopInit(ctrl);
1771

1772 1773 1774 1775
    return rc;
}


1776
int main(int argc, char *argv[])
1777 1778
{
    pid_t pid;
1779
    int rc = 1;
1780
    int client;
1781
    char *name = NULL;
1782
    size_t nveths = 0;
1783 1784
    char **veths = NULL;
    int monitor = -1;
1785
    int handshakeFd = -1;
1786 1787
    int bg = 0;
    char *sockpath = NULL;
1788
    const struct option options[] = {
1789 1790 1791 1792
        { "background", 0, NULL, 'b' },
        { "name",   1, NULL, 'n' },
        { "veth",   1, NULL, 'v' },
        { "console", 1, NULL, 'c' },
1793
        { "handshakefd", 1, NULL, 's' },
1794
        { "security", 1, NULL, 'S' },
1795 1796 1797
        { "help", 0, NULL, 'h' },
        { 0, 0, 0, 0 },
    };
1798 1799
    int *ttyFDs = NULL;
    size_t nttyFDs = 0;
1800
    virLXCControllerPtr ctrl = NULL;
1801
    size_t i;
1802
    const char *securityDriver = "none";
1803

E
Eric Blake 已提交
1804 1805
    if (setlocale(LC_ALL, "") == NULL ||
        bindtextdomain(PACKAGE, LOCALEDIR) == NULL ||
1806 1807
        textdomain(PACKAGE) == NULL ||
        virRandomInitialize(time(NULL) ^ getpid())) {
E
Eric Blake 已提交
1808 1809 1810 1811
        fprintf(stderr, _("%s: initialization failed\n"), argv[0]);
        exit(EXIT_FAILURE);
    }

1812 1813 1814
    /* Initialize logging */
    virLogSetFromEnv();

1815 1816
    while (1) {
        int c;
1817

1818
        c = getopt_long(argc, argv, "dn:v:m:c:s:h:S:",
1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830
                       options, NULL);

        if (c == -1)
            break;

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

        case 'n':
            if ((name = strdup(optarg)) == NULL) {
1831
                virReportOOMError();
1832
                goto cleanup;
1833
            }
1834 1835 1836 1837
            break;

        case 'v':
            if (VIR_REALLOC_N(veths, nveths+1) < 0) {
1838
                virReportOOMError();
1839
                goto cleanup;
1840
            }
1841
            if ((veths[nveths++] = strdup(optarg)) == NULL) {
1842
                virReportOOMError();
1843
                goto cleanup;
1844
            }
1845 1846 1847
            break;

        case 'c':
1848 1849 1850 1851 1852
            if (VIR_REALLOC_N(ttyFDs, nttyFDs + 1) < 0) {
                virReportOOMError();
                goto cleanup;
            }
            if (virStrToLong_i(optarg, NULL, 10, &ttyFDs[nttyFDs++]) < 0) {
1853 1854 1855 1856 1857
                fprintf(stderr, "malformed --console argument '%s'", optarg);
                goto cleanup;
            }
            break;

1858
        case 's':
1859
            if (virStrToLong_i(optarg, NULL, 10, &handshakeFd) < 0) {
1860 1861 1862 1863 1864 1865
                fprintf(stderr, "malformed --handshakefd argument '%s'",
                        optarg);
                goto cleanup;
            }
            break;

1866
        case 'S':
1867
            securityDriver = optarg;
1868 1869
            break;

1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880
        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");
1881
            fprintf(stderr, "  -s FD, --handshakefd FD\n");
1882
            fprintf(stderr, "  -S NAME, --security NAME\n");
1883 1884 1885
            fprintf(stderr, "  -h, --help\n");
            fprintf(stderr, "\n");
            goto cleanup;
1886 1887 1888
        }
    }

1889 1890 1891 1892 1893
    if (name == NULL) {
        fprintf(stderr, "%s: missing --name argument for configuration\n", argv[0]);
        goto cleanup;
    }

1894
    if (handshakeFd < 0) {
1895 1896 1897 1898 1899
        fprintf(stderr, "%s: missing --handshake argument for container PTY\n",
                argv[0]);
        goto cleanup;
    }

1900
    if (getuid() != 0) {
1901 1902 1903
        fprintf(stderr, "%s: must be run as the 'root' user\n", argv[0]);
        goto cleanup;
    }
1904

1905 1906
    virEventRegisterDefaultImpl();

1907
    if (!(ctrl = virLXCControllerNew(name)))
1908
        goto cleanup;
1909

1910 1911
    ctrl->handshakeFd = handshakeFd;

1912 1913 1914 1915 1916
    if (!(ctrl->securityManager = virSecurityManagerNew(securityDriver,
                                                        LXC_DRIVER_NAME,
                                                        false, false, false)))
        goto cleanup;

1917
    VIR_DEBUG("Security model %s type %s label %s imagelabel %s",
1918 1919 1920 1921
              NULLSTR(ctrl->def->seclabel.model),
              virDomainSeclabelTypeToString(ctrl->def->seclabel.type),
              NULLSTR(ctrl->def->seclabel.label),
              NULLSTR(ctrl->def->seclabel.imagelabel));
1922

1923 1924 1925
    ctrl->veths = veths;
    ctrl->nveths = nveths;

1926 1927 1928 1929 1930 1931
    for (i = 0 ; i < nttyFDs ; i++) {
        if (virLXCControllerAddConsole(ctrl, ttyFDs[i]) < 0)
            goto cleanup;
        ttyFDs[i] = -1;
    }

1932
    if (virLXCControllerValidateNICs(ctrl) < 0)
1933
        goto cleanup;
1934

1935 1936 1937
    if (virLXCControllerValidateConsoles(ctrl) < 0)
        goto cleanup;

1938
    if ((sockpath = lxcMonitorPath(ctrl)) == NULL)
1939
        goto cleanup;
1940

1941 1942
    if ((monitor = lxcMonitorServer(sockpath)) < 0)
        goto cleanup;
1943

1944 1945 1946
    if (bg) {
        if ((pid = fork()) < 0)
            goto cleanup;
1947

1948
        if (pid > 0) {
1949
            if ((rc = virPidFileWrite(LXC_STATE_DIR, name, pid)) < 0) {
1950
                virReportSystemError(-rc,
1951 1952
                                     _("Unable to write pid file '%s/%s.pid'"),
                                     LXC_STATE_DIR, name);
1953 1954
                _exit(1);
            }
1955

1956 1957 1958 1959
            /* First child now exits, allowing original caller
             * (ie libvirtd's LXC driver to complete their
             * waitpid & continue */
            _exit(0);
1960 1961
        }

1962 1963
        /* Don't hold onto any cwd we inherit from libvirtd either */
        if (chdir("/") < 0) {
1964
            virReportSystemError(errno, "%s",
1965
                                 _("Unable to change to root dir"));
1966 1967 1968 1969
            goto cleanup;
        }

        if (setsid() < 0) {
1970
            virReportSystemError(errno, "%s",
1971
                                 _("Unable to become session leader"));
1972 1973 1974
            goto cleanup;
        }
    }
1975 1976

    /* Accept initial client which is the libvirtd daemon */
1977
    if ((client = accept(monitor, NULL, 0)) < 0) {
1978
        virReportSystemError(errno, "%s",
1979
                             _("Failed to accept a connection from driver"));
1980
        goto cleanup;
1981 1982
    }

1983
    rc = virLXCControllerRun(ctrl,
1984
                             monitor, client);
1985

1986
cleanup:
1987
    virPidFileDelete(LXC_STATE_DIR, name);
1988
    virLXCControllerDeleteInterfaces(ctrl);
J
Jim Meyering 已提交
1989 1990
    if (sockpath)
        unlink(sockpath);
1991
    VIR_FREE(sockpath);
1992 1993 1994 1995
    for (i = 0 ; i < nttyFDs ; i++)
        VIR_FORCE_CLOSE(ttyFDs[i]);
    VIR_FREE(ttyFDs);

1996
    virLXCControllerFree(ctrl);
1997

1998
    return rc ? EXIT_FAILURE : EXIT_SUCCESS;
1999
}