chiark / gitweb /
3834a1162e5ab4e55061566b25ea5666d3c1784b
[elogind.git] / src / libelogind / sd-event / test-event.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3   This file is part of systemd.
4
5   Copyright 2013 Lennart Poettering
6 ***/
7
8 #include <sys/wait.h>
9
10 #include "sd-event.h"
11
12 //#include "alloc-util.h"
13 #include "fd-util.h"
14 //#include "fileio.h"
15 //#include "fs-util.h"
16 #include "log.h"
17 #include "macro.h"
18 //#include "parse-util.h"
19 //#include "process-util.h"
20 //#include "rm-rf.h"
21 #include "signal-util.h"
22 //#include "stdio-util.h"
23 //#include "string-util.h"
24 #include "util.h"
25 /// Additional includes needed by elogind
26 #include "process-util.h"
27
28 static int prepare_handler(sd_event_source *s, void *userdata) {
29         log_info("preparing %c", PTR_TO_INT(userdata));
30         return 1;
31 }
32
33 static bool got_a, got_b, got_c, got_unref;
34 static unsigned got_d;
35
36 static int unref_handler(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
37         sd_event_source_unref(s);
38         got_unref = true;
39         return 0;
40 }
41
42 static int io_handler(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
43
44         log_info("got IO on %c", PTR_TO_INT(userdata));
45
46         if (userdata == INT_TO_PTR('a')) {
47                 assert_se(sd_event_source_set_enabled(s, SD_EVENT_OFF) >= 0);
48                 assert_se(!got_a);
49                 got_a = true;
50         } else if (userdata == INT_TO_PTR('b')) {
51                 assert_se(!got_b);
52                 got_b = true;
53         } else if (userdata == INT_TO_PTR('d')) {
54                 got_d++;
55                 if (got_d < 2)
56                         assert_se(sd_event_source_set_enabled(s, SD_EVENT_ONESHOT) >= 0);
57                 else
58                         assert_se(sd_event_source_set_enabled(s, SD_EVENT_OFF) >= 0);
59         } else
60                 assert_not_reached("Yuck!");
61
62         return 1;
63 }
64
65 static int child_handler(sd_event_source *s, const siginfo_t *si, void *userdata) {
66
67         assert_se(s);
68         assert_se(si);
69
70         log_info("got child on %c", PTR_TO_INT(userdata));
71
72         assert_se(userdata == INT_TO_PTR('f'));
73
74         assert_se(sd_event_exit(sd_event_source_get_event(s), 0) >= 0);
75         sd_event_source_unref(s);
76
77         return 1;
78 }
79
80 static int signal_handler(sd_event_source *s, const struct signalfd_siginfo *si, void *userdata) {
81         sd_event_source *p = NULL;
82         pid_t pid;
83
84         assert_se(s);
85         assert_se(si);
86
87         log_info("got signal on %c", PTR_TO_INT(userdata));
88
89         assert_se(userdata == INT_TO_PTR('e'));
90
91         assert_se(sigprocmask_many(SIG_BLOCK, NULL, SIGCHLD, -1) >= 0);
92
93         pid = fork();
94         assert_se(pid >= 0);
95
96         if (pid == 0)
97                 _exit(EXIT_SUCCESS);
98
99         assert_se(sd_event_add_child(sd_event_source_get_event(s), &p, pid, WEXITED, child_handler, INT_TO_PTR('f')) >= 0);
100         assert_se(sd_event_source_set_enabled(p, SD_EVENT_ONESHOT) >= 0);
101
102         sd_event_source_unref(s);
103
104         return 1;
105 }
106
107 static int defer_handler(sd_event_source *s, void *userdata) {
108         sd_event_source *p = NULL;
109
110         assert_se(s);
111
112         log_info("got defer on %c", PTR_TO_INT(userdata));
113
114         assert_se(userdata == INT_TO_PTR('d'));
115
116         assert_se(sigprocmask_many(SIG_BLOCK, NULL, SIGUSR1, -1) >= 0);
117
118         assert_se(sd_event_add_signal(sd_event_source_get_event(s), &p, SIGUSR1, signal_handler, INT_TO_PTR('e')) >= 0);
119         assert_se(sd_event_source_set_enabled(p, SD_EVENT_ONESHOT) >= 0);
120         raise(SIGUSR1);
121
122         sd_event_source_unref(s);
123
124         return 1;
125 }
126
127 static bool do_quit = false;
128
129 static int time_handler(sd_event_source *s, uint64_t usec, void *userdata) {
130         log_info("got timer on %c", PTR_TO_INT(userdata));
131
132         if (userdata == INT_TO_PTR('c')) {
133
134                 if (do_quit) {
135                         sd_event_source *p;
136
137                         assert_se(sd_event_add_defer(sd_event_source_get_event(s), &p, defer_handler, INT_TO_PTR('d')) >= 0);
138                         assert_se(sd_event_source_set_enabled(p, SD_EVENT_ONESHOT) >= 0);
139                 } else {
140                         assert_se(!got_c);
141                         got_c = true;
142                 }
143         } else
144                 assert_not_reached("Huh?");
145
146         return 2;
147 }
148
149 static bool got_exit = false;
150
151 static int exit_handler(sd_event_source *s, void *userdata) {
152         log_info("got quit handler on %c", PTR_TO_INT(userdata));
153
154         got_exit = true;
155
156         return 3;
157 }
158
159 static bool got_post = false;
160
161 static int post_handler(sd_event_source *s, void *userdata) {
162         log_info("got post handler");
163
164         got_post = true;
165
166         return 2;
167 }
168
169 static void test_basic(void) {
170         sd_event *e = NULL;
171         sd_event_source *w = NULL, *x = NULL, *y = NULL, *z = NULL, *q = NULL, *t = NULL;
172         static const char ch = 'x';
173         int a[2] = { -1, -1 }, b[2] = { -1, -1}, d[2] = { -1, -1}, k[2] = { -1, -1 };
174         uint64_t event_now;
175         int64_t priority;
176
177         assert_se(pipe(a) >= 0);
178         assert_se(pipe(b) >= 0);
179         assert_se(pipe(d) >= 0);
180         assert_se(pipe(k) >= 0);
181
182         assert_se(sd_event_default(&e) >= 0);
183         assert_se(sd_event_now(e, CLOCK_MONOTONIC, &event_now) > 0);
184
185         assert_se(sd_event_set_watchdog(e, true) >= 0);
186
187         /* Test whether we cleanly can destroy an io event source from its own handler */
188         got_unref = false;
189         assert_se(sd_event_add_io(e, &t, k[0], EPOLLIN, unref_handler, NULL) >= 0);
190         assert_se(write(k[1], &ch, 1) == 1);
191         assert_se(sd_event_run(e, (uint64_t) -1) >= 1);
192         assert_se(got_unref);
193
194         got_a = false, got_b = false, got_c = false, got_d = 0;
195
196         /* Add a oneshot handler, trigger it, re-enable it, and trigger
197          * it again. */
198         assert_se(sd_event_add_io(e, &w, d[0], EPOLLIN, io_handler, INT_TO_PTR('d')) >= 0);
199         assert_se(sd_event_source_set_enabled(w, SD_EVENT_ONESHOT) >= 0);
200         assert_se(write(d[1], &ch, 1) >= 0);
201         assert_se(sd_event_run(e, (uint64_t) -1) >= 1);
202         assert_se(got_d == 1);
203         assert_se(write(d[1], &ch, 1) >= 0);
204         assert_se(sd_event_run(e, (uint64_t) -1) >= 1);
205         assert_se(got_d == 2);
206
207         assert_se(sd_event_add_io(e, &x, a[0], EPOLLIN, io_handler, INT_TO_PTR('a')) >= 0);
208         assert_se(sd_event_add_io(e, &y, b[0], EPOLLIN, io_handler, INT_TO_PTR('b')) >= 0);
209         assert_se(sd_event_add_time(e, &z, CLOCK_MONOTONIC, 0, 0, time_handler, INT_TO_PTR('c')) >= 0);
210         assert_se(sd_event_add_exit(e, &q, exit_handler, INT_TO_PTR('g')) >= 0);
211
212         assert_se(sd_event_source_set_priority(x, 99) >= 0);
213         assert_se(sd_event_source_get_priority(x, &priority) >= 0);
214         assert_se(priority == 99);
215         assert_se(sd_event_source_set_enabled(y, SD_EVENT_ONESHOT) >= 0);
216         assert_se(sd_event_source_set_prepare(x, prepare_handler) >= 0);
217         assert_se(sd_event_source_set_priority(z, 50) >= 0);
218         assert_se(sd_event_source_set_enabled(z, SD_EVENT_ONESHOT) >= 0);
219         assert_se(sd_event_source_set_prepare(z, prepare_handler) >= 0);
220
221         /* Test for floating event sources */
222         assert_se(sigprocmask_many(SIG_BLOCK, NULL, SIGRTMIN+1, -1) >= 0);
223         assert_se(sd_event_add_signal(e, NULL, SIGRTMIN+1, NULL, NULL) >= 0);
224
225         assert_se(write(a[1], &ch, 1) >= 0);
226         assert_se(write(b[1], &ch, 1) >= 0);
227
228         assert_se(!got_a && !got_b && !got_c);
229
230         assert_se(sd_event_run(e, (uint64_t) -1) >= 1);
231
232         assert_se(!got_a && got_b && !got_c);
233
234         assert_se(sd_event_run(e, (uint64_t) -1) >= 1);
235
236         assert_se(!got_a && got_b && got_c);
237
238         assert_se(sd_event_run(e, (uint64_t) -1) >= 1);
239
240         assert_se(got_a && got_b && got_c);
241
242         sd_event_source_unref(x);
243         sd_event_source_unref(y);
244
245         do_quit = true;
246         assert_se(sd_event_add_post(e, NULL, post_handler, NULL) >= 0);
247         assert_se(sd_event_now(e, CLOCK_MONOTONIC, &event_now) == 0);
248         assert_se(sd_event_source_set_time(z, event_now + 200 * USEC_PER_MSEC) >= 0);
249         assert_se(sd_event_source_set_enabled(z, SD_EVENT_ONESHOT) >= 0);
250
251         assert_se(sd_event_loop(e) >= 0);
252         assert_se(got_post);
253         assert_se(got_exit);
254
255         sd_event_source_unref(z);
256         sd_event_source_unref(q);
257
258         sd_event_source_unref(w);
259
260         sd_event_unref(e);
261
262         safe_close_pair(a);
263         safe_close_pair(b);
264         safe_close_pair(d);
265         safe_close_pair(k);
266 }
267
268 static void test_sd_event_now(void) {
269         _cleanup_(sd_event_unrefp) sd_event *e = NULL;
270         uint64_t event_now;
271
272         assert_se(sd_event_new(&e) >= 0);
273         assert_se(sd_event_now(e, CLOCK_MONOTONIC, &event_now) > 0);
274         assert_se(sd_event_now(e, CLOCK_REALTIME, &event_now) > 0);
275         assert_se(sd_event_now(e, CLOCK_REALTIME_ALARM, &event_now) > 0);
276         if (clock_boottime_supported()) {
277                 assert_se(sd_event_now(e, CLOCK_BOOTTIME, &event_now) > 0);
278                 assert_se(sd_event_now(e, CLOCK_BOOTTIME_ALARM, &event_now) > 0);
279         }
280         assert_se(sd_event_now(e, -1, &event_now) == -EOPNOTSUPP);
281         assert_se(sd_event_now(e, 900 /* arbitrary big number */, &event_now) == -EOPNOTSUPP);
282
283         assert_se(sd_event_run(e, 0) == 0);
284
285         assert_se(sd_event_now(e, CLOCK_MONOTONIC, &event_now) == 0);
286         assert_se(sd_event_now(e, CLOCK_REALTIME, &event_now) == 0);
287         assert_se(sd_event_now(e, CLOCK_REALTIME_ALARM, &event_now) == 0);
288         if (clock_boottime_supported()) {
289                 assert_se(sd_event_now(e, CLOCK_BOOTTIME, &event_now) == 0);
290                 assert_se(sd_event_now(e, CLOCK_BOOTTIME_ALARM, &event_now) == 0);
291         }
292         assert_se(sd_event_now(e, -1, &event_now) == -EOPNOTSUPP);
293         assert_se(sd_event_now(e, 900 /* arbitrary big number */, &event_now) == -EOPNOTSUPP);
294 }
295
296 static int last_rtqueue_sigval = 0;
297 static int n_rtqueue = 0;
298
299 static int rtqueue_handler(sd_event_source *s, const struct signalfd_siginfo *si, void *userdata) {
300         last_rtqueue_sigval = si->ssi_int;
301         n_rtqueue++;
302         return 0;
303 }
304
305 static void test_rtqueue(void) {
306         sd_event_source *u = NULL, *v = NULL, *s = NULL;
307         sd_event *e = NULL;
308
309         assert_se(sd_event_default(&e) >= 0);
310
311         assert_se(sigprocmask_many(SIG_BLOCK, NULL, SIGRTMIN+2, SIGRTMIN+3, SIGUSR2, -1) >= 0);
312         assert_se(sd_event_add_signal(e, &u, SIGRTMIN+2, rtqueue_handler, NULL) >= 0);
313         assert_se(sd_event_add_signal(e, &v, SIGRTMIN+3, rtqueue_handler, NULL) >= 0);
314         assert_se(sd_event_add_signal(e, &s, SIGUSR2, rtqueue_handler, NULL) >= 0);
315
316         assert_se(sd_event_source_set_priority(v, -10) >= 0);
317
318         assert_se(sigqueue(getpid_cached(), SIGRTMIN+2, (union sigval) { .sival_int = 1 }) >= 0);
319         assert_se(sigqueue(getpid_cached(), SIGRTMIN+3, (union sigval) { .sival_int = 2 }) >= 0);
320         assert_se(sigqueue(getpid_cached(), SIGUSR2, (union sigval) { .sival_int = 3 }) >= 0);
321         assert_se(sigqueue(getpid_cached(), SIGRTMIN+3, (union sigval) { .sival_int = 4 }) >= 0);
322         assert_se(sigqueue(getpid_cached(), SIGUSR2, (union sigval) { .sival_int = 5 }) >= 0);
323
324         assert_se(n_rtqueue == 0);
325         assert_se(last_rtqueue_sigval == 0);
326
327         assert_se(sd_event_run(e, (uint64_t) -1) >= 1);
328         assert_se(n_rtqueue == 1);
329         assert_se(last_rtqueue_sigval == 2); /* first SIGRTMIN+3 */
330
331         assert_se(sd_event_run(e, (uint64_t) -1) >= 1);
332         assert_se(n_rtqueue == 2);
333         assert_se(last_rtqueue_sigval == 4); /* second SIGRTMIN+3 */
334
335         assert_se(sd_event_run(e, (uint64_t) -1) >= 1);
336         assert_se(n_rtqueue == 3);
337         assert_se(last_rtqueue_sigval == 3); /* first SIGUSR2 */
338
339         assert_se(sd_event_run(e, (uint64_t) -1) >= 1);
340         assert_se(n_rtqueue == 4);
341         assert_se(last_rtqueue_sigval == 1); /* SIGRTMIN+2 */
342
343         assert_se(sd_event_run(e, 0) == 0); /* the other SIGUSR2 is dropped, because the first one was still queued */
344         assert_se(n_rtqueue == 4);
345         assert_se(last_rtqueue_sigval == 1);
346
347         sd_event_source_unref(u);
348         sd_event_source_unref(v);
349         sd_event_source_unref(s);
350
351         sd_event_unref(e);
352 }
353
354 #define CREATE_EVENTS_MAX (70000U)
355
356 struct inotify_context {
357         bool delete_self_handler_called;
358         unsigned create_called[CREATE_EVENTS_MAX];
359         unsigned create_overflow;
360         unsigned n_create_events;
361 };
362
363 static void maybe_exit(sd_event_source *s, struct inotify_context *c) {
364         unsigned n;
365
366         assert(s);
367         assert(c);
368
369         if (!c->delete_self_handler_called)
370                 return;
371
372         for (n = 0; n < 3; n++) {
373                 unsigned i;
374
375                 if (c->create_overflow & (1U << n))
376                         continue;
377
378                 for (i = 0; i < c->n_create_events; i++)
379                         if (!(c->create_called[i] & (1U << n)))
380                                 return;
381         }
382
383         sd_event_exit(sd_event_source_get_event(s), 0);
384 }
385
386 static int inotify_handler(sd_event_source *s, const struct inotify_event *ev, void *userdata) {
387         struct inotify_context *c = userdata;
388         const char *description;
389         unsigned bit, n;
390
391         assert_se(sd_event_source_get_description(s, &description) >= 0);
392         assert_se(safe_atou(description, &n) >= 0);
393
394         assert_se(n <= 3);
395         bit = 1U << n;
396
397         if (ev->mask & IN_Q_OVERFLOW) {
398                 log_info("inotify-handler <%s>: overflow", description);
399                 c->create_overflow |= bit;
400         } else if (ev->mask & IN_CREATE) {
401                 unsigned i;
402
403                 log_info("inotify-handler <%s>: create on %s", description, ev->name);
404
405                 if (!streq(ev->name, "sub")) {
406                         assert_se(safe_atou(ev->name, &i) >= 0);
407
408                         assert_se(i < c->n_create_events);
409                         c->create_called[i] |= bit;
410                 }
411         } else if (ev->mask & IN_DELETE) {
412                 log_info("inotify-handler <%s>: delete of %s", description, ev->name);
413                 assert_se(streq(ev->name, "sub"));
414         } else
415                 assert_not_reached("unexpected inotify event");
416
417         maybe_exit(s, c);
418         return 1;
419 }
420
421 static int delete_self_handler(sd_event_source *s, const struct inotify_event *ev, void *userdata) {
422         struct inotify_context *c = userdata;
423
424         if (ev->mask & IN_Q_OVERFLOW) {
425                 log_info("delete-self-handler: overflow");
426                 c->delete_self_handler_called = true;
427         } else if (ev->mask & IN_DELETE_SELF) {
428                 log_info("delete-self-handler: delete-self");
429                 c->delete_self_handler_called = true;
430         } else if (ev->mask & IN_IGNORED) {
431                 log_info("delete-self-handler: ignore");
432         } else
433                 assert_not_reached("unexpected inotify event (delete-self)");
434
435         maybe_exit(s, c);
436         return 1;
437 }
438
439 static void test_inotify(unsigned n_create_events) {
440         _cleanup_(rm_rf_physical_and_freep) char *p = NULL;
441         sd_event_source *a = NULL, *b = NULL, *c = NULL, *d = NULL;
442         struct inotify_context context = {
443                 .n_create_events = n_create_events,
444         };
445         sd_event *e = NULL;
446         const char *q;
447         unsigned i;
448
449         assert_se(sd_event_default(&e) >= 0);
450
451         assert_se(mkdtemp_malloc("/tmp/test-inotify-XXXXXX", &p) >= 0);
452
453         assert_se(sd_event_add_inotify(e, &a, p, IN_CREATE|IN_ONLYDIR, inotify_handler, &context) >= 0);
454         assert_se(sd_event_add_inotify(e, &b, p, IN_CREATE|IN_DELETE|IN_DONT_FOLLOW, inotify_handler, &context) >= 0);
455         assert_se(sd_event_source_set_priority(b, SD_EVENT_PRIORITY_IDLE) >= 0);
456         assert_se(sd_event_source_set_priority(b, SD_EVENT_PRIORITY_NORMAL) >= 0);
457         assert_se(sd_event_add_inotify(e, &c, p, IN_CREATE|IN_DELETE|IN_EXCL_UNLINK, inotify_handler, &context) >= 0);
458         assert_se(sd_event_source_set_priority(c, SD_EVENT_PRIORITY_IDLE) >= 0);
459
460         assert_se(sd_event_source_set_description(a, "0") >= 0);
461         assert_se(sd_event_source_set_description(b, "1") >= 0);
462         assert_se(sd_event_source_set_description(c, "2") >= 0);
463
464         q = strjoina(p, "/sub");
465         assert_se(touch(q) >= 0);
466         assert_se(sd_event_add_inotify(e, &d, q, IN_DELETE_SELF, delete_self_handler, &context) >= 0);
467
468         for (i = 0; i < n_create_events; i++) {
469                 char buf[DECIMAL_STR_MAX(unsigned)+1];
470                 _cleanup_free_ char *z;
471
472                 xsprintf(buf, "%u", i);
473                 assert_se(z = strjoin(p, "/", buf));
474
475                 assert_se(touch(z) >= 0);
476         }
477
478         assert_se(unlink(q) >= 0);
479
480         assert_se(sd_event_loop(e) >= 0);
481
482         sd_event_source_unref(a);
483         sd_event_source_unref(b);
484         sd_event_source_unref(c);
485         sd_event_source_unref(d);
486
487         sd_event_unref(e);
488 }
489
490 int main(int argc, char *argv[]) {
491
492         log_set_max_level(LOG_DEBUG);
493         log_parse_environment();
494
495         test_basic();
496         test_sd_event_now();
497         test_rtqueue();
498
499         test_inotify(100); /* should work without overflow */
500         test_inotify(33000); /* should trigger a q overflow */
501
502         return 0;
503 }