]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/start.c
start: check event loop type before closing fd
[mirror_lxc.git] / src / lxc / start.c
CommitLineData
cc73685d 1/* SPDX-License-Identifier: LGPL-2.1+ */
0ad19a3f 2
1160ce89
CB
3#include "config.h"
4
0ad19a3f 5#include <dirent.h>
6#include <errno.h>
b0a33c1e 7#include <fcntl.h>
c476bdce 8#include <grp.h>
37515ebd 9#include <poll.h>
b467714b 10#include <pthread.h>
f3787121
CB
11#include <signal.h>
12#include <stdio.h>
13#include <stdlib.h>
14#include <string.h>
0ad19a3f 15#include <sys/file.h>
f4d507d5 16#include <sys/mount.h>
f3787121 17#include <sys/param.h>
0ad19a3f 18#include <sys/prctl.h>
f3787121
CB
19#include <sys/socket.h>
20#include <sys/stat.h>
21#include <sys/syscall.h>
ddceb1f9 22#include <sys/types.h>
b0a33c1e 23#include <sys/un.h>
f3787121 24#include <sys/wait.h>
d38dd64a 25#include <unistd.h>
495d2046 26
12ae2a33
CB
27#include "lxc.h"
28
f3787121 29#include "af_unix.h"
5eac34d5 30#include "attach_options.h"
f3787121 31#include "caps.h"
c988c8b1
CB
32#include "cgroups/cgroup.h"
33#include "cgroups/cgroup_utils.h"
f3787121 34#include "commands.h"
bbf5cf35 35#include "commands_utils.h"
59eac805 36#include "compiler.h"
f3787121 37#include "conf.h"
74c6e2b0 38#include "confile_utils.h"
e2bcd7db 39#include "error.h"
7fbb15ec 40#include "file_utils.h"
1cc8bd4b 41#include "list.h"
f3787121 42#include "log.h"
d38dd64a 43#include "lsm/lsm.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
db4af8c5 65#if !HAVE_STRLCPY
58db1a61 66#include "strlcpy.h"
9de31d5a
CB
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 318
a15c3609 319 if ((size_t)fd <= listen_fds_max) {
46abf219
RJ
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
a15c3609 357 for (size_t 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 */
a15c3609 448 if ((__u64)siginfo.ssi_pid != (__u64)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);
a585382b
CB
632 if (descr.type == LXC_MAINLOOP_EPOLL)
633 close_prot_errno_disarm(descr.epfd);
1cc8bd4b 634 if (ret < 0 || !handler->init_died)
42b09f94 635 goto out_mainloop_console;
1cc8bd4b 636
543d2f83
CB
637 if (console) {
638 ret = lxc_terminal_mainloop_add(&descr_console, console);
639 if (ret == 0)
640 ret = lxc_mainloop(&descr_console, 0);
641 }
30a33fbd 642
3c319edb 643out_mainloop_console:
543d2f83 644 if (console) {
30a33fbd
CB
645 lxc_mainloop_close(&descr_console);
646 TRACE("Closed console mainloop");
647 }
3c319edb 648
42b09f94
CB
649out_mainloop:
650 lxc_mainloop_close(&descr);
651 TRACE("Closed mainloop");
652
b0a33c1e 653out_sigfd:
1cc8bd4b 654 TRACE("Closed signal file descriptor %d", handler->sigfd);
a783a414 655 close_prot_errno_disarm(handler->sigfd);
408da065 656
1cc8bd4b 657 return ret;
b0a33c1e 658}
659
a42abcce 660void lxc_put_handler(struct lxc_handler *handler)
f2e07cb6 661{
a783a414
CB
662 close_prot_errno_disarm(handler->pidfd);
663 close_prot_errno_disarm(handler->sigfd);
1cc8bd4b 664 lxc_put_nsfds(handler);
80308d07 665 if (handler->conf && handler->conf->reboot == REBOOT_NONE)
a783a414
CB
666 close_prot_errno_disarm(handler->conf->maincmd_fd);
667 close_prot_errno_disarm(handler->monitor_status_fd);
668 close_prot_errno_disarm(handler->state_socket_pair[0]);
669 close_prot_errno_disarm(handler->state_socket_pair[1]);
670 cgroup_exit(handler->cgroup_ops);
a42abcce
CB
671 if (handler->conf && handler->conf->reboot == REBOOT_NONE)
672 free_disarm(handler);
673 else
674 handler->conf = NULL;
f2e07cb6
CB
675}
676
a42abcce
CB
677struct lxc_handler *lxc_init_handler(struct lxc_handler *old,
678 const char *name, struct lxc_conf *conf,
5e5576a4 679 const char *lxcpath, bool daemonize)
59eb99ba 680{
85c279bb 681 int nr_keep_fds = 0;
818a57fc 682 int ret;
3a0f472d
DL
683 struct lxc_handler *handler;
684
a42abcce
CB
685 if (!old)
686 handler = zalloc(sizeof(*handler));
687 else
688 handler = old;
fdecbc9c 689 if (!handler)
3a0f472d 690 return NULL;
9044b79e 691
fdecbc9c
CB
692 /* Note that am_guest_unpriv() checks the effective uid. We
693 * probably don't care if we are real root only if we are running
694 * as root so this should be fine.
790255cf 695 */
e0010464 696 handler->am_root = !am_guest_unpriv();
fae349da 697 handler->conf = conf;
9123e471 698 handler->lxcpath = lxcpath;
818a57fc
CB
699 handler->init_died = false;
700 handler->data_sock[0] = -EBADF;
701 handler->data_sock[1] = -EBADF;
4d8bdfa0 702 handler->monitor_status_fd = -EBADF;
33942046 703 handler->pidfd = -EBADF;
1cc8bd4b 704 handler->sigfd = -EBADF;
818a57fc
CB
705 handler->state_socket_pair[0] = -EBADF;
706 handler->state_socket_pair[1] = -EBADF;
80308d07 707 if (handler->conf->reboot == REBOOT_NONE)
d2e75eba 708 INIT_LIST_HEAD(&handler->conf->state_clients);
fae349da 709
8db6be1b
CB
710 for (lxc_namespace_t idx = 0; idx < LXC_NS_MAX; idx++) {
711 handler->nsfd[idx] = -EBADF;
712
713 if (handler->conf->reboot == REBOOT_NONE)
714 continue;
715
716 handler->nsfd_paths[idx][0] = '\0';
717 handler->hook_argv[idx] = NULL;
718
719 if (handler->hook_argc != 0)
720 handler->hook_argc = 0;
721 }
b6b2b194 722
f0ecc19d 723 handler->name = name;
c581d2a6
CB
724 if (daemonize)
725 handler->transient_pid = lxc_raw_getpid();
726 else
727 handler->transient_pid = -1;
3bdf52d7 728
80308d07 729 if (daemonize && handler->conf->reboot == REBOOT_NONE) {
5e5576a4 730 /* Create socketpair() to synchronize on daemonized startup.
fdecbc9c
CB
731 * When the container reboots we don't need to synchronize
732 * again currently so don't open another socketpair().
5e5576a4
CB
733 */
734 ret = socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0,
735 handler->state_socket_pair);
736 if (ret < 0) {
737 ERROR("Failed to create anonymous pair of unix sockets");
738 goto on_error;
739 }
9044b79e 740
5e5576a4
CB
741 TRACE("Created anonymous pair {%d,%d} of unix sockets",
742 handler->state_socket_pair[0],
743 handler->state_socket_pair[1]);
85c279bb
CB
744 handler->keep_fds[nr_keep_fds++] = handler->state_socket_pair[0];
745 handler->keep_fds[nr_keep_fds++] = handler->state_socket_pair[1];
5e5576a4
CB
746 }
747
80308d07 748 if (handler->conf->reboot == REBOOT_NONE) {
6834acff 749 handler->conf->maincmd_fd = lxc_server_init(name, lxcpath, "command");
d39b10eb
CB
750 if (handler->conf->maincmd_fd < 0) {
751 ERROR("Failed to set up command socket");
752 goto on_error;
753 }
85c279bb 754 handler->keep_fds[nr_keep_fds++] = handler->conf->maincmd_fd;
aa460476 755 }
9044b79e 756
9dfa4041 757 TRACE("Unix domain socket %d for command server is ready",
aa460476
CB
758 handler->conf->maincmd_fd);
759
760 return handler;
761
f2e07cb6 762on_error:
a42abcce 763 lxc_put_handler(handler);
aa460476
CB
764
765 return NULL;
766}
767
768int lxc_init(const char *name, struct lxc_handler *handler)
769{
f62cf1d4 770 __do_close int status_fd = -EBADF;
a2c09be0 771 int ret;
4a03ded4 772 const char *loglevel;
aa460476
CB
773 struct lxc_conf *conf = handler->conf;
774
434c8e15 775 handler->monitor_pid = lxc_raw_getpid();
4d8bdfa0 776 status_fd = open("/proc/self/status", O_RDONLY | O_CLOEXEC);
59b1b67e
CB
777 if (status_fd < 0)
778 return log_error_errno(-1, errno, "Failed to open monitor status fd");
434c8e15 779
4eb19ac0 780 handler->lsm_ops = lsm_init_static();
2170b263 781 TRACE("Initialized LSM");
d2e30e99 782
408da065 783 /* Begin by setting the state to STARTING. */
2170b263 784 ret = lxc_set_state(name, handler, STARTING);
59b1b67e
CB
785 if (ret < 0)
786 return log_error(-1, "Failed to set state to \"%s\"", lxc_state2str(STARTING));
46800e77 787 TRACE("Set container state to \"STARTING\"");
0ad19a3f 788
408da065 789 /* Start of environment variable setup for hooks. */
24c2a48d
CB
790 ret = setenv("LXC_NAME", name, 1);
791 if (ret < 0)
792 SYSERROR("Failed to set environment variable: LXC_NAME=%s", name);
408da065 793
2170b263
CB
794 if (conf->rcfile) {
795 ret = setenv("LXC_CONFIG_FILE", conf->rcfile, 1);
796 if (ret < 0)
818a57fc 797 SYSERROR("Failed to set environment variable: LXC_CONFIG_FILE=%s", conf->rcfile);
2170b263 798 }
408da065 799
2170b263
CB
800 if (conf->rootfs.mount) {
801 ret = setenv("LXC_ROOTFS_MOUNT", conf->rootfs.mount, 1);
802 if (ret < 0)
818a57fc 803 SYSERROR("Failed to set environment variable: LXC_ROOTFS_MOUNT=%s", conf->rootfs.mount);
2170b263 804 }
408da065 805
2170b263
CB
806 if (conf->rootfs.path) {
807 ret = setenv("LXC_ROOTFS_PATH", conf->rootfs.path, 1);
808 if (ret < 0)
818a57fc 809 SYSERROR("Failed to set environment variable: LXC_ROOTFS_PATH=%s", conf->rootfs.path);
2170b263 810 }
408da065 811
2170b263
CB
812 if (conf->console.path) {
813 ret = setenv("LXC_CONSOLE", conf->console.path, 1);
814 if (ret < 0)
818a57fc 815 SYSERROR("Failed to set environment variable: LXC_CONSOLE=%s", conf->console.path);
2170b263 816 }
408da065 817
2170b263
CB
818 if (conf->console.log_path) {
819 ret = setenv("LXC_CONSOLE_LOGPATH", conf->console.log_path, 1);
820 if (ret < 0)
818a57fc 821 SYSERROR("Failed to set environment variable: LXC_CONSOLE_LOGPATH=%s", conf->console.log_path);
2170b263 822 }
408da065 823
2170b263
CB
824 if (cgns_supported()) {
825 ret = setenv("LXC_CGNS_AWARE", "1", 1);
826 if (ret < 0)
818a57fc 827 SYSERROR("Failed to set environment variable LXC_CGNS_AWARE=1");
2170b263 828 }
b8f88d9b 829
4a03ded4 830 loglevel = lxc_log_priority_to_string(lxc_log_get_level());
2170b263
CB
831 ret = setenv("LXC_LOG_LEVEL", loglevel, 1);
832 if (ret < 0)
818a57fc 833 SYSERROR("Set environment variable LXC_LOG_LEVEL=%s", loglevel);
a2c09be0
CB
834
835 if (conf->hooks_version == 0)
836 ret = setenv("LXC_HOOK_VERSION", "0", 1);
837 else
838 ret = setenv("LXC_HOOK_VERSION", "1", 1);
839 if (ret < 0)
840 SYSERROR("Failed to set environment variable LXC_HOOK_VERSION=%u", conf->hooks_version);
408da065 841 /* End of environment variable setup for hooks. */
f7bee6c6 842
2170b263 843 TRACE("Set environment variables");
dbc9832d 844
2170b263 845 ret = run_lxc_hooks(name, "pre-start", conf, NULL);
65a2dc8b
CB
846 if (ret < 0)
847 return log_error(-1, "Failed to run lxc.hook.pre-start for container \"%s\"", name);
2170b263 848 TRACE("Ran pre-start hooks");
26ddeedd 849
9f77617b
CB
850 ret = lxc_terminal_parent(conf);
851 if (ret < 0)
852 return log_error(-1, "Failed to allocate terminal");
853
408da065
CB
854 /* The signal fd has to be created before forking otherwise if the child
855 * process exits before we setup the signal fd, the event will be lost
856 * and the command will be stuck.
857 */
83ee7875 858 handler->sigfd = setup_signal_fd(&handler->oldmask);
65a2dc8b
CB
859 if (handler->sigfd < 0)
860 return log_error(-1, "Failed to setup SIGCHLD fd handler.");
2170b263 861 TRACE("Set up signal fd");
b5159817 862
5a087e05 863 handler->cgroup_ops = cgroup_init(handler->conf);
2202afc9
CB
864 if (!handler->cgroup_ops) {
865 ERROR("Failed to initialize cgroup driver");
9f77617b 866 goto out_restore_sigmask;
2202afc9
CB
867 }
868 TRACE("Initialized cgroup driver");
869
2e1361a6 870 ret = lxc_read_seccomp_config(conf);
9f77617b
CB
871 if (ret < 0) {
872 ERROR("Failed to read seccomp policy");
873 goto out_restore_sigmask;
874 }
2e1361a6
CB
875 TRACE("Read seccomp policy");
876
af04d847 877 ret = handler->lsm_ops->prepare(handler->lsm_ops, conf, handler->lxcpath);
1800f924
WB
878 if (ret < 0) {
879 ERROR("Failed to initialize LSM");
9f77617b 880 goto out_restore_sigmask;
1800f924
WB
881 }
882 TRACE("Initialized LSM");
883
2170b263 884 INFO("Container \"%s\" is initialized", name);
4d8bdfa0 885 handler->monitor_status_fd = move_fd(status_fd);
aa460476 886 return 0;
59eb99ba 887
b5159817 888out_restore_sigmask:
4c496daa 889 (void)pthread_sigmask(SIG_SETMASK, &handler->oldmask, NULL);
ea918412 890
aa460476 891 return -1;
59eb99ba
DL
892}
893
8db6be1b
CB
894void lxc_expose_namespace_environment(const struct lxc_handler *handler)
895{
896 for (lxc_namespace_t i = 0; i < LXC_NS_MAX; i++) {
897 int ret;
898 const char *fd_path;
899
900 if (handler->nsfd[i] < 0)
901 continue;
902
903 fd_path = handler->nsfd_paths[i] + strcspn(handler->nsfd_paths[i], "/");
904 ret = setenv(ns_info[i].env_name, fd_path, 1);
905 if (ret < 0)
906 SYSERROR("Failed to set environment variable %s=%s",
907 ns_info[i].env_name, fd_path);
908 else
909 TRACE("Set environment variable %s=%s",
910 ns_info[i].env_name, fd_path);
911 }
912}
913
fd5be714 914void lxc_end(struct lxc_handler *handler)
59eb99ba 915{
818a57fc 916 int ret;
0c5859ff 917 const char *name = handler->name;
2202afc9 918 struct cgroup_ops *cgroup_ops = handler->cgroup_ops;
d2e75eba 919 struct lxc_state_client *client, *nclient;
b6b2b194 920
408da065
CB
921 /* The STOPPING state is there for future cleanup code which can take
922 * awhile.
59eb99ba 923 */
25c2aca5 924 lxc_set_state(name, handler, STOPPING);
b6b2b194 925
8db6be1b
CB
926 /* Passing information to hooks via environment variables. */
927 if (handler->conf->hooks_version > 0)
928 lxc_expose_namespace_environment(handler);
c154af98 929
80308d07 930 if (handler->conf->reboot > REBOOT_NONE) {
c097467f
CB
931 ret = setenv("LXC_TARGET", "reboot", 1);
932 if (ret < 0)
818a57fc 933 SYSERROR("Failed to set environment variable: LXC_TARGET=reboot");
c097467f 934 }
408da065 935
80308d07 936 if (handler->conf->reboot == REBOOT_NONE) {
c097467f
CB
937 ret = setenv("LXC_TARGET", "stop", 1);
938 if (ret < 0)
818a57fc 939 SYSERROR("Failed to set environment variable: LXC_TARGET=stop");
c097467f 940 }
c154af98 941
18b3b9c1 942 if (handler->conf->hooks_version == 0)
8db6be1b 943 ret = run_lxc_hooks(name, "stop", handler->conf, handler->hook_argv);
18b3b9c1 944 else
c097467f
CB
945 ret = run_lxc_hooks(name, "stop", handler->conf, NULL);
946 if (ret < 0)
947 ERROR("Failed to run \"lxc.hook.stop\" hook");
c154af98 948
af04d847 949 handler->lsm_ops->cleanup(handler->lsm_ops, handler->conf, handler->lxcpath);
1800f924 950
e2aed383
WB
951 if (cgroup_ops) {
952 cgroup_ops->payload_destroy(cgroup_ops, handler);
953 cgroup_ops->monitor_destroy(cgroup_ops, handler);
954 }
4288b79f 955
79ff643d
CB
956 put_lxc_rootfs(&handler->conf->rootfs, true);
957
80308d07 958 if (handler->conf->reboot == REBOOT_NONE) {
f893d898
CB
959 /* For all new state clients simply close the command socket.
960 * This will inform all state clients that the container is
961 * STOPPED and also prevents a race between a open()/close() on
962 * the command socket causing a new process to get ECONNREFUSED
963 * because we haven't yet closed the command socket.
964 */
b87ee312 965 close_prot_errno_disarm(handler->conf->maincmd_fd);
c3184275
CB
966 TRACE("Closed command socket");
967
968 /* This function will try to connect to the legacy lxc-monitord
969 * state server and only exists for backwards compatibility.
970 */
971 lxc_monitor_send_state(name, STOPPED, handler->lxcpath);
972
973 /* The command socket is closed so no one can acces the command
974 * socket anymore so there's no need to lock it.
975 */
976 handler->state = STOPPED;
977 TRACE("Set container state to \"STOPPED\"");
f893d898
CB
978 } else {
979 lxc_set_state(name, handler, STOPPED);
695d0e56 980 TRACE("Set container state to \"STOPPED\"");
d39b10eb 981 }
4288b79f 982
048493a3
CB
983 /* Avoid lingering namespace references. */
984 lxc_put_nsfds(handler);
985
46800e77
CB
986 ret = run_lxc_hooks(name, "post-stop", handler->conf, NULL);
987 if (ret < 0) {
c097467f 988 ERROR("Failed to run lxc.hook.post-stop for container \"%s\"", name);
80308d07 989 if (handler->conf->reboot > REBOOT_NONE) {
c097467f 990 WARN("Container will be stopped instead of rebooted");
80308d07 991 handler->conf->reboot = REBOOT_NONE;
c097467f
CB
992
993 ret = setenv("LXC_TARGET", "stop", 1);
994 if (ret < 0)
818a57fc 995 WARN("Failed to set environment variable: LXC_TARGET=stop");
f3787121
CB
996 }
997 }
26ddeedd 998
408da065 999 /* Reset mask set by setup_signal_fd. */
b467714b 1000 ret = pthread_sigmask(SIG_SETMASK, &handler->oldmask, NULL);
c097467f 1001 if (ret < 0)
a24c5678 1002 SYSWARN("Failed to restore signal mask");
8f64a3f6 1003
2aac071b 1004 lxc_terminal_delete(&handler->conf->console);
0e4be3cf 1005 lxc_delete_tty(&handler->conf->ttys);
f797f05e 1006 close_prot_errno_disarm(handler->conf->devpts_fd);
dbc9832d 1007
dbc9832d
CB
1008 /* The command socket is now closed, no more state clients can register
1009 * themselves from now on. So free the list of state clients.
1010 */
d2e75eba 1011 list_for_each_entry_safe(client, nclient, &handler->conf->state_clients, head) {
d39b10eb 1012 /* Keep state clients that want to be notified about reboots. */
80308d07
CB
1013 if ((handler->conf->reboot > REBOOT_NONE) &&
1014 (client->states[RUNNING] == 2))
d39b10eb
CB
1015 continue;
1016
dbc9832d 1017 /* close state client socket */
d2e75eba 1018 list_del(&client->head);
c097467f 1019 close(client->clientfd);
d2e75eba 1020 free(client);
dbc9832d
CB
1021 }
1022
80308d07 1023 if (handler->conf->ephemeral == 1 && handler->conf->reboot != REBOOT_REQ)
28272964 1024 lxc_destroy_container_on_signal(handler, name);
2c5f2ede 1025
a42abcce 1026 lxc_put_handler(handler);
59eb99ba
DL
1027}
1028
0c5859ff 1029void lxc_abort(struct lxc_handler *handler)
59eb99ba 1030{
33942046
CB
1031 int ret = 0;
1032 int status;
73e608b2 1033
0c5859ff 1034 lxc_set_state(handler->name, handler, ABORTING);
0e4f9d51 1035
c718fac1 1036 if (handler->pidfd >= 0) {
33942046 1037 ret = lxc_raw_pidfd_send_signal(handler->pidfd, SIGKILL, NULL, 0);
c718fac1 1038 if (ret)
11c7d349
CB
1039 SYSWARN("Failed to send SIGKILL via pidfd %d for process %d",
1040 handler->pidfd, handler->pid);
c718fac1
CB
1041 }
1042
65a2dc8b 1043 if ((!ret || errno != ESRCH) && handler->pid > 0)
11c7d349
CB
1044 if (kill(handler->pid, SIGKILL))
1045 SYSWARN("Failed to send SIGKILL to %d", handler->pid);
0e4f9d51 1046
33942046
CB
1047 do {
1048 ret = waitpid(-1, &status, 0);
1049 } while (ret > 0);
59eb99ba
DL
1050}
1051
ffe1e01a 1052static int do_start(void *data)
50e98013 1053{
cdb2a47f 1054 struct lxc_handler *handler = data;
f62cf1d4 1055 __lxc_unused __do_close int data_sock0 = handler->data_sock[0],
c294a68d 1056 data_sock1 = handler->data_sock[1];
d3103162 1057 __do_close int devnull_fd = -EBADF, status_fd = -EBADF;
8bf3abfb 1058 int ret;
928b1f04
YT
1059 uid_t new_uid;
1060 gid_t new_gid;
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 1112 */
0589d744 1113 if (!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
c294a68d
CB
1260 /*
1261 * Add the requested environment variables to the current environment
1262 * to allow them to be used by the various hooks, such as the start
1263 * hook below.
98ff08ca 1264 */
c294a68d
CB
1265 ret = lxc_set_environment(handler->conf);
1266 if (ret < 0)
1267 goto out_warn_father;
98ff08ca 1268
6bc4165d
CB
1269 if (!lxc_sync_wait_parent(handler, START_SYNC_POST_CONFIGURE))
1270 goto out_warn_father;
1271
f4152036 1272 /* Setup the container, ip, names, utsname, ... */
3b988b33 1273 ret = lxc_setup(handler);
7729f8e5 1274 if (ret < 0) {
e96a536c 1275 ERROR("Failed to setup container \"%s\"", handler->name);
f4152036
CB
1276 goto out_warn_father;
1277 }
1278
408da065 1279 /* Set the label to change to when we exec(2) the container's init. */
af04d847 1280 ret = handler->lsm_ops->process_label_set(handler->lsm_ops, NULL, handler->conf, true);
e96a536c 1281 if (ret < 0)
e075f5d9 1282 goto out_warn_father;
5112cd70 1283
029cdff5 1284 /* Set PR_SET_NO_NEW_PRIVS after we changed the lsm label. If we do it
408da065
CB
1285 * before we aren't allowed anymore.
1286 */
029cdff5 1287 if (handler->conf->no_new_privs) {
b81689a1
CB
1288 ret = prctl(PR_SET_NO_NEW_PRIVS, prctl_arg(1), prctl_arg(0),
1289 prctl_arg(0), prctl_arg(0));
e96a536c 1290 if (ret < 0) {
818a57fc 1291 SYSERROR("Could not set PR_SET_NO_NEW_PRIVS to block execve() gainable privileges");
029cdff5
CB
1292 goto out_warn_father;
1293 }
818a57fc 1294 DEBUG("Set PR_SET_NO_NEW_PRIVS to block execve() gainable privileges");
029cdff5
CB
1295 }
1296
408da065 1297 /* If we mounted a temporary proc, then unmount it now. */
5112cd70 1298 tmp_proc_unmount(handler->conf);
e075f5d9 1299
e96a536c
CB
1300 ret = lxc_seccomp_load(handler->conf);
1301 if (ret < 0)
8f2c3a70
SH
1302 goto out_warn_father;
1303
e96a536c
CB
1304 ret = run_lxc_hooks(handler->name, "start", handler->conf, NULL);
1305 if (ret < 0) {
1306 ERROR("Failed to run lxc.hook.start for container \"%s\"",
1307 handler->name);
773fb9ca
SH
1308 goto out_warn_father;
1309 }
fc25b815 1310
a783a414 1311 close_prot_errno_disarm(handler->sigfd);
26ddeedd 1312
41808e20 1313 if (handler->conf->console.pty < 0 && handler->daemonize) {
f4c177c3
CB
1314 if (devnull_fd < 0) {
1315 devnull_fd = open_devnull();
1316 if (devnull_fd < 0)
1317 goto out_warn_father;
1318 }
1319
e96a536c
CB
1320 ret = set_stdfds(devnull_fd);
1321 if (ret < 0) {
1322 ERROR("Failed to redirect std{in,out,err} to \"/dev/null\"");
c5b93afb
LF
1323 goto out_warn_father;
1324 }
e96a536c 1325 }
507cee36 1326
a783a414 1327 close_prot_errno_disarm(devnull_fd);
c44de748 1328
8c9a7665
TA
1329 setsid();
1330
e96a536c
CB
1331 if (handler->conf->init_cwd) {
1332 ret = chdir(handler->conf->init_cwd);
1333 if (ret < 0) {
1334 SYSERROR("Could not change directory to \"%s\"",
1335 handler->conf->init_cwd);
1336 goto out_warn_father;
1337 }
3c491553
L
1338 }
1339
6e48e7c5 1340 if (!lxc_sync_barrier_parent(handler, START_SYNC_CGROUP_LIMITS))
f4152036
CB
1341 goto out_warn_father;
1342
111ed96e 1343 ret = lxc_sync_fds_child(handler);
1b82d721 1344 if (ret < 0) {
111ed96e 1345 SYSERROR("Failed to sync file descriptors with parent");
1b82d721
CB
1346 goto out_warn_father;
1347 }
1348
1b82d721
CB
1349 if (!lxc_sync_wait_parent(handler, START_SYNC_READY_START))
1350 goto out_warn_father;
1351
149857af
CB
1352 /* Reset the environment variables the user requested in a clear
1353 * environment.
1354 */
e96a536c
CB
1355 ret = clearenv();
1356 /* Don't error out though. */
1357 if (ret < 0)
149857af 1358 SYSERROR("Failed to clear environment.");
149857af 1359
c294a68d
CB
1360 ret = lxc_set_environment(handler->conf);
1361 if (ret < 0)
1362 goto out_warn_father;
149857af 1363
e96a536c
CB
1364 ret = putenv("container=lxc");
1365 if (ret < 0) {
1366 SYSERROR("Failed to set environment variable: container=lxc");
98ff08ca
CB
1367 goto out_warn_father;
1368 }
1369
885766f5
CB
1370 if (handler->conf->ttys.tty_names) {
1371 ret = putenv(handler->conf->ttys.tty_names);
e96a536c
CB
1372 if (ret < 0) {
1373 SYSERROR("Failed to set environment variable for container ptys");
98ff08ca
CB
1374 goto out_warn_father;
1375 }
1376 }
1377
76bdf299
CB
1378 /* The container has been setup. We can now switch to an unprivileged
1379 * uid/gid.
1380 */
928b1f04
YT
1381 new_uid = handler->conf->init_uid;
1382 new_gid = handler->conf->init_gid;
76bdf299 1383
964581c2
CB
1384 /* Avoid unnecessary syscalls. */
1385 if (new_uid == nsuid)
1386 new_uid = LXC_INVALID_UID;
1387
1388 if (new_gid == nsgid)
1389 new_gid = LXC_INVALID_GID;
c353b0b9 1390
6aff5157 1391 /* Make sure that the processes STDIO is correctly owned by the user that we are switching to */
c353b0b9
CB
1392 ret = fix_stdio_permissions(new_uid);
1393 if (ret)
1394 WARN("Failed to ajust stdio permissions");
964581c2 1395
8af07f82
CB
1396 /* If we are in a new user namespace we already dropped all groups when
1397 * we switched to root in the new user namespace further above. Only
1398 * drop groups if we can, so ensure that we have necessary privilege.
1399 */
0589d744 1400 if (list_empty(&handler->conf->id_map)) {
8af07f82
CB
1401 #if HAVE_LIBCAP
1402 if (lxc_proc_cap_is_set(CAP_SETGID, CAP_EFFECTIVE))
1403 #endif
bf31b337
RJ
1404 {
1405 if (handler->conf->init_groups.size > 0) {
1406 if (!lxc_setgroups(handler->conf->init_groups.list,
1407 handler->conf->init_groups.size))
1408 goto out_warn_father;
1409 } else {
1410 if (!lxc_drop_groups())
1411 goto out_warn_father;
1412 }
1413 }
1414 }
8af07f82 1415
b58214ac
CB
1416 if (!lxc_switch_uid_gid(new_uid, new_gid))
1417 goto out_warn_father;
1418
611ddd34
CB
1419 ret = lxc_ambient_caps_down();
1420 if (ret < 0) {
6f5e532f 1421 ERROR("Failed to clear ambient capabilities");
611ddd34
CB
1422 goto out_warn_father;
1423 }
1424
258f8051 1425 if (handler->conf->monitor_signal_pdeath != SIGKILL) {
4d8bdfa0
CB
1426 ret = lxc_set_death_signal(handler->conf->monitor_signal_pdeath,
1427 handler->monitor_pid, status_fd);
258f8051
CB
1428 if (ret < 0) {
1429 SYSERROR("Failed to set PR_SET_PDEATHSIG to %d",
1430 handler->conf->monitor_signal_pdeath);
1431 goto out_warn_father;
1432 }
1433 }
1434
d3103162
CB
1435 /*
1436 * After this call, we are in error because this ops should not return
408da065
CB
1437 * as it execs.
1438 */
c4ea60df 1439 handler->ops->start(handler, handler->data);
50e98013
DL
1440
1441out_warn_father:
d3103162
CB
1442 /*
1443 * We want the parent to know something went wrong, so we return a
408da065
CB
1444 * special error code.
1445 */
946a0c6d 1446 lxc_sync_wake_parent(handler, SYNC_ERROR);
c44de748
AM
1447
1448out_error:
50e98013
DL
1449 return -1;
1450}
1451
5af9369b 1452int resolve_clone_flags(struct lxc_handler *handler)
f813849c 1453{
8bc8c715
CB
1454 int i;
1455 struct lxc_conf *conf = handler->conf;
70fd7fc9
CB
1456 bool wants_timens = conf->timens.s_boot || conf->timens.ns_boot ||
1457 conf->timens.s_monotonic || conf->timens.ns_monotonic;
f813849c 1458
8bc8c715 1459 for (i = 0; i < LXC_NS_MAX; i++) {
f7a0c6ee
CB
1460 if (conf->ns_keep) {
1461 if (!(conf->ns_keep & ns_info[i].clone_flag))
becad0ec 1462 handler->ns_clone_flags |= ns_info[i].clone_flag;
f7a0c6ee
CB
1463 } else if (conf->ns_clone) {
1464 if ((conf->ns_clone & ns_info[i].clone_flag))
becad0ec 1465 handler->ns_clone_flags |= ns_info[i].clone_flag;
8bc8c715 1466 } else {
0589d744 1467 if (i == LXC_NS_USER && list_empty(&handler->conf->id_map))
8bc8c715
CB
1468 continue;
1469
1470 if (i == LXC_NS_NET && lxc_requests_empty_network(handler))
1471 continue;
1472
7bd05339
CB
1473 if (i == LXC_NS_CGROUP && !cgns_supported())
1474 continue;
1475
70fd7fc9
CB
1476 if (i == LXC_NS_TIME && !wants_timens)
1477 continue;
1478
becad0ec 1479 handler->ns_clone_flags |= ns_info[i].clone_flag;
8bc8c715 1480 }
03df7ab5 1481
8bc8c715
CB
1482 if (!conf->ns_share[i])
1483 continue;
5af9369b 1484
becad0ec 1485 handler->ns_clone_flags &= ~ns_info[i].clone_flag;
8bc8c715 1486 TRACE("Sharing %s namespace", ns_info[i].proc_name);
5af9369b
CB
1487 }
1488
70fd7fc9
CB
1489 if (wants_timens && (conf->ns_keep & ns_info[LXC_NS_TIME].clone_flag))
1490 return log_trace_errno(-1, EINVAL, "Requested to keep time namespace while also specifying offsets");
1491
f7176c3e
CB
1492 /* Deal with namespaces that are unshared. */
1493 if (handler->ns_clone_flags & CLONE_NEWTIME)
1494 handler->ns_unshare_flags |= CLONE_NEWTIME;
1495
1496 if (!pure_unified_layout(handler->cgroup_ops) && handler->ns_clone_flags & CLONE_NEWCGROUP)
1497 handler->ns_unshare_flags |= CLONE_NEWCGROUP;
1498
1499 if ((handler->ns_clone_flags & (CLONE_NEWNET | CLONE_NEWUSER)) ==
1500 (CLONE_NEWNET | CLONE_NEWUSER))
1501 handler->ns_unshare_flags |= CLONE_NEWNET;
1502
1503 /* Deal with namespaces that are spawned. */
1504 handler->ns_on_clone_flags = handler->ns_clone_flags & ~handler->ns_unshare_flags;
1505
1506 handler->clone_flags = handler->ns_on_clone_flags | CLONE_PIDFD;
1507
5af9369b 1508 return 0;
f813849c
TA
1509}
1510
8deca6c9
CB
1511/* Note that this function is used with clone(CLONE_VM). Some glibc versions
1512 * used to reset the pid/tid to -1 when CLONE_VM was used without CLONE_THREAD.
1513 * But since the memory between parent and child is shared on CLONE_VM this
1514 * would invalidate the getpid() cache that glibc used to maintain and so
1515 * getpid() in the child would return the parent's pid. This is all fixed in
1516 * newer glibc versions where the getpid() cache is removed and the pid/tid is
1517 * not reset anymore.
b35ddc5b 1518 * However, if for whatever reason you - dear committer - somehow need to get the
8de0119d
CB
1519 * pid of the placeholder intermediate process for do_share_ns() you need to
1520 * call lxc_raw_getpid(). The next lxc_raw_clone() call does not employ
1521 * CLONE_VM and will be fine.
8deca6c9
CB
1522 */
1523static inline int do_share_ns(void *arg)
fa3a5b22 1524{
8deca6c9 1525 int i, flags, ret;
fa3a5b22
CB
1526 struct lxc_handler *handler = arg;
1527
8deca6c9
CB
1528 for (i = 0; i < LXC_NS_MAX; i++) {
1529 if (handler->nsfd[i] < 0)
1530 continue;
fa3a5b22 1531
8deca6c9 1532 ret = setns(handler->nsfd[i], 0);
c0b48eff
CB
1533 if (ret < 0) {
1534 /*
1535 * Note that joining a user and/or mount namespace
1536 * requires the process is not multithreaded otherwise
1537 * setns() will fail here.
1538 */
1539 SYSERROR("Failed to inherit %s namespace",
1540 ns_info[i].proc_name);
8deca6c9 1541 return -1;
c0b48eff 1542 }
fa3a5b22 1543
8deca6c9 1544 DEBUG("Inherited %s namespace", ns_info[i].proc_name);
fa3a5b22
CB
1545 }
1546
becad0ec 1547 flags = handler->ns_on_clone_flags;
8deca6c9 1548 flags |= CLONE_PARENT;
33942046
CB
1549 handler->pid = lxc_raw_clone_cb(do_start, handler, CLONE_PIDFD | flags,
1550 &handler->pidfd);
8deca6c9 1551 if (handler->pid < 0)
fa3a5b22
CB
1552 return -1;
1553
8deca6c9 1554 return 0;
fa3a5b22
CB
1555}
1556
09996a48
CB
1557static int core_scheduling(struct lxc_handler *handler)
1558{
1559 struct lxc_conf *conf = handler->conf;
1560 int ret;
1561
1562 if (!conf->sched_core)
1563 return log_trace(0, "No new core scheduling domain requested");
1564
c958a332
CB
1565 if (!(handler->ns_clone_flags & CLONE_NEWPID))
1566 return syserror_set(-EINVAL, "Core scheduling currently requires a separate pid namespace");
1567
47bfecf5 1568 ret = core_scheduling_cookie_create_threadgroup(handler->pid);
09996a48 1569 if (ret < 0) {
f3d90fca
CB
1570 if (ret == -ENODEV) {
1571 INFO("The kernel doesn't support or doesn't use simultaneous multithreading (SMT)");
1572 conf->sched_core = false;
1573 return 0;
1574 }
09996a48 1575 if (ret == -EINVAL)
ffd98e8c 1576 return syserror("The kernel does not support core scheduling");
09996a48
CB
1577
1578 return syserror("Failed to create new core scheduling domain");
1579 }
1580
f3d90fca
CB
1581 ret = core_scheduling_cookie_get(handler->pid, &conf->sched_core_cookie);
1582 if (ret || !core_scheduling_cookie_valid(conf->sched_core_cookie))
09996a48
CB
1583 return syserror("Failed to retrieve core scheduling domain cookie");
1584
1585 TRACE("Created new core scheduling domain with cookie %llu",
2e9aa146 1586 (llu)conf->sched_core_cookie);
09996a48
CB
1587
1588 return 0;
1589}
1590
480588e6
CB
1591/* lxc_spawn() performs crucial setup tasks and clone()s the new process which
1592 * exec()s the requested container binary.
1593 * Note that lxc_spawn() runs in the parent namespaces. Any operations performed
1594 * right here should be double checked if they'd pose a security risk. (For
1595 * example, any {u}mount() operations performed here will be reflected on the
1596 * host!)
1597 */
74a3920a 1598static int lxc_spawn(struct lxc_handler *handler)
59eb99ba 1599{
f62cf1d4 1600 __do_close int data_sock0 = -EBADF, data_sock1 = -EBADF;
8deca6c9 1601 int i, ret;
08dd2805 1602 char pidstr[20];
57927bf2 1603 bool wants_to_map_ids;
0589d744 1604 struct list_head *id_map;
6e5fc7a5 1605 const char *name = handler->name;
28d9e29e 1606 const char *lxcpath = handler->lxcpath;
2202afc9 1607 bool share_ns = false;
28d9e29e 1608 struct lxc_conf *conf = handler->conf;
2202afc9 1609 struct cgroup_ops *cgroup_ops = handler->cgroup_ops;
9f30a190 1610
28d9e29e 1611 id_map = &conf->id_map;
0589d744 1612 wants_to_map_ids = !list_empty(id_map);
2f2623ec 1613
28d9e29e 1614 for (i = 0; i < LXC_NS_MAX; i++) {
b074bbf1 1615 if (!conf->ns_share[i])
28d9e29e
CB
1616 continue;
1617
b074bbf1 1618 handler->nsfd[i] = lxc_inherit_namespace(conf->ns_share[i], lxcpath, ns_info[i].proc_name);
28d9e29e
CB
1619 if (handler->nsfd[i] < 0)
1620 return -1;
fa3a5b22 1621
8deca6c9 1622 share_ns = true;
28d9e29e 1623 }
50e98013 1624
6e48e7c5 1625 if (!lxc_sync_init(handler))
9d7f9e52 1626 return -1;
0ad19a3f 1627
b9f522c5 1628 ret = socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0,
790255cf 1629 handler->data_sock);
95ef0d7c
CB
1630 if (ret < 0)
1631 goto out_sync_fini;
cdb2a47f
CB
1632 data_sock0 = handler->data_sock[0];
1633 data_sock1 = handler->data_sock[1];
e8bd4e43 1634
5af9369b 1635 ret = resolve_clone_flags(handler);
95ef0d7c
CB
1636 if (ret < 0)
1637 goto out_sync_fini;
9f30a190 1638
03ca4af8
TP
1639 if (handler->ns_clone_flags & CLONE_NEWNET) {
1640 ret = lxc_find_gateway_addresses(handler);
1641 if (ret) {
1642 ERROR("Failed to find gateway addresses");
1643 goto out_sync_fini;
1644 }
1645 }
1646
e8b181f5 1647 if (!cgroup_ops->payload_create(cgroup_ops, handler)) {
cfc62c60 1648 ERROR("Failed creating cgroups");
47d8fb3b
CS
1649 goto out_delete_net;
1650 }
1651
408da065 1652 /* Create a process in a new set of namespaces. */
4e232466
CB
1653 if (share_ns) {
1654 pid_t attacher_pid;
1655
cfc62c60 1656 attacher_pid = lxc_clone(do_share_ns, handler,
33258b95 1657 CLONE_VFORK | CLONE_VM | CLONE_FILES, NULL);
4e232466
CB
1658 if (attacher_pid < 0) {
1659 SYSERROR(LXC_CLONE_ERROR);
1660 goto out_delete_net;
1661 }
1662
1663 ret = wait_for_pid(attacher_pid);
1664 if (ret < 0) {
1665 SYSERROR("Intermediate process failed");
1666 goto out_delete_net;
1667 }
f7176c3e
CB
1668
1669 if (handler->pid < 0) {
1670 SYSERROR(LXC_CLONE_ERROR);
1671 goto out_delete_net;
1672 }
4e232466 1673 } else {
84b66ced 1674 int cgroup_fd = -EBADF;
f7176c3e
CB
1675
1676 struct lxc_clone_args clone_args = {
1677 .flags = handler->clone_flags,
1678 .pidfd = ptr_to_u64(&handler->pidfd),
1679 .exit_signal = SIGCHLD,
1680 };
1681
1682 if (handler->ns_clone_flags & CLONE_NEWCGROUP) {
1683 cgroup_fd = cgroup_unified_fd(cgroup_ops);
1684 if (cgroup_fd >= 0) {
1685 handler->clone_flags |= CLONE_INTO_CGROUP;
1686 clone_args.flags |= CLONE_INTO_CGROUP;
1687 clone_args.cgroup = cgroup_fd;
1688 }
1689 }
1690
1691 /* Try to spawn directly into target cgroup. */
1692 handler->pid = lxc_clone3(&clone_args, CLONE_ARGS_SIZE_VER2);
1693 if (handler->pid < 0) {
1694 SYSTRACE("Failed to spawn container directly into target cgroup");
1695
1696 /* Kernel might simply be too old for CLONE_INTO_CGROUP. */
1697 handler->clone_flags &= ~(CLONE_INTO_CGROUP | CLONE_NEWCGROUP);
1698 handler->ns_on_clone_flags &= ~CLONE_NEWCGROUP;
1699 handler->ns_unshare_flags |= CLONE_NEWCGROUP;
1700
1701 clone_args.flags = handler->clone_flags;
1702
1703 handler->pid = lxc_clone3(&clone_args, CLONE_ARGS_SIZE_VER0);
1704 } else if (cgroup_fd >= 0) {
1705 TRACE("Spawned container directly into target cgroup via cgroup2 fd %d", cgroup_fd);
1706 }
1707
1708 /* Kernel might be too old for clone3(). */
1709 if (handler->pid < 0) {
1710 SYSTRACE("Failed to spawn container via clone3()");
abd80bde
CB
1711
1712 /*
1713 * In contrast to all other architectures arm64 verifies that
1714 * the argument we use to retrieve the pidfd with is
1715 * initialized to 0. But we need to be able to initialize it to
1716 * a negative value such as our customary -EBADF so we can
1717 * detect whether this kernel supports pidfds. If the syscall
1718 * returns and the pidfd variable is set to something >= 0 then
1719 * we know this is a kernel supporting pidfds. But if we can't
1720 * set it to -EBADF then this won't work since 0 is a valid
1721 * file descriptor too. And since legacy clone silently ignores
1722 * unknown flags we are left without any way to detect support
1723 * for pidfds. So let's special-case arm64 to not fail starting
1724 * containers.
1725 */
1726 #if defined(__aarch64__)
1727 handler->pid = lxc_raw_legacy_clone(handler->clone_flags & ~CLONE_PIDFD, NULL);
1728 #else
f7176c3e 1729 handler->pid = lxc_raw_legacy_clone(handler->clone_flags, &handler->pidfd);
abd80bde 1730 #endif
f7176c3e
CB
1731 }
1732
1733 if (handler->pid < 0) {
1734 SYSERROR(LXC_CLONE_ERROR);
1735 goto out_delete_net;
1736 }
1737
1738 if (handler->pid == 0) {
1739 (void)do_start(handler);
1740 _exit(EXIT_FAILURE);
1741 }
0ad19a3f 1742 }
f7176c3e
CB
1743 if (handler->pidfd < 0)
1744 handler->clone_flags &= ~CLONE_PIDFD;
fa3a5b22 1745 TRACE("Cloned child process %d", handler->pid);
1bd8d726 1746
09996a48
CB
1747 ret = core_scheduling(handler);
1748 if (ret < 0)
1749 goto out_delete_net;
1750
39293f22
CB
1751 /* Verify that we can actually make use of pidfds. */
1752 if (!lxc_can_use_pidfd(handler->pidfd))
1753 close_prot_errno_disarm(handler->pidfd);
1754
fa60cd7b
CB
1755 ret = strnprintf(pidstr, 20, "%d", handler->pid);
1756 if (ret < 0)
1871e646
CB
1757 goto out_delete_net;
1758
1759 ret = setenv("LXC_PID", pidstr, 1);
1760 if (ret < 0)
1761 SYSERROR("Failed to set environment variable: LXC_PID=%s", pidstr);
1762
9662e444 1763 for (i = 0; i < LXC_NS_MAX; i++)
becad0ec 1764 if (handler->ns_on_clone_flags & ns_info[i].clone_flag)
28d9e29e 1765 INFO("Cloned %s", ns_info[i].flag_name);
0ad19a3f 1766
8db6be1b 1767 if (!lxc_try_preserve_namespaces(handler, handler->ns_on_clone_flags)) {
28d9e29e
CB
1768 ERROR("Failed to preserve cloned namespaces for lxc.hook.stop");
1769 goto out_delete_net;
1770 }
b6b2b194 1771
3c22086f
CLG
1772 lxc_sync_fini_child(handler);
1773
4d8bdfa0
CB
1774 if (lxc_abstract_unix_send_fds(handler->data_sock[0], &handler->monitor_status_fd, 1, NULL, 0) < 0) {
1775 ERROR("Failed to send status file descriptor to child process");
1776 goto out_delete_net;
1777 }
1778 close_prot_errno_disarm(handler->monitor_status_fd);
1779
408da065
CB
1780 /* Map the container uids. The container became an invalid userid the
1781 * moment it was cloned with CLONE_NEWUSER. This call doesn't change
1782 * anything immediately, but allows the container to setuid(0) (0 being
1783 * mapped to something else on the host.) later to become a valid uid
1784 * again.
1785 */
fa3a5b22 1786 if (wants_to_map_ids) {
df3c5314 1787 if (!handler->conf->ns_share[LXC_NS_USER] &&
46186acd 1788 (handler->conf->ns_keep & CLONE_NEWUSER) == 0) {
fa3a5b22
CB
1789 ret = lxc_map_ids(id_map, handler->pid);
1790 if (ret < 0) {
1791 ERROR("Failed to set up id mapping.");
1792 goto out_delete_net;
1793 }
1794 }
5b1e83cb
SH
1795 }
1796
c581d2a6 1797 if (!cgroup_ops->setup_limits_legacy(cgroup_ops, handler->conf, false)) {
cfc62c60 1798 ERROR("Failed to setup cgroup limits for container \"%s\"", name);
6031a6e5
DE
1799 goto out_delete_net;
1800 }
1801
838d1556
CB
1802 if (!cgroup_ops->payload_delegate_controllers(cgroup_ops)) {
1803 ERROR("Failed to delegate controllers to payload cgroup");
7fef7a06 1804 goto out_delete_net;
fe70edee 1805 }
218d4250 1806
838d1556
CB
1807 if (!cgroup_ops->payload_enter(cgroup_ops, handler)) {
1808 ERROR("Failed to enter cgroups");
c581d2a6
CB
1809 goto out_delete_net;
1810 }
1811
1812 if (!cgroup_ops->setup_limits(cgroup_ops, handler)) {
1813 ERROR("Failed to setup cgroup limits for container \"%s\"", name);
1814 goto out_delete_net;
1815 }
1816
2202afc9 1817 if (!cgroup_ops->chown(cgroup_ops, handler->conf))
0996e18a
SH
1818 goto out_delete_net;
1819
6bc4165d
CB
1820 if (!lxc_sync_barrier_child(handler, START_SYNC_STARTUP))
1821 goto out_delete_net;
1822
aa0c0e7b
RK
1823 /* If not done yet, we're now ready to preserve the network namespace */
1824 if (handler->nsfd[LXC_NS_NET] < 0) {
8db6be1b 1825 ret = lxc_try_preserve_namespace(handler, LXC_NS_NET, "net");
aa0c0e7b 1826 if (ret < 0) {
857ba1f0 1827 if (ret != -ENOENT) {
aa0c0e7b
RK
1828 SYSERROR("Failed to preserve net namespace");
1829 goto out_delete_net;
1830 }
4cb53844 1831 }
fa3a5b22 1832 }
aa0c0e7b
RK
1833 ret = lxc_netns_set_nsid(handler->nsfd[LXC_NS_NET]);
1834 if (ret < 0)
1835 SYSWARN("Failed to allocate new network namespace id");
1836 else
1837 TRACE("Allocated new network namespace id");
fa3a5b22 1838
408da065 1839 /* Create the network configuration. */
becad0ec 1840 if (handler->ns_clone_flags & CLONE_NEWNET) {
e389f2af 1841 ret = lxc_create_network(handler);
cfc62c60 1842 if (ret < 0) {
e389f2af 1843 ERROR("Failed to create the network");
7fef7a06 1844 goto out_delete_net;
82d5ae15 1845 }
0ad19a3f 1846 }
1847
91d04bf9
CB
1848 ret = setup_proc_filesystem(conf, handler->pid);
1849 if (ret < 0) {
1850 ERROR("Failed to setup procfs limits");
1851 goto out_delete_net;
6bc4165d
CB
1852 }
1853
223797c3
CB
1854 ret = setup_resource_limits(conf, handler->pid);
1855 if (ret < 0) {
1856 ERROR("Failed to setup resource limits");
1857 goto out_delete_net;
6bc4165d
CB
1858 }
1859
8945dad0
CB
1860 /* Tell the child to continue its initialization. */
1861 if (!lxc_sync_wake_child(handler, START_SYNC_POST_CONFIGURE))
1862 goto out_delete_net;
1863
e4564b7e
CB
1864 ret = lxc_rootfs_prepare_parent(handler);
1865 if (ret) {
1866 ERROR("Failed to prepare rootfs");
1867 goto out_delete_net;
1868 }
1869
8945dad0
CB
1870 if (handler->ns_clone_flags & CLONE_NEWNET) {
1871 ret = lxc_network_send_to_child(handler);
1872 if (ret < 0) {
6bc4165d 1873 SYSERROR("Failed to send veth names to child");
8945dad0
CB
1874 goto out_delete_net;
1875 }
1876 }
1877
6bc4165d 1878 if (!lxc_sync_wait_child(handler, START_SYNC_IDMAPPED_MOUNTS))
f4152036
CB
1879 goto out_delete_net;
1880
1b82d721
CB
1881 ret = lxc_idmapped_mounts_parent(handler);
1882 if (ret) {
1883 ERROR("Failed to setup mount entries");
1884 goto out_delete_net;
1885 }
1886
1887 if (!lxc_sync_wait_child(handler, START_SYNC_CGROUP_LIMITS))
1888 goto out_delete_net;
1889
432faf20 1890 /*
3a89b0ab
CB
1891 * With isolation the limiting devices cgroup was already setup, so
1892 * only setup devices here if we have no namespace directory.
432faf20
WB
1893 */
1894 if (!handler->conf->cgroup_meta.namespace_dir &&
1895 !cgroup_ops->setup_limits_legacy(cgroup_ops, handler->conf, true)) {
cfc62c60 1896 ERROR("Failed to setup legacy device cgroup controller limits");
b98f7d6e 1897 goto out_delete_net;
544a48a0 1898 }
cfc62c60 1899 TRACE("Set up legacy device cgroup controller limits");
544a48a0 1900
bf651989
CB
1901 if (!cgroup_ops->devices_activate(cgroup_ops, handler)) {
1902 ERROR("Failed to setup cgroup2 device controller limits");
1903 goto out_delete_net;
1904 }
1905 TRACE("Set up cgroup2 device controller limits");
1906
6bc4165d
CB
1907 cgroup_ops->finalize(cgroup_ops);
1908 TRACE("Finished setting up cgroups");
1909
1910 /* Run any host-side start hooks */
1911 ret = run_lxc_hooks(name, "start-host", conf, NULL);
1912 if (ret < 0) {
1913 ERROR("Failed to run lxc.hook.start-host");
1914 goto out_delete_net;
1915 }
1916
1917 if (!lxc_sync_wake_child(handler, START_SYNC_FDS))
1918 goto out_delete_net;
1919
f7176c3e 1920 if (handler->ns_unshare_flags & CLONE_NEWCGROUP) {
8bf3abfb 1921 /* Now we're ready to preserve the cgroup namespace */
8db6be1b 1922 ret = lxc_try_preserve_namespace(handler, LXC_NS_CGROUP, "cgroup");
8bf3abfb 1923 if (ret < 0) {
857ba1f0 1924 if (ret != -ENOENT) {
6d1400b5 1925 SYSERROR("Failed to preserve cgroup namespace");
4cb53844
CB
1926 goto out_delete_net;
1927 }
8bf3abfb 1928 }
8bf3abfb
CB
1929 }
1930
f7176c3e 1931 if (handler->ns_unshare_flags & CLONE_NEWTIME) {
245066af 1932 /* Now we're ready to preserve the time namespace */
8db6be1b 1933 ret = lxc_try_preserve_namespace(handler, LXC_NS_TIME, "time");
f1c43439 1934 if (ret < 0) {
857ba1f0 1935 if (ret != -ENOENT) {
f1c43439
CB
1936 SYSERROR("Failed to preserve time namespace");
1937 goto out_delete_net;
1938 }
f1c43439
CB
1939 }
1940 }
1941
493ae3fe 1942 ret = lxc_sync_fds_parent(handler);
1b82d721 1943 if (ret < 0) {
493ae3fe 1944 SYSERROR("Failed to sync file descriptors with child");
1b82d721 1945 goto out_delete_net;
790255cf
CB
1946 }
1947
9f77617b
CB
1948 ret = lxc_terminal_setup(conf);
1949 if (ret < 0) {
1950 SYSERROR("Failed to create console");
1951 goto out_delete_net;
1952 }
1953
1b82d721
CB
1954 /*
1955 * Tell the child to complete its initialization and wait for it to
1956 * exec or return an error. (The child will never return
1957 * START_SYNC_READY_START+1. It will either close the sync pipe,
1958 * causing lxc_sync_barrier_child to return success, or return a
1959 * different value, causing us to error out).
1960 */
1961 if (!lxc_sync_barrier_child(handler, START_SYNC_READY_START))
1962 goto out_delete_net;
1963
1964 /* Now all networks are created, network devices are moved into place,
1965 * and the correct names and ifindices in the respective namespaces have
1966 * been recorded. The corresponding structs have now all been filled. So
1967 * log them for debugging purposes.
1968 */
1969 lxc_log_configured_netdevs(conf);
1970
cfc62c60
CB
1971 ret = handler->ops->post_start(handler, handler->data);
1972 if (ret < 0)
e6126dbe
MN
1973 goto out_abort;
1974
cfc62c60
CB
1975 ret = lxc_set_state(name, handler, RUNNING);
1976 if (ret < 0) {
1977 ERROR("Failed to set state to \"%s\"", lxc_state2str(RUNNING));
59eb99ba 1978 goto out_abort;
3f21c114 1979 }
22ebac19 1980
3c22086f 1981 lxc_sync_fini(handler);
0c547523 1982
e6126dbe 1983 return 0;
1ac470c0 1984
7fef7a06 1985out_delete_net:
becad0ec 1986 if (handler->ns_clone_flags & CLONE_NEWNET)
bb84beda 1987 lxc_delete_network(handler);
1bd8d726 1988
59eb99ba 1989out_abort:
0c5859ff 1990 lxc_abort(handler);
95ef0d7c
CB
1991
1992out_sync_fini:
3c22086f 1993 lxc_sync_fini(handler);
5c068da9 1994
b79fcd86 1995 return -1;
59eb99ba 1996}
0ad19a3f 1997
7bdf97d2
CB
1998int __lxc_start(struct lxc_handler *handler, struct lxc_operations *ops,
1999 void *data, const char *lxcpath, bool daemonize, int *error_num)
59eb99ba 2000{
c30e9b19 2001 int ret, status;
7bdf97d2 2002 const char *name = handler->name;
aa460476 2003 struct lxc_conf *conf = handler->conf;
72068e74 2004 struct cgroup_ops *cgroup_ops;
80090207 2005
c30e9b19
CB
2006 ret = lxc_init(name, handler);
2007 if (ret < 0) {
2008 ERROR("Failed to initialize container \"%s\"", name);
9ad66589 2009 goto out_abort;
0ad19a3f 2010 }
ee70bf78
CLG
2011 handler->ops = ops;
2012 handler->data = data;
bb955810 2013 handler->daemonize = daemonize;
72068e74 2014 cgroup_ops = handler->cgroup_ops;
e6126dbe 2015
76a26f55 2016 if (!attach_block_device(handler->conf)) {
c30e9b19 2017 ERROR("Failed to attach block device");
575ea467 2018 ret = -1;
9ad66589 2019 goto out_abort;
76a26f55
SH
2020 }
2021
72068e74
CB
2022 if (!cgroup_ops->monitor_create(cgroup_ops, handler)) {
2023 ERROR("Failed to create monitor cgroup");
575ea467 2024 ret = -1;
9ad66589 2025 goto out_abort;
eeef32bb
CB
2026 }
2027
838d1556
CB
2028 if (!cgroup_ops->monitor_delegate_controllers(cgroup_ops)) {
2029 ERROR("Failed to delegate controllers to monitor cgroup");
575ea467 2030 ret = -1;
9ad66589 2031 goto out_abort;
72068e74
CB
2032 }
2033
838d1556
CB
2034 if (!cgroup_ops->monitor_enter(cgroup_ops, handler)) {
2035 ERROR("Failed to enter monitor cgroup");
c581d2a6 2036 ret = -1;
9ad66589 2037 goto out_abort;
c581d2a6
CB
2038 }
2039
e26cf563
CB
2040 /* If the rootfs is not a blockdev, prevent the container from marking
2041 * it readonly.
2042 * If the container is unprivileged then skip rootfs pinning.
2043 */
0589d744 2044 ret = lxc_rootfs_init(conf, !list_empty(&conf->id_map));
e26cf563
CB
2045 if (ret) {
2046 ERROR("Failed to handle rootfs pinning for container \"%s\"", handler->name);
2047 ret = -1;
2048 goto out_abort;
2049 }
2050
0589d744 2051 if (geteuid() == 0 && !list_empty(&conf->id_map)) {
26ad2c6f 2052 /*
4b875ef9 2053 * Most filesystems can't be mounted inside a userns so handle them here.
26ad2c6f 2054 */
4b875ef9 2055 if (rootfs_is_blockdev(conf)) {
c30e9b19
CB
2056 ret = unshare(CLONE_NEWNS);
2057 if (ret < 0) {
2058 ERROR("Failed to unshare CLONE_NEWNS");
9ad66589 2059 goto out_abort;
35120d9c 2060 }
c30e9b19 2061 INFO("Unshared CLONE_NEWNS");
408da065 2062
8ce1abc2 2063 ret = lxc_setup_rootfs_prepare_root(conf, name, lxcpath);
c30e9b19
CB
2064 if (ret < 0) {
2065 ERROR("Error setting up rootfs mount as root before spawn");
9ad66589 2066 goto out_abort;
35120d9c 2067 }
c30e9b19 2068 INFO("Set up container rootfs as host root");
35120d9c
SH
2069 }
2070 }
2071
c30e9b19
CB
2072 ret = lxc_spawn(handler);
2073 if (ret < 0) {
2074 ERROR("Failed to spawn container \"%s\"", name);
76a26f55 2075 goto out_detach_blockdev;
0ad19a3f 2076 }
2077
80308d07 2078 handler->conf->reboot = REBOOT_NONE;
8bee8851 2079
c30e9b19
CB
2080 ret = lxc_poll(name, handler);
2081 if (ret) {
2082 ERROR("LXC mainloop exited with error: %d", ret);
9ad66589 2083 goto out_delete_network;
59eb99ba 2084 }
0ad19a3f 2085
321db026
DJ
2086 if (!handler->init_died && handler->pid > 0) {
2087 ERROR("Child process is not killed");
575ea467 2088 ret = -1;
9ad66589 2089 goto out_delete_network;
321db026
DJ
2090 }
2091
c30e9b19
CB
2092 status = lxc_wait_for_pid_status(handler->pid);
2093 if (status < 0)
2094 SYSERROR("Failed to retrieve status for %d", handler->pid);
e043236e 2095
408da065
CB
2096 /* If the child process exited but was not signaled, it didn't call
2097 * reboot. This should mean it was an lxc-execute which simply exited.
2098 * In any case, treat it as a 'halt'.
8b004f07 2099 */
d028235d 2100 if (WIFSIGNALED(status)) {
8b004f07
SH
2101 switch(WTERMSIG(status)) {
2102 case SIGINT: /* halt */
c30e9b19 2103 DEBUG("Container \"%s\" is halting", name);
8b004f07
SH
2104 break;
2105 case SIGHUP: /* reboot */
c30e9b19 2106 DEBUG("Container \"%s\" is rebooting", name);
80308d07 2107 handler->conf->reboot = REBOOT_REQ;
8b004f07 2108 break;
c2b9bd9e 2109 case SIGSYS: /* seccomp */
c30e9b19 2110 DEBUG("Container \"%s\" violated its seccomp policy", name);
c2b9bd9e 2111 break;
8b004f07 2112 default:
c30e9b19 2113 DEBUG("Unknown exit status for container \"%s\" init %d", name, WTERMSIG(status));
8b004f07
SH
2114 break;
2115 }
d028235d 2116 }
828695d9 2117
c30e9b19
CB
2118 ret = lxc_restore_phys_nics_to_netns(handler);
2119 if (ret < 0)
818a57fc 2120 ERROR("Failed to move physical network devices back to parent network namespace");
ce5782df 2121
1787abca 2122 lxc_monitor_send_exit_code(name, status, handler->lxcpath);
eb808539 2123 lxc_error_set_and_log(handler->pid, status);
a3b4f3d6
TA
2124 if (error_num)
2125 *error_num = handler->exit_status;
1bd8d726 2126
bb84beda 2127 lxc_delete_network(handler);
76a26f55 2128 detach_block_device(handler->conf);
fd5be714 2129 lxc_end(handler);
c30e9b19 2130 return ret;
0ad19a3f 2131
9ad66589 2132out_abort:
0c5859ff 2133 lxc_abort(handler);
945daa24
CB
2134 lxc_end(handler);
2135 return ret;
65a2dc8b
CB
2136
2137out_detach_blockdev:
0c5859ff 2138 lxc_abort(handler);
945daa24
CB
2139 detach_block_device(handler->conf);
2140 lxc_end(handler);
2141 return ret;
65a2dc8b 2142
9ad66589 2143out_delete_network:
0c5859ff 2144 lxc_abort(handler);
abd953eb 2145 lxc_restore_phys_nics_to_netns(handler);
945daa24
CB
2146 lxc_delete_network(handler);
2147 detach_block_device(handler->conf);
2148 lxc_end(handler);
2149 return ret;
0ad19a3f 2150}
ee70bf78
CLG
2151
2152struct start_args {
2153 char *const *argv;
2154};
2155
2156static int start(struct lxc_handler *handler, void* data)
2157{
2158 struct start_args *arg = data;
2159
984984e4 2160 NOTICE("Exec'ing \"%s\"", arg->argv[0]);
ee70bf78
CLG
2161
2162 execvp(arg->argv[0], arg->argv);
984984e4 2163 SYSERROR("Failed to exec \"%s\"", arg->argv[0]);
ee70bf78
CLG
2164 return 0;
2165}
2166
2167static int post_start(struct lxc_handler *handler, void* data)
2168{
2169 struct start_args *arg = data;
2170
4c8e880e 2171 NOTICE("Started \"%s\" with pid \"%d\"", arg->argv[0], handler->pid);
ee70bf78
CLG
2172 return 0;
2173}
2174
2175static struct lxc_operations start_ops = {
2176 .start = start,
2177 .post_start = post_start
2178};
2179
7bdf97d2 2180int lxc_start(char *const argv[], struct lxc_handler *handler,
bb955810 2181 const char *lxcpath, bool daemonize, int *error_num)
ee70bf78
CLG
2182{
2183 struct start_args start_arg = {
2184 .argv = argv,
2185 };
2186
b2efeb0b 2187 TRACE("Doing lxc_start");
7bdf97d2 2188 return __lxc_start(handler, &start_ops, &start_arg, lxcpath, daemonize, error_num);
ee70bf78 2189}
28272964
CB
2190
2191static void lxc_destroy_container_on_signal(struct lxc_handler *handler,
2192 const char *name)
2193{
245100a0 2194 char destroy[PATH_MAX];
f01f7975 2195 struct lxc_container *c;
ae3beac9
CB
2196 int ret = 0;
2197 bool bret = true;
2198
df31363a 2199 if (handler->conf->rootfs.path && handler->conf->rootfs.mount) {
790255cf 2200 bret = do_destroy_container(handler);
28272964 2201 if (!bret) {
ae3beac9 2202 ERROR("Error destroying rootfs for container \"%s\"", name);
28272964
CB
2203 return;
2204 }
2205 }
ae3beac9 2206 INFO("Destroyed rootfs for container \"%s\"", name);
28272964 2207
fa60cd7b
CB
2208 ret = strnprintf(destroy, sizeof(destroy), "%s/%s", handler->lxcpath, name);
2209 if (ret < 0) {
ae3beac9 2210 ERROR("Error destroying directory for container \"%s\"", name);
28272964
CB
2211 return;
2212 }
2213
f01f7975
CB
2214 c = lxc_container_new(name, handler->lxcpath);
2215 if (c) {
2216 if (container_disk_lock(c)) {
ae3beac9 2217 INFO("Could not update lxc_snapshots file");
f01f7975
CB
2218 lxc_container_put(c);
2219 } else {
2220 mod_all_rdeps(c, false);
2221 container_disk_unlock(c);
2222 lxc_container_put(c);
2223 }
2224 }
2225
d0fbc7ba 2226 if (!handler->am_root)
94b0a3ac
CB
2227 ret = userns_exec_full(handler->conf, lxc_rmdir_onedev_wrapper,
2228 destroy, "lxc_rmdir_onedev_wrapper");
28272964
CB
2229 else
2230 ret = lxc_rmdir_onedev(destroy, NULL);
2231
2232 if (ret < 0) {
ae3beac9 2233 ERROR("Error destroying directory for container \"%s\"", name);
28272964
CB
2234 return;
2235 }
ae3beac9 2236 INFO("Destroyed directory for container \"%s\"", name);
28272964
CB
2237}
2238
2239static int lxc_rmdir_onedev_wrapper(void *data)
2240{
2241 char *arg = (char *) data;
2242 return lxc_rmdir_onedev(arg, NULL);
2243}
2244
134df645
CB
2245static bool do_destroy_container(struct lxc_handler *handler)
2246{
94b0a3ac
CB
2247 int ret;
2248
d0fbc7ba 2249 if (!handler->am_root) {
94b0a3ac
CB
2250 ret = userns_exec_full(handler->conf, storage_destroy_wrapper,
2251 handler->conf, "storage_destroy_wrapper");
2252 if (ret < 0)
d028235d 2253 return false;
10bc1861 2254
d028235d
SG
2255 return true;
2256 }
10bc1861 2257
790255cf 2258 return storage_destroy(handler->conf);
28272964 2259}