204 lines
5.4 KiB
C
204 lines
5.4 KiB
C
/* $NetBSD: rf_debugMem.c,v 1.21 2011/05/01 06:49:43 mrg Exp $ */
|
|
/*
|
|
* Copyright (c) 1995 Carnegie-Mellon University.
|
|
* All rights reserved.
|
|
*
|
|
* Author: Daniel Stodolsky, Mark Holland, Jim Zelenka
|
|
*
|
|
* Permission to use, copy, modify and distribute this software and
|
|
* its documentation is hereby granted, provided that both the copyright
|
|
* notice and this permission notice appear in all copies of the
|
|
* software, derivative works or modified versions, and any portions
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
*
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
|
|
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
*
|
|
* Carnegie Mellon requests users of this software to return to
|
|
*
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
* School of Computer Science
|
|
* Carnegie Mellon University
|
|
* Pittsburgh PA 15213-3890
|
|
*
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
* rights to redistribute these changes.
|
|
*/
|
|
|
|
/* debugMem.c: memory usage debugging stuff.
|
|
* Malloc, Calloc, and Free are #defined everywhere
|
|
* to do_malloc, do_calloc, and do_free.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__KERNEL_RCSID(0, "$NetBSD: rf_debugMem.c,v 1.21 2011/05/01 06:49:43 mrg Exp $");
|
|
|
|
#include <dev/raidframe/raidframevar.h>
|
|
|
|
#include "rf_threadstuff.h"
|
|
#include "rf_options.h"
|
|
#include "rf_debugMem.h"
|
|
#include "rf_general.h"
|
|
#include "rf_shutdown.h"
|
|
|
|
#if RF_DEBUG_MEM
|
|
|
|
static long tot_mem_in_use = 0;
|
|
|
|
/* Hash table of information about memory allocations */
|
|
#define RF_MH_TABLESIZE 1000
|
|
|
|
struct mh_struct {
|
|
void *address;
|
|
int size;
|
|
int line;
|
|
const char *filen;
|
|
char allocated;
|
|
struct mh_struct *next;
|
|
};
|
|
static struct mh_struct *mh_table[RF_MH_TABLESIZE];
|
|
static rf_declare_mutex2(rf_debug_mem_mutex);
|
|
static int mh_table_initialized = 0;
|
|
|
|
static void memory_hash_insert(void *addr, int size, int line, const char *filen);
|
|
static int memory_hash_remove(void *addr, int sz);
|
|
|
|
void
|
|
rf_record_malloc(void *p, int size, int line, const char *filen)
|
|
{
|
|
RF_ASSERT(size != 0);
|
|
|
|
/* rf_lock_mutex2(rf_debug_mem_mutex); */
|
|
memory_hash_insert(p, size, line, filen);
|
|
tot_mem_in_use += size;
|
|
/* rf_unlock_mutex2(rf_debug_mem_mutex); */
|
|
if ((long) p == rf_memDebugAddress) {
|
|
printf("Allocate: debug address allocated from line %d file %s\n", line, filen);
|
|
}
|
|
}
|
|
|
|
void
|
|
rf_unrecord_malloc(void *p, int sz)
|
|
{
|
|
int size;
|
|
|
|
/* rf_lock_mutex2(rf_debug_mem_mutex); */
|
|
size = memory_hash_remove(p, sz);
|
|
tot_mem_in_use -= size;
|
|
/* rf_unlock_mutex2(rf_debug_mem_mutex); */
|
|
if ((long) p == rf_memDebugAddress) {
|
|
printf("Free: Found debug address\n"); /* this is really only a
|
|
* flag line for gdb */
|
|
}
|
|
}
|
|
|
|
void
|
|
rf_print_unfreed(void)
|
|
{
|
|
int i, foundone = 0;
|
|
struct mh_struct *p;
|
|
|
|
for (i = 0; i < RF_MH_TABLESIZE; i++) {
|
|
for (p = mh_table[i]; p; p = p->next)
|
|
if (p->allocated) {
|
|
if (!foundone)
|
|
printf("\n\nThere are unfreed memory locations at program shutdown:\n");
|
|
foundone = 1;
|
|
printf("Addr 0x%lx Size %d line %d file %s\n",
|
|
(long) p->address, p->size, p->line, p->filen);
|
|
}
|
|
}
|
|
if (tot_mem_in_use) {
|
|
printf("%ld total bytes in use\n", tot_mem_in_use);
|
|
}
|
|
}
|
|
#endif /* RF_DEBUG_MEM */
|
|
|
|
#if RF_DEBUG_MEM
|
|
static void
|
|
rf_ShutdownDebugMem(void *unused)
|
|
{
|
|
rf_destroy_mutex2(rf_debug_mem_mutex);
|
|
}
|
|
#endif
|
|
|
|
int
|
|
rf_ConfigureDebugMem(RF_ShutdownList_t **listp)
|
|
{
|
|
#if RF_DEBUG_MEM
|
|
int i;
|
|
|
|
rf_init_mutex2(rf_debug_mem_mutex, IPL_VM);
|
|
if (rf_memDebug) {
|
|
for (i = 0; i < RF_MH_TABLESIZE; i++)
|
|
mh_table[i] = NULL;
|
|
mh_table_initialized = 1;
|
|
}
|
|
rf_ShutdownCreate(listp, rf_ShutdownDebugMem, NULL);
|
|
#endif
|
|
return (0);
|
|
}
|
|
|
|
#if RF_DEBUG_MEM
|
|
|
|
#define HASHADDR(_a_) ( (((unsigned long) _a_)>>3) % RF_MH_TABLESIZE )
|
|
|
|
static void
|
|
memory_hash_insert(void *addr, int size, int line, const char *filen)
|
|
{
|
|
unsigned long bucket = HASHADDR(addr);
|
|
struct mh_struct *p;
|
|
|
|
RF_ASSERT(mh_table_initialized);
|
|
|
|
/* search for this address in the hash table */
|
|
for (p = mh_table[bucket]; p && (p->address != addr); p = p->next);
|
|
if (!p) {
|
|
RF_Malloc(p, sizeof(struct mh_struct), (struct mh_struct *));
|
|
RF_ASSERT(p);
|
|
p->next = mh_table[bucket];
|
|
mh_table[bucket] = p;
|
|
p->address = addr;
|
|
p->allocated = 0;
|
|
}
|
|
if (p->allocated) {
|
|
printf("ERROR: reallocated address 0x%lx from line %d, file %s without intervening free\n", (long) addr, line, filen);
|
|
printf(" last allocated from line %d file %s\n", p->line, p->filen);
|
|
RF_ASSERT(0);
|
|
}
|
|
p->size = size;
|
|
p->line = line;
|
|
p->filen = filen;
|
|
p->allocated = 1;
|
|
}
|
|
|
|
static int
|
|
memory_hash_remove(void *addr, int sz)
|
|
{
|
|
unsigned long bucket = HASHADDR(addr);
|
|
struct mh_struct *p;
|
|
|
|
RF_ASSERT(mh_table_initialized);
|
|
for (p = mh_table[bucket]; p && (p->address != addr); p = p->next);
|
|
if (!p) {
|
|
printf("ERROR: freeing never-allocated address 0x%lx\n", (long) addr);
|
|
RF_PANIC();
|
|
}
|
|
if (!p->allocated) {
|
|
printf("ERROR: freeing unallocated address 0x%lx. Last allocation line %d file %s\n", (long) addr, p->line, p->filen);
|
|
RF_PANIC();
|
|
}
|
|
if (sz > 0 && p->size != sz) { /* you can suppress this error by
|
|
* using a negative value as the size
|
|
* to free */
|
|
printf("ERROR: incorrect size at free for address 0x%lx: is %d should be %d. Alloc at line %d of file %s\n", (unsigned long) addr, sz, p->size, p->line, p->filen);
|
|
RF_PANIC();
|
|
}
|
|
p->allocated = 0;
|
|
return (p->size);
|
|
}
|
|
#endif /* RF_DEBUG_MEM */
|
|
|
|
|