2 * Copyright (c) 2016 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
28 #ifdef XNU_KERNEL_PRIVATE
30 #include <kern/kern_types.h>
31 #include <machine/locks.h>
33 #if CONFIG_LTABLE_DEBUG
34 #define ltdbg(fmt, ...) \
35 printf("LT[%s]: " fmt "\n", __func__, ## __VA_ARGS__)
37 #define ltdbg(fmt, ...) do { } while (0)
40 #ifdef LTABLE_VERBOSE_DEBUG
41 #define ltdbg_v(fmt, ...) \
42 printf("LT[v:%s]: " fmt "\n", __func__, ## __VA_ARGS__)
44 #define ltdbg_v(fmt, ...) do { } while (0)
47 #define ltinfo(fmt, ...) \
48 printf("LT[%s]: " fmt "\n", __func__, ## __VA_ARGS__)
50 #define lterr(fmt, ...) \
51 printf("LT[%s] ERROR: " fmt "\n", __func__, ## __VA_ARGS__)
55 /* ----------------------------------------------------------------------
57 * Lockless Link Table Interface
59 * ---------------------------------------------------------------------- */
66 * this bitfield is OK because we don't need to
67 * enforce a particular memory layout
69 uint64_t idx
:18, /* allows indexing up to 8MB of 32byte objects */
75 /* this _must_ match the idx bitfield definition in struct ltable_id */
76 #define LT_IDX_MAX (0x3ffff)
78 extern vm_size_t g_lt_max_tbl_size
;
82 struct ltable_id lt_id
;
87 /* reference count bits should _always_ be the low-order bits */
88 #define LT_BITS_REFCNT_MASK (0x1FFFFFFFU)
89 #define LT_BITS_REFCNT_SHIFT (0)
90 #define LT_BITS_REFCNT (LT_BITS_REFCNT_MASK << LT_BITS_REFCNT_SHIFT)
92 #define LT_BITS_TYPE_MASK (0x3U)
93 #define LT_BITS_TYPE_SHIFT (29)
94 #define LT_BITS_TYPE (LT_BITS_TYPE_MASK << LT_BITS_TYPE_SHIFT)
96 #define LT_BITS_VALID_MASK (0x1U)
97 #define LT_BITS_VALID_SHIFT (31)
98 #define LT_BITS_VALID (LT_BITS_VALID_MASK << LT_BITS_VALID_SHIFT)
100 #define lt_bits_refcnt(bits) \
101 (((bits) >> LT_BITS_REFCNT_SHIFT) & LT_BITS_REFCNT_MASK)
103 #define lt_bits_type(bits) \
104 (((bits) >> LT_BITS_TYPE_SHIFT) & LT_BITS_TYPE_MASK)
106 #define lt_bits_valid(bits) \
107 ((bits) & LT_BITS_VALID)
117 typedef void (*ltable_poison_func
)(struct link_table
*, struct lt_elem
*);
120 * link_table structure
122 * A link table is a container for slabs of elements. Each slab is 'slab_sz'
123 * bytes and contains 'slab_sz/elem_sz' elements (of 'elem_sz' bytes each).
124 * These slabs allow the table to be broken up into potentially dis-contiguous
125 * VA space. On 32-bit platforms with large amounts of physical RAM, this is
126 * quite important. Keeping slabs like this slightly complicates retrieval of
127 * table elements, but not by much.
130 struct lt_elem
**table
; /* an array of 'slabs' of elements */
131 struct lt_elem
**next_free_slab
;
132 struct ltable_id free_list
__attribute__((aligned(8)));
134 uint32_t elem_sz
; /* size of a table element (bytes) */
138 uint32_t slab_sz
; /* size of a table 'slab' object (bytes) */
144 ltable_poison_func poison
;
149 #if CONFIG_LTABLE_STATS
155 int64_t nreservations
;
156 uint64_t nreserved_releases
;
161 uint64_t max_reservations
;
162 uint64_t avg_reservations
;
164 } __attribute__((aligned(8)));
168 * ltable_bootstrap: bootstrap a link table
170 * Called once at system boot
172 extern void ltable_bootstrap(void);
176 * ltable_init: initialize a link table with given parameters
179 extern void ltable_init(struct link_table
*table
, const char *name
,
180 uint32_t max_tbl_elem
, uint32_t elem_sz
,
181 ltable_poison_func poison
);
185 * ltable_grow: grow a link table by adding another 'slab' of table elements
188 * table mutex is unlocked
189 * calling thread can block
191 extern void ltable_grow(struct link_table
*table
, uint32_t min_free
);
195 * ltable_alloc_elem: allocate one or more elements from a given table
197 * The returned element(s) will be of type 'type', but will remain invalid.
199 * If the caller has disabled preemption, then this function may (rarely) spin
200 * waiting either for another thread to either release 'nelem' table elements,
203 * If the caller can block, then this function may (rarely) block while
204 * the table grows to meet the demand for 'nelem' element(s).
206 extern __attribute__((noinline
))
207 struct lt_elem
*ltable_alloc_elem(struct link_table
*table
, int type
,
208 int nelem
, int nattempts
);
211 #if DEVELOPMENT || DEBUG
213 * ltable_nelem: returns how many elements are used in this
217 int ltable_nelem(struct link_table
*table
);
221 * ltable_realloc_elem: convert a reserved element to a particular type
223 * This funciton is used to convert reserved elements (not yet marked valid)
224 * to the given 'type'. The generation of 'elem' is incremented, the element
225 * is disconnected from any list to which it belongs, and its type is set to
228 extern void ltable_realloc_elem(struct link_table
*table
,
229 struct lt_elem
*elem
, int type
);
233 * ltable_get_elem: get a reference to a table element identified by 'id'
235 * Returns a reference to the table element associated with the given 'id', or
236 * NULL if the 'id' was invalid or does not exist in 'table'. The caller is
237 * responsible to release the reference using ltable_put_elem().
239 * NOTE: if the table element pointed to by 'id' is marked as invalid,
240 * this function will return NULL.
242 extern struct lt_elem
*ltable_get_elem(struct link_table
*table
, uint64_t id
);
246 * ltable_put_elem: release a reference to table element
248 * This function releases a reference taken on a table element via
249 * ltable_get_elem(). This function will release the element back to 'table'
250 * when the reference count goes to 0 AND the element has been marked as
253 extern void ltable_put_elem(struct link_table
*table
, struct lt_elem
*elem
);
257 * lt_elem_invalidate: mark 'elem' as invalid
259 * NOTE: this does _not_ get or put a reference on 'elem'
261 extern void lt_elem_invalidate(struct lt_elem
*elem
);
265 * lt_elem_mkvalid: mark 'elem' as valid
267 * NOTE: this does _not_ get or put a reference on 'elem'
269 extern void lt_elem_mkvalid(struct lt_elem
*elem
);
272 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
274 * API: lt_elem_list_*
276 * Reuse the free list linkage member, 'lt_next_idx' of a link table element
277 * in a slightly more generic singly-linked list. All members of this list
278 * have been allocated from a table, but have not been made valid.
280 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/
283 * lt_elem_list_link: link a child onto a parent
285 * Note that if 'parent' is the head of a list, this function will follow that
286 * list and attach 'child' to the end of it. In the simplest case, this
287 * results in: parent->child
288 * however this could also result in: parent->...->child
290 extern int lt_elem_list_link(struct link_table
*table
,
291 struct lt_elem
*parent
, struct lt_elem
*child
);
295 * lt_elem_list_first: obtain a pointer to the first element of a list.
297 * This function converts the head of a singly-linked list, 'id', into a real
298 * lt_elem object and returns a pointer to the object.
300 * It does _not_ take an extra reference on the object: the list implicitly
301 * holds that reference.
303 extern struct lt_elem
*lt_elem_list_first(struct link_table
*table
, uint64_t id
);
307 * lt_elem_list_next: return the item subsequent to 'elem' in a list
309 * Note that this will return NULL if 'elem' is actually the end of the list.
311 extern struct lt_elem
*lt_elem_list_next(struct link_table
*table
,
312 struct lt_elem
*elem
);
316 * lt_elem_list_break: break a list in two around 'elem'
318 * This function will reset the next_idx field of 'elem' (making it the end of
319 * the list), and return the element subsequent to 'elem' in the list
320 * (which could be NULL)
322 extern struct lt_elem
*lt_elem_list_break(struct link_table
*table
,
323 struct lt_elem
*elem
);
327 * lt_elem_list_pop: pop an item off the head of a list
329 * The list head is pointed to by '*id', the element corresponding to '*id' is
330 * returned by this function, and the new list head is returned in the in/out
331 * parameter, '*id'. The caller is responsible for the reference on the
332 * returned object. A realloc is done to reset the type of the object, but it
333 * is still left invalid.
335 extern struct lt_elem
*lt_elem_list_pop(struct link_table
*table
,
336 uint64_t *id
, int type
);
340 * lt_elem_list_release: free an entire list of reserved elements
342 * All elements in the list whose first member is 'head' will be released back
343 * to 'table' as free elements. The 'type' parameter is used in development
344 * kernels to assert that all elements on the list are of the given type.
346 extern int lt_elem_list_release(struct link_table
*table
,
347 struct lt_elem
*head
,
348 int __assert_only type
);
351 lt_elem_list_release_id(struct link_table
*table
,
352 uint64_t id
, int type
)
354 return lt_elem_list_release(table
, lt_elem_list_first(table
, id
), type
);
357 #endif /* XNU_KERNEL_PRIVATE */