3 Functions for maintaining handles on objects. */
6 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
7 * Copyright (c) 1999-2003 by Internet Software Consortium
9 * Permission to use, copy, modify, and distribute this software for any
10 * purpose with or without fee is hereby granted, provided that the above
11 * copyright notice and this permission notice appear in all copies.
13 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
14 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
15 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
16 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
17 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
18 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
19 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 * Internet Systems Consortium, Inc.
23 * Redwood City, CA 94063
27 * This software has been written for Internet Systems Consortium
28 * by Ted Lemon in cooperation with Vixie Enterprises and Nominum, Inc.
29 * To learn more about Internet Systems Consortium, see
30 * ``http://www.isc.org/''. To learn more about Vixie Enterprises,
31 * see ``http://www.vix.com''. To learn more about Nominum, Inc., see
32 * ``http://www.nominum.com''.
35 #include <omapip/omapip_p.h>
37 /* The handle table is a hierarchical tree designed for quick mapping
38 of handle identifiers to objects. Objects contain their own handle
39 identifiers if they have them, so the reverse mapping is also
40 quick. The hierarchy is made up of table objects, each of which
41 has 120 entries, a flag indicating whether the table is a leaf
42 table or an indirect table, the handle of the first object covered
43 by the table and the first object after that that's *not* covered
44 by the table, a count of how many objects of either type are
45 currently stored in the table, and an array of 120 entries pointing
46 either to objects or tables.
48 When we go to add an object to the table, we look to see if the
49 next object handle to be assigned is covered by the outermost
50 table. If it is, we find the place within that table where the
51 next handle should go, and if necessary create additional nodes in
52 the tree to contain the new handle. The pointer to the object is
53 then stored in the correct position.
55 Theoretically, we could have some code here to free up handle
56 tables as they go out of use, but by and large handle tables won't
57 go out of use, so this is being skipped for now. It shouldn't be
58 too hard to implement in the future if there's a different
61 omapi_handle_table_t
*omapi_handle_table
;
62 omapi_handle_t omapi_next_handle
= 1; /* Next handle to be assigned. */
64 static isc_result_t
omapi_handle_lookup_in (omapi_object_t
**,
66 omapi_handle_table_t
*);
67 static isc_result_t
omapi_object_handle_in_table (omapi_handle_t
,
68 omapi_handle_table_t
*,
70 static isc_result_t
omapi_handle_table_enclose (omapi_handle_table_t
**);
72 isc_result_t
omapi_object_handle (omapi_handle_t
*h
, omapi_object_t
*o
)
82 if (!omapi_handle_table
) {
83 omapi_handle_table
= dmalloc (sizeof *omapi_handle_table
, MDL
);
84 if (!omapi_handle_table
)
85 return ISC_R_NOMEMORY
;
86 memset (omapi_handle_table
, 0, sizeof *omapi_handle_table
);
87 omapi_handle_table
-> first
= 0;
88 omapi_handle_table
-> limit
= OMAPI_HANDLE_TABLE_SIZE
;
89 omapi_handle_table
-> leafp
= 1;
92 /* If this handle doesn't fit in the outer table, we need to
93 make a new outer table. This is a while loop in case for
94 some reason we decide to do disjoint handle allocation,
95 where the next level of indirection still isn't big enough
96 to enclose the next handle ID. */
98 while (omapi_next_handle
>= omapi_handle_table
-> limit
) {
99 omapi_handle_table_t
*new;
101 new = dmalloc (sizeof *new, MDL
);
103 return ISC_R_NOMEMORY
;
104 memset (new, 0, sizeof *new);
106 new -> limit
= (omapi_handle_table
-> limit
*
107 OMAPI_HANDLE_TABLE_SIZE
);
109 new -> children
[0].table
= omapi_handle_table
;
110 omapi_handle_table
= new;
113 /* Try to cram this handle into the existing table. */
114 status
= omapi_object_handle_in_table (omapi_next_handle
,
115 omapi_handle_table
, o
);
116 /* If it worked, return the next handle and increment it. */
117 if (status
== ISC_R_SUCCESS
) {
118 *h
= omapi_next_handle
;
120 return ISC_R_SUCCESS
;
122 if (status
!= ISC_R_NOSPACE
)
125 status
= omapi_handle_table_enclose (&omapi_handle_table
);
126 if (status
!= ISC_R_SUCCESS
)
129 status
= omapi_object_handle_in_table (omapi_next_handle
,
130 omapi_handle_table
, o
);
131 if (status
!= ISC_R_SUCCESS
)
133 *h
= omapi_next_handle
;
136 return ISC_R_SUCCESS
;
139 static isc_result_t
omapi_object_handle_in_table (omapi_handle_t h
,
140 omapi_handle_table_t
*table
,
143 omapi_handle_table_t
*inner
;
144 omapi_handle_t scale
, index
;
147 if (table
-> first
> h
|| table
-> limit
<= h
)
148 return ISC_R_NOSPACE
;
150 /* If this is a leaf table, just stash the object in the
151 appropriate place. */
152 if (table
-> leafp
) {
153 status
= (omapi_object_reference
154 (&table
-> children
[h
- table
-> first
].object
,
156 if (status
!= ISC_R_SUCCESS
)
159 return ISC_R_SUCCESS
;
162 /* Scale is the number of handles represented by each child of this
163 table. For a leaf table, scale would be 1. For a first level
164 of indirection, 120. For a second, 120 * 120. Et cetera. */
165 scale
= (table
-> limit
- table
-> first
) / OMAPI_HANDLE_TABLE_SIZE
;
167 /* So the next most direct table from this one that contains the
168 handle must be the subtable of this table whose index into this
169 table's array of children is the handle divided by the scale. */
170 index
= (h
- table
-> first
) / scale
;
171 inner
= table
-> children
[index
].table
;
173 /* If there is no more direct table than this one in the slot
174 we came up with, make one. */
176 inner
= dmalloc (sizeof *inner
, MDL
);
178 return ISC_R_NOMEMORY
;
179 memset (inner
, 0, sizeof *inner
);
180 inner
-> first
= index
* scale
+ table
-> first
;
181 inner
-> limit
= inner
-> first
+ scale
;
182 if (scale
== OMAPI_HANDLE_TABLE_SIZE
)
184 table
-> children
[index
].table
= inner
;
187 status
= omapi_object_handle_in_table (h
, inner
, o
);
188 if (status
== ISC_R_NOSPACE
) {
189 status
= (omapi_handle_table_enclose
190 (&table
-> children
[index
].table
));
191 if (status
!= ISC_R_SUCCESS
)
194 return omapi_object_handle_in_table
195 (h
, table
-> children
[index
].table
, o
);
200 static isc_result_t
omapi_handle_table_enclose (omapi_handle_table_t
**table
)
202 omapi_handle_table_t
*inner
= *table
;
203 omapi_handle_table_t
*new;
204 int index
, base
, scale
;
206 /* The scale of the table we're enclosing is going to be the
207 difference between its "first" and "limit" members. So the
208 scale of the table enclosing it is going to be that multiplied
209 by the table size. */
210 scale
= (inner
-> first
- inner
-> limit
) * OMAPI_HANDLE_TABLE_SIZE
;
212 /* The range that the enclosing table covers is going to be
213 the result of subtracting the remainder of dividing the
214 enclosed table's first entry number by the enclosing
215 table's scale. If handle IDs are being allocated
216 sequentially, the enclosing table's "first" value will be
217 the same as the enclosed table's "first" value. */
218 base
= inner
-> first
- inner
-> first
% scale
;
220 /* The index into the enclosing table at which the enclosed table
221 will be stored is going to be the difference between the "first"
222 value of the enclosing table and the enclosed table - zero, if
223 we are allocating sequentially. */
224 index
= (base
- inner
-> first
) / OMAPI_HANDLE_TABLE_SIZE
;
226 new = dmalloc (sizeof *new, MDL
);
228 return ISC_R_NOMEMORY
;
229 memset (new, 0, sizeof *new);
231 new -> limit
= base
+ scale
;
232 if (scale
== OMAPI_HANDLE_TABLE_SIZE
)
234 new -> children
[index
].table
= inner
;
236 return ISC_R_SUCCESS
;
239 isc_result_t
omapi_handle_lookup (omapi_object_t
**o
, omapi_handle_t h
)
241 return omapi_handle_lookup_in (o
, h
, omapi_handle_table
);
244 static isc_result_t
omapi_handle_lookup_in (omapi_object_t
**o
,
246 omapi_handle_table_t
*table
)
249 omapi_handle_t scale
, index
;
251 if (!table
|| table
-> first
> h
|| table
-> limit
<= h
)
252 return ISC_R_NOTFOUND
;
254 /* If this is a leaf table, just grab the object. */
255 if (table
-> leafp
) {
257 if (!table
-> children
[h
- table
-> first
].object
)
258 return ISC_R_NOTFOUND
;
259 return omapi_object_reference
260 (o
, table
-> children
[h
- table
-> first
].object
,
264 /* Scale is the number of handles represented by each child of this
265 table. For a leaf table, scale would be 1. For a first level
266 of indirection, 120. For a second, 120 * 120. Et cetera. */
267 scale
= (table
-> limit
- table
-> first
) / OMAPI_HANDLE_TABLE_SIZE
;
269 /* So the next most direct table from this one that contains the
270 handle must be the subtable of this table whose index into this
271 table's array of children is the handle divided by the scale. */
272 index
= (h
- table
-> first
) / scale
;
274 return omapi_handle_lookup_in (o
, h
, table
-> children
[index
].table
);
277 /* For looking up objects based on handles that have been sent on the wire. */
278 isc_result_t
omapi_handle_td_lookup (omapi_object_t
**obj
,
279 omapi_typed_data_t
*handle
)
281 // isc_result_t status;
284 if (handle
-> type
== omapi_datatype_int
)
285 h
= handle
-> u
.integer
;
286 else if (handle
-> type
== omapi_datatype_data
&&
287 handle
-> u
.buffer
.len
== sizeof h
) {
288 memcpy (&h
, handle
-> u
.buffer
.value
, sizeof h
);
291 return ISC_R_INVALIDARG
;
292 return omapi_handle_lookup (obj
, h
);