coroutine-gthread.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /*
  2. * GThread coroutine initialization code
  3. *
  4. * Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>
  5. * Copyright (C) 2011 Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.0 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #include <glib.h>
  21. #include "qemu-common.h"
  22. #include "block/coroutine_int.h"
  23. typedef struct {
  24. Coroutine base;
  25. GThread *thread;
  26. bool runnable;
  27. bool free_on_thread_exit;
  28. CoroutineAction action;
  29. } CoroutineGThread;
  30. static CompatGMutex coroutine_lock;
  31. static CompatGCond coroutine_cond;
  32. /* GLib 2.31 and beyond deprecated various parts of the thread API,
  33. * but the new interfaces are not available in older GLib versions
  34. * so we have to cope with both.
  35. */
  36. #if GLIB_CHECK_VERSION(2, 31, 0)
  37. /* Awkwardly, the GPrivate API doesn't provide a way to update the
  38. * GDestroyNotify handler for the coroutine key dynamically. So instead
  39. * we track whether or not the CoroutineGThread should be freed on
  40. * thread exit / coroutine key update using the free_on_thread_exit
  41. * field.
  42. */
  43. static void coroutine_destroy_notify(gpointer data)
  44. {
  45. CoroutineGThread *co = data;
  46. if (co && co->free_on_thread_exit) {
  47. g_free(co);
  48. }
  49. }
  50. static GPrivate coroutine_key = G_PRIVATE_INIT(coroutine_destroy_notify);
  51. static inline CoroutineGThread *get_coroutine_key(void)
  52. {
  53. return g_private_get(&coroutine_key);
  54. }
  55. static inline void set_coroutine_key(CoroutineGThread *co,
  56. bool free_on_thread_exit)
  57. {
  58. /* Unlike g_static_private_set() this does not call the GDestroyNotify
  59. * if the previous value of the key was NULL. Fortunately we only need
  60. * the GDestroyNotify in the non-NULL key case.
  61. */
  62. co->free_on_thread_exit = free_on_thread_exit;
  63. g_private_replace(&coroutine_key, co);
  64. }
  65. static inline GThread *create_thread(GThreadFunc func, gpointer data)
  66. {
  67. return g_thread_new("coroutine", func, data);
  68. }
  69. #else
  70. /* Handle older GLib versions */
  71. static GStaticPrivate coroutine_key = G_STATIC_PRIVATE_INIT;
  72. static inline CoroutineGThread *get_coroutine_key(void)
  73. {
  74. return g_static_private_get(&coroutine_key);
  75. }
  76. static inline void set_coroutine_key(CoroutineGThread *co,
  77. bool free_on_thread_exit)
  78. {
  79. g_static_private_set(&coroutine_key, co,
  80. free_on_thread_exit ? (GDestroyNotify)g_free : NULL);
  81. }
  82. static inline GThread *create_thread(GThreadFunc func, gpointer data)
  83. {
  84. return g_thread_create_full(func, data, 0, TRUE, TRUE,
  85. G_THREAD_PRIORITY_NORMAL, NULL);
  86. }
  87. #endif
  88. static void __attribute__((constructor)) coroutine_init(void)
  89. {
  90. #if !GLIB_CHECK_VERSION(2, 31, 0)
  91. if (!g_thread_supported()) {
  92. g_thread_init(NULL);
  93. }
  94. #endif
  95. }
  96. static void coroutine_wait_runnable_locked(CoroutineGThread *co)
  97. {
  98. while (!co->runnable) {
  99. g_cond_wait(&coroutine_cond, &coroutine_lock);
  100. }
  101. }
  102. static void coroutine_wait_runnable(CoroutineGThread *co)
  103. {
  104. g_mutex_lock(&coroutine_lock);
  105. coroutine_wait_runnable_locked(co);
  106. g_mutex_unlock(&coroutine_lock);
  107. }
  108. static gpointer coroutine_thread(gpointer opaque)
  109. {
  110. CoroutineGThread *co = opaque;
  111. set_coroutine_key(co, false);
  112. coroutine_wait_runnable(co);
  113. co->base.entry(co->base.entry_arg);
  114. qemu_coroutine_switch(&co->base, co->base.caller, COROUTINE_TERMINATE);
  115. return NULL;
  116. }
  117. Coroutine *qemu_coroutine_new(void)
  118. {
  119. CoroutineGThread *co;
  120. co = g_malloc0(sizeof(*co));
  121. co->thread = create_thread(coroutine_thread, co);
  122. if (!co->thread) {
  123. g_free(co);
  124. return NULL;
  125. }
  126. return &co->base;
  127. }
  128. void qemu_coroutine_delete(Coroutine *co_)
  129. {
  130. CoroutineGThread *co = DO_UPCAST(CoroutineGThread, base, co_);
  131. g_thread_join(co->thread);
  132. g_free(co);
  133. }
  134. CoroutineAction qemu_coroutine_switch(Coroutine *from_,
  135. Coroutine *to_,
  136. CoroutineAction action)
  137. {
  138. CoroutineGThread *from = DO_UPCAST(CoroutineGThread, base, from_);
  139. CoroutineGThread *to = DO_UPCAST(CoroutineGThread, base, to_);
  140. g_mutex_lock(&coroutine_lock);
  141. from->runnable = false;
  142. from->action = action;
  143. to->runnable = true;
  144. to->action = action;
  145. g_cond_broadcast(&coroutine_cond);
  146. if (action != COROUTINE_TERMINATE) {
  147. coroutine_wait_runnable_locked(from);
  148. }
  149. g_mutex_unlock(&coroutine_lock);
  150. return from->action;
  151. }
  152. Coroutine *qemu_coroutine_self(void)
  153. {
  154. CoroutineGThread *co = get_coroutine_key();
  155. if (!co) {
  156. co = g_malloc0(sizeof(*co));
  157. co->runnable = true;
  158. set_coroutine_key(co, true);
  159. }
  160. return &co->base;
  161. }
  162. bool qemu_in_coroutine(void)
  163. {
  164. CoroutineGThread *co = get_coroutine_key();
  165. return co && co->base.caller;
  166. }