Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include "gw-config.h"
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include "gwlib.h"
Go to the source code of this file.
Data Structures | |
struct | location |
struct | area |
Macros | |
#define | NEW_AREA_PATTERN 0xcafebabe |
#define | FREE_AREA_PATTERN 0xdeadbeef |
#define | START_MARK_PATTERN 0xdadaface |
#define | END_MARK_PATTERN 0xadadafec |
#define | MAX_DUMP 16 |
#define | MARKER_SIZE 16 |
#define | MAX_TAB_SIZE (100*1024*1024L) |
#define | MAX_ALLOCATIONS ((long) (MAX_TAB_SIZE/sizeof(struct area))) |
#define | FREE_RING_SIZE 1024 |
Functions | |
static void | lock (void) |
static void | unlock (void) |
static unsigned long | round_pow2 (unsigned long num) |
static void | fill (unsigned char *p, size_t bytes, long pattern) |
static int | untouched (unsigned char *p, size_t bytes, long pattern) |
static void | endmark (unsigned char *p, size_t size) |
static void | startmark (unsigned char *p, long number) |
static long | check_startmark (unsigned char *p) |
static int | check_endmark (unsigned char *p, size_t size) |
static int | check_marks (struct area *area, long index) |
static void | dump_area (struct area *area) |
static struct area * | find_area (unsigned char *p) |
static void | change_total_size (long change) |
static struct area * | record_allocation (unsigned char *p, size_t size, const char *filename, long lineno, const char *function) |
static void | remove_allocation (struct area *area) |
static void | drop_from_free_ring (long index) |
static void | put_on_free_ring (struct area *area) |
static void | free_area (struct area *area) |
void | gw_check_init_mem (int slow_flag) |
void | gw_check_shutdown (void) |
void * | gw_check_malloc (size_t size, const char *filename, long lineno, const char *function) |
void * | gw_check_calloc (int nmemb, size_t size, const char *filename, long lineno, const char *function) |
void * | gw_check_realloc (void *p, size_t size, const char *filename, long lineno, const char *function) |
void | gw_check_free (void *p, const char *filename, long lineno, const char *function) |
char * | gw_check_strdup (const char *str, const char *filename, long lineno, const char *function) |
void * | gw_check_claim_area (void *p, const char *filename, long lineno, const char *function) |
void | gw_check_check_leaks (void) |
int | gw_check_is_allocated (void *p) |
long | gw_check_area_size (void *p) |
Variables | |
static int | initialized = 0 |
static int | slow = 0 |
static Mutex | gwmem_lock |
static struct area | allocated [MAX_ALLOCATIONS] |
static struct area | free_ring [FREE_RING_SIZE] |
static long | num_allocations |
static long | free_ring_start |
static long | free_ring_len |
static long | highest_num_allocations |
static long | highest_total_size |
static long | total_size |
#define END_MARK_PATTERN 0xadadafec |
Definition at line 122 of file gwmem-check.c.
Referenced by check_endmark(), endmark(), and find_area().
#define FREE_AREA_PATTERN 0xdeadbeef |
Definition at line 115 of file gwmem-check.c.
Referenced by drop_from_free_ring(), find_area(), and free_area().
#define FREE_RING_SIZE 1024 |
Definition at line 175 of file gwmem-check.c.
Referenced by put_on_free_ring().
#define MARKER_SIZE 16 |
Definition at line 164 of file gwmem-check.c.
Referenced by check_endmark(), check_startmark(), drop_from_free_ring(), endmark(), gw_check_calloc(), gw_check_malloc(), gw_check_realloc(), and startmark().
#define MAX_ALLOCATIONS ((long) (MAX_TAB_SIZE/sizeof(struct area))) |
Definition at line 168 of file gwmem-check.c.
Referenced by record_allocation().
#define MAX_DUMP 16 |
Definition at line 125 of file gwmem-check.c.
Referenced by dump_area().
#define MAX_TAB_SIZE (100*1024*1024L) |
Definition at line 167 of file gwmem-check.c.
#define NEW_AREA_PATTERN 0xcafebabe |
Definition at line 111 of file gwmem-check.c.
Referenced by find_area(), gw_check_malloc(), and gw_check_realloc().
#define START_MARK_PATTERN 0xdadaface |
Definition at line 119 of file gwmem-check.c.
Referenced by check_startmark(), find_area(), and startmark().
|
static |
Definition at line 411 of file gwmem-check.c.
References highest_total_size, and total_size.
Referenced by gw_check_realloc(), record_allocation(), and remove_allocation().
|
static |
Definition at line 286 of file gwmem-check.c.
References END_MARK_PATTERN, MARKER_SIZE, size, and untouched().
Referenced by check_marks(), and find_area().
|
static |
Definition at line 293 of file gwmem-check.c.
References area::area, area::area_size, check_endmark(), check_startmark(), and error().
Referenced by drop_from_free_ring(), gw_check_check_leaks(), and remove_allocation().
|
static |
Definition at line 276 of file gwmem-check.c.
References MARKER_SIZE, number, START_MARK_PATTERN, and untouched().
Referenced by check_marks(), and find_area().
|
static |
Definition at line 462 of file gwmem-check.c.
References area::area, area::area_size, check_marks(), dump_area(), error(), free(), FREE_AREA_PATTERN, free_ring, MARKER_SIZE, and untouched().
Referenced by gw_check_check_leaks(), and put_on_free_ring().
|
static |
Definition at line 309 of file gwmem-check.c.
References area::allocator, area::area, area::area_size, area::claimer, debug(), location::filename, free(), location::function, location::lineno, MAX_DUMP, area::max_size, and area::reallocator.
Referenced by drop_from_free_ring(), find_area(), and gw_check_check_leaks().
|
inlinestatic |
Definition at line 255 of file gwmem-check.c.
References END_MARK_PATTERN, fill(), MARKER_SIZE, and size.
Referenced by conn_read_packet(), gw_check_realloc(), and record_allocation().
|
static |
Definition at line 229 of file gwmem-check.c.
Referenced by endmark(), free_area(), gw_check_malloc(), gw_check_realloc(), and startmark().
|
static |
Definition at line 358 of file gwmem-check.c.
References allocated, area::area, area::area_size, check_endmark(), check_startmark(), dump_area(), END_MARK_PATTERN, error(), FREE_AREA_PATTERN, gw_assert(), NEW_AREA_PATTERN, num_allocations, slow, and START_MARK_PATTERN.
Referenced by gw_check_area_size(), gw_check_claim_area(), gw_check_free(), gw_check_is_allocated(), and gw_check_realloc().
|
static |
Definition at line 494 of file gwmem-check.c.
References area::area, area::area_size, fill(), FREE_AREA_PATTERN, put_on_free_ring(), and remove_allocation().
Referenced by gw_check_free(), and gw_check_realloc().
long gw_check_area_size | ( | void * | p | ) |
Definition at line 723 of file gwmem-check.c.
References area::area, area::area_size, find_area(), lock(), size, unlock(), and warning().
void* gw_check_calloc | ( | int | nmemb, |
size_t | size, | ||
const char * | filename, | ||
long | lineno, | ||
const char * | function | ||
) |
Definition at line 537 of file gwmem-check.c.
References calloc, filename, gw_assert(), initialized, lock(), MARKER_SIZE, panic, record_allocation(), size, and unlock().
void gw_check_check_leaks | ( | void | ) |
Definition at line 679 of file gwmem-check.c.
References allocated, area::area_size, check_marks(), debug(), drop_from_free_ring(), dump_area(), free_ring_len, gw_assert(), highest_num_allocations, highest_total_size, initialized, lock(), num_allocations, total_size, and unlock().
void* gw_check_claim_area | ( | void * | p, |
const char * | filename, | ||
long | lineno, | ||
const char * | function | ||
) |
Definition at line 654 of file gwmem-check.c.
References area::area, area::claimer, location::filename, filename, find_area(), location::function, location::lineno, lock(), panic, and unlock().
void gw_check_free | ( | void * | p, |
const char * | filename, | ||
long | lineno, | ||
const char * | function | ||
) |
Definition at line 619 of file gwmem-check.c.
References area::area, find_area(), free_area(), gw_assert(), initialized, lock(), panic, and unlock().
void gw_check_init_mem | ( | int | slow_flag | ) |
Definition at line 501 of file gwmem-check.c.
References gwmem_lock, initialized, mutex_init_static, and slow.
int gw_check_is_allocated | ( | void * | p | ) |
Definition at line 713 of file gwmem-check.c.
References area::area, find_area(), lock(), and unlock().
void* gw_check_malloc | ( | size_t | size, |
const char * | filename, | ||
long | lineno, | ||
const char * | function | ||
) |
Definition at line 514 of file gwmem-check.c.
References filename, fill(), gw_assert(), initialized, lock(), malloc(), MARKER_SIZE, NEW_AREA_PATTERN, panic, record_allocation(), size, and unlock().
Referenced by gw_check_realloc(), and gw_check_strdup().
void* gw_check_realloc | ( | void * | p, |
size_t | size, | ||
const char * | filename, | ||
long | lineno, | ||
const char * | function | ||
) |
Definition at line 561 of file gwmem-check.c.
References area::allocator, area::area, area::area_size, change_total_size(), endmark(), location::filename, filename, fill(), find_area(), free_area(), location::function, gw_assert(), gw_check_malloc(), initialized, location::lineno, lock(), malloc(), MARKER_SIZE, area::max_size, NEW_AREA_PATTERN, panic, area::reallocator, record_allocation(), round_pow2(), size, and unlock().
void gw_check_shutdown | ( | void | ) |
Definition at line 508 of file gwmem-check.c.
References gwmem_lock, initialized, and mutex_destroy().
char* gw_check_strdup | ( | const char * | str, |
const char * | filename, | ||
long | lineno, | ||
const char * | function | ||
) |
Definition at line 639 of file gwmem-check.c.
References filename, gw_assert(), gw_check_malloc(), initialized, and size.
|
inlinestatic |
Definition at line 198 of file gwmem-check.c.
References gwmem_lock, and mutex_lock.
Referenced by gw_check_area_size(), gw_check_calloc(), gw_check_check_leaks(), gw_check_claim_area(), gw_check_free(), gw_check_is_allocated(), gw_check_malloc(), and gw_check_realloc().
|
static |
Definition at line 475 of file gwmem-check.c.
References area::area, drop_from_free_ring(), free_ring, free_ring_len, FREE_RING_SIZE, free_ring_start, and startmark().
Referenced by free_area().
|
static |
Definition at line 418 of file gwmem-check.c.
References allocated, area::allocator, area::area, area::area_size, change_total_size(), endmark(), location::filename, filename, location::function, highest_num_allocations, location::lineno, MAX_ALLOCATIONS, area::max_size, num_allocations, panic, size, and startmark().
Referenced by gw_check_calloc(), gw_check_malloc(), and gw_check_realloc().
|
static |
Definition at line 451 of file gwmem-check.c.
References allocated, area::area, area::area_size, change_total_size(), check_marks(), num_allocations, and startmark().
Referenced by free_area().
|
static |
|
static |
Definition at line 263 of file gwmem-check.c.
References fill(), gw_assert(), MARKER_SIZE, number, and START_MARK_PATTERN.
Referenced by conn_read_packet(), put_on_free_ring(), record_allocation(), and remove_allocation().
|
inlinestatic |
Definition at line 203 of file gwmem-check.c.
References gwmem_lock, and mutex_unlock.
Referenced by gw_check_area_size(), gw_check_calloc(), gw_check_check_leaks(), gw_check_claim_area(), gw_check_free(), gw_check_is_allocated(), gw_check_malloc(), and gw_check_realloc().
|
static |
Definition at line 241 of file gwmem-check.c.
Referenced by check_endmark(), check_startmark(), and drop_from_free_ring().
|
static |
Definition at line 177 of file gwmem-check.c.
Referenced by find_area(), gw_check_check_leaks(), record_allocation(), and remove_allocation().
|
static |
Definition at line 178 of file gwmem-check.c.
Referenced by drop_from_free_ring(), and put_on_free_ring().
|
static |
Definition at line 186 of file gwmem-check.c.
Referenced by gw_check_check_leaks(), and put_on_free_ring().
|
static |
Definition at line 185 of file gwmem-check.c.
Referenced by put_on_free_ring().
|
static |
Definition at line 135 of file gwmem-check.c.
Referenced by gw_check_init_mem(), gw_check_shutdown(), lock(), and unlock().
|
static |
Definition at line 190 of file gwmem-check.c.
Referenced by gw_check_check_leaks(), and record_allocation().
|
static |
Definition at line 192 of file gwmem-check.c.
Referenced by change_total_size(), and gw_check_check_leaks().
|
static |
Definition at line 127 of file gwmem-check.c.
Referenced by gw_check_calloc(), gw_check_check_leaks(), gw_check_free(), gw_check_init_mem(), gw_check_malloc(), gw_check_realloc(), gw_check_shutdown(), and gw_check_strdup().
|
static |
Definition at line 182 of file gwmem-check.c.
Referenced by find_area(), gw_check_check_leaks(), record_allocation(), and remove_allocation().
|
static |
Definition at line 130 of file gwmem-check.c.
Referenced by find_area(), and gw_check_init_mem().
|
static |
Definition at line 194 of file gwmem-check.c.
Referenced by change_total_size(), and gw_check_check_leaks().