tst-signal2.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <errno.h>
  16. #include <pthread.h>
  17. #include <signal.h>
  18. #include <stdio.h>
  19. #include <stdlib.h>
  20. #include <unistd.h>
  21. #include <sys/mman.h>
  22. #include <sys/wait.h>
  23. #include <string.h>
  24. #include "../test-skeleton.h"
  25. #ifdef __ARCH_USE_MMU__
  26. static sigset_t ss;
  27. static pthread_barrier_t *b;
  28. static void *
  29. tf (void *arg)
  30. {
  31. pthread_barrier_wait (b);
  32. puts ("child: calling sigwait now");
  33. int sig;
  34. int err;
  35. err = sigwait (&ss, &sig);
  36. if (err != 0)
  37. {
  38. printf ("sigwait returned unsuccessfully: %s (%d)\n",
  39. strerror (err), err);
  40. _exit (1);
  41. }
  42. puts ("sigwait returned");
  43. if (sig != SIGINT)
  44. {
  45. printf ("caught signal %d, expected %d (SIGINT)\n", sig, SIGINT);
  46. _exit (1);
  47. }
  48. puts ("child thread terminating now");
  49. return NULL;
  50. }
  51. static void
  52. receiver (void)
  53. {
  54. pthread_t th;
  55. /* Make sure the process doesn't run forever. */
  56. alarm (10);
  57. sigfillset (&ss);
  58. if (pthread_sigmask (SIG_SETMASK, &ss, NULL) != 0)
  59. {
  60. puts ("1st pthread_sigmask failed");
  61. _exit (1);
  62. }
  63. if (pthread_create (&th, NULL, tf, NULL) != 0)
  64. {
  65. puts ("pthread_create failed");
  66. _exit (1);
  67. }
  68. if (pthread_join (th, NULL) != 0)
  69. {
  70. puts ("thread didn't join");
  71. _exit (1);
  72. }
  73. puts ("join succeeded");
  74. _exit (0);
  75. }
  76. static int
  77. do_test (void)
  78. {
  79. char tmp[] = "/tmp/tst-signal1-XXXXXX";
  80. int fd = mkstemp (tmp);
  81. if (fd == -1)
  82. {
  83. puts ("mkstemp failed");
  84. exit (1);
  85. }
  86. unlink (tmp);
  87. int i;
  88. for (i = 0; i < 20; ++i)
  89. write (fd, "foobar xyzzy", 12);
  90. b = mmap (NULL, sizeof (pthread_barrier_t), PROT_READ | PROT_WRITE,
  91. MAP_SHARED, fd, 0);
  92. if (b == MAP_FAILED)
  93. {
  94. puts ("mmap failed");
  95. exit (1);
  96. }
  97. pthread_barrierattr_t ba;
  98. if (pthread_barrierattr_init (&ba) != 0)
  99. {
  100. puts ("barrierattr_init failed");
  101. exit (1);
  102. }
  103. if (pthread_barrierattr_setpshared (&ba, PTHREAD_PROCESS_SHARED) != 0)
  104. {
  105. puts ("barrierattr_setpshared failed");
  106. exit (1);
  107. }
  108. if (pthread_barrier_init (b, &ba, 2) != 0)
  109. {
  110. puts ("barrier_init failed");
  111. exit (1);
  112. }
  113. if (pthread_barrierattr_destroy (&ba) != 0)
  114. {
  115. puts ("barrierattr_destroy failed");
  116. exit (1);
  117. }
  118. pid_t pid = fork ();
  119. if (pid == -1)
  120. {
  121. puts ("fork failed");
  122. exit (1);
  123. }
  124. if (pid == 0)
  125. receiver ();
  126. pthread_barrier_wait (b);
  127. /* Wait a bit more. */
  128. struct timespec ts = { .tv_sec = 0, .tv_nsec = 10000000 };
  129. nanosleep (&ts, NULL);
  130. /* Send the signal. */
  131. puts ("sending the signal now");
  132. kill (pid, SIGINT);
  133. /* Wait for the process to terminate. */
  134. int status;
  135. if (TEMP_FAILURE_RETRY (waitpid (pid, &status, 0)) != pid)
  136. {
  137. puts ("wrong child reported terminated");
  138. exit (1);
  139. }
  140. if (!WIFEXITED (status))
  141. {
  142. if (WIFSIGNALED (status))
  143. printf ("child exited with signal %d\n", WTERMSIG (status));
  144. else
  145. puts ("child didn't exit normally");
  146. exit (1);
  147. }
  148. if (WEXITSTATUS (status) != 0)
  149. {
  150. printf ("exit status %d != 0\n", WEXITSTATUS (status));
  151. exit (1);
  152. }
  153. return 0;
  154. }
  155. #define TEST_FUNCTION do_test ()
  156. #include "../test-skeleton.c"
  157. #else
  158. int main(void)
  159. {
  160. printf("Skipping test on non-mmu host!\n");
  161. return 23;
  162. }
  163. #endif