chiark / gitweb /
nspawn: we don't want a network namespace
[elogind.git] / src / nspawn.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <signal.h>
23 #include <sched.h>
24 #include <unistd.h>
25 #include <sys/types.h>
26 #include <sys/syscall.h>
27 #include <sys/mount.h>
28 #include <sys/wait.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <stdio.h>
32 #include <errno.h>
33 #include <sys/prctl.h>
34 #include <sys/capability.h>
35 #include <getopt.h>
36
37 #include "log.h"
38 #include "util.h"
39 #include "missing.h"
40
41 static char *arg_directory = NULL;
42
43 static int help(void) {
44
45         printf("%s [OPTIONS...] [PATH] [ARGUMENTS...]\n\n"
46                "Spawn a minimal namespace container for debugging, testing and building.\n\n"
47                "  -h --help            Show this help\n"
48                "  -D --directory=NAME  Root directory for the container\n",
49                program_invocation_short_name);
50
51         return 0;
52 }
53
54 static int parse_argv(int argc, char *argv[]) {
55
56         static const struct option options[] = {
57                 { "help",      no_argument,       NULL, 'h' },
58                 { "directory", required_argument, NULL, 'D' },
59                 { NULL,        0,                 NULL, 0   }
60         };
61
62         int c;
63
64         assert(argc >= 0);
65         assert(argv);
66
67         while ((c = getopt_long(argc, argv, "+hD:", options, NULL)) >= 0) {
68
69                 switch (c) {
70
71                 case 'h':
72                         help();
73                         return 0;
74
75                 case 'D':
76                         free(arg_directory);
77                         if (!(arg_directory = strdup(optarg))) {
78                                 log_error("Failed to duplicate root directory.");
79                                 return -ENOMEM;
80                         }
81
82                         break;
83
84                 case '?':
85                         return -EINVAL;
86
87                 default:
88                         log_error("Unknown option code %c", c);
89                         return -EINVAL;
90                 }
91         }
92
93         return 1;
94 }
95
96 static int mount_all(const char *dest) {
97
98         typedef struct MountPoint {
99                 const char *what;
100                 const char *where;
101                 const char *type;
102                 const char *options;
103                 unsigned long flags;
104         } MountPoint;
105
106         static const MountPoint mount_table[] = {
107                 { "proc",      "/proc",     "proc",   NULL,        MS_NOSUID|MS_NOEXEC|MS_NODEV },
108                 { "/proc/sys", "/proc/sys", "bind",   NULL,        MS_BIND },                      /* Bind mount first */
109                 { "/proc/sys", "/proc/sys", "bind",   NULL,        MS_BIND|MS_RDONLY|MS_REMOUNT }, /* Then, make it r/o */
110                 { "sysfs",     "/sys",      "sysfs",  NULL,        MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_RDONLY },
111                 { "tmpfs",     "/dev",      "tmpfs",  "mode=755",  MS_NOSUID },
112                 { "/dev/pts",  "/dev/pts",  "bind",   NULL,        MS_BIND },
113                 { "tmpfs",     "/dev/.run", "tmpfs",  "mode=755",  MS_NOSUID|MS_NOEXEC|MS_NODEV },
114         };
115
116         unsigned k;
117         int r = 0;
118
119         for (k = 0; k < ELEMENTSOF(mount_table); k++) {
120                 char *where;
121                 int t;
122
123                 if (asprintf(&where, "%s/%s", dest, mount_table[k].where) < 0) {
124                         log_error("Out of memory");
125
126                         if (r == 0)
127                                 r = -ENOMEM;
128
129                         break;
130                 }
131
132                 if ((t = path_is_mount_point(where)) < 0) {
133                         log_error("Failed to detect whether %s is a mount point: %s", where, strerror(-t));
134                         free(where);
135
136                         if (r == 0)
137                                 r = t;
138
139                         continue;
140                 }
141
142                 mkdir_p(where, 0755);
143
144                 if (mount(mount_table[k].what,
145                           where,
146                           mount_table[k].type,
147                           mount_table[k].flags,
148                           mount_table[k].options) < 0) {
149
150                         log_error("mount(%s) failed: %m", where);
151
152                         if (r == 0)
153                                 r = -errno;
154                 }
155
156                 free(where);
157         }
158
159         return r;
160 }
161
162 static int copy_devnodes(const char *dest) {
163
164         static const char devnodes[] =
165                 "null\0"
166                 "zero\0"
167                 "full\0"
168                 "random\0"
169                 "urandom\0"
170                 "tty\0"
171                 "ptmx\0"
172                 "kmsg\0"
173                 "rtc0\0";
174
175         const char *d;
176         int r = 0, k;
177         char *tty = NULL;
178         dev_t tty_devnum;
179         mode_t u;
180
181         u = umask(0000);
182
183         NULSTR_FOREACH(d, devnodes) {
184                 char *from = NULL, *to = NULL;
185                 struct stat st;
186
187                 asprintf(&from, "/dev/%s", d);
188                 asprintf(&to, "%s/dev/%s", dest, d);
189
190                 if (!from || !to) {
191                         log_error("Failed to allocate devnode path");
192
193                         free(from);
194                         free(to);
195
196                         if (r == 0)
197                                 r = -ENOMEM;
198
199                         break;
200                 }
201
202                 if (stat(from, &st) < 0) {
203
204                         if (errno != ENOENT) {
205                                 log_error("Failed to stat %s: %m", from);
206
207                                 if (r == 0)
208                                         r = -errno;
209                         }
210
211                 } else {
212                         if (mknod(to, st.st_mode, st.st_rdev) < 0) {
213                                 log_error("mknod(%s) failed: %m", dest);
214
215                                 if (r == 0)
216                                         r = -errno;
217                         }
218                 }
219
220                 free(from);
221                 free(to);
222         }
223
224         if ((k = get_ctty(&tty, &tty_devnum)) < 0) {
225                 log_error("Failed to determine controlling tty: %s", strerror(-k));
226
227                 if (r == 0)
228                         r = k;
229         } else {
230                 char *from = NULL, *to = NULL;
231
232                 asprintf(&from, "/dev/%s", tty);
233                 asprintf(&to, "%s/dev/console", dest);
234
235                 if (!from || !to) {
236                         log_error("Out of memory");
237
238                         if (r == 0)
239                                 r = k;
240                 } else {
241                         /* We need to bind mount our own tty on
242                          * /dev/console, since ptys cannot be used
243                          * unless on a devpts file system. But to bind
244                          * mount it we first have to create a device
245                          * node where we can bind mount it on. This is
246                          * kinda ugly since the TTY will very likely
247                          * be owned by a user/group that does not
248                          * exist in the container. */
249
250                         if (mknod(to, S_IFCHR|0600, tty_devnum) < 0) {
251                                 log_error("mknod for /dev/console failed: %m");
252
253                                 if (r == 0)
254                                         r = -errno;
255                         }
256
257                         if (mount(from, to, "bind", MS_BIND|MS_RDONLY, NULL) < 0) {
258                                 log_error("bind mount for /dev/console failed: %m");
259
260                                 if (r == 0)
261                                         r = -errno;
262                         }
263                 }
264
265                 free(from);
266                 free(to);
267         }
268
269         free(tty);
270
271         umask(u);
272
273         return r;
274 }
275
276 static int drop_capabilities(void) {
277         static const unsigned long retain[] = {
278                 CAP_CHOWN,
279                 CAP_DAC_OVERRIDE,
280                 CAP_DAC_READ_SEARCH,
281                 CAP_FOWNER,
282                 CAP_FSETID,
283                 CAP_IPC_OWNER,
284                 CAP_KILL,
285                 CAP_LEASE,
286                 CAP_LINUX_IMMUTABLE,
287                 CAP_NET_BIND_SERVICE,
288                 CAP_NET_BROADCAST,
289                 CAP_NET_RAW,
290                 CAP_SETGID,
291                 CAP_SETFCAP,
292                 CAP_SETPCAP,
293                 CAP_SETUID,
294                 CAP_SYS_ADMIN,
295                 CAP_SYS_CHROOT,
296                 CAP_SYS_NICE,
297                 CAP_SYS_PTRACE,
298                 CAP_SYS_TTY_CONFIG
299         };
300
301         unsigned long l;
302
303         for (l = 0; l <= MAX(63LU, (unsigned long) CAP_LAST_CAP); l ++) {
304                 unsigned i;
305
306                 for (i = 0; i < ELEMENTSOF(retain); i++)
307                         if (retain[i] == l)
308                                 break;
309
310                 if (i < ELEMENTSOF(retain))
311                         continue;
312
313                 if (prctl(PR_CAPBSET_DROP, l) < 0) {
314
315                         /* If this capability is not known, EINVAL
316                          * will be returned, let's ignore this. */
317                         if (errno == EINVAL)
318                                 continue;
319
320                         log_error("PR_CAPBSET_DROP failed: %m");
321                         return -errno;
322                 }
323         }
324
325         return 0;
326 }
327
328 static int is_os_tree(const char *path) {
329         int r;
330         char *p;
331         /* We use /bin/sh as flag file if something is an OS */
332
333         if (asprintf(&p, "%s/bin/sh", path) < 0)
334                 return -ENOMEM;
335
336         r = access(p, F_OK);
337         free(p);
338
339         return r < 0 ? 0 : 1;
340 }
341
342
343 int main(int argc, char *argv[]) {
344         pid_t pid = 0;
345         int r = EXIT_FAILURE;
346
347         log_parse_environment();
348         log_open();
349
350         if ((r = parse_argv(argc, argv)) <= 0)
351                 goto finish;
352
353         if (arg_directory) {
354                 char *p;
355
356                 p = path_make_absolute_cwd(arg_directory);
357                 free(arg_directory);
358                 arg_directory = p;
359         } else
360                 arg_directory = get_current_dir_name();
361
362         if (!arg_directory) {
363                 log_error("Failed to determine path");
364                 goto finish;
365         }
366
367         path_kill_slashes(arg_directory);
368
369         if (geteuid() != 0) {
370                 log_error("Need to be root.");
371                 goto finish;
372         }
373
374         if (path_equal(arg_directory, "/")) {
375                 log_error("Spawning container on root directory not supported.");
376                 goto finish;
377         }
378
379         if (is_os_tree(arg_directory) <= 0) {
380                 log_error("Directory %s doesn't look like an OS root directory. Refusing.", arg_directory);
381                 goto finish;
382         }
383
384         log_info("Spawning namespace container on %s.", arg_directory);
385
386         if ((pid = syscall(__NR_clone, SIGCHLD|CLONE_NEWIPC|CLONE_NEWNS|CLONE_NEWPID|CLONE_NEWUTS, NULL)) < 0) {
387                 log_error("clone() failed: %m");
388                 goto finish;
389         }
390
391         if (pid == 0) {
392                 const char *hn;
393                 const char *envp[] = {
394                         "HOME=/root",
395                         "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
396                         NULL
397                 };
398
399                 /* child */
400
401                 if (mount_all(arg_directory) < 0)
402                         goto child_fail;
403
404                 if (copy_devnodes(arg_directory) < 0)
405                         goto child_fail;
406
407                 if (chdir(arg_directory) < 0) {
408                         log_error("chdir(%s) failed: %m", arg_directory);
409                         goto child_fail;
410                 }
411                 if (mount(arg_directory, "/", "bind", MS_BIND|MS_MOVE, NULL) < 0) {
412                         log_error("mount(MS_MOVE) failed: %m");
413                         goto child_fail;
414                 }
415
416                 if (chroot(".") < 0) {
417                         log_error("chroot() failed: %m");
418                         goto child_fail;
419                 }
420
421                 if (chdir("/") < 0) {
422                         log_error("chdir() failed: %m");
423                         goto child_fail;
424                 }
425
426                 if (drop_capabilities() < 0)
427                         goto child_fail;
428
429                 if ((hn = file_name_from_path(arg_directory)))
430                         sethostname(hn, strlen(hn));
431
432                 if (argc > optind)
433                         execvpe(argv[optind], argv + optind, (char**) envp);
434                 else {
435                         chdir("/root");
436                         execle("/bin/bash", "-bash", NULL, (char**) envp);
437                 }
438
439                 log_error("execv() failed: %m");
440
441         child_fail:
442                 _exit(EXIT_FAILURE);
443         }
444
445         r = wait_for_terminate_and_warn(argc > optind ? argv[optind] : "bash", pid);
446
447         if (r < 0)
448                 r = EXIT_FAILURE;
449
450 finish:
451         free(arg_directory);
452
453         if (pid > 0)
454                 kill(pid, SIGTERM);
455
456         return r;
457 }