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