chiark / gitweb /
logind: call udev_device_get_is_initialized() to trigger lazy loading, as a temporary...
[elogind.git] / src / execute.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 <assert.h>
23 #include <dirent.h>
24 #include <errno.h>
25 #include <fcntl.h>
26 #include <unistd.h>
27 #include <string.h>
28 #include <signal.h>
29 #include <sys/socket.h>
30 #include <sys/un.h>
31 #include <sys/prctl.h>
32 #include <linux/sched.h>
33 #include <sys/types.h>
34 #include <sys/stat.h>
35 #include <grp.h>
36 #include <pwd.h>
37 #include <sys/mount.h>
38 #include <linux/fs.h>
39 #include <linux/oom.h>
40
41 #ifdef HAVE_PAM
42 #include <security/pam_appl.h>
43 #endif
44
45 #include "execute.h"
46 #include "strv.h"
47 #include "macro.h"
48 #include "util.h"
49 #include "log.h"
50 #include "ioprio.h"
51 #include "securebits.h"
52 #include "cgroup.h"
53 #include "namespace.h"
54 #include "tcpwrap.h"
55 #include "exit-status.h"
56 #include "missing.h"
57 #include "utmp-wtmp.h"
58 #include "def.h"
59
60 /* This assumes there is a 'tty' group */
61 #define TTY_MODE 0620
62
63 static int shift_fds(int fds[], unsigned n_fds) {
64         int start, restart_from;
65
66         if (n_fds <= 0)
67                 return 0;
68
69         /* Modifies the fds array! (sorts it) */
70
71         assert(fds);
72
73         start = 0;
74         for (;;) {
75                 int i;
76
77                 restart_from = -1;
78
79                 for (i = start; i < (int) n_fds; i++) {
80                         int nfd;
81
82                         /* Already at right index? */
83                         if (fds[i] == i+3)
84                                 continue;
85
86                         if ((nfd = fcntl(fds[i], F_DUPFD, i+3)) < 0)
87                                 return -errno;
88
89                         close_nointr_nofail(fds[i]);
90                         fds[i] = nfd;
91
92                         /* Hmm, the fd we wanted isn't free? Then
93                          * let's remember that and try again from here*/
94                         if (nfd != i+3 && restart_from < 0)
95                                 restart_from = i;
96                 }
97
98                 if (restart_from < 0)
99                         break;
100
101                 start = restart_from;
102         }
103
104         return 0;
105 }
106
107 static int flags_fds(const int fds[], unsigned n_fds, bool nonblock) {
108         unsigned i;
109         int r;
110
111         if (n_fds <= 0)
112                 return 0;
113
114         assert(fds);
115
116         /* Drops/Sets O_NONBLOCK and FD_CLOEXEC from the file flags */
117
118         for (i = 0; i < n_fds; i++) {
119
120                 if ((r = fd_nonblock(fds[i], nonblock)) < 0)
121                         return r;
122
123                 /* We unconditionally drop FD_CLOEXEC from the fds,
124                  * since after all we want to pass these fds to our
125                  * children */
126
127                 if ((r = fd_cloexec(fds[i], false)) < 0)
128                         return r;
129         }
130
131         return 0;
132 }
133
134 static const char *tty_path(const ExecContext *context) {
135         assert(context);
136
137         if (context->tty_path)
138                 return context->tty_path;
139
140         return "/dev/console";
141 }
142
143 void exec_context_tty_reset(const ExecContext *context) {
144         assert(context);
145
146         if (context->tty_vhangup)
147                 terminal_vhangup(tty_path(context));
148
149         if (context->tty_reset)
150                 reset_terminal(tty_path(context));
151
152         if (context->tty_vt_disallocate && context->tty_path)
153                 vt_disallocate(context->tty_path);
154 }
155
156 static int open_null_as(int flags, int nfd) {
157         int fd, r;
158
159         assert(nfd >= 0);
160
161         if ((fd = open("/dev/null", flags|O_NOCTTY)) < 0)
162                 return -errno;
163
164         if (fd != nfd) {
165                 r = dup2(fd, nfd) < 0 ? -errno : nfd;
166                 close_nointr_nofail(fd);
167         } else
168                 r = nfd;
169
170         return r;
171 }
172
173 static int connect_logger_as(const ExecContext *context, ExecOutput output, const char *ident, int nfd) {
174         int fd, r;
175         union {
176                 struct sockaddr sa;
177                 struct sockaddr_un un;
178         } sa;
179
180         assert(context);
181         assert(output < _EXEC_OUTPUT_MAX);
182         assert(ident);
183         assert(nfd >= 0);
184
185         if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0)
186                 return -errno;
187
188         zero(sa);
189         sa.sa.sa_family = AF_UNIX;
190         strncpy(sa.un.sun_path, LOGGER_SOCKET, sizeof(sa.un.sun_path));
191
192         if (connect(fd, &sa.sa, offsetof(struct sockaddr_un, sun_path) + sizeof(LOGGER_SOCKET) - 1) < 0) {
193                 close_nointr_nofail(fd);
194                 return -errno;
195         }
196
197         if (shutdown(fd, SHUT_RD) < 0) {
198                 close_nointr_nofail(fd);
199                 return -errno;
200         }
201
202         /* We speak a very simple protocol between log server
203          * and client: one line for the log destination (kmsg
204          * or syslog), followed by the priority field,
205          * followed by the process name. Since we replaced
206          * stdin/stderr we simple use stdio to write to
207          * it. Note that we use stderr, to minimize buffer
208          * flushing issues. */
209
210         dprintf(fd,
211                 "%s\n"
212                 "%i\n"
213                 "%s\n"
214                 "%i\n",
215                 output == EXEC_OUTPUT_KMSG ?             "kmsg" :
216                 output == EXEC_OUTPUT_KMSG_AND_CONSOLE ? "kmsg+console" :
217                 output == EXEC_OUTPUT_SYSLOG ?           "syslog" :
218                                                          "syslog+console",
219                 context->syslog_priority,
220                 context->syslog_identifier ? context->syslog_identifier : ident,
221                 context->syslog_level_prefix);
222
223         if (fd != nfd) {
224                 r = dup2(fd, nfd) < 0 ? -errno : nfd;
225                 close_nointr_nofail(fd);
226         } else
227                 r = nfd;
228
229         return r;
230 }
231 static int open_terminal_as(const char *path, mode_t mode, int nfd) {
232         int fd, r;
233
234         assert(path);
235         assert(nfd >= 0);
236
237         if ((fd = open_terminal(path, mode | O_NOCTTY)) < 0)
238                 return fd;
239
240         if (fd != nfd) {
241                 r = dup2(fd, nfd) < 0 ? -errno : nfd;
242                 close_nointr_nofail(fd);
243         } else
244                 r = nfd;
245
246         return r;
247 }
248
249 static bool is_terminal_input(ExecInput i) {
250         return
251                 i == EXEC_INPUT_TTY ||
252                 i == EXEC_INPUT_TTY_FORCE ||
253                 i == EXEC_INPUT_TTY_FAIL;
254 }
255
256 static int fixup_input(ExecInput std_input, int socket_fd, bool apply_tty_stdin) {
257
258         if (is_terminal_input(std_input) && !apply_tty_stdin)
259                 return EXEC_INPUT_NULL;
260
261         if (std_input == EXEC_INPUT_SOCKET && socket_fd < 0)
262                 return EXEC_INPUT_NULL;
263
264         return std_input;
265 }
266
267 static int fixup_output(ExecOutput std_output, int socket_fd) {
268
269         if (std_output == EXEC_OUTPUT_SOCKET && socket_fd < 0)
270                 return EXEC_OUTPUT_INHERIT;
271
272         return std_output;
273 }
274
275 static int setup_input(const ExecContext *context, int socket_fd, bool apply_tty_stdin) {
276         ExecInput i;
277
278         assert(context);
279
280         i = fixup_input(context->std_input, socket_fd, apply_tty_stdin);
281
282         switch (i) {
283
284         case EXEC_INPUT_NULL:
285                 return open_null_as(O_RDONLY, STDIN_FILENO);
286
287         case EXEC_INPUT_TTY:
288         case EXEC_INPUT_TTY_FORCE:
289         case EXEC_INPUT_TTY_FAIL: {
290                 int fd, r;
291
292                 if ((fd = acquire_terminal(
293                                      tty_path(context),
294                                      i == EXEC_INPUT_TTY_FAIL,
295                                      i == EXEC_INPUT_TTY_FORCE,
296                                      false)) < 0)
297                         return fd;
298
299                 if (fd != STDIN_FILENO) {
300                         r = dup2(fd, STDIN_FILENO) < 0 ? -errno : STDIN_FILENO;
301                         close_nointr_nofail(fd);
302                 } else
303                         r = STDIN_FILENO;
304
305                 return r;
306         }
307
308         case EXEC_INPUT_SOCKET:
309                 return dup2(socket_fd, STDIN_FILENO) < 0 ? -errno : STDIN_FILENO;
310
311         default:
312                 assert_not_reached("Unknown input type");
313         }
314 }
315
316 static int setup_output(const ExecContext *context, int socket_fd, const char *ident, bool apply_tty_stdin) {
317         ExecOutput o;
318         ExecInput i;
319
320         assert(context);
321         assert(ident);
322
323         i = fixup_input(context->std_input, socket_fd, apply_tty_stdin);
324         o = fixup_output(context->std_output, socket_fd);
325
326         /* This expects the input is already set up */
327
328         switch (o) {
329
330         case EXEC_OUTPUT_INHERIT:
331
332                 /* If input got downgraded, inherit the original value */
333                 if (i == EXEC_INPUT_NULL && is_terminal_input(context->std_input))
334                         return open_terminal_as(tty_path(context), O_WRONLY, STDOUT_FILENO);
335
336                 /* If the input is connected to anything that's not a /dev/null, inherit that... */
337                 if (i != EXEC_INPUT_NULL)
338                         return dup2(STDIN_FILENO, STDOUT_FILENO) < 0 ? -errno : STDOUT_FILENO;
339
340                 /* If we are not started from PID 1 we just inherit STDOUT from our parent process. */
341                 if (getppid() != 1)
342                         return STDOUT_FILENO;
343
344                 /* We need to open /dev/null here anew, to get the
345                  * right access mode. So we fall through */
346
347         case EXEC_OUTPUT_NULL:
348                 return open_null_as(O_WRONLY, STDOUT_FILENO);
349
350         case EXEC_OUTPUT_TTY:
351                 if (is_terminal_input(i))
352                         return dup2(STDIN_FILENO, STDOUT_FILENO) < 0 ? -errno : STDOUT_FILENO;
353
354                 /* We don't reset the terminal if this is just about output */
355                 return open_terminal_as(tty_path(context), O_WRONLY, STDOUT_FILENO);
356
357         case EXEC_OUTPUT_SYSLOG:
358         case EXEC_OUTPUT_SYSLOG_AND_CONSOLE:
359         case EXEC_OUTPUT_KMSG:
360         case EXEC_OUTPUT_KMSG_AND_CONSOLE:
361                 return connect_logger_as(context, o, ident, STDOUT_FILENO);
362
363         case EXEC_OUTPUT_SOCKET:
364                 assert(socket_fd >= 0);
365                 return dup2(socket_fd, STDOUT_FILENO) < 0 ? -errno : STDOUT_FILENO;
366
367         default:
368                 assert_not_reached("Unknown output type");
369         }
370 }
371
372 static int setup_error(const ExecContext *context, int socket_fd, const char *ident, bool apply_tty_stdin) {
373         ExecOutput o, e;
374         ExecInput i;
375
376         assert(context);
377         assert(ident);
378
379         i = fixup_input(context->std_input, socket_fd, apply_tty_stdin);
380         o = fixup_output(context->std_output, socket_fd);
381         e = fixup_output(context->std_error, socket_fd);
382
383         /* This expects the input and output are already set up */
384
385         /* Don't change the stderr file descriptor if we inherit all
386          * the way and are not on a tty */
387         if (e == EXEC_OUTPUT_INHERIT &&
388             o == EXEC_OUTPUT_INHERIT &&
389             i == EXEC_INPUT_NULL &&
390             !is_terminal_input(context->std_input) &&
391             getppid () != 1)
392                 return STDERR_FILENO;
393
394         /* Duplicate from stdout if possible */
395         if (e == o || e == EXEC_OUTPUT_INHERIT)
396                 return dup2(STDOUT_FILENO, STDERR_FILENO) < 0 ? -errno : STDERR_FILENO;
397
398         switch (e) {
399
400         case EXEC_OUTPUT_NULL:
401                 return open_null_as(O_WRONLY, STDERR_FILENO);
402
403         case EXEC_OUTPUT_TTY:
404                 if (is_terminal_input(i))
405                         return dup2(STDIN_FILENO, STDERR_FILENO) < 0 ? -errno : STDERR_FILENO;
406
407                 /* We don't reset the terminal if this is just about output */
408                 return open_terminal_as(tty_path(context), O_WRONLY, STDERR_FILENO);
409
410         case EXEC_OUTPUT_SYSLOG:
411         case EXEC_OUTPUT_SYSLOG_AND_CONSOLE:
412         case EXEC_OUTPUT_KMSG:
413         case EXEC_OUTPUT_KMSG_AND_CONSOLE:
414                 return connect_logger_as(context, e, ident, STDERR_FILENO);
415
416         case EXEC_OUTPUT_SOCKET:
417                 assert(socket_fd >= 0);
418                 return dup2(socket_fd, STDERR_FILENO) < 0 ? -errno : STDERR_FILENO;
419
420         default:
421                 assert_not_reached("Unknown error type");
422         }
423 }
424
425 static int chown_terminal(int fd, uid_t uid) {
426         struct stat st;
427
428         assert(fd >= 0);
429
430         /* This might fail. What matters are the results. */
431         (void) fchown(fd, uid, -1);
432         (void) fchmod(fd, TTY_MODE);
433
434         if (fstat(fd, &st) < 0)
435                 return -errno;
436
437         if (st.st_uid != uid || (st.st_mode & 0777) != TTY_MODE)
438                 return -EPERM;
439
440         return 0;
441 }
442
443 static int setup_confirm_stdio(const ExecContext *context,
444                                int *_saved_stdin,
445                                int *_saved_stdout) {
446         int fd = -1, saved_stdin, saved_stdout = -1, r;
447
448         assert(context);
449         assert(_saved_stdin);
450         assert(_saved_stdout);
451
452         /* This returns positive EXIT_xxx return values instead of
453          * negative errno style values! */
454
455         if ((saved_stdin = fcntl(STDIN_FILENO, F_DUPFD, 3)) < 0)
456                 return EXIT_STDIN;
457
458         if ((saved_stdout = fcntl(STDOUT_FILENO, F_DUPFD, 3)) < 0) {
459                 r = EXIT_STDOUT;
460                 goto fail;
461         }
462
463         if ((fd = acquire_terminal(
464                              tty_path(context),
465                              context->std_input == EXEC_INPUT_TTY_FAIL,
466                              context->std_input == EXEC_INPUT_TTY_FORCE,
467                              false)) < 0) {
468                 r = EXIT_STDIN;
469                 goto fail;
470         }
471
472         if (chown_terminal(fd, getuid()) < 0) {
473                 r = EXIT_STDIN;
474                 goto fail;
475         }
476
477         if (dup2(fd, STDIN_FILENO) < 0) {
478                 r = EXIT_STDIN;
479                 goto fail;
480         }
481
482         if (dup2(fd, STDOUT_FILENO) < 0) {
483                 r = EXIT_STDOUT;
484                 goto fail;
485         }
486
487         if (fd >= 2)
488                 close_nointr_nofail(fd);
489
490         *_saved_stdin = saved_stdin;
491         *_saved_stdout = saved_stdout;
492
493         return 0;
494
495 fail:
496         if (saved_stdout >= 0)
497                 close_nointr_nofail(saved_stdout);
498
499         if (saved_stdin >= 0)
500                 close_nointr_nofail(saved_stdin);
501
502         if (fd >= 0)
503                 close_nointr_nofail(fd);
504
505         return r;
506 }
507
508 static int restore_confirm_stdio(const ExecContext *context,
509                                  int *saved_stdin,
510                                  int *saved_stdout,
511                                  bool *keep_stdin,
512                                  bool *keep_stdout) {
513
514         assert(context);
515         assert(saved_stdin);
516         assert(*saved_stdin >= 0);
517         assert(saved_stdout);
518         assert(*saved_stdout >= 0);
519
520         /* This returns positive EXIT_xxx return values instead of
521          * negative errno style values! */
522
523         if (is_terminal_input(context->std_input)) {
524
525                 /* The service wants terminal input. */
526
527                 *keep_stdin = true;
528                 *keep_stdout =
529                         context->std_output == EXEC_OUTPUT_INHERIT ||
530                         context->std_output == EXEC_OUTPUT_TTY;
531
532         } else {
533                 /* If the service doesn't want a controlling terminal,
534                  * then we need to get rid entirely of what we have
535                  * already. */
536
537                 if (release_terminal() < 0)
538                         return EXIT_STDIN;
539
540                 if (dup2(*saved_stdin, STDIN_FILENO) < 0)
541                         return EXIT_STDIN;
542
543                 if (dup2(*saved_stdout, STDOUT_FILENO) < 0)
544                         return EXIT_STDOUT;
545
546                 *keep_stdout = *keep_stdin = false;
547         }
548
549         return 0;
550 }
551
552 static int get_group_creds(const char *groupname, gid_t *gid) {
553         struct group *g;
554         unsigned long lu;
555
556         assert(groupname);
557         assert(gid);
558
559         /* We enforce some special rules for gid=0: in order to avoid
560          * NSS lookups for root we hardcode its data. */
561
562         if (streq(groupname, "root") || streq(groupname, "0")) {
563                 *gid = 0;
564                 return 0;
565         }
566
567         if (safe_atolu(groupname, &lu) >= 0) {
568                 errno = 0;
569                 g = getgrgid((gid_t) lu);
570         } else {
571                 errno = 0;
572                 g = getgrnam(groupname);
573         }
574
575         if (!g)
576                 return errno != 0 ? -errno : -ESRCH;
577
578         *gid = g->gr_gid;
579         return 0;
580 }
581
582 static int get_user_creds(const char **username, uid_t *uid, gid_t *gid, const char **home) {
583         struct passwd *p;
584         unsigned long lu;
585
586         assert(username);
587         assert(*username);
588         assert(uid);
589         assert(gid);
590         assert(home);
591
592         /* We enforce some special rules for uid=0: in order to avoid
593          * NSS lookups for root we hardcode its data. */
594
595         if (streq(*username, "root") || streq(*username, "0")) {
596                 *username = "root";
597                 *uid = 0;
598                 *gid = 0;
599                 *home = "/root";
600                 return 0;
601         }
602
603         if (safe_atolu(*username, &lu) >= 0) {
604                 errno = 0;
605                 p = getpwuid((uid_t) lu);
606
607                 /* If there are multiple users with the same id, make
608                  * sure to leave $USER to the configured value instead
609                  * of the first occurrence in the database. However if
610                  * the uid was configured by a numeric uid, then let's
611                  * pick the real username from /etc/passwd. */
612                 if (*username && p)
613                         *username = p->pw_name;
614         } else {
615                 errno = 0;
616                 p = getpwnam(*username);
617         }
618
619         if (!p)
620                 return errno != 0 ? -errno : -ESRCH;
621
622         *uid = p->pw_uid;
623         *gid = p->pw_gid;
624         *home = p->pw_dir;
625         return 0;
626 }
627
628 static int enforce_groups(const ExecContext *context, const char *username, gid_t gid) {
629         bool keep_groups = false;
630         int r;
631
632         assert(context);
633
634         /* Lookup and set GID and supplementary group list. Here too
635          * we avoid NSS lookups for gid=0. */
636
637         if (context->group || username) {
638
639                 if (context->group)
640                         if ((r = get_group_creds(context->group, &gid)) < 0)
641                                 return r;
642
643                 /* First step, initialize groups from /etc/groups */
644                 if (username && gid != 0) {
645                         if (initgroups(username, gid) < 0)
646                                 return -errno;
647
648                         keep_groups = true;
649                 }
650
651                 /* Second step, set our gids */
652                 if (setresgid(gid, gid, gid) < 0)
653                         return -errno;
654         }
655
656         if (context->supplementary_groups) {
657                 int ngroups_max, k;
658                 gid_t *gids;
659                 char **i;
660
661                 /* Final step, initialize any manually set supplementary groups */
662                 assert_se((ngroups_max = (int) sysconf(_SC_NGROUPS_MAX)) > 0);
663
664                 if (!(gids = new(gid_t, ngroups_max)))
665                         return -ENOMEM;
666
667                 if (keep_groups) {
668                         if ((k = getgroups(ngroups_max, gids)) < 0) {
669                                 free(gids);
670                                 return -errno;
671                         }
672                 } else
673                         k = 0;
674
675                 STRV_FOREACH(i, context->supplementary_groups) {
676
677                         if (k >= ngroups_max) {
678                                 free(gids);
679                                 return -E2BIG;
680                         }
681
682                         if ((r = get_group_creds(*i, gids+k)) < 0) {
683                                 free(gids);
684                                 return r;
685                         }
686
687                         k++;
688                 }
689
690                 if (setgroups(k, gids) < 0) {
691                         free(gids);
692                         return -errno;
693                 }
694
695                 free(gids);
696         }
697
698         return 0;
699 }
700
701 static int enforce_user(const ExecContext *context, uid_t uid) {
702         int r;
703         assert(context);
704
705         /* Sets (but doesn't lookup) the uid and make sure we keep the
706          * capabilities while doing so. */
707
708         if (context->capabilities) {
709                 cap_t d;
710                 static const cap_value_t bits[] = {
711                         CAP_SETUID,   /* Necessary so that we can run setresuid() below */
712                         CAP_SETPCAP   /* Necessary so that we can set PR_SET_SECUREBITS later on */
713                 };
714
715                 /* First step: If we need to keep capabilities but
716                  * drop privileges we need to make sure we keep our
717                  * caps, whiel we drop privileges. */
718                 if (uid != 0) {
719                         int sb = context->secure_bits|SECURE_KEEP_CAPS;
720
721                         if (prctl(PR_GET_SECUREBITS) != sb)
722                                 if (prctl(PR_SET_SECUREBITS, sb) < 0)
723                                         return -errno;
724                 }
725
726                 /* Second step: set the capabilities. This will reduce
727                  * the capabilities to the minimum we need. */
728
729                 if (!(d = cap_dup(context->capabilities)))
730                         return -errno;
731
732                 if (cap_set_flag(d, CAP_EFFECTIVE, ELEMENTSOF(bits), bits, CAP_SET) < 0 ||
733                     cap_set_flag(d, CAP_PERMITTED, ELEMENTSOF(bits), bits, CAP_SET) < 0) {
734                         r = -errno;
735                         cap_free(d);
736                         return r;
737                 }
738
739                 if (cap_set_proc(d) < 0) {
740                         r = -errno;
741                         cap_free(d);
742                         return r;
743                 }
744
745                 cap_free(d);
746         }
747
748         /* Third step: actually set the uids */
749         if (setresuid(uid, uid, uid) < 0)
750                 return -errno;
751
752         /* At this point we should have all necessary capabilities but
753            are otherwise a normal user. However, the caps might got
754            corrupted due to the setresuid() so we need clean them up
755            later. This is done outside of this call. */
756
757         return 0;
758 }
759
760 #ifdef HAVE_PAM
761
762 static int null_conv(
763                 int num_msg,
764                 const struct pam_message **msg,
765                 struct pam_response **resp,
766                 void *appdata_ptr) {
767
768         /* We don't support conversations */
769
770         return PAM_CONV_ERR;
771 }
772
773 static int setup_pam(
774                 const char *name,
775                 const char *user,
776                 const char *tty,
777                 char ***pam_env,
778                 int fds[], unsigned n_fds) {
779
780         static const struct pam_conv conv = {
781                 .conv = null_conv,
782                 .appdata_ptr = NULL
783         };
784
785         pam_handle_t *handle = NULL;
786         sigset_t ss, old_ss;
787         int pam_code = PAM_SUCCESS;
788         char **e = NULL;
789         bool close_session = false;
790         pid_t pam_pid = 0, parent_pid;
791
792         assert(name);
793         assert(user);
794         assert(pam_env);
795
796         /* We set up PAM in the parent process, then fork. The child
797          * will then stay around until killed via PR_GET_PDEATHSIG or
798          * systemd via the cgroup logic. It will then remove the PAM
799          * session again. The parent process will exec() the actual
800          * daemon. We do things this way to ensure that the main PID
801          * of the daemon is the one we initially fork()ed. */
802
803         if ((pam_code = pam_start(name, user, &conv, &handle)) != PAM_SUCCESS) {
804                 handle = NULL;
805                 goto fail;
806         }
807
808         if (tty)
809                 if ((pam_code = pam_set_item(handle, PAM_TTY, tty)) != PAM_SUCCESS)
810                         goto fail;
811
812         if ((pam_code = pam_acct_mgmt(handle, PAM_SILENT)) != PAM_SUCCESS)
813                 goto fail;
814
815         if ((pam_code = pam_open_session(handle, PAM_SILENT)) != PAM_SUCCESS)
816                 goto fail;
817
818         close_session = true;
819
820         if ((pam_code = pam_setcred(handle, PAM_ESTABLISH_CRED | PAM_SILENT)) != PAM_SUCCESS)
821                 goto fail;
822
823         if ((!(e = pam_getenvlist(handle)))) {
824                 pam_code = PAM_BUF_ERR;
825                 goto fail;
826         }
827
828         /* Block SIGTERM, so that we know that it won't get lost in
829          * the child */
830         if (sigemptyset(&ss) < 0 ||
831             sigaddset(&ss, SIGTERM) < 0 ||
832             sigprocmask(SIG_BLOCK, &ss, &old_ss) < 0)
833                 goto fail;
834
835         parent_pid = getpid();
836
837         if ((pam_pid = fork()) < 0)
838                 goto fail;
839
840         if (pam_pid == 0) {
841                 int sig;
842                 int r = EXIT_PAM;
843
844                 /* The child's job is to reset the PAM session on
845                  * termination */
846
847                 /* This string must fit in 10 chars (i.e. the length
848                  * of "/sbin/init") */
849                 rename_process("sd:pam");
850
851                 /* Make sure we don't keep open the passed fds in this
852                 child. We assume that otherwise only those fds are
853                 open here that have been opened by PAM. */
854                 close_many(fds, n_fds);
855
856                 /* Wait until our parent died. This will most likely
857                  * not work since the kernel does not allow
858                  * unprivileged parents kill their privileged children
859                  * this way. We rely on the control groups kill logic
860                  * to do the rest for us. */
861                 if (prctl(PR_SET_PDEATHSIG, SIGTERM) < 0)
862                         goto child_finish;
863
864                 /* Check if our parent process might already have
865                  * died? */
866                 if (getppid() == parent_pid) {
867                         if (sigwait(&ss, &sig) < 0)
868                                 goto child_finish;
869
870                         assert(sig == SIGTERM);
871                 }
872
873                 /* Only if our parent died we'll end the session */
874                 if (getppid() != parent_pid)
875                         if ((pam_code = pam_close_session(handle, PAM_DATA_SILENT)) != PAM_SUCCESS)
876                                 goto child_finish;
877
878                 r = 0;
879
880         child_finish:
881                 pam_end(handle, pam_code | PAM_DATA_SILENT);
882                 _exit(r);
883         }
884
885         /* If the child was forked off successfully it will do all the
886          * cleanups, so forget about the handle here. */
887         handle = NULL;
888
889         /* Unblock SIGSUR1 again in the parent */
890         if (sigprocmask(SIG_SETMASK, &old_ss, NULL) < 0)
891                 goto fail;
892
893         /* We close the log explicitly here, since the PAM modules
894          * might have opened it, but we don't want this fd around. */
895         closelog();
896
897         return 0;
898
899 fail:
900         if (handle) {
901                 if (close_session)
902                         pam_code = pam_close_session(handle, PAM_DATA_SILENT);
903
904                 pam_end(handle, pam_code | PAM_DATA_SILENT);
905         }
906
907         strv_free(e);
908
909         closelog();
910
911         if (pam_pid > 1) {
912                 kill(pam_pid, SIGTERM);
913                 kill(pam_pid, SIGCONT);
914         }
915
916         return EXIT_PAM;
917 }
918 #endif
919
920 static int do_capability_bounding_set_drop(uint64_t drop) {
921         unsigned long i;
922         cap_t old_cap = NULL, new_cap = NULL;
923         cap_flag_value_t fv;
924         int r;
925
926         /* If we are run as PID 1 we will lack CAP_SETPCAP by default
927          * in the effective set (yes, the kernel drops that when
928          * executing init!), so get it back temporarily so that we can
929          * call PR_CAPBSET_DROP. */
930
931         old_cap = cap_get_proc();
932         if (!old_cap)
933                 return -errno;
934
935         if (cap_get_flag(old_cap, CAP_SETPCAP, CAP_EFFECTIVE, &fv) < 0) {
936                 r = -errno;
937                 goto finish;
938         }
939
940         if (fv != CAP_SET) {
941                 static const cap_value_t v = CAP_SETPCAP;
942
943                 new_cap = cap_dup(old_cap);
944                 if (!new_cap) {
945                         r = -errno;
946                         goto finish;
947                 }
948
949                 if (cap_set_flag(new_cap, CAP_EFFECTIVE, 1, &v, CAP_SET) < 0) {
950                         r = -errno;
951                         goto finish;
952                 }
953
954                 if (cap_set_proc(new_cap) < 0) {
955                         r = -errno;
956                         goto finish;
957                 }
958         }
959
960         for (i = 0; i <= MAX(63LU, (unsigned long) CAP_LAST_CAP); i++)
961                 if (drop & ((uint64_t) 1ULL << (uint64_t) i)) {
962                         if (prctl(PR_CAPBSET_DROP, i) < 0) {
963                                 if (errno == EINVAL)
964                                         break;
965
966                                 r = -errno;
967                                 goto finish;
968                         }
969                 }
970
971         r = 0;
972
973 finish:
974         if (new_cap)
975                 cap_free(new_cap);
976
977         if (old_cap) {
978                 cap_set_proc(old_cap);
979                 cap_free(old_cap);
980         }
981
982         return r;
983 }
984
985 int exec_spawn(ExecCommand *command,
986                char **argv,
987                const ExecContext *context,
988                int fds[], unsigned n_fds,
989                char **environment,
990                bool apply_permissions,
991                bool apply_chroot,
992                bool apply_tty_stdin,
993                bool confirm_spawn,
994                CGroupBonding *cgroup_bondings,
995                pid_t *ret) {
996
997         pid_t pid;
998         int r;
999         char *line;
1000         int socket_fd;
1001         char **files_env = NULL;
1002
1003         assert(command);
1004         assert(context);
1005         assert(ret);
1006         assert(fds || n_fds <= 0);
1007
1008         if (context->std_input == EXEC_INPUT_SOCKET ||
1009             context->std_output == EXEC_OUTPUT_SOCKET ||
1010             context->std_error == EXEC_OUTPUT_SOCKET) {
1011
1012                 if (n_fds != 1)
1013                         return -EINVAL;
1014
1015                 socket_fd = fds[0];
1016
1017                 fds = NULL;
1018                 n_fds = 0;
1019         } else
1020                 socket_fd = -1;
1021
1022         if ((r = exec_context_load_environment(context, &files_env)) < 0) {
1023                 log_error("Failed to load environment files: %s", strerror(-r));
1024                 return r;
1025         }
1026
1027         if (!argv)
1028                 argv = command->argv;
1029
1030         if (!(line = exec_command_line(argv))) {
1031                 r = -ENOMEM;
1032                 goto fail_parent;
1033         }
1034
1035         log_debug("About to execute: %s", line);
1036         free(line);
1037
1038         if (cgroup_bondings)
1039                 if ((r = cgroup_bonding_realize_list(cgroup_bondings)))
1040                         goto fail_parent;
1041
1042         if ((pid = fork()) < 0) {
1043                 r = -errno;
1044                 goto fail_parent;
1045         }
1046
1047         if (pid == 0) {
1048                 int i;
1049                 sigset_t ss;
1050                 const char *username = NULL, *home = NULL;
1051                 uid_t uid = (uid_t) -1;
1052                 gid_t gid = (gid_t) -1;
1053                 char **our_env = NULL, **pam_env = NULL, **final_env = NULL, **final_argv = NULL;
1054                 unsigned n_env = 0;
1055                 int saved_stdout = -1, saved_stdin = -1;
1056                 bool keep_stdout = false, keep_stdin = false;
1057
1058                 /* child */
1059
1060                 /* This string must fit in 10 chars (i.e. the length
1061                  * of "/sbin/init") */
1062                 rename_process("sd.exec");
1063
1064                 /* We reset exactly these signals, since they are the
1065                  * only ones we set to SIG_IGN in the main daemon. All
1066                  * others we leave untouched because we set them to
1067                  * SIG_DFL or a valid handler initially, both of which
1068                  * will be demoted to SIG_DFL. */
1069                 default_signals(SIGNALS_CRASH_HANDLER,
1070                                 SIGNALS_IGNORE, -1);
1071
1072                 if (sigemptyset(&ss) < 0 ||
1073                     sigprocmask(SIG_SETMASK, &ss, NULL) < 0) {
1074                         r = EXIT_SIGNAL_MASK;
1075                         goto fail_child;
1076                 }
1077
1078                 /* Close sockets very early to make sure we don't
1079                  * block init reexecution because it cannot bind its
1080                  * sockets */
1081                 if (close_all_fds(socket_fd >= 0 ? &socket_fd : fds,
1082                                   socket_fd >= 0 ? 1 : n_fds) < 0) {
1083                         r = EXIT_FDS;
1084                         goto fail_child;
1085                 }
1086
1087                 if (!context->same_pgrp)
1088                         if (setsid() < 0) {
1089                                 r = EXIT_SETSID;
1090                                 goto fail_child;
1091                         }
1092
1093                 if (context->tcpwrap_name) {
1094                         if (socket_fd >= 0)
1095                                 if (!socket_tcpwrap(socket_fd, context->tcpwrap_name)) {
1096                                         r = EXIT_TCPWRAP;
1097                                         goto fail_child;
1098                                 }
1099
1100                         for (i = 0; i < (int) n_fds; i++) {
1101                                 if (!socket_tcpwrap(fds[i], context->tcpwrap_name)) {
1102                                         r = EXIT_TCPWRAP;
1103                                         goto fail_child;
1104                                 }
1105                         }
1106                 }
1107
1108                 exec_context_tty_reset(context);
1109
1110                 /* We skip the confirmation step if we shall not apply the TTY */
1111                 if (confirm_spawn &&
1112                     (!is_terminal_input(context->std_input) || apply_tty_stdin)) {
1113                         char response;
1114
1115                         /* Set up terminal for the question */
1116                         if ((r = setup_confirm_stdio(context,
1117                                                      &saved_stdin, &saved_stdout)))
1118                                 goto fail_child;
1119
1120                         /* Now ask the question. */
1121                         if (!(line = exec_command_line(argv))) {
1122                                 r = EXIT_MEMORY;
1123                                 goto fail_child;
1124                         }
1125
1126                         r = ask(&response, "yns", "Execute %s? [Yes, No, Skip] ", line);
1127                         free(line);
1128
1129                         if (r < 0 || response == 'n') {
1130                                 r = EXIT_CONFIRM;
1131                                 goto fail_child;
1132                         } else if (response == 's') {
1133                                 r = 0;
1134                                 goto fail_child;
1135                         }
1136
1137                         /* Release terminal for the question */
1138                         if ((r = restore_confirm_stdio(context,
1139                                                        &saved_stdin, &saved_stdout,
1140                                                        &keep_stdin, &keep_stdout)))
1141                                 goto fail_child;
1142                 }
1143
1144                 /* If a socket is connected to STDIN/STDOUT/STDERR, we
1145                  * must sure to drop O_NONBLOCK */
1146                 if (socket_fd >= 0)
1147                         fd_nonblock(socket_fd, false);
1148
1149                 if (!keep_stdin)
1150                         if (setup_input(context, socket_fd, apply_tty_stdin) < 0) {
1151                                 r = EXIT_STDIN;
1152                                 goto fail_child;
1153                         }
1154
1155                 if (!keep_stdout)
1156                         if (setup_output(context, socket_fd, file_name_from_path(command->path), apply_tty_stdin) < 0) {
1157                                 r = EXIT_STDOUT;
1158                                 goto fail_child;
1159                         }
1160
1161                 if (setup_error(context, socket_fd, file_name_from_path(command->path), apply_tty_stdin) < 0) {
1162                         r = EXIT_STDERR;
1163                         goto fail_child;
1164                 }
1165
1166                 if (cgroup_bondings)
1167                         if (cgroup_bonding_install_list(cgroup_bondings, 0) < 0) {
1168                                 r = EXIT_CGROUP;
1169                                 goto fail_child;
1170                         }
1171
1172                 if (context->oom_score_adjust_set) {
1173                         char t[16];
1174
1175                         snprintf(t, sizeof(t), "%i", context->oom_score_adjust);
1176                         char_array_0(t);
1177
1178                         if (write_one_line_file("/proc/self/oom_score_adj", t) < 0) {
1179                                 /* Compatibility with Linux <= 2.6.35 */
1180
1181                                 int adj;
1182
1183                                 adj = (context->oom_score_adjust * -OOM_DISABLE) / OOM_SCORE_ADJ_MAX;
1184                                 adj = CLAMP(adj, OOM_DISABLE, OOM_ADJUST_MAX);
1185
1186                                 snprintf(t, sizeof(t), "%i", adj);
1187                                 char_array_0(t);
1188
1189                                 if (write_one_line_file("/proc/self/oom_adj", t) < 0
1190                                     && errno != EACCES) {
1191                                         r = EXIT_OOM_ADJUST;
1192                                         goto fail_child;
1193                                 }
1194                         }
1195                 }
1196
1197                 if (context->nice_set)
1198                         if (setpriority(PRIO_PROCESS, 0, context->nice) < 0) {
1199                                 r = EXIT_NICE;
1200                                 goto fail_child;
1201                         }
1202
1203                 if (context->cpu_sched_set) {
1204                         struct sched_param param;
1205
1206                         zero(param);
1207                         param.sched_priority = context->cpu_sched_priority;
1208
1209                         if (sched_setscheduler(0, context->cpu_sched_policy |
1210                                                (context->cpu_sched_reset_on_fork ? SCHED_RESET_ON_FORK : 0), &param) < 0) {
1211                                 r = EXIT_SETSCHEDULER;
1212                                 goto fail_child;
1213                         }
1214                 }
1215
1216                 if (context->cpuset)
1217                         if (sched_setaffinity(0, CPU_ALLOC_SIZE(context->cpuset_ncpus), context->cpuset) < 0) {
1218                                 r = EXIT_CPUAFFINITY;
1219                                 goto fail_child;
1220                         }
1221
1222                 if (context->ioprio_set)
1223                         if (ioprio_set(IOPRIO_WHO_PROCESS, 0, context->ioprio) < 0) {
1224                                 r = EXIT_IOPRIO;
1225                                 goto fail_child;
1226                         }
1227
1228                 if (context->timer_slack_nsec_set)
1229                         if (prctl(PR_SET_TIMERSLACK, context->timer_slack_nsec) < 0) {
1230                                 r = EXIT_TIMERSLACK;
1231                                 goto fail_child;
1232                         }
1233
1234                 if (context->utmp_id)
1235                         utmp_put_init_process(0, context->utmp_id, getpid(), getsid(0), context->tty_path);
1236
1237                 if (context->user) {
1238                         username = context->user;
1239                         if (get_user_creds(&username, &uid, &gid, &home) < 0) {
1240                                 r = EXIT_USER;
1241                                 goto fail_child;
1242                         }
1243
1244                         if (is_terminal_input(context->std_input))
1245                                 if (chown_terminal(STDIN_FILENO, uid) < 0) {
1246                                         r = EXIT_STDIN;
1247                                         goto fail_child;
1248                                 }
1249                 }
1250
1251 #ifdef HAVE_PAM
1252                 if (context->pam_name && username) {
1253                         if (setup_pam(context->pam_name, username, context->tty_path, &pam_env, fds, n_fds) < 0) {
1254                                 r = EXIT_PAM;
1255                                 goto fail_child;
1256                         }
1257                 }
1258 #endif
1259
1260                 if (apply_permissions)
1261                         if (enforce_groups(context, username, uid) < 0) {
1262                                 r = EXIT_GROUP;
1263                                 goto fail_child;
1264                         }
1265
1266                 umask(context->umask);
1267
1268                 if (strv_length(context->read_write_dirs) > 0 ||
1269                     strv_length(context->read_only_dirs) > 0 ||
1270                     strv_length(context->inaccessible_dirs) > 0 ||
1271                     context->mount_flags != MS_SHARED ||
1272                     context->private_tmp)
1273                         if ((r = setup_namespace(
1274                                              context->read_write_dirs,
1275                                              context->read_only_dirs,
1276                                              context->inaccessible_dirs,
1277                                              context->private_tmp,
1278                                              context->mount_flags)) < 0)
1279                                 goto fail_child;
1280
1281                 if (apply_chroot) {
1282                         if (context->root_directory)
1283                                 if (chroot(context->root_directory) < 0) {
1284                                         r = EXIT_CHROOT;
1285                                         goto fail_child;
1286                                 }
1287
1288                         if (chdir(context->working_directory ? context->working_directory : "/") < 0) {
1289                                 r = EXIT_CHDIR;
1290                                 goto fail_child;
1291                         }
1292                 } else {
1293
1294                         char *d;
1295
1296                         if (asprintf(&d, "%s/%s",
1297                                      context->root_directory ? context->root_directory : "",
1298                                      context->working_directory ? context->working_directory : "") < 0) {
1299                                 r = EXIT_MEMORY;
1300                                 goto fail_child;
1301                         }
1302
1303                         if (chdir(d) < 0) {
1304                                 free(d);
1305                                 r = EXIT_CHDIR;
1306                                 goto fail_child;
1307                         }
1308
1309                         free(d);
1310                 }
1311
1312                 /* We repeat the fd closing here, to make sure that
1313                  * nothing is leaked from the PAM modules */
1314                 if (close_all_fds(fds, n_fds) < 0 ||
1315                     shift_fds(fds, n_fds) < 0 ||
1316                     flags_fds(fds, n_fds, context->non_blocking) < 0) {
1317                         r = EXIT_FDS;
1318                         goto fail_child;
1319                 }
1320
1321                 if (apply_permissions) {
1322
1323                         for (i = 0; i < RLIMIT_NLIMITS; i++) {
1324                                 if (!context->rlimit[i])
1325                                         continue;
1326
1327                                 if (setrlimit(i, context->rlimit[i]) < 0) {
1328                                         r = EXIT_LIMITS;
1329                                         goto fail_child;
1330                                 }
1331                         }
1332
1333                         if (context->capability_bounding_set_drop)
1334                                 if (do_capability_bounding_set_drop(context->capability_bounding_set_drop) < 0) {
1335                                         r = EXIT_CAPABILITIES;
1336                                         goto fail_child;
1337                                 }
1338
1339                         if (context->user)
1340                                 if (enforce_user(context, uid) < 0) {
1341                                         r = EXIT_USER;
1342                                         goto fail_child;
1343                                 }
1344
1345                         /* PR_GET_SECUREBITS is not privileged, while
1346                          * PR_SET_SECUREBITS is. So to suppress
1347                          * potential EPERMs we'll try not to call
1348                          * PR_SET_SECUREBITS unless necessary. */
1349                         if (prctl(PR_GET_SECUREBITS) != context->secure_bits)
1350                                 if (prctl(PR_SET_SECUREBITS, context->secure_bits) < 0) {
1351                                         r = EXIT_SECUREBITS;
1352                                         goto fail_child;
1353                                 }
1354
1355                         if (context->capabilities)
1356                                 if (cap_set_proc(context->capabilities) < 0) {
1357                                         r = EXIT_CAPABILITIES;
1358                                         goto fail_child;
1359                                 }
1360                 }
1361
1362                 if (!(our_env = new0(char*, 7))) {
1363                         r = EXIT_MEMORY;
1364                         goto fail_child;
1365                 }
1366
1367                 if (n_fds > 0)
1368                         if (asprintf(our_env + n_env++, "LISTEN_PID=%lu", (unsigned long) getpid()) < 0 ||
1369                             asprintf(our_env + n_env++, "LISTEN_FDS=%u", n_fds) < 0) {
1370                                 r = EXIT_MEMORY;
1371                                 goto fail_child;
1372                         }
1373
1374                 if (home)
1375                         if (asprintf(our_env + n_env++, "HOME=%s", home) < 0) {
1376                                 r = EXIT_MEMORY;
1377                                 goto fail_child;
1378                         }
1379
1380                 if (username)
1381                         if (asprintf(our_env + n_env++, "LOGNAME=%s", username) < 0 ||
1382                             asprintf(our_env + n_env++, "USER=%s", username) < 0) {
1383                                 r = EXIT_MEMORY;
1384                                 goto fail_child;
1385                         }
1386
1387                 if (is_terminal_input(context->std_input) ||
1388                     context->std_output == EXEC_OUTPUT_TTY ||
1389                     context->std_error == EXEC_OUTPUT_TTY)
1390                         if (!(our_env[n_env++] = strdup(default_term_for_tty(tty_path(context))))) {
1391                                 r = EXIT_MEMORY;
1392                                 goto fail_child;
1393                         }
1394
1395                 assert(n_env <= 7);
1396
1397                 if (!(final_env = strv_env_merge(
1398                                       5,
1399                                       environment,
1400                                       our_env,
1401                                       context->environment,
1402                                       files_env,
1403                                       pam_env,
1404                                       NULL))) {
1405                         r = EXIT_MEMORY;
1406                         goto fail_child;
1407                 }
1408
1409                 if (!(final_argv = replace_env_argv(argv, final_env))) {
1410                         r = EXIT_MEMORY;
1411                         goto fail_child;
1412                 }
1413
1414                 final_env = strv_env_clean(final_env);
1415
1416                 execve(command->path, final_argv, final_env);
1417                 r = EXIT_EXEC;
1418
1419         fail_child:
1420                 strv_free(our_env);
1421                 strv_free(final_env);
1422                 strv_free(pam_env);
1423                 strv_free(files_env);
1424                 strv_free(final_argv);
1425
1426                 if (saved_stdin >= 0)
1427                         close_nointr_nofail(saved_stdin);
1428
1429                 if (saved_stdout >= 0)
1430                         close_nointr_nofail(saved_stdout);
1431
1432                 _exit(r);
1433         }
1434
1435         strv_free(files_env);
1436
1437         /* We add the new process to the cgroup both in the child (so
1438          * that we can be sure that no user code is ever executed
1439          * outside of the cgroup) and in the parent (so that we can be
1440          * sure that when we kill the cgroup the process will be
1441          * killed too). */
1442         if (cgroup_bondings)
1443                 cgroup_bonding_install_list(cgroup_bondings, pid);
1444
1445         log_debug("Forked %s as %lu", command->path, (unsigned long) pid);
1446
1447         exec_status_start(&command->exec_status, pid);
1448
1449         *ret = pid;
1450         return 0;
1451
1452 fail_parent:
1453         strv_free(files_env);
1454
1455         return r;
1456 }
1457
1458 void exec_context_init(ExecContext *c) {
1459         assert(c);
1460
1461         c->umask = 0002;
1462         c->ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 0);
1463         c->cpu_sched_policy = SCHED_OTHER;
1464         c->syslog_priority = LOG_DAEMON|LOG_INFO;
1465         c->syslog_level_prefix = true;
1466         c->mount_flags = MS_SHARED;
1467         c->kill_signal = SIGTERM;
1468         c->send_sigkill = true;
1469 }
1470
1471 void exec_context_done(ExecContext *c) {
1472         unsigned l;
1473
1474         assert(c);
1475
1476         strv_free(c->environment);
1477         c->environment = NULL;
1478
1479         strv_free(c->environment_files);
1480         c->environment_files = NULL;
1481
1482         for (l = 0; l < ELEMENTSOF(c->rlimit); l++) {
1483                 free(c->rlimit[l]);
1484                 c->rlimit[l] = NULL;
1485         }
1486
1487         free(c->working_directory);
1488         c->working_directory = NULL;
1489         free(c->root_directory);
1490         c->root_directory = NULL;
1491
1492         free(c->tty_path);
1493         c->tty_path = NULL;
1494
1495         free(c->tcpwrap_name);
1496         c->tcpwrap_name = NULL;
1497
1498         free(c->syslog_identifier);
1499         c->syslog_identifier = NULL;
1500
1501         free(c->user);
1502         c->user = NULL;
1503
1504         free(c->group);
1505         c->group = NULL;
1506
1507         strv_free(c->supplementary_groups);
1508         c->supplementary_groups = NULL;
1509
1510         free(c->pam_name);
1511         c->pam_name = NULL;
1512
1513         if (c->capabilities) {
1514                 cap_free(c->capabilities);
1515                 c->capabilities = NULL;
1516         }
1517
1518         strv_free(c->read_only_dirs);
1519         c->read_only_dirs = NULL;
1520
1521         strv_free(c->read_write_dirs);
1522         c->read_write_dirs = NULL;
1523
1524         strv_free(c->inaccessible_dirs);
1525         c->inaccessible_dirs = NULL;
1526
1527         if (c->cpuset)
1528                 CPU_FREE(c->cpuset);
1529
1530         free(c->utmp_id);
1531         c->utmp_id = NULL;
1532 }
1533
1534 void exec_command_done(ExecCommand *c) {
1535         assert(c);
1536
1537         free(c->path);
1538         c->path = NULL;
1539
1540         strv_free(c->argv);
1541         c->argv = NULL;
1542 }
1543
1544 void exec_command_done_array(ExecCommand *c, unsigned n) {
1545         unsigned i;
1546
1547         for (i = 0; i < n; i++)
1548                 exec_command_done(c+i);
1549 }
1550
1551 void exec_command_free_list(ExecCommand *c) {
1552         ExecCommand *i;
1553
1554         while ((i = c)) {
1555                 LIST_REMOVE(ExecCommand, command, c, i);
1556                 exec_command_done(i);
1557                 free(i);
1558         }
1559 }
1560
1561 void exec_command_free_array(ExecCommand **c, unsigned n) {
1562         unsigned i;
1563
1564         for (i = 0; i < n; i++) {
1565                 exec_command_free_list(c[i]);
1566                 c[i] = NULL;
1567         }
1568 }
1569
1570 int exec_context_load_environment(const ExecContext *c, char ***l) {
1571         char **i, **r = NULL;
1572
1573         assert(c);
1574         assert(l);
1575
1576         STRV_FOREACH(i, c->environment_files) {
1577                 char *fn;
1578                 int k;
1579                 bool ignore = false;
1580                 char **p;
1581
1582                 fn = *i;
1583
1584                 if (fn[0] == '-') {
1585                         ignore = true;
1586                         fn ++;
1587                 }
1588
1589                 if (!path_is_absolute(fn)) {
1590
1591                         if (ignore)
1592                                 continue;
1593
1594                         strv_free(r);
1595                         return -EINVAL;
1596                 }
1597
1598                 if ((k = load_env_file(fn, &p)) < 0) {
1599
1600                         if (ignore)
1601                                 continue;
1602
1603                         strv_free(r);
1604                         return k;
1605                 }
1606
1607                 if (r == NULL)
1608                         r = p;
1609                 else {
1610                         char **m;
1611
1612                         m = strv_env_merge(2, r, p);
1613                         strv_free(r);
1614                         strv_free(p);
1615
1616                         if (!m)
1617                                 return -ENOMEM;
1618
1619                         r = m;
1620                 }
1621         }
1622
1623         *l = r;
1624
1625         return 0;
1626 }
1627
1628 static void strv_fprintf(FILE *f, char **l) {
1629         char **g;
1630
1631         assert(f);
1632
1633         STRV_FOREACH(g, l)
1634                 fprintf(f, " %s", *g);
1635 }
1636
1637 void exec_context_dump(ExecContext *c, FILE* f, const char *prefix) {
1638         char ** e;
1639         unsigned i;
1640
1641         assert(c);
1642         assert(f);
1643
1644         if (!prefix)
1645                 prefix = "";
1646
1647         fprintf(f,
1648                 "%sUMask: %04o\n"
1649                 "%sWorkingDirectory: %s\n"
1650                 "%sRootDirectory: %s\n"
1651                 "%sNonBlocking: %s\n"
1652                 "%sPrivateTmp: %s\n",
1653                 prefix, c->umask,
1654                 prefix, c->working_directory ? c->working_directory : "/",
1655                 prefix, c->root_directory ? c->root_directory : "/",
1656                 prefix, yes_no(c->non_blocking),
1657                 prefix, yes_no(c->private_tmp));
1658
1659         STRV_FOREACH(e, c->environment)
1660                 fprintf(f, "%sEnvironment: %s\n", prefix, *e);
1661
1662         STRV_FOREACH(e, c->environment_files)
1663                 fprintf(f, "%sEnvironmentFile: %s\n", prefix, *e);
1664
1665         if (c->tcpwrap_name)
1666                 fprintf(f,
1667                         "%sTCPWrapName: %s\n",
1668                         prefix, c->tcpwrap_name);
1669
1670         if (c->nice_set)
1671                 fprintf(f,
1672                         "%sNice: %i\n",
1673                         prefix, c->nice);
1674
1675         if (c->oom_score_adjust_set)
1676                 fprintf(f,
1677                         "%sOOMScoreAdjust: %i\n",
1678                         prefix, c->oom_score_adjust);
1679
1680         for (i = 0; i < RLIM_NLIMITS; i++)
1681                 if (c->rlimit[i])
1682                         fprintf(f, "%s%s: %llu\n", prefix, rlimit_to_string(i), (unsigned long long) c->rlimit[i]->rlim_max);
1683
1684         if (c->ioprio_set)
1685                 fprintf(f,
1686                         "%sIOSchedulingClass: %s\n"
1687                         "%sIOPriority: %i\n",
1688                         prefix, ioprio_class_to_string(IOPRIO_PRIO_CLASS(c->ioprio)),
1689                         prefix, (int) IOPRIO_PRIO_DATA(c->ioprio));
1690
1691         if (c->cpu_sched_set)
1692                 fprintf(f,
1693                         "%sCPUSchedulingPolicy: %s\n"
1694                         "%sCPUSchedulingPriority: %i\n"
1695                         "%sCPUSchedulingResetOnFork: %s\n",
1696                         prefix, sched_policy_to_string(c->cpu_sched_policy),
1697                         prefix, c->cpu_sched_priority,
1698                         prefix, yes_no(c->cpu_sched_reset_on_fork));
1699
1700         if (c->cpuset) {
1701                 fprintf(f, "%sCPUAffinity:", prefix);
1702                 for (i = 0; i < c->cpuset_ncpus; i++)
1703                         if (CPU_ISSET_S(i, CPU_ALLOC_SIZE(c->cpuset_ncpus), c->cpuset))
1704                                 fprintf(f, " %i", i);
1705                 fputs("\n", f);
1706         }
1707
1708         if (c->timer_slack_nsec_set)
1709                 fprintf(f, "%sTimerSlackNSec: %lu\n", prefix, c->timer_slack_nsec);
1710
1711         fprintf(f,
1712                 "%sStandardInput: %s\n"
1713                 "%sStandardOutput: %s\n"
1714                 "%sStandardError: %s\n",
1715                 prefix, exec_input_to_string(c->std_input),
1716                 prefix, exec_output_to_string(c->std_output),
1717                 prefix, exec_output_to_string(c->std_error));
1718
1719         if (c->tty_path)
1720                 fprintf(f,
1721                         "%sTTYPath: %s\n"
1722                         "%sTTYReset: %s\n"
1723                         "%sTTYVHangup: %s\n"
1724                         "%sTTYVTDisallocate: %s\n",
1725                         prefix, c->tty_path,
1726                         prefix, yes_no(c->tty_reset),
1727                         prefix, yes_no(c->tty_vhangup),
1728                         prefix, yes_no(c->tty_vt_disallocate));
1729
1730         if (c->std_output == EXEC_OUTPUT_SYSLOG || c->std_output == EXEC_OUTPUT_KMSG ||
1731             c->std_output == EXEC_OUTPUT_SYSLOG_AND_CONSOLE || c->std_output == EXEC_OUTPUT_KMSG_AND_CONSOLE ||
1732             c->std_error == EXEC_OUTPUT_SYSLOG || c->std_error == EXEC_OUTPUT_KMSG ||
1733             c->std_error == EXEC_OUTPUT_SYSLOG_AND_CONSOLE || c->std_error == EXEC_OUTPUT_KMSG_AND_CONSOLE)
1734                 fprintf(f,
1735                         "%sSyslogFacility: %s\n"
1736                         "%sSyslogLevel: %s\n",
1737                         prefix, log_facility_unshifted_to_string(c->syslog_priority >> 3),
1738                         prefix, log_level_to_string(LOG_PRI(c->syslog_priority)));
1739
1740         if (c->capabilities) {
1741                 char *t;
1742                 if ((t = cap_to_text(c->capabilities, NULL))) {
1743                         fprintf(f, "%sCapabilities: %s\n",
1744                                 prefix, t);
1745                         cap_free(t);
1746                 }
1747         }
1748
1749         if (c->secure_bits)
1750                 fprintf(f, "%sSecure Bits:%s%s%s%s%s%s\n",
1751                         prefix,
1752                         (c->secure_bits & SECURE_KEEP_CAPS) ? " keep-caps" : "",
1753                         (c->secure_bits & SECURE_KEEP_CAPS_LOCKED) ? " keep-caps-locked" : "",
1754                         (c->secure_bits & SECURE_NO_SETUID_FIXUP) ? " no-setuid-fixup" : "",
1755                         (c->secure_bits & SECURE_NO_SETUID_FIXUP_LOCKED) ? " no-setuid-fixup-locked" : "",
1756                         (c->secure_bits & SECURE_NOROOT) ? " noroot" : "",
1757                         (c->secure_bits & SECURE_NOROOT_LOCKED) ? "noroot-locked" : "");
1758
1759         if (c->capability_bounding_set_drop) {
1760                 unsigned long l;
1761                 fprintf(f, "%sCapabilityBoundingSet:", prefix);
1762
1763                 for (l = 0; l <= (unsigned long) CAP_LAST_CAP; l++)
1764                         if (!(c->capability_bounding_set_drop & ((uint64_t) 1ULL << (uint64_t) l))) {
1765                                 char *t;
1766
1767                                 if ((t = cap_to_name(l))) {
1768                                         fprintf(f, " %s", t);
1769                                         cap_free(t);
1770                                 }
1771                         }
1772
1773                 fputs("\n", f);
1774         }
1775
1776         if (c->user)
1777                 fprintf(f, "%sUser: %s\n", prefix, c->user);
1778         if (c->group)
1779                 fprintf(f, "%sGroup: %s\n", prefix, c->group);
1780
1781         if (strv_length(c->supplementary_groups) > 0) {
1782                 fprintf(f, "%sSupplementaryGroups:", prefix);
1783                 strv_fprintf(f, c->supplementary_groups);
1784                 fputs("\n", f);
1785         }
1786
1787         if (c->pam_name)
1788                 fprintf(f, "%sPAMName: %s\n", prefix, c->pam_name);
1789
1790         if (strv_length(c->read_write_dirs) > 0) {
1791                 fprintf(f, "%sReadWriteDirs:", prefix);
1792                 strv_fprintf(f, c->read_write_dirs);
1793                 fputs("\n", f);
1794         }
1795
1796         if (strv_length(c->read_only_dirs) > 0) {
1797                 fprintf(f, "%sReadOnlyDirs:", prefix);
1798                 strv_fprintf(f, c->read_only_dirs);
1799                 fputs("\n", f);
1800         }
1801
1802         if (strv_length(c->inaccessible_dirs) > 0) {
1803                 fprintf(f, "%sInaccessibleDirs:", prefix);
1804                 strv_fprintf(f, c->inaccessible_dirs);
1805                 fputs("\n", f);
1806         }
1807
1808         fprintf(f,
1809                 "%sKillMode: %s\n"
1810                 "%sKillSignal: SIG%s\n"
1811                 "%sSendSIGKILL: %s\n",
1812                 prefix, kill_mode_to_string(c->kill_mode),
1813                 prefix, signal_to_string(c->kill_signal),
1814                 prefix, yes_no(c->send_sigkill));
1815
1816         if (c->utmp_id)
1817                 fprintf(f,
1818                         "%sUtmpIdentifier: %s\n",
1819                         prefix, c->utmp_id);
1820 }
1821
1822 void exec_status_start(ExecStatus *s, pid_t pid) {
1823         assert(s);
1824
1825         zero(*s);
1826         s->pid = pid;
1827         dual_timestamp_get(&s->start_timestamp);
1828 }
1829
1830 void exec_status_exit(ExecStatus *s, ExecContext *context, pid_t pid, int code, int status) {
1831         assert(s);
1832
1833         if ((s->pid && s->pid != pid) ||
1834             !s->start_timestamp.realtime <= 0)
1835                 zero(*s);
1836
1837         s->pid = pid;
1838         dual_timestamp_get(&s->exit_timestamp);
1839
1840         s->code = code;
1841         s->status = status;
1842
1843         if (context) {
1844                 if (context->utmp_id)
1845                         utmp_put_dead_process(context->utmp_id, pid, code, status);
1846
1847                 exec_context_tty_reset(context);
1848         }
1849 }
1850
1851 void exec_status_dump(ExecStatus *s, FILE *f, const char *prefix) {
1852         char buf[FORMAT_TIMESTAMP_MAX];
1853
1854         assert(s);
1855         assert(f);
1856
1857         if (!prefix)
1858                 prefix = "";
1859
1860         if (s->pid <= 0)
1861                 return;
1862
1863         fprintf(f,
1864                 "%sPID: %lu\n",
1865                 prefix, (unsigned long) s->pid);
1866
1867         if (s->start_timestamp.realtime > 0)
1868                 fprintf(f,
1869                         "%sStart Timestamp: %s\n",
1870                         prefix, format_timestamp(buf, sizeof(buf), s->start_timestamp.realtime));
1871
1872         if (s->exit_timestamp.realtime > 0)
1873                 fprintf(f,
1874                         "%sExit Timestamp: %s\n"
1875                         "%sExit Code: %s\n"
1876                         "%sExit Status: %i\n",
1877                         prefix, format_timestamp(buf, sizeof(buf), s->exit_timestamp.realtime),
1878                         prefix, sigchld_code_to_string(s->code),
1879                         prefix, s->status);
1880 }
1881
1882 char *exec_command_line(char **argv) {
1883         size_t k;
1884         char *n, *p, **a;
1885         bool first = true;
1886
1887         assert(argv);
1888
1889         k = 1;
1890         STRV_FOREACH(a, argv)
1891                 k += strlen(*a)+3;
1892
1893         if (!(n = new(char, k)))
1894                 return NULL;
1895
1896         p = n;
1897         STRV_FOREACH(a, argv) {
1898
1899                 if (!first)
1900                         *(p++) = ' ';
1901                 else
1902                         first = false;
1903
1904                 if (strpbrk(*a, WHITESPACE)) {
1905                         *(p++) = '\'';
1906                         p = stpcpy(p, *a);
1907                         *(p++) = '\'';
1908                 } else
1909                         p = stpcpy(p, *a);
1910
1911         }
1912
1913         *p = 0;
1914
1915         /* FIXME: this doesn't really handle arguments that have
1916          * spaces and ticks in them */
1917
1918         return n;
1919 }
1920
1921 void exec_command_dump(ExecCommand *c, FILE *f, const char *prefix) {
1922         char *p2;
1923         const char *prefix2;
1924
1925         char *cmd;
1926
1927         assert(c);
1928         assert(f);
1929
1930         if (!prefix)
1931                 prefix = "";
1932         p2 = strappend(prefix, "\t");
1933         prefix2 = p2 ? p2 : prefix;
1934
1935         cmd = exec_command_line(c->argv);
1936
1937         fprintf(f,
1938                 "%sCommand Line: %s\n",
1939                 prefix, cmd ? cmd : strerror(ENOMEM));
1940
1941         free(cmd);
1942
1943         exec_status_dump(&c->exec_status, f, prefix2);
1944
1945         free(p2);
1946 }
1947
1948 void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix) {
1949         assert(f);
1950
1951         if (!prefix)
1952                 prefix = "";
1953
1954         LIST_FOREACH(command, c, c)
1955                 exec_command_dump(c, f, prefix);
1956 }
1957
1958 void exec_command_append_list(ExecCommand **l, ExecCommand *e) {
1959         ExecCommand *end;
1960
1961         assert(l);
1962         assert(e);
1963
1964         if (*l) {
1965                 /* It's kind of important, that we keep the order here */
1966                 LIST_FIND_TAIL(ExecCommand, command, *l, end);
1967                 LIST_INSERT_AFTER(ExecCommand, command, *l, end, e);
1968         } else
1969               *l = e;
1970 }
1971
1972 int exec_command_set(ExecCommand *c, const char *path, ...) {
1973         va_list ap;
1974         char **l, *p;
1975
1976         assert(c);
1977         assert(path);
1978
1979         va_start(ap, path);
1980         l = strv_new_ap(path, ap);
1981         va_end(ap);
1982
1983         if (!l)
1984                 return -ENOMEM;
1985
1986         if (!(p = strdup(path))) {
1987                 strv_free(l);
1988                 return -ENOMEM;
1989         }
1990
1991         free(c->path);
1992         c->path = p;
1993
1994         strv_free(c->argv);
1995         c->argv = l;
1996
1997         return 0;
1998 }
1999
2000 static const char* const exec_input_table[_EXEC_INPUT_MAX] = {
2001         [EXEC_INPUT_NULL] = "null",
2002         [EXEC_INPUT_TTY] = "tty",
2003         [EXEC_INPUT_TTY_FORCE] = "tty-force",
2004         [EXEC_INPUT_TTY_FAIL] = "tty-fail",
2005         [EXEC_INPUT_SOCKET] = "socket"
2006 };
2007
2008 DEFINE_STRING_TABLE_LOOKUP(exec_input, ExecInput);
2009
2010 static const char* const exec_output_table[_EXEC_OUTPUT_MAX] = {
2011         [EXEC_OUTPUT_INHERIT] = "inherit",
2012         [EXEC_OUTPUT_NULL] = "null",
2013         [EXEC_OUTPUT_TTY] = "tty",
2014         [EXEC_OUTPUT_SYSLOG] = "syslog",
2015         [EXEC_OUTPUT_SYSLOG_AND_CONSOLE] = "syslog+console",
2016         [EXEC_OUTPUT_KMSG] = "kmsg",
2017         [EXEC_OUTPUT_KMSG_AND_CONSOLE] = "kmsg+console",
2018         [EXEC_OUTPUT_SOCKET] = "socket"
2019 };
2020
2021 DEFINE_STRING_TABLE_LOOKUP(exec_output, ExecOutput);
2022
2023 static const char* const kill_mode_table[_KILL_MODE_MAX] = {
2024         [KILL_CONTROL_GROUP] = "control-group",
2025         [KILL_PROCESS] = "process",
2026         [KILL_NONE] = "none"
2027 };
2028
2029 DEFINE_STRING_TABLE_LOOKUP(kill_mode, KillMode);
2030
2031 static const char* const kill_who_table[_KILL_WHO_MAX] = {
2032         [KILL_MAIN] = "main",
2033         [KILL_CONTROL] = "control",
2034         [KILL_ALL] = "all"
2035 };
2036
2037 DEFINE_STRING_TABLE_LOOKUP(kill_who, KillWho);