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