1a3152895Sdrh /* 2a3152895Sdrh ** 2001 September 15 3a3152895Sdrh ** 4a3152895Sdrh ** The author disclaims copyright to this source code. In place of 5a3152895Sdrh ** a legal notice, here is a blessing: 6a3152895Sdrh ** 7a3152895Sdrh ** May you do good and not evil. 8a3152895Sdrh ** May you find forgiveness for yourself and forgive others. 9a3152895Sdrh ** May you share freely, never taking more than you give. 10a3152895Sdrh ** 11a3152895Sdrh ************************************************************************* 12fec00eabSdrh ** 13a3152895Sdrh ** Memory allocation functions used throughout sqlite. 14a3152895Sdrh */ 15a3152895Sdrh #include "sqliteInt.h" 16a3152895Sdrh #include <stdarg.h> 17a3152895Sdrh 18a3152895Sdrh /* 198468024dSdanielk1977 ** Attempt to release up to n bytes of non-essential memory currently 208468024dSdanielk1977 ** held by SQLite. An example of non-essential memory is memory used to 218468024dSdanielk1977 ** cache database pages that are not currently in use. 22a3152895Sdrh */ 23a3152895Sdrh int sqlite3_release_memory(int n){ 2486f8c197Sdrh #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT 259f129f46Sdrh return sqlite3PcacheReleaseMemory(n); 261e536953Sdanielk1977 #else 279f129f46Sdrh /* IMPLEMENTATION-OF: R-34391-24921 The sqlite3_release_memory() routine 289f129f46Sdrh ** is a no-op returning zero if SQLite is not compiled with 299f129f46Sdrh ** SQLITE_ENABLE_MEMORY_MANAGEMENT. */ 3062c14b34Sdanielk1977 UNUSED_PARAMETER(n); 319f129f46Sdrh return 0; 321e536953Sdanielk1977 #endif 33a3152895Sdrh } 34a3152895Sdrh 35fec00eabSdrh /* 36badc980aSdrh ** An instance of the following object records the location of 37badc980aSdrh ** each unused scratch buffer. 38badc980aSdrh */ 39badc980aSdrh typedef struct ScratchFreeslot { 40badc980aSdrh struct ScratchFreeslot *pNext; /* Next unused scratch buffer */ 41badc980aSdrh } ScratchFreeslot; 42badc980aSdrh 43badc980aSdrh /* 44fec00eabSdrh ** State information local to the memory allocation subsystem. 45fec00eabSdrh */ 465c8f8587Sdanielk1977 static SQLITE_WSD struct Mem0Global { 47fec00eabSdrh sqlite3_mutex *mutex; /* Mutex to serialize access */ 484ef299a3Sdrh sqlite3_int64 alarmThreshold; /* The soft heap limit */ 49fec00eabSdrh 50fec00eabSdrh /* 51badc980aSdrh ** Pointers to the end of sqlite3GlobalConfig.pScratch memory 52badc980aSdrh ** (so that a range test can be used to determine if an allocation 53badc980aSdrh ** being freed came from pScratch) and a pointer to the list of 54badc980aSdrh ** unused scratch allocations. 559ac3fe97Sdrh */ 56badc980aSdrh void *pScratchEnd; 57badc980aSdrh ScratchFreeslot *pScratchFree; 58badc980aSdrh u32 nScratchFree; 5950d1b5f3Sdrh 6050d1b5f3Sdrh /* 6150d1b5f3Sdrh ** True if heap is nearly "full" where "full" is defined by the 6250d1b5f3Sdrh ** sqlite3_soft_heap_limit() setting. 6350d1b5f3Sdrh */ 6450d1b5f3Sdrh int nearlyFull; 654ef299a3Sdrh } mem0 = { 0, 0, 0, 0, 0, 0 }; 665c8f8587Sdanielk1977 675c8f8587Sdanielk1977 #define mem0 GLOBAL(struct Mem0Global, mem0) 68fec00eabSdrh 69fec00eabSdrh /* 70af89fe66Sdrh ** Return the memory allocator mutex. sqlite3_status() needs it. 71af89fe66Sdrh */ 72af89fe66Sdrh sqlite3_mutex *sqlite3MallocMutex(void){ 73af89fe66Sdrh return mem0.mutex; 74af89fe66Sdrh } 75af89fe66Sdrh 76f82ccf64Sdrh #ifndef SQLITE_OMIT_DEPRECATED 77f82ccf64Sdrh /* 785fb72e5fSdrh ** Deprecated external interface. It used to set an alarm callback 795fb72e5fSdrh ** that was invoked when memory usage grew too large. Now it is a 805fb72e5fSdrh ** no-op. 81f82ccf64Sdrh */ 82f82ccf64Sdrh int sqlite3_memory_alarm( 83f82ccf64Sdrh void(*xCallback)(void *pArg, sqlite3_int64 used,int N), 84f82ccf64Sdrh void *pArg, 85f82ccf64Sdrh sqlite3_int64 iThreshold 86f82ccf64Sdrh ){ 875fb72e5fSdrh (void)xCallback; 885fb72e5fSdrh (void)pArg; 895fb72e5fSdrh (void)iThreshold; 904ef299a3Sdrh return SQLITE_OK; 91f82ccf64Sdrh } 92f82ccf64Sdrh #endif 93f82ccf64Sdrh 94f82ccf64Sdrh /* 95f82ccf64Sdrh ** Set the soft heap-size limit for the library. Passing a zero or 96f82ccf64Sdrh ** negative value indicates no limit. 97f82ccf64Sdrh */ 98f82ccf64Sdrh sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 n){ 99f82ccf64Sdrh sqlite3_int64 priorLimit; 1005fb72e5fSdrh sqlite3_int64 excess; 1015fb72e5fSdrh sqlite3_int64 nUsed; 102f82ccf64Sdrh #ifndef SQLITE_OMIT_AUTOINIT 103de0f1815Sdrh int rc = sqlite3_initialize(); 104de0f1815Sdrh if( rc ) return -1; 105f82ccf64Sdrh #endif 106f82ccf64Sdrh sqlite3_mutex_enter(mem0.mutex); 107f82ccf64Sdrh priorLimit = mem0.alarmThreshold; 1085fb72e5fSdrh if( n<0 ){ 1094ef299a3Sdrh sqlite3_mutex_leave(mem0.mutex); 110f82ccf64Sdrh return priorLimit; 111f82ccf64Sdrh } 1125fb72e5fSdrh mem0.alarmThreshold = n; 1135fb72e5fSdrh nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); 1145fb72e5fSdrh mem0.nearlyFull = (n>0 && n<=nUsed); 1155fb72e5fSdrh sqlite3_mutex_leave(mem0.mutex); 1165fb72e5fSdrh excess = sqlite3_memory_used() - n; 1175fb72e5fSdrh if( excess>0 ) sqlite3_release_memory((int)(excess & 0x7fffffff)); 1185fb72e5fSdrh return priorLimit; 1195fb72e5fSdrh } 120f82ccf64Sdrh void sqlite3_soft_heap_limit(int n){ 121f82ccf64Sdrh if( n<0 ) n = 0; 122f82ccf64Sdrh sqlite3_soft_heap_limit64(n); 123f82ccf64Sdrh } 124f82ccf64Sdrh 125f82ccf64Sdrh /* 126fec00eabSdrh ** Initialize the memory allocation subsystem. 127fec00eabSdrh */ 128fec00eabSdrh int sqlite3MallocInit(void){ 129592f0cb1Sdrh int rc; 130075c23afSdanielk1977 if( sqlite3GlobalConfig.m.xMalloc==0 ){ 131fec00eabSdrh sqlite3MemSetDefault(); 132fec00eabSdrh } 133fec00eabSdrh memset(&mem0, 0, sizeof(mem0)); 13459f8c08eSdanielk1977 mem0.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM); 135075c23afSdanielk1977 if( sqlite3GlobalConfig.pScratch && sqlite3GlobalConfig.szScratch>=100 1367ff2719eSdrh && sqlite3GlobalConfig.nScratch>0 ){ 137badc980aSdrh int i, n, sz; 138badc980aSdrh ScratchFreeslot *pSlot; 139badc980aSdrh sz = ROUNDDOWN8(sqlite3GlobalConfig.szScratch); 140badc980aSdrh sqlite3GlobalConfig.szScratch = sz; 141badc980aSdrh pSlot = (ScratchFreeslot*)sqlite3GlobalConfig.pScratch; 142badc980aSdrh n = sqlite3GlobalConfig.nScratch; 143badc980aSdrh mem0.pScratchFree = pSlot; 144badc980aSdrh mem0.nScratchFree = n; 145badc980aSdrh for(i=0; i<n-1; i++){ 146badc980aSdrh pSlot->pNext = (ScratchFreeslot*)(sz+(char*)pSlot); 147badc980aSdrh pSlot = pSlot->pNext; 148badc980aSdrh } 149badc980aSdrh pSlot->pNext = 0; 150badc980aSdrh mem0.pScratchEnd = (void*)&pSlot[1]; 1519ac3fe97Sdrh }else{ 152badc980aSdrh mem0.pScratchEnd = 0; 153075c23afSdanielk1977 sqlite3GlobalConfig.pScratch = 0; 154075c23afSdanielk1977 sqlite3GlobalConfig.szScratch = 0; 155badc980aSdrh sqlite3GlobalConfig.nScratch = 0; 1569ac3fe97Sdrh } 15750d1b5f3Sdrh if( sqlite3GlobalConfig.pPage==0 || sqlite3GlobalConfig.szPage<512 15801c5c00cSdrh || sqlite3GlobalConfig.nPage<=0 ){ 159075c23afSdanielk1977 sqlite3GlobalConfig.pPage = 0; 160075c23afSdanielk1977 sqlite3GlobalConfig.szPage = 0; 1619ac3fe97Sdrh } 162592f0cb1Sdrh rc = sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData); 163592f0cb1Sdrh if( rc!=SQLITE_OK ) memset(&mem0, 0, sizeof(mem0)); 164592f0cb1Sdrh return rc; 165fec00eabSdrh } 166fec00eabSdrh 167fec00eabSdrh /* 16850d1b5f3Sdrh ** Return true if the heap is currently under memory pressure - in other 16950d1b5f3Sdrh ** words if the amount of heap used is close to the limit set by 17050d1b5f3Sdrh ** sqlite3_soft_heap_limit(). 17150d1b5f3Sdrh */ 17250d1b5f3Sdrh int sqlite3HeapNearlyFull(void){ 17350d1b5f3Sdrh return mem0.nearlyFull; 17450d1b5f3Sdrh } 17550d1b5f3Sdrh 17650d1b5f3Sdrh /* 177fec00eabSdrh ** Deinitialize the memory allocation subsystem. 178fec00eabSdrh */ 179fec00eabSdrh void sqlite3MallocEnd(void){ 1800a549071Sdanielk1977 if( sqlite3GlobalConfig.m.xShutdown ){ 181075c23afSdanielk1977 sqlite3GlobalConfig.m.xShutdown(sqlite3GlobalConfig.m.pAppData); 1820a549071Sdanielk1977 } 1839ac3fe97Sdrh memset(&mem0, 0, sizeof(mem0)); 184fec00eabSdrh } 185fec00eabSdrh 186fec00eabSdrh /* 187fec00eabSdrh ** Return the amount of memory currently checked out. 188fec00eabSdrh */ 189fec00eabSdrh sqlite3_int64 sqlite3_memory_used(void){ 190df5e1a00Sdrh sqlite3_int64 res, mx; 191df5e1a00Sdrh sqlite3_status64(SQLITE_STATUS_MEMORY_USED, &res, &mx, 0); 192c376a198Sdrh return res; 193fec00eabSdrh } 194fec00eabSdrh 195fec00eabSdrh /* 196fec00eabSdrh ** Return the maximum amount of memory that has ever been 197fec00eabSdrh ** checked out since either the beginning of this process 198fec00eabSdrh ** or since the most recent reset. 199fec00eabSdrh */ 200fec00eabSdrh sqlite3_int64 sqlite3_memory_highwater(int resetFlag){ 201df5e1a00Sdrh sqlite3_int64 res, mx; 202df5e1a00Sdrh sqlite3_status64(SQLITE_STATUS_MEMORY_USED, &res, &mx, resetFlag); 203df5e1a00Sdrh return mx; 204fec00eabSdrh } 205fec00eabSdrh 206fec00eabSdrh /* 2075fb72e5fSdrh ** Trigger the alarm 2085fb72e5fSdrh */ 2095fb72e5fSdrh static void sqlite3MallocAlarm(int nByte){ 2105fb72e5fSdrh if( mem0.alarmThreshold<=0 ) return; 2115fb72e5fSdrh sqlite3_mutex_leave(mem0.mutex); 2125fb72e5fSdrh sqlite3_release_memory(nByte); 2135fb72e5fSdrh sqlite3_mutex_enter(mem0.mutex); 2145fb72e5fSdrh } 2155fb72e5fSdrh 2165fb72e5fSdrh /* 217f7141990Sdrh ** Do a memory allocation with statistics and alarms. Assume the 218f7141990Sdrh ** lock is already held. 219fec00eabSdrh */ 220f7141990Sdrh static int mallocWithAlarm(int n, void **pp){ 221fec00eabSdrh int nFull; 222f7141990Sdrh void *p; 223f7141990Sdrh assert( sqlite3_mutex_held(mem0.mutex) ); 224075c23afSdanielk1977 nFull = sqlite3GlobalConfig.m.xRoundup(n); 225b02392e6Sdrh sqlite3StatusHighwater(SQLITE_STATUS_MALLOC_SIZE, n); 2265fb72e5fSdrh if( mem0.alarmThreshold>0 ){ 2275fb72e5fSdrh sqlite3_int64 nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); 2285fb72e5fSdrh if( nUsed >= mem0.alarmThreshold - nFull ){ 2295fb72e5fSdrh mem0.nearlyFull = 1; 2305fb72e5fSdrh sqlite3MallocAlarm(nFull); 2315fb72e5fSdrh }else{ 2325fb72e5fSdrh mem0.nearlyFull = 0; 2335fb72e5fSdrh } 2345fb72e5fSdrh } 235075c23afSdanielk1977 p = sqlite3GlobalConfig.m.xMalloc(nFull); 23650d1b5f3Sdrh #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT 2375fb72e5fSdrh if( p==0 && mem0.alarmThreshold>0 ){ 2385fb72e5fSdrh sqlite3MallocAlarm(nFull); 239075c23afSdanielk1977 p = sqlite3GlobalConfig.m.xMalloc(nFull); 240fec00eabSdrh } 24150d1b5f3Sdrh #endif 242c702c7ccSdrh if( p ){ 243c702c7ccSdrh nFull = sqlite3MallocSize(p); 244af89fe66Sdrh sqlite3StatusUp(SQLITE_STATUS_MEMORY_USED, nFull); 245af89fe66Sdrh sqlite3StatusUp(SQLITE_STATUS_MALLOC_COUNT, 1); 246c702c7ccSdrh } 247f7141990Sdrh *pp = p; 248f7141990Sdrh return nFull; 249fec00eabSdrh } 250f7141990Sdrh 251f7141990Sdrh /* 252f7141990Sdrh ** Allocate memory. This routine is like sqlite3_malloc() except that it 253f7141990Sdrh ** assumes the memory subsystem has already been initialized. 254f7141990Sdrh */ 255da4ca9d1Sdrh void *sqlite3Malloc(u64 n){ 256f7141990Sdrh void *p; 257da4ca9d1Sdrh if( n==0 || n>=0x7fffff00 ){ 258e08ed7e7Sdrh /* A memory allocation of a number of bytes which is near the maximum 259e08ed7e7Sdrh ** signed integer value might cause an integer overflow inside of the 260e08ed7e7Sdrh ** xMalloc(). Hence we limit the maximum size to 0x7fffff00, giving 261e08ed7e7Sdrh ** 255 bytes of overhead. SQLite itself will never use anything near 262e08ed7e7Sdrh ** this amount. The only way to reach the limit is with sqlite3_malloc() */ 263f7141990Sdrh p = 0; 264075c23afSdanielk1977 }else if( sqlite3GlobalConfig.bMemstat ){ 265f7141990Sdrh sqlite3_mutex_enter(mem0.mutex); 2663329a63aSdrh mallocWithAlarm((int)n, &p); 267fec00eabSdrh sqlite3_mutex_leave(mem0.mutex); 268fec00eabSdrh }else{ 269da4ca9d1Sdrh p = sqlite3GlobalConfig.m.xMalloc((int)n); 270fec00eabSdrh } 2718da47419Sdrh assert( EIGHT_BYTE_ALIGNMENT(p) ); /* IMP: R-11148-40995 */ 272fec00eabSdrh return p; 273fec00eabSdrh } 274fec00eabSdrh 275fec00eabSdrh /* 276fec00eabSdrh ** This version of the memory allocation is for use by the application. 277fec00eabSdrh ** First make sure the memory subsystem is initialized, then do the 278fec00eabSdrh ** allocation. 279fec00eabSdrh */ 280fec00eabSdrh void *sqlite3_malloc(int n){ 281fec00eabSdrh #ifndef SQLITE_OMIT_AUTOINIT 282fec00eabSdrh if( sqlite3_initialize() ) return 0; 283fec00eabSdrh #endif 284da4ca9d1Sdrh return n<=0 ? 0 : sqlite3Malloc(n); 285da4ca9d1Sdrh } 286da4ca9d1Sdrh void *sqlite3_malloc64(sqlite3_uint64 n){ 287da4ca9d1Sdrh #ifndef SQLITE_OMIT_AUTOINIT 288da4ca9d1Sdrh if( sqlite3_initialize() ) return 0; 289da4ca9d1Sdrh #endif 290fec00eabSdrh return sqlite3Malloc(n); 291fec00eabSdrh } 292fec00eabSdrh 293fec00eabSdrh /* 294e5ae5735Sdrh ** Each thread may only have a single outstanding allocation from 295facf0307Sdrh ** xScratchMalloc(). We verify this constraint in the single-threaded 296facf0307Sdrh ** case by setting scratchAllocOut to 1 when an allocation 297e5ae5735Sdrh ** is outstanding clearing it when the allocation is freed. 298e5ae5735Sdrh */ 299e5ae5735Sdrh #if SQLITE_THREADSAFE==0 && !defined(NDEBUG) 300facf0307Sdrh static int scratchAllocOut = 0; 301e5ae5735Sdrh #endif 302e5ae5735Sdrh 303e5ae5735Sdrh 304e5ae5735Sdrh /* 305e5ae5735Sdrh ** Allocate memory that is to be used and released right away. 306e5ae5735Sdrh ** This routine is similar to alloca() in that it is not intended 307e5ae5735Sdrh ** for situations where the memory might be held long-term. This 308e5ae5735Sdrh ** routine is intended to get memory to old large transient data 309e5ae5735Sdrh ** structures that would not normally fit on the stack of an 310e5ae5735Sdrh ** embedded processor. 311e5ae5735Sdrh */ 312facf0307Sdrh void *sqlite3ScratchMalloc(int n){ 313e5ae5735Sdrh void *p; 314e5ae5735Sdrh assert( n>0 ); 3159ac3fe97Sdrh 316badc980aSdrh sqlite3_mutex_enter(mem0.mutex); 317b02392e6Sdrh sqlite3StatusHighwater(SQLITE_STATUS_SCRATCH_SIZE, n); 318badc980aSdrh if( mem0.nScratchFree && sqlite3GlobalConfig.szScratch>=n ){ 319badc980aSdrh p = mem0.pScratchFree; 320badc980aSdrh mem0.pScratchFree = mem0.pScratchFree->pNext; 321badc980aSdrh mem0.nScratchFree--; 322af89fe66Sdrh sqlite3StatusUp(SQLITE_STATUS_SCRATCH_USED, 1); 323b0c6a888Sdan sqlite3_mutex_leave(mem0.mutex); 324badc980aSdrh }else{ 325b0c6a888Sdan sqlite3_mutex_leave(mem0.mutex); 3263ccd5bf8Sdrh p = sqlite3Malloc(n); 3273ccd5bf8Sdrh if( sqlite3GlobalConfig.bMemstat && p ){ 3283ccd5bf8Sdrh sqlite3_mutex_enter(mem0.mutex); 329af89fe66Sdrh sqlite3StatusUp(SQLITE_STATUS_SCRATCH_OVERFLOW, sqlite3MallocSize(p)); 3303ccd5bf8Sdrh sqlite3_mutex_leave(mem0.mutex); 331badc980aSdrh } 332badc980aSdrh sqlite3MemdebugSetType(p, MEMTYPE_SCRATCH); 333badc980aSdrh } 3341ff6e3abSdrh assert( sqlite3_mutex_notheld(mem0.mutex) ); 335b0c6a888Sdan 336badc980aSdrh 337badc980aSdrh #if SQLITE_THREADSAFE==0 && !defined(NDEBUG) 338cbd55b03Sdrh /* EVIDENCE-OF: R-12970-05880 SQLite will not use more than one scratch 339cbd55b03Sdrh ** buffers per thread. 340cbd55b03Sdrh ** 341cbd55b03Sdrh ** This can only be checked in single-threaded mode. 342cbd55b03Sdrh */ 343cbd55b03Sdrh assert( scratchAllocOut==0 ); 344badc980aSdrh if( p ) scratchAllocOut++; 345badc980aSdrh #endif 346badc980aSdrh 347badc980aSdrh return p; 348badc980aSdrh } 349badc980aSdrh void sqlite3ScratchFree(void *p){ 350badc980aSdrh if( p ){ 351badc980aSdrh 352e5ae5735Sdrh #if SQLITE_THREADSAFE==0 && !defined(NDEBUG) 35337f99187Sdrh /* Verify that no more than two scratch allocation per thread 3549ac3fe97Sdrh ** is outstanding at one time. (This is only checked in the 3559ac3fe97Sdrh ** single-threaded case since checking in the multi-threaded case 3569ac3fe97Sdrh ** would be much more complicated.) */ 357badc980aSdrh assert( scratchAllocOut>=1 && scratchAllocOut<=2 ); 358badc980aSdrh scratchAllocOut--; 359e5ae5735Sdrh #endif 3609ac3fe97Sdrh 361*ac536e61Sdrh if( SQLITE_WITHIN(p, sqlite3GlobalConfig.pScratch, mem0.pScratchEnd) ){ 362badc980aSdrh /* Release memory from the SQLITE_CONFIG_SCRATCH allocation */ 363badc980aSdrh ScratchFreeslot *pSlot; 364badc980aSdrh pSlot = (ScratchFreeslot*)p; 365e5ae5735Sdrh sqlite3_mutex_enter(mem0.mutex); 366badc980aSdrh pSlot->pNext = mem0.pScratchFree; 367badc980aSdrh mem0.pScratchFree = pSlot; 368badc980aSdrh mem0.nScratchFree++; 369fcd71b60Sdrh assert( mem0.nScratchFree <= (u32)sqlite3GlobalConfig.nScratch ); 370af89fe66Sdrh sqlite3StatusDown(SQLITE_STATUS_SCRATCH_USED, 1); 3719ac3fe97Sdrh sqlite3_mutex_leave(mem0.mutex); 372f7141990Sdrh }else{ 373badc980aSdrh /* Release memory back to the heap */ 374107b56e8Sdrh assert( sqlite3MemdebugHasType(p, MEMTYPE_SCRATCH) ); 375d425864dSmistachkin assert( sqlite3MemdebugNoType(p, (u8)~MEMTYPE_SCRATCH) ); 376107b56e8Sdrh sqlite3MemdebugSetType(p, MEMTYPE_HEAP); 377075c23afSdanielk1977 if( sqlite3GlobalConfig.bMemstat ){ 378f7141990Sdrh int iSize = sqlite3MallocSize(p); 379f7141990Sdrh sqlite3_mutex_enter(mem0.mutex); 380af89fe66Sdrh sqlite3StatusDown(SQLITE_STATUS_SCRATCH_OVERFLOW, iSize); 381af89fe66Sdrh sqlite3StatusDown(SQLITE_STATUS_MEMORY_USED, iSize); 382af89fe66Sdrh sqlite3StatusDown(SQLITE_STATUS_MALLOC_COUNT, 1); 383075c23afSdanielk1977 sqlite3GlobalConfig.m.xFree(p); 384f7141990Sdrh sqlite3_mutex_leave(mem0.mutex); 385f7141990Sdrh }else{ 386075c23afSdanielk1977 sqlite3GlobalConfig.m.xFree(p); 387f7141990Sdrh } 3889ac3fe97Sdrh } 389e5ae5735Sdrh } 390e5ae5735Sdrh } 391e5ae5735Sdrh 392e5ae5735Sdrh /* 393633e6d57Sdrh ** TRUE if p is a lookaside memory allocation from db 394633e6d57Sdrh */ 3954150ebf8Sdrh #ifndef SQLITE_OMIT_LOOKASIDE 396633e6d57Sdrh static int isLookaside(sqlite3 *db, void *p){ 397*ac536e61Sdrh return SQLITE_WITHIN(p, db->lookaside.pStart, db->lookaside.pEnd); 398633e6d57Sdrh } 3994150ebf8Sdrh #else 4004150ebf8Sdrh #define isLookaside(A,B) 0 4014150ebf8Sdrh #endif 402633e6d57Sdrh 403633e6d57Sdrh /* 404fec00eabSdrh ** Return the size of a memory allocation previously obtained from 405fec00eabSdrh ** sqlite3Malloc() or sqlite3_malloc(). 406fec00eabSdrh */ 407fec00eabSdrh int sqlite3MallocSize(void *p){ 408107b56e8Sdrh assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); 409075c23afSdanielk1977 return sqlite3GlobalConfig.m.xSize(p); 410fec00eabSdrh } 411633e6d57Sdrh int sqlite3DbMallocSize(sqlite3 *db, void *p){ 412039ca6abSdrh assert( p!=0 ); 413054bbabcSdrh if( db==0 || !isLookaside(db,p) ){ 414054bbabcSdrh #if SQLITE_DEBUG 41517bcb102Sdrh if( db==0 ){ 416d425864dSmistachkin assert( sqlite3MemdebugNoType(p, (u8)~MEMTYPE_HEAP) ); 417d231aa3aSdrh assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); 418633e6d57Sdrh }else{ 419d231aa3aSdrh assert( sqlite3MemdebugHasType(p, (MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); 420d425864dSmistachkin assert( sqlite3MemdebugNoType(p, (u8)~(MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); 421633e6d57Sdrh } 422054bbabcSdrh #endif 423054bbabcSdrh return sqlite3GlobalConfig.m.xSize(p); 424054bbabcSdrh }else{ 425054bbabcSdrh assert( sqlite3_mutex_held(db->mutex) ); 426054bbabcSdrh return db->lookaside.sz; 427633e6d57Sdrh } 42817bcb102Sdrh } 429da4ca9d1Sdrh sqlite3_uint64 sqlite3_msize(void *p){ 430d425864dSmistachkin assert( sqlite3MemdebugNoType(p, (u8)~MEMTYPE_HEAP) ); 431d231aa3aSdrh assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); 432039ca6abSdrh return p ? sqlite3GlobalConfig.m.xSize(p) : 0; 433da4ca9d1Sdrh } 434fec00eabSdrh 435fec00eabSdrh /* 436fec00eabSdrh ** Free memory previously obtained from sqlite3Malloc(). 437fec00eabSdrh */ 438fec00eabSdrh void sqlite3_free(void *p){ 43971a1a0f4Sdrh if( p==0 ) return; /* IMP: R-49053-54554 */ 440107b56e8Sdrh assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); 441d425864dSmistachkin assert( sqlite3MemdebugNoType(p, (u8)~MEMTYPE_HEAP) ); 442075c23afSdanielk1977 if( sqlite3GlobalConfig.bMemstat ){ 443fec00eabSdrh sqlite3_mutex_enter(mem0.mutex); 444af89fe66Sdrh sqlite3StatusDown(SQLITE_STATUS_MEMORY_USED, sqlite3MallocSize(p)); 445af89fe66Sdrh sqlite3StatusDown(SQLITE_STATUS_MALLOC_COUNT, 1); 446075c23afSdanielk1977 sqlite3GlobalConfig.m.xFree(p); 447fec00eabSdrh sqlite3_mutex_leave(mem0.mutex); 448fec00eabSdrh }else{ 449075c23afSdanielk1977 sqlite3GlobalConfig.m.xFree(p); 450fec00eabSdrh } 451fec00eabSdrh } 452fec00eabSdrh 453fec00eabSdrh /* 454b4586f12Sdrh ** Add the size of memory allocation "p" to the count in 455b4586f12Sdrh ** *db->pnBytesFreed. 456b4586f12Sdrh */ 457b4586f12Sdrh static SQLITE_NOINLINE void measureAllocationSize(sqlite3 *db, void *p){ 45856d90be1Sdrh *db->pnBytesFreed += sqlite3DbMallocSize(db,p); 459b4586f12Sdrh } 460b4586f12Sdrh 461b4586f12Sdrh /* 462633e6d57Sdrh ** Free memory that might be associated with a particular database 463633e6d57Sdrh ** connection. 464633e6d57Sdrh */ 465633e6d57Sdrh void sqlite3DbFree(sqlite3 *db, void *p){ 4667047e25cSdrh assert( db==0 || sqlite3_mutex_held(db->mutex) ); 4679ccd8659Sdrh if( p==0 ) return; 468174b9a16Sdrh if( db ){ 469174b9a16Sdrh if( db->pnBytesFreed ){ 470b4586f12Sdrh measureAllocationSize(db, p); 471174b9a16Sdrh return; 472d46def77Sdan } 473633e6d57Sdrh if( isLookaside(db, p) ){ 474633e6d57Sdrh LookasideSlot *pBuf = (LookasideSlot*)p; 4753608f177Sdrh #if SQLITE_DEBUG 4763608f177Sdrh /* Trash all content in the buffer being freed */ 4773608f177Sdrh memset(p, 0xaa, db->lookaside.sz); 4783608f177Sdrh #endif 479633e6d57Sdrh pBuf->pNext = db->lookaside.pFree; 480633e6d57Sdrh db->lookaside.pFree = pBuf; 481633e6d57Sdrh db->lookaside.nOut--; 482174b9a16Sdrh return; 483174b9a16Sdrh } 484174b9a16Sdrh } 485d231aa3aSdrh assert( sqlite3MemdebugHasType(p, (MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); 486d425864dSmistachkin assert( sqlite3MemdebugNoType(p, (u8)~(MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); 487174b9a16Sdrh assert( db!=0 || sqlite3MemdebugNoType(p, MEMTYPE_LOOKASIDE) ); 488107b56e8Sdrh sqlite3MemdebugSetType(p, MEMTYPE_HEAP); 489633e6d57Sdrh sqlite3_free(p); 490633e6d57Sdrh } 491633e6d57Sdrh 492633e6d57Sdrh /* 493fec00eabSdrh ** Change the size of an existing memory allocation 494fec00eabSdrh */ 495da4ca9d1Sdrh void *sqlite3Realloc(void *pOld, u64 nBytes){ 496ca591febSshaneh int nOld, nNew, nDiff; 497fec00eabSdrh void *pNew; 498d231aa3aSdrh assert( sqlite3MemdebugHasType(pOld, MEMTYPE_HEAP) ); 499d425864dSmistachkin assert( sqlite3MemdebugNoType(pOld, (u8)~MEMTYPE_HEAP) ); 500fec00eabSdrh if( pOld==0 ){ 5018da47419Sdrh return sqlite3Malloc(nBytes); /* IMP: R-04300-56712 */ 502fec00eabSdrh } 503da4ca9d1Sdrh if( nBytes==0 ){ 5048da47419Sdrh sqlite3_free(pOld); /* IMP: R-26507-47431 */ 505fec00eabSdrh return 0; 506fec00eabSdrh } 507b6063cf8Sdrh if( nBytes>=0x7fffff00 ){ 508b6063cf8Sdrh /* The 0x7ffff00 limit term is explained in comments on sqlite3Malloc() */ 509b6063cf8Sdrh return 0; 510b6063cf8Sdrh } 511fec00eabSdrh nOld = sqlite3MallocSize(pOld); 5129f129f46Sdrh /* IMPLEMENTATION-OF: R-46199-30249 SQLite guarantees that the second 5139f129f46Sdrh ** argument to xRealloc is always a value returned by a prior call to 5149f129f46Sdrh ** xRoundup. */ 515da4ca9d1Sdrh nNew = sqlite3GlobalConfig.m.xRoundup((int)nBytes); 516fec00eabSdrh if( nOld==nNew ){ 517fec00eabSdrh pNew = pOld; 5187c6791c8Sdrh }else if( sqlite3GlobalConfig.bMemstat ){ 5197c6791c8Sdrh sqlite3_mutex_enter(mem0.mutex); 520b02392e6Sdrh sqlite3StatusHighwater(SQLITE_STATUS_MALLOC_SIZE, (int)nBytes); 5218e1bb041Sdrh nDiff = nNew - nOld; 5225fb72e5fSdrh if( sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED) >= 5235fb72e5fSdrh mem0.alarmThreshold-nDiff ){ 5245fb72e5fSdrh sqlite3MallocAlarm(nDiff); 5255fb72e5fSdrh } 526075c23afSdanielk1977 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); 5275fb72e5fSdrh if( pNew==0 && mem0.alarmThreshold>0 ){ 5285fb72e5fSdrh sqlite3MallocAlarm((int)nBytes); 529075c23afSdanielk1977 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); 530fec00eabSdrh } 531fec00eabSdrh if( pNew ){ 532c702c7ccSdrh nNew = sqlite3MallocSize(pNew); 533af89fe66Sdrh sqlite3StatusUp(SQLITE_STATUS_MEMORY_USED, nNew-nOld); 534fec00eabSdrh } 535fec00eabSdrh sqlite3_mutex_leave(mem0.mutex); 536fec00eabSdrh }else{ 5377c6791c8Sdrh pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); 538fec00eabSdrh } 5398da47419Sdrh assert( EIGHT_BYTE_ALIGNMENT(pNew) ); /* IMP: R-11148-40995 */ 540fec00eabSdrh return pNew; 541fec00eabSdrh } 542fec00eabSdrh 543fec00eabSdrh /* 544fec00eabSdrh ** The public interface to sqlite3Realloc. Make sure that the memory 545fec00eabSdrh ** subsystem is initialized prior to invoking sqliteRealloc. 546fec00eabSdrh */ 547fec00eabSdrh void *sqlite3_realloc(void *pOld, int n){ 548fec00eabSdrh #ifndef SQLITE_OMIT_AUTOINIT 549fec00eabSdrh if( sqlite3_initialize() ) return 0; 550fec00eabSdrh #endif 5518da47419Sdrh if( n<0 ) n = 0; /* IMP: R-26507-47431 */ 552da4ca9d1Sdrh return sqlite3Realloc(pOld, n); 553da4ca9d1Sdrh } 554da4ca9d1Sdrh void *sqlite3_realloc64(void *pOld, sqlite3_uint64 n){ 555da4ca9d1Sdrh #ifndef SQLITE_OMIT_AUTOINIT 556da4ca9d1Sdrh if( sqlite3_initialize() ) return 0; 557da4ca9d1Sdrh #endif 558fec00eabSdrh return sqlite3Realloc(pOld, n); 559fec00eabSdrh } 560fec00eabSdrh 561a3152895Sdrh 562a3152895Sdrh /* 56317435752Sdrh ** Allocate and zero memory. 564a3152895Sdrh */ 565da4ca9d1Sdrh void *sqlite3MallocZero(u64 n){ 566fec00eabSdrh void *p = sqlite3Malloc(n); 567a3152895Sdrh if( p ){ 56820f3df04Sdrh memset(p, 0, (size_t)n); 569a3152895Sdrh } 570a3152895Sdrh return p; 571a3152895Sdrh } 57217435752Sdrh 57317435752Sdrh /* 57417435752Sdrh ** Allocate and zero memory. If the allocation fails, make 57517435752Sdrh ** the mallocFailed flag in the connection pointer. 57617435752Sdrh */ 577da4ca9d1Sdrh void *sqlite3DbMallocZero(sqlite3 *db, u64 n){ 578a1644fd8Sdanielk1977 void *p = sqlite3DbMallocRaw(db, n); 57917435752Sdrh if( p ){ 58020f3df04Sdrh memset(p, 0, (size_t)n); 58117435752Sdrh } 58217435752Sdrh return p; 58317435752Sdrh } 58417435752Sdrh 58517435752Sdrh /* 58617435752Sdrh ** Allocate and zero memory. If the allocation fails, make 58717435752Sdrh ** the mallocFailed flag in the connection pointer. 588ddecae79Sdrh ** 589ddecae79Sdrh ** If db!=0 and db->mallocFailed is true (indicating a prior malloc 590ddecae79Sdrh ** failure on the same database connection) then always return 0. 591ddecae79Sdrh ** Hence for a particular database connection, once malloc starts 592ddecae79Sdrh ** failing, it fails consistently until mallocFailed is reset. 593ddecae79Sdrh ** This is an important assumption. There are many places in the 594ddecae79Sdrh ** code that do things like this: 595ddecae79Sdrh ** 596ddecae79Sdrh ** int *a = (int*)sqlite3DbMallocRaw(db, 100); 597ddecae79Sdrh ** int *b = (int*)sqlite3DbMallocRaw(db, 200); 598ddecae79Sdrh ** if( b ) a[10] = 9; 599ddecae79Sdrh ** 600ddecae79Sdrh ** In other words, if a subsequent malloc (ex: "b") worked, it is assumed 601ddecae79Sdrh ** that all prior mallocs (ex: "a") worked too. 60217435752Sdrh */ 603da4ca9d1Sdrh void *sqlite3DbMallocRaw(sqlite3 *db, u64 n){ 604633e6d57Sdrh void *p; 605d9da78a2Sdrh assert( db==0 || sqlite3_mutex_held(db->mutex) ); 606ccd4ad3eSdan assert( db==0 || db->pnBytesFreed==0 ); 6074150ebf8Sdrh #ifndef SQLITE_OMIT_LOOKASIDE 608633e6d57Sdrh if( db ){ 609633e6d57Sdrh LookasideSlot *pBuf; 610633e6d57Sdrh if( db->mallocFailed ){ 611633e6d57Sdrh return 0; 612633e6d57Sdrh } 6130b12e7f8Sdrh if( db->lookaside.bEnabled ){ 6140b12e7f8Sdrh if( n>db->lookaside.sz ){ 6150b12e7f8Sdrh db->lookaside.anStat[1]++; 6160b12e7f8Sdrh }else if( (pBuf = db->lookaside.pFree)==0 ){ 6170b12e7f8Sdrh db->lookaside.anStat[2]++; 6180b12e7f8Sdrh }else{ 619633e6d57Sdrh db->lookaside.pFree = pBuf->pNext; 620633e6d57Sdrh db->lookaside.nOut++; 6210b12e7f8Sdrh db->lookaside.anStat[0]++; 622633e6d57Sdrh if( db->lookaside.nOut>db->lookaside.mxOut ){ 623633e6d57Sdrh db->lookaside.mxOut = db->lookaside.nOut; 624633e6d57Sdrh } 625633e6d57Sdrh return (void*)pBuf; 626633e6d57Sdrh } 627633e6d57Sdrh } 6280b12e7f8Sdrh } 629ddecae79Sdrh #else 630ddecae79Sdrh if( db && db->mallocFailed ){ 631ddecae79Sdrh return 0; 632ddecae79Sdrh } 6334150ebf8Sdrh #endif 634fec00eabSdrh p = sqlite3Malloc(n); 635f3a65f7eSdrh if( !p && db ){ 63617435752Sdrh db->mallocFailed = 1; 63717435752Sdrh } 638d231aa3aSdrh sqlite3MemdebugSetType(p, 639d231aa3aSdrh (db && db->lookaside.bEnabled) ? MEMTYPE_LOOKASIDE : MEMTYPE_HEAP); 64017435752Sdrh return p; 64117435752Sdrh } 64217435752Sdrh 64326783a58Sdanielk1977 /* 64426783a58Sdanielk1977 ** Resize the block of memory pointed to by p to n bytes. If the 64526783a58Sdanielk1977 ** resize fails, set the mallocFailed flag in the connection object. 64626783a58Sdanielk1977 */ 647da4ca9d1Sdrh void *sqlite3DbRealloc(sqlite3 *db, void *p, u64 n){ 648a1644fd8Sdanielk1977 void *pNew = 0; 649d9da78a2Sdrh assert( db!=0 ); 6507047e25cSdrh assert( sqlite3_mutex_held(db->mutex) ); 651a1644fd8Sdanielk1977 if( db->mallocFailed==0 ){ 652633e6d57Sdrh if( p==0 ){ 653633e6d57Sdrh return sqlite3DbMallocRaw(db, n); 654633e6d57Sdrh } 655633e6d57Sdrh if( isLookaside(db, p) ){ 656633e6d57Sdrh if( n<=db->lookaside.sz ){ 657633e6d57Sdrh return p; 658633e6d57Sdrh } 659633e6d57Sdrh pNew = sqlite3DbMallocRaw(db, n); 660633e6d57Sdrh if( pNew ){ 661633e6d57Sdrh memcpy(pNew, p, db->lookaside.sz); 662633e6d57Sdrh sqlite3DbFree(db, p); 663633e6d57Sdrh } 664633e6d57Sdrh }else{ 665d231aa3aSdrh assert( sqlite3MemdebugHasType(p, (MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); 666d425864dSmistachkin assert( sqlite3MemdebugNoType(p, (u8)~(MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); 667107b56e8Sdrh sqlite3MemdebugSetType(p, MEMTYPE_HEAP); 6683329a63aSdrh pNew = sqlite3_realloc64(p, n); 669a1644fd8Sdanielk1977 if( !pNew ){ 670a1644fd8Sdanielk1977 db->mallocFailed = 1; 671a1644fd8Sdanielk1977 } 672d231aa3aSdrh sqlite3MemdebugSetType(pNew, 673174b9a16Sdrh (db->lookaside.bEnabled ? MEMTYPE_LOOKASIDE : MEMTYPE_HEAP)); 674a1644fd8Sdanielk1977 } 675633e6d57Sdrh } 676a1644fd8Sdanielk1977 return pNew; 677a1644fd8Sdanielk1977 } 678a1644fd8Sdanielk1977 67917435752Sdrh /* 68017435752Sdrh ** Attempt to reallocate p. If the reallocation fails, then free p 68117435752Sdrh ** and set the mallocFailed flag in the database connection. 68217435752Sdrh */ 683da4ca9d1Sdrh void *sqlite3DbReallocOrFree(sqlite3 *db, void *p, u64 n){ 684a3152895Sdrh void *pNew; 685a1644fd8Sdanielk1977 pNew = sqlite3DbRealloc(db, p, n); 686a3152895Sdrh if( !pNew ){ 687633e6d57Sdrh sqlite3DbFree(db, p); 688a3152895Sdrh } 689a3152895Sdrh return pNew; 690a3152895Sdrh } 691a3152895Sdrh 692a3152895Sdrh /* 693a3152895Sdrh ** Make a copy of a string in memory obtained from sqliteMalloc(). These 694a3152895Sdrh ** functions call sqlite3MallocRaw() directly instead of sqliteMalloc(). This 695a3152895Sdrh ** is because when memory debugging is turned on, these two functions are 696a3152895Sdrh ** called via macros that record the current file and line number in the 697a3152895Sdrh ** ThreadData structure. 698a3152895Sdrh */ 699633e6d57Sdrh char *sqlite3DbStrDup(sqlite3 *db, const char *z){ 700a3152895Sdrh char *zNew; 701633e6d57Sdrh size_t n; 702633e6d57Sdrh if( z==0 ){ 703633e6d57Sdrh return 0; 704a3152895Sdrh } 705dee0e404Sdrh n = sqlite3Strlen30(z) + 1; 706633e6d57Sdrh assert( (n&0x7fffffff)==n ); 707633e6d57Sdrh zNew = sqlite3DbMallocRaw(db, (int)n); 708a3152895Sdrh if( zNew ){ 709a3152895Sdrh memcpy(zNew, z, n); 7101e536953Sdanielk1977 } 7111e536953Sdanielk1977 return zNew; 7121e536953Sdanielk1977 } 713da4ca9d1Sdrh char *sqlite3DbStrNDup(sqlite3 *db, const char *z, u64 n){ 714633e6d57Sdrh char *zNew; 715633e6d57Sdrh if( z==0 ){ 716633e6d57Sdrh return 0; 717633e6d57Sdrh } 718633e6d57Sdrh assert( (n&0x7fffffff)==n ); 719633e6d57Sdrh zNew = sqlite3DbMallocRaw(db, n+1); 720633e6d57Sdrh if( zNew ){ 72120f3df04Sdrh memcpy(zNew, z, (size_t)n); 722633e6d57Sdrh zNew[n] = 0; 7231e536953Sdanielk1977 } 7241e536953Sdanielk1977 return zNew; 7251e536953Sdanielk1977 } 7261e536953Sdanielk1977 727a3152895Sdrh /* 72822c17b8bSdrh ** Free any prior content in *pz and replace it with a copy of zNew. 729a3152895Sdrh */ 73022c17b8bSdrh void sqlite3SetString(char **pz, sqlite3 *db, const char *zNew){ 731633e6d57Sdrh sqlite3DbFree(db, *pz); 73222c17b8bSdrh *pz = sqlite3DbStrDup(db, zNew); 733a3152895Sdrh } 734a3152895Sdrh 735b50c65d5Sdrh /* 736b50c65d5Sdrh ** Take actions at the end of an API call to indicate an OOM error 737b50c65d5Sdrh */ 738b50c65d5Sdrh static SQLITE_NOINLINE int apiOomError(sqlite3 *db){ 739b50c65d5Sdrh db->mallocFailed = 0; 740b50c65d5Sdrh sqlite3Error(db, SQLITE_NOMEM); 741b50c65d5Sdrh return SQLITE_NOMEM; 742b50c65d5Sdrh } 743a3152895Sdrh 744a3152895Sdrh /* 745a3152895Sdrh ** This function must be called before exiting any API function (i.e. 74617435752Sdrh ** returning control to the user) that has called sqlite3_malloc or 74717435752Sdrh ** sqlite3_realloc. 748a3152895Sdrh ** 749a3152895Sdrh ** The returned value is normally a copy of the second argument to this 750be217793Sshane ** function. However, if a malloc() failure has occurred since the previous 751a3152895Sdrh ** invocation SQLITE_NOMEM is returned instead. 752a3152895Sdrh ** 753597d2b64Sdrh ** If an OOM as occurred, then the connection error-code (the value 754597d2b64Sdrh ** returned by sqlite3_errcode()) is set to SQLITE_NOMEM. 755a3152895Sdrh */ 756a3152895Sdrh int sqlite3ApiExit(sqlite3* db, int rc){ 757597d2b64Sdrh /* If the db handle must hold the connection handle mutex here. 758597d2b64Sdrh ** Otherwise the read (and possible write) of db->mallocFailed 759a1644fd8Sdanielk1977 ** is unsafe, as is the call to sqlite3Error(). 760a1644fd8Sdanielk1977 */ 761597d2b64Sdrh assert( db!=0 ); 762597d2b64Sdrh assert( sqlite3_mutex_held(db->mutex) ); 763b50c65d5Sdrh if( db->mallocFailed || rc==SQLITE_IOERR_NOMEM ){ 764b50c65d5Sdrh return apiOomError(db); 765a3152895Sdrh } 766b50c65d5Sdrh return rc & db->errMask; 767a3152895Sdrh } 768