]> git.proxmox.com Git - mirror_lxc.git/blame_incremental - src/lxc/start.c
Fix Android build failure
[mirror_lxc.git] / src / lxc / start.c
... / ...
CommitLineData
1/*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2008
5 *
6 * Authors:
7 * Daniel Lezcano <daniel.lezcano at free.fr>
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24#include "config.h"
25
26#include <stdio.h>
27#include <string.h>
28#include <stdlib.h>
29#include <dirent.h>
30#include <errno.h>
31#include <unistd.h>
32#include <signal.h>
33#include <fcntl.h>
34#include <grp.h>
35#include <poll.h>
36#include <sys/param.h>
37#include <sys/file.h>
38#include <sys/mount.h>
39#include <sys/stat.h>
40#include <sys/types.h>
41#include <sys/socket.h>
42#include <sys/prctl.h>
43#include <sys/types.h>
44#include <sys/wait.h>
45#include <sys/un.h>
46#include <sys/syscall.h>
47
48#if HAVE_SYS_CAPABILITY_H
49#include <sys/capability.h>
50#endif
51
52#if !HAVE_DECL_PR_CAPBSET_DROP
53#define PR_CAPBSET_DROP 24
54#endif
55
56#include "start.h"
57#include "conf.h"
58#include "log.h"
59#include "cgroup.h"
60#include "error.h"
61#include "af_unix.h"
62#include "mainloop.h"
63#include "utils.h"
64#include "lxcutmp.h"
65#include "monitor.h"
66#include "commands.h"
67#include "console.h"
68#include "sync.h"
69#include "namespace.h"
70#include "lxcseccomp.h"
71#include "caps.h"
72#include "bdev/bdev.h"
73#include "lsm/lsm.h"
74#include "lxclock.h"
75
76lxc_log_define(lxc_start, lxc);
77
78const struct ns_info ns_info[LXC_NS_MAX] = {
79 [LXC_NS_MNT] = {"mnt", CLONE_NEWNS},
80 [LXC_NS_PID] = {"pid", CLONE_NEWPID},
81 [LXC_NS_UTS] = {"uts", CLONE_NEWUTS},
82 [LXC_NS_IPC] = {"ipc", CLONE_NEWIPC},
83 [LXC_NS_USER] = {"user", CLONE_NEWUSER},
84 [LXC_NS_NET] = {"net", CLONE_NEWNET}
85};
86
87extern void mod_all_rdeps(struct lxc_container *c, bool inc);
88static bool do_destroy_container(struct lxc_conf *conf);
89static int lxc_rmdir_onedev_wrapper(void *data);
90static void lxc_destroy_container_on_signal(struct lxc_handler *handler,
91 const char *name);
92
93static void print_top_failing_dir(const char *path)
94{
95 size_t len = strlen(path);
96 char *copy = alloca(len+1), *p, *e, saved;
97 strcpy(copy, path);
98
99 p = copy;
100 e = copy + len;
101 while (p < e) {
102 while (p < e && *p == '/') p++;
103 while (p < e && *p != '/') p++;
104 saved = *p;
105 *p = '\0';
106 if (access(copy, X_OK)) {
107 SYSERROR("could not access %s. Please grant it 'x' " \
108 "access, or add an ACL for the container root.",
109 copy);
110 return;
111 }
112 *p = saved;
113 }
114}
115
116static void close_ns(int ns_fd[LXC_NS_MAX]) {
117 int i;
118
119 for (i = 0; i < LXC_NS_MAX; i++) {
120 if (ns_fd[i] > -1) {
121 close(ns_fd[i]);
122 ns_fd[i] = -1;
123 }
124 }
125}
126
127/*
128 * preserve_ns: open /proc/@pid/ns/@ns for each namespace specified
129 * in clone_flags.
130 * Return true on success, false on failure. On failure, leave an error
131 * message in *errmsg, which caller must free.
132 */
133static
134bool preserve_ns(int ns_fd[LXC_NS_MAX], int clone_flags, pid_t pid, char **errmsg) {
135 int i, ret;
136 char path[MAXPATHLEN];
137
138 for (i = 0; i < LXC_NS_MAX; i++)
139 ns_fd[i] = -1;
140
141 snprintf(path, MAXPATHLEN, "/proc/%d/ns", pid);
142 if (access(path, X_OK)) {
143 if (asprintf(errmsg, "Kernel does not support setns.") == -1)
144 *errmsg = NULL;
145 return false;
146 }
147
148 for (i = 0; i < LXC_NS_MAX; i++) {
149 if ((clone_flags & ns_info[i].clone_flag) == 0)
150 continue;
151 snprintf(path, MAXPATHLEN, "/proc/%d/ns/%s", pid,
152 ns_info[i].proc_name);
153 ns_fd[i] = open(path, O_RDONLY | O_CLOEXEC);
154 if (ns_fd[i] < 0)
155 goto error;
156 }
157
158 return true;
159
160error:
161 if (errno == ENOENT) {
162 ret = asprintf(errmsg, "Kernel does not support setns for %s",
163 ns_info[i].proc_name);
164 } else {
165 ret = asprintf(errmsg, "Failed to open %s: %s",
166 path, strerror(errno));
167 }
168 if (ret == -1)
169 *errmsg = NULL;
170 close_ns(ns_fd);
171 return false;
172}
173
174static int attach_ns(const int ns_fd[LXC_NS_MAX]) {
175 int i;
176
177 for (i = 0; i < LXC_NS_MAX; i++) {
178 if (ns_fd[i] < 0)
179 continue;
180
181 if (setns(ns_fd[i], 0) != 0)
182 goto error;
183 }
184 return 0;
185
186error:
187 SYSERROR("failed to set namespace '%s'", ns_info[i].proc_name);
188 return -1;
189}
190
191static int match_fd(int fd)
192{
193 return (fd == 0 || fd == 1 || fd == 2);
194}
195
196/*
197 * Check for any fds we need to close
198 * * if fd_to_ignore != -1, then if we find that fd open we will ignore it.
199 * * By default we warn about open fds we find.
200 * * If closeall is true, we will close open fds.
201 * * If lxc-start was passed "-C", then conf->close_all_fds will be true,
202 * in which case we also close all open fds.
203 * * A daemonized container will always pass closeall=true.
204 */
205int lxc_check_inherited(struct lxc_conf *conf, bool closeall, int fd_to_ignore)
206{
207 struct dirent dirent, *direntp;
208 int fd, fddir;
209 DIR *dir;
210
211 if (conf && conf->close_all_fds)
212 closeall = true;
213
214restart:
215 dir = opendir("/proc/self/fd");
216 if (!dir) {
217 WARN("failed to open directory: %m");
218 return -1;
219 }
220
221 fddir = dirfd(dir);
222
223 while (!readdir_r(dir, &dirent, &direntp)) {
224 if (!direntp)
225 break;
226
227 if (!strcmp(direntp->d_name, "."))
228 continue;
229
230 if (!strcmp(direntp->d_name, ".."))
231 continue;
232
233 fd = atoi(direntp->d_name);
234
235 if (fd == fddir || fd == lxc_log_fd || fd == fd_to_ignore)
236 continue;
237
238 if (current_config && fd == current_config->logfd)
239 continue;
240
241 if (match_fd(fd))
242 continue;
243
244 if (closeall) {
245 close(fd);
246 closedir(dir);
247 INFO("closed inherited fd %d", fd);
248 goto restart;
249 }
250 WARN("inherited fd %d", fd);
251 }
252
253 closedir(dir); /* cannot fail */
254 return 0;
255}
256
257static int setup_signal_fd(sigset_t *oldmask)
258{
259 sigset_t mask;
260 int fd;
261
262 /* Block everything except serious error signals */
263 if (sigfillset(&mask) ||
264 sigdelset(&mask, SIGILL) ||
265 sigdelset(&mask, SIGSEGV) ||
266 sigdelset(&mask, SIGBUS) ||
267 sigdelset(&mask, SIGWINCH) ||
268 sigprocmask(SIG_BLOCK, &mask, oldmask)) {
269 SYSERROR("failed to set signal mask");
270 return -1;
271 }
272
273 fd = signalfd(-1, &mask, 0);
274 if (fd < 0) {
275 SYSERROR("failed to create the signal fd");
276 return -1;
277 }
278
279 if (fcntl(fd, F_SETFD, FD_CLOEXEC)) {
280 SYSERROR("failed to set sigfd to close-on-exec");
281 close(fd);
282 return -1;
283 }
284
285 DEBUG("sigchild handler set");
286
287 return fd;
288}
289
290static int signal_handler(int fd, uint32_t events, void *data,
291 struct lxc_epoll_descr *descr)
292{
293 struct signalfd_siginfo siginfo;
294 siginfo_t info;
295 int ret;
296 pid_t *pid = data;
297 bool init_died = false;
298
299 ret = read(fd, &siginfo, sizeof(siginfo));
300 if (ret < 0) {
301 ERROR("failed to read signal info");
302 return -1;
303 }
304
305 if (ret != sizeof(siginfo)) {
306 ERROR("unexpected siginfo size");
307 return -1;
308 }
309
310 // check whether init is running
311 info.si_pid = 0;
312 ret = waitid(P_PID, *pid, &info, WEXITED | WNOWAIT | WNOHANG);
313 if (ret == 0 && info.si_pid == *pid) {
314 init_died = true;
315 }
316
317 if (siginfo.ssi_signo != SIGCHLD) {
318 kill(*pid, siginfo.ssi_signo);
319 INFO("forwarded signal %d to pid %d", siginfo.ssi_signo, *pid);
320 return init_died ? 1 : 0;
321 }
322
323 if (siginfo.ssi_code == CLD_STOPPED ||
324 siginfo.ssi_code == CLD_CONTINUED) {
325 INFO("container init process was stopped/continued");
326 return init_died ? 1 : 0;
327 }
328
329 /* more robustness, protect ourself from a SIGCHLD sent
330 * by a process different from the container init
331 */
332 if (siginfo.ssi_pid != *pid) {
333 WARN("invalid pid for SIGCHLD");
334 return init_died ? 1 : 0;
335 }
336
337 DEBUG("container init process exited");
338 return 1;
339}
340
341int lxc_set_state(const char *name, struct lxc_handler *handler, lxc_state_t state)
342{
343 handler->state = state;
344 lxc_monitor_send_state(name, state, handler->lxcpath);
345 return 0;
346}
347
348int lxc_poll(const char *name, struct lxc_handler *handler)
349{
350 int sigfd = handler->sigfd;
351 int pid = handler->pid;
352 struct lxc_epoll_descr descr;
353
354 if (lxc_mainloop_open(&descr)) {
355 ERROR("failed to create mainloop");
356 goto out_sigfd;
357 }
358
359 if (lxc_mainloop_add_handler(&descr, sigfd, signal_handler, &pid)) {
360 ERROR("failed to add handler for the signal");
361 goto out_mainloop_open;
362 }
363
364 if (lxc_console_mainloop_add(&descr, handler)) {
365 ERROR("failed to add console handler to mainloop");
366 goto out_mainloop_open;
367 }
368
369 if (lxc_cmd_mainloop_add(name, &descr, handler)) {
370 ERROR("failed to add command handler to mainloop");
371 goto out_mainloop_open;
372 }
373
374 if (handler->conf->need_utmp_watch) {
375 #if HAVE_SYS_CAPABILITY_H
376 if (lxc_utmp_mainloop_add(&descr, handler)) {
377 ERROR("failed to add utmp handler to mainloop");
378 goto out_mainloop_open;
379 }
380 #else
381 DEBUG("not starting utmp handler as cap_sys_boot cannot be dropped without capabilities support");
382 #endif
383 }
384
385 return lxc_mainloop(&descr, -1);
386
387out_mainloop_open:
388 lxc_mainloop_close(&descr);
389out_sigfd:
390 close(sigfd);
391 return -1;
392}
393
394struct lxc_handler *lxc_init(const char *name, struct lxc_conf *conf, const char *lxcpath)
395{
396 int i;
397 struct lxc_handler *handler;
398
399 handler = malloc(sizeof(*handler));
400 if (!handler)
401 return NULL;
402
403 memset(handler, 0, sizeof(*handler));
404
405 handler->ttysock[0] = handler->ttysock[1] = -1;
406 handler->conf = conf;
407 handler->lxcpath = lxcpath;
408 handler->pinfd = -1;
409
410 for (i = 0; i < LXC_NS_MAX; i++)
411 handler->nsfd[i] = -1;
412
413 lsm_init();
414
415 handler->name = strdup(name);
416 if (!handler->name) {
417 ERROR("failed to allocate memory");
418 goto out_free;
419 }
420
421 if (lxc_cmd_init(name, handler, lxcpath))
422 goto out_free_name;
423
424 if (lxc_read_seccomp_config(conf) != 0) {
425 ERROR("failed loading seccomp policy");
426 goto out_close_maincmd_fd;
427 }
428
429 /* Begin by setting the state to STARTING */
430 if (lxc_set_state(name, handler, STARTING)) {
431 ERROR("failed to set state '%s'", lxc_state2str(STARTING));
432 goto out_close_maincmd_fd;
433 }
434
435 /* Start of environment variable setup for hooks */
436 if (name && setenv("LXC_NAME", name, 1)) {
437 SYSERROR("failed to set environment variable for container name");
438 }
439 if (conf->rcfile && setenv("LXC_CONFIG_FILE", conf->rcfile, 1)) {
440 SYSERROR("failed to set environment variable for config path");
441 }
442 if (conf->rootfs.mount && setenv("LXC_ROOTFS_MOUNT", conf->rootfs.mount, 1)) {
443 SYSERROR("failed to set environment variable for rootfs mount");
444 }
445 if (conf->rootfs.path && setenv("LXC_ROOTFS_PATH", conf->rootfs.path, 1)) {
446 SYSERROR("failed to set environment variable for rootfs mount");
447 }
448 if (conf->console.path && setenv("LXC_CONSOLE", conf->console.path, 1)) {
449 SYSERROR("failed to set environment variable for console path");
450 }
451 if (conf->console.log_path && setenv("LXC_CONSOLE_LOGPATH", conf->console.log_path, 1)) {
452 SYSERROR("failed to set environment variable for console log");
453 }
454 if (setenv("LXC_CGNS_AWARE", "1", 1)) {
455 SYSERROR("failed to set LXC_CGNS_AWARE environment variable");
456 }
457 /* End of environment variable setup for hooks */
458
459 if (run_lxc_hooks(name, "pre-start", conf, handler->lxcpath, NULL)) {
460 ERROR("failed to run pre-start hooks for container '%s'.", name);
461 goto out_aborting;
462 }
463
464 /* the signal fd has to be created before forking otherwise
465 * if the child process exits before we setup the signal fd,
466 * the event will be lost and the command will be stuck */
467 handler->sigfd = setup_signal_fd(&handler->oldmask);
468 if (handler->sigfd < 0) {
469 ERROR("failed to set sigchild fd handler");
470 goto out_delete_tty;
471 }
472
473 /* do this after setting up signals since it might unblock SIGWINCH */
474 if (lxc_console_create(conf)) {
475 ERROR("failed to create console");
476 goto out_restore_sigmask;
477 }
478
479 if (ttys_shift_ids(conf) < 0) {
480 ERROR("Failed to shift tty into container");
481 goto out_restore_sigmask;
482 }
483
484 INFO("'%s' is initialized", name);
485 return handler;
486
487out_restore_sigmask:
488 sigprocmask(SIG_SETMASK, &handler->oldmask, NULL);
489out_delete_tty:
490 lxc_delete_tty(&conf->tty_info);
491out_aborting:
492 lxc_set_state(name, handler, ABORTING);
493out_close_maincmd_fd:
494 close(conf->maincmd_fd);
495 conf->maincmd_fd = -1;
496out_free_name:
497 free(handler->name);
498 handler->name = NULL;
499out_free:
500 free(handler);
501 return NULL;
502}
503
504void lxc_fini(const char *name, struct lxc_handler *handler)
505{
506 int i, rc;
507 pid_t self = getpid();
508 char *namespaces[LXC_NS_MAX+1];
509 size_t namespace_count = 0;
510
511 /* The STOPPING state is there for future cleanup code
512 * which can take awhile
513 */
514 lxc_set_state(name, handler, STOPPING);
515
516 for (i = 0; i < LXC_NS_MAX; i++) {
517 if (handler->nsfd[i] != -1) {
518 rc = asprintf(&namespaces[namespace_count], "%s:/proc/%d/fd/%d",
519 ns_info[i].proc_name, self, handler->nsfd[i]);
520 if (rc == -1) {
521 SYSERROR("failed to allocate memory");
522 break;
523 }
524 ++namespace_count;
525 }
526 }
527 namespaces[namespace_count] = NULL;
528
529 if (handler->conf->reboot && setenv("LXC_TARGET", "reboot", 1)) {
530 SYSERROR("failed to set environment variable for stop target");
531 }
532 if (!handler->conf->reboot && setenv("LXC_TARGET", "stop", 1)) {
533 SYSERROR("failed to set environment variable for stop target");
534 }
535
536 if (run_lxc_hooks(name, "stop", handler->conf, handler->lxcpath, namespaces))
537 ERROR("failed to run stop hooks for container '%s'.", name);
538
539 while (namespace_count--)
540 free(namespaces[namespace_count]);
541 for (i = 0; i < LXC_NS_MAX; i++) {
542 if (handler->nsfd[i] != -1) {
543 close(handler->nsfd[i]);
544 handler->nsfd[i] = -1;
545 }
546 }
547 lxc_set_state(name, handler, STOPPED);
548
549 if (run_lxc_hooks(name, "post-stop", handler->conf, handler->lxcpath, NULL))
550 ERROR("failed to run post-stop hooks for container '%s'.", name);
551
552 /* reset mask set by setup_signal_fd */
553 if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL))
554 WARN("failed to restore sigprocmask");
555
556 lxc_console_delete(&handler->conf->console);
557 lxc_delete_tty(&handler->conf->tty_info);
558 close(handler->conf->maincmd_fd);
559 handler->conf->maincmd_fd = -1;
560 free(handler->name);
561 if (handler->ttysock[0] != -1) {
562 close(handler->ttysock[0]);
563 close(handler->ttysock[1]);
564 }
565 if (handler->conf->ephemeral == 1 && handler->conf->reboot != 1) {
566 lxc_destroy_container_on_signal(handler, name);
567 }
568 cgroup_destroy(handler);
569 free(handler);
570}
571
572void lxc_abort(const char *name, struct lxc_handler *handler)
573{
574 int ret, status;
575
576 lxc_set_state(name, handler, ABORTING);
577 if (handler->pid > 0)
578 kill(handler->pid, SIGKILL);
579 while ((ret = waitpid(-1, &status, 0)) > 0) ;
580}
581
582#include <sys/reboot.h>
583#include <linux/reboot.h>
584
585/*
586 * reboot(LINUX_REBOOT_CMD_CAD_ON) will return -EINVAL
587 * in a child pid namespace if container reboot support exists.
588 * Otherwise, it will either succeed or return -EPERM.
589 */
590static int container_reboot_supported(void *arg)
591{
592 int *cmd = arg;
593 int ret;
594
595 ret = reboot(*cmd);
596 if (ret == -1 && errno == EINVAL)
597 return 1;
598 return 0;
599}
600
601static int must_drop_cap_sys_boot(struct lxc_conf *conf)
602{
603 FILE *f;
604 int ret, cmd, v, flags;
605 long stack_size = 4096;
606 void *stack = alloca(stack_size);
607 int status;
608 pid_t pid;
609
610 f = fopen("/proc/sys/kernel/ctrl-alt-del", "r");
611 if (!f) {
612 DEBUG("failed to open /proc/sys/kernel/ctrl-alt-del");
613 return 1;
614 }
615
616 ret = fscanf(f, "%d", &v);
617 fclose(f);
618 if (ret != 1) {
619 DEBUG("Failed to read /proc/sys/kernel/ctrl-alt-del");
620 return 1;
621 }
622 cmd = v ? LINUX_REBOOT_CMD_CAD_ON : LINUX_REBOOT_CMD_CAD_OFF;
623
624 flags = CLONE_NEWPID | SIGCHLD;
625 if (!lxc_list_empty(&conf->id_map))
626 flags |= CLONE_NEWUSER;
627
628#ifdef __ia64__
629 pid = __clone2(container_reboot_supported, stack, stack_size, flags, &cmd);
630#else
631 stack += stack_size;
632 pid = clone(container_reboot_supported, stack, flags, &cmd);
633#endif
634 if (pid < 0) {
635 if (flags & CLONE_NEWUSER)
636 ERROR("failed to clone (%#x): %s (includes CLONE_NEWUSER)", flags, strerror(errno));
637 else
638 ERROR("failed to clone (%#x): %s", flags, strerror(errno));
639 return -1;
640 }
641 if (wait(&status) < 0) {
642 SYSERROR("unexpected wait error: %m");
643 return -1;
644 }
645
646 if (WEXITSTATUS(status) != 1)
647 return 1;
648
649 return 0;
650}
651
652/*
653 * netpipe is used in the unprivileged case to transfer the ifindexes
654 * from parent to child
655 */
656static int netpipe = -1;
657
658static inline int count_veths(struct lxc_list *network)
659{
660 struct lxc_list *iterator;
661 struct lxc_netdev *netdev;
662 int count = 0;
663
664 lxc_list_for_each(iterator, network) {
665 netdev = iterator->elem;
666 if (netdev->type != LXC_NET_VETH)
667 continue;
668 count++;
669 }
670 return count;
671}
672
673static int read_unpriv_netifindex(struct lxc_list *network)
674{
675 struct lxc_list *iterator;
676 struct lxc_netdev *netdev;
677
678 if (netpipe == -1)
679 return 0;
680 lxc_list_for_each(iterator, network) {
681 netdev = iterator->elem;
682 if (netdev->type != LXC_NET_VETH)
683 continue;
684 if (!(netdev->name = malloc(IFNAMSIZ))) {
685 ERROR("Out of memory");
686 close(netpipe);
687 return -1;
688 }
689 if (read(netpipe, netdev->name, IFNAMSIZ) != IFNAMSIZ) {
690 close(netpipe);
691 return -1;
692 }
693 }
694 close(netpipe);
695 return 0;
696}
697
698static int do_start(void *data)
699{
700 struct lxc_list *iterator;
701 struct lxc_handler *handler = data;
702
703 if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL)) {
704 SYSERROR("failed to set sigprocmask");
705 return -1;
706 }
707
708 /* This prctl must be before the synchro, so if the parent
709 * dies before we set the parent death signal, we will detect
710 * its death with the synchro right after, otherwise we have
711 * a window where the parent can exit before we set the pdeath
712 * signal leading to a unsupervized container.
713 */
714 if (prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0)) {
715 SYSERROR("failed to set pdeath signal");
716 return -1;
717 }
718
719 lxc_sync_fini_parent(handler);
720
721 /* don't leak the pinfd to the container */
722 if (handler->pinfd >= 0) {
723 close(handler->pinfd);
724 }
725
726 /* Tell the parent task it can begin to configure the
727 * container and wait for it to finish
728 */
729 if (lxc_sync_barrier_parent(handler, LXC_SYNC_CONFIGURE))
730 return -1;
731
732 if (read_unpriv_netifindex(&handler->conf->network) < 0)
733 goto out_warn_father;
734
735 /*
736 * if we are in a new user namespace, become root there to have
737 * privilege over our namespace. When using lxc-execute we default to root,
738 * but this can be overriden using the lxc.init_uid and lxc.init_gid
739 * configuration options.
740 */
741 if (!lxc_list_empty(&handler->conf->id_map)) {
742 gid_t new_gid = 0;
743 if (handler->conf->is_execute && handler->conf->init_gid)
744 new_gid = handler->conf->init_gid;
745
746 uid_t new_uid = 0;
747 if (handler->conf->is_execute && handler->conf->init_uid)
748 new_uid = handler->conf->init_uid;
749
750 NOTICE("switching to gid/uid %d/%d in new user namespace", new_gid, new_uid);
751 if (setgid(new_gid)) {
752 SYSERROR("setgid");
753 goto out_warn_father;
754 }
755 if (setuid(new_uid)) {
756 SYSERROR("setuid");
757 goto out_warn_father;
758 }
759 if (setgroups(0, NULL)) {
760 SYSERROR("setgroups");
761 goto out_warn_father;
762 }
763 }
764
765 if (access(handler->lxcpath, X_OK)) {
766 print_top_failing_dir(handler->lxcpath);
767 goto out_warn_father;
768 }
769
770 #if HAVE_SYS_CAPABILITY_H
771 if (handler->conf->need_utmp_watch) {
772 if (prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT, 0, 0, 0)) {
773 SYSERROR("failed to remove CAP_SYS_BOOT capability");
774 goto out_warn_father;
775 }
776 DEBUG("Dropped cap_sys_boot");
777 }
778 #endif
779
780 /* Setup the container, ip, names, utsname, ... */
781 if (lxc_setup(handler)) {
782 ERROR("failed to setup the container");
783 goto out_warn_father;
784 }
785
786 /* ask father to setup cgroups and wait for him to finish */
787 if (lxc_sync_barrier_parent(handler, LXC_SYNC_CGROUP))
788 return -1;
789
790 /* Set the label to change to when we exec(2) the container's init */
791 if (lsm_process_label_set(NULL, handler->conf, 1, 1) < 0)
792 goto out_warn_father;
793
794 /* Some init's such as busybox will set sane tty settings on stdin,
795 * stdout, stderr which it thinks is the console. We already set them
796 * the way we wanted on the real terminal, and we want init to do its
797 * setup on its console ie. the pty allocated in lxc_console_create()
798 * so make sure that that pty is stdin,stdout,stderr.
799 */
800 if (lxc_console_set_stdfds(handler) < 0)
801 goto out_warn_father;
802
803 /* If we mounted a temporary proc, then unmount it now */
804 tmp_proc_unmount(handler->conf);
805
806 if (lxc_seccomp_load(handler->conf) != 0)
807 goto out_warn_father;
808
809 if (run_lxc_hooks(handler->name, "start", handler->conf, handler->lxcpath, NULL)) {
810 ERROR("failed to run start hooks for container '%s'.", handler->name);
811 goto out_warn_father;
812 }
813
814 /* The clearenv() and putenv() calls have been moved here
815 * to allow us to use environment variables passed to the various
816 * hooks, such as the start hook above. Not all of the
817 * variables like CONFIG_PATH or ROOTFS are valid in this
818 * context but others are. */
819 if (clearenv()) {
820 SYSERROR("failed to clear environment");
821 /* don't error out though */
822 }
823
824 lxc_list_for_each(iterator, &handler->conf->environment) {
825 if (putenv((char *)iterator->elem)) {
826 SYSERROR("failed to set environment variable '%s'", (char *)iterator->elem);
827 goto out_warn_father;
828 }
829 }
830
831 if (putenv("container=lxc")) {
832 SYSERROR("failed to set environment variable 'container=lxc'");
833 goto out_warn_father;
834 }
835
836 if (handler->conf->pty_names) {
837 if (putenv(handler->conf->pty_names)) {
838 SYSERROR("failed to set environment variable for container ptys");
839 goto out_warn_father;
840 }
841 }
842
843 close(handler->sigfd);
844
845 if (handler->backgrounded && null_stdfds() < 0)
846 goto out_warn_father;
847
848 if (cgns_supported() && unshare(CLONE_NEWCGROUP) != 0) {
849 SYSERROR("Failed to unshare cgroup namespace");
850 goto out_warn_father;
851 }
852
853 /* after this call, we are in error because this
854 * ops should not return as it execs */
855 handler->ops->start(handler, handler->data);
856
857out_warn_father:
858 /* we want the parent to know something went wrong, so any
859 * value other than what it expects is ok. */
860 lxc_sync_wake_parent(handler, LXC_SYNC_POST_CONFIGURE);
861 return -1;
862}
863
864static int save_phys_nics(struct lxc_conf *conf)
865{
866 struct lxc_list *iterator;
867 int am_root = (getuid() == 0);
868
869 if (!am_root)
870 return 0;
871
872 lxc_list_for_each(iterator, &conf->network) {
873 struct lxc_netdev *netdev = iterator->elem;
874
875 if (netdev->type != LXC_NET_PHYS)
876 continue;
877 conf->saved_nics = realloc(conf->saved_nics,
878 (conf->num_savednics+1)*sizeof(struct saved_nic));
879 if (!conf->saved_nics) {
880 SYSERROR("failed to allocate memory");
881 return -1;
882 }
883 conf->saved_nics[conf->num_savednics].ifindex = netdev->ifindex;
884 conf->saved_nics[conf->num_savednics].orig_name = strdup(netdev->link);
885 if (!conf->saved_nics[conf->num_savednics].orig_name) {
886 SYSERROR("failed to allocate memory");
887 return -1;
888 }
889 INFO("stored saved_nic #%d idx %d name %s", conf->num_savednics,
890 conf->saved_nics[conf->num_savednics].ifindex,
891 conf->saved_nics[conf->num_savednics].orig_name);
892 conf->num_savednics++;
893 }
894
895 return 0;
896}
897
898static int recv_fd(int sock, int *fd)
899{
900 if (lxc_abstract_unix_recv_fd(sock, fd, NULL, 0) < 0) {
901 SYSERROR("Error receiving tty fd from child");
902 return -1;
903 }
904 if (*fd == -1)
905 return -1;
906 return 0;
907}
908
909static int recv_ttys_from_child(struct lxc_handler *handler)
910{
911 struct lxc_conf *conf = handler->conf;
912 int i, sock = handler->ttysock[1];
913 struct lxc_tty_info *tty_info = &conf->tty_info;
914
915 if (!conf->tty)
916 return 0;
917
918 tty_info->pty_info = malloc(sizeof(*tty_info->pty_info)*conf->tty);
919 if (!tty_info->pty_info) {
920 SYSERROR("failed to allocate pty_info");
921 return -1;
922 }
923
924 for (i = 0; i < conf->tty; i++) {
925 struct lxc_pty_info *pty_info = &tty_info->pty_info[i];
926 pty_info->busy = 0;
927 if (recv_fd(sock, &pty_info->slave) < 0 ||
928 recv_fd(sock, &pty_info->master) < 0) {
929 ERROR("Error receiving tty info from child");
930 return -1;
931 }
932 }
933 tty_info->nbtty = conf->tty;
934
935 return 0;
936}
937
938void resolve_clone_flags(struct lxc_handler *handler)
939{
940 handler->clone_flags = CLONE_NEWPID | CLONE_NEWNS;
941
942 if (!lxc_list_empty(&handler->conf->id_map)) {
943 INFO("Cloning a new user namespace");
944 handler->clone_flags |= CLONE_NEWUSER;
945 }
946
947 if (handler->conf->inherit_ns_fd[LXC_NS_NET] == -1) {
948 if (!lxc_requests_empty_network(handler))
949 handler->clone_flags |= CLONE_NEWNET;
950 } else {
951 INFO("Inheriting a net namespace");
952 }
953
954 if (handler->conf->inherit_ns_fd[LXC_NS_IPC] == -1) {
955 handler->clone_flags |= CLONE_NEWIPC;
956 } else {
957 INFO("Inheriting an IPC namespace");
958 }
959
960 if (handler->conf->inherit_ns_fd[LXC_NS_UTS] == -1) {
961 handler->clone_flags |= CLONE_NEWUTS;
962 } else {
963 INFO("Inheriting a UTS namespace");
964 }
965}
966
967static int lxc_spawn(struct lxc_handler *handler)
968{
969 int failed_before_rename = 0;
970 const char *name = handler->name;
971 char *errmsg = NULL;
972 bool cgroups_connected = false;
973 int saved_ns_fd[LXC_NS_MAX];
974 int preserve_mask = 0, i;
975 int netpipepair[2], nveths;
976
977 netpipe = -1;
978
979 for (i = 0; i < LXC_NS_MAX; i++)
980 if (handler->conf->inherit_ns_fd[i] != -1)
981 preserve_mask |= ns_info[i].clone_flag;
982
983 if (lxc_sync_init(handler))
984 return -1;
985
986 if (socketpair(AF_UNIX, SOCK_DGRAM, 0, handler->ttysock) < 0) {
987 lxc_sync_fini(handler);
988 return -1;
989 }
990
991 resolve_clone_flags(handler);
992
993 if (handler->clone_flags & CLONE_NEWNET) {
994 if (!lxc_list_empty(&handler->conf->network)) {
995
996 /* Find gateway addresses from the link device, which is
997 * no longer accessible inside the container. Do this
998 * before creating network interfaces, since goto
999 * out_delete_net does not work before lxc_clone. */
1000 if (lxc_find_gateway_addresses(handler)) {
1001 ERROR("failed to find gateway addresses");
1002 lxc_sync_fini(handler);
1003 return -1;
1004 }
1005
1006 /* that should be done before the clone because we will
1007 * fill the netdev index and use them in the child
1008 */
1009 if (lxc_create_network(handler)) {
1010 ERROR("failed to create the network");
1011 lxc_sync_fini(handler);
1012 return -1;
1013 }
1014 }
1015
1016 if (save_phys_nics(handler->conf)) {
1017 ERROR("failed to save physical nic info");
1018 goto out_abort;
1019 }
1020 }
1021
1022 if (!cgroup_init(handler)) {
1023 ERROR("failed initializing cgroup support");
1024 goto out_delete_net;
1025 }
1026
1027 cgroups_connected = true;
1028
1029 if (!cgroup_create(handler)) {
1030 ERROR("failed creating cgroups");
1031 goto out_delete_net;
1032 }
1033
1034 /*
1035 * if the rootfs is not a blockdev, prevent the container from
1036 * marking it readonly.
1037 *
1038 * if the container is unprivileged then skip rootfs pinning
1039 */
1040 if (lxc_list_empty(&handler->conf->id_map)) {
1041 handler->pinfd = pin_rootfs(handler->conf->rootfs.path);
1042 if (handler->pinfd == -1)
1043 INFO("failed to pin the container's rootfs");
1044 }
1045
1046 if (!preserve_ns(saved_ns_fd, preserve_mask, getpid(), &errmsg)) {
1047 SYSERROR("Failed to preserve requested namespaces: %s",
1048 errmsg ? errmsg : "(Out of memory)");
1049 free(errmsg);
1050 goto out_delete_net;
1051 }
1052 if (attach_ns(handler->conf->inherit_ns_fd) < 0)
1053 goto out_delete_net;
1054
1055 if (am_unpriv() && (nveths = count_veths(&handler->conf->network))) {
1056 if (pipe(netpipepair) < 0) {
1057 SYSERROR("Error creating pipe");
1058 goto out_delete_net;
1059 }
1060 /* store netpipe in the global var for do_start's use */
1061 netpipe = netpipepair[0];
1062 }
1063
1064 /* Create a process in a new set of namespaces */
1065 handler->pid = lxc_clone(do_start, handler, handler->clone_flags);
1066 if (handler->pid < 0) {
1067 SYSERROR("failed to fork into a new namespace");
1068 goto out_delete_net;
1069 }
1070
1071 if (!preserve_ns(handler->nsfd, handler->clone_flags | preserve_mask, handler->pid, &errmsg)) {
1072 INFO("Failed to store namespace references for stop hook: %s",
1073 errmsg ? errmsg : "(Out of memory)");
1074 free(errmsg);
1075 }
1076
1077 if (attach_ns(saved_ns_fd))
1078 WARN("failed to restore saved namespaces");
1079
1080 lxc_sync_fini_child(handler);
1081
1082 if (lxc_sync_wait_child(handler, LXC_SYNC_CONFIGURE))
1083 failed_before_rename = 1;
1084
1085 if (!cgroup_create_legacy(handler)) {
1086 ERROR("failed to setup the legacy cgroups for %s", name);
1087 goto out_delete_net;
1088 }
1089 if (!cgroup_setup_limits(handler, false)) {
1090 ERROR("failed to setup the cgroup limits for '%s'", name);
1091 goto out_delete_net;
1092 }
1093
1094 if (!cgroup_enter(handler))
1095 goto out_delete_net;
1096
1097 if (!cgroup_chown(handler))
1098 goto out_delete_net;
1099
1100 if (failed_before_rename)
1101 goto out_delete_net;
1102
1103 /* Create the network configuration */
1104 if (handler->clone_flags & CLONE_NEWNET) {
1105 if (lxc_assign_network(&handler->conf->network, handler->pid)) {
1106 ERROR("failed to create the configured network");
1107 goto out_delete_net;
1108 }
1109 }
1110
1111 if (netpipe != -1) {
1112 struct lxc_list *iterator;
1113 struct lxc_netdev *netdev;
1114
1115 close(netpipe);
1116 lxc_list_for_each(iterator, &handler->conf->network) {
1117 netdev = iterator->elem;
1118 if (netdev->type != LXC_NET_VETH)
1119 continue;
1120 if (write(netpipepair[1], netdev->name, IFNAMSIZ) != IFNAMSIZ) {
1121 ERROR("Error writing veth name to container");
1122 goto out_delete_net;
1123 }
1124 }
1125 close(netpipepair[1]);
1126 }
1127
1128 /* map the container uids - the container became an invalid
1129 * userid the moment it was cloned with CLONE_NEWUSER - this
1130 * call doesn't change anything immediately, but allows the
1131 * container to setuid(0) (0 being mapped to something else on
1132 * the host) later to become a valid uid again */
1133 if (lxc_map_ids(&handler->conf->id_map, handler->pid)) {
1134 ERROR("failed to set up id mapping");
1135 goto out_delete_net;
1136 }
1137
1138 /* Tell the child to continue its initialization. we'll get
1139 * LXC_SYNC_CGROUP when it is ready for us to setup cgroups
1140 */
1141 if (lxc_sync_barrier_child(handler, LXC_SYNC_POST_CONFIGURE))
1142 goto out_delete_net;
1143
1144 if (!cgroup_setup_limits(handler, true)) {
1145 ERROR("failed to setup the devices cgroup for '%s'", name);
1146 goto out_delete_net;
1147 }
1148
1149 cgroup_disconnect();
1150 cgroups_connected = false;
1151
1152 /* read tty fds allocated by child */
1153 if (recv_ttys_from_child(handler) < 0) {
1154 ERROR("failed to receive tty info from child");
1155 goto out_delete_net;
1156 }
1157
1158 /* Tell the child to complete its initialization and wait for
1159 * it to exec or return an error. (the child will never
1160 * return LXC_SYNC_POST_CGROUP+1. It will either close the
1161 * sync pipe, causing lxc_sync_barrier_child to return
1162 * success, or return a different value, causing us to error
1163 * out).
1164 */
1165 if (lxc_sync_barrier_child(handler, LXC_SYNC_POST_CGROUP))
1166 return -1;
1167
1168 if (detect_shared_rootfs())
1169 umount2(handler->conf->rootfs.mount, MNT_DETACH);
1170
1171 if (handler->ops->post_start(handler, handler->data))
1172 goto out_abort;
1173
1174 if (lxc_set_state(name, handler, RUNNING)) {
1175 ERROR("failed to set state to %s",
1176 lxc_state2str(RUNNING));
1177 goto out_abort;
1178 }
1179
1180 lxc_sync_fini(handler);
1181
1182 return 0;
1183
1184out_delete_net:
1185 if (cgroups_connected)
1186 cgroup_disconnect();
1187 if (handler->clone_flags & CLONE_NEWNET)
1188 lxc_delete_network(handler);
1189out_abort:
1190 lxc_abort(name, handler);
1191 lxc_sync_fini(handler);
1192 if (handler->pinfd >= 0) {
1193 close(handler->pinfd);
1194 handler->pinfd = -1;
1195 }
1196
1197 return -1;
1198}
1199
1200int get_netns_fd(int pid)
1201{
1202 char path[MAXPATHLEN];
1203 int ret, fd;
1204
1205 ret = snprintf(path, MAXPATHLEN, "/proc/%d/ns/net", pid);
1206 if (ret < 0 || ret >= MAXPATHLEN) {
1207 WARN("Failed to pin netns file for pid %d", pid);
1208 return -1;
1209 }
1210
1211 fd = open(path, O_RDONLY);
1212 if (fd < 0) {
1213 WARN("Failed to pin netns file %s for pid %d: %s",
1214 path, pid, strerror(errno));
1215 return -1;
1216 }
1217 return fd;
1218}
1219
1220int __lxc_start(const char *name, struct lxc_conf *conf,
1221 struct lxc_operations* ops, void *data, const char *lxcpath,
1222 bool backgrounded)
1223{
1224 struct lxc_handler *handler;
1225 int err = -1;
1226 int status;
1227 int netnsfd = -1;
1228
1229 handler = lxc_init(name, conf, lxcpath);
1230 if (!handler) {
1231 ERROR("failed to initialize the container");
1232 return -1;
1233 }
1234 handler->ops = ops;
1235 handler->data = data;
1236 handler->backgrounded = backgrounded;
1237
1238 if (must_drop_cap_sys_boot(handler->conf)) {
1239 #if HAVE_SYS_CAPABILITY_H
1240 DEBUG("Dropping cap_sys_boot");
1241 #else
1242 DEBUG("Can't drop cap_sys_boot as capabilities aren't supported");
1243 #endif
1244 } else {
1245 DEBUG("Not dropping cap_sys_boot or watching utmp");
1246 handler->conf->need_utmp_watch = 0;
1247 }
1248
1249 if (!attach_block_device(handler->conf)) {
1250 ERROR("Failure attaching block device");
1251 goto out_fini_nonet;
1252 }
1253
1254 if (geteuid() == 0 && !lxc_list_empty(&conf->id_map)) {
1255 /* if the backing store is a device, mount it here and now */
1256 if (rootfs_is_blockdev(conf)) {
1257 if (unshare(CLONE_NEWNS) < 0) {
1258 ERROR("Error unsharing mounts");
1259 goto out_fini_nonet;
1260 }
1261 remount_all_slave();
1262 if (do_rootfs_setup(conf, name, lxcpath) < 0) {
1263 ERROR("Error setting up rootfs mount as root before spawn");
1264 goto out_fini_nonet;
1265 }
1266 INFO("Set up container rootfs as host root");
1267 }
1268 }
1269
1270 err = lxc_spawn(handler);
1271 if (err) {
1272 ERROR("failed to spawn '%s'", name);
1273 goto out_detach_blockdev;
1274 }
1275
1276 handler->conf->reboot = 0;
1277
1278 netnsfd = get_netns_fd(handler->pid);
1279
1280 err = lxc_poll(name, handler);
1281 if (err) {
1282 ERROR("mainloop exited with an error");
1283 if (netnsfd >= 0)
1284 close(netnsfd);
1285 goto out_abort;
1286 }
1287
1288 while (waitpid(handler->pid, &status, 0) < 0 && errno == EINTR)
1289 continue;
1290
1291 /*
1292 * If the child process exited but was not signaled,
1293 * it didn't call reboot. This should mean it was an
1294 * lxc-execute which simply exited. In any case, treat
1295 * it as a 'halt'
1296 */
1297 if (WIFSIGNALED(status)) {
1298 switch(WTERMSIG(status)) {
1299 case SIGINT: /* halt */
1300 DEBUG("Container halting");
1301 break;
1302 case SIGHUP: /* reboot */
1303 DEBUG("Container rebooting");
1304 handler->conf->reboot = 1;
1305 break;
1306 case SIGSYS: /* seccomp */
1307 DEBUG("Container violated its seccomp policy");
1308 break;
1309 default:
1310 DEBUG("unknown exit status for init: %d", WTERMSIG(status));
1311 break;
1312 }
1313 }
1314
1315 DEBUG("Pushing physical nics back to host namespace");
1316 lxc_rename_phys_nics_on_shutdown(netnsfd, handler->conf);
1317
1318 DEBUG("Tearing down virtual network devices used by container");
1319 lxc_delete_network(handler);
1320
1321 if (netnsfd >= 0)
1322 close(netnsfd);
1323
1324 if (handler->pinfd >= 0) {
1325 close(handler->pinfd);
1326 handler->pinfd = -1;
1327 }
1328
1329 lxc_monitor_send_exit_code(name, status, handler->lxcpath);
1330 err = lxc_error_set_and_log(handler->pid, status);
1331out_fini:
1332 lxc_delete_network(handler);
1333
1334out_detach_blockdev:
1335 detach_block_device(handler->conf);
1336
1337out_fini_nonet:
1338 lxc_fini(name, handler);
1339 return err;
1340
1341out_abort:
1342 lxc_abort(name, handler);
1343 goto out_fini;
1344}
1345
1346struct start_args {
1347 char *const *argv;
1348};
1349
1350static int start(struct lxc_handler *handler, void* data)
1351{
1352 struct start_args *arg = data;
1353
1354 NOTICE("exec'ing '%s'", arg->argv[0]);
1355
1356 execvp(arg->argv[0], arg->argv);
1357 SYSERROR("failed to exec %s", arg->argv[0]);
1358 return 0;
1359}
1360
1361static int post_start(struct lxc_handler *handler, void* data)
1362{
1363 struct start_args *arg = data;
1364
1365 NOTICE("'%s' started with pid '%d'", arg->argv[0], handler->pid);
1366 return 0;
1367}
1368
1369static struct lxc_operations start_ops = {
1370 .start = start,
1371 .post_start = post_start
1372};
1373
1374int lxc_start(const char *name, char *const argv[], struct lxc_conf *conf,
1375 const char *lxcpath, bool backgrounded)
1376{
1377 struct start_args start_arg = {
1378 .argv = argv,
1379 };
1380
1381 conf->need_utmp_watch = 1;
1382 return __lxc_start(name, conf, &start_ops, &start_arg, lxcpath, backgrounded);
1383}
1384
1385static void lxc_destroy_container_on_signal(struct lxc_handler *handler,
1386 const char *name)
1387{
1388 char destroy[MAXPATHLEN];
1389 bool bret = true;
1390 int ret = 0;
1391 struct lxc_container *c;
1392 if (handler->conf->rootfs.path && handler->conf->rootfs.mount) {
1393 bret = do_destroy_container(handler->conf);
1394 if (!bret) {
1395 ERROR("Error destroying rootfs for %s", name);
1396 return;
1397 }
1398 }
1399 INFO("Destroyed rootfs for %s", name);
1400
1401 ret = snprintf(destroy, MAXPATHLEN, "%s/%s", handler->lxcpath, name);
1402 if (ret < 0 || ret >= MAXPATHLEN) {
1403 ERROR("Error printing path for %s", name);
1404 ERROR("Error destroying directory for %s", name);
1405 return;
1406 }
1407
1408 c = lxc_container_new(name, handler->lxcpath);
1409 if (c) {
1410 if (container_disk_lock(c)) {
1411 INFO("Could not update lxc_snapshots file");
1412 lxc_container_put(c);
1413 } else {
1414 mod_all_rdeps(c, false);
1415 container_disk_unlock(c);
1416 lxc_container_put(c);
1417 }
1418 }
1419
1420 if (am_unpriv())
1421 ret = userns_exec_1(handler->conf, lxc_rmdir_onedev_wrapper, destroy);
1422 else
1423 ret = lxc_rmdir_onedev(destroy, NULL);
1424
1425 if (ret < 0) {
1426 ERROR("Error destroying directory for %s", name);
1427 return;
1428 }
1429 INFO("Destroyed directory for %s", name);
1430}
1431
1432static int lxc_rmdir_onedev_wrapper(void *data)
1433{
1434 char *arg = (char *) data;
1435 return lxc_rmdir_onedev(arg, NULL);
1436}
1437
1438static bool do_destroy_container(struct lxc_conf *conf) {
1439 if (am_unpriv()) {
1440 if (userns_exec_1(conf, bdev_destroy_wrapper, conf) < 0)
1441 return false;
1442 return true;
1443 }
1444 return bdev_destroy(conf);
1445}
1446