2 This file is part of systemd.
4 Copyright 2014 Ronny Chevalier
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.
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.
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/>.
28 typedef void (*test_function_t)(Manager *m);
30 static void check(Manager *m, Unit *unit, int status_expected, int code_expected) {
31 Service *service = NULL;
33 usec_t timeout = 2 * USEC_PER_SEC;
38 service = SERVICE(unit);
39 printf("%s\n", unit->id);
40 exec_context_dump(&service->exec_context, stdout, "\t");
41 ts = now(CLOCK_MONOTONIC);
42 while (service->state != SERVICE_DEAD && service->state != SERVICE_FAILED) {
46 r = sd_event_run(m->event, 100 * USEC_PER_MSEC);
49 n = now(CLOCK_MONOTONIC);
50 if (ts + timeout < n) {
51 log_error("Test timeout when testing %s", unit->id);
55 exec_status_dump(&service->main_exec_status, stdout, "\t");
56 assert_se(service->main_exec_status.status == status_expected);
57 assert_se(service->main_exec_status.code == code_expected);
60 static void test(Manager *m, const char *unit_name, int status_expected, int code_expected) {
65 assert_se(manager_load_unit(m, unit_name, NULL, NULL, &unit) >= 0);
66 assert_se(UNIT_VTABLE(unit)->start(unit) >= 0);
67 check(m, unit, status_expected, code_expected);
70 static void test_exec_workingdirectory(Manager *m) {
71 assert_se(mkdir_p("/tmp/test-exec_workingdirectory", 0755) >= 0);
73 test(m, "exec-workingdirectory.service", 0, CLD_EXITED);
75 rm_rf_dangerous("/tmp/test-exec_workingdirectory", false, true, false);
78 static void test_exec_personality(Manager *m) {
79 test(m, "exec-personality-x86.service", 0, CLD_EXITED);
81 #if defined(__x86_64__)
82 test(m, "exec-personality-x86-64.service", 0, CLD_EXITED);
86 static void test_exec_ignoresigpipe(Manager *m) {
87 test(m, "exec-ignoresigpipe-yes.service", 0, CLD_EXITED);
88 test(m, "exec-ignoresigpipe-no.service", SIGPIPE, CLD_KILLED);
91 static void test_exec_privatetmp(Manager *m) {
92 assert_se(touch("/tmp/test-exec_privatetmp") >= 0);
94 test(m, "exec-privatetmp-yes.service", 0, CLD_EXITED);
95 test(m, "exec-privatetmp-no.service", 0, CLD_EXITED);
97 unlink("/tmp/test-exec_privatetmp");
100 static void test_exec_privatedevices(Manager *m) {
101 test(m, "exec-privatedevices-yes.service", 0, CLD_EXITED);
102 test(m, "exec-privatedevices-no.service", 0, CLD_EXITED);
105 static void test_exec_systemcallfilter(Manager *m) {
107 test(m, "exec-systemcallfilter-not-failing.service", 0, CLD_EXITED);
108 test(m, "exec-systemcallfilter-not-failing2.service", 0, CLD_EXITED);
109 test(m, "exec-systemcallfilter-failing.service", SIGSYS, CLD_KILLED);
110 test(m, "exec-systemcallfilter-failing2.service", SIGSYS, CLD_KILLED);
114 static void test_exec_systemcallerrornumber(Manager *m) {
116 test(m, "exec-systemcallerrornumber.service", 1, CLD_EXITED);
120 static void test_exec_user(Manager *m) {
121 test(m, "exec-user.service", 0, CLD_EXITED);
124 static void test_exec_group(Manager *m) {
125 test(m, "exec-group.service", 0, CLD_EXITED);
128 static void test_exec_environment(Manager *m) {
129 test(m, "exec-environment.service", 0, CLD_EXITED);
130 test(m, "exec-environment-multiple.service", 0, CLD_EXITED);
131 test(m, "exec-environment-empty.service", 0, CLD_EXITED);
134 static void test_exec_umask(Manager *m) {
135 test(m, "exec-umask-default.service", 0, CLD_EXITED);
136 test(m, "exec-umask-0177.service", 0, CLD_EXITED);
139 int main(int argc, char *argv[]) {
140 test_function_t tests[] = {
141 test_exec_workingdirectory,
142 test_exec_personality,
143 test_exec_ignoresigpipe,
144 test_exec_privatetmp,
145 test_exec_privatedevices,
146 test_exec_systemcallfilter,
147 test_exec_systemcallerrornumber,
150 test_exec_environment,
154 test_function_t *test = NULL;
158 log_parse_environment();
161 /* It is needed otherwise cgroup creation fails */
163 printf("Skipping test: not root\n");
164 return EXIT_TEST_SKIP;
167 assert_se(set_unit_path(TEST_DIR ":") >= 0);
169 r = manager_new(SYSTEMD_USER, true, &m);
170 if (IN_SET(r, -EPERM, -EACCES, -EADDRINUSE, -EHOSTDOWN, -ENOENT)) {
171 printf("Skipping test: manager_new: %s", strerror(-r));
172 return EXIT_TEST_SKIP;
175 assert_se(manager_startup(m, NULL, NULL) >= 0);
177 for (test = tests; test && *test; test++)