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