1 /* sl_malloc.c - malloc routines using a per-thread slab */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2003-2004 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
12 * A copy of this license is available in the file LICENSE in the
13 * top-level directory of the distribution or, alternatively, at
14 * <http://www.OpenLDAP.org/license.html>.
20 #include <ac/string.h>
36 struct slab_heap *sh = data;
38 ber_memfree_x(sh->h_base, NULL);
39 ber_memfree_x(sh, NULL);
42 BER_MEMALLOC_FN sl_malloc;
43 BER_MEMCALLOC_FN sl_calloc;
44 BER_MEMREALLOC_FN sl_realloc;
45 BER_MEMFREE_FN sl_free;
48 BerMemoryFunctions sl_mfuncs =
49 { sl_malloc, sl_calloc, sl_realloc, sl_free };
54 ber_set_option( NULL, LBER_OPT_MEMORY_FNS, &sl_mfuncs );
63 struct slab_heap *sh = NULL;
64 int pad = 2*sizeof(int)-1;
66 ldap_pvt_thread_pool_getkey( ctx, (void *)sl_mem_init, (void **)&sh, NULL );
68 /* round up to doubleword boundary */
73 sh = ch_malloc( sizeof(struct slab_heap) );
74 sh->h_base = ch_malloc( size );
75 ldap_pvt_thread_pool_setkey( ctx, (void *)sl_mem_init, (void *)sh, sl_mem_destroy );
76 } else if ( size > (char *) sh->h_end - (char *) sh->h_base ) {
77 sh->h_base = ch_realloc( sh->h_base, size );
79 sh->h_last = sh->h_base;
80 sh->h_end = (char *) sh->h_base + size;
90 /* separate from context */
91 ldap_pvt_thread_pool_setkey( ctx, (void *)sl_mem_init, NULL, NULL );
100 struct slab_heap *sh = ctx;
101 int pad = 2*sizeof(int)-1;
104 /* ber_set_option calls us like this */
105 if (!ctx) return ber_memalloc_x( size, NULL );
107 /* round up to doubleword boundary */
108 size += pad + sizeof( ber_len_t );
111 if ((char *) sh->h_last + size >= (char *) sh->h_end ) {
113 LDAP_LOG( OPERATION, INFO,
114 "sl_malloc of %lu bytes failed, using ch_malloc\n", (long)size, 0,0 );
116 Debug( LDAP_DEBUG_TRACE,
117 "sl_malloc of %lu bytes failed, using ch_malloc\n", (long)size, 0,0 );
119 return ch_malloc( size );
122 *new++ = size - sizeof(ber_len_t);
123 sh->h_last = (char *) sh->h_last + size;
125 return( (void *)new );
129 sl_calloc( ber_len_t n, ber_len_t size, void *ctx )
133 new = sl_malloc( n*size, ctx );
135 memset( new, 0, n*size );
141 sl_realloc( void *ptr, ber_len_t size, void *ctx )
143 struct slab_heap *sh = ctx;
144 int pad = 2*sizeof(int)-1;
145 ber_len_t *p = (ber_len_t *)ptr;
148 if ( ptr == NULL ) return sl_malloc( size, ctx );
150 /* Not our memory? */
151 if ( !sh || ptr < sh->h_base || ptr >= sh->h_end ) {
152 /* duplicate of ch_realloc behavior, oh well */
153 new = ber_memrealloc_x( ptr, size, NULL );
158 LDAP_LOG( OPERATION, ERR,
159 "ch_realloc: reallocation of %lu bytes failed\n", (long)size, 0,0 );
161 Debug( LDAP_DEBUG_ANY, "ch_realloc of %lu bytes failed\n",
165 exit( EXIT_FAILURE );
173 /* round up to doubleword boundary */
174 size += pad + sizeof( ber_len_t );
177 /* Never shrink blocks */
181 /* If reallocing the last block, we can grow it */
182 } else if ( (char *)ptr + p[-1] == sh->h_last ) {
184 sh->h_last = (char *) sh->h_last + size - p[-1];
187 /* Nowhere to grow, need to alloc and copy */
189 new = sl_malloc( size, ctx );
190 AC_MEMCPY( new, ptr, p[-1] );
196 sl_free( void *ptr, void *ctx )
198 struct slab_heap *sh = ctx;
199 ber_len_t *p = (ber_len_t *)ptr;
201 if ( !sh || ptr < sh->h_base || ptr >= sh->h_end ) {
202 ber_memfree_x( ptr, NULL );
203 } else if ( (char *)ptr + p[-1] == sh->h_last ) {
210 sl_context( void *ptr )
212 struct slab_heap *sh = NULL;
215 ctx = ldap_pvt_thread_pool_context();
217 ldap_pvt_thread_pool_getkey( ctx, (void *)sl_mem_init, (void **)&sh, NULL );
219 if ( sh && ptr >= sh->h_base && ptr <= sh->h_end ) {