qlockt2.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. /*
  2. * This file is part of Jehanne.
  3. *
  4. * Copyright (C) 2015 Giacomo Tesio <giacomo@tesio.it>
  5. *
  6. * Jehanne is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, version 2 of the License.
  9. *
  10. * Jehanne is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with Jehanne. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <u.h>
  19. #include <lib9.h>
  20. /* verify that qlockt returns 0 even on tight timeouts */
  21. #define NPROC 50
  22. QLock alwaysLocked; /* held by main process, waiters will timeout */
  23. int killerProc; /* pid, will kill the other processes if starved */
  24. int elapsed[NPROC];
  25. int32_t completed;
  26. QLock rl;
  27. Rendez rStart;
  28. Rendez rCompleted;
  29. int verbose = 0;
  30. void
  31. killKiller(void)
  32. {
  33. postnote(PNPROC, killerProc, "interrupt");
  34. }
  35. void
  36. stopAllAfter(int seconds)
  37. {
  38. int pid;
  39. switch((pid = rfork(RFMEM|RFPROC|RFNOWAIT)))
  40. {
  41. case 0:
  42. if(verbose)
  43. print("killer proc started: pid %d\n", getpid());
  44. sleep(seconds * 1000);
  45. postnote(PNGROUP, killerProc, "timedout");
  46. if(verbose)
  47. print("killer proc timedout: pid %d\n", getpid());
  48. exits("FAIL");
  49. case -1:
  50. fprint(2, "%r\n");
  51. exits("rfork fails");
  52. default:
  53. killerProc = pid;
  54. atexit(killKiller);
  55. }
  56. }
  57. int
  58. handletimeout(void *v, char *s)
  59. {
  60. /* just not exit, please */
  61. if(strcmp(s, "timedout") == 0){
  62. if(verbose)
  63. print("%d: noted: %s\n", getpid(), s);
  64. print("FAIL: timedout\n");
  65. exits("FAIL");
  66. }
  67. return 0;
  68. }
  69. int
  70. handlefail(void *v, char *s)
  71. {
  72. /* just not exit, please */
  73. if(strncmp(s, "fail", 4) == 0){
  74. if(verbose)
  75. print("%d: noted: %s\n", getpid(), s);
  76. print("FAIL: %s\n", s);
  77. exits("FAIL");
  78. }
  79. return 0;
  80. }
  81. char *
  82. waiter(int index)
  83. {
  84. int64_t start, end;
  85. /* wait for the alwaysLocked to be locked by the main process */
  86. qlock(&rl);
  87. while(alwaysLocked.locked == 0)
  88. rsleep(&rStart);
  89. qunlock(&rl);
  90. /* try to lock for ~1 ms */
  91. start = nsec();
  92. end = start;
  93. if(verbose)
  94. print("waiter %d: started\n", getpid());
  95. if(qlockt(&alwaysLocked, 1)){
  96. if(verbose)
  97. print("waiter %d failed: got the qlock\n", getpid());
  98. qunlock(&alwaysLocked);
  99. postnote(PNGROUP, getpid(), smprint("fail: waiter %d got the qlock", getpid()));
  100. } else {
  101. end = nsec();
  102. if(verbose)
  103. print("waiter %d: qlockt timedout in %lld ms\n", getpid(), (end - start) / (1000*1000));
  104. }
  105. /* notify the main process that we have completed */
  106. qlock(&rl);
  107. elapsed[index] = end - start;
  108. ++completed;
  109. rwakeup(&rCompleted);
  110. qunlock(&rl);
  111. return end != start ? nil : "FAIL";
  112. }
  113. void
  114. spawnWaiter(int index)
  115. {
  116. int pid;
  117. char * res;
  118. switch((pid = rfork(RFMEM|RFPROC|RFNOWAIT)))
  119. {
  120. case 0:
  121. res = waiter(index);
  122. exits(res);
  123. break;
  124. case -1:
  125. print("spawnWaiter: %r\n");
  126. exits("rfork fails");
  127. break;
  128. default:
  129. if(verbose)
  130. print("spawn waiter %d\n", pid);
  131. break;
  132. }
  133. }
  134. void
  135. main(void)
  136. {
  137. int i;
  138. int64_t average;
  139. rfork(RFNOTEG|RFREND);
  140. rStart.l = &rl;
  141. rCompleted.l = &rl;
  142. if(verbose)
  143. print("main: started with pid %d\n", getpid());
  144. for(i = 0; i < NPROC; ++i){
  145. spawnWaiter(i);
  146. }
  147. stopAllAfter(30);
  148. if (!atnotify(handletimeout, 1)){
  149. fprint(2, "%r\n");
  150. exits("atnotify fails");
  151. }
  152. if (!atnotify(handlefail, 1)){
  153. fprint(2, "%r\n");
  154. exits("atnotify fails");
  155. }
  156. qlock(&rl);
  157. qlock(&alwaysLocked);
  158. if(verbose)
  159. print("main: got the alwaysLocked: wakeup all waiters...\n");
  160. rwakeupall(&rStart);
  161. if(verbose)
  162. print("main: got the alwaysLocked: wakeup all waiters... done\n");
  163. qunlock(&rl);
  164. qlock(&rl);
  165. if(verbose)
  166. print("main: waiting all waiters to timeout...\n");
  167. while(completed < NPROC){
  168. rsleep(&rCompleted);
  169. if(verbose && completed < NPROC)
  170. print("main: awaked, but %d waiters are still pending\n", NPROC - completed);
  171. }
  172. qunlock(&alwaysLocked);
  173. qunlock(&rl);
  174. if(verbose)
  175. print("main: waiting all waiters to timeout... done\n");
  176. average = 0;
  177. for(i = 0; i < NPROC; ++i){
  178. average += elapsed[i];
  179. }
  180. average = average / NPROC / (1000 * 1000);
  181. if(average < 100) /* we asked for 1ms... we are dumb, after all */
  182. {
  183. print("PASS\n");
  184. exits("PASS");
  185. }
  186. print("FAIL: average timeout too long %lld ms\n", average);
  187. exits("FAIL");
  188. }