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