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