Update contrib.
4 ** Portions Copyright (c) 2008 Nokia Corporation and/or its subsidiaries. All rights reserved.
6 ** The author disclaims copyright to this source code. In place of
7 ** a legal notice, here is a blessing:
9 ** May you do good and not evil.
10 ** May you find forgiveness for yourself and forgive others.
11 ** May you share freely, never taking more than you give.
13 *************************************************************************
15 ** This file contains code used to implement test interfaces to the
16 ** memory allocation subsystem.
18 ** $Id: test_malloc.c,v 1.47 2008/08/05 17:53:24 drh Exp $
20 #include "sqliteInt.h"
25 #include <sys/param.h>
28 extern char* GetFullFilePath(char* aPath, const char* aFileName);
31 ** This structure is used to encapsulate the global state variables used
32 ** by malloc() fault simulation.
34 static struct MemFault {
35 int iCountdown; /* Number of pending successes before a failure */
36 int nRepeat; /* Number of times to repeat the failure */
37 int nBenign; /* Number of benign failures seen since last config */
38 int nFail; /* Number of failures seen since last config */
39 u8 enable; /* True if enabled */
40 int isInstalled; /* True if the fault simulation layer is installed */
41 int isBenignMode; /* True if malloc failures are considered benign */
42 sqlite3_mem_methods m; /* 'Real' malloc implementation */
46 ** This routine exists as a place to set a breakpoint that will
47 ** fire on any simulated malloc() failure.
49 static void sqlite3Fault(void){
55 ** Check to see if a fault should be simulated. Return true to simulate
56 ** the fault. Return false if the fault should not be simulated.
58 static int faultsimStep(){
59 if( likely(!memfault.enable) ){
62 if( memfault.iCountdown>0 ){
63 memfault.iCountdown--;
68 if( memfault.isBenignMode>0 ){
72 if( memfault.nRepeat<=0 ){
80 ** A version of sqlite3_mem_methods.xMalloc() that includes fault simulation
83 static void *faultsimMalloc(int n){
85 if( !faultsimStep() ){
86 p = memfault.m.xMalloc(n);
93 ** A version of sqlite3_mem_methods.xRealloc() that includes fault simulation
96 static void *faultsimRealloc(void *pOld, int n){
98 if( !faultsimStep() ){
99 p = memfault.m.xRealloc(pOld, n);
105 ** The following method calls are passed directly through to the underlying
114 static void faultsimFree(void *p){
117 static int faultsimSize(void *p){
118 return memfault.m.xSize(p);
120 static int faultsimRoundup(int n){
121 return memfault.m.xRoundup(n);
123 static int faultsimInit(void *p){
124 return memfault.m.xInit(memfault.m.pAppData);
126 static void faultsimShutdown(void *p){
127 memfault.m.xShutdown(memfault.m.pAppData);
131 ** This routine configures the malloc failure simulation. After
132 ** calling this routine, the next nDelay mallocs will succeed, followed
133 ** by a block of nRepeat failures, after which malloc() calls will begin
136 static void faultsimConfig(int nDelay, int nRepeat){
137 memfault.iCountdown = nDelay;
138 memfault.nRepeat = nRepeat;
139 memfault.nBenign = 0;
141 memfault.enable = nDelay>=0;
145 ** Return the number of faults (both hard and benign faults) that have
146 ** occurred since the injector was last configured.
148 static int faultsimFailures(void){
149 return memfault.nFail;
153 ** Return the number of benign faults that have occurred since the
154 ** injector was last configured.
156 static int faultsimBenignFailures(void){
157 return memfault.nBenign;
161 ** Return the number of successes that will occur before the next failure.
162 ** If no failures are scheduled, return -1.
164 static int faultsimPending(void){
165 if( memfault.enable ){
166 return memfault.iCountdown;
173 static void faultsimBeginBenign(void){
174 memfault.isBenignMode++;
176 static void faultsimEndBenign(void){
177 memfault.isBenignMode--;
181 ** Add or remove the fault-simulation layer using sqlite3_config(). If
182 ** the argument is non-zero, the
184 static int faultsimInstall(int install){
185 static struct sqlite3_mem_methods m = {
186 faultsimMalloc, /* xMalloc */
187 faultsimFree, /* xFree */
188 faultsimRealloc, /* xRealloc */
189 faultsimSize, /* xSize */
190 faultsimRoundup, /* xRoundup */
191 faultsimInit, /* xInit */
192 faultsimShutdown, /* xShutdown */
197 install = (install ? 1 : 0);
198 assert(memfault.isInstalled==1 || memfault.isInstalled==0);
200 if( install==memfault.isInstalled ){
205 rc = sqlite3_config(SQLITE_CONFIG_GETMALLOC, &memfault.m);
206 assert(memfault.m.xMalloc);
208 rc = sqlite3_config(SQLITE_CONFIG_MALLOC, &m);
210 sqlite3_test_control(SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS,
211 faultsimBeginBenign, faultsimEndBenign
214 assert(memfault.m.xMalloc);
215 rc = sqlite3_config(SQLITE_CONFIG_MALLOC, &memfault.m);
216 sqlite3_test_control(SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS, 0, 0);
220 memfault.isInstalled = 1;
228 ** This function is implemented in test1.c. Returns a pointer to a static
229 ** buffer containing the symbolic SQLite error code that corresponds to
230 ** the least-significant 8-bits of the integer passed as an argument.
233 ** sqlite3TestErrorName(1) -> "SQLITE_ERROR"
235 const char *sqlite3TestErrorName(int);
238 ** Transform pointers to text and back again
240 static void pointerToText(void *p, char *z){
241 static const char zHex[] = "0123456789abcdef";
249 if( sizeof(n)==sizeof(p) ){
250 memcpy(&n, &p, sizeof(p));
251 }else if( sizeof(u)==sizeof(p) ){
252 memcpy(&u, &p, sizeof(u));
257 for(i=0, k=sizeof(p)*2-1; i<sizeof(p)*2; i++, k--){
263 static int hexToInt(int h){
264 if( h>='0' && h<='9' ){
266 }else if( h>='a' && h<='f' ){
272 static int textToPointer(const char *z, void **pp){
273 sqlite3_uint64 n = 0;
276 for(i=0; i<sizeof(void*)*2 && z[0]; i++){
279 if( v<0 ) return TCL_ERROR;
282 if( *z!=0 ) return TCL_ERROR;
283 if( sizeof(n)==sizeof(*pp) ){
284 memcpy(pp, &n, sizeof(n));
285 }else if( sizeof(u)==sizeof(*pp) ){
287 memcpy(pp, &u, sizeof(u));
295 ** Usage: sqlite3_malloc NBYTES
297 ** Raw test interface for sqlite3_malloc().
299 static int test_malloc(
303 Tcl_Obj *CONST objv[]
309 Tcl_WrongNumArgs(interp, 1, objv, "NBYTES");
312 if( Tcl_GetIntFromObj(interp, objv[1], &nByte) ) return TCL_ERROR;
313 p = sqlite3_malloc((unsigned)nByte);
314 pointerToText(p, zOut);
315 Tcl_AppendResult(interp, zOut, NULL);
320 ** Usage: sqlite3_realloc PRIOR NBYTES
322 ** Raw test interface for sqlite3_realloc().
324 static int test_realloc(
328 Tcl_Obj *CONST objv[]
334 Tcl_WrongNumArgs(interp, 1, objv, "PRIOR NBYTES");
337 if( Tcl_GetIntFromObj(interp, objv[2], &nByte) ) return TCL_ERROR;
338 if( textToPointer(Tcl_GetString(objv[1]), &pPrior) ){
339 Tcl_AppendResult(interp, "bad pointer: ", Tcl_GetString(objv[1]), (char*)0);
342 p = sqlite3_realloc(pPrior, (unsigned)nByte);
343 pointerToText(p, zOut);
344 Tcl_AppendResult(interp, zOut, NULL);
349 ** Usage: sqlite3_free PRIOR
351 ** Raw test interface for sqlite3_free().
353 static int test_free(
357 Tcl_Obj *CONST objv[]
361 Tcl_WrongNumArgs(interp, 1, objv, "PRIOR");
364 if( textToPointer(Tcl_GetString(objv[1]), &pPrior) ){
365 Tcl_AppendResult(interp, "bad pointer: ", Tcl_GetString(objv[1]), (char*)0);
368 sqlite3_free(pPrior);
373 ** These routines are in test_hexio.c
375 int sqlite3TestHexToBin(const char *, int, char *);
376 int sqlite3TestBinToHex(char*,int);
379 ** Usage: memset ADDRESS SIZE HEX
381 ** Set a chunk of memory (obtained from malloc, probably) to a
382 ** specified hex pattern.
384 static int test_memset(
388 Tcl_Obj *CONST objv[]
397 Tcl_WrongNumArgs(interp, 1, objv, "ADDRESS SIZE HEX");
400 if( textToPointer(Tcl_GetString(objv[1]), &p) ){
401 Tcl_AppendResult(interp, "bad pointer: ", Tcl_GetString(objv[1]), (char*)0);
404 if( Tcl_GetIntFromObj(interp, objv[2], &size) ){
408 Tcl_AppendResult(interp, "size must be positive", (char*)0);
411 zHex = Tcl_GetStringFromObj(objv[3], &n);
412 if( n>sizeof(zBin)*2 ) n = sizeof(zBin)*2;
413 n = sqlite3TestHexToBin(zHex, n, zBin);
415 Tcl_AppendResult(interp, "no data", (char*)0);
419 for(i=0; i<size; i++){
426 ** Usage: memget ADDRESS SIZE
428 ** Return memory as hexadecimal text.
430 static int test_memget(
434 Tcl_Obj *CONST objv[]
442 Tcl_WrongNumArgs(interp, 1, objv, "ADDRESS SIZE");
445 if( textToPointer(Tcl_GetString(objv[1]), &p) ){
446 Tcl_AppendResult(interp, "bad pointer: ", Tcl_GetString(objv[1]), (char*)0);
449 if( Tcl_GetIntFromObj(interp, objv[2], &size) ){
453 Tcl_AppendResult(interp, "size must be positive", (char*)0);
458 if( size>(sizeof(zHex)-1)/2 ){
459 n = (sizeof(zHex)-1)/2;
463 memcpy(zHex, zBin, n);
466 sqlite3TestBinToHex(zHex, n);
467 Tcl_AppendResult(interp, zHex, (char*)0);
473 ** Usage: sqlite3_memory_used
475 ** Raw test interface for sqlite3_memory_used().
477 static int test_memory_used(
481 Tcl_Obj *CONST objv[]
483 Tcl_SetObjResult(interp, Tcl_NewWideIntObj(sqlite3_memory_used()));
488 ** Usage: sqlite3_memory_highwater ?RESETFLAG?
490 ** Raw test interface for sqlite3_memory_highwater().
492 static int test_memory_highwater(
496 Tcl_Obj *CONST objv[]
499 if( objc!=1 && objc!=2 ){
500 Tcl_WrongNumArgs(interp, 1, objv, "?RESET?");
504 if( Tcl_GetBooleanFromObj(interp, objv[1], &resetFlag) ) return TCL_ERROR;
506 Tcl_SetObjResult(interp,
507 Tcl_NewWideIntObj(sqlite3_memory_highwater(resetFlag)));
512 ** Usage: sqlite3_memdebug_backtrace DEPTH
514 ** Set the depth of backtracing. If SQLITE_MEMDEBUG is not defined
515 ** then this routine is a no-op.
517 static int test_memdebug_backtrace(
521 Tcl_Obj *CONST objv[]
525 Tcl_WrongNumArgs(interp, 1, objv, "DEPT");
528 if( Tcl_GetIntFromObj(interp, objv[1], &depth) ) return TCL_ERROR;
529 #ifdef SQLITE_MEMDEBUG
531 extern void sqlite3MemdebugBacktrace(int);
532 sqlite3MemdebugBacktrace(depth);
539 ** Usage: sqlite3_memdebug_dump FILENAME
541 ** Write a summary of unfreed memory to FILENAME.
543 static int test_memdebug_dump(
547 Tcl_Obj *CONST objv[]
549 char fnamebuf[MAXPATHLEN + 1];
551 Tcl_WrongNumArgs(interp, 1, objv, "FILENAME");
554 #if defined(SQLITE_MEMDEBUG) || defined(SQLITE_MEMORY_SIZE) \
555 || defined(SQLITE_POW2_MEMORY_SIZE)
557 extern void sqlite3MemdebugDump(const char*);
558 if(GetFullFilePath(fnamebuf, Tcl_GetString(objv[1])) == 0)
560 sqlite3MemdebugDump(fnamebuf);
567 ** Usage: sqlite3_memdebug_malloc_count
569 ** Return the total number of times malloc() has been called.
571 static int test_memdebug_malloc_count(
575 Tcl_Obj *CONST objv[]
579 Tcl_WrongNumArgs(interp, 1, objv, "");
582 #if defined(SQLITE_MEMDEBUG)
584 extern int sqlite3MemdebugMallocCount();
585 nMalloc = sqlite3MemdebugMallocCount();
588 Tcl_SetObjResult(interp, Tcl_NewIntObj(nMalloc));
594 ** Usage: sqlite3_memdebug_fail COUNTER ?OPTIONS?
596 ** where options are:
599 ** -benigncnt <varname>
601 ** Arrange for a simulated malloc() failure after COUNTER successes.
602 ** If a repeat count is specified, the fault is repeated that many
605 ** Each call to this routine overrides the prior counter value.
606 ** This routine returns the number of simulated failures that have
607 ** happened since the previous call to this routine.
609 ** To disable simulated failures, use a COUNTER of -1.
611 static int test_memdebug_fail(
615 Tcl_Obj *CONST objv[]
620 Tcl_Obj *pBenignCnt = 0;
625 Tcl_WrongNumArgs(interp, 1, objv, "COUNTER ?OPTIONS?");
628 if( Tcl_GetIntFromObj(interp, objv[1], &iFail) ) return TCL_ERROR;
630 for(ii=2; ii<objc; ii+=2){
632 char *zOption = Tcl_GetStringFromObj(objv[ii], &nOption);
635 if( nOption>1 && strncmp(zOption, "-repeat", nOption)==0 ){
637 zErr = "option requires an argument: ";
639 if( Tcl_GetIntFromObj(interp, objv[ii+1], &nRepeat) ){
643 }else if( nOption>1 && strncmp(zOption, "-benigncnt", nOption)==0 ){
645 zErr = "option requires an argument: ";
647 pBenignCnt = objv[ii+1];
650 zErr = "unknown option: ";
654 Tcl_AppendResult(interp, zErr, zOption, 0);
659 nBenign = faultsimBenignFailures();
660 nFail = faultsimFailures();
661 faultsimConfig(iFail, nRepeat);
664 Tcl_ObjSetVar2(interp, pBenignCnt, 0, Tcl_NewIntObj(nBenign), 0);
666 Tcl_SetObjResult(interp, Tcl_NewIntObj(nFail));
671 ** Usage: sqlite3_memdebug_pending
673 ** Return the number of malloc() calls that will succeed before a
674 ** simulated failure occurs. A negative return value indicates that
675 ** no malloc() failure is scheduled.
677 static int test_memdebug_pending(
681 Tcl_Obj *CONST objv[]
685 Tcl_WrongNumArgs(interp, 1, objv, "");
688 nPending = faultsimPending();
689 Tcl_SetObjResult(interp, Tcl_NewIntObj(nPending));
695 ** Usage: sqlite3_memdebug_settitle TITLE
697 ** Set a title string stored with each allocation. The TITLE is
698 ** typically the name of the test that was running when the
699 ** allocation occurred. The TITLE is stored with the allocation
700 ** and can be used to figure out which tests are leaking memory.
702 ** Each title overwrite the previous.
704 static int test_memdebug_settitle(
708 Tcl_Obj *CONST objv[]
712 Tcl_WrongNumArgs(interp, 1, objv, "TITLE");
715 zTitle = Tcl_GetString(objv[1]);
716 #ifdef SQLITE_MEMDEBUG
718 extern int sqlite3MemdebugSettitle(const char*);
719 sqlite3MemdebugSettitle(zTitle);
725 #define MALLOC_LOG_FRAMES 10
726 static Tcl_HashTable aMallocLog;
727 static int mallocLogEnabled = 0;
729 typedef struct MallocLog MallocLog;
735 #ifdef SQLITE_MEMDEBUG
736 static void test_memdebug_callback(int nByte, int nFrame, void **aFrame){
737 if( mallocLogEnabled ){
739 Tcl_HashEntry *pEntry;
742 int aKey[MALLOC_LOG_FRAMES];
743 int nKey = sizeof(int)*MALLOC_LOG_FRAMES;
745 memset(aKey, 0, nKey);
746 if( (sizeof(void*)*nFrame)<nKey ){
747 nKey = nFrame*sizeof(void*);
749 memcpy(aKey, aFrame, nKey);
751 pEntry = Tcl_CreateHashEntry(&aMallocLog, (const char *)aKey, &isNew);
753 pLog = (MallocLog *)Tcl_Alloc(sizeof(MallocLog));
754 memset(pLog, 0, sizeof(MallocLog));
755 Tcl_SetHashValue(pEntry, (ClientData)pLog);
757 pLog = (MallocLog *)Tcl_GetHashValue(pEntry);
761 pLog->nByte += nByte;
764 #endif /* SQLITE_MEMDEBUG */
766 static void test_memdebug_log_clear(){
767 Tcl_HashSearch search;
768 Tcl_HashEntry *pEntry;
770 pEntry=Tcl_FirstHashEntry(&aMallocLog, &search);
772 pEntry=Tcl_NextHashEntry(&search)
774 MallocLog *pLog = (MallocLog *)Tcl_GetHashValue(pEntry);
775 Tcl_Free((char *)pLog);
777 Tcl_DeleteHashTable(&aMallocLog);
778 Tcl_InitHashTable(&aMallocLog, MALLOC_LOG_FRAMES);
781 static int test_memdebug_log(
785 Tcl_Obj *CONST objv[]
787 static int isInit = 0;
790 static const char *MB_strs[] = { "start", "stop", "dump", "clear", "sync" };
792 MB_LOG_START, MB_LOG_STOP, MB_LOG_DUMP, MB_LOG_CLEAR, MB_LOG_SYNC
796 #ifdef SQLITE_MEMDEBUG
797 extern void sqlite3MemdebugBacktraceCallback(
798 void (*xBacktrace)(int, int, void **));
799 sqlite3MemdebugBacktraceCallback(test_memdebug_callback);
801 Tcl_InitHashTable(&aMallocLog, MALLOC_LOG_FRAMES);
806 Tcl_WrongNumArgs(interp, 1, objv, "SUB-COMMAND ...");
808 if( Tcl_GetIndexFromObj(interp, objv[1], MB_strs, "sub-command", 0, &iSub) ){
812 switch( (enum MB_enum)iSub ){
814 mallocLogEnabled = 1;
817 mallocLogEnabled = 0;
820 Tcl_HashSearch search;
821 Tcl_HashEntry *pEntry;
822 Tcl_Obj *pRet = Tcl_NewObj();
824 assert(sizeof(int)==sizeof(void*));
827 pEntry=Tcl_FirstHashEntry(&aMallocLog, &search);
829 pEntry=Tcl_NextHashEntry(&search)
831 Tcl_Obj *apElem[MALLOC_LOG_FRAMES+2];
832 MallocLog *pLog = (MallocLog *)Tcl_GetHashValue(pEntry);
833 int *aKey = (int *)Tcl_GetHashKey(&aMallocLog, pEntry);
836 apElem[0] = Tcl_NewIntObj(pLog->nCall);
837 apElem[1] = Tcl_NewIntObj(pLog->nByte);
838 for(ii=0; ii<MALLOC_LOG_FRAMES; ii++){
839 apElem[ii+2] = Tcl_NewIntObj(aKey[ii]);
842 Tcl_ListObjAppendElement(interp, pRet,
843 Tcl_NewListObj(MALLOC_LOG_FRAMES+2, apElem)
847 Tcl_SetObjResult(interp, pRet);
851 test_memdebug_log_clear();
856 #ifdef SQLITE_MEMDEBUG
857 extern void sqlite3MemdebugSync();
858 test_memdebug_log_clear();
859 mallocLogEnabled = 1;
860 sqlite3MemdebugSync();
870 ** Usage: sqlite3_config_scratch SIZE N
872 ** Set the scratch memory buffer using SQLITE_CONFIG_SCRATCH.
873 ** The buffer is static and is of limited size. N might be
874 ** adjusted downward as needed to accomodate the requested size.
875 ** The revised value of N is returned.
877 ** A negative SIZE causes the buffer pointer to be NULL.
879 static int test_config_scratch(
883 Tcl_Obj *CONST objv[]
887 static char *buf = 0;
889 Tcl_WrongNumArgs(interp, 1, objv, "SIZE N");
892 if( Tcl_GetIntFromObj(interp, objv[1], &sz) ) return TCL_ERROR;
893 if( Tcl_GetIntFromObj(interp, objv[2], &N) ) return TCL_ERROR;
897 rc = sqlite3_config(SQLITE_CONFIG_SCRATCH, 0, 0, 0);
899 buf = malloc( sz*N + 1 );
900 rc = sqlite3_config(SQLITE_CONFIG_SCRATCH, buf, sz, N);
902 pResult = Tcl_NewObj();
903 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(rc));
904 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(N));
905 Tcl_SetObjResult(interp, pResult);
910 ** Usage: sqlite3_config_pagecache SIZE N
912 ** Set the page-cache memory buffer using SQLITE_CONFIG_PAGECACHE.
913 ** The buffer is static and is of limited size. N might be
914 ** adjusted downward as needed to accomodate the requested size.
915 ** The revised value of N is returned.
917 ** A negative SIZE causes the buffer pointer to be NULL.
919 static int test_config_pagecache(
923 Tcl_Obj *CONST objv[]
927 static char *buf = 0;
929 Tcl_WrongNumArgs(interp, 1, objv, "SIZE N");
932 if( Tcl_GetIntFromObj(interp, objv[1], &sz) ) return TCL_ERROR;
933 if( Tcl_GetIntFromObj(interp, objv[2], &N) ) return TCL_ERROR;
937 rc = sqlite3_config(SQLITE_CONFIG_PAGECACHE, 0, 0, 0);
939 buf = malloc( sz*N );
940 rc = sqlite3_config(SQLITE_CONFIG_PAGECACHE, buf, sz, N);
942 pResult = Tcl_NewObj();
943 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(rc));
944 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(N));
945 Tcl_SetObjResult(interp, pResult);
950 ** Usage: sqlite3_config_memstatus BOOLEAN
952 ** Enable or disable memory status reporting using SQLITE_CONFIG_MEMSTATUS.
954 static int test_config_memstatus(
958 Tcl_Obj *CONST objv[]
962 Tcl_WrongNumArgs(interp, 1, objv, "BOOLEAN");
965 if( Tcl_GetBooleanFromObj(interp, objv[1], &enable) ) return TCL_ERROR;
966 rc = sqlite3_config(SQLITE_CONFIG_MEMSTATUS, enable);
967 Tcl_SetObjResult(interp, Tcl_NewIntObj(rc));
972 ** Usage: sqlite3_config_chunkalloc
975 static int test_config_chunkalloc(
979 Tcl_Obj *CONST objv[]
984 Tcl_WrongNumArgs(interp, 1, objv, "THRESHOLD");
987 if( Tcl_GetIntFromObj(interp, objv[1], &nThreshold) ) return TCL_ERROR;
988 rc = sqlite3_config(SQLITE_CONFIG_CHUNKALLOC, nThreshold);
989 Tcl_SetObjResult(interp, Tcl_NewIntObj(rc));
994 ** Usage: sqlite3_config_lookaside SIZE COUNT
997 static int test_config_lookaside(
1001 Tcl_Obj *CONST objv[]
1006 Tcl_WrongNumArgs(interp, 1, objv, "SIZE COUNT");
1009 if( Tcl_GetIntFromObj(interp, objv[1], &sz) ) return TCL_ERROR;
1010 if( Tcl_GetIntFromObj(interp, objv[2], &cnt) ) return TCL_ERROR;
1011 rc = sqlite3_config(SQLITE_CONFIG_LOOKASIDE, sz, cnt);
1012 Tcl_SetObjResult(interp, Tcl_NewIntObj(rc));
1018 ** Usage: sqlite3_db_config_lookaside CONNECTION BUFID SIZE COUNT
1020 ** There are two static buffers with BUFID 1 and 2. Each static buffer
1021 ** is 10KB in size. A BUFID of 0 indicates that the buffer should be NULL
1022 ** which will cause sqlite3_db_config() to allocate space on its own.
1024 static int test_db_config_lookaside(
1028 Tcl_Obj *CONST objv[]
1034 static char azBuf[2][10000];
1035 int getDbPointer(Tcl_Interp*, const char*, sqlite3**);
1037 Tcl_WrongNumArgs(interp, 1, objv, "BUFID SIZE COUNT");
1040 if( getDbPointer(interp, Tcl_GetString(objv[1]), &db) ) return TCL_ERROR;
1041 if( Tcl_GetIntFromObj(interp, objv[2], &bufid) ) return TCL_ERROR;
1042 if( Tcl_GetIntFromObj(interp, objv[3], &sz) ) return TCL_ERROR;
1043 if( Tcl_GetIntFromObj(interp, objv[4], &cnt) ) return TCL_ERROR;
1045 rc = sqlite3_db_config(db, SQLITE_DBCONFIG_LOOKASIDE, 0, sz, cnt);
1046 }else if( bufid>=1 && bufid<=2 && sz*cnt<=sizeof(azBuf[0]) ){
1047 rc = sqlite3_db_config(db, SQLITE_DBCONFIG_LOOKASIDE, azBuf[bufid], sz,cnt);
1049 Tcl_AppendResult(interp, "illegal arguments - see documentation", (char*)0);
1052 Tcl_SetObjResult(interp, Tcl_NewIntObj(rc));
1059 ** sqlite3_config_heap NBYTE NMINALLOC
1061 static int test_config_heap(
1065 Tcl_Obj *CONST objv[]
1067 static char *zBuf; /* Use this memory */
1068 static int szBuf; /* Bytes allocated for zBuf */
1069 int nByte; /* Size of buffer to pass to sqlite3_config() */
1070 int nMinAlloc; /* Size of minimum allocation */
1071 int rc; /* Return code of sqlite3_config() */
1073 Tcl_Obj * CONST *aArg = &objv[1];
1077 Tcl_WrongNumArgs(interp, 1, objv, "NBYTE NMINALLOC");
1080 if( Tcl_GetIntFromObj(interp, aArg[0], &nByte) ) return TCL_ERROR;
1081 if( Tcl_GetIntFromObj(interp, aArg[1], &nMinAlloc) ) return TCL_ERROR;
1087 rc = sqlite3_config(SQLITE_CONFIG_HEAP, (void*)0, 0, 0);
1089 zBuf = realloc(zBuf, nByte);
1091 rc = sqlite3_config(SQLITE_CONFIG_HEAP, zBuf, nByte, nMinAlloc);
1094 Tcl_SetResult(interp, (char *)sqlite3TestErrorName(rc), TCL_VOLATILE);
1099 ** tclcmd: sqlite3_config_error [DB]
1101 ** Invoke sqlite3_config() or sqlite3_db_config() with invalid
1102 ** opcodes and verify that they return errors.
1104 static int test_config_error(
1108 Tcl_Obj *CONST objv[]
1111 int getDbPointer(Tcl_Interp*, const char*, sqlite3**);
1113 if( objc!=2 && objc!=1 ){
1114 Tcl_WrongNumArgs(interp, 1, objv, "[DB]");
1118 if( getDbPointer(interp, Tcl_GetString(objv[1]), &db) ) return TCL_ERROR;
1119 if( sqlite3_db_config(db, 99999)!=SQLITE_ERROR ){
1120 Tcl_AppendResult(interp,
1121 "sqlite3_db_config(db, 99999) does not return SQLITE_ERROR",
1126 if( sqlite3_config(99999)!=SQLITE_ERROR ){
1127 Tcl_AppendResult(interp,
1128 "sqlite3_config(99999) does not return SQLITE_ERROR",
1139 ** sqlite3_dump_memsys3 FILENAME
1140 ** sqlite3_dump_memsys5 FILENAME
1142 ** Write a summary of unfreed memsys3 allocations to FILENAME.
1144 static int test_dump_memsys3(
1148 Tcl_Obj *CONST objv[]
1151 Tcl_WrongNumArgs(interp, 1, objv, "FILENAME");
1155 switch( (int)clientData ){
1157 #ifdef SQLITE_ENABLE_MEMSYS3
1158 extern void sqlite3Memsys3Dump(const char*);
1159 sqlite3Memsys3Dump(Tcl_GetString(objv[1]));
1164 #ifdef SQLITE_ENABLE_MEMSYS5
1165 extern void sqlite3Memsys5Dump(const char*);
1166 sqlite3Memsys5Dump(Tcl_GetString(objv[1]));
1175 ** Usage: sqlite3_status OPCODE RESETFLAG
1177 ** Return a list of three elements which are the sqlite3_status() return
1178 ** code, the current value, and the high-water mark value.
1180 static int test_status(
1184 Tcl_Obj *CONST objv[]
1186 int rc, iValue, mxValue;
1187 int i, op, resetFlag;
1188 const char *zOpName;
1189 static const struct {
1193 { "SQLITE_STATUS_MEMORY_USED", SQLITE_STATUS_MEMORY_USED },
1194 { "SQLITE_STATUS_MALLOC_SIZE", SQLITE_STATUS_MALLOC_SIZE },
1195 { "SQLITE_STATUS_PAGECACHE_USED", SQLITE_STATUS_PAGECACHE_USED },
1196 { "SQLITE_STATUS_PAGECACHE_OVERFLOW", SQLITE_STATUS_PAGECACHE_OVERFLOW },
1197 { "SQLITE_STATUS_PAGECACHE_SIZE", SQLITE_STATUS_PAGECACHE_SIZE },
1198 { "SQLITE_STATUS_SCRATCH_USED", SQLITE_STATUS_SCRATCH_USED },
1199 { "SQLITE_STATUS_SCRATCH_OVERFLOW", SQLITE_STATUS_SCRATCH_OVERFLOW },
1200 { "SQLITE_STATUS_SCRATCH_SIZE", SQLITE_STATUS_SCRATCH_SIZE },
1201 { "SQLITE_STATUS_PARSER_STACK", SQLITE_STATUS_PARSER_STACK },
1205 Tcl_WrongNumArgs(interp, 1, objv, "PARAMETER RESETFLAG");
1208 zOpName = Tcl_GetString(objv[1]);
1209 for(i=0; i<ArraySize(aOp); i++){
1210 if( strcmp(aOp[i].zName, zOpName)==0 ){
1215 if( i>=ArraySize(aOp) ){
1216 if( Tcl_GetIntFromObj(interp, objv[1], &op) ) return TCL_ERROR;
1218 if( Tcl_GetBooleanFromObj(interp, objv[2], &resetFlag) ) return TCL_ERROR;
1221 rc = sqlite3_status(op, &iValue, &mxValue, resetFlag);
1222 pResult = Tcl_NewObj();
1223 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(rc));
1224 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(iValue));
1225 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(mxValue));
1226 Tcl_SetObjResult(interp, pResult);
1231 ** Usage: sqlite3_db_status DATABASE OPCODE RESETFLAG
1233 ** Return a list of three elements which are the sqlite3_db_status() return
1234 ** code, the current value, and the high-water mark value.
1236 static int test_db_status(
1240 Tcl_Obj *CONST objv[]
1242 int rc, iValue, mxValue;
1243 int i, op, resetFlag;
1244 const char *zOpName;
1246 int getDbPointer(Tcl_Interp*, const char*, sqlite3**);
1247 static const struct {
1251 { "SQLITE_DBSTATUS_LOOKASIDE_USED", SQLITE_DBSTATUS_LOOKASIDE_USED },
1255 Tcl_WrongNumArgs(interp, 1, objv, "PARAMETER RESETFLAG");
1258 if( getDbPointer(interp, Tcl_GetString(objv[1]), &db) ) return TCL_ERROR;
1259 zOpName = Tcl_GetString(objv[2]);
1260 for(i=0; i<ArraySize(aOp); i++){
1261 if( strcmp(aOp[i].zName, zOpName)==0 ){
1266 if( i>=ArraySize(aOp) ){
1267 if( Tcl_GetIntFromObj(interp, objv[2], &op) ) return TCL_ERROR;
1269 if( Tcl_GetBooleanFromObj(interp, objv[3], &resetFlag) ) return TCL_ERROR;
1272 rc = sqlite3_db_status(db, op, &iValue, &mxValue, resetFlag);
1273 pResult = Tcl_NewObj();
1274 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(rc));
1275 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(iValue));
1276 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(mxValue));
1277 Tcl_SetObjResult(interp, pResult);
1282 ** install_malloc_faultsim BOOLEAN
1284 static int test_install_malloc_faultsim(
1288 Tcl_Obj *CONST objv[]
1294 Tcl_WrongNumArgs(interp, 1, objv, "BOOLEAN");
1297 if( TCL_OK!=Tcl_GetBooleanFromObj(interp, objv[1], &isInstall) ){
1300 rc = faultsimInstall(isInstall);
1301 Tcl_SetResult(interp, (char *)sqlite3TestErrorName(rc), TCL_VOLATILE);
1306 ** Register commands with the TCL interpreter.
1308 int Sqlitetest_malloc_Init(Tcl_Interp *interp){
1311 Tcl_ObjCmdProc *xProc;
1314 { "sqlite3_malloc", test_malloc ,0 },
1315 { "sqlite3_realloc", test_realloc ,0 },
1316 { "sqlite3_free", test_free ,0 },
1317 { "memset", test_memset ,0 },
1318 { "memget", test_memget ,0 },
1319 { "sqlite3_memory_used", test_memory_used ,0 },
1320 { "sqlite3_memory_highwater", test_memory_highwater ,0 },
1321 { "sqlite3_memdebug_backtrace", test_memdebug_backtrace ,0 },
1322 { "sqlite3_memdebug_dump", test_memdebug_dump ,0 },
1323 { "sqlite3_memdebug_fail", test_memdebug_fail ,0 },
1324 { "sqlite3_memdebug_pending", test_memdebug_pending ,0 },
1325 { "sqlite3_memdebug_settitle", test_memdebug_settitle ,0 },
1326 { "sqlite3_memdebug_malloc_count", test_memdebug_malloc_count ,0 },
1327 { "sqlite3_memdebug_log", test_memdebug_log ,0 },
1328 { "sqlite3_config_scratch", test_config_scratch ,0 },
1329 { "sqlite3_config_pagecache", test_config_pagecache ,0 },
1330 { "sqlite3_status", test_status ,0 },
1331 { "sqlite3_db_status", test_db_status ,0 },
1332 { "install_malloc_faultsim", test_install_malloc_faultsim ,0 },
1333 { "sqlite3_config_heap", test_config_heap ,0 },
1334 { "sqlite3_config_memstatus", test_config_memstatus ,0 },
1335 { "sqlite3_config_chunkalloc", test_config_chunkalloc ,0 },
1336 { "sqlite3_config_lookaside", test_config_lookaside ,0 },
1337 { "sqlite3_config_error", test_config_error ,0 },
1338 { "sqlite3_db_config_lookaside",test_db_config_lookaside ,0 },
1339 { "sqlite3_dump_memsys3", test_dump_memsys3 ,3 },
1340 { "sqlite3_dump_memsys5", test_dump_memsys3 ,5 }
1343 for(i=0; i<sizeof(aObjCmd)/sizeof(aObjCmd[0]); i++){
1344 ClientData c = (ClientData)aObjCmd[i].clientData;
1345 Tcl_CreateObjCommand(interp, aObjCmd[i].zName, aObjCmd[i].xProc, c, 0);