jail: regroup add_path_and_deps() calls
[project/procd.git] / jail / jail.c
1 /*
2  * Copyright (C) 2015 John Crispin <blogic@openwrt.org>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License version 2.1
6  * as published by the Free Software Foundation
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  */
13
14 #define _GNU_SOURCE
15 #include <sys/mount.h>
16 #include <sys/prctl.h>
17 #include <sys/wait.h>
18
19 #include <stdlib.h>
20 #include <unistd.h>
21 #include <errno.h>
22 #include <string.h>
23 #include <sys/stat.h>
24 #include <fcntl.h>
25 #include <libgen.h>
26 #include <sched.h>
27 #include <linux/limits.h>
28
29 #include "capabilities.h"
30 #include "elf.h"
31 #include "fs.h"
32 #include "jail.h"
33 #include "log.h"
34
35 #include <libubox/uloop.h>
36
37 #define STACK_SIZE      (1024 * 1024)
38 #define OPT_ARGS        "S:C:n:h:r:w:d:psuloc"
39
40 static struct {
41         char *name;
42         char *hostname;
43         char **jail_argv;
44         char *seccomp;
45         char *capabilities;
46         int no_new_privs;
47         int namespace;
48         int procfs;
49         int ronly;
50         int sysfs;
51 } opts;
52
53 extern int pivot_root(const char *new_root, const char *put_old);
54
55 int debug = 0;
56
57 static char child_stack[STACK_SIZE];
58
59 static int mkdir_p(char *dir, mode_t mask)
60 {
61         char *l = strrchr(dir, '/');
62         int ret;
63
64         if (!l)
65                 return 0;
66
67         *l = '\0';
68
69         if (mkdir_p(dir, mask))
70                 return -1;
71
72         *l = '/';
73
74         ret = mkdir(dir, mask);
75         if (ret && errno == EEXIST)
76                 return 0;
77
78         if (ret)
79                 ERROR("mkdir failed on %s: %s\n", dir, strerror(errno));
80
81         return ret;
82 }
83
84 int mount_bind(const char *root, const char *path, int readonly, int error)
85 {
86         struct stat s;
87         char new[PATH_MAX];
88         int fd;
89
90         if (stat(path, &s)) {
91                 ERROR("stat(%s) failed: %s\n", path, strerror(errno));
92                 return error;
93         }
94
95         snprintf(new, sizeof(new), "%s%s", root, path);
96         if (S_ISDIR(s.st_mode)) {
97                 mkdir_p(new, 0755);
98         } else {
99                 mkdir_p(dirname(new), 0755);
100                 snprintf(new, sizeof(new), "%s%s", root, path);
101                 fd = creat(new, 0644);
102                 if (fd == -1) {
103                         ERROR("failed to create %s: %s\n", new, strerror(errno));
104                         return -1;
105                 }
106                 close(fd);
107         }
108
109         if (mount(path, new, NULL, MS_BIND, NULL)) {
110                 ERROR("failed to mount -B %s %s: %s\n", path, new, strerror(errno));
111                 return -1;
112         }
113
114         if (readonly && mount(NULL, new, NULL, MS_BIND | MS_REMOUNT | MS_RDONLY, NULL)) {
115                 ERROR("failed to remount ro %s: %s\n", new, strerror(errno));
116                 return -1;
117         }
118
119         DEBUG("mount -B %s %s\n", path, new);
120
121         return 0;
122 }
123
124 static int build_jail_fs(void)
125 {
126         char jail_root[] = "/tmp/ujail-XXXXXX";
127         if (mkdtemp(jail_root) == NULL) {
128                 ERROR("mkdtemp(jail_root) failed: %s\n", strerror(errno));
129                 return -1;
130         }
131
132         if (mount("tmpfs", jail_root, "tmpfs", MS_NOATIME, "mode=0755")) {
133                 ERROR("tmpfs mount failed %s\n", strerror(errno));
134                 return -1;
135         }
136
137         if (chdir(jail_root)) {
138                 ERROR("failed to chdir() in the jail root\n");
139                 return -1;
140         }
141
142         if (mount_all(jail_root)) {
143                 ERROR("mount_all() failed\n");
144                 return -1;
145         }
146
147         char dirbuf[sizeof(jail_root) + 4];
148         snprintf(dirbuf, sizeof(dirbuf), "%s/old", jail_root);
149         mkdir(dirbuf, 0755);
150
151         if (pivot_root(jail_root, dirbuf) == -1) {
152                 ERROR("pivot_root failed: %s\n", strerror(errno));
153                 return -1;
154         }
155         if (chdir("/")) {
156                 ERROR("chdir(/) failed: %s\n", strerror(errno));
157                 return -1;
158         }
159
160         snprintf(dirbuf, sizeof(dirbuf), "/old%s", jail_root);
161         rmdir(dirbuf);
162         umount2("/old", MNT_DETACH);
163         rmdir("/old");
164
165         if (opts.procfs) {
166                 mkdir("/proc", 0755);
167                 mount("proc", "/proc", "proc", MS_NOATIME | MS_NODEV | MS_NOEXEC | MS_NOSUID, 0);
168         }
169         if (opts.sysfs) {
170                 mkdir("/sys", 0755);
171                 mount("sysfs", "/sys", "sysfs", MS_NOATIME | MS_NODEV | MS_NOEXEC | MS_NOSUID, 0);
172         }
173         if (opts.ronly)
174                 mount(NULL, "/", NULL, MS_RDONLY | MS_REMOUNT, 0);
175
176         return 0;
177 }
178
179 #define MAX_ENVP        8
180 static char** build_envp(const char *seccomp)
181 {
182         static char *envp[MAX_ENVP];
183         static char preload_var[PATH_MAX];
184         static char seccomp_var[PATH_MAX];
185         static char debug_var[] = "LD_DEBUG=all";
186         const char *preload_lib = find_lib("libpreload-seccomp.so");
187         int count = 0;
188
189         if (seccomp && !preload_lib) {
190                 ERROR("failed to add preload-lib to env\n");
191                 return NULL;
192         }
193         if (seccomp) {
194                 snprintf(seccomp_var, sizeof(seccomp_var), "SECCOMP_FILE=%s", seccomp);
195                 envp[count++] = seccomp_var;
196                 snprintf(preload_var, sizeof(preload_var), "LD_PRELOAD=%s", preload_lib);
197                 envp[count++] = preload_var;
198         }
199         if (debug > 1)
200                 envp[count++] = debug_var;
201
202         return envp;
203 }
204
205 static void usage(void)
206 {
207         fprintf(stderr, "ujail <options> -- <binary> <params ...>\n");
208         fprintf(stderr, "  -d <num>\tshow debug log (increase num to increase verbosity)\n");
209         fprintf(stderr, "  -S <file>\tseccomp filter config\n");
210         fprintf(stderr, "  -C <file>\tcapabilities drop config\n");
211         fprintf(stderr, "  -c\t\tset PR_SET_NO_NEW_PRIVS\n");
212         fprintf(stderr, "  -n <name>\tthe name of the jail\n");
213         fprintf(stderr, "namespace jail options:\n");
214         fprintf(stderr, "  -h <hostname>\tchange the hostname of the jail\n");
215         fprintf(stderr, "  -r <file>\treadonly files that should be staged\n");
216         fprintf(stderr, "  -w <file>\twriteable files that should be staged\n");
217         fprintf(stderr, "  -p\t\tjail has /proc\n");
218         fprintf(stderr, "  -s\t\tjail has /sys\n");
219         fprintf(stderr, "  -l\t\tjail has /dev/log\n");
220         fprintf(stderr, "  -u\t\tjail has a ubus socket\n");
221         fprintf(stderr, "  -o\t\tremont jail root (/) read only\n");
222         fprintf(stderr, "\nWarning: by default root inside the jail is the same\n\
223 and he has the same powers as root outside the jail,\n\
224 thus he can escape the jail and/or break stuff.\n\
225 Please use seccomp/capabilities (-S/-C) to restrict his powers\n\n\
226 If you use none of the namespace jail options,\n\
227 ujail will not use namespace/build a jail,\n\
228 and will only drop capabilities/apply seccomp filter.\n\n");
229 }
230
231 static int exec_jail(void)
232 {
233         char **envp = build_envp(opts.seccomp);
234         if (!envp)
235                 exit(EXIT_FAILURE);
236
237         if (opts.capabilities && drop_capabilities(opts.capabilities))
238                 exit(EXIT_FAILURE);
239
240         if (opts.no_new_privs && prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0)) {
241                 ERROR("prctl(PR_SET_NO_NEW_PRIVS) failed: %s\n", strerror(errno));
242                 exit(EXIT_FAILURE);
243         }
244
245         INFO("exec-ing %s\n", *opts.jail_argv);
246         execve(*opts.jail_argv, opts.jail_argv, envp);
247         /* we get there only if execve fails */
248         ERROR("failed to execve %s: %s\n", *opts.jail_argv, strerror(errno));
249         exit(EXIT_FAILURE);
250 }
251
252 static int spawn_jail(void *_notused)
253 {
254         if (opts.hostname && sethostname(opts.hostname, strlen(opts.hostname))) {
255                 ERROR("sethostname(%s) failed: %s\n", opts.hostname, strerror(errno));
256         }
257
258         if (build_jail_fs()) {
259                 ERROR("failed to build jail fs");
260                 exit(EXIT_FAILURE);
261         }
262
263         return exec_jail();
264 }
265
266 static int jail_running = 1;
267 static int jail_return_code = 0;
268
269 static void jail_process_handler(struct uloop_process *c, int ret)
270 {
271         if (WIFEXITED(ret)) {
272                 jail_return_code = WEXITSTATUS(ret);
273                 INFO("jail (%d) exited with exit: %d\n", c->pid, jail_return_code);
274         } else {
275                 jail_return_code = WTERMSIG(ret);
276                 INFO("jail (%d) exited with signal: %d\n", c->pid, jail_return_code);
277         }
278         jail_running = 0;
279         uloop_end();
280 }
281
282 static struct uloop_process jail_process = {
283         .cb = jail_process_handler,
284 };
285
286 int main(int argc, char **argv)
287 {
288         uid_t uid = getuid();
289         char log[] = "/dev/log";
290         char ubus[] = "/var/run/ubus.sock";
291         int ch;
292
293         if (uid) {
294                 ERROR("not root, aborting: %s\n", strerror(errno));
295                 return EXIT_FAILURE;
296         }
297
298         umask(022);
299         mount_list_init();
300         init_library_search();
301
302         while ((ch = getopt(argc, argv, OPT_ARGS)) != -1) {
303                 switch (ch) {
304                 case 'd':
305                         debug = atoi(optarg);
306                         break;
307                 case 'p':
308                         opts.namespace = 1;
309                         opts.procfs = 1;
310                         break;
311                 case 'o':
312                         opts.namespace = 1;
313                         opts.ronly = 1;
314                         break;
315                 case 's':
316                         opts.namespace = 1;
317                         opts.sysfs = 1;
318                         break;
319                 case 'S':
320                         opts.seccomp = optarg;
321                         add_mount(optarg, 1, -1);
322                         break;
323                 case 'C':
324                         opts.capabilities = optarg;
325                         add_mount(optarg, 1, -1);
326                         break;
327                 case 'c':
328                         opts.no_new_privs = 1;
329                         break;
330                 case 'n':
331                         opts.name = optarg;
332                         break;
333                 case 'h':
334                         opts.hostname = optarg;
335                         break;
336                 case 'r':
337                         opts.namespace = 1;
338                         add_path_and_deps(optarg, 1, 0, 0);
339                         break;
340                 case 'w':
341                         opts.namespace = 1;
342                         add_path_and_deps(optarg, 0, 0, 0);
343                         break;
344                 case 'u':
345                         opts.namespace = 1;
346                         add_mount(ubus, 0, -1);
347                         break;
348                 case 'l':
349                         opts.namespace = 1;
350                         add_mount(log, 0, -1);
351                         break;
352                 }
353         }
354
355         /* no <binary> param found */
356         if (argc - optind < 1) {
357                 usage();
358                 return EXIT_FAILURE;
359         }
360         if (!(opts.namespace||opts.capabilities||opts.seccomp)) {
361                 ERROR("Not using namespaces, capabilities or seccomp !!!\n\n");
362                 usage();
363                 return EXIT_FAILURE;
364         }
365         DEBUG("Using namespaces(%d), capabilities(%d), seccomp(%d)\n",
366                 opts.namespace,
367                 opts.capabilities != 0,
368                 opts.seccomp != 0);
369
370         opts.jail_argv = &argv[optind];
371
372         if (opts.namespace && add_path_and_deps(*opts.jail_argv, 1, -1, 0)) {
373                 ERROR("failed to load dependencies\n");
374                 return -1;
375         }
376
377         if (opts.namespace && opts.seccomp && add_path_and_deps("libpreload-seccomp.so", 1, -1, 1)) {
378                 ERROR("failed to load libpreload-seccomp.so\n");
379                 return -1;
380         }
381
382         if (opts.name)
383                 prctl(PR_SET_NAME, opts.name, NULL, NULL, NULL);
384
385         uloop_init();
386         if (opts.namespace) {
387                 jail_process.pid = clone(spawn_jail,
388                         child_stack + STACK_SIZE,
389                         CLONE_NEWUTS | CLONE_NEWPID | CLONE_NEWNS | CLONE_NEWIPC | SIGCHLD, NULL);
390         } else {
391                 jail_process.pid = fork();
392         }
393
394         if (jail_process.pid > 0) {
395                 /* parent process */
396                 uloop_process_add(&jail_process);
397                 uloop_run();
398                 uloop_done();
399                 if (jail_running) {
400                         DEBUG("uloop interrupted, killing jail process\n");
401                         kill(jail_process.pid, SIGTERM);
402                         waitpid(jail_process.pid, NULL, 0);
403                 }
404                 return jail_return_code;
405         } else if (jail_process.pid == 0) {
406                 /* fork child process */
407                 return exec_jail();
408         } else {
409                 ERROR("failed to clone/fork: %s\n", strerror(errno));
410                 return EXIT_FAILURE;
411         }
412 }