]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/start.c
lxc-execute: actually exit with the status of the spawned task
[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>
35a02107
CB
8 * Serge Hallyn <serge@hallyn.com>
9 * Christian Brauner <christian.brauner@ubuntu.com>
0ad19a3f 10 *
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
15 *
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
250b1eec 23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0ad19a3f 24 */
25
f3787121 26#define _GNU_SOURCE
f549edcc
GK
27#include "config.h"
28
f3787121 29#include <alloca.h>
0ad19a3f 30#include <dirent.h>
31#include <errno.h>
b0a33c1e 32#include <fcntl.h>
c476bdce 33#include <grp.h>
37515ebd 34#include <poll.h>
f3787121
CB
35#include <signal.h>
36#include <stdio.h>
37#include <stdlib.h>
38#include <string.h>
39#include <unistd.h>
0ad19a3f 40#include <sys/file.h>
f4d507d5 41#include <sys/mount.h>
f3787121 42#include <sys/param.h>
0ad19a3f 43#include <sys/prctl.h>
f3787121
CB
44#include <sys/socket.h>
45#include <sys/stat.h>
46#include <sys/syscall.h>
ddceb1f9 47#include <sys/types.h>
b0a33c1e 48#include <sys/un.h>
f3787121 49#include <sys/wait.h>
ff218c25 50
e37dda71 51#if HAVE_LIBCAP
495d2046
SG
52#include <sys/capability.h>
53#endif
54
995acccc 55#if !HAVE_DECL_PR_CAPBSET_DROP
656994bb
MH
56#define PR_CAPBSET_DROP 24
57#endif
58
995acccc 59#if !HAVE_DECL_PR_SET_NO_NEW_PRIVS
955e2a02
CB
60#define PR_SET_NO_NEW_PRIVS 38
61#endif
62
995acccc 63#if !HAVE_DECL_PR_GET_NO_NEW_PRIVS
955e2a02
CB
64#define PR_GET_NO_NEW_PRIVS 39
65#endif
66
f3787121
CB
67#include "af_unix.h"
68#include "caps.h"
563f2f2c 69#include "cgroup.h"
f3787121 70#include "commands.h"
bbf5cf35 71#include "commands_utils.h"
f3787121 72#include "conf.h"
74c6e2b0 73#include "confile_utils.h"
f3787121 74#include "console.h"
e2bcd7db 75#include "error.h"
1cc8bd4b 76#include "list.h"
f3787121 77#include "log.h"
f2d5a09d 78#include "lxccontainer.h"
f3787121
CB
79#include "lxclock.h"
80#include "lxcseccomp.h"
f3787121 81#include "mainloop.h"
63376d7d 82#include "monitor.h"
f549edcc 83#include "namespace.h"
811ef482 84#include "network.h"
f3787121 85#include "start.h"
28d832c4 86#include "storage.h"
f2d5a09d 87#include "storage_utils.h"
f3787121
CB
88#include "sync.h"
89#include "utils.h"
fe4de9a6 90#include "lsm/lsm.h"
36eb9bde
CLG
91
92lxc_log_define(lxc_start, lxc);
93
f01f7975 94extern void mod_all_rdeps(struct lxc_container *c, bool inc);
790255cf 95static bool do_destroy_container(struct lxc_handler *handler);
28272964
CB
96static int lxc_rmdir_onedev_wrapper(void *data);
97static void lxc_destroy_container_on_signal(struct lxc_handler *handler,
98 const char *name);
99
c8154066
SH
100static void print_top_failing_dir(const char *path)
101{
102 size_t len = strlen(path);
f3787121 103 char *copy = alloca(len + 1), *p, *e, saved;
c8154066
SH
104 strcpy(copy, path);
105
106 p = copy;
107 e = copy + len;
108 while (p < e) {
f3787121
CB
109 while (p < e && *p == '/')
110 p++;
111 while (p < e && *p != '/')
112 p++;
c8154066
SH
113 saved = *p;
114 *p = '\0';
115 if (access(copy, X_OK)) {
408da065
CB
116 SYSERROR("Could not access %s. Please grant it x "
117 "access, or add an ACL for the container "
118 "root.", copy);
c8154066
SH
119 return;
120 }
121 *p = saved;
122 }
123}
124
408da065
CB
125static void close_ns(int ns_fd[LXC_NS_MAX])
126{
9f30a190
MM
127 int i;
128
9f30a190
MM
129 for (i = 0; i < LXC_NS_MAX; i++) {
130 if (ns_fd[i] > -1) {
131 close(ns_fd[i]);
132 ns_fd[i] = -1;
133 }
134 }
9f30a190
MM
135}
136
4d8ac866 137/* preserve_ns: open /proc/@pid/ns/@ns for each namespace specified
62d05d9b 138 * in clone_flags.
4d8ac866 139 * Return true on success, false on failure.
62d05d9b 140 */
4d8ac866 141static bool preserve_ns(int ns_fd[LXC_NS_MAX], int clone_flags, pid_t pid)
f3787121 142{
62d05d9b 143 int i, ret;
9f30a190 144
9f30a190
MM
145 for (i = 0; i < LXC_NS_MAX; i++)
146 ns_fd[i] = -1;
147
4d8ac866
CB
148 ret = lxc_preserve_ns(pid, "");
149 if (ret < 0) {
150 SYSERROR("Kernel does not support attaching to namespaces.");
62d05d9b 151 return false;
4d8ac866
CB
152 } else {
153 close(ret);
cd43d2d1
SH
154 }
155
9f30a190
MM
156 for (i = 0; i < LXC_NS_MAX; i++) {
157 if ((clone_flags & ns_info[i].clone_flag) == 0)
158 continue;
28d9e29e 159
4d8ac866 160 ns_fd[i] = lxc_preserve_ns(pid, ns_info[i].proc_name);
9f30a190
MM
161 if (ns_fd[i] < 0)
162 goto error;
fa3a5b22
CB
163
164 DEBUG("Preserved %s namespace via fd %d", ns_info[i].proc_name, ns_fd[i]);
9f30a190
MM
165 }
166
62d05d9b 167 return true;
9f30a190
MM
168
169error:
4d8ac866
CB
170 if (errno == ENOENT)
171 SYSERROR("Kernel does not support attaching to %s namespaces.", ns_info[i].proc_name);
172 else
173 SYSERROR("Failed to open file descriptor for %s namespace: %s.", ns_info[i].proc_name, strerror(errno));
9f30a190 174 close_ns(ns_fd);
62d05d9b 175 return false;
9f30a190
MM
176}
177
80090207
CLG
178static int match_fd(int fd)
179{
180 return (fd == 0 || fd == 1 || fd == 2);
181}
182
47a46cf1
CB
183int lxc_check_inherited(struct lxc_conf *conf, bool closeall,
184 int *fds_to_ignore, size_t len_fds)
80090207 185{
74f96976 186 struct dirent *direntp;
80090207 187 int fd, fddir;
47a46cf1 188 size_t i;
80090207 189 DIR *dir;
80090207 190
d2cf4c37
SH
191 if (conf && conf->close_all_fds)
192 closeall = true;
193
b119f362 194restart:
80090207
CLG
195 dir = opendir("/proc/self/fd");
196 if (!dir) {
13277ec4 197 WARN("Failed to open directory: %s.", strerror(errno));
80090207
CLG
198 return -1;
199 }
200
201 fddir = dirfd(dir);
202
74f96976 203 while ((direntp = readdir(dir))) {
d39b10eb
CB
204 struct lxc_list *cur;
205 bool matched = false;
206
80090207
CLG
207 if (!strcmp(direntp->d_name, "."))
208 continue;
209
210 if (!strcmp(direntp->d_name, ".."))
211 continue;
212
d4cff0d2
CB
213 if (lxc_safe_int(direntp->d_name, &fd) < 0) {
214 INFO("Could not parse file descriptor for: %s", direntp->d_name);
215 continue;
216 }
80090207 217
47a46cf1
CB
218 for (i = 0; i < len_fds; i++)
219 if (fds_to_ignore[i] == fd)
220 break;
221
222 if (fd == fddir || fd == lxc_log_fd ||
223 (i < len_fds && fd == fds_to_ignore[i]))
80090207
CLG
224 continue;
225
d39b10eb 226 /* Keep state clients that wait on reboots. */
3ee9e4fb
CB
227 if (conf) {
228 lxc_list_for_each(cur, &conf->state_clients) {
229 struct lxc_state_client *client = cur->elem;
d39b10eb 230
3ee9e4fb
CB
231 if (client->clientfd != fd)
232 continue;
d39b10eb 233
3ee9e4fb
CB
234 matched = true;
235 break;
236 }
d39b10eb
CB
237 }
238
239 if (matched)
240 continue;
241
858377e4
SH
242 if (current_config && fd == current_config->logfd)
243 continue;
244
80090207
CLG
245 if (match_fd(fd))
246 continue;
80090207 247
d2cf4c37 248 if (closeall) {
b119f362
SH
249 close(fd);
250 closedir(dir);
28d9e29e 251 INFO("Closed inherited fd %d", fd);
b119f362
SH
252 goto restart;
253 }
28d9e29e 254 WARN("Inherited fd %d", fd);
80090207
CLG
255 }
256
408da065 257 /* Only enable syslog at this point to avoid the above logging function
64c57ea1
BD
258 * to open a new fd and make the check_inherited function enter an
259 * infinite loop.
260 */
261 lxc_log_enable_syslog();
262
92c7f629
GK
263 closedir(dir); /* cannot fail */
264 return 0;
80090207
CLG
265}
266
83ee7875 267static int setup_signal_fd(sigset_t *oldmask)
b0a33c1e 268{
df0795b1 269 int ret, sig;
b0a33c1e 270 sigset_t mask;
df0795b1 271 int signals[] = {SIGBUS, SIGILL, SIGSEGV, SIGWINCH};
b0a33c1e 272
408da065 273 /* Block everything except serious error signals. */
df0795b1
CB
274 ret = sigfillset(&mask);
275 if (ret < 0)
276 return -EBADF;
277
278 for (sig = 0; sig < (sizeof(signals) / sizeof(signals[0])); sig++) {
279 ret = sigdelset(&mask, signals[sig]);
280 if (ret < 0)
281 return -EBADF;
b0a33c1e 282 }
283
df0795b1
CB
284 ret = sigprocmask(SIG_BLOCK, &mask, oldmask);
285 if (ret < 0) {
286 SYSERROR("Failed to set signal mask");
287 return -EBADF;
b0a33c1e 288 }
289
df0795b1
CB
290 ret = signalfd(-1, &mask, SFD_CLOEXEC);
291 if (ret < 0) {
292 SYSERROR("Failed to create signal file descriptor");
293 return -EBADF;
b0a33c1e 294 }
295
df0795b1 296 TRACE("Created signal file descriptor %d", ret);
1ac470c0 297
df0795b1 298 return ret;
b0a33c1e 299}
300
84c92abd 301static int signal_handler(int fd, uint32_t events, void *data,
f3787121 302 struct lxc_epoll_descr *descr)
b0a33c1e 303{
15cd25fd 304 int ret;
3c319edb
CB
305 siginfo_t info;
306 struct signalfd_siginfo siginfo;
307 struct lxc_handler *hdlr = data;
15cd25fd
DL
308
309 ret = read(fd, &siginfo, sizeof(siginfo));
310 if (ret < 0) {
408da065 311 ERROR("Failed to read signal info from signal file descriptor: %d.", fd);
15cd25fd
DL
312 return -1;
313 }
314
315 if (ret != sizeof(siginfo)) {
408da065 316 ERROR("Unexpected size for siginfo struct.");
15cd25fd
DL
317 return -1;
318 }
319
408da065 320 /* Check whether init is running. */
80507ee8 321 info.si_pid = 0;
3c319edb
CB
322 ret = waitid(P_PID, hdlr->pid, &info, WEXITED | WNOWAIT | WNOHANG);
323 if (ret == 0 && info.si_pid == hdlr->pid)
324 hdlr->init_died = true;
80507ee8 325
cd5177e9
TA
326 /* Try to figure out a reasonable exit status to report. */
327 if (hdlr->init_died) {
328 switch (info.si_code) {
329 case CLD_EXITED:
330 hdlr->exit_status = info.si_status << 8;
331 break;
332 case CLD_KILLED:
333 case CLD_DUMPED:
334 case CLD_STOPPED:
335 hdlr->exit_status = info.si_status << 8 | 0x7f;
336 break;
337 case CLD_CONTINUED:
338 /* Huh? The waitid() told us it's dead *and* continued? */
339 WARN("Init %d dead and continued?", hdlr->pid);
340 hdlr->exit_status = 1;
341 break;
342 default:
343 ERROR("Unknown si_code: %d", hdlr->init_died);
344 }
345 }
346
3a9e949f
TA
347 /* More robustness, protect ourself from a SIGCHLD sent
348 * by a process different from the container init.
349 */
350 if (siginfo.ssi_pid != hdlr->pid) {
351 NOTICE("Received %d from pid %d instead of container init %d.", siginfo.ssi_signo, siginfo.ssi_pid, hdlr->pid);
352 return hdlr->init_died ? LXC_MAINLOOP_CLOSE : 0;
353 }
354
f3304a29 355 if (siginfo.ssi_signo != SIGCHLD) {
3c319edb
CB
356 kill(hdlr->pid, siginfo.ssi_signo);
357 INFO("Forwarded signal %d to pid %d.", siginfo.ssi_signo, hdlr->pid);
358 return hdlr->init_died ? LXC_MAINLOOP_CLOSE : 0;
f3304a29
FW
359 }
360
408da065
CB
361 if (siginfo.ssi_code == CLD_STOPPED) {
362 INFO("Container init process was stopped.");
3c319edb 363 return hdlr->init_died ? LXC_MAINLOOP_CLOSE : 0;
408da065
CB
364 } else if (siginfo.ssi_code == CLD_CONTINUED) {
365 INFO("Container init process was continued.");
3c319edb 366 return hdlr->init_died ? LXC_MAINLOOP_CLOSE : 0;
15cd25fd 367 }
1ac470c0 368
3c319edb
CB
369 DEBUG("Container init process %d exited.", hdlr->pid);
370 return LXC_MAINLOOP_CLOSE;
b0a33c1e 371}
372
974a8aba
CB
373int lxc_serve_state_clients(const char *name, struct lxc_handler *handler,
374 lxc_state_t state)
66aeffc7 375{
dbc9832d
CB
376 ssize_t ret;
377 struct lxc_list *cur, *next;
d39b10eb 378 struct lxc_state_client *client;
dbc9832d
CB
379 struct lxc_msg msg = {.type = lxc_msg_state, .value = state};
380
bc631984 381 process_lock();
974a8aba
CB
382 if (state == THAWED)
383 handler->state = RUNNING;
384 else
385 handler->state = state;
386
9dfa4041 387 TRACE("Set container state to %s", lxc_state2str(state));
dbc9832d 388
d39b10eb 389 if (lxc_list_empty(&handler->conf->state_clients)) {
9dfa4041 390 TRACE("No state clients registered");
dbc9832d 391 process_unlock();
65ee1673 392 lxc_monitor_send_state(name, state, handler->lxcpath);
dbc9832d
CB
393 return 0;
394 }
395
396 strncpy(msg.name, name, sizeof(msg.name));
397 msg.name[sizeof(msg.name) - 1] = 0;
398
d39b10eb 399 lxc_list_for_each_safe(cur, &handler->conf->state_clients, next) {
dbc9832d
CB
400 client = cur->elem;
401
d39b10eb 402 if (client->states[state] == 0) {
9dfa4041 403 TRACE("State %s not registered for state client %d",
dbc9832d
CB
404 lxc_state2str(state), client->clientfd);
405 continue;
406 }
407
9dfa4041 408 TRACE("Sending state %s to state client %d",
dbc9832d
CB
409 lxc_state2str(state), client->clientfd);
410
411 again:
412 ret = send(client->clientfd, &msg, sizeof(msg), 0);
ee8377bd
CB
413 if (ret <= 0) {
414 if (errno == EINTR) {
415 TRACE("Caught EINTR; retrying");
dbc9832d 416 goto again;
ee8377bd 417 }
dbc9832d 418
9dfa4041
CB
419 ERROR("%s - Failed to send message to client",
420 strerror(errno));
dbc9832d
CB
421 }
422
423 /* kick client from list */
424 close(client->clientfd);
425 lxc_list_del(cur);
426 free(cur->elem);
427 free(cur);
428 }
429 process_unlock();
430
5e5576a4
CB
431 return 0;
432}
433
434static int lxc_serve_state_socket_pair(const char *name,
435 struct lxc_handler *handler,
436 lxc_state_t state)
437{
438 ssize_t ret;
439
440 if (!handler->backgrounded ||
441 handler->state_socket_pair[1] < 0 ||
442 state == STARTING)
443 return 0;
444
445 /* Close read end of the socket pair. */
446 close(handler->state_socket_pair[0]);
447 handler->state_socket_pair[0] = -1;
448
ee8377bd 449again:
5e5576a4
CB
450 ret = lxc_abstract_unix_send_credential(handler->state_socket_pair[1],
451 &(int){state}, sizeof(int));
ee8377bd
CB
452 if (ret != sizeof(int)) {
453 if (errno == EINTR)
454 goto again;
5e5576a4
CB
455 SYSERROR("Failed to send state to %d",
456 handler->state_socket_pair[1]);
ee8377bd
CB
457 return -1;
458 }
5e5576a4
CB
459
460 TRACE("Sent container state \"%s\" to %d", lxc_state2str(state),
461 handler->state_socket_pair[1]);
462
463 /* Close write end of the socket pair. */
464 close(handler->state_socket_pair[1]);
465 handler->state_socket_pair[1] = -1;
466
467 return 0;
468}
469
470int lxc_set_state(const char *name, struct lxc_handler *handler,
471 lxc_state_t state)
472{
473 int ret;
474
475 ret = lxc_serve_state_socket_pair(name, handler, state);
476 if (ret < 0) {
477 ERROR("Failed to synchronize via anonymous pair of unix sockets");
478 return -1;
479 }
480
481 ret = lxc_serve_state_clients(name, handler, state);
482 if (ret < 0)
483 return -1;
484
dbc9832d
CB
485 /* This function will try to connect to the legacy lxc-monitord state
486 * server and only exists for backwards compatibility.
487 */
9123e471 488 lxc_monitor_send_state(name, state, handler->lxcpath);
dbc9832d 489
66aeffc7
DL
490 return 0;
491}
492
735f2c6e 493int lxc_poll(const char *name, struct lxc_handler *handler)
b0a33c1e 494{
3c319edb 495 int ret;
30a33fbd 496 bool has_console = (handler->conf->rootfs.path != NULL);
3c319edb 497 struct lxc_epoll_descr descr, descr_console;
b0a33c1e 498
3c319edb
CB
499 ret = lxc_mainloop_open(&descr);
500 if (ret < 0) {
501 ERROR("Failed to create mainloop");
50c8bf05 502 goto out_sigfd;
b0a33c1e 503 }
504
30a33fbd
CB
505 if (has_console) {
506 ret = lxc_mainloop_open(&descr_console);
507 if (ret < 0) {
508 ERROR("Failed to create console mainloop");
509 goto out_mainloop;
510 }
3c319edb
CB
511 }
512
1cc8bd4b 513 ret = lxc_mainloop_add_handler(&descr, handler->sigfd, signal_handler, handler);
3c319edb 514 if (ret < 0) {
1cc8bd4b 515 ERROR("Failed to add signal handler for %d to mainloop", handler->sigfd);
3c319edb 516 goto out_mainloop_console;
b0a33c1e 517 }
518
30a33fbd
CB
519 if (has_console) {
520 struct lxc_console *console = &handler->conf->console;
63376d7d 521
30a33fbd
CB
522 ret = lxc_console_mainloop_add(&descr, console);
523 if (ret < 0) {
524 ERROR("Failed to add console handlers to mainloop");
525 goto out_mainloop_console;
526 }
527
528 ret = lxc_console_mainloop_add(&descr_console, console);
529 if (ret < 0) {
530 ERROR("Failed to add console handlers to console mainloop");
531 goto out_mainloop_console;
532 }
563f2f2c
DL
533 }
534
3c319edb
CB
535 ret = lxc_cmd_mainloop_add(name, &descr, handler);
536 if (ret < 0) {
537 ERROR("Failed to add command handler to mainloop");
538 goto out_mainloop_console;
539 }
b0a33c1e 540
3c319edb 541 TRACE("Mainloop is ready");
b0a33c1e 542
3c319edb 543 ret = lxc_mainloop(&descr, -1);
1cc8bd4b
CB
544 close(descr.epfd);
545 descr.epfd = -EBADF;
546 if (ret < 0 || !handler->init_died)
547 goto out_mainloop;
548
30a33fbd
CB
549 if (has_console)
550 ret = lxc_mainloop(&descr_console, 0);
551
3c319edb
CB
552
553out_mainloop:
b0a33c1e 554 lxc_mainloop_close(&descr);
1cc8bd4b 555 TRACE("Closed mainloop");
408da065 556
3c319edb 557out_mainloop_console:
30a33fbd
CB
558 if (has_console) {
559 lxc_mainloop_close(&descr_console);
560 TRACE("Closed console mainloop");
561 }
3c319edb 562
b0a33c1e 563out_sigfd:
1cc8bd4b
CB
564 close(handler->sigfd);
565 TRACE("Closed signal file descriptor %d", handler->sigfd);
566 handler->sigfd = -EBADF;
408da065 567
1cc8bd4b 568 return ret;
b0a33c1e 569}
570
41784e4e
CB
571void lxc_zero_handler(struct lxc_handler *handler)
572{
573 int i;
574
575 memset(handler, 0, sizeof(struct lxc_handler));
576
577 handler->clone_flags = -1;
578
579 handler->pinfd = -1;
580
581 handler->sigfd = -1;
582
583 for (i = 0; i < LXC_NS_MAX; i++)
584 handler->nsfd[i] = -1;
585
586 handler->data_sock[0] = -1;
587 handler->data_sock[1] = -1;
588
589 handler->state_socket_pair[0] = -1;
590 handler->state_socket_pair[1] = -1;
591
592 handler->sync_sock[0] = -1;
593 handler->sync_sock[1] = -1;
594}
595
1cc8bd4b
CB
596static void lxc_put_nsfds(struct lxc_handler *handler)
597{
598 int i;
599
600 for (i = 0; i < LXC_NS_MAX; i++) {
601 if (handler->nsfd[i] < 0)
602 continue;
603
604 close(handler->nsfd[i]);
605 handler->nsfd[i] = -EBADF;
606 }
607}
608
f2e07cb6
CB
609void lxc_free_handler(struct lxc_handler *handler)
610{
1cc8bd4b
CB
611 if (handler->pinfd >= 0)
612 close(handler->pinfd);
613
614 if (handler->sigfd >= 0)
615 close(handler->sigfd);
616
617 lxc_put_nsfds(handler);
618
619 if (handler->conf && handler->conf->reboot == 0)
620 if (handler->conf->maincmd_fd)
621 close(handler->conf->maincmd_fd);
f2e07cb6 622
5e5576a4
CB
623 if (handler->state_socket_pair[0] >= 0)
624 close(handler->state_socket_pair[0]);
625
626 if (handler->state_socket_pair[1] >= 0)
627 close(handler->state_socket_pair[1]);
628
f2e07cb6
CB
629 handler->conf = NULL;
630 free(handler);
1cc8bd4b 631 handler = NULL;
f2e07cb6
CB
632}
633
aa460476 634struct lxc_handler *lxc_init_handler(const char *name, struct lxc_conf *conf,
5e5576a4 635 const char *lxcpath, bool daemonize)
59eb99ba 636{
5e5576a4 637 int i, ret;
3a0f472d
DL
638 struct lxc_handler *handler;
639
640 handler = malloc(sizeof(*handler));
aa460476
CB
641 if (!handler) {
642 ERROR("failed to allocate memory");
3a0f472d 643 return NULL;
aa460476 644 }
59eb99ba
DL
645
646 memset(handler, 0, sizeof(*handler));
647
790255cf
CB
648 /* Note that am_unpriv() checks the effective uid. We probably don't
649 * care if we are real root only if we are running as root so this
650 * should be fine.
651 */
d0fbc7ba 652 handler->am_root = !am_unpriv();
c6012571 653 handler->data_sock[0] = handler->data_sock[1] = -1;
fae349da 654 handler->conf = conf;
9123e471 655 handler->lxcpath = lxcpath;
5c068da9 656 handler->pinfd = -1;
1cc8bd4b
CB
657 handler->sigfd = -EBADF;
658 handler->init_died = false;
5e5576a4 659 handler->state_socket_pair[0] = handler->state_socket_pair[1] = -1;
d39b10eb
CB
660 if (handler->conf->reboot == 0)
661 lxc_list_init(&handler->conf->state_clients);
fae349da 662
b6b2b194
WB
663 for (i = 0; i < LXC_NS_MAX; i++)
664 handler->nsfd[i] = -1;
665
f0ecc19d 666 handler->name = name;
3bdf52d7 667
5e5576a4
CB
668 if (daemonize && !handler->conf->reboot) {
669 /* Create socketpair() to synchronize on daemonized startup.
670 * When the container reboots we don't need to synchronize again
671 * currently so don't open another socketpair().
672 */
673 ret = socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0,
674 handler->state_socket_pair);
675 if (ret < 0) {
676 ERROR("Failed to create anonymous pair of unix sockets");
677 goto on_error;
678 }
679 TRACE("Created anonymous pair {%d,%d} of unix sockets",
680 handler->state_socket_pair[0],
681 handler->state_socket_pair[1]);
682 }
683
d39b10eb
CB
684 if (handler->conf->reboot == 0) {
685 handler->conf->maincmd_fd = lxc_cmd_init(name, lxcpath, "command");
686 if (handler->conf->maincmd_fd < 0) {
687 ERROR("Failed to set up command socket");
688 goto on_error;
689 }
aa460476 690 }
9dfa4041 691 TRACE("Unix domain socket %d for command server is ready",
aa460476
CB
692 handler->conf->maincmd_fd);
693
694 return handler;
695
f2e07cb6
CB
696on_error:
697 lxc_free_handler(handler);
aa460476
CB
698
699 return NULL;
700}
701
702int lxc_init(const char *name, struct lxc_handler *handler)
703{
a2c09be0 704 int ret;
4a03ded4 705 const char *loglevel;
aa460476
CB
706 struct lxc_conf *conf = handler->conf;
707
708 lsm_init();
709 TRACE("initialized LSM");
d2e30e99 710
8f2c3a70 711 if (lxc_read_seccomp_config(conf) != 0) {
408da065 712 ERROR("Failed loading seccomp policy.");
d2e30e99 713 goto out_close_maincmd_fd;
8f2c3a70 714 }
dbc9832d 715 TRACE("read seccomp policy");
8f2c3a70 716
408da065 717 /* Begin by setting the state to STARTING. */
25c2aca5 718 if (lxc_set_state(name, handler, STARTING)) {
408da065 719 ERROR("Failed to set state for container \"%s\" to \"%s\".", name, lxc_state2str(STARTING));
051151de 720 goto out_close_maincmd_fd;
0ad19a3f 721 }
dbc9832d 722 TRACE("set container state to \"STARTING\"");
0ad19a3f 723
408da065
CB
724 /* Start of environment variable setup for hooks. */
725 if (name && setenv("LXC_NAME", name, 1))
726 SYSERROR("Failed to set environment variable: LXC_NAME=%s.", name);
727
728 if (conf->rcfile && setenv("LXC_CONFIG_FILE", conf->rcfile, 1))
729 SYSERROR("Failed to set environment variable: LXC_CONFIG_FILE=%s.", conf->rcfile);
730
731 if (conf->rootfs.mount && setenv("LXC_ROOTFS_MOUNT", conf->rootfs.mount, 1))
732 SYSERROR("Failed to set environment variable: LXC_ROOTFS_MOUNT=%s.", conf->rootfs.mount);
733
734 if (conf->rootfs.path && setenv("LXC_ROOTFS_PATH", conf->rootfs.path, 1))
735 SYSERROR("Failed to set environment variable: LXC_ROOTFS_PATH=%s.", conf->rootfs.path);
736
737 if (conf->console.path && setenv("LXC_CONSOLE", conf->console.path, 1))
738 SYSERROR("Failed to set environment variable: LXC_CONSOLE=%s.", conf->console.path);
739
740 if (conf->console.log_path && setenv("LXC_CONSOLE_LOGPATH", conf->console.log_path, 1))
741 SYSERROR("Failed to set environment variable: LXC_CONSOLE_LOGPATH=%s.", conf->console.log_path);
742
743 if (setenv("LXC_CGNS_AWARE", "1", 1))
744 SYSERROR("Failed to set environment variable LXC_CGNS_AWARE=1.");
b8f88d9b 745
4a03ded4
CB
746 loglevel = lxc_log_priority_to_string(lxc_log_get_level());
747 if (setenv("LXC_LOG_LEVEL", loglevel, 1))
748 SYSERROR("Failed to set environment variable LXC_LOG_LEVEL=%s", loglevel);
a2c09be0
CB
749
750 if (conf->hooks_version == 0)
751 ret = setenv("LXC_HOOK_VERSION", "0", 1);
752 else
753 ret = setenv("LXC_HOOK_VERSION", "1", 1);
754 if (ret < 0)
755 SYSERROR("Failed to set environment variable LXC_HOOK_VERSION=%u", conf->hooks_version);
408da065 756 /* End of environment variable setup for hooks. */
f7bee6c6 757
dbc9832d
CB
758 TRACE("set environment variables");
759
14a7b0f9 760 if (run_lxc_hooks(name, "pre-start", conf, NULL)) {
408da065 761 ERROR("Failed to run lxc.hook.pre-start for container \"%s\".", name);
773fb9ca
SH
762 goto out_aborting;
763 }
dbc9832d 764 TRACE("ran pre-start hooks");
26ddeedd 765
408da065
CB
766 /* The signal fd has to be created before forking otherwise if the child
767 * process exits before we setup the signal fd, the event will be lost
768 * and the command will be stuck.
769 */
83ee7875 770 handler->sigfd = setup_signal_fd(&handler->oldmask);
59eb99ba 771 if (handler->sigfd < 0) {
408da065 772 ERROR("Failed to setup SIGCHLD fd handler.");
b5159817
DE
773 goto out_delete_tty;
774 }
dbc9832d 775 TRACE("set up signal fd");
b5159817 776
408da065 777 /* Do this after setting up signals since it might unblock SIGWINCH. */
4d1ffb0a
CB
778 ret = lxc_console_create(conf);
779 if (ret < 0) {
780 ERROR("Failed to create console");
b5159817 781 goto out_restore_sigmask;
b0a33c1e 782 }
4d1ffb0a 783 TRACE("Created console");
b0a33c1e 784
7cfeddd7
CB
785 ret = lxc_pty_map_ids(conf, &conf->console);
786 if (ret < 0) {
408da065 787 ERROR("Failed to shift tty into container.");
c4d10a05
SH
788 goto out_restore_sigmask;
789 }
dbc9832d 790 TRACE("shifted tty ids");
c4d10a05 791
dbc9832d 792 INFO("container \"%s\" is initialized", name);
aa460476 793 return 0;
59eb99ba 794
b5159817
DE
795out_restore_sigmask:
796 sigprocmask(SIG_SETMASK, &handler->oldmask, NULL);
59eb99ba 797out_delete_tty:
fae349da 798 lxc_delete_tty(&conf->tty_info);
59eb99ba 799out_aborting:
25c2aca5 800 lxc_set_state(name, handler, ABORTING);
d2e30e99
DE
801out_close_maincmd_fd:
802 close(conf->maincmd_fd);
803 conf->maincmd_fd = -1;
aa460476 804 return -1;
59eb99ba
DL
805}
806
3b72c4a0 807void lxc_fini(const char *name, struct lxc_handler *handler)
59eb99ba 808{
b3286b62 809 int i, rc;
18b3b9c1 810 pid_t self;
dbc9832d 811 struct lxc_list *cur, *next;
dbc9832d 812 char *namespaces[LXC_NS_MAX + 1];
b3286b62 813 size_t namespace_count = 0;
b6b2b194 814
408da065
CB
815 /* The STOPPING state is there for future cleanup code which can take
816 * awhile.
59eb99ba 817 */
25c2aca5 818 lxc_set_state(name, handler, STOPPING);
b6b2b194 819
0059379f 820 self = lxc_raw_getpid();
b3286b62 821 for (i = 0; i < LXC_NS_MAX; i++) {
18b3b9c1
CB
822 if (handler->nsfd[i] < 0)
823 continue;
824
825 if (handler->conf->hooks_version == 0)
826 rc = asprintf(&namespaces[namespace_count],
827 "%s:/proc/%d/fd/%d", ns_info[i].proc_name,
828 self, handler->nsfd[i]);
829 else
830 rc = asprintf(&namespaces[namespace_count],
831 "/proc/%d/fd/%d", self, handler->nsfd[i]);
832 if (rc == -1) {
833 SYSERROR("Failed to allocate memory.");
834 break;
b3286b62 835 }
18b3b9c1
CB
836
837 if (handler->conf->hooks_version == 0) {
838 namespace_count++;
839 continue;
840 }
841
842 rc = setenv(ns_info[i].env_name, namespaces[namespace_count], 1);
843 if (rc < 0)
844 SYSERROR("Failed to set environment variable %s=%s",
845 ns_info[i].env_name, namespaces[namespace_count]);
846 else
847 TRACE("Set environment variable %s=%s",
848 ns_info[i].env_name, namespaces[namespace_count]);
849
850 namespace_count++;
b3286b62
WB
851 }
852 namespaces[namespace_count] = NULL;
c154af98 853
408da065
CB
854 if (handler->conf->reboot && setenv("LXC_TARGET", "reboot", 1))
855 SYSERROR("Failed to set environment variable: LXC_TARGET=reboot.");
856
857 if (!handler->conf->reboot && setenv("LXC_TARGET", "stop", 1))
858 SYSERROR("Failed to set environment variable: LXC_TARGET=stop.");
c154af98 859
18b3b9c1 860 if (handler->conf->hooks_version == 0)
14a7b0f9 861 rc = run_lxc_hooks(name, "stop", handler->conf, namespaces);
18b3b9c1 862 else
14a7b0f9 863 rc = run_lxc_hooks(name, "stop", handler->conf, NULL);
c154af98 864
b3286b62
WB
865 while (namespace_count--)
866 free(namespaces[namespace_count]);
28d9e29e 867
4288b79f
CB
868 cgroup_destroy(handler);
869
d39b10eb 870 if (handler->conf->reboot == 0) {
f893d898
CB
871 /* For all new state clients simply close the command socket.
872 * This will inform all state clients that the container is
873 * STOPPED and also prevents a race between a open()/close() on
874 * the command socket causing a new process to get ECONNREFUSED
875 * because we haven't yet closed the command socket.
876 */
d39b10eb
CB
877 close(handler->conf->maincmd_fd);
878 handler->conf->maincmd_fd = -1;
c3184275
CB
879 TRACE("Closed command socket");
880
881 /* This function will try to connect to the legacy lxc-monitord
882 * state server and only exists for backwards compatibility.
883 */
884 lxc_monitor_send_state(name, STOPPED, handler->lxcpath);
885
886 /* The command socket is closed so no one can acces the command
887 * socket anymore so there's no need to lock it.
888 */
889 handler->state = STOPPED;
890 TRACE("Set container state to \"STOPPED\"");
f893d898
CB
891 } else {
892 lxc_set_state(name, handler, STOPPED);
d39b10eb 893 }
4288b79f 894
14a7b0f9 895 if (run_lxc_hooks(name, "post-stop", handler->conf, NULL)) {
408da065 896 ERROR("Failed to run lxc.hook.post-stop for container \"%s\".", name);
f3787121
CB
897 if (handler->conf->reboot) {
898 WARN("Container will be stopped instead of rebooted.");
899 handler->conf->reboot = 0;
408da065
CB
900 if (setenv("LXC_TARGET", "stop", 1))
901 WARN("Failed to set environment variable: LXC_TARGET=stop.");
f3787121
CB
902 }
903 }
26ddeedd 904
408da065 905 /* Reset mask set by setup_signal_fd. */
8f64a3f6 906 if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL))
408da065 907 WARN("Failed to restore signal mask.");
8f64a3f6 908
b5159817 909 lxc_console_delete(&handler->conf->console);
b2431939 910 lxc_delete_tty(&handler->conf->tty_info);
dbc9832d 911
dbc9832d
CB
912 /* The command socket is now closed, no more state clients can register
913 * themselves from now on. So free the list of state clients.
914 */
d39b10eb
CB
915 lxc_list_for_each_safe(cur, &handler->conf->state_clients, next) {
916 struct lxc_state_client *client = cur->elem;
917
918 /* Keep state clients that want to be notified about reboots. */
919 if ((handler->conf->reboot > 0) && (client->states[RUNNING] == 2))
920 continue;
921
dbc9832d
CB
922 /* close state client socket */
923 close(client->clientfd);
924 lxc_list_del(cur);
925 free(cur->elem);
926 free(cur);
927 }
928
2c5f2ede 929 if (handler->conf->ephemeral == 1 && handler->conf->reboot != 1)
28272964 930 lxc_destroy_container_on_signal(handler, name);
2c5f2ede 931
1cc8bd4b 932 lxc_free_handler(handler);
59eb99ba
DL
933}
934
735f2c6e 935void lxc_abort(const char *name, struct lxc_handler *handler)
59eb99ba 936{
73e608b2
SH
937 int ret, status;
938
25c2aca5 939 lxc_set_state(name, handler, ABORTING);
7d9fb3e9
DL
940 if (handler->pid > 0)
941 kill(handler->pid, SIGKILL);
408da065
CB
942 while ((ret = waitpid(-1, &status, 0)) > 0) {
943 ;
944 }
59eb99ba
DL
945}
946
18225d19
CB
947static int lxc_set_death_signal(int signal)
948{
949 int ret;
950 pid_t ppid;
951
952 ret = prctl(PR_SET_PDEATHSIG, signal, 0, 0, 0);
953
954 /* Check whether we have been orphaned. */
955 ppid = (pid_t)syscall(SYS_getppid);
956 if (ppid == 1) {
957 pid_t self;
958
959 self = lxc_raw_getpid();
960 ret = kill(self, SIGKILL);
961 if (ret < 0)
962 return -1;
963 }
964
965 if (ret < 0) {
966 SYSERROR("Failed to set PR_SET_PDEATHSIG to %d", signal);
967 return -1;
968 }
969
970 return 0;
971}
972
ffe1e01a 973static int do_start(void *data)
50e98013 974{
8bf3abfb 975 int ret;
7c661726 976 struct lxc_list *iterator;
7a55c157 977 char path[PATH_MAX];
fa3a5b22 978 struct lxc_handler *handler = data;
928b1f04
YT
979 bool have_cap_setgid;
980 uid_t new_uid;
981 gid_t new_gid;
5af9369b 982 int devnull_fd = -1;
50e98013 983
18225d19 984 lxc_sync_fini_parent(handler);
50e98013 985
408da065
CB
986 /* This prctl must be before the synchro, so if the parent dies before
987 * we set the parent death signal, we will detect its death with the
988 * synchro right after, otherwise we have a window where the parent can
989 * exit before we set the pdeath signal leading to a unsupervized
990 * container.
743ecd2e 991 */
18225d19 992 ret = lxc_set_death_signal(SIGKILL);
912314fc
CB
993 if (ret < 0) {
994 SYSERROR("Failed to set PR_SET_PDEATHSIG to SIGKILL");
18225d19 995 goto out_warn_father;
743ecd2e
DL
996 }
997
18225d19
CB
998 ret = sigprocmask(SIG_SETMASK, &handler->oldmask, NULL);
999 if (ret < 0) {
1000 SYSERROR("Failed to set signal mask");
1001 goto out_warn_father;
1002 }
50e98013 1003
408da065 1004 /* Don't leak the pinfd to the container. */
d39b10eb 1005 if (handler->pinfd >= 0)
0d03360a 1006 close(handler->pinfd);
2b0e17e4 1007
18225d19
CB
1008 ret = lxc_sync_wait_parent(handler, LXC_SYNC_STARTUP);
1009 if (ret < 0)
1010 goto out_warn_father;
5b1e83cb 1011
408da065
CB
1012 /* Unshare CLONE_NEWNET after CLONE_NEWUSER. See
1013 * https://github.com/lxc/lxd/issues/1978.
1014 */
5b1e83cb 1015 if ((handler->clone_flags & (CLONE_NEWNET | CLONE_NEWUSER)) ==
408da065 1016 (CLONE_NEWNET | CLONE_NEWUSER)) {
5b1e83cb
SH
1017 ret = unshare(CLONE_NEWNET);
1018 if (ret < 0) {
408da065 1019 SYSERROR("Failed to unshare CLONE_NEWNET.");
5b1e83cb
SH
1020 goto out_warn_father;
1021 }
408da065 1022 INFO("Unshared CLONE_NEWNET.");
5b1e83cb
SH
1023 }
1024
408da065
CB
1025 /* Tell the parent task it can begin to configure the container and wait
1026 * for it to finish.
3c22086f
CLG
1027 */
1028 if (lxc_sync_barrier_parent(handler, LXC_SYNC_CONFIGURE))
9d7f9e52 1029 return -1;
50e98013 1030
7ab1ba02
CB
1031 if (lxc_network_recv_veth_names_from_parent(handler) < 0) {
1032 ERROR("Failed to receive veth names from parent");
658979c5 1033 goto out_warn_father;
7ab1ba02 1034 }
658979c5 1035
408da065 1036 /* If we are in a new user namespace, become root there to have
d08f8d2f 1037 * privilege over our namespace.
f6d3e3e4
SH
1038 */
1039 if (!lxc_list_empty(&handler->conf->id_map)) {
4160c3a0
CB
1040 uid_t nsuid = (handler->conf->root_nsuid_map != NULL)
1041 ? 0
1042 : handler->conf->init_uid;
1043 gid_t nsgid = (handler->conf->root_nsgid_map != NULL)
1044 ? 0
1045 : handler->conf->init_gid;
1046
1047 ret = lxc_switch_uid_gid(nsuid, nsgid);
4b826b1f 1048 if (ret < 0)
f6d3e3e4 1049 goto out_warn_father;
d08f8d2f
CB
1050
1051 /* Drop groups only after we switched to a valid gid in the new
1052 * user namespace.
1053 */
4b826b1f 1054 ret = lxc_setgroups(0, NULL);
a19b974f 1055 if (ret < 0 && (handler->am_root || errno != EPERM))
c476bdce 1056 goto out_warn_father;
4b826b1f
CB
1057
1058 if (!handler->am_root) {
1059 ret = prctl(PR_SET_DUMPABLE, 1, 0, 0, 0);
1060 if (ret < 0)
1061 goto out_warn_father;
1062 }
912314fc
CB
1063
1064 /* set{g,u}id() clears deathsignal */
18225d19 1065 ret = lxc_set_death_signal(SIGKILL);
912314fc
CB
1066 if (ret < 0) {
1067 SYSERROR("Failed to set PR_SET_PDEATHSIG to SIGKILL");
1068 goto out_warn_father;
1069 }
f6d3e3e4
SH
1070 }
1071
99b71824 1072 if (access(handler->lxcpath, X_OK)) {
c8154066
SH
1073 print_top_failing_dir(handler->lxcpath);
1074 goto out_warn_father;
1075 }
1076
a91cde21 1077 ret = snprintf(path, sizeof(path), "%s/dev/null", handler->conf->rootfs.mount);
408da065 1078 if (ret < 0 || ret >= sizeof(path))
7a55c157 1079 goto out_warn_father;
7a55c157
TA
1080
1081 /* In order to checkpoint restore, we need to have everything in the
1082 * same mount namespace. However, some containers may not have a
1083 * reasonable /dev (in particular, they may not have /dev/null), so we
1084 * can't set init's std fds to /dev/null by opening it from inside the
1085 * container.
1086 *
1087 * If that's the case, fall back to using the host's /dev/null. This
1088 * means that migration won't work, but at least we won't spew output
1089 * where it isn't wanted.
1090 */
1091 if (handler->backgrounded && !handler->conf->autodev && access(path, F_OK) < 0) {
c44de748
AM
1092 devnull_fd = open_devnull();
1093
1094 if (devnull_fd < 0)
1095 goto out_warn_father;
408da065
CB
1096 WARN("Using /dev/null from the host for container init's "
1097 "standard file descriptors. Migration will not work.");
c44de748
AM
1098 }
1099
408da065 1100 /* Ask father to setup cgroups and wait for him to finish. */
544a48a0 1101 if (lxc_sync_barrier_parent(handler, LXC_SYNC_CGROUP))
c44de748 1102 goto out_error;
544a48a0 1103
deefdf8a
CB
1104 /* Unshare cgroup namespace after we have setup our cgroups. If we do it
1105 * earlier we end up with a wrong view of /proc/self/cgroup. For
1106 * example, assume we unshare(CLONE_NEWCGROUP) first, and then create
1107 * the cgroup for the container, say /sys/fs/cgroup/cpuset/lxc/c, then
1108 * /proc/self/cgroup would show us:
1109 *
1110 * 8:cpuset:/lxc/c
1111 *
1112 * whereas it should actually show
1113 *
1114 * 8:cpuset:/
1115 */
5af9369b 1116 if (handler->clone_flags & CLONE_NEWCGROUP) {
deefdf8a
CB
1117 if (unshare(CLONE_NEWCGROUP) < 0) {
1118 INFO("Failed to unshare CLONE_NEWCGROUP.");
1119 goto out_warn_father;
1120 }
1121 INFO("Unshared CLONE_NEWCGROUP.");
1122 }
1123
149857af
CB
1124 /* Add the requested environment variables to the current environment to
1125 * allow them to be used by the various hooks, such as the start hook
1126 * above.
98ff08ca 1127 */
98ff08ca
CB
1128 lxc_list_for_each(iterator, &handler->conf->environment) {
1129 if (putenv((char *)iterator->elem)) {
1130 SYSERROR("Failed to set environment variable: %s.", (char *)iterator->elem);
1131 goto out_warn_father;
1132 }
1133 }
1134
f4152036 1135 /* Setup the container, ip, names, utsname, ... */
3b988b33 1136 ret = lxc_setup(handler);
7729f8e5 1137 close(handler->data_sock[1]);
8bf3abfb 1138 close(handler->data_sock[0]);
7729f8e5 1139 if (ret < 0) {
f4152036
CB
1140 ERROR("Failed to setup container \"%s\".", handler->name);
1141 goto out_warn_father;
1142 }
1143
408da065 1144 /* Set the label to change to when we exec(2) the container's init. */
7aff4f43 1145 if (lsm_process_label_set(NULL, handler->conf, 1, 1) < 0)
e075f5d9 1146 goto out_warn_father;
5112cd70 1147
029cdff5 1148 /* Set PR_SET_NO_NEW_PRIVS after we changed the lsm label. If we do it
408da065
CB
1149 * before we aren't allowed anymore.
1150 */
029cdff5
CB
1151 if (handler->conf->no_new_privs) {
1152 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) < 0) {
1153 SYSERROR("Could not set PR_SET_NO_NEW_PRIVS to block execve() gainable privileges.");
1154 goto out_warn_father;
1155 }
1156 DEBUG("Set PR_SET_NO_NEW_PRIVS to block execve() gainable privileges.");
1157 }
1158
0d9acb99
DE
1159 /* Some init's such as busybox will set sane tty settings on stdin,
1160 * stdout, stderr which it thinks is the console. We already set them
1161 * the way we wanted on the real terminal, and we want init to do its
408da065
CB
1162 * setup on its console ie. the pty allocated in lxc_console_create() so
1163 * make sure that that pty is stdin,stdout,stderr.
0d9acb99 1164 */
5d113f65
CB
1165 if (handler->conf->console.slave >= 0) {
1166 if (handler->backgrounded || handler->conf->is_execute == 0)
1167 ret = set_stdfds(handler->conf->console.slave);
1168 else
1169 ret = lxc_console_set_stdfds(handler->conf->console.slave);
1170 if (ret < 0) {
c5b93afb
LF
1171 ERROR("Failed to redirect std{in,out,err} to pty file "
1172 "descriptor %d",
1173 handler->conf->console.slave);
1174 goto out_warn_father;
1175 }
5d113f65 1176 }
0d9acb99 1177
408da065 1178 /* If we mounted a temporary proc, then unmount it now. */
5112cd70 1179 tmp_proc_unmount(handler->conf);
e075f5d9 1180
8f2c3a70
SH
1181 if (lxc_seccomp_load(handler->conf) != 0)
1182 goto out_warn_father;
1183
14a7b0f9 1184 if (run_lxc_hooks(handler->name, "start", handler->conf, NULL)) {
408da065 1185 ERROR("Failed to run lxc.hook.start for container \"%s\".", handler->name);
773fb9ca
SH
1186 goto out_warn_father;
1187 }
fc25b815 1188
773fb9ca 1189 close(handler->sigfd);
26ddeedd 1190
7a55c157
TA
1191 if (devnull_fd < 0) {
1192 devnull_fd = open_devnull();
1193
1194 if (devnull_fd < 0)
1195 goto out_warn_father;
1196 }
1197
c5b93afb
LF
1198 if (handler->conf->console.slave < 0 && handler->backgrounded)
1199 if (set_stdfds(devnull_fd) < 0) {
1200 ERROR("Failed to redirect std{in,out,err} to "
1201 "\"/dev/null\"");
1202 goto out_warn_father;
1203 }
507cee36 1204
c44de748
AM
1205 if (devnull_fd >= 0) {
1206 close(devnull_fd);
1207 devnull_fd = -1;
1208 }
1209
8c9a7665
TA
1210 setsid();
1211
3c491553
L
1212 if (handler->conf->init_cwd && chdir(handler->conf->init_cwd)) {
1213 SYSERROR("Could not change directory to \"%s\"", handler->conf->init_cwd);
1214 goto out_warn_father;
1215 }
1216
f4152036
CB
1217 if (lxc_sync_barrier_parent(handler, LXC_SYNC_CGROUP_LIMITS))
1218 goto out_warn_father;
1219
149857af
CB
1220 /* Reset the environment variables the user requested in a clear
1221 * environment.
1222 */
1223 if (clearenv()) {
1224 SYSERROR("Failed to clear environment.");
1225 /* Don't error out though. */
1226 }
1227
1228 lxc_list_for_each(iterator, &handler->conf->environment) {
1229 if (putenv((char *)iterator->elem)) {
1230 SYSERROR("Failed to set environment variable: %s.", (char *)iterator->elem);
1231 goto out_warn_father;
1232 }
1233 }
1234
98ff08ca
CB
1235 if (putenv("container=lxc")) {
1236 SYSERROR("Failed to set environment variable: container=lxc.");
1237 goto out_warn_father;
1238 }
1239
1240 if (handler->conf->pty_names) {
1241 if (putenv(handler->conf->pty_names)) {
1242 SYSERROR("Failed to set environment variable for container ptys.");
1243 goto out_warn_father;
1244 }
1245 }
1246
76bdf299
CB
1247 /* The container has been setup. We can now switch to an unprivileged
1248 * uid/gid.
1249 */
928b1f04
YT
1250 new_uid = handler->conf->init_uid;
1251 new_gid = handler->conf->init_gid;
76bdf299 1252
928b1f04
YT
1253 /* If we are in a new user namespace we already dropped all
1254 * groups when we switched to root in the new user namespace
1255 * further above. Only drop groups if we can, so ensure that we
1256 * have necessary privilege.
1257 */
1258 #if HAVE_LIBCAP
1259 have_cap_setgid = lxc_proc_cap_is_set(CAP_SETGID, CAP_EFFECTIVE);
1260 #else
1261 have_cap_setgid = false;
1262 #endif
1263 if (lxc_list_empty(&handler->conf->id_map) && have_cap_setgid) {
1264 if (lxc_setgroups(0, NULL) < 0)
76bdf299
CB
1265 goto out_warn_father;
1266 }
1267
928b1f04
YT
1268 if (lxc_switch_uid_gid(new_uid, new_gid) < 0)
1269 goto out_warn_father;
1270
408da065
CB
1271 /* After this call, we are in error because this ops should not return
1272 * as it execs.
1273 */
c4ea60df 1274 handler->ops->start(handler, handler->data);
50e98013
DL
1275
1276out_warn_father:
408da065
CB
1277 /* We want the parent to know something went wrong, so we return a
1278 * special error code.
1279 */
d1ccb562 1280 lxc_sync_wake_parent(handler, LXC_SYNC_ERROR);
c44de748
AM
1281
1282out_error:
1283 if (devnull_fd >= 0)
1284 close(devnull_fd);
1285
50e98013
DL
1286 return -1;
1287}
1288
ae467c54 1289static int lxc_recv_ttys_from_child(struct lxc_handler *handler)
e8bd4e43 1290{
ae467c54 1291 int i;
ae467c54
CB
1292 struct lxc_pty_info *pty_info;
1293 int ret = -1;
c6012571 1294 int sock = handler->data_sock[1];
e8bd4e43 1295 struct lxc_conf *conf = handler->conf;
e8bd4e43
SH
1296 struct lxc_tty_info *tty_info = &conf->tty_info;
1297
1298 if (!conf->tty)
1299 return 0;
1300
408da065
CB
1301 tty_info->pty_info = malloc(sizeof(*tty_info->pty_info) * conf->tty);
1302 if (!tty_info->pty_info)
e8bd4e43 1303 return -1;
e8bd4e43 1304
672c1e58
CB
1305 for (i = 0; i < conf->tty; i++) {
1306 int ttyfds[2];
1307
1308 ret = lxc_abstract_unix_recv_fds(sock, ttyfds, 2, NULL, 0);
1309 if (ret < 0)
1310 break;
ae467c54 1311
672c1e58 1312 pty_info = &tty_info->pty_info[i];
e8bd4e43 1313 pty_info->busy = 0;
672c1e58
CB
1314 pty_info->master = ttyfds[0];
1315 pty_info->slave = ttyfds[1];
1316 TRACE("Received pty with master fd %d and slave fd %d from "
ae467c54 1317 "parent", pty_info->master, pty_info->slave);
e8bd4e43 1318 }
ae467c54 1319 if (ret < 0)
672c1e58 1320 ERROR("Failed to receive %d ttys from child: %s", conf->tty,
ae467c54
CB
1321 strerror(errno));
1322 else
672c1e58
CB
1323 TRACE("Received %d ttys from child", conf->tty);
1324
1325 tty_info->nbtty = conf->tty;
ae467c54
CB
1326
1327 return ret;
e8bd4e43
SH
1328}
1329
5af9369b 1330int resolve_clone_flags(struct lxc_handler *handler)
f813849c 1331{
03df7ab5 1332 handler->clone_flags = CLONE_NEWNS;
f813849c 1333
fa3a5b22
CB
1334 if (!handler->conf->inherit_ns[LXC_NS_USER]) {
1335 if (!lxc_list_empty(&handler->conf->id_map))
1336 handler->clone_flags |= CLONE_NEWUSER;
1337 } else {
1338 INFO("Inheriting user namespace");
1339 }
f813849c 1340
28d9e29e 1341 if (!handler->conf->inherit_ns[LXC_NS_NET]) {
408da065 1342 if (!lxc_requests_empty_network(handler))
f813849c
TA
1343 handler->clone_flags |= CLONE_NEWNET;
1344 } else {
28d9e29e 1345 INFO("Inheriting net namespace");
f813849c
TA
1346 }
1347
28d9e29e 1348 if (!handler->conf->inherit_ns[LXC_NS_IPC])
f813849c 1349 handler->clone_flags |= CLONE_NEWIPC;
408da065 1350 else
28d9e29e 1351 INFO("Inheriting ipc namespace");
f813849c 1352
28d9e29e 1353 if (!handler->conf->inherit_ns[LXC_NS_UTS])
f813849c 1354 handler->clone_flags |= CLONE_NEWUTS;
408da065 1355 else
28d9e29e 1356 INFO("Inheriting uts namespace");
03df7ab5 1357
28d9e29e 1358 if (!handler->conf->inherit_ns[LXC_NS_PID])
03df7ab5
L
1359 handler->clone_flags |= CLONE_NEWPID;
1360 else
28d9e29e 1361 INFO("Inheriting pid namespace");
5af9369b
CB
1362
1363 if (cgns_supported()) {
1364 if (!handler->conf->inherit_ns[LXC_NS_CGROUP])
1365 handler->clone_flags |= CLONE_NEWCGROUP;
1366 else
1367 INFO("Inheriting cgroup namespace");
1368 } else if (handler->conf->inherit_ns[LXC_NS_CGROUP]) {
1369 return -EINVAL;
1370 }
1371
1372 return 0;
f813849c
TA
1373}
1374
8deca6c9
CB
1375/* Note that this function is used with clone(CLONE_VM). Some glibc versions
1376 * used to reset the pid/tid to -1 when CLONE_VM was used without CLONE_THREAD.
1377 * But since the memory between parent and child is shared on CLONE_VM this
1378 * would invalidate the getpid() cache that glibc used to maintain and so
1379 * getpid() in the child would return the parent's pid. This is all fixed in
1380 * newer glibc versions where the getpid() cache is removed and the pid/tid is
1381 * not reset anymore.
1382 * However, if for whatever reason you - dear commiter - somehow need to get the
1383 * pid of the dummy intermediate process for do_share_ns() you need to call
0059379f
CB
1384 * lxc_raw_getpid(). The next lxc_raw_clone() call does not employ CLONE_VM and
1385 * will be fine.
8deca6c9
CB
1386 */
1387static inline int do_share_ns(void *arg)
fa3a5b22 1388{
8deca6c9 1389 int i, flags, ret;
fa3a5b22
CB
1390 struct lxc_handler *handler = arg;
1391
8deca6c9
CB
1392 for (i = 0; i < LXC_NS_MAX; i++) {
1393 if (handler->nsfd[i] < 0)
1394 continue;
fa3a5b22 1395
8deca6c9 1396 ret = setns(handler->nsfd[i], 0);
fa3a5b22 1397 if (ret < 0)
8deca6c9 1398 return -1;
fa3a5b22 1399
8deca6c9 1400 DEBUG("Inherited %s namespace", ns_info[i].proc_name);
fa3a5b22
CB
1401 }
1402
8deca6c9
CB
1403 flags = handler->on_clone_flags;
1404 flags |= CLONE_PARENT;
ac2ba696 1405 handler->pid = lxc_raw_clone_cb(do_start, handler, flags);
8deca6c9 1406 if (handler->pid < 0)
fa3a5b22
CB
1407 return -1;
1408
8deca6c9 1409 return 0;
fa3a5b22
CB
1410}
1411
480588e6
CB
1412/* lxc_spawn() performs crucial setup tasks and clone()s the new process which
1413 * exec()s the requested container binary.
1414 * Note that lxc_spawn() runs in the parent namespaces. Any operations performed
1415 * right here should be double checked if they'd pose a security risk. (For
1416 * example, any {u}mount() operations performed here will be reflected on the
1417 * host!)
1418 */
74a3920a 1419static int lxc_spawn(struct lxc_handler *handler)
59eb99ba 1420{
8deca6c9 1421 int i, ret;
08dd2805 1422 char pidstr[20];
57927bf2
CB
1423 bool wants_to_map_ids;
1424 struct lxc_list *id_map;
6e5fc7a5 1425 const char *name = handler->name;
28d9e29e 1426 const char *lxcpath = handler->lxcpath;
8deca6c9 1427 bool cgroups_connected = false, share_ns = false;
28d9e29e 1428 struct lxc_conf *conf = handler->conf;
9f30a190 1429
28d9e29e 1430 id_map = &conf->id_map;
57927bf2 1431 wants_to_map_ids = !lxc_list_empty(id_map);
2f2623ec 1432
28d9e29e
CB
1433 for (i = 0; i < LXC_NS_MAX; i++) {
1434 if (!conf->inherit_ns[i])
1435 continue;
1436
28d9e29e
CB
1437 handler->nsfd[i] = lxc_inherit_namespace(conf->inherit_ns[i], lxcpath, ns_info[i].proc_name);
1438 if (handler->nsfd[i] < 0)
1439 return -1;
fa3a5b22 1440
8deca6c9 1441 share_ns = true;
28d9e29e 1442 }
50e98013 1443
3c22086f 1444 if (lxc_sync_init(handler))
9d7f9e52 1445 return -1;
0ad19a3f 1446
b9f522c5 1447 ret = socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0,
790255cf 1448 handler->data_sock);
c6012571 1449 if (ret < 0) {
e8bd4e43
SH
1450 lxc_sync_fini(handler);
1451 return -1;
1452 }
1453
5af9369b
CB
1454 ret = resolve_clone_flags(handler);
1455 if (ret < 0) {
1456 lxc_sync_fini(handler);
1457 return -1;
1458 }
9f30a190 1459
f813849c 1460 if (handler->clone_flags & CLONE_NEWNET) {
28d9e29e 1461 if (!lxc_list_empty(&conf->network)) {
26b797f3 1462
9f30a190
MM
1463 /* Find gateway addresses from the link device, which is
1464 * no longer accessible inside the container. Do this
1465 * before creating network interfaces, since goto
408da065
CB
1466 * out_delete_net does not work before lxc_clone.
1467 */
9f30a190 1468 if (lxc_find_gateway_addresses(handler)) {
408da065 1469 ERROR("Failed to find gateway addresses.");
9f30a190
MM
1470 lxc_sync_fini(handler);
1471 return -1;
1472 }
1473
408da065
CB
1474 /* That should be done before the clone because we will
1475 * fill the netdev index and use them in the child.
9f30a190 1476 */
811ef482 1477 if (lxc_create_network_priv(handler)) {
408da065 1478 ERROR("Failed to create the network.");
9f30a190
MM
1479 lxc_sync_fini(handler);
1480 return -1;
1481 }
19a26f82 1482 }
82d5ae15
DL
1483 }
1484
d4ef7c50 1485 if (!cgroup_init(handler)) {
408da065 1486 ERROR("Failed initializing cgroup support.");
33ad9f1a
CS
1487 goto out_delete_net;
1488 }
1489
7e4dfe0b
SH
1490 cgroups_connected = true;
1491
d4ef7c50 1492 if (!cgroup_create(handler)) {
408da065 1493 ERROR("Failed creating cgroups.");
47d8fb3b
CS
1494 goto out_delete_net;
1495 }
1496
408da065
CB
1497 /* If the rootfs is not a blockdev, prevent the container from marking
1498 * it readonly.
1499 * If the container is unprivileged then skip rootfs pinning.
0c547523 1500 */
0ee35059 1501 if (!wants_to_map_ids) {
28d9e29e 1502 handler->pinfd = pin_rootfs(conf->rootfs.path);
5e32a990 1503 if (handler->pinfd == -1)
408da065 1504 INFO("Failed to pin the rootfs for container \"%s\".", handler->name);
5e32a990 1505 }
0c547523 1506
408da065 1507 /* Create a process in a new set of namespaces. */
8deca6c9 1508 handler->on_clone_flags = handler->clone_flags;
408da065
CB
1509 if (handler->clone_flags & CLONE_NEWUSER) {
1510 /* If CLONE_NEWUSER and CLONE_NEWNET was requested, we need to
1511 * clone a new user namespace first and only later unshare our
1512 * network namespace to ensure that network devices ownership is
1513 * set up correctly.
1514 */
8deca6c9 1515 handler->on_clone_flags &= ~CLONE_NEWNET;
408da065 1516 }
5af9369b
CB
1517 /* The cgroup namespace gets unshare()ed not clone()ed. */
1518 handler->on_clone_flags &= ~CLONE_NEWCGROUP;
732375f5 1519
4e232466
CB
1520 if (share_ns) {
1521 pid_t attacher_pid;
1522
1523 attacher_pid = lxc_clone(do_share_ns, handler, CLONE_VFORK | CLONE_VM | CLONE_FILES);
1524 if (attacher_pid < 0) {
1525 SYSERROR(LXC_CLONE_ERROR);
1526 goto out_delete_net;
1527 }
1528
1529 ret = wait_for_pid(attacher_pid);
1530 if (ret < 0) {
1531 SYSERROR("Intermediate process failed");
1532 goto out_delete_net;
1533 }
1534 } else {
ac2ba696 1535 handler->pid = lxc_raw_clone_cb(do_start, handler, handler->on_clone_flags);
4e232466
CB
1536 }
1537 if (handler->pid < 0) {
1538 SYSERROR(LXC_CLONE_ERROR);
7fef7a06 1539 goto out_delete_net;
0ad19a3f 1540 }
fa3a5b22 1541 TRACE("Cloned child process %d", handler->pid);
1bd8d726 1542
9662e444 1543 for (i = 0; i < LXC_NS_MAX; i++)
8deca6c9 1544 if (handler->on_clone_flags & ns_info[i].clone_flag)
28d9e29e 1545 INFO("Cloned %s", ns_info[i].flag_name);
0ad19a3f 1546
8bf3abfb 1547 if (!preserve_ns(handler->nsfd, handler->on_clone_flags, handler->pid)) {
28d9e29e
CB
1548 ERROR("Failed to preserve cloned namespaces for lxc.hook.stop");
1549 goto out_delete_net;
1550 }
b6b2b194 1551
3c22086f
CLG
1552 lxc_sync_fini_child(handler);
1553
408da065
CB
1554 /* Map the container uids. The container became an invalid userid the
1555 * moment it was cloned with CLONE_NEWUSER. This call doesn't change
1556 * anything immediately, but allows the container to setuid(0) (0 being
1557 * mapped to something else on the host.) later to become a valid uid
1558 * again.
1559 */
fa3a5b22
CB
1560 if (wants_to_map_ids) {
1561 if (!handler->conf->inherit_ns[LXC_NS_USER]) {
1562 ret = lxc_map_ids(id_map, handler->pid);
1563 if (ret < 0) {
1564 ERROR("Failed to set up id mapping.");
1565 goto out_delete_net;
1566 }
1567 }
5b1e83cb
SH
1568 }
1569
9e2bdae4 1570 if (lxc_sync_wake_child(handler, LXC_SYNC_STARTUP))
5b1e83cb 1571 goto out_delete_net;
5b1e83cb 1572
9e2bdae4 1573 if (lxc_sync_wait_child(handler, LXC_SYNC_CONFIGURE))
5b1e83cb 1574 goto out_delete_net;
0ad19a3f 1575
d4ef7c50 1576 if (!cgroup_create_legacy(handler)) {
408da065 1577 ERROR("Failed to setup legacy cgroups for container \"%s\".", name);
ae5c8b8e 1578 goto out_delete_net;
33ad9f1a 1579 }
9daf6f5d 1580 if (!cgroup_setup_limits(handler, false)) {
408da065 1581 ERROR("Failed to setup cgroup limits for container \"%s\".", name);
6031a6e5
DE
1582 goto out_delete_net;
1583 }
1584
d4ef7c50 1585 if (!cgroup_enter(handler))
7fef7a06 1586 goto out_delete_net;
218d4250 1587
0996e18a
SH
1588 if (!cgroup_chown(handler))
1589 goto out_delete_net;
1590
fa3a5b22
CB
1591 /* Now we're ready to preserve the network namespace */
1592 ret = lxc_preserve_ns(handler->pid, "net");
1593 if (ret < 0) {
1594 ERROR("%s - Failed to preserve net namespace", strerror(errno));
1595 goto out_delete_net;
1596 }
1597 handler->nsfd[LXC_NS_NET] = ret;
1598 DEBUG("Preserved net namespace via fd %d", ret);
1599
408da065 1600 /* Create the network configuration. */
d5088cf2 1601 if (handler->clone_flags & CLONE_NEWNET) {
74c6e2b0
CB
1602 if (lxc_network_move_created_netdev_priv(handler->lxcpath,
1603 handler->name,
28d9e29e 1604 &conf->network,
74c6e2b0 1605 handler->pid)) {
408da065 1606 ERROR("Failed to create the configured network.");
7fef7a06 1607 goto out_delete_net;
82d5ae15 1608 }
74c6e2b0
CB
1609
1610 if (lxc_create_network_unpriv(handler->lxcpath, handler->name,
28d9e29e 1611 &conf->network,
74c6e2b0
CB
1612 handler->pid)) {
1613 ERROR("Failed to create the configured network.");
1614 goto out_delete_net;
1615 }
0ad19a3f 1616 }
1617
7ab1ba02
CB
1618 if (lxc_network_send_veth_names_to_child(handler) < 0) {
1619 ERROR("Failed to send veth names to child");
1620 goto out_delete_net;
658979c5
SH
1621 }
1622
61d7a733
YT
1623 if (!lxc_list_empty(&conf->procs)) {
1624 ret = setup_proc_filesystem(&conf->procs, handler->pid);
1625 if (ret < 0)
1626 goto out_delete_net;
1627 }
1628
408da065
CB
1629 /* Tell the child to continue its initialization. We'll get
1630 * LXC_SYNC_CGROUP when it is ready for us to setup cgroups.
3c22086f
CLG
1631 */
1632 if (lxc_sync_barrier_child(handler, LXC_SYNC_POST_CONFIGURE))
544a48a0
SH
1633 goto out_delete_net;
1634
28d9e29e 1635 if (!lxc_list_empty(&conf->limits) && setup_resource_limits(&conf->limits, handler->pid)) {
c6d09e15 1636 ERROR("failed to setup resource limits for '%s'", name);
84ff3af7 1637 goto out_delete_net;
c6d09e15
WB
1638 }
1639
f4152036
CB
1640 if (lxc_sync_barrier_child(handler, LXC_SYNC_CGROUP_UNSHARE))
1641 goto out_delete_net;
1642
9daf6f5d 1643 if (!cgroup_setup_limits(handler, true)) {
408da065 1644 ERROR("Failed to setup the devices cgroup for container \"%s\".", name);
b98f7d6e 1645 goto out_delete_net;
544a48a0 1646 }
f4152036 1647 TRACE("Set up cgroup device limits");
544a48a0 1648
73d28d42 1649 cgroup_disconnect();
7e4dfe0b 1650 cgroups_connected = false;
73d28d42 1651
8bf3abfb
CB
1652 if (handler->clone_flags & CLONE_NEWCGROUP) {
1653 /* Now we're ready to preserve the cgroup namespace */
1654 ret = lxc_preserve_ns(handler->pid, "cgroup");
1655 if (ret < 0) {
1656 ERROR("%s - Failed to preserve cgroup namespace", strerror(errno));
1657 goto out_delete_net;
1658 }
1659 handler->nsfd[LXC_NS_CGROUP] = ret;
1660 DEBUG("Preserved cgroup namespace via fd %d", ret);
1661 }
1662
08dd2805
SH
1663 snprintf(pidstr, 20, "%d", handler->pid);
1664 if (setenv("LXC_PID", pidstr, 1))
1665 SYSERROR("Failed to set environment variable: LXC_PID=%s.", pidstr);
1666
1667 /* Run any host-side start hooks */
14a7b0f9 1668 if (run_lxc_hooks(name, "start-host", conf, NULL)) {
08dd2805
SH
1669 ERROR("Failed to run lxc.hook.start-host for container \"%s\".", name);
1670 return -1;
1671 }
1672
408da065
CB
1673 /* Tell the child to complete its initialization and wait for it to exec
1674 * or return an error. (The child will never return
08dd2805 1675 * LXC_SYNC_READY_START+1. It will either close the sync pipe, causing
408da065
CB
1676 * lxc_sync_barrier_child to return success, or return a different
1677 * value, causing us to error out).
544a48a0 1678 */
08dd2805 1679 if (lxc_sync_barrier_child(handler, LXC_SYNC_READY_START))
3c22086f 1680 return -1;
0ad19a3f 1681
790255cf
CB
1682 if (lxc_network_recv_name_and_ifindex_from_child(handler) < 0) {
1683 ERROR("Failed to receive names and ifindices for network "
1684 "devices from child");
1685 goto out_delete_net;
1686 }
1687
1688 /* Now all networks are created, network devices are moved into place,
1689 * and the correct names and ifindeces in the respective namespaces have
1690 * been recorded. The corresponding structs have now all been filled. So
1691 * log them for debugging purposes.
1692 */
28d9e29e 1693 lxc_log_configured_netdevs(conf);
790255cf 1694
f4152036
CB
1695 /* Read tty fds allocated by child. */
1696 if (lxc_recv_ttys_from_child(handler) < 0) {
1697 ERROR("Failed to receive tty info from child process.");
1698 goto out_delete_net;
1699 }
1700
23c53af9 1701 if (handler->ops->post_start(handler, handler->data))
e6126dbe
MN
1702 goto out_abort;
1703
25c2aca5 1704 if (lxc_set_state(name, handler, RUNNING)) {
408da065
CB
1705 ERROR("Failed to set state for container \"%s\" to \"%s\".", name,
1706 lxc_state2str(RUNNING));
59eb99ba 1707 goto out_abort;
3f21c114 1708 }
22ebac19 1709
3c22086f 1710 lxc_sync_fini(handler);
0c547523 1711
e6126dbe 1712 return 0;
1ac470c0 1713
7fef7a06 1714out_delete_net:
7e4dfe0b
SH
1715 if (cgroups_connected)
1716 cgroup_disconnect();
1bd8d726 1717
bb84beda
CB
1718 if (handler->clone_flags & CLONE_NEWNET)
1719 lxc_delete_network(handler);
1bd8d726 1720
59eb99ba
DL
1721out_abort:
1722 lxc_abort(name, handler);
3c22086f 1723 lxc_sync_fini(handler);
5c068da9
SH
1724 if (handler->pinfd >= 0) {
1725 close(handler->pinfd);
1726 handler->pinfd = -1;
1727 }
1728
b79fcd86 1729 return -1;
59eb99ba 1730}
0ad19a3f 1731
aa460476 1732int __lxc_start(const char *name, struct lxc_handler *handler,
507cee36
TA
1733 struct lxc_operations* ops, void *data, const char *lxcpath,
1734 bool backgrounded)
59eb99ba 1735{
59eb99ba 1736 int status;
aa460476 1737 int err = -1;
aa460476 1738 struct lxc_conf *conf = handler->conf;
80090207 1739
aa460476 1740 if (lxc_init(name, handler) < 0) {
408da065 1741 ERROR("Failed to initialize container \"%s\".", name);
66aeffc7 1742 return -1;
0ad19a3f 1743 }
ee70bf78
CLG
1744 handler->ops = ops;
1745 handler->data = data;
507cee36 1746 handler->backgrounded = backgrounded;
e6126dbe 1747
76a26f55 1748 if (!attach_block_device(handler->conf)) {
408da065 1749 ERROR("Failed to attach block device.");
76a26f55
SH
1750 goto out_fini_nonet;
1751 }
1752
35120d9c 1753 if (geteuid() == 0 && !lxc_list_empty(&conf->id_map)) {
408da065 1754 /* If the backing store is a device, mount it here and now. */
35120d9c
SH
1755 if (rootfs_is_blockdev(conf)) {
1756 if (unshare(CLONE_NEWNS) < 0) {
408da065 1757 ERROR("Failed to unshare CLONE_NEWNS.");
35120d9c
SH
1758 goto out_fini_nonet;
1759 }
408da065
CB
1760 INFO("Unshared CLONE_NEWNS.");
1761
6a0c909a 1762 remount_all_slave();
35120d9c 1763 if (do_rootfs_setup(conf, name, lxcpath) < 0) {
408da065 1764 ERROR("Error setting up rootfs mount as root before spawn.");
35120d9c
SH
1765 goto out_fini_nonet;
1766 }
408da065 1767 INFO("Set up container rootfs as host root.");
35120d9c
SH
1768 }
1769 }
1770
23c53af9 1771 err = lxc_spawn(handler);
59eb99ba 1772 if (err) {
408da065 1773 ERROR("Failed to spawn container \"%s\".", name);
76a26f55 1774 goto out_detach_blockdev;
0ad19a3f 1775 }
a9e1109e
CB
1776 /* close parent side of data socket */
1777 close(handler->data_sock[0]);
1778 handler->data_sock[0] = -1;
1779 close(handler->data_sock[1]);
1780 handler->data_sock[1] = -1;
0ad19a3f 1781
8bee8851
WB
1782 handler->conf->reboot = 0;
1783
3a0f472d 1784 err = lxc_poll(name, handler);
e043236e 1785 if (err) {
408da065 1786 ERROR("LXC mainloop exited with error: %d.", err);
59eb99ba
DL
1787 goto out_abort;
1788 }
0ad19a3f 1789
3a0f472d 1790 while (waitpid(handler->pid, &status, 0) < 0 && errno == EINTR)
1bc5cc8c 1791 continue;
e043236e 1792
408da065
CB
1793 /* If the child process exited but was not signaled, it didn't call
1794 * reboot. This should mean it was an lxc-execute which simply exited.
1795 * In any case, treat it as a 'halt'.
8b004f07 1796 */
d028235d 1797 if (WIFSIGNALED(status)) {
8b004f07
SH
1798 switch(WTERMSIG(status)) {
1799 case SIGINT: /* halt */
408da065 1800 DEBUG("Container \"%s\" is halting.", name);
8b004f07
SH
1801 break;
1802 case SIGHUP: /* reboot */
408da065 1803 DEBUG("Container \"%s\" is rebooting.", name);
8b004f07
SH
1804 handler->conf->reboot = 1;
1805 break;
c2b9bd9e 1806 case SIGSYS: /* seccomp */
408da065 1807 DEBUG("Container \"%s\" violated its seccomp policy.", name);
c2b9bd9e 1808 break;
8b004f07 1809 default:
408da065 1810 DEBUG("Unknown exit status for container \"%s\" init %d.", name, WTERMSIG(status));
8b004f07
SH
1811 break;
1812 }
d028235d 1813 }
828695d9 1814
b809f232
CB
1815 err = lxc_restore_phys_nics_to_netns(handler);
1816 if (err < 0)
1817 ERROR("Failed to move physical network devices back to parent "
1818 "network namespace");
ce5782df 1819
5c068da9
SH
1820 if (handler->pinfd >= 0) {
1821 close(handler->pinfd);
1822 handler->pinfd = -1;
1823 }
1824
1787abca 1825 lxc_monitor_send_exit_code(name, status, handler->lxcpath);
eb808539 1826 lxc_error_set_and_log(handler->pid, status);
1bd8d726 1827
9d7f9e52 1828out_fini:
bb84beda 1829 lxc_delete_network(handler);
74a2b586 1830
76a26f55
SH
1831out_detach_blockdev:
1832 detach_block_device(handler->conf);
1833
74a2b586 1834out_fini_nonet:
3a0f472d 1835 lxc_fini(name, handler);
0ad19a3f 1836 return err;
1837
59eb99ba 1838out_abort:
3a0f472d 1839 lxc_abort(name, handler);
9d7f9e52 1840 goto out_fini;
0ad19a3f 1841}
ee70bf78
CLG
1842
1843struct start_args {
1844 char *const *argv;
1845};
1846
1847static int start(struct lxc_handler *handler, void* data)
1848{
1849 struct start_args *arg = data;
1850
408da065 1851 NOTICE("Exec'ing \"%s\".", arg->argv[0]);
ee70bf78
CLG
1852
1853 execvp(arg->argv[0], arg->argv);
408da065 1854 SYSERROR("Failed to exec \"%s\".", arg->argv[0]);
ee70bf78
CLG
1855 return 0;
1856}
1857
1858static int post_start(struct lxc_handler *handler, void* data)
1859{
1860 struct start_args *arg = data;
1861
408da065 1862 NOTICE("Started \"%s\" with pid \"%d\".", arg->argv[0], handler->pid);
ee70bf78
CLG
1863 return 0;
1864}
1865
1866static struct lxc_operations start_ops = {
1867 .start = start,
1868 .post_start = post_start
1869};
1870
aa460476 1871int lxc_start(const char *name, char *const argv[], struct lxc_handler *handler,
507cee36 1872 const char *lxcpath, bool backgrounded)
ee70bf78
CLG
1873{
1874 struct start_args start_arg = {
1875 .argv = argv,
1876 };
1877
aa460476 1878 return __lxc_start(name, handler, &start_ops, &start_arg, lxcpath, backgrounded);
ee70bf78 1879}
28272964
CB
1880
1881static void lxc_destroy_container_on_signal(struct lxc_handler *handler,
1882 const char *name)
1883{
1884 char destroy[MAXPATHLEN];
1885 bool bret = true;
1886 int ret = 0;
f01f7975 1887 struct lxc_container *c;
df31363a 1888 if (handler->conf->rootfs.path && handler->conf->rootfs.mount) {
790255cf 1889 bret = do_destroy_container(handler);
28272964 1890 if (!bret) {
408da065 1891 ERROR("Error destroying rootfs for container \"%s\".", name);
28272964
CB
1892 return;
1893 }
1894 }
408da065 1895 INFO("Destroyed rootfs for container \"%s\".", name);
28272964
CB
1896
1897 ret = snprintf(destroy, MAXPATHLEN, "%s/%s", handler->lxcpath, name);
1898 if (ret < 0 || ret >= MAXPATHLEN) {
408da065 1899 ERROR("Error destroying directory for container \"%s\".", name);
28272964
CB
1900 return;
1901 }
1902
f01f7975
CB
1903 c = lxc_container_new(name, handler->lxcpath);
1904 if (c) {
1905 if (container_disk_lock(c)) {
408da065 1906 INFO("Could not update lxc_snapshots file.");
f01f7975
CB
1907 lxc_container_put(c);
1908 } else {
1909 mod_all_rdeps(c, false);
1910 container_disk_unlock(c);
1911 lxc_container_put(c);
1912 }
1913 }
1914
d0fbc7ba 1915 if (!handler->am_root)
94b0a3ac
CB
1916 ret = userns_exec_full(handler->conf, lxc_rmdir_onedev_wrapper,
1917 destroy, "lxc_rmdir_onedev_wrapper");
28272964
CB
1918 else
1919 ret = lxc_rmdir_onedev(destroy, NULL);
1920
1921 if (ret < 0) {
408da065 1922 ERROR("Error destroying directory for container \"%s\".", name);
28272964
CB
1923 return;
1924 }
408da065 1925 INFO("Destroyed directory for container \"%s\".", name);
28272964
CB
1926}
1927
1928static int lxc_rmdir_onedev_wrapper(void *data)
1929{
1930 char *arg = (char *) data;
1931 return lxc_rmdir_onedev(arg, NULL);
1932}
1933
790255cf 1934static bool do_destroy_container(struct lxc_handler *handler) {
94b0a3ac
CB
1935 int ret;
1936
d0fbc7ba 1937 if (!handler->am_root) {
94b0a3ac
CB
1938 ret = userns_exec_full(handler->conf, storage_destroy_wrapper,
1939 handler->conf, "storage_destroy_wrapper");
1940 if (ret < 0)
d028235d 1941 return false;
10bc1861 1942
d028235d
SG
1943 return true;
1944 }
10bc1861 1945
790255cf 1946 return storage_destroy(handler->conf);
28272964 1947}