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 ** 15*d09414cdSdanielk1977 ** $Id: malloc.c,v 1.22 2008/06/19 18:17:50 danielk1977 Exp $ 16a3152895Sdrh */ 17a3152895Sdrh #include "sqliteInt.h" 18a3152895Sdrh #include <stdarg.h> 19a3152895Sdrh #include <ctype.h> 20a3152895Sdrh 21a3152895Sdrh /* 22b21c8cd4Sdrh ** This routine runs when the memory allocator sees that the 23b21c8cd4Sdrh ** total memory allocation is about to exceed the soft heap 24b21c8cd4Sdrh ** limit. 25b21c8cd4Sdrh */ 26b21c8cd4Sdrh static void softHeapLimitEnforcer( 27b21c8cd4Sdrh void *NotUsed, 28153c62c4Sdrh sqlite3_int64 inUse, 29153c62c4Sdrh int allocSize 30b21c8cd4Sdrh ){ 31b21c8cd4Sdrh sqlite3_release_memory(allocSize); 32b21c8cd4Sdrh } 33b21c8cd4Sdrh 34b21c8cd4Sdrh /* 35b21c8cd4Sdrh ** Set the soft heap-size limit for the current thread. Passing a 36b21c8cd4Sdrh ** zero or negative value indicates no limit. 37a3152895Sdrh */ 38a3152895Sdrh void sqlite3_soft_heap_limit(int n){ 39b21c8cd4Sdrh sqlite3_uint64 iLimit; 40b21c8cd4Sdrh int overage; 41b21c8cd4Sdrh if( n<0 ){ 42b21c8cd4Sdrh iLimit = 0; 43b21c8cd4Sdrh }else{ 44b21c8cd4Sdrh iLimit = n; 45a3152895Sdrh } 469ac3fe97Sdrh sqlite3_initialize(); 47b21c8cd4Sdrh if( iLimit>0 ){ 48b21c8cd4Sdrh sqlite3_memory_alarm(softHeapLimitEnforcer, 0, iLimit); 49b21c8cd4Sdrh }else{ 50b21c8cd4Sdrh sqlite3_memory_alarm(0, 0, 0); 51b21c8cd4Sdrh } 52b21c8cd4Sdrh overage = sqlite3_memory_used() - n; 53b21c8cd4Sdrh if( overage>0 ){ 54b21c8cd4Sdrh sqlite3_release_memory(overage); 55b21c8cd4Sdrh } 56a3152895Sdrh } 57a3152895Sdrh 58a3152895Sdrh /* 59a3152895Sdrh ** Release memory held by SQLite instances created by the current thread. 60a3152895Sdrh */ 61a3152895Sdrh int sqlite3_release_memory(int n){ 6286f8c197Sdrh #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT 63dfb316d4Sdanielk1977 int nRet = sqlite3VdbeReleaseMemory(n); 64dfb316d4Sdanielk1977 nRet += sqlite3PagerReleaseMemory(n-nRet); 65dfb316d4Sdanielk1977 return nRet; 661e536953Sdanielk1977 #else 671e536953Sdanielk1977 return SQLITE_OK; 681e536953Sdanielk1977 #endif 69a3152895Sdrh } 70a3152895Sdrh 71fec00eabSdrh /* 72fec00eabSdrh ** State information local to the memory allocation subsystem. 73fec00eabSdrh */ 74fec00eabSdrh static struct { 75fec00eabSdrh sqlite3_mutex *mutex; /* Mutex to serialize access */ 76fec00eabSdrh 77fec00eabSdrh /* 78fec00eabSdrh ** The alarm callback and its arguments. The mem0.mutex lock will 79fec00eabSdrh ** be held while the callback is running. Recursive calls into 80fec00eabSdrh ** the memory subsystem are allowed, but no new callbacks will be 81fec00eabSdrh ** issued. The alarmBusy variable is set to prevent recursive 82fec00eabSdrh ** callbacks. 83fec00eabSdrh */ 84fec00eabSdrh sqlite3_int64 alarmThreshold; 85fec00eabSdrh void (*alarmCallback)(void*, sqlite3_int64,int); 86fec00eabSdrh void *alarmArg; 87fec00eabSdrh int alarmBusy; 88fec00eabSdrh 89fec00eabSdrh /* 909ac3fe97Sdrh ** Pointers to the end of sqlite3Config.pScratch and 919ac3fe97Sdrh ** sqlite3Config.pPage to a block of memory that records 929ac3fe97Sdrh ** which pages are available. 939ac3fe97Sdrh */ 949ac3fe97Sdrh u32 *aScratchFree; 959ac3fe97Sdrh u32 *aPageFree; 969ac3fe97Sdrh 979ac3fe97Sdrh /* Number of free pages for scratch and page-cache memory */ 989ac3fe97Sdrh u32 nScratchFree; 999ac3fe97Sdrh u32 nPageFree; 100fec00eabSdrh } mem0; 101fec00eabSdrh 102fec00eabSdrh /* 103fec00eabSdrh ** Initialize the memory allocation subsystem. 104fec00eabSdrh */ 105fec00eabSdrh int sqlite3MallocInit(void){ 106fec00eabSdrh if( sqlite3Config.m.xMalloc==0 ){ 107fec00eabSdrh sqlite3MemSetDefault(); 108fec00eabSdrh } 109fec00eabSdrh memset(&mem0, 0, sizeof(mem0)); 1109ac3fe97Sdrh if( sqlite3Config.bCoreMutex ){ 11159f8c08eSdanielk1977 mem0.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM); 112fec00eabSdrh } 1139ac3fe97Sdrh if( sqlite3Config.pScratch && sqlite3Config.szScratch>=3000 1149ac3fe97Sdrh && sqlite3Config.nScratch>0 ){ 1159ac3fe97Sdrh int i; 1169ac3fe97Sdrh mem0.aScratchFree = (u32*)&((char*)sqlite3Config.pScratch) 1179ac3fe97Sdrh [sqlite3Config.szScratch*sqlite3Config.nScratch]; 1189ac3fe97Sdrh for(i=0; i<sqlite3Config.nScratch; i++){ mem0.aScratchFree[i] = i; } 1199ac3fe97Sdrh mem0.nScratchFree = sqlite3Config.nScratch; 1209ac3fe97Sdrh }else{ 1219ac3fe97Sdrh sqlite3Config.pScratch = 0; 122f7141990Sdrh sqlite3Config.szScratch = 0; 1239ac3fe97Sdrh } 1249ac3fe97Sdrh if( sqlite3Config.pPage && sqlite3Config.szPage>=512 1259ac3fe97Sdrh && sqlite3Config.nPage>0 ){ 1269ac3fe97Sdrh int i; 1279ac3fe97Sdrh mem0.aPageFree = (u32*)&((char*)sqlite3Config.pPage) 1289ac3fe97Sdrh [sqlite3Config.szPage*sqlite3Config.nPage]; 1299ac3fe97Sdrh for(i=0; i<sqlite3Config.nPage; i++){ mem0.aPageFree[i] = i; } 1309ac3fe97Sdrh mem0.nPageFree = sqlite3Config.nPage; 1319ac3fe97Sdrh }else{ 1329ac3fe97Sdrh sqlite3Config.pPage = 0; 133f7141990Sdrh sqlite3Config.szPage = 0; 1349ac3fe97Sdrh } 135fec00eabSdrh return sqlite3Config.m.xInit(sqlite3Config.m.pAppData); 136fec00eabSdrh } 137fec00eabSdrh 138fec00eabSdrh /* 139fec00eabSdrh ** Deinitialize the memory allocation subsystem. 140fec00eabSdrh */ 141fec00eabSdrh void sqlite3MallocEnd(void){ 142fec00eabSdrh sqlite3Config.m.xShutdown(sqlite3Config.m.pAppData); 1439ac3fe97Sdrh memset(&mem0, 0, sizeof(mem0)); 144fec00eabSdrh } 145fec00eabSdrh 146fec00eabSdrh /* 147fec00eabSdrh ** Return the amount of memory currently checked out. 148fec00eabSdrh */ 149fec00eabSdrh sqlite3_int64 sqlite3_memory_used(void){ 150f7141990Sdrh int n, mx; 151f7141990Sdrh sqlite3_status(SQLITE_STATUS_MEMORY_USED, &n, &mx, 0); 152f7141990Sdrh return (sqlite3_int64)n; 153fec00eabSdrh } 154fec00eabSdrh 155fec00eabSdrh /* 156fec00eabSdrh ** Return the maximum amount of memory that has ever been 157fec00eabSdrh ** checked out since either the beginning of this process 158fec00eabSdrh ** or since the most recent reset. 159fec00eabSdrh */ 160fec00eabSdrh sqlite3_int64 sqlite3_memory_highwater(int resetFlag){ 161f7141990Sdrh int n, mx; 162f7141990Sdrh sqlite3_status(SQLITE_STATUS_MEMORY_USED, &n, &mx, resetFlag); 163f7141990Sdrh return (sqlite3_int64)mx; 164fec00eabSdrh } 165fec00eabSdrh 166fec00eabSdrh /* 167fec00eabSdrh ** Change the alarm callback 168fec00eabSdrh */ 169fec00eabSdrh int sqlite3_memory_alarm( 170fec00eabSdrh void(*xCallback)(void *pArg, sqlite3_int64 used,int N), 171fec00eabSdrh void *pArg, 172fec00eabSdrh sqlite3_int64 iThreshold 173fec00eabSdrh ){ 174fec00eabSdrh sqlite3_mutex_enter(mem0.mutex); 175fec00eabSdrh mem0.alarmCallback = xCallback; 176fec00eabSdrh mem0.alarmArg = pArg; 177fec00eabSdrh mem0.alarmThreshold = iThreshold; 178fec00eabSdrh sqlite3_mutex_leave(mem0.mutex); 179fec00eabSdrh return SQLITE_OK; 180fec00eabSdrh } 181fec00eabSdrh 182fec00eabSdrh /* 183fec00eabSdrh ** Trigger the alarm 184fec00eabSdrh */ 185fec00eabSdrh static void sqlite3MallocAlarm(int nByte){ 186fec00eabSdrh void (*xCallback)(void*,sqlite3_int64,int); 187fec00eabSdrh sqlite3_int64 nowUsed; 188fec00eabSdrh void *pArg; 189fec00eabSdrh if( mem0.alarmCallback==0 || mem0.alarmBusy ) return; 190fec00eabSdrh mem0.alarmBusy = 1; 191fec00eabSdrh xCallback = mem0.alarmCallback; 192f7141990Sdrh nowUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); 193fec00eabSdrh pArg = mem0.alarmArg; 194fec00eabSdrh sqlite3_mutex_leave(mem0.mutex); 195fec00eabSdrh xCallback(pArg, nowUsed, nByte); 196fec00eabSdrh sqlite3_mutex_enter(mem0.mutex); 197fec00eabSdrh mem0.alarmBusy = 0; 198fec00eabSdrh } 199fec00eabSdrh 200fec00eabSdrh /* 201f7141990Sdrh ** Do a memory allocation with statistics and alarms. Assume the 202f7141990Sdrh ** lock is already held. 203fec00eabSdrh */ 204f7141990Sdrh static int mallocWithAlarm(int n, void **pp){ 205fec00eabSdrh int nFull; 206f7141990Sdrh void *p; 207f7141990Sdrh assert( sqlite3_mutex_held(mem0.mutex) ); 208fec00eabSdrh nFull = sqlite3Config.m.xRoundup(n); 209f7141990Sdrh sqlite3StatusSet(SQLITE_STATUS_MALLOC_SIZE, n); 210f7141990Sdrh if( mem0.alarmCallback!=0 ){ 211f7141990Sdrh int nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); 212f7141990Sdrh if( nUsed+nFull >= mem0.alarmThreshold ){ 213fec00eabSdrh sqlite3MallocAlarm(nFull); 214fec00eabSdrh } 215f7141990Sdrh } 216fec00eabSdrh p = sqlite3Config.m.xMalloc(nFull); 217*d09414cdSdanielk1977 if( p==0 && mem0.alarmCallback ){ 218fec00eabSdrh sqlite3MallocAlarm(nFull); 219*d09414cdSdanielk1977 p = sqlite3Config.m.xMalloc(nFull); 220fec00eabSdrh } 221f7141990Sdrh if( p ) sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, nFull); 222f7141990Sdrh *pp = p; 223f7141990Sdrh return nFull; 224fec00eabSdrh } 225f7141990Sdrh 226f7141990Sdrh /* 227f7141990Sdrh ** Allocate memory. This routine is like sqlite3_malloc() except that it 228f7141990Sdrh ** assumes the memory subsystem has already been initialized. 229f7141990Sdrh */ 230f7141990Sdrh void *sqlite3Malloc(int n){ 231f7141990Sdrh void *p; 232f7141990Sdrh if( n<=0 ){ 233f7141990Sdrh p = 0; 234f7141990Sdrh }else if( sqlite3Config.bMemstat ){ 235f7141990Sdrh sqlite3_mutex_enter(mem0.mutex); 236f7141990Sdrh mallocWithAlarm(n, &p); 237fec00eabSdrh sqlite3_mutex_leave(mem0.mutex); 238fec00eabSdrh }else{ 239fec00eabSdrh p = sqlite3Config.m.xMalloc(n); 240fec00eabSdrh } 241fec00eabSdrh return p; 242fec00eabSdrh } 243fec00eabSdrh 244fec00eabSdrh /* 245fec00eabSdrh ** This version of the memory allocation is for use by the application. 246fec00eabSdrh ** First make sure the memory subsystem is initialized, then do the 247fec00eabSdrh ** allocation. 248fec00eabSdrh */ 249fec00eabSdrh void *sqlite3_malloc(int n){ 250fec00eabSdrh #ifndef SQLITE_OMIT_AUTOINIT 251fec00eabSdrh if( sqlite3_initialize() ) return 0; 252fec00eabSdrh #endif 253fec00eabSdrh return sqlite3Malloc(n); 254fec00eabSdrh } 255fec00eabSdrh 256fec00eabSdrh /* 257e5ae5735Sdrh ** Each thread may only have a single outstanding allocation from 258facf0307Sdrh ** xScratchMalloc(). We verify this constraint in the single-threaded 259facf0307Sdrh ** case by setting scratchAllocOut to 1 when an allocation 260e5ae5735Sdrh ** is outstanding clearing it when the allocation is freed. 261e5ae5735Sdrh */ 262e5ae5735Sdrh #if SQLITE_THREADSAFE==0 && !defined(NDEBUG) 263facf0307Sdrh static int scratchAllocOut = 0; 264e5ae5735Sdrh #endif 265e5ae5735Sdrh 266e5ae5735Sdrh 267e5ae5735Sdrh /* 268e5ae5735Sdrh ** Allocate memory that is to be used and released right away. 269e5ae5735Sdrh ** This routine is similar to alloca() in that it is not intended 270e5ae5735Sdrh ** for situations where the memory might be held long-term. This 271e5ae5735Sdrh ** routine is intended to get memory to old large transient data 272e5ae5735Sdrh ** structures that would not normally fit on the stack of an 273e5ae5735Sdrh ** embedded processor. 274e5ae5735Sdrh */ 275facf0307Sdrh void *sqlite3ScratchMalloc(int n){ 276e5ae5735Sdrh void *p; 277e5ae5735Sdrh assert( n>0 ); 2789ac3fe97Sdrh 279e5ae5735Sdrh #if SQLITE_THREADSAFE==0 && !defined(NDEBUG) 2809ac3fe97Sdrh /* Verify that no more than one scratch allocation per thread 2819ac3fe97Sdrh ** is outstanding at one time. (This is only checked in the 2829ac3fe97Sdrh ** single-threaded case since checking in the multi-threaded case 2839ac3fe97Sdrh ** would be much more complicated.) */ 284facf0307Sdrh assert( scratchAllocOut==0 ); 285e5ae5735Sdrh #endif 2869ac3fe97Sdrh 287f7141990Sdrh if( sqlite3Config.szScratch<n ){ 288f7141990Sdrh goto scratch_overflow; 289f7141990Sdrh }else{ 290e5ae5735Sdrh sqlite3_mutex_enter(mem0.mutex); 291f7141990Sdrh if( mem0.nScratchFree==0 ){ 292f7141990Sdrh sqlite3_mutex_leave(mem0.mutex); 293f7141990Sdrh goto scratch_overflow; 294e5ae5735Sdrh }else{ 2959ac3fe97Sdrh int i; 2969ac3fe97Sdrh i = mem0.aScratchFree[--mem0.nScratchFree]; 297f7141990Sdrh sqlite3_mutex_leave(mem0.mutex); 2989ac3fe97Sdrh i *= sqlite3Config.szScratch; 299f7141990Sdrh sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_USED, 1); 3009ac3fe97Sdrh p = (void*)&((char*)sqlite3Config.pScratch)[i]; 301e5ae5735Sdrh } 302f7141990Sdrh } 303f7141990Sdrh #if SQLITE_THREADSAFE==0 && !defined(NDEBUG) 304f7141990Sdrh scratchAllocOut = p!=0; 305f7141990Sdrh #endif 306f7141990Sdrh 307f7141990Sdrh return p; 308f7141990Sdrh 309f7141990Sdrh scratch_overflow: 310f7141990Sdrh if( sqlite3Config.bMemstat ){ 311f7141990Sdrh sqlite3_mutex_enter(mem0.mutex); 312f7141990Sdrh n = mallocWithAlarm(n, &p); 313f7141990Sdrh if( p ) sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_OVERFLOW, n); 3149ac3fe97Sdrh sqlite3_mutex_leave(mem0.mutex); 315f7141990Sdrh }else{ 316f7141990Sdrh p = sqlite3Config.m.xMalloc(n); 317f7141990Sdrh } 318f7141990Sdrh #if SQLITE_THREADSAFE==0 && !defined(NDEBUG) 319f7141990Sdrh scratchAllocOut = p!=0; 320f7141990Sdrh #endif 321e5ae5735Sdrh return p; 322e5ae5735Sdrh } 323facf0307Sdrh void sqlite3ScratchFree(void *p){ 324e5ae5735Sdrh if( p ){ 3259ac3fe97Sdrh 326e5ae5735Sdrh #if SQLITE_THREADSAFE==0 && !defined(NDEBUG) 3279ac3fe97Sdrh /* Verify that no more than one scratch allocation per thread 3289ac3fe97Sdrh ** is outstanding at one time. (This is only checked in the 3299ac3fe97Sdrh ** single-threaded case since checking in the multi-threaded case 3309ac3fe97Sdrh ** would be much more complicated.) */ 331facf0307Sdrh assert( scratchAllocOut==1 ); 332facf0307Sdrh scratchAllocOut = 0; 333e5ae5735Sdrh #endif 3349ac3fe97Sdrh 3359ac3fe97Sdrh if( sqlite3Config.pScratch==0 3369ac3fe97Sdrh || p<sqlite3Config.pScratch 3379ac3fe97Sdrh || p>=(void*)mem0.aScratchFree ){ 338f7141990Sdrh if( sqlite3Config.bMemstat ){ 339f7141990Sdrh int iSize = sqlite3MallocSize(p); 340f7141990Sdrh sqlite3_mutex_enter(mem0.mutex); 341f7141990Sdrh sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_OVERFLOW, -iSize); 342f7141990Sdrh sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -iSize); 343facf0307Sdrh sqlite3Config.m.xFree(p); 344f7141990Sdrh sqlite3_mutex_leave(mem0.mutex); 345f7141990Sdrh }else{ 346f7141990Sdrh sqlite3Config.m.xFree(p); 347f7141990Sdrh } 3489ac3fe97Sdrh }else{ 3499ac3fe97Sdrh int i; 3509ac3fe97Sdrh i = p - sqlite3Config.pScratch; 3519ac3fe97Sdrh i /= sqlite3Config.szScratch; 3529ac3fe97Sdrh assert( i>=0 && i<sqlite3Config.nScratch ); 353f7141990Sdrh sqlite3_mutex_enter(mem0.mutex); 354f7141990Sdrh assert( mem0.nScratchFree<sqlite3Config.nScratch ); 3559ac3fe97Sdrh mem0.aScratchFree[mem0.nScratchFree++] = i; 356f7141990Sdrh sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_USED, -1); 3579ac3fe97Sdrh sqlite3_mutex_leave(mem0.mutex); 3589ac3fe97Sdrh } 359e5ae5735Sdrh } 360e5ae5735Sdrh } 361e5ae5735Sdrh 362e5ae5735Sdrh /* 363f7141990Sdrh ** Allocate memory to be used by the page cache. Make use of the 364f7141990Sdrh ** memory buffer provided by SQLITE_CONFIG_PAGECACHE if there is one 365f7141990Sdrh ** and that memory is of the right size and is not completely 366f7141990Sdrh ** consumed. Otherwise, failover to sqlite3Malloc(). 367facf0307Sdrh */ 368f7141990Sdrh void *sqlite3PageMalloc(int n){ 369f7141990Sdrh void *p; 370f7141990Sdrh assert( n>0 ); 371f7141990Sdrh assert( (n & (n-1))==0 ); 372f7141990Sdrh assert( n>=512 && n<=32768 ); 373f7141990Sdrh 374f7141990Sdrh if( sqlite3Config.szPage<n ){ 375f7141990Sdrh goto page_overflow; 376f7141990Sdrh }else{ 377f7141990Sdrh sqlite3_mutex_enter(mem0.mutex); 378f7141990Sdrh if( mem0.nPageFree==0 ){ 379f7141990Sdrh sqlite3_mutex_leave(mem0.mutex); 380f7141990Sdrh goto page_overflow; 381f7141990Sdrh }else{ 382f7141990Sdrh int i; 383f7141990Sdrh i = mem0.aPageFree[--mem0.nPageFree]; 384f7141990Sdrh sqlite3_mutex_leave(mem0.mutex); 385f7141990Sdrh i *= sqlite3Config.szPage; 386f7141990Sdrh sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_USED, 1); 387f7141990Sdrh p = (void*)&((char*)sqlite3Config.pPage)[i]; 388f7141990Sdrh } 389f7141990Sdrh } 390f7141990Sdrh return p; 391f7141990Sdrh 392f7141990Sdrh page_overflow: 393f7141990Sdrh if( sqlite3Config.bMemstat ){ 394f7141990Sdrh sqlite3_mutex_enter(mem0.mutex); 395f7141990Sdrh n = mallocWithAlarm(n, &p); 396f7141990Sdrh if( p ) sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_OVERFLOW, n); 397f7141990Sdrh sqlite3_mutex_leave(mem0.mutex); 398f7141990Sdrh }else{ 399f7141990Sdrh p = sqlite3Config.m.xMalloc(n); 400f7141990Sdrh } 401f7141990Sdrh return p; 402f7141990Sdrh } 403f7141990Sdrh void sqlite3PageFree(void *p){ 404f7141990Sdrh if( p ){ 405f7141990Sdrh if( sqlite3Config.pPage==0 406f7141990Sdrh || p<sqlite3Config.pPage 407f7141990Sdrh || p>=(void*)mem0.aPageFree ){ 408f7141990Sdrh if( sqlite3Config.bMemstat ){ 409f7141990Sdrh int iSize = sqlite3MallocSize(p); 410f7141990Sdrh sqlite3_mutex_enter(mem0.mutex); 411f7141990Sdrh sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_OVERFLOW, -iSize); 412f7141990Sdrh sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -iSize); 413f7141990Sdrh sqlite3Config.m.xFree(p); 414f7141990Sdrh sqlite3_mutex_leave(mem0.mutex); 415f7141990Sdrh }else{ 416f7141990Sdrh sqlite3Config.m.xFree(p); 417f7141990Sdrh } 418f7141990Sdrh }else{ 419f7141990Sdrh int i; 420f7141990Sdrh i = p - sqlite3Config.pPage; 421f7141990Sdrh i /= sqlite3Config.szPage; 422f7141990Sdrh assert( i>=0 && i<sqlite3Config.nPage ); 423f7141990Sdrh sqlite3_mutex_enter(mem0.mutex); 424f7141990Sdrh assert( mem0.nPageFree<sqlite3Config.nPage ); 425f7141990Sdrh mem0.aPageFree[mem0.nPageFree++] = i; 426f7141990Sdrh sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_USED, -1); 427f7141990Sdrh sqlite3_mutex_leave(mem0.mutex); 428f7141990Sdrh } 429f7141990Sdrh } 430facf0307Sdrh } 431facf0307Sdrh 432facf0307Sdrh /* 433fec00eabSdrh ** Return the size of a memory allocation previously obtained from 434fec00eabSdrh ** sqlite3Malloc() or sqlite3_malloc(). 435fec00eabSdrh */ 436fec00eabSdrh int sqlite3MallocSize(void *p){ 437fec00eabSdrh return sqlite3Config.m.xSize(p); 438fec00eabSdrh } 439fec00eabSdrh 440fec00eabSdrh /* 441fec00eabSdrh ** Free memory previously obtained from sqlite3Malloc(). 442fec00eabSdrh */ 443fec00eabSdrh void sqlite3_free(void *p){ 444fec00eabSdrh if( p==0 ) return; 445fec00eabSdrh if( sqlite3Config.bMemstat ){ 446fec00eabSdrh sqlite3_mutex_enter(mem0.mutex); 447f7141990Sdrh sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -sqlite3MallocSize(p)); 448fec00eabSdrh sqlite3Config.m.xFree(p); 449fec00eabSdrh sqlite3_mutex_leave(mem0.mutex); 450fec00eabSdrh }else{ 451fec00eabSdrh sqlite3Config.m.xFree(p); 452fec00eabSdrh } 453fec00eabSdrh } 454fec00eabSdrh 455fec00eabSdrh /* 456fec00eabSdrh ** Change the size of an existing memory allocation 457fec00eabSdrh */ 458fec00eabSdrh void *sqlite3Realloc(void *pOld, int nBytes){ 459fec00eabSdrh int nOld, nNew; 460fec00eabSdrh void *pNew; 461fec00eabSdrh if( pOld==0 ){ 462fec00eabSdrh return sqlite3Malloc(nBytes); 463fec00eabSdrh } 464fec00eabSdrh if( nBytes<=0 ){ 465fec00eabSdrh sqlite3_free(pOld); 466fec00eabSdrh return 0; 467fec00eabSdrh } 468fec00eabSdrh nOld = sqlite3MallocSize(pOld); 469fec00eabSdrh if( sqlite3Config.bMemstat ){ 470fec00eabSdrh sqlite3_mutex_enter(mem0.mutex); 471f7141990Sdrh sqlite3StatusSet(SQLITE_STATUS_MALLOC_SIZE, nBytes); 472fec00eabSdrh nNew = sqlite3Config.m.xRoundup(nBytes); 473fec00eabSdrh if( nOld==nNew ){ 474fec00eabSdrh pNew = pOld; 475fec00eabSdrh }else{ 476f7141990Sdrh if( sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED)+nNew-nOld >= 477f7141990Sdrh mem0.alarmThreshold ){ 478fec00eabSdrh sqlite3MallocAlarm(nNew-nOld); 479fec00eabSdrh } 480fec00eabSdrh pNew = sqlite3Config.m.xRealloc(pOld, nNew); 481*d09414cdSdanielk1977 if( pNew==0 && mem0.alarmCallback ){ 482fec00eabSdrh sqlite3MallocAlarm(nBytes); 483fec00eabSdrh pNew = sqlite3Config.m.xRealloc(pOld, nNew); 484fec00eabSdrh } 485fec00eabSdrh if( pNew ){ 486f7141990Sdrh sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, nNew-nOld); 487fec00eabSdrh } 488fec00eabSdrh } 489fec00eabSdrh sqlite3_mutex_leave(mem0.mutex); 490fec00eabSdrh }else{ 491fec00eabSdrh pNew = sqlite3Config.m.xRealloc(pOld, nBytes); 492fec00eabSdrh } 493fec00eabSdrh return pNew; 494fec00eabSdrh } 495fec00eabSdrh 496fec00eabSdrh /* 497fec00eabSdrh ** The public interface to sqlite3Realloc. Make sure that the memory 498fec00eabSdrh ** subsystem is initialized prior to invoking sqliteRealloc. 499fec00eabSdrh */ 500fec00eabSdrh void *sqlite3_realloc(void *pOld, int n){ 501fec00eabSdrh #ifndef SQLITE_OMIT_AUTOINIT 502fec00eabSdrh if( sqlite3_initialize() ) return 0; 503fec00eabSdrh #endif 504fec00eabSdrh return sqlite3Realloc(pOld, n); 505fec00eabSdrh } 506fec00eabSdrh 507a3152895Sdrh 508a3152895Sdrh /* 50917435752Sdrh ** Allocate and zero memory. 510a3152895Sdrh */ 511fec00eabSdrh void *sqlite3MallocZero(int n){ 512fec00eabSdrh void *p = sqlite3Malloc(n); 513a3152895Sdrh if( p ){ 514a3152895Sdrh memset(p, 0, n); 515a3152895Sdrh } 516a3152895Sdrh return p; 517a3152895Sdrh } 51817435752Sdrh 51917435752Sdrh /* 52017435752Sdrh ** Allocate and zero memory. If the allocation fails, make 52117435752Sdrh ** the mallocFailed flag in the connection pointer. 52217435752Sdrh */ 523fec00eabSdrh void *sqlite3DbMallocZero(sqlite3 *db, int n){ 524a1644fd8Sdanielk1977 void *p = sqlite3DbMallocRaw(db, n); 52517435752Sdrh if( p ){ 52617435752Sdrh memset(p, 0, n); 52717435752Sdrh } 52817435752Sdrh return p; 52917435752Sdrh } 53017435752Sdrh 53117435752Sdrh /* 53217435752Sdrh ** Allocate and zero memory. If the allocation fails, make 53317435752Sdrh ** the mallocFailed flag in the connection pointer. 53417435752Sdrh */ 535fec00eabSdrh void *sqlite3DbMallocRaw(sqlite3 *db, int n){ 536a1644fd8Sdanielk1977 void *p = 0; 537a1644fd8Sdanielk1977 if( !db || db->mallocFailed==0 ){ 538fec00eabSdrh p = sqlite3Malloc(n); 539f3a65f7eSdrh if( !p && db ){ 54017435752Sdrh db->mallocFailed = 1; 54117435752Sdrh } 542a1644fd8Sdanielk1977 } 54317435752Sdrh return p; 54417435752Sdrh } 54517435752Sdrh 54626783a58Sdanielk1977 /* 54726783a58Sdanielk1977 ** Resize the block of memory pointed to by p to n bytes. If the 54826783a58Sdanielk1977 ** resize fails, set the mallocFailed flag inthe connection object. 54926783a58Sdanielk1977 */ 550a1644fd8Sdanielk1977 void *sqlite3DbRealloc(sqlite3 *db, void *p, int n){ 551a1644fd8Sdanielk1977 void *pNew = 0; 552a1644fd8Sdanielk1977 if( db->mallocFailed==0 ){ 553a1644fd8Sdanielk1977 pNew = sqlite3_realloc(p, n); 554a1644fd8Sdanielk1977 if( !pNew ){ 555a1644fd8Sdanielk1977 db->mallocFailed = 1; 556a1644fd8Sdanielk1977 } 557a1644fd8Sdanielk1977 } 558a1644fd8Sdanielk1977 return pNew; 559a1644fd8Sdanielk1977 } 560a1644fd8Sdanielk1977 56117435752Sdrh /* 56217435752Sdrh ** Attempt to reallocate p. If the reallocation fails, then free p 56317435752Sdrh ** and set the mallocFailed flag in the database connection. 56417435752Sdrh */ 56517435752Sdrh void *sqlite3DbReallocOrFree(sqlite3 *db, void *p, int n){ 566a3152895Sdrh void *pNew; 567a1644fd8Sdanielk1977 pNew = sqlite3DbRealloc(db, p, n); 568a3152895Sdrh if( !pNew ){ 5691e536953Sdanielk1977 sqlite3_free(p); 570a3152895Sdrh } 571a3152895Sdrh return pNew; 572a3152895Sdrh } 573a3152895Sdrh 574a3152895Sdrh /* 575a3152895Sdrh ** Make a copy of a string in memory obtained from sqliteMalloc(). These 576a3152895Sdrh ** functions call sqlite3MallocRaw() directly instead of sqliteMalloc(). This 577a3152895Sdrh ** is because when memory debugging is turned on, these two functions are 578a3152895Sdrh ** called via macros that record the current file and line number in the 579a3152895Sdrh ** ThreadData structure. 580a3152895Sdrh */ 581a3152895Sdrh char *sqlite3StrDup(const char *z){ 582a3152895Sdrh char *zNew; 583a3152895Sdrh int n; 584a3152895Sdrh if( z==0 ) return 0; 585a3152895Sdrh n = strlen(z)+1; 586e5ae5735Sdrh zNew = sqlite3Malloc(n); 587a3152895Sdrh if( zNew ) memcpy(zNew, z, n); 588a3152895Sdrh return zNew; 589a3152895Sdrh } 590a3152895Sdrh char *sqlite3StrNDup(const char *z, int n){ 591a3152895Sdrh char *zNew; 592a3152895Sdrh if( z==0 ) return 0; 593e5ae5735Sdrh zNew = sqlite3Malloc(n+1); 594a3152895Sdrh if( zNew ){ 595a3152895Sdrh memcpy(zNew, z, n); 596a3152895Sdrh zNew[n] = 0; 597a3152895Sdrh } 598a3152895Sdrh return zNew; 599a3152895Sdrh } 600a3152895Sdrh 6011e536953Sdanielk1977 char *sqlite3DbStrDup(sqlite3 *db, const char *z){ 6021e536953Sdanielk1977 char *zNew = sqlite3StrDup(z); 6031e536953Sdanielk1977 if( z && !zNew ){ 6041e536953Sdanielk1977 db->mallocFailed = 1; 6051e536953Sdanielk1977 } 6061e536953Sdanielk1977 return zNew; 6071e536953Sdanielk1977 } 6081e536953Sdanielk1977 char *sqlite3DbStrNDup(sqlite3 *db, const char *z, int n){ 6091e536953Sdanielk1977 char *zNew = sqlite3StrNDup(z, n); 6101e536953Sdanielk1977 if( z && !zNew ){ 6111e536953Sdanielk1977 db->mallocFailed = 1; 6121e536953Sdanielk1977 } 6131e536953Sdanielk1977 return zNew; 6141e536953Sdanielk1977 } 6151e536953Sdanielk1977 616a3152895Sdrh /* 617a3152895Sdrh ** Create a string from the 2nd and subsequent arguments (up to the 618a3152895Sdrh ** first NULL argument), store the string in memory obtained from 619a3152895Sdrh ** sqliteMalloc() and make the pointer indicated by the 1st argument 620a3152895Sdrh ** point to that string. The 1st argument must either be NULL or 621a3152895Sdrh ** point to memory obtained from sqliteMalloc(). 622a3152895Sdrh */ 623a3152895Sdrh void sqlite3SetString(char **pz, ...){ 624a3152895Sdrh va_list ap; 625a3152895Sdrh int nByte; 626a3152895Sdrh const char *z; 627a3152895Sdrh char *zResult; 628a3152895Sdrh 629a3152895Sdrh assert( pz!=0 ); 630a3152895Sdrh nByte = 1; 631a3152895Sdrh va_start(ap, pz); 632a3152895Sdrh while( (z = va_arg(ap, const char*))!=0 ){ 633a3152895Sdrh nByte += strlen(z); 634a3152895Sdrh } 635a3152895Sdrh va_end(ap); 6361e536953Sdanielk1977 sqlite3_free(*pz); 637e5ae5735Sdrh *pz = zResult = sqlite3Malloc(nByte); 638a3152895Sdrh if( zResult==0 ){ 639a3152895Sdrh return; 640a3152895Sdrh } 641a3152895Sdrh *zResult = 0; 642a3152895Sdrh va_start(ap, pz); 643a3152895Sdrh while( (z = va_arg(ap, const char*))!=0 ){ 644a3152895Sdrh int n = strlen(z); 645a3152895Sdrh memcpy(zResult, z, n); 646a3152895Sdrh zResult += n; 647a3152895Sdrh } 648a3152895Sdrh zResult[0] = 0; 649a3152895Sdrh va_end(ap); 650a3152895Sdrh } 651a3152895Sdrh 652a3152895Sdrh 653a3152895Sdrh /* 654a3152895Sdrh ** This function must be called before exiting any API function (i.e. 65517435752Sdrh ** returning control to the user) that has called sqlite3_malloc or 65617435752Sdrh ** sqlite3_realloc. 657a3152895Sdrh ** 658a3152895Sdrh ** The returned value is normally a copy of the second argument to this 659a3152895Sdrh ** function. However, if a malloc() failure has occured since the previous 660a3152895Sdrh ** invocation SQLITE_NOMEM is returned instead. 661a3152895Sdrh ** 662a3152895Sdrh ** If the first argument, db, is not NULL and a malloc() error has occured, 663a3152895Sdrh ** then the connection error-code (the value returned by sqlite3_errcode()) 664a3152895Sdrh ** is set to SQLITE_NOMEM. 665a3152895Sdrh */ 666a3152895Sdrh int sqlite3ApiExit(sqlite3* db, int rc){ 667a1644fd8Sdanielk1977 /* If the db handle is not NULL, then we must hold the connection handle 668a1644fd8Sdanielk1977 ** mutex here. Otherwise the read (and possible write) of db->mallocFailed 669a1644fd8Sdanielk1977 ** is unsafe, as is the call to sqlite3Error(). 670a1644fd8Sdanielk1977 */ 671a1644fd8Sdanielk1977 assert( !db || sqlite3_mutex_held(db->mutex) ); 6721e536953Sdanielk1977 if( db && db->mallocFailed ){ 673a3152895Sdrh sqlite3Error(db, SQLITE_NOMEM, 0); 67417435752Sdrh db->mallocFailed = 0; 675a3152895Sdrh rc = SQLITE_NOMEM; 676a3152895Sdrh } 677a3152895Sdrh return rc & (db ? db->errMask : 0xff); 678a3152895Sdrh } 679