chiark / gitweb /
nspawn: get rid of BUFFER_SIZE, use LINE_MAX instead
[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 #include <sys/epoll.h>
37 #include <termios.h>
38 #include <sys/signalfd.h>
39 #include <grp.h>
40 #include <linux/fs.h>
41
42 #include "log.h"
43 #include "util.h"
44 #include "missing.h"
45 #include "cgroup-util.h"
46 #include "sd-daemon.h"
47 #include "strv.h"
48 #include "loopback-setup.h"
49
50 static char *arg_directory = NULL;
51 static char *arg_user = NULL;
52 static bool arg_private_network = false;
53
54 static int help(void) {
55
56         printf("%s [OPTIONS...] [PATH] [ARGUMENTS...]\n\n"
57                "Spawn a minimal namespace container for debugging, testing and building.\n\n"
58                "  -h --help            Show this help\n"
59                "  -D --directory=NAME  Root directory for the container\n"
60                "  -u --user=USER       Run the command under specified user or uid\n"
61                "     --private-network Disable network in container\n",
62                program_invocation_short_name);
63
64         return 0;
65 }
66
67 static int parse_argv(int argc, char *argv[]) {
68
69         enum {
70                 ARG_PRIVATE_NETWORK = 0x100
71         };
72
73         static const struct option options[] = {
74                 { "help",            no_argument,       NULL, 'h'                 },
75                 { "directory",       required_argument, NULL, 'D'                 },
76                 { "user",            required_argument, NULL, 'u'                 },
77                 { "private-network", no_argument,       NULL, ARG_PRIVATE_NETWORK },
78                 { NULL,              0,                 NULL, 0                   }
79         };
80
81         int c;
82
83         assert(argc >= 0);
84         assert(argv);
85
86         while ((c = getopt_long(argc, argv, "+hD:u:", options, NULL)) >= 0) {
87
88                 switch (c) {
89
90                 case 'h':
91                         help();
92                         return 0;
93
94                 case 'D':
95                         free(arg_directory);
96                         if (!(arg_directory = strdup(optarg))) {
97                                 log_error("Failed to duplicate root directory.");
98                                 return -ENOMEM;
99                         }
100
101                         break;
102
103                 case 'u':
104                         free(arg_user);
105                         if (!(arg_user = strdup(optarg))) {
106                                 log_error("Failed to duplicate user name.");
107                                 return -ENOMEM;
108                         }
109
110                         break;
111
112                 case ARG_PRIVATE_NETWORK:
113                         arg_private_network = true;
114                         break;
115
116                 case '?':
117                         return -EINVAL;
118
119                 default:
120                         log_error("Unknown option code %c", c);
121                         return -EINVAL;
122                 }
123         }
124
125         return 1;
126 }
127
128 static int mount_all(const char *dest) {
129
130         typedef struct MountPoint {
131                 const char *what;
132                 const char *where;
133                 const char *type;
134                 const char *options;
135                 unsigned long flags;
136                 bool fatal;
137         } MountPoint;
138
139         static const MountPoint mount_table[] = {
140                 { "proc",      "/proc",     "proc",  NULL,       MS_NOSUID|MS_NOEXEC|MS_NODEV, true  },
141                 { "/proc/sys", "/proc/sys", "bind",  NULL,       MS_BIND, true                       },   /* Bind mount first */
142                 { "/proc/sys", "/proc/sys", "bind",  NULL,       MS_BIND|MS_RDONLY|MS_REMOUNT, true  },   /* Then, make it r/o */
143                 { "/sys",      "/sys",      "bind",  NULL,       MS_BIND,                      true  },   /* Bind mount first */
144                 { "/sys",      "/sys",      "bind",  NULL,       MS_BIND|MS_RDONLY|MS_REMOUNT, true  },   /* Then, make it r/o */
145                 { "tmpfs",     "/dev",      "tmpfs", "mode=755", MS_NOSUID,                    true  },
146                 { "/dev/pts",  "/dev/pts",  "bind",  NULL,       MS_BIND,                      true  },
147                 { "tmpfs",     "/run",      "tmpfs", "mode=755", MS_NOSUID|MS_NODEV,           true  },
148 #ifdef HAVE_SELINUX
149                 { "/sys/fs/selinux", "/sys/fs/selinux", "bind", NULL, MS_BIND,                      false },  /* Bind mount first */
150                 { "/sys/fs/selinux", "/sys/fs/selinux", "bind", NULL, MS_BIND|MS_RDONLY|MS_REMOUNT, false },  /* Then, make it r/o */
151 #endif
152         };
153
154         unsigned k;
155         int r = 0;
156         char *where;
157
158         for (k = 0; k < ELEMENTSOF(mount_table); k++) {
159                 int t;
160
161                 if (asprintf(&where, "%s/%s", dest, mount_table[k].where) < 0) {
162                         log_error("Out of memory");
163
164                         if (r == 0)
165                                 r = -ENOMEM;
166
167                         break;
168                 }
169
170                 if ((t = path_is_mount_point(where, false)) < 0) {
171                         log_error("Failed to detect whether %s is a mount point: %s", where, strerror(-t));
172                         free(where);
173
174                         if (r == 0)
175                                 r = t;
176
177                         continue;
178                 }
179
180                 mkdir_p(where, 0755);
181
182                 if (mount(mount_table[k].what,
183                           where,
184                           mount_table[k].type,
185                           mount_table[k].flags,
186                           mount_table[k].options) < 0 &&
187                     mount_table[k].fatal) {
188
189                         log_error("mount(%s) failed: %m", where);
190
191                         if (r == 0)
192                                 r = -errno;
193                 }
194
195                 free(where);
196         }
197
198         /* Fix the timezone, if possible */
199         if (asprintf(&where, "%s/%s", dest, "/etc/localtime") >= 0) {
200
201                 if (mount("/etc/localtime", where, "bind", MS_BIND, NULL) >= 0)
202                         mount("/etc/localtime", where, "bind", MS_BIND|MS_REMOUNT|MS_RDONLY, NULL);
203
204                 free(where);
205         }
206
207         return r;
208 }
209
210 static int copy_devnodes(const char *dest, const char *console) {
211
212         static const char devnodes[] =
213                 "null\0"
214                 "zero\0"
215                 "full\0"
216                 "random\0"
217                 "urandom\0"
218                 "tty\0"
219                 "ptmx\0"
220                 "kmsg\0"
221                 "rtc0\0";
222
223         const char *d;
224         int r = 0, k;
225         mode_t u;
226         struct stat st;
227         char *from = NULL, *to = NULL;
228
229         assert(dest);
230         assert(console);
231
232         u = umask(0000);
233
234         NULSTR_FOREACH(d, devnodes) {
235                 from = to = NULL;
236
237                 asprintf(&from, "/dev/%s", d);
238                 asprintf(&to, "%s/dev/%s", dest, d);
239
240                 if (!from || !to) {
241                         log_error("Failed to allocate devnode path");
242
243                         free(from);
244                         free(to);
245
246                         from = to = NULL;
247
248                         if (r == 0)
249                                 r = -ENOMEM;
250
251                         break;
252                 }
253
254                 if (stat(from, &st) < 0) {
255
256                         if (errno != ENOENT) {
257                                 log_error("Failed to stat %s: %m", from);
258                                 if (r == 0)
259                                         r = -errno;
260                         }
261
262                 } else if (!S_ISCHR(st.st_mode) && !S_ISBLK(st.st_mode)) {
263
264                         log_error("%s is not a char or block device, cannot copy.", from);
265                         if (r == 0)
266                                 r = -EIO;
267
268                 } else if (mknod(to, st.st_mode, st.st_rdev) < 0) {
269
270                         log_error("mknod(%s) failed: %m", dest);
271                         if (r == 0)
272                                 r = -errno;
273                 }
274
275                 free(from);
276                 free(to);
277         }
278
279         if (stat(console, &st) < 0) {
280
281                 log_error("Failed to stat %s: %m", console);
282                 if (r == 0)
283                         r = -errno;
284
285                 goto finish;
286
287         } else if (!S_ISCHR(st.st_mode)) {
288
289                 log_error("/dev/console is not a char device.");
290                 if (r == 0)
291                         r = -EIO;
292
293                 goto finish;
294         }
295
296         if (asprintf(&to, "%s/dev/console", dest) < 0) {
297
298                 log_error("Out of memory");
299                 if (r == 0)
300                         r = -ENOMEM;
301
302                  goto finish;
303         }
304
305         /* We need to bind mount the right tty to /dev/console since
306          * ptys can only exist on pts file systems. To have something
307          * to bind mount things on we create a device node first, that
308          * has the right major/minor (note that the major minor
309          * doesn't actually matter here, since we mount it over
310          * anyway). */
311
312         if (mknod(to, (st.st_mode & ~07777) | 0600, st.st_rdev) < 0)
313                 log_error("mknod for /dev/console failed: %m");
314
315         if (mount(console, to, "bind", MS_BIND, NULL) < 0) {
316                 log_error("bind mount for /dev/console failed: %m");
317
318                 if (r == 0)
319                         r = -errno;
320         }
321
322         free(to);
323
324         if ((k = chmod_and_chown(console, 0600, 0, 0)) < 0) {
325                 log_error("Failed to correct access mode for TTY: %s", strerror(-k));
326
327                 if (r == 0)
328                         r = k;
329         }
330
331 finish:
332         umask(u);
333
334         return r;
335 }
336
337 static int drop_capabilities(void) {
338         static const unsigned long retain[] = {
339                 CAP_CHOWN,
340                 CAP_DAC_OVERRIDE,
341                 CAP_DAC_READ_SEARCH,
342                 CAP_FOWNER,
343                 CAP_FSETID,
344                 CAP_IPC_OWNER,
345                 CAP_KILL,
346                 CAP_LEASE,
347                 CAP_LINUX_IMMUTABLE,
348                 CAP_NET_BIND_SERVICE,
349                 CAP_NET_BROADCAST,
350                 CAP_NET_RAW,
351                 CAP_SETGID,
352                 CAP_SETFCAP,
353                 CAP_SETPCAP,
354                 CAP_SETUID,
355                 CAP_SYS_ADMIN,
356                 CAP_SYS_CHROOT,
357                 CAP_SYS_NICE,
358                 CAP_SYS_PTRACE,
359                 CAP_SYS_TTY_CONFIG
360         };
361
362         unsigned long l;
363
364         for (l = 0; l <= cap_last_cap(); l++) {
365                 unsigned i;
366
367                 for (i = 0; i < ELEMENTSOF(retain); i++)
368                         if (retain[i] == l)
369                                 break;
370
371                 if (i < ELEMENTSOF(retain))
372                         continue;
373
374                 if (prctl(PR_CAPBSET_DROP, l) < 0) {
375                         log_error("PR_CAPBSET_DROP failed: %m");
376                         return -errno;
377                 }
378         }
379
380         return 0;
381 }
382
383 static int is_os_tree(const char *path) {
384         int r;
385         char *p;
386         /* We use /bin/sh as flag file if something is an OS */
387
388         if (asprintf(&p, "%s/bin/sh", path) < 0)
389                 return -ENOMEM;
390
391         r = access(p, F_OK);
392         free(p);
393
394         return r < 0 ? 0 : 1;
395 }
396
397 static int process_pty(int master, sigset_t *mask) {
398
399         char in_buffer[LINE_MAX], out_buffer[LINE_MAX];
400         size_t in_buffer_full = 0, out_buffer_full = 0;
401         struct epoll_event stdin_ev, stdout_ev, master_ev, signal_ev;
402         bool stdin_readable = false, stdout_writable = false, master_readable = false, master_writable = false;
403         int ep = -1, signal_fd = -1, r;
404
405         fd_nonblock(STDIN_FILENO, 1);
406         fd_nonblock(STDOUT_FILENO, 1);
407         fd_nonblock(master, 1);
408
409         if ((signal_fd = signalfd(-1, mask, SFD_NONBLOCK|SFD_CLOEXEC)) < 0) {
410                 log_error("signalfd(): %m");
411                 r = -errno;
412                 goto finish;
413         }
414
415         if ((ep = epoll_create1(EPOLL_CLOEXEC)) < 0) {
416                 log_error("Failed to create epoll: %m");
417                 r = -errno;
418                 goto finish;
419         }
420
421         zero(stdin_ev);
422         stdin_ev.events = EPOLLIN|EPOLLET;
423         stdin_ev.data.fd = STDIN_FILENO;
424
425         zero(stdout_ev);
426         stdout_ev.events = EPOLLOUT|EPOLLET;
427         stdout_ev.data.fd = STDOUT_FILENO;
428
429         zero(master_ev);
430         master_ev.events = EPOLLIN|EPOLLOUT|EPOLLET;
431         master_ev.data.fd = master;
432
433         zero(signal_ev);
434         signal_ev.events = EPOLLIN;
435         signal_ev.data.fd = signal_fd;
436
437         if (epoll_ctl(ep, EPOLL_CTL_ADD, STDIN_FILENO, &stdin_ev) < 0 ||
438             epoll_ctl(ep, EPOLL_CTL_ADD, STDOUT_FILENO, &stdout_ev) < 0 ||
439             epoll_ctl(ep, EPOLL_CTL_ADD, master, &master_ev) < 0 ||
440             epoll_ctl(ep, EPOLL_CTL_ADD, signal_fd, &signal_ev) < 0) {
441                 log_error("Failed to regiser fds in epoll: %m");
442                 r = -errno;
443                 goto finish;
444         }
445
446         for (;;) {
447                 struct epoll_event ev[16];
448                 ssize_t k;
449                 int i, nfds;
450
451                 if ((nfds = epoll_wait(ep, ev, ELEMENTSOF(ev), -1)) < 0) {
452
453                         if (errno == EINTR || errno == EAGAIN)
454                                 continue;
455
456                         log_error("epoll_wait(): %m");
457                         r = -errno;
458                         goto finish;
459                 }
460
461                 assert(nfds >= 1);
462
463                 for (i = 0; i < nfds; i++) {
464                         if (ev[i].data.fd == STDIN_FILENO) {
465
466                                 if (ev[i].events & (EPOLLIN|EPOLLHUP))
467                                         stdin_readable = true;
468
469                         } else if (ev[i].data.fd == STDOUT_FILENO) {
470
471                                 if (ev[i].events & (EPOLLOUT|EPOLLHUP))
472                                         stdout_writable = true;
473
474                         } else if (ev[i].data.fd == master) {
475
476                                 if (ev[i].events & (EPOLLIN|EPOLLHUP))
477                                         master_readable = true;
478
479                                 if (ev[i].events & (EPOLLOUT|EPOLLHUP))
480                                         master_writable = true;
481
482                         } else if (ev[i].data.fd == signal_fd) {
483                                 struct signalfd_siginfo sfsi;
484                                 ssize_t n;
485
486                                 if ((n = read(signal_fd, &sfsi, sizeof(sfsi))) != sizeof(sfsi)) {
487
488                                         if (n >= 0) {
489                                                 log_error("Failed to read from signalfd: invalid block size");
490                                                 r = -EIO;
491                                                 goto finish;
492                                         }
493
494                                         if (errno != EINTR && errno != EAGAIN) {
495                                                 log_error("Failed to read from signalfd: %m");
496                                                 r = -errno;
497                                                 goto finish;
498                                         }
499                                 } else {
500
501                                         if (sfsi.ssi_signo == SIGWINCH) {
502                                                 struct winsize ws;
503
504                                                 /* The window size changed, let's forward that. */
505                                                 if (ioctl(STDIN_FILENO, TIOCGWINSZ, &ws) >= 0)
506                                                         ioctl(master, TIOCSWINSZ, &ws);
507                                         } else {
508                                                 r = 0;
509                                                 goto finish;
510                                         }
511                                 }
512                         }
513                 }
514
515                 while ((stdin_readable && in_buffer_full <= 0) ||
516                        (master_writable && in_buffer_full > 0) ||
517                        (master_readable && out_buffer_full <= 0) ||
518                        (stdout_writable && out_buffer_full > 0)) {
519
520                         if (stdin_readable && in_buffer_full < LINE_MAX) {
521
522                                 if ((k = read(STDIN_FILENO, in_buffer + in_buffer_full, LINE_MAX - in_buffer_full)) < 0) {
523
524                                         if (errno == EAGAIN || errno == EPIPE || errno == ECONNRESET || errno == EIO)
525                                                 stdin_readable = false;
526                                         else {
527                                                 log_error("read(): %m");
528                                                 r = -errno;
529                                                 goto finish;
530                                         }
531                                 } else
532                                         in_buffer_full += (size_t) k;
533                         }
534
535                         if (master_writable && in_buffer_full > 0) {
536
537                                 if ((k = write(master, in_buffer, in_buffer_full)) < 0) {
538
539                                         if (errno == EAGAIN || errno == EPIPE || errno == ECONNRESET || errno == EIO)
540                                                 master_writable = false;
541                                         else {
542                                                 log_error("write(): %m");
543                                                 r = -errno;
544                                                 goto finish;
545                                         }
546
547                                 } else {
548                                         assert(in_buffer_full >= (size_t) k);
549                                         memmove(in_buffer, in_buffer + k, in_buffer_full - k);
550                                         in_buffer_full -= k;
551                                 }
552                         }
553
554                         if (master_readable && out_buffer_full < LINE_MAX) {
555
556                                 if ((k = read(master, out_buffer + out_buffer_full, LINE_MAX - out_buffer_full)) < 0) {
557
558                                         if (errno == EAGAIN || errno == EPIPE || errno == ECONNRESET || errno == EIO)
559                                                 master_readable = false;
560                                         else {
561                                                 log_error("read(): %m");
562                                                 r = -errno;
563                                                 goto finish;
564                                         }
565                                 }  else
566                                         out_buffer_full += (size_t) k;
567                         }
568
569                         if (stdout_writable && out_buffer_full > 0) {
570
571                                 if ((k = write(STDOUT_FILENO, out_buffer, out_buffer_full)) < 0) {
572
573                                         if (errno == EAGAIN || errno == EPIPE || errno == ECONNRESET || errno == EIO)
574                                                 stdout_writable = false;
575                                         else {
576                                                 log_error("write(): %m");
577                                                 r = -errno;
578                                                 goto finish;
579                                         }
580
581                                 } else {
582                                         assert(out_buffer_full >= (size_t) k);
583                                         memmove(out_buffer, out_buffer + k, out_buffer_full - k);
584                                         out_buffer_full -= k;
585                                 }
586                         }
587                 }
588         }
589
590 finish:
591         if (ep >= 0)
592                 close_nointr_nofail(ep);
593
594         if (signal_fd >= 0)
595                 close_nointr_nofail(signal_fd);
596
597         return r;
598 }
599
600 int main(int argc, char *argv[]) {
601         pid_t pid = 0;
602         int r = EXIT_FAILURE, k;
603         char *oldcg = NULL, *newcg = NULL;
604         int master = -1;
605         const char *console = NULL;
606         struct termios saved_attr, raw_attr;
607         sigset_t mask;
608         bool saved_attr_valid = false;
609         struct winsize ws;
610
611         log_parse_environment();
612         log_open();
613
614         if ((r = parse_argv(argc, argv)) <= 0)
615                 goto finish;
616
617         if (arg_directory) {
618                 char *p;
619
620                 p = path_make_absolute_cwd(arg_directory);
621                 free(arg_directory);
622                 arg_directory = p;
623         } else
624                 arg_directory = get_current_dir_name();
625
626         if (!arg_directory) {
627                 log_error("Failed to determine path");
628                 goto finish;
629         }
630
631         path_kill_slashes(arg_directory);
632
633         if (geteuid() != 0) {
634                 log_error("Need to be root.");
635                 goto finish;
636         }
637
638         if (sd_booted() <= 0) {
639                 log_error("Not running on a systemd system.");
640                 goto finish;
641         }
642
643         if (path_equal(arg_directory, "/")) {
644                 log_error("Spawning container on root directory not supported.");
645                 goto finish;
646         }
647
648         if (is_os_tree(arg_directory) <= 0) {
649                 log_error("Directory %s doesn't look like an OS root directory. Refusing.", arg_directory);
650                 goto finish;
651         }
652
653         if ((k = cg_get_by_pid(SYSTEMD_CGROUP_CONTROLLER, 0, &oldcg)) < 0) {
654                 log_error("Failed to determine current cgroup: %s", strerror(-k));
655                 goto finish;
656         }
657
658         if (asprintf(&newcg, "%s/nspawn-%lu", oldcg, (unsigned long) getpid()) < 0) {
659                 log_error("Failed to allocate cgroup path.");
660                 goto finish;
661         }
662
663         if ((k = cg_create_and_attach(SYSTEMD_CGROUP_CONTROLLER, newcg, 0)) < 0)  {
664                 log_error("Failed to create cgroup: %s", strerror(-k));
665                 goto finish;
666         }
667
668         if ((master = posix_openpt(O_RDWR|O_NOCTTY|O_CLOEXEC|O_NDELAY)) < 0) {
669                 log_error("Failed to acquire pseudo tty: %m");
670                 goto finish;
671         }
672
673         if (!(console = ptsname(master))) {
674                 log_error("Failed to determine tty name: %m");
675                 goto finish;
676         }
677
678         log_info("Spawning namespace container on %s (console is %s).", arg_directory, console);
679
680         if (ioctl(STDIN_FILENO, TIOCGWINSZ, &ws) >= 0)
681                 ioctl(master, TIOCSWINSZ, &ws);
682
683         if (unlockpt(master) < 0) {
684                 log_error("Failed to unlock tty: %m");
685                 goto finish;
686         }
687
688         if (tcgetattr(STDIN_FILENO, &saved_attr) < 0) {
689                 log_error("Failed to get terminal attributes: %m");
690                 goto finish;
691         }
692
693         saved_attr_valid = true;
694
695         raw_attr = saved_attr;
696         cfmakeraw(&raw_attr);
697         raw_attr.c_lflag &= ~ECHO;
698
699         if (tcsetattr(STDIN_FILENO, TCSANOW, &raw_attr) < 0) {
700                 log_error("Failed to set terminal attributes: %m");
701                 goto finish;
702         }
703
704         assert_se(sigemptyset(&mask) == 0);
705         sigset_add_many(&mask, SIGCHLD, SIGWINCH, SIGTERM, SIGINT, -1);
706         assert_se(sigprocmask(SIG_BLOCK, &mask, NULL) == 0);
707
708         if ((pid = syscall(__NR_clone, SIGCHLD|CLONE_NEWIPC|CLONE_NEWNS|CLONE_NEWPID|CLONE_NEWUTS|(arg_private_network ? CLONE_NEWNET : 0), NULL)) < 0) {
709                 log_error("clone() failed: %m");
710                 goto finish;
711         }
712
713         if (pid == 0) {
714                 /* child */
715
716                 const char *hn;
717                 const char *home = NULL;
718                 uid_t uid = (uid_t) -1;
719                 gid_t gid = (gid_t) -1;
720                 const char *envp[] = {
721                         "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
722                         "container=systemd-nspawn", /* LXC sets container=lxc, so follow the scheme here */
723                         NULL, /* TERM */
724                         NULL, /* HOME */
725                         NULL, /* USER */
726                         NULL, /* LOGNAME */
727                         NULL
728                 };
729
730                 envp[2] = strv_find_prefix(environ, "TERM=");
731
732                 close_nointr_nofail(master);
733
734                 close_nointr(STDIN_FILENO);
735                 close_nointr(STDOUT_FILENO);
736                 close_nointr(STDERR_FILENO);
737
738                 close_all_fds(NULL, 0);
739
740                 reset_all_signal_handlers();
741
742                 assert_se(sigemptyset(&mask) == 0);
743                 assert_se(sigprocmask(SIG_SETMASK, &mask, NULL) == 0);
744
745                 if (setsid() < 0)
746                         goto child_fail;
747
748                 if (prctl(PR_SET_PDEATHSIG, SIGKILL) < 0)
749                         goto child_fail;
750
751                 /* Mark / as private, in case somebody marked it shared */
752                 if (mount(NULL, "/", NULL, MS_PRIVATE|MS_REC, NULL) < 0)
753                         goto child_fail;
754
755                 if (mount_all(arg_directory) < 0)
756                         goto child_fail;
757
758                 if (copy_devnodes(arg_directory, console) < 0)
759                         goto child_fail;
760
761                 if (chdir(arg_directory) < 0) {
762                         log_error("chdir(%s) failed: %m", arg_directory);
763                         goto child_fail;
764                 }
765
766                 if (open_terminal("dev/console", O_RDWR) != STDIN_FILENO ||
767                     dup2(STDIN_FILENO, STDOUT_FILENO) != STDOUT_FILENO ||
768                     dup2(STDIN_FILENO, STDERR_FILENO) != STDERR_FILENO)
769                         goto child_fail;
770
771                 if (mount(arg_directory, "/", "bind", MS_BIND|MS_MOVE, NULL) < 0) {
772                         log_error("mount(MS_MOVE) failed: %m");
773                         goto child_fail;
774                 }
775
776                 if (chroot(".") < 0) {
777                         log_error("chroot() failed: %m");
778                         goto child_fail;
779                 }
780
781                 if (chdir("/") < 0) {
782                         log_error("chdir() failed: %m");
783                         goto child_fail;
784                 }
785
786                 umask(0022);
787
788                 loopback_setup();
789
790                 if (drop_capabilities() < 0)
791                         goto child_fail;
792
793                 if (arg_user) {
794
795                         if (get_user_creds((const char**)&arg_user, &uid, &gid, &home) < 0) {
796                                 log_error("get_user_creds() failed: %m");
797                                 goto child_fail;
798                         }
799
800                         if (mkdir_parents(home, 0775) < 0) {
801                                 log_error("mkdir_parents() failed: %m");
802                                 goto child_fail;
803                         }
804
805                         if (safe_mkdir(home, 0775, uid, gid) < 0) {
806                                 log_error("safe_mkdir() failed: %m");
807                                 goto child_fail;
808                         }
809
810                         if (initgroups((const char*)arg_user, gid) < 0) {
811                                 log_error("initgroups() failed: %m");
812                                 goto child_fail;
813                         }
814
815                         if (setresgid(gid, gid, gid) < 0) {
816                                 log_error("setregid() failed: %m");
817                                 goto child_fail;
818                         }
819
820                         if (setresuid(uid, uid, uid) < 0) {
821                                 log_error("setreuid() failed: %m");
822                                 goto child_fail;
823                         }
824                 }
825
826                 if ((asprintf((char**)(envp + 3), "HOME=%s", home? home: "/root") < 0) ||
827                     (asprintf((char**)(envp + 4), "USER=%s", arg_user? arg_user : "root") < 0) ||
828                     (asprintf((char**)(envp + 5), "LOGNAME=%s", arg_user? arg_user : "root") < 0)) {
829                     log_error("Out of memory");
830                     goto child_fail;
831                 }
832
833                 if ((hn = file_name_from_path(arg_directory)))
834                         sethostname(hn, strlen(hn));
835
836                 if (argc > optind)
837                         execvpe(argv[optind], argv + optind, (char**) envp);
838                 else {
839                         chdir(home ? home : "/root");
840                         execle("/bin/bash", "-bash", NULL, (char**) envp);
841                 }
842
843                 log_error("execv() failed: %m");
844
845         child_fail:
846                 _exit(EXIT_FAILURE);
847         }
848
849         if (process_pty(master, &mask) < 0)
850                 goto finish;
851
852         if (saved_attr_valid) {
853                 tcsetattr(STDIN_FILENO, TCSANOW, &saved_attr);
854                 saved_attr_valid = false;
855         }
856
857         r = wait_for_terminate_and_warn(argc > optind ? argv[optind] : "bash", pid);
858
859         if (r < 0)
860                 r = EXIT_FAILURE;
861
862 finish:
863         if (saved_attr_valid)
864                 tcsetattr(STDIN_FILENO, TCSANOW, &saved_attr);
865
866         if (master >= 0)
867                 close_nointr_nofail(master);
868
869         if (oldcg)
870                 cg_attach(SYSTEMD_CGROUP_CONTROLLER, oldcg, 0);
871
872         if (newcg)
873                 cg_kill_recursive_and_wait(SYSTEMD_CGROUP_CONTROLLER, newcg, true);
874
875         free(arg_directory);
876         free(oldcg);
877         free(newcg);
878
879         return r;
880 }