X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fsl_malloc.c;h=c34dff60f62e39f81de66c0c795f019056eb5869;hb=8a465da10c1a9c76cac9174c37bd854fd3e9d0ab;hp=e635cafc62dc474ea387c44bf38fe5e8b7142dc4;hpb=4c0e4741f75ca503f25493ab44be7133a2389b95;p=openldap diff --git a/servers/slapd/sl_malloc.c b/servers/slapd/sl_malloc.c index e635cafc62..c34dff60f6 100644 --- a/servers/slapd/sl_malloc.c +++ b/servers/slapd/sl_malloc.c @@ -1,8 +1,17 @@ /* sl_malloc.c - malloc routines using a per-thread slab */ /* $OpenLDAP$ */ -/* - * Copyright 2003 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file +/* This work is part of OpenLDAP Software . + * + * Copyright 2003-2005 The OpenLDAP Foundation. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in the file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . */ #include "portable.h" @@ -45,6 +54,10 @@ sl_mem_init() ber_set_option( NULL, LBER_OPT_MEMORY_FNS, &sl_mfuncs ); } +#ifdef NO_THREADS +static struct slab_heap *slheap; +#endif + void * sl_mem_create( ber_len_t size, @@ -54,7 +67,11 @@ sl_mem_create( struct slab_heap *sh = NULL; int pad = 2*sizeof(int)-1; - ldap_pvt_thread_pool_getkey( ctx, sl_mem_init, (void **)&sh, NULL ); +#ifdef NO_THREADS + sh = slheap; +#else + ldap_pvt_thread_pool_getkey( ctx, (void *)sl_mem_init, (void **)&sh, NULL ); +#endif /* round up to doubleword boundary */ size += pad; @@ -63,7 +80,11 @@ sl_mem_create( if (!sh) { sh = ch_malloc( sizeof(struct slab_heap) ); sh->h_base = ch_malloc( size ); - ldap_pvt_thread_pool_setkey( ctx, sl_mem_init, (void *)sh, sl_mem_destroy ); +#ifdef NO_THREADS + slheap = sh; +#else + ldap_pvt_thread_pool_setkey( ctx, (void *)sl_mem_init, (void *)sh, sl_mem_destroy ); +#endif } else if ( size > (char *) sh->h_end - (char *) sh->h_base ) { sh->h_base = ch_realloc( sh->h_base, size ); } @@ -78,15 +99,12 @@ sl_mem_detach( void *memctx ) { +#ifdef NO_THREADS + slheap = NULL; +#else /* separate from context */ - ldap_pvt_thread_pool_setkey( ctx, sl_mem_init, NULL, NULL ); - - /* The code used to try to use realloc to shrink the region. - * This is unsafe, since realloc may return a different block - * of memory from what was passed in, and the region contains - * pointers that reference itself. After realloc, these pointers - * are invalid, and crashes result. - */ + ldap_pvt_thread_pool_setkey( ctx, (void *)sl_mem_init, NULL, NULL ); +#endif } void * @@ -177,7 +195,8 @@ sl_realloc( void *ptr, ber_len_t size, void *ctx ) new = p; /* If reallocing the last block, we can grow it */ - } else if ( (char *)ptr + p[-1] == sh->h_last ) { + } else if ( (char *)ptr + p[-1] == sh->h_last && + (char *)ptr + size < (char *)sh->h_end ) { new = p; sh->h_last = (char *) sh->h_last + size - p[-1]; p[-1] = size; @@ -204,36 +223,19 @@ sl_free( void *ptr, void *ctx ) } } -void -sl_release( void *ptr, void *ctx ) -{ - struct slab_heap *sh = ctx; - - if ( sh && ptr >= sh->h_base && ptr <= sh->h_end ) { - sh->h_last = ptr; - } -} - -void * -sl_mark( void *ctx ) -{ - struct slab_heap *sh = ctx; - void *ret = NULL; - - if (sh) ret = sh->h_last; - - return ret; -} - void * sl_context( void *ptr ) { struct slab_heap *sh = NULL; void *ctx; +#ifdef NO_THREADS + sh = slheap; +#else ctx = ldap_pvt_thread_pool_context(); - ldap_pvt_thread_pool_getkey( ctx, sl_mem_init, (void **)&sh, NULL ); + ldap_pvt_thread_pool_getkey( ctx, (void *)sl_mem_init, (void **)&sh, NULL ); +#endif if ( sh && ptr >= sh->h_base && ptr <= sh->h_end ) { return sh;