]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-util.c
tree-wide: add FORMAT_BYTES()
[thirdparty/systemd.git] / src / test / test-util.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <errno.h>
4 #include <sys/wait.h>
5 #include <unistd.h>
6
7 #include "fileio.h"
8 #include "fs-util.h"
9 #include "limits-util.h"
10 #include "memory-util.h"
11 #include "missing_syscall.h"
12 #include "parse-util.h"
13 #include "process-util.h"
14 #include "raw-clone.h"
15 #include "rm-rf.h"
16 #include "string-util.h"
17 #include "tests.h"
18 #include "util.h"
19
20 static void test_align_power2(void) {
21 unsigned long i, p2;
22
23 log_info("/* %s */", __func__);
24
25 assert_se(ALIGN_POWER2(0) == 0);
26 assert_se(ALIGN_POWER2(1) == 1);
27 assert_se(ALIGN_POWER2(2) == 2);
28 assert_se(ALIGN_POWER2(3) == 4);
29 assert_se(ALIGN_POWER2(4) == 4);
30 assert_se(ALIGN_POWER2(5) == 8);
31 assert_se(ALIGN_POWER2(6) == 8);
32 assert_se(ALIGN_POWER2(7) == 8);
33 assert_se(ALIGN_POWER2(9) == 16);
34 assert_se(ALIGN_POWER2(10) == 16);
35 assert_se(ALIGN_POWER2(11) == 16);
36 assert_se(ALIGN_POWER2(12) == 16);
37 assert_se(ALIGN_POWER2(13) == 16);
38 assert_se(ALIGN_POWER2(14) == 16);
39 assert_se(ALIGN_POWER2(15) == 16);
40 assert_se(ALIGN_POWER2(16) == 16);
41 assert_se(ALIGN_POWER2(17) == 32);
42
43 assert_se(ALIGN_POWER2(ULONG_MAX) == 0);
44 assert_se(ALIGN_POWER2(ULONG_MAX - 1) == 0);
45 assert_se(ALIGN_POWER2(ULONG_MAX - 1024) == 0);
46 assert_se(ALIGN_POWER2(ULONG_MAX / 2) == ULONG_MAX / 2 + 1);
47 assert_se(ALIGN_POWER2(ULONG_MAX + 1) == 0);
48
49 for (i = 1; i < 131071; ++i) {
50 for (p2 = 1; p2 < i; p2 <<= 1)
51 /* empty */ ;
52
53 assert_se(ALIGN_POWER2(i) == p2);
54 }
55
56 for (i = ULONG_MAX - 1024; i < ULONG_MAX; ++i) {
57 for (p2 = 1; p2 && p2 < i; p2 <<= 1)
58 /* empty */ ;
59
60 assert_se(ALIGN_POWER2(i) == p2);
61 }
62 }
63
64 static void test_max(void) {
65 static const struct {
66 int a;
67 int b[CONST_MAX(10, 100)];
68 } val1 = {
69 .a = CONST_MAX(10, 100),
70 };
71 int d = 0;
72 unsigned long x = 12345;
73 unsigned long y = 54321;
74 const char str[] = "a_string_constant";
75 const unsigned long long arr[] = {9999ULL, 10ULL, 0ULL, 3000ULL, 2000ULL, 1000ULL, 100ULL, 9999999ULL};
76 void *p = (void *)str;
77 void *q = (void *)&str[16];
78
79 log_info("/* %s */", __func__);
80
81 assert_cc(sizeof(val1.b) == sizeof(int) * 100);
82
83 /* CONST_MAX returns (void) instead of a value if the passed arguments
84 * are not of the same type or not constant expressions. */
85 assert_cc(__builtin_types_compatible_p(typeof(CONST_MAX(1, 10)), int));
86 assert_cc(__builtin_types_compatible_p(typeof(CONST_MAX(1, 1U)), void));
87
88 assert_se(val1.a == 100);
89 assert_se(MAX(++d, 0) == 1);
90 assert_se(d == 1);
91
92 assert_cc(MAXSIZE(char[3], uint16_t) == 3);
93 assert_cc(MAXSIZE(char[3], uint32_t) == 4);
94 assert_cc(MAXSIZE(char, long) == sizeof(long));
95
96 assert_se(MAX(-5, 5) == 5);
97 assert_se(MAX(5, 5) == 5);
98 assert_se(MAX(MAX(1, MAX(2, MAX(3, 4))), 5) == 5);
99 assert_se(MAX(MAX(1, MAX(2, MAX(3, 2))), 1) == 3);
100 assert_se(MAX(MIN(1, MIN(2, MIN(3, 4))), 5) == 5);
101 assert_se(MAX(MAX(1, MIN(2, MIN(3, 2))), 1) == 2);
102 assert_se(LESS_BY(8, 4) == 4);
103 assert_se(LESS_BY(8, 8) == 0);
104 assert_se(LESS_BY(4, 8) == 0);
105 assert_se(LESS_BY(16, LESS_BY(8, 4)) == 12);
106 assert_se(LESS_BY(4, LESS_BY(8, 4)) == 0);
107 assert_se(CMP(3, 5) == -1);
108 assert_se(CMP(5, 3) == 1);
109 assert_se(CMP(5, 5) == 0);
110 assert_se(CMP(x, y) == -1);
111 assert_se(CMP(y, x) == 1);
112 assert_se(CMP(x, x) == 0);
113 assert_se(CMP(y, y) == 0);
114 assert_se(CMP(UINT64_MAX, (uint64_t) 0) == 1);
115 assert_se(CMP((uint64_t) 0, UINT64_MAX) == -1);
116 assert_se(CMP(UINT64_MAX, UINT64_MAX) == 0);
117 assert_se(CMP(INT64_MIN, INT64_MAX) == -1);
118 assert_se(CMP(INT64_MAX, INT64_MIN) == 1);
119 assert_se(CMP(INT64_MAX, INT64_MAX) == 0);
120 assert_se(CMP(INT64_MIN, INT64_MIN) == 0);
121 assert_se(CMP(INT64_MAX, (int64_t) 0) == 1);
122 assert_se(CMP((int64_t) 0, INT64_MIN) == 1);
123 assert_se(CMP(INT64_MIN, (int64_t) 0) == -1);
124 assert_se(CMP((int64_t) 0, INT64_MAX) == -1);
125 assert_se(CMP(&str[2], &str[7]) == -1);
126 assert_se(CMP(&str[2], &str[2]) == 0);
127 assert_se(CMP(&str[7], (const char *)str) == 1);
128 assert_se(CMP(str[2], str[7]) == 1);
129 assert_se(CMP(str[7], *str) == 1);
130 assert_se(CMP((const unsigned long long *)arr, &arr[3]) == -1);
131 assert_se(CMP(*arr, arr[3]) == 1);
132 assert_se(CMP(p, q) == -1);
133 assert_se(CMP(q, p) == 1);
134 assert_se(CMP(p, p) == 0);
135 assert_se(CMP(q, q) == 0);
136 assert_se(CLAMP(-5, 0, 1) == 0);
137 assert_se(CLAMP(5, 0, 1) == 1);
138 assert_se(CLAMP(5, -10, 1) == 1);
139 assert_se(CLAMP(5, -10, 10) == 5);
140 assert_se(CLAMP(CLAMP(0, -10, 10), CLAMP(-5, 10, 20), CLAMP(100, -5, 20)) == 10);
141 }
142
143 #pragma GCC diagnostic push
144 #ifdef __clang__
145 # pragma GCC diagnostic ignored "-Waddress-of-packed-member"
146 #endif
147
148 static void test_container_of(void) {
149 struct mytype {
150 uint8_t pad1[3];
151 uint64_t v1;
152 uint8_t pad2[2];
153 uint32_t v2;
154 } myval = { };
155
156 log_info("/* %s */", __func__);
157
158 assert_cc(sizeof(myval) >= 17);
159 assert_se(container_of(&myval.v1, struct mytype, v1) == &myval);
160 assert_se(container_of(&myval.v2, struct mytype, v2) == &myval);
161 assert_se(container_of(&container_of(&myval.v2,
162 struct mytype,
163 v2)->v1,
164 struct mytype,
165 v1) == &myval);
166 }
167
168 #pragma GCC diagnostic pop
169
170 static void test_div_round_up(void) {
171 int div;
172
173 log_info("/* %s */", __func__);
174
175 /* basic tests */
176 assert_se(DIV_ROUND_UP(0, 8) == 0);
177 assert_se(DIV_ROUND_UP(1, 8) == 1);
178 assert_se(DIV_ROUND_UP(8, 8) == 1);
179 assert_se(DIV_ROUND_UP(12, 8) == 2);
180 assert_se(DIV_ROUND_UP(16, 8) == 2);
181
182 /* test multiple evaluation */
183 div = 0;
184 assert_se(DIV_ROUND_UP(div++, 8) == 0 && div == 1);
185 assert_se(DIV_ROUND_UP(++div, 8) == 1 && div == 2);
186 assert_se(DIV_ROUND_UP(8, div++) == 4 && div == 3);
187 assert_se(DIV_ROUND_UP(8, ++div) == 2 && div == 4);
188
189 /* overflow test with exact division */
190 assert_se(sizeof(0U) == 4);
191 assert_se(0xfffffffaU % 10U == 0U);
192 assert_se(0xfffffffaU / 10U == 429496729U);
193 assert_se(DIV_ROUND_UP(0xfffffffaU, 10U) == 429496729U);
194 assert_se((0xfffffffaU + 10U - 1U) / 10U == 0U);
195 assert_se(0xfffffffaU / 10U + !!(0xfffffffaU % 10U) == 429496729U);
196
197 /* overflow test with rounded division */
198 assert_se(0xfffffffdU % 10U == 3U);
199 assert_se(0xfffffffdU / 10U == 429496729U);
200 assert_se(DIV_ROUND_UP(0xfffffffdU, 10U) == 429496730U);
201 assert_se((0xfffffffdU + 10U - 1U) / 10U == 0U);
202 assert_se(0xfffffffdU / 10U + !!(0xfffffffdU % 10U) == 429496730U);
203 }
204
205 static void test_u64log2(void) {
206 log_info("/* %s */", __func__);
207
208 assert_se(u64log2(0) == 0);
209 assert_se(u64log2(8) == 3);
210 assert_se(u64log2(9) == 3);
211 assert_se(u64log2(15) == 3);
212 assert_se(u64log2(16) == 4);
213 assert_se(u64log2(1024*1024) == 20);
214 assert_se(u64log2(1024*1024+5) == 20);
215 }
216
217 static void test_protect_errno(void) {
218 log_info("/* %s */", __func__);
219
220 errno = 12;
221 {
222 PROTECT_ERRNO;
223 errno = 11;
224 }
225 assert_se(errno == 12);
226 }
227
228 static void test_unprotect_errno_inner_function(void) {
229 PROTECT_ERRNO;
230
231 errno = 2222;
232 }
233
234 static void test_unprotect_errno(void) {
235 log_info("/* %s */", __func__);
236
237 errno = 4711;
238
239 PROTECT_ERRNO;
240
241 errno = 815;
242
243 UNPROTECT_ERRNO;
244
245 assert_se(errno == 4711);
246
247 test_unprotect_errno_inner_function();
248
249 assert_se(errno == 4711);
250 }
251
252 static void test_in_set(void) {
253 log_info("/* %s */", __func__);
254
255 assert_se(IN_SET(1, 1));
256 assert_se(IN_SET(1, 1, 2, 3, 4));
257 assert_se(IN_SET(2, 1, 2, 3, 4));
258 assert_se(IN_SET(3, 1, 2, 3, 4));
259 assert_se(IN_SET(4, 1, 2, 3, 4));
260 assert_se(!IN_SET(0, 1));
261 assert_se(!IN_SET(0, 1, 2, 3, 4));
262 }
263
264 static void test_log2i(void) {
265 log_info("/* %s */", __func__);
266
267 assert_se(log2i(1) == 0);
268 assert_se(log2i(2) == 1);
269 assert_se(log2i(3) == 1);
270 assert_se(log2i(4) == 2);
271 assert_se(log2i(32) == 5);
272 assert_se(log2i(33) == 5);
273 assert_se(log2i(63) == 5);
274 assert_se(log2i(INT_MAX) == sizeof(int)*8-2);
275 }
276
277 static void test_eqzero(void) {
278 const uint32_t zeros[] = {0, 0, 0};
279 const uint32_t ones[] = {1, 1};
280 const uint32_t mixed[] = {0, 1, 0, 0, 0};
281 const uint8_t longer[] = {[55] = 255};
282
283 log_info("/* %s */", __func__);
284
285 assert_se(eqzero(zeros));
286 assert_se(!eqzero(ones));
287 assert_se(!eqzero(mixed));
288 assert_se(!eqzero(longer));
289 }
290
291 static void test_raw_clone(void) {
292 pid_t parent, pid, pid2;
293
294 log_info("/* %s */", __func__);
295
296 parent = getpid();
297 log_info("before clone: getpid()→"PID_FMT, parent);
298 assert_se(raw_getpid() == parent);
299
300 pid = raw_clone(0);
301 assert_se(pid >= 0);
302
303 pid2 = raw_getpid();
304 log_info("raw_clone: "PID_FMT" getpid()→"PID_FMT" raw_getpid()→"PID_FMT,
305 pid, getpid(), pid2);
306 if (pid == 0) {
307 assert_se(pid2 != parent);
308 _exit(EXIT_SUCCESS);
309 } else {
310 int status;
311
312 assert_se(pid2 == parent);
313 waitpid(pid, &status, __WCLONE);
314 assert_se(WIFEXITED(status) && WEXITSTATUS(status) == EXIT_SUCCESS);
315 }
316
317 errno = 0;
318 assert_se(raw_clone(CLONE_FS|CLONE_NEWNS) == -1);
319 assert_se(errno == EINVAL || ERRNO_IS_PRIVILEGE(errno)); /* Certain container environments prohibit namespaces to us, don't fail in that case */
320 }
321
322 static void test_physical_memory(void) {
323 uint64_t p;
324
325 log_info("/* %s */", __func__);
326
327 p = physical_memory();
328 assert_se(p > 0);
329 assert_se(p < UINT64_MAX);
330 assert_se(p % page_size() == 0);
331
332 log_info("Memory: %s (%" PRIu64 ")", FORMAT_BYTES(p), p);
333 }
334
335 static void test_physical_memory_scale(void) {
336 uint64_t p;
337
338 log_info("/* %s */", __func__);
339
340 p = physical_memory();
341
342 assert_se(physical_memory_scale(0, 100) == 0);
343 assert_se(physical_memory_scale(100, 100) == p);
344
345 log_info("Memory original: %" PRIu64, physical_memory());
346 log_info("Memory scaled by 50%%: %" PRIu64, physical_memory_scale(50, 100));
347 log_info("Memory divided by 2: %" PRIu64, physical_memory() / 2);
348 log_info("Page size: %zu", page_size());
349
350 /* There might be an uneven number of pages, hence permit these calculations to be half a page off... */
351 assert_se(page_size()/2 + physical_memory_scale(50, 100) - p/2 <= page_size());
352 assert_se(physical_memory_scale(200, 100) == p*2);
353
354 assert_se(physical_memory_scale(0, 1) == 0);
355 assert_se(physical_memory_scale(1, 1) == p);
356 assert_se(physical_memory_scale(2, 1) == p*2);
357
358 assert_se(physical_memory_scale(0, 2) == 0);
359
360 assert_se(page_size()/2 + physical_memory_scale(1, 2) - p/2 <= page_size());
361 assert_se(physical_memory_scale(2, 2) == p);
362 assert_se(physical_memory_scale(4, 2) == p*2);
363
364 assert_se(physical_memory_scale(0, UINT32_MAX) == 0);
365 assert_se(physical_memory_scale(UINT32_MAX, UINT32_MAX) == p);
366
367 /* overflow */
368 assert_se(physical_memory_scale(UINT64_MAX/4, UINT64_MAX) == UINT64_MAX);
369 }
370
371 static void test_system_tasks_max(void) {
372 uint64_t t;
373
374 log_info("/* %s */", __func__);
375
376 t = system_tasks_max();
377 assert_se(t > 0);
378 assert_se(t < UINT64_MAX);
379
380 log_info("Max tasks: %" PRIu64, t);
381 }
382
383 static void test_system_tasks_max_scale(void) {
384 uint64_t t;
385
386 log_info("/* %s */", __func__);
387
388 t = system_tasks_max();
389
390 assert_se(system_tasks_max_scale(0, 100) == 0);
391 assert_se(system_tasks_max_scale(100, 100) == t);
392
393 assert_se(system_tasks_max_scale(0, 1) == 0);
394 assert_se(system_tasks_max_scale(1, 1) == t);
395 assert_se(system_tasks_max_scale(2, 1) == 2*t);
396
397 assert_se(system_tasks_max_scale(0, 2) == 0);
398 assert_se(system_tasks_max_scale(1, 2) == t/2);
399 assert_se(system_tasks_max_scale(2, 2) == t);
400 assert_se(system_tasks_max_scale(3, 2) == (3*t)/2);
401 assert_se(system_tasks_max_scale(4, 2) == t*2);
402
403 assert_se(system_tasks_max_scale(0, UINT32_MAX) == 0);
404 assert_se(system_tasks_max_scale((UINT32_MAX-1)/2, UINT32_MAX-1) == t/2);
405 assert_se(system_tasks_max_scale(UINT32_MAX, UINT32_MAX) == t);
406
407 /* overflow */
408
409 assert_se(system_tasks_max_scale(UINT64_MAX/4, UINT64_MAX) == UINT64_MAX);
410 }
411
412 static void test_foreach_pointer(void) {
413 int a, b, c, *i;
414 size_t k = 0;
415
416 log_info("/* %s */", __func__);
417
418 FOREACH_POINTER(i, &a, &b, &c) {
419 switch (k) {
420
421 case 0:
422 assert_se(i == &a);
423 break;
424
425 case 1:
426 assert_se(i == &b);
427 break;
428
429 case 2:
430 assert_se(i == &c);
431 break;
432
433 default:
434 assert_not_reached("unexpected index");
435 break;
436 }
437
438 k++;
439 }
440
441 assert(k == 3);
442
443 FOREACH_POINTER(i, &b) {
444 assert(k == 3);
445 assert(i == &b);
446 k = 4;
447 }
448
449 assert(k == 4);
450
451 FOREACH_POINTER(i, NULL, &c, NULL, &b, NULL, &a, NULL) {
452 switch (k) {
453
454 case 4:
455 assert_se(i == NULL);
456 break;
457
458 case 5:
459 assert_se(i == &c);
460 break;
461
462 case 6:
463 assert_se(i == NULL);
464 break;
465
466 case 7:
467 assert_se(i == &b);
468 break;
469
470 case 8:
471 assert_se(i == NULL);
472 break;
473
474 case 9:
475 assert_se(i == &a);
476 break;
477
478 case 10:
479 assert_se(i == NULL);
480 break;
481
482 default:
483 assert_not_reached("unexpected index");
484 break;
485 }
486
487 k++;
488 }
489
490 assert(k == 11);
491 }
492
493 static void test_ptr_to_int(void) {
494 log_info("/* %s */", __func__);
495
496 /* Primary reason to have this test is to validate that pointers are large enough to hold entire int range */
497 assert_se(PTR_TO_INT(INT_TO_PTR(0)) == 0);
498 assert_se(PTR_TO_INT(INT_TO_PTR(1)) == 1);
499 assert_se(PTR_TO_INT(INT_TO_PTR(-1)) == -1);
500 assert_se(PTR_TO_INT(INT_TO_PTR(INT_MAX)) == INT_MAX);
501 assert_se(PTR_TO_INT(INT_TO_PTR(INT_MIN)) == INT_MIN);
502 }
503
504 int main(int argc, char *argv[]) {
505 test_setup_logging(LOG_INFO);
506
507 test_align_power2();
508 test_max();
509 test_container_of();
510 test_div_round_up();
511 test_u64log2();
512 test_protect_errno();
513 test_unprotect_errno();
514 test_in_set();
515 test_log2i();
516 test_eqzero();
517 test_raw_clone();
518 test_physical_memory();
519 test_physical_memory_scale();
520 test_system_tasks_max();
521 test_system_tasks_max_scale();
522 test_foreach_pointer();
523 test_ptr_to_int();
524
525 return 0;
526 }