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