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