1
0

wlockt0.c 4.5 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 wlockt returns 0 on timeout */
  21. #define NPROC 50
  22. RWLock alwaysLocked; /* held by main process, writers 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, "stopAllAfter: %r\n");
  51. exits("rfork fails");
  52. default:
  53. if(verbose)
  54. print("killer proc spawn: pid %d\n", getpid());
  55. killerProc = pid;
  56. atexit(killKiller);
  57. }
  58. }
  59. int
  60. handletimeout(void *v, char *s)
  61. {
  62. if(strcmp(s, "timedout") == 0){
  63. if(verbose)
  64. print("%d: noted: %s\n", getpid(), s);
  65. print("FAIL: timedout\n");
  66. exits("FAIL");
  67. }
  68. return 0;
  69. }
  70. int
  71. handlefail(void *v, char *s)
  72. {
  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._readers == 0)
  88. rsleep(&rStart);
  89. qunlock(&rl);
  90. /* try to lock for ~1000 ms */
  91. start = nsec();
  92. end = start;
  93. if(verbose)
  94. print("writer %d: started\n", getpid());
  95. if(wlockt(&alwaysLocked, 1000)){
  96. if(verbose)
  97. print("writer %d failed: got the wlock\n", getpid());
  98. wunlock(&alwaysLocked);
  99. postnote(PNGROUP, getpid(), smprint("fail: writer %d got the wlock", getpid()));
  100. } else {
  101. end = nsec();
  102. if(verbose)
  103. print("writer %d: wlockt 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 writer %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, "atnotify(handletimeout): %r\n");
  150. exits("atnotify fails");
  151. }
  152. if (!atnotify(handlefail, 1)){
  153. fprint(2, "atnotify(handlefail): %r\n");
  154. exits("atnotify fails");
  155. }
  156. if(verbose)
  157. print("main: ready to lock...\n");
  158. qlock(&rl);
  159. rlock(&alwaysLocked);
  160. if(verbose)
  161. print("main: got the alwaysLocked: wakeup all writers...\n");
  162. rwakeupall(&rStart);
  163. if(verbose)
  164. print("main: got the alwaysLocked: wakeup all writers... done\n");
  165. qunlock(&rl);
  166. qlock(&rl);
  167. if(verbose)
  168. print("main: waiting all writers to timeout...\n");
  169. while(completed < NPROC){
  170. rsleep(&rCompleted);
  171. if(verbose && completed < NPROC)
  172. print("main: awaked, but %d writers are still pending\n", NPROC - completed);
  173. }
  174. runlock(&alwaysLocked);
  175. qunlock(&rl);
  176. if(verbose)
  177. print("main: waiting all writers to timeout... done\n");
  178. average = 0;
  179. for(i = 0; i < NPROC; ++i){
  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. }