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