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