2 * Copyright (c) 2003,2004,2009 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * lwkt_token - Implement soft token locks.
38 * Tokens are locks which serialize a thread only while the thread is
39 * running. If the thread blocks all tokens are released, then reacquired
40 * when the thread resumes.
42 * This implementation requires no critical sections or spin locks, but
43 * does use atomic_cmpset_ptr().
45 * Tokens may be recursively acquired by the same thread. However the
46 * caller must be sure to release such tokens in reverse order.
48 #include <sys/param.h>
49 #include <sys/systm.h>
50 #include <sys/kernel.h>
52 #include <sys/rtprio.h>
53 #include <sys/queue.h>
54 #include <sys/sysctl.h>
56 #include <sys/kthread.h>
57 #include <machine/cpu.h>
60 #include <sys/spinlock.h>
62 #include <sys/thread2.h>
63 #include <sys/spinlock2.h>
66 #include <vm/vm_param.h>
67 #include <vm/vm_kern.h>
68 #include <vm/vm_object.h>
69 #include <vm/vm_page.h>
70 #include <vm/vm_map.h>
71 #include <vm/vm_pager.h>
72 #include <vm/vm_extern.h>
73 #include <vm/vm_zone.h>
75 #include <machine/stdarg.h>
76 #include <machine/smp.h>
78 #ifndef LWKT_NUM_POOL_TOKENS
79 #define LWKT_NUM_POOL_TOKENS 1024 /* power of 2 */
81 #define LWKT_MASK_POOL_TOKENS (LWKT_NUM_POOL_TOKENS - 1)
84 static int token_debug
= 0;
87 static lwkt_token pool_tokens
[LWKT_NUM_POOL_TOKENS
];
89 #define TOKEN_STRING "REF=%p TOK=%p TD=%p"
90 #define CONTENDED_STRING "REF=%p TOK=%p TD=%p (contention started)"
91 #define UNCONTENDED_STRING "REF=%p TOK=%p TD=%p (contention stopped)"
92 #if !defined(KTR_TOKENS)
93 #define KTR_TOKENS KTR_ALL
96 KTR_INFO_MASTER(tokens
);
97 KTR_INFO(KTR_TOKENS
, tokens
, fail
, 0, TOKEN_STRING
, sizeof(void *) * 3);
98 KTR_INFO(KTR_TOKENS
, tokens
, succ
, 1, TOKEN_STRING
, sizeof(void *) * 3);
100 KTR_INFO(KTR_TOKENS
, tokens
, release
, 2, TOKEN_STRING
, sizeof(void *) * 3);
101 KTR_INFO(KTR_TOKENS
, tokens
, remote
, 3, TOKEN_STRING
, sizeof(void *) * 3);
102 KTR_INFO(KTR_TOKENS
, tokens
, reqremote
, 4, TOKEN_STRING
, sizeof(void *) * 3);
103 KTR_INFO(KTR_TOKENS
, tokens
, reqfail
, 5, TOKEN_STRING
, sizeof(void *) * 3);
104 KTR_INFO(KTR_TOKENS
, tokens
, drain
, 6, TOKEN_STRING
, sizeof(void *) * 3);
105 KTR_INFO(KTR_TOKENS
, tokens
, contention_start
, 7, CONTENDED_STRING
, sizeof(void *) * 3);
106 KTR_INFO(KTR_TOKENS
, tokens
, contention_stop
, 7, UNCONTENDED_STRING
, sizeof(void *) * 3);
109 #define logtoken(name, ref) \
110 KTR_LOG(tokens_ ## name, ref, ref->tr_tok, curthread)
113 SYSCTL_INT(_lwkt
, OID_AUTO
, token_debug
, CTLFLAG_RW
, &token_debug
, 0, "");
117 * Return a pool token given an address
121 _lwkt_token_pool_lookup(void *ptr
)
125 i
= ((int)(intptr_t)ptr
>> 2) ^ ((int)(intptr_t)ptr
>> 12);
126 return(&pool_tokens
[i
& LWKT_MASK_POOL_TOKENS
]);
131 * Obtain all the tokens required by the specified thread on the current
132 * cpu, return 0 on failure and non-zero on success. If a failure occurs
133 * any partially acquired tokens will be released prior to return.
135 * lwkt_getalltokens is called by the LWKT scheduler to acquire all
136 * tokens that the thread had acquired prior to going to sleep.
138 * Called from a critical section.
141 lwkt_getalltokens(thread_t td
)
148 for (scan1
= td
->td_toks
; scan1
; scan1
= scan1
->tr_next
) {
152 * Try to acquire the token if we do not already have
155 * NOTE: If atomic_cmpset_ptr() fails we have to
156 * loop and try again. It just means we
163 if (atomic_cmpset_ptr(&tok
->t_ref
, NULL
, scan1
))
169 * If acquisition fails the token might be held
170 * recursively by another ref owned by the same
173 * NOTE! We cannot just dereference 'ref' to test
174 * the tr_owner as its storage will be
175 * unstable if it belongs to another thread.
177 * NOTE! Since tokens are inserted at the head
178 * of the list we must migrate such tokens
179 * so the actual lock is not cleared until
184 if (scan2
== scan1
) {
185 lwkt_relalltokens(td
);
192 scan2
= scan2
->tr_next
;
201 * Release all tokens owned by the specified thread on the current cpu.
203 * This code is really simple. Even in cases where we own all the tokens
204 * note that t_ref may not match the scan for recursively held tokens,
205 * or for the case where a lwkt_getalltokens() failed.
207 * Called from a critical section.
210 lwkt_relalltokens(thread_t td
)
215 for (scan1
= td
->td_toks
; scan1
; scan1
= scan1
->tr_next
) {
217 if (tok
->t_ref
== scan1
)
223 * Token acquisition helper function. Note that get/trytokenref do not
224 * reset t_lastowner if the token is already held. Only lwkt_token_is_stale()
225 * is allowed to do that.
227 * NOTE: On failure, this function doesn't remove the token from the
228 * thread's token list, so that you have to perform that yourself:
230 * td->td_toks = ref->tr_next;
234 _lwkt_trytokref2(lwkt_tokref_t nref
, thread_t td
)
240 KKASSERT(td
->td_gd
->gd_intr_nesting_level
== 0);
243 * Link the tokref into curthread's list. Make sure the
244 * cpu does not reorder these instructions!
246 nref
->tr_next
= td
->td_toks
;
252 * Attempt to gain ownership
257 * Try to acquire the token if we do not already have
265 * NOTE: If atomic_cmpset_ptr() fails we have to
266 * loop and try again. It just means we
269 if (atomic_cmpset_ptr(&tok
->t_ref
, NULL
, nref
))
275 * If acquisition fails the token might be held
276 * recursively by another ref owned by the same
279 * NOTE! We cannot just dereference 'ref' to test
280 * the tr_owner as its storage will be
281 * unstable if it belongs to another thread.
283 * NOTE! We do not migrate t_ref to nref here as we
284 * want the recursion unwinding in reverse order
285 * to NOT release the token until last the
286 * recursive ref is released.
288 for (scan2
= nref
->tr_next
; scan2
; scan2
= scan2
->tr_next
) {
297 * Acquire a serializing token. This routine does not block.
301 _lwkt_trytokref(lwkt_tokref_t ref
, thread_t td
)
303 if (_lwkt_trytokref2(ref
, td
) == FALSE
) {
305 * Cleanup. Remove the token from the thread's list.
307 td
->td_toks
= ref
->tr_next
;
314 * Acquire a serializing token. This routine can block.
318 _lwkt_gettokref(lwkt_tokref_t ref
, thread_t td
)
320 if (_lwkt_trytokref2(ref
, td
) == FALSE
) {
322 * Give up running if we can't acquire the token right now.
323 * But as we have linked in the tokref to the thread's list
324 * (_lwkt_trytokref2), the scheduler now takes care to acquire
325 * the token (by calling lwkt_getalltokens) before resuming
326 * execution. As such, when we return from lwkt_yield(),
327 * the token is acquired.
329 * Since we failed this is not a recursive token so upon
330 * return tr_tok->t_ref should be assigned to this specific
337 if (ref
->tr_tok
->t_ref
!= ref
) {
339 kprintf("gettokref %p failed, held by tok %p ref %p\n",
340 ref
, ref
->tr_tok
, ref
->tr_tok
->t_ref
);
341 for (scan
= td
->td_toks
; scan
; scan
= scan
->tr_next
) {
342 kprintf(" %p\n", scan
);
346 KKASSERT(ref
->tr_tok
->t_ref
== ref
);
351 lwkt_gettoken(lwkt_tokref_t ref
, lwkt_token_t tok
)
353 thread_t td
= curthread
;
355 lwkt_tokref_init(ref
, tok
, td
);
356 _lwkt_gettokref(ref
, td
);
360 lwkt_getpooltoken(lwkt_tokref_t ref
, void *ptr
)
362 thread_t td
= curthread
;
364 lwkt_tokref_init(ref
, _lwkt_token_pool_lookup(ptr
), td
);
365 _lwkt_gettokref(ref
, td
);
369 lwkt_gettokref(lwkt_tokref_t ref
)
371 _lwkt_gettokref(ref
, ref
->tr_owner
);
375 lwkt_trytoken(lwkt_tokref_t ref
, lwkt_token_t tok
)
377 thread_t td
= curthread
;
379 lwkt_tokref_init(ref
, tok
, td
);
380 return(_lwkt_trytokref(ref
, td
));
384 lwkt_trytokref(lwkt_tokref_t ref
)
386 return(_lwkt_trytokref(ref
, ref
->tr_owner
));
390 * Release a serializing token.
392 * WARNING! Any recursive tokens must be released in reverse order.
395 lwkt_reltoken(lwkt_tokref_t ref
)
397 struct lwkt_tokref
**scanp
;
404 * Remove the ref from the thread's token list.
406 * NOTE: td == curthread
409 for (scanp
= &td
->td_toks
; *scanp
!= ref
; scanp
= &((*scanp
)->tr_next
))
411 *scanp
= ref
->tr_next
;
415 * Only clear the token if it matches ref. If ref was a recursively
416 * acquired token it may not match.
418 if (tok
->t_ref
== ref
)
423 * Pool tokens are used to provide a type-stable serializing token
424 * pointer that does not race against disappearing data structures.
426 * This routine is called in early boot just after we setup the BSP's
427 * globaldata structure.
430 lwkt_token_pool_init(void)
434 for (i
= 0; i
< LWKT_NUM_POOL_TOKENS
; ++i
)
435 lwkt_token_init(&pool_tokens
[i
]);
439 lwkt_token_pool_lookup(void *ptr
)
441 return (_lwkt_token_pool_lookup(ptr
));
445 * Initialize the owner and release-to cpu to the current cpu
446 * and reset the generation count.
449 lwkt_token_init(lwkt_token_t tok
)
455 lwkt_token_uninit(lwkt_token_t tok
)
462 lwkt_token_is_stale(lwkt_tokref_t ref
)
464 lwkt_token_t tok
= ref
->tr_tok
;
466 KKASSERT(tok
->t_owner
== curthread
&& ref
->tr_state
== 1 &&
469 /* Token is not stale */
470 if (tok
->t_lastowner
== tok
->t_owner
)
474 * The token is stale. Reset to not stale so that the next call to
475 * lwkt_token_is_stale will return "not stale" unless the token
476 * was acquired in-between by another thread.
478 tok
->t_lastowner
= tok
->t_owner
;