pthread_cond_timedwait.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. /* Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
  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 <endian.h>
  16. #include <errno.h>
  17. #include <sysdep.h>
  18. #include <lowlevellock.h>
  19. #include <pthread.h>
  20. #include <pthreadP.h>
  21. #include <bits/kernel-features.h>
  22. /* Cleanup handler, defined in pthread_cond_wait.c. */
  23. extern void __condvar_cleanup (void *arg)
  24. __attribute__ ((visibility ("hidden")));
  25. struct _condvar_cleanup_buffer
  26. {
  27. int oldtype;
  28. pthread_cond_t *cond;
  29. pthread_mutex_t *mutex;
  30. unsigned int bc_seq;
  31. };
  32. int
  33. attribute_protected
  34. __pthread_cond_timedwait (
  35. pthread_cond_t *cond,
  36. pthread_mutex_t *mutex,
  37. const struct timespec *abstime)
  38. {
  39. struct _pthread_cleanup_buffer buffer;
  40. struct _condvar_cleanup_buffer cbuffer;
  41. int result = 0;
  42. /* Catch invalid parameters. */
  43. if (abstime->tv_nsec < 0 || abstime->tv_nsec >= 1000000000)
  44. return EINVAL;
  45. int pshared = (cond->__data.__mutex == (void *) ~0l)
  46. ? LLL_SHARED : LLL_PRIVATE;
  47. /* Make sure we are along. */
  48. lll_lock (cond->__data.__lock, pshared);
  49. /* Now we can release the mutex. */
  50. int err = __pthread_mutex_unlock_usercnt (mutex, 0);
  51. if (err)
  52. {
  53. lll_unlock (cond->__data.__lock, pshared);
  54. return err;
  55. }
  56. /* We have one new user of the condvar. */
  57. ++cond->__data.__total_seq;
  58. ++cond->__data.__futex;
  59. cond->__data.__nwaiters += 1 << COND_NWAITERS_SHIFT;
  60. /* Remember the mutex we are using here. If there is already a
  61. different address store this is a bad user bug. Do not store
  62. anything for pshared condvars. */
  63. if (cond->__data.__mutex != (void *) ~0l)
  64. cond->__data.__mutex = mutex;
  65. /* Prepare structure passed to cancellation handler. */
  66. cbuffer.cond = cond;
  67. cbuffer.mutex = mutex;
  68. /* Before we block we enable cancellation. Therefore we have to
  69. install a cancellation handler. */
  70. __pthread_cleanup_push (&buffer, __condvar_cleanup, &cbuffer);
  71. /* The current values of the wakeup counter. The "woken" counter
  72. must exceed this value. */
  73. unsigned long long int val;
  74. unsigned long long int seq;
  75. val = seq = cond->__data.__wakeup_seq;
  76. /* Remember the broadcast counter. */
  77. cbuffer.bc_seq = cond->__data.__broadcast_seq;
  78. while (1)
  79. {
  80. struct timespec rt;
  81. {
  82. #ifdef __NR_clock_gettime
  83. INTERNAL_SYSCALL_DECL (err);
  84. # ifndef __ASSUME_POSIX_TIMERS
  85. int ret =
  86. # endif
  87. INTERNAL_SYSCALL (clock_gettime, err, 2,
  88. (cond->__data.__nwaiters
  89. & ((1 << COND_NWAITERS_SHIFT) - 1)),
  90. &rt);
  91. # ifndef __ASSUME_POSIX_TIMERS
  92. if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (ret, err), 0))
  93. {
  94. struct timeval tv;
  95. (void) gettimeofday (&tv, NULL);
  96. /* Convert the absolute timeout value to a relative timeout. */
  97. rt.tv_sec = abstime->tv_sec - tv.tv_sec;
  98. rt.tv_nsec = abstime->tv_nsec - tv.tv_usec * 1000;
  99. }
  100. else
  101. # endif
  102. {
  103. /* Convert the absolute timeout value to a relative timeout. */
  104. rt.tv_sec = abstime->tv_sec - rt.tv_sec;
  105. rt.tv_nsec = abstime->tv_nsec - rt.tv_nsec;
  106. }
  107. #else
  108. /* Get the current time. So far we support only one clock. */
  109. struct timeval tv;
  110. (void) gettimeofday (&tv, NULL);
  111. /* Convert the absolute timeout value to a relative timeout. */
  112. rt.tv_sec = abstime->tv_sec - tv.tv_sec;
  113. rt.tv_nsec = abstime->tv_nsec - tv.tv_usec * 1000;
  114. #endif
  115. }
  116. if (rt.tv_nsec < 0)
  117. {
  118. rt.tv_nsec += 1000000000;
  119. --rt.tv_sec;
  120. }
  121. /* Did we already time out? */
  122. if (__builtin_expect (rt.tv_sec < 0, 0))
  123. {
  124. if (cbuffer.bc_seq != cond->__data.__broadcast_seq)
  125. goto bc_out;
  126. goto timeout;
  127. }
  128. unsigned int futex_val = cond->__data.__futex;
  129. /* Prepare to wait. Release the condvar futex. */
  130. lll_unlock (cond->__data.__lock, pshared);
  131. /* Enable asynchronous cancellation. Required by the standard. */
  132. cbuffer.oldtype = __pthread_enable_asynccancel ();
  133. /* Wait until woken by signal or broadcast. */
  134. err = lll_futex_timed_wait (&cond->__data.__futex,
  135. futex_val, &rt, pshared);
  136. /* Disable asynchronous cancellation. */
  137. __pthread_disable_asynccancel (cbuffer.oldtype);
  138. /* We are going to look at shared data again, so get the lock. */
  139. lll_lock (cond->__data.__lock, pshared);
  140. /* If a broadcast happened, we are done. */
  141. if (cbuffer.bc_seq != cond->__data.__broadcast_seq)
  142. goto bc_out;
  143. /* Check whether we are eligible for wakeup. */
  144. val = cond->__data.__wakeup_seq;
  145. if (val != seq && cond->__data.__woken_seq != val)
  146. break;
  147. /* Not woken yet. Maybe the time expired? */
  148. if (__builtin_expect (err == -ETIMEDOUT, 0))
  149. {
  150. timeout:
  151. /* Yep. Adjust the counters. */
  152. ++cond->__data.__wakeup_seq;
  153. ++cond->__data.__futex;
  154. /* The error value. */
  155. result = ETIMEDOUT;
  156. break;
  157. }
  158. }
  159. /* Another thread woken up. */
  160. ++cond->__data.__woken_seq;
  161. bc_out:
  162. cond->__data.__nwaiters -= 1 << COND_NWAITERS_SHIFT;
  163. /* If pthread_cond_destroy was called on this variable already,
  164. notify the pthread_cond_destroy caller all waiters have left
  165. and it can be successfully destroyed. */
  166. if (cond->__data.__total_seq == -1ULL
  167. && cond->__data.__nwaiters < (1 << COND_NWAITERS_SHIFT))
  168. lll_futex_wake (&cond->__data.__nwaiters, 1, pshared);
  169. /* We are done with the condvar. */
  170. lll_unlock (cond->__data.__lock, pshared);
  171. /* The cancellation handling is back to normal, remove the handler. */
  172. __pthread_cleanup_pop (&buffer, 0);
  173. /* Get the mutex before returning. */
  174. err = __pthread_mutex_cond_lock (mutex);
  175. return err ?: result;
  176. }
  177. weak_alias(__pthread_cond_timedwait, pthread_cond_timedwait)