lxc_container.c 23.7 KB
Newer Older
1 2
/*
 * Copyright IBM Corp. 2008
3
 * Copyright Red Hat 2008-2009
4 5 6 7 8
 *
 * lxc_container.c: file description
 *
 * Authors:
 *  David L. Leskovec <dlesko at linux.vnet.ibm.com>
9
 *  Daniel P. Berrange <berrange@redhat.com>
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 *
 * 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 <fcntl.h>
#include <limits.h>
#include <stdlib.h>
31
#include <stdio.h>
32 33
#include <sys/ioctl.h>
#include <sys/mount.h>
34
#include <sys/wait.h>
35
#include <sys/stat.h>
36
#include <unistd.h>
37 38 39 40 41 42 43
#include <mntent.h>

/* Yes, we want linux private one, for _syscall2() macro */
#include <linux/unistd.h>

/* For MS_MOVE */
#include <linux/fs.h>
44

D
Daniel P. Berrange 已提交
45 46 47
#if HAVE_CAPNG
#include <cap-ng.h>
#endif
48

49
#include "virterror_internal.h"
50
#include "logging.h"
51 52
#include "lxc_container.h"
#include "util.h"
53
#include "memory.h"
54
#include "veth.h"
55

56 57
#define VIR_FROM_THIS VIR_FROM_LXC

58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
/*
 * GLibc headers are behind the kernel, so we define these
 * constants if they're not present already.
 */

#ifndef CLONE_NEWPID
#define CLONE_NEWPID  0x20000000
#endif
#ifndef CLONE_NEWUTS
#define CLONE_NEWUTS  0x04000000
#endif
#ifndef CLONE_NEWUSER
#define CLONE_NEWUSER 0x10000000
#endif
#ifndef CLONE_NEWIPC
#define CLONE_NEWIPC  0x08000000
#endif
#ifndef CLONE_NEWNET
#define CLONE_NEWNET  0x40000000 /* New network namespace */
#endif

/* messages between parent and container */
typedef char lxc_message_t;
#define LXC_CONTINUE_MSG 'c'

typedef struct __lxc_child_argv lxc_child_argv_t;
struct __lxc_child_argv {
85
    virDomainDefPtr config;
86 87
    unsigned int nveths;
    char **veths;
88 89 90 91 92
    int monitor;
    char *ttyPath;
};


93
/**
94
 * lxcContainerExecInit:
95
 * @vmDef: pointer to vm definition structure
96
 *
97
 * Exec the container init string. The container init will replace then
98 99
 * be running in the current process
 *
100
 * Does not return
101
 */
102
static int lxcContainerExecInit(virDomainDefPtr vmDef)
103
{
104
    const char *const argv[] = {
105
        vmDef->os.init,
106 107
        NULL,
    };
108

109
    return execve(argv[0], (char **)argv, NULL);
110 111 112
}

/**
113
 * lxcContainerSetStdio:
114 115
 * @control: control FD from parent
 * @ttyfd: FD of tty to set as the container console
116 117 118 119 120 121
 *
 * Sets the given tty as the primary conosole for the container as well as
 * stdout, stdin and stderr.
 *
 * Returns 0 on success or -1 in case of error
 */
122
static int lxcContainerSetStdio(int control, int ttyfd)
123 124
{
    int rc = -1;
125
    int open_max, i;
126 127

    if (setsid() < 0) {
128 129
        virReportSystemError(NULL, errno, "%s",
                             _("setsid failed"));
130
        goto cleanup;
131 132 133
    }

    if (ioctl(ttyfd, TIOCSCTTY, NULL) < 0) {
134 135
        virReportSystemError(NULL, errno, "%s",
                             _("ioctl(TIOCSTTY) failed"));
136 137 138
        goto cleanup;
    }

139 140 141 142
    /* Just in case someone forget to set FD_CLOEXEC, explicitly
     * close all FDs before executing the container */
    open_max = sysconf (_SC_OPEN_MAX);
    for (i = 0; i < open_max; i++)
143
        if (i != ttyfd && i != control)
144
            close(i);
145 146

    if (dup2(ttyfd, 0) < 0) {
147 148
        virReportSystemError(NULL, errno, "%s",
                             _("dup2(stdin) failed"));
149 150 151 152
        goto cleanup;
    }

    if (dup2(ttyfd, 1) < 0) {
153 154
        virReportSystemError(NULL, errno, "%s",
                             _("dup2(stdout) failed"));
155 156 157 158
        goto cleanup;
    }

    if (dup2(ttyfd, 2) < 0) {
159 160
        virReportSystemError(NULL, errno, "%s",
                             _("dup2(stderr) failed"));
161 162 163 164 165 166 167 168 169 170
        goto cleanup;
    }

    rc = 0;

cleanup:
    return rc;
}

/**
171
 * lxcContainerSendContinue:
172
 * @control: control FD to child
173
 *
174 175
 * Sends the continue message via the socket pair stored in the vm
 * structure.
176 177 178
 *
 * Returns 0 on success or -1 in case of error
 */
179
int lxcContainerSendContinue(int control)
180 181
{
    int rc = -1;
182 183
    lxc_message_t msg = LXC_CONTINUE_MSG;
    int writeCount = 0;
184

185 186
    writeCount = safewrite(control, &msg, sizeof(msg));
    if (writeCount != sizeof(msg)) {
187
        virReportSystemError(NULL, errno, "%s",
188
                             _("Unable to send container continue message"));
189
        goto error_out;
190 191
    }

192
    rc = 0;
193

194 195
error_out:
    return rc;
196 197
}

198
/**
199
 * lxcContainerWaitForContinue:
200
 * @control: Control FD from parent
201 202 203 204 205 206 207
 *
 * This function will wait for the container continue message from the
 * parent process.  It will send this message on the socket pair stored in
 * the vm structure once it has completed the post clone container setup.
 *
 * Returns 0 on success or -1 in case of error
 */
208
static int lxcContainerWaitForContinue(int control)
209 210 211 212
{
    lxc_message_t msg;
    int readLen;

213
    readLen = saferead(control, &msg, sizeof(msg));
214 215
    if (readLen != sizeof(msg) ||
        msg != LXC_CONTINUE_MSG) {
216 217
        virReportSystemError(NULL, errno, "%s",
                             _("Failed to read the container continue message"));
218
        return -1;
219
    }
220
    close(control);
221 222 223

    DEBUG0("Received container continue message");

224
    return 0;
225 226
}

227

228
/**
229
 * lxcContainerRenameAndEnableInterfaces:
230 231
 * @nveths: number of interfaces
 * @veths: interface names
232
 *
233 234 235
 * This function will rename the interfaces to ethN
 * with id ascending order from zero and enable the
 * renamed interfaces for this container.
236 237 238
 *
 * Returns 0 on success or nonzero in case of error
 */
239 240
static int lxcContainerRenameAndEnableInterfaces(unsigned int nveths,
                                                 char **veths)
241 242
{
    int rc = 0;
243
    unsigned int i;
244
    char *newname = NULL;
245

246
    for (i = 0 ; i < nveths ; i++) {
247 248
        rc = virAsprintf(&newname, "eth%d", i);
        if (rc < 0)
249
            goto error_out;
250 251 252 253 254 255 256 257 258 259 260

        DEBUG("Renaming %s to %s", veths[i], newname);
        rc = setInterfaceName(veths[i], newname);
        if (0 != rc)
            goto error_out;

        DEBUG("Enabling %s", newname);
        rc =  vethInterfaceUpOrDown(newname, 1);
        if (0 != rc)
            goto error_out;
        VIR_FREE(newname);
261 262 263
    }

    /* enable lo device only if there were other net devices */
264
    if (veths)
265 266 267
        rc = vethInterfaceUpOrDown("lo", 1);

error_out:
268
    VIR_FREE(newname);
269 270 271
    return rc;
}

272 273 274 275 276 277 278 279 280 281 282 283 284 285

//_syscall2(int, pivot_root, char *, newroot, const char *, oldroot)
extern int pivot_root(const char * new_root,const char * put_old);

static int lxcContainerChildMountSort(const void *a, const void *b)
{
  const char **sa = (const char**)a;
  const char **sb = (const char**)b;

  /* Delibrately reversed args - we need to unmount deepest
     children first */
  return strcmp(*sb, *sa);
}

286 287 288 289 290 291 292 293 294 295 296 297 298
#ifndef MS_REC
#define MS_REC          16384
#endif

#ifndef MNT_DETACH
#define MNT_DETACH      0x00000002
#endif

#ifndef MS_PRIVATE
#define MS_PRIVATE              (1<<18)
#endif

#ifndef MS_SLAVE
299
#define MS_SLAVE                (1<<19)
300 301
#endif

302 303
static int lxcContainerPivotRoot(virDomainFSDefPtr root)
{
M
Mark McLoughlin 已提交
304
    int rc, ret;
305
    char *oldroot = NULL, *newroot = NULL;
306

M
Mark McLoughlin 已提交
307 308
    ret = -1;

309 310 311
    /* root->parent must be private, so make / private. */
    if (mount("", "/", NULL, MS_PRIVATE|MS_REC, NULL) < 0) {
        virReportSystemError(NULL, errno, "%s",
312
                             _("Failed to make root private"));
313
        goto err;
314 315
    }

316
    if (virAsprintf(&oldroot, "%s/.oldroot", root->src) < 0) {
317
        virReportOOMError();
318
        goto err;
319 320
    }

L
Laine Stump 已提交
321
    if ((rc = virFileMakePath(oldroot)) != 0) {
322
        virReportSystemError(NULL, rc,
323
                             _("Failed to create %s"),
324
                             oldroot);
325 326 327 328 329
        goto err;
    }

    /* Create a tmpfs root since old and new roots must be
     * on separate filesystems */
330
    if (mount("tmprootfs", oldroot, "tmpfs", 0, NULL) < 0) {
331
        virReportSystemError(NULL, errno,
332
                             _("Failed to mount empty tmpfs at %s"),
333 334 335
                             oldroot);
        goto err;
    }
M
Mark McLoughlin 已提交
336

337 338
    /* Create a directory called 'new' in tmpfs */
    if (virAsprintf(&newroot, "%s/new", oldroot) < 0) {
339
        virReportOOMError();
340 341 342
        goto err;
    }

L
Laine Stump 已提交
343
    if ((rc = virFileMakePath(newroot)) != 0) {
344
        virReportSystemError(NULL, rc,
345
                             _("Failed to create %s"),
346 347 348 349 350 351 352
                             newroot);
        goto err;
    }

    /* ... and mount our root onto it */
    if (mount(root->src, newroot, NULL, MS_BIND|MS_REC, NULL) < 0) {
        virReportSystemError(NULL, errno,
353
                             _("Failed to bind new root %s into tmpfs"),
354 355 356 357 358 359
                             root->src);
        goto err;
    }

    /* Now we chroot into the tmpfs, then pivot into the
     * root->src bind-mounted onto '/new' */
360 361
    if (chdir(newroot) < 0) {
        virReportSystemError(NULL, errno,
362
                             _("Failed to chroot into %s"), newroot);
363
        goto err;
364 365 366 367
    }

    /* The old root directory will live at /.oldroot after
     * this and will soon be unmounted completely */
368 369
    if (pivot_root(".", ".oldroot") < 0) {
        virReportSystemError(NULL, errno, "%s",
370
                             _("Failed to pivot root"));
371
        goto err;
372 373 374
    }

    /* CWD is undefined after pivot_root, so go to / */
375 376 377
    if (chdir("/") < 0)
        goto err;

M
Mark McLoughlin 已提交
378 379 380
    ret = 0;

err:
381 382 383
    VIR_FREE(oldroot);
    VIR_FREE(newroot);

M
Mark McLoughlin 已提交
384
    return ret;
385 386
}

387 388

static int lxcContainerMountBasicFS(virDomainFSDefPtr root)
389 390
{
    const struct {
391 392 393 394 395 396 397 398 399 400
        const char *src;
        const char *dst;
        const char *type;
    } mnts[] = {
        { "/dev", "/dev", "tmpfs" },
        { "/proc", "/proc", "proc" },
        { "/sys", "/sys", "sysfs" },
#if WITH_SELINUX
        { "none", "/selinux", "selinuxfs" },
#endif
401
    };
402
    int i, rc = -1;
403
    char *devpts;
404

405
    if (virAsprintf(&devpts, "/.oldroot%s/dev/pts", root->src) < 0) {
406
        virReportOOMError();
407
        return rc;
408
    }
409 410

    for (i = 0 ; i < ARRAY_CARDINALITY(mnts) ; i++) {
L
Laine Stump 已提交
411
        if (virFileMakePath(mnts[i].dst) != 0) {
412
            virReportSystemError(NULL, errno,
413
                                 _("Failed to mkdir %s"),
414
                                 mnts[i].src);
415
            goto cleanup;
416 417 418
        }
        if (mount(mnts[i].src, mnts[i].dst, mnts[i].type, 0, NULL) < 0) {
            virReportSystemError(NULL, errno,
419
                                 _("Failed to mount %s on %s"),
420
                                 mnts[i].type, mnts[i].type);
421
            goto cleanup;
422
        }
423
    }
424

L
Laine Stump 已提交
425
    if ((rc = virFileMakePath("/dev/pts") != 0)) {
426
        virReportSystemError(NULL, rc, "%s",
427
                             _("Cannot create /dev/pts"));
428
        goto cleanup;
429
    }
430 431 432

    VIR_DEBUG("Trying to move %s to %s", devpts, "/dev/pts");
    if ((rc = mount(devpts, "/dev/pts", NULL, MS_MOVE, NULL)) < 0) {
433
        virReportSystemError(NULL, errno, "%s",
434
                             _("Failed to mount /dev/pts in container"));
435
        goto cleanup;
436
    }
437 438 439 440

    rc = 0;

 cleanup:
441 442
    VIR_FREE(devpts);

443
    return rc;
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
}

static int lxcContainerPopulateDevices(void)
{
    int i;
    const struct {
        int maj;
        int min;
        mode_t mode;
        const char *path;
    } devs[] = {
        { LXC_DEV_MAJ_MEMORY, LXC_DEV_MIN_NULL, 0666, "/dev/null" },
        { LXC_DEV_MAJ_MEMORY, LXC_DEV_MIN_ZERO, 0666, "/dev/zero" },
        { LXC_DEV_MAJ_MEMORY, LXC_DEV_MIN_FULL, 0666, "/dev/full" },
        { LXC_DEV_MAJ_TTY, LXC_DEV_MIN_CONSOLE, 0600, "/dev/console" },
        { LXC_DEV_MAJ_MEMORY, LXC_DEV_MIN_RANDOM, 0666, "/dev/random" },
        { LXC_DEV_MAJ_MEMORY, LXC_DEV_MIN_URANDOM, 0666, "/dev/urandom" },
    };
462 463 464 465

    /* Populate /dev/ with a few important bits */
    for (i = 0 ; i < ARRAY_CARDINALITY(devs) ; i++) {
        dev_t dev = makedev(devs[i].maj, devs[i].min);
466
        if (mknod(devs[i].path, S_IFCHR, dev) < 0 ||
467
            chmod(devs[i].path, devs[i].mode)) {
468
            virReportSystemError(NULL, errno,
469
                                 _("Failed to make device %s"),
470
                                 devs[i].path);
471 472 473 474
            return -1;
        }
    }

475 476 477
    if (access("/dev/pts/ptmx", W_OK) == 0) {
        if (symlink("/dev/pts/ptmx", "/dev/ptmx") < 0) {
            virReportSystemError(NULL, errno, "%s",
478
                                 _("Failed to create symlink /dev/ptmx to /dev/pts/ptmx"));
479 480 481 482
            return -1;
        }
    } else {
        dev_t dev = makedev(LXC_DEV_MAJ_TTY, LXC_DEV_MIN_PTMX);
483
        if (mknod("/dev/ptmx", S_IFCHR, dev) < 0 ||
484 485
            chmod("/dev/ptmx", 0666)) {
            virReportSystemError(NULL, errno, "%s",
486
                                 _("Failed to make device /dev/ptmx"));
487 488 489 490 491
            return -1;
        }
    }


492 493 494 495 496 497
    return 0;
}


static int lxcContainerMountNewFS(virDomainDefPtr vmDef)
{
498
    int i;
499 500

    /* Pull in rest of container's mounts */
501
    for (i = 0 ; i < vmDef->nfss ; i++) {
502
        char *src;
503
        if (STREQ(vmDef->fss[i]->dst, "/"))
504 505
            continue;
        // XXX fix
506
        if (vmDef->fss[i]->type != VIR_DOMAIN_FS_TYPE_MOUNT)
507 508
            continue;

509
        if (virAsprintf(&src, "/.oldroot/%s", vmDef->fss[i]->src) < 0) {
510
            virReportOOMError();
511 512 513
            return -1;
        }

L
Laine Stump 已提交
514
        if (virFileMakePath(vmDef->fss[i]->dst) != 0) {
515
            virReportSystemError(NULL, errno,
516
                                 _("Failed to create %s"),
517
                                 vmDef->fss[i]->dst);
518
            VIR_FREE(src);
519 520 521 522
            return -1;
        }
        if (mount(src, vmDef->fss[i]->dst, NULL, MS_BIND, NULL) < 0) {
            virReportSystemError(NULL, errno,
523 524 525
                                 _("Failed to mount %s at %s"),
                                 src, vmDef->fss[i]->dst);
            VIR_FREE(src);
526 527 528 529 530 531 532 533 534 535 536
            return -1;
        }
        VIR_FREE(src);
    }

    return 0;
}


static int lxcContainerUnmountOldFS(void)
{
537
    struct mntent mntent;
538 539 540 541
    char **mounts = NULL;
    int nmounts = 0;
    FILE *procmnt;
    int i;
542
    char mntbuf[1024];
543 544

    if (!(procmnt = setmntent("/proc/mounts", "r"))) {
545
        virReportSystemError(NULL, errno, "%s",
546
                             _("Failed to read /proc/mounts"));
547 548
        return -1;
    }
549
    while (getmntent_r(procmnt, &mntent, mntbuf, sizeof(mntbuf)) != NULL) {
550
        VIR_DEBUG("Got %s", mntent.mnt_dir);
551
        if (!STRPREFIX(mntent.mnt_dir, "/.oldroot"))
552 553 554 555
            continue;

        if (VIR_REALLOC_N(mounts, nmounts+1) < 0) {
            endmntent(procmnt);
556
            virReportOOMError();
557 558
            return -1;
        }
559
        if (!(mounts[nmounts++] = strdup(mntent.mnt_dir))) {
560
            endmntent(procmnt);
561
            virReportOOMError();
562 563 564 565 566
            return -1;
        }
    }
    endmntent(procmnt);

567 568 569
    if (mounts)
        qsort(mounts, nmounts, sizeof(mounts[0]),
              lxcContainerChildMountSort);
570 571

    for (i = 0 ; i < nmounts ; i++) {
572
        VIR_DEBUG("Umount %s", mounts[i]);
573
        if (umount(mounts[i]) < 0) {
574
            virReportSystemError(NULL, errno,
575
                                 _("Failed to unmount '%s'"),
576
                                 mounts[i]);
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
            return -1;
        }
        VIR_FREE(mounts[i]);
    }
    VIR_FREE(mounts);

    return 0;
}


/* Got a FS mapped to /, we're going the pivot_root
 * approach to do a better-chroot-than-chroot
 * this is based on this thread http://lkml.org/lkml/2008/3/5/29
 */
static int lxcContainerSetupPivotRoot(virDomainDefPtr vmDef,
                                      virDomainFSDefPtr root)
{
594
    /* Gives us a private root, leaving all parent OS mounts on /.oldroot */
595 596 597
    if (lxcContainerPivotRoot(root) < 0)
        return -1;

598 599
    /* Mounts the core /proc, /sys, /dev, /dev/pts filesystems */
    if (lxcContainerMountBasicFS(root) < 0)
600 601
        return -1;

602
    /* Populates device nodes in /dev/ */
603 604 605
    if (lxcContainerPopulateDevices() < 0)
        return -1;

606
    /* Sets up any non-root mounts from guest config */
607 608 609
    if (lxcContainerMountNewFS(vmDef) < 0)
        return -1;

610
    /* Gets rid of all remaining mounts from host OS, including /.oldroot itself */
611 612 613 614 615 616 617 618 619 620
    if (lxcContainerUnmountOldFS() < 0)
        return -1;

    return 0;
}

/* Nothing mapped to /, we're using the main root,
   but with extra stuff mapped in */
static int lxcContainerSetupExtraMounts(virDomainDefPtr vmDef)
{
621
    int i;
622

623 624
    if (mount("", "/", NULL, MS_SLAVE|MS_REC, NULL) < 0) {
        virReportSystemError(NULL, errno, "%s",
625
                             _("Failed to make / slave"));
626 627
        return -1;
    }
628
    for (i = 0 ; i < vmDef->nfss ; i++) {
629
        // XXX fix to support other mount types
630
        if (vmDef->fss[i]->type != VIR_DOMAIN_FS_TYPE_MOUNT)
631 632
            continue;

633 634
        if (mount(vmDef->fss[i]->src,
                  vmDef->fss[i]->dst,
635 636 637
                  NULL,
                  MS_BIND,
                  NULL) < 0) {
638
            virReportSystemError(NULL, errno,
639
                                 _("Failed to mount %s at %s"),
640 641
                                 vmDef->fss[i]->src,
                                 vmDef->fss[i]->dst);
642 643 644 645 646 647
            return -1;
        }
    }

    /* mount /proc */
    if (mount("lxcproc", "/proc", "proc", 0, NULL) < 0) {
648
        virReportSystemError(NULL, errno, "%s",
649
                             _("Failed to mount /proc"));
650 651 652 653 654 655
        return -1;
    }

    return 0;
}

656 657
static int lxcContainerSetupMounts(virDomainDefPtr vmDef,
                                   virDomainFSDefPtr root)
658 659 660 661 662 663 664
{
    if (root)
        return lxcContainerSetupPivotRoot(vmDef, root);
    else
        return lxcContainerSetupExtraMounts(vmDef);
}

D
Daniel P. Berrange 已提交
665 666 667 668 669 670 671

/*
 * This is running as the 'init' process insid the container.
 * It removes some capabilities that could be dangerous to
 * host system, since they are not currently "containerized"
 */
static int lxcContainerDropCapabilities(void)
672
{
D
Daniel P. Berrange 已提交
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687
#if HAVE_CAPNG
    int ret;

    capng_get_caps_process();

    if ((ret = capng_updatev(CAPNG_DROP,
                             CAPNG_EFFECTIVE | CAPNG_PERMITTED |
                             CAPNG_INHERITABLE | CAPNG_BOUNDING_SET,
                             CAP_SYS_BOOT, /* No use of reboot */
                             CAP_SYS_MODULE, /* No kernel module loading */
                             CAP_SYS_TIME, /* No changing the clock */
                             CAP_AUDIT_CONTROL, /* No messing with auditing status */
                             CAP_MAC_ADMIN, /* No messing with LSM config */
                             -1 /* sentinal */)) < 0) {
        lxcError(NULL, NULL, VIR_ERR_INTERNAL_ERROR,
688
                 _("Failed to remove capabilities: %d"), ret);
D
Daniel P. Berrange 已提交
689 690
        return -1;
    }
691

D
Daniel P. Berrange 已提交
692 693
    if ((ret = capng_apply(CAPNG_SELECT_BOTH)) < 0) {
        lxcError(NULL, NULL, VIR_ERR_INTERNAL_ERROR,
694
                 _("Failed to apply capabilities: %d"), ret);
D
Daniel P. Berrange 已提交
695
        return -1;
696
    }
D
Daniel P. Berrange 已提交
697

698 699 700 701 702
    /* We do not need to call capng_lock() in this case. The bounding
     * set restriction will prevent them reacquiring sys_boot/module/time,
     * etc which is all that matters for the container. Once inside the
     * container it is fine for SECURE_NOROOT / SECURE_NO_SETUID_FIXUP to
     * be unmasked  - they can never escape the bounding set. */
D
Daniel P. Berrange 已提交
703 704 705

#else
    VIR_WARN0(_("libcap-ng support not compiled in, unable to clear capabilities"));
D
Daniel Veillard 已提交
706
#endif
707 708 709 710
    return 0;
}


711
/**
712 713
 * lxcContainerChild:
 * @data: pointer to container arguments
714 715 716 717 718 719 720 721 722
 *
 * This function is run in the process clone()'d in lxcStartContainer.
 * Perform a number of container setup tasks:
 *     Setup container file system
 *     mount container /proca
 * Then exec's the container init
 *
 * Returns 0 on success or -1 in case of error
 */
723
static int lxcContainerChild( void *data )
724
{
725
    lxc_child_argv_t *argv = data;
726
    virDomainDefPtr vmDef = argv->config;
727
    int ttyfd;
728 729
    char *ttyPath;
    virDomainFSDefPtr root;
730 731 732

    if (NULL == vmDef) {
        lxcError(NULL, NULL, VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
733
                 "%s", _("lxcChild() passed invalid vm definition"));
734
        return -1;
735 736
    }

737
    root = virDomainGetRootFilesystem(vmDef);
738

739 740
    if (root) {
        if (virAsprintf(&ttyPath, "%s%s", root->src, argv->ttyPath) < 0) {
741
            virReportOOMError();
742 743 744 745
            return -1;
        }
    } else {
        if (!(ttyPath = strdup(argv->ttyPath))) {
746
            virReportOOMError();
747 748 749 750 751
            return -1;
        }
    }

    ttyfd = open(ttyPath, O_RDWR|O_NOCTTY);
752
    if (ttyfd < 0) {
753
        virReportSystemError(NULL, errno,
754
                             _("Failed to open tty %s"),
755
                             ttyPath);
756
        VIR_FREE(ttyPath);
757
        return -1;
758
    }
759
    VIR_FREE(ttyPath);
760

761 762
    if (lxcContainerSetStdio(argv->monitor, ttyfd) < 0) {
        close(ttyfd);
763
        return -1;
764 765
    }
    close(ttyfd);
766

767 768 769
    if (lxcContainerSetupMounts(vmDef, root) < 0)
        return -1;

770
    /* Wait for interface devices to show up */
771 772
    if (lxcContainerWaitForContinue(argv->monitor) < 0)
        return -1;
773

774 775 776
    /* rename and enable interfaces */
    if (lxcContainerRenameAndEnableInterfaces(argv->nveths,
                                              argv->veths) < 0)
777
        return -1;
778

779
    /* drop a set of root capabilities */
D
Daniel P. Berrange 已提交
780
    if (lxcContainerDropCapabilities() < 0)
781 782
        return -1;

783
    /* this function will only return if an error occured */
784 785
    return lxcContainerExecInit(vmDef);
}
786

787 788 789 790 791
static int userns_supported(void)
{
    return lxcContainerAvailable(LXC_CONTAINER_FEATURE_USER) == 0;
}

792 793
/**
 * lxcContainerStart:
794 795 796 797 798
 * @def: pointer to virtual machine structure
 * @nveths: number of interfaces
 * @veths: interface names
 * @control: control FD to the container
 * @ttyPath: path of tty to set as the container console
799 800 801 802 803
 *
 * Starts a container process by calling clone() with the namespace flags
 *
 * Returns PID of container on success or -1 in case of error
 */
804
int lxcContainerStart(virDomainDefPtr def,
805 806
                      unsigned int nveths,
                      char **veths,
807 808 809 810 811 812 813
                      int control,
                      char *ttyPath)
{
    pid_t pid;
    int flags;
    int stacksize = getpagesize() * 4;
    char *stack, *stacktop;
814
    lxc_child_argv_t args = { def, nveths, veths, control, ttyPath };
815 816 817

    /* allocate a stack for the container */
    if (VIR_ALLOC_N(stack, stacksize) < 0) {
818
        virReportOOMError();
819 820 821 822
        return -1;
    }
    stacktop = stack + stacksize;

823 824 825 826
    flags = CLONE_NEWPID|CLONE_NEWNS|CLONE_NEWUTS|CLONE_NEWIPC|SIGCHLD;

    if (userns_supported())
        flags |= CLONE_NEWUSER;
827 828 829 830 831 832 833 834 835

    if (def->nets != NULL)
        flags |= CLONE_NEWNET;

    pid = clone(lxcContainerChild, stacktop, flags, &args);
    VIR_FREE(stack);
    DEBUG("clone() returned, %d", pid);

    if (pid < 0) {
836
        virReportSystemError(NULL, errno, "%s",
837
                             _("Failed to run clone container"));
838 839 840 841 842 843 844 845 846 847 848 849 850
        return -1;
    }

    return pid;
}

static int lxcContainerDummyChild(void *argv ATTRIBUTE_UNUSED)
{
    _exit(0);
}

int lxcContainerAvailable(int features)
{
851
    int flags = CLONE_NEWPID|CLONE_NEWNS|CLONE_NEWUTS|
852 853 854 855 856 857
        CLONE_NEWIPC|SIGCHLD;
    int cpid;
    char *childStack;
    char *stack;
    int childStatus;

858 859 860
    if (features & LXC_CONTAINER_FEATURE_USER)
        flags |= CLONE_NEWUSER;

861 862 863 864 865 866 867 868 869 870 871 872 873
    if (features & LXC_CONTAINER_FEATURE_NET)
        flags |= CLONE_NEWNET;

    if (VIR_ALLOC_N(stack, getpagesize() * 4) < 0) {
        DEBUG0("Unable to allocate stack");
        return -1;
    }

    childStack = stack + (getpagesize() * 4);

    cpid = clone(lxcContainerDummyChild, childStack, flags, NULL);
    VIR_FREE(stack);
    if (cpid < 0) {
874
        char ebuf[1024];
875
        DEBUG("clone call returned %s, container support is not enabled",
876
              virStrerror(errno, ebuf, sizeof ebuf));
877 878 879 880 881 882
        return -1;
    } else {
        waitpid(cpid, &childStatus, 0);
    }

    return 0;
883
}