Update contrib.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 *************************************************************************
13 ** This file contains low-level memory allocation drivers for when
14 ** SQLite will use the standard C-library malloc/realloc/free interface
15 ** to obtain the memory it needs while adding lots of additional debugging
16 ** information to each allocation in order to help detect and fix memory
17 ** leaks and memory usage errors.
19 ** This file contains implementations of the low-level memory allocation
20 ** routines specified in the sqlite3_mem_methods object.
22 ** $Id: mem2.c,v 1.37 2008/07/25 08:49:00 danielk1977 Exp $
24 #include "sqliteInt.h"
27 ** This version of the memory allocator is used only if the
28 ** SQLITE_MEMDEBUG macro is defined
30 #ifdef SQLITE_MEMDEBUG
33 ** The backtrace functionality is only available with GLIBC
36 extern int backtrace(void**,int);
37 extern void backtrace_symbols_fd(void*const*,int,int);
39 # define backtrace(A,B) 0
40 # define backtrace_symbols_fd(A,B,C)
45 ** Each memory allocation looks like this:
47 ** ------------------------------------------------------------------------
48 ** | Title | backtrace pointers | MemBlockHdr | allocation | EndGuard |
49 ** ------------------------------------------------------------------------
51 ** The application code sees only a pointer to the allocation. We have
52 ** to back up from the allocation pointer to find the MemBlockHdr. The
53 ** MemBlockHdr tells us the size of the allocation and the number of
54 ** backtrace pointers. There is also a guard word at the end of the
58 i64 iSize; /* Size of this allocation */
59 struct MemBlockHdr *pNext, *pPrev; /* Linked list of all unfreed memory */
60 char nBacktrace; /* Number of backtraces on this alloc */
61 char nBacktraceSlots; /* Available backtrace slots */
62 short nTitle; /* Bytes of title; includes '\0' */
63 int iForeGuard; /* Guard word for sanity */
69 #define FOREGUARD 0x80F5E153
70 #define REARGUARD 0xE4676B53
73 ** Number of malloc size increments to track.
78 ** All of the static variables used by this module are collected
79 ** into a single structure named "mem". This is to keep the
80 ** static variables organized and to reduce namespace pollution
81 ** when this module is combined with other in the amalgamation.
86 ** Mutex to control access to the memory allocation subsystem.
91 ** Head and tail of a linked list of all outstanding allocations
93 struct MemBlockHdr *pFirst;
94 struct MemBlockHdr *pLast;
97 ** The number of levels of backtrace to save in new allocations.
100 void (*xBacktrace)(int, int, void **);
103 ** Title text to insert in front of each block
105 int nTitle; /* Bytes of zTitle to save. Includes '\0' and padding */
106 char zTitle[100]; /* The title text */
109 ** sqlite3MallocDisallow() increments the following counter.
110 ** sqlite3MallocAllow() decrements it.
112 int disallow; /* Do not allow memory allocation */
115 ** Gather statistics on the sizes of memory allocations.
116 ** nAlloc[i] is the number of allocation attempts of i*8
117 ** bytes. i==NCSIZE is the number of allocation attempts for
118 ** sizes more than NCSIZE*8 bytes.
120 int nAlloc[NCSIZE]; /* Total number of allocations */
121 int nCurrent[NCSIZE]; /* Current number of allocations */
122 int mxCurrent[NCSIZE]; /* Highwater mark for nCurrent */
128 ** Adjust memory usage statistics
130 static void adjustStats(int iSize, int increment){
131 int i = ((iSize+7)&~7)/8;
138 if( mem.nCurrent[i]>mem.mxCurrent[i] ){
139 mem.mxCurrent[i] = mem.nCurrent[i];
143 assert( mem.nCurrent[i]>=0 );
148 ** Given an allocation, find the MemBlockHdr for that allocation.
150 ** This routine checks the guards at either end of the allocation and
151 ** if they are incorrect it asserts.
153 static struct MemBlockHdr *sqlite3MemsysGetHeader(void *pAllocation){
154 struct MemBlockHdr *p;
159 p = (struct MemBlockHdr*)pAllocation;
161 assert( p->iForeGuard==FOREGUARD );
162 nReserve = (p->iSize+7)&~7;
163 pInt = (int*)pAllocation;
164 pU8 = (u8*)pAllocation;
165 assert( pInt[nReserve/sizeof(int)]==REARGUARD );
166 assert( (nReserve-0)<=p->iSize || pU8[nReserve-1]==0x65 );
167 assert( (nReserve-1)<=p->iSize || pU8[nReserve-2]==0x65 );
168 assert( (nReserve-2)<=p->iSize || pU8[nReserve-3]==0x65 );
173 ** Return the number of bytes currently allocated at address p.
175 static int sqlite3MemSize(void *p){
176 struct MemBlockHdr *pHdr;
180 pHdr = sqlite3MemsysGetHeader(p);
185 ** Initialize the memory allocation subsystem.
187 static int sqlite3MemInit(void *NotUsed){
188 if( !sqlite3Config.bMemstat ){
189 /* If memory status is enabled, then the malloc.c wrapper will already
190 ** hold the STATIC_MEM mutex when the routines here are invoked. */
191 mem.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM);
197 ** Deinitialize the memory allocation subsystem.
199 static void sqlite3MemShutdown(void *NotUsed){
204 ** Round up a request size to the next valid allocation size.
206 static int sqlite3MemRoundup(int n){
211 ** Allocate nByte bytes of memory.
213 static void *sqlite3MemMalloc(int nByte){
214 struct MemBlockHdr *pHdr;
221 sqlite3_mutex_enter(mem.mutex);
222 assert( mem.disallow==0 );
223 nReserve = (nByte+7)&~7;
224 totalSize = nReserve + sizeof(*pHdr) + sizeof(int) +
225 mem.nBacktrace*sizeof(void*) + mem.nTitle;
226 p = malloc(totalSize);
229 pBt = (void**)&z[mem.nTitle];
230 pHdr = (struct MemBlockHdr*)&pBt[mem.nBacktrace];
232 pHdr->pPrev = mem.pLast;
234 mem.pLast->pNext = pHdr;
239 pHdr->iForeGuard = FOREGUARD;
240 pHdr->nBacktraceSlots = mem.nBacktrace;
241 pHdr->nTitle = mem.nTitle;
242 if( mem.nBacktrace ){
244 pHdr->nBacktrace = backtrace(aAddr, mem.nBacktrace+1)-1;
245 memcpy(pBt, &aAddr[1], pHdr->nBacktrace*sizeof(void*));
246 if( mem.xBacktrace ){
247 mem.xBacktrace(nByte, pHdr->nBacktrace-1, &aAddr[1]);
250 pHdr->nBacktrace = 0;
253 memcpy(z, mem.zTitle, mem.nTitle);
256 adjustStats(nByte, +1);
257 pInt = (int*)&pHdr[1];
258 pInt[nReserve/sizeof(int)] = REARGUARD;
259 memset(pInt, 0x65, nReserve);
262 sqlite3_mutex_leave(mem.mutex);
269 static void sqlite3MemFree(void *pPrior){
270 struct MemBlockHdr *pHdr;
273 assert( sqlite3Config.bMemstat || mem.mutex!=0 );
274 pHdr = sqlite3MemsysGetHeader(pPrior);
276 pBt -= pHdr->nBacktraceSlots;
277 sqlite3_mutex_enter(mem.mutex);
279 assert( pHdr->pPrev->pNext==pHdr );
280 pHdr->pPrev->pNext = pHdr->pNext;
282 assert( mem.pFirst==pHdr );
283 mem.pFirst = pHdr->pNext;
286 assert( pHdr->pNext->pPrev==pHdr );
287 pHdr->pNext->pPrev = pHdr->pPrev;
289 assert( mem.pLast==pHdr );
290 mem.pLast = pHdr->pPrev;
294 adjustStats(pHdr->iSize, -1);
295 memset(z, 0x2b, sizeof(void*)*pHdr->nBacktraceSlots + sizeof(*pHdr) +
296 pHdr->iSize + sizeof(int) + pHdr->nTitle);
298 sqlite3_mutex_leave(mem.mutex);
302 ** Change the size of an existing memory allocation.
304 ** For this debugging implementation, we *always* make a copy of the
305 ** allocation into a new place in memory. In this way, if the
306 ** higher level code is using pointer to the old allocation, it is
307 ** much more likely to break and we are much more liking to find
310 static void *sqlite3MemRealloc(void *pPrior, int nByte){
311 struct MemBlockHdr *pOldHdr;
313 assert( mem.disallow==0 );
314 pOldHdr = sqlite3MemsysGetHeader(pPrior);
315 pNew = sqlite3MemMalloc(nByte);
317 memcpy(pNew, pPrior, nByte<pOldHdr->iSize ? nByte : pOldHdr->iSize);
318 if( nByte>pOldHdr->iSize ){
319 memset(&((char*)pNew)[pOldHdr->iSize], 0x2b, nByte - pOldHdr->iSize);
321 sqlite3MemFree(pPrior);
327 const sqlite3_mem_methods *sqlite3MemGetDefault(void){
328 static const sqlite3_mem_methods defaultMethods = {
338 return &defaultMethods;
342 ** Populate the low-level memory allocation function pointers in
343 ** sqlite3Config.m with pointers to the routines in this file.
345 void sqlite3MemSetDefault(void){
346 sqlite3_config(SQLITE_CONFIG_MALLOC, sqlite3MemGetDefault());
350 ** Set the number of backtrace levels kept for each allocation.
351 ** A value of zero turns off backtracing. The number is always rounded
352 ** up to a multiple of 2.
354 void sqlite3MemdebugBacktrace(int depth){
355 if( depth<0 ){ depth = 0; }
356 if( depth>20 ){ depth = 20; }
357 depth = (depth+1)&0xfe;
358 mem.nBacktrace = depth;
361 void sqlite3MemdebugBacktraceCallback(void (*xBacktrace)(int, int, void **)){
362 mem.xBacktrace = xBacktrace;
366 ** Set the title string for subsequent allocations.
368 void sqlite3MemdebugSettitle(const char *zTitle){
369 int n = strlen(zTitle) + 1;
370 sqlite3_mutex_enter(mem.mutex);
371 if( n>=sizeof(mem.zTitle) ) n = sizeof(mem.zTitle)-1;
372 memcpy(mem.zTitle, zTitle, n);
374 mem.nTitle = (n+7)&~7;
375 sqlite3_mutex_leave(mem.mutex);
378 void sqlite3MemdebugSync(){
379 struct MemBlockHdr *pHdr;
380 for(pHdr=mem.pFirst; pHdr; pHdr=pHdr->pNext){
381 void **pBt = (void**)pHdr;
382 pBt -= pHdr->nBacktraceSlots;
383 mem.xBacktrace(pHdr->iSize, pHdr->nBacktrace-1, &pBt[1]);
388 ** Open the file indicated and write a log of all unfreed memory
389 ** allocations into that log.
391 void sqlite3MemdebugDump(const char *zFilename){
393 struct MemBlockHdr *pHdr;
396 out = fopen(zFilename, "w");
398 fprintf(stderr, "** Unable to output memory debug output log: %s **\n",
402 for(pHdr=mem.pFirst; pHdr; pHdr=pHdr->pNext){
403 char *z = (char*)pHdr;
404 z -= pHdr->nBacktraceSlots*sizeof(void*) + pHdr->nTitle;
405 fprintf(out, "**** %lld bytes at %p from %s ****\n",
406 pHdr->iSize, &pHdr[1], pHdr->nTitle ? z : "???");
407 if( pHdr->nBacktrace ){
410 pBt -= pHdr->nBacktraceSlots;
411 backtrace_symbols_fd(pBt, pHdr->nBacktrace, fileno(out));
415 fprintf(out, "COUNTS:\n");
416 for(i=0; i<NCSIZE-1; i++){
418 fprintf(out, " %5d: %10d %10d %10d\n",
419 i*8, mem.nAlloc[i], mem.nCurrent[i], mem.mxCurrent[i]);
422 if( mem.nAlloc[NCSIZE-1] ){
423 fprintf(out, " %5d: %10d %10d %10d\n",
424 NCSIZE*8-8, mem.nAlloc[NCSIZE-1],
425 mem.nCurrent[NCSIZE-1], mem.mxCurrent[NCSIZE-1]);
431 ** Return the number of times sqlite3MemMalloc() has been called.
433 int sqlite3MemdebugMallocCount(){
436 for(i=0; i<NCSIZE; i++){
437 nTotal += mem.nAlloc[i];
443 #endif /* SQLITE_MEMDEBUG */