]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/start.c
Merge pull request #812 from brauner/2016-02-10/quiet_lxc_copy
[mirror_lxc.git] / src / lxc / start.c
CommitLineData
0ad19a3f 1/*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2008
5 *
6 * Authors:
9afe19d6 7 * Daniel Lezcano <daniel.lezcano at free.fr>
0ad19a3f 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
250b1eec 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0ad19a3f 22 */
23
f549edcc
GK
24#include "config.h"
25
0ad19a3f 26#include <stdio.h>
0ad19a3f 27#include <string.h>
28#include <stdlib.h>
29#include <dirent.h>
30#include <errno.h>
31#include <unistd.h>
32#include <signal.h>
b0a33c1e 33#include <fcntl.h>
c476bdce 34#include <grp.h>
37515ebd 35#include <poll.h>
0ad19a3f 36#include <sys/param.h>
37#include <sys/file.h>
f4d507d5 38#include <sys/mount.h>
b4f8660e 39#include <sys/stat.h>
0ad19a3f 40#include <sys/types.h>
8173e600 41#include <sys/socket.h>
0ad19a3f 42#include <sys/prctl.h>
ddceb1f9 43#include <sys/types.h>
0ad19a3f 44#include <sys/wait.h>
b0a33c1e 45#include <sys/un.h>
8173e600 46#include <sys/syscall.h>
ff218c25 47
495d2046
SG
48#if HAVE_SYS_CAPABILITY_H
49#include <sys/capability.h>
50#endif
51
656994bb
MH
52#if !HAVE_DECL_PR_CAPBSET_DROP
53#define PR_CAPBSET_DROP 24
54#endif
55
63376d7d
DL
56#include "start.h"
57#include "conf.h"
58#include "log.h"
563f2f2c 59#include "cgroup.h"
e2bcd7db 60#include "error.h"
b0a33c1e 61#include "af_unix.h"
62#include "mainloop.h"
63376d7d 63#include "utils.h"
565c2d76 64#include "lxcutmp.h"
63376d7d 65#include "monitor.h"
96fa1ff0 66#include "commands.h"
63376d7d 67#include "console.h"
3c22086f 68#include "sync.h"
f549edcc 69#include "namespace.h"
0d0527a9 70#include "lxcseccomp.h"
8173e600 71#include "caps.h"
4ec31c52 72#include "bdev/bdev.h"
fe4de9a6 73#include "lsm/lsm.h"
f01f7975 74#include "lxclock.h"
36eb9bde
CLG
75
76lxc_log_define(lxc_start, lxc);
77
9f30a190
MM
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
f01f7975 87extern void mod_all_rdeps(struct lxc_container *c, bool inc);
28272964
CB
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
c8154066
SH
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++;
c8154066
SH
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
9f30a190
MM
116static void close_ns(int ns_fd[LXC_NS_MAX]) {
117 int i;
118
9f30a190
MM
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 }
9f30a190
MM
125}
126
62d05d9b
SH
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;
9f30a190
MM
136 char path[MAXPATHLEN];
137
9f30a190
MM
138 for (i = 0; i < LXC_NS_MAX; i++)
139 ns_fd[i] = -1;
140
035a38fc
WB
141 snprintf(path, MAXPATHLEN, "/proc/%d/ns", pid);
142 if (access(path, X_OK)) {
62d05d9b
SH
143 if (asprintf(errmsg, "Kernel does not support setns.") == -1)
144 *errmsg = NULL;
145 return false;
cd43d2d1
SH
146 }
147
9f30a190
MM
148 for (i = 0; i < LXC_NS_MAX; i++) {
149 if ((clone_flags & ns_info[i].clone_flag) == 0)
150 continue;
035a38fc
WB
151 snprintf(path, MAXPATHLEN, "/proc/%d/ns/%s", pid,
152 ns_info[i].proc_name);
9f30a190 153 ns_fd[i] = open(path, O_RDONLY | O_CLOEXEC);
9f30a190
MM
154 if (ns_fd[i] < 0)
155 goto error;
156 }
157
62d05d9b 158 return true;
9f30a190
MM
159
160error:
62d05d9b
SH
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;
9f30a190 170 close_ns(ns_fd);
62d05d9b 171 return false;
9f30a190
MM
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
80090207
CLG
191static int match_fd(int fd)
192{
193 return (fd == 0 || fd == 1 || fd == 2);
194}
195
d2cf4c37
SH
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)
80090207
CLG
206{
207 struct dirent dirent, *direntp;
208 int fd, fddir;
209 DIR *dir;
80090207 210
d2cf4c37
SH
211 if (conf && conf->close_all_fds)
212 closeall = true;
213
b119f362 214restart:
80090207
CLG
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)) {
80090207
CLG
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
f2faa8fa 235 if (fd == fddir || fd == lxc_log_fd || fd == fd_to_ignore)
80090207
CLG
236 continue;
237
858377e4
SH
238 if (current_config && fd == current_config->logfd)
239 continue;
240
80090207
CLG
241 if (match_fd(fd))
242 continue;
80090207 243
d2cf4c37 244 if (closeall) {
b119f362
SH
245 close(fd);
246 closedir(dir);
247 INFO("closed inherited fd %d", fd);
248 goto restart;
249 }
92c7f629 250 WARN("inherited fd %d", fd);
80090207
CLG
251 }
252
92c7f629
GK
253 closedir(dir); /* cannot fail */
254 return 0;
80090207
CLG
255}
256
83ee7875 257static int setup_signal_fd(sigset_t *oldmask)
b0a33c1e 258{
259 sigset_t mask;
260 int fd;
261
f3304a29
FW
262 /* Block everything except serious error signals */
263 if (sigfillset(&mask) ||
264 sigdelset(&mask, SIGILL) ||
265 sigdelset(&mask, SIGSEGV) ||
266 sigdelset(&mask, SIGBUS) ||
b5159817 267 sigdelset(&mask, SIGWINCH) ||
f3304a29
FW
268 sigprocmask(SIG_BLOCK, &mask, oldmask)) {
269 SYSERROR("failed to set signal mask");
b0a33c1e 270 return -1;
271 }
272
273 fd = signalfd(-1, &mask, 0);
274 if (fd < 0) {
36eb9bde 275 SYSERROR("failed to create the signal fd");
b0a33c1e 276 return -1;
277 }
278
279 if (fcntl(fd, F_SETFD, FD_CLOEXEC)) {
36eb9bde 280 SYSERROR("failed to set sigfd to close-on-exec");
b0a33c1e 281 close(fd);
282 return -1;
283 }
284
1ac470c0
DL
285 DEBUG("sigchild handler set");
286
b0a33c1e 287 return fd;
288}
289
84c92abd 290static int signal_handler(int fd, uint32_t events, void *data,
b0a33c1e 291 struct lxc_epoll_descr *descr)
292{
15cd25fd 293 struct signalfd_siginfo siginfo;
80507ee8 294 siginfo_t info;
15cd25fd 295 int ret;
82d89dce 296 pid_t *pid = data;
80507ee8 297 bool init_died = false;
15cd25fd
DL
298
299 ret = read(fd, &siginfo, sizeof(siginfo));
300 if (ret < 0) {
f3304a29 301 ERROR("failed to read signal info");
15cd25fd
DL
302 return -1;
303 }
304
305 if (ret != sizeof(siginfo)) {
306 ERROR("unexpected siginfo size");
307 return -1;
308 }
309
80507ee8
SH
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
f3304a29
FW
317 if (siginfo.ssi_signo != SIGCHLD) {
318 kill(*pid, siginfo.ssi_signo);
319 INFO("forwarded signal %d to pid %d", siginfo.ssi_signo, *pid);
80507ee8 320 return init_died ? 1 : 0;
f3304a29
FW
321 }
322
15cd25fd
DL
323 if (siginfo.ssi_code == CLD_STOPPED ||
324 siginfo.ssi_code == CLD_CONTINUED) {
325 INFO("container init process was stopped/continued");
80507ee8 326 return init_died ? 1 : 0;
15cd25fd 327 }
1ac470c0 328
82d89dce
DL
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");
80507ee8 334 return init_died ? 1 : 0;
82d89dce
DL
335 }
336
15cd25fd 337 DEBUG("container init process exited");
b0a33c1e 338 return 1;
339}
340
735f2c6e 341int lxc_set_state(const char *name, struct lxc_handler *handler, lxc_state_t state)
66aeffc7
DL
342{
343 handler->state = state;
9123e471 344 lxc_monitor_send_state(name, state, handler->lxcpath);
66aeffc7
DL
345 return 0;
346}
347
735f2c6e 348int lxc_poll(const char *name, struct lxc_handler *handler)
b0a33c1e 349{
ca5f7926
DL
350 int sigfd = handler->sigfd;
351 int pid = handler->pid;
b0a33c1e 352 struct lxc_epoll_descr descr;
353
a9e61274 354 if (lxc_mainloop_open(&descr)) {
36eb9bde 355 ERROR("failed to create mainloop");
50c8bf05 356 goto out_sigfd;
b0a33c1e 357 }
358
83ee7875 359 if (lxc_mainloop_add_handler(&descr, sigfd, signal_handler, &pid)) {
36eb9bde 360 ERROR("failed to add handler for the signal");
b0a33c1e 361 goto out_mainloop_open;
362 }
363
63376d7d
DL
364 if (lxc_console_mainloop_add(&descr, handler)) {
365 ERROR("failed to add console handler to mainloop");
366 goto out_mainloop_open;
367 }
368
ef6e34ee 369 if (lxc_cmd_mainloop_add(name, &descr, handler)) {
563f2f2c 370 ERROR("failed to add command handler to mainloop");
96fa1ff0 371 goto out_mainloop_open;
563f2f2c
DL
372 }
373
828695d9 374 if (handler->conf->need_utmp_watch) {
495d2046 375 #if HAVE_SYS_CAPABILITY_H
828695d9
SH
376 if (lxc_utmp_mainloop_add(&descr, handler)) {
377 ERROR("failed to add utmp handler to mainloop");
378 goto out_mainloop_open;
379 }
495d2046 380 #else
959aee9c 381 DEBUG("not starting utmp handler as cap_sys_boot cannot be dropped without capabilities support");
495d2046 382 #endif
563f2f2c 383 }
b0a33c1e 384
e51d4895 385 return lxc_mainloop(&descr, -1);
b0a33c1e 386
387out_mainloop_open:
388 lxc_mainloop_close(&descr);
b0a33c1e 389out_sigfd:
390 close(sigfd);
c3e13372 391 return -1;
b0a33c1e 392}
393
13f5be62 394struct lxc_handler *lxc_init(const char *name, struct lxc_conf *conf, const char *lxcpath)
59eb99ba 395{
b6b2b194 396 int i;
3a0f472d
DL
397 struct lxc_handler *handler;
398
399 handler = malloc(sizeof(*handler));
400 if (!handler)
401 return NULL;
59eb99ba
DL
402
403 memset(handler, 0, sizeof(*handler));
404
e8bd4e43 405 handler->ttysock[0] = handler->ttysock[1] = -1;
fae349da 406 handler->conf = conf;
9123e471 407 handler->lxcpath = lxcpath;
5c068da9 408 handler->pinfd = -1;
fae349da 409
b6b2b194
WB
410 for (i = 0; i < LXC_NS_MAX; i++)
411 handler->nsfd[i] = -1;
412
fe4de9a6
DE
413 lsm_init();
414
3bdf52d7
DL
415 handler->name = strdup(name);
416 if (!handler->name) {
417 ERROR("failed to allocate memory");
418 goto out_free;
419 }
420
ef6e34ee 421 if (lxc_cmd_init(name, handler, lxcpath))
d2e30e99
DE
422 goto out_free_name;
423
8f2c3a70
SH
424 if (lxc_read_seccomp_config(conf) != 0) {
425 ERROR("failed loading seccomp policy");
d2e30e99 426 goto out_close_maincmd_fd;
8f2c3a70
SH
427 }
428
051151de 429 /* Begin by setting the state to STARTING */
25c2aca5 430 if (lxc_set_state(name, handler, STARTING)) {
59eb99ba 431 ERROR("failed to set state '%s'", lxc_state2str(STARTING));
051151de 432 goto out_close_maincmd_fd;
0ad19a3f 433 }
434
f7bee6c6 435 /* Start of environment variable setup for hooks */
ab7efcf5 436 if (name && setenv("LXC_NAME", name, 1)) {
f7bee6c6
MW
437 SYSERROR("failed to set environment variable for container name");
438 }
ab7efcf5 439 if (conf->rcfile && setenv("LXC_CONFIG_FILE", conf->rcfile, 1)) {
f7bee6c6
MW
440 SYSERROR("failed to set environment variable for config path");
441 }
ab7efcf5 442 if (conf->rootfs.mount && setenv("LXC_ROOTFS_MOUNT", conf->rootfs.mount, 1)) {
f7bee6c6
MW
443 SYSERROR("failed to set environment variable for rootfs mount");
444 }
ab7efcf5 445 if (conf->rootfs.path && setenv("LXC_ROOTFS_PATH", conf->rootfs.path, 1)) {
f7bee6c6
MW
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 }
c4cafa08
SH
454 if (setenv("LXC_CGNS_AWARE", "1", 1)) {
455 SYSERROR("failed to set LXC_CGNS_AWARE environment variable");
456 }
f7bee6c6
MW
457 /* End of environment variable setup for hooks */
458
283678ed 459 if (run_lxc_hooks(name, "pre-start", conf, handler->lxcpath, NULL)) {
773fb9ca
SH
460 ERROR("failed to run pre-start hooks for container '%s'.", name);
461 goto out_aborting;
462 }
26ddeedd 463
b0a33c1e 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 */
83ee7875 467 handler->sigfd = setup_signal_fd(&handler->oldmask);
59eb99ba 468 if (handler->sigfd < 0) {
36eb9bde 469 ERROR("failed to set sigchild fd handler");
b5159817
DE
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;
b0a33c1e 477 }
478
c4d10a05
SH
479 if (ttys_shift_ids(conf) < 0) {
480 ERROR("Failed to shift tty into container");
481 goto out_restore_sigmask;
482 }
483
c3e13372 484 INFO("'%s' is initialized", name);
3a0f472d 485 return handler;
59eb99ba 486
b5159817
DE
487out_restore_sigmask:
488 sigprocmask(SIG_SETMASK, &handler->oldmask, NULL);
59eb99ba 489out_delete_tty:
fae349da 490 lxc_delete_tty(&conf->tty_info);
59eb99ba 491out_aborting:
25c2aca5 492 lxc_set_state(name, handler, ABORTING);
d2e30e99
DE
493out_close_maincmd_fd:
494 close(conf->maincmd_fd);
495 conf->maincmd_fd = -1;
3bdf52d7
DL
496out_free_name:
497 free(handler->name);
498 handler->name = NULL;
3a0f472d
DL
499out_free:
500 free(handler);
c3e13372 501 return NULL;
59eb99ba
DL
502}
503
3b72c4a0 504void lxc_fini(const char *name, struct lxc_handler *handler)
59eb99ba 505{
b3286b62
WB
506 int i, rc;
507 pid_t self = getpid();
508 char *namespaces[LXC_NS_MAX+1];
509 size_t namespace_count = 0;
b6b2b194 510
59eb99ba
DL
511 /* The STOPPING state is there for future cleanup code
512 * which can take awhile
513 */
25c2aca5 514 lxc_set_state(name, handler, STOPPING);
b6b2b194 515
b3286b62
WB
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;
c154af98
SG
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
b3286b62 536 if (run_lxc_hooks(name, "stop", handler->conf, handler->lxcpath, namespaces))
8438bfbd 537 ERROR("failed to run stop hooks for container '%s'.", name);
c154af98 538
b3286b62
WB
539 while (namespace_count--)
540 free(namespaces[namespace_count]);
b6b2b194
WB
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 }
25c2aca5 547 lxc_set_state(name, handler, STOPPED);
59eb99ba 548
283678ed 549 if (run_lxc_hooks(name, "post-stop", handler->conf, handler->lxcpath, NULL))
773fb9ca 550 ERROR("failed to run post-stop hooks for container '%s'.", name);
26ddeedd 551
83ee7875 552 /* reset mask set by setup_signal_fd */
8f64a3f6
MN
553 if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL))
554 WARN("failed to restore sigprocmask");
555
b5159817 556 lxc_console_delete(&handler->conf->console);
b2431939 557 lxc_delete_tty(&handler->conf->tty_info);
d2e30e99
DE
558 close(handler->conf->maincmd_fd);
559 handler->conf->maincmd_fd = -1;
3bdf52d7 560 free(handler->name);
e8bd4e43
SH
561 if (handler->ttysock[0] != -1) {
562 close(handler->ttysock[0]);
563 close(handler->ttysock[1]);
564 }
776d170c 565 if (handler->conf->ephemeral == 1 && handler->conf->reboot != 1) {
28272964
CB
566 lxc_destroy_container_on_signal(handler, name);
567 }
d4ef7c50 568 cgroup_destroy(handler);
b2431939 569 free(handler);
59eb99ba
DL
570}
571
735f2c6e 572void lxc_abort(const char *name, struct lxc_handler *handler)
59eb99ba 573{
73e608b2
SH
574 int ret, status;
575
25c2aca5 576 lxc_set_state(name, handler, ABORTING);
7d9fb3e9
DL
577 if (handler->pid > 0)
578 kill(handler->pid, SIGKILL);
73e608b2 579 while ((ret = waitpid(-1, &status, 0)) > 0) ;
59eb99ba
DL
580}
581
828695d9
SH
582#include <sys/reboot.h>
583#include <linux/reboot.h>
584
e2fa1520
SH
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)
828695d9 591{
d028235d 592 int *cmd = arg;
828695d9 593 int ret;
828695d9 594
d028235d 595 ret = reboot(*cmd);
e2fa1520
SH
596 if (ret == -1 && errno == EINVAL)
597 return 1;
598 return 0;
599}
600
b60ed720 601static int must_drop_cap_sys_boot(struct lxc_conf *conf)
e2fa1520 602{
025ed0f3 603 FILE *f;
b60ed720 604 int ret, cmd, v, flags;
d028235d
SG
605 long stack_size = 4096;
606 void *stack = alloca(stack_size);
607 int status;
608 pid_t pid;
e2fa1520 609
025ed0f3 610 f = fopen("/proc/sys/kernel/ctrl-alt-del", "r");
e2fa1520
SH
611 if (!f) {
612 DEBUG("failed to open /proc/sys/kernel/ctrl-alt-del");
828695d9 613 return 1;
e2fa1520 614 }
828695d9
SH
615
616 ret = fscanf(f, "%d", &v);
617 fclose(f);
e2fa1520
SH
618 if (ret != 1) {
619 DEBUG("Failed to read /proc/sys/kernel/ctrl-alt-del");
828695d9 620 return 1;
e2fa1520
SH
621 }
622 cmd = v ? LINUX_REBOOT_CMD_CAD_ON : LINUX_REBOOT_CMD_CAD_OFF;
623
b60ed720
SH
624 flags = CLONE_NEWPID | SIGCHLD;
625 if (!lxc_list_empty(&conf->id_map))
626 flags |= CLONE_NEWUSER;
627
7f145a6d 628#ifdef __ia64__
959aee9c 629 pid = __clone2(container_reboot_supported, stack, stack_size, flags, &cmd);
7f145a6d 630#else
959aee9c
SG
631 stack += stack_size;
632 pid = clone(container_reboot_supported, stack, flags, &cmd);
7f145a6d 633#endif
959aee9c 634 if (pid < 0) {
c08220e9 635 if (flags & CLONE_NEWUSER)
4a7e5f4f 636 ERROR("failed to clone (%#x): %s (includes CLONE_NEWUSER)", flags, strerror(errno));
c08220e9 637 else
4a7e5f4f 638 ERROR("failed to clone (%#x): %s", flags, strerror(errno));
959aee9c
SG
639 return -1;
640 }
641 if (wait(&status) < 0) {
642 SYSERROR("unexpected wait error: %m");
643 return -1;
644 }
e2fa1520
SH
645
646 if (WEXITSTATUS(status) != 1)
828695d9 647 return 1;
e2fa1520 648
828695d9
SH
649 return 0;
650}
651
658979c5
SH
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
ffe1e01a 698static int do_start(void *data)
50e98013 699{
7c661726 700 struct lxc_list *iterator;
23c53af9 701 struct lxc_handler *handler = data;
50e98013
DL
702
703 if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL)) {
704 SYSERROR("failed to set sigprocmask");
9d7f9e52 705 return -1;
50e98013
DL
706 }
707
d028235d 708 /* This prctl must be before the synchro, so if the parent
743ecd2e
DL
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
3c22086f 719 lxc_sync_fini_parent(handler);
50e98013 720
2b0e17e4 721 /* don't leak the pinfd to the container */
025ed0f3 722 if (handler->pinfd >= 0) {
0d03360a 723 close(handler->pinfd);
025ed0f3 724 }
2b0e17e4 725
3c22086f
CLG
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))
9d7f9e52 730 return -1;
50e98013 731
658979c5
SH
732 if (read_unpriv_netifindex(&handler->conf->network) < 0)
733 goto out_warn_father;
734
f6d3e3e4
SH
735 /*
736 * if we are in a new user namespace, become root there to have
62d00539
PT
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.
f6d3e3e4
SH
740 */
741 if (!lxc_list_empty(&handler->conf->id_map)) {
c5cd20ce
PT
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
56f8ff00
PT
750 NOTICE("switching to gid/uid %d/%d in new user namespace", new_gid, new_uid);
751 if (setgid(new_gid)) {
f6d3e3e4
SH
752 SYSERROR("setgid");
753 goto out_warn_father;
754 }
56f8ff00 755 if (setuid(new_uid)) {
f6d3e3e4
SH
756 SYSERROR("setuid");
757 goto out_warn_father;
758 }
c476bdce
SH
759 if (setgroups(0, NULL)) {
760 SYSERROR("setgroups");
761 goto out_warn_father;
762 }
f6d3e3e4
SH
763 }
764
99b71824 765 if (access(handler->lxcpath, X_OK)) {
c8154066
SH
766 print_top_failing_dir(handler->lxcpath);
767 goto out_warn_father;
768 }
769
495d2046 770 #if HAVE_SYS_CAPABILITY_H
69182a31 771 if (handler->conf->need_utmp_watch) {
828695d9
SH
772 if (prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT, 0, 0, 0)) {
773 SYSERROR("failed to remove CAP_SYS_BOOT capability");
c4ea60df 774 goto out_warn_father;
828695d9 775 }
959aee9c 776 DEBUG("Dropped cap_sys_boot");
e2fa1520 777 }
495d2046 778 #endif
e2fa1520
SH
779
780 /* Setup the container, ip, names, utsname, ... */
d4ef7c50 781 if (lxc_setup(handler)) {
e2fa1520
SH
782 ERROR("failed to setup the container");
783 goto out_warn_father;
784 }
50e98013 785
544a48a0
SH
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
72863294 790 /* Set the label to change to when we exec(2) the container's init */
7aff4f43 791 if (lsm_process_label_set(NULL, handler->conf, 1, 1) < 0)
e075f5d9 792 goto out_warn_father;
5112cd70 793
0d9acb99
DE
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
5112cd70
SH
803 /* If we mounted a temporary proc, then unmount it now */
804 tmp_proc_unmount(handler->conf);
e075f5d9 805
8f2c3a70
SH
806 if (lxc_seccomp_load(handler->conf) != 0)
807 goto out_warn_father;
808
283678ed 809 if (run_lxc_hooks(handler->name, "start", handler->conf, handler->lxcpath, NULL)) {
773fb9ca
SH
810 ERROR("failed to run start hooks for container '%s'.", handler->name);
811 goto out_warn_father;
812 }
fc25b815 813
f7bee6c6 814 /* The clearenv() and putenv() calls have been moved here
ec64264d 815 * to allow us to use environment variables passed to the various
f7bee6c6
MW
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
7c661726
MP
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
f7bee6c6 831 if (putenv("container=lxc")) {
7c661726 832 SYSERROR("failed to set environment variable 'container=lxc'");
c4ea60df 833 goto out_warn_father;
f7bee6c6
MW
834 }
835
393903d1
SH
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
773fb9ca 843 close(handler->sigfd);
26ddeedd 844
69aeabac
TA
845 if (handler->backgrounded && null_stdfds() < 0)
846 goto out_warn_father;
507cee36 847
12983ba4
SH
848 if (cgns_supported() && unshare(CLONE_NEWCGROUP) != 0) {
849 SYSERROR("Failed to unshare cgroup namespace");
850 goto out_warn_father;
851 }
852
e6126dbe
MN
853 /* after this call, we are in error because this
854 * ops should not return as it execs */
c4ea60df 855 handler->ops->start(handler, handler->data);
50e98013
DL
856
857out_warn_father:
544a48a0
SH
858 /* we want the parent to know something went wrong, so any
859 * value other than what it expects is ok. */
3c22086f 860 lxc_sync_wake_parent(handler, LXC_SYNC_POST_CONFIGURE);
50e98013
DL
861 return -1;
862}
863
74a3920a 864static int save_phys_nics(struct lxc_conf *conf)
7b35f3d6
SH
865{
866 struct lxc_list *iterator;
40f2f8a2 867 int am_root = (getuid() == 0);
7b35f3d6 868
40f2f8a2
LQ
869 if (!am_root)
870 return 0;
871
7b35f3d6
SH
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 }
959aee9c 889 INFO("stored saved_nic #%d idx %d name %s", conf->num_savednics,
7b35f3d6
SH
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
e8bd4e43
SH
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
f813849c
TA
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
74a3920a 967static int lxc_spawn(struct lxc_handler *handler)
59eb99ba 968{
b98f7d6e 969 int failed_before_rename = 0;
ffe1e01a 970 const char *name = handler->name;
62d05d9b 971 char *errmsg = NULL;
7e4dfe0b 972 bool cgroups_connected = false;
9f30a190
MM
973 int saved_ns_fd[LXC_NS_MAX];
974 int preserve_mask = 0, i;
658979c5 975 int netpipepair[2], nveths;
9f30a190 976
2f2623ec
SH
977 netpipe = -1;
978
9f30a190 979 for (i = 0; i < LXC_NS_MAX; i++)
6c544cb3 980 if (handler->conf->inherit_ns_fd[i] != -1)
9f30a190 981 preserve_mask |= ns_info[i].clone_flag;
50e98013 982
3c22086f 983 if (lxc_sync_init(handler))
9d7f9e52 984 return -1;
0ad19a3f 985
e8bd4e43
SH
986 if (socketpair(AF_UNIX, SOCK_DGRAM, 0, handler->ttysock) < 0) {
987 lxc_sync_fini(handler);
988 return -1;
989 }
990
f813849c 991 resolve_clone_flags(handler);
9f30a190 992
f813849c 993 if (handler->clone_flags & CLONE_NEWNET) {
26b797f3
SH
994 if (!lxc_list_empty(&handler->conf->network)) {
995
9f30a190
MM
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)) {
38521a3b 1010 ERROR("failed to create the network");
9f30a190
MM
1011 lxc_sync_fini(handler);
1012 return -1;
1013 }
19a26f82
MK
1014 }
1015
9f30a190
MM
1016 if (save_phys_nics(handler->conf)) {
1017 ERROR("failed to save physical nic info");
1018 goto out_abort;
82d5ae15
DL
1019 }
1020 }
1021
d4ef7c50
SH
1022 if (!cgroup_init(handler)) {
1023 ERROR("failed initializing cgroup support");
33ad9f1a
CS
1024 goto out_delete_net;
1025 }
1026
7e4dfe0b
SH
1027 cgroups_connected = true;
1028
d4ef7c50
SH
1029 if (!cgroup_create(handler)) {
1030 ERROR("failed creating cgroups");
47d8fb3b
CS
1031 goto out_delete_net;
1032 }
1033
0c547523
SH
1034 /*
1035 * if the rootfs is not a blockdev, prevent the container from
1036 * marking it readonly.
5e32a990
ÇO
1037 *
1038 * if the container is unprivileged then skip rootfs pinning
0c547523 1039 */
5e32a990
ÇO
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 }
0c547523 1045
62d05d9b
SH
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);
cd43d2d1 1050 goto out_delete_net;
62d05d9b 1051 }
cd43d2d1
SH
1052 if (attach_ns(handler->conf->inherit_ns_fd) < 0)
1053 goto out_delete_net;
9f30a190 1054
658979c5
SH
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
0ad19a3f 1064 /* Create a process in a new set of namespaces */
d5088cf2 1065 handler->pid = lxc_clone(do_start, handler, handler->clone_flags);
59eb99ba 1066 if (handler->pid < 0) {
36eb9bde 1067 SYSERROR("failed to fork into a new namespace");
7fef7a06 1068 goto out_delete_net;
0ad19a3f 1069 }
1070
330cbe36 1071 if (!preserve_ns(handler->nsfd, handler->clone_flags | preserve_mask, handler->pid, &errmsg)) {
62d05d9b
SH
1072 INFO("Failed to store namespace references for stop hook: %s",
1073 errmsg ? errmsg : "(Out of memory)");
1074 free(errmsg);
b6b2b194
WB
1075 }
1076
cd43d2d1
SH
1077 if (attach_ns(saved_ns_fd))
1078 WARN("failed to restore saved namespaces");
9f30a190 1079
3c22086f
CLG
1080 lxc_sync_fini_child(handler);
1081
1082 if (lxc_sync_wait_child(handler, LXC_SYNC_CONFIGURE))
99a6af52 1083 failed_before_rename = 1;
0ad19a3f 1084
d4ef7c50
SH
1085 if (!cgroup_create_legacy(handler)) {
1086 ERROR("failed to setup the legacy cgroups for %s", name);
ae5c8b8e 1087 goto out_delete_net;
33ad9f1a 1088 }
9daf6f5d
SH
1089 if (!cgroup_setup_limits(handler, false)) {
1090 ERROR("failed to setup the cgroup limits for '%s'", name);
6031a6e5
DE
1091 goto out_delete_net;
1092 }
1093
d4ef7c50 1094 if (!cgroup_enter(handler))
7fef7a06 1095 goto out_delete_net;
218d4250 1096
0996e18a
SH
1097 if (!cgroup_chown(handler))
1098 goto out_delete_net;
1099
99a6af52
MN
1100 if (failed_before_rename)
1101 goto out_delete_net;
1102
0ad19a3f 1103 /* Create the network configuration */
d5088cf2 1104 if (handler->clone_flags & CLONE_NEWNET) {
c43cbc04
SH
1105 if (lxc_assign_network(handler->lxcpath, handler->name,
1106 &handler->conf->network, handler->pid)) {
82d5ae15 1107 ERROR("failed to create the configured network");
7fef7a06 1108 goto out_delete_net;
82d5ae15 1109 }
0ad19a3f 1110 }
1111
658979c5
SH
1112 if (netpipe != -1) {
1113 struct lxc_list *iterator;
1114 struct lxc_netdev *netdev;
1115
1116 close(netpipe);
1117 lxc_list_for_each(iterator, &handler->conf->network) {
1118 netdev = iterator->elem;
1119 if (netdev->type != LXC_NET_VETH)
1120 continue;
1121 if (write(netpipepair[1], netdev->name, IFNAMSIZ) != IFNAMSIZ) {
1122 ERROR("Error writing veth name to container");
1123 goto out_delete_net;
1124 }
1125 }
1126 close(netpipepair[1]);
1127 }
1128
f6d3e3e4
SH
1129 /* map the container uids - the container became an invalid
1130 * userid the moment it was cloned with CLONE_NEWUSER - this
1131 * call doesn't change anything immediately, but allows the
1132 * container to setuid(0) (0 being mapped to something else on
1133 * the host) later to become a valid uid again */
1134 if (lxc_map_ids(&handler->conf->id_map, handler->pid)) {
1135 ERROR("failed to set up id mapping");
1136 goto out_delete_net;
1137 }
1138
544a48a0
SH
1139 /* Tell the child to continue its initialization. we'll get
1140 * LXC_SYNC_CGROUP when it is ready for us to setup cgroups
3c22086f
CLG
1141 */
1142 if (lxc_sync_barrier_child(handler, LXC_SYNC_POST_CONFIGURE))
544a48a0
SH
1143 goto out_delete_net;
1144
9daf6f5d 1145 if (!cgroup_setup_limits(handler, true)) {
b98f7d6e
SH
1146 ERROR("failed to setup the devices cgroup for '%s'", name);
1147 goto out_delete_net;
544a48a0
SH
1148 }
1149
73d28d42 1150 cgroup_disconnect();
7e4dfe0b 1151 cgroups_connected = false;
73d28d42 1152
e8bd4e43
SH
1153 /* read tty fds allocated by child */
1154 if (recv_ttys_from_child(handler) < 0) {
1155 ERROR("failed to receive tty info from child");
1156 goto out_delete_net;
1157 }
1158
544a48a0
SH
1159 /* Tell the child to complete its initialization and wait for
1160 * it to exec or return an error. (the child will never
1161 * return LXC_SYNC_POST_CGROUP+1. It will either close the
1162 * sync pipe, causing lxc_sync_barrier_child to return
1163 * success, or return a different value, causing us to error
1164 * out).
1165 */
1166 if (lxc_sync_barrier_child(handler, LXC_SYNC_POST_CGROUP))
3c22086f 1167 return -1;
0ad19a3f 1168
cc28d0b0
SH
1169 if (detect_shared_rootfs())
1170 umount2(handler->conf->rootfs.mount, MNT_DETACH);
1171
23c53af9 1172 if (handler->ops->post_start(handler, handler->data))
e6126dbe
MN
1173 goto out_abort;
1174
25c2aca5 1175 if (lxc_set_state(name, handler, RUNNING)) {
59eb99ba
DL
1176 ERROR("failed to set state to %s",
1177 lxc_state2str(RUNNING));
1178 goto out_abort;
3f21c114 1179 }
22ebac19 1180
3c22086f 1181 lxc_sync_fini(handler);
0c547523 1182
e6126dbe 1183 return 0;
1ac470c0 1184
7fef7a06 1185out_delete_net:
7e4dfe0b
SH
1186 if (cgroups_connected)
1187 cgroup_disconnect();
d5088cf2 1188 if (handler->clone_flags & CLONE_NEWNET)
74a2b586 1189 lxc_delete_network(handler);
59eb99ba
DL
1190out_abort:
1191 lxc_abort(name, handler);
3c22086f 1192 lxc_sync_fini(handler);
5c068da9
SH
1193 if (handler->pinfd >= 0) {
1194 close(handler->pinfd);
1195 handler->pinfd = -1;
1196 }
1197
b79fcd86 1198 return -1;
59eb99ba 1199}
0ad19a3f 1200
2af6bd1b
SH
1201int get_netns_fd(int pid)
1202{
1203 char path[MAXPATHLEN];
1204 int ret, fd;
1205
1206 ret = snprintf(path, MAXPATHLEN, "/proc/%d/ns/net", pid);
1207 if (ret < 0 || ret >= MAXPATHLEN) {
1208 WARN("Failed to pin netns file for pid %d", pid);
1209 return -1;
1210 }
1211
1212 fd = open(path, O_RDONLY);
1213 if (fd < 0) {
1214 WARN("Failed to pin netns file %s for pid %d: %s",
1215 path, pid, strerror(errno));
1216 return -1;
1217 }
1218 return fd;
1219}
1220
ee70bf78 1221int __lxc_start(const char *name, struct lxc_conf *conf,
507cee36
TA
1222 struct lxc_operations* ops, void *data, const char *lxcpath,
1223 bool backgrounded)
59eb99ba 1224{
3a0f472d 1225 struct lxc_handler *handler;
e043236e 1226 int err = -1;
59eb99ba 1227 int status;
2af6bd1b 1228 int netnsfd = -1;
80090207 1229
13f5be62 1230 handler = lxc_init(name, conf, lxcpath);
3a0f472d 1231 if (!handler) {
59eb99ba 1232 ERROR("failed to initialize the container");
66aeffc7 1233 return -1;
0ad19a3f 1234 }
ee70bf78
CLG
1235 handler->ops = ops;
1236 handler->data = data;
507cee36 1237 handler->backgrounded = backgrounded;
e6126dbe 1238
b60ed720 1239 if (must_drop_cap_sys_boot(handler->conf)) {
495d2046 1240 #if HAVE_SYS_CAPABILITY_H
959aee9c 1241 DEBUG("Dropping cap_sys_boot");
495d2046 1242 #else
959aee9c 1243 DEBUG("Can't drop cap_sys_boot as capabilities aren't supported");
495d2046 1244 #endif
69182a31 1245 } else {
959aee9c 1246 DEBUG("Not dropping cap_sys_boot or watching utmp");
69182a31
SH
1247 handler->conf->need_utmp_watch = 0;
1248 }
1249
76a26f55
SH
1250 if (!attach_block_device(handler->conf)) {
1251 ERROR("Failure attaching block device");
1252 goto out_fini_nonet;
1253 }
1254
35120d9c
SH
1255 if (geteuid() == 0 && !lxc_list_empty(&conf->id_map)) {
1256 /* if the backing store is a device, mount it here and now */
1257 if (rootfs_is_blockdev(conf)) {
1258 if (unshare(CLONE_NEWNS) < 0) {
1259 ERROR("Error unsharing mounts");
1260 goto out_fini_nonet;
1261 }
6a0c909a 1262 remount_all_slave();
35120d9c
SH
1263 if (do_rootfs_setup(conf, name, lxcpath) < 0) {
1264 ERROR("Error setting up rootfs mount as root before spawn");
1265 goto out_fini_nonet;
1266 }
1267 INFO("Set up container rootfs as host root");
1268 }
1269 }
1270
23c53af9 1271 err = lxc_spawn(handler);
59eb99ba 1272 if (err) {
ee70bf78 1273 ERROR("failed to spawn '%s'", name);
76a26f55 1274 goto out_detach_blockdev;
0ad19a3f 1275 }
1276
8bee8851
WB
1277 handler->conf->reboot = 0;
1278
2af6bd1b
SH
1279 netnsfd = get_netns_fd(handler->pid);
1280
3a0f472d 1281 err = lxc_poll(name, handler);
e043236e 1282 if (err) {
59eb99ba 1283 ERROR("mainloop exited with an error");
4b2f98f5
SH
1284 if (netnsfd >= 0)
1285 close(netnsfd);
59eb99ba
DL
1286 goto out_abort;
1287 }
0ad19a3f 1288
3a0f472d 1289 while (waitpid(handler->pid, &status, 0) < 0 && errno == EINTR)
1bc5cc8c 1290 continue;
e043236e 1291
8b004f07
SH
1292 /*
1293 * If the child process exited but was not signaled,
1294 * it didn't call reboot. This should mean it was an
1295 * lxc-execute which simply exited. In any case, treat
1296 * it as a 'halt'
1297 */
d028235d 1298 if (WIFSIGNALED(status)) {
8b004f07
SH
1299 switch(WTERMSIG(status)) {
1300 case SIGINT: /* halt */
1301 DEBUG("Container halting");
1302 break;
1303 case SIGHUP: /* reboot */
1304 DEBUG("Container rebooting");
1305 handler->conf->reboot = 1;
1306 break;
c2b9bd9e
SH
1307 case SIGSYS: /* seccomp */
1308 DEBUG("Container violated its seccomp policy");
1309 break;
8b004f07 1310 default:
959aee9c 1311 DEBUG("unknown exit status for init: %d", WTERMSIG(status));
8b004f07
SH
1312 break;
1313 }
d028235d 1314 }
828695d9 1315
ce5782df 1316 DEBUG("Pushing physical nics back to host namespace");
2af6bd1b 1317 lxc_rename_phys_nics_on_shutdown(netnsfd, handler->conf);
ce5782df
MH
1318
1319 DEBUG("Tearing down virtual network devices used by container");
1320 lxc_delete_network(handler);
1321
4b2f98f5
SH
1322 if (netnsfd >= 0)
1323 close(netnsfd);
7b35f3d6 1324
5c068da9
SH
1325 if (handler->pinfd >= 0) {
1326 close(handler->pinfd);
1327 handler->pinfd = -1;
1328 }
1329
1787abca 1330 lxc_monitor_send_exit_code(name, status, handler->lxcpath);
3a0f472d 1331 err = lxc_error_set_and_log(handler->pid, status);
9d7f9e52 1332out_fini:
74a2b586
JK
1333 lxc_delete_network(handler);
1334
76a26f55
SH
1335out_detach_blockdev:
1336 detach_block_device(handler->conf);
1337
74a2b586 1338out_fini_nonet:
3a0f472d 1339 lxc_fini(name, handler);
0ad19a3f 1340 return err;
1341
59eb99ba 1342out_abort:
3a0f472d 1343 lxc_abort(name, handler);
9d7f9e52 1344 goto out_fini;
0ad19a3f 1345}
ee70bf78
CLG
1346
1347struct start_args {
1348 char *const *argv;
1349};
1350
1351static int start(struct lxc_handler *handler, void* data)
1352{
1353 struct start_args *arg = data;
1354
1355 NOTICE("exec'ing '%s'", arg->argv[0]);
1356
1357 execvp(arg->argv[0], arg->argv);
1358 SYSERROR("failed to exec %s", arg->argv[0]);
1359 return 0;
1360}
1361
1362static int post_start(struct lxc_handler *handler, void* data)
1363{
1364 struct start_args *arg = data;
1365
1366 NOTICE("'%s' started with pid '%d'", arg->argv[0], handler->pid);
1367 return 0;
1368}
1369
1370static struct lxc_operations start_ops = {
1371 .start = start,
1372 .post_start = post_start
1373};
1374
13f5be62 1375int lxc_start(const char *name, char *const argv[], struct lxc_conf *conf,
507cee36 1376 const char *lxcpath, bool backgrounded)
ee70bf78
CLG
1377{
1378 struct start_args start_arg = {
1379 .argv = argv,
1380 };
1381
828695d9 1382 conf->need_utmp_watch = 1;
507cee36 1383 return __lxc_start(name, conf, &start_ops, &start_arg, lxcpath, backgrounded);
ee70bf78 1384}
28272964
CB
1385
1386static void lxc_destroy_container_on_signal(struct lxc_handler *handler,
1387 const char *name)
1388{
1389 char destroy[MAXPATHLEN];
1390 bool bret = true;
1391 int ret = 0;
f01f7975 1392 struct lxc_container *c;
df31363a 1393 if (handler->conf->rootfs.path && handler->conf->rootfs.mount) {
28272964
CB
1394 bret = do_destroy_container(handler->conf);
1395 if (!bret) {
1396 ERROR("Error destroying rootfs for %s", name);
1397 return;
1398 }
1399 }
1400 INFO("Destroyed rootfs for %s", name);
1401
1402 ret = snprintf(destroy, MAXPATHLEN, "%s/%s", handler->lxcpath, name);
1403 if (ret < 0 || ret >= MAXPATHLEN) {
1404 ERROR("Error printing path for %s", name);
1405 ERROR("Error destroying directory for %s", name);
1406 return;
1407 }
1408
f01f7975
CB
1409 c = lxc_container_new(name, handler->lxcpath);
1410 if (c) {
1411 if (container_disk_lock(c)) {
1412 INFO("Could not update lxc_snapshots file");
1413 lxc_container_put(c);
1414 } else {
1415 mod_all_rdeps(c, false);
1416 container_disk_unlock(c);
1417 lxc_container_put(c);
1418 }
1419 }
1420
28272964
CB
1421 if (am_unpriv())
1422 ret = userns_exec_1(handler->conf, lxc_rmdir_onedev_wrapper, destroy);
1423 else
1424 ret = lxc_rmdir_onedev(destroy, NULL);
1425
1426 if (ret < 0) {
1427 ERROR("Error destroying directory for %s", name);
1428 return;
1429 }
1430 INFO("Destroyed directory for %s", name);
1431}
1432
1433static int lxc_rmdir_onedev_wrapper(void *data)
1434{
1435 char *arg = (char *) data;
1436 return lxc_rmdir_onedev(arg, NULL);
1437}
1438
1439static bool do_destroy_container(struct lxc_conf *conf) {
d028235d
SG
1440 if (am_unpriv()) {
1441 if (userns_exec_1(conf, bdev_destroy_wrapper, conf) < 0)
1442 return false;
1443 return true;
1444 }
1445 return bdev_destroy(conf);
28272964
CB
1446}
1447