]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/test/test-execute.c
core: make sure to destroy all name watching bus slots when we are kicked off the...
[thirdparty/systemd.git] / src / test / test-execute.c
CommitLineData
281e05b6
RC
1/***
2 This file is part of systemd.
3
4 Copyright 2014 Ronny Chevalier
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
cc7fa4fb
RC
20#include <grp.h>
21#include <pwd.h>
ff4ca461 22#include <stdio.h>
70d7aea5 23#include <sys/prctl.h>
ff4ca461 24#include <sys/types.h>
281e05b6 25
03bd70dd 26#include "fileio.h"
f4f15635 27#include "fs-util.h"
281e05b6 28#include "macro.h"
f4f15635 29#include "manager.h"
281e05b6 30#include "mkdir.h"
ff4ca461 31#include "path-util.h"
c6878637 32#include "rm-rf.h"
83f12b27
FS
33#ifdef HAVE_SECCOMP
34#include "seccomp-util.h"
35#endif
34b86909 36#include "stat-util.h"
8b3aa503 37#include "test-helper.h"
f4f15635
LP
38#include "unit.h"
39#include "util.h"
4dd4cb8f 40#include "virt.h"
281e05b6
RC
41
42typedef void (*test_function_t)(Manager *m);
43
44static void check(Manager *m, Unit *unit, int status_expected, int code_expected) {
45 Service *service = NULL;
46 usec_t ts;
47 usec_t timeout = 2 * USEC_PER_SEC;
48
49 assert_se(m);
50 assert_se(unit);
51
52 service = SERVICE(unit);
53 printf("%s\n", unit->id);
54 exec_context_dump(&service->exec_context, stdout, "\t");
55 ts = now(CLOCK_MONOTONIC);
56 while (service->state != SERVICE_DEAD && service->state != SERVICE_FAILED) {
57 int r;
58 usec_t n;
59
60 r = sd_event_run(m->event, 100 * USEC_PER_MSEC);
61 assert_se(r >= 0);
62
63 n = now(CLOCK_MONOTONIC);
64 if (ts + timeout < n) {
65 log_error("Test timeout when testing %s", unit->id);
66 exit(EXIT_FAILURE);
67 }
68 }
69 exec_status_dump(&service->main_exec_status, stdout, "\t");
70 assert_se(service->main_exec_status.status == status_expected);
71 assert_se(service->main_exec_status.code == code_expected);
72}
73
6086d2da
DP
74static bool is_inaccessible_available(void) {
75 char *p;
76
77 FOREACH_STRING(p,
78 "/run/systemd/inaccessible/reg",
79 "/run/systemd/inaccessible/dir",
80 "/run/systemd/inaccessible/chr",
81 "/run/systemd/inaccessible/blk",
82 "/run/systemd/inaccessible/fifo",
83 "/run/systemd/inaccessible/sock"
84 ) {
85 if (access(p, F_OK) < 0)
86 return false;
87 }
88
89 return true;
90}
91
281e05b6
RC
92static void test(Manager *m, const char *unit_name, int status_expected, int code_expected) {
93 Unit *unit;
94
95 assert_se(unit_name);
96
97 assert_se(manager_load_unit(m, unit_name, NULL, NULL, &unit) >= 0);
98 assert_se(UNIT_VTABLE(unit)->start(unit) >= 0);
99 check(m, unit, status_expected, code_expected);
100}
101
102static void test_exec_workingdirectory(Manager *m) {
103 assert_se(mkdir_p("/tmp/test-exec_workingdirectory", 0755) >= 0);
104
105 test(m, "exec-workingdirectory.service", 0, CLD_EXITED);
106
c6878637 107 (void) rm_rf("/tmp/test-exec_workingdirectory", REMOVE_ROOT|REMOVE_PHYSICAL);
281e05b6
RC
108}
109
110static void test_exec_personality(Manager *m) {
281e05b6
RC
111#if defined(__x86_64__)
112 test(m, "exec-personality-x86-64.service", 0, CLD_EXITED);
7517f51e
HB
113
114#elif defined(__s390__)
115 test(m, "exec-personality-s390.service", 0, CLD_EXITED);
116
12591863
JS
117#elif defined(__powerpc64__)
118# if __BYTE_ORDER == __BIG_ENDIAN
119 test(m, "exec-personality-ppc64.service", 0, CLD_EXITED);
120# else
121 test(m, "exec-personality-ppc64le.service", 0, CLD_EXITED);
122# endif
123
124#elif defined(__aarch64__)
125 test(m, "exec-personality-aarch64.service", 0, CLD_EXITED);
126
5798eb4c 127#elif defined(__i386__)
7517f51e 128 test(m, "exec-personality-x86.service", 0, CLD_EXITED);
281e05b6
RC
129#endif
130}
131
132static void test_exec_ignoresigpipe(Manager *m) {
133 test(m, "exec-ignoresigpipe-yes.service", 0, CLD_EXITED);
134 test(m, "exec-ignoresigpipe-no.service", SIGPIPE, CLD_KILLED);
135}
136
137static void test_exec_privatetmp(Manager *m) {
138 assert_se(touch("/tmp/test-exec_privatetmp") >= 0);
139
140 test(m, "exec-privatetmp-yes.service", 0, CLD_EXITED);
141 test(m, "exec-privatetmp-no.service", 0, CLD_EXITED);
142
143 unlink("/tmp/test-exec_privatetmp");
144}
145
146static void test_exec_privatedevices(Manager *m) {
4dd4cb8f
SM
147 if (detect_container() > 0) {
148 log_notice("testing in container, skipping private device tests");
149 return;
150 }
6086d2da
DP
151 if (!is_inaccessible_available()) {
152 log_notice("testing without inaccessible, skipping private device tests");
153 return;
154 }
155
281e05b6
RC
156 test(m, "exec-privatedevices-yes.service", 0, CLD_EXITED);
157 test(m, "exec-privatedevices-no.service", 0, CLD_EXITED);
158}
159
615a1f4b
DH
160static void test_exec_privatedevices_capabilities(Manager *m) {
161 if (detect_container() > 0) {
162 log_notice("testing in container, skipping private device tests");
163 return;
164 }
6086d2da
DP
165 if (!is_inaccessible_available()) {
166 log_notice("testing without inaccessible, skipping private device tests");
167 return;
168 }
169
615a1f4b
DH
170 test(m, "exec-privatedevices-yes-capability-mknod.service", 0, CLD_EXITED);
171 test(m, "exec-privatedevices-no-capability-mknod.service", 0, CLD_EXITED);
625d8769
DH
172 test(m, "exec-privatedevices-yes-capability-sys-rawio.service", 0, CLD_EXITED);
173 test(m, "exec-privatedevices-no-capability-sys-rawio.service", 0, CLD_EXITED);
615a1f4b
DH
174}
175
4982dbcc 176static void test_exec_protectkernelmodules(Manager *m) {
3ae33295
DH
177 if (detect_container() > 0) {
178 log_notice("testing in container, skipping protectkernelmodules tests");
179 return;
180 }
6086d2da
DP
181 if (!is_inaccessible_available()) {
182 log_notice("testing without inaccessible, skipping protectkernelmodules tests");
183 return;
184 }
3ae33295
DH
185
186 test(m, "exec-protectkernelmodules-no-capabilities.service", 0, CLD_EXITED);
187 test(m, "exec-protectkernelmodules-yes-capabilities.service", 0, CLD_EXITED);
4982dbcc 188 test(m, "exec-protectkernelmodules-yes-mount-propagation.service", 0, CLD_EXITED);
3ae33295
DH
189}
190
f78b36f0 191static void test_exec_readonlypaths(Manager *m) {
34b86909
LP
192
193 if (path_is_read_only_fs("/var") > 0)
194 return;
195
f78b36f0 196 test(m, "exec-readonlypaths.service", 0, CLD_EXITED);
cdfbd1fb
DH
197 test(m, "exec-readonlypaths-mount-propagation.service", 0, CLD_EXITED);
198}
199
200static void test_exec_readwritepaths(Manager *m) {
34b86909
LP
201
202 if (path_is_read_only_fs("/") > 0)
203 return;
204
cdfbd1fb
DH
205 test(m, "exec-readwritepaths-mount-propagation.service", 0, CLD_EXITED);
206}
207
208static void test_exec_inaccessiblepaths(Manager *m) {
34b86909
LP
209
210 if (path_is_read_only_fs("/") > 0)
211 return;
212
cdfbd1fb 213 test(m, "exec-inaccessiblepaths-mount-propagation.service", 0, CLD_EXITED);
f78b36f0
DH
214}
215
281e05b6
RC
216static void test_exec_systemcallfilter(Manager *m) {
217#ifdef HAVE_SECCOMP
83f12b27
FS
218 if (!is_seccomp_available())
219 return;
281e05b6
RC
220 test(m, "exec-systemcallfilter-not-failing.service", 0, CLD_EXITED);
221 test(m, "exec-systemcallfilter-not-failing2.service", 0, CLD_EXITED);
222 test(m, "exec-systemcallfilter-failing.service", SIGSYS, CLD_KILLED);
223 test(m, "exec-systemcallfilter-failing2.service", SIGSYS, CLD_KILLED);
83f12b27 224
281e05b6
RC
225#endif
226}
227
228static void test_exec_systemcallerrornumber(Manager *m) {
229#ifdef HAVE_SECCOMP
83f12b27
FS
230 if (is_seccomp_available())
231 test(m, "exec-systemcallerrornumber.service", 1, CLD_EXITED);
281e05b6
RC
232#endif
233}
234
97e60383
DH
235static void test_exec_restrict_namespaces(Manager *m) {
236#ifdef HAVE_SECCOMP
237 if (!is_seccomp_available())
238 return;
239
240 test(m, "exec-restrict-namespaces-no.service", 0, CLD_EXITED);
241 test(m, "exec-restrict-namespaces-yes.service", 1, CLD_EXITED);
242 test(m, "exec-restrict-namespaces-mnt.service", 0, CLD_EXITED);
243 test(m, "exec-restrict-namespaces-mnt-blacklist.service", 1, CLD_EXITED);
244#endif
245}
246
19c0b0b9
RC
247static void test_exec_systemcall_system_mode_with_user(Manager *m) {
248#ifdef HAVE_SECCOMP
83f12b27
FS
249 if (!is_seccomp_available())
250 return;
19c0b0b9
RC
251 if (getpwnam("nobody"))
252 test(m, "exec-systemcallfilter-system-user.service", 0, CLD_EXITED);
50f130c2
RC
253 else if (getpwnam("nfsnobody"))
254 test(m, "exec-systemcallfilter-system-user-nfsnobody.service", 0, CLD_EXITED);
19c0b0b9 255 else
50f130c2 256 log_error_errno(errno, "Skipping test_exec_systemcall_system_mode_with_user, could not find nobody/nfsnobody user: %m");
19c0b0b9
RC
257#endif
258}
259
281e05b6 260static void test_exec_user(Manager *m) {
cc7fa4fb
RC
261 if (getpwnam("nobody"))
262 test(m, "exec-user.service", 0, CLD_EXITED);
50f130c2
RC
263 else if (getpwnam("nfsnobody"))
264 test(m, "exec-user-nfsnobody.service", 0, CLD_EXITED);
ff4ca461 265 else
50f130c2 266 log_error_errno(errno, "Skipping test_exec_user, could not find nobody/nfsnobody user: %m");
281e05b6
RC
267}
268
269static void test_exec_group(Manager *m) {
cc7fa4fb
RC
270 if (getgrnam("nobody"))
271 test(m, "exec-group.service", 0, CLD_EXITED);
50f130c2
RC
272 else if (getgrnam("nfsnobody"))
273 test(m, "exec-group-nfsnobody.service", 0, CLD_EXITED);
ff4ca461 274 else
50f130c2 275 log_error_errno(errno, "Skipping test_exec_group, could not find nobody/nfsnobody group: %m");
281e05b6
RC
276}
277
86b838ea
DH
278static void test_exec_supplementary_groups(Manager *m) {
279 test(m, "exec-supplementarygroups.service", 0, CLD_EXITED);
bf9ace96
DH
280 test(m, "exec-supplementarygroups-single-group.service", 0, CLD_EXITED);
281 test(m, "exec-supplementarygroups-single-group-user.service", 0, CLD_EXITED);
50ca7a35
DH
282 test(m, "exec-supplementarygroups-multiple-groups-default-group-user.service", 0, CLD_EXITED);
283 test(m, "exec-supplementarygroups-multiple-groups-withgid.service", 0, CLD_EXITED);
284 test(m, "exec-supplementarygroups-multiple-groups-withuid.service", 0, CLD_EXITED);
86b838ea
DH
285}
286
2b9ac11e
DH
287static void test_exec_dynamic_user(Manager *m) {
288 test(m, "exec-dynamicuser-fixeduser.service", 0, CLD_EXITED);
289 test(m, "exec-dynamicuser-fixeduser-one-supplementarygroup.service", 0, CLD_EXITED);
5c67067f 290 test(m, "exec-dynamicuser-supplementarygroups.service", 0, CLD_EXITED);
2b9ac11e
DH
291}
292
281e05b6
RC
293static void test_exec_environment(Manager *m) {
294 test(m, "exec-environment.service", 0, CLD_EXITED);
295 test(m, "exec-environment-multiple.service", 0, CLD_EXITED);
296 test(m, "exec-environment-empty.service", 0, CLD_EXITED);
297}
298
03bd70dd
RC
299static void test_exec_environmentfile(Manager *m) {
300 static const char e[] =
301 "VAR1='word1 word2'\n"
302 "VAR2=word3 \n"
303 "# comment1\n"
304 "\n"
305 "; comment2\n"
306 " ; # comment3\n"
307 "line without an equal\n"
308 "VAR3='$word 5 6'\n";
309 int r;
310
311 r = write_string_file("/tmp/test-exec_environmentfile.conf", e, WRITE_STRING_FILE_CREATE);
312 assert_se(r == 0);
313
314 test(m, "exec-environmentfile.service", 0, CLD_EXITED);
315
316 unlink("/tmp/test-exec_environmentfile.conf");
317}
318
4c80d201 319static void test_exec_passenvironment(Manager *m) {
e1abca2e
FB
320 /* test-execute runs under MANAGER_USER which, by default, forwards all
321 * variables present in the environment, but only those that are
322 * present _at the time it is created_!
323 *
324 * So these PassEnvironment checks are still expected to work, since we
325 * are ensuring the variables are not present at manager creation (they
326 * are unset explicitly in main) and are only set here.
327 *
328 * This is still a good approximation of how a test for MANAGER_SYSTEM
329 * would work.
330 */
4c80d201
FB
331 assert_se(setenv("VAR1", "word1 word2", 1) == 0);
332 assert_se(setenv("VAR2", "word3", 1) == 0);
333 assert_se(setenv("VAR3", "$word 5 6", 1) == 0);
334 test(m, "exec-passenvironment.service", 0, CLD_EXITED);
335 test(m, "exec-passenvironment-repeated.service", 0, CLD_EXITED);
336 test(m, "exec-passenvironment-empty.service", 0, CLD_EXITED);
337 assert_se(unsetenv("VAR1") == 0);
338 assert_se(unsetenv("VAR2") == 0);
339 assert_se(unsetenv("VAR3") == 0);
340 test(m, "exec-passenvironment-absent.service", 0, CLD_EXITED);
341}
342
27c5347c
RC
343static void test_exec_umask(Manager *m) {
344 test(m, "exec-umask-default.service", 0, CLD_EXITED);
345 test(m, "exec-umask-0177.service", 0, CLD_EXITED);
346}
347
cc3ddc85
RC
348static void test_exec_runtimedirectory(Manager *m) {
349 test(m, "exec-runtimedirectory.service", 0, CLD_EXITED);
350 test(m, "exec-runtimedirectory-mode.service", 0, CLD_EXITED);
cc7fa4fb
RC
351 if (getgrnam("nobody"))
352 test(m, "exec-runtimedirectory-owner.service", 0, CLD_EXITED);
50f130c2
RC
353 else if (getgrnam("nfsnobody"))
354 test(m, "exec-runtimedirectory-owner-nfsnobody.service", 0, CLD_EXITED);
ff4ca461 355 else
50f130c2 356 log_error_errno(errno, "Skipping test_exec_runtimedirectory-owner, could not find nobody/nfsnobody group: %m");
ff4ca461
RC
357}
358
359static void test_exec_capabilityboundingset(Manager *m) {
360 int r;
361
362 /* We use capsh to test if the capabilities are
363 * properly set, so be sure that it exists */
364 r = find_binary("capsh", NULL);
365 if (r < 0) {
366 log_error_errno(r, "Skipping test_exec_capabilityboundingset, could not find capsh binary: %m");
367 return;
368 }
369
370 test(m, "exec-capabilityboundingset-simple.service", 0, CLD_EXITED);
371 test(m, "exec-capabilityboundingset-reset.service", 0, CLD_EXITED);
372 test(m, "exec-capabilityboundingset-merge.service", 0, CLD_EXITED);
373 test(m, "exec-capabilityboundingset-invert.service", 0, CLD_EXITED);
cc3ddc85
RC
374}
375
70d7aea5
IP
376static void test_exec_capabilityambientset(Manager *m) {
377 int r;
378
379 /* Check if the kernel has support for ambient capabilities. Run
380 * the tests only if that's the case. Clearing all ambient
381 * capabilities is fine, since we are expecting them to be unset
382 * in the first place for the tests. */
383 r = prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_CLEAR_ALL, 0, 0, 0);
384 if (r >= 0 || errno != EINVAL) {
50f130c2 385 if (getpwnam("nobody")) {
50f130c2
RC
386 test(m, "exec-capabilityambientset.service", 0, CLD_EXITED);
387 test(m, "exec-capabilityambientset-merge.service", 0, CLD_EXITED);
34f5ff46
RC
388 } else if (getpwnam("nfsnobody")) {
389 test(m, "exec-capabilityambientset-nfsnobody.service", 0, CLD_EXITED);
390 test(m, "exec-capabilityambientset-merge-nfsnobody.service", 0, CLD_EXITED);
50f130c2
RC
391 } else
392 log_error_errno(errno, "Skipping test_exec_capabilityambientset, could not find nobody/nfsnobody user: %m");
393 } else
394 log_error_errno(errno, "Skipping test_exec_capabilityambientset, the kernel does not support ambient capabilities: %m");
70d7aea5
IP
395}
396
63447f11
RC
397static void test_exec_privatenetwork(Manager *m) {
398 int r;
399
400 r = find_binary("ip", NULL);
401 if (r < 0) {
402 log_error_errno(r, "Skipping test_exec_privatenetwork, could not find ip binary: %m");
403 return;
404 }
405
406 test(m, "exec-privatenetwork-yes.service", 0, CLD_EXITED);
407}
408
c388dfea
RC
409static void test_exec_oomscoreadjust(Manager *m) {
410 test(m, "exec-oomscoreadjust-positive.service", 0, CLD_EXITED);
411 test(m, "exec-oomscoreadjust-negative.service", 0, CLD_EXITED);
412}
413
a6226758
RC
414static void test_exec_ioschedulingclass(Manager *m) {
415 test(m, "exec-ioschedulingclass-none.service", 0, CLD_EXITED);
416 test(m, "exec-ioschedulingclass-idle.service", 0, CLD_EXITED);
417 test(m, "exec-ioschedulingclass-realtime.service", 0, CLD_EXITED);
418 test(m, "exec-ioschedulingclass-best-effort.service", 0, CLD_EXITED);
419}
420
25254999
EV
421static void test_exec_spec_interpolation(Manager *m) {
422 test(m, "exec-spec-interpolation.service", 0, CLD_EXITED);
423}
424
ea9cfad1
LP
425static int run_tests(UnitFileScope scope, const test_function_t *tests) {
426 const test_function_t *test = NULL;
19c0b0b9
RC
427 Manager *m = NULL;
428 int r;
429
430 assert_se(tests);
431
463d0d15 432 r = manager_new(scope, true, &m);
19c0b0b9 433 if (MANAGER_SKIP_TEST(r)) {
2179fd10 434 log_notice_errno(r, "Skipping test: manager_new: %m");
19c0b0b9
RC
435 return EXIT_TEST_SKIP;
436 }
437 assert_se(r >= 0);
438 assert_se(manager_startup(m, NULL, NULL) >= 0);
439
440 for (test = tests; test && *test; test++)
441 (*test)(m);
442
443 manager_free(m);
444
445 return 0;
446}
447
281e05b6 448int main(int argc, char *argv[]) {
ea9cfad1 449 static const test_function_t user_tests[] = {
281e05b6
RC
450 test_exec_workingdirectory,
451 test_exec_personality,
452 test_exec_ignoresigpipe,
453 test_exec_privatetmp,
454 test_exec_privatedevices,
615a1f4b 455 test_exec_privatedevices_capabilities,
4982dbcc 456 test_exec_protectkernelmodules,
f78b36f0 457 test_exec_readonlypaths,
cdfbd1fb
DH
458 test_exec_readwritepaths,
459 test_exec_inaccessiblepaths,
63447f11 460 test_exec_privatenetwork,
281e05b6
RC
461 test_exec_systemcallfilter,
462 test_exec_systemcallerrornumber,
97e60383 463 test_exec_restrict_namespaces,
281e05b6
RC
464 test_exec_user,
465 test_exec_group,
86b838ea 466 test_exec_supplementary_groups,
2b9ac11e 467 test_exec_dynamic_user,
281e05b6 468 test_exec_environment,
03bd70dd 469 test_exec_environmentfile,
4c80d201 470 test_exec_passenvironment,
27c5347c 471 test_exec_umask,
cc3ddc85 472 test_exec_runtimedirectory,
ff4ca461 473 test_exec_capabilityboundingset,
70d7aea5 474 test_exec_capabilityambientset,
c388dfea 475 test_exec_oomscoreadjust,
a6226758 476 test_exec_ioschedulingclass,
25254999 477 test_exec_spec_interpolation,
281e05b6
RC
478 NULL,
479 };
ea9cfad1 480 static const test_function_t system_tests[] = {
19c0b0b9
RC
481 test_exec_systemcall_system_mode_with_user,
482 NULL,
483 };
281e05b6
RC
484 int r;
485
469830d1 486 log_set_max_level(LOG_DEBUG);
281e05b6
RC
487 log_parse_environment();
488 log_open();
489
607ff5f9
DH
490 /* It is needed otherwise cgroup creation fails */
491 if (getuid() != 0) {
492 printf("Skipping test: not root\n");
493 return EXIT_TEST_SKIP;
494 }
495
cc3ddc85 496 assert_se(setenv("XDG_RUNTIME_DIR", "/tmp/", 1) == 0);
ac400816 497 assert_se(set_unit_path(TEST_DIR "/test-execute/") >= 0);
281e05b6 498
e1abca2e
FB
499 /* Unset VAR1, VAR2 and VAR3 which are used in the PassEnvironment test
500 * cases, otherwise (and if they are present in the environment),
501 * `manager_default_environment` will copy them into the default
502 * environment which is passed to each created job, which will make the
503 * tests that expect those not to be present to fail.
504 */
505 assert_se(unsetenv("VAR1") == 0);
506 assert_se(unsetenv("VAR2") == 0);
507 assert_se(unsetenv("VAR3") == 0);
508
463d0d15 509 r = run_tests(UNIT_FILE_USER, user_tests);
19c0b0b9
RC
510 if (r != 0)
511 return r;
281e05b6 512
463d0d15 513 return run_tests(UNIT_FILE_SYSTEM, system_tests);
281e05b6 514}