]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-capability.c
capability: fix build without PR_CAP_AMBIENT
[thirdparty/systemd.git] / src / test / test-capability.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <netinet/in.h>
4 #include <pwd.h>
5 #include <sys/capability.h>
6 #include <sys/prctl.h>
7 #include <sys/socket.h>
8 #include <sys/wait.h>
9 #include <unistd.h>
10
11 #include "alloc-util.h"
12 #include "capability-util.h"
13 #include "fd-util.h"
14 #include "fileio.h"
15 #include "macro.h"
16 #include "missing_prctl.h"
17 #include "parse-util.h"
18 #include "tests.h"
19 #include "util.h"
20
21 static uid_t test_uid = -1;
22 static gid_t test_gid = -1;
23
24 #if HAS_FEATURE_ADDRESS_SANITIZER
25 /* Keep CAP_SYS_PTRACE when running under Address Sanitizer */
26 static const uint64_t test_flags = UINT64_C(1) << CAP_SYS_PTRACE;
27 #else
28 /* We keep CAP_DAC_OVERRIDE to avoid errors with gcov when doing test coverage */
29 static const uint64_t test_flags = UINT64_C(1) << CAP_DAC_OVERRIDE;
30 #endif
31
32 /* verify cap_last_cap() against /proc/sys/kernel/cap_last_cap */
33 static void test_last_cap_file(void) {
34 _cleanup_free_ char *content = NULL;
35 unsigned long val = 0;
36 int r;
37
38 r = read_one_line_file("/proc/sys/kernel/cap_last_cap", &content);
39 assert_se(r >= 0);
40
41 r = safe_atolu(content, &val);
42 assert_se(r >= 0);
43 assert_se(val != 0);
44 assert_se(val == cap_last_cap());
45 }
46
47 /* verify cap_last_cap() against syscall probing */
48 static void test_last_cap_probe(void) {
49 unsigned long p = (unsigned long)CAP_LAST_CAP;
50
51 if (prctl(PR_CAPBSET_READ, p) < 0) {
52 for (p--; p > 0; p --)
53 if (prctl(PR_CAPBSET_READ, p) >= 0)
54 break;
55 } else {
56 for (;; p++)
57 if (prctl(PR_CAPBSET_READ, p+1) < 0)
58 break;
59 }
60
61 assert_se(p != 0);
62 assert_se(p == cap_last_cap());
63 }
64
65 static void fork_test(void (*test_func)(void)) {
66 pid_t pid = 0;
67
68 pid = fork();
69 assert_se(pid >= 0);
70 if (pid == 0) {
71 test_func();
72 exit(EXIT_SUCCESS);
73 } else if (pid > 0) {
74 int status;
75
76 assert_se(waitpid(pid, &status, 0) > 0);
77 assert_se(WIFEXITED(status) && WEXITSTATUS(status) == 0);
78 }
79 }
80
81 static void show_capabilities(void) {
82 cap_t caps;
83 char *text;
84
85 caps = cap_get_proc();
86 assert_se(caps);
87
88 text = cap_to_text(caps, NULL);
89 assert_se(text);
90
91 log_info("Capabilities:%s", text);
92 cap_free(caps);
93 cap_free(text);
94 }
95
96 static int setup_tests(bool *run_ambient) {
97 struct passwd *nobody;
98 int r;
99
100 nobody = getpwnam(NOBODY_USER_NAME);
101 if (!nobody)
102 return log_error_errno(errno, "Could not find nobody user: %m");
103
104 test_uid = nobody->pw_uid;
105 test_gid = nobody->pw_gid;
106
107 *run_ambient = false;
108
109 r = prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_CLEAR_ALL, 0, 0, 0);
110
111 /* There's support for PR_CAP_AMBIENT if the prctl() call
112 * succeeded or error code was something else than EINVAL. The
113 * EINVAL check should be good enough to rule out false
114 * positives. */
115
116 if (r >= 0 || errno != EINVAL)
117 *run_ambient = true;
118
119 return 0;
120 }
121
122 static void test_drop_privileges_keep_net_raw(void) {
123 int sock;
124
125 sock = socket(AF_INET, SOCK_RAW, IPPROTO_UDP);
126 assert_se(sock >= 0);
127 safe_close(sock);
128
129 assert_se(drop_privileges(test_uid, test_gid, test_flags | (1ULL << CAP_NET_RAW)) >= 0);
130 assert_se(getuid() == test_uid);
131 assert_se(getgid() == test_gid);
132 show_capabilities();
133
134 sock = socket(AF_INET, SOCK_RAW, IPPROTO_UDP);
135 assert_se(sock >= 0);
136 safe_close(sock);
137 }
138
139 static void test_drop_privileges_dontkeep_net_raw(void) {
140 int sock;
141
142 sock = socket(AF_INET, SOCK_RAW, IPPROTO_UDP);
143 assert_se(sock >= 0);
144 safe_close(sock);
145
146 assert_se(drop_privileges(test_uid, test_gid, test_flags) >= 0);
147 assert_se(getuid() == test_uid);
148 assert_se(getgid() == test_gid);
149 show_capabilities();
150
151 sock = socket(AF_INET, SOCK_RAW, IPPROTO_UDP);
152 assert_se(sock < 0);
153 }
154
155 static void test_drop_privileges_fail(void) {
156 assert_se(drop_privileges(test_uid, test_gid, test_flags) >= 0);
157 assert_se(getuid() == test_uid);
158 assert_se(getgid() == test_gid);
159
160 assert_se(drop_privileges(test_uid, test_gid, test_flags) < 0);
161 assert_se(drop_privileges(0, 0, test_flags) < 0);
162 }
163
164 static void test_drop_privileges(void) {
165 fork_test(test_drop_privileges_keep_net_raw);
166 fork_test(test_drop_privileges_dontkeep_net_raw);
167 fork_test(test_drop_privileges_fail);
168 }
169
170 static void test_have_effective_cap(void) {
171 assert_se(have_effective_cap(CAP_KILL));
172 assert_se(have_effective_cap(CAP_CHOWN));
173
174 assert_se(drop_privileges(test_uid, test_gid, test_flags | (1ULL << CAP_KILL)) >= 0);
175 assert_se(getuid() == test_uid);
176 assert_se(getgid() == test_gid);
177
178 assert_se(have_effective_cap(CAP_KILL));
179 assert_se(!have_effective_cap(CAP_CHOWN));
180 }
181
182 static void test_update_inherited_set(void) {
183 cap_t caps;
184 uint64_t set = 0;
185 cap_flag_value_t fv;
186
187 caps = cap_get_proc();
188 assert_se(caps);
189
190 set = (UINT64_C(1) << CAP_CHOWN);
191
192 assert_se(!capability_update_inherited_set(caps, set));
193 assert_se(!cap_get_flag(caps, CAP_CHOWN, CAP_INHERITABLE, &fv));
194 assert(fv == CAP_SET);
195
196 cap_free(caps);
197 }
198
199 static void test_set_ambient_caps(void) {
200 cap_t caps;
201 uint64_t set = 0;
202 cap_flag_value_t fv;
203
204 assert_se(prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_IS_SET, CAP_CHOWN, 0, 0) == 0);
205
206 set = (UINT64_C(1) << CAP_CHOWN);
207
208 assert_se(!capability_ambient_set_apply(set, true));
209
210 caps = cap_get_proc();
211 assert_se(!cap_get_flag(caps, CAP_CHOWN, CAP_INHERITABLE, &fv));
212 assert(fv == CAP_SET);
213 cap_free(caps);
214
215 assert_se(prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_IS_SET, CAP_CHOWN, 0, 0) == 1);
216 }
217
218 int main(int argc, char *argv[]) {
219 bool run_ambient;
220
221 test_setup_logging(LOG_INFO);
222
223 test_last_cap_file();
224 test_last_cap_probe();
225
226 log_info("have ambient caps: %s", yes_no(ambient_capabilities_supported()));
227
228 if (getuid() != 0)
229 return log_tests_skipped("not running as root");
230
231 if (setup_tests(&run_ambient) < 0)
232 return log_tests_skipped("setup failed");
233
234 show_capabilities();
235
236 test_drop_privileges();
237 test_update_inherited_set();
238
239 fork_test(test_have_effective_cap);
240
241 if (run_ambient)
242 fork_test(test_set_ambient_caps);
243
244 return 0;
245 }