xref: /xnu-8020.121.3/libkern/kxld/kxld_array.h (revision fdd8201d7b966f0c3ea610489d29bd841d358941)
1*fdd8201dSApple OSS Distributions /*
2*fdd8201dSApple OSS Distributions  * Copyright (c) 2008 Apple Inc. All rights reserved.
3*fdd8201dSApple OSS Distributions  *
4*fdd8201dSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*fdd8201dSApple OSS Distributions  *
6*fdd8201dSApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*fdd8201dSApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*fdd8201dSApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*fdd8201dSApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*fdd8201dSApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*fdd8201dSApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*fdd8201dSApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*fdd8201dSApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*fdd8201dSApple OSS Distributions  *
15*fdd8201dSApple OSS Distributions  * Please obtain a copy of the License at
16*fdd8201dSApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*fdd8201dSApple OSS Distributions  *
18*fdd8201dSApple OSS Distributions  * The Original Code and all software distributed under the License are
19*fdd8201dSApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*fdd8201dSApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*fdd8201dSApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*fdd8201dSApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*fdd8201dSApple OSS Distributions  * Please see the License for the specific language governing rights and
24*fdd8201dSApple OSS Distributions  * limitations under the License.
25*fdd8201dSApple OSS Distributions  *
26*fdd8201dSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*fdd8201dSApple OSS Distributions  */
28*fdd8201dSApple OSS Distributions #ifndef _KXLD_ARRAY_H_
29*fdd8201dSApple OSS Distributions #define _KXLD_ARRAY_H_
30*fdd8201dSApple OSS Distributions 
31*fdd8201dSApple OSS Distributions #include <sys/queue.h>
32*fdd8201dSApple OSS Distributions #include <sys/types.h>
33*fdd8201dSApple OSS Distributions #if KERNEL
34*fdd8201dSApple OSS Distributions     #include <libkern/kxld_types.h>
35*fdd8201dSApple OSS Distributions #else
36*fdd8201dSApple OSS Distributions     #include "kxld_types.h"
37*fdd8201dSApple OSS Distributions #endif
38*fdd8201dSApple OSS Distributions 
39*fdd8201dSApple OSS Distributions /*******************************************************************************
40*fdd8201dSApple OSS Distributions * This is a resizeable array implementation designed primarily to maximize
41*fdd8201dSApple OSS Distributions * memory reuse.  The array should only be allocated once, but it can be
42*fdd8201dSApple OSS Distributions * initialized many times.  It persists its memory across initializations, and
43*fdd8201dSApple OSS Distributions * reallocates only if it needs to grow the internal array, such that memory
44*fdd8201dSApple OSS Distributions * allocation churn is eliminated.  Growth is accomodated by building a linked
45*fdd8201dSApple OSS Distributions * list of identically sized arrays.  These arrays can be consolidated into
46*fdd8201dSApple OSS Distributions * one large array in the init function.
47*fdd8201dSApple OSS Distributions *
48*fdd8201dSApple OSS Distributions * A technique commonly used in kxld is to make an array of objects that
49*fdd8201dSApple OSS Distributions * themselves contain kxld_arrays.  To minimize memory churn across links, only
50*fdd8201dSApple OSS Distributions * the individual objects contained in an array should be cleared at the end of
51*fdd8201dSApple OSS Distributions * each link, such that they are in a state ready for reinitialization with the
52*fdd8201dSApple OSS Distributions * memory they have already allocated.  The array that contains them should not
53*fdd8201dSApple OSS Distributions * be cleared.  After all links are complete, to ensure that all memory is
54*fdd8201dSApple OSS Distributions * properly freed, one should call kxld_array_get_slot to walk the entire
55*fdd8201dSApple OSS Distributions * allocated space of the array and clean up all potential instances contained
56*fdd8201dSApple OSS Distributions * therein.  Since this technique is somewhat fragile, there are certain
57*fdd8201dSApple OSS Distributions * requirements that must be met, and guarantees that the array implementation
58*fdd8201dSApple OSS Distributions * provides.
59*fdd8201dSApple OSS Distributions *
60*fdd8201dSApple OSS Distributions * Requirements:
61*fdd8201dSApple OSS Distributions *   - A newly allocated, uninitialized array object must be zeroed out before
62*fdd8201dSApple OSS Distributions *     it is initialized
63*fdd8201dSApple OSS Distributions *   - The objects stored in the array that will be reused must consider
64*fdd8201dSApple OSS Distributions *     being bzeroed a valid initial state.  Specifially, they must check that
65*fdd8201dSApple OSS Distributions *     pointers they contain are nonnull before they are freed or followed
66*fdd8201dSApple OSS Distributions *     at both construction and destruction time.
67*fdd8201dSApple OSS Distributions *
68*fdd8201dSApple OSS Distributions * Guarantees:
69*fdd8201dSApple OSS Distributions *   - The init function will always bzero newly allocated memory.  If memory
70*fdd8201dSApple OSS Distributions *     is added by resizing, it will bzero only the newly allocated portion.
71*fdd8201dSApple OSS Distributions *   - clear, deinit, and copy are the only functions that will change the
72*fdd8201dSApple OSS Distributions *     contents of initialized memory.
73*fdd8201dSApple OSS Distributions *   - The reset, clear, deinit functions will accept a NULL pointer to an array.
74*fdd8201dSApple OSS Distributions *******************************************************************************/
75*fdd8201dSApple OSS Distributions 
76*fdd8201dSApple OSS Distributions STAILQ_HEAD(kxld_array_head, kxld_array_pool);
77*fdd8201dSApple OSS Distributions 
78*fdd8201dSApple OSS Distributions struct kxld_array {
79*fdd8201dSApple OSS Distributions 	struct kxld_array_head pools;
80*fdd8201dSApple OSS Distributions 	size_t itemsize;        /* The size of the items that the array contains */
81*fdd8201dSApple OSS Distributions 	size_t pool_capacity;   /* The size of each pool's internal buffer */
82*fdd8201dSApple OSS Distributions 	u_int pool_maxitems;    /* The maximum number of items each pool can hold
83*fdd8201dSApple OSS Distributions 	                         * given the current size of each pool's buffer.
84*fdd8201dSApple OSS Distributions 	                         */
85*fdd8201dSApple OSS Distributions 	u_int nitems;           /* The current number of items this array contains */
86*fdd8201dSApple OSS Distributions 	u_int maxitems;         /* The maximum number of items this array can contain */
87*fdd8201dSApple OSS Distributions 	u_int npools;           /* The number of pools in the pool list */
88*fdd8201dSApple OSS Distributions };
89*fdd8201dSApple OSS Distributions 
90*fdd8201dSApple OSS Distributions struct kxld_array_pool {
91*fdd8201dSApple OSS Distributions 	STAILQ_ENTRY(kxld_array_pool) entries;
92*fdd8201dSApple OSS Distributions 	u_char *buffer;         /* The internal memory buffer */
93*fdd8201dSApple OSS Distributions 	u_int nitems;           /* The number of items the array contains */
94*fdd8201dSApple OSS Distributions };
95*fdd8201dSApple OSS Distributions 
96*fdd8201dSApple OSS Distributions typedef struct kxld_array KXLDArray;
97*fdd8201dSApple OSS Distributions typedef struct kxld_array_head KXLDArrayHead;
98*fdd8201dSApple OSS Distributions typedef struct kxld_array_pool KXLDArrayPool;
99*fdd8201dSApple OSS Distributions 
100*fdd8201dSApple OSS Distributions /*******************************************************************************
101*fdd8201dSApple OSS Distributions * Constructors and Destructors
102*fdd8201dSApple OSS Distributions *******************************************************************************/
103*fdd8201dSApple OSS Distributions 
104*fdd8201dSApple OSS Distributions /* Initializes the array's capacity to a minimum of nitems * itemsize */
105*fdd8201dSApple OSS Distributions kern_return_t kxld_array_init(KXLDArray *array, size_t itemsize, u_int nitems)
106*fdd8201dSApple OSS Distributions __attribute__((nonnull, visibility("hidden")));
107*fdd8201dSApple OSS Distributions 
108*fdd8201dSApple OSS Distributions /* Performs a deep copy of the array */
109*fdd8201dSApple OSS Distributions kern_return_t kxld_array_copy(KXLDArray *array, const KXLDArray *src)
110*fdd8201dSApple OSS Distributions __attribute__((nonnull, visibility("hidden")));
111*fdd8201dSApple OSS Distributions 
112*fdd8201dSApple OSS Distributions /* Sets the number of items in the array to 0 */
113*fdd8201dSApple OSS Distributions void kxld_array_reset(KXLDArray *array)
114*fdd8201dSApple OSS Distributions __attribute__((visibility("hidden")));
115*fdd8201dSApple OSS Distributions 
116*fdd8201dSApple OSS Distributions /* Zeroes out the array and sets nitems to 0 */
117*fdd8201dSApple OSS Distributions void kxld_array_clear(KXLDArray *array)
118*fdd8201dSApple OSS Distributions __attribute__((visibility("hidden")));
119*fdd8201dSApple OSS Distributions 
120*fdd8201dSApple OSS Distributions /* Frees the array's internal buffer */
121*fdd8201dSApple OSS Distributions void kxld_array_deinit(KXLDArray *array)
122*fdd8201dSApple OSS Distributions __attribute__((visibility("hidden")));
123*fdd8201dSApple OSS Distributions 
124*fdd8201dSApple OSS Distributions /*******************************************************************************
125*fdd8201dSApple OSS Distributions * Accessors
126*fdd8201dSApple OSS Distributions *******************************************************************************/
127*fdd8201dSApple OSS Distributions 
128*fdd8201dSApple OSS Distributions /* Returns the item at the specified index, or NULL if idx > nitems */
129*fdd8201dSApple OSS Distributions void *kxld_array_get_item(const KXLDArray *array, u_int idx)
130*fdd8201dSApple OSS Distributions __attribute__((pure, nonnull, visibility("hidden")));
131*fdd8201dSApple OSS Distributions 
132*fdd8201dSApple OSS Distributions /* Returns the item at the specified index, or NULL if idx > maxitems */
133*fdd8201dSApple OSS Distributions void *kxld_array_get_slot(const KXLDArray *array, u_int idx)
134*fdd8201dSApple OSS Distributions __attribute__((pure, nonnull, visibility("hidden")));
135*fdd8201dSApple OSS Distributions 
136*fdd8201dSApple OSS Distributions /* Returns the index of a specified item in the array */
137*fdd8201dSApple OSS Distributions kern_return_t kxld_array_get_index(const KXLDArray *array, const void *item,
138*fdd8201dSApple OSS Distributions     u_int *idx)
139*fdd8201dSApple OSS Distributions __attribute__((nonnull, visibility("hidden")));
140*fdd8201dSApple OSS Distributions 
141*fdd8201dSApple OSS Distributions /*******************************************************************************
142*fdd8201dSApple OSS Distributions * Modifiers
143*fdd8201dSApple OSS Distributions *******************************************************************************/
144*fdd8201dSApple OSS Distributions 
145*fdd8201dSApple OSS Distributions /* Grows the array to contain a minimum of nitems.  If extra memory is needed,
146*fdd8201dSApple OSS Distributions  * it will allocate a pool and add it to the list of pools maintained by this
147*fdd8201dSApple OSS Distributions  * array.
148*fdd8201dSApple OSS Distributions  */
149*fdd8201dSApple OSS Distributions kern_return_t kxld_array_resize(KXLDArray *array, u_int nitems)
150*fdd8201dSApple OSS Distributions __attribute__((nonnull, visibility("hidden")));
151*fdd8201dSApple OSS Distributions 
152*fdd8201dSApple OSS Distributions /* Removes an element from the array.  This is only supported for arrays with
153*fdd8201dSApple OSS Distributions  * a single pool.
154*fdd8201dSApple OSS Distributions  */
155*fdd8201dSApple OSS Distributions kern_return_t kxld_array_remove(KXLDArray *array, u_int idx)
156*fdd8201dSApple OSS Distributions __attribute__((nonnull, visibility("hidden")));
157*fdd8201dSApple OSS Distributions 
158*fdd8201dSApple OSS Distributions #endif /* _KXLD_ARRAY_H_ */
159