source: mainline/uspace/lib/c/generic/fibril_synch.c@ db9c889

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since db9c889 was ab6edb6, checked in by Jiří Zárevúcky <jiri.zarevucky@…>, 7 years ago

Simplify the interaction between async_futex and fibril_switch().

  • Property mode set to 100644
File size: 16.5 KB
Line 
1/*
2 * Copyright (c) 2009 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup libc
30 * @{
31 */
32/** @file
33 */
34
35#include <fibril_synch.h>
36#include <fibril.h>
37#include <async.h>
38#include <adt/list.h>
39#include <futex.h>
40#include <sys/time.h>
41#include <errno.h>
42#include <assert.h>
43#include <stacktrace.h>
44#include <stdlib.h>
45#include <stdio.h>
46#include "private/async.h"
47#include "private/fibril.h"
48
49static void optimize_execution_power(void)
50{
51 /*
52 * When waking up a worker fibril previously blocked in fibril
53 * synchronization, chances are that there is an idle manager fibril
54 * waiting for IPC, that could start executing the awakened worker
55 * fibril right away. We try to detect this and bring the manager
56 * fibril back to fruitful work.
57 */
58 async_poke();
59}
60
61static void print_deadlock(fibril_owner_info_t *oi)
62{
63 fibril_t *f = (fibril_t *) fibril_get_id();
64
65 printf("Deadlock detected.\n");
66 stacktrace_print();
67
68 printf("Fibril %p waits for primitive %p.\n", f, oi);
69
70 while (oi && oi->owned_by) {
71 printf("Primitive %p is owned by fibril %p.\n",
72 oi, oi->owned_by);
73 if (oi->owned_by == f)
74 break;
75 stacktrace_print_fp_pc(
76 context_get_fp(&oi->owned_by->ctx),
77 context_get_pc(&oi->owned_by->ctx));
78 printf("Fibril %p waits for primitive %p.\n",
79 oi->owned_by, oi->owned_by->waits_for);
80 oi = oi->owned_by->waits_for;
81 }
82}
83
84
85static void check_for_deadlock(fibril_owner_info_t *oi)
86{
87 while (oi && oi->owned_by) {
88 if (oi->owned_by == (fibril_t *) fibril_get_id()) {
89 print_deadlock(oi);
90 abort();
91 }
92 oi = oi->owned_by->waits_for;
93 }
94}
95
96
97void fibril_mutex_initialize(fibril_mutex_t *fm)
98{
99 fm->oi.owned_by = NULL;
100 fm->counter = 1;
101 list_initialize(&fm->waiters);
102}
103
104void fibril_mutex_lock(fibril_mutex_t *fm)
105{
106 fibril_t *f = (fibril_t *) fibril_get_id();
107
108 futex_lock(&async_futex);
109 if (fm->counter-- <= 0) {
110 awaiter_t wdata;
111
112 awaiter_initialize(&wdata);
113 wdata.fid = fibril_get_id();
114 wdata.wu_event.inlist = true;
115 list_append(&wdata.wu_event.link, &fm->waiters);
116 check_for_deadlock(&fm->oi);
117 f->waits_for = &fm->oi;
118 fibril_switch(FIBRIL_FROM_BLOCKED);
119 } else {
120 fm->oi.owned_by = f;
121 }
122 futex_unlock(&async_futex);
123}
124
125bool fibril_mutex_trylock(fibril_mutex_t *fm)
126{
127 bool locked = false;
128
129 futex_lock(&async_futex);
130 if (fm->counter > 0) {
131 fm->counter--;
132 fm->oi.owned_by = (fibril_t *) fibril_get_id();
133 locked = true;
134 }
135 futex_unlock(&async_futex);
136
137 return locked;
138}
139
140static void _fibril_mutex_unlock_unsafe(fibril_mutex_t *fm)
141{
142 if (fm->counter++ < 0) {
143 link_t *tmp;
144 awaiter_t *wdp;
145 fibril_t *f;
146
147 tmp = list_first(&fm->waiters);
148 assert(tmp != NULL);
149 wdp = list_get_instance(tmp, awaiter_t, wu_event.link);
150 wdp->active = true;
151 wdp->wu_event.inlist = false;
152
153 f = (fibril_t *) wdp->fid;
154 fm->oi.owned_by = f;
155 f->waits_for = NULL;
156
157 list_remove(&wdp->wu_event.link);
158 fibril_add_ready(wdp->fid);
159 optimize_execution_power();
160 } else {
161 fm->oi.owned_by = NULL;
162 }
163}
164
165void fibril_mutex_unlock(fibril_mutex_t *fm)
166{
167 assert(fibril_mutex_is_locked(fm));
168 futex_lock(&async_futex);
169 _fibril_mutex_unlock_unsafe(fm);
170 futex_unlock(&async_futex);
171}
172
173bool fibril_mutex_is_locked(fibril_mutex_t *fm)
174{
175 bool locked = false;
176
177 futex_lock(&async_futex);
178 if (fm->counter <= 0)
179 locked = true;
180 futex_unlock(&async_futex);
181
182 return locked;
183}
184
185void fibril_rwlock_initialize(fibril_rwlock_t *frw)
186{
187 frw->oi.owned_by = NULL;
188 frw->writers = 0;
189 frw->readers = 0;
190 list_initialize(&frw->waiters);
191}
192
193void fibril_rwlock_read_lock(fibril_rwlock_t *frw)
194{
195 fibril_t *f = (fibril_t *) fibril_get_id();
196
197 futex_lock(&async_futex);
198 if (frw->writers) {
199 awaiter_t wdata;
200
201 awaiter_initialize(&wdata);
202 wdata.fid = (fid_t) f;
203 wdata.wu_event.inlist = true;
204 f->is_writer = false;
205 list_append(&wdata.wu_event.link, &frw->waiters);
206 check_for_deadlock(&frw->oi);
207 f->waits_for = &frw->oi;
208 fibril_switch(FIBRIL_FROM_BLOCKED);
209 } else {
210 /* Consider the first reader the owner. */
211 if (frw->readers++ == 0)
212 frw->oi.owned_by = f;
213 }
214 futex_unlock(&async_futex);
215}
216
217void fibril_rwlock_write_lock(fibril_rwlock_t *frw)
218{
219 fibril_t *f = (fibril_t *) fibril_get_id();
220
221 futex_lock(&async_futex);
222 if (frw->writers || frw->readers) {
223 awaiter_t wdata;
224
225 awaiter_initialize(&wdata);
226 wdata.fid = (fid_t) f;
227 wdata.wu_event.inlist = true;
228 f->is_writer = true;
229 list_append(&wdata.wu_event.link, &frw->waiters);
230 check_for_deadlock(&frw->oi);
231 f->waits_for = &frw->oi;
232 fibril_switch(FIBRIL_FROM_BLOCKED);
233 } else {
234 frw->oi.owned_by = f;
235 frw->writers++;
236 }
237 futex_unlock(&async_futex);
238}
239
240static void _fibril_rwlock_common_unlock(fibril_rwlock_t *frw)
241{
242 futex_lock(&async_futex);
243 if (frw->readers) {
244 if (--frw->readers) {
245 if (frw->oi.owned_by == (fibril_t *) fibril_get_id()) {
246 /*
247 * If this reader firbril was considered the
248 * owner of this rwlock, clear the ownership
249 * information even if there are still more
250 * readers.
251 *
252 * This is the limitation of the detection
253 * mechanism rooted in the fact that tracking
254 * all readers would require dynamically
255 * allocated memory for keeping linkage info.
256 */
257 frw->oi.owned_by = NULL;
258 }
259 goto out;
260 }
261 } else {
262 frw->writers--;
263 }
264
265 assert(!frw->readers && !frw->writers);
266
267 frw->oi.owned_by = NULL;
268
269 while (!list_empty(&frw->waiters)) {
270 link_t *tmp = list_first(&frw->waiters);
271 awaiter_t *wdp;
272 fibril_t *f;
273
274 wdp = list_get_instance(tmp, awaiter_t, wu_event.link);
275 f = (fibril_t *) wdp->fid;
276
277 f->waits_for = NULL;
278
279 if (f->is_writer) {
280 if (frw->readers)
281 break;
282 wdp->active = true;
283 wdp->wu_event.inlist = false;
284 list_remove(&wdp->wu_event.link);
285 fibril_add_ready(wdp->fid);
286 frw->writers++;
287 frw->oi.owned_by = f;
288 optimize_execution_power();
289 break;
290 } else {
291 wdp->active = true;
292 wdp->wu_event.inlist = false;
293 list_remove(&wdp->wu_event.link);
294 fibril_add_ready(wdp->fid);
295 if (frw->readers++ == 0) {
296 /* Consider the first reader the owner. */
297 frw->oi.owned_by = f;
298 }
299 optimize_execution_power();
300 }
301 }
302out:
303 futex_unlock(&async_futex);
304}
305
306void fibril_rwlock_read_unlock(fibril_rwlock_t *frw)
307{
308 assert(fibril_rwlock_is_read_locked(frw));
309 _fibril_rwlock_common_unlock(frw);
310}
311
312void fibril_rwlock_write_unlock(fibril_rwlock_t *frw)
313{
314 assert(fibril_rwlock_is_write_locked(frw));
315 _fibril_rwlock_common_unlock(frw);
316}
317
318bool fibril_rwlock_is_read_locked(fibril_rwlock_t *frw)
319{
320 bool locked = false;
321
322 futex_lock(&async_futex);
323 if (frw->readers)
324 locked = true;
325 futex_unlock(&async_futex);
326
327 return locked;
328}
329
330bool fibril_rwlock_is_write_locked(fibril_rwlock_t *frw)
331{
332 bool locked = false;
333
334 futex_lock(&async_futex);
335 if (frw->writers) {
336 assert(frw->writers == 1);
337 locked = true;
338 }
339 futex_unlock(&async_futex);
340
341 return locked;
342}
343
344bool fibril_rwlock_is_locked(fibril_rwlock_t *frw)
345{
346 return fibril_rwlock_is_read_locked(frw) ||
347 fibril_rwlock_is_write_locked(frw);
348}
349
350void fibril_condvar_initialize(fibril_condvar_t *fcv)
351{
352 list_initialize(&fcv->waiters);
353}
354
355errno_t
356fibril_condvar_wait_timeout(fibril_condvar_t *fcv, fibril_mutex_t *fm,
357 suseconds_t timeout)
358{
359 awaiter_t wdata;
360
361 assert(fibril_mutex_is_locked(fm));
362
363 if (timeout < 0)
364 return ETIMEOUT;
365
366 awaiter_initialize(&wdata);
367 wdata.fid = fibril_get_id();
368 wdata.to_event.inlist = timeout > 0;
369 wdata.wu_event.inlist = true;
370
371 futex_lock(&async_futex);
372 if (timeout) {
373 getuptime(&wdata.to_event.expires);
374 tv_add_diff(&wdata.to_event.expires, timeout);
375 async_insert_timeout(&wdata);
376 }
377 list_append(&wdata.wu_event.link, &fcv->waiters);
378 _fibril_mutex_unlock_unsafe(fm);
379 fibril_switch(FIBRIL_FROM_BLOCKED);
380 futex_unlock(&async_futex);
381
382 // XXX: This could be replaced with an unlocked version to get rid
383 // of the unlock-lock pair. I deliberately don't do that because
384 // further changes would most likely need to revert that optimization.
385 fibril_mutex_lock(fm);
386
387 futex_lock(&async_futex);
388 if (wdata.to_event.inlist)
389 list_remove(&wdata.to_event.link);
390 if (wdata.wu_event.inlist)
391 list_remove(&wdata.wu_event.link);
392 futex_unlock(&async_futex);
393
394 return wdata.to_event.occurred ? ETIMEOUT : EOK;
395}
396
397void fibril_condvar_wait(fibril_condvar_t *fcv, fibril_mutex_t *fm)
398{
399 errno_t rc;
400
401 rc = fibril_condvar_wait_timeout(fcv, fm, 0);
402 assert(rc == EOK);
403}
404
405static void _fibril_condvar_wakeup_common(fibril_condvar_t *fcv, bool once)
406{
407 link_t *tmp;
408 awaiter_t *wdp;
409
410 futex_lock(&async_futex);
411 while (!list_empty(&fcv->waiters)) {
412 tmp = list_first(&fcv->waiters);
413 wdp = list_get_instance(tmp, awaiter_t, wu_event.link);
414 list_remove(&wdp->wu_event.link);
415 wdp->wu_event.inlist = false;
416 if (!wdp->active) {
417 wdp->active = true;
418 fibril_add_ready(wdp->fid);
419 optimize_execution_power();
420 if (once)
421 break;
422 }
423 }
424 futex_unlock(&async_futex);
425}
426
427void fibril_condvar_signal(fibril_condvar_t *fcv)
428{
429 _fibril_condvar_wakeup_common(fcv, true);
430}
431
432void fibril_condvar_broadcast(fibril_condvar_t *fcv)
433{
434 _fibril_condvar_wakeup_common(fcv, false);
435}
436
437/** Timer fibril.
438 *
439 * @param arg Timer
440 */
441static errno_t fibril_timer_func(void *arg)
442{
443 fibril_timer_t *timer = (fibril_timer_t *) arg;
444 errno_t rc;
445
446 fibril_mutex_lock(timer->lockp);
447
448 while (timer->state != fts_cleanup) {
449 switch (timer->state) {
450 case fts_not_set:
451 case fts_fired:
452 fibril_condvar_wait(&timer->cv, timer->lockp);
453 break;
454 case fts_active:
455 rc = fibril_condvar_wait_timeout(&timer->cv,
456 timer->lockp, timer->delay);
457 if (rc == ETIMEOUT && timer->state == fts_active) {
458 timer->state = fts_fired;
459 timer->handler_fid = fibril_get_id();
460 fibril_mutex_unlock(timer->lockp);
461 timer->fun(timer->arg);
462 fibril_mutex_lock(timer->lockp);
463 timer->handler_fid = 0;
464 }
465 break;
466 case fts_cleanup:
467 case fts_clean:
468 assert(false);
469 break;
470 }
471 }
472
473 /* Acknowledge timer fibril has finished cleanup. */
474 timer->state = fts_clean;
475 fibril_condvar_broadcast(&timer->cv);
476 fibril_mutex_unlock(timer->lockp);
477
478 return 0;
479}
480
481/** Create new timer.
482 *
483 * @return New timer on success, @c NULL if out of memory.
484 */
485fibril_timer_t *fibril_timer_create(fibril_mutex_t *lock)
486{
487 fid_t fid;
488 fibril_timer_t *timer;
489
490 timer = calloc(1, sizeof(fibril_timer_t));
491 if (timer == NULL)
492 return NULL;
493
494 fid = fibril_create(fibril_timer_func, (void *) timer);
495 if (fid == 0) {
496 free(timer);
497 return NULL;
498 }
499
500 fibril_mutex_initialize(&timer->lock);
501 fibril_condvar_initialize(&timer->cv);
502
503 timer->fibril = fid;
504 timer->state = fts_not_set;
505 timer->lockp = (lock != NULL) ? lock : &timer->lock;
506
507 fibril_add_ready(fid);
508 return timer;
509}
510
511/** Destroy timer.
512 *
513 * @param timer Timer, must not be active or accessed by other threads.
514 */
515void fibril_timer_destroy(fibril_timer_t *timer)
516{
517 fibril_mutex_lock(timer->lockp);
518 assert(timer->state == fts_not_set || timer->state == fts_fired);
519
520 /* Request timer fibril to terminate. */
521 timer->state = fts_cleanup;
522 fibril_condvar_broadcast(&timer->cv);
523
524 /* Wait for timer fibril to terminate */
525 while (timer->state != fts_clean)
526 fibril_condvar_wait(&timer->cv, timer->lockp);
527 fibril_mutex_unlock(timer->lockp);
528
529 free(timer);
530}
531
532/** Set timer.
533 *
534 * Set timer to execute a callback function after the specified
535 * interval.
536 *
537 * @param timer Timer
538 * @param delay Delay in microseconds
539 * @param fun Callback function
540 * @param arg Argument for @a fun
541 */
542void fibril_timer_set(fibril_timer_t *timer, suseconds_t delay,
543 fibril_timer_fun_t fun, void *arg)
544{
545 fibril_mutex_lock(timer->lockp);
546 fibril_timer_set_locked(timer, delay, fun, arg);
547 fibril_mutex_unlock(timer->lockp);
548}
549
550/** Set locked timer.
551 *
552 * Set timer to execute a callback function after the specified
553 * interval. Must be called when the timer is locked.
554 *
555 * @param timer Timer
556 * @param delay Delay in microseconds
557 * @param fun Callback function
558 * @param arg Argument for @a fun
559 */
560void fibril_timer_set_locked(fibril_timer_t *timer, suseconds_t delay,
561 fibril_timer_fun_t fun, void *arg)
562{
563 assert(fibril_mutex_is_locked(timer->lockp));
564 assert(timer->state == fts_not_set || timer->state == fts_fired);
565 timer->state = fts_active;
566 timer->delay = delay;
567 timer->fun = fun;
568 timer->arg = arg;
569 fibril_condvar_broadcast(&timer->cv);
570}
571
572/** Clear timer.
573 *
574 * Clears (cancels) timer and returns last state of the timer.
575 * This can be one of:
576 * - fts_not_set If the timer has not been set or has been cleared
577 * - fts_active Timer was set but did not fire
578 * - fts_fired Timer fired
579 *
580 * @param timer Timer
581 * @return Last timer state
582 */
583fibril_timer_state_t fibril_timer_clear(fibril_timer_t *timer)
584{
585 fibril_timer_state_t old_state;
586
587 fibril_mutex_lock(timer->lockp);
588 old_state = fibril_timer_clear_locked(timer);
589 fibril_mutex_unlock(timer->lockp);
590
591 return old_state;
592}
593
594/** Clear locked timer.
595 *
596 * Clears (cancels) timer and returns last state of the timer.
597 * This can be one of:
598 * - fts_not_set If the timer has not been set or has been cleared
599 * - fts_active Timer was set but did not fire
600 * - fts_fired Timer fired
601 * Must be called when the timer is locked.
602 *
603 * @param timer Timer
604 * @return Last timer state
605 */
606fibril_timer_state_t fibril_timer_clear_locked(fibril_timer_t *timer)
607{
608 fibril_timer_state_t old_state;
609
610 assert(fibril_mutex_is_locked(timer->lockp));
611
612 while (timer->handler_fid != 0) {
613 if (timer->handler_fid == fibril_get_id()) {
614 printf("Deadlock detected.\n");
615 stacktrace_print();
616 printf("Fibril %zx is trying to clear timer %p from "
617 "inside its handler %p.\n",
618 fibril_get_id(), timer, timer->fun);
619 abort();
620 }
621
622 fibril_condvar_wait(&timer->cv, timer->lockp);
623 }
624
625 old_state = timer->state;
626 timer->state = fts_not_set;
627
628 timer->delay = 0;
629 timer->fun = NULL;
630 timer->arg = NULL;
631 fibril_condvar_broadcast(&timer->cv);
632
633 return old_state;
634}
635
636/**
637 * Initialize a semaphore with initial count set to the provided value.
638 *
639 * @param sem Semaphore to initialize.
640 * @param count Initial count. Must not be negative.
641 */
642void fibril_semaphore_initialize(fibril_semaphore_t *sem, long count)
643{
644 /*
645 * Negative count denotes the length of waitlist,
646 * so it makes no sense as an initial value.
647 */
648 assert(count >= 0);
649 sem->count = count;
650 list_initialize(&sem->waiters);
651}
652
653/**
654 * Produce one token.
655 * If there are fibrils waiting for tokens, this operation satisfies
656 * exactly one waiting `fibril_semaphore_down()`.
657 * This operation never blocks the fibril.
658 *
659 * @param sem Semaphore to use.
660 */
661void fibril_semaphore_up(fibril_semaphore_t *sem)
662{
663 futex_lock(&async_futex);
664 sem->count++;
665
666 if (sem->count > 0) {
667 futex_unlock(&async_futex);
668 return;
669 }
670
671 link_t *tmp = list_first(&sem->waiters);
672 assert(tmp);
673 list_remove(tmp);
674
675 futex_unlock(&async_futex);
676
677 awaiter_t *wdp = list_get_instance(tmp, awaiter_t, wu_event.link);
678 fibril_add_ready(wdp->fid);
679 optimize_execution_power();
680}
681
682/**
683 * Consume one token.
684 * If there are no available tokens (count <= 0), this operation blocks until
685 * another fibril produces a token using `fibril_semaphore_up()`.
686 *
687 * @param sem Semaphore to use.
688 */
689void fibril_semaphore_down(fibril_semaphore_t *sem)
690{
691 futex_lock(&async_futex);
692 sem->count--;
693
694 if (sem->count >= 0) {
695 futex_unlock(&async_futex);
696 return;
697 }
698
699 awaiter_t wdata;
700 awaiter_initialize(&wdata);
701
702 wdata.fid = fibril_get_id();
703 list_append(&wdata.wu_event.link, &sem->waiters);
704
705 fibril_switch(FIBRIL_FROM_BLOCKED);
706 futex_unlock(&async_futex);
707}
708
709/** @}
710 */
Note: See TracBrowser for help on using the repository browser.