s3:param: factor lp_enforce_ad_dc_settings() out of lp_load_ex()
[Samba.git] / lib / tevent / testsuite.c
blobe9d1ef428376dc1bd976de3d42113e857c8d26ee
1 /*
2 Unix SMB/CIFS implementation.
4 testing of the events subsystem
6 Copyright (C) Stefan Metzmacher 2006-2009
7 Copyright (C) Jeremy Allison 2013
9 ** NOTE! The following LGPL license applies to the tevent
10 ** library. This does NOT imply that all of Samba is released
11 ** under the LGPL
13 This library is free software; you can redistribute it and/or
14 modify it under the terms of the GNU Lesser General Public
15 License as published by the Free Software Foundation; either
16 version 3 of the License, or (at your option) any later version.
18 This library is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 Lesser General Public License for more details.
23 You should have received a copy of the GNU Lesser General Public
24 License along with this library; if not, see <http://www.gnu.org/licenses/>.
27 #include "includes.h"
28 #include "lib/tevent/tevent.h"
29 #include "system/filesys.h"
30 #include "system/select.h"
31 #include "system/network.h"
32 #include "torture/torture.h"
33 #include "torture/local/proto.h"
34 #ifdef HAVE_PTHREAD
35 #include <pthread.h>
36 #include <assert.h>
37 #endif
39 static int fde_count;
41 static void fde_handler_read(struct tevent_context *ev_ctx, struct tevent_fd *f,
42 uint16_t flags, void *private_data)
44 int *fd = (int *)private_data;
45 char c;
46 #ifdef SA_SIGINFO
47 kill(getpid(), SIGUSR1);
48 #endif
49 kill(getpid(), SIGALRM);
51 read(fd[0], &c, 1);
52 fde_count++;
55 static void fde_handler_write(struct tevent_context *ev_ctx, struct tevent_fd *f,
56 uint16_t flags, void *private_data)
58 int *fd = (int *)private_data;
59 char c = 0;
60 write(fd[1], &c, 1);
64 /* This will only fire if the fd's returned from pipe() are bi-directional. */
65 static void fde_handler_read_1(struct tevent_context *ev_ctx, struct tevent_fd *f,
66 uint16_t flags, void *private_data)
68 int *fd = (int *)private_data;
69 char c;
70 #ifdef SA_SIGINFO
71 kill(getpid(), SIGUSR1);
72 #endif
73 kill(getpid(), SIGALRM);
75 read(fd[1], &c, 1);
76 fde_count++;
79 /* This will only fire if the fd's returned from pipe() are bi-directional. */
80 static void fde_handler_write_1(struct tevent_context *ev_ctx, struct tevent_fd *f,
81 uint16_t flags, void *private_data)
83 int *fd = (int *)private_data;
84 char c = 0;
85 write(fd[0], &c, 1);
88 static void finished_handler(struct tevent_context *ev_ctx, struct tevent_timer *te,
89 struct timeval tval, void *private_data)
91 int *finished = (int *)private_data;
92 (*finished) = 1;
95 static void count_handler(struct tevent_context *ev_ctx, struct tevent_signal *te,
96 int signum, int count, void *info, void *private_data)
98 int *countp = (int *)private_data;
99 (*countp) += count;
102 static bool test_event_context(struct torture_context *test,
103 const void *test_data)
105 struct tevent_context *ev_ctx;
106 int fd[2] = { -1, -1 };
107 const char *backend = (const char *)test_data;
108 int alarm_count=0, info_count=0;
109 struct tevent_fd *fde_read;
110 struct tevent_fd *fde_read_1;
111 struct tevent_fd *fde_write;
112 struct tevent_fd *fde_write_1;
113 #ifdef SA_RESTART
114 struct tevent_signal *se1 = NULL;
115 #endif
116 #ifdef SA_RESETHAND
117 struct tevent_signal *se2 = NULL;
118 #endif
119 #ifdef SA_SIGINFO
120 struct tevent_signal *se3 = NULL;
121 #endif
122 int finished=0;
123 struct timeval t;
124 int ret;
126 ev_ctx = tevent_context_init_byname(test, backend);
127 if (ev_ctx == NULL) {
128 torture_comment(test, "event backend '%s' not supported\n", backend);
129 return true;
132 torture_comment(test, "backend '%s' - %s\n",
133 backend, __FUNCTION__);
135 /* reset globals */
136 fde_count = 0;
138 /* create a pipe */
139 ret = pipe(fd);
140 torture_assert_int_equal(test, ret, 0, "pipe failed");
142 fde_read = tevent_add_fd(ev_ctx, ev_ctx, fd[0], TEVENT_FD_READ,
143 fde_handler_read, fd);
144 fde_write_1 = tevent_add_fd(ev_ctx, ev_ctx, fd[0], TEVENT_FD_WRITE,
145 fde_handler_write_1, fd);
147 fde_write = tevent_add_fd(ev_ctx, ev_ctx, fd[1], TEVENT_FD_WRITE,
148 fde_handler_write, fd);
149 fde_read_1 = tevent_add_fd(ev_ctx, ev_ctx, fd[1], TEVENT_FD_READ,
150 fde_handler_read_1, fd);
152 tevent_fd_set_auto_close(fde_read);
153 tevent_fd_set_auto_close(fde_write);
155 tevent_add_timer(ev_ctx, ev_ctx, timeval_current_ofs(2,0),
156 finished_handler, &finished);
158 #ifdef SA_RESTART
159 se1 = tevent_add_signal(ev_ctx, ev_ctx, SIGALRM, SA_RESTART, count_handler, &alarm_count);
160 torture_assert(test, se1 != NULL, "failed to setup se1");
161 #endif
162 #ifdef SA_RESETHAND
163 se2 = tevent_add_signal(ev_ctx, ev_ctx, SIGALRM, SA_RESETHAND, count_handler, &alarm_count);
164 torture_assert(test, se2 != NULL, "failed to setup se2");
165 #endif
166 #ifdef SA_SIGINFO
167 se3 = tevent_add_signal(ev_ctx, ev_ctx, SIGUSR1, SA_SIGINFO, count_handler, &info_count);
168 torture_assert(test, se3 != NULL, "failed to setup se3");
169 #endif
171 t = timeval_current();
172 while (!finished) {
173 errno = 0;
174 if (tevent_loop_once(ev_ctx) == -1) {
175 talloc_free(ev_ctx);
176 torture_fail(test, talloc_asprintf(test, "Failed event loop %s\n", strerror(errno)));
180 talloc_free(fde_read);
181 talloc_free(fde_write);
182 talloc_free(fde_read_1);
183 talloc_free(fde_write_1);
185 while (alarm_count < fde_count+1) {
186 if (tevent_loop_once(ev_ctx) == -1) {
187 break;
191 torture_comment(test, "Got %.2f pipe events/sec\n", fde_count/timeval_elapsed(&t));
193 #ifdef SA_RESTART
194 talloc_free(se1);
195 #endif
197 torture_assert_int_equal(test, alarm_count, 1+fde_count, "alarm count mismatch");
199 #ifdef SA_RESETHAND
201 * we do not call talloc_free(se2)
202 * because it is already gone,
203 * after triggering the event handler.
205 #endif
207 #ifdef SA_SIGINFO
208 talloc_free(se3);
209 torture_assert_int_equal(test, info_count, fde_count, "info count mismatch");
210 #endif
212 talloc_free(ev_ctx);
214 return true;
217 struct test_event_fd1_state {
218 struct torture_context *tctx;
219 const char *backend;
220 struct tevent_context *ev;
221 int sock[2];
222 struct tevent_timer *te;
223 struct tevent_fd *fde0;
224 struct tevent_fd *fde1;
225 bool got_write;
226 bool got_read;
227 bool drain;
228 bool drain_done;
229 unsigned loop_count;
230 bool finished;
231 const char *error;
234 static void test_event_fd1_fde_handler(struct tevent_context *ev_ctx,
235 struct tevent_fd *fde,
236 uint16_t flags,
237 void *private_data)
239 struct test_event_fd1_state *state =
240 (struct test_event_fd1_state *)private_data;
242 if (state->drain_done) {
243 state->finished = true;
244 state->error = __location__;
245 return;
248 if (state->drain) {
249 ssize_t ret;
250 uint8_t c = 0;
252 if (!(flags & TEVENT_FD_READ)) {
253 state->finished = true;
254 state->error = __location__;
255 return;
258 ret = read(state->sock[0], &c, 1);
259 if (ret == 1) {
260 return;
264 * end of test...
266 tevent_fd_set_flags(fde, 0);
267 state->drain_done = true;
268 return;
271 if (!state->got_write) {
272 uint8_t c = 0;
274 if (flags != TEVENT_FD_WRITE) {
275 state->finished = true;
276 state->error = __location__;
277 return;
279 state->got_write = true;
282 * we write to the other socket...
284 write(state->sock[1], &c, 1);
285 TEVENT_FD_NOT_WRITEABLE(fde);
286 TEVENT_FD_READABLE(fde);
287 return;
290 if (!state->got_read) {
291 if (flags != TEVENT_FD_READ) {
292 state->finished = true;
293 state->error = __location__;
294 return;
296 state->got_read = true;
298 TEVENT_FD_NOT_READABLE(fde);
299 return;
302 state->finished = true;
303 state->error = __location__;
304 return;
307 static void test_event_fd1_finished(struct tevent_context *ev_ctx,
308 struct tevent_timer *te,
309 struct timeval tval,
310 void *private_data)
312 struct test_event_fd1_state *state =
313 (struct test_event_fd1_state *)private_data;
315 if (state->drain_done) {
316 state->finished = true;
317 return;
320 if (!state->got_write) {
321 state->finished = true;
322 state->error = __location__;
323 return;
326 if (!state->got_read) {
327 state->finished = true;
328 state->error = __location__;
329 return;
332 state->loop_count++;
333 if (state->loop_count > 3) {
334 state->finished = true;
335 state->error = __location__;
336 return;
339 state->got_write = false;
340 state->got_read = false;
342 tevent_fd_set_flags(state->fde0, TEVENT_FD_WRITE);
344 if (state->loop_count > 2) {
345 state->drain = true;
346 TALLOC_FREE(state->fde1);
347 TEVENT_FD_READABLE(state->fde0);
350 state->te = tevent_add_timer(state->ev, state->ev,
351 timeval_current_ofs(0,2000),
352 test_event_fd1_finished, state);
355 static bool test_event_fd1(struct torture_context *tctx,
356 const void *test_data)
358 struct test_event_fd1_state state;
360 ZERO_STRUCT(state);
361 state.tctx = tctx;
362 state.backend = (const char *)test_data;
364 state.ev = tevent_context_init_byname(tctx, state.backend);
365 if (state.ev == NULL) {
366 torture_skip(tctx, talloc_asprintf(tctx,
367 "event backend '%s' not supported\n",
368 state.backend));
369 return true;
372 tevent_set_debug_stderr(state.ev);
373 torture_comment(tctx, "backend '%s' - %s\n",
374 state.backend, __FUNCTION__);
377 * This tests the following:
379 * It monitors the state of state.sock[0]
380 * with tevent_fd, but we never read/write on state.sock[0]
381 * while state.sock[1] * is only used to write a few bytes.
383 * We have a loop:
384 * - we wait only for TEVENT_FD_WRITE on state.sock[0]
385 * - we write 1 byte to state.sock[1]
386 * - we wait only for TEVENT_FD_READ on state.sock[0]
387 * - we disable events on state.sock[0]
388 * - the timer event restarts the loop
389 * Then we close state.sock[1]
390 * We have a loop:
391 * - we wait for TEVENT_FD_READ/WRITE on state.sock[0]
392 * - we try to read 1 byte
393 * - if the read gets an error of returns 0
394 * we disable the event handler
395 * - the timer finishes the test
397 state.sock[0] = -1;
398 state.sock[1] = -1;
399 socketpair(AF_UNIX, SOCK_STREAM, 0, state.sock);
401 state.te = tevent_add_timer(state.ev, state.ev,
402 timeval_current_ofs(0,1000),
403 test_event_fd1_finished, &state);
404 state.fde0 = tevent_add_fd(state.ev, state.ev,
405 state.sock[0], TEVENT_FD_WRITE,
406 test_event_fd1_fde_handler, &state);
407 /* state.fde1 is only used to auto close */
408 state.fde1 = tevent_add_fd(state.ev, state.ev,
409 state.sock[1], 0,
410 test_event_fd1_fde_handler, &state);
412 tevent_fd_set_auto_close(state.fde0);
413 tevent_fd_set_auto_close(state.fde1);
415 while (!state.finished) {
416 errno = 0;
417 if (tevent_loop_once(state.ev) == -1) {
418 talloc_free(state.ev);
419 torture_fail(tctx, talloc_asprintf(tctx,
420 "Failed event loop %s\n",
421 strerror(errno)));
425 talloc_free(state.ev);
427 torture_assert(tctx, state.error == NULL, talloc_asprintf(tctx,
428 "%s", state.error));
430 return true;
433 struct test_event_fd2_state {
434 struct torture_context *tctx;
435 const char *backend;
436 struct tevent_context *ev;
437 struct tevent_timer *te;
438 struct test_event_fd2_sock {
439 struct test_event_fd2_state *state;
440 int fd;
441 struct tevent_fd *fde;
442 size_t num_written;
443 size_t num_read;
444 bool got_full;
445 } sock0, sock1;
446 bool finished;
447 const char *error;
450 static void test_event_fd2_sock_handler(struct tevent_context *ev_ctx,
451 struct tevent_fd *fde,
452 uint16_t flags,
453 void *private_data)
455 struct test_event_fd2_sock *cur_sock =
456 (struct test_event_fd2_sock *)private_data;
457 struct test_event_fd2_state *state = cur_sock->state;
458 struct test_event_fd2_sock *oth_sock = NULL;
459 uint8_t v = 0, c;
460 ssize_t ret;
462 if (cur_sock == &state->sock0) {
463 oth_sock = &state->sock1;
464 } else {
465 oth_sock = &state->sock0;
468 if (oth_sock->num_written == 1) {
469 if (flags != (TEVENT_FD_READ | TEVENT_FD_WRITE)) {
470 state->finished = true;
471 state->error = __location__;
472 return;
476 if (cur_sock->num_read == oth_sock->num_written) {
477 state->finished = true;
478 state->error = __location__;
479 return;
482 if (!(flags & TEVENT_FD_READ)) {
483 state->finished = true;
484 state->error = __location__;
485 return;
488 if (oth_sock->num_read >= PIPE_BUF) {
490 * On Linux we become writable once we've read
491 * one byte. On Solaris we only become writable
492 * again once we've read 4096 bytes. PIPE_BUF
493 * is probably a safe bet to test against.
495 * There should be room to write a byte again
497 if (!(flags & TEVENT_FD_WRITE)) {
498 state->finished = true;
499 state->error = __location__;
500 return;
504 if ((flags & TEVENT_FD_WRITE) && !cur_sock->got_full) {
505 v = (uint8_t)cur_sock->num_written;
506 ret = write(cur_sock->fd, &v, 1);
507 if (ret != 1) {
508 state->finished = true;
509 state->error = __location__;
510 return;
512 cur_sock->num_written++;
513 if (cur_sock->num_written > 0x80000000) {
514 state->finished = true;
515 state->error = __location__;
516 return;
518 return;
521 if (!cur_sock->got_full) {
522 cur_sock->got_full = true;
524 if (!oth_sock->got_full) {
526 * cur_sock is full,
527 * lets wait for oth_sock
528 * to be filled
530 tevent_fd_set_flags(cur_sock->fde, 0);
531 return;
535 * oth_sock waited for cur_sock,
536 * lets restart it
538 tevent_fd_set_flags(oth_sock->fde,
539 TEVENT_FD_READ|TEVENT_FD_WRITE);
542 ret = read(cur_sock->fd, &v, 1);
543 if (ret != 1) {
544 state->finished = true;
545 state->error = __location__;
546 return;
548 c = (uint8_t)cur_sock->num_read;
549 if (c != v) {
550 state->finished = true;
551 state->error = __location__;
552 return;
554 cur_sock->num_read++;
556 if (cur_sock->num_read < oth_sock->num_written) {
557 /* there is more to read */
558 return;
561 * we read everything, we need to remove TEVENT_FD_WRITE
562 * to avoid spinning
564 TEVENT_FD_NOT_WRITEABLE(cur_sock->fde);
566 if (oth_sock->num_read == cur_sock->num_written) {
568 * both directions are finished
570 state->finished = true;
573 return;
576 static void test_event_fd2_finished(struct tevent_context *ev_ctx,
577 struct tevent_timer *te,
578 struct timeval tval,
579 void *private_data)
581 struct test_event_fd2_state *state =
582 (struct test_event_fd2_state *)private_data;
585 * this should never be triggered
587 state->finished = true;
588 state->error = __location__;
591 static bool test_event_fd2(struct torture_context *tctx,
592 const void *test_data)
594 struct test_event_fd2_state state;
595 int sock[2];
596 uint8_t c = 0;
598 ZERO_STRUCT(state);
599 state.tctx = tctx;
600 state.backend = (const char *)test_data;
602 state.ev = tevent_context_init_byname(tctx, state.backend);
603 if (state.ev == NULL) {
604 torture_skip(tctx, talloc_asprintf(tctx,
605 "event backend '%s' not supported\n",
606 state.backend));
607 return true;
610 tevent_set_debug_stderr(state.ev);
611 torture_comment(tctx, "backend '%s' - %s\n",
612 state.backend, __FUNCTION__);
615 * This tests the following
617 * - We write 1 byte to each socket
618 * - We wait for TEVENT_FD_READ/WRITE on both sockets
619 * - When we get TEVENT_FD_WRITE we write 1 byte
620 * until both socket buffers are full, which
621 * means both sockets only get TEVENT_FD_READ.
622 * - Then we read 1 byte until we have consumed
623 * all bytes the other end has written.
625 sock[0] = -1;
626 sock[1] = -1;
627 socketpair(AF_UNIX, SOCK_STREAM, 0, sock);
630 * the timer should never expire
632 state.te = tevent_add_timer(state.ev, state.ev,
633 timeval_current_ofs(600, 0),
634 test_event_fd2_finished, &state);
635 state.sock0.state = &state;
636 state.sock0.fd = sock[0];
637 state.sock0.fde = tevent_add_fd(state.ev, state.ev,
638 state.sock0.fd,
639 TEVENT_FD_READ | TEVENT_FD_WRITE,
640 test_event_fd2_sock_handler,
641 &state.sock0);
642 state.sock1.state = &state;
643 state.sock1.fd = sock[1];
644 state.sock1.fde = tevent_add_fd(state.ev, state.ev,
645 state.sock1.fd,
646 TEVENT_FD_READ | TEVENT_FD_WRITE,
647 test_event_fd2_sock_handler,
648 &state.sock1);
650 tevent_fd_set_auto_close(state.sock0.fde);
651 tevent_fd_set_auto_close(state.sock1.fde);
653 write(state.sock0.fd, &c, 1);
654 state.sock0.num_written++;
655 write(state.sock1.fd, &c, 1);
656 state.sock1.num_written++;
658 while (!state.finished) {
659 errno = 0;
660 if (tevent_loop_once(state.ev) == -1) {
661 talloc_free(state.ev);
662 torture_fail(tctx, talloc_asprintf(tctx,
663 "Failed event loop %s\n",
664 strerror(errno)));
668 talloc_free(state.ev);
670 torture_assert(tctx, state.error == NULL, talloc_asprintf(tctx,
671 "%s", state.error));
673 return true;
676 #ifdef HAVE_PTHREAD
678 static pthread_mutex_t threaded_mutex = PTHREAD_MUTEX_INITIALIZER;
679 static bool do_shutdown = false;
681 static void test_event_threaded_lock(void)
683 int ret;
684 ret = pthread_mutex_lock(&threaded_mutex);
685 assert(ret == 0);
688 static void test_event_threaded_unlock(void)
690 int ret;
691 ret = pthread_mutex_unlock(&threaded_mutex);
692 assert(ret == 0);
695 static void test_event_threaded_trace(enum tevent_trace_point point,
696 void *private_data)
698 switch (point) {
699 case TEVENT_TRACE_BEFORE_WAIT:
700 test_event_threaded_unlock();
701 break;
702 case TEVENT_TRACE_AFTER_WAIT:
703 test_event_threaded_lock();
704 break;
705 case TEVENT_TRACE_BEFORE_LOOP_ONCE:
706 case TEVENT_TRACE_AFTER_LOOP_ONCE:
707 break;
711 static void test_event_threaded_timer(struct tevent_context *ev,
712 struct tevent_timer *te,
713 struct timeval current_time,
714 void *private_data)
716 return;
719 static void *test_event_poll_thread(void *private_data)
721 struct tevent_context *ev = (struct tevent_context *)private_data;
723 test_event_threaded_lock();
725 while (true) {
726 int ret;
727 ret = tevent_loop_once(ev);
728 assert(ret == 0);
729 if (do_shutdown) {
730 test_event_threaded_unlock();
731 return NULL;
737 static void test_event_threaded_read_handler(struct tevent_context *ev,
738 struct tevent_fd *fde,
739 uint16_t flags,
740 void *private_data)
742 int *pfd = (int *)private_data;
743 char c;
744 ssize_t nread;
746 if ((flags & TEVENT_FD_READ) == 0) {
747 return;
750 do {
751 nread = read(*pfd, &c, 1);
752 } while ((nread == -1) && (errno == EINTR));
754 assert(nread == 1);
757 static bool test_event_context_threaded(struct torture_context *test,
758 const void *test_data)
760 struct tevent_context *ev;
761 struct tevent_timer *te;
762 struct tevent_fd *fde;
763 pthread_t poll_thread;
764 int fds[2];
765 int ret;
766 char c = 0;
768 ev = tevent_context_init_byname(test, "poll_mt");
769 torture_assert(test, ev != NULL, "poll_mt not supported");
771 tevent_set_trace_callback(ev, test_event_threaded_trace, NULL);
773 te = tevent_add_timer(ev, ev, timeval_current_ofs(5, 0),
774 test_event_threaded_timer, NULL);
775 torture_assert(test, te != NULL, "Could not add timer");
777 ret = pthread_create(&poll_thread, NULL, test_event_poll_thread, ev);
778 torture_assert(test, ret == 0, "Could not create poll thread");
780 ret = pipe(fds);
781 torture_assert(test, ret == 0, "Could not create pipe");
783 poll(NULL, 0, 100);
785 test_event_threaded_lock();
787 fde = tevent_add_fd(ev, ev, fds[0], TEVENT_FD_READ,
788 test_event_threaded_read_handler, &fds[0]);
789 torture_assert(test, fde != NULL, "Could not add fd event");
791 test_event_threaded_unlock();
793 poll(NULL, 0, 100);
795 write(fds[1], &c, 1);
797 poll(NULL, 0, 100);
799 test_event_threaded_lock();
800 do_shutdown = true;
801 test_event_threaded_unlock();
803 write(fds[1], &c, 1);
805 ret = pthread_join(poll_thread, NULL);
806 torture_assert(test, ret == 0, "pthread_join failed");
808 return true;
811 #endif
813 struct torture_suite *torture_local_event(TALLOC_CTX *mem_ctx)
815 struct torture_suite *suite = torture_suite_create(mem_ctx, "event");
816 const char **list = tevent_backend_list(suite);
817 int i;
819 for (i=0;list && list[i];i++) {
820 struct torture_suite *backend_suite;
822 backend_suite = torture_suite_create(mem_ctx, list[i]);
824 torture_suite_add_simple_tcase_const(backend_suite,
825 "context",
826 test_event_context,
827 (const void *)list[i]);
828 torture_suite_add_simple_tcase_const(backend_suite,
829 "fd1",
830 test_event_fd1,
831 (const void *)list[i]);
832 torture_suite_add_simple_tcase_const(backend_suite,
833 "fd2",
834 test_event_fd2,
835 (const void *)list[i]);
837 torture_suite_add_suite(suite, backend_suite);
840 #ifdef HAVE_PTHREAD
841 torture_suite_add_simple_tcase_const(suite, "threaded_poll_mt",
842 test_event_context_threaded,
843 NULL);
844 #endif
846 return suite;