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