xref: /sqlite-3.40.0/src/malloc.c (revision cdcfe95c)
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*cdcfe95cSdanielk1977 ** $Id: malloc.c,v 1.47 2008/11/18 07:27:24 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 /*
358468024dSdanielk1977 ** Set the soft heap-size limit for the library. Passing a zero or
368468024dSdanielk1977 ** 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 ){
484a27a286Sshane     sqlite3MemoryAlarm(softHeapLimitEnforcer, 0, iLimit);
49b21c8cd4Sdrh   }else{
504a27a286Sshane     sqlite3MemoryAlarm(0, 0, 0);
51b21c8cd4Sdrh   }
52b21c8cd4Sdrh   overage = sqlite3_memory_used() - n;
53b21c8cd4Sdrh   if( overage>0 ){
54b21c8cd4Sdrh     sqlite3_release_memory(overage);
55b21c8cd4Sdrh   }
56a3152895Sdrh }
57a3152895Sdrh 
58a3152895Sdrh /*
598468024dSdanielk1977 ** Attempt to release up to n bytes of non-essential memory currently
608468024dSdanielk1977 ** held by SQLite. An example of non-essential memory is memory used to
618468024dSdanielk1977 ** cache database pages that are not currently in use.
62a3152895Sdrh */
63a3152895Sdrh int sqlite3_release_memory(int n){
6486f8c197Sdrh #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT
6567e3da7aSdanielk1977   int nRet = 0;
6667e3da7aSdanielk1977 #if 0
6767e3da7aSdanielk1977   nRet += sqlite3VdbeReleaseMemory(n);
6867e3da7aSdanielk1977 #endif
6967e3da7aSdanielk1977   nRet += sqlite3PcacheReleaseMemory(n-nRet);
70dfb316d4Sdanielk1977   return nRet;
711e536953Sdanielk1977 #else
721e536953Sdanielk1977   return SQLITE_OK;
731e536953Sdanielk1977 #endif
74a3152895Sdrh }
75a3152895Sdrh 
76fec00eabSdrh /*
77fec00eabSdrh ** State information local to the memory allocation subsystem.
78fec00eabSdrh */
795c8f8587Sdanielk1977 static SQLITE_WSD struct Mem0Global {
8023bf0f41Sdanielk1977   /* Number of free pages for scratch and page-cache memory */
8123bf0f41Sdanielk1977   u32 nScratchFree;
8223bf0f41Sdanielk1977   u32 nPageFree;
8323bf0f41Sdanielk1977 
84fec00eabSdrh   sqlite3_mutex *mutex;         /* Mutex to serialize access */
85fec00eabSdrh 
86fec00eabSdrh   /*
87fec00eabSdrh   ** The alarm callback and its arguments.  The mem0.mutex lock will
88fec00eabSdrh   ** be held while the callback is running.  Recursive calls into
89fec00eabSdrh   ** the memory subsystem are allowed, but no new callbacks will be
90fec00eabSdrh   ** issued.  The alarmBusy variable is set to prevent recursive
91fec00eabSdrh   ** callbacks.
92fec00eabSdrh   */
93fec00eabSdrh   sqlite3_int64 alarmThreshold;
94fec00eabSdrh   void (*alarmCallback)(void*, sqlite3_int64,int);
95fec00eabSdrh   void *alarmArg;
96fec00eabSdrh   int alarmBusy;
97fec00eabSdrh 
98fec00eabSdrh   /*
99075c23afSdanielk1977   ** Pointers to the end of sqlite3GlobalConfig.pScratch and
100075c23afSdanielk1977   ** sqlite3GlobalConfig.pPage to a block of memory that records
1019ac3fe97Sdrh   ** which pages are available.
1029ac3fe97Sdrh   */
1039ac3fe97Sdrh   u32 *aScratchFree;
1049ac3fe97Sdrh   u32 *aPageFree;
105*cdcfe95cSdanielk1977 } mem0 = { 62560955, 0, 0, 0, 0, 0, 0, 0, 0 };
1065c8f8587Sdanielk1977 
1075c8f8587Sdanielk1977 #define mem0 GLOBAL(struct Mem0Global, mem0)
108fec00eabSdrh 
109fec00eabSdrh /*
110fec00eabSdrh ** Initialize the memory allocation subsystem.
111fec00eabSdrh */
112fec00eabSdrh int sqlite3MallocInit(void){
113075c23afSdanielk1977   if( sqlite3GlobalConfig.m.xMalloc==0 ){
114fec00eabSdrh     sqlite3MemSetDefault();
115fec00eabSdrh   }
116fec00eabSdrh   memset(&mem0, 0, sizeof(mem0));
117075c23afSdanielk1977   if( sqlite3GlobalConfig.bCoreMutex ){
11859f8c08eSdanielk1977     mem0.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM);
119fec00eabSdrh   }
120075c23afSdanielk1977   if( sqlite3GlobalConfig.pScratch && sqlite3GlobalConfig.szScratch>=100
121075c23afSdanielk1977       && sqlite3GlobalConfig.nScratch>=0 ){
1229ac3fe97Sdrh     int i;
123075c23afSdanielk1977     sqlite3GlobalConfig.szScratch -= 4;
124075c23afSdanielk1977     mem0.aScratchFree = (u32*)&((char*)sqlite3GlobalConfig.pScratch)
125075c23afSdanielk1977                   [sqlite3GlobalConfig.szScratch*sqlite3GlobalConfig.nScratch];
126075c23afSdanielk1977     for(i=0; i<sqlite3GlobalConfig.nScratch; i++){ mem0.aScratchFree[i] = i; }
127075c23afSdanielk1977     mem0.nScratchFree = sqlite3GlobalConfig.nScratch;
1289ac3fe97Sdrh   }else{
129075c23afSdanielk1977     sqlite3GlobalConfig.pScratch = 0;
130075c23afSdanielk1977     sqlite3GlobalConfig.szScratch = 0;
1319ac3fe97Sdrh   }
132075c23afSdanielk1977   if( sqlite3GlobalConfig.pPage && sqlite3GlobalConfig.szPage>=512
133075c23afSdanielk1977       && sqlite3GlobalConfig.nPage>=1 ){
1349ac3fe97Sdrh     int i;
1350a60a384Sdrh     int overhead;
136075c23afSdanielk1977     int sz = sqlite3GlobalConfig.szPage;
137075c23afSdanielk1977     int n = sqlite3GlobalConfig.nPage;
1380a60a384Sdrh     overhead = (4*n + sz - 1)/sz;
139075c23afSdanielk1977     sqlite3GlobalConfig.nPage -= overhead;
140075c23afSdanielk1977     mem0.aPageFree = (u32*)&((char*)sqlite3GlobalConfig.pPage)
141075c23afSdanielk1977                   [sqlite3GlobalConfig.szPage*sqlite3GlobalConfig.nPage];
142075c23afSdanielk1977     for(i=0; i<sqlite3GlobalConfig.nPage; i++){ mem0.aPageFree[i] = i; }
143075c23afSdanielk1977     mem0.nPageFree = sqlite3GlobalConfig.nPage;
1449ac3fe97Sdrh   }else{
145075c23afSdanielk1977     sqlite3GlobalConfig.pPage = 0;
146075c23afSdanielk1977     sqlite3GlobalConfig.szPage = 0;
1479ac3fe97Sdrh   }
148075c23afSdanielk1977   return sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData);
149fec00eabSdrh }
150fec00eabSdrh 
151fec00eabSdrh /*
152fec00eabSdrh ** Deinitialize the memory allocation subsystem.
153fec00eabSdrh */
154fec00eabSdrh void sqlite3MallocEnd(void){
155075c23afSdanielk1977   sqlite3GlobalConfig.m.xShutdown(sqlite3GlobalConfig.m.pAppData);
1569ac3fe97Sdrh   memset(&mem0, 0, sizeof(mem0));
157fec00eabSdrh }
158fec00eabSdrh 
159fec00eabSdrh /*
160fec00eabSdrh ** Return the amount of memory currently checked out.
161fec00eabSdrh */
162fec00eabSdrh sqlite3_int64 sqlite3_memory_used(void){
163f7141990Sdrh   int n, mx;
164c376a198Sdrh   sqlite3_int64 res;
165f7141990Sdrh   sqlite3_status(SQLITE_STATUS_MEMORY_USED, &n, &mx, 0);
166c376a198Sdrh   res = (sqlite3_int64)n;  /* Work around bug in Borland C. Ticket #3216 */
167c376a198Sdrh   return res;
168fec00eabSdrh }
169fec00eabSdrh 
170fec00eabSdrh /*
171fec00eabSdrh ** Return the maximum amount of memory that has ever been
172fec00eabSdrh ** checked out since either the beginning of this process
173fec00eabSdrh ** or since the most recent reset.
174fec00eabSdrh */
175fec00eabSdrh sqlite3_int64 sqlite3_memory_highwater(int resetFlag){
176f7141990Sdrh   int n, mx;
177c376a198Sdrh   sqlite3_int64 res;
178f7141990Sdrh   sqlite3_status(SQLITE_STATUS_MEMORY_USED, &n, &mx, resetFlag);
1797986a71aSdrh   res = (sqlite3_int64)mx;  /* Work around bug in Borland C. Ticket #3216 */
180c376a198Sdrh   return res;
181fec00eabSdrh }
182fec00eabSdrh 
183fec00eabSdrh /*
184fec00eabSdrh ** Change the alarm callback
185fec00eabSdrh */
1864a27a286Sshane int sqlite3MemoryAlarm(
187fec00eabSdrh   void(*xCallback)(void *pArg, sqlite3_int64 used,int N),
188fec00eabSdrh   void *pArg,
189fec00eabSdrh   sqlite3_int64 iThreshold
190fec00eabSdrh ){
191fec00eabSdrh   sqlite3_mutex_enter(mem0.mutex);
192fec00eabSdrh   mem0.alarmCallback = xCallback;
193fec00eabSdrh   mem0.alarmArg = pArg;
194fec00eabSdrh   mem0.alarmThreshold = iThreshold;
195fec00eabSdrh   sqlite3_mutex_leave(mem0.mutex);
196fec00eabSdrh   return SQLITE_OK;
197fec00eabSdrh }
198fec00eabSdrh 
199eec556d3Sshane #ifndef SQLITE_OMIT_DEPRECATED
200fec00eabSdrh /*
2014a27a286Sshane ** Deprecated external interface.  Internal/core SQLite code
2024a27a286Sshane ** should call sqlite3MemoryAlarm.
2034a27a286Sshane */
2044a27a286Sshane int sqlite3_memory_alarm(
2054a27a286Sshane   void(*xCallback)(void *pArg, sqlite3_int64 used,int N),
2064a27a286Sshane   void *pArg,
2074a27a286Sshane   sqlite3_int64 iThreshold
2084a27a286Sshane ){
2094a27a286Sshane   return sqlite3MemoryAlarm(xCallback, pArg, iThreshold);
2104a27a286Sshane }
211eec556d3Sshane #endif
2124a27a286Sshane 
2134a27a286Sshane /*
214fec00eabSdrh ** Trigger the alarm
215fec00eabSdrh */
216fec00eabSdrh static void sqlite3MallocAlarm(int nByte){
217fec00eabSdrh   void (*xCallback)(void*,sqlite3_int64,int);
218fec00eabSdrh   sqlite3_int64 nowUsed;
219fec00eabSdrh   void *pArg;
220fec00eabSdrh   if( mem0.alarmCallback==0 || mem0.alarmBusy  ) return;
221fec00eabSdrh   mem0.alarmBusy = 1;
222fec00eabSdrh   xCallback = mem0.alarmCallback;
223f7141990Sdrh   nowUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED);
224fec00eabSdrh   pArg = mem0.alarmArg;
225fec00eabSdrh   sqlite3_mutex_leave(mem0.mutex);
226fec00eabSdrh   xCallback(pArg, nowUsed, nByte);
227fec00eabSdrh   sqlite3_mutex_enter(mem0.mutex);
228fec00eabSdrh   mem0.alarmBusy = 0;
229fec00eabSdrh }
230fec00eabSdrh 
231fec00eabSdrh /*
232f7141990Sdrh ** Do a memory allocation with statistics and alarms.  Assume the
233f7141990Sdrh ** lock is already held.
234fec00eabSdrh */
235f7141990Sdrh static int mallocWithAlarm(int n, void **pp){
236fec00eabSdrh   int nFull;
237f7141990Sdrh   void *p;
238f7141990Sdrh   assert( sqlite3_mutex_held(mem0.mutex) );
239075c23afSdanielk1977   nFull = sqlite3GlobalConfig.m.xRoundup(n);
240f7141990Sdrh   sqlite3StatusSet(SQLITE_STATUS_MALLOC_SIZE, n);
241f7141990Sdrh   if( mem0.alarmCallback!=0 ){
242f7141990Sdrh     int nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED);
243f7141990Sdrh     if( nUsed+nFull >= mem0.alarmThreshold ){
244fec00eabSdrh       sqlite3MallocAlarm(nFull);
245fec00eabSdrh     }
246f7141990Sdrh   }
247075c23afSdanielk1977   p = sqlite3GlobalConfig.m.xMalloc(nFull);
248d09414cdSdanielk1977   if( p==0 && mem0.alarmCallback ){
249fec00eabSdrh     sqlite3MallocAlarm(nFull);
250075c23afSdanielk1977     p = sqlite3GlobalConfig.m.xMalloc(nFull);
251fec00eabSdrh   }
252c702c7ccSdrh   if( p ){
253c702c7ccSdrh     nFull = sqlite3MallocSize(p);
254c702c7ccSdrh     sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, nFull);
255c702c7ccSdrh   }
256f7141990Sdrh   *pp = p;
257f7141990Sdrh   return nFull;
258fec00eabSdrh }
259f7141990Sdrh 
260f7141990Sdrh /*
261f7141990Sdrh ** Allocate memory.  This routine is like sqlite3_malloc() except that it
262f7141990Sdrh ** assumes the memory subsystem has already been initialized.
263f7141990Sdrh */
264f7141990Sdrh void *sqlite3Malloc(int n){
265f7141990Sdrh   void *p;
266f7141990Sdrh   if( n<=0 ){
267f7141990Sdrh     p = 0;
268075c23afSdanielk1977   }else if( sqlite3GlobalConfig.bMemstat ){
269f7141990Sdrh     sqlite3_mutex_enter(mem0.mutex);
270f7141990Sdrh     mallocWithAlarm(n, &p);
271fec00eabSdrh     sqlite3_mutex_leave(mem0.mutex);
272fec00eabSdrh   }else{
273075c23afSdanielk1977     p = sqlite3GlobalConfig.m.xMalloc(n);
274fec00eabSdrh   }
275fec00eabSdrh   return p;
276fec00eabSdrh }
277fec00eabSdrh 
278fec00eabSdrh /*
279fec00eabSdrh ** This version of the memory allocation is for use by the application.
280fec00eabSdrh ** First make sure the memory subsystem is initialized, then do the
281fec00eabSdrh ** allocation.
282fec00eabSdrh */
283fec00eabSdrh void *sqlite3_malloc(int n){
284fec00eabSdrh #ifndef SQLITE_OMIT_AUTOINIT
285fec00eabSdrh   if( sqlite3_initialize() ) return 0;
286fec00eabSdrh #endif
287fec00eabSdrh   return sqlite3Malloc(n);
288fec00eabSdrh }
289fec00eabSdrh 
290fec00eabSdrh /*
291e5ae5735Sdrh ** Each thread may only have a single outstanding allocation from
292facf0307Sdrh ** xScratchMalloc().  We verify this constraint in the single-threaded
293facf0307Sdrh ** case by setting scratchAllocOut to 1 when an allocation
294e5ae5735Sdrh ** is outstanding clearing it when the allocation is freed.
295e5ae5735Sdrh */
296e5ae5735Sdrh #if SQLITE_THREADSAFE==0 && !defined(NDEBUG)
297facf0307Sdrh static int scratchAllocOut = 0;
298e5ae5735Sdrh #endif
299e5ae5735Sdrh 
300e5ae5735Sdrh 
301e5ae5735Sdrh /*
302e5ae5735Sdrh ** Allocate memory that is to be used and released right away.
303e5ae5735Sdrh ** This routine is similar to alloca() in that it is not intended
304e5ae5735Sdrh ** for situations where the memory might be held long-term.  This
305e5ae5735Sdrh ** routine is intended to get memory to old large transient data
306e5ae5735Sdrh ** structures that would not normally fit on the stack of an
307e5ae5735Sdrh ** embedded processor.
308e5ae5735Sdrh */
309facf0307Sdrh void *sqlite3ScratchMalloc(int n){
310e5ae5735Sdrh   void *p;
311e5ae5735Sdrh   assert( n>0 );
3129ac3fe97Sdrh 
313e5ae5735Sdrh #if SQLITE_THREADSAFE==0 && !defined(NDEBUG)
3149ac3fe97Sdrh   /* Verify that no more than one scratch allocation per thread
3159ac3fe97Sdrh   ** is outstanding at one time.  (This is only checked in the
3169ac3fe97Sdrh   ** single-threaded case since checking in the multi-threaded case
3179ac3fe97Sdrh   ** would be much more complicated.) */
318facf0307Sdrh   assert( scratchAllocOut==0 );
319e5ae5735Sdrh #endif
3209ac3fe97Sdrh 
321075c23afSdanielk1977   if( sqlite3GlobalConfig.szScratch<n ){
322f7141990Sdrh     goto scratch_overflow;
323f7141990Sdrh   }else{
324e5ae5735Sdrh     sqlite3_mutex_enter(mem0.mutex);
325f7141990Sdrh     if( mem0.nScratchFree==0 ){
326f7141990Sdrh       sqlite3_mutex_leave(mem0.mutex);
327f7141990Sdrh       goto scratch_overflow;
328e5ae5735Sdrh     }else{
3299ac3fe97Sdrh       int i;
3309ac3fe97Sdrh       i = mem0.aScratchFree[--mem0.nScratchFree];
331075c23afSdanielk1977       i *= sqlite3GlobalConfig.szScratch;
332f7141990Sdrh       sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_USED, 1);
333e50135e2Sdrh       sqlite3StatusSet(SQLITE_STATUS_SCRATCH_SIZE, n);
3348183e339Sdanielk1977       sqlite3_mutex_leave(mem0.mutex);
335075c23afSdanielk1977       p = (void*)&((char*)sqlite3GlobalConfig.pScratch)[i];
336e5ae5735Sdrh     }
337f7141990Sdrh   }
338f7141990Sdrh #if SQLITE_THREADSAFE==0 && !defined(NDEBUG)
339f7141990Sdrh   scratchAllocOut = p!=0;
340f7141990Sdrh #endif
341f7141990Sdrh 
342f7141990Sdrh   return p;
343f7141990Sdrh 
344f7141990Sdrh scratch_overflow:
345075c23afSdanielk1977   if( sqlite3GlobalConfig.bMemstat ){
346f7141990Sdrh     sqlite3_mutex_enter(mem0.mutex);
347e50135e2Sdrh     sqlite3StatusSet(SQLITE_STATUS_SCRATCH_SIZE, n);
348f7141990Sdrh     n = mallocWithAlarm(n, &p);
349f7141990Sdrh     if( p ) sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_OVERFLOW, n);
3509ac3fe97Sdrh     sqlite3_mutex_leave(mem0.mutex);
351f7141990Sdrh   }else{
352075c23afSdanielk1977     p = sqlite3GlobalConfig.m.xMalloc(n);
353f7141990Sdrh   }
354f7141990Sdrh #if SQLITE_THREADSAFE==0 && !defined(NDEBUG)
355f7141990Sdrh   scratchAllocOut = p!=0;
356f7141990Sdrh #endif
357e5ae5735Sdrh   return p;
358e5ae5735Sdrh }
359facf0307Sdrh void sqlite3ScratchFree(void *p){
360e5ae5735Sdrh   if( p ){
3619ac3fe97Sdrh 
362e5ae5735Sdrh #if SQLITE_THREADSAFE==0 && !defined(NDEBUG)
3639ac3fe97Sdrh     /* Verify that no more than one scratch allocation per thread
3649ac3fe97Sdrh     ** is outstanding at one time.  (This is only checked in the
3659ac3fe97Sdrh     ** single-threaded case since checking in the multi-threaded case
3669ac3fe97Sdrh     ** would be much more complicated.) */
367facf0307Sdrh     assert( scratchAllocOut==1 );
368facf0307Sdrh     scratchAllocOut = 0;
369e5ae5735Sdrh #endif
3709ac3fe97Sdrh 
371075c23afSdanielk1977     if( sqlite3GlobalConfig.pScratch==0
372075c23afSdanielk1977            || p<sqlite3GlobalConfig.pScratch
3739ac3fe97Sdrh            || p>=(void*)mem0.aScratchFree ){
374075c23afSdanielk1977       if( sqlite3GlobalConfig.bMemstat ){
375f7141990Sdrh         int iSize = sqlite3MallocSize(p);
376f7141990Sdrh         sqlite3_mutex_enter(mem0.mutex);
377f7141990Sdrh         sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_OVERFLOW, -iSize);
378f7141990Sdrh         sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -iSize);
379075c23afSdanielk1977         sqlite3GlobalConfig.m.xFree(p);
380f7141990Sdrh         sqlite3_mutex_leave(mem0.mutex);
381f7141990Sdrh       }else{
382075c23afSdanielk1977         sqlite3GlobalConfig.m.xFree(p);
383f7141990Sdrh       }
3849ac3fe97Sdrh     }else{
3859ac3fe97Sdrh       int i;
386075c23afSdanielk1977       i = (u8 *)p - (u8 *)sqlite3GlobalConfig.pScratch;
387075c23afSdanielk1977       i /= sqlite3GlobalConfig.szScratch;
388075c23afSdanielk1977       assert( i>=0 && i<sqlite3GlobalConfig.nScratch );
389f7141990Sdrh       sqlite3_mutex_enter(mem0.mutex);
39000e13613Sdanielk1977       assert( mem0.nScratchFree<(u32)sqlite3GlobalConfig.nScratch );
3919ac3fe97Sdrh       mem0.aScratchFree[mem0.nScratchFree++] = i;
392f7141990Sdrh       sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_USED, -1);
3939ac3fe97Sdrh       sqlite3_mutex_leave(mem0.mutex);
3949ac3fe97Sdrh     }
395e5ae5735Sdrh   }
396e5ae5735Sdrh }
397e5ae5735Sdrh 
398e5ae5735Sdrh /*
399f7141990Sdrh ** Allocate memory to be used by the page cache.  Make use of the
400f7141990Sdrh ** memory buffer provided by SQLITE_CONFIG_PAGECACHE if there is one
401f7141990Sdrh ** and that memory is of the right size and is not completely
402f7141990Sdrh ** consumed.  Otherwise, failover to sqlite3Malloc().
403facf0307Sdrh */
4048c0a791aSdanielk1977 #if 0
405f7141990Sdrh void *sqlite3PageMalloc(int n){
406f7141990Sdrh   void *p;
407f7141990Sdrh   assert( n>0 );
408f7141990Sdrh   assert( (n & (n-1))==0 );
409f7141990Sdrh   assert( n>=512 && n<=32768 );
410f7141990Sdrh 
411075c23afSdanielk1977   if( sqlite3GlobalConfig.szPage<n ){
412f7141990Sdrh     goto page_overflow;
413f7141990Sdrh   }else{
414f7141990Sdrh     sqlite3_mutex_enter(mem0.mutex);
415f7141990Sdrh     if( mem0.nPageFree==0 ){
416f7141990Sdrh       sqlite3_mutex_leave(mem0.mutex);
417f7141990Sdrh       goto page_overflow;
418f7141990Sdrh     }else{
419f7141990Sdrh       int i;
420f7141990Sdrh       i = mem0.aPageFree[--mem0.nPageFree];
421f7141990Sdrh       sqlite3_mutex_leave(mem0.mutex);
422075c23afSdanielk1977       i *= sqlite3GlobalConfig.szPage;
423e50135e2Sdrh       sqlite3StatusSet(SQLITE_STATUS_PAGECACHE_SIZE, n);
424f7141990Sdrh       sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_USED, 1);
425075c23afSdanielk1977       p = (void*)&((char*)sqlite3GlobalConfig.pPage)[i];
426f7141990Sdrh     }
427f7141990Sdrh   }
428f7141990Sdrh   return p;
429f7141990Sdrh 
430f7141990Sdrh page_overflow:
431075c23afSdanielk1977   if( sqlite3GlobalConfig.bMemstat ){
432f7141990Sdrh     sqlite3_mutex_enter(mem0.mutex);
433e50135e2Sdrh     sqlite3StatusSet(SQLITE_STATUS_PAGECACHE_SIZE, n);
434f7141990Sdrh     n = mallocWithAlarm(n, &p);
435f7141990Sdrh     if( p ) sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_OVERFLOW, n);
436f7141990Sdrh     sqlite3_mutex_leave(mem0.mutex);
437f7141990Sdrh   }else{
438075c23afSdanielk1977     p = sqlite3GlobalConfig.m.xMalloc(n);
439f7141990Sdrh   }
440f7141990Sdrh   return p;
441f7141990Sdrh }
442f7141990Sdrh void sqlite3PageFree(void *p){
443f7141990Sdrh   if( p ){
444075c23afSdanielk1977     if( sqlite3GlobalConfig.pPage==0
445075c23afSdanielk1977            || p<sqlite3GlobalConfig.pPage
446f7141990Sdrh            || p>=(void*)mem0.aPageFree ){
4474b9507a0Sdanielk1977       /* In this case, the page allocation was obtained from a regular
4484b9507a0Sdanielk1977       ** call to sqlite3_mem_methods.xMalloc() (a page-cache-memory
4494b9507a0Sdanielk1977       ** "overflow"). Free the block with sqlite3_mem_methods.xFree().
4504b9507a0Sdanielk1977       */
451075c23afSdanielk1977       if( sqlite3GlobalConfig.bMemstat ){
452f7141990Sdrh         int iSize = sqlite3MallocSize(p);
453f7141990Sdrh         sqlite3_mutex_enter(mem0.mutex);
454f7141990Sdrh         sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_OVERFLOW, -iSize);
455f7141990Sdrh         sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -iSize);
456075c23afSdanielk1977         sqlite3GlobalConfig.m.xFree(p);
457f7141990Sdrh         sqlite3_mutex_leave(mem0.mutex);
458f7141990Sdrh       }else{
459075c23afSdanielk1977         sqlite3GlobalConfig.m.xFree(p);
460f7141990Sdrh       }
461f7141990Sdrh     }else{
462075c23afSdanielk1977       /* The page allocation was allocated from the sqlite3GlobalConfig.pPage
4634b9507a0Sdanielk1977       ** buffer. In this case all that is add the index of the page in
464075c23afSdanielk1977       ** the sqlite3GlobalConfig.pPage array to the set of free indexes stored
4654b9507a0Sdanielk1977       ** in the mem0.aPageFree[] array.
4664b9507a0Sdanielk1977       */
467f7141990Sdrh       int i;
468075c23afSdanielk1977       i = (u8 *)p - (u8 *)sqlite3GlobalConfig.pPage;
469075c23afSdanielk1977       i /= sqlite3GlobalConfig.szPage;
470075c23afSdanielk1977       assert( i>=0 && i<sqlite3GlobalConfig.nPage );
471f7141990Sdrh       sqlite3_mutex_enter(mem0.mutex);
472075c23afSdanielk1977       assert( mem0.nPageFree<sqlite3GlobalConfig.nPage );
473f7141990Sdrh       mem0.aPageFree[mem0.nPageFree++] = i;
474f7141990Sdrh       sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_USED, -1);
475f7141990Sdrh       sqlite3_mutex_leave(mem0.mutex);
4765f4bcf15Sdrh #if !defined(NDEBUG) && 0
4774b9507a0Sdanielk1977       /* Assert that a duplicate was not just inserted into aPageFree[]. */
4784b9507a0Sdanielk1977       for(i=0; i<mem0.nPageFree-1; i++){
4794b9507a0Sdanielk1977         assert( mem0.aPageFree[i]!=mem0.aPageFree[mem0.nPageFree-1] );
4804b9507a0Sdanielk1977       }
4814b9507a0Sdanielk1977 #endif
482f7141990Sdrh     }
483f7141990Sdrh   }
484facf0307Sdrh }
4858c0a791aSdanielk1977 #endif
486facf0307Sdrh 
487facf0307Sdrh /*
488633e6d57Sdrh ** TRUE if p is a lookaside memory allocation from db
489633e6d57Sdrh */
4904150ebf8Sdrh #ifndef SQLITE_OMIT_LOOKASIDE
491633e6d57Sdrh static int isLookaside(sqlite3 *db, void *p){
492633e6d57Sdrh   return db && p && p>=db->lookaside.pStart && p<db->lookaside.pEnd;
493633e6d57Sdrh }
4944150ebf8Sdrh #else
4954150ebf8Sdrh #define isLookaside(A,B) 0
4964150ebf8Sdrh #endif
497633e6d57Sdrh 
498633e6d57Sdrh /*
499fec00eabSdrh ** Return the size of a memory allocation previously obtained from
500fec00eabSdrh ** sqlite3Malloc() or sqlite3_malloc().
501fec00eabSdrh */
502fec00eabSdrh int sqlite3MallocSize(void *p){
503075c23afSdanielk1977   return sqlite3GlobalConfig.m.xSize(p);
504fec00eabSdrh }
505633e6d57Sdrh int sqlite3DbMallocSize(sqlite3 *db, void *p){
506633e6d57Sdrh   if( isLookaside(db, p) ){
507633e6d57Sdrh     return db->lookaside.sz;
508633e6d57Sdrh   }else{
509075c23afSdanielk1977     return sqlite3GlobalConfig.m.xSize(p);
510633e6d57Sdrh   }
511633e6d57Sdrh }
512fec00eabSdrh 
513fec00eabSdrh /*
514fec00eabSdrh ** Free memory previously obtained from sqlite3Malloc().
515fec00eabSdrh */
516fec00eabSdrh void sqlite3_free(void *p){
517fec00eabSdrh   if( p==0 ) return;
518075c23afSdanielk1977   if( sqlite3GlobalConfig.bMemstat ){
519fec00eabSdrh     sqlite3_mutex_enter(mem0.mutex);
520f7141990Sdrh     sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -sqlite3MallocSize(p));
521075c23afSdanielk1977     sqlite3GlobalConfig.m.xFree(p);
522fec00eabSdrh     sqlite3_mutex_leave(mem0.mutex);
523fec00eabSdrh   }else{
524075c23afSdanielk1977     sqlite3GlobalConfig.m.xFree(p);
525fec00eabSdrh   }
526fec00eabSdrh }
527fec00eabSdrh 
528fec00eabSdrh /*
529633e6d57Sdrh ** Free memory that might be associated with a particular database
530633e6d57Sdrh ** connection.
531633e6d57Sdrh */
532633e6d57Sdrh void sqlite3DbFree(sqlite3 *db, void *p){
533633e6d57Sdrh   if( isLookaside(db, p) ){
534633e6d57Sdrh     LookasideSlot *pBuf = (LookasideSlot*)p;
535633e6d57Sdrh     pBuf->pNext = db->lookaside.pFree;
536633e6d57Sdrh     db->lookaside.pFree = pBuf;
537633e6d57Sdrh     db->lookaside.nOut--;
538633e6d57Sdrh   }else{
539633e6d57Sdrh     sqlite3_free(p);
540633e6d57Sdrh   }
541633e6d57Sdrh }
542633e6d57Sdrh 
543633e6d57Sdrh /*
544fec00eabSdrh ** Change the size of an existing memory allocation
545fec00eabSdrh */
546fec00eabSdrh void *sqlite3Realloc(void *pOld, int nBytes){
547fec00eabSdrh   int nOld, nNew;
548fec00eabSdrh   void *pNew;
549fec00eabSdrh   if( pOld==0 ){
550fec00eabSdrh     return sqlite3Malloc(nBytes);
551fec00eabSdrh   }
552fec00eabSdrh   if( nBytes<=0 ){
553fec00eabSdrh     sqlite3_free(pOld);
554fec00eabSdrh     return 0;
555fec00eabSdrh   }
556fec00eabSdrh   nOld = sqlite3MallocSize(pOld);
557075c23afSdanielk1977   if( sqlite3GlobalConfig.bMemstat ){
558fec00eabSdrh     sqlite3_mutex_enter(mem0.mutex);
559f7141990Sdrh     sqlite3StatusSet(SQLITE_STATUS_MALLOC_SIZE, nBytes);
560075c23afSdanielk1977     nNew = sqlite3GlobalConfig.m.xRoundup(nBytes);
561fec00eabSdrh     if( nOld==nNew ){
562fec00eabSdrh       pNew = pOld;
563fec00eabSdrh     }else{
564f7141990Sdrh       if( sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED)+nNew-nOld >=
565f7141990Sdrh             mem0.alarmThreshold ){
566fec00eabSdrh         sqlite3MallocAlarm(nNew-nOld);
567fec00eabSdrh       }
568075c23afSdanielk1977       pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew);
569d09414cdSdanielk1977       if( pNew==0 && mem0.alarmCallback ){
570fec00eabSdrh         sqlite3MallocAlarm(nBytes);
571075c23afSdanielk1977         pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew);
572fec00eabSdrh       }
573fec00eabSdrh       if( pNew ){
574c702c7ccSdrh         nNew = sqlite3MallocSize(pNew);
575f7141990Sdrh         sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, nNew-nOld);
576fec00eabSdrh       }
577fec00eabSdrh     }
578fec00eabSdrh     sqlite3_mutex_leave(mem0.mutex);
579fec00eabSdrh   }else{
580075c23afSdanielk1977     pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nBytes);
581fec00eabSdrh   }
582fec00eabSdrh   return pNew;
583fec00eabSdrh }
584fec00eabSdrh 
585fec00eabSdrh /*
586fec00eabSdrh ** The public interface to sqlite3Realloc.  Make sure that the memory
587fec00eabSdrh ** subsystem is initialized prior to invoking sqliteRealloc.
588fec00eabSdrh */
589fec00eabSdrh void *sqlite3_realloc(void *pOld, int n){
590fec00eabSdrh #ifndef SQLITE_OMIT_AUTOINIT
591fec00eabSdrh   if( sqlite3_initialize() ) return 0;
592fec00eabSdrh #endif
593fec00eabSdrh   return sqlite3Realloc(pOld, n);
594fec00eabSdrh }
595fec00eabSdrh 
596a3152895Sdrh 
597a3152895Sdrh /*
59817435752Sdrh ** Allocate and zero memory.
599a3152895Sdrh */
600fec00eabSdrh void *sqlite3MallocZero(int n){
601fec00eabSdrh   void *p = sqlite3Malloc(n);
602a3152895Sdrh   if( p ){
603a3152895Sdrh     memset(p, 0, n);
604a3152895Sdrh   }
605a3152895Sdrh   return p;
606a3152895Sdrh }
60717435752Sdrh 
60817435752Sdrh /*
60917435752Sdrh ** Allocate and zero memory.  If the allocation fails, make
61017435752Sdrh ** the mallocFailed flag in the connection pointer.
61117435752Sdrh */
612fec00eabSdrh void *sqlite3DbMallocZero(sqlite3 *db, int n){
613a1644fd8Sdanielk1977   void *p = sqlite3DbMallocRaw(db, n);
61417435752Sdrh   if( p ){
61517435752Sdrh     memset(p, 0, n);
61617435752Sdrh   }
61717435752Sdrh   return p;
61817435752Sdrh }
61917435752Sdrh 
62017435752Sdrh /*
62117435752Sdrh ** Allocate and zero memory.  If the allocation fails, make
62217435752Sdrh ** the mallocFailed flag in the connection pointer.
623ddecae79Sdrh **
624ddecae79Sdrh ** If db!=0 and db->mallocFailed is true (indicating a prior malloc
625ddecae79Sdrh ** failure on the same database connection) then always return 0.
626ddecae79Sdrh ** Hence for a particular database connection, once malloc starts
627ddecae79Sdrh ** failing, it fails consistently until mallocFailed is reset.
628ddecae79Sdrh ** This is an important assumption.  There are many places in the
629ddecae79Sdrh ** code that do things like this:
630ddecae79Sdrh **
631ddecae79Sdrh **         int *a = (int*)sqlite3DbMallocRaw(db, 100);
632ddecae79Sdrh **         int *b = (int*)sqlite3DbMallocRaw(db, 200);
633ddecae79Sdrh **         if( b ) a[10] = 9;
634ddecae79Sdrh **
635ddecae79Sdrh ** In other words, if a subsequent malloc (ex: "b") worked, it is assumed
636ddecae79Sdrh ** that all prior mallocs (ex: "a") worked too.
63717435752Sdrh */
638fec00eabSdrh void *sqlite3DbMallocRaw(sqlite3 *db, int n){
639633e6d57Sdrh   void *p;
6404150ebf8Sdrh #ifndef SQLITE_OMIT_LOOKASIDE
641633e6d57Sdrh   if( db ){
642633e6d57Sdrh     LookasideSlot *pBuf;
643633e6d57Sdrh     if( db->mallocFailed ){
644633e6d57Sdrh       return 0;
645633e6d57Sdrh     }
646633e6d57Sdrh     if( db->lookaside.bEnabled && n<=db->lookaside.sz
647633e6d57Sdrh          && (pBuf = db->lookaside.pFree)!=0 ){
648633e6d57Sdrh       db->lookaside.pFree = pBuf->pNext;
649633e6d57Sdrh       db->lookaside.nOut++;
650633e6d57Sdrh       if( db->lookaside.nOut>db->lookaside.mxOut ){
651633e6d57Sdrh         db->lookaside.mxOut = db->lookaside.nOut;
652633e6d57Sdrh       }
653633e6d57Sdrh       return (void*)pBuf;
654633e6d57Sdrh     }
655633e6d57Sdrh   }
656ddecae79Sdrh #else
657ddecae79Sdrh   if( db && db->mallocFailed ){
658ddecae79Sdrh     return 0;
659ddecae79Sdrh   }
6604150ebf8Sdrh #endif
661fec00eabSdrh   p = sqlite3Malloc(n);
662f3a65f7eSdrh   if( !p && db ){
66317435752Sdrh     db->mallocFailed = 1;
66417435752Sdrh   }
66517435752Sdrh   return p;
66617435752Sdrh }
66717435752Sdrh 
66826783a58Sdanielk1977 /*
66926783a58Sdanielk1977 ** Resize the block of memory pointed to by p to n bytes. If the
67026783a58Sdanielk1977 ** resize fails, set the mallocFailed flag in the connection object.
67126783a58Sdanielk1977 */
672a1644fd8Sdanielk1977 void *sqlite3DbRealloc(sqlite3 *db, void *p, int n){
673a1644fd8Sdanielk1977   void *pNew = 0;
674a1644fd8Sdanielk1977   if( db->mallocFailed==0 ){
675633e6d57Sdrh     if( p==0 ){
676633e6d57Sdrh       return sqlite3DbMallocRaw(db, n);
677633e6d57Sdrh     }
678633e6d57Sdrh     if( isLookaside(db, p) ){
679633e6d57Sdrh       if( n<=db->lookaside.sz ){
680633e6d57Sdrh         return p;
681633e6d57Sdrh       }
682633e6d57Sdrh       pNew = sqlite3DbMallocRaw(db, n);
683633e6d57Sdrh       if( pNew ){
684633e6d57Sdrh         memcpy(pNew, p, db->lookaside.sz);
685633e6d57Sdrh         sqlite3DbFree(db, p);
686633e6d57Sdrh       }
687633e6d57Sdrh     }else{
688a1644fd8Sdanielk1977       pNew = sqlite3_realloc(p, n);
689a1644fd8Sdanielk1977       if( !pNew ){
690a1644fd8Sdanielk1977         db->mallocFailed = 1;
691a1644fd8Sdanielk1977       }
692a1644fd8Sdanielk1977     }
693633e6d57Sdrh   }
694a1644fd8Sdanielk1977   return pNew;
695a1644fd8Sdanielk1977 }
696a1644fd8Sdanielk1977 
69717435752Sdrh /*
69817435752Sdrh ** Attempt to reallocate p.  If the reallocation fails, then free p
69917435752Sdrh ** and set the mallocFailed flag in the database connection.
70017435752Sdrh */
70117435752Sdrh void *sqlite3DbReallocOrFree(sqlite3 *db, void *p, int n){
702a3152895Sdrh   void *pNew;
703a1644fd8Sdanielk1977   pNew = sqlite3DbRealloc(db, p, n);
704a3152895Sdrh   if( !pNew ){
705633e6d57Sdrh     sqlite3DbFree(db, p);
706a3152895Sdrh   }
707a3152895Sdrh   return pNew;
708a3152895Sdrh }
709a3152895Sdrh 
710a3152895Sdrh /*
711a3152895Sdrh ** Make a copy of a string in memory obtained from sqliteMalloc(). These
712a3152895Sdrh ** functions call sqlite3MallocRaw() directly instead of sqliteMalloc(). This
713a3152895Sdrh ** is because when memory debugging is turned on, these two functions are
714a3152895Sdrh ** called via macros that record the current file and line number in the
715a3152895Sdrh ** ThreadData structure.
716a3152895Sdrh */
717633e6d57Sdrh char *sqlite3DbStrDup(sqlite3 *db, const char *z){
718a3152895Sdrh   char *zNew;
719633e6d57Sdrh   size_t n;
720633e6d57Sdrh   if( z==0 ){
721633e6d57Sdrh     return 0;
722a3152895Sdrh   }
723633e6d57Sdrh   n = strlen(z)+1;
724633e6d57Sdrh   assert( (n&0x7fffffff)==n );
725633e6d57Sdrh   zNew = sqlite3DbMallocRaw(db, (int)n);
726a3152895Sdrh   if( zNew ){
727a3152895Sdrh     memcpy(zNew, z, n);
7281e536953Sdanielk1977   }
7291e536953Sdanielk1977   return zNew;
7301e536953Sdanielk1977 }
7311e536953Sdanielk1977 char *sqlite3DbStrNDup(sqlite3 *db, const char *z, int n){
732633e6d57Sdrh   char *zNew;
733633e6d57Sdrh   if( z==0 ){
734633e6d57Sdrh     return 0;
735633e6d57Sdrh   }
736633e6d57Sdrh   assert( (n&0x7fffffff)==n );
737633e6d57Sdrh   zNew = sqlite3DbMallocRaw(db, n+1);
738633e6d57Sdrh   if( zNew ){
739633e6d57Sdrh     memcpy(zNew, z, n);
740633e6d57Sdrh     zNew[n] = 0;
7411e536953Sdanielk1977   }
7421e536953Sdanielk1977   return zNew;
7431e536953Sdanielk1977 }
7441e536953Sdanielk1977 
745a3152895Sdrh /*
746f089aa45Sdrh ** Create a string from the zFromat argument and the va_list that follows.
747f089aa45Sdrh ** Store the string in memory obtained from sqliteMalloc() and make *pz
748f089aa45Sdrh ** point to that string.
749a3152895Sdrh */
750f089aa45Sdrh void sqlite3SetString(char **pz, sqlite3 *db, const char *zFormat, ...){
751a3152895Sdrh   va_list ap;
752f089aa45Sdrh   char *z;
753a3152895Sdrh 
754f089aa45Sdrh   va_start(ap, zFormat);
755f089aa45Sdrh   z = sqlite3VMPrintf(db, zFormat, ap);
756a3152895Sdrh   va_end(ap);
757633e6d57Sdrh   sqlite3DbFree(db, *pz);
758f089aa45Sdrh   *pz = z;
759a3152895Sdrh }
760a3152895Sdrh 
761a3152895Sdrh 
762a3152895Sdrh /*
763a3152895Sdrh ** This function must be called before exiting any API function (i.e.
76417435752Sdrh ** returning control to the user) that has called sqlite3_malloc or
76517435752Sdrh ** sqlite3_realloc.
766a3152895Sdrh **
767a3152895Sdrh ** The returned value is normally a copy of the second argument to this
768a3152895Sdrh ** function. However, if a malloc() failure has occured since the previous
769a3152895Sdrh ** invocation SQLITE_NOMEM is returned instead.
770a3152895Sdrh **
771a3152895Sdrh ** If the first argument, db, is not NULL and a malloc() error has occured,
772a3152895Sdrh ** then the connection error-code (the value returned by sqlite3_errcode())
773a3152895Sdrh ** is set to SQLITE_NOMEM.
774a3152895Sdrh */
775a3152895Sdrh int sqlite3ApiExit(sqlite3* db, int rc){
776a1644fd8Sdanielk1977   /* If the db handle is not NULL, then we must hold the connection handle
777a1644fd8Sdanielk1977   ** mutex here. Otherwise the read (and possible write) of db->mallocFailed
778a1644fd8Sdanielk1977   ** is unsafe, as is the call to sqlite3Error().
779a1644fd8Sdanielk1977   */
780a1644fd8Sdanielk1977   assert( !db || sqlite3_mutex_held(db->mutex) );
78198c21903Sdanielk1977   if( db && (db->mallocFailed || rc==SQLITE_IOERR_NOMEM) ){
782a3152895Sdrh     sqlite3Error(db, SQLITE_NOMEM, 0);
78317435752Sdrh     db->mallocFailed = 0;
784a3152895Sdrh     rc = SQLITE_NOMEM;
785a3152895Sdrh   }
786a3152895Sdrh   return rc & (db ? db->errMask : 0xff);
787a3152895Sdrh }
788