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