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