mariadb/bdb/os/os_alloc.c

459 lines
9.6 KiB
C
Raw Normal View History

2001-03-05 01:42:05 +01:00
/*-
* See the file LICENSE for redistribution information.
*
2002-10-30 12:57:05 +01:00
* Copyright (c) 1997-2002
2001-03-05 01:42:05 +01:00
* Sleepycat Software. All rights reserved.
*/
#include "db_config.h"
#ifndef lint
2002-10-30 12:57:05 +01:00
static const char revid[] = "$Id: os_alloc.c,v 11.32 2002/08/06 04:57:07 bostic Exp $";
2001-03-05 01:42:05 +01:00
#endif /* not lint */
#ifndef NO_SYSTEM_INCLUDES
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#endif
#include "db_int.h"
#ifdef DIAGNOSTIC
2002-10-30 12:57:05 +01:00
static void __os_guard __P((DB_ENV *));
union __db_alloc {
size_t size;
double align;
};
2001-03-05 01:42:05 +01:00
#endif
/*
* !!!
* Correct for systems that return NULL when you allocate 0 bytes of memory.
* There are several places in DB where we allocate the number of bytes held
* by the key/data item, and it can be 0. Correct here so that malloc never
* returns a NULL for that reason (which behavior is permitted by ANSI). We
* could make these calls macros on non-Alpha architectures (that's where we
* saw the problem), but it's probably not worth the autoconf complexity.
*
* !!!
* Correct for systems that don't set errno when malloc and friends fail.
*
2002-10-30 12:57:05 +01:00
* !!!
* There is no circumstance in which we can call __os_umalloc, __os_urealloc
* or __os_ufree without an environment handle, as we need one to determine
* whether or not to use an application-specified malloc function. If we
* don't have an environment handle, we should be calling __os_XXX instead.
* Make DIAGNOSTIC blow up if we get this wrong.
*
2001-03-05 01:42:05 +01:00
* Out of memory.
* We wish to hold the whole sky,
* But we never will.
*/
2002-10-30 12:57:05 +01:00
/*
* __os_umalloc --
* A malloc(3) function that will use, in order of preference,
* the allocation function specified to the DB handle, the DB_ENV
* handle, or __os_malloc.
*
* PUBLIC: int __os_umalloc __P((DB_ENV *, size_t, void *));
*/
int
__os_umalloc(dbenv, size, storep)
DB_ENV *dbenv;
size_t size;
void *storep;
{
int ret;
/* Require an environment handle. */
DB_ASSERT(dbenv != NULL);
/* Never allocate 0 bytes -- some C libraries don't like it. */
if (size == 0)
++size;
if (dbenv == NULL || dbenv->db_malloc == NULL) {
if (DB_GLOBAL(j_malloc) != NULL)
*(void **)storep = DB_GLOBAL(j_malloc)(size);
else
*(void **)storep = malloc(size);
if (*(void **)storep == NULL) {
/*
* Correct error return, see __os_malloc.
*/
if ((ret = __os_get_errno()) == 0) {
ret = ENOMEM;
__os_set_errno(ENOMEM);
}
__db_err(dbenv,
"malloc: %s: %lu", strerror(ret), (u_long)size);
return (ret);
}
return (0);
}
if ((*(void **)storep = dbenv->db_malloc(size)) == NULL) {
__db_err(dbenv, "User-specified malloc function returned NULL");
return (ENOMEM);
}
return (0);
}
/*
* __os_urealloc --
* realloc(3) counterpart to __os_umalloc.
*
* PUBLIC: int __os_urealloc __P((DB_ENV *, size_t, void *));
*/
int
__os_urealloc(dbenv, size, storep)
DB_ENV *dbenv;
size_t size;
void *storep;
{
int ret;
void *ptr;
ptr = *(void **)storep;
/* Require an environment handle. */
DB_ASSERT(dbenv != NULL);
/* Never allocate 0 bytes -- some C libraries don't like it. */
if (size == 0)
++size;
if (dbenv == NULL || dbenv->db_realloc == NULL) {
if (ptr == NULL)
return (__os_umalloc(dbenv, size, storep));
if (DB_GLOBAL(j_realloc) != NULL)
*(void **)storep = DB_GLOBAL(j_realloc)(ptr, size);
else
*(void **)storep = realloc(ptr, size);
if (*(void **)storep == NULL) {
/*
* Correct errno, see __os_realloc.
*/
if ((ret = __os_get_errno()) == 0) {
ret = ENOMEM;
__os_set_errno(ENOMEM);
}
__db_err(dbenv,
"realloc: %s: %lu", strerror(ret), (u_long)size);
return (ret);
}
return (0);
}
if ((*(void **)storep = dbenv->db_realloc(ptr, size)) == NULL) {
__db_err(dbenv,
"User-specified realloc function returned NULL");
return (ENOMEM);
}
return (0);
}
/*
* __os_ufree --
* free(3) counterpart to __os_umalloc.
*
* PUBLIC: int __os_ufree __P((DB_ENV *, void *));
*/
int
__os_ufree(dbenv, ptr)
DB_ENV *dbenv;
void *ptr;
{
/* Require an environment handle. */
DB_ASSERT(dbenv != NULL);
if (dbenv != NULL && dbenv->db_free != NULL)
dbenv->db_free(ptr);
else if (DB_GLOBAL(j_free) != NULL)
DB_GLOBAL(j_free)(ptr);
else
free(ptr);
return (0);
}
2001-03-05 01:42:05 +01:00
/*
* __os_strdup --
* The strdup(3) function for DB.
*
* PUBLIC: int __os_strdup __P((DB_ENV *, const char *, void *));
*/
int
__os_strdup(dbenv, str, storep)
DB_ENV *dbenv;
const char *str;
void *storep;
{
size_t size;
int ret;
void *p;
*(void **)storep = NULL;
size = strlen(str) + 1;
2002-10-30 12:57:05 +01:00
if ((ret = __os_malloc(dbenv, size, &p)) != 0)
2001-03-05 01:42:05 +01:00
return (ret);
memcpy(p, str, size);
*(void **)storep = p;
return (0);
}
/*
* __os_calloc --
* The calloc(3) function for DB.
*
* PUBLIC: int __os_calloc __P((DB_ENV *, size_t, size_t, void *));
*/
int
__os_calloc(dbenv, num, size, storep)
DB_ENV *dbenv;
size_t num, size;
void *storep;
{
void *p;
int ret;
size *= num;
2002-10-30 12:57:05 +01:00
if ((ret = __os_malloc(dbenv, size, &p)) != 0)
2001-03-05 01:42:05 +01:00
return (ret);
memset(p, 0, size);
*(void **)storep = p;
return (0);
}
/*
* __os_malloc --
* The malloc(3) function for DB.
*
2002-10-30 12:57:05 +01:00
* PUBLIC: int __os_malloc __P((DB_ENV *, size_t, void *));
2001-03-05 01:42:05 +01:00
*/
int
2002-10-30 12:57:05 +01:00
__os_malloc(dbenv, size, storep)
2001-03-05 01:42:05 +01:00
DB_ENV *dbenv;
size_t size;
2002-10-30 12:57:05 +01:00
void *storep;
2001-03-05 01:42:05 +01:00
{
int ret;
void *p;
*(void **)storep = NULL;
/* Never allocate 0 bytes -- some C libraries don't like it. */
if (size == 0)
++size;
2002-10-30 12:57:05 +01:00
2001-03-05 01:42:05 +01:00
#ifdef DIAGNOSTIC
2002-10-30 12:57:05 +01:00
/* Add room for size and a guard byte. */
size += sizeof(union __db_alloc) + 1;
2001-03-05 01:42:05 +01:00
#endif
2002-10-30 12:57:05 +01:00
if (DB_GLOBAL(j_malloc) != NULL)
p = DB_GLOBAL(j_malloc)(size);
2001-03-05 01:42:05 +01:00
else
p = malloc(size);
if (p == NULL) {
2002-10-30 12:57:05 +01:00
/*
* Some C libraries don't correctly set errno when malloc(3)
* fails. We'd like to 0 out errno before calling malloc,
* but it turns out that setting errno is quite expensive on
* Windows/NT in an MT environment.
*/
if ((ret = __os_get_errno()) == 0) {
2001-03-05 01:42:05 +01:00
ret = ENOMEM;
2002-10-30 12:57:05 +01:00
__os_set_errno(ENOMEM);
2001-03-05 01:42:05 +01:00
}
__db_err(dbenv,
"malloc: %s: %lu", strerror(ret), (u_long)size);
return (ret);
}
#ifdef DIAGNOSTIC
/*
* Guard bytes: if #DIAGNOSTIC is defined, we allocate an additional
* byte after the memory and set it to a special value that we check
2002-10-30 12:57:05 +01:00
* for when the memory is free'd.
2001-03-05 01:42:05 +01:00
*/
2002-10-30 12:57:05 +01:00
((u_int8_t *)p)[size - 1] = CLEAR_BYTE;
((union __db_alloc *)p)->size = size;
p = &((union __db_alloc *)p)[1];
2001-03-05 01:42:05 +01:00
#endif
*(void **)storep = p;
return (0);
}
/*
* __os_realloc --
* The realloc(3) function for DB.
*
2002-10-30 12:57:05 +01:00
* PUBLIC: int __os_realloc __P((DB_ENV *, size_t, void *));
2001-03-05 01:42:05 +01:00
*/
int
2002-10-30 12:57:05 +01:00
__os_realloc(dbenv, size, storep)
2001-03-05 01:42:05 +01:00
DB_ENV *dbenv;
size_t size;
2002-10-30 12:57:05 +01:00
void *storep;
2001-03-05 01:42:05 +01:00
{
int ret;
void *p, *ptr;
ptr = *(void **)storep;
/* Never allocate 0 bytes -- some C libraries don't like it. */
if (size == 0)
++size;
2002-10-30 12:57:05 +01:00
/* If we haven't yet allocated anything yet, simply call malloc. */
if (ptr == NULL)
return (__os_malloc(dbenv, size, storep));
2001-03-05 01:42:05 +01:00
#ifdef DIAGNOSTIC
2002-10-30 12:57:05 +01:00
/* Add room for size and a guard byte. */
size += sizeof(union __db_alloc) + 1;
/* Back up to the real begining */
ptr = &((union __db_alloc *)ptr)[-1];
2001-03-05 01:42:05 +01:00
#endif
/*
* Don't overwrite the original pointer, there are places in DB we
* try to continue after realloc fails.
*/
2002-10-30 12:57:05 +01:00
if (DB_GLOBAL(j_realloc) != NULL)
p = DB_GLOBAL(j_realloc)(ptr, size);
2001-03-05 01:42:05 +01:00
else
p = realloc(ptr, size);
if (p == NULL) {
2002-10-30 12:57:05 +01:00
/*
* Some C libraries don't correctly set errno when malloc(3)
* fails. We'd like to 0 out errno before calling malloc,
* but it turns out that setting errno is quite expensive on
* Windows/NT in an MT environment.
*/
2001-03-05 01:42:05 +01:00
if ((ret = __os_get_errno()) == 0) {
ret = ENOMEM;
__os_set_errno(ENOMEM);
}
__db_err(dbenv,
"realloc: %s: %lu", strerror(ret), (u_long)size);
return (ret);
}
#ifdef DIAGNOSTIC
((u_int8_t *)p)[size - 1] = CLEAR_BYTE; /* Initialize guard byte. */
2002-10-30 12:57:05 +01:00
((union __db_alloc *)p)->size = size;
p = &((union __db_alloc *)p)[1];
2001-03-05 01:42:05 +01:00
#endif
*(void **)storep = p;
return (0);
}
/*
* __os_free --
* The free(3) function for DB.
*
2002-10-30 12:57:05 +01:00
* PUBLIC: void __os_free __P((DB_ENV *, void *));
2001-03-05 01:42:05 +01:00
*/
void
2002-10-30 12:57:05 +01:00
__os_free(dbenv, ptr)
DB_ENV *dbenv;
2001-03-05 01:42:05 +01:00
void *ptr;
{
#ifdef DIAGNOSTIC
2002-10-30 12:57:05 +01:00
int size;
2001-03-05 01:42:05 +01:00
/*
* Check that the guard byte (one past the end of the memory) is
* still CLEAR_BYTE.
*/
2002-10-30 12:57:05 +01:00
if (ptr == NULL)
return;
ptr = &((union __db_alloc *)ptr)[-1];
size = ((union __db_alloc *)ptr)->size;
if (((u_int8_t *)ptr)[size - 1] != CLEAR_BYTE)
__os_guard(dbenv);
2001-03-05 01:42:05 +01:00
/* Clear memory. */
2002-10-30 12:57:05 +01:00
if (size != 0)
memset(ptr, CLEAR_BYTE, size);
2001-03-05 01:42:05 +01:00
#endif
2002-10-30 12:57:05 +01:00
COMPQUIET(dbenv, NULL);
2001-03-05 01:42:05 +01:00
2002-10-30 12:57:05 +01:00
if (DB_GLOBAL(j_free) != NULL)
DB_GLOBAL(j_free)(ptr);
2001-03-05 01:42:05 +01:00
else
free(ptr);
}
#ifdef DIAGNOSTIC
/*
* __os_guard --
* Complain and abort.
*/
static void
2002-10-30 12:57:05 +01:00
__os_guard(dbenv)
DB_ENV *dbenv;
2001-03-05 01:42:05 +01:00
{
2002-10-30 12:57:05 +01:00
__db_err(dbenv, "Guard byte incorrect during free");
2001-03-05 01:42:05 +01:00
abort();
/* NOTREACHED */
}
#endif
/*
* __ua_memcpy --
* Copy memory to memory without relying on any kind of alignment.
*
* There are places in DB that we have unaligned data, for example,
* when we've stored a structure in a log record as a DBT, and now
* we want to look at it. Unfortunately, if you have code like:
*
* struct a {
* int x;
* } *p;
*
* void *func_argument;
* int local;
*
* p = (struct a *)func_argument;
* memcpy(&local, p->x, sizeof(local));
*
* compilers optimize to use inline instructions requiring alignment,
* and records in the log don't have any particular alignment. (This
* isn't a compiler bug, because it's a structure they're allowed to
* assume alignment.)
*
* Casting the memcpy arguments to (u_int8_t *) appears to work most
* of the time, but we've seen examples where it wasn't sufficient
* and there's nothing in ANSI C that requires that work.
*
* PUBLIC: void *__ua_memcpy __P((void *, const void *, size_t));
*/
void *
__ua_memcpy(dst, src, len)
void *dst;
const void *src;
size_t len;
{
return ((void *)memcpy(dst, src, len));
}