2 * ucontext coroutine initialization code
4 * Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>
5 * Copyright (C) 2011 Kevin Wolf <kwolf@redhat.com>
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.
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.
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/>.
21 /* XXX Is there a nicer way to disable glibc's stack check for longjmp? */
22 #ifdef _FORTIFY_SOURCE
23 #undef _FORTIFY_SOURCE
25 #include "qemu/osdep.h"
27 #include "qemu-common.h"
28 #include "qemu/coroutine_int.h"
30 #ifdef CONFIG_VALGRIND_H
31 #include <valgrind/valgrind.h>
34 #if defined(__SANITIZE_ADDRESS__) || __has_feature(address_sanitizer)
35 #ifdef CONFIG_ASAN_IFACE_FIBER
37 #include <sanitizer/asan_interface.h>
47 #ifdef CONFIG_VALGRIND_H
48 unsigned int valgrind_stack_id
;
54 * Per-thread coroutine bookkeeping
56 static __thread CoroutineUContext leader
;
57 static __thread Coroutine
*current
;
60 * va_args to makecontext() must be type 'int', so passing
61 * the pointer we need may require several int args. This
62 * union is a quick hack to let us do that
69 static void finish_switch_fiber(void *fake_stack_save
)
72 const void *bottom_old
;
75 __sanitizer_finish_switch_fiber(fake_stack_save
, &bottom_old
, &size_old
);
78 leader
.stack
= (void *)bottom_old
;
79 leader
.stack_size
= size_old
;
84 static void start_switch_fiber(void **fake_stack_save
,
85 const void *bottom
, size_t size
)
88 __sanitizer_start_switch_fiber(fake_stack_save
, bottom
, size
);
92 static void coroutine_trampoline(int i0
, int i1
)
95 CoroutineUContext
*self
;
97 void *fake_stack_save
= NULL
;
99 finish_switch_fiber(NULL
);
106 /* Initialize longjmp environment and switch back the caller */
107 if (!sigsetjmp(self
->env
, 0)) {
108 start_switch_fiber(&fake_stack_save
,
109 leader
.stack
, leader
.stack_size
);
110 siglongjmp(*(sigjmp_buf
*)co
->entry_arg
, 1);
113 finish_switch_fiber(fake_stack_save
);
116 co
->entry(co
->entry_arg
);
117 qemu_coroutine_switch(co
, co
->caller
, COROUTINE_TERMINATE
);
121 Coroutine
*qemu_coroutine_new(void)
123 CoroutineUContext
*co
;
124 ucontext_t old_uc
, uc
;
126 union cc_arg arg
= {0};
127 void *fake_stack_save
= NULL
;
129 /* The ucontext functions preserve signal masks which incurs a
130 * system call overhead. sigsetjmp(buf, 0)/siglongjmp() does not
131 * preserve signal masks but only works on the current stack.
132 * Since we need a way to create and switch to a new stack, use
133 * the ucontext functions for that but sigsetjmp()/siglongjmp() for
137 if (getcontext(&uc
) == -1) {
141 co
= g_malloc0(sizeof(*co
));
142 co
->stack_size
= COROUTINE_STACK_SIZE
;
143 co
->stack
= qemu_alloc_stack(&co
->stack_size
);
144 co
->base
.entry_arg
= &old_env
; /* stash away our jmp_buf */
146 uc
.uc_link
= &old_uc
;
147 uc
.uc_stack
.ss_sp
= co
->stack
;
148 uc
.uc_stack
.ss_size
= co
->stack_size
;
149 uc
.uc_stack
.ss_flags
= 0;
151 #ifdef CONFIG_VALGRIND_H
152 co
->valgrind_stack_id
=
153 VALGRIND_STACK_REGISTER(co
->stack
, co
->stack
+ co
->stack_size
);
158 makecontext(&uc
, (void (*)(void))coroutine_trampoline
,
159 2, arg
.i
[0], arg
.i
[1]);
161 /* swapcontext() in, siglongjmp() back out */
162 if (!sigsetjmp(old_env
, 0)) {
163 start_switch_fiber(&fake_stack_save
, co
->stack
, co
->stack_size
);
164 swapcontext(&old_uc
, &uc
);
167 finish_switch_fiber(fake_stack_save
);
172 #ifdef CONFIG_VALGRIND_H
173 #if defined(CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE) && !defined(__clang__)
174 /* Work around an unused variable in the valgrind.h macro... */
175 #pragma GCC diagnostic push
176 #pragma GCC diagnostic ignored "-Wunused-but-set-variable"
178 static inline void valgrind_stack_deregister(CoroutineUContext
*co
)
180 VALGRIND_STACK_DEREGISTER(co
->valgrind_stack_id
);
182 #if defined(CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE) && !defined(__clang__)
183 #pragma GCC diagnostic pop
187 void qemu_coroutine_delete(Coroutine
*co_
)
189 CoroutineUContext
*co
= DO_UPCAST(CoroutineUContext
, base
, co_
);
191 #ifdef CONFIG_VALGRIND_H
192 valgrind_stack_deregister(co
);
195 qemu_free_stack(co
->stack
, co
->stack_size
);
199 /* This function is marked noinline to prevent GCC from inlining it
200 * into coroutine_trampoline(). If we allow it to do that then it
201 * hoists the code to get the address of the TLS variable "current"
202 * out of the while() loop. This is an invalid transformation because
203 * the sigsetjmp() call may be called when running thread A but
204 * return in thread B, and so we might be in a different thread
205 * context each time round the loop.
207 CoroutineAction
__attribute__((noinline
))
208 qemu_coroutine_switch(Coroutine
*from_
, Coroutine
*to_
,
209 CoroutineAction action
)
211 CoroutineUContext
*from
= DO_UPCAST(CoroutineUContext
, base
, from_
);
212 CoroutineUContext
*to
= DO_UPCAST(CoroutineUContext
, base
, to_
);
214 void *fake_stack_save
= NULL
;
218 ret
= sigsetjmp(from
->env
, 0);
220 start_switch_fiber(action
== COROUTINE_TERMINATE
?
221 NULL
: &fake_stack_save
, to
->stack
, to
->stack_size
);
222 siglongjmp(to
->env
, action
);
225 finish_switch_fiber(fake_stack_save
);
230 Coroutine
*qemu_coroutine_self(void)
233 current
= &leader
.base
;
238 bool qemu_in_coroutine(void)
240 return current
&& current
->caller
;