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$ */
|
1999-08-07 07:07:46 +08:00
|
|
|
/*
|
|
|
|
* Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
|
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
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"
|
|
|
|
|
1999-08-20 01:06:28 +08:00
|
|
|
#ifndef CSRIMALLOC
|
|
|
|
|
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
|
|
|
|
1999-06-19 07:53:05 +08:00
|
|
|
if ( (new = (void *) ber_memalloc( size )) == NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "ch_malloc of %lu bytes failed\n",
|
|
|
|
(long) size, 0, 0 );
|
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
|
|
|
)
|
|
|
|
{
|
1998-11-12 07:37:38 +08:00
|
|
|
void *new;
|
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 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( (new = (void *) ber_memrealloc( block, size )) == NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "ch_realloc of %lu bytes failed\n",
|
|
|
|
(long) size, 0, 0 );
|
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
|
|
|
|
1999-06-19 07:53:05 +08:00
|
|
|
if ( (new = (void *) ber_memcalloc( nelem, size )) == NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "ch_calloc of %lu elems of %lu bytes failed\n",
|
|
|
|
(long) nelem, (long) size, 0 );
|
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;
|
|
|
|
|
1999-06-19 07:53:05 +08:00
|
|
|
if ( (new = ber_strdup( string )) == NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "ch_strdup(%s) failed\n", string, 0, 0 );
|
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 )
|
|
|
|
{
|
|
|
|
ber_memfree( ptr );
|
1999-07-13 12:11:49 +08:00
|
|
|
}
|
1999-08-20 01:06:28 +08:00
|
|
|
|
|
|
|
#endif
|