1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sqlite3api/SQLite/mem2.c Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,463 @@
1.4 +/*
1.5 +** 2007 August 15
1.6 +**
1.7 +** Portions Copyright (c) 2008 Nokia Corporation and/or its subsidiaries. All rights reserved.
1.8 +**
1.9 +** The author disclaims copyright to this source code. In place of
1.10 +** a legal notice, here is a blessing:
1.11 +**
1.12 +** May you do good and not evil.
1.13 +** May you find forgiveness for yourself and forgive others.
1.14 +** May you share freely, never taking more than you give.
1.15 +**
1.16 +*************************************************************************
1.17 +**
1.18 +** This file contains low-level memory allocation drivers for when
1.19 +** SQLite will use the standard C-library malloc/realloc/free interface
1.20 +** to obtain the memory it needs while adding lots of additional debugging
1.21 +** information to each allocation in order to help detect and fix memory
1.22 +** leaks and memory usage errors.
1.23 +**
1.24 +** This file contains implementations of the low-level memory allocation
1.25 +** routines specified in the sqlite3_mem_methods object.
1.26 +**
1.27 +** $Id: mem2.c,v 1.39 2008/09/01 18:34:20 danielk1977 Exp $
1.28 +*/
1.29 +#include "sqliteInt.h"
1.30 +
1.31 +/*
1.32 +** This version of the memory allocator is used only if the
1.33 +** SQLITE_MEMDEBUG macro is defined
1.34 +*/
1.35 +#ifdef SQLITE_MEMDEBUG
1.36 +
1.37 +/*
1.38 +** The backtrace functionality is only available with GLIBC
1.39 +*/
1.40 +#ifdef __GLIBC__
1.41 + extern int backtrace(void**,int);
1.42 + extern void backtrace_symbols_fd(void*const*,int,int);
1.43 +#else
1.44 +# define backtrace(A,B) 1
1.45 +# define backtrace_symbols_fd(A,B,C)
1.46 +#endif
1.47 +#include <stdio.h>
1.48 +
1.49 +/*
1.50 +** Each memory allocation looks like this:
1.51 +**
1.52 +** ------------------------------------------------------------------------
1.53 +** | Title | backtrace pointers | MemBlockHdr | allocation | EndGuard |
1.54 +** ------------------------------------------------------------------------
1.55 +**
1.56 +** The application code sees only a pointer to the allocation. We have
1.57 +** to back up from the allocation pointer to find the MemBlockHdr. The
1.58 +** MemBlockHdr tells us the size of the allocation and the number of
1.59 +** backtrace pointers. There is also a guard word at the end of the
1.60 +** MemBlockHdr.
1.61 +*/
1.62 +struct MemBlockHdr {
1.63 + i64 iSize; /* Size of this allocation */
1.64 + struct MemBlockHdr *pNext, *pPrev; /* Linked list of all unfreed memory */
1.65 + char nBacktrace; /* Number of backtraces on this alloc */
1.66 + char nBacktraceSlots; /* Available backtrace slots */
1.67 + short nTitle; /* Bytes of title; includes '\0' */
1.68 + int iForeGuard; /* Guard word for sanity */
1.69 +};
1.70 +
1.71 +/*
1.72 +** Guard words
1.73 +*/
1.74 +#define FOREGUARD 0x80F5E153
1.75 +#define REARGUARD 0xE4676B53
1.76 +
1.77 +/*
1.78 +** Number of malloc size increments to track.
1.79 +*/
1.80 +#define NCSIZE 1000
1.81 +
1.82 +/*
1.83 +** All of the static variables used by this module are collected
1.84 +** into a single structure named "mem". This is to keep the
1.85 +** static variables organized and to reduce namespace pollution
1.86 +** when this module is combined with other in the amalgamation.
1.87 +*/
1.88 +static struct {
1.89 +
1.90 + /*
1.91 + ** Mutex to control access to the memory allocation subsystem.
1.92 + */
1.93 + sqlite3_mutex *mutex;
1.94 +
1.95 + /*
1.96 + ** Head and tail of a linked list of all outstanding allocations
1.97 + */
1.98 + struct MemBlockHdr *pFirst;
1.99 + struct MemBlockHdr *pLast;
1.100 +
1.101 + /*
1.102 + ** The number of levels of backtrace to save in new allocations.
1.103 + */
1.104 + int nBacktrace;
1.105 + void (*xBacktrace)(int, int, void **);
1.106 +
1.107 + /*
1.108 + ** Title text to insert in front of each block
1.109 + */
1.110 + int nTitle; /* Bytes of zTitle to save. Includes '\0' and padding */
1.111 + char zTitle[100]; /* The title text */
1.112 +
1.113 + /*
1.114 + ** sqlite3MallocDisallow() increments the following counter.
1.115 + ** sqlite3MallocAllow() decrements it.
1.116 + */
1.117 + int disallow; /* Do not allow memory allocation */
1.118 +
1.119 + /*
1.120 + ** Gather statistics on the sizes of memory allocations.
1.121 + ** nAlloc[i] is the number of allocation attempts of i*8
1.122 + ** bytes. i==NCSIZE is the number of allocation attempts for
1.123 + ** sizes more than NCSIZE*8 bytes.
1.124 + */
1.125 + int nAlloc[NCSIZE]; /* Total number of allocations */
1.126 + int nCurrent[NCSIZE]; /* Current number of allocations */
1.127 + int mxCurrent[NCSIZE]; /* Highwater mark for nCurrent */
1.128 +
1.129 +} mem;
1.130 +
1.131 +
1.132 +/*
1.133 +** Adjust memory usage statistics
1.134 +*/
1.135 +static void adjustStats(int iSize, int increment){
1.136 + int i = ((iSize+7)&~7)/8;
1.137 + if( i>NCSIZE-1 ){
1.138 + i = NCSIZE - 1;
1.139 + }
1.140 + if( increment>0 ){
1.141 + mem.nAlloc[i]++;
1.142 + mem.nCurrent[i]++;
1.143 + if( mem.nCurrent[i]>mem.mxCurrent[i] ){
1.144 + mem.mxCurrent[i] = mem.nCurrent[i];
1.145 + }
1.146 + }else{
1.147 + mem.nCurrent[i]--;
1.148 + assert( mem.nCurrent[i]>=0 );
1.149 + }
1.150 +}
1.151 +
1.152 +/*
1.153 +** Given an allocation, find the MemBlockHdr for that allocation.
1.154 +**
1.155 +** This routine checks the guards at either end of the allocation and
1.156 +** if they are incorrect it asserts.
1.157 +*/
1.158 +static struct MemBlockHdr *sqlite3MemsysGetHeader(void *pAllocation){
1.159 + struct MemBlockHdr *p;
1.160 + int *pInt;
1.161 + u8 *pU8;
1.162 + int nReserve;
1.163 +
1.164 + p = (struct MemBlockHdr*)pAllocation;
1.165 + p--;
1.166 + assert( p->iForeGuard==FOREGUARD );
1.167 + nReserve = (p->iSize+7)&~7;
1.168 + pInt = (int*)pAllocation;
1.169 + pU8 = (u8*)pAllocation;
1.170 + assert( pInt[nReserve/sizeof(int)]==REARGUARD );
1.171 + assert( (nReserve-0)<=p->iSize || pU8[nReserve-1]==0x65 );
1.172 + assert( (nReserve-1)<=p->iSize || pU8[nReserve-2]==0x65 );
1.173 + assert( (nReserve-2)<=p->iSize || pU8[nReserve-3]==0x65 );
1.174 + return p;
1.175 +}
1.176 +
1.177 +/*
1.178 +** Return the number of bytes currently allocated at address p.
1.179 +*/
1.180 +static int sqlite3MemSize(void *p){
1.181 + struct MemBlockHdr *pHdr;
1.182 + if( !p ){
1.183 + return 0;
1.184 + }
1.185 + pHdr = sqlite3MemsysGetHeader(p);
1.186 + return pHdr->iSize;
1.187 +}
1.188 +
1.189 +/*
1.190 +** Initialize the memory allocation subsystem.
1.191 +*/
1.192 +static int sqlite3MemInit(void *NotUsed){
1.193 + if( !sqlite3GlobalConfig.bMemstat ){
1.194 + /* If memory status is enabled, then the malloc.c wrapper will already
1.195 + ** hold the STATIC_MEM mutex when the routines here are invoked. */
1.196 + mem.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM);
1.197 + }
1.198 + return SQLITE_OK;
1.199 +}
1.200 +
1.201 +/*
1.202 +** Deinitialize the memory allocation subsystem.
1.203 +*/
1.204 +static void sqlite3MemShutdown(void *NotUsed){
1.205 + mem.mutex = 0;
1.206 +}
1.207 +
1.208 +/*
1.209 +** Round up a request size to the next valid allocation size.
1.210 +*/
1.211 +static int sqlite3MemRoundup(int n){
1.212 + return (n+7) & ~7;
1.213 +}
1.214 +
1.215 +/*
1.216 +** Allocate nByte bytes of memory.
1.217 +*/
1.218 +static void *sqlite3MemMalloc(int nByte){
1.219 + struct MemBlockHdr *pHdr;
1.220 + void **pBt;
1.221 + char *z;
1.222 + int *pInt;
1.223 + void *p = 0;
1.224 + int totalSize;
1.225 + int nReserve;
1.226 + sqlite3_mutex_enter(mem.mutex);
1.227 + assert( mem.disallow==0 );
1.228 + nReserve = (nByte+7)&~7;
1.229 + totalSize = nReserve + sizeof(*pHdr) + sizeof(int) +
1.230 + mem.nBacktrace*sizeof(void*) + mem.nTitle;
1.231 + p = malloc(totalSize);
1.232 + if( p ){
1.233 + z = p;
1.234 + pBt = (void**)&z[mem.nTitle];
1.235 + pHdr = (struct MemBlockHdr*)&pBt[mem.nBacktrace];
1.236 + pHdr->pNext = 0;
1.237 + pHdr->pPrev = mem.pLast;
1.238 + if( mem.pLast ){
1.239 + mem.pLast->pNext = pHdr;
1.240 + }else{
1.241 + mem.pFirst = pHdr;
1.242 + }
1.243 + mem.pLast = pHdr;
1.244 + pHdr->iForeGuard = FOREGUARD;
1.245 + pHdr->nBacktraceSlots = mem.nBacktrace;
1.246 + pHdr->nTitle = mem.nTitle;
1.247 + if( mem.nBacktrace ){
1.248 + void *aAddr[40];
1.249 + pHdr->nBacktrace = backtrace(aAddr, mem.nBacktrace+1)-1;
1.250 + memcpy(pBt, &aAddr[1], pHdr->nBacktrace*sizeof(void*));
1.251 + if( mem.xBacktrace ){
1.252 + mem.xBacktrace(nByte, pHdr->nBacktrace-1, &aAddr[1]);
1.253 + }
1.254 + }else{
1.255 + pHdr->nBacktrace = 0;
1.256 + }
1.257 + if( mem.nTitle ){
1.258 + memcpy(z, mem.zTitle, mem.nTitle);
1.259 + }
1.260 + pHdr->iSize = nByte;
1.261 + adjustStats(nByte, +1);
1.262 + pInt = (int*)&pHdr[1];
1.263 + pInt[nReserve/sizeof(int)] = REARGUARD;
1.264 + memset(pInt, 0x65, nReserve);
1.265 + p = (void*)pInt;
1.266 + }
1.267 + sqlite3_mutex_leave(mem.mutex);
1.268 + return p;
1.269 +}
1.270 +
1.271 +/*
1.272 +** Free memory.
1.273 +*/
1.274 +static void sqlite3MemFree(void *pPrior){
1.275 + struct MemBlockHdr *pHdr;
1.276 + void **pBt;
1.277 + char *z;
1.278 + assert( sqlite3GlobalConfig.bMemstat || mem.mutex!=0 );
1.279 + pHdr = sqlite3MemsysGetHeader(pPrior);
1.280 + pBt = (void**)pHdr;
1.281 + pBt -= pHdr->nBacktraceSlots;
1.282 + sqlite3_mutex_enter(mem.mutex);
1.283 + if( pHdr->pPrev ){
1.284 + assert( pHdr->pPrev->pNext==pHdr );
1.285 + pHdr->pPrev->pNext = pHdr->pNext;
1.286 + }else{
1.287 + assert( mem.pFirst==pHdr );
1.288 + mem.pFirst = pHdr->pNext;
1.289 + }
1.290 + if( pHdr->pNext ){
1.291 + assert( pHdr->pNext->pPrev==pHdr );
1.292 + pHdr->pNext->pPrev = pHdr->pPrev;
1.293 + }else{
1.294 + assert( mem.pLast==pHdr );
1.295 + mem.pLast = pHdr->pPrev;
1.296 + }
1.297 + z = (char*)pBt;
1.298 + z -= pHdr->nTitle;
1.299 + adjustStats(pHdr->iSize, -1);
1.300 + memset(z, 0x2b, sizeof(void*)*pHdr->nBacktraceSlots + sizeof(*pHdr) +
1.301 + pHdr->iSize + sizeof(int) + pHdr->nTitle);
1.302 + free(z);
1.303 + sqlite3_mutex_leave(mem.mutex);
1.304 +}
1.305 +
1.306 +/*
1.307 +** Change the size of an existing memory allocation.
1.308 +**
1.309 +** For this debugging implementation, we *always* make a copy of the
1.310 +** allocation into a new place in memory. In this way, if the
1.311 +** higher level code is using pointer to the old allocation, it is
1.312 +** much more likely to break and we are much more liking to find
1.313 +** the error.
1.314 +*/
1.315 +static void *sqlite3MemRealloc(void *pPrior, int nByte){
1.316 + struct MemBlockHdr *pOldHdr;
1.317 + void *pNew;
1.318 + assert( mem.disallow==0 );
1.319 + pOldHdr = sqlite3MemsysGetHeader(pPrior);
1.320 + pNew = sqlite3MemMalloc(nByte);
1.321 + if( pNew ){
1.322 + memcpy(pNew, pPrior, nByte<pOldHdr->iSize ? nByte : pOldHdr->iSize);
1.323 + if( nByte>pOldHdr->iSize ){
1.324 + memset(&((char*)pNew)[pOldHdr->iSize], 0x2b, nByte - pOldHdr->iSize);
1.325 + }
1.326 + sqlite3MemFree(pPrior);
1.327 + }
1.328 + return pNew;
1.329 +}
1.330 +
1.331 +
1.332 +const sqlite3_mem_methods *sqlite3MemGetDefault(void){
1.333 + static const sqlite3_mem_methods defaultMethods = {
1.334 + sqlite3MemMalloc,
1.335 + sqlite3MemFree,
1.336 + sqlite3MemRealloc,
1.337 + sqlite3MemSize,
1.338 + sqlite3MemRoundup,
1.339 + sqlite3MemInit,
1.340 + sqlite3MemShutdown,
1.341 + 0
1.342 + };
1.343 + return &defaultMethods;
1.344 +}
1.345 +
1.346 +/*
1.347 +** Populate the low-level memory allocation function pointers in
1.348 +** sqlite3GlobalConfig.m with pointers to the routines in this file.
1.349 +*/
1.350 +void sqlite3MemSetDefault(void){
1.351 + sqlite3_config(SQLITE_CONFIG_MALLOC, sqlite3MemGetDefault());
1.352 +}
1.353 +
1.354 +/*
1.355 +** Set the number of backtrace levels kept for each allocation.
1.356 +** A value of zero turns off backtracing. The number is always rounded
1.357 +** up to a multiple of 2.
1.358 +*/
1.359 +void sqlite3MemdebugBacktrace(int depth){
1.360 + if( depth<0 ){ depth = 0; }
1.361 + if( depth>20 ){ depth = 20; }
1.362 + depth = (depth+1)&0xfe;
1.363 + mem.nBacktrace = depth;
1.364 +}
1.365 +
1.366 +void sqlite3MemdebugBacktraceCallback(void (*xBacktrace)(int, int, void **)){
1.367 + mem.xBacktrace = xBacktrace;
1.368 +}
1.369 +
1.370 +/*
1.371 +** Set the title string for subsequent allocations.
1.372 +*/
1.373 +void sqlite3MemdebugSettitle(const char *zTitle){
1.374 + int n = strlen(zTitle) + 1;
1.375 + sqlite3_mutex_enter(mem.mutex);
1.376 + if( n>=sizeof(mem.zTitle) ) n = sizeof(mem.zTitle)-1;
1.377 + memcpy(mem.zTitle, zTitle, n);
1.378 + mem.zTitle[n] = 0;
1.379 + mem.nTitle = (n+7)&~7;
1.380 + sqlite3_mutex_leave(mem.mutex);
1.381 +}
1.382 +
1.383 +void sqlite3MemdebugSync(){
1.384 + struct MemBlockHdr *pHdr;
1.385 + for(pHdr=mem.pFirst; pHdr; pHdr=pHdr->pNext){
1.386 + void **pBt = (void**)pHdr;
1.387 + pBt -= pHdr->nBacktraceSlots;
1.388 + mem.xBacktrace(pHdr->iSize, pHdr->nBacktrace-1, &pBt[1]);
1.389 + }
1.390 +}
1.391 +
1.392 +/*
1.393 +** Open the file indicated and write a log of all unfreed memory
1.394 +** allocations into that log.
1.395 +*/
1.396 +void sqlite3MemdebugDump(const char *zFilename){
1.397 + FILE *out;
1.398 + struct MemBlockHdr *pHdr;
1.399 + void **pBt;
1.400 + int i;
1.401 + char buf[300];
1.402 + int memLeakFile = strstr(zFilename, "memleak.txt") != 0;
1.403 + out = fopen(zFilename, "w");
1.404 + if( out==0 ){
1.405 + sprintf(buf, "** Unable to output memory debug output log: %s **\n", zFilename);
1.406 + fprintf(stderr, buf);
1.407 + return;
1.408 + }
1.409 + sprintf(buf, "\n**** memory dump begin ****\n");
1.410 + if(memLeakFile)
1.411 + printf(buf);
1.412 + fprintf(out, buf);
1.413 + for(pHdr=mem.pFirst; pHdr; pHdr=pHdr->pNext){
1.414 + char *z = (char*)pHdr;
1.415 + z -= pHdr->nBacktraceSlots*sizeof(void*) + pHdr->nTitle;
1.416 + sprintf(buf, "**** %lld bytes at %p from %s ****\n", pHdr->iSize, &pHdr[1], pHdr->nTitle ? z : "???");
1.417 + if(memLeakFile)
1.418 + printf(buf);
1.419 + fprintf(out, buf);
1.420 + if( pHdr->nBacktrace ){
1.421 + fflush(out);
1.422 + pBt = (void**)pHdr;
1.423 + pBt -= pHdr->nBacktraceSlots;
1.424 + backtrace_symbols_fd(pBt, pHdr->nBacktrace, fileno(out));
1.425 + fprintf(out, "\n");
1.426 + }
1.427 + }
1.428 + sprintf(buf, "COUNTS:\n");
1.429 + if(memLeakFile)
1.430 + printf(buf);
1.431 + fprintf(out, buf);
1.432 + for(i=0; i<NCSIZE-1; i++){
1.433 + if( mem.nAlloc[i] ){
1.434 + sprintf(buf, " %5d: %10d %10d %10d\n", i*8, mem.nAlloc[i], mem.nCurrent[i], mem.mxCurrent[i]);
1.435 + if(memLeakFile)
1.436 + printf(buf);
1.437 + fprintf(out, buf);
1.438 + }
1.439 + }
1.440 + if( mem.nAlloc[NCSIZE-1] ){
1.441 + sprintf(buf, " %5d: %10d %10d %10d\n", NCSIZE*8-8, mem.nAlloc[NCSIZE-1], mem.nCurrent[NCSIZE-1], mem.mxCurrent[NCSIZE-1]);
1.442 + if(memLeakFile)
1.443 + printf(buf);
1.444 + fprintf(out, buf);
1.445 + }
1.446 + sprintf(buf, "**** memory dump end ****\n");
1.447 + if(memLeakFile)
1.448 + printf(buf);
1.449 + fprintf(out, buf);
1.450 + fclose(out);
1.451 +}
1.452 +
1.453 +/*
1.454 +** Return the number of times sqlite3MemMalloc() has been called.
1.455 +*/
1.456 +int sqlite3MemdebugMallocCount(){
1.457 + int i;
1.458 + int nTotal = 0;
1.459 + for(i=0; i<NCSIZE; i++){
1.460 + nTotal += mem.nAlloc[i];
1.461 + }
1.462 + return nTotal;
1.463 +}
1.464 +
1.465 +
1.466 +#endif /* SQLITE_MEMDEBUG */