]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/start.c
do not exit mainloop when child is stopped
[mirror_lxc.git] / src / lxc / start.c
CommitLineData
0ad19a3f 1/*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2008
5 *
6 * Authors:
7 * Daniel Lezcano <dlezcano at fr.ibm.com>
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
ff218c25 24#include "../config.h"
0ad19a3f 25#include <stdio.h>
26#undef _GNU_SOURCE
27#include <string.h>
28#include <stdlib.h>
29#include <dirent.h>
30#include <errno.h>
31#include <unistd.h>
32#include <signal.h>
b0a33c1e 33#include <fcntl.h>
34#include <termios.h>
50e98013 35#include <namespace.h>
0ad19a3f 36#include <sys/param.h>
37#include <sys/file.h>
f4d507d5 38#include <sys/mount.h>
b4f8660e 39#include <sys/stat.h>
0ad19a3f 40#include <sys/types.h>
0ad19a3f 41#include <sys/prctl.h>
ddceb1f9 42#include <sys/types.h>
42ff343d 43#include <sys/capability.h>
0ad19a3f 44#include <sys/wait.h>
b0a33c1e 45#include <sys/un.h>
46#include <sys/poll.h>
ff218c25 47
15cd25fd 48#ifdef HAVE_SYS_SIGNALFD_H
8ca61733 49# include <sys/signalfd.h>
ff218c25 50#else
15cd25fd
DL
51/* assume kernel headers are too old */
52struct signalfd_siginfo
53{
54 uint32_t ssi_signo;
55 int32_t ssi_errno;
56 int32_t ssi_code;
57 uint32_t ssi_pid;
58 uint32_t ssi_uid;
59 int32_t ssi_fd;
60 uint32_t ssi_tid;
61 uint32_t ssi_band;
62 uint32_t ssi_overrun;
63 uint32_t ssi_trapno;
64 int32_t ssi_status;
65 int32_t ssi_int;
66 uint64_t ssi_ptr;
67 uint64_t ssi_utime;
68 uint64_t ssi_stime;
69 uint64_t ssi_addr;
70 uint8_t __pad[48];
71};
72
8ca61733
MJ
73# ifndef __NR_signalfd4
74/* assume kernel headers are too old */
75# if __i386__
76# define __NR_signalfd4 327
77# elif __x86_64__
78# define __NR_signalfd4 289
bfa38025
MH
79# elif __powerpc__
80# define __NR_signalfd4 313
47f38330
SH
81# elif __s390x__
82# define __NR_signalfd4 322
8ca61733
MJ
83# endif
84#endif
85
86# ifndef __NR_signalfd
87/* assume kernel headers are too old */
88# if __i386__
89# define __NR_signalfd 321
90# elif __x86_64__
91# define __NR_signalfd 282
bfa38025
MH
92# elif __powerpc__
93# define __NR_signalfd 305
47f38330
SH
94# elif __s390x__
95# define __NR_signalfd 316
8ca61733
MJ
96# endif
97#endif
98
99int signalfd(int fd, const sigset_t *mask, int flags)
100{
101 int retval;
102
103 retval = syscall (__NR_signalfd4, fd, mask, _NSIG / 8, flags);
104 if (errno == ENOSYS && flags == 0)
105 retval = syscall (__NR_signalfd, fd, mask, _NSIG / 8);
106 return retval;
107}
ff218c25 108#endif
0ad19a3f 109
656994bb
MH
110#if !HAVE_DECL_PR_CAPBSET_DROP
111#define PR_CAPBSET_DROP 24
112#endif
113
63376d7d
DL
114#include "start.h"
115#include "conf.h"
6a3111b8 116#include "cgroup.h"
63376d7d 117#include "log.h"
563f2f2c 118#include "cgroup.h"
e2bcd7db 119#include "error.h"
b0a33c1e 120#include "af_unix.h"
121#include "mainloop.h"
63376d7d 122#include "utils.h"
563f2f2c 123#include "utmp.h"
63376d7d 124#include "monitor.h"
96fa1ff0 125#include "commands.h"
63376d7d 126#include "console.h"
36eb9bde
CLG
127
128lxc_log_define(lxc_start, lxc);
129
0ad19a3f 130LXC_TTY_HANDLER(SIGINT);
131LXC_TTY_HANDLER(SIGQUIT);
132
80090207
CLG
133static int match_fd(int fd)
134{
135 return (fd == 0 || fd == 1 || fd == 2);
136}
137
f2faa8fa 138int lxc_check_inherited(int fd_to_ignore)
80090207
CLG
139{
140 struct dirent dirent, *direntp;
141 int fd, fddir;
142 DIR *dir;
143 int ret = 0;
144
145 dir = opendir("/proc/self/fd");
146 if (!dir) {
147 WARN("failed to open directory: %m");
148 return -1;
149 }
150
151 fddir = dirfd(dir);
152
153 while (!readdir_r(dir, &dirent, &direntp)) {
154 char procpath[64];
155 char path[PATH_MAX];
156
157 if (!direntp)
158 break;
159
160 if (!strcmp(direntp->d_name, "."))
161 continue;
162
163 if (!strcmp(direntp->d_name, ".."))
164 continue;
165
166 fd = atoi(direntp->d_name);
167
f2faa8fa 168 if (fd == fddir || fd == lxc_log_fd || fd == fd_to_ignore)
80090207
CLG
169 continue;
170
171 if (match_fd(fd))
172 continue;
173 /*
174 * found inherited fd
175 */
176 ret = -1;
177
178 snprintf(procpath, sizeof(procpath), "/proc/self/fd/%d", fd);
179
180 if (readlink(procpath, path, sizeof(path)) == -1)
181 ERROR("readlink(%s) failed : %m", procpath);
182 else
183 ERROR("inherited fd %d on %s", fd, path);
184 }
185
186 if (closedir(dir))
187 ERROR("failed to close directory");
188 return ret;
189}
190
b0a33c1e 191static int setup_sigchld_fd(sigset_t *oldmask)
192{
193 sigset_t mask;
194 int fd;
195
196 if (sigprocmask(SIG_BLOCK, NULL, &mask)) {
36eb9bde 197 SYSERROR("failed to get mask signal");
b0a33c1e 198 return -1;
199 }
200
201 if (sigaddset(&mask, SIGCHLD) || sigprocmask(SIG_BLOCK, &mask, oldmask)) {
36eb9bde 202 SYSERROR("failed to set mask signal");
b0a33c1e 203 return -1;
204 }
205
206 fd = signalfd(-1, &mask, 0);
207 if (fd < 0) {
36eb9bde 208 SYSERROR("failed to create the signal fd");
b0a33c1e 209 return -1;
210 }
211
212 if (fcntl(fd, F_SETFD, FD_CLOEXEC)) {
36eb9bde 213 SYSERROR("failed to set sigfd to close-on-exec");
b0a33c1e 214 close(fd);
215 return -1;
216 }
217
1ac470c0
DL
218 DEBUG("sigchild handler set");
219
b0a33c1e 220 return fd;
221}
222
15cd25fd 223static int sigchld_handler(int fd, void *data,
b0a33c1e 224 struct lxc_epoll_descr *descr)
225{
15cd25fd
DL
226 struct signalfd_siginfo siginfo;
227 int ret;
228
229 ret = read(fd, &siginfo, sizeof(siginfo));
230 if (ret < 0) {
231 ERROR("failed to read sigchld info");
232 return -1;
233 }
234
235 if (ret != sizeof(siginfo)) {
236 ERROR("unexpected siginfo size");
237 return -1;
238 }
239
240 if (siginfo.ssi_code == CLD_STOPPED ||
241 siginfo.ssi_code == CLD_CONTINUED) {
242 INFO("container init process was stopped/continued");
243 return 0;
244 }
1ac470c0 245
15cd25fd 246 DEBUG("container init process exited");
b0a33c1e 247 return 1;
248}
249
0a3ec350
DL
250int lxc_pid_callback(int fd, struct lxc_request *request,
251 struct lxc_handler *handler)
81c75799
DL
252{
253 struct lxc_answer answer;
254 int ret;
255
256 answer.pid = handler->pid;
257 answer.ret = 0;
258
259 ret = send(fd, &answer, sizeof(answer), 0);
260 if (ret < 0) {
261 WARN("failed to send answer to the peer");
262 return -1;
263 }
264
265 if (ret != sizeof(answer)) {
266 ERROR("partial answer sent");
267 return -1;
268 }
269
270 return 0;
271}
272
25c2aca5 273int lxc_set_state(const char *name, struct lxc_handler *handler, lxc_state_t state)
66aeffc7
DL
274{
275 handler->state = state;
276 lxc_monitor_send_state(name, state);
277 return 0;
278}
279
1bc5cc8c 280int lxc_poll(const char *name, struct lxc_handler *handler)
b0a33c1e 281{
ca5f7926
DL
282 int sigfd = handler->sigfd;
283 int pid = handler->pid;
b0a33c1e 284 struct lxc_epoll_descr descr;
285
a9e61274 286 if (lxc_mainloop_open(&descr)) {
36eb9bde 287 ERROR("failed to create mainloop");
50c8bf05 288 goto out_sigfd;
b0a33c1e 289 }
290
291 if (lxc_mainloop_add_handler(&descr, sigfd, sigchld_handler, &pid)) {
36eb9bde 292 ERROR("failed to add handler for the signal");
b0a33c1e 293 goto out_mainloop_open;
294 }
295
63376d7d
DL
296 if (lxc_console_mainloop_add(&descr, handler)) {
297 ERROR("failed to add console handler to mainloop");
298 goto out_mainloop_open;
299 }
300
563f2f2c
DL
301 if (lxc_command_mainloop_add(name, &descr, handler)) {
302 ERROR("failed to add command handler to mainloop");
96fa1ff0 303 goto out_mainloop_open;
563f2f2c
DL
304 }
305
306 if (lxc_utmp_mainloop_add(&descr, handler)) {
307 ERROR("failed to add utmp handler to mainloop");
308 goto out_mainloop_open;
309 }
b0a33c1e 310
c3e13372 311 return lxc_mainloop(&descr);
b0a33c1e 312
313out_mainloop_open:
314 lxc_mainloop_close(&descr);
b0a33c1e 315out_sigfd:
316 close(sigfd);
c3e13372 317 return -1;
b0a33c1e 318}
319
fae349da 320struct lxc_handler *lxc_init(const char *name, struct lxc_conf *conf)
59eb99ba 321{
3a0f472d
DL
322 struct lxc_handler *handler;
323
324 handler = malloc(sizeof(*handler));
325 if (!handler)
326 return NULL;
59eb99ba
DL
327
328 memset(handler, 0, sizeof(*handler));
329
fae349da
DL
330 handler->conf = conf;
331
3bdf52d7
DL
332 handler->name = strdup(name);
333 if (!handler->name) {
334 ERROR("failed to allocate memory");
335 goto out_free;
336 }
337
0ad19a3f 338 /* Begin the set the state to STARTING*/
25c2aca5 339 if (lxc_set_state(name, handler, STARTING)) {
59eb99ba 340 ERROR("failed to set state '%s'", lxc_state2str(STARTING));
3bdf52d7 341 goto out_free_name;
0ad19a3f 342 }
343
fae349da 344 if (lxc_create_tty(name, conf)) {
36eb9bde 345 ERROR("failed to create the ttys");
59eb99ba 346 goto out_aborting;
b0a33c1e 347 }
348
1560f6c9 349 if (lxc_create_console(conf)) {
63376d7d
DL
350 ERROR("failed to create console");
351 goto out_delete_tty;
352 }
353
b0a33c1e 354 /* the signal fd has to be created before forking otherwise
355 * if the child process exits before we setup the signal fd,
356 * the event will be lost and the command will be stuck */
59eb99ba
DL
357 handler->sigfd = setup_sigchld_fd(&handler->oldmask);
358 if (handler->sigfd < 0) {
36eb9bde 359 ERROR("failed to set sigchild fd handler");
63376d7d 360 goto out_delete_console;
b0a33c1e 361 }
362
59eb99ba
DL
363 /* Avoid signals from terminal */
364 LXC_TTY_ADD_HANDLER(SIGINT);
365 LXC_TTY_ADD_HANDLER(SIGQUIT);
366
c3e13372 367 INFO("'%s' is initialized", name);
3a0f472d 368 return handler;
59eb99ba 369
63376d7d
DL
370out_delete_console:
371 lxc_delete_console(&conf->console);
59eb99ba 372out_delete_tty:
fae349da 373 lxc_delete_tty(&conf->tty_info);
59eb99ba 374out_aborting:
25c2aca5 375 lxc_set_state(name, handler, ABORTING);
3bdf52d7
DL
376out_free_name:
377 free(handler->name);
378 handler->name = NULL;
3a0f472d
DL
379out_free:
380 free(handler);
c3e13372 381 return NULL;
59eb99ba
DL
382}
383
1bc5cc8c 384void lxc_fini(const char *name, struct lxc_handler *handler)
59eb99ba
DL
385{
386 /* The STOPPING state is there for future cleanup code
387 * which can take awhile
388 */
25c2aca5
MN
389 lxc_set_state(name, handler, STOPPING);
390 lxc_set_state(name, handler, STOPPED);
59eb99ba 391
63376d7d 392 lxc_delete_console(&handler->conf->console);
b2431939 393 lxc_delete_tty(&handler->conf->tty_info);
3bdf52d7 394 free(handler->name);
b2431939 395 free(handler);
59eb99ba
DL
396
397 LXC_TTY_DEL_HANDLER(SIGQUIT);
398 LXC_TTY_DEL_HANDLER(SIGINT);
399}
400
1bc5cc8c 401void lxc_abort(const char *name, struct lxc_handler *handler)
59eb99ba 402{
25c2aca5 403 lxc_set_state(name, handler, ABORTING);
7d9fb3e9
DL
404 if (handler->pid > 0)
405 kill(handler->pid, SIGKILL);
59eb99ba
DL
406}
407
50e98013
DL
408struct start_arg {
409 const char *name;
410 char *const *argv;
411 struct lxc_handler *handler;
412 int *sv;
413};
414
415static int do_start(void *arg)
416{
417 struct start_arg *start_arg = arg;
418 struct lxc_handler *handler = start_arg->handler;
419 const char *name = start_arg->name;
420 char *const *argv = start_arg->argv;
421 int *sv = start_arg->sv;
422 int err = -1, sync;
423
424 if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL)) {
425 SYSERROR("failed to set sigprocmask");
9d7f9e52 426 return -1;
50e98013
DL
427 }
428
429 close(sv[1]);
430
431 /* Be sure we don't inherit this after the exec */
432 fcntl(sv[0], F_SETFD, FD_CLOEXEC);
433
434 /* Tell our father he can begin to configure the container */
435 if (write(sv[0], &sync, sizeof(sync)) < 0) {
436 SYSERROR("failed to write socket");
9d7f9e52 437 return -1;
50e98013
DL
438 }
439
440 /* Wait for the father to finish the configuration */
441 if (read(sv[0], &sync, sizeof(sync)) < 0) {
442 SYSERROR("failed to read socket");
9d7f9e52 443 return -1;
50e98013
DL
444 }
445
446 /* Setup the container, ip, names, utsname, ... */
fae349da 447 if (lxc_setup(name, handler->conf)) {
50e98013
DL
448 ERROR("failed to setup the container");
449 goto out_warn_father;
450 }
451
452 if (prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT, 0, 0, 0)) {
453 SYSERROR("failed to remove CAP_SYS_BOOT capability");
9d7f9e52 454 return -1;
50e98013
DL
455 }
456
6a6ad7af
DL
457 if (prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0)) {
458 SYSERROR("failed to set pdeath signal");
9d7f9e52 459 return -1;
6a6ad7af
DL
460 }
461
1ac470c0
DL
462 NOTICE("exec'ing '%s'", argv[0]);
463
50e98013
DL
464 execvp(argv[0], argv);
465 SYSERROR("failed to exec %s", argv[0]);
466
467out_warn_father:
468 /* If the exec fails, tell that to our father */
469 if (write(sv[0], &err, sizeof(err)) < 0)
470 SYSERROR("failed to write the socket");
50e98013
DL
471 return -1;
472}
473
9618063c 474int lxc_spawn(const char *name, struct lxc_handler *handler, char *const argv[])
59eb99ba
DL
475{
476 int sv[2];
477 int clone_flags;
478 int err = -1, sync;
99a6af52 479 int failed_before_rename = 0;
59eb99ba 480
50e98013
DL
481 struct start_arg start_arg = {
482 .name = name,
483 .argv = argv,
484 .handler = handler,
485 .sv = sv,
486 };
487
0ad19a3f 488 /* Synchro socketpair */
489 if (socketpair(AF_LOCAL, SOCK_STREAM, 0, sv)) {
36eb9bde 490 SYSERROR("failed to create communication socketpair");
9d7f9e52 491 return -1;
0ad19a3f 492 }
493
1ea6db29 494 clone_flags = CLONE_NEWUTS|CLONE_NEWPID|CLONE_NEWIPC|CLONE_NEWNS;
fae349da 495 if (!lxc_list_empty(&handler->conf->network)) {
82d5ae15 496
0ad19a3f 497 clone_flags |= CLONE_NEWNET;
498
82d5ae15
DL
499 /* that should be done before the clone because we will
500 * fill the netdev index and use them in the child
501 */
fae349da 502 if (lxc_create_network(&handler->conf->network)) {
82d5ae15
DL
503 ERROR("failed to create the network");
504 goto out_close;
505 }
506 }
507
0ad19a3f 508 /* Create a process in a new set of namespaces */
50e98013 509 handler->pid = lxc_clone(do_start, &start_arg, clone_flags);
59eb99ba 510 if (handler->pid < 0) {
36eb9bde 511 SYSERROR("failed to fork into a new namespace");
7fef7a06 512 goto out_delete_net;
0ad19a3f 513 }
514
0ad19a3f 515 close(sv[0]);
516
517 /* Wait for the child to be ready */
99a6af52
MN
518 if (read(sv[1], &sync, sizeof(sync)) <= 0) {
519 ERROR("sync read failure : %m");
520 failed_before_rename = 1;
0ad19a3f 521 }
522
9f44c578 523 if (lxc_rename_nsgroup(name, handler))
7fef7a06 524 goto out_delete_net;
218d4250 525
99a6af52
MN
526 if (failed_before_rename)
527 goto out_delete_net;
528
0ad19a3f 529 /* Create the network configuration */
82d5ae15 530 if (clone_flags & CLONE_NEWNET) {
fae349da 531 if (lxc_assign_network(&handler->conf->network, handler->pid)) {
82d5ae15 532 ERROR("failed to create the configured network");
7fef7a06 533 goto out_delete_net;
82d5ae15 534 }
0ad19a3f 535 }
536
537 /* Tell the child to continue its initialization */
538 if (write(sv[1], &sync, sizeof(sync)) < 0) {
36eb9bde 539 SYSERROR("failed to write the socket");
59eb99ba 540 goto out_abort;
0ad19a3f 541 }
542
543 /* Wait for the child to exec or returning an error */
e043236e 544 if (read(sv[1], &sync, sizeof(sync)) < 0) {
36eb9bde 545 ERROR("failed to read the socket");
59eb99ba 546 goto out_abort;
0ad19a3f 547 }
548
25c2aca5 549 if (lxc_set_state(name, handler, RUNNING)) {
59eb99ba
DL
550 ERROR("failed to set state to %s",
551 lxc_state2str(RUNNING));
552 goto out_abort;
3f21c114 553 }
22ebac19 554
59eb99ba 555 err = 0;
22ebac19 556
1ac470c0
DL
557 NOTICE("'%s' started with pid '%d'", argv[0], handler->pid);
558
59eb99ba
DL
559out_close:
560 close(sv[0]);
561 close(sv[1]);
59eb99ba 562 return err;
0ad19a3f 563
7fef7a06
DL
564out_delete_net:
565 if (clone_flags & CLONE_NEWNET)
566 lxc_delete_network(&handler->conf->network);
59eb99ba
DL
567out_abort:
568 lxc_abort(name, handler);
b79fcd86
GK
569 close(sv[1]);
570 return -1;
59eb99ba 571}
0ad19a3f 572
fae349da 573int lxc_start(const char *name, char *const argv[], struct lxc_conf *conf)
59eb99ba 574{
3a0f472d 575 struct lxc_handler *handler;
e043236e 576 int err = -1;
59eb99ba
DL
577 int status;
578
f2faa8fa 579 if (lxc_check_inherited(-1))
80090207
CLG
580 return -1;
581
fae349da 582 handler = lxc_init(name, conf);
3a0f472d 583 if (!handler) {
59eb99ba 584 ERROR("failed to initialize the container");
66aeffc7 585 return -1;
0ad19a3f 586 }
587
3a0f472d 588 err = lxc_spawn(name, handler, argv);
59eb99ba
DL
589 if (err) {
590 ERROR("failed to spawn '%s'", argv[0]);
9d7f9e52 591 goto out_fini;
0ad19a3f 592 }
593
affaa6da
MN
594 /* no need of other inherited fds but stderr */
595 close(fileno(stdin));
596 close(fileno(stdout));
597
3a0f472d 598 err = lxc_poll(name, handler);
e043236e 599 if (err) {
59eb99ba
DL
600 ERROR("mainloop exited with an error");
601 goto out_abort;
602 }
0ad19a3f 603
3a0f472d 604 while (waitpid(handler->pid, &status, 0) < 0 && errno == EINTR)
1bc5cc8c 605 continue;
e043236e 606
91480a0f
DL
607 if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL))
608 WARN("failed to restore sigprocmask");
609
3a0f472d 610 err = lxc_error_set_and_log(handler->pid, status);
9d7f9e52 611out_fini:
4d2e2ec6 612 lxc_unlink_nsgroup(name);
3a0f472d 613 lxc_fini(name, handler);
0ad19a3f 614 return err;
615
59eb99ba 616out_abort:
3a0f472d 617 lxc_abort(name, handler);
9d7f9e52 618 goto out_fini;
0ad19a3f 619}