]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/start.c
Merge pull request #3918 from brauner/2021-07-30.devpts
[mirror_lxc.git] / src / lxc / start.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #ifndef _GNU_SOURCE
4 #define _GNU_SOURCE 1
5 #endif
6 #include <dirent.h>
7 #include <errno.h>
8 #include <fcntl.h>
9 #include <grp.h>
10 #include <poll.h>
11 #include <pthread.h>
12 #include <signal.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <sys/file.h>
17 #include <sys/mount.h>
18 #include <sys/param.h>
19 #include <sys/prctl.h>
20 #include <sys/socket.h>
21 #include <sys/stat.h>
22 #include <sys/syscall.h>
23 #include <sys/types.h>
24 #include <sys/un.h>
25 #include <sys/wait.h>
26 #include <unistd.h>
27
28 #include "af_unix.h"
29 #include "caps.h"
30 #include "cgroups/cgroup.h"
31 #include "cgroups/cgroup_utils.h"
32 #include "commands.h"
33 #include "commands_utils.h"
34 #include "compiler.h"
35 #include "conf.h"
36 #include "config.h"
37 #include "confile_utils.h"
38 #include "error.h"
39 #include "file_utils.h"
40 #include "list.h"
41 #include "log.h"
42 #include "lsm/lsm.h"
43 #include "lxccontainer.h"
44 #include "lxclock.h"
45 #include "lxcseccomp.h"
46 #include "macro.h"
47 #include "mainloop.h"
48 #include "memory_utils.h"
49 #include "monitor.h"
50 #include "namespace.h"
51 #include "network.h"
52 #include "process_utils.h"
53 #include "start.h"
54 #include "storage/storage.h"
55 #include "storage/storage_utils.h"
56 #include "sync.h"
57 #include "syscall_wrappers.h"
58 #include "terminal.h"
59 #include "utils.h"
60
61 #if HAVE_LIBCAP
62 #include <sys/capability.h>
63 #endif
64
65 #ifndef HAVE_STRLCPY
66 #include "include/strlcpy.h"
67 #endif
68
69 lxc_log_define(start, lxc);
70
71 extern void mod_all_rdeps(struct lxc_container *c, bool inc);
72 static bool do_destroy_container(struct lxc_handler *handler);
73 static int lxc_rmdir_onedev_wrapper(void *data);
74 static void lxc_destroy_container_on_signal(struct lxc_handler *handler,
75 const char *name);
76
77 static void print_top_failing_dir(const char *path)
78 {
79 __do_free char *copy = NULL;
80 int ret;
81 char *e, *p, saved;
82
83 copy = must_copy_string(path);
84 p = copy;
85 e = copy + strlen(path);
86
87 while (p < e) {
88 while (p < e && *p == '/')
89 p++;
90
91 while (p < e && *p != '/')
92 p++;
93
94 saved = *p;
95 *p = '\0';
96
97 ret = access(copy, X_OK);
98 if (ret != 0) {
99 SYSERROR("Could not access %s. Please grant it x access, or add an ACL for the container " "root", copy);
100 return;
101 }
102 *p = saved;
103 }
104 }
105
106 static void lxc_put_nsfds(struct lxc_handler *handler)
107 {
108 for (int i = 0; i < LXC_NS_MAX; i++) {
109 if (handler->nsfd[i] < 0)
110 continue;
111
112 close_prot_errno_disarm(handler->nsfd[i]);
113 }
114 }
115
116 static int lxc_try_preserve_namespace(struct lxc_handler *handler,
117 lxc_namespace_t idx, const char *ns)
118 {
119 __do_close int fd = -EBADF;
120 int ret;
121
122 fd = lxc_preserve_ns(handler->pid, ns);
123 if (fd < 0)
124 return -errno;
125
126 ret = strnprintf(handler->nsfd_paths[idx],
127 sizeof(handler->nsfd_paths[idx]), "%s:/proc/%d/fd/%d",
128 ns_info[idx].proc_name, handler->monitor_pid, fd);
129 if (ret < 0)
130 return ret_errno(EIO);
131
132 /*
133 * In case LXC is configured for exposing information to hooks as
134 * argv-style arguments prepare an argv array we can use.
135 */
136 handler->hook_argv[handler->hook_argc] = handler->nsfd_paths[idx];
137 handler->hook_argc++;
138
139 DEBUG("Preserved %s namespace via fd %d and stashed path as %s",
140 ns_info[idx].proc_name, fd, handler->nsfd_paths[idx]);
141
142 handler->nsfd[idx] = move_fd(fd);
143 return 0;
144 }
145
146 /* lxc_try_preserve_namespaces: open /proc/@pid/ns/@ns for each namespace
147 * specified in ns_clone_flags.
148 * Return true on success, false on failure.
149 */
150 static bool lxc_try_preserve_namespaces(struct lxc_handler *handler,
151 int ns_clone_flags)
152 {
153 for (lxc_namespace_t ns_idx = 0; ns_idx < LXC_NS_MAX; ns_idx++)
154 handler->nsfd[ns_idx] = -EBADF;
155
156 for (lxc_namespace_t ns_idx = 0; ns_idx < LXC_NS_MAX; ns_idx++) {
157 int ret;
158 const char *ns = ns_info[ns_idx].proc_name;
159
160 if ((ns_clone_flags & ns_info[ns_idx].clone_flag) == 0)
161 continue;
162
163 ret = lxc_try_preserve_namespace(handler, ns_idx,
164 ns_info[ns_idx].proc_name);
165 if (ret < 0) {
166 if (ret == -ENOENT) {
167 SYSERROR("Kernel does not support preserving %s namespaces", ns);
168 continue;
169 }
170
171 /*
172 * Handle kernels that do not support interacting with
173 * namespaces through procfs.
174 */
175 lxc_put_nsfds(handler);
176 return log_error_errno(false, errno, "Failed to preserve %s namespace", ns);
177 }
178 }
179
180 return true;
181 }
182
183 static inline bool match_stdfds(int fd)
184 {
185 return (fd == STDIN_FILENO || fd == STDOUT_FILENO || fd == STDERR_FILENO);
186 }
187
188 #ifdef HAVE_DLOG
189 static bool match_dlog_fds(struct dirent *direntp)
190 {
191 char path[PATH_MAX] = {0};
192 char link[PATH_MAX] = {0};
193 ssize_t linklen;
194 int ret;
195
196 ret = strnprintf(path, sizeof(path), "/proc/self/fd/%s", direntp->d_name);
197 if (ret < 0)
198 return log_error(false, "Failed to create file descriptor name");
199
200 linklen = readlink(path, link, PATH_MAX);
201 if (linklen < 0)
202 return log_error(false, "Failed to read link path - \"%s\"", path);
203 else if (linklen >= PATH_MAX)
204 return log_error(false, "The name of link path is too long - \"%s\"", path);
205
206 if (strequal(link, "/dev/log_main") ||
207 strequal(link, "/dev/log_system") ||
208 strequal(link, "/dev/log_radio"))
209 return true;
210
211 return false;
212 }
213 #endif
214
215 /* Parses the LISTEN_FDS environment variable value.
216 * The returned value is the highest fd number up to which the
217 * file descriptors must be passed to the container process.
218 *
219 * For example, if LISTEN_FDS=2 then 4 is returned and file descriptors 3 and 4
220 * MUST be passed to the container process (in addition to the standard streams)
221 * to support [socket activation][systemd-listen-fds].
222 */
223 static unsigned int get_listen_fds_max(void)
224 {
225 int ret;
226 unsigned int num_fds;
227 const char *val;
228
229 val = getenv("LISTEN_FDS");
230 if (!val)
231 return 0;
232
233 ret = lxc_safe_uint(val, &num_fds);
234 if (ret < 0)
235 return syserror_ret(0, "Failed to parse \"LISTEN_FDS=%s\" environment variable", val);
236
237 return log_trace(num_fds, "Parsed \"LISTEN_FDS=%s\" environment variable", val);
238 }
239
240 int lxc_check_inherited(struct lxc_conf *conf, bool closeall,
241 int *fds_to_ignore, size_t len_fds)
242 {
243 int fd, fddir;
244 size_t i;
245 DIR *dir;
246 struct dirent *direntp;
247 unsigned int listen_fds_max;
248
249 if (conf && conf->close_all_fds)
250 closeall = true;
251
252 listen_fds_max = get_listen_fds_max();
253
254 /*
255 * Disable syslog at this point to avoid the above logging
256 * function to open a new fd and make the check_inherited function
257 * enter an infinite loop.
258 */
259 lxc_log_syslog_disable();
260
261 restart:
262 dir = opendir("/proc/self/fd");
263 if (!dir)
264 return log_warn(-1, "Failed to open directory");
265
266 fddir = dirfd(dir);
267
268 while ((direntp = readdir(dir))) {
269 int ret;
270 struct lxc_list *cur;
271 bool matched = false;
272
273 if (strequal(direntp->d_name, "."))
274 continue;
275
276 if (strequal(direntp->d_name, ".."))
277 continue;
278
279 ret = lxc_safe_int(direntp->d_name, &fd);
280 if (ret < 0) {
281 INFO("Could not parse file descriptor for \"%s\"", direntp->d_name);
282 continue;
283 }
284
285 for (i = 0; i < len_fds; i++)
286 if (fds_to_ignore[i] == fd)
287 break;
288
289 if (fd == fddir || fd == lxc_log_fd ||
290 (i < len_fds && fd == fds_to_ignore[i]))
291 continue;
292
293 /* Keep state clients that wait on reboots. */
294 if (conf) {
295 lxc_list_for_each(cur, &conf->state_clients) {
296 struct lxc_state_client *client = cur->elem;
297
298 if (client->clientfd != fd)
299 continue;
300
301 matched = true;
302 break;
303 }
304 }
305
306 if (matched)
307 continue;
308
309 if (current_config && fd == current_config->logfd)
310 continue;
311
312 if (match_stdfds(fd))
313 continue;
314
315 #ifdef HAVE_DLOG
316 if (match_dlog_fds(direntp))
317 continue;
318
319 #endif
320
321 if (fd <= listen_fds_max) {
322 INFO("Inheriting fd %d (using the LISTEN_FDS environment variable)", fd);
323 continue;
324 }
325
326 if (closeall) {
327 if (close(fd))
328 SYSINFO("Closed inherited fd %d", fd);
329 else
330 INFO("Closed inherited fd %d", fd);
331 closedir(dir);
332 goto restart;
333 }
334 WARN("Inherited fd %d", fd);
335 }
336 closedir(dir);
337
338 /*
339 * Only enable syslog at this point to avoid the above logging
340 * function to open a new fd and make the check_inherited function
341 * enter an infinite loop.
342 */
343 lxc_log_syslog_enable();
344
345 return 0;
346 }
347
348 static int setup_signal_fd(sigset_t *oldmask)
349 {
350 int ret;
351 sigset_t mask;
352 const int signals[] = {SIGBUS, SIGILL, SIGSEGV, SIGWINCH};
353
354 /* Block everything except serious error signals. */
355 ret = sigfillset(&mask);
356 if (ret < 0)
357 return -EBADF;
358
359 for (int sig = 0; sig < (sizeof(signals) / sizeof(signals[0])); sig++) {
360 ret = sigdelset(&mask, signals[sig]);
361 if (ret < 0)
362 return -EBADF;
363 }
364
365 ret = pthread_sigmask(SIG_BLOCK, &mask, oldmask);
366 if (ret < 0)
367 return log_error_errno(-EBADF, errno,
368 "Failed to set signal mask");
369
370 ret = signalfd(-1, &mask, SFD_CLOEXEC);
371 if (ret < 0)
372 return log_error_errno(-EBADF,
373 errno, "Failed to create signal file descriptor");
374
375 TRACE("Created signal file descriptor %d", ret);
376
377 return ret;
378 }
379
380 static int signal_handler(int fd, uint32_t events, void *data,
381 struct lxc_epoll_descr *descr)
382 {
383 int ret;
384 siginfo_t info;
385 struct signalfd_siginfo siginfo;
386 struct lxc_handler *hdlr = data;
387
388 ret = lxc_read_nointr(fd, &siginfo, sizeof(siginfo));
389 if (ret < 0)
390 return log_error(LXC_MAINLOOP_ERROR, "Failed to read signal info from signal file descriptor %d", fd);
391
392 if (ret != sizeof(siginfo))
393 return log_error(LXC_MAINLOOP_ERROR, "Unexpected size for struct signalfd_siginfo");
394
395 /* Check whether init is running. */
396 info.si_pid = 0;
397 ret = waitid(P_PID, hdlr->pid, &info, WEXITED | WNOWAIT | WNOHANG);
398 if (ret == 0 && info.si_pid == hdlr->pid)
399 hdlr->init_died = true;
400
401 /* Try to figure out a reasonable exit status to report. */
402 if (hdlr->init_died) {
403 switch (info.si_code) {
404 case CLD_EXITED:
405 hdlr->exit_status = info.si_status << 8;
406 break;
407 case CLD_KILLED:
408 case CLD_DUMPED:
409 case CLD_STOPPED:
410 hdlr->exit_status = info.si_status << 8 | 0x7f;
411 break;
412 case CLD_CONTINUED:
413 /* Huh? The waitid() told us it's dead *and* continued? */
414 WARN("Init %d dead and continued?", hdlr->pid);
415 hdlr->exit_status = 1;
416 break;
417 default:
418 ERROR("Unknown si_code: %d", info.si_code);
419 hdlr->exit_status = 1;
420 }
421 }
422
423 if (siginfo.ssi_signo == SIGHUP) {
424 if (hdlr->pidfd >= 0)
425 lxc_raw_pidfd_send_signal(hdlr->pidfd, SIGTERM, NULL, 0);
426 else
427 kill(hdlr->pid, SIGTERM);
428 INFO("Killing %d since terminal hung up", hdlr->pid);
429 return hdlr->init_died ? LXC_MAINLOOP_CLOSE
430 : LXC_MAINLOOP_CONTINUE;
431 }
432
433 if (siginfo.ssi_signo != SIGCHLD) {
434 if (hdlr->pidfd >= 0)
435 lxc_raw_pidfd_send_signal(hdlr->pidfd,
436 siginfo.ssi_signo, NULL, 0);
437 else
438 kill(hdlr->pid, siginfo.ssi_signo);
439 INFO("Forwarded signal %d to pid %d", siginfo.ssi_signo, hdlr->pid);
440 return hdlr->init_died ? LXC_MAINLOOP_CLOSE
441 : LXC_MAINLOOP_CONTINUE;
442 }
443
444 /* More robustness, protect ourself from a SIGCHLD sent
445 * by a process different from the container init.
446 */
447 if (siginfo.ssi_pid != hdlr->pid) {
448 NOTICE("Received %d from pid %d instead of container init %d",
449 siginfo.ssi_signo, siginfo.ssi_pid, hdlr->pid);
450 return hdlr->init_died ? LXC_MAINLOOP_CLOSE
451 : LXC_MAINLOOP_CONTINUE;
452 }
453
454 if (siginfo.ssi_code == CLD_STOPPED) {
455 INFO("Container init process was stopped");
456 return hdlr->init_died ? LXC_MAINLOOP_CLOSE
457 : LXC_MAINLOOP_CONTINUE;
458 }
459
460 if (siginfo.ssi_code == CLD_CONTINUED) {
461 INFO("Container init process was continued");
462 return hdlr->init_died ? LXC_MAINLOOP_CLOSE
463 : LXC_MAINLOOP_CONTINUE;
464 }
465
466 return log_debug(LXC_MAINLOOP_CLOSE, "Container init process %d exited", hdlr->pid);
467 }
468
469 int lxc_serve_state_clients(const char *name, struct lxc_handler *handler,
470 lxc_state_t state)
471 {
472 size_t retlen;
473 ssize_t ret;
474 struct lxc_list *cur, *next;
475 struct lxc_msg msg = {.type = lxc_msg_state, .value = state};
476
477 if (state == THAWED)
478 handler->state = RUNNING;
479 else
480 handler->state = state;
481
482 TRACE("Set container state to %s", lxc_state2str(state));
483
484 if (lxc_list_empty(&handler->conf->state_clients))
485 return log_trace(0, "No state clients registered");
486
487 retlen = strlcpy(msg.name, name, sizeof(msg.name));
488 if (retlen >= sizeof(msg.name))
489 return -E2BIG;
490
491 lxc_list_for_each_safe(cur, &handler->conf->state_clients, next) {
492 struct lxc_state_client *client = cur->elem;
493
494 if (client->states[state] == 0) {
495 TRACE("State %s not registered for state client %d",
496 lxc_state2str(state), client->clientfd);
497 continue;
498 }
499
500 TRACE("Sending state %s to state client %d",
501 lxc_state2str(state), client->clientfd);
502
503 ret = lxc_send_nointr(client->clientfd, &msg, sizeof(msg), MSG_NOSIGNAL);
504 if (ret <= 0)
505 SYSERROR("Failed to send message to client");
506
507 /* kick client from list */
508 lxc_list_del(cur);
509 close(client->clientfd);
510 free(cur->elem);
511 free(cur);
512 }
513
514 return 0;
515 }
516
517 static int lxc_serve_state_socket_pair(const char *name,
518 struct lxc_handler *handler,
519 lxc_state_t state)
520 {
521 ssize_t ret;
522
523 if (!handler->daemonize ||
524 handler->state_socket_pair[1] < 0 ||
525 state == STARTING)
526 return 0;
527
528 /* Close read end of the socket pair. */
529 close_prot_errno_disarm(handler->state_socket_pair[0]);
530
531 again:
532 ret = lxc_abstract_unix_send_credential(handler->state_socket_pair[1],
533 &(int){state}, sizeof(int));
534 if (ret < 0) {
535 SYSERROR("Failed to send state to %d", handler->state_socket_pair[1]);
536
537 if (errno == EINTR)
538 goto again;
539
540 return -1;
541 }
542
543 if (ret != sizeof(int))
544 return log_error(-1, "Message too long : %d", handler->state_socket_pair[1]);
545
546 TRACE("Sent container state \"%s\" to %d", lxc_state2str(state),
547 handler->state_socket_pair[1]);
548
549 /* Close write end of the socket pair. */
550 close_prot_errno_disarm(handler->state_socket_pair[1]);
551
552 return 0;
553 }
554
555 int lxc_set_state(const char *name, struct lxc_handler *handler,
556 lxc_state_t state)
557 {
558 int ret;
559
560 ret = lxc_serve_state_socket_pair(name, handler, state);
561 if (ret < 0)
562 return log_error(-1, "Failed to synchronize via anonymous pair of unix sockets");
563
564 ret = lxc_serve_state_clients(name, handler, state);
565 if (ret < 0)
566 return -1;
567
568 /* This function will try to connect to the legacy lxc-monitord state
569 * server and only exists for backwards compatibility.
570 */
571 lxc_monitor_send_state(name, state, handler->lxcpath);
572
573 return 0;
574 }
575
576 int lxc_poll(const char *name, struct lxc_handler *handler)
577 {
578 int ret;
579 bool has_console = true;
580 struct lxc_epoll_descr descr, descr_console;
581
582 if (handler->conf->console.path &&
583 strequal(handler->conf->console.path, "none"))
584 has_console = false;
585
586 ret = lxc_mainloop_open(&descr);
587 if (ret < 0) {
588 ERROR("Failed to create mainloop");
589 goto out_sigfd;
590 }
591
592 if (has_console) {
593 ret = lxc_mainloop_open(&descr_console);
594 if (ret < 0) {
595 ERROR("Failed to create console mainloop");
596 goto out_mainloop;
597 }
598 }
599
600 ret = lxc_mainloop_add_handler(&descr, handler->sigfd, signal_handler, handler);
601 if (ret < 0) {
602 ERROR("Failed to add signal handler for %d to mainloop", handler->sigfd);
603 goto out_mainloop_console;
604 }
605
606 ret = lxc_seccomp_setup_proxy(&handler->conf->seccomp, &descr, handler);
607 if (ret < 0) {
608 ERROR("Failed to setup seccomp proxy");
609 goto out_mainloop_console;
610 }
611
612 if (has_console) {
613 struct lxc_terminal *console = &handler->conf->console;
614
615 ret = lxc_terminal_mainloop_add(&descr, console);
616 if (ret < 0) {
617 ERROR("Failed to add console handlers to mainloop");
618 goto out_mainloop_console;
619 }
620
621 ret = lxc_terminal_mainloop_add(&descr_console, console);
622 if (ret < 0) {
623 ERROR("Failed to add console handlers to console mainloop");
624 goto out_mainloop_console;
625 }
626
627 handler->conf->console.descr = &descr;
628 }
629
630 ret = lxc_cmd_mainloop_add(name, &descr, handler);
631 if (ret < 0) {
632 ERROR("Failed to add command handler to mainloop");
633 goto out_mainloop_console;
634 }
635
636 TRACE("Mainloop is ready");
637
638 ret = lxc_mainloop(&descr, -1);
639 close_prot_errno_disarm(descr.epfd);
640 if (ret < 0 || !handler->init_died)
641 goto out_mainloop_console;
642
643 if (has_console)
644 ret = lxc_mainloop(&descr_console, 0);
645
646 out_mainloop_console:
647 if (has_console) {
648 lxc_mainloop_close(&descr_console);
649 TRACE("Closed console mainloop");
650 }
651
652 out_mainloop:
653 lxc_mainloop_close(&descr);
654 TRACE("Closed mainloop");
655
656 out_sigfd:
657 TRACE("Closed signal file descriptor %d", handler->sigfd);
658 close_prot_errno_disarm(handler->sigfd);
659
660 return ret;
661 }
662
663 void lxc_put_handler(struct lxc_handler *handler)
664 {
665 close_prot_errno_disarm(handler->pidfd);
666 close_prot_errno_disarm(handler->sigfd);
667 lxc_put_nsfds(handler);
668 if (handler->conf && handler->conf->reboot == REBOOT_NONE)
669 close_prot_errno_disarm(handler->conf->maincmd_fd);
670 close_prot_errno_disarm(handler->monitor_status_fd);
671 close_prot_errno_disarm(handler->state_socket_pair[0]);
672 close_prot_errno_disarm(handler->state_socket_pair[1]);
673 cgroup_exit(handler->cgroup_ops);
674 if (handler->conf && handler->conf->reboot == REBOOT_NONE)
675 free_disarm(handler);
676 else
677 handler->conf = NULL;
678 }
679
680 struct lxc_handler *lxc_init_handler(struct lxc_handler *old,
681 const char *name, struct lxc_conf *conf,
682 const char *lxcpath, bool daemonize)
683 {
684 int nr_keep_fds = 0;
685 int ret;
686 struct lxc_handler *handler;
687
688 if (!old)
689 handler = zalloc(sizeof(*handler));
690 else
691 handler = old;
692 if (!handler)
693 return NULL;
694
695 /* Note that am_guest_unpriv() checks the effective uid. We
696 * probably don't care if we are real root only if we are running
697 * as root so this should be fine.
698 */
699 handler->am_root = !am_guest_unpriv();
700 handler->conf = conf;
701 handler->lxcpath = lxcpath;
702 handler->init_died = false;
703 handler->data_sock[0] = -EBADF;
704 handler->data_sock[1] = -EBADF;
705 handler->monitor_status_fd = -EBADF;
706 handler->pidfd = -EBADF;
707 handler->sigfd = -EBADF;
708 handler->state_socket_pair[0] = -EBADF;
709 handler->state_socket_pair[1] = -EBADF;
710 if (handler->conf->reboot == REBOOT_NONE)
711 lxc_list_init(&handler->conf->state_clients);
712
713 for (lxc_namespace_t idx = 0; idx < LXC_NS_MAX; idx++) {
714 handler->nsfd[idx] = -EBADF;
715
716 if (handler->conf->reboot == REBOOT_NONE)
717 continue;
718
719 handler->nsfd_paths[idx][0] = '\0';
720 handler->hook_argv[idx] = NULL;
721
722 if (handler->hook_argc != 0)
723 handler->hook_argc = 0;
724 }
725
726 handler->name = name;
727 if (daemonize)
728 handler->transient_pid = lxc_raw_getpid();
729 else
730 handler->transient_pid = -1;
731
732 if (daemonize && handler->conf->reboot == REBOOT_NONE) {
733 /* Create socketpair() to synchronize on daemonized startup.
734 * When the container reboots we don't need to synchronize
735 * again currently so don't open another socketpair().
736 */
737 ret = socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0,
738 handler->state_socket_pair);
739 if (ret < 0) {
740 ERROR("Failed to create anonymous pair of unix sockets");
741 goto on_error;
742 }
743
744 TRACE("Created anonymous pair {%d,%d} of unix sockets",
745 handler->state_socket_pair[0],
746 handler->state_socket_pair[1]);
747 handler->keep_fds[nr_keep_fds++] = handler->state_socket_pair[0];
748 handler->keep_fds[nr_keep_fds++] = handler->state_socket_pair[1];
749 }
750
751 if (handler->conf->reboot == REBOOT_NONE) {
752 handler->conf->maincmd_fd = lxc_server_init(name, lxcpath, "command");
753 if (handler->conf->maincmd_fd < 0) {
754 ERROR("Failed to set up command socket");
755 goto on_error;
756 }
757 handler->keep_fds[nr_keep_fds++] = handler->conf->maincmd_fd;
758 }
759
760 TRACE("Unix domain socket %d for command server is ready",
761 handler->conf->maincmd_fd);
762
763 return handler;
764
765 on_error:
766 lxc_put_handler(handler);
767
768 return NULL;
769 }
770
771 int lxc_init(const char *name, struct lxc_handler *handler)
772 {
773 __do_close int status_fd = -EBADF;
774 int ret;
775 const char *loglevel;
776 struct lxc_conf *conf = handler->conf;
777
778 handler->monitor_pid = lxc_raw_getpid();
779 status_fd = open("/proc/self/status", O_RDONLY | O_CLOEXEC);
780 if (status_fd < 0)
781 return log_error_errno(-1, errno, "Failed to open monitor status fd");
782
783 handler->lsm_ops = lsm_init_static();
784 TRACE("Initialized LSM");
785
786 /* Begin by setting the state to STARTING. */
787 ret = lxc_set_state(name, handler, STARTING);
788 if (ret < 0)
789 return log_error(-1, "Failed to set state to \"%s\"", lxc_state2str(STARTING));
790 TRACE("Set container state to \"STARTING\"");
791
792 /* Start of environment variable setup for hooks. */
793 ret = setenv("LXC_NAME", name, 1);
794 if (ret < 0)
795 SYSERROR("Failed to set environment variable: LXC_NAME=%s", name);
796
797 if (conf->rcfile) {
798 ret = setenv("LXC_CONFIG_FILE", conf->rcfile, 1);
799 if (ret < 0)
800 SYSERROR("Failed to set environment variable: LXC_CONFIG_FILE=%s", conf->rcfile);
801 }
802
803 if (conf->rootfs.mount) {
804 ret = setenv("LXC_ROOTFS_MOUNT", conf->rootfs.mount, 1);
805 if (ret < 0)
806 SYSERROR("Failed to set environment variable: LXC_ROOTFS_MOUNT=%s", conf->rootfs.mount);
807 }
808
809 if (conf->rootfs.path) {
810 ret = setenv("LXC_ROOTFS_PATH", conf->rootfs.path, 1);
811 if (ret < 0)
812 SYSERROR("Failed to set environment variable: LXC_ROOTFS_PATH=%s", conf->rootfs.path);
813 }
814
815 if (conf->console.path) {
816 ret = setenv("LXC_CONSOLE", conf->console.path, 1);
817 if (ret < 0)
818 SYSERROR("Failed to set environment variable: LXC_CONSOLE=%s", conf->console.path);
819 }
820
821 if (conf->console.log_path) {
822 ret = setenv("LXC_CONSOLE_LOGPATH", conf->console.log_path, 1);
823 if (ret < 0)
824 SYSERROR("Failed to set environment variable: LXC_CONSOLE_LOGPATH=%s", conf->console.log_path);
825 }
826
827 if (cgns_supported()) {
828 ret = setenv("LXC_CGNS_AWARE", "1", 1);
829 if (ret < 0)
830 SYSERROR("Failed to set environment variable LXC_CGNS_AWARE=1");
831 }
832
833 loglevel = lxc_log_priority_to_string(lxc_log_get_level());
834 ret = setenv("LXC_LOG_LEVEL", loglevel, 1);
835 if (ret < 0)
836 SYSERROR("Set environment variable LXC_LOG_LEVEL=%s", loglevel);
837
838 if (conf->hooks_version == 0)
839 ret = setenv("LXC_HOOK_VERSION", "0", 1);
840 else
841 ret = setenv("LXC_HOOK_VERSION", "1", 1);
842 if (ret < 0)
843 SYSERROR("Failed to set environment variable LXC_HOOK_VERSION=%u", conf->hooks_version);
844 /* End of environment variable setup for hooks. */
845
846 TRACE("Set environment variables");
847
848 ret = run_lxc_hooks(name, "pre-start", conf, NULL);
849 if (ret < 0)
850 return log_error(-1, "Failed to run lxc.hook.pre-start for container \"%s\"", name);
851 TRACE("Ran pre-start hooks");
852
853 ret = lxc_terminal_parent(conf);
854 if (ret < 0)
855 return log_error(-1, "Failed to allocate terminal");
856
857 /* The signal fd has to be created before forking otherwise if the child
858 * process exits before we setup the signal fd, the event will be lost
859 * and the command will be stuck.
860 */
861 handler->sigfd = setup_signal_fd(&handler->oldmask);
862 if (handler->sigfd < 0)
863 return log_error(-1, "Failed to setup SIGCHLD fd handler.");
864 TRACE("Set up signal fd");
865
866 handler->cgroup_ops = cgroup_init(handler->conf);
867 if (!handler->cgroup_ops) {
868 ERROR("Failed to initialize cgroup driver");
869 goto out_restore_sigmask;
870 }
871 TRACE("Initialized cgroup driver");
872
873 ret = lxc_read_seccomp_config(conf);
874 if (ret < 0) {
875 ERROR("Failed to read seccomp policy");
876 goto out_restore_sigmask;
877 }
878 TRACE("Read seccomp policy");
879
880 ret = handler->lsm_ops->prepare(handler->lsm_ops, conf, handler->lxcpath);
881 if (ret < 0) {
882 ERROR("Failed to initialize LSM");
883 goto out_restore_sigmask;
884 }
885 TRACE("Initialized LSM");
886
887 INFO("Container \"%s\" is initialized", name);
888 handler->monitor_status_fd = move_fd(status_fd);
889 return 0;
890
891 out_restore_sigmask:
892 (void)pthread_sigmask(SIG_SETMASK, &handler->oldmask, NULL);
893
894 return -1;
895 }
896
897 void lxc_expose_namespace_environment(const struct lxc_handler *handler)
898 {
899 for (lxc_namespace_t i = 0; i < LXC_NS_MAX; i++) {
900 int ret;
901 const char *fd_path;
902
903 if (handler->nsfd[i] < 0)
904 continue;
905
906 fd_path = handler->nsfd_paths[i] + strcspn(handler->nsfd_paths[i], "/");
907 ret = setenv(ns_info[i].env_name, fd_path, 1);
908 if (ret < 0)
909 SYSERROR("Failed to set environment variable %s=%s",
910 ns_info[i].env_name, fd_path);
911 else
912 TRACE("Set environment variable %s=%s",
913 ns_info[i].env_name, fd_path);
914 }
915 }
916
917 void lxc_end(struct lxc_handler *handler)
918 {
919 int ret;
920 struct lxc_list *cur, *next;
921 const char *name = handler->name;
922 struct cgroup_ops *cgroup_ops = handler->cgroup_ops;
923
924 /* The STOPPING state is there for future cleanup code which can take
925 * awhile.
926 */
927 lxc_set_state(name, handler, STOPPING);
928
929 /* Passing information to hooks via environment variables. */
930 if (handler->conf->hooks_version > 0)
931 lxc_expose_namespace_environment(handler);
932
933 if (handler->conf->reboot > REBOOT_NONE) {
934 ret = setenv("LXC_TARGET", "reboot", 1);
935 if (ret < 0)
936 SYSERROR("Failed to set environment variable: LXC_TARGET=reboot");
937 }
938
939 if (handler->conf->reboot == REBOOT_NONE) {
940 ret = setenv("LXC_TARGET", "stop", 1);
941 if (ret < 0)
942 SYSERROR("Failed to set environment variable: LXC_TARGET=stop");
943 }
944
945 if (handler->conf->hooks_version == 0)
946 ret = run_lxc_hooks(name, "stop", handler->conf, handler->hook_argv);
947 else
948 ret = run_lxc_hooks(name, "stop", handler->conf, NULL);
949 if (ret < 0)
950 ERROR("Failed to run \"lxc.hook.stop\" hook");
951
952 handler->lsm_ops->cleanup(handler->lsm_ops, handler->conf, handler->lxcpath);
953
954 if (cgroup_ops) {
955 cgroup_ops->payload_destroy(cgroup_ops, handler);
956 cgroup_ops->monitor_destroy(cgroup_ops, handler);
957 }
958
959 put_lxc_rootfs(&handler->conf->rootfs, true);
960
961 if (handler->conf->reboot == REBOOT_NONE) {
962 /* For all new state clients simply close the command socket.
963 * This will inform all state clients that the container is
964 * STOPPED and also prevents a race between a open()/close() on
965 * the command socket causing a new process to get ECONNREFUSED
966 * because we haven't yet closed the command socket.
967 */
968 close_prot_errno_disarm(handler->conf->maincmd_fd);
969 TRACE("Closed command socket");
970
971 /* This function will try to connect to the legacy lxc-monitord
972 * state server and only exists for backwards compatibility.
973 */
974 lxc_monitor_send_state(name, STOPPED, handler->lxcpath);
975
976 /* The command socket is closed so no one can acces the command
977 * socket anymore so there's no need to lock it.
978 */
979 handler->state = STOPPED;
980 TRACE("Set container state to \"STOPPED\"");
981 } else {
982 lxc_set_state(name, handler, STOPPED);
983 TRACE("Set container state to \"STOPPED\"");
984 }
985
986 /* Avoid lingering namespace references. */
987 lxc_put_nsfds(handler);
988
989 ret = run_lxc_hooks(name, "post-stop", handler->conf, NULL);
990 if (ret < 0) {
991 ERROR("Failed to run lxc.hook.post-stop for container \"%s\"", name);
992 if (handler->conf->reboot > REBOOT_NONE) {
993 WARN("Container will be stopped instead of rebooted");
994 handler->conf->reboot = REBOOT_NONE;
995
996 ret = setenv("LXC_TARGET", "stop", 1);
997 if (ret < 0)
998 WARN("Failed to set environment variable: LXC_TARGET=stop");
999 }
1000 }
1001
1002 /* Reset mask set by setup_signal_fd. */
1003 ret = pthread_sigmask(SIG_SETMASK, &handler->oldmask, NULL);
1004 if (ret < 0)
1005 SYSWARN("Failed to restore signal mask");
1006
1007 lxc_terminal_delete(&handler->conf->console);
1008 lxc_delete_tty(&handler->conf->ttys);
1009 close_prot_errno_disarm(handler->conf->devpts_fd);
1010
1011 /* The command socket is now closed, no more state clients can register
1012 * themselves from now on. So free the list of state clients.
1013 */
1014 lxc_list_for_each_safe(cur, &handler->conf->state_clients, next) {
1015 struct lxc_state_client *client = cur->elem;
1016
1017 /* Keep state clients that want to be notified about reboots. */
1018 if ((handler->conf->reboot > REBOOT_NONE) &&
1019 (client->states[RUNNING] == 2))
1020 continue;
1021
1022 /* close state client socket */
1023 lxc_list_del(cur);
1024 close(client->clientfd);
1025 free(cur->elem);
1026 free(cur);
1027 }
1028
1029 if (handler->conf->ephemeral == 1 && handler->conf->reboot != REBOOT_REQ)
1030 lxc_destroy_container_on_signal(handler, name);
1031
1032 lxc_put_handler(handler);
1033 }
1034
1035 void lxc_abort(struct lxc_handler *handler)
1036 {
1037 int ret = 0;
1038 int status;
1039
1040 lxc_set_state(handler->name, handler, ABORTING);
1041
1042 if (handler->pidfd >= 0) {
1043 ret = lxc_raw_pidfd_send_signal(handler->pidfd, SIGKILL, NULL, 0);
1044 if (ret)
1045 SYSWARN("Failed to send SIGKILL via pidfd %d for process %d",
1046 handler->pidfd, handler->pid);
1047 }
1048
1049 if ((!ret || errno != ESRCH) && handler->pid > 0)
1050 if (kill(handler->pid, SIGKILL))
1051 SYSWARN("Failed to send SIGKILL to %d", handler->pid);
1052
1053 do {
1054 ret = waitpid(-1, &status, 0);
1055 } while (ret > 0);
1056 }
1057
1058 static int do_start(void *data)
1059 {
1060 struct lxc_handler *handler = data;
1061 __lxc_unused __do_close int data_sock0 = handler->data_sock[0],
1062 data_sock1 = handler->data_sock[1];
1063 __do_close int devnull_fd = -EBADF, status_fd = -EBADF;
1064 int ret;
1065 uid_t new_uid;
1066 gid_t new_gid;
1067 struct lxc_list *iterator;
1068 uid_t nsuid = 0;
1069 gid_t nsgid = 0;
1070
1071 lxc_sync_fini_parent(handler);
1072
1073 if (lxc_abstract_unix_recv_one_fd(data_sock1, &status_fd, NULL, 0) < 0) {
1074 ERROR("Failed to receive status file descriptor from parent process");
1075 goto out_warn_father;
1076 }
1077
1078 /* This prctl must be before the synchro, so if the parent dies before
1079 * we set the parent death signal, we will detect its death with the
1080 * synchro right after, otherwise we have a window where the parent can
1081 * exit before we set the pdeath signal leading to a unsupervized
1082 * container.
1083 */
1084 ret = lxc_set_death_signal(SIGKILL, handler->monitor_pid, status_fd);
1085 if (ret < 0) {
1086 SYSERROR("Failed to set PR_SET_PDEATHSIG to SIGKILL");
1087 goto out_warn_father;
1088 }
1089
1090 ret = lxc_ambient_caps_up();
1091 if (ret < 0) {
1092 ERROR("Failed to raise ambient capabilities");
1093 goto out_warn_father;
1094 }
1095
1096 ret = pthread_sigmask(SIG_SETMASK, &handler->oldmask, NULL);
1097 if (ret < 0) {
1098 SYSERROR("Failed to set signal mask");
1099 goto out_warn_father;
1100 }
1101
1102 if (!lxc_sync_wait_parent(handler, START_SYNC_STARTUP))
1103 goto out_warn_father;
1104
1105 /* Unshare CLONE_NEWNET after CLONE_NEWUSER. See
1106 * https://github.com/lxc/lxd/issues/1978.
1107 */
1108 if (handler->ns_unshare_flags & CLONE_NEWNET) {
1109 ret = unshare(CLONE_NEWNET);
1110 if (ret < 0) {
1111 SYSERROR("Failed to unshare CLONE_NEWNET");
1112 goto out_warn_father;
1113 }
1114 INFO("Unshared CLONE_NEWNET");
1115 }
1116
1117 /* If we are in a new user namespace, become root there to have
1118 * privilege over our namespace.
1119 */
1120 if (!lxc_list_empty(&handler->conf->id_map)) {
1121 if (!handler->conf->root_nsuid_map)
1122 nsuid = handler->conf->init_uid;
1123
1124 if (!handler->conf->root_nsgid_map)
1125 nsgid = handler->conf->init_gid;
1126
1127 /* Drop groups only after we switched to a valid gid in the new
1128 * user namespace.
1129 */
1130 if (!lxc_drop_groups() &&
1131 (handler->am_root || errno != EPERM))
1132 goto out_warn_father;
1133
1134 if (!lxc_switch_uid_gid(nsuid, nsgid))
1135 goto out_warn_father;
1136
1137 ret = prctl(PR_SET_DUMPABLE, prctl_arg(1), prctl_arg(0),
1138 prctl_arg(0), prctl_arg(0));
1139 if (ret < 0)
1140 goto out_warn_father;
1141
1142 /* set{g,u}id() clears deathsignal */
1143 ret = lxc_set_death_signal(SIGKILL, handler->monitor_pid, status_fd);
1144 if (ret < 0) {
1145 SYSERROR("Failed to set PR_SET_PDEATHSIG to SIGKILL");
1146 goto out_warn_father;
1147 }
1148 }
1149
1150 ret = access(handler->lxcpath, X_OK);
1151 if (ret != 0) {
1152 print_top_failing_dir(handler->lxcpath);
1153 goto out_warn_father;
1154 }
1155
1156 /* In order to checkpoint restore, we need to have everything in the
1157 * same mount namespace. However, some containers may not have a
1158 * reasonable /dev (in particular, they may not have /dev/null), so we
1159 * can't set init's std fds to /dev/null by opening it from inside the
1160 * container.
1161 *
1162 * If that's the case, fall back to using the host's /dev/null. This
1163 * means that migration won't work, but at least we won't spew output
1164 * where it isn't wanted.
1165 */
1166 if (handler->daemonize && !handler->conf->autodev) {
1167 char path[PATH_MAX];
1168
1169 ret = strnprintf(path, sizeof(path), "%s/dev/null",
1170 handler->conf->rootfs.mount);
1171 if (ret < 0)
1172 goto out_warn_father;
1173
1174 ret = access(path, F_OK);
1175 if (ret != 0) {
1176 devnull_fd = open_devnull();
1177
1178 if (devnull_fd < 0)
1179 goto out_warn_father;
1180 WARN("Using /dev/null from the host for container init's standard file descriptors. Migration will not work");
1181 }
1182 }
1183
1184 /*
1185 * Tell the parent task it can begin to configure the container and wait
1186 * for it to finish.
1187 */
1188 if (!lxc_sync_wake_parent(handler, START_SYNC_CONFIGURE))
1189 goto out_error;
1190
1191 /* Unshare cgroup namespace after we have setup our cgroups. If we do it
1192 * earlier we end up with a wrong view of /proc/self/cgroup. For
1193 * example, assume we unshare(CLONE_NEWCGROUP) first, and then create
1194 * the cgroup for the container, say /sys/fs/cgroup/cpuset/lxc/c, then
1195 * /proc/self/cgroup would show us:
1196 *
1197 * 8:cpuset:/lxc/c
1198 *
1199 * whereas it should actually show
1200 *
1201 * 8:cpuset:/
1202 */
1203 if (handler->ns_unshare_flags & CLONE_NEWCGROUP) {
1204 ret = unshare(CLONE_NEWCGROUP);
1205 if (ret < 0) {
1206 if (errno != EINVAL) {
1207 SYSERROR("Failed to unshare CLONE_NEWCGROUP");
1208 goto out_warn_father;
1209 }
1210
1211 handler->ns_clone_flags &= ~CLONE_NEWCGROUP;
1212 SYSINFO("Kernel does not support CLONE_NEWCGROUP");
1213 } else {
1214 INFO("Unshared CLONE_NEWCGROUP");
1215 }
1216 }
1217
1218 if (handler->ns_unshare_flags & CLONE_NEWTIME) {
1219 ret = unshare(CLONE_NEWTIME);
1220 if (ret < 0) {
1221 if (errno != EINVAL) {
1222 SYSERROR("Failed to unshare CLONE_NEWTIME");
1223 goto out_warn_father;
1224 }
1225
1226 handler->ns_clone_flags &= ~CLONE_NEWTIME;
1227 SYSINFO("Kernel does not support CLONE_NEWTIME");
1228 } else {
1229 __do_close int timens_fd = -EBADF;
1230
1231 INFO("Unshared CLONE_NEWTIME");
1232
1233 if (handler->conf->timens.s_boot)
1234 ret = timens_offset_write(CLOCK_BOOTTIME, handler->conf->timens.s_boot, 0);
1235 else if (handler->conf->timens.ns_boot)
1236 ret = timens_offset_write(CLOCK_BOOTTIME, 0, handler->conf->timens.ns_boot);
1237 if (ret) {
1238 SYSERROR("Failed to write CLONE_BOOTTIME offset");
1239 goto out_warn_father;
1240 }
1241 TRACE("Wrote CLOCK_BOOTTIME offset");
1242
1243 if (handler->conf->timens.s_monotonic)
1244 ret = timens_offset_write(CLOCK_MONOTONIC, handler->conf->timens.s_monotonic, 0);
1245 else if (handler->conf->timens.ns_monotonic)
1246 ret = timens_offset_write(CLOCK_MONOTONIC, 0, handler->conf->timens.ns_monotonic);
1247 if (ret) {
1248 SYSERROR("Failed to write CLONE_MONOTONIC offset");
1249 goto out_warn_father;
1250 }
1251 TRACE("Wrote CLOCK_MONOTONIC offset");
1252
1253 timens_fd = open("/proc/self/ns/time_for_children", O_RDONLY | O_CLOEXEC);
1254 if (timens_fd < 0) {
1255 SYSERROR("Failed to open \"/proc/self/ns/time_for_children\"");
1256 goto out_warn_father;
1257 }
1258
1259 ret = setns(timens_fd, CLONE_NEWTIME);
1260 if (ret) {
1261 SYSERROR("Failed to setns(%d(\"/proc/self/ns/time_for_children\"))", timens_fd);
1262 goto out_warn_father;
1263 }
1264 }
1265 }
1266
1267 /* Add the requested environment variables to the current environment to
1268 * allow them to be used by the various hooks, such as the start hook
1269 * below.
1270 */
1271 lxc_list_for_each(iterator, &handler->conf->environment) {
1272 ret = putenv((char *)iterator->elem);
1273 if (ret < 0) {
1274 SYSERROR("Failed to set environment variable: %s",
1275 (char *)iterator->elem);
1276 goto out_warn_father;
1277 }
1278 }
1279
1280 if (!lxc_sync_wait_parent(handler, START_SYNC_POST_CONFIGURE))
1281 goto out_warn_father;
1282
1283 /* Setup the container, ip, names, utsname, ... */
1284 ret = lxc_setup(handler);
1285 if (ret < 0) {
1286 ERROR("Failed to setup container \"%s\"", handler->name);
1287 goto out_warn_father;
1288 }
1289
1290 /* Set the label to change to when we exec(2) the container's init. */
1291 ret = handler->lsm_ops->process_label_set(handler->lsm_ops, NULL, handler->conf, true);
1292 if (ret < 0)
1293 goto out_warn_father;
1294
1295 /* Set PR_SET_NO_NEW_PRIVS after we changed the lsm label. If we do it
1296 * before we aren't allowed anymore.
1297 */
1298 if (handler->conf->no_new_privs) {
1299 ret = prctl(PR_SET_NO_NEW_PRIVS, prctl_arg(1), prctl_arg(0),
1300 prctl_arg(0), prctl_arg(0));
1301 if (ret < 0) {
1302 SYSERROR("Could not set PR_SET_NO_NEW_PRIVS to block execve() gainable privileges");
1303 goto out_warn_father;
1304 }
1305 DEBUG("Set PR_SET_NO_NEW_PRIVS to block execve() gainable privileges");
1306 }
1307
1308 /* If we mounted a temporary proc, then unmount it now. */
1309 tmp_proc_unmount(handler->conf);
1310
1311 ret = lxc_seccomp_load(handler->conf);
1312 if (ret < 0)
1313 goto out_warn_father;
1314
1315 ret = run_lxc_hooks(handler->name, "start", handler->conf, NULL);
1316 if (ret < 0) {
1317 ERROR("Failed to run lxc.hook.start for container \"%s\"",
1318 handler->name);
1319 goto out_warn_father;
1320 }
1321
1322 close_prot_errno_disarm(handler->sigfd);
1323
1324 if (handler->conf->console.pty < 0 && handler->daemonize) {
1325 if (devnull_fd < 0) {
1326 devnull_fd = open_devnull();
1327 if (devnull_fd < 0)
1328 goto out_warn_father;
1329 }
1330
1331 ret = set_stdfds(devnull_fd);
1332 if (ret < 0) {
1333 ERROR("Failed to redirect std{in,out,err} to \"/dev/null\"");
1334 goto out_warn_father;
1335 }
1336 }
1337
1338 close_prot_errno_disarm(devnull_fd);
1339
1340 setsid();
1341
1342 if (handler->conf->init_cwd) {
1343 ret = chdir(handler->conf->init_cwd);
1344 if (ret < 0) {
1345 SYSERROR("Could not change directory to \"%s\"",
1346 handler->conf->init_cwd);
1347 goto out_warn_father;
1348 }
1349 }
1350
1351 if (!lxc_sync_barrier_parent(handler, START_SYNC_CGROUP_LIMITS))
1352 goto out_warn_father;
1353
1354 ret = lxc_sync_fds_child(handler);
1355 if (ret < 0) {
1356 SYSERROR("Failed to sync file descriptors with parent");
1357 goto out_warn_father;
1358 }
1359
1360 if (!lxc_sync_wait_parent(handler, START_SYNC_READY_START))
1361 goto out_warn_father;
1362
1363 /* Reset the environment variables the user requested in a clear
1364 * environment.
1365 */
1366 ret = clearenv();
1367 /* Don't error out though. */
1368 if (ret < 0)
1369 SYSERROR("Failed to clear environment.");
1370
1371 lxc_list_for_each(iterator, &handler->conf->environment) {
1372 ret = putenv((char *)iterator->elem);
1373 if (ret < 0) {
1374 SYSERROR("Failed to set environment variable: %s",
1375 (char *)iterator->elem);
1376 goto out_warn_father;
1377 }
1378 }
1379
1380 ret = putenv("container=lxc");
1381 if (ret < 0) {
1382 SYSERROR("Failed to set environment variable: container=lxc");
1383 goto out_warn_father;
1384 }
1385
1386 if (handler->conf->ttys.tty_names) {
1387 ret = putenv(handler->conf->ttys.tty_names);
1388 if (ret < 0) {
1389 SYSERROR("Failed to set environment variable for container ptys");
1390 goto out_warn_father;
1391 }
1392 }
1393
1394 /* The container has been setup. We can now switch to an unprivileged
1395 * uid/gid.
1396 */
1397 new_uid = handler->conf->init_uid;
1398 new_gid = handler->conf->init_gid;
1399
1400 /* Avoid unnecessary syscalls. */
1401 if (new_uid == nsuid)
1402 new_uid = LXC_INVALID_UID;
1403
1404 if (new_gid == nsgid)
1405 new_gid = LXC_INVALID_GID;
1406
1407 /* Make sure that the processes STDIO is correctly owned by the user that we are switching to */
1408 ret = fix_stdio_permissions(new_uid);
1409 if (ret)
1410 WARN("Failed to ajust stdio permissions");
1411
1412 /* If we are in a new user namespace we already dropped all groups when
1413 * we switched to root in the new user namespace further above. Only
1414 * drop groups if we can, so ensure that we have necessary privilege.
1415 */
1416 if (lxc_list_empty(&handler->conf->id_map)) {
1417 #if HAVE_LIBCAP
1418 if (lxc_proc_cap_is_set(CAP_SETGID, CAP_EFFECTIVE))
1419 #endif
1420 {
1421 if (handler->conf->init_groups.size > 0) {
1422 if (!lxc_setgroups(handler->conf->init_groups.list,
1423 handler->conf->init_groups.size))
1424 goto out_warn_father;
1425 } else {
1426 if (!lxc_drop_groups())
1427 goto out_warn_father;
1428 }
1429 }
1430 }
1431
1432 if (!lxc_switch_uid_gid(new_uid, new_gid))
1433 goto out_warn_father;
1434
1435 ret = lxc_ambient_caps_down();
1436 if (ret < 0) {
1437 ERROR("Failed to clear ambient capabilities");
1438 goto out_warn_father;
1439 }
1440
1441 if (handler->conf->monitor_signal_pdeath != SIGKILL) {
1442 ret = lxc_set_death_signal(handler->conf->monitor_signal_pdeath,
1443 handler->monitor_pid, status_fd);
1444 if (ret < 0) {
1445 SYSERROR("Failed to set PR_SET_PDEATHSIG to %d",
1446 handler->conf->monitor_signal_pdeath);
1447 goto out_warn_father;
1448 }
1449 }
1450
1451 /*
1452 * After this call, we are in error because this ops should not return
1453 * as it execs.
1454 */
1455 handler->ops->start(handler, handler->data);
1456
1457 out_warn_father:
1458 /*
1459 * We want the parent to know something went wrong, so we return a
1460 * special error code.
1461 */
1462 lxc_sync_wake_parent(handler, SYNC_ERROR);
1463
1464 out_error:
1465 return -1;
1466 }
1467
1468 int resolve_clone_flags(struct lxc_handler *handler)
1469 {
1470 int i;
1471 struct lxc_conf *conf = handler->conf;
1472 bool wants_timens = conf->timens.s_boot || conf->timens.ns_boot ||
1473 conf->timens.s_monotonic || conf->timens.ns_monotonic;
1474
1475 for (i = 0; i < LXC_NS_MAX; i++) {
1476 if (conf->ns_keep) {
1477 if (!(conf->ns_keep & ns_info[i].clone_flag))
1478 handler->ns_clone_flags |= ns_info[i].clone_flag;
1479 } else if (conf->ns_clone) {
1480 if ((conf->ns_clone & ns_info[i].clone_flag))
1481 handler->ns_clone_flags |= ns_info[i].clone_flag;
1482 } else {
1483 if (i == LXC_NS_USER && lxc_list_empty(&handler->conf->id_map))
1484 continue;
1485
1486 if (i == LXC_NS_NET && lxc_requests_empty_network(handler))
1487 continue;
1488
1489 if (i == LXC_NS_CGROUP && !cgns_supported())
1490 continue;
1491
1492 if (i == LXC_NS_TIME && !wants_timens)
1493 continue;
1494
1495 handler->ns_clone_flags |= ns_info[i].clone_flag;
1496 }
1497
1498 if (!conf->ns_share[i])
1499 continue;
1500
1501 handler->ns_clone_flags &= ~ns_info[i].clone_flag;
1502 TRACE("Sharing %s namespace", ns_info[i].proc_name);
1503 }
1504
1505 if (wants_timens && (conf->ns_keep & ns_info[LXC_NS_TIME].clone_flag))
1506 return log_trace_errno(-1, EINVAL, "Requested to keep time namespace while also specifying offsets");
1507
1508 /* Deal with namespaces that are unshared. */
1509 if (handler->ns_clone_flags & CLONE_NEWTIME)
1510 handler->ns_unshare_flags |= CLONE_NEWTIME;
1511
1512 if (!pure_unified_layout(handler->cgroup_ops) && handler->ns_clone_flags & CLONE_NEWCGROUP)
1513 handler->ns_unshare_flags |= CLONE_NEWCGROUP;
1514
1515 if ((handler->ns_clone_flags & (CLONE_NEWNET | CLONE_NEWUSER)) ==
1516 (CLONE_NEWNET | CLONE_NEWUSER))
1517 handler->ns_unshare_flags |= CLONE_NEWNET;
1518
1519 /* Deal with namespaces that are spawned. */
1520 handler->ns_on_clone_flags = handler->ns_clone_flags & ~handler->ns_unshare_flags;
1521
1522 handler->clone_flags = handler->ns_on_clone_flags | CLONE_PIDFD;
1523
1524 return 0;
1525 }
1526
1527 /* Note that this function is used with clone(CLONE_VM). Some glibc versions
1528 * used to reset the pid/tid to -1 when CLONE_VM was used without CLONE_THREAD.
1529 * But since the memory between parent and child is shared on CLONE_VM this
1530 * would invalidate the getpid() cache that glibc used to maintain and so
1531 * getpid() in the child would return the parent's pid. This is all fixed in
1532 * newer glibc versions where the getpid() cache is removed and the pid/tid is
1533 * not reset anymore.
1534 * However, if for whatever reason you - dear committer - somehow need to get the
1535 * pid of the placeholder intermediate process for do_share_ns() you need to
1536 * call lxc_raw_getpid(). The next lxc_raw_clone() call does not employ
1537 * CLONE_VM and will be fine.
1538 */
1539 static inline int do_share_ns(void *arg)
1540 {
1541 int i, flags, ret;
1542 struct lxc_handler *handler = arg;
1543
1544 for (i = 0; i < LXC_NS_MAX; i++) {
1545 if (handler->nsfd[i] < 0)
1546 continue;
1547
1548 ret = setns(handler->nsfd[i], 0);
1549 if (ret < 0) {
1550 /*
1551 * Note that joining a user and/or mount namespace
1552 * requires the process is not multithreaded otherwise
1553 * setns() will fail here.
1554 */
1555 SYSERROR("Failed to inherit %s namespace",
1556 ns_info[i].proc_name);
1557 return -1;
1558 }
1559
1560 DEBUG("Inherited %s namespace", ns_info[i].proc_name);
1561 }
1562
1563 flags = handler->ns_on_clone_flags;
1564 flags |= CLONE_PARENT;
1565 handler->pid = lxc_raw_clone_cb(do_start, handler, CLONE_PIDFD | flags,
1566 &handler->pidfd);
1567 if (handler->pid < 0)
1568 return -1;
1569
1570 return 0;
1571 }
1572
1573 /* lxc_spawn() performs crucial setup tasks and clone()s the new process which
1574 * exec()s the requested container binary.
1575 * Note that lxc_spawn() runs in the parent namespaces. Any operations performed
1576 * right here should be double checked if they'd pose a security risk. (For
1577 * example, any {u}mount() operations performed here will be reflected on the
1578 * host!)
1579 */
1580 static int lxc_spawn(struct lxc_handler *handler)
1581 {
1582 __do_close int data_sock0 = -EBADF, data_sock1 = -EBADF;
1583 int i, ret;
1584 char pidstr[20];
1585 bool wants_to_map_ids;
1586 struct lxc_list *id_map;
1587 const char *name = handler->name;
1588 const char *lxcpath = handler->lxcpath;
1589 bool share_ns = false;
1590 struct lxc_conf *conf = handler->conf;
1591 struct cgroup_ops *cgroup_ops = handler->cgroup_ops;
1592
1593 id_map = &conf->id_map;
1594 wants_to_map_ids = !lxc_list_empty(id_map);
1595
1596 for (i = 0; i < LXC_NS_MAX; i++) {
1597 if (!conf->ns_share[i])
1598 continue;
1599
1600 handler->nsfd[i] = lxc_inherit_namespace(conf->ns_share[i], lxcpath, ns_info[i].proc_name);
1601 if (handler->nsfd[i] < 0)
1602 return -1;
1603
1604 share_ns = true;
1605 }
1606
1607 if (!lxc_sync_init(handler))
1608 return -1;
1609
1610 ret = socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0,
1611 handler->data_sock);
1612 if (ret < 0)
1613 goto out_sync_fini;
1614 data_sock0 = handler->data_sock[0];
1615 data_sock1 = handler->data_sock[1];
1616
1617 ret = resolve_clone_flags(handler);
1618 if (ret < 0)
1619 goto out_sync_fini;
1620
1621 if (handler->ns_clone_flags & CLONE_NEWNET) {
1622 ret = lxc_find_gateway_addresses(handler);
1623 if (ret) {
1624 ERROR("Failed to find gateway addresses");
1625 goto out_sync_fini;
1626 }
1627 }
1628
1629 if (!cgroup_ops->payload_create(cgroup_ops, handler)) {
1630 ERROR("Failed creating cgroups");
1631 goto out_delete_net;
1632 }
1633
1634 /* Create a process in a new set of namespaces. */
1635 if (share_ns) {
1636 pid_t attacher_pid;
1637
1638 attacher_pid = lxc_clone(do_share_ns, handler,
1639 CLONE_VFORK | CLONE_VM | CLONE_FILES, NULL);
1640 if (attacher_pid < 0) {
1641 SYSERROR(LXC_CLONE_ERROR);
1642 goto out_delete_net;
1643 }
1644
1645 ret = wait_for_pid(attacher_pid);
1646 if (ret < 0) {
1647 SYSERROR("Intermediate process failed");
1648 goto out_delete_net;
1649 }
1650
1651 if (handler->pid < 0) {
1652 SYSERROR(LXC_CLONE_ERROR);
1653 goto out_delete_net;
1654 }
1655 } else {
1656 int cgroup_fd = -EBADF;
1657
1658 struct lxc_clone_args clone_args = {
1659 .flags = handler->clone_flags,
1660 .pidfd = ptr_to_u64(&handler->pidfd),
1661 .exit_signal = SIGCHLD,
1662 };
1663
1664 if (handler->ns_clone_flags & CLONE_NEWCGROUP) {
1665 cgroup_fd = cgroup_unified_fd(cgroup_ops);
1666 if (cgroup_fd >= 0) {
1667 handler->clone_flags |= CLONE_INTO_CGROUP;
1668 clone_args.flags |= CLONE_INTO_CGROUP;
1669 clone_args.cgroup = cgroup_fd;
1670 }
1671 }
1672
1673 /* Try to spawn directly into target cgroup. */
1674 handler->pid = lxc_clone3(&clone_args, CLONE_ARGS_SIZE_VER2);
1675 if (handler->pid < 0) {
1676 SYSTRACE("Failed to spawn container directly into target cgroup");
1677
1678 /* Kernel might simply be too old for CLONE_INTO_CGROUP. */
1679 handler->clone_flags &= ~(CLONE_INTO_CGROUP | CLONE_NEWCGROUP);
1680 handler->ns_on_clone_flags &= ~CLONE_NEWCGROUP;
1681 handler->ns_unshare_flags |= CLONE_NEWCGROUP;
1682
1683 clone_args.flags = handler->clone_flags;
1684
1685 handler->pid = lxc_clone3(&clone_args, CLONE_ARGS_SIZE_VER0);
1686 } else if (cgroup_fd >= 0) {
1687 TRACE("Spawned container directly into target cgroup via cgroup2 fd %d", cgroup_fd);
1688 }
1689
1690 /* Kernel might be too old for clone3(). */
1691 if (handler->pid < 0) {
1692 SYSTRACE("Failed to spawn container via clone3()");
1693
1694 /*
1695 * In contrast to all other architectures arm64 verifies that
1696 * the argument we use to retrieve the pidfd with is
1697 * initialized to 0. But we need to be able to initialize it to
1698 * a negative value such as our customary -EBADF so we can
1699 * detect whether this kernel supports pidfds. If the syscall
1700 * returns and the pidfd variable is set to something >= 0 then
1701 * we know this is a kernel supporting pidfds. But if we can't
1702 * set it to -EBADF then this won't work since 0 is a valid
1703 * file descriptor too. And since legacy clone silently ignores
1704 * unknown flags we are left without any way to detect support
1705 * for pidfds. So let's special-case arm64 to not fail starting
1706 * containers.
1707 */
1708 #if defined(__aarch64__)
1709 handler->pid = lxc_raw_legacy_clone(handler->clone_flags & ~CLONE_PIDFD, NULL);
1710 #else
1711 handler->pid = lxc_raw_legacy_clone(handler->clone_flags, &handler->pidfd);
1712 #endif
1713 }
1714
1715 if (handler->pid < 0) {
1716 SYSERROR(LXC_CLONE_ERROR);
1717 goto out_delete_net;
1718 }
1719
1720 if (handler->pid == 0) {
1721 (void)do_start(handler);
1722 _exit(EXIT_FAILURE);
1723 }
1724 }
1725 if (handler->pidfd < 0)
1726 handler->clone_flags &= ~CLONE_PIDFD;
1727 TRACE("Cloned child process %d", handler->pid);
1728
1729 /* Verify that we can actually make use of pidfds. */
1730 if (!lxc_can_use_pidfd(handler->pidfd))
1731 close_prot_errno_disarm(handler->pidfd);
1732
1733 ret = strnprintf(pidstr, 20, "%d", handler->pid);
1734 if (ret < 0)
1735 goto out_delete_net;
1736
1737 ret = setenv("LXC_PID", pidstr, 1);
1738 if (ret < 0)
1739 SYSERROR("Failed to set environment variable: LXC_PID=%s", pidstr);
1740
1741 for (i = 0; i < LXC_NS_MAX; i++)
1742 if (handler->ns_on_clone_flags & ns_info[i].clone_flag)
1743 INFO("Cloned %s", ns_info[i].flag_name);
1744
1745 if (!lxc_try_preserve_namespaces(handler, handler->ns_on_clone_flags)) {
1746 ERROR("Failed to preserve cloned namespaces for lxc.hook.stop");
1747 goto out_delete_net;
1748 }
1749
1750 lxc_sync_fini_child(handler);
1751
1752 if (lxc_abstract_unix_send_fds(handler->data_sock[0], &handler->monitor_status_fd, 1, NULL, 0) < 0) {
1753 ERROR("Failed to send status file descriptor to child process");
1754 goto out_delete_net;
1755 }
1756 close_prot_errno_disarm(handler->monitor_status_fd);
1757
1758 /* Map the container uids. The container became an invalid userid the
1759 * moment it was cloned with CLONE_NEWUSER. This call doesn't change
1760 * anything immediately, but allows the container to setuid(0) (0 being
1761 * mapped to something else on the host.) later to become a valid uid
1762 * again.
1763 */
1764 if (wants_to_map_ids) {
1765 if (!handler->conf->ns_share[LXC_NS_USER] &&
1766 (handler->conf->ns_keep & CLONE_NEWUSER) == 0) {
1767 ret = lxc_map_ids(id_map, handler->pid);
1768 if (ret < 0) {
1769 ERROR("Failed to set up id mapping.");
1770 goto out_delete_net;
1771 }
1772 }
1773 }
1774
1775 if (!cgroup_ops->setup_limits_legacy(cgroup_ops, handler->conf, false)) {
1776 ERROR("Failed to setup cgroup limits for container \"%s\"", name);
1777 goto out_delete_net;
1778 }
1779
1780 if (!cgroup_ops->payload_delegate_controllers(cgroup_ops)) {
1781 ERROR("Failed to delegate controllers to payload cgroup");
1782 goto out_delete_net;
1783 }
1784
1785 if (!cgroup_ops->payload_enter(cgroup_ops, handler)) {
1786 ERROR("Failed to enter cgroups");
1787 goto out_delete_net;
1788 }
1789
1790 if (!cgroup_ops->setup_limits(cgroup_ops, handler)) {
1791 ERROR("Failed to setup cgroup limits for container \"%s\"", name);
1792 goto out_delete_net;
1793 }
1794
1795 if (!cgroup_ops->chown(cgroup_ops, handler->conf))
1796 goto out_delete_net;
1797
1798 if (!lxc_sync_barrier_child(handler, START_SYNC_STARTUP))
1799 goto out_delete_net;
1800
1801 /* If not done yet, we're now ready to preserve the network namespace */
1802 if (handler->nsfd[LXC_NS_NET] < 0) {
1803 ret = lxc_try_preserve_namespace(handler, LXC_NS_NET, "net");
1804 if (ret < 0) {
1805 if (ret != -ENOENT) {
1806 SYSERROR("Failed to preserve net namespace");
1807 goto out_delete_net;
1808 }
1809 }
1810 }
1811 ret = lxc_netns_set_nsid(handler->nsfd[LXC_NS_NET]);
1812 if (ret < 0)
1813 SYSWARN("Failed to allocate new network namespace id");
1814 else
1815 TRACE("Allocated new network namespace id");
1816
1817 /* Create the network configuration. */
1818 if (handler->ns_clone_flags & CLONE_NEWNET) {
1819 ret = lxc_create_network(handler);
1820 if (ret < 0) {
1821 ERROR("Failed to create the network");
1822 goto out_delete_net;
1823 }
1824 }
1825
1826 if (!lxc_list_empty(&conf->procs)) {
1827 ret = setup_proc_filesystem(&conf->procs, handler->pid);
1828 if (ret < 0)
1829 goto out_delete_net;
1830 }
1831
1832 if (!lxc_list_empty(&conf->limits)) {
1833 ret = setup_resource_limits(&conf->limits, handler->pid);
1834 if (ret < 0) {
1835 ERROR("Failed to setup resource limits");
1836 goto out_delete_net;
1837 }
1838 }
1839
1840 /* Tell the child to continue its initialization. */
1841 if (!lxc_sync_wake_child(handler, START_SYNC_POST_CONFIGURE))
1842 goto out_delete_net;
1843
1844 ret = lxc_rootfs_prepare_parent(handler);
1845 if (ret) {
1846 ERROR("Failed to prepare rootfs");
1847 goto out_delete_net;
1848 }
1849
1850 if (handler->ns_clone_flags & CLONE_NEWNET) {
1851 ret = lxc_network_send_to_child(handler);
1852 if (ret < 0) {
1853 SYSERROR("Failed to send veth names to child");
1854 goto out_delete_net;
1855 }
1856 }
1857
1858 if (!lxc_sync_wait_child(handler, START_SYNC_IDMAPPED_MOUNTS))
1859 goto out_delete_net;
1860
1861 ret = lxc_idmapped_mounts_parent(handler);
1862 if (ret) {
1863 ERROR("Failed to setup mount entries");
1864 goto out_delete_net;
1865 }
1866
1867 if (!lxc_sync_wait_child(handler, START_SYNC_CGROUP_LIMITS))
1868 goto out_delete_net;
1869
1870 /*
1871 * With isolation the limiting devices cgroup was already setup, so
1872 * only setup devices here if we have no namespace directory.
1873 */
1874 if (!handler->conf->cgroup_meta.namespace_dir &&
1875 !cgroup_ops->setup_limits_legacy(cgroup_ops, handler->conf, true)) {
1876 ERROR("Failed to setup legacy device cgroup controller limits");
1877 goto out_delete_net;
1878 }
1879 TRACE("Set up legacy device cgroup controller limits");
1880
1881 if (!cgroup_ops->devices_activate(cgroup_ops, handler)) {
1882 ERROR("Failed to setup cgroup2 device controller limits");
1883 goto out_delete_net;
1884 }
1885 TRACE("Set up cgroup2 device controller limits");
1886
1887 cgroup_ops->finalize(cgroup_ops);
1888 TRACE("Finished setting up cgroups");
1889
1890 /* Run any host-side start hooks */
1891 ret = run_lxc_hooks(name, "start-host", conf, NULL);
1892 if (ret < 0) {
1893 ERROR("Failed to run lxc.hook.start-host");
1894 goto out_delete_net;
1895 }
1896
1897 if (!lxc_sync_wake_child(handler, START_SYNC_FDS))
1898 goto out_delete_net;
1899
1900 if (handler->ns_unshare_flags & CLONE_NEWCGROUP) {
1901 /* Now we're ready to preserve the cgroup namespace */
1902 ret = lxc_try_preserve_namespace(handler, LXC_NS_CGROUP, "cgroup");
1903 if (ret < 0) {
1904 if (ret != -ENOENT) {
1905 SYSERROR("Failed to preserve cgroup namespace");
1906 goto out_delete_net;
1907 }
1908 }
1909 }
1910
1911 if (handler->ns_unshare_flags & CLONE_NEWTIME) {
1912 /* Now we're ready to preserve the time namespace */
1913 ret = lxc_try_preserve_namespace(handler, LXC_NS_TIME, "time");
1914 if (ret < 0) {
1915 if (ret != -ENOENT) {
1916 SYSERROR("Failed to preserve time namespace");
1917 goto out_delete_net;
1918 }
1919 }
1920 }
1921
1922 ret = lxc_sync_fds_parent(handler);
1923 if (ret < 0) {
1924 SYSERROR("Failed to sync file descriptors with child");
1925 goto out_delete_net;
1926 }
1927
1928 ret = lxc_terminal_setup(conf);
1929 if (ret < 0) {
1930 SYSERROR("Failed to create console");
1931 goto out_delete_net;
1932 }
1933
1934 /*
1935 * Tell the child to complete its initialization and wait for it to
1936 * exec or return an error. (The child will never return
1937 * START_SYNC_READY_START+1. It will either close the sync pipe,
1938 * causing lxc_sync_barrier_child to return success, or return a
1939 * different value, causing us to error out).
1940 */
1941 if (!lxc_sync_barrier_child(handler, START_SYNC_READY_START))
1942 goto out_delete_net;
1943
1944 /* Now all networks are created, network devices are moved into place,
1945 * and the correct names and ifindices in the respective namespaces have
1946 * been recorded. The corresponding structs have now all been filled. So
1947 * log them for debugging purposes.
1948 */
1949 lxc_log_configured_netdevs(conf);
1950
1951 ret = handler->ops->post_start(handler, handler->data);
1952 if (ret < 0)
1953 goto out_abort;
1954
1955 ret = lxc_set_state(name, handler, RUNNING);
1956 if (ret < 0) {
1957 ERROR("Failed to set state to \"%s\"", lxc_state2str(RUNNING));
1958 goto out_abort;
1959 }
1960
1961 lxc_sync_fini(handler);
1962
1963 return 0;
1964
1965 out_delete_net:
1966 if (handler->ns_clone_flags & CLONE_NEWNET)
1967 lxc_delete_network(handler);
1968
1969 out_abort:
1970 lxc_abort(handler);
1971
1972 out_sync_fini:
1973 lxc_sync_fini(handler);
1974
1975 return -1;
1976 }
1977
1978 int __lxc_start(struct lxc_handler *handler, struct lxc_operations *ops,
1979 void *data, const char *lxcpath, bool daemonize, int *error_num)
1980 {
1981 int ret, status;
1982 const char *name = handler->name;
1983 struct lxc_conf *conf = handler->conf;
1984 struct cgroup_ops *cgroup_ops;
1985
1986 ret = lxc_init(name, handler);
1987 if (ret < 0) {
1988 ERROR("Failed to initialize container \"%s\"", name);
1989 goto out_abort;
1990 }
1991 handler->ops = ops;
1992 handler->data = data;
1993 handler->daemonize = daemonize;
1994 cgroup_ops = handler->cgroup_ops;
1995
1996 if (!attach_block_device(handler->conf)) {
1997 ERROR("Failed to attach block device");
1998 ret = -1;
1999 goto out_abort;
2000 }
2001
2002 if (!cgroup_ops->monitor_create(cgroup_ops, handler)) {
2003 ERROR("Failed to create monitor cgroup");
2004 ret = -1;
2005 goto out_abort;
2006 }
2007
2008 if (!cgroup_ops->monitor_delegate_controllers(cgroup_ops)) {
2009 ERROR("Failed to delegate controllers to monitor cgroup");
2010 ret = -1;
2011 goto out_abort;
2012 }
2013
2014 if (!cgroup_ops->monitor_enter(cgroup_ops, handler)) {
2015 ERROR("Failed to enter monitor cgroup");
2016 ret = -1;
2017 goto out_abort;
2018 }
2019
2020 /* If the rootfs is not a blockdev, prevent the container from marking
2021 * it readonly.
2022 * If the container is unprivileged then skip rootfs pinning.
2023 */
2024 ret = lxc_rootfs_init(conf, !lxc_list_empty(&conf->id_map));
2025 if (ret) {
2026 ERROR("Failed to handle rootfs pinning for container \"%s\"", handler->name);
2027 ret = -1;
2028 goto out_abort;
2029 }
2030
2031 if (geteuid() == 0 && !lxc_list_empty(&conf->id_map)) {
2032 /*
2033 * Most filesystems can't be mounted inside a userns so handle them here.
2034 */
2035 if (rootfs_is_blockdev(conf)) {
2036 ret = unshare(CLONE_NEWNS);
2037 if (ret < 0) {
2038 ERROR("Failed to unshare CLONE_NEWNS");
2039 goto out_abort;
2040 }
2041 INFO("Unshared CLONE_NEWNS");
2042
2043 ret = lxc_setup_rootfs_prepare_root(conf, name, lxcpath);
2044 if (ret < 0) {
2045 ERROR("Error setting up rootfs mount as root before spawn");
2046 goto out_abort;
2047 }
2048 INFO("Set up container rootfs as host root");
2049 }
2050 }
2051
2052 ret = lxc_spawn(handler);
2053 if (ret < 0) {
2054 ERROR("Failed to spawn container \"%s\"", name);
2055 goto out_detach_blockdev;
2056 }
2057
2058 handler->conf->reboot = REBOOT_NONE;
2059
2060 ret = lxc_poll(name, handler);
2061 if (ret) {
2062 ERROR("LXC mainloop exited with error: %d", ret);
2063 goto out_delete_network;
2064 }
2065
2066 if (!handler->init_died && handler->pid > 0) {
2067 ERROR("Child process is not killed");
2068 ret = -1;
2069 goto out_delete_network;
2070 }
2071
2072 status = lxc_wait_for_pid_status(handler->pid);
2073 if (status < 0)
2074 SYSERROR("Failed to retrieve status for %d", handler->pid);
2075
2076 /* If the child process exited but was not signaled, it didn't call
2077 * reboot. This should mean it was an lxc-execute which simply exited.
2078 * In any case, treat it as a 'halt'.
2079 */
2080 if (WIFSIGNALED(status)) {
2081 switch(WTERMSIG(status)) {
2082 case SIGINT: /* halt */
2083 DEBUG("Container \"%s\" is halting", name);
2084 break;
2085 case SIGHUP: /* reboot */
2086 DEBUG("Container \"%s\" is rebooting", name);
2087 handler->conf->reboot = REBOOT_REQ;
2088 break;
2089 case SIGSYS: /* seccomp */
2090 DEBUG("Container \"%s\" violated its seccomp policy", name);
2091 break;
2092 default:
2093 DEBUG("Unknown exit status for container \"%s\" init %d", name, WTERMSIG(status));
2094 break;
2095 }
2096 }
2097
2098 ret = lxc_restore_phys_nics_to_netns(handler);
2099 if (ret < 0)
2100 ERROR("Failed to move physical network devices back to parent network namespace");
2101
2102 lxc_monitor_send_exit_code(name, status, handler->lxcpath);
2103 lxc_error_set_and_log(handler->pid, status);
2104 if (error_num)
2105 *error_num = handler->exit_status;
2106
2107 lxc_delete_network(handler);
2108 detach_block_device(handler->conf);
2109 lxc_end(handler);
2110 return ret;
2111
2112 out_abort:
2113 lxc_abort(handler);
2114 lxc_end(handler);
2115 return ret;
2116
2117 out_detach_blockdev:
2118 lxc_abort(handler);
2119 detach_block_device(handler->conf);
2120 lxc_end(handler);
2121 return ret;
2122
2123 out_delete_network:
2124 lxc_abort(handler);
2125 lxc_restore_phys_nics_to_netns(handler);
2126 lxc_delete_network(handler);
2127 detach_block_device(handler->conf);
2128 lxc_end(handler);
2129 return ret;
2130 }
2131
2132 struct start_args {
2133 char *const *argv;
2134 };
2135
2136 static int start(struct lxc_handler *handler, void* data)
2137 {
2138 struct start_args *arg = data;
2139
2140 NOTICE("Exec'ing \"%s\"", arg->argv[0]);
2141
2142 execvp(arg->argv[0], arg->argv);
2143 SYSERROR("Failed to exec \"%s\"", arg->argv[0]);
2144 return 0;
2145 }
2146
2147 static int post_start(struct lxc_handler *handler, void* data)
2148 {
2149 struct start_args *arg = data;
2150
2151 NOTICE("Started \"%s\" with pid \"%d\"", arg->argv[0], handler->pid);
2152 return 0;
2153 }
2154
2155 static struct lxc_operations start_ops = {
2156 .start = start,
2157 .post_start = post_start
2158 };
2159
2160 int lxc_start(char *const argv[], struct lxc_handler *handler,
2161 const char *lxcpath, bool daemonize, int *error_num)
2162 {
2163 struct start_args start_arg = {
2164 .argv = argv,
2165 };
2166
2167 TRACE("Doing lxc_start");
2168 return __lxc_start(handler, &start_ops, &start_arg, lxcpath, daemonize, error_num);
2169 }
2170
2171 static void lxc_destroy_container_on_signal(struct lxc_handler *handler,
2172 const char *name)
2173 {
2174 char destroy[PATH_MAX];
2175 struct lxc_container *c;
2176 int ret = 0;
2177 bool bret = true;
2178
2179 if (handler->conf->rootfs.path && handler->conf->rootfs.mount) {
2180 bret = do_destroy_container(handler);
2181 if (!bret) {
2182 ERROR("Error destroying rootfs for container \"%s\"", name);
2183 return;
2184 }
2185 }
2186 INFO("Destroyed rootfs for container \"%s\"", name);
2187
2188 ret = strnprintf(destroy, sizeof(destroy), "%s/%s", handler->lxcpath, name);
2189 if (ret < 0) {
2190 ERROR("Error destroying directory for container \"%s\"", name);
2191 return;
2192 }
2193
2194 c = lxc_container_new(name, handler->lxcpath);
2195 if (c) {
2196 if (container_disk_lock(c)) {
2197 INFO("Could not update lxc_snapshots file");
2198 lxc_container_put(c);
2199 } else {
2200 mod_all_rdeps(c, false);
2201 container_disk_unlock(c);
2202 lxc_container_put(c);
2203 }
2204 }
2205
2206 if (!handler->am_root)
2207 ret = userns_exec_full(handler->conf, lxc_rmdir_onedev_wrapper,
2208 destroy, "lxc_rmdir_onedev_wrapper");
2209 else
2210 ret = lxc_rmdir_onedev(destroy, NULL);
2211
2212 if (ret < 0) {
2213 ERROR("Error destroying directory for container \"%s\"", name);
2214 return;
2215 }
2216 INFO("Destroyed directory for container \"%s\"", name);
2217 }
2218
2219 static int lxc_rmdir_onedev_wrapper(void *data)
2220 {
2221 char *arg = (char *) data;
2222 return lxc_rmdir_onedev(arg, NULL);
2223 }
2224
2225 static bool do_destroy_container(struct lxc_handler *handler)
2226 {
2227 int ret;
2228
2229 if (!handler->am_root) {
2230 ret = userns_exec_full(handler->conf, storage_destroy_wrapper,
2231 handler->conf, "storage_destroy_wrapper");
2232 if (ret < 0)
2233 return false;
2234
2235 return true;
2236 }
2237
2238 return storage_destroy(handler->conf);
2239 }