1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <stdio.h>
4 #include <sys/prctl.h>
5 #include <sys/types.h>
6
7 #include "sd-event.h"
8
9 #include "capability-util.h"
10 #include "cpu-set-util.h"
11 #include "copy.h"
12 #include "dropin.h"
13 #include "errno-list.h"
14 #include "fd-util.h"
15 #include "fileio.h"
16 #include "fs-util.h"
17 #include "macro.h"
18 #include "manager.h"
19 #include "missing_prctl.h"
20 #include "mkdir.h"
21 #include "path-util.h"
22 #include "process-util.h"
23 #include "rm-rf.h"
24 #if HAVE_SECCOMP
25 #include "seccomp-util.h"
26 #endif
27 #include "service.h"
28 #include "signal-util.h"
29 #include "static-destruct.h"
30 #include "stat-util.h"
31 #include "tests.h"
32 #include "tmpfile-util.h"
33 #include "unit.h"
34 #include "user-util.h"
35 #include "util.h"
36 #include "virt.h"
37
38 static char *user_runtime_unit_dir = NULL;
39 static bool can_unshare;
40
41 STATIC_DESTRUCTOR_REGISTER(user_runtime_unit_dir, freep);
42
43 typedef void (*test_function_t)(Manager *m);
44
cld_dumped_to_killed(int code)45 static int cld_dumped_to_killed(int code) {
46 /* Depending on the system, seccomp version, … some signals might result in dumping, others in plain
47 * killing. Let's ignore the difference here, and map both cases to CLD_KILLED */
48 return code == CLD_DUMPED ? CLD_KILLED : code;
49 }
50
wait_for_service_finish(Manager * m,Unit * unit)51 static void wait_for_service_finish(Manager *m, Unit *unit) {
52 Service *service = NULL;
53 usec_t ts;
54 usec_t timeout = 2 * USEC_PER_MINUTE;
55
56 assert_se(m);
57 assert_se(unit);
58
59 service = SERVICE(unit);
60 printf("%s\n", unit->id);
61 exec_context_dump(&service->exec_context, stdout, "\t");
62 ts = now(CLOCK_MONOTONIC);
63 while (!IN_SET(service->state, SERVICE_DEAD, SERVICE_FAILED)) {
64 int r;
65 usec_t n;
66
67 r = sd_event_run(m->event, 100 * USEC_PER_MSEC);
68 assert_se(r >= 0);
69
70 n = now(CLOCK_MONOTONIC);
71 if (ts + timeout < n) {
72 log_error("Test timeout when testing %s", unit->id);
73 r = unit_kill(unit, KILL_ALL, SIGKILL, NULL);
74 if (r < 0)
75 log_error_errno(r, "Failed to kill %s: %m", unit->id);
76 exit(EXIT_FAILURE);
77 }
78 }
79 }
80
check_main_result(const char * file,unsigned line,const char * func,Manager * m,Unit * unit,int status_expected,int code_expected)81 static void check_main_result(const char *file, unsigned line, const char *func,
82 Manager *m, Unit *unit, int status_expected, int code_expected) {
83 Service *service = NULL;
84
85 assert_se(m);
86 assert_se(unit);
87
88 wait_for_service_finish(m, unit);
89
90 service = SERVICE(unit);
91 exec_status_dump(&service->main_exec_status, stdout, "\t");
92
93 if (cld_dumped_to_killed(service->main_exec_status.code) != cld_dumped_to_killed(code_expected)) {
94 log_error("%s:%u:%s %s: can_unshare=%s: exit code %d, expected %d",
95 file, line, func, unit->id, yes_no(can_unshare),
96 service->main_exec_status.code, code_expected);
97 abort();
98 }
99
100 if (service->main_exec_status.status != status_expected) {
101 log_error("%s:%u:%s: %s: can_unshare=%s: exit status %d, expected %d",
102 file, line, func, unit->id, yes_no(can_unshare),
103 service->main_exec_status.status, status_expected);
104 abort();
105 }
106 }
107
check_service_result(const char * file,unsigned line,const char * func,Manager * m,Unit * unit,ServiceResult result_expected)108 static void check_service_result(const char *file, unsigned line, const char *func,
109 Manager *m, Unit *unit, ServiceResult result_expected) {
110 Service *service = NULL;
111
112 assert_se(m);
113 assert_se(unit);
114
115 wait_for_service_finish(m, unit);
116
117 service = SERVICE(unit);
118
119 if (service->result != result_expected) {
120 log_error("%s:%u:%s: %s: can_unshare=%s: service end result %s, expected %s",
121 file, line, func, unit->id, yes_no(can_unshare),
122 service_result_to_string(service->result),
123 service_result_to_string(result_expected));
124 abort();
125 }
126 }
127
check_nobody_user_and_group(void)128 static bool check_nobody_user_and_group(void) {
129 static int cache = -1;
130 struct passwd *p;
131 struct group *g;
132
133 if (cache >= 0)
134 return !!cache;
135
136 if (!synthesize_nobody())
137 goto invalid;
138
139 p = getpwnam(NOBODY_USER_NAME);
140 if (!p ||
141 !streq(p->pw_name, NOBODY_USER_NAME) ||
142 p->pw_uid != UID_NOBODY ||
143 p->pw_gid != GID_NOBODY)
144 goto invalid;
145
146 p = getpwuid(UID_NOBODY);
147 if (!p ||
148 !streq(p->pw_name, NOBODY_USER_NAME) ||
149 p->pw_uid != UID_NOBODY ||
150 p->pw_gid != GID_NOBODY)
151 goto invalid;
152
153 g = getgrnam(NOBODY_GROUP_NAME);
154 if (!g ||
155 !streq(g->gr_name, NOBODY_GROUP_NAME) ||
156 g->gr_gid != GID_NOBODY)
157 goto invalid;
158
159 g = getgrgid(GID_NOBODY);
160 if (!g ||
161 !streq(g->gr_name, NOBODY_GROUP_NAME) ||
162 g->gr_gid != GID_NOBODY)
163 goto invalid;
164
165 cache = 1;
166 return true;
167
168 invalid:
169 cache = 0;
170 return false;
171 }
172
check_user_has_group_with_same_name(const char * name)173 static bool check_user_has_group_with_same_name(const char *name) {
174 struct passwd *p;
175 struct group *g;
176
177 assert_se(name);
178
179 p = getpwnam(name);
180 if (!p ||
181 !streq(p->pw_name, name))
182 return false;
183
184 g = getgrgid(p->pw_gid);
185 if (!g ||
186 !streq(g->gr_name, name))
187 return false;
188
189 return true;
190 }
191
is_inaccessible_available(void)192 static bool is_inaccessible_available(void) {
193 FOREACH_STRING(p,
194 "/run/systemd/inaccessible/reg",
195 "/run/systemd/inaccessible/dir",
196 "/run/systemd/inaccessible/chr",
197 "/run/systemd/inaccessible/blk",
198 "/run/systemd/inaccessible/fifo",
199 "/run/systemd/inaccessible/sock")
200 if (access(p, F_OK) < 0)
201 return false;
202
203 return true;
204 }
205
_test(const char * file,unsigned line,const char * func,Manager * m,const char * unit_name,int status_expected,int code_expected)206 static void _test(const char *file, unsigned line, const char *func,
207 Manager *m, const char *unit_name, int status_expected, int code_expected) {
208 Unit *unit;
209
210 assert_se(unit_name);
211
212 assert_se(manager_load_startable_unit_or_warn(m, unit_name, NULL, &unit) >= 0);
213 assert_se(unit_start(unit) >= 0);
214 check_main_result(file, line, func, m, unit, status_expected, code_expected);
215 }
216 #define test(m, unit_name, status_expected, code_expected) \
217 _test(PROJECT_FILE, __LINE__, __func__, m, unit_name, status_expected, code_expected)
218
_test_service(const char * file,unsigned line,const char * func,Manager * m,const char * unit_name,ServiceResult result_expected)219 static void _test_service(const char *file, unsigned line, const char *func,
220 Manager *m, const char *unit_name, ServiceResult result_expected) {
221 Unit *unit;
222
223 assert_se(unit_name);
224
225 assert_se(manager_load_startable_unit_or_warn(m, unit_name, NULL, &unit) >= 0);
226 assert_se(unit_start(unit) >= 0);
227 check_service_result(file, line, func, m, unit, result_expected);
228 }
229 #define test_service(m, unit_name, result_expected) \
230 _test_service(PROJECT_FILE, __LINE__, __func__, m, unit_name, result_expected)
231
test_exec_bindpaths(Manager * m)232 static void test_exec_bindpaths(Manager *m) {
233 assert_se(mkdir_p("/tmp/test-exec-bindpaths", 0755) >= 0);
234 assert_se(mkdir_p("/tmp/test-exec-bindreadonlypaths", 0755) >= 0);
235
236 test(m, "exec-bindpaths.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
237
238 (void) rm_rf("/tmp/test-exec-bindpaths", REMOVE_ROOT|REMOVE_PHYSICAL);
239 (void) rm_rf("/tmp/test-exec-bindreadonlypaths", REMOVE_ROOT|REMOVE_PHYSICAL);
240 }
241
test_exec_cpuaffinity(Manager * m)242 static void test_exec_cpuaffinity(Manager *m) {
243 _cleanup_(cpu_set_reset) CPUSet c = {};
244
245 assert_se(cpu_set_realloc(&c, 8192) >= 0); /* just allocate the maximum possible size */
246 assert_se(sched_getaffinity(0, c.allocated, c.set) >= 0);
247
248 if (!CPU_ISSET_S(0, c.allocated, c.set)) {
249 log_notice("Cannot use CPU 0, skipping %s", __func__);
250 return;
251 }
252
253 test(m, "exec-cpuaffinity1.service", 0, CLD_EXITED);
254 test(m, "exec-cpuaffinity2.service", 0, CLD_EXITED);
255
256 if (!CPU_ISSET_S(1, c.allocated, c.set) ||
257 !CPU_ISSET_S(2, c.allocated, c.set)) {
258 log_notice("Cannot use CPU 1 or 2, skipping remaining tests in %s", __func__);
259 return;
260 }
261
262 test(m, "exec-cpuaffinity3.service", 0, CLD_EXITED);
263 }
264
test_exec_workingdirectory(Manager * m)265 static void test_exec_workingdirectory(Manager *m) {
266 assert_se(mkdir_p("/tmp/test-exec_workingdirectory", 0755) >= 0);
267
268 test(m, "exec-workingdirectory.service", 0, CLD_EXITED);
269 test(m, "exec-workingdirectory-trailing-dot.service", 0, CLD_EXITED);
270
271 (void) rm_rf("/tmp/test-exec_workingdirectory", REMOVE_ROOT|REMOVE_PHYSICAL);
272 }
273
test_exec_execsearchpath(Manager * m)274 static void test_exec_execsearchpath(Manager *m) {
275 assert_se(mkdir_p("/tmp/test-exec_execsearchpath", 0755) >= 0);
276
277 assert_se(copy_file("/bin/ls", "/tmp/test-exec_execsearchpath/ls_temp", 0, 0777, 0, 0, COPY_REPLACE) >= 0);
278
279 test(m, "exec-execsearchpath.service", 0, CLD_EXITED);
280
281 assert_se(rm_rf("/tmp/test-exec_execsearchpath", REMOVE_ROOT|REMOVE_PHYSICAL) >= 0);
282
283 test(m, "exec-execsearchpath.service", EXIT_EXEC, CLD_EXITED);
284 }
285
test_exec_execsearchpath_specifier(Manager * m)286 static void test_exec_execsearchpath_specifier(Manager *m) {
287 test(m, "exec-execsearchpath-unit-specifier.service", 0, CLD_EXITED);
288 }
289
test_exec_execsearchpath_environment(Manager * m)290 static void test_exec_execsearchpath_environment(Manager *m) {
291 test(m, "exec-execsearchpath-environment.service", 0, CLD_EXITED);
292 test(m, "exec-execsearchpath-environment-path-set.service", 0, CLD_EXITED);
293 }
294
test_exec_execsearchpath_environment_files(Manager * m)295 static void test_exec_execsearchpath_environment_files(Manager *m) {
296 static const char path_not_set[] =
297 "VAR1='word1 word2'\n"
298 "VAR2=word3 \n"
299 "# comment1\n"
300 "\n"
301 "; comment2\n"
302 " ; # comment3\n"
303 "line without an equal\n"
304 "VAR3='$word 5 6'\n"
305 "VAR4='new\nline'\n"
306 "VAR5=password\\with\\backslashes";
307
308 static const char path_set[] =
309 "VAR1='word1 word2'\n"
310 "VAR2=word3 \n"
311 "# comment1\n"
312 "\n"
313 "; comment2\n"
314 " ; # comment3\n"
315 "line without an equal\n"
316 "VAR3='$word 5 6'\n"
317 "VAR4='new\nline'\n"
318 "VAR5=password\\with\\backslashes\n"
319 "PATH=/usr";
320
321 int r;
322
323 r = write_string_file("/tmp/test-exec_execsearchpath_environmentfile.conf", path_not_set, WRITE_STRING_FILE_CREATE);
324
325 assert_se(r == 0);
326
327 test(m, "exec-execsearchpath-environmentfile.service", 0, CLD_EXITED);
328
329 (void) unlink("/tmp/test-exec_environmentfile.conf");
330
331
332 r = write_string_file("/tmp/test-exec_execsearchpath_environmentfile-set.conf", path_set, WRITE_STRING_FILE_CREATE);
333
334 assert_se(r == 0);
335
336 test(m, "exec-execsearchpath-environmentfile-set.service", 0, CLD_EXITED);
337
338 (void) unlink("/tmp/test-exec_environmentfile-set.conf");
339 }
340
test_exec_execsearchpath_passenvironment(Manager * m)341 static void test_exec_execsearchpath_passenvironment(Manager *m) {
342 assert_se(setenv("VAR1", "word1 word2", 1) == 0);
343 assert_se(setenv("VAR2", "word3", 1) == 0);
344 assert_se(setenv("VAR3", "$word 5 6", 1) == 0);
345 assert_se(setenv("VAR4", "new\nline", 1) == 0);
346 assert_se(setenv("VAR5", "passwordwithbackslashes", 1) == 0);
347
348 test(m, "exec-execsearchpath-passenvironment.service", 0, CLD_EXITED);
349
350 assert_se(setenv("PATH", "/usr", 1) == 0);
351 test(m, "exec-execsearchpath-passenvironment-set.service", 0, CLD_EXITED);
352
353 assert_se(unsetenv("VAR1") == 0);
354 assert_se(unsetenv("VAR2") == 0);
355 assert_se(unsetenv("VAR3") == 0);
356 assert_se(unsetenv("VAR4") == 0);
357 assert_se(unsetenv("VAR5") == 0);
358 assert_se(unsetenv("PATH") == 0);
359 }
360
test_exec_personality(Manager * m)361 static void test_exec_personality(Manager *m) {
362 #if defined(__x86_64__)
363 test(m, "exec-personality-x86-64.service", 0, CLD_EXITED);
364
365 #elif defined(__s390__)
366 test(m, "exec-personality-s390.service", 0, CLD_EXITED);
367
368 #elif defined(__powerpc64__)
369 # if __BYTE_ORDER == __BIG_ENDIAN
370 test(m, "exec-personality-ppc64.service", 0, CLD_EXITED);
371 # else
372 test(m, "exec-personality-ppc64le.service", 0, CLD_EXITED);
373 # endif
374
375 #elif defined(__aarch64__)
376 test(m, "exec-personality-aarch64.service", 0, CLD_EXITED);
377
378 #elif defined(__i386__)
379 test(m, "exec-personality-x86.service", 0, CLD_EXITED);
380 #elif defined(__loongarch64)
381 test(m, "exec-personality-loongarch64.service", 0, CLD_EXITED);
382 #else
383 log_notice("Unknown personality, skipping %s", __func__);
384 #endif
385 }
386
test_exec_ignoresigpipe(Manager * m)387 static void test_exec_ignoresigpipe(Manager *m) {
388 test(m, "exec-ignoresigpipe-yes.service", 0, CLD_EXITED);
389 test(m, "exec-ignoresigpipe-no.service", SIGPIPE, CLD_KILLED);
390 }
391
test_exec_privatetmp(Manager * m)392 static void test_exec_privatetmp(Manager *m) {
393 assert_se(touch("/tmp/test-exec_privatetmp") >= 0);
394
395 test(m, "exec-privatetmp-yes.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
396 test(m, "exec-privatetmp-no.service", 0, CLD_EXITED);
397 test(m, "exec-privatetmp-disabled-by-prefix.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
398
399 unlink("/tmp/test-exec_privatetmp");
400 }
401
test_exec_privatedevices(Manager * m)402 static void test_exec_privatedevices(Manager *m) {
403 int r;
404
405 if (detect_container() > 0) {
406 log_notice("Testing in container, skipping %s", __func__);
407 return;
408 }
409 if (!is_inaccessible_available()) {
410 log_notice("Testing without inaccessible, skipping %s", __func__);
411 return;
412 }
413
414 test(m, "exec-privatedevices-yes.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
415 test(m, "exec-privatedevices-no.service", 0, CLD_EXITED);
416 test(m, "exec-privatedevices-disabled-by-prefix.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
417 test(m, "exec-privatedevices-yes-with-group.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
418
419 /* We use capsh to test if the capabilities are
420 * properly set, so be sure that it exists */
421 r = find_executable("capsh", NULL);
422 if (r < 0) {
423 log_notice_errno(r, "Could not find capsh binary, skipping remaining tests in %s: %m", __func__);
424 return;
425 }
426
427 test(m, "exec-privatedevices-yes-capability-mknod.service", 0, CLD_EXITED);
428 test(m, "exec-privatedevices-no-capability-mknod.service", 0, CLD_EXITED);
429 test(m, "exec-privatedevices-yes-capability-sys-rawio.service", 0, CLD_EXITED);
430 test(m, "exec-privatedevices-no-capability-sys-rawio.service", 0, CLD_EXITED);
431 }
432
test_exec_protecthome(Manager * m)433 static void test_exec_protecthome(Manager *m) {
434 if (!can_unshare) {
435 log_notice("Cannot reliably unshare, skipping %s", __func__);
436 return;
437 }
438
439 test(m, "exec-protecthome-tmpfs-vs-protectsystem-strict.service", 0, CLD_EXITED);
440 }
441
test_exec_protectkernelmodules(Manager * m)442 static void test_exec_protectkernelmodules(Manager *m) {
443 int r;
444
445 if (detect_container() > 0) {
446 log_notice("Testing in container, skipping %s", __func__);
447 return;
448 }
449 if (!is_inaccessible_available()) {
450 log_notice("Testing without inaccessible, skipping %s", __func__);
451 return;
452 }
453
454 r = find_executable("capsh", NULL);
455 if (r < 0) {
456 log_notice_errno(r, "Skipping %s, could not find capsh binary: %m", __func__);
457 return;
458 }
459
460 test(m, "exec-protectkernelmodules-no-capabilities.service", 0, CLD_EXITED);
461 test(m, "exec-protectkernelmodules-yes-capabilities.service", 0, CLD_EXITED);
462 test(m, "exec-protectkernelmodules-yes-mount-propagation.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
463 }
464
test_exec_readonlypaths(Manager * m)465 static void test_exec_readonlypaths(Manager *m) {
466
467 test(m, "exec-readonlypaths-simple.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
468
469 if (path_is_read_only_fs("/var") > 0) {
470 log_notice("Directory /var is readonly, skipping remaining tests in %s", __func__);
471 return;
472 }
473
474 test(m, "exec-readonlypaths.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
475 test(m, "exec-readonlypaths-with-bindpaths.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
476 test(m, "exec-readonlypaths-mount-propagation.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
477 }
478
test_exec_readwritepaths(Manager * m)479 static void test_exec_readwritepaths(Manager *m) {
480
481 if (path_is_read_only_fs("/") > 0) {
482 log_notice("Root directory is readonly, skipping %s", __func__);
483 return;
484 }
485
486 test(m, "exec-readwritepaths-mount-propagation.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
487 }
488
test_exec_inaccessiblepaths(Manager * m)489 static void test_exec_inaccessiblepaths(Manager *m) {
490
491 if (!is_inaccessible_available()) {
492 log_notice("Testing without inaccessible, skipping %s", __func__);
493 return;
494 }
495
496 test(m, "exec-inaccessiblepaths-sys.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
497
498 if (path_is_read_only_fs("/") > 0) {
499 log_notice("Root directory is readonly, skipping remaining tests in %s", __func__);
500 return;
501 }
502
503 test(m, "exec-inaccessiblepaths-mount-propagation.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
504 }
505
on_spawn_io(sd_event_source * s,int fd,uint32_t revents,void * userdata)506 static int on_spawn_io(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
507 char **result = userdata;
508 char buf[4096];
509 ssize_t l;
510
511 assert_se(s);
512 assert_se(fd >= 0);
513
514 l = read(fd, buf, sizeof(buf) - 1);
515 if (l < 0) {
516 if (errno == EAGAIN)
517 goto reenable;
518
519 return 0;
520 }
521 if (l == 0)
522 return 0;
523
524 buf[l] = '\0';
525 if (result)
526 assert_se(strextend(result, buf));
527 else
528 log_error("ldd: %s", buf);
529
530 reenable:
531 /* Re-enable the event source if we did not encounter EOF */
532 assert_se(sd_event_source_set_enabled(s, SD_EVENT_ONESHOT) >= 0);
533 return 0;
534 }
535
on_spawn_timeout(sd_event_source * s,uint64_t usec,void * userdata)536 static int on_spawn_timeout(sd_event_source *s, uint64_t usec, void *userdata) {
537 pid_t *pid = userdata;
538
539 assert_se(pid);
540
541 (void) kill(*pid, SIGKILL);
542
543 return 1;
544 }
545
on_spawn_sigchld(sd_event_source * s,const siginfo_t * si,void * userdata)546 static int on_spawn_sigchld(sd_event_source *s, const siginfo_t *si, void *userdata) {
547 int ret = -EIO;
548
549 assert_se(si);
550
551 if (si->si_code == CLD_EXITED)
552 ret = si->si_status;
553
554 sd_event_exit(sd_event_source_get_event(s), ret);
555 return 1;
556 }
557
find_libraries(const char * exec,char *** ret)558 static int find_libraries(const char *exec, char ***ret) {
559 _cleanup_(sd_event_unrefp) sd_event *e = NULL;
560 _cleanup_(sd_event_source_unrefp) sd_event_source *sigchld_source = NULL;
561 _cleanup_(sd_event_source_unrefp) sd_event_source *stdout_source = NULL;
562 _cleanup_(sd_event_source_unrefp) sd_event_source *stderr_source = NULL;
563 _cleanup_close_pair_ int outpipe[2] = {-1, -1}, errpipe[2] = {-1, -1};
564 _cleanup_strv_free_ char **libraries = NULL;
565 _cleanup_free_ char *result = NULL;
566 pid_t pid;
567 int r;
568
569 assert_se(exec);
570 assert_se(ret);
571
572 assert_se(sigprocmask_many(SIG_BLOCK, NULL, SIGCHLD, -1) >= 0);
573
574 assert_se(pipe2(outpipe, O_NONBLOCK|O_CLOEXEC) == 0);
575 assert_se(pipe2(errpipe, O_NONBLOCK|O_CLOEXEC) == 0);
576
577 r = safe_fork("(spawn-ldd)", FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_LOG, &pid);
578 assert_se(r >= 0);
579 if (r == 0) {
580 if (rearrange_stdio(-1, TAKE_FD(outpipe[1]), TAKE_FD(errpipe[1])) < 0)
581 _exit(EXIT_FAILURE);
582
583 (void) close_all_fds(NULL, 0);
584
585 execlp("ldd", "ldd", exec, NULL);
586 _exit(EXIT_FAILURE);
587 }
588
589 outpipe[1] = safe_close(outpipe[1]);
590 errpipe[1] = safe_close(errpipe[1]);
591
592 assert_se(sd_event_new(&e) >= 0);
593
594 assert_se(sd_event_add_time_relative(e, NULL, CLOCK_MONOTONIC,
595 10 * USEC_PER_SEC, USEC_PER_SEC, on_spawn_timeout, &pid) >= 0);
596 assert_se(sd_event_add_io(e, &stdout_source, outpipe[0], EPOLLIN, on_spawn_io, &result) >= 0);
597 assert_se(sd_event_source_set_enabled(stdout_source, SD_EVENT_ONESHOT) >= 0);
598 assert_se(sd_event_add_io(e, &stderr_source, errpipe[0], EPOLLIN, on_spawn_io, NULL) >= 0);
599 assert_se(sd_event_source_set_enabled(stderr_source, SD_EVENT_ONESHOT) >= 0);
600 assert_se(sd_event_add_child(e, &sigchld_source, pid, WEXITED, on_spawn_sigchld, NULL) >= 0);
601 /* SIGCHLD should be processed after IO is complete */
602 assert_se(sd_event_source_set_priority(sigchld_source, SD_EVENT_PRIORITY_NORMAL + 1) >= 0);
603
604 assert_se(sd_event_loop(e) >= 0);
605
606 _cleanup_strv_free_ char **v = NULL;
607 assert_se(strv_split_newlines_full(&v, result, 0) >= 0);
608
609 STRV_FOREACH(q, v) {
610 _cleanup_free_ char *word = NULL;
611 const char *p = *q;
612
613 r = extract_first_word(&p, &word, NULL, 0);
614 assert_se(r >= 0);
615 if (r == 0)
616 continue;
617
618 if (path_is_absolute(word)) {
619 assert_se(strv_consume(&libraries, TAKE_PTR(word)) >= 0);
620 continue;
621 }
622
623 word = mfree(word);
624 r = extract_first_word(&p, &word, NULL, 0);
625 assert_se(r >= 0);
626 if (r == 0)
627 continue;
628
629 if (!streq_ptr(word, "=>"))
630 continue;
631
632 word = mfree(word);
633 r = extract_first_word(&p, &word, NULL, 0);
634 assert_se(r >= 0);
635 if (r == 0)
636 continue;
637
638 if (path_is_absolute(word)) {
639 assert_se(strv_consume(&libraries, TAKE_PTR(word)) >= 0);
640 continue;
641 }
642 }
643
644 *ret = TAKE_PTR(libraries);
645 return 0;
646 }
647
test_exec_mount_apivfs(Manager * m)648 static void test_exec_mount_apivfs(Manager *m) {
649 _cleanup_free_ char *fullpath_touch = NULL, *fullpath_test = NULL, *data = NULL;
650 _cleanup_strv_free_ char **libraries = NULL, **libraries_test = NULL;
651 int r;
652
653 assert_se(user_runtime_unit_dir);
654
655 r = find_executable("touch", &fullpath_touch);
656 if (r < 0) {
657 log_notice_errno(r, "Skipping %s, could not find 'touch' command: %m", __func__);
658 return;
659 }
660 r = find_executable("test", &fullpath_test);
661 if (r < 0) {
662 log_notice_errno(r, "Skipping %s, could not find 'test' command: %m", __func__);
663 return;
664 }
665
666 assert_se(find_libraries(fullpath_touch, &libraries) >= 0);
667 assert_se(find_libraries(fullpath_test, &libraries_test) >= 0);
668 assert_se(strv_extend_strv(&libraries, libraries_test, true) >= 0);
669
670 assert_se(strextend(&data, "[Service]\n"));
671 assert_se(strextend(&data, "ExecStart=", fullpath_touch, " /aaa\n"));
672 assert_se(strextend(&data, "ExecStart=", fullpath_test, " -f /aaa\n"));
673 assert_se(strextend(&data, "BindReadOnlyPaths=", fullpath_touch, "\n"));
674 assert_se(strextend(&data, "BindReadOnlyPaths=", fullpath_test, "\n"));
675
676 STRV_FOREACH(p, libraries)
677 assert_se(strextend(&data, "BindReadOnlyPaths=", *p, "\n"));
678
679 assert_se(write_drop_in(user_runtime_unit_dir, "exec-mount-apivfs-no.service", 10, "bind-mount", data) >= 0);
680
681 assert_se(mkdir_p("/tmp/test-exec-mount-apivfs-no/root", 0755) >= 0);
682
683 test(m, "exec-mount-apivfs-no.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
684
685 (void) rm_rf("/tmp/test-exec-mount-apivfs-no/root", REMOVE_ROOT|REMOVE_PHYSICAL);
686 }
687
test_exec_noexecpaths(Manager * m)688 static void test_exec_noexecpaths(Manager *m) {
689
690 test(m, "exec-noexecpaths-simple.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
691 }
692
test_exec_temporaryfilesystem(Manager * m)693 static void test_exec_temporaryfilesystem(Manager *m) {
694
695 test(m, "exec-temporaryfilesystem-options.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
696 test(m, "exec-temporaryfilesystem-ro.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
697 test(m, "exec-temporaryfilesystem-rw.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
698 test(m, "exec-temporaryfilesystem-usr.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
699 }
700
test_exec_systemcallfilter(Manager * m)701 static void test_exec_systemcallfilter(Manager *m) {
702 #if HAVE_SECCOMP
703 int r;
704
705 if (!is_seccomp_available()) {
706 log_notice("Seccomp not available, skipping %s", __func__);
707 return;
708 }
709
710 test(m, "exec-systemcallfilter-not-failing.service", 0, CLD_EXITED);
711 test(m, "exec-systemcallfilter-not-failing2.service", 0, CLD_EXITED);
712 test(m, "exec-systemcallfilter-not-failing3.service", 0, CLD_EXITED);
713 test(m, "exec-systemcallfilter-failing.service", SIGSYS, CLD_KILLED);
714 test(m, "exec-systemcallfilter-failing2.service", SIGSYS, CLD_KILLED);
715 test(m, "exec-systemcallfilter-failing3.service", SIGSYS, CLD_KILLED);
716
717 r = find_executable("python3", NULL);
718 if (r < 0) {
719 log_notice_errno(r, "Skipping remaining tests in %s, could not find python3 binary: %m", __func__);
720 return;
721 }
722
723 test(m, "exec-systemcallfilter-with-errno-name.service", errno_from_name("EILSEQ"), CLD_EXITED);
724 test(m, "exec-systemcallfilter-with-errno-number.service", 255, CLD_EXITED);
725 test(m, "exec-systemcallfilter-with-errno-multi.service", errno_from_name("EILSEQ"), CLD_EXITED);
726 test(m, "exec-systemcallfilter-with-errno-in-allow-list.service", errno_from_name("EILSEQ"), CLD_EXITED);
727 test(m, "exec-systemcallfilter-override-error-action.service", SIGSYS, CLD_KILLED);
728 test(m, "exec-systemcallfilter-override-error-action2.service", errno_from_name("EILSEQ"), CLD_EXITED);
729 #endif
730 }
731
test_exec_systemcallerrornumber(Manager * m)732 static void test_exec_systemcallerrornumber(Manager *m) {
733 #if HAVE_SECCOMP
734 int r;
735
736 if (!is_seccomp_available()) {
737 log_notice("Seccomp not available, skipping %s", __func__);
738 return;
739 }
740
741 r = find_executable("python3", NULL);
742 if (r < 0) {
743 log_notice_errno(r, "Skipping %s, could not find python3 binary: %m", __func__);
744 return;
745 }
746
747 test(m, "exec-systemcallerrornumber-name.service", errno_from_name("EACCES"), CLD_EXITED);
748 test(m, "exec-systemcallerrornumber-number.service", 255, CLD_EXITED);
749 #endif
750 }
751
test_exec_restrictnamespaces(Manager * m)752 static void test_exec_restrictnamespaces(Manager *m) {
753 #if HAVE_SECCOMP
754 if (!is_seccomp_available()) {
755 log_notice("Seccomp not available, skipping %s", __func__);
756 return;
757 }
758
759 test(m, "exec-restrictnamespaces-no.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
760 test(m, "exec-restrictnamespaces-yes.service", 1, CLD_EXITED);
761 test(m, "exec-restrictnamespaces-mnt.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
762 test(m, "exec-restrictnamespaces-mnt-deny-list.service", 1, CLD_EXITED);
763 test(m, "exec-restrictnamespaces-merge-and.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
764 test(m, "exec-restrictnamespaces-merge-or.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
765 test(m, "exec-restrictnamespaces-merge-all.service", can_unshare ? 0 : EXIT_FAILURE, CLD_EXITED);
766 #endif
767 }
768
test_exec_systemcallfilter_system(Manager * m)769 static void test_exec_systemcallfilter_system(Manager *m) {
770 /* Skip this particular test case when running under ASan, as
771 * LSan intermittently segfaults when accessing memory right
772 * after the test finishes. Generally, ASan & LSan don't like
773 * the seccomp stuff.
774 */
775 #if HAVE_SECCOMP && !HAS_FEATURE_ADDRESS_SANITIZER
776 if (!is_seccomp_available()) {
777 log_notice("Seccomp not available, skipping %s", __func__);
778 return;
779 }
780
781 test(m, "exec-systemcallfilter-system-user.service", 0, CLD_EXITED);
782
783 if (!check_nobody_user_and_group()) {
784 log_notice("nobody user/group is not synthesized or may conflict to other entries, skipping remaining tests in %s", __func__);
785 return;
786 }
787
788 if (!STR_IN_SET(NOBODY_USER_NAME, "nobody", "nfsnobody")) {
789 log_notice("Unsupported nobody user name '%s', skipping remaining tests in %s", NOBODY_USER_NAME, __func__);
790 return;
791 }
792
793 test(m, "exec-systemcallfilter-system-user-" NOBODY_USER_NAME ".service", 0, CLD_EXITED);
794 #endif
795 }
796
test_exec_user(Manager * m)797 static void test_exec_user(Manager *m) {
798 test(m, "exec-user.service", 0, CLD_EXITED);
799
800 if (!check_nobody_user_and_group()) {
801 log_notice("nobody user/group is not synthesized or may conflict to other entries, skipping remaining tests in %s", __func__);
802 return;
803 }
804
805 if (!STR_IN_SET(NOBODY_USER_NAME, "nobody", "nfsnobody")) {
806 log_notice("Unsupported nobody user name '%s', skipping remaining tests in %s", NOBODY_USER_NAME, __func__);
807 return;
808 }
809
810 test(m, "exec-user-" NOBODY_USER_NAME ".service", 0, CLD_EXITED);
811 }
812
test_exec_group(Manager * m)813 static void test_exec_group(Manager *m) {
814 test(m, "exec-group.service", 0, CLD_EXITED);
815
816 if (!check_nobody_user_and_group()) {
817 log_notice("nobody user/group is not synthesized or may conflict to other entries, skipping remaining tests in %s", __func__);
818 return;
819 }
820
821 if (!STR_IN_SET(NOBODY_GROUP_NAME, "nobody", "nfsnobody", "nogroup")) {
822 log_notice("Unsupported nobody group name '%s', skipping remaining tests in %s", NOBODY_GROUP_NAME, __func__);
823 return;
824 }
825
826 test(m, "exec-group-" NOBODY_GROUP_NAME ".service", 0, CLD_EXITED);
827 }
828
test_exec_supplementarygroups(Manager * m)829 static void test_exec_supplementarygroups(Manager *m) {
830 test(m, "exec-supplementarygroups.service", 0, CLD_EXITED);
831 test(m, "exec-supplementarygroups-single-group.service", 0, CLD_EXITED);
832 test(m, "exec-supplementarygroups-single-group-user.service", 0, CLD_EXITED);
833 test(m, "exec-supplementarygroups-multiple-groups-default-group-user.service", 0, CLD_EXITED);
834 test(m, "exec-supplementarygroups-multiple-groups-withgid.service", 0, CLD_EXITED);
835 test(m, "exec-supplementarygroups-multiple-groups-withuid.service", 0, CLD_EXITED);
836 }
837
private_directory_bad(Manager * m)838 static char* private_directory_bad(Manager *m) {
839 /* This mirrors setup_exec_directory(). */
840
841 for (ExecDirectoryType dt = 0; dt < _EXEC_DIRECTORY_TYPE_MAX; dt++) {
842 _cleanup_free_ char *p = NULL;
843 struct stat st;
844
845 assert_se(p = path_join(m->prefix[dt], "private"));
846
847 if (stat(p, &st) >= 0 &&
848 (st.st_mode & (S_IRWXG|S_IRWXO)))
849 return TAKE_PTR(p);
850 }
851
852 return NULL;
853 }
854
test_exec_dynamicuser(Manager * m)855 static void test_exec_dynamicuser(Manager *m) {
856 _cleanup_free_ char *bad = private_directory_bad(m);
857 if (bad) {
858 log_warning("%s: %s has bad permissions, skipping test.", __func__, bad);
859 return;
860 }
861
862 if (strstr_ptr(ci_environment(), "github-actions")) {
863 log_notice("%s: skipping test on GH Actions because of systemd/systemd#10337", __func__);
864 return;
865 }
866
867 test(m, "exec-dynamicuser-fixeduser.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
868 if (check_user_has_group_with_same_name("adm"))
869 test(m, "exec-dynamicuser-fixeduser-adm.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
870 if (check_user_has_group_with_same_name("games"))
871 test(m, "exec-dynamicuser-fixeduser-games.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
872 test(m, "exec-dynamicuser-fixeduser-one-supplementarygroup.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
873 test(m, "exec-dynamicuser-supplementarygroups.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
874 test(m, "exec-dynamicuser-statedir.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
875
876 (void) rm_rf("/var/lib/quux", REMOVE_ROOT|REMOVE_PHYSICAL);
877 (void) rm_rf("/var/lib/test-dynamicuser-migrate", REMOVE_ROOT|REMOVE_PHYSICAL);
878 (void) rm_rf("/var/lib/test-dynamicuser-migrate2", REMOVE_ROOT|REMOVE_PHYSICAL);
879 (void) rm_rf("/var/lib/waldo", REMOVE_ROOT|REMOVE_PHYSICAL);
880 (void) rm_rf("/var/lib/private/quux", REMOVE_ROOT|REMOVE_PHYSICAL);
881 (void) rm_rf("/var/lib/private/test-dynamicuser-migrate", REMOVE_ROOT|REMOVE_PHYSICAL);
882 (void) rm_rf("/var/lib/private/test-dynamicuser-migrate2", REMOVE_ROOT|REMOVE_PHYSICAL);
883 (void) rm_rf("/var/lib/private/waldo", REMOVE_ROOT|REMOVE_PHYSICAL);
884
885 test(m, "exec-dynamicuser-statedir-migrate-step1.service", 0, CLD_EXITED);
886 test(m, "exec-dynamicuser-statedir-migrate-step2.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
887 test(m, "exec-dynamicuser-statedir-migrate-step1.service", 0, CLD_EXITED);
888
889 (void) rm_rf("/var/lib/test-dynamicuser-migrate", REMOVE_ROOT|REMOVE_PHYSICAL);
890 (void) rm_rf("/var/lib/test-dynamicuser-migrate2", REMOVE_ROOT|REMOVE_PHYSICAL);
891 (void) rm_rf("/var/lib/private/test-dynamicuser-migrate", REMOVE_ROOT|REMOVE_PHYSICAL);
892 (void) rm_rf("/var/lib/private/test-dynamicuser-migrate2", REMOVE_ROOT|REMOVE_PHYSICAL);
893
894 test(m, "exec-dynamicuser-runtimedirectory1.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
895 test(m, "exec-dynamicuser-runtimedirectory2.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
896 test(m, "exec-dynamicuser-runtimedirectory3.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
897 }
898
test_exec_environment(Manager * m)899 static void test_exec_environment(Manager *m) {
900 test(m, "exec-environment-no-substitute.service", 0, CLD_EXITED);
901 test(m, "exec-environment.service", 0, CLD_EXITED);
902 test(m, "exec-environment-multiple.service", 0, CLD_EXITED);
903 test(m, "exec-environment-empty.service", 0, CLD_EXITED);
904 }
905
test_exec_environmentfile(Manager * m)906 static void test_exec_environmentfile(Manager *m) {
907 static const char e[] =
908 "VAR1='word1 word2'\n"
909 "VAR2=word3 \n"
910 "# comment1\n"
911 "\n"
912 "; comment2\n"
913 " ; # comment3\n"
914 "line without an equal\n"
915 "VAR3='$word 5 6'\n"
916 "VAR4='new\nline'\n"
917 "VAR5=password\\with\\backslashes";
918 int r;
919
920 r = write_string_file("/tmp/test-exec_environmentfile.conf", e, WRITE_STRING_FILE_CREATE);
921 assert_se(r == 0);
922
923 test(m, "exec-environmentfile.service", 0, CLD_EXITED);
924
925 (void) unlink("/tmp/test-exec_environmentfile.conf");
926 }
927
test_exec_passenvironment(Manager * m)928 static void test_exec_passenvironment(Manager *m) {
929 /* test-execute runs under MANAGER_USER which, by default, forwards all
930 * variables present in the environment, but only those that are
931 * present _at the time it is created_!
932 *
933 * So these PassEnvironment checks are still expected to work, since we
934 * are ensuring the variables are not present at manager creation (they
935 * are unset explicitly in main) and are only set here.
936 *
937 * This is still a good approximation of how a test for MANAGER_SYSTEM
938 * would work.
939 */
940 assert_se(setenv("VAR1", "word1 word2", 1) == 0);
941 assert_se(setenv("VAR2", "word3", 1) == 0);
942 assert_se(setenv("VAR3", "$word 5 6", 1) == 0);
943 assert_se(setenv("VAR4", "new\nline", 1) == 0);
944 assert_se(setenv("VAR5", "passwordwithbackslashes", 1) == 0);
945 test(m, "exec-passenvironment.service", 0, CLD_EXITED);
946 test(m, "exec-passenvironment-repeated.service", 0, CLD_EXITED);
947 test(m, "exec-passenvironment-empty.service", 0, CLD_EXITED);
948 assert_se(unsetenv("VAR1") == 0);
949 assert_se(unsetenv("VAR2") == 0);
950 assert_se(unsetenv("VAR3") == 0);
951 assert_se(unsetenv("VAR4") == 0);
952 assert_se(unsetenv("VAR5") == 0);
953 test(m, "exec-passenvironment-absent.service", 0, CLD_EXITED);
954 }
955
test_exec_umask(Manager * m)956 static void test_exec_umask(Manager *m) {
957 test(m, "exec-umask-default.service", 0, CLD_EXITED);
958 test(m, "exec-umask-0177.service", 0, CLD_EXITED);
959 }
960
test_exec_runtimedirectory(Manager * m)961 static void test_exec_runtimedirectory(Manager *m) {
962 test(m, "exec-runtimedirectory.service", 0, CLD_EXITED);
963 test(m, "exec-runtimedirectory-mode.service", 0, CLD_EXITED);
964 test(m, "exec-runtimedirectory-owner.service", 0, CLD_EXITED);
965
966 if (!check_nobody_user_and_group()) {
967 log_notice("nobody user/group is not synthesized or may conflict to other entries, skipping remaining tests in %s", __func__);
968 return;
969 }
970
971 if (!STR_IN_SET(NOBODY_GROUP_NAME, "nobody", "nfsnobody", "nogroup")) {
972 log_notice("Unsupported nobody group name '%s', skipping remaining tests in %s", NOBODY_GROUP_NAME, __func__);
973 return;
974 }
975
976 test(m, "exec-runtimedirectory-owner-" NOBODY_GROUP_NAME ".service", 0, CLD_EXITED);
977 }
978
test_exec_capabilityboundingset(Manager * m)979 static void test_exec_capabilityboundingset(Manager *m) {
980 int r;
981
982 r = find_executable("capsh", NULL);
983 if (r < 0) {
984 log_notice_errno(r, "Skipping %s, could not find capsh binary: %m", __func__);
985 return;
986 }
987
988 if (have_effective_cap(CAP_CHOWN) <= 0 ||
989 have_effective_cap(CAP_FOWNER) <= 0 ||
990 have_effective_cap(CAP_KILL) <= 0) {
991 log_notice("Skipping %s, this process does not have enough capabilities", __func__);
992 return;
993 }
994
995 test(m, "exec-capabilityboundingset-simple.service", 0, CLD_EXITED);
996 test(m, "exec-capabilityboundingset-reset.service", 0, CLD_EXITED);
997 test(m, "exec-capabilityboundingset-merge.service", 0, CLD_EXITED);
998 test(m, "exec-capabilityboundingset-invert.service", 0, CLD_EXITED);
999 }
1000
test_exec_basic(Manager * m)1001 static void test_exec_basic(Manager *m) {
1002 test(m, "exec-basic.service", 0, CLD_EXITED);
1003 }
1004
test_exec_ambientcapabilities(Manager * m)1005 static void test_exec_ambientcapabilities(Manager *m) {
1006 int r;
1007
1008 /* Check if the kernel has support for ambient capabilities. Run
1009 * the tests only if that's the case. Clearing all ambient
1010 * capabilities is fine, since we are expecting them to be unset
1011 * in the first place for the tests. */
1012 r = prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_CLEAR_ALL, 0, 0, 0);
1013 if (r < 0 && IN_SET(errno, EINVAL, EOPNOTSUPP, ENOSYS)) {
1014 log_notice("Skipping %s, the kernel does not support ambient capabilities", __func__);
1015 return;
1016 }
1017
1018 if (have_effective_cap(CAP_CHOWN) <= 0 ||
1019 have_effective_cap(CAP_NET_RAW) <= 0) {
1020 log_notice("Skipping %s, this process does not have enough capabilities", __func__);
1021 return;
1022 }
1023
1024 test(m, "exec-ambientcapabilities.service", 0, CLD_EXITED);
1025 test(m, "exec-ambientcapabilities-merge.service", 0, CLD_EXITED);
1026
1027 if (!check_nobody_user_and_group()) {
1028 log_notice("nobody user/group is not synthesized or may conflict to other entries, skipping remaining tests in %s", __func__);
1029 return;
1030 }
1031
1032 if (!STR_IN_SET(NOBODY_USER_NAME, "nobody", "nfsnobody")) {
1033 log_notice("Unsupported nobody user name '%s', skipping remaining tests in %s", NOBODY_USER_NAME, __func__);
1034 return;
1035 }
1036
1037 test(m, "exec-ambientcapabilities-" NOBODY_USER_NAME ".service", 0, CLD_EXITED);
1038 test(m, "exec-ambientcapabilities-merge-" NOBODY_USER_NAME ".service", 0, CLD_EXITED);
1039 }
1040
test_exec_privatenetwork(Manager * m)1041 static void test_exec_privatenetwork(Manager *m) {
1042 int r;
1043
1044 r = find_executable("ip", NULL);
1045 if (r < 0) {
1046 log_notice_errno(r, "Skipping %s, could not find ip binary: %m", __func__);
1047 return;
1048 }
1049
1050 test(m, "exec-privatenetwork-yes.service", can_unshare ? 0 : EXIT_NETWORK, CLD_EXITED);
1051 }
1052
test_exec_oomscoreadjust(Manager * m)1053 static void test_exec_oomscoreadjust(Manager *m) {
1054 test(m, "exec-oomscoreadjust-positive.service", 0, CLD_EXITED);
1055
1056 if (detect_container() > 0) {
1057 log_notice("Testing in container, skipping remaining tests in %s", __func__);
1058 return;
1059 }
1060 test(m, "exec-oomscoreadjust-negative.service", 0, CLD_EXITED);
1061 }
1062
test_exec_ioschedulingclass(Manager * m)1063 static void test_exec_ioschedulingclass(Manager *m) {
1064 test(m, "exec-ioschedulingclass-none.service", 0, CLD_EXITED);
1065 test(m, "exec-ioschedulingclass-idle.service", 0, CLD_EXITED);
1066 test(m, "exec-ioschedulingclass-best-effort.service", 0, CLD_EXITED);
1067
1068 if (detect_container() > 0) {
1069 log_notice("Testing in container, skipping remaining tests in %s", __func__);
1070 return;
1071 }
1072 test(m, "exec-ioschedulingclass-realtime.service", 0, CLD_EXITED);
1073 }
1074
test_exec_unsetenvironment(Manager * m)1075 static void test_exec_unsetenvironment(Manager *m) {
1076 test(m, "exec-unsetenvironment.service", 0, CLD_EXITED);
1077 }
1078
test_exec_specifier(Manager * m)1079 static void test_exec_specifier(Manager *m) {
1080 test(m, "exec-specifier.service", 0, CLD_EXITED);
1081 test(m, "exec-specifier@foo-bar.service", 0, CLD_EXITED);
1082 test(m, "exec-specifier-interpolation.service", 0, CLD_EXITED);
1083 test(m, "exec-specifier-credentials-dir.service", 0, CLD_EXITED);
1084 }
1085
test_exec_standardinput(Manager * m)1086 static void test_exec_standardinput(Manager *m) {
1087 test(m, "exec-standardinput-data.service", 0, CLD_EXITED);
1088 test(m, "exec-standardinput-file.service", 0, CLD_EXITED);
1089 test(m, "exec-standardinput-file-cat.service", 0, CLD_EXITED);
1090 }
1091
test_exec_standardoutput(Manager * m)1092 static void test_exec_standardoutput(Manager *m) {
1093 test(m, "exec-standardoutput-file.service", 0, CLD_EXITED);
1094 }
1095
test_exec_standardoutput_append(Manager * m)1096 static void test_exec_standardoutput_append(Manager *m) {
1097 test(m, "exec-standardoutput-append.service", 0, CLD_EXITED);
1098 }
1099
test_exec_standardoutput_truncate(Manager * m)1100 static void test_exec_standardoutput_truncate(Manager *m) {
1101 test(m, "exec-standardoutput-truncate.service", 0, CLD_EXITED);
1102 }
1103
test_exec_condition(Manager * m)1104 static void test_exec_condition(Manager *m) {
1105 test_service(m, "exec-condition-failed.service", SERVICE_FAILURE_EXIT_CODE);
1106 test_service(m, "exec-condition-skip.service", SERVICE_SKIP_CONDITION);
1107 }
1108
test_exec_umask_namespace(Manager * m)1109 static void test_exec_umask_namespace(Manager *m) {
1110 /* exec-specifier-credentials-dir.service creates /run/credentials and enables implicit
1111 * InaccessiblePath= for the directory for all later services with mount namespace. */
1112 if (!is_inaccessible_available()) {
1113 log_notice("Testing without inaccessible, skipping %s", __func__);
1114 return;
1115 }
1116 test(m, "exec-umask-namespace.service", can_unshare ? 0 : EXIT_NAMESPACE, CLD_EXITED);
1117 }
1118
1119 typedef struct test_entry {
1120 test_function_t f;
1121 const char *name;
1122 } test_entry;
1123
1124 #define entry(x) {x, #x}
1125
run_tests(LookupScope scope,const test_entry tests[],char ** patterns)1126 static int run_tests(LookupScope scope, const test_entry tests[], char **patterns) {
1127 _cleanup_(manager_freep) Manager *m = NULL;
1128 int r;
1129
1130 assert_se(tests);
1131
1132 r = manager_new(scope, MANAGER_TEST_RUN_BASIC, &m);
1133 m->default_std_output = EXEC_OUTPUT_NULL; /* don't rely on host journald */
1134 if (manager_errno_skip_test(r))
1135 return log_tests_skipped_errno(r, "manager_new");
1136 assert_se(r >= 0);
1137 assert_se(manager_startup(m, NULL, NULL, NULL) >= 0);
1138
1139 for (const test_entry *test = tests; test->f; test++)
1140 if (strv_fnmatch_or_empty(patterns, test->name, FNM_NOESCAPE))
1141 test->f(m);
1142 else
1143 log_info("Skipping %s because it does not match any pattern.", test->name);
1144
1145 return 0;
1146 }
1147
main(int argc,char * argv[])1148 int main(int argc, char *argv[]) {
1149 _cleanup_(rm_rf_physical_and_freep) char *runtime_dir = NULL;
1150
1151 static const test_entry user_tests[] = {
1152 entry(test_exec_basic),
1153 entry(test_exec_ambientcapabilities),
1154 entry(test_exec_bindpaths),
1155 entry(test_exec_capabilityboundingset),
1156 entry(test_exec_condition),
1157 entry(test_exec_cpuaffinity),
1158 entry(test_exec_environment),
1159 entry(test_exec_environmentfile),
1160 entry(test_exec_group),
1161 entry(test_exec_ignoresigpipe),
1162 entry(test_exec_inaccessiblepaths),
1163 entry(test_exec_ioschedulingclass),
1164 entry(test_exec_mount_apivfs),
1165 entry(test_exec_noexecpaths),
1166 entry(test_exec_oomscoreadjust),
1167 entry(test_exec_passenvironment),
1168 entry(test_exec_personality),
1169 entry(test_exec_privatedevices),
1170 entry(test_exec_privatenetwork),
1171 entry(test_exec_privatetmp),
1172 entry(test_exec_protecthome),
1173 entry(test_exec_protectkernelmodules),
1174 entry(test_exec_readonlypaths),
1175 entry(test_exec_readwritepaths),
1176 entry(test_exec_restrictnamespaces),
1177 entry(test_exec_runtimedirectory),
1178 entry(test_exec_standardinput),
1179 entry(test_exec_standardoutput),
1180 entry(test_exec_standardoutput_append),
1181 entry(test_exec_standardoutput_truncate),
1182 entry(test_exec_supplementarygroups),
1183 entry(test_exec_systemcallerrornumber),
1184 entry(test_exec_systemcallfilter),
1185 entry(test_exec_temporaryfilesystem),
1186 entry(test_exec_umask),
1187 entry(test_exec_unsetenvironment),
1188 entry(test_exec_user),
1189 entry(test_exec_workingdirectory),
1190 entry(test_exec_execsearchpath),
1191 entry(test_exec_execsearchpath_environment),
1192 entry(test_exec_execsearchpath_environment_files),
1193 entry(test_exec_execsearchpath_passenvironment),
1194 {},
1195 };
1196 static const test_entry system_tests[] = {
1197 entry(test_exec_dynamicuser),
1198 entry(test_exec_specifier),
1199 entry(test_exec_execsearchpath_specifier),
1200 entry(test_exec_systemcallfilter_system),
1201 entry(test_exec_umask_namespace),
1202 {},
1203 };
1204 int r;
1205
1206 test_setup_logging(LOG_DEBUG);
1207
1208 #if HAS_FEATURE_ADDRESS_SANITIZER
1209 if (strstr_ptr(ci_environment(), "travis") || strstr_ptr(ci_environment(), "github-actions")) {
1210 log_notice("Running on Travis CI/GH Actions under ASan, skipping, see https://github.com/systemd/systemd/issues/10696");
1211 return EXIT_TEST_SKIP;
1212 }
1213 #endif
1214
1215 assert_se(unsetenv("USER") == 0);
1216 assert_se(unsetenv("LOGNAME") == 0);
1217 assert_se(unsetenv("SHELL") == 0);
1218 assert_se(unsetenv("HOME") == 0);
1219 assert_se(unsetenv("TMPDIR") == 0);
1220
1221 can_unshare = have_namespaces();
1222
1223 /* It is needed otherwise cgroup creation fails */
1224 if (geteuid() != 0 || have_effective_cap(CAP_SYS_ADMIN) <= 0)
1225 return log_tests_skipped("not privileged");
1226
1227 r = enter_cgroup_subroot(NULL);
1228 if (r == -ENOMEDIUM)
1229 return log_tests_skipped("cgroupfs not available");
1230
1231 _cleanup_free_ char *unit_dir = NULL, *unit_paths = NULL;
1232 assert_se(get_testdata_dir("test-execute/", &unit_dir) >= 0);
1233 assert_se(runtime_dir = setup_fake_runtime_dir());
1234 assert_se(user_runtime_unit_dir = path_join(runtime_dir, "systemd/user"));
1235 assert_se(unit_paths = strjoin(unit_dir, ":", user_runtime_unit_dir));
1236 assert_se(set_unit_path(unit_paths) >= 0);
1237
1238 /* Unset VAR1, VAR2 and VAR3 which are used in the PassEnvironment test
1239 * cases, otherwise (and if they are present in the environment),
1240 * `manager_default_environment` will copy them into the default
1241 * environment which is passed to each created job, which will make the
1242 * tests that expect those not to be present to fail.
1243 */
1244 assert_se(unsetenv("VAR1") == 0);
1245 assert_se(unsetenv("VAR2") == 0);
1246 assert_se(unsetenv("VAR3") == 0);
1247
1248 r = run_tests(LOOKUP_SCOPE_USER, user_tests, argv + 1);
1249 if (r != 0)
1250 return r;
1251
1252 r = run_tests(LOOKUP_SCOPE_SYSTEM, system_tests, argv + 1);
1253 if (r != 0)
1254 return r;
1255
1256 #if HAVE_SECCOMP
1257 /* The following tests are for 1beab8b0d0ff2d7d1436b52d4a0c3d56dc908962. */
1258 if (!is_seccomp_available()) {
1259 log_notice("Seccomp not available, skipping unshare() filtered tests.");
1260 return 0;
1261 }
1262
1263 _cleanup_hashmap_free_ Hashmap *s = NULL;
1264 assert_se(s = hashmap_new(NULL));
1265 r = seccomp_syscall_resolve_name("unshare");
1266 assert_se(r != __NR_SCMP_ERROR);
1267 assert_se(hashmap_put(s, UINT32_TO_PTR(r + 1), INT_TO_PTR(-1)) >= 0);
1268 assert_se(seccomp_load_syscall_filter_set_raw(SCMP_ACT_ALLOW, s, SCMP_ACT_ERRNO(EOPNOTSUPP), true) >= 0);
1269 assert_se(unshare(CLONE_NEWNS) < 0);
1270 assert_se(errno == EOPNOTSUPP);
1271
1272 can_unshare = false;
1273
1274 r = run_tests(LOOKUP_SCOPE_USER, user_tests, argv + 1);
1275 if (r != 0)
1276 return r;
1277
1278 return run_tests(LOOKUP_SCOPE_SYSTEM, system_tests, argv + 1);
1279 #else
1280 return 0;
1281 #endif
1282 }
1283