]> git.sur5r.net Git - openldap/blob - servers/slapd/sl_malloc.c
e40e86480705a5b86d57b2f01d83b66df293add8
[openldap] / servers / slapd / sl_malloc.c
1 /* sl_malloc.c - malloc routines using a per-thread slab */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 2003 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11 #include <ac/string.h>
12
13 #include "slap.h"
14
15 struct slab_heap {
16         void *h_base;
17         void *h_last;
18         void *h_end;
19 };
20
21 void
22 sl_mem_destroy(
23         void *key,
24         void *data
25 )
26 {
27         struct slab_heap *sh = data;
28
29         ber_memfree_x(sh->h_base, NULL);
30         ber_memfree_x(sh, NULL);
31 }
32
33 BER_MEMALLOC_FN sl_malloc;
34 BER_MEMCALLOC_FN sl_calloc;
35 BER_MEMREALLOC_FN sl_realloc;
36 BER_MEMFREE_FN sl_free;
37
38
39 BerMemoryFunctions sl_mfuncs =
40         { sl_malloc, sl_calloc, sl_realloc, sl_free };
41
42 void
43 sl_mem_init()
44 {
45         ber_set_option( NULL, LBER_OPT_MEMORY_FNS, &sl_mfuncs );
46 }
47
48 void *
49 sl_mem_create(
50         ber_len_t size,
51         void *ctx
52 )
53 {
54         struct slab_heap *sh = NULL;
55         int pad = 2*sizeof(int)-1;
56
57         ldap_pvt_thread_pool_getkey( ctx, sl_mem_init, (void **)&sh, NULL );
58
59         /* round up to doubleword boundary */
60         size += pad;
61         size &= ~pad;
62
63         if (!sh) {
64                 sh = ch_malloc( sizeof(struct slab_heap) );
65                 sh->h_base = ch_malloc( size );
66                 ldap_pvt_thread_pool_setkey( ctx, sl_mem_init, (void *)sh, sl_mem_destroy );
67         } else if ( size > (char *) sh->h_end - (char *) sh->h_base ) {
68                 sh->h_base = ch_realloc( sh->h_base, size );
69         }
70         sh->h_last = sh->h_base;
71         sh->h_end = (char *) sh->h_base + size;
72         return sh;
73 }
74
75 void
76 sl_mem_detach(
77         void *ctx,
78         void *memctx
79 )
80 {
81         /* separate from context */
82         ldap_pvt_thread_pool_setkey( ctx, sl_mem_init, NULL, NULL );
83 }
84
85 void *
86 sl_malloc(
87     ber_len_t   size,
88     void *ctx
89 )
90 {
91         struct slab_heap *sh = ctx;
92         int pad = 2*sizeof(int)-1;
93         ber_len_t *new;
94
95         /* ber_set_option calls us like this */
96         if (!ctx) return ber_memalloc_x( size, NULL );
97
98         /* round up to doubleword boundary */
99         size += pad + sizeof( ber_len_t );
100         size &= ~pad;
101
102         if ((char *) sh->h_last + size >= (char *) sh->h_end ) {
103 #ifdef NEW_LOGGING
104                 LDAP_LOG( OPERATION, INFO, 
105                            "sl_malloc of %lu bytes failed, using ch_malloc\n", (long)size, 0,0 );
106 #else
107                 Debug( LDAP_DEBUG_TRACE,
108                            "sl_malloc of %lu bytes failed, using ch_malloc\n", (long)size, 0,0 );
109 #endif
110                 return ch_malloc( size );
111         }
112         new = sh->h_last;
113         *new++ = size - sizeof(ber_len_t);
114         sh->h_last = (char *) sh->h_last + size;
115         
116         return( (void *)new );
117 }
118
119 void *
120 sl_calloc( ber_len_t n, ber_len_t size, void *ctx )
121 {
122         void *new;
123
124         new = sl_malloc( n*size, ctx );
125         if ( new ) {
126                 memset( new, 0, n*size );
127         }
128         return new;
129 }
130
131 void *
132 sl_realloc( void *ptr, ber_len_t size, void *ctx )
133 {
134         struct slab_heap *sh = ctx;
135         int pad = 2*sizeof(int)-1;
136         ber_len_t *p = (ber_len_t *)ptr;
137         ber_len_t *new;
138
139         if ( ptr == NULL ) return sl_malloc( size, ctx );
140
141         /* Not our memory? */
142         if ( !sh || ptr < sh->h_base || ptr >= sh->h_end ) {
143                 /* duplicate of ch_realloc behavior, oh well */
144                 new = ber_memrealloc_x( ptr, size, NULL );
145                 if (new ) {
146                         return new;
147                 }
148 #ifdef NEW_LOGGING
149                 LDAP_LOG( OPERATION, ERR, 
150                            "ch_realloc: reallocation of %lu bytes failed\n", (long)size, 0,0 );
151 #else
152                 Debug( LDAP_DEBUG_ANY, "ch_realloc of %lu bytes failed\n",
153                         (long) size, 0, 0 );
154 #endif
155                 assert( 0 );
156                 exit( EXIT_FAILURE );
157         }
158
159         if ( size == 0 ) {
160                 sl_free( ptr, ctx );
161                 return NULL;
162         }
163
164         /* round up to doubleword boundary */
165         size += pad + sizeof( ber_len_t );
166         size &= ~pad;
167
168         /* Never shrink blocks */
169         if (size <= p[-1]) {
170                 new = p;
171         
172         /* If reallocing the last block, we can grow it */
173         } else if ( (char *)ptr + p[-1] == sh->h_last ) {
174                 new = p;
175                 sh->h_last = (char *) sh->h_last + size - p[-1];
176                 p[-1] = size;
177         
178         /* Nowhere to grow, need to alloc and copy */
179         } else {
180                 new = sl_malloc( size, ctx );
181                 AC_MEMCPY( new, ptr, p[-1] );
182         }
183         return new;
184 }
185
186 void
187 sl_free( void *ptr, void *ctx )
188 {
189         struct slab_heap *sh = ctx;
190         ber_len_t *p = (ber_len_t *)ptr;
191
192         if ( !sh || ptr < sh->h_base || ptr >= sh->h_end ) {
193                 ber_memfree_x( ptr, NULL );
194         } else if ( (char *)ptr + p[-1] == sh->h_last ) {
195                 p--;
196                 sh->h_last = p;
197         }
198 }
199
200 void
201 sl_release( void *ptr, void *ctx )
202 {
203         struct slab_heap *sh = ctx;
204
205         if ( sh && ptr >= sh->h_base && ptr <= sh->h_end ) {
206                 sh->h_last = ptr;
207         }
208 }
209
210 void *
211 sl_mark( void *ctx )
212 {
213         struct slab_heap *sh = ctx;
214         void *ret = NULL;
215
216         if (sh) ret = sh->h_last;
217
218         return ret;
219 }
220
221 void *
222 sl_context( void *ptr )
223 {
224         struct slab_heap *sh = NULL;
225         void *ctx;
226
227         ctx = ldap_pvt_thread_pool_context();
228
229         ldap_pvt_thread_pool_getkey( ctx, sl_mem_init, (void **)&sh, NULL );
230
231         if ( sh && ptr >= sh->h_base && ptr <= sh->h_end ) {
232                 return sh;
233         }
234         return NULL;
235 }