1 /* 2 ** 2015-05-25 3 ** 4 ** The author disclaims copyright to this source code. In place of 5 ** a legal notice, here is a blessing: 6 ** 7 ** May you do good and not evil. 8 ** May you find forgiveness for yourself and forgive others. 9 ** May you share freely, never taking more than you give. 10 ** 11 ************************************************************************* 12 ** 13 ** This is a utility program designed to aid running regressions tests on 14 ** the SQLite library using data from external fuzzers. 15 ** 16 ** This program reads content from an SQLite database file with the following 17 ** schema: 18 ** 19 ** CREATE TABLE db( 20 ** dbid INTEGER PRIMARY KEY, -- database id 21 ** dbcontent BLOB -- database disk file image 22 ** ); 23 ** CREATE TABLE xsql( 24 ** sqlid INTEGER PRIMARY KEY, -- SQL script id 25 ** sqltext TEXT -- Text of SQL statements to run 26 ** ); 27 ** CREATE TABLE IF NOT EXISTS readme( 28 ** msg TEXT -- Human-readable description of this test collection 29 ** ); 30 ** 31 ** For each database file in the DB table, the SQL text in the XSQL table 32 ** is run against that database. All README.MSG values are printed prior 33 ** to the start of the test (unless the --quiet option is used). If the 34 ** DB table is empty, then all entries in XSQL are run against an empty 35 ** in-memory database. 36 ** 37 ** This program is looking for crashes, assertion faults, and/or memory leaks. 38 ** No attempt is made to verify the output. The assumption is that either all 39 ** of the database files or all of the SQL statements are malformed inputs, 40 ** generated by a fuzzer, that need to be checked to make sure they do not 41 ** present a security risk. 42 ** 43 ** This program also includes some command-line options to help with 44 ** creation and maintenance of the source content database. The command 45 ** 46 ** ./fuzzcheck database.db --load-sql FILE... 47 ** 48 ** Loads all FILE... arguments into the XSQL table. The --load-db option 49 ** works the same but loads the files into the DB table. The -m option can 50 ** be used to initialize the README table. The "database.db" file is created 51 ** if it does not previously exist. Example: 52 ** 53 ** ./fuzzcheck new.db --load-sql *.sql 54 ** ./fuzzcheck new.db --load-db *.db 55 ** ./fuzzcheck new.db -m 'New test cases' 56 ** 57 ** The three commands above will create the "new.db" file and initialize all 58 ** tables. Then do "./fuzzcheck new.db" to run the tests. 59 ** 60 ** DEBUGGING HINTS: 61 ** 62 ** If fuzzcheck does crash, it can be run in the debugger and the content 63 ** of the global variable g.zTextName[] will identify the specific XSQL and 64 ** DB values that were running when the crash occurred. 65 ** 66 ** DBSQLFUZZ: (Added 2020-02-25) 67 ** 68 ** The dbsqlfuzz fuzzer includes both a database file and SQL to run against 69 ** that database in its input. This utility can now process dbsqlfuzz 70 ** input files. Load such files using the "--load-dbsql FILE ..." command-line 71 ** option. 72 ** 73 ** Dbsqlfuzz inputs are ordinary text. The first part of the file is text 74 ** that describes the content of the database (using a lot of hexadecimal), 75 ** then there is a divider line followed by the SQL to run against the 76 ** database. Because they are ordinary text, dbsqlfuzz inputs are stored 77 ** in the XSQL table, as if they were ordinary SQL inputs. The isDbSql() 78 ** function can look at a text string and determine whether or not it is 79 ** a valid dbsqlfuzz input. 80 */ 81 #include <stdio.h> 82 #include <stdlib.h> 83 #include <string.h> 84 #include <stdarg.h> 85 #include <ctype.h> 86 #include <assert.h> 87 #include "sqlite3.h" 88 #define ISSPACE(X) isspace((unsigned char)(X)) 89 #define ISDIGIT(X) isdigit((unsigned char)(X)) 90 91 92 #ifdef __unix__ 93 # include <signal.h> 94 # include <unistd.h> 95 #endif 96 97 #include <stddef.h> 98 #if !defined(_MSC_VER) 99 # include <stdint.h> 100 #endif 101 102 #if defined(_MSC_VER) 103 typedef unsigned char uint8_t; 104 #endif 105 106 /* 107 ** Files in the virtual file system. 108 */ 109 typedef struct VFile VFile; 110 struct VFile { 111 char *zFilename; /* Filename. NULL for delete-on-close. From malloc() */ 112 int sz; /* Size of the file in bytes */ 113 int nRef; /* Number of references to this file */ 114 unsigned char *a; /* Content of the file. From malloc() */ 115 }; 116 typedef struct VHandle VHandle; 117 struct VHandle { 118 sqlite3_file base; /* Base class. Must be first */ 119 VFile *pVFile; /* The underlying file */ 120 }; 121 122 /* 123 ** The value of a database file template, or of an SQL script 124 */ 125 typedef struct Blob Blob; 126 struct Blob { 127 Blob *pNext; /* Next in a list */ 128 int id; /* Id of this Blob */ 129 int seq; /* Sequence number */ 130 int sz; /* Size of this Blob in bytes */ 131 unsigned char a[1]; /* Blob content. Extra space allocated as needed. */ 132 }; 133 134 /* 135 ** Maximum number of files in the in-memory virtual filesystem. 136 */ 137 #define MX_FILE 10 138 139 /* 140 ** Maximum allowed file size 141 */ 142 #define MX_FILE_SZ 10000000 143 144 /* 145 ** All global variables are gathered into the "g" singleton. 146 */ 147 static struct GlobalVars { 148 const char *zArgv0; /* Name of program */ 149 const char *zDbFile; /* Name of database file */ 150 VFile aFile[MX_FILE]; /* The virtual filesystem */ 151 int nDb; /* Number of template databases */ 152 Blob *pFirstDb; /* Content of first template database */ 153 int nSql; /* Number of SQL scripts */ 154 Blob *pFirstSql; /* First SQL script */ 155 unsigned int uRandom; /* Seed for the SQLite PRNG */ 156 char zTestName[100]; /* Name of current test */ 157 } g; 158 159 /* 160 ** Print an error message and quit. 161 */ 162 static void fatalError(const char *zFormat, ...){ 163 va_list ap; 164 fprintf(stderr, "%s", g.zArgv0); 165 if( g.zDbFile ) fprintf(stderr, " %s", g.zDbFile); 166 if( g.zTestName[0] ) fprintf(stderr, " (%s)", g.zTestName); 167 fprintf(stderr, ": "); 168 va_start(ap, zFormat); 169 vfprintf(stderr, zFormat, ap); 170 va_end(ap); 171 fprintf(stderr, "\n"); 172 exit(1); 173 } 174 175 /* 176 ** signal handler 177 */ 178 #ifdef __unix__ 179 static void signalHandler(int signum){ 180 const char *zSig; 181 if( signum==SIGABRT ){ 182 zSig = "abort"; 183 }else if( signum==SIGALRM ){ 184 zSig = "timeout"; 185 }else if( signum==SIGSEGV ){ 186 zSig = "segfault"; 187 }else{ 188 zSig = "signal"; 189 } 190 fatalError(zSig); 191 } 192 #endif 193 194 /* 195 ** Set the an alarm to go off after N seconds. Disable the alarm 196 ** if N==0 197 */ 198 static void setAlarm(int N){ 199 #ifdef __unix__ 200 alarm(N); 201 #else 202 (void)N; 203 #endif 204 } 205 206 #ifndef SQLITE_OMIT_PROGRESS_CALLBACK 207 /* 208 ** This an SQL progress handler. After an SQL statement has run for 209 ** many steps, we want to interrupt it. This guards against infinite 210 ** loops from recursive common table expressions. 211 ** 212 ** *pVdbeLimitFlag is true if the --limit-vdbe command-line option is used. 213 ** In that case, hitting the progress handler is a fatal error. 214 */ 215 static int progressHandler(void *pVdbeLimitFlag){ 216 if( *(int*)pVdbeLimitFlag ) fatalError("too many VDBE cycles"); 217 return 1; 218 } 219 #endif 220 221 /* 222 ** Reallocate memory. Show an error and quit if unable. 223 */ 224 static void *safe_realloc(void *pOld, int szNew){ 225 void *pNew = realloc(pOld, szNew<=0 ? 1 : szNew); 226 if( pNew==0 ) fatalError("unable to realloc for %d bytes", szNew); 227 return pNew; 228 } 229 230 /* 231 ** Initialize the virtual file system. 232 */ 233 static void formatVfs(void){ 234 int i; 235 for(i=0; i<MX_FILE; i++){ 236 g.aFile[i].sz = -1; 237 g.aFile[i].zFilename = 0; 238 g.aFile[i].a = 0; 239 g.aFile[i].nRef = 0; 240 } 241 } 242 243 244 /* 245 ** Erase all information in the virtual file system. 246 */ 247 static void reformatVfs(void){ 248 int i; 249 for(i=0; i<MX_FILE; i++){ 250 if( g.aFile[i].sz<0 ) continue; 251 if( g.aFile[i].zFilename ){ 252 free(g.aFile[i].zFilename); 253 g.aFile[i].zFilename = 0; 254 } 255 if( g.aFile[i].nRef>0 ){ 256 fatalError("file %d still open. nRef=%d", i, g.aFile[i].nRef); 257 } 258 g.aFile[i].sz = -1; 259 free(g.aFile[i].a); 260 g.aFile[i].a = 0; 261 g.aFile[i].nRef = 0; 262 } 263 } 264 265 /* 266 ** Find a VFile by name 267 */ 268 static VFile *findVFile(const char *zName){ 269 int i; 270 if( zName==0 ) return 0; 271 for(i=0; i<MX_FILE; i++){ 272 if( g.aFile[i].zFilename==0 ) continue; 273 if( strcmp(g.aFile[i].zFilename, zName)==0 ) return &g.aFile[i]; 274 } 275 return 0; 276 } 277 278 /* 279 ** Find a VFile by name. Create it if it does not already exist and 280 ** initialize it to the size and content given. 281 ** 282 ** Return NULL only if the filesystem is full. 283 */ 284 static VFile *createVFile(const char *zName, int sz, unsigned char *pData){ 285 VFile *pNew = findVFile(zName); 286 int i; 287 if( pNew ) return pNew; 288 for(i=0; i<MX_FILE && g.aFile[i].sz>=0; i++){} 289 if( i>=MX_FILE ) return 0; 290 pNew = &g.aFile[i]; 291 if( zName ){ 292 int nName = (int)strlen(zName)+1; 293 pNew->zFilename = safe_realloc(0, nName); 294 memcpy(pNew->zFilename, zName, nName); 295 }else{ 296 pNew->zFilename = 0; 297 } 298 pNew->nRef = 0; 299 pNew->sz = sz; 300 pNew->a = safe_realloc(0, sz); 301 if( sz>0 ) memcpy(pNew->a, pData, sz); 302 return pNew; 303 } 304 305 306 /* 307 ** Implementation of the "readfile(X)" SQL function. The entire content 308 ** of the file named X is read and returned as a BLOB. NULL is returned 309 ** if the file does not exist or is unreadable. 310 */ 311 static void readfileFunc( 312 sqlite3_context *context, 313 int argc, 314 sqlite3_value **argv 315 ){ 316 const char *zName; 317 FILE *in; 318 long nIn; 319 void *pBuf; 320 321 zName = (const char*)sqlite3_value_text(argv[0]); 322 if( zName==0 ) return; 323 in = fopen(zName, "rb"); 324 if( in==0 ) return; 325 fseek(in, 0, SEEK_END); 326 nIn = ftell(in); 327 rewind(in); 328 pBuf = sqlite3_malloc64( nIn ); 329 if( pBuf && 1==fread(pBuf, nIn, 1, in) ){ 330 sqlite3_result_blob(context, pBuf, nIn, sqlite3_free); 331 }else{ 332 sqlite3_free(pBuf); 333 } 334 fclose(in); 335 } 336 337 /* 338 ** Implementation of the "readtextfile(X)" SQL function. The text content 339 ** of the file named X through the end of the file or to the first \000 340 ** character, whichever comes first, is read and returned as TEXT. NULL 341 ** is returned if the file does not exist or is unreadable. 342 */ 343 static void readtextfileFunc( 344 sqlite3_context *context, 345 int argc, 346 sqlite3_value **argv 347 ){ 348 const char *zName; 349 FILE *in; 350 long nIn; 351 char *pBuf; 352 353 zName = (const char*)sqlite3_value_text(argv[0]); 354 if( zName==0 ) return; 355 in = fopen(zName, "rb"); 356 if( in==0 ) return; 357 fseek(in, 0, SEEK_END); 358 nIn = ftell(in); 359 rewind(in); 360 pBuf = sqlite3_malloc64( nIn+1 ); 361 if( pBuf && 1==fread(pBuf, nIn, 1, in) ){ 362 pBuf[nIn] = 0; 363 sqlite3_result_text(context, pBuf, -1, sqlite3_free); 364 }else{ 365 sqlite3_free(pBuf); 366 } 367 fclose(in); 368 } 369 370 /* 371 ** Implementation of the "writefile(X,Y)" SQL function. The argument Y 372 ** is written into file X. The number of bytes written is returned. Or 373 ** NULL is returned if something goes wrong, such as being unable to open 374 ** file X for writing. 375 */ 376 static void writefileFunc( 377 sqlite3_context *context, 378 int argc, 379 sqlite3_value **argv 380 ){ 381 FILE *out; 382 const char *z; 383 sqlite3_int64 rc; 384 const char *zFile; 385 386 (void)argc; 387 zFile = (const char*)sqlite3_value_text(argv[0]); 388 if( zFile==0 ) return; 389 out = fopen(zFile, "wb"); 390 if( out==0 ) return; 391 z = (const char*)sqlite3_value_blob(argv[1]); 392 if( z==0 ){ 393 rc = 0; 394 }else{ 395 rc = fwrite(z, 1, sqlite3_value_bytes(argv[1]), out); 396 } 397 fclose(out); 398 sqlite3_result_int64(context, rc); 399 } 400 401 402 /* 403 ** Load a list of Blob objects from the database 404 */ 405 static void blobListLoadFromDb( 406 sqlite3 *db, /* Read from this database */ 407 const char *zSql, /* Query used to extract the blobs */ 408 int onlyId, /* Only load where id is this value */ 409 int *pN, /* OUT: Write number of blobs loaded here */ 410 Blob **ppList /* OUT: Write the head of the blob list here */ 411 ){ 412 Blob head; 413 Blob *p; 414 sqlite3_stmt *pStmt; 415 int n = 0; 416 int rc; 417 char *z2; 418 419 if( onlyId>0 ){ 420 z2 = sqlite3_mprintf("%s WHERE rowid=%d", zSql, onlyId); 421 }else{ 422 z2 = sqlite3_mprintf("%s", zSql); 423 } 424 rc = sqlite3_prepare_v2(db, z2, -1, &pStmt, 0); 425 sqlite3_free(z2); 426 if( rc ) fatalError("%s", sqlite3_errmsg(db)); 427 head.pNext = 0; 428 p = &head; 429 while( SQLITE_ROW==sqlite3_step(pStmt) ){ 430 int sz = sqlite3_column_bytes(pStmt, 1); 431 Blob *pNew = safe_realloc(0, sizeof(*pNew)+sz ); 432 pNew->id = sqlite3_column_int(pStmt, 0); 433 pNew->sz = sz; 434 pNew->seq = n++; 435 pNew->pNext = 0; 436 memcpy(pNew->a, sqlite3_column_blob(pStmt,1), sz); 437 pNew->a[sz] = 0; 438 p->pNext = pNew; 439 p = pNew; 440 } 441 sqlite3_finalize(pStmt); 442 *pN = n; 443 *ppList = head.pNext; 444 } 445 446 /* 447 ** Free a list of Blob objects 448 */ 449 static void blobListFree(Blob *p){ 450 Blob *pNext; 451 while( p ){ 452 pNext = p->pNext; 453 free(p); 454 p = pNext; 455 } 456 } 457 458 /* Return the current wall-clock time 459 ** 460 ** The number of milliseconds since the julian epoch. 461 ** 1907-01-01 00:00:00 -> 210866716800000 462 ** 2021-01-01 00:00:00 -> 212476176000000 463 */ 464 static sqlite3_int64 timeOfDay(void){ 465 static sqlite3_vfs *clockVfs = 0; 466 sqlite3_int64 t; 467 if( clockVfs==0 ){ 468 clockVfs = sqlite3_vfs_find(0); 469 if( clockVfs==0 ) return 0; 470 } 471 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ 472 clockVfs->xCurrentTimeInt64(clockVfs, &t); 473 }else{ 474 double r; 475 clockVfs->xCurrentTime(clockVfs, &r); 476 t = (sqlite3_int64)(r*86400000.0); 477 } 478 return t; 479 } 480 481 /*************************************************************************** 482 ** Code to process combined database+SQL scripts generated by the 483 ** dbsqlfuzz fuzzer. 484 */ 485 486 /* An instance of the following object is passed by pointer as the 487 ** client data to various callbacks. 488 */ 489 typedef struct FuzzCtx { 490 sqlite3 *db; /* The database connection */ 491 sqlite3_int64 iCutoffTime; /* Stop processing at this time. */ 492 sqlite3_int64 iLastCb; /* Time recorded for previous progress callback */ 493 sqlite3_int64 mxInterval; /* Longest interval between two progress calls */ 494 unsigned nCb; /* Number of progress callbacks */ 495 unsigned mxCb; /* Maximum number of progress callbacks allowed */ 496 unsigned execCnt; /* Number of calls to the sqlite3_exec callback */ 497 int timeoutHit; /* True when reaching a timeout */ 498 } FuzzCtx; 499 500 /* Verbosity level for the dbsqlfuzz test runner */ 501 static int eVerbosity = 0; 502 503 /* True to activate PRAGMA vdbe_debug=on */ 504 static int bVdbeDebug = 0; 505 506 /* Timeout for each fuzzing attempt, in milliseconds */ 507 static int giTimeout = 10000; /* Defaults to 10 seconds */ 508 509 /* Maximum number of progress handler callbacks */ 510 static unsigned int mxProgressCb = 2000; 511 512 /* Maximum string length in SQLite */ 513 static int lengthLimit = 1000000; 514 515 /* Maximum expression depth */ 516 static int depthLimit = 500; 517 518 /* Limit on the amount of heap memory that can be used */ 519 static sqlite3_int64 heapLimit = 100000000; 520 521 /* Maximum byte-code program length in SQLite */ 522 static int vdbeOpLimit = 25000; 523 524 /* Maximum size of the in-memory database */ 525 static sqlite3_int64 maxDbSize = 104857600; 526 /* OOM simulation parameters */ 527 static unsigned int oomCounter = 0; /* Simulate OOM when equals 1 */ 528 static unsigned int oomRepeat = 0; /* Number of OOMs in a row */ 529 static void*(*defaultMalloc)(int) = 0; /* The low-level malloc routine */ 530 531 /* This routine is called when a simulated OOM occurs. It is broken 532 ** out as a separate routine to make it easy to set a breakpoint on 533 ** the OOM 534 */ 535 void oomFault(void){ 536 if( eVerbosity ){ 537 printf("Simulated OOM fault\n"); 538 } 539 if( oomRepeat>0 ){ 540 oomRepeat--; 541 }else{ 542 oomCounter--; 543 } 544 } 545 546 /* This routine is a replacement malloc() that is used to simulate 547 ** Out-Of-Memory (OOM) errors for testing purposes. 548 */ 549 static void *oomMalloc(int nByte){ 550 if( oomCounter ){ 551 if( oomCounter==1 ){ 552 oomFault(); 553 return 0; 554 }else{ 555 oomCounter--; 556 } 557 } 558 return defaultMalloc(nByte); 559 } 560 561 /* Register the OOM simulator. This must occur before any memory 562 ** allocations */ 563 static void registerOomSimulator(void){ 564 sqlite3_mem_methods mem; 565 sqlite3_shutdown(); 566 sqlite3_config(SQLITE_CONFIG_GETMALLOC, &mem); 567 defaultMalloc = mem.xMalloc; 568 mem.xMalloc = oomMalloc; 569 sqlite3_config(SQLITE_CONFIG_MALLOC, &mem); 570 } 571 572 /* Turn off any pending OOM simulation */ 573 static void disableOom(void){ 574 oomCounter = 0; 575 oomRepeat = 0; 576 } 577 578 /* 579 ** Translate a single byte of Hex into an integer. 580 ** This routine only works if h really is a valid hexadecimal 581 ** character: 0..9a..fA..F 582 */ 583 static unsigned char hexToInt(unsigned int h){ 584 #ifdef SQLITE_EBCDIC 585 h += 9*(1&~(h>>4)); /* EBCDIC */ 586 #else 587 h += 9*(1&(h>>6)); /* ASCII */ 588 #endif 589 return h & 0xf; 590 } 591 592 /* 593 ** The first character of buffer zIn[0..nIn-1] is a '['. This routine 594 ** checked to see if the buffer holds "[NNNN]" or "[+NNNN]" and if it 595 ** does it makes corresponding changes to the *pK value and *pI value 596 ** and returns true. If the input buffer does not match the patterns, 597 ** no changes are made to either *pK or *pI and this routine returns false. 598 */ 599 static int isOffset( 600 const unsigned char *zIn, /* Text input */ 601 int nIn, /* Bytes of input */ 602 unsigned int *pK, /* half-byte cursor to adjust */ 603 unsigned int *pI /* Input index to adjust */ 604 ){ 605 int i; 606 unsigned int k = 0; 607 unsigned char c; 608 for(i=1; i<nIn && (c = zIn[i])!=']'; i++){ 609 if( !isxdigit(c) ) return 0; 610 k = k*16 + hexToInt(c); 611 } 612 if( i==nIn ) return 0; 613 *pK = 2*k; 614 *pI += i; 615 return 1; 616 } 617 618 /* 619 ** Decode the text starting at zIn into a binary database file. 620 ** The maximum length of zIn is nIn bytes. Store the binary database 621 ** file in space obtained from sqlite3_malloc(). 622 ** 623 ** Return the number of bytes of zIn consumed. Or return -1 if there 624 ** is an error. One potential error is that the recipe specifies a 625 ** database file larger than MX_FILE_SZ bytes. 626 ** 627 ** Abort on an OOM. 628 */ 629 static int decodeDatabase( 630 const unsigned char *zIn, /* Input text to be decoded */ 631 int nIn, /* Bytes of input text */ 632 unsigned char **paDecode, /* OUT: decoded database file */ 633 int *pnDecode /* OUT: Size of decoded database */ 634 ){ 635 unsigned char *a, *aNew; /* Database under construction */ 636 int mx = 0; /* Current size of the database */ 637 sqlite3_uint64 nAlloc = 4096; /* Space allocated in a[] */ 638 unsigned int i; /* Next byte of zIn[] to read */ 639 unsigned int j; /* Temporary integer */ 640 unsigned int k; /* half-byte cursor index for output */ 641 unsigned int n; /* Number of bytes of input */ 642 unsigned char b = 0; 643 if( nIn<4 ) return -1; 644 n = (unsigned int)nIn; 645 a = sqlite3_malloc64( nAlloc ); 646 if( a==0 ){ 647 fprintf(stderr, "Out of memory!\n"); 648 exit(1); 649 } 650 memset(a, 0, (size_t)nAlloc); 651 for(i=k=0; i<n; i++){ 652 unsigned char c = (unsigned char)zIn[i]; 653 if( isxdigit(c) ){ 654 k++; 655 if( k & 1 ){ 656 b = hexToInt(c)*16; 657 }else{ 658 b += hexToInt(c); 659 j = k/2 - 1; 660 if( j>=nAlloc ){ 661 sqlite3_uint64 newSize; 662 if( nAlloc==MX_FILE_SZ || j>=MX_FILE_SZ ){ 663 if( eVerbosity ){ 664 fprintf(stderr, "Input database too big: max %d bytes\n", 665 MX_FILE_SZ); 666 } 667 sqlite3_free(a); 668 return -1; 669 } 670 newSize = nAlloc*2; 671 if( newSize<=j ){ 672 newSize = (j+4096)&~4095; 673 } 674 if( newSize>MX_FILE_SZ ){ 675 if( j>=MX_FILE_SZ ){ 676 sqlite3_free(a); 677 return -1; 678 } 679 newSize = MX_FILE_SZ; 680 } 681 aNew = sqlite3_realloc64( a, newSize ); 682 if( aNew==0 ){ 683 sqlite3_free(a); 684 return -1; 685 } 686 a = aNew; 687 assert( newSize > nAlloc ); 688 memset(a+nAlloc, 0, (size_t)(newSize - nAlloc)); 689 nAlloc = newSize; 690 } 691 if( j>=(unsigned)mx ){ 692 mx = (j + 4095)&~4095; 693 if( mx>MX_FILE_SZ ) mx = MX_FILE_SZ; 694 } 695 assert( j<nAlloc ); 696 a[j] = b; 697 } 698 }else if( zIn[i]=='[' && i<n-3 && isOffset(zIn+i, nIn-i, &k, &i) ){ 699 continue; 700 }else if( zIn[i]=='\n' && i<n-4 && memcmp(zIn+i,"\n--\n",4)==0 ){ 701 i += 4; 702 break; 703 } 704 } 705 *pnDecode = mx; 706 *paDecode = a; 707 return i; 708 } 709 710 /* 711 ** Progress handler callback. 712 ** 713 ** The argument is the cutoff-time after which all processing should 714 ** stop. So return non-zero if the cut-off time is exceeded. 715 */ 716 static int progress_handler(void *pClientData) { 717 FuzzCtx *p = (FuzzCtx*)pClientData; 718 sqlite3_int64 iNow = timeOfDay(); 719 int rc = iNow>=p->iCutoffTime; 720 sqlite3_int64 iDiff = iNow - p->iLastCb; 721 /* printf("time-remaining: %lld\n", p->iCutoffTime - iNow); */ 722 if( iDiff > p->mxInterval ) p->mxInterval = iDiff; 723 p->nCb++; 724 if( rc==0 && p->mxCb>0 && p->mxCb<=p->nCb ) rc = 1; 725 if( rc && !p->timeoutHit && eVerbosity>=2 ){ 726 printf("Timeout on progress callback %d\n", p->nCb); 727 fflush(stdout); 728 p->timeoutHit = 1; 729 } 730 return rc; 731 } 732 733 /* 734 ** Disallow debugging pragmas such as "PRAGMA vdbe_debug" and 735 ** "PRAGMA parser_trace" since they can dramatically increase the 736 ** amount of output without actually testing anything useful. 737 ** 738 ** Also block ATTACH if attaching a file from the filesystem. 739 */ 740 static int block_troublesome_sql( 741 void *Notused, 742 int eCode, 743 const char *zArg1, 744 const char *zArg2, 745 const char *zArg3, 746 const char *zArg4 747 ){ 748 (void)Notused; 749 (void)zArg2; 750 (void)zArg3; 751 (void)zArg4; 752 if( eCode==SQLITE_PRAGMA ){ 753 if( eVerbosity==0 ){ 754 if( sqlite3_strnicmp("vdbe_", zArg1, 5)==0 755 || sqlite3_stricmp("parser_trace", zArg1)==0 756 || sqlite3_stricmp("temp_store_directory", zArg1)==0 757 ){ 758 return SQLITE_DENY; 759 } 760 }else if( sqlite3_stricmp("oom",zArg1)==0 761 && zArg2!=0 && zArg2[0]!=0 ){ 762 oomCounter = atoi(zArg2); 763 } 764 }else if( eCode==SQLITE_ATTACH ){ 765 /* Deny the ATTACH if it is attaching anything other than an in-memory 766 ** database. */ 767 if( zArg1==0 ) return SQLITE_DENY; 768 if( strcmp(zArg1,":memory:")==0 ) return SQLITE_OK; 769 if( sqlite3_strglob("file:*[?]vfs=memdb", zArg1)==0 770 && sqlite3_strglob("file:*[^/a-zA-Z0-9_.]*[?]vfs=memdb", zArg1)!=0 771 ){ 772 return SQLITE_OK; 773 } 774 return SQLITE_DENY; 775 } 776 return SQLITE_OK; 777 } 778 779 /* 780 ** Run the SQL text 781 */ 782 static int runDbSql(sqlite3 *db, const char *zSql){ 783 int rc; 784 sqlite3_stmt *pStmt; 785 while( isspace(zSql[0]&0x7f) ) zSql++; 786 if( zSql[0]==0 ) return SQLITE_OK; 787 if( eVerbosity>=4 ){ 788 printf("RUNNING-SQL: [%s]\n", zSql); 789 fflush(stdout); 790 } 791 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); 792 if( rc==SQLITE_OK ){ 793 while( (rc = sqlite3_step(pStmt))==SQLITE_ROW ){ 794 if( eVerbosity>=5 ){ 795 int j; 796 for(j=0; j<sqlite3_column_count(pStmt); j++){ 797 if( j ) printf(","); 798 switch( sqlite3_column_type(pStmt, j) ){ 799 case SQLITE_NULL: { 800 printf("NULL"); 801 break; 802 } 803 case SQLITE_INTEGER: 804 case SQLITE_FLOAT: { 805 printf("%s", sqlite3_column_text(pStmt, j)); 806 break; 807 } 808 case SQLITE_BLOB: { 809 int n = sqlite3_column_bytes(pStmt, j); 810 int i; 811 const unsigned char *a; 812 a = (const unsigned char*)sqlite3_column_blob(pStmt, j); 813 printf("x'"); 814 for(i=0; i<n; i++){ 815 printf("%02x", a[i]); 816 } 817 printf("'"); 818 break; 819 } 820 case SQLITE_TEXT: { 821 int n = sqlite3_column_bytes(pStmt, j); 822 int i; 823 const unsigned char *a; 824 a = (const unsigned char*)sqlite3_column_blob(pStmt, j); 825 printf("'"); 826 for(i=0; i<n; i++){ 827 if( a[i]=='\'' ){ 828 printf("''"); 829 }else{ 830 putchar(a[i]); 831 } 832 } 833 printf("'"); 834 break; 835 } 836 } /* End switch() */ 837 } /* End for() */ 838 printf("\n"); 839 fflush(stdout); 840 } /* End if( eVerbosity>=5 ) */ 841 } /* End while( SQLITE_ROW */ 842 if( rc!=SQLITE_DONE && eVerbosity>=4 ){ 843 printf("SQL-ERROR: (%d) %s\n", rc, sqlite3_errmsg(db)); 844 fflush(stdout); 845 } 846 }else if( eVerbosity>=4 ){ 847 printf("SQL-ERROR (%d): %s\n", rc, sqlite3_errmsg(db)); 848 fflush(stdout); 849 } /* End if( SQLITE_OK ) */ 850 return sqlite3_finalize(pStmt); 851 } 852 853 /* Invoke this routine to run a single test case */ 854 int runCombinedDbSqlInput(const uint8_t *aData, size_t nByte, int iTimeout){ 855 int rc; /* SQLite API return value */ 856 int iSql; /* Index in aData[] of start of SQL */ 857 unsigned char *aDb = 0; /* Decoded database content */ 858 int nDb = 0; /* Size of the decoded database */ 859 int i; /* Loop counter */ 860 int j; /* Start of current SQL statement */ 861 char *zSql = 0; /* SQL text to run */ 862 int nSql; /* Bytes of SQL text */ 863 FuzzCtx cx; /* Fuzzing context */ 864 865 if( nByte<10 ) return 0; 866 if( sqlite3_initialize() ) return 0; 867 if( sqlite3_memory_used()!=0 ){ 868 int nAlloc = 0; 869 int nNotUsed = 0; 870 sqlite3_status(SQLITE_STATUS_MALLOC_COUNT, &nAlloc, &nNotUsed, 0); 871 fprintf(stderr,"memory leak prior to test start:" 872 " %lld bytes in %d allocations\n", 873 sqlite3_memory_used(), nAlloc); 874 exit(1); 875 } 876 memset(&cx, 0, sizeof(cx)); 877 iSql = decodeDatabase((unsigned char*)aData, (int)nByte, &aDb, &nDb); 878 if( iSql<0 ) return 0; 879 nSql = (int)(nByte - iSql); 880 if( eVerbosity>=3 ){ 881 printf( 882 "****** %d-byte input, %d-byte database, %d-byte script " 883 "******\n", (int)nByte, nDb, nSql); 884 fflush(stdout); 885 } 886 rc = sqlite3_open(0, &cx.db); 887 if( rc ){ 888 sqlite3_free(aDb); 889 return 1; 890 } 891 if( bVdbeDebug ){ 892 sqlite3_exec(cx.db, "PRAGMA vdbe_debug=ON", 0, 0, 0); 893 } 894 895 /* Invoke the progress handler frequently to check to see if we 896 ** are taking too long. The progress handler will return true 897 ** (which will block further processing) if more than giTimeout seconds have 898 ** elapsed since the start of the test. 899 */ 900 cx.iLastCb = timeOfDay(); 901 cx.iCutoffTime = cx.iLastCb + (iTimeout<giTimeout ? iTimeout : giTimeout); 902 cx.mxCb = mxProgressCb; 903 #ifndef SQLITE_OMIT_PROGRESS_CALLBACK 904 sqlite3_progress_handler(cx.db, 10, progress_handler, (void*)&cx); 905 #endif 906 907 /* Set a limit on the maximum size of a prepared statement, and the 908 ** maximum length of a string or blob */ 909 if( vdbeOpLimit>0 ){ 910 sqlite3_limit(cx.db, SQLITE_LIMIT_VDBE_OP, vdbeOpLimit); 911 } 912 if( lengthLimit>0 ){ 913 sqlite3_limit(cx.db, SQLITE_LIMIT_LENGTH, lengthLimit); 914 } 915 if( depthLimit>0 ){ 916 sqlite3_limit(cx.db, SQLITE_LIMIT_EXPR_DEPTH, depthLimit); 917 } 918 sqlite3_limit(cx.db, SQLITE_LIMIT_LIKE_PATTERN_LENGTH, 100); 919 sqlite3_hard_heap_limit64(heapLimit); 920 921 if( nDb>=20 && aDb[18]==2 && aDb[19]==2 ){ 922 aDb[18] = aDb[19] = 1; 923 } 924 rc = sqlite3_deserialize(cx.db, "main", aDb, nDb, nDb, 925 SQLITE_DESERIALIZE_RESIZEABLE | 926 SQLITE_DESERIALIZE_FREEONCLOSE); 927 if( rc ){ 928 fprintf(stderr, "sqlite3_deserialize() failed with %d\n", rc); 929 goto testrun_finished; 930 } 931 if( maxDbSize>0 ){ 932 sqlite3_int64 x = maxDbSize; 933 sqlite3_file_control(cx.db, "main", SQLITE_FCNTL_SIZE_LIMIT, &x); 934 } 935 936 /* For high debugging levels, turn on debug mode */ 937 if( eVerbosity>=5 ){ 938 sqlite3_exec(cx.db, "PRAGMA vdbe_debug=ON;", 0, 0, 0); 939 } 940 941 /* Block debug pragmas and ATTACH/DETACH. But wait until after 942 ** deserialize to do this because deserialize depends on ATTACH */ 943 sqlite3_set_authorizer(cx.db, block_troublesome_sql, 0); 944 945 /* Consistent PRNG seed */ 946 #ifdef SQLITE_TESTCTRL_PRNG_SEED 947 sqlite3_table_column_metadata(cx.db, 0, "x", 0, 0, 0, 0, 0, 0); 948 sqlite3_test_control(SQLITE_TESTCTRL_PRNG_SEED, 1, cx.db); 949 #else 950 sqlite3_randomness(0,0); 951 #endif 952 953 zSql = sqlite3_malloc( nSql + 1 ); 954 if( zSql==0 ){ 955 fprintf(stderr, "Out of memory!\n"); 956 }else{ 957 memcpy(zSql, aData+iSql, nSql); 958 zSql[nSql] = 0; 959 for(i=j=0; zSql[i]; i++){ 960 if( zSql[i]==';' ){ 961 char cSaved = zSql[i+1]; 962 zSql[i+1] = 0; 963 if( sqlite3_complete(zSql+j) ){ 964 rc = runDbSql(cx.db, zSql+j); 965 j = i+1; 966 } 967 zSql[i+1] = cSaved; 968 if( rc==SQLITE_INTERRUPT || progress_handler(&cx) ){ 969 goto testrun_finished; 970 } 971 } 972 } 973 if( j<i ){ 974 runDbSql(cx.db, zSql+j); 975 } 976 } 977 testrun_finished: 978 sqlite3_free(zSql); 979 rc = sqlite3_close(cx.db); 980 if( rc!=SQLITE_OK ){ 981 fprintf(stdout, "sqlite3_close() returns %d\n", rc); 982 } 983 if( eVerbosity>=2 ){ 984 fprintf(stdout, "Peak memory usages: %f MB\n", 985 sqlite3_memory_highwater(1) / 1000000.0); 986 } 987 if( sqlite3_memory_used()!=0 ){ 988 int nAlloc = 0; 989 int nNotUsed = 0; 990 sqlite3_status(SQLITE_STATUS_MALLOC_COUNT, &nAlloc, &nNotUsed, 0); 991 fprintf(stderr,"Memory leak: %lld bytes in %d allocations\n", 992 sqlite3_memory_used(), nAlloc); 993 exit(1); 994 } 995 sqlite3_hard_heap_limit64(0); 996 sqlite3_soft_heap_limit64(0); 997 return 0; 998 } 999 1000 /* 1001 ** END of the dbsqlfuzz code 1002 ***************************************************************************/ 1003 1004 /* Look at a SQL text and try to determine if it begins with a database 1005 ** description, such as would be found in a dbsqlfuzz test case. Return 1006 ** true if this does appear to be a dbsqlfuzz test case and false otherwise. 1007 */ 1008 static int isDbSql(unsigned char *a, int n){ 1009 unsigned char buf[12]; 1010 int i; 1011 if( n>4 && memcmp(a,"\n--\n",4)==0 ) return 1; 1012 while( n>0 && isspace(a[0]) ){ a++; n--; } 1013 for(i=0; n>0 && i<8; n--, a++){ 1014 if( isxdigit(a[0]) ) buf[i++] = a[0]; 1015 } 1016 if( i==8 && memcmp(buf,"53514c69",8)==0 ) return 1; 1017 return 0; 1018 } 1019 1020 /* Implementation of the isdbsql(TEXT) SQL function. 1021 */ 1022 static void isDbSqlFunc( 1023 sqlite3_context *context, 1024 int argc, 1025 sqlite3_value **argv 1026 ){ 1027 int n = sqlite3_value_bytes(argv[0]); 1028 unsigned char *a = (unsigned char*)sqlite3_value_blob(argv[0]); 1029 sqlite3_result_int(context, a!=0 && n>0 && isDbSql(a,n)); 1030 } 1031 1032 /* Methods for the VHandle object 1033 */ 1034 static int inmemClose(sqlite3_file *pFile){ 1035 VHandle *p = (VHandle*)pFile; 1036 VFile *pVFile = p->pVFile; 1037 pVFile->nRef--; 1038 if( pVFile->nRef==0 && pVFile->zFilename==0 ){ 1039 pVFile->sz = -1; 1040 free(pVFile->a); 1041 pVFile->a = 0; 1042 } 1043 return SQLITE_OK; 1044 } 1045 static int inmemRead( 1046 sqlite3_file *pFile, /* Read from this open file */ 1047 void *pData, /* Store content in this buffer */ 1048 int iAmt, /* Bytes of content */ 1049 sqlite3_int64 iOfst /* Start reading here */ 1050 ){ 1051 VHandle *pHandle = (VHandle*)pFile; 1052 VFile *pVFile = pHandle->pVFile; 1053 if( iOfst<0 || iOfst>=pVFile->sz ){ 1054 memset(pData, 0, iAmt); 1055 return SQLITE_IOERR_SHORT_READ; 1056 } 1057 if( iOfst+iAmt>pVFile->sz ){ 1058 memset(pData, 0, iAmt); 1059 iAmt = (int)(pVFile->sz - iOfst); 1060 memcpy(pData, pVFile->a + iOfst, iAmt); 1061 return SQLITE_IOERR_SHORT_READ; 1062 } 1063 memcpy(pData, pVFile->a + iOfst, iAmt); 1064 return SQLITE_OK; 1065 } 1066 static int inmemWrite( 1067 sqlite3_file *pFile, /* Write to this file */ 1068 const void *pData, /* Content to write */ 1069 int iAmt, /* bytes to write */ 1070 sqlite3_int64 iOfst /* Start writing here */ 1071 ){ 1072 VHandle *pHandle = (VHandle*)pFile; 1073 VFile *pVFile = pHandle->pVFile; 1074 if( iOfst+iAmt > pVFile->sz ){ 1075 if( iOfst+iAmt >= MX_FILE_SZ ){ 1076 return SQLITE_FULL; 1077 } 1078 pVFile->a = safe_realloc(pVFile->a, (int)(iOfst+iAmt)); 1079 if( iOfst > pVFile->sz ){ 1080 memset(pVFile->a + pVFile->sz, 0, (int)(iOfst - pVFile->sz)); 1081 } 1082 pVFile->sz = (int)(iOfst + iAmt); 1083 } 1084 memcpy(pVFile->a + iOfst, pData, iAmt); 1085 return SQLITE_OK; 1086 } 1087 static int inmemTruncate(sqlite3_file *pFile, sqlite3_int64 iSize){ 1088 VHandle *pHandle = (VHandle*)pFile; 1089 VFile *pVFile = pHandle->pVFile; 1090 if( pVFile->sz>iSize && iSize>=0 ) pVFile->sz = (int)iSize; 1091 return SQLITE_OK; 1092 } 1093 static int inmemSync(sqlite3_file *pFile, int flags){ 1094 return SQLITE_OK; 1095 } 1096 static int inmemFileSize(sqlite3_file *pFile, sqlite3_int64 *pSize){ 1097 *pSize = ((VHandle*)pFile)->pVFile->sz; 1098 return SQLITE_OK; 1099 } 1100 static int inmemLock(sqlite3_file *pFile, int type){ 1101 return SQLITE_OK; 1102 } 1103 static int inmemUnlock(sqlite3_file *pFile, int type){ 1104 return SQLITE_OK; 1105 } 1106 static int inmemCheckReservedLock(sqlite3_file *pFile, int *pOut){ 1107 *pOut = 0; 1108 return SQLITE_OK; 1109 } 1110 static int inmemFileControl(sqlite3_file *pFile, int op, void *pArg){ 1111 return SQLITE_NOTFOUND; 1112 } 1113 static int inmemSectorSize(sqlite3_file *pFile){ 1114 return 512; 1115 } 1116 static int inmemDeviceCharacteristics(sqlite3_file *pFile){ 1117 return 1118 SQLITE_IOCAP_SAFE_APPEND | 1119 SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN | 1120 SQLITE_IOCAP_POWERSAFE_OVERWRITE; 1121 } 1122 1123 1124 /* Method table for VHandle 1125 */ 1126 static sqlite3_io_methods VHandleMethods = { 1127 /* iVersion */ 1, 1128 /* xClose */ inmemClose, 1129 /* xRead */ inmemRead, 1130 /* xWrite */ inmemWrite, 1131 /* xTruncate */ inmemTruncate, 1132 /* xSync */ inmemSync, 1133 /* xFileSize */ inmemFileSize, 1134 /* xLock */ inmemLock, 1135 /* xUnlock */ inmemUnlock, 1136 /* xCheck... */ inmemCheckReservedLock, 1137 /* xFileCtrl */ inmemFileControl, 1138 /* xSectorSz */ inmemSectorSize, 1139 /* xDevchar */ inmemDeviceCharacteristics, 1140 /* xShmMap */ 0, 1141 /* xShmLock */ 0, 1142 /* xShmBarrier */ 0, 1143 /* xShmUnmap */ 0, 1144 /* xFetch */ 0, 1145 /* xUnfetch */ 0 1146 }; 1147 1148 /* 1149 ** Open a new file in the inmem VFS. All files are anonymous and are 1150 ** delete-on-close. 1151 */ 1152 static int inmemOpen( 1153 sqlite3_vfs *pVfs, 1154 const char *zFilename, 1155 sqlite3_file *pFile, 1156 int openFlags, 1157 int *pOutFlags 1158 ){ 1159 VFile *pVFile = createVFile(zFilename, 0, (unsigned char*)""); 1160 VHandle *pHandle = (VHandle*)pFile; 1161 if( pVFile==0 ){ 1162 return SQLITE_FULL; 1163 } 1164 pHandle->pVFile = pVFile; 1165 pVFile->nRef++; 1166 pFile->pMethods = &VHandleMethods; 1167 if( pOutFlags ) *pOutFlags = openFlags; 1168 return SQLITE_OK; 1169 } 1170 1171 /* 1172 ** Delete a file by name 1173 */ 1174 static int inmemDelete( 1175 sqlite3_vfs *pVfs, 1176 const char *zFilename, 1177 int syncdir 1178 ){ 1179 VFile *pVFile = findVFile(zFilename); 1180 if( pVFile==0 ) return SQLITE_OK; 1181 if( pVFile->nRef==0 ){ 1182 free(pVFile->zFilename); 1183 pVFile->zFilename = 0; 1184 pVFile->sz = -1; 1185 free(pVFile->a); 1186 pVFile->a = 0; 1187 return SQLITE_OK; 1188 } 1189 return SQLITE_IOERR_DELETE; 1190 } 1191 1192 /* Check for the existance of a file 1193 */ 1194 static int inmemAccess( 1195 sqlite3_vfs *pVfs, 1196 const char *zFilename, 1197 int flags, 1198 int *pResOut 1199 ){ 1200 VFile *pVFile = findVFile(zFilename); 1201 *pResOut = pVFile!=0; 1202 return SQLITE_OK; 1203 } 1204 1205 /* Get the canonical pathname for a file 1206 */ 1207 static int inmemFullPathname( 1208 sqlite3_vfs *pVfs, 1209 const char *zFilename, 1210 int nOut, 1211 char *zOut 1212 ){ 1213 sqlite3_snprintf(nOut, zOut, "%s", zFilename); 1214 return SQLITE_OK; 1215 } 1216 1217 /* Always use the same random see, for repeatability. 1218 */ 1219 static int inmemRandomness(sqlite3_vfs *NotUsed, int nBuf, char *zBuf){ 1220 memset(zBuf, 0, nBuf); 1221 memcpy(zBuf, &g.uRandom, nBuf<sizeof(g.uRandom) ? nBuf : sizeof(g.uRandom)); 1222 return nBuf; 1223 } 1224 1225 /* 1226 ** Register the VFS that reads from the g.aFile[] set of files. 1227 */ 1228 static void inmemVfsRegister(int makeDefault){ 1229 static sqlite3_vfs inmemVfs; 1230 sqlite3_vfs *pDefault = sqlite3_vfs_find(0); 1231 inmemVfs.iVersion = 3; 1232 inmemVfs.szOsFile = sizeof(VHandle); 1233 inmemVfs.mxPathname = 200; 1234 inmemVfs.zName = "inmem"; 1235 inmemVfs.xOpen = inmemOpen; 1236 inmemVfs.xDelete = inmemDelete; 1237 inmemVfs.xAccess = inmemAccess; 1238 inmemVfs.xFullPathname = inmemFullPathname; 1239 inmemVfs.xRandomness = inmemRandomness; 1240 inmemVfs.xSleep = pDefault->xSleep; 1241 inmemVfs.xCurrentTimeInt64 = pDefault->xCurrentTimeInt64; 1242 sqlite3_vfs_register(&inmemVfs, makeDefault); 1243 }; 1244 1245 /* 1246 ** Allowed values for the runFlags parameter to runSql() 1247 */ 1248 #define SQL_TRACE 0x0001 /* Print each SQL statement as it is prepared */ 1249 #define SQL_OUTPUT 0x0002 /* Show the SQL output */ 1250 1251 /* 1252 ** Run multiple commands of SQL. Similar to sqlite3_exec(), but does not 1253 ** stop if an error is encountered. 1254 */ 1255 static void runSql(sqlite3 *db, const char *zSql, unsigned runFlags){ 1256 const char *zMore; 1257 sqlite3_stmt *pStmt; 1258 1259 while( zSql && zSql[0] ){ 1260 zMore = 0; 1261 pStmt = 0; 1262 sqlite3_prepare_v2(db, zSql, -1, &pStmt, &zMore); 1263 if( zMore==zSql ) break; 1264 if( runFlags & SQL_TRACE ){ 1265 const char *z = zSql; 1266 int n; 1267 while( z<zMore && ISSPACE(z[0]) ) z++; 1268 n = (int)(zMore - z); 1269 while( n>0 && ISSPACE(z[n-1]) ) n--; 1270 if( n==0 ) break; 1271 if( pStmt==0 ){ 1272 printf("TRACE: %.*s (error: %s)\n", n, z, sqlite3_errmsg(db)); 1273 }else{ 1274 printf("TRACE: %.*s\n", n, z); 1275 } 1276 } 1277 zSql = zMore; 1278 if( pStmt ){ 1279 if( (runFlags & SQL_OUTPUT)==0 ){ 1280 while( SQLITE_ROW==sqlite3_step(pStmt) ){} 1281 }else{ 1282 int nCol = -1; 1283 while( SQLITE_ROW==sqlite3_step(pStmt) ){ 1284 int i; 1285 if( nCol<0 ){ 1286 nCol = sqlite3_column_count(pStmt); 1287 }else if( nCol>0 ){ 1288 printf("--------------------------------------------\n"); 1289 } 1290 for(i=0; i<nCol; i++){ 1291 int eType = sqlite3_column_type(pStmt,i); 1292 printf("%s = ", sqlite3_column_name(pStmt,i)); 1293 switch( eType ){ 1294 case SQLITE_NULL: { 1295 printf("NULL\n"); 1296 break; 1297 } 1298 case SQLITE_INTEGER: { 1299 printf("INT %s\n", sqlite3_column_text(pStmt,i)); 1300 break; 1301 } 1302 case SQLITE_FLOAT: { 1303 printf("FLOAT %s\n", sqlite3_column_text(pStmt,i)); 1304 break; 1305 } 1306 case SQLITE_TEXT: { 1307 printf("TEXT [%s]\n", sqlite3_column_text(pStmt,i)); 1308 break; 1309 } 1310 case SQLITE_BLOB: { 1311 printf("BLOB (%d bytes)\n", sqlite3_column_bytes(pStmt,i)); 1312 break; 1313 } 1314 } 1315 } 1316 } 1317 } 1318 sqlite3_finalize(pStmt); 1319 } 1320 } 1321 } 1322 1323 /* 1324 ** Rebuild the database file. 1325 ** 1326 ** (1) Remove duplicate entries 1327 ** (2) Put all entries in order 1328 ** (3) Vacuum 1329 */ 1330 static void rebuild_database(sqlite3 *db, int dbSqlOnly){ 1331 int rc; 1332 char *zSql; 1333 zSql = sqlite3_mprintf( 1334 "BEGIN;\n" 1335 "CREATE TEMP TABLE dbx AS SELECT DISTINCT dbcontent FROM db;\n" 1336 "DELETE FROM db;\n" 1337 "INSERT INTO db(dbid, dbcontent) " 1338 " SELECT NULL, dbcontent FROM dbx ORDER BY 2;\n" 1339 "DROP TABLE dbx;\n" 1340 "CREATE TEMP TABLE sx AS SELECT DISTINCT sqltext FROM xsql %s;\n" 1341 "DELETE FROM xsql;\n" 1342 "INSERT INTO xsql(sqlid,sqltext) " 1343 " SELECT NULL, sqltext FROM sx ORDER BY 2;\n" 1344 "DROP TABLE sx;\n" 1345 "COMMIT;\n" 1346 "PRAGMA page_size=1024;\n" 1347 "VACUUM;\n", 1348 dbSqlOnly ? " WHERE isdbsql(sqltext)" : "" 1349 ); 1350 rc = sqlite3_exec(db, zSql, 0, 0, 0); 1351 sqlite3_free(zSql); 1352 if( rc ) fatalError("cannot rebuild: %s", sqlite3_errmsg(db)); 1353 } 1354 1355 /* 1356 ** Return the value of a hexadecimal digit. Return -1 if the input 1357 ** is not a hex digit. 1358 */ 1359 static int hexDigitValue(char c){ 1360 if( c>='0' && c<='9' ) return c - '0'; 1361 if( c>='a' && c<='f' ) return c - 'a' + 10; 1362 if( c>='A' && c<='F' ) return c - 'A' + 10; 1363 return -1; 1364 } 1365 1366 /* 1367 ** Interpret zArg as an integer value, possibly with suffixes. 1368 */ 1369 static int integerValue(const char *zArg){ 1370 sqlite3_int64 v = 0; 1371 static const struct { char *zSuffix; int iMult; } aMult[] = { 1372 { "KiB", 1024 }, 1373 { "MiB", 1024*1024 }, 1374 { "GiB", 1024*1024*1024 }, 1375 { "KB", 1000 }, 1376 { "MB", 1000000 }, 1377 { "GB", 1000000000 }, 1378 { "K", 1000 }, 1379 { "M", 1000000 }, 1380 { "G", 1000000000 }, 1381 }; 1382 int i; 1383 int isNeg = 0; 1384 if( zArg[0]=='-' ){ 1385 isNeg = 1; 1386 zArg++; 1387 }else if( zArg[0]=='+' ){ 1388 zArg++; 1389 } 1390 if( zArg[0]=='0' && zArg[1]=='x' ){ 1391 int x; 1392 zArg += 2; 1393 while( (x = hexDigitValue(zArg[0]))>=0 ){ 1394 v = (v<<4) + x; 1395 zArg++; 1396 } 1397 }else{ 1398 while( ISDIGIT(zArg[0]) ){ 1399 v = v*10 + zArg[0] - '0'; 1400 zArg++; 1401 } 1402 } 1403 for(i=0; i<sizeof(aMult)/sizeof(aMult[0]); i++){ 1404 if( sqlite3_stricmp(aMult[i].zSuffix, zArg)==0 ){ 1405 v *= aMult[i].iMult; 1406 break; 1407 } 1408 } 1409 if( v>0x7fffffff ) fatalError("parameter too large - max 2147483648"); 1410 return (int)(isNeg? -v : v); 1411 } 1412 1413 /* 1414 ** Return the number of "v" characters in a string. Return 0 if there 1415 ** are any characters in the string other than "v". 1416 */ 1417 static int numberOfVChar(const char *z){ 1418 int N = 0; 1419 while( z[0] && z[0]=='v' ){ 1420 z++; 1421 N++; 1422 } 1423 return z[0]==0 ? N : 0; 1424 } 1425 1426 /* 1427 ** Print sketchy documentation for this utility program 1428 */ 1429 static void showHelp(void){ 1430 printf("Usage: %s [options] SOURCE-DB ?ARGS...?\n", g.zArgv0); 1431 printf( 1432 "Read databases and SQL scripts from SOURCE-DB and execute each script against\n" 1433 "each database, checking for crashes and memory leaks.\n" 1434 "Options:\n" 1435 " --cell-size-check Set the PRAGMA cell_size_check=ON\n" 1436 " --dbid N Use only the database where dbid=N\n" 1437 " --export-db DIR Write databases to files(s) in DIR. Works with --dbid\n" 1438 " --export-sql DIR Write SQL to file(s) in DIR. Also works with --sqlid\n" 1439 " --help Show this help text\n" 1440 " --info Show information about SOURCE-DB w/o running tests\n" 1441 " --limit-depth N Limit expression depth to N. Default: 500\n" 1442 " --limit-heap N Limit heap memory to N. Default: 100M\n" 1443 " --limit-mem N Limit memory used by test SQLite instance to N bytes\n" 1444 " --limit-vdbe Panic if any test runs for more than 100,000 cycles\n" 1445 " --load-sql FILE.. Load SQL scripts fron files into SOURCE-DB\n" 1446 " --load-db FILE.. Load template databases from files into SOURCE_DB\n" 1447 " --load-dbsql FILE.. Load dbsqlfuzz outputs into the xsql table\n" 1448 " ^^^^------ Use \"-\" for FILE to read filenames from stdin\n" 1449 " -m TEXT Add a description to the database\n" 1450 " --native-vfs Use the native VFS for initially empty database files\n" 1451 " --native-malloc Turn off MEMSYS3/5 and Lookaside\n" 1452 " --oss-fuzz Enable OSS-FUZZ testing\n" 1453 " --prng-seed N Seed value for the PRGN inside of SQLite\n" 1454 " -q|--quiet Reduced output\n" 1455 " --rebuild Rebuild and vacuum the database file\n" 1456 " --result-trace Show the results of each SQL command\n" 1457 " --skip N Skip the first N test cases\n" 1458 " --spinner Use a spinner to show progress\n" 1459 " --sqlid N Use only SQL where sqlid=N\n" 1460 " --timeout N Maximum time for any one test in N millseconds\n" 1461 " -v|--verbose Increased output. Repeat for more output.\n" 1462 " --vdbe-debug Activate VDBE debugging.\n" 1463 ); 1464 } 1465 1466 int main(int argc, char **argv){ 1467 sqlite3_int64 iBegin; /* Start time of this program */ 1468 int quietFlag = 0; /* True if --quiet or -q */ 1469 int verboseFlag = 0; /* True if --verbose or -v */ 1470 char *zInsSql = 0; /* SQL statement for --load-db or --load-sql */ 1471 int iFirstInsArg = 0; /* First argv[] for --load-db or --load-sql */ 1472 sqlite3 *db = 0; /* The open database connection */ 1473 sqlite3_stmt *pStmt; /* A prepared statement */ 1474 int rc; /* Result code from SQLite interface calls */ 1475 Blob *pSql; /* For looping over SQL scripts */ 1476 Blob *pDb; /* For looping over template databases */ 1477 int i; /* Loop index for the argv[] loop */ 1478 int dbSqlOnly = 0; /* Only use scripts that are dbsqlfuzz */ 1479 int onlySqlid = -1; /* --sqlid */ 1480 int onlyDbid = -1; /* --dbid */ 1481 int nativeFlag = 0; /* --native-vfs */ 1482 int rebuildFlag = 0; /* --rebuild */ 1483 int vdbeLimitFlag = 0; /* --limit-vdbe */ 1484 int infoFlag = 0; /* --info */ 1485 int nSkip = 0; /* --skip */ 1486 int bSpinner = 0; /* True for --spinner */ 1487 int timeoutTest = 0; /* undocumented --timeout-test flag */ 1488 int runFlags = 0; /* Flags sent to runSql() */ 1489 char *zMsg = 0; /* Add this message */ 1490 int nSrcDb = 0; /* Number of source databases */ 1491 char **azSrcDb = 0; /* Array of source database names */ 1492 int iSrcDb; /* Loop over all source databases */ 1493 int nTest = 0; /* Total number of tests performed */ 1494 char *zDbName = ""; /* Appreviated name of a source database */ 1495 const char *zFailCode = 0; /* Value of the TEST_FAILURE env variable */ 1496 int cellSzCkFlag = 0; /* --cell-size-check */ 1497 int sqlFuzz = 0; /* True for SQL fuzz. False for DB fuzz */ 1498 int iTimeout = 120000; /* Default 120-second timeout */ 1499 int nMem = 0; /* Memory limit override */ 1500 int nMemThisDb = 0; /* Memory limit set by the CONFIG table */ 1501 char *zExpDb = 0; /* Write Databases to files in this directory */ 1502 char *zExpSql = 0; /* Write SQL to files in this directory */ 1503 void *pHeap = 0; /* Heap for use by SQLite */ 1504 int ossFuzz = 0; /* enable OSS-FUZZ testing */ 1505 int ossFuzzThisDb = 0; /* ossFuzz value for this particular database */ 1506 int nativeMalloc = 0; /* Turn off MEMSYS3/5 and lookaside if true */ 1507 sqlite3_vfs *pDfltVfs; /* The default VFS */ 1508 int openFlags4Data; /* Flags for sqlite3_open_v2() */ 1509 int bTimer = 0; /* Show elapse time for each test */ 1510 int nV; /* How much to increase verbosity with -vvvv */ 1511 sqlite3_int64 tmStart; /* Start of each test */ 1512 1513 sqlite3_config(SQLITE_CONFIG_URI,1); 1514 registerOomSimulator(); 1515 sqlite3_initialize(); 1516 iBegin = timeOfDay(); 1517 #ifdef __unix__ 1518 signal(SIGALRM, signalHandler); 1519 signal(SIGSEGV, signalHandler); 1520 signal(SIGABRT, signalHandler); 1521 #endif 1522 g.zArgv0 = argv[0]; 1523 openFlags4Data = SQLITE_OPEN_READONLY; 1524 zFailCode = getenv("TEST_FAILURE"); 1525 pDfltVfs = sqlite3_vfs_find(0); 1526 inmemVfsRegister(1); 1527 for(i=1; i<argc; i++){ 1528 const char *z = argv[i]; 1529 if( z[0]=='-' ){ 1530 z++; 1531 if( z[0]=='-' ) z++; 1532 if( strcmp(z,"cell-size-check")==0 ){ 1533 cellSzCkFlag = 1; 1534 }else 1535 if( strcmp(z,"dbid")==0 ){ 1536 if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); 1537 onlyDbid = integerValue(argv[++i]); 1538 }else 1539 if( strcmp(z,"export-db")==0 ){ 1540 if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); 1541 zExpDb = argv[++i]; 1542 }else 1543 if( strcmp(z,"export-sql")==0 || strcmp(z,"export-dbsql")==0 ){ 1544 if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); 1545 zExpSql = argv[++i]; 1546 }else 1547 if( strcmp(z,"help")==0 ){ 1548 showHelp(); 1549 return 0; 1550 }else 1551 if( strcmp(z,"info")==0 ){ 1552 infoFlag = 1; 1553 }else 1554 if( strcmp(z,"limit-depth")==0 ){ 1555 if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); 1556 depthLimit = integerValue(argv[++i]); 1557 }else 1558 if( strcmp(z,"limit-heap")==0 ){ 1559 if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); 1560 heapLimit = integerValue(argv[++i]); 1561 }else 1562 if( strcmp(z,"limit-mem")==0 ){ 1563 if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); 1564 nMem = integerValue(argv[++i]); 1565 }else 1566 if( strcmp(z,"limit-vdbe")==0 ){ 1567 vdbeLimitFlag = 1; 1568 }else 1569 if( strcmp(z,"load-sql")==0 ){ 1570 zInsSql = "INSERT INTO xsql(sqltext)" 1571 "VALUES(CAST(readtextfile(?1) AS text))"; 1572 iFirstInsArg = i+1; 1573 openFlags4Data = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE; 1574 break; 1575 }else 1576 if( strcmp(z,"load-db")==0 ){ 1577 zInsSql = "INSERT INTO db(dbcontent) VALUES(readfile(?1))"; 1578 iFirstInsArg = i+1; 1579 openFlags4Data = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE; 1580 break; 1581 }else 1582 if( strcmp(z,"load-dbsql")==0 ){ 1583 zInsSql = "INSERT INTO xsql(sqltext)" 1584 "VALUES(CAST(readtextfile(?1) AS text))"; 1585 iFirstInsArg = i+1; 1586 openFlags4Data = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE; 1587 dbSqlOnly = 1; 1588 break; 1589 }else 1590 if( strcmp(z,"m")==0 ){ 1591 if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); 1592 zMsg = argv[++i]; 1593 openFlags4Data = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE; 1594 }else 1595 if( strcmp(z,"native-malloc")==0 ){ 1596 nativeMalloc = 1; 1597 }else 1598 if( strcmp(z,"native-vfs")==0 ){ 1599 nativeFlag = 1; 1600 }else 1601 if( strcmp(z,"oss-fuzz")==0 ){ 1602 ossFuzz = 1; 1603 }else 1604 if( strcmp(z,"prng-seed")==0 ){ 1605 if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); 1606 g.uRandom = atoi(argv[++i]); 1607 }else 1608 if( strcmp(z,"quiet")==0 || strcmp(z,"q")==0 ){ 1609 quietFlag = 1; 1610 verboseFlag = 0; 1611 eVerbosity = 0; 1612 }else 1613 if( strcmp(z,"rebuild")==0 ){ 1614 rebuildFlag = 1; 1615 openFlags4Data = SQLITE_OPEN_READWRITE; 1616 }else 1617 if( strcmp(z,"result-trace")==0 ){ 1618 runFlags |= SQL_OUTPUT; 1619 }else 1620 if( strcmp(z,"skip")==0 ){ 1621 if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); 1622 nSkip = atoi(argv[++i]); 1623 }else 1624 if( strcmp(z,"spinner")==0 ){ 1625 bSpinner = 1; 1626 }else 1627 if( strcmp(z,"timer")==0 ){ 1628 bTimer = 1; 1629 }else 1630 if( strcmp(z,"sqlid")==0 ){ 1631 if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); 1632 onlySqlid = integerValue(argv[++i]); 1633 }else 1634 if( strcmp(z,"timeout")==0 ){ 1635 if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); 1636 iTimeout = integerValue(argv[++i]); 1637 }else 1638 if( strcmp(z,"timeout-test")==0 ){ 1639 timeoutTest = 1; 1640 #ifndef __unix__ 1641 fatalError("timeout is not available on non-unix systems"); 1642 #endif 1643 }else 1644 if( strcmp(z,"vdbe-debug")==0 ){ 1645 bVdbeDebug = 1; 1646 }else 1647 if( strcmp(z,"verbose")==0 ){ 1648 quietFlag = 0; 1649 verboseFlag++; 1650 eVerbosity++; 1651 if( verboseFlag>1 ) runFlags |= SQL_TRACE; 1652 }else 1653 if( (nV = numberOfVChar(z))>=1 ){ 1654 quietFlag = 0; 1655 verboseFlag += nV; 1656 eVerbosity += nV; 1657 if( verboseFlag>1 ) runFlags |= SQL_TRACE; 1658 }else 1659 if( strcmp(z,"version")==0 ){ 1660 int ii; 1661 const char *zz; 1662 printf("SQLite %s %s\n", sqlite3_libversion(), sqlite3_sourceid()); 1663 for(ii=0; (zz = sqlite3_compileoption_get(ii))!=0; ii++){ 1664 printf("%s\n", zz); 1665 } 1666 return 0; 1667 }else 1668 { 1669 fatalError("unknown option: %s", argv[i]); 1670 } 1671 }else{ 1672 nSrcDb++; 1673 azSrcDb = safe_realloc(azSrcDb, nSrcDb*sizeof(azSrcDb[0])); 1674 azSrcDb[nSrcDb-1] = argv[i]; 1675 } 1676 } 1677 if( nSrcDb==0 ) fatalError("no source database specified"); 1678 if( nSrcDb>1 ){ 1679 if( zMsg ){ 1680 fatalError("cannot change the description of more than one database"); 1681 } 1682 if( zInsSql ){ 1683 fatalError("cannot import into more than one database"); 1684 } 1685 } 1686 1687 /* Process each source database separately */ 1688 for(iSrcDb=0; iSrcDb<nSrcDb; iSrcDb++){ 1689 g.zDbFile = azSrcDb[iSrcDb]; 1690 rc = sqlite3_open_v2(azSrcDb[iSrcDb], &db, 1691 openFlags4Data, pDfltVfs->zName); 1692 if( rc ){ 1693 fatalError("cannot open source database %s - %s", 1694 azSrcDb[iSrcDb], sqlite3_errmsg(db)); 1695 } 1696 1697 /* Print the description, if there is one */ 1698 if( infoFlag ){ 1699 int n; 1700 zDbName = azSrcDb[iSrcDb]; 1701 i = (int)strlen(zDbName) - 1; 1702 while( i>0 && zDbName[i-1]!='/' && zDbName[i-1]!='\\' ){ i--; } 1703 zDbName += i; 1704 sqlite3_prepare_v2(db, "SELECT msg FROM readme", -1, &pStmt, 0); 1705 if( pStmt && sqlite3_step(pStmt)==SQLITE_ROW ){ 1706 printf("%s: %s", zDbName, sqlite3_column_text(pStmt,0)); 1707 }else{ 1708 printf("%s: (empty \"readme\")", zDbName); 1709 } 1710 sqlite3_finalize(pStmt); 1711 sqlite3_prepare_v2(db, "SELECT count(*) FROM db", -1, &pStmt, 0); 1712 if( pStmt 1713 && sqlite3_step(pStmt)==SQLITE_ROW 1714 && (n = sqlite3_column_int(pStmt,0))>0 1715 ){ 1716 printf(" - %d DBs", n); 1717 } 1718 sqlite3_finalize(pStmt); 1719 sqlite3_prepare_v2(db, "SELECT count(*) FROM xsql", -1, &pStmt, 0); 1720 if( pStmt 1721 && sqlite3_step(pStmt)==SQLITE_ROW 1722 && (n = sqlite3_column_int(pStmt,0))>0 1723 ){ 1724 printf(" - %d scripts", n); 1725 } 1726 sqlite3_finalize(pStmt); 1727 printf("\n"); 1728 sqlite3_close(db); 1729 continue; 1730 } 1731 1732 rc = sqlite3_exec(db, 1733 "CREATE TABLE IF NOT EXISTS db(\n" 1734 " dbid INTEGER PRIMARY KEY, -- database id\n" 1735 " dbcontent BLOB -- database disk file image\n" 1736 ");\n" 1737 "CREATE TABLE IF NOT EXISTS xsql(\n" 1738 " sqlid INTEGER PRIMARY KEY, -- SQL script id\n" 1739 " sqltext TEXT -- Text of SQL statements to run\n" 1740 ");" 1741 "CREATE TABLE IF NOT EXISTS readme(\n" 1742 " msg TEXT -- Human-readable description of this file\n" 1743 ");", 0, 0, 0); 1744 if( rc ) fatalError("cannot create schema: %s", sqlite3_errmsg(db)); 1745 if( zMsg ){ 1746 char *zSql; 1747 zSql = sqlite3_mprintf( 1748 "DELETE FROM readme; INSERT INTO readme(msg) VALUES(%Q)", zMsg); 1749 rc = sqlite3_exec(db, zSql, 0, 0, 0); 1750 sqlite3_free(zSql); 1751 if( rc ) fatalError("cannot change description: %s", sqlite3_errmsg(db)); 1752 } 1753 ossFuzzThisDb = ossFuzz; 1754 1755 /* If the CONFIG(name,value) table exists, read db-specific settings 1756 ** from that table */ 1757 if( sqlite3_table_column_metadata(db,0,"config",0,0,0,0,0,0)==SQLITE_OK ){ 1758 rc = sqlite3_prepare_v2(db, "SELECT name, value FROM config", 1759 -1, &pStmt, 0); 1760 if( rc ) fatalError("cannot prepare query of CONFIG table: %s", 1761 sqlite3_errmsg(db)); 1762 while( SQLITE_ROW==sqlite3_step(pStmt) ){ 1763 const char *zName = (const char *)sqlite3_column_text(pStmt,0); 1764 if( zName==0 ) continue; 1765 if( strcmp(zName, "oss-fuzz")==0 ){ 1766 ossFuzzThisDb = sqlite3_column_int(pStmt,1); 1767 if( verboseFlag ) printf("Config: oss-fuzz=%d\n", ossFuzzThisDb); 1768 } 1769 if( strcmp(zName, "limit-mem")==0 ){ 1770 nMemThisDb = sqlite3_column_int(pStmt,1); 1771 if( verboseFlag ) printf("Config: limit-mem=%d\n", nMemThisDb); 1772 } 1773 } 1774 sqlite3_finalize(pStmt); 1775 } 1776 1777 if( zInsSql ){ 1778 sqlite3_create_function(db, "readfile", 1, SQLITE_UTF8, 0, 1779 readfileFunc, 0, 0); 1780 sqlite3_create_function(db, "readtextfile", 1, SQLITE_UTF8, 0, 1781 readtextfileFunc, 0, 0); 1782 sqlite3_create_function(db, "isdbsql", 1, SQLITE_UTF8, 0, 1783 isDbSqlFunc, 0, 0); 1784 rc = sqlite3_prepare_v2(db, zInsSql, -1, &pStmt, 0); 1785 if( rc ) fatalError("cannot prepare statement [%s]: %s", 1786 zInsSql, sqlite3_errmsg(db)); 1787 rc = sqlite3_exec(db, "BEGIN", 0, 0, 0); 1788 if( rc ) fatalError("cannot start a transaction"); 1789 for(i=iFirstInsArg; i<argc; i++){ 1790 if( strcmp(argv[i],"-")==0 ){ 1791 /* A filename of "-" means read multiple filenames from stdin */ 1792 char zLine[2000]; 1793 while( rc==0 && fgets(zLine,sizeof(zLine),stdin)!=0 ){ 1794 size_t kk = strlen(zLine); 1795 while( kk>0 && zLine[kk-1]<=' ' ) kk--; 1796 sqlite3_bind_text(pStmt, 1, zLine, (int)kk, SQLITE_STATIC); 1797 if( verboseFlag ) printf("loading %.*s\n", (int)kk, zLine); 1798 sqlite3_step(pStmt); 1799 rc = sqlite3_reset(pStmt); 1800 if( rc ) fatalError("insert failed for %s", zLine); 1801 } 1802 }else{ 1803 sqlite3_bind_text(pStmt, 1, argv[i], -1, SQLITE_STATIC); 1804 if( verboseFlag ) printf("loading %s\n", argv[i]); 1805 sqlite3_step(pStmt); 1806 rc = sqlite3_reset(pStmt); 1807 if( rc ) fatalError("insert failed for %s", argv[i]); 1808 } 1809 } 1810 sqlite3_finalize(pStmt); 1811 rc = sqlite3_exec(db, "COMMIT", 0, 0, 0); 1812 if( rc ) fatalError("cannot commit the transaction: %s", 1813 sqlite3_errmsg(db)); 1814 rebuild_database(db, dbSqlOnly); 1815 sqlite3_close(db); 1816 return 0; 1817 } 1818 rc = sqlite3_exec(db, "PRAGMA query_only=1;", 0, 0, 0); 1819 if( rc ) fatalError("cannot set database to query-only"); 1820 if( zExpDb!=0 || zExpSql!=0 ){ 1821 sqlite3_create_function(db, "writefile", 2, SQLITE_UTF8, 0, 1822 writefileFunc, 0, 0); 1823 if( zExpDb!=0 ){ 1824 const char *zExDb = 1825 "SELECT writefile(printf('%s/db%06d.db',?1,dbid),dbcontent)," 1826 " dbid, printf('%s/db%06d.db',?1,dbid), length(dbcontent)" 1827 " FROM db WHERE ?2<0 OR dbid=?2;"; 1828 rc = sqlite3_prepare_v2(db, zExDb, -1, &pStmt, 0); 1829 if( rc ) fatalError("cannot prepare statement [%s]: %s", 1830 zExDb, sqlite3_errmsg(db)); 1831 sqlite3_bind_text64(pStmt, 1, zExpDb, strlen(zExpDb), 1832 SQLITE_STATIC, SQLITE_UTF8); 1833 sqlite3_bind_int(pStmt, 2, onlyDbid); 1834 while( sqlite3_step(pStmt)==SQLITE_ROW ){ 1835 printf("write db-%d (%d bytes) into %s\n", 1836 sqlite3_column_int(pStmt,1), 1837 sqlite3_column_int(pStmt,3), 1838 sqlite3_column_text(pStmt,2)); 1839 } 1840 sqlite3_finalize(pStmt); 1841 } 1842 if( zExpSql!=0 ){ 1843 const char *zExSql = 1844 "SELECT writefile(printf('%s/sql%06d.txt',?1,sqlid),sqltext)," 1845 " sqlid, printf('%s/sql%06d.txt',?1,sqlid), length(sqltext)" 1846 " FROM xsql WHERE ?2<0 OR sqlid=?2;"; 1847 rc = sqlite3_prepare_v2(db, zExSql, -1, &pStmt, 0); 1848 if( rc ) fatalError("cannot prepare statement [%s]: %s", 1849 zExSql, sqlite3_errmsg(db)); 1850 sqlite3_bind_text64(pStmt, 1, zExpSql, strlen(zExpSql), 1851 SQLITE_STATIC, SQLITE_UTF8); 1852 sqlite3_bind_int(pStmt, 2, onlySqlid); 1853 while( sqlite3_step(pStmt)==SQLITE_ROW ){ 1854 printf("write sql-%d (%d bytes) into %s\n", 1855 sqlite3_column_int(pStmt,1), 1856 sqlite3_column_int(pStmt,3), 1857 sqlite3_column_text(pStmt,2)); 1858 } 1859 sqlite3_finalize(pStmt); 1860 } 1861 sqlite3_close(db); 1862 return 0; 1863 } 1864 1865 /* Load all SQL script content and all initial database images from the 1866 ** source db 1867 */ 1868 blobListLoadFromDb(db, "SELECT sqlid, sqltext FROM xsql", onlySqlid, 1869 &g.nSql, &g.pFirstSql); 1870 if( g.nSql==0 ) fatalError("need at least one SQL script"); 1871 blobListLoadFromDb(db, "SELECT dbid, dbcontent FROM db", onlyDbid, 1872 &g.nDb, &g.pFirstDb); 1873 if( g.nDb==0 ){ 1874 g.pFirstDb = safe_realloc(0, sizeof(Blob)); 1875 memset(g.pFirstDb, 0, sizeof(Blob)); 1876 g.pFirstDb->id = 1; 1877 g.pFirstDb->seq = 0; 1878 g.nDb = 1; 1879 sqlFuzz = 1; 1880 } 1881 1882 /* Print the description, if there is one */ 1883 if( !quietFlag ){ 1884 zDbName = azSrcDb[iSrcDb]; 1885 i = (int)strlen(zDbName) - 1; 1886 while( i>0 && zDbName[i-1]!='/' && zDbName[i-1]!='\\' ){ i--; } 1887 zDbName += i; 1888 sqlite3_prepare_v2(db, "SELECT msg FROM readme", -1, &pStmt, 0); 1889 if( pStmt && sqlite3_step(pStmt)==SQLITE_ROW ){ 1890 printf("%s: %s\n", zDbName, sqlite3_column_text(pStmt,0)); 1891 } 1892 sqlite3_finalize(pStmt); 1893 } 1894 1895 /* Rebuild the database, if requested */ 1896 if( rebuildFlag ){ 1897 if( !quietFlag ){ 1898 printf("%s: rebuilding... ", zDbName); 1899 fflush(stdout); 1900 } 1901 rebuild_database(db, 0); 1902 if( !quietFlag ) printf("done\n"); 1903 } 1904 1905 /* Close the source database. Verify that no SQLite memory allocations are 1906 ** outstanding. 1907 */ 1908 sqlite3_close(db); 1909 if( sqlite3_memory_used()>0 ){ 1910 fatalError("SQLite has memory in use before the start of testing"); 1911 } 1912 1913 /* Limit available memory, if requested */ 1914 sqlite3_shutdown(); 1915 1916 if( nMemThisDb>0 && nMem==0 ){ 1917 if( !nativeMalloc ){ 1918 pHeap = realloc(pHeap, nMemThisDb); 1919 if( pHeap==0 ){ 1920 fatalError("failed to allocate %d bytes of heap memory", nMem); 1921 } 1922 sqlite3_config(SQLITE_CONFIG_HEAP, pHeap, nMemThisDb, 128); 1923 }else{ 1924 sqlite3_hard_heap_limit64((sqlite3_int64)nMemThisDb); 1925 } 1926 }else{ 1927 sqlite3_hard_heap_limit64(0); 1928 } 1929 1930 /* Disable lookaside with the --native-malloc option */ 1931 if( nativeMalloc ){ 1932 sqlite3_config(SQLITE_CONFIG_LOOKASIDE, 0, 0); 1933 } 1934 1935 /* Reset the in-memory virtual filesystem */ 1936 formatVfs(); 1937 1938 /* Run a test using each SQL script against each database. 1939 */ 1940 if( !verboseFlag && !quietFlag && !bSpinner ) printf("%s:", zDbName); 1941 for(pSql=g.pFirstSql; pSql; pSql=pSql->pNext){ 1942 tmStart = timeOfDay(); 1943 if( isDbSql(pSql->a, pSql->sz) ){ 1944 sqlite3_snprintf(sizeof(g.zTestName), g.zTestName, "sqlid=%d",pSql->id); 1945 if( bSpinner ){ 1946 int nTotal =g.nSql; 1947 int idx = pSql->seq; 1948 printf("\r%s: %d/%d ", zDbName, idx, nTotal); 1949 fflush(stdout); 1950 }else if( verboseFlag ){ 1951 printf("%s\n", g.zTestName); 1952 fflush(stdout); 1953 }else if( !quietFlag ){ 1954 static int prevAmt = -1; 1955 int idx = pSql->seq; 1956 int amt = idx*10/(g.nSql); 1957 if( amt!=prevAmt ){ 1958 printf(" %d%%", amt*10); 1959 fflush(stdout); 1960 prevAmt = amt; 1961 } 1962 } 1963 if( nSkip>0 ){ 1964 nSkip--; 1965 }else{ 1966 runCombinedDbSqlInput(pSql->a, pSql->sz, iTimeout); 1967 } 1968 nTest++; 1969 if( bTimer ){ 1970 sqlite3_int64 tmEnd = timeOfDay(); 1971 printf("%lld %s\n", tmEnd - tmStart, g.zTestName); 1972 } 1973 g.zTestName[0] = 0; 1974 disableOom(); 1975 continue; 1976 } 1977 for(pDb=g.pFirstDb; pDb; pDb=pDb->pNext){ 1978 int openFlags; 1979 const char *zVfs = "inmem"; 1980 sqlite3_snprintf(sizeof(g.zTestName), g.zTestName, "sqlid=%d,dbid=%d", 1981 pSql->id, pDb->id); 1982 if( bSpinner ){ 1983 int nTotal = g.nDb*g.nSql; 1984 int idx = pSql->seq*g.nDb + pDb->id - 1; 1985 printf("\r%s: %d/%d ", zDbName, idx, nTotal); 1986 fflush(stdout); 1987 }else if( verboseFlag ){ 1988 printf("%s\n", g.zTestName); 1989 fflush(stdout); 1990 }else if( !quietFlag ){ 1991 static int prevAmt = -1; 1992 int idx = pSql->seq*g.nDb + pDb->id - 1; 1993 int amt = idx*10/(g.nDb*g.nSql); 1994 if( amt!=prevAmt ){ 1995 printf(" %d%%", amt*10); 1996 fflush(stdout); 1997 prevAmt = amt; 1998 } 1999 } 2000 if( nSkip>0 ){ 2001 nSkip--; 2002 continue; 2003 } 2004 createVFile("main.db", pDb->sz, pDb->a); 2005 sqlite3_randomness(0,0); 2006 if( ossFuzzThisDb ){ 2007 #ifndef SQLITE_OSS_FUZZ 2008 fatalError("--oss-fuzz not supported: recompile" 2009 " with -DSQLITE_OSS_FUZZ"); 2010 #else 2011 extern int LLVMFuzzerTestOneInput(const uint8_t*, size_t); 2012 LLVMFuzzerTestOneInput((const uint8_t*)pSql->a, (size_t)pSql->sz); 2013 #endif 2014 }else{ 2015 openFlags = SQLITE_OPEN_CREATE | SQLITE_OPEN_READWRITE; 2016 if( nativeFlag && pDb->sz==0 ){ 2017 openFlags |= SQLITE_OPEN_MEMORY; 2018 zVfs = 0; 2019 } 2020 rc = sqlite3_open_v2("main.db", &db, openFlags, zVfs); 2021 if( rc ) fatalError("cannot open inmem database"); 2022 sqlite3_limit(db, SQLITE_LIMIT_LENGTH, 100000000); 2023 sqlite3_limit(db, SQLITE_LIMIT_LIKE_PATTERN_LENGTH, 50); 2024 if( cellSzCkFlag ) runSql(db, "PRAGMA cell_size_check=ON", runFlags); 2025 setAlarm((iTimeout+999)/1000); 2026 /* Enable test functions */ 2027 sqlite3_test_control(SQLITE_TESTCTRL_INTERNAL_FUNCTIONS, db); 2028 #ifndef SQLITE_OMIT_PROGRESS_CALLBACK 2029 if( sqlFuzz || vdbeLimitFlag ){ 2030 sqlite3_progress_handler(db, 100000, progressHandler, 2031 &vdbeLimitFlag); 2032 } 2033 #endif 2034 #ifdef SQLITE_TESTCTRL_PRNG_SEED 2035 sqlite3_test_control(SQLITE_TESTCTRL_PRNG_SEED, 1, db); 2036 #endif 2037 if( bVdbeDebug ){ 2038 sqlite3_exec(db, "PRAGMA vdbe_debug=ON", 0, 0, 0); 2039 } 2040 do{ 2041 runSql(db, (char*)pSql->a, runFlags); 2042 }while( timeoutTest ); 2043 setAlarm(0); 2044 sqlite3_exec(db, "PRAGMA temp_store_directory=''", 0, 0, 0); 2045 sqlite3_close(db); 2046 } 2047 if( sqlite3_memory_used()>0 ){ 2048 fatalError("memory leak: %lld bytes outstanding", 2049 sqlite3_memory_used()); 2050 } 2051 reformatVfs(); 2052 nTest++; 2053 if( bTimer ){ 2054 sqlite3_int64 tmEnd = timeOfDay(); 2055 printf("%lld %s\n", tmEnd - tmStart, g.zTestName); 2056 } 2057 g.zTestName[0] = 0; 2058 2059 /* Simulate an error if the TEST_FAILURE environment variable is "5". 2060 ** This is used to verify that automated test script really do spot 2061 ** errors that occur in this test program. 2062 */ 2063 if( zFailCode ){ 2064 if( zFailCode[0]=='5' && zFailCode[1]==0 ){ 2065 fatalError("simulated failure"); 2066 }else if( zFailCode[0]!=0 ){ 2067 /* If TEST_FAILURE is something other than 5, just exit the test 2068 ** early */ 2069 printf("\nExit early due to TEST_FAILURE being set\n"); 2070 iSrcDb = nSrcDb-1; 2071 goto sourcedb_cleanup; 2072 } 2073 } 2074 } 2075 } 2076 if( bSpinner ){ 2077 int nTotal = g.nDb*g.nSql; 2078 printf("\r%s: %d/%d \n", zDbName, nTotal, nTotal); 2079 }else if( !quietFlag && !verboseFlag ){ 2080 printf(" 100%% - %d tests\n", g.nDb*g.nSql); 2081 } 2082 2083 /* Clean up at the end of processing a single source database 2084 */ 2085 sourcedb_cleanup: 2086 blobListFree(g.pFirstSql); 2087 blobListFree(g.pFirstDb); 2088 reformatVfs(); 2089 2090 } /* End loop over all source databases */ 2091 2092 if( !quietFlag ){ 2093 sqlite3_int64 iElapse = timeOfDay() - iBegin; 2094 printf("fuzzcheck: 0 errors out of %d tests in %d.%03d seconds\n" 2095 "SQLite %s %s\n", 2096 nTest, (int)(iElapse/1000), (int)(iElapse%1000), 2097 sqlite3_libversion(), sqlite3_sourceid()); 2098 } 2099 free(azSrcDb); 2100 free(pHeap); 2101 return 0; 2102 } 2103