1998-08-09 08:43:13 +08:00
|
|
|
/* ch_malloc.c - malloc routines that test returns from malloc and friends */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 09:17:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2020-01-10 00:50:21 +08:00
|
|
|
* Copyright 1998-2020 The OpenLDAP Foundation.
|
2003-11-27 09:17:14 +08:00
|
|
|
* 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
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
|
|
*/
|
|
|
|
/* Portions Copyright (c) 1995 Regents of the University of Michigan.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that this notice is preserved and that due credit is given
|
|
|
|
* to the University of Michigan at Ann Arbor. The name of the University
|
|
|
|
* may not be used to endorse or promote products derived from this
|
|
|
|
* software without specific prior written permission. This software
|
|
|
|
* is provided ``as is'' without express or implied warranty.
|
1999-08-07 07:07:46 +08:00
|
|
|
*/
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-08-20 01:06:28 +08:00
|
|
|
#define CH_FREE 1
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
1999-06-03 08:37:44 +08:00
|
|
|
|
|
|
|
#include <ac/stdlib.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include "slap.h"
|
|
|
|
|
2003-04-10 07:37:00 +08:00
|
|
|
BerMemoryFunctions ch_mfuncs = {
|
|
|
|
(BER_MEMALLOC_FN *)ch_malloc,
|
|
|
|
(BER_MEMCALLOC_FN *)ch_calloc,
|
|
|
|
(BER_MEMREALLOC_FN *)ch_realloc,
|
|
|
|
(BER_MEMFREE_FN *)ch_free
|
|
|
|
};
|
1999-08-20 01:06:28 +08:00
|
|
|
|
1998-11-12 07:37:38 +08:00
|
|
|
void *
|
1998-08-09 08:43:13 +08:00
|
|
|
ch_malloc(
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_len_t size
|
1998-08-09 08:43:13 +08:00
|
|
|
)
|
|
|
|
{
|
1998-11-12 07:37:38 +08:00
|
|
|
void *new;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2003-04-10 07:37:00 +08:00
|
|
|
if ( (new = (void *) ber_memalloc_x( size, NULL )) == NULL ) {
|
1999-06-19 07:53:05 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "ch_malloc of %lu bytes failed\n",
|
2019-02-16 00:49:52 +08:00
|
|
|
(long) size );
|
1999-08-14 09:34:25 +08:00
|
|
|
assert( 0 );
|
|
|
|
exit( EXIT_FAILURE );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return( new );
|
|
|
|
}
|
|
|
|
|
1998-11-12 07:37:38 +08:00
|
|
|
void *
|
1998-08-09 08:43:13 +08:00
|
|
|
ch_realloc(
|
1998-11-12 07:37:38 +08:00
|
|
|
void *block,
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_len_t size
|
1998-08-09 08:43:13 +08:00
|
|
|
)
|
|
|
|
{
|
2003-04-12 13:12:40 +08:00
|
|
|
void *new, *ctx;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
if ( block == NULL ) {
|
|
|
|
return( ch_malloc( size ) );
|
|
|
|
}
|
|
|
|
|
1999-06-19 07:53:05 +08:00
|
|
|
if( size == 0 ) {
|
|
|
|
ch_free( block );
|
2005-09-09 15:06:58 +08:00
|
|
|
return NULL;
|
1999-06-19 07:53:05 +08:00
|
|
|
}
|
|
|
|
|
2004-04-20 11:44:57 +08:00
|
|
|
ctx = slap_sl_context( block );
|
2003-04-12 13:12:40 +08:00
|
|
|
if ( ctx ) {
|
2004-04-20 11:44:57 +08:00
|
|
|
return slap_sl_realloc( block, size, ctx );
|
2003-04-12 13:12:40 +08:00
|
|
|
}
|
|
|
|
|
2003-04-10 07:37:00 +08:00
|
|
|
if ( (new = (void *) ber_memrealloc_x( block, size, NULL )) == NULL ) {
|
1999-06-19 07:53:05 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "ch_realloc of %lu bytes failed\n",
|
2019-02-16 00:49:52 +08:00
|
|
|
(long) size );
|
1999-08-14 09:34:25 +08:00
|
|
|
assert( 0 );
|
|
|
|
exit( EXIT_FAILURE );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return( new );
|
|
|
|
}
|
|
|
|
|
1998-11-12 07:37:38 +08:00
|
|
|
void *
|
1998-08-09 08:43:13 +08:00
|
|
|
ch_calloc(
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_len_t nelem,
|
|
|
|
ber_len_t size
|
1998-08-09 08:43:13 +08:00
|
|
|
)
|
|
|
|
{
|
1998-11-12 07:37:38 +08:00
|
|
|
void *new;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2003-04-10 07:37:00 +08:00
|
|
|
if ( (new = (void *) ber_memcalloc_x( nelem, size, NULL )) == NULL ) {
|
1999-06-19 07:53:05 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "ch_calloc of %lu elems of %lu bytes failed\n",
|
2019-02-16 00:49:52 +08:00
|
|
|
(long) nelem, (long) size );
|
1999-08-14 09:34:25 +08:00
|
|
|
assert( 0 );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return( new );
|
|
|
|
}
|
1998-11-28 04:21:54 +08:00
|
|
|
|
|
|
|
char *
|
|
|
|
ch_strdup(
|
|
|
|
const char *string
|
|
|
|
)
|
|
|
|
{
|
|
|
|
char *new;
|
|
|
|
|
2003-04-10 07:37:00 +08:00
|
|
|
if ( (new = ber_strdup_x( string, NULL )) == NULL ) {
|
2019-02-16 00:49:52 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "ch_strdup(%s) failed\n", string );
|
1999-08-14 09:34:25 +08:00
|
|
|
assert( 0 );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1998-11-28 04:21:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return( new );
|
|
|
|
}
|
|
|
|
|
1999-06-19 07:53:05 +08:00
|
|
|
void
|
|
|
|
ch_free( void *ptr )
|
|
|
|
{
|
2003-04-12 13:12:40 +08:00
|
|
|
void *ctx;
|
|
|
|
|
2004-04-20 11:44:57 +08:00
|
|
|
ctx = slap_sl_context( ptr );
|
2003-04-12 13:12:40 +08:00
|
|
|
if (ctx) {
|
2004-04-20 11:44:57 +08:00
|
|
|
slap_sl_free( ptr, ctx );
|
2003-04-12 13:12:40 +08:00
|
|
|
} else {
|
|
|
|
ber_memfree_x( ptr, NULL );
|
|
|
|
}
|
1999-07-13 12:11:49 +08:00
|
|
|
}
|
1999-08-20 01:06:28 +08:00
|
|
|
|