4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #ifndef _LIBUUTIL_IMPL_H
28 #define _LIBUUTIL_IMPL_H
35 #include <sys/avl_impl.h>
36 #include <sys/byteorder.h>
42 void uu_set_error(uint_t
);
46 void uu_panic(const char *format
, ...);
51 uu_dprintf_severity_t uud_severity
;
56 * For debugging purposes, libuutil keeps around linked lists of all uu_lists
57 * and uu_avls, along with pointers to their parents. These can cause false
58 * negatives when looking for memory leaks, so we encode the pointers by
59 * storing them with swapped endianness; this is not perfect, but it's about
60 * the best we can do without wasting a lot of space.
63 #define UU_PTR_ENCODE(ptr) BSWAP_64((uintptr_t)(void *)(ptr))
65 #define UU_PTR_ENCODE(ptr) BSWAP_32((uintptr_t)(void *)(ptr))
68 #define UU_PTR_DECODE(ptr) ((void *)UU_PTR_ENCODE(ptr))
73 typedef struct uu_list_node_impl
{
74 struct uu_list_node_impl
*uln_next
;
75 struct uu_list_node_impl
*uln_prev
;
76 } uu_list_node_impl_t
;
79 uu_list_walk_t
*ulw_next
;
80 uu_list_walk_t
*ulw_prev
;
85 uu_list_node_impl_t
*ulw_next_result
;
89 uintptr_t ul_next_enc
;
90 uintptr_t ul_prev_enc
;
92 uu_list_pool_t
*ul_pool
;
93 uintptr_t ul_parent_enc
; /* encoded parent pointer */
98 uint8_t ul_index
; /* mark for uu_list_index_ts */
100 uu_list_node_impl_t ul_null_node
;
101 uu_list_walk_t ul_null_walk
; /* for robust walkers */
104 #define UU_LIST_PTR(ptr) ((uu_list_t *)UU_PTR_DECODE(ptr))
106 #define UU_LIST_POOL_MAXNAME 64
108 struct uu_list_pool
{
109 uu_list_pool_t
*ulp_next
;
110 uu_list_pool_t
*ulp_prev
;
112 char ulp_name
[UU_LIST_POOL_MAXNAME
];
113 size_t ulp_nodeoffset
;
115 uu_compare_fn_t
*ulp_cmp
;
117 uint8_t ulp_last_index
;
118 pthread_mutex_t ulp_lock
; /* protects null_list */
119 uu_list_t ulp_null_list
;
125 typedef struct avl_node uu_avl_node_impl_t
;
128 uu_avl_walk_t
*uaw_next
;
129 uu_avl_walk_t
*uaw_prev
;
132 void *uaw_next_result
;
138 uintptr_t ua_next_enc
;
139 uintptr_t ua_prev_enc
;
141 uu_avl_pool_t
*ua_pool
;
142 uintptr_t ua_parent_enc
;
144 uint8_t ua_index
; /* mark for uu_avl_index_ts */
146 struct avl_tree ua_tree
;
147 uu_avl_walk_t ua_null_walk
;
150 #define UU_AVL_PTR(x) ((uu_avl_t *)UU_PTR_DECODE(x))
152 #define UU_AVL_POOL_MAXNAME 64
155 uu_avl_pool_t
*uap_next
;
156 uu_avl_pool_t
*uap_prev
;
158 char uap_name
[UU_AVL_POOL_MAXNAME
];
159 size_t uap_nodeoffset
;
161 uu_compare_fn_t
*uap_cmp
;
163 uint8_t uap_last_index
;
164 pthread_mutex_t uap_lock
; /* protects null_avl */
165 uu_avl_t uap_null_avl
;
171 void uu_avl_lockup(void);
172 void uu_avl_release(void);
174 void uu_list_lockup(void);
175 void uu_list_release(void);
181 #endif /* _LIBUUTIL_IMPL_H */