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