/* * DEBUG: * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ * ---------------------------------------------------------- * * Squid is the result of efforts by numerous individuals from * the Internet community; see the CONTRIBUTORS file for full * details. Many organizations have provided support for Squid's * development; see the SPONSORS file for full details. Squid is * Copyrighted (C) 2001 by the Regents of the University of * California; see the COPYRIGHT file for full details. Squid * incorporates software developed and/or copyrighted by other * sources; see the CREDITS file for full details. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. * */ #define _etext etext #include "squid.h" #include "profiler/Profiler.h" #include "util.h" #if HAVE_STDIO_H #include #endif #if HAVE_STRING_H #include #endif #if HAVE_CTYPE_H #include #endif #if HAVE_UNISTD_H #include #endif #if HAVE_GNUMALLLOC_H #include #elif HAVE_MALLOC_H #include #endif #if HAVE_ERRNO_H #include #endif #if HAVE_MATH_H #include #endif #if HAVE_ASSERT_H #include #endif #if MEM_GEN_TRACE static FILE *tracefp = NULL; void log_trace_init(char *fn) { tracefp = fopen(fn, "a+"); if (!tracefp) { perror("log_trace_init"); exit(1); } } void log_trace_done() { fclose(tracefp); tracefp = NULL; } #endif #if XMALLOC_TRACE char *xmalloc_file = ""; int xmalloc_line = 0; char *xmalloc_func = ""; static int xmalloc_count = 0; int xmalloc_trace = 0; /* Enable with -m option */ size_t xmalloc_total = 0; #undef xmalloc #undef xfree #undef xrealloc #undef xcalloc #undef xstrdup #endif #if XMALLOC_DEBUG #define DBG_ARRY_SZ (1<<11) #define DBG_ARRY_BKTS (1<<8) static void *(*malloc_ptrs)[DBG_ARRY_SZ]; static int malloc_size[DBG_ARRY_BKTS][DBG_ARRY_SZ]; #if XMALLOC_TRACE static char *malloc_file[DBG_ARRY_BKTS][DBG_ARRY_SZ]; static short malloc_line[DBG_ARRY_BKTS][DBG_ARRY_SZ]; static int malloc_count[DBG_ARRY_BKTS][DBG_ARRY_SZ]; #endif static int dbg_initd = 0; #define DBG_HASH_BUCKET(ptr) (((((int)ptr)>>4)+(((int)ptr)>>12)+(((int)ptr)>>20))&0xFF) static void check_init(void) { int B = 0, I = 0; /* calloc the ptrs so that we don't see them when hunting lost memory */ malloc_ptrs = calloc(DBG_ARRY_BKTS, sizeof(*malloc_ptrs)); for (B = 0; B < DBG_ARRY_BKTS; ++B) { for (I = 0; I < DBG_ARRY_SZ; ++I) { malloc_ptrs[B][I] = NULL; malloc_size[B][I] = 0; #if XMALLOC_TRACE malloc_file[B][I] = NULL; malloc_line[B][I] = 0; malloc_count[B][I] = 0; #endif } } dbg_initd = 1; } static void check_free(void *s) { int B, I; B = DBG_HASH_BUCKET(s); for (I = 0; I < DBG_ARRY_SZ; ++I) { if (malloc_ptrs[B][I] != s) continue; malloc_ptrs[B][I] = NULL; malloc_size[B][I] = 0; #if XMALLOC_TRACE malloc_file[B][I] = NULL; malloc_line[B][I] = 0; malloc_count[B][I] = 0; #endif break; } if (I == DBG_ARRY_SZ) { static char msg[128]; snprintf(msg, 128, "xfree: ERROR: s=%p not found!", s); if (failure_notify) (*failure_notify) (msg); else perror(msg); } } static void check_malloc(void *p, size_t sz) { void *P, *Q; int B, I; if (!dbg_initd) check_init(); B = DBG_HASH_BUCKET(p); for (I = 0; I < DBG_ARRY_SZ; ++I) { if (!(P = malloc_ptrs[B][I])) continue; Q = P + malloc_size[B][I]; if (P <= p && p < Q) { static char msg[128]; snprintf(msg, 128, "xmalloc: ERROR: p=%p falls in P=%p+%d", p, P, malloc_size[B][I]); if (failure_notify) (*failure_notify) (msg); else perror(msg); } } for (I = 0; I < DBG_ARRY_SZ; ++I) { if (malloc_ptrs[B][I]) continue; malloc_ptrs[B][I] = p; malloc_size[B][I] = (int) sz; #if XMALLOC_TRACE malloc_file[B][I] = xmalloc_file; malloc_line[B][I] = xmalloc_line; malloc_count[B][I] = xmalloc_count; #endif break; } if (I == DBG_ARRY_SZ) { if (failure_notify) (*failure_notify) ("xmalloc: debug out of array space!"); else perror("xmalloc: debug out of array space!"); } } #endif #if XMALLOC_TRACE && !HAVE_MALLOCBLKSIZE size_t xmallocblksize(void *p) { int B, I; B = DBG_HASH_BUCKET(p); for (I = 0; I < DBG_ARRY_SZ; ++I) { if (malloc_ptrs[B][I] == p) return malloc_size[B][I]; } return 0; } #endif #ifdef XMALLOC_TRACE static char * malloc_file_name(void *p) { int B, I; B = DBG_HASH_BUCKET(p); for (I = 0; I < DBG_ARRY_SZ; ++I) { if (malloc_ptrs[B][I] == p) return malloc_file[B][I]; } return 0; } int malloc_line_number(void *p) { int B, I; B = DBG_HASH_BUCKET(p); for (I = 0; I < DBG_ARRY_SZ; ++I) { if (malloc_ptrs[B][I] == p) return malloc_line[B][I]; } return 0; } int malloc_number(void *p) { int B, I; B = DBG_HASH_BUCKET(p); for (I = 0; I < DBG_ARRY_SZ; ++I) { if (malloc_ptrs[B][I] == p) return malloc_count[B][I]; } return 0; } static void xmalloc_show_trace(void *p, int sign) { int statMemoryAccounted(); static size_t last_total = 0, last_accounted = 0, last_mallinfo = 0; size_t accounted = statMemoryAccounted(); size_t mi = 0; size_t sz; #if HAVE_MALLINFO struct mallinfo mp = mallinfo(); mi = mp.uordblks + mp.usmblks + mp.hblkhd; #endif sz = xmallocblksize(p) * sign; xmalloc_total += sz; xmalloc_count += sign > 0; if (xmalloc_trace) { fprintf(stderr, "%c%8p size=%5d/%d acc=%5d/%d mallinfo=%5d/%d %s:%d %s", sign > 0 ? '+' : '-', p, (int) xmalloc_total - last_total, (int) xmalloc_total, (int) accounted - last_accounted, (int) accounted, (int) mi - last_mallinfo, (int) mi, xmalloc_file, xmalloc_line, xmalloc_func); if (sign < 0) fprintf(stderr, " (%d %s:%d)\n", malloc_number(p), malloc_file_name(p), malloc_line_number(p)); else fprintf(stderr, " %d\n", xmalloc_count); } last_total = xmalloc_total; last_accounted = accounted; last_mallinfo = mi; } short malloc_refs[DBG_ARRY_BKTS][DBG_ARRY_SZ]; #define XMALLOC_LEAK_ALIGN (4) static void xmalloc_scan_region(void *start, int size, int depth) { int B, I; char *ptr = start; char *end = ptr + size - XMALLOC_LEAK_ALIGN; static int sum = 0; while (ptr <= end) { void *p = *(void **) ptr; if (p && p != start) { B = DBG_HASH_BUCKET(p); for (I = 0; I < DBG_ARRY_SZ; ++I) { if (malloc_ptrs[B][I] == p) { if (!malloc_refs[B][I]++) { /* A new reference */ fprintf(stderr, "%*s%p %s:%d size %d allocation %d\n", depth, "", malloc_ptrs[B][I], malloc_file[B][I], malloc_line[B][I], malloc_size[B][I], malloc_count[B][I]); sum += malloc_size[B][I]; xmalloc_scan_region(malloc_ptrs[B][I], malloc_size[B][I], depth + 1); if (depth == 0) { if (sum != malloc_size[B][I]) fprintf(stderr, "=== %d bytes\n", sum); sum = 0; } #if XMALLOC_SHOW_ALL_REFERENCES } else { /* We have already scanned this pointer... */ fprintf(stderr, "%*s%p %s:%d size %d allocation %d ... (%d)\n", depth * 2, "", malloc_ptrs[B][I], malloc_file[B][I], malloc_line[B][I], malloc_size[B][I], malloc_count[B][I], malloc_refs[B][I]); #endif } } } } ptr += XMALLOC_LEAK_ALIGN; } } void xmalloc_find_leaks(void) { int B, I; int leak_sum = 0; extern void _etext; fprintf(stderr, "----- Memory map ----\n"); xmalloc_scan_region(&_etext, (void *) sbrk(0) - (void *) &_etext, 0); for (B = 0; B < DBG_ARRY_BKTS; ++B) { for (I = 0; I < DBG_ARRY_SZ; ++I) { if (malloc_ptrs[B][I] && malloc_refs[B][I] == 0) { /* Found a leak... */ fprintf(stderr, "Leak found: %p", malloc_ptrs[B][I]); fprintf(stderr, " %s", malloc_file[B][I]); fprintf(stderr, ":%d", malloc_line[B][I]); fprintf(stderr, " size %d", malloc_size[B][I]); fprintf(stderr, " allocation %d\n", malloc_count[B][I]); leak_sum += malloc_size[B][I]; } } } if (leak_sum) { fprintf(stderr, "Total leaked memory: %d\n", leak_sum); } else { fprintf(stderr, "No memory leaks detected\n"); } fprintf(stderr, "----------------------\n"); } #endif /* XMALLOC_TRACE */