]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/start.c
Merge pull request #859 from brauner/bugfix_branch
[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 }
2c5f2ede
CB
565
566 if (handler->conf->ephemeral == 1 && handler->conf->reboot != 1)
28272964 567 lxc_destroy_container_on_signal(handler, name);
2c5f2ede 568
d4ef7c50 569 cgroup_destroy(handler);
b2431939 570 free(handler);
59eb99ba
DL
571}
572
735f2c6e 573void lxc_abort(const char *name, struct lxc_handler *handler)
59eb99ba 574{
73e608b2
SH
575 int ret, status;
576
25c2aca5 577 lxc_set_state(name, handler, ABORTING);
7d9fb3e9
DL
578 if (handler->pid > 0)
579 kill(handler->pid, SIGKILL);
73e608b2 580 while ((ret = waitpid(-1, &status, 0)) > 0) ;
59eb99ba
DL
581}
582
828695d9
SH
583#include <sys/reboot.h>
584#include <linux/reboot.h>
585
e2fa1520
SH
586/*
587 * reboot(LINUX_REBOOT_CMD_CAD_ON) will return -EINVAL
588 * in a child pid namespace if container reboot support exists.
589 * Otherwise, it will either succeed or return -EPERM.
590 */
591static int container_reboot_supported(void *arg)
828695d9 592{
d028235d 593 int *cmd = arg;
828695d9 594 int ret;
828695d9 595
d028235d 596 ret = reboot(*cmd);
e2fa1520
SH
597 if (ret == -1 && errno == EINVAL)
598 return 1;
599 return 0;
600}
601
b60ed720 602static int must_drop_cap_sys_boot(struct lxc_conf *conf)
e2fa1520 603{
025ed0f3 604 FILE *f;
b60ed720 605 int ret, cmd, v, flags;
d028235d
SG
606 long stack_size = 4096;
607 void *stack = alloca(stack_size);
608 int status;
609 pid_t pid;
e2fa1520 610
025ed0f3 611 f = fopen("/proc/sys/kernel/ctrl-alt-del", "r");
e2fa1520
SH
612 if (!f) {
613 DEBUG("failed to open /proc/sys/kernel/ctrl-alt-del");
828695d9 614 return 1;
e2fa1520 615 }
828695d9
SH
616
617 ret = fscanf(f, "%d", &v);
618 fclose(f);
e2fa1520
SH
619 if (ret != 1) {
620 DEBUG("Failed to read /proc/sys/kernel/ctrl-alt-del");
828695d9 621 return 1;
e2fa1520
SH
622 }
623 cmd = v ? LINUX_REBOOT_CMD_CAD_ON : LINUX_REBOOT_CMD_CAD_OFF;
624
b60ed720
SH
625 flags = CLONE_NEWPID | SIGCHLD;
626 if (!lxc_list_empty(&conf->id_map))
627 flags |= CLONE_NEWUSER;
628
7f145a6d 629#ifdef __ia64__
959aee9c 630 pid = __clone2(container_reboot_supported, stack, stack_size, flags, &cmd);
7f145a6d 631#else
959aee9c
SG
632 stack += stack_size;
633 pid = clone(container_reboot_supported, stack, flags, &cmd);
7f145a6d 634#endif
959aee9c 635 if (pid < 0) {
c08220e9 636 if (flags & CLONE_NEWUSER)
4a7e5f4f 637 ERROR("failed to clone (%#x): %s (includes CLONE_NEWUSER)", flags, strerror(errno));
c08220e9 638 else
4a7e5f4f 639 ERROR("failed to clone (%#x): %s", flags, strerror(errno));
959aee9c
SG
640 return -1;
641 }
642 if (wait(&status) < 0) {
643 SYSERROR("unexpected wait error: %m");
644 return -1;
645 }
e2fa1520
SH
646
647 if (WEXITSTATUS(status) != 1)
828695d9 648 return 1;
e2fa1520 649
828695d9
SH
650 return 0;
651}
652
658979c5
SH
653/*
654 * netpipe is used in the unprivileged case to transfer the ifindexes
655 * from parent to child
656 */
657static int netpipe = -1;
658
659static inline int count_veths(struct lxc_list *network)
660{
661 struct lxc_list *iterator;
662 struct lxc_netdev *netdev;
663 int count = 0;
664
665 lxc_list_for_each(iterator, network) {
666 netdev = iterator->elem;
667 if (netdev->type != LXC_NET_VETH)
668 continue;
669 count++;
670 }
671 return count;
672}
673
674static int read_unpriv_netifindex(struct lxc_list *network)
675{
676 struct lxc_list *iterator;
677 struct lxc_netdev *netdev;
678
679 if (netpipe == -1)
680 return 0;
681 lxc_list_for_each(iterator, network) {
682 netdev = iterator->elem;
683 if (netdev->type != LXC_NET_VETH)
684 continue;
685 if (!(netdev->name = malloc(IFNAMSIZ))) {
686 ERROR("Out of memory");
687 close(netpipe);
688 return -1;
689 }
690 if (read(netpipe, netdev->name, IFNAMSIZ) != IFNAMSIZ) {
691 close(netpipe);
692 return -1;
693 }
694 }
695 close(netpipe);
696 return 0;
697}
698
ffe1e01a 699static int do_start(void *data)
50e98013 700{
7c661726 701 struct lxc_list *iterator;
23c53af9 702 struct lxc_handler *handler = data;
50e98013
DL
703
704 if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL)) {
705 SYSERROR("failed to set sigprocmask");
9d7f9e52 706 return -1;
50e98013
DL
707 }
708
d028235d 709 /* This prctl must be before the synchro, so if the parent
743ecd2e
DL
710 * dies before we set the parent death signal, we will detect
711 * its death with the synchro right after, otherwise we have
712 * a window where the parent can exit before we set the pdeath
713 * signal leading to a unsupervized container.
714 */
715 if (prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0)) {
716 SYSERROR("failed to set pdeath signal");
717 return -1;
718 }
719
3c22086f 720 lxc_sync_fini_parent(handler);
50e98013 721
2b0e17e4 722 /* don't leak the pinfd to the container */
025ed0f3 723 if (handler->pinfd >= 0) {
0d03360a 724 close(handler->pinfd);
025ed0f3 725 }
2b0e17e4 726
3c22086f
CLG
727 /* Tell the parent task it can begin to configure the
728 * container and wait for it to finish
729 */
730 if (lxc_sync_barrier_parent(handler, LXC_SYNC_CONFIGURE))
9d7f9e52 731 return -1;
50e98013 732
658979c5
SH
733 if (read_unpriv_netifindex(&handler->conf->network) < 0)
734 goto out_warn_father;
735
f6d3e3e4
SH
736 /*
737 * if we are in a new user namespace, become root there to have
62d00539
PT
738 * privilege over our namespace. When using lxc-execute we default to root,
739 * but this can be overriden using the lxc.init_uid and lxc.init_gid
740 * configuration options.
f6d3e3e4
SH
741 */
742 if (!lxc_list_empty(&handler->conf->id_map)) {
c5cd20ce
PT
743 gid_t new_gid = 0;
744 if (handler->conf->is_execute && handler->conf->init_gid)
745 new_gid = handler->conf->init_gid;
746
747 uid_t new_uid = 0;
748 if (handler->conf->is_execute && handler->conf->init_uid)
749 new_uid = handler->conf->init_uid;
750
56f8ff00
PT
751 NOTICE("switching to gid/uid %d/%d in new user namespace", new_gid, new_uid);
752 if (setgid(new_gid)) {
f6d3e3e4
SH
753 SYSERROR("setgid");
754 goto out_warn_father;
755 }
56f8ff00 756 if (setuid(new_uid)) {
f6d3e3e4
SH
757 SYSERROR("setuid");
758 goto out_warn_father;
759 }
c476bdce
SH
760 if (setgroups(0, NULL)) {
761 SYSERROR("setgroups");
762 goto out_warn_father;
763 }
f6d3e3e4
SH
764 }
765
99b71824 766 if (access(handler->lxcpath, X_OK)) {
c8154066
SH
767 print_top_failing_dir(handler->lxcpath);
768 goto out_warn_father;
769 }
770
495d2046 771 #if HAVE_SYS_CAPABILITY_H
69182a31 772 if (handler->conf->need_utmp_watch) {
828695d9
SH
773 if (prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT, 0, 0, 0)) {
774 SYSERROR("failed to remove CAP_SYS_BOOT capability");
c4ea60df 775 goto out_warn_father;
828695d9 776 }
959aee9c 777 DEBUG("Dropped cap_sys_boot");
e2fa1520 778 }
495d2046 779 #endif
e2fa1520
SH
780
781 /* Setup the container, ip, names, utsname, ... */
d4ef7c50 782 if (lxc_setup(handler)) {
e2fa1520
SH
783 ERROR("failed to setup the container");
784 goto out_warn_father;
785 }
50e98013 786
544a48a0
SH
787 /* ask father to setup cgroups and wait for him to finish */
788 if (lxc_sync_barrier_parent(handler, LXC_SYNC_CGROUP))
789 return -1;
790
72863294 791 /* Set the label to change to when we exec(2) the container's init */
7aff4f43 792 if (lsm_process_label_set(NULL, handler->conf, 1, 1) < 0)
e075f5d9 793 goto out_warn_father;
5112cd70 794
0d9acb99
DE
795 /* Some init's such as busybox will set sane tty settings on stdin,
796 * stdout, stderr which it thinks is the console. We already set them
797 * the way we wanted on the real terminal, and we want init to do its
798 * setup on its console ie. the pty allocated in lxc_console_create()
799 * so make sure that that pty is stdin,stdout,stderr.
800 */
39a78bbe 801 if (lxc_console_set_stdfds(handler->conf->console.slave) < 0)
0d9acb99
DE
802 goto out_warn_father;
803
5112cd70
SH
804 /* If we mounted a temporary proc, then unmount it now */
805 tmp_proc_unmount(handler->conf);
e075f5d9 806
8f2c3a70
SH
807 if (lxc_seccomp_load(handler->conf) != 0)
808 goto out_warn_father;
809
283678ed 810 if (run_lxc_hooks(handler->name, "start", handler->conf, handler->lxcpath, NULL)) {
773fb9ca
SH
811 ERROR("failed to run start hooks for container '%s'.", handler->name);
812 goto out_warn_father;
813 }
fc25b815 814
f7bee6c6 815 /* The clearenv() and putenv() calls have been moved here
ec64264d 816 * to allow us to use environment variables passed to the various
f7bee6c6
MW
817 * hooks, such as the start hook above. Not all of the
818 * variables like CONFIG_PATH or ROOTFS are valid in this
819 * context but others are. */
820 if (clearenv()) {
821 SYSERROR("failed to clear environment");
822 /* don't error out though */
823 }
824
7c661726
MP
825 lxc_list_for_each(iterator, &handler->conf->environment) {
826 if (putenv((char *)iterator->elem)) {
827 SYSERROR("failed to set environment variable '%s'", (char *)iterator->elem);
828 goto out_warn_father;
829 }
830 }
831
f7bee6c6 832 if (putenv("container=lxc")) {
7c661726 833 SYSERROR("failed to set environment variable 'container=lxc'");
c4ea60df 834 goto out_warn_father;
f7bee6c6
MW
835 }
836
393903d1
SH
837 if (handler->conf->pty_names) {
838 if (putenv(handler->conf->pty_names)) {
839 SYSERROR("failed to set environment variable for container ptys");
840 goto out_warn_father;
841 }
842 }
843
773fb9ca 844 close(handler->sigfd);
26ddeedd 845
69aeabac
TA
846 if (handler->backgrounded && null_stdfds() < 0)
847 goto out_warn_father;
507cee36 848
12983ba4
SH
849 if (cgns_supported() && unshare(CLONE_NEWCGROUP) != 0) {
850 SYSERROR("Failed to unshare cgroup namespace");
851 goto out_warn_father;
852 }
853
8c9a7665
TA
854 setsid();
855
e6126dbe
MN
856 /* after this call, we are in error because this
857 * ops should not return as it execs */
c4ea60df 858 handler->ops->start(handler, handler->data);
50e98013
DL
859
860out_warn_father:
544a48a0
SH
861 /* we want the parent to know something went wrong, so any
862 * value other than what it expects is ok. */
3c22086f 863 lxc_sync_wake_parent(handler, LXC_SYNC_POST_CONFIGURE);
50e98013
DL
864 return -1;
865}
866
74a3920a 867static int save_phys_nics(struct lxc_conf *conf)
7b35f3d6
SH
868{
869 struct lxc_list *iterator;
40f2f8a2 870 int am_root = (getuid() == 0);
7b35f3d6 871
40f2f8a2
LQ
872 if (!am_root)
873 return 0;
2c5f2ede 874
7b35f3d6
SH
875 lxc_list_for_each(iterator, &conf->network) {
876 struct lxc_netdev *netdev = iterator->elem;
877
878 if (netdev->type != LXC_NET_PHYS)
879 continue;
880 conf->saved_nics = realloc(conf->saved_nics,
881 (conf->num_savednics+1)*sizeof(struct saved_nic));
882 if (!conf->saved_nics) {
883 SYSERROR("failed to allocate memory");
884 return -1;
885 }
886 conf->saved_nics[conf->num_savednics].ifindex = netdev->ifindex;
887 conf->saved_nics[conf->num_savednics].orig_name = strdup(netdev->link);
888 if (!conf->saved_nics[conf->num_savednics].orig_name) {
889 SYSERROR("failed to allocate memory");
890 return -1;
891 }
959aee9c 892 INFO("stored saved_nic #%d idx %d name %s", conf->num_savednics,
7b35f3d6
SH
893 conf->saved_nics[conf->num_savednics].ifindex,
894 conf->saved_nics[conf->num_savednics].orig_name);
895 conf->num_savednics++;
896 }
897
898 return 0;
899}
900
e8bd4e43
SH
901static int recv_fd(int sock, int *fd)
902{
903 if (lxc_abstract_unix_recv_fd(sock, fd, NULL, 0) < 0) {
904 SYSERROR("Error receiving tty fd from child");
905 return -1;
906 }
907 if (*fd == -1)
908 return -1;
909 return 0;
910}
911
912static int recv_ttys_from_child(struct lxc_handler *handler)
913{
914 struct lxc_conf *conf = handler->conf;
915 int i, sock = handler->ttysock[1];
916 struct lxc_tty_info *tty_info = &conf->tty_info;
917
918 if (!conf->tty)
919 return 0;
920
921 tty_info->pty_info = malloc(sizeof(*tty_info->pty_info)*conf->tty);
922 if (!tty_info->pty_info) {
923 SYSERROR("failed to allocate pty_info");
924 return -1;
925 }
926
927 for (i = 0; i < conf->tty; i++) {
928 struct lxc_pty_info *pty_info = &tty_info->pty_info[i];
929 pty_info->busy = 0;
930 if (recv_fd(sock, &pty_info->slave) < 0 ||
931 recv_fd(sock, &pty_info->master) < 0) {
932 ERROR("Error receiving tty info from child");
933 return -1;
934 }
935 }
936 tty_info->nbtty = conf->tty;
937
938 return 0;
939}
940
f813849c
TA
941void resolve_clone_flags(struct lxc_handler *handler)
942{
943 handler->clone_flags = CLONE_NEWPID | CLONE_NEWNS;
944
945 if (!lxc_list_empty(&handler->conf->id_map)) {
946 INFO("Cloning a new user namespace");
947 handler->clone_flags |= CLONE_NEWUSER;
948 }
949
950 if (handler->conf->inherit_ns_fd[LXC_NS_NET] == -1) {
951 if (!lxc_requests_empty_network(handler))
952 handler->clone_flags |= CLONE_NEWNET;
953 } else {
954 INFO("Inheriting a net namespace");
955 }
956
957 if (handler->conf->inherit_ns_fd[LXC_NS_IPC] == -1) {
958 handler->clone_flags |= CLONE_NEWIPC;
959 } else {
960 INFO("Inheriting an IPC namespace");
961 }
962
963 if (handler->conf->inherit_ns_fd[LXC_NS_UTS] == -1) {
964 handler->clone_flags |= CLONE_NEWUTS;
965 } else {
966 INFO("Inheriting a UTS namespace");
967 }
968}
969
74a3920a 970static int lxc_spawn(struct lxc_handler *handler)
59eb99ba 971{
b98f7d6e 972 int failed_before_rename = 0;
ffe1e01a 973 const char *name = handler->name;
62d05d9b 974 char *errmsg = NULL;
7e4dfe0b 975 bool cgroups_connected = false;
9f30a190
MM
976 int saved_ns_fd[LXC_NS_MAX];
977 int preserve_mask = 0, i;
658979c5 978 int netpipepair[2], nveths;
9f30a190 979
2f2623ec
SH
980 netpipe = -1;
981
9f30a190 982 for (i = 0; i < LXC_NS_MAX; i++)
6c544cb3 983 if (handler->conf->inherit_ns_fd[i] != -1)
9f30a190 984 preserve_mask |= ns_info[i].clone_flag;
50e98013 985
3c22086f 986 if (lxc_sync_init(handler))
9d7f9e52 987 return -1;
0ad19a3f 988
e8bd4e43
SH
989 if (socketpair(AF_UNIX, SOCK_DGRAM, 0, handler->ttysock) < 0) {
990 lxc_sync_fini(handler);
991 return -1;
992 }
993
f813849c 994 resolve_clone_flags(handler);
9f30a190 995
f813849c 996 if (handler->clone_flags & CLONE_NEWNET) {
26b797f3
SH
997 if (!lxc_list_empty(&handler->conf->network)) {
998
9f30a190
MM
999 /* Find gateway addresses from the link device, which is
1000 * no longer accessible inside the container. Do this
1001 * before creating network interfaces, since goto
1002 * out_delete_net does not work before lxc_clone. */
1003 if (lxc_find_gateway_addresses(handler)) {
1004 ERROR("failed to find gateway addresses");
1005 lxc_sync_fini(handler);
1006 return -1;
1007 }
1008
1009 /* that should be done before the clone because we will
1010 * fill the netdev index and use them in the child
1011 */
1012 if (lxc_create_network(handler)) {
38521a3b 1013 ERROR("failed to create the network");
9f30a190
MM
1014 lxc_sync_fini(handler);
1015 return -1;
1016 }
19a26f82
MK
1017 }
1018
9f30a190
MM
1019 if (save_phys_nics(handler->conf)) {
1020 ERROR("failed to save physical nic info");
1021 goto out_abort;
82d5ae15
DL
1022 }
1023 }
1024
d4ef7c50
SH
1025 if (!cgroup_init(handler)) {
1026 ERROR("failed initializing cgroup support");
33ad9f1a
CS
1027 goto out_delete_net;
1028 }
1029
7e4dfe0b
SH
1030 cgroups_connected = true;
1031
d4ef7c50
SH
1032 if (!cgroup_create(handler)) {
1033 ERROR("failed creating cgroups");
47d8fb3b
CS
1034 goto out_delete_net;
1035 }
1036
0c547523
SH
1037 /*
1038 * if the rootfs is not a blockdev, prevent the container from
1039 * marking it readonly.
5e32a990
ÇO
1040 *
1041 * if the container is unprivileged then skip rootfs pinning
0c547523 1042 */
5e32a990
ÇO
1043 if (lxc_list_empty(&handler->conf->id_map)) {
1044 handler->pinfd = pin_rootfs(handler->conf->rootfs.path);
1045 if (handler->pinfd == -1)
1046 INFO("failed to pin the container's rootfs");
1047 }
0c547523 1048
62d05d9b
SH
1049 if (!preserve_ns(saved_ns_fd, preserve_mask, getpid(), &errmsg)) {
1050 SYSERROR("Failed to preserve requested namespaces: %s",
1051 errmsg ? errmsg : "(Out of memory)");
1052 free(errmsg);
cd43d2d1 1053 goto out_delete_net;
62d05d9b 1054 }
cd43d2d1
SH
1055 if (attach_ns(handler->conf->inherit_ns_fd) < 0)
1056 goto out_delete_net;
9f30a190 1057
658979c5
SH
1058 if (am_unpriv() && (nveths = count_veths(&handler->conf->network))) {
1059 if (pipe(netpipepair) < 0) {
1060 SYSERROR("Error creating pipe");
1061 goto out_delete_net;
1062 }
1063 /* store netpipe in the global var for do_start's use */
1064 netpipe = netpipepair[0];
1065 }
1066
0ad19a3f 1067 /* Create a process in a new set of namespaces */
d5088cf2 1068 handler->pid = lxc_clone(do_start, handler, handler->clone_flags);
59eb99ba 1069 if (handler->pid < 0) {
36eb9bde 1070 SYSERROR("failed to fork into a new namespace");
7fef7a06 1071 goto out_delete_net;
0ad19a3f 1072 }
1073
330cbe36 1074 if (!preserve_ns(handler->nsfd, handler->clone_flags | preserve_mask, handler->pid, &errmsg)) {
62d05d9b
SH
1075 INFO("Failed to store namespace references for stop hook: %s",
1076 errmsg ? errmsg : "(Out of memory)");
1077 free(errmsg);
b6b2b194
WB
1078 }
1079
cd43d2d1
SH
1080 if (attach_ns(saved_ns_fd))
1081 WARN("failed to restore saved namespaces");
9f30a190 1082
3c22086f
CLG
1083 lxc_sync_fini_child(handler);
1084
1085 if (lxc_sync_wait_child(handler, LXC_SYNC_CONFIGURE))
99a6af52 1086 failed_before_rename = 1;
0ad19a3f 1087
d4ef7c50
SH
1088 if (!cgroup_create_legacy(handler)) {
1089 ERROR("failed to setup the legacy cgroups for %s", name);
ae5c8b8e 1090 goto out_delete_net;
33ad9f1a 1091 }
9daf6f5d
SH
1092 if (!cgroup_setup_limits(handler, false)) {
1093 ERROR("failed to setup the cgroup limits for '%s'", name);
6031a6e5
DE
1094 goto out_delete_net;
1095 }
1096
d4ef7c50 1097 if (!cgroup_enter(handler))
7fef7a06 1098 goto out_delete_net;
218d4250 1099
0996e18a
SH
1100 if (!cgroup_chown(handler))
1101 goto out_delete_net;
1102
99a6af52
MN
1103 if (failed_before_rename)
1104 goto out_delete_net;
1105
0ad19a3f 1106 /* Create the network configuration */
d5088cf2 1107 if (handler->clone_flags & CLONE_NEWNET) {
c43cbc04
SH
1108 if (lxc_assign_network(handler->lxcpath, handler->name,
1109 &handler->conf->network, handler->pid)) {
82d5ae15 1110 ERROR("failed to create the configured network");
7fef7a06 1111 goto out_delete_net;
82d5ae15 1112 }
0ad19a3f 1113 }
1114
658979c5
SH
1115 if (netpipe != -1) {
1116 struct lxc_list *iterator;
1117 struct lxc_netdev *netdev;
1118
1119 close(netpipe);
1120 lxc_list_for_each(iterator, &handler->conf->network) {
1121 netdev = iterator->elem;
1122 if (netdev->type != LXC_NET_VETH)
1123 continue;
1124 if (write(netpipepair[1], netdev->name, IFNAMSIZ) != IFNAMSIZ) {
1125 ERROR("Error writing veth name to container");
1126 goto out_delete_net;
1127 }
1128 }
1129 close(netpipepair[1]);
1130 }
1131
f6d3e3e4
SH
1132 /* map the container uids - the container became an invalid
1133 * userid the moment it was cloned with CLONE_NEWUSER - this
1134 * call doesn't change anything immediately, but allows the
1135 * container to setuid(0) (0 being mapped to something else on
1136 * the host) later to become a valid uid again */
1137 if (lxc_map_ids(&handler->conf->id_map, handler->pid)) {
1138 ERROR("failed to set up id mapping");
1139 goto out_delete_net;
1140 }
1141
544a48a0
SH
1142 /* Tell the child to continue its initialization. we'll get
1143 * LXC_SYNC_CGROUP when it is ready for us to setup cgroups
3c22086f
CLG
1144 */
1145 if (lxc_sync_barrier_child(handler, LXC_SYNC_POST_CONFIGURE))
544a48a0
SH
1146 goto out_delete_net;
1147
9daf6f5d 1148 if (!cgroup_setup_limits(handler, true)) {
b98f7d6e
SH
1149 ERROR("failed to setup the devices cgroup for '%s'", name);
1150 goto out_delete_net;
544a48a0
SH
1151 }
1152
73d28d42 1153 cgroup_disconnect();
7e4dfe0b 1154 cgroups_connected = false;
73d28d42 1155
e8bd4e43
SH
1156 /* read tty fds allocated by child */
1157 if (recv_ttys_from_child(handler) < 0) {
1158 ERROR("failed to receive tty info from child");
1159 goto out_delete_net;
1160 }
1161
544a48a0
SH
1162 /* Tell the child to complete its initialization and wait for
1163 * it to exec or return an error. (the child will never
1164 * return LXC_SYNC_POST_CGROUP+1. It will either close the
1165 * sync pipe, causing lxc_sync_barrier_child to return
1166 * success, or return a different value, causing us to error
1167 * out).
1168 */
1169 if (lxc_sync_barrier_child(handler, LXC_SYNC_POST_CGROUP))
3c22086f 1170 return -1;
0ad19a3f 1171
cc28d0b0
SH
1172 if (detect_shared_rootfs())
1173 umount2(handler->conf->rootfs.mount, MNT_DETACH);
1174
23c53af9 1175 if (handler->ops->post_start(handler, handler->data))
e6126dbe
MN
1176 goto out_abort;
1177
25c2aca5 1178 if (lxc_set_state(name, handler, RUNNING)) {
59eb99ba
DL
1179 ERROR("failed to set state to %s",
1180 lxc_state2str(RUNNING));
1181 goto out_abort;
3f21c114 1182 }
22ebac19 1183
3c22086f 1184 lxc_sync_fini(handler);
0c547523 1185
e6126dbe 1186 return 0;
1ac470c0 1187
7fef7a06 1188out_delete_net:
7e4dfe0b
SH
1189 if (cgroups_connected)
1190 cgroup_disconnect();
d5088cf2 1191 if (handler->clone_flags & CLONE_NEWNET)
74a2b586 1192 lxc_delete_network(handler);
59eb99ba
DL
1193out_abort:
1194 lxc_abort(name, handler);
3c22086f 1195 lxc_sync_fini(handler);
5c068da9
SH
1196 if (handler->pinfd >= 0) {
1197 close(handler->pinfd);
1198 handler->pinfd = -1;
1199 }
1200
b79fcd86 1201 return -1;
59eb99ba 1202}
0ad19a3f 1203
2af6bd1b
SH
1204int get_netns_fd(int pid)
1205{
1206 char path[MAXPATHLEN];
1207 int ret, fd;
1208
1209 ret = snprintf(path, MAXPATHLEN, "/proc/%d/ns/net", pid);
1210 if (ret < 0 || ret >= MAXPATHLEN) {
1211 WARN("Failed to pin netns file for pid %d", pid);
1212 return -1;
1213 }
1214
1215 fd = open(path, O_RDONLY);
1216 if (fd < 0) {
1217 WARN("Failed to pin netns file %s for pid %d: %s",
1218 path, pid, strerror(errno));
1219 return -1;
1220 }
1221 return fd;
1222}
1223
ee70bf78 1224int __lxc_start(const char *name, struct lxc_conf *conf,
507cee36
TA
1225 struct lxc_operations* ops, void *data, const char *lxcpath,
1226 bool backgrounded)
59eb99ba 1227{
3a0f472d 1228 struct lxc_handler *handler;
e043236e 1229 int err = -1;
59eb99ba 1230 int status;
2af6bd1b 1231 int netnsfd = -1;
80090207 1232
13f5be62 1233 handler = lxc_init(name, conf, lxcpath);
3a0f472d 1234 if (!handler) {
59eb99ba 1235 ERROR("failed to initialize the container");
66aeffc7 1236 return -1;
0ad19a3f 1237 }
ee70bf78
CLG
1238 handler->ops = ops;
1239 handler->data = data;
507cee36 1240 handler->backgrounded = backgrounded;
e6126dbe 1241
b60ed720 1242 if (must_drop_cap_sys_boot(handler->conf)) {
495d2046 1243 #if HAVE_SYS_CAPABILITY_H
959aee9c 1244 DEBUG("Dropping cap_sys_boot");
495d2046 1245 #else
959aee9c 1246 DEBUG("Can't drop cap_sys_boot as capabilities aren't supported");
495d2046 1247 #endif
69182a31 1248 } else {
959aee9c 1249 DEBUG("Not dropping cap_sys_boot or watching utmp");
69182a31
SH
1250 handler->conf->need_utmp_watch = 0;
1251 }
1252
76a26f55
SH
1253 if (!attach_block_device(handler->conf)) {
1254 ERROR("Failure attaching block device");
1255 goto out_fini_nonet;
1256 }
1257
35120d9c
SH
1258 if (geteuid() == 0 && !lxc_list_empty(&conf->id_map)) {
1259 /* if the backing store is a device, mount it here and now */
1260 if (rootfs_is_blockdev(conf)) {
1261 if (unshare(CLONE_NEWNS) < 0) {
1262 ERROR("Error unsharing mounts");
1263 goto out_fini_nonet;
1264 }
6a0c909a 1265 remount_all_slave();
35120d9c
SH
1266 if (do_rootfs_setup(conf, name, lxcpath) < 0) {
1267 ERROR("Error setting up rootfs mount as root before spawn");
1268 goto out_fini_nonet;
1269 }
1270 INFO("Set up container rootfs as host root");
1271 }
1272 }
1273
23c53af9 1274 err = lxc_spawn(handler);
59eb99ba 1275 if (err) {
ee70bf78 1276 ERROR("failed to spawn '%s'", name);
76a26f55 1277 goto out_detach_blockdev;
0ad19a3f 1278 }
1279
8bee8851
WB
1280 handler->conf->reboot = 0;
1281
2af6bd1b
SH
1282 netnsfd = get_netns_fd(handler->pid);
1283
3a0f472d 1284 err = lxc_poll(name, handler);
e043236e 1285 if (err) {
59eb99ba 1286 ERROR("mainloop exited with an error");
4b2f98f5
SH
1287 if (netnsfd >= 0)
1288 close(netnsfd);
59eb99ba
DL
1289 goto out_abort;
1290 }
0ad19a3f 1291
3a0f472d 1292 while (waitpid(handler->pid, &status, 0) < 0 && errno == EINTR)
1bc5cc8c 1293 continue;
e043236e 1294
8b004f07
SH
1295 /*
1296 * If the child process exited but was not signaled,
1297 * it didn't call reboot. This should mean it was an
1298 * lxc-execute which simply exited. In any case, treat
1299 * it as a 'halt'
1300 */
d028235d 1301 if (WIFSIGNALED(status)) {
8b004f07
SH
1302 switch(WTERMSIG(status)) {
1303 case SIGINT: /* halt */
1304 DEBUG("Container halting");
1305 break;
1306 case SIGHUP: /* reboot */
1307 DEBUG("Container rebooting");
1308 handler->conf->reboot = 1;
1309 break;
c2b9bd9e
SH
1310 case SIGSYS: /* seccomp */
1311 DEBUG("Container violated its seccomp policy");
1312 break;
8b004f07 1313 default:
959aee9c 1314 DEBUG("unknown exit status for init: %d", WTERMSIG(status));
8b004f07
SH
1315 break;
1316 }
d028235d 1317 }
828695d9 1318
ce5782df 1319 DEBUG("Pushing physical nics back to host namespace");
2af6bd1b 1320 lxc_rename_phys_nics_on_shutdown(netnsfd, handler->conf);
ce5782df
MH
1321
1322 DEBUG("Tearing down virtual network devices used by container");
1323 lxc_delete_network(handler);
1324
4b2f98f5
SH
1325 if (netnsfd >= 0)
1326 close(netnsfd);
7b35f3d6 1327
5c068da9
SH
1328 if (handler->pinfd >= 0) {
1329 close(handler->pinfd);
1330 handler->pinfd = -1;
1331 }
1332
1787abca 1333 lxc_monitor_send_exit_code(name, status, handler->lxcpath);
3a0f472d 1334 err = lxc_error_set_and_log(handler->pid, status);
9d7f9e52 1335out_fini:
74a2b586
JK
1336 lxc_delete_network(handler);
1337
76a26f55
SH
1338out_detach_blockdev:
1339 detach_block_device(handler->conf);
1340
74a2b586 1341out_fini_nonet:
3a0f472d 1342 lxc_fini(name, handler);
0ad19a3f 1343 return err;
1344
59eb99ba 1345out_abort:
3a0f472d 1346 lxc_abort(name, handler);
9d7f9e52 1347 goto out_fini;
0ad19a3f 1348}
ee70bf78
CLG
1349
1350struct start_args {
1351 char *const *argv;
1352};
1353
1354static int start(struct lxc_handler *handler, void* data)
1355{
1356 struct start_args *arg = data;
1357
1358 NOTICE("exec'ing '%s'", arg->argv[0]);
1359
1360 execvp(arg->argv[0], arg->argv);
1361 SYSERROR("failed to exec %s", arg->argv[0]);
1362 return 0;
1363}
1364
1365static int post_start(struct lxc_handler *handler, void* data)
1366{
1367 struct start_args *arg = data;
1368
1369 NOTICE("'%s' started with pid '%d'", arg->argv[0], handler->pid);
1370 return 0;
1371}
1372
1373static struct lxc_operations start_ops = {
1374 .start = start,
1375 .post_start = post_start
1376};
1377
13f5be62 1378int lxc_start(const char *name, char *const argv[], struct lxc_conf *conf,
507cee36 1379 const char *lxcpath, bool backgrounded)
ee70bf78
CLG
1380{
1381 struct start_args start_arg = {
1382 .argv = argv,
1383 };
1384
828695d9 1385 conf->need_utmp_watch = 1;
507cee36 1386 return __lxc_start(name, conf, &start_ops, &start_arg, lxcpath, backgrounded);
ee70bf78 1387}
28272964
CB
1388
1389static void lxc_destroy_container_on_signal(struct lxc_handler *handler,
1390 const char *name)
1391{
1392 char destroy[MAXPATHLEN];
1393 bool bret = true;
1394 int ret = 0;
f01f7975 1395 struct lxc_container *c;
df31363a 1396 if (handler->conf->rootfs.path && handler->conf->rootfs.mount) {
28272964
CB
1397 bret = do_destroy_container(handler->conf);
1398 if (!bret) {
1399 ERROR("Error destroying rootfs for %s", name);
1400 return;
1401 }
1402 }
1403 INFO("Destroyed rootfs for %s", name);
1404
1405 ret = snprintf(destroy, MAXPATHLEN, "%s/%s", handler->lxcpath, name);
1406 if (ret < 0 || ret >= MAXPATHLEN) {
1407 ERROR("Error printing path for %s", name);
1408 ERROR("Error destroying directory for %s", name);
1409 return;
1410 }
1411
f01f7975
CB
1412 c = lxc_container_new(name, handler->lxcpath);
1413 if (c) {
1414 if (container_disk_lock(c)) {
1415 INFO("Could not update lxc_snapshots file");
1416 lxc_container_put(c);
1417 } else {
1418 mod_all_rdeps(c, false);
1419 container_disk_unlock(c);
1420 lxc_container_put(c);
1421 }
1422 }
1423
28272964
CB
1424 if (am_unpriv())
1425 ret = userns_exec_1(handler->conf, lxc_rmdir_onedev_wrapper, destroy);
1426 else
1427 ret = lxc_rmdir_onedev(destroy, NULL);
1428
1429 if (ret < 0) {
1430 ERROR("Error destroying directory for %s", name);
1431 return;
1432 }
1433 INFO("Destroyed directory for %s", name);
1434}
1435
1436static int lxc_rmdir_onedev_wrapper(void *data)
1437{
1438 char *arg = (char *) data;
1439 return lxc_rmdir_onedev(arg, NULL);
1440}
1441
1442static bool do_destroy_container(struct lxc_conf *conf) {
d028235d
SG
1443 if (am_unpriv()) {
1444 if (userns_exec_1(conf, bdev_destroy_wrapper, conf) < 0)
1445 return false;
1446 return true;
1447 }
1448 return bdev_destroy(conf);
28272964
CB
1449}
1450