4 * Copyright (c) 2014-2015 Apple Computer, Inc. All rights reserved.
6 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. The rights granted to you under the License
12 * may not be used to create, or enable the creation or redistribution of,
13 * unlawful or unlicensed copies of an Apple operating system, or to
14 * circumvent, violate, or enable the circumvention or violation of, any
15 * terms of an Apple operating system software license agreement.
17 * Please obtain a copy of the License at
18 * http://www.opensource.apple.com/apsl/ and read it before using this file.
20 * The Original Code and all software distributed under the License are
21 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
22 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
23 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
25 * Please see the License for the specific language governing rights and
26 * limitations under the License.
28 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
32 #include <mach/mach_types.h>
33 #include <mach/sync_policy.h>
34 #include <mach/kern_return.h> /* for kern_return_t */
36 #include <kern/kern_types.h> /* for wait_queue_t */
37 #include <kern/queue.h>
38 #include <kern/assert.h>
40 #include <sys/cdefs.h>
43 * Constants and types used in the waitq APIs
45 #define WAITQ_ALL_PRIORITIES (-1)
46 #define WAITQ_PROMOTE_PRIORITY (-2)
47 #define WAITQ_SELECT_MAX_PRI (-3)
49 typedef enum e_waitq_lock_state
{
50 WAITQ_KEEP_LOCKED
= 0x01,
52 WAITQ_SHOULD_LOCK
= 0x04,
53 WAITQ_ALREADY_LOCKED
= 0x08,
54 WAITQ_DONT_LOCK
= 0x10,
58 * The Jenkins "one at a time" hash.
59 * TBD: There may be some value to unrolling here,
60 * depending on the architecture.
62 static __inline__
uint32_t
63 jenkins_hash(char *key
, size_t length
)
68 for (i
= 0; i
< length
; i
++) {
69 hash
+= (uint32_t)key
[i
];
81 /* Opaque sizes and alignment used for struct verification */
83 #define WQ_OPAQUE_ALIGN 8
84 #define WQS_OPAQUE_ALIGN 8
85 #define WQ_OPAQUE_SIZE 48
86 #define WQS_OPAQUE_SIZE 64
88 #error Unknown size requirement
91 #ifndef MACH_KERNEL_PRIVATE
94 * The opaque waitq structure is here mostly for AIO and selinfo,
95 * but could potentially be used by other BSD subsystems.
97 struct waitq
{ char opaque
[WQ_OPAQUE_SIZE
]; } __attribute__((aligned(WQ_OPAQUE_ALIGN
)));
98 struct waitq_set
{ char opaque
[WQS_OPAQUE_SIZE
]; } __attribute__((aligned(WQS_OPAQUE_ALIGN
)));
100 #else /* MACH_KERNEL_PRIVATE */
102 #include <kern/spl.h>
103 #include <kern/simple_lock.h>
104 #include <mach/branch_predicates.h>
106 #include <machine/cpu_number.h>
107 #include <machine/machine_routines.h> /* machine_timeout_suspended() */
110 * The event mask is of 59 bits on 64 bit architeture and 27 bits on
111 * 32 bit architecture and so we calculate its size using sizeof(long).
112 * If the bitfield for wq_type and wq_fifo is changed, then value of
113 * EVENT_MASK_BITS will also change.
115 * New plan: this is an optimization anyway, so I'm stealing 32bits
116 * from the mask to shrink the waitq object even further.
118 #define _EVENT_MASK_BITS ((sizeof(uint32_t) * 8) - 6)
120 #define WAITQ_BOOST_PRIORITY 31
128 #if CONFIG_WAITQ_STATS
129 #define NWAITQ_BTFRAMES 5
134 uint64_t failed_wakeups
;
136 uintptr_t last_wait
[NWAITQ_BTFRAMES
];
137 uintptr_t last_wakeup
[NWAITQ_BTFRAMES
];
138 uintptr_t last_failed_wakeup
[NWAITQ_BTFRAMES
];
145 * This is the definition of the common event wait queue
146 * that the scheduler APIs understand. It is used
147 * internally by the gerneralized event waiting mechanism
148 * (assert_wait), and also for items that maintain their
149 * own wait queues (such as ports and semaphores).
151 * It is not published to other kernel components.
153 * NOTE: Hardware locks are used to protect event wait
154 * queues since interrupt code is free to post events to
159 waitq_type
:2, /* only public field */
160 waitq_fifo
:1, /* fifo wakeup policy? */
161 waitq_prepost
:1, /* waitq supports prepost? */
162 waitq_irq
:1, /* waitq requires interrupts disabled */
163 waitq_isvalid
:1, /* waitq structure is valid */
164 waitq_eventmask
:_EVENT_MASK_BITS
;
165 /* the wait queue set (set-of-sets) to which this queue belongs */
166 hw_lock_data_t waitq_interlock
; /* interlock */
168 uint64_t waitq_set_id
;
169 uint64_t waitq_prepost_id
;
170 queue_head_t waitq_queue
; /* queue of elements */
173 static_assert(sizeof(struct waitq
) == WQ_OPAQUE_SIZE
, "waitq structure size mismatch");
174 static_assert(__alignof(struct waitq
) == WQ_OPAQUE_ALIGN
, "waitq structure alignment mismatch");
179 * This is the common definition for a set wait queue.
182 struct waitq wqset_q
;
185 uint64_t wqset_prepost_id
;
186 void *wqset_prepost_hook
;
190 static_assert(sizeof(struct waitq_set
) == WQS_OPAQUE_SIZE
, "waitq_set structure size mismatch");
191 static_assert(__alignof(struct waitq_set
) == WQS_OPAQUE_ALIGN
, "waitq_set structure alignment mismatch");
193 extern void waitq_bootstrap(void);
195 #define waitq_is_queue(wq) \
196 ((wq)->waitq_type == WQT_QUEUE)
198 #define waitq_is_set(wq) \
199 ((wq)->waitq_type == WQT_SET && ((struct waitq_set *)(wq))->wqset_id != 0)
201 #define waitqs_is_set(wqs) \
202 (((wqs)->wqset_q.waitq_type == WQT_SET) && ((wqs)->wqset_id != 0))
204 #define waitq_valid(wq) \
205 ((wq) != NULL && (wq)->waitq_isvalid && ((wq)->waitq_type & ~1) == WQT_QUEUE)
208 * Invalidate a waitq. The only valid waitq functions to call after this are:
212 extern void waitq_invalidate_locked(struct waitq
*wq
);
214 #define waitq_empty(wq) \
215 (queue_empty(&(wq)->waitq_queue))
218 #define waitq_held(wq) \
219 (hw_lock_held(&(wq)->waitq_interlock))
221 #define waitq_lock_try(wq) \
222 (hw_lock_try(&(wq)->waitq_interlock))
225 #define waitq_wait_possible(thread) \
226 ((thread)->waitq == NULL)
228 extern void waitq_lock(struct waitq
*wq
);
229 extern void waitq_unlock(struct waitq
*wq
);
231 #define waitq_set_lock(wqs) waitq_lock(&(wqs)->wqset_q)
232 #define waitq_set_unlock(wqs) waitq_unlock(&(wqs)->wqset_q)
233 #define waitq_set_lock_try(wqs) waitq_lock_try(&(wqs)->wqset_q)
234 #define waitq_set_can_prepost(wqs) (waitqs_is_set(wqs) && \
235 (wqs)->wqset_q.waitq_prepost)
236 #define waitq_set_maybe_preposted(wqs) ((wqs)->wqset_q.waitq_prepost && \
237 (wqs)->wqset_prepost_id > 0)
238 #define waitq_set_has_prepost_hook(wqs) (waitqs_is_set(wqs) && \
239 !((wqs)->wqset_q.waitq_prepost) && \
240 (wqs)->wqset_prepost_hook)
242 /* assert intent to wait on a locked wait queue */
243 extern wait_result_t
waitq_assert_wait64_locked(struct waitq
*waitq
,
244 event64_t wait_event
,
245 wait_interrupt_t interruptible
,
246 wait_timeout_urgency_t urgency
,
251 /* pull a thread from its wait queue */
252 extern int waitq_pull_thread_locked(struct waitq
*waitq
, thread_t thread
);
254 /* wakeup all threads waiting for a particular event on locked queue */
255 extern kern_return_t
waitq_wakeup64_all_locked(struct waitq
*waitq
,
256 event64_t wake_event
,
257 wait_result_t result
,
258 uint64_t *reserved_preposts
,
260 waitq_lock_state_t lock_state
);
262 /* wakeup one thread waiting for a particular event on locked queue */
263 extern kern_return_t
waitq_wakeup64_one_locked(struct waitq
*waitq
,
264 event64_t wake_event
,
265 wait_result_t result
,
266 uint64_t *reserved_preposts
,
268 waitq_lock_state_t lock_state
);
270 /* return identity of a thread awakened for a particular <wait_queue,event> */
272 waitq_wakeup64_identify_locked(struct waitq
*waitq
,
273 event64_t wake_event
,
274 wait_result_t result
,
276 uint64_t *reserved_preposts
,
278 waitq_lock_state_t lock_state
);
280 /* wakeup thread iff its still waiting for a particular event on locked queue */
281 extern kern_return_t
waitq_wakeup64_thread_locked(struct waitq
*waitq
,
282 event64_t wake_event
,
284 wait_result_t result
,
285 waitq_lock_state_t lock_state
);
287 /* clear all preposts generated by the given waitq */
288 extern int waitq_clear_prepost_locked(struct waitq
*waitq
);
290 /* clear all preposts from the given wait queue set */
291 extern void waitq_set_clear_preposts_locked(struct waitq_set
*wqset
);
293 /* unlink the given waitq from all sets - returns unlocked */
294 extern kern_return_t
waitq_unlink_all_unlock(struct waitq
*waitq
);
296 /* unlink the given waitq set from all waitqs and waitq sets - returns unlocked */
297 extern kern_return_t
waitq_set_unlink_all_unlock(struct waitq_set
*wqset
);
302 * clear a thread's boosted priority
303 * (given via WAITQ_PROMOTE_PRIORITY in the wakeup function)
305 extern void waitq_clear_promotion_locked(struct waitq
*waitq
,
312 enum waitq_iteration_constant
{
313 WQ_ITERATE_DROPPED
= -4,
314 WQ_ITERATE_INVALID
= -3,
315 WQ_ITERATE_ABORTED
= -2,
316 WQ_ITERATE_FAILURE
= -1,
317 WQ_ITERATE_SUCCESS
= 0,
318 WQ_ITERATE_CONTINUE
= 1,
319 WQ_ITERATE_BREAK
= 2,
320 WQ_ITERATE_BREAK_KEEP_LOCKED
= 3,
321 WQ_ITERATE_INVALIDATE_CONTINUE
= 4,
322 WQ_ITERATE_RESTART
= 5,
323 WQ_ITERATE_FOUND
= 6,
324 WQ_ITERATE_UNLINKED
= 7,
327 /* callback invoked with both 'waitq' and 'wqset' locked */
328 typedef int (*waitq_iterator_t
)(void *ctx
, struct waitq
*waitq
,
329 struct waitq_set
*wqset
);
331 /* iterate over all sets to which waitq belongs */
332 extern int waitq_iterate_sets(struct waitq
*waitq
, void *ctx
,
333 waitq_iterator_t it
);
335 /* iterator over all waitqs that have preposted to wqset */
336 extern int waitq_set_iterate_preposts(struct waitq_set
*wqset
,
337 void *ctx
, waitq_iterator_t it
);
340 * prepost reservation
342 extern uint64_t waitq_prepost_reserve(struct waitq
*waitq
, int extra
,
343 waitq_lock_state_t lock_state
);
345 extern void waitq_prepost_release_reserve(uint64_t id
);
347 #endif /* MACH_KERNEL_PRIVATE */
355 extern kern_return_t
waitq_init(struct waitq
*waitq
, int policy
);
356 extern void waitq_deinit(struct waitq
*waitq
);
361 extern struct waitq
*_global_eventq(char *event
, size_t event_length
);
362 #define global_eventq(event) _global_eventq((char *)&(event), sizeof(event))
364 extern struct waitq
*global_waitq(int index
);
367 * set alloc/init/free
369 extern struct waitq_set
*waitq_set_alloc(int policy
, void *prepost_hook
);
371 extern kern_return_t
waitq_set_init(struct waitq_set
*wqset
,
372 int policy
, uint64_t *reserved_link
,
375 extern void waitq_set_deinit(struct waitq_set
*wqset
);
377 extern kern_return_t
waitq_set_free(struct waitq_set
*wqset
);
379 #if defined(DEVELOPMENT) || defined(DEBUG)
380 #if CONFIG_WAITQ_DEBUG
381 extern uint64_t wqset_id(struct waitq_set
*wqset
);
383 struct waitq
*wqset_waitq(struct waitq_set
*wqset
);
384 #endif /* CONFIG_WAITQ_DEBUG */
385 #endif /* DEVELOPMENT || DEBUG */
391 extern uint64_t waitq_link_reserve(struct waitq
*waitq
);
393 extern void waitq_link_release(uint64_t id
);
395 extern boolean_t
waitq_member(struct waitq
*waitq
, struct waitq_set
*wqset
);
397 /* returns true if the waitq is in at least 1 set */
398 extern boolean_t
waitq_in_set(struct waitq
*waitq
);
401 /* on success, consumes an reserved_link reference */
402 extern kern_return_t
waitq_link(struct waitq
*waitq
,
403 struct waitq_set
*wqset
,
404 waitq_lock_state_t lock_state
,
405 uint64_t *reserved_link
);
407 extern kern_return_t
waitq_unlink(struct waitq
*waitq
, struct waitq_set
*wqset
);
409 extern kern_return_t
waitq_unlink_all(struct waitq
*waitq
);
411 extern kern_return_t
waitq_set_unlink_all(struct waitq_set
*wqset
);
416 extern void waitq_clear_prepost(struct waitq
*waitq
);
418 extern void waitq_set_clear_preposts(struct waitq_set
*wqset
);
421 * interfaces used primarily by the select/kqueue subsystems
423 extern uint64_t waitq_get_prepost_id(struct waitq
*waitq
);
424 extern void waitq_unlink_by_prepost_id(uint64_t wqp_id
, struct waitq_set
*wqset
);
429 extern int waitq_is_valid(struct waitq
*waitq
);
431 extern int waitq_set_is_valid(struct waitq_set
*wqset
);
433 extern int waitq_is_global(struct waitq
*waitq
);
435 extern int waitq_irq_safe(struct waitq
*waitq
);
437 #if CONFIG_WAITQ_STATS
441 #define WAITQ_STATS_VERSION 1
442 struct wq_table_stats
{
444 uint32_t table_elements
;
445 uint32_t table_used_elems
;
446 uint32_t table_elem_sz
;
447 uint32_t table_slabs
;
448 uint32_t table_slab_sz
;
450 uint64_t table_num_allocs
;
451 uint64_t table_num_preposts
;
452 uint64_t table_num_reservations
;
454 uint64_t table_max_used
;
455 uint64_t table_avg_used
;
456 uint64_t table_max_reservations
;
457 uint64_t table_avg_reservations
;
460 extern void waitq_link_stats(struct wq_table_stats
*stats
);
461 extern void waitq_prepost_stats(struct wq_table_stats
*stats
);
462 #endif /* CONFIG_WAITQ_STATS */
466 * higher-level waiting APIs
470 /* assert intent to wait on <waitq,event64> pair */
471 extern wait_result_t
waitq_assert_wait64(struct waitq
*waitq
,
472 event64_t wait_event
,
473 wait_interrupt_t interruptible
,
476 extern wait_result_t
waitq_assert_wait64_leeway(struct waitq
*waitq
,
477 event64_t wait_event
,
478 wait_interrupt_t interruptible
,
479 wait_timeout_urgency_t urgency
,
483 /* wakeup the most appropriate thread waiting on <waitq,event64> pair */
484 extern kern_return_t
waitq_wakeup64_one(struct waitq
*waitq
,
485 event64_t wake_event
,
486 wait_result_t result
,
489 /* wakeup all the threads waiting on <waitq,event64> pair */
490 extern kern_return_t
waitq_wakeup64_all(struct waitq
*waitq
,
491 event64_t wake_event
,
492 wait_result_t result
,
495 #ifdef XNU_KERNEL_PRIVATE
497 /* wakeup a specified thread iff it's waiting on <waitq,event64> pair */
498 extern kern_return_t
waitq_wakeup64_thread(struct waitq
*waitq
,
499 event64_t wake_event
,
501 wait_result_t result
);
503 /* return a reference to the thread that was woken up */
505 waitq_wakeup64_identify(struct waitq
*waitq
,
506 event64_t wake_event
,
507 wait_result_t result
,
510 #endif /* XNU_KERNEL_PRIVATE */
514 #endif /* KERNEL_PRIVATE */
515 #endif /* _WAITQ_H_ */