(backport) capability: fix build without PR_CAP_AMBIENT
[platform/upstream/systemd.git] / src / test / test-execute.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <grp.h>
4 #include <pwd.h>
5 #include <stdio.h>
6 #include <sys/prctl.h>
7 #include <sys/types.h>
8
9 #include "capability-util.h"
10 #include "cpu-set-util.h"
11 #include "errno-list.h"
12 #include "fileio.h"
13 #include "fs-util.h"
14 #include "macro.h"
15 #include "manager.h"
16 #include "missing_prctl.h"
17 #include "mkdir.h"
18 #include "path-util.h"
19 #include "rm-rf.h"
20 #if HAVE_SECCOMP
21 #include "seccomp-util.h"
22 #endif
23 #include "service.h"
24 #include "stat-util.h"
25 #include "test-helper.h"
26 #include "tests.h"
27 #include "unit.h"
28 #include "user-util.h"
29 #include "util.h"
30 #include "virt.h"
31
32 static bool can_unshare;
33
34 typedef void (*test_function_t)(Manager *m);
35
36 static void check(Manager *m, Unit *unit, int status_expected, int code_expected) {
37         Service *service = NULL;
38         usec_t ts;
39         usec_t timeout = 2 * USEC_PER_MINUTE;
40
41         assert_se(m);
42         assert_se(unit);
43
44         service = SERVICE(unit);
45         printf("%s\n", unit->id);
46         exec_context_dump(&service->exec_context, stdout, "\t");
47         ts = now(CLOCK_MONOTONIC);
48         while (!IN_SET(service->state, SERVICE_DEAD, SERVICE_FAILED)) {
49                 int r;
50                 usec_t n;
51
52                 r = sd_event_run(m->event, 100 * USEC_PER_MSEC);
53                 assert_se(r >= 0);
54
55                 n = now(CLOCK_MONOTONIC);
56                 if (ts + timeout < n) {
57                         log_error("Test timeout when testing %s", unit->id);
58                         r = unit_kill(unit, KILL_ALL, SIGKILL, NULL);
59                         if (r < 0)
60                                 log_error_errno(r, "Failed to kill %s: %m", unit->id);
61                         exit(EXIT_FAILURE);
62                 }
63         }
64         exec_status_dump(&service->main_exec_status, stdout, "\t");
65         assert_se(service->main_exec_status.status == status_expected);
66         assert_se(service->main_exec_status.code == code_expected);
67 }
68
69 static bool check_nobody_user_and_group(void) {
70         static int cache = -1;
71         struct passwd *p;
72         struct group *g;
73
74         if (cache >= 0)
75                 return !!cache;
76
77         if (!synthesize_nobody())
78                 goto invalid;
79
80         p = getpwnam(NOBODY_USER_NAME);
81         if (!p ||
82             !streq(p->pw_name, NOBODY_USER_NAME) ||
83             p->pw_uid != UID_NOBODY ||
84             p->pw_gid != GID_NOBODY)
85                 goto invalid;
86
87         p = getpwuid(UID_NOBODY);
88         if (!p ||
89             !streq(p->pw_name, NOBODY_USER_NAME) ||
90             p->pw_uid != UID_NOBODY ||
91             p->pw_gid != GID_NOBODY)
92                 goto invalid;
93
94         g = getgrnam(NOBODY_GROUP_NAME);
95         if (!g ||
96             !streq(g->gr_name, NOBODY_GROUP_NAME) ||
97             g->gr_gid != GID_NOBODY)
98                 goto invalid;
99
100         g = getgrgid(GID_NOBODY);
101         if (!g ||
102             !streq(g->gr_name, NOBODY_GROUP_NAME) ||
103             g->gr_gid != GID_NOBODY)
104                 goto invalid;
105
106         cache = 1;
107         return true;
108
109 invalid:
110         cache = 0;
111         return false;
112 }
113
114 static bool check_user_has_group_with_same_name(const char *name) {
115         struct passwd *p;
116         struct group *g;
117
118         assert(name);
119
120         p = getpwnam(name);
121         if (!p ||
122             !streq(p->pw_name, name))
123                 return false;
124
125         g = getgrgid(p->pw_gid);
126         if (!g ||
127             !streq(g->gr_name, name))
128                 return false;
129
130         return true;
131 }
132
133 static bool is_inaccessible_available(void) {
134         char *p;
135
136         FOREACH_STRING(p,
137                 "/run/systemd/inaccessible/reg",
138                 "/run/systemd/inaccessible/dir",
139                 "/run/systemd/inaccessible/chr",
140                 "/run/systemd/inaccessible/blk",
141                 "/run/systemd/inaccessible/fifo",
142                 "/run/systemd/inaccessible/sock"
143         ) {
144                 if (access(p, F_OK) < 0)
145                         return false;
146         }
147
148         return true;
149 }
150
151 static void test(Manager *m, const char *unit_name, int status_expected, int code_expected) {
152         Unit *unit;
153
154         assert_se(unit_name);
155
156         assert_se(manager_load_startable_unit_or_warn(m, unit_name, NULL, &unit) >= 0);
157         assert_se(unit_start(unit) >= 0);
158         check(m, unit, status_expected, code_expected);
159 }
160
161 static void test_exec_bindpaths(Manager *m) {
162         assert_se(mkdir_p("/tmp/test-exec-bindpaths", 0755) >= 0);
163         assert_se(mkdir_p("/tmp/test-exec-bindreadonlypaths", 0755) >= 0);
164
165         test(m, "exec-bindpaths.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
166
167         (void) rm_rf("/tmp/test-exec-bindpaths", REMOVE_ROOT|REMOVE_PHYSICAL);
168         (void) rm_rf("/tmp/test-exec-bindreadonlypaths", REMOVE_ROOT|REMOVE_PHYSICAL);
169 }
170
171 static void test_exec_cpuaffinity(Manager *m) {
172         _cleanup_cpu_free_ cpu_set_t *c = NULL;
173         unsigned n;
174
175         assert_se(c = cpu_set_malloc(&n));
176         assert_se(sched_getaffinity(0, CPU_ALLOC_SIZE(n), c) >= 0);
177
178         if (CPU_ISSET_S(0, CPU_ALLOC_SIZE(n), c) == 0) {
179                 log_notice("Cannot use CPU 0, skipping %s", __func__);
180                 return;
181         }
182
183         test(m, "exec-cpuaffinity1.service", 0, CLD_EXITED);
184         test(m, "exec-cpuaffinity2.service", 0, CLD_EXITED);
185
186         if (CPU_ISSET_S(1, CPU_ALLOC_SIZE(n), c) == 0 ||
187             CPU_ISSET_S(2, CPU_ALLOC_SIZE(n), c) == 0) {
188                 log_notice("Cannot use CPU 1 or 2, skipping remaining tests in %s", __func__);
189                 return;
190         }
191
192         test(m, "exec-cpuaffinity3.service", 0, CLD_EXITED);
193 }
194
195 static void test_exec_workingdirectory(Manager *m) {
196         assert_se(mkdir_p("/tmp/test-exec_workingdirectory", 0755) >= 0);
197
198         test(m, "exec-workingdirectory.service", 0, CLD_EXITED);
199         test(m, "exec-workingdirectory-trailing-dot.service", 0, CLD_EXITED);
200
201         (void) rm_rf("/tmp/test-exec_workingdirectory", REMOVE_ROOT|REMOVE_PHYSICAL);
202 }
203
204 static void test_exec_personality(Manager *m) {
205 #if defined(__x86_64__)
206         test(m, "exec-personality-x86-64.service", 0, CLD_EXITED);
207
208 #elif defined(__s390__)
209         test(m, "exec-personality-s390.service", 0, CLD_EXITED);
210
211 #elif defined(__powerpc64__)
212 #  if __BYTE_ORDER == __BIG_ENDIAN
213         test(m, "exec-personality-ppc64.service", 0, CLD_EXITED);
214 #  else
215         test(m, "exec-personality-ppc64le.service", 0, CLD_EXITED);
216 #  endif
217
218 #elif defined(__aarch64__)
219         test(m, "exec-personality-aarch64.service", 0, CLD_EXITED);
220
221 #elif defined(__i386__)
222         test(m, "exec-personality-x86.service", 0, CLD_EXITED);
223 #else
224         log_notice("Unknown personality, skipping %s", __func__);
225 #endif
226 }
227
228 static void test_exec_ignoresigpipe(Manager *m) {
229         test(m, "exec-ignoresigpipe-yes.service", 0, CLD_EXITED);
230         test(m, "exec-ignoresigpipe-no.service", SIGPIPE, CLD_KILLED);
231 }
232
233 static void test_exec_privatetmp(Manager *m) {
234         assert_se(touch("/tmp/test-exec_privatetmp") >= 0);
235
236         test(m, "exec-privatetmp-yes.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
237         test(m, "exec-privatetmp-no.service", 0, CLD_EXITED);
238
239         unlink("/tmp/test-exec_privatetmp");
240 }
241
242 static void test_exec_privatedevices(Manager *m) {
243         int r;
244
245         if (detect_container() > 0) {
246                 log_notice("Testing in container, skipping %s", __func__);
247                 return;
248         }
249         if (!is_inaccessible_available()) {
250                 log_notice("Testing without inaccessible, skipping %s", __func__);
251                 return;
252         }
253
254         test(m, "exec-privatedevices-yes.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
255         test(m, "exec-privatedevices-no.service", 0, CLD_EXITED);
256         test(m, "exec-privatedevices-disabled-by-prefix.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
257
258         /* We use capsh to test if the capabilities are
259          * properly set, so be sure that it exists */
260         r = find_binary("capsh", NULL);
261         if (r < 0) {
262                 log_notice_errno(r, "Could not find capsh binary, skipping remaining tests in %s: %m", __func__);
263                 return;
264         }
265
266         test(m, "exec-privatedevices-yes-capability-mknod.service", 0, CLD_EXITED);
267         test(m, "exec-privatedevices-no-capability-mknod.service", 0, CLD_EXITED);
268         test(m, "exec-privatedevices-yes-capability-sys-rawio.service", 0, CLD_EXITED);
269         test(m, "exec-privatedevices-no-capability-sys-rawio.service", 0, CLD_EXITED);
270 }
271
272 static void test_exec_protectkernelmodules(Manager *m) {
273         int r;
274
275         if (detect_container() > 0) {
276                 log_notice("Testing in container, skipping %s", __func__);
277                 return;
278         }
279         if (!is_inaccessible_available()) {
280                 log_notice("Testing without inaccessible, skipping %s", __func__);
281                 return;
282         }
283
284         r = find_binary("capsh", NULL);
285         if (r < 0) {
286                 log_notice_errno(r, "Skipping %s, could not find capsh binary: %m", __func__);
287                 return;
288         }
289
290         test(m, "exec-protectkernelmodules-no-capabilities.service", 0, CLD_EXITED);
291         test(m, "exec-protectkernelmodules-yes-capabilities.service", 0, CLD_EXITED);
292         test(m, "exec-protectkernelmodules-yes-mount-propagation.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
293 }
294
295 static void test_exec_readonlypaths(Manager *m) {
296
297         test(m, "exec-readonlypaths-simple.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
298
299         if (path_is_read_only_fs("/var") > 0) {
300                 log_notice("Directory /var is readonly, skipping remaining tests in %s", __func__);
301                 return;
302         }
303
304         test(m, "exec-readonlypaths.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
305         test(m, "exec-readonlypaths-with-bindpaths.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
306         test(m, "exec-readonlypaths-mount-propagation.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
307 }
308
309 static void test_exec_readwritepaths(Manager *m) {
310
311         if (path_is_read_only_fs("/") > 0) {
312                 log_notice("Root directory is readonly, skipping %s", __func__);
313                 return;
314         }
315
316         test(m, "exec-readwritepaths-mount-propagation.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
317 }
318
319 static void test_exec_inaccessiblepaths(Manager *m) {
320
321         if (!is_inaccessible_available()) {
322                 log_notice("Testing without inaccessible, skipping %s", __func__);
323                 return;
324         }
325
326         test(m, "exec-inaccessiblepaths-proc.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
327
328         if (path_is_read_only_fs("/") > 0) {
329                 log_notice("Root directory is readonly, skipping remaining tests in %s", __func__);
330                 return;
331         }
332
333         test(m, "exec-inaccessiblepaths-mount-propagation.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
334 }
335
336 static void test_exec_temporaryfilesystem(Manager *m) {
337
338         test(m, "exec-temporaryfilesystem-options.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
339         test(m, "exec-temporaryfilesystem-ro.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
340         test(m, "exec-temporaryfilesystem-rw.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
341         test(m, "exec-temporaryfilesystem-usr.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
342 }
343
344 static void test_exec_systemcallfilter(Manager *m) {
345 #if HAVE_SECCOMP
346         int r;
347
348         if (!is_seccomp_available()) {
349                 log_notice("Seccomp not available, skipping %s", __func__);
350                 return;
351         }
352
353         test(m, "exec-systemcallfilter-not-failing.service", 0, CLD_EXITED);
354         test(m, "exec-systemcallfilter-not-failing2.service", 0, CLD_EXITED);
355         test(m, "exec-systemcallfilter-failing.service", SIGSYS, CLD_KILLED);
356         test(m, "exec-systemcallfilter-failing2.service", SIGSYS, CLD_KILLED);
357
358         r = find_binary("python3", NULL);
359         if (r < 0) {
360                 log_notice_errno(r, "Skipping remaining tests in %s, could not find python3 binary: %m", __func__);
361                 return;
362         }
363
364         test(m, "exec-systemcallfilter-with-errno-name.service", errno_from_name("EILSEQ"), CLD_EXITED);
365         test(m, "exec-systemcallfilter-with-errno-number.service", 255, CLD_EXITED);
366         test(m, "exec-systemcallfilter-with-errno-multi.service", errno_from_name("EILSEQ"), CLD_EXITED);
367 #endif
368 }
369
370 static void test_exec_systemcallerrornumber(Manager *m) {
371 #if HAVE_SECCOMP
372         int r;
373
374         if (!is_seccomp_available()) {
375                 log_notice("Seccomp not available, skipping %s", __func__);
376                 return;
377         }
378
379         r = find_binary("python3", NULL);
380         if (r < 0) {
381                 log_notice_errno(r, "Skipping %s, could not find python3 binary: %m", __func__);
382                 return;
383         }
384
385         test(m, "exec-systemcallerrornumber-name.service", errno_from_name("EACCES"), CLD_EXITED);
386         test(m, "exec-systemcallerrornumber-number.service", 255, CLD_EXITED);
387 #endif
388 }
389
390 static void test_exec_restrictnamespaces(Manager *m) {
391 #if HAVE_SECCOMP
392         if (!is_seccomp_available()) {
393                 log_notice("Seccomp not available, skipping %s", __func__);
394                 return;
395         }
396
397         test(m, "exec-restrictnamespaces-no.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
398         test(m, "exec-restrictnamespaces-yes.service", 1, CLD_EXITED);
399         test(m, "exec-restrictnamespaces-mnt.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
400         test(m, "exec-restrictnamespaces-mnt-blacklist.service", 1, CLD_EXITED);
401         test(m, "exec-restrictnamespaces-merge-and.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
402         test(m, "exec-restrictnamespaces-merge-or.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
403         test(m, "exec-restrictnamespaces-merge-all.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
404 #endif
405 }
406
407 static void test_exec_systemcallfilter_system(Manager *m) {
408 #if HAVE_SECCOMP
409         if (!is_seccomp_available()) {
410                 log_notice("Seccomp not available, skipping %s", __func__);
411                 return;
412         }
413
414         test(m, "exec-systemcallfilter-system-user.service", 0, CLD_EXITED);
415
416         if (!check_nobody_user_and_group()) {
417                 log_notice("nobody user/group is not synthesized or may conflict to other entries, skipping remaining tests in %s", __func__);
418                 return;
419         }
420
421         if (!STR_IN_SET(NOBODY_USER_NAME, "nobody", "nfsnobody")) {
422                 log_notice("Unsupported nobody user name '%s', skipping remaining tests in %s", NOBODY_USER_NAME, __func__);
423                 return;
424         }
425
426         test(m, "exec-systemcallfilter-system-user-" NOBODY_USER_NAME ".service", 0, CLD_EXITED);
427 #endif
428 }
429
430 static void test_exec_user(Manager *m) {
431         test(m, "exec-user.service", 0, CLD_EXITED);
432
433         if (!check_nobody_user_and_group()) {
434                 log_notice("nobody user/group is not synthesized or may conflict to other entries, skipping remaining tests in %s", __func__);
435                 return;
436         }
437
438         if (!STR_IN_SET(NOBODY_USER_NAME, "nobody", "nfsnobody")) {
439                 log_notice("Unsupported nobody user name '%s', skipping remaining tests in %s", NOBODY_USER_NAME, __func__);
440                 return;
441         }
442
443         test(m, "exec-user-" NOBODY_USER_NAME ".service", 0, CLD_EXITED);
444 }
445
446 static void test_exec_group(Manager *m) {
447         test(m, "exec-group.service", 0, CLD_EXITED);
448
449         if (!check_nobody_user_and_group()) {
450                 log_notice("nobody user/group is not synthesized or may conflict to other entries, skipping remaining tests in %s", __func__);
451                 return;
452         }
453
454         if (!STR_IN_SET(NOBODY_GROUP_NAME, "nobody", "nfsnobody", "nogroup")) {
455                 log_notice("Unsupported nobody group name '%s', skipping remaining tests in %s", NOBODY_GROUP_NAME, __func__);
456                 return;
457         }
458
459         test(m, "exec-group-" NOBODY_GROUP_NAME ".service", 0, CLD_EXITED);
460 }
461
462 static void test_exec_supplementarygroups(Manager *m) {
463         test(m, "exec-supplementarygroups.service", 0, CLD_EXITED);
464         test(m, "exec-supplementarygroups-single-group.service", 0, CLD_EXITED);
465         test(m, "exec-supplementarygroups-single-group-user.service", 0, CLD_EXITED);
466         test(m, "exec-supplementarygroups-multiple-groups-default-group-user.service", 0, CLD_EXITED);
467         test(m, "exec-supplementarygroups-multiple-groups-withgid.service", 0, CLD_EXITED);
468         test(m, "exec-supplementarygroups-multiple-groups-withuid.service", 0, CLD_EXITED);
469 }
470
471 static void test_exec_dynamicuser(Manager *m) {
472
473         test(m, "exec-dynamicuser-fixeduser.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
474         if (check_user_has_group_with_same_name("adm"))
475                 test(m, "exec-dynamicuser-fixeduser-adm.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
476         if (check_user_has_group_with_same_name("games"))
477                 test(m, "exec-dynamicuser-fixeduser-games.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
478         test(m, "exec-dynamicuser-fixeduser-one-supplementarygroup.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
479         test(m, "exec-dynamicuser-supplementarygroups.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
480         test(m, "exec-dynamicuser-statedir.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
481
482         (void) rm_rf("/var/lib/test-dynamicuser-migrate", REMOVE_ROOT|REMOVE_PHYSICAL);
483         (void) rm_rf("/var/lib/test-dynamicuser-migrate2", REMOVE_ROOT|REMOVE_PHYSICAL);
484         (void) rm_rf("/var/lib/private/test-dynamicuser-migrate", REMOVE_ROOT|REMOVE_PHYSICAL);
485         (void) rm_rf("/var/lib/private/test-dynamicuser-migrate2", REMOVE_ROOT|REMOVE_PHYSICAL);
486
487         test(m, "exec-dynamicuser-statedir-migrate-step1.service", 0, CLD_EXITED);
488         test(m, "exec-dynamicuser-statedir-migrate-step2.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
489
490         (void) rm_rf("/var/lib/test-dynamicuser-migrate", REMOVE_ROOT|REMOVE_PHYSICAL);
491         (void) rm_rf("/var/lib/test-dynamicuser-migrate2", REMOVE_ROOT|REMOVE_PHYSICAL);
492         (void) rm_rf("/var/lib/private/test-dynamicuser-migrate", REMOVE_ROOT|REMOVE_PHYSICAL);
493         (void) rm_rf("/var/lib/private/test-dynamicuser-migrate2", REMOVE_ROOT|REMOVE_PHYSICAL);
494 }
495
496 static void test_exec_environment(Manager *m) {
497         test(m, "exec-environment.service", 0, CLD_EXITED);
498         test(m, "exec-environment-multiple.service", 0, CLD_EXITED);
499         test(m, "exec-environment-empty.service", 0, CLD_EXITED);
500 }
501
502 static void test_exec_environmentfile(Manager *m) {
503         static const char e[] =
504                 "VAR1='word1 word2'\n"
505                 "VAR2=word3 \n"
506                 "# comment1\n"
507                 "\n"
508                 "; comment2\n"
509                 " ; # comment3\n"
510                 "line without an equal\n"
511                 "VAR3='$word 5 6'\n"
512                 "VAR4='new\nline'\n"
513                 "VAR5=password\\with\\backslashes";
514         int r;
515
516         r = write_string_file("/tmp/test-exec_environmentfile.conf", e, WRITE_STRING_FILE_CREATE);
517         assert_se(r == 0);
518
519         test(m, "exec-environmentfile.service", 0, CLD_EXITED);
520
521         (void) unlink("/tmp/test-exec_environmentfile.conf");
522 }
523
524 static void test_exec_passenvironment(Manager *m) {
525         /* test-execute runs under MANAGER_USER which, by default, forwards all
526          * variables present in the environment, but only those that are
527          * present _at the time it is created_!
528          *
529          * So these PassEnvironment checks are still expected to work, since we
530          * are ensuring the variables are not present at manager creation (they
531          * are unset explicitly in main) and are only set here.
532          *
533          * This is still a good approximation of how a test for MANAGER_SYSTEM
534          * would work.
535          */
536         assert_se(setenv("VAR1", "word1 word2", 1) == 0);
537         assert_se(setenv("VAR2", "word3", 1) == 0);
538         assert_se(setenv("VAR3", "$word 5 6", 1) == 0);
539         assert_se(setenv("VAR4", "new\nline", 1) == 0);
540         assert_se(setenv("VAR5", "passwordwithbackslashes", 1) == 0);
541         test(m, "exec-passenvironment.service", 0, CLD_EXITED);
542         test(m, "exec-passenvironment-repeated.service", 0, CLD_EXITED);
543         test(m, "exec-passenvironment-empty.service", 0, CLD_EXITED);
544         assert_se(unsetenv("VAR1") == 0);
545         assert_se(unsetenv("VAR2") == 0);
546         assert_se(unsetenv("VAR3") == 0);
547         assert_se(unsetenv("VAR4") == 0);
548         assert_se(unsetenv("VAR5") == 0);
549         test(m, "exec-passenvironment-absent.service", 0, CLD_EXITED);
550 }
551
552 static void test_exec_umask(Manager *m) {
553         test(m, "exec-umask-default.service", 0, CLD_EXITED);
554         test(m, "exec-umask-0177.service", 0, CLD_EXITED);
555 }
556
557 static void test_exec_runtimedirectory(Manager *m) {
558         test(m, "exec-runtimedirectory.service", 0, CLD_EXITED);
559         test(m, "exec-runtimedirectory-mode.service", 0, CLD_EXITED);
560         test(m, "exec-runtimedirectory-owner.service", 0, CLD_EXITED);
561
562         if (!check_nobody_user_and_group()) {
563                 log_notice("nobody user/group is not synthesized or may conflict to other entries, skipping remaining tests in %s", __func__);
564                 return;
565         }
566
567         if (!STR_IN_SET(NOBODY_GROUP_NAME, "nobody", "nfsnobody", "nogroup")) {
568                 log_notice("Unsupported nobody group name '%s', skipping remaining tests in %s", NOBODY_GROUP_NAME, __func__);
569                 return;
570         }
571
572         test(m, "exec-runtimedirectory-owner-" NOBODY_GROUP_NAME ".service", 0, CLD_EXITED);
573 }
574
575 static void test_exec_capabilityboundingset(Manager *m) {
576         int r;
577
578         r = find_binary("capsh", NULL);
579         if (r < 0) {
580                 log_notice_errno(r, "Skipping %s, could not find capsh binary: %m", __func__);
581                 return;
582         }
583
584         if (have_effective_cap(CAP_CHOWN) <= 0 ||
585             have_effective_cap(CAP_FOWNER) <= 0 ||
586             have_effective_cap(CAP_KILL) <= 0) {
587                 log_notice("Skipping %s, this process does not have enough capabilities", __func__);
588                 return;
589         }
590
591         test(m, "exec-capabilityboundingset-simple.service", 0, CLD_EXITED);
592         test(m, "exec-capabilityboundingset-reset.service", 0, CLD_EXITED);
593         test(m, "exec-capabilityboundingset-merge.service", 0, CLD_EXITED);
594         test(m, "exec-capabilityboundingset-invert.service", 0, CLD_EXITED);
595 }
596
597 static void test_exec_basic(Manager *m) {
598         test(m, "exec-basic.service", 0, CLD_EXITED);
599 }
600
601 static void test_exec_ambientcapabilities(Manager *m) {
602         int r;
603
604         /* Check if the kernel has support for ambient capabilities. Run
605          * the tests only if that's the case. Clearing all ambient
606          * capabilities is fine, since we are expecting them to be unset
607          * in the first place for the tests. */
608         r = prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_CLEAR_ALL, 0, 0, 0);
609         if (r < 0 && IN_SET(errno, EINVAL, EOPNOTSUPP, ENOSYS)) {
610                 log_notice("Skipping %s, the kernel does not support ambient capabilities", __func__);
611                 return;
612         }
613
614         if (have_effective_cap(CAP_CHOWN) <= 0 ||
615             have_effective_cap(CAP_NET_RAW) <= 0) {
616                 log_notice("Skipping %s, this process does not have enough capabilities", __func__);
617                 return;
618         }
619
620         test(m, "exec-ambientcapabilities.service", 0, CLD_EXITED);
621         test(m, "exec-ambientcapabilities-merge.service", 0, CLD_EXITED);
622
623         if (!check_nobody_user_and_group()) {
624                 log_notice("nobody user/group is not synthesized or may conflict to other entries, skipping remaining tests in %s", __func__);
625                 return;
626         }
627
628         if (!STR_IN_SET(NOBODY_USER_NAME, "nobody", "nfsnobody")) {
629                 log_notice("Unsupported nobody user name '%s', skipping remaining tests in %s", NOBODY_USER_NAME, __func__);
630                 return;
631         }
632
633         test(m, "exec-ambientcapabilities-" NOBODY_USER_NAME ".service", 0, CLD_EXITED);
634         test(m, "exec-ambientcapabilities-merge-" NOBODY_USER_NAME ".service", 0, CLD_EXITED);
635 }
636
637 static void test_exec_privatenetwork(Manager *m) {
638         int r;
639
640         r = find_binary("ip", NULL);
641         if (r < 0) {
642                 log_notice_errno(r, "Skipping %s, could not find ip binary: %m", __func__);
643                 return;
644         }
645
646         test(m, "exec-privatenetwork-yes.service", can_unshare ? 0 : EXIT_NETWORK, CLD_EXITED);
647 }
648
649 static void test_exec_oomscoreadjust(Manager *m) {
650         test(m, "exec-oomscoreadjust-positive.service", 0, CLD_EXITED);
651
652         if (detect_container() > 0) {
653                 log_notice("Testing in container, skipping remaining tests in %s", __func__);
654                 return;
655         }
656         test(m, "exec-oomscoreadjust-negative.service", 0, CLD_EXITED);
657 }
658
659 static void test_exec_ioschedulingclass(Manager *m) {
660         test(m, "exec-ioschedulingclass-none.service", 0, CLD_EXITED);
661         test(m, "exec-ioschedulingclass-idle.service", 0, CLD_EXITED);
662         test(m, "exec-ioschedulingclass-best-effort.service", 0, CLD_EXITED);
663
664         if (detect_container() > 0) {
665                 log_notice("Testing in container, skipping remaining tests in %s", __func__);
666                 return;
667         }
668         test(m, "exec-ioschedulingclass-realtime.service", 0, CLD_EXITED);
669 }
670
671 static void test_exec_unsetenvironment(Manager *m) {
672         test(m, "exec-unsetenvironment.service", 0, CLD_EXITED);
673 }
674
675 static void test_exec_specifier(Manager *m) {
676         test(m, "exec-specifier.service", 0, CLD_EXITED);
677         test(m, "exec-specifier@foo-bar.service", 0, CLD_EXITED);
678         test(m, "exec-specifier-interpolation.service", 0, CLD_EXITED);
679 }
680
681 static void test_exec_standardinput(Manager *m) {
682         test(m, "exec-standardinput-data.service", 0, CLD_EXITED);
683         test(m, "exec-standardinput-file.service", 0, CLD_EXITED);
684 }
685
686 static void test_exec_standardoutput(Manager *m) {
687         test(m, "exec-standardoutput-file.service", 0, CLD_EXITED);
688 }
689
690 static void test_exec_standardoutput_append(Manager *m) {
691         test(m, "exec-standardoutput-append.service", 0, CLD_EXITED);
692 }
693
694 static int run_tests(UnitFileScope scope, const test_function_t *tests) {
695         const test_function_t *test = NULL;
696         _cleanup_(manager_freep) Manager *m = NULL;
697         int r;
698
699         assert_se(tests);
700
701         r = manager_new(scope, MANAGER_TEST_RUN_BASIC, &m);
702         if (MANAGER_SKIP_TEST(r))
703                 return log_tests_skipped_errno(r, "manager_new");
704         assert_se(r >= 0);
705         assert_se(manager_startup(m, NULL, NULL) >= 0);
706
707         for (test = tests; test && *test; test++)
708                 (*test)(m);
709
710         return 0;
711 }
712
713 int main(int argc, char *argv[]) {
714         _cleanup_(rm_rf_physical_and_freep) char *runtime_dir = NULL;
715         _cleanup_free_ char *test_execute_path = NULL;
716         _cleanup_hashmap_free_ Hashmap *s = NULL;
717         static const test_function_t user_tests[] = {
718                 test_exec_basic,
719                 test_exec_ambientcapabilities,
720                 test_exec_bindpaths,
721                 test_exec_capabilityboundingset,
722                 test_exec_cpuaffinity,
723                 test_exec_environment,
724                 test_exec_environmentfile,
725                 test_exec_group,
726                 test_exec_ignoresigpipe,
727                 test_exec_inaccessiblepaths,
728                 test_exec_ioschedulingclass,
729                 test_exec_oomscoreadjust,
730                 test_exec_passenvironment,
731                 test_exec_personality,
732                 test_exec_privatedevices,
733                 test_exec_privatenetwork,
734                 test_exec_privatetmp,
735                 test_exec_protectkernelmodules,
736                 test_exec_readonlypaths,
737                 test_exec_readwritepaths,
738                 test_exec_restrictnamespaces,
739                 test_exec_runtimedirectory,
740                 test_exec_standardinput,
741                 test_exec_standardoutput,
742                 test_exec_standardoutput_append,
743                 test_exec_supplementarygroups,
744                 test_exec_systemcallerrornumber,
745                 test_exec_systemcallfilter,
746                 test_exec_temporaryfilesystem,
747                 test_exec_umask,
748                 test_exec_unsetenvironment,
749                 test_exec_user,
750                 test_exec_workingdirectory,
751                 NULL,
752         };
753         static const test_function_t system_tests[] = {
754                 test_exec_dynamicuser,
755                 test_exec_specifier,
756                 test_exec_systemcallfilter_system,
757                 NULL,
758         };
759         int r;
760
761         test_setup_logging(LOG_DEBUG);
762
763 #if HAS_FEATURE_ADDRESS_SANITIZER
764         if (is_run_on_travis_ci()) {
765                 log_notice("Running on TravisCI under ASan, skipping, see https://github.com/systemd/systemd/issues/10696");
766                 return EXIT_TEST_SKIP;
767         }
768 #endif
769
770         (void) unsetenv("USER");
771         (void) unsetenv("LOGNAME");
772         (void) unsetenv("SHELL");
773
774         can_unshare = have_namespaces();
775
776         /* It is needed otherwise cgroup creation fails */
777         if (getuid() != 0)
778                 return log_tests_skipped("not root");
779
780         r = enter_cgroup_subroot();
781         if (r == -ENOMEDIUM)
782                 return log_tests_skipped("cgroupfs not available");
783
784         assert_se(runtime_dir = setup_fake_runtime_dir());
785         test_execute_path = path_join(get_testdata_dir(), "test-execute");
786         assert_se(set_unit_path(test_execute_path) >= 0);
787
788         /* Unset VAR1, VAR2 and VAR3 which are used in the PassEnvironment test
789          * cases, otherwise (and if they are present in the environment),
790          * `manager_default_environment` will copy them into the default
791          * environment which is passed to each created job, which will make the
792          * tests that expect those not to be present to fail.
793          */
794         assert_se(unsetenv("VAR1") == 0);
795         assert_se(unsetenv("VAR2") == 0);
796         assert_se(unsetenv("VAR3") == 0);
797
798         r = run_tests(UNIT_FILE_USER, user_tests);
799         if (r != 0)
800                 return r;
801
802         r = run_tests(UNIT_FILE_SYSTEM, system_tests);
803         if (r != 0)
804                 return r;
805
806 #if HAVE_SECCOMP
807         /* The following tests are for 1beab8b0d0ff2d7d1436b52d4a0c3d56dc908962. */
808         if (!is_seccomp_available()) {
809                 log_notice("Seccomp not available, skipping unshare() filtered tests.");
810                 return 0;
811         }
812
813         assert_se(s = hashmap_new(NULL));
814         r = seccomp_syscall_resolve_name("unshare");
815         assert_se(r != __NR_SCMP_ERROR);
816         assert_se(hashmap_put(s, UINT32_TO_PTR(r + 1), INT_TO_PTR(-1)) >= 0);
817         assert_se(seccomp_load_syscall_filter_set_raw(SCMP_ACT_ALLOW, s, SCMP_ACT_ERRNO(EOPNOTSUPP), true) >= 0);
818         assert_se(unshare(CLONE_NEWNS) < 0);
819         assert_se(errno == EOPNOTSUPP);
820
821         can_unshare = false;
822
823         r = run_tests(UNIT_FILE_USER, user_tests);
824         if (r != 0)
825                 return r;
826
827         return run_tests(UNIT_FILE_SYSTEM, system_tests);
828 #else
829         return 0;
830 #endif
831 }