]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/start.c
Remove unnecessary reset of msg.msg_controlle
[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>
0ad19a3f 39#include <sys/types.h>
0ad19a3f 40#include <sys/prctl.h>
ddceb1f9 41#include <sys/types.h>
42ff343d 42#include <sys/capability.h>
0ad19a3f 43#include <sys/wait.h>
b0a33c1e 44#include <sys/un.h>
45#include <sys/poll.h>
ff218c25 46
47#ifdef HAVE_SYS_SIGNALFD_H
8ca61733 48# include <sys/signalfd.h>
ff218c25 49#else
8ca61733
MJ
50# ifndef __NR_signalfd4
51/* assume kernel headers are too old */
52# if __i386__
53# define __NR_signalfd4 327
54# elif __x86_64__
55# define __NR_signalfd4 289
bfa38025
MH
56# elif __powerpc__
57# define __NR_signalfd4 313
47f38330
SH
58# elif __s390x__
59# define __NR_signalfd4 322
8ca61733
MJ
60# endif
61#endif
62
63# ifndef __NR_signalfd
64/* assume kernel headers are too old */
65# if __i386__
66# define __NR_signalfd 321
67# elif __x86_64__
68# define __NR_signalfd 282
bfa38025
MH
69# elif __powerpc__
70# define __NR_signalfd 305
47f38330
SH
71# elif __s390x__
72# define __NR_signalfd 316
8ca61733
MJ
73# endif
74#endif
75
76int signalfd(int fd, const sigset_t *mask, int flags)
77{
78 int retval;
79
80 retval = syscall (__NR_signalfd4, fd, mask, _NSIG / 8, flags);
81 if (errno == ENOSYS && flags == 0)
82 retval = syscall (__NR_signalfd, fd, mask, _NSIG / 8);
83 return retval;
84}
ff218c25 85#endif
0ad19a3f 86
656994bb
MH
87#if !HAVE_DECL_PR_CAPBSET_DROP
88#define PR_CAPBSET_DROP 24
89#endif
90
00b3c2e2
CLG
91#include <lxc/log.h>
92#include <lxc/conf.h>
93#include <lxc/confile.h>
94#include <lxc/start.h>
95#include <lxc/utils.h>
96#include <lxc/cgroup.h>
97#include <lxc/monitor.h>
98
e2bcd7db 99#include "error.h"
b0a33c1e 100#include "af_unix.h"
101#include "mainloop.h"
96fa1ff0 102#include "commands.h"
e2bcd7db 103
36eb9bde
CLG
104
105lxc_log_define(lxc_start, lxc);
106
0ad19a3f 107LXC_TTY_HANDLER(SIGINT);
108LXC_TTY_HANDLER(SIGQUIT);
109
b0a33c1e 110static int setup_sigchld_fd(sigset_t *oldmask)
111{
112 sigset_t mask;
113 int fd;
114
115 if (sigprocmask(SIG_BLOCK, NULL, &mask)) {
36eb9bde 116 SYSERROR("failed to get mask signal");
b0a33c1e 117 return -1;
118 }
119
120 if (sigaddset(&mask, SIGCHLD) || sigprocmask(SIG_BLOCK, &mask, oldmask)) {
36eb9bde 121 SYSERROR("failed to set mask signal");
b0a33c1e 122 return -1;
123 }
124
125 fd = signalfd(-1, &mask, 0);
126 if (fd < 0) {
36eb9bde 127 SYSERROR("failed to create the signal fd");
b0a33c1e 128 return -1;
129 }
130
131 if (fcntl(fd, F_SETFD, FD_CLOEXEC)) {
36eb9bde 132 SYSERROR("failed to set sigfd to close-on-exec");
b0a33c1e 133 close(fd);
134 return -1;
135 }
136
1ac470c0
DL
137 DEBUG("sigchild handler set");
138
b0a33c1e 139 return fd;
140}
141
b0a33c1e 142static int sigchld_handler(int fd, void *data,
143 struct lxc_epoll_descr *descr)
144{
1ac470c0
DL
145 DEBUG("child exited");
146
b0a33c1e 147 return 1;
148}
149
25c2aca5 150int lxc_set_state(const char *name, struct lxc_handler *handler, lxc_state_t state)
66aeffc7
DL
151{
152 handler->state = state;
153 lxc_monitor_send_state(name, state);
154 return 0;
155}
156
1bc5cc8c 157int lxc_poll(const char *name, struct lxc_handler *handler)
b0a33c1e 158{
ca5f7926
DL
159 int sigfd = handler->sigfd;
160 int pid = handler->pid;
a9e61274 161 int ret = -1;
b0a33c1e 162 struct lxc_epoll_descr descr;
163
a9e61274 164 if (lxc_mainloop_open(&descr)) {
36eb9bde 165 ERROR("failed to create mainloop");
50c8bf05 166 goto out_sigfd;
b0a33c1e 167 }
168
169 if (lxc_mainloop_add_handler(&descr, sigfd, sigchld_handler, &pid)) {
36eb9bde 170 ERROR("failed to add handler for the signal");
b0a33c1e 171 goto out_mainloop_open;
172 }
173
724e753c 174 if (lxc_command_mainloop_add(name, &descr, handler))
96fa1ff0 175 goto out_mainloop_open;
b0a33c1e 176
177 ret = lxc_mainloop(&descr);
178
179out:
180 return ret;
181
182out_mainloop_open:
183 lxc_mainloop_close(&descr);
b0a33c1e 184out_sigfd:
185 close(sigfd);
186 goto out;
187}
188
b8f57738
DL
189static int fdname(int fd, char *name, size_t size)
190{
191 char path[MAXPATHLEN];
acc86941 192 ssize_t len;
b8f57738
DL
193
194 snprintf(path, MAXPATHLEN, "/proc/self/fd/%d", fd);
195
acc86941
MN
196 len = readlink(path, name, size);
197 if (len > 0)
198 path[len] = '\0';
199
200 return (len <= 0) ? -1 : 0;
b8f57738
DL
201}
202
203static int console_init(char *console, size_t size)
204{
205 struct stat stat;
206 int i;
207
208 for (i = 0; i < 3; i++) {
209 if (!isatty(i))
210 continue;
211
212 if (ttyname_r(i, console, size)) {
213 SYSERROR("failed to retrieve tty name");
214 return -1;
215 }
af795875 216
b8f57738
DL
217 return 0;
218 }
219
220 if (!fstat(0, &stat)) {
221 if (S_ISREG(stat.st_mode) || S_ISCHR(stat.st_mode) ||
222 S_ISFIFO(stat.st_mode) || S_ISLNK(stat.st_mode))
223 return fdname(0, console, size);
224 }
225
226 console[0] = '\0';
1ac470c0
DL
227
228 DEBUG("console initialized");
229
b8f57738
DL
230 return 0;
231}
232
48862401 233struct lxc_handler *lxc_init(const char *name, const char *rcfile)
59eb99ba 234{
3a0f472d
DL
235 struct lxc_handler *handler;
236
237 handler = malloc(sizeof(*handler));
238 if (!handler)
239 return NULL;
59eb99ba
DL
240
241 memset(handler, 0, sizeof(*handler));
242
0ad19a3f 243 /* Begin the set the state to STARTING*/
25c2aca5 244 if (lxc_set_state(name, handler, STARTING)) {
59eb99ba 245 ERROR("failed to set state '%s'", lxc_state2str(STARTING));
884866b3 246 goto out_free;
0ad19a3f 247 }
248
571e6ec8 249 if (lxc_conf_init(&handler->conf)) {
88d5514d
DL
250 ERROR("failed to initialize the configuration");
251 goto out_aborting;
252 }
253
b0691f81
MN
254 if (rcfile) {
255 if (access(rcfile, F_OK)) {
8ac1b0bf 256 ERROR("failed to access '%s'", rcfile);
b0691f81
MN
257 goto out_aborting;
258 }
48862401 259
b0691f81 260 if (lxc_config_read(rcfile, &handler->conf)) {
8ac1b0bf 261 ERROR("failed to read '%s'", rcfile);
48862401
DL
262 goto out_aborting;
263 }
88d5514d
DL
264 }
265
d685aa80
DL
266 if (console_init(handler->conf.console,
267 sizeof(handler->conf.console))) {
b8f57738
DL
268 ERROR("failed to initialize the console");
269 goto out_aborting;
270 }
939229eb 271
5e4a62bf 272 if (lxc_create_tty(name, &handler->conf)) {
36eb9bde 273 ERROR("failed to create the ttys");
59eb99ba 274 goto out_aborting;
b0a33c1e 275 }
276
277 /* the signal fd has to be created before forking otherwise
278 * if the child process exits before we setup the signal fd,
279 * the event will be lost and the command will be stuck */
59eb99ba
DL
280 handler->sigfd = setup_sigchld_fd(&handler->oldmask);
281 if (handler->sigfd < 0) {
36eb9bde 282 ERROR("failed to set sigchild fd handler");
59eb99ba 283 goto out_delete_tty;
b0a33c1e 284 }
285
59eb99ba
DL
286 /* Avoid signals from terminal */
287 LXC_TTY_ADD_HANDLER(SIGINT);
288 LXC_TTY_ADD_HANDLER(SIGQUIT);
289
59eb99ba 290out:
1ac470c0
DL
291 if (handler)
292 INFO("'%s' is initialized", name);
293
3a0f472d 294 return handler;
59eb99ba
DL
295
296out_delete_tty:
571e6ec8 297 lxc_delete_tty(&handler->conf.tty_info);
59eb99ba 298out_aborting:
25c2aca5 299 lxc_set_state(name, handler, ABORTING);
3a0f472d
DL
300out_free:
301 free(handler);
302 handler = NULL;
59eb99ba
DL
303 goto out;
304}
305
1bc5cc8c 306void lxc_fini(const char *name, struct lxc_handler *handler)
59eb99ba
DL
307{
308 /* The STOPPING state is there for future cleanup code
309 * which can take awhile
310 */
25c2aca5
MN
311 lxc_set_state(name, handler, STOPPING);
312 lxc_set_state(name, handler, STOPPED);
59eb99ba
DL
313 lxc_unlink_nsgroup(name);
314
3a0f472d 315 if (handler) {
571e6ec8 316 lxc_delete_tty(&handler->conf.tty_info);
3a0f472d
DL
317 free(handler);
318 }
59eb99ba
DL
319
320 LXC_TTY_DEL_HANDLER(SIGQUIT);
321 LXC_TTY_DEL_HANDLER(SIGINT);
322}
323
1bc5cc8c 324void lxc_abort(const char *name, struct lxc_handler *handler)
59eb99ba 325{
25c2aca5 326 lxc_set_state(name, handler, ABORTING);
59eb99ba
DL
327 kill(handler->pid, SIGKILL);
328}
329
50e98013
DL
330struct start_arg {
331 const char *name;
332 char *const *argv;
333 struct lxc_handler *handler;
334 int *sv;
335};
336
337static int do_start(void *arg)
338{
339 struct start_arg *start_arg = arg;
340 struct lxc_handler *handler = start_arg->handler;
341 const char *name = start_arg->name;
342 char *const *argv = start_arg->argv;
343 int *sv = start_arg->sv;
344 int err = -1, sync;
345
346 if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL)) {
347 SYSERROR("failed to set sigprocmask");
348 goto out_child;
349 }
350
351 close(sv[1]);
352
353 /* Be sure we don't inherit this after the exec */
354 fcntl(sv[0], F_SETFD, FD_CLOEXEC);
355
356 /* Tell our father he can begin to configure the container */
357 if (write(sv[0], &sync, sizeof(sync)) < 0) {
358 SYSERROR("failed to write socket");
359 goto out_child;
360 }
361
362 /* Wait for the father to finish the configuration */
363 if (read(sv[0], &sync, sizeof(sync)) < 0) {
364 SYSERROR("failed to read socket");
365 goto out_child;
366 }
367
368 /* Setup the container, ip, names, utsname, ... */
571e6ec8 369 if (lxc_setup(name, &handler->conf)) {
50e98013
DL
370 ERROR("failed to setup the container");
371 goto out_warn_father;
372 }
373
374 if (prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT, 0, 0, 0)) {
375 SYSERROR("failed to remove CAP_SYS_BOOT capability");
376 goto out_child;
377 }
378
6a6ad7af
DL
379 if (prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0)) {
380 SYSERROR("failed to set pdeath signal");
381 goto out_child;
382 }
383
1ac470c0
DL
384 NOTICE("exec'ing '%s'", argv[0]);
385
50e98013
DL
386 execvp(argv[0], argv);
387 SYSERROR("failed to exec %s", argv[0]);
388
389out_warn_father:
390 /* If the exec fails, tell that to our father */
391 if (write(sv[0], &err, sizeof(err)) < 0)
392 SYSERROR("failed to write the socket");
393out_child:
394 return -1;
395}
396
9618063c 397int lxc_spawn(const char *name, struct lxc_handler *handler, char *const argv[])
59eb99ba
DL
398{
399 int sv[2];
400 int clone_flags;
401 int err = -1, sync;
402
50e98013
DL
403 struct start_arg start_arg = {
404 .name = name,
405 .argv = argv,
406 .handler = handler,
407 .sv = sv,
408 };
409
0ad19a3f 410 /* Synchro socketpair */
411 if (socketpair(AF_LOCAL, SOCK_STREAM, 0, sv)) {
36eb9bde 412 SYSERROR("failed to create communication socketpair");
f4d507d5 413 goto out;
0ad19a3f 414 }
415
1ea6db29 416 clone_flags = CLONE_NEWUTS|CLONE_NEWPID|CLONE_NEWIPC|CLONE_NEWNS;
5f4535a3 417 if (!lxc_list_empty(&handler->conf.network)) {
82d5ae15 418
0ad19a3f 419 clone_flags |= CLONE_NEWNET;
420
82d5ae15
DL
421 /* that should be done before the clone because we will
422 * fill the netdev index and use them in the child
423 */
5f4535a3 424 if (lxc_create_network(&handler->conf.network)) {
82d5ae15
DL
425 ERROR("failed to create the network");
426 goto out_close;
427 }
428 }
429
0ad19a3f 430 /* Create a process in a new set of namespaces */
50e98013 431 handler->pid = lxc_clone(do_start, &start_arg, clone_flags);
59eb99ba 432 if (handler->pid < 0) {
36eb9bde 433 SYSERROR("failed to fork into a new namespace");
59eb99ba 434 goto out_close;
0ad19a3f 435 }
436
0ad19a3f 437 close(sv[0]);
438
439 /* Wait for the child to be ready */
440 if (read(sv[1], &sync, sizeof(sync)) < 0) {
36eb9bde 441 SYSERROR("failed to read the socket");
59eb99ba 442 goto out_abort;
0ad19a3f 443 }
444
9f44c578 445 if (lxc_rename_nsgroup(name, handler))
2b31f553 446 goto out_abort;
218d4250 447
0ad19a3f 448 /* Create the network configuration */
82d5ae15 449 if (clone_flags & CLONE_NEWNET) {
5f4535a3 450 if (lxc_assign_network(&handler->conf.network, handler->pid)) {
82d5ae15
DL
451 ERROR("failed to create the configured network");
452 goto out_abort;
453 }
0ad19a3f 454 }
455
456 /* Tell the child to continue its initialization */
457 if (write(sv[1], &sync, sizeof(sync)) < 0) {
36eb9bde 458 SYSERROR("failed to write the socket");
59eb99ba 459 goto out_abort;
0ad19a3f 460 }
461
462 /* Wait for the child to exec or returning an error */
e043236e 463 if (read(sv[1], &sync, sizeof(sync)) < 0) {
36eb9bde 464 ERROR("failed to read the socket");
59eb99ba 465 goto out_abort;
0ad19a3f 466 }
467
25c2aca5 468 if (lxc_set_state(name, handler, RUNNING)) {
59eb99ba
DL
469 ERROR("failed to set state to %s",
470 lxc_state2str(RUNNING));
471 goto out_abort;
3f21c114 472 }
22ebac19 473
59eb99ba 474 err = 0;
22ebac19 475
1ac470c0
DL
476 NOTICE("'%s' started with pid '%d'", argv[0], handler->pid);
477
59eb99ba
DL
478out_close:
479 close(sv[0]);
480 close(sv[1]);
481out:
482 return err;
0ad19a3f 483
59eb99ba
DL
484out_abort:
485 lxc_abort(name, handler);
486 goto out_close;
487}
0ad19a3f 488
48862401 489int lxc_start(const char *name, char *const argv[], const char *rcfile)
59eb99ba 490{
3a0f472d 491 struct lxc_handler *handler;
e043236e 492 int err = -1;
59eb99ba
DL
493 int status;
494
48862401 495 handler = lxc_init(name, rcfile);
3a0f472d 496 if (!handler) {
59eb99ba 497 ERROR("failed to initialize the container");
66aeffc7 498 return -1;
0ad19a3f 499 }
500
3a0f472d 501 err = lxc_spawn(name, handler, argv);
59eb99ba
DL
502 if (err) {
503 ERROR("failed to spawn '%s'", argv[0]);
504 goto out;
0ad19a3f 505 }
506
af795875 507 err = lxc_close_all_inherited_fd();
d983b93c
MN
508 if (err) {
509 ERROR("unable to close inherited fds");
510 goto out_abort;
511 }
512
3a0f472d 513 err = lxc_poll(name, handler);
e043236e 514 if (err) {
59eb99ba
DL
515 ERROR("mainloop exited with an error");
516 goto out_abort;
517 }
0ad19a3f 518
3a0f472d 519 while (waitpid(handler->pid, &status, 0) < 0 && errno == EINTR)
1bc5cc8c 520 continue;
e043236e 521
3a0f472d 522 err = lxc_error_set_and_log(handler->pid, status);
0ad19a3f 523out:
3a0f472d 524 lxc_fini(name, handler);
0ad19a3f 525 return err;
526
59eb99ba 527out_abort:
3a0f472d 528 lxc_abort(name, handler);
0ad19a3f 529 goto out;
530}