qlockt0.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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 on timeout */
  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. int64_t 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. exits("FAIL");
  65. }
  66. return 0;
  67. }
  68. int
  69. handlefail(void *v, char *s)
  70. {
  71. /* just not exit, please */
  72. if(strncmp(s, "fail", 4) == 0){
  73. if(verbose)
  74. print("%d: noted: %s\n", getpid(), s);
  75. print("FAIL");
  76. exits("FAIL");
  77. }
  78. return 0;
  79. }
  80. char *
  81. waiter(int index)
  82. {
  83. int64_t start, end;
  84. /* wait for the alwaysLocked to be locked by the main process */
  85. qlock(&rl);
  86. while(alwaysLocked.locked == 0)
  87. rsleep(&rStart);
  88. qunlock(&rl);
  89. /* try to lock for ~1000 ms */
  90. start = nsec();
  91. end = start;
  92. if(verbose)
  93. print("waiter %d: started\n", getpid());
  94. if(qlockt(&alwaysLocked, 1000)){
  95. if(verbose)
  96. print("waiter %d failed: got the qlock\n", getpid());
  97. qunlock(&alwaysLocked);
  98. postnote(PNGROUP, getpid(), smprint("fail: waiter %d got the qlock", getpid()));
  99. } else {
  100. end = nsec();
  101. if(verbose)
  102. print("waiter %d: qlockt timedout in %lld ms\n", getpid(), (end - start) / (1000*1000));
  103. }
  104. /* notify the main process that we have completed */
  105. qlock(&rl);
  106. elapsed[index] = end - start;
  107. ++completed;
  108. rwakeup(&rCompleted);
  109. qunlock(&rl);
  110. return end != start ? nil : "FAIL";
  111. }
  112. void
  113. spawnWaiter(int index)
  114. {
  115. int pid;
  116. char * res;
  117. switch((pid = rfork(RFMEM|RFPROC|RFNOWAIT)))
  118. {
  119. case 0:
  120. res = waiter(index);
  121. exits(res);
  122. break;
  123. case -1:
  124. print("spawnWaiter: %r\n");
  125. exits("rfork fails");
  126. break;
  127. default:
  128. if(verbose)
  129. print("spawn waiter %d\n", pid);
  130. break;
  131. }
  132. }
  133. void
  134. main(void)
  135. {
  136. int i;
  137. int64_t average;
  138. rfork(RFNOTEG|RFREND);
  139. rStart.l = &rl;
  140. rCompleted.l = &rl;
  141. if(verbose)
  142. print("main: started with pid %d\n", getpid());
  143. for(i = 0; i < NPROC; ++i){
  144. elapsed[i] = 0;
  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. if(verbose)
  179. print("elapsed[%d] = %lld, average = %lld nanosec \n", i, elapsed[i], average);
  180. average += elapsed[i];
  181. }
  182. average = average / NPROC / (1000 * 1000);
  183. if(average > 900 && average < 1300) /* 30% error on timeout is acceptable */
  184. {
  185. print("PASS\n");
  186. exits("PASS");
  187. }
  188. print("FAIL: average timeout too long %lld ms\n", average);
  189. exits("FAIL");
  190. }