]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/start.c
fix initial run level
[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{
da2aef7f
DL
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];
15cd25fd
DL
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;
82d89dce 228 pid_t *pid = data;
15cd25fd
DL
229
230 ret = read(fd, &siginfo, sizeof(siginfo));
231 if (ret < 0) {
232 ERROR("failed to read sigchld info");
233 return -1;
234 }
235
236 if (ret != sizeof(siginfo)) {
237 ERROR("unexpected siginfo size");
238 return -1;
239 }
240
241 if (siginfo.ssi_code == CLD_STOPPED ||
242 siginfo.ssi_code == CLD_CONTINUED) {
243 INFO("container init process was stopped/continued");
244 return 0;
245 }
1ac470c0 246
82d89dce
DL
247 /* more robustness, protect ourself from a SIGCHLD sent
248 * by a process different from the container init
249 */
250 if (siginfo.ssi_pid != *pid) {
251 WARN("invalid pid for SIGCHLD");
252 return 0;
253 }
254
15cd25fd 255 DEBUG("container init process exited");
b0a33c1e 256 return 1;
257}
258
0a3ec350
DL
259int lxc_pid_callback(int fd, struct lxc_request *request,
260 struct lxc_handler *handler)
81c75799
DL
261{
262 struct lxc_answer answer;
263 int ret;
264
265 answer.pid = handler->pid;
266 answer.ret = 0;
267
268 ret = send(fd, &answer, sizeof(answer), 0);
269 if (ret < 0) {
270 WARN("failed to send answer to the peer");
271 return -1;
272 }
273
274 if (ret != sizeof(answer)) {
275 ERROR("partial answer sent");
276 return -1;
277 }
278
279 return 0;
280}
281
25c2aca5 282int lxc_set_state(const char *name, struct lxc_handler *handler, lxc_state_t state)
66aeffc7
DL
283{
284 handler->state = state;
285 lxc_monitor_send_state(name, state);
286 return 0;
287}
288
1bc5cc8c 289int lxc_poll(const char *name, struct lxc_handler *handler)
b0a33c1e 290{
ca5f7926
DL
291 int sigfd = handler->sigfd;
292 int pid = handler->pid;
b0a33c1e 293 struct lxc_epoll_descr descr;
294
a9e61274 295 if (lxc_mainloop_open(&descr)) {
36eb9bde 296 ERROR("failed to create mainloop");
50c8bf05 297 goto out_sigfd;
b0a33c1e 298 }
299
300 if (lxc_mainloop_add_handler(&descr, sigfd, sigchld_handler, &pid)) {
36eb9bde 301 ERROR("failed to add handler for the signal");
b0a33c1e 302 goto out_mainloop_open;
303 }
304
63376d7d
DL
305 if (lxc_console_mainloop_add(&descr, handler)) {
306 ERROR("failed to add console handler to mainloop");
307 goto out_mainloop_open;
308 }
309
563f2f2c
DL
310 if (lxc_command_mainloop_add(name, &descr, handler)) {
311 ERROR("failed to add command handler to mainloop");
96fa1ff0 312 goto out_mainloop_open;
563f2f2c
DL
313 }
314
315 if (lxc_utmp_mainloop_add(&descr, handler)) {
316 ERROR("failed to add utmp handler to mainloop");
317 goto out_mainloop_open;
318 }
b0a33c1e 319
c3e13372 320 return lxc_mainloop(&descr);
b0a33c1e 321
322out_mainloop_open:
323 lxc_mainloop_close(&descr);
b0a33c1e 324out_sigfd:
325 close(sigfd);
c3e13372 326 return -1;
b0a33c1e 327}
328
fae349da 329struct lxc_handler *lxc_init(const char *name, struct lxc_conf *conf)
59eb99ba 330{
3a0f472d
DL
331 struct lxc_handler *handler;
332
333 handler = malloc(sizeof(*handler));
334 if (!handler)
335 return NULL;
59eb99ba
DL
336
337 memset(handler, 0, sizeof(*handler));
338
fae349da
DL
339 handler->conf = conf;
340
3bdf52d7
DL
341 handler->name = strdup(name);
342 if (!handler->name) {
343 ERROR("failed to allocate memory");
344 goto out_free;
345 }
346
0ad19a3f 347 /* Begin the set the state to STARTING*/
25c2aca5 348 if (lxc_set_state(name, handler, STARTING)) {
59eb99ba 349 ERROR("failed to set state '%s'", lxc_state2str(STARTING));
3bdf52d7 350 goto out_free_name;
0ad19a3f 351 }
352
fae349da 353 if (lxc_create_tty(name, conf)) {
36eb9bde 354 ERROR("failed to create the ttys");
59eb99ba 355 goto out_aborting;
b0a33c1e 356 }
357
1560f6c9 358 if (lxc_create_console(conf)) {
63376d7d
DL
359 ERROR("failed to create console");
360 goto out_delete_tty;
361 }
362
b0a33c1e 363 /* the signal fd has to be created before forking otherwise
364 * if the child process exits before we setup the signal fd,
365 * the event will be lost and the command will be stuck */
59eb99ba
DL
366 handler->sigfd = setup_sigchld_fd(&handler->oldmask);
367 if (handler->sigfd < 0) {
36eb9bde 368 ERROR("failed to set sigchild fd handler");
63376d7d 369 goto out_delete_console;
b0a33c1e 370 }
371
59eb99ba
DL
372 /* Avoid signals from terminal */
373 LXC_TTY_ADD_HANDLER(SIGINT);
374 LXC_TTY_ADD_HANDLER(SIGQUIT);
375
c3e13372 376 INFO("'%s' is initialized", name);
3a0f472d 377 return handler;
59eb99ba 378
63376d7d
DL
379out_delete_console:
380 lxc_delete_console(&conf->console);
59eb99ba 381out_delete_tty:
fae349da 382 lxc_delete_tty(&conf->tty_info);
59eb99ba 383out_aborting:
25c2aca5 384 lxc_set_state(name, handler, ABORTING);
3bdf52d7
DL
385out_free_name:
386 free(handler->name);
387 handler->name = NULL;
3a0f472d
DL
388out_free:
389 free(handler);
c3e13372 390 return NULL;
59eb99ba
DL
391}
392
1bc5cc8c 393void lxc_fini(const char *name, struct lxc_handler *handler)
59eb99ba
DL
394{
395 /* The STOPPING state is there for future cleanup code
396 * which can take awhile
397 */
25c2aca5
MN
398 lxc_set_state(name, handler, STOPPING);
399 lxc_set_state(name, handler, STOPPED);
59eb99ba 400
63376d7d 401 lxc_delete_console(&handler->conf->console);
b2431939 402 lxc_delete_tty(&handler->conf->tty_info);
3bdf52d7 403 free(handler->name);
b2431939 404 free(handler);
59eb99ba
DL
405
406 LXC_TTY_DEL_HANDLER(SIGQUIT);
407 LXC_TTY_DEL_HANDLER(SIGINT);
408}
409
1bc5cc8c 410void lxc_abort(const char *name, struct lxc_handler *handler)
59eb99ba 411{
25c2aca5 412 lxc_set_state(name, handler, ABORTING);
7d9fb3e9
DL
413 if (handler->pid > 0)
414 kill(handler->pid, SIGKILL);
59eb99ba
DL
415}
416
50e98013
DL
417struct start_arg {
418 const char *name;
419 char *const *argv;
420 struct lxc_handler *handler;
421 int *sv;
422};
423
424static int do_start(void *arg)
425{
426 struct start_arg *start_arg = arg;
427 struct lxc_handler *handler = start_arg->handler;
428 const char *name = start_arg->name;
429 char *const *argv = start_arg->argv;
430 int *sv = start_arg->sv;
431 int err = -1, sync;
432
433 if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL)) {
434 SYSERROR("failed to set sigprocmask");
9d7f9e52 435 return -1;
50e98013
DL
436 }
437
438 close(sv[1]);
439
440 /* Be sure we don't inherit this after the exec */
441 fcntl(sv[0], F_SETFD, FD_CLOEXEC);
442
443 /* Tell our father he can begin to configure the container */
444 if (write(sv[0], &sync, sizeof(sync)) < 0) {
445 SYSERROR("failed to write socket");
9d7f9e52 446 return -1;
50e98013
DL
447 }
448
449 /* Wait for the father to finish the configuration */
450 if (read(sv[0], &sync, sizeof(sync)) < 0) {
451 SYSERROR("failed to read socket");
9d7f9e52 452 return -1;
50e98013
DL
453 }
454
455 /* Setup the container, ip, names, utsname, ... */
fae349da 456 if (lxc_setup(name, handler->conf)) {
50e98013
DL
457 ERROR("failed to setup the container");
458 goto out_warn_father;
459 }
460
461 if (prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT, 0, 0, 0)) {
462 SYSERROR("failed to remove CAP_SYS_BOOT capability");
9d7f9e52 463 return -1;
50e98013
DL
464 }
465
6a6ad7af
DL
466 if (prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0)) {
467 SYSERROR("failed to set pdeath signal");
9d7f9e52 468 return -1;
6a6ad7af
DL
469 }
470
1ac470c0
DL
471 NOTICE("exec'ing '%s'", argv[0]);
472
50e98013
DL
473 execvp(argv[0], argv);
474 SYSERROR("failed to exec %s", argv[0]);
475
476out_warn_father:
477 /* If the exec fails, tell that to our father */
478 if (write(sv[0], &err, sizeof(err)) < 0)
479 SYSERROR("failed to write the socket");
50e98013
DL
480 return -1;
481}
482
9618063c 483int lxc_spawn(const char *name, struct lxc_handler *handler, char *const argv[])
59eb99ba
DL
484{
485 int sv[2];
486 int clone_flags;
487 int err = -1, sync;
99a6af52 488 int failed_before_rename = 0;
59eb99ba 489
50e98013
DL
490 struct start_arg start_arg = {
491 .name = name,
492 .argv = argv,
493 .handler = handler,
494 .sv = sv,
495 };
496
0ad19a3f 497 /* Synchro socketpair */
498 if (socketpair(AF_LOCAL, SOCK_STREAM, 0, sv)) {
36eb9bde 499 SYSERROR("failed to create communication socketpair");
9d7f9e52 500 return -1;
0ad19a3f 501 }
502
1ea6db29 503 clone_flags = CLONE_NEWUTS|CLONE_NEWPID|CLONE_NEWIPC|CLONE_NEWNS;
fae349da 504 if (!lxc_list_empty(&handler->conf->network)) {
82d5ae15 505
0ad19a3f 506 clone_flags |= CLONE_NEWNET;
507
82d5ae15
DL
508 /* that should be done before the clone because we will
509 * fill the netdev index and use them in the child
510 */
fae349da 511 if (lxc_create_network(&handler->conf->network)) {
82d5ae15
DL
512 ERROR("failed to create the network");
513 goto out_close;
514 }
515 }
516
0ad19a3f 517 /* Create a process in a new set of namespaces */
50e98013 518 handler->pid = lxc_clone(do_start, &start_arg, clone_flags);
59eb99ba 519 if (handler->pid < 0) {
36eb9bde 520 SYSERROR("failed to fork into a new namespace");
7fef7a06 521 goto out_delete_net;
0ad19a3f 522 }
523
0ad19a3f 524 close(sv[0]);
525
526 /* Wait for the child to be ready */
99a6af52
MN
527 if (read(sv[1], &sync, sizeof(sync)) <= 0) {
528 ERROR("sync read failure : %m");
529 failed_before_rename = 1;
0ad19a3f 530 }
531
9f44c578 532 if (lxc_rename_nsgroup(name, handler))
7fef7a06 533 goto out_delete_net;
218d4250 534
99a6af52
MN
535 if (failed_before_rename)
536 goto out_delete_net;
537
0ad19a3f 538 /* Create the network configuration */
82d5ae15 539 if (clone_flags & CLONE_NEWNET) {
fae349da 540 if (lxc_assign_network(&handler->conf->network, handler->pid)) {
82d5ae15 541 ERROR("failed to create the configured network");
7fef7a06 542 goto out_delete_net;
82d5ae15 543 }
0ad19a3f 544 }
545
546 /* Tell the child to continue its initialization */
547 if (write(sv[1], &sync, sizeof(sync)) < 0) {
36eb9bde 548 SYSERROR("failed to write the socket");
59eb99ba 549 goto out_abort;
0ad19a3f 550 }
551
552 /* Wait for the child to exec or returning an error */
e043236e 553 if (read(sv[1], &sync, sizeof(sync)) < 0) {
36eb9bde 554 ERROR("failed to read the socket");
59eb99ba 555 goto out_abort;
0ad19a3f 556 }
557
25c2aca5 558 if (lxc_set_state(name, handler, RUNNING)) {
59eb99ba
DL
559 ERROR("failed to set state to %s",
560 lxc_state2str(RUNNING));
561 goto out_abort;
3f21c114 562 }
22ebac19 563
59eb99ba 564 err = 0;
22ebac19 565
1ac470c0
DL
566 NOTICE("'%s' started with pid '%d'", argv[0], handler->pid);
567
59eb99ba
DL
568out_close:
569 close(sv[0]);
570 close(sv[1]);
59eb99ba 571 return err;
0ad19a3f 572
7fef7a06
DL
573out_delete_net:
574 if (clone_flags & CLONE_NEWNET)
575 lxc_delete_network(&handler->conf->network);
59eb99ba
DL
576out_abort:
577 lxc_abort(name, handler);
b79fcd86
GK
578 close(sv[1]);
579 return -1;
59eb99ba 580}
0ad19a3f 581
fae349da 582int lxc_start(const char *name, char *const argv[], struct lxc_conf *conf)
59eb99ba 583{
3a0f472d 584 struct lxc_handler *handler;
e043236e 585 int err = -1;
59eb99ba
DL
586 int status;
587
f2faa8fa 588 if (lxc_check_inherited(-1))
80090207
CLG
589 return -1;
590
fae349da 591 handler = lxc_init(name, conf);
3a0f472d 592 if (!handler) {
59eb99ba 593 ERROR("failed to initialize the container");
66aeffc7 594 return -1;
0ad19a3f 595 }
596
3a0f472d 597 err = lxc_spawn(name, handler, argv);
59eb99ba
DL
598 if (err) {
599 ERROR("failed to spawn '%s'", argv[0]);
9d7f9e52 600 goto out_fini;
0ad19a3f 601 }
602
3a0f472d 603 err = lxc_poll(name, handler);
e043236e 604 if (err) {
59eb99ba
DL
605 ERROR("mainloop exited with an error");
606 goto out_abort;
607 }
0ad19a3f 608
3a0f472d 609 while (waitpid(handler->pid, &status, 0) < 0 && errno == EINTR)
1bc5cc8c 610 continue;
e043236e 611
91480a0f
DL
612 if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL))
613 WARN("failed to restore sigprocmask");
614
3a0f472d 615 err = lxc_error_set_and_log(handler->pid, status);
9d7f9e52 616out_fini:
4d2e2ec6 617 lxc_unlink_nsgroup(name);
3a0f472d 618 lxc_fini(name, handler);
0ad19a3f 619 return err;
620
59eb99ba 621out_abort:
3a0f472d 622 lxc_abort(name, handler);
9d7f9e52 623 goto out_fini;
0ad19a3f 624}