pthread_mutex.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. /*
  2. * Copyright (c) 2017 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <kernel.h>
  7. #include <ksched.h>
  8. #include <wait_q.h>
  9. #include <posix/pthread.h>
  10. struct k_spinlock z_pthread_spinlock;
  11. int64_t timespec_to_timeoutms(const struct timespec *abstime);
  12. #define MUTEX_MAX_REC_LOCK 32767
  13. /*
  14. * Default mutex attrs.
  15. */
  16. static const pthread_mutexattr_t def_attr = {
  17. .type = PTHREAD_MUTEX_DEFAULT,
  18. };
  19. static int acquire_mutex(pthread_mutex_t *m, k_timeout_t timeout)
  20. {
  21. int rc = 0;
  22. k_spinlock_key_t key = k_spin_lock(&z_pthread_spinlock);
  23. if (m->lock_count == 0U && m->owner == NULL) {
  24. m->lock_count++;
  25. m->owner = pthread_self();
  26. k_spin_unlock(&z_pthread_spinlock, key);
  27. return 0;
  28. } else if (m->owner == pthread_self()) {
  29. if (m->type == PTHREAD_MUTEX_RECURSIVE &&
  30. m->lock_count < MUTEX_MAX_REC_LOCK) {
  31. m->lock_count++;
  32. rc = 0;
  33. } else if (m->type == PTHREAD_MUTEX_ERRORCHECK) {
  34. rc = EDEADLK;
  35. } else {
  36. rc = EINVAL;
  37. }
  38. k_spin_unlock(&z_pthread_spinlock, key);
  39. return rc;
  40. }
  41. if (K_TIMEOUT_EQ(timeout, K_NO_WAIT)) {
  42. k_spin_unlock(&z_pthread_spinlock, key);
  43. return EINVAL;
  44. }
  45. rc = z_pend_curr(&z_pthread_spinlock, key, &m->wait_q, timeout);
  46. if (rc != 0) {
  47. rc = ETIMEDOUT;
  48. }
  49. return rc;
  50. }
  51. /**
  52. * @brief Intialize POSIX mutex.
  53. *
  54. * See IEEE 1003.1
  55. */
  56. int pthread_mutex_init(pthread_mutex_t *m,
  57. const pthread_mutexattr_t *attr)
  58. {
  59. const pthread_mutexattr_t *mattr;
  60. if (m == NULL)
  61. return EINVAL;
  62. m->owner = NULL;
  63. m->lock_count = 0U;
  64. mattr = (attr == NULL) ? &def_attr : attr;
  65. m->type = mattr->type;
  66. m->attr.type = mattr->type;
  67. z_waitq_init(&m->wait_q);
  68. return 0;
  69. }
  70. /**
  71. * @brief Lock POSIX mutex with non-blocking call.
  72. *
  73. * See IEEE 1003.1
  74. */
  75. int pthread_mutex_trylock(pthread_mutex_t *m)
  76. {
  77. if (m == NULL)
  78. return EINVAL;
  79. if (m->attr.type == -1)
  80. pthread_mutex_init(m, NULL);
  81. return acquire_mutex(m, K_NO_WAIT);
  82. }
  83. /**
  84. * @brief Lock POSIX mutex with timeout.
  85. *
  86. *
  87. * See IEEE 1003.1
  88. */
  89. int pthread_mutex_timedlock(pthread_mutex_t *m,
  90. const struct timespec *abstime)
  91. {
  92. int32_t timeout = (int32_t)timespec_to_timeoutms(abstime);
  93. if (m == NULL)
  94. return EINVAL;
  95. if (m->attr.type == -1)
  96. pthread_mutex_init(m, NULL);
  97. return acquire_mutex(m, K_MSEC(timeout));
  98. }
  99. /**
  100. * @brief Lock POSIX mutex with blocking call.
  101. *
  102. * See IEEE 1003.1
  103. */
  104. int pthread_mutex_lock(pthread_mutex_t *m)
  105. {
  106. if (m == NULL)
  107. return EINVAL;
  108. if (m->attr.type == -1)
  109. pthread_mutex_init(m, NULL);
  110. return acquire_mutex(m, K_FOREVER);
  111. }
  112. /**
  113. * @brief Unlock POSIX mutex.
  114. *
  115. * See IEEE 1003.1
  116. */
  117. int pthread_mutex_unlock(pthread_mutex_t *m)
  118. {
  119. k_spinlock_key_t key = k_spin_lock(&z_pthread_spinlock);
  120. k_tid_t thread;
  121. if (m == NULL)
  122. return EINVAL;
  123. if (m->attr.type == -1)
  124. pthread_mutex_init(m, NULL);
  125. if (m->owner != pthread_self()) {
  126. k_spin_unlock(&z_pthread_spinlock, key);
  127. return EPERM;
  128. }
  129. if (m->lock_count == 0U) {
  130. k_spin_unlock(&z_pthread_spinlock, key);
  131. return EINVAL;
  132. }
  133. m->lock_count--;
  134. if (m->lock_count == 0U) {
  135. thread = z_unpend_first_thread(&m->wait_q);
  136. if (thread) {
  137. m->owner = (pthread_t)thread;
  138. m->lock_count++;
  139. arch_thread_return_value_set(thread, 0);
  140. z_ready_thread(thread);
  141. z_reschedule(&z_pthread_spinlock, key);
  142. return 0;
  143. }
  144. m->owner = NULL;
  145. }
  146. k_spin_unlock(&z_pthread_spinlock, key);
  147. return 0;
  148. }
  149. /**
  150. * @brief Destroy POSIX mutex.
  151. *
  152. * See IEEE 1003.1
  153. */
  154. int pthread_mutex_destroy(pthread_mutex_t *m)
  155. {
  156. if ((m == NULL) || (m->attr.type == -1))
  157. return EINVAL;
  158. m->attr.type = -1;
  159. return 0;
  160. }
  161. /**
  162. * @brief Read protocol attribute for mutex.
  163. *
  164. * See IEEE 1003.1
  165. */
  166. int pthread_mutexattr_getprotocol(const pthread_mutexattr_t *attr,
  167. int *protocol)
  168. {
  169. *protocol = PTHREAD_PRIO_NONE;
  170. return 0;
  171. }
  172. /**
  173. * @brief Read type attribute for mutex.
  174. *
  175. * See IEEE 1003.1
  176. */
  177. int pthread_mutexattr_gettype(const pthread_mutexattr_t *attr, int *type)
  178. {
  179. *type = attr->type;
  180. return 0;
  181. }
  182. /**
  183. * @brief Set type attribute for mutex.
  184. *
  185. * See IEEE 1003.1
  186. */
  187. int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type)
  188. {
  189. int retc = EINVAL;
  190. if ((type == PTHREAD_MUTEX_NORMAL) ||
  191. (type == PTHREAD_MUTEX_RECURSIVE) ||
  192. (type == PTHREAD_MUTEX_ERRORCHECK)) {
  193. attr->type = type;
  194. retc = 0;
  195. }
  196. return retc;
  197. }