1 /* 2 ** 2011 March 16 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 file contains code implements a VFS shim that writes diagnostic 14 ** output for each VFS call, similar to "strace". 15 ** 16 ** USAGE: 17 ** 18 ** This source file exports a single symbol which is the name of a 19 ** function: 20 ** 21 ** int vfstrace_register( 22 ** const char *zTraceName, // Name of the newly constructed VFS 23 ** const char *zOldVfsName, // Name of the underlying VFS 24 ** int (*xOut)(const char*,void*), // Output routine. ex: fputs 25 ** void *pOutArg, // 2nd argument to xOut. ex: stderr 26 ** int makeDefault // Make the new VFS the default 27 ** ); 28 ** 29 ** Applications that want to trace their VFS usage must provide a callback 30 ** function with this prototype: 31 ** 32 ** int traceOutput(const char *zMessage, void *pAppData); 33 ** 34 ** This function will "output" the trace messages, where "output" can 35 ** mean different things to different applications. The traceOutput function 36 ** for the command-line shell (see shell.c) is "fputs" from the standard 37 ** library, which means that all trace output is written on the stream 38 ** specified by the second argument. In the case of the command-line shell 39 ** the second argument is stderr. Other applications might choose to output 40 ** trace information to a file, over a socket, or write it into a buffer. 41 ** 42 ** The vfstrace_register() function creates a new "shim" VFS named by 43 ** the zTraceName parameter. A "shim" VFS is an SQLite backend that does 44 ** not really perform the duties of a true backend, but simply filters or 45 ** interprets VFS calls before passing them off to another VFS which does 46 ** the actual work. In this case the other VFS - the one that does the 47 ** real work - is identified by the second parameter, zOldVfsName. If 48 ** the the 2nd parameter is NULL then the default VFS is used. The common 49 ** case is for the 2nd parameter to be NULL. 50 ** 51 ** The third and fourth parameters are the pointer to the output function 52 ** and the second argument to the output function. For the SQLite 53 ** command-line shell, when the -vfstrace option is used, these parameters 54 ** are fputs and stderr, respectively. 55 ** 56 ** The fifth argument is true (non-zero) to cause the newly created VFS 57 ** to become the default VFS. The common case is for the fifth parameter 58 ** to be true. 59 ** 60 ** The call to vfstrace_register() simply creates the shim VFS that does 61 ** tracing. The application must also arrange to use the new VFS for 62 ** all database connections that are created and for which tracing is 63 ** desired. This can be done by specifying the trace VFS using URI filename 64 ** notation, or by specifying the trace VFS as the 4th parameter to 65 ** sqlite3_open_v2() or by making the trace VFS be the default (by setting 66 ** the 5th parameter of vfstrace_register() to 1). 67 ** 68 ** 69 ** ENABLING VFSTRACE IN A COMMAND-LINE SHELL 70 ** 71 ** The SQLite command line shell implemented by the shell.c source file 72 ** can be used with this module. To compile in -vfstrace support, first 73 ** gather this file (test_vfstrace.c), the shell source file (shell.c), 74 ** and the SQLite amalgamation source files (sqlite3.c, sqlite3.h) into 75 ** the working directory. Then compile using a command like the following: 76 ** 77 ** gcc -o sqlite3 -Os -I. -DSQLITE_ENABLE_VFSTRACE \ 78 ** -DSQLITE_THREADSAFE=0 -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE \ 79 ** -DHAVE_READLINE -DHAVE_USLEEP=1 \ 80 ** shell.c test_vfstrace.c sqlite3.c -ldl -lreadline -lncurses 81 ** 82 ** The gcc command above works on Linux and provides (in addition to the 83 ** -vfstrace option) support for FTS3 and FTS4, RTREE, and command-line 84 ** editing using the readline library. The command-line shell does not 85 ** use threads so we added -DSQLITE_THREADSAFE=0 just to make the code 86 ** run a little faster. For compiling on a Mac, you'll probably need 87 ** to omit the -DHAVE_READLINE, the -lreadline, and the -lncurses options. 88 ** The compilation could be simplified to just this: 89 ** 90 ** gcc -DSQLITE_ENABLE_VFSTRACE \ 91 ** shell.c test_vfstrace.c sqlite3.c -ldl -lpthread 92 ** 93 ** In this second example, all unnecessary options have been removed 94 ** Note that since the code is now threadsafe, we had to add the -lpthread 95 ** option to pull in the pthreads library. 96 ** 97 ** To cross-compile for windows using MinGW, a command like this might 98 ** work: 99 ** 100 ** /opt/mingw/bin/i386-mingw32msvc-gcc -o sqlite3.exe -Os -I \ 101 ** -DSQLITE_THREADSAFE=0 -DSQLITE_ENABLE_VFSTRACE \ 102 ** shell.c test_vfstrace.c sqlite3.c 103 ** 104 ** Similar compiler commands will work on different systems. The key 105 ** invariants are (1) you must have -DSQLITE_ENABLE_VFSTRACE so that 106 ** the shell.c source file will know to include the -vfstrace command-line 107 ** option and (2) you must compile and link the three source files 108 ** shell,c, test_vfstrace.c, and sqlite3.c. 109 */ 110 #include <stdlib.h> 111 #include <string.h> 112 #include "sqlite3.h" 113 114 /* 115 ** An instance of this structure is attached to the each trace VFS to 116 ** provide auxiliary information. 117 */ 118 typedef struct vfstrace_info vfstrace_info; 119 struct vfstrace_info { 120 sqlite3_vfs *pRootVfs; /* The underlying real VFS */ 121 int (*xOut)(const char*, void*); /* Send output here */ 122 void *pOutArg; /* First argument to xOut */ 123 const char *zVfsName; /* Name of this trace-VFS */ 124 sqlite3_vfs *pTraceVfs; /* Pointer back to the trace VFS */ 125 }; 126 127 /* 128 ** The sqlite3_file object for the trace VFS 129 */ 130 typedef struct vfstrace_file vfstrace_file; 131 struct vfstrace_file { 132 sqlite3_file base; /* Base class. Must be first */ 133 vfstrace_info *pInfo; /* The trace-VFS to which this file belongs */ 134 const char *zFName; /* Base name of the file */ 135 sqlite3_file *pReal; /* The real underlying file */ 136 }; 137 138 /* 139 ** Method declarations for vfstrace_file. 140 */ 141 static int vfstraceClose(sqlite3_file*); 142 static int vfstraceRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 143 static int vfstraceWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64); 144 static int vfstraceTruncate(sqlite3_file*, sqlite3_int64 size); 145 static int vfstraceSync(sqlite3_file*, int flags); 146 static int vfstraceFileSize(sqlite3_file*, sqlite3_int64 *pSize); 147 static int vfstraceLock(sqlite3_file*, int); 148 static int vfstraceUnlock(sqlite3_file*, int); 149 static int vfstraceCheckReservedLock(sqlite3_file*, int *); 150 static int vfstraceFileControl(sqlite3_file*, int op, void *pArg); 151 static int vfstraceSectorSize(sqlite3_file*); 152 static int vfstraceDeviceCharacteristics(sqlite3_file*); 153 static int vfstraceShmLock(sqlite3_file*,int,int,int); 154 static int vfstraceShmMap(sqlite3_file*,int,int,int, void volatile **); 155 static void vfstraceShmBarrier(sqlite3_file*); 156 static int vfstraceShmUnmap(sqlite3_file*,int); 157 158 /* 159 ** Method declarations for vfstrace_vfs. 160 */ 161 static int vfstraceOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *); 162 static int vfstraceDelete(sqlite3_vfs*, const char *zName, int syncDir); 163 static int vfstraceAccess(sqlite3_vfs*, const char *zName, int flags, int *); 164 static int vfstraceFullPathname(sqlite3_vfs*, const char *zName, int, char *); 165 static void *vfstraceDlOpen(sqlite3_vfs*, const char *zFilename); 166 static void vfstraceDlError(sqlite3_vfs*, int nByte, char *zErrMsg); 167 static void (*vfstraceDlSym(sqlite3_vfs*,void*, const char *zSymbol))(void); 168 static void vfstraceDlClose(sqlite3_vfs*, void*); 169 static int vfstraceRandomness(sqlite3_vfs*, int nByte, char *zOut); 170 static int vfstraceSleep(sqlite3_vfs*, int microseconds); 171 static int vfstraceCurrentTime(sqlite3_vfs*, double*); 172 static int vfstraceGetLastError(sqlite3_vfs*, int, char*); 173 static int vfstraceCurrentTimeInt64(sqlite3_vfs*, sqlite3_int64*); 174 static int vfstraceSetSystemCall(sqlite3_vfs*,const char*, sqlite3_syscall_ptr); 175 static sqlite3_syscall_ptr vfstraceGetSystemCall(sqlite3_vfs*, const char *); 176 static const char *vfstraceNextSystemCall(sqlite3_vfs*, const char *zName); 177 178 /* 179 ** Return a pointer to the tail of the pathname. Examples: 180 ** 181 ** /home/drh/xyzzy.txt -> xyzzy.txt 182 ** xyzzy.txt -> xyzzy.txt 183 */ 184 static const char *fileTail(const char *z){ 185 int i; 186 if( z==0 ) return 0; 187 i = strlen(z)-1; 188 while( i>0 && z[i-1]!='/' ){ i--; } 189 return &z[i]; 190 } 191 192 /* 193 ** Send trace output defined by zFormat and subsequent arguments. 194 */ 195 static void vfstrace_printf( 196 vfstrace_info *pInfo, 197 const char *zFormat, 198 ... 199 ){ 200 va_list ap; 201 char *zMsg; 202 va_start(ap, zFormat); 203 zMsg = sqlite3_vmprintf(zFormat, ap); 204 va_end(ap); 205 pInfo->xOut(zMsg, pInfo->pOutArg); 206 sqlite3_free(zMsg); 207 } 208 209 /* 210 ** Convert value rc into a string and print it using zFormat. zFormat 211 ** should have exactly one %s 212 */ 213 static void vfstrace_print_errcode( 214 vfstrace_info *pInfo, 215 const char *zFormat, 216 int rc 217 ){ 218 char zBuf[50]; 219 char *zVal; 220 switch( rc ){ 221 case SQLITE_OK: zVal = "SQLITE_OK"; break; 222 case SQLITE_ERROR: zVal = "SQLITE_ERROR"; break; 223 case SQLITE_PERM: zVal = "SQLITE_PERM"; break; 224 case SQLITE_ABORT: zVal = "SQLITE_ABORT"; break; 225 case SQLITE_BUSY: zVal = "SQLITE_BUSY"; break; 226 case SQLITE_NOMEM: zVal = "SQLITE_NOMEM"; break; 227 case SQLITE_READONLY: zVal = "SQLITE_READONLY"; break; 228 case SQLITE_INTERRUPT: zVal = "SQLITE_INTERRUPT"; break; 229 case SQLITE_IOERR: zVal = "SQLITE_IOERR"; break; 230 case SQLITE_CORRUPT: zVal = "SQLITE_CORRUPT"; break; 231 case SQLITE_FULL: zVal = "SQLITE_FULL"; break; 232 case SQLITE_CANTOPEN: zVal = "SQLITE_CANTOPEN"; break; 233 case SQLITE_PROTOCOL: zVal = "SQLITE_PROTOCOL"; break; 234 case SQLITE_EMPTY: zVal = "SQLITE_EMPTY"; break; 235 case SQLITE_SCHEMA: zVal = "SQLITE_SCHEMA"; break; 236 case SQLITE_CONSTRAINT: zVal = "SQLITE_CONSTRAINT"; break; 237 case SQLITE_MISMATCH: zVal = "SQLITE_MISMATCH"; break; 238 case SQLITE_MISUSE: zVal = "SQLITE_MISUSE"; break; 239 case SQLITE_NOLFS: zVal = "SQLITE_NOLFS"; break; 240 case SQLITE_IOERR_READ: zVal = "SQLITE_IOERR_READ"; break; 241 case SQLITE_IOERR_SHORT_READ: zVal = "SQLITE_IOERR_SHORT_READ"; break; 242 case SQLITE_IOERR_WRITE: zVal = "SQLITE_IOERR_WRITE"; break; 243 case SQLITE_IOERR_FSYNC: zVal = "SQLITE_IOERR_FSYNC"; break; 244 case SQLITE_IOERR_DIR_FSYNC: zVal = "SQLITE_IOERR_DIR_FSYNC"; break; 245 case SQLITE_IOERR_TRUNCATE: zVal = "SQLITE_IOERR_TRUNCATE"; break; 246 case SQLITE_IOERR_FSTAT: zVal = "SQLITE_IOERR_FSTAT"; break; 247 case SQLITE_IOERR_UNLOCK: zVal = "SQLITE_IOERR_UNLOCK"; break; 248 case SQLITE_IOERR_RDLOCK: zVal = "SQLITE_IOERR_RDLOCK"; break; 249 case SQLITE_IOERR_DELETE: zVal = "SQLITE_IOERR_DELETE"; break; 250 case SQLITE_IOERR_BLOCKED: zVal = "SQLITE_IOERR_BLOCKED"; break; 251 case SQLITE_IOERR_NOMEM: zVal = "SQLITE_IOERR_NOMEM"; break; 252 case SQLITE_IOERR_ACCESS: zVal = "SQLITE_IOERR_ACCESS"; break; 253 case SQLITE_IOERR_CHECKRESERVEDLOCK: 254 zVal = "SQLITE_IOERR_CHECKRESERVEDLOCK"; break; 255 case SQLITE_IOERR_LOCK: zVal = "SQLITE_IOERR_LOCK"; break; 256 case SQLITE_IOERR_CLOSE: zVal = "SQLITE_IOERR_CLOSE"; break; 257 case SQLITE_IOERR_DIR_CLOSE: zVal = "SQLITE_IOERR_DIR_CLOSE"; break; 258 case SQLITE_IOERR_SHMOPEN: zVal = "SQLITE_IOERR_SHMOPEN"; break; 259 case SQLITE_IOERR_SHMSIZE: zVal = "SQLITE_IOERR_SHMSIZE"; break; 260 case SQLITE_IOERR_SHMLOCK: zVal = "SQLITE_IOERR_SHMLOCK"; break; 261 case SQLITE_LOCKED_SHAREDCACHE: zVal = "SQLITE_LOCKED_SHAREDCACHE"; break; 262 case SQLITE_BUSY_RECOVERY: zVal = "SQLITE_BUSY_RECOVERY"; break; 263 case SQLITE_CANTOPEN_NOTEMPDIR: zVal = "SQLITE_CANTOPEN_NOTEMPDIR"; break; 264 default: { 265 sqlite3_snprintf(sizeof(zBuf), zBuf, "%d", rc); 266 zVal = zBuf; 267 break; 268 } 269 } 270 vfstrace_printf(pInfo, zFormat, zVal); 271 } 272 273 /* 274 ** Append to a buffer. 275 */ 276 static void strappend(char *z, int *pI, const char *zAppend){ 277 int i = *pI; 278 while( zAppend[0] ){ z[i++] = *(zAppend++); } 279 z[i] = 0; 280 *pI = i; 281 } 282 283 /* 284 ** Close an vfstrace-file. 285 */ 286 static int vfstraceClose(sqlite3_file *pFile){ 287 vfstrace_file *p = (vfstrace_file *)pFile; 288 vfstrace_info *pInfo = p->pInfo; 289 int rc; 290 vfstrace_printf(pInfo, "%s.xClose(%s)", pInfo->zVfsName, p->zFName); 291 rc = p->pReal->pMethods->xClose(p->pReal); 292 vfstrace_print_errcode(pInfo, " -> %s\n", rc); 293 if( rc==SQLITE_OK ){ 294 sqlite3_free((void*)p->base.pMethods); 295 p->base.pMethods = 0; 296 } 297 return rc; 298 } 299 300 /* 301 ** Read data from an vfstrace-file. 302 */ 303 static int vfstraceRead( 304 sqlite3_file *pFile, 305 void *zBuf, 306 int iAmt, 307 sqlite_int64 iOfst 308 ){ 309 vfstrace_file *p = (vfstrace_file *)pFile; 310 vfstrace_info *pInfo = p->pInfo; 311 int rc; 312 vfstrace_printf(pInfo, "%s.xRead(%s,n=%d,ofst=%lld)", 313 pInfo->zVfsName, p->zFName, iAmt, iOfst); 314 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst); 315 vfstrace_print_errcode(pInfo, " -> %s\n", rc); 316 return rc; 317 } 318 319 /* 320 ** Write data to an vfstrace-file. 321 */ 322 static int vfstraceWrite( 323 sqlite3_file *pFile, 324 const void *zBuf, 325 int iAmt, 326 sqlite_int64 iOfst 327 ){ 328 vfstrace_file *p = (vfstrace_file *)pFile; 329 vfstrace_info *pInfo = p->pInfo; 330 int rc; 331 vfstrace_printf(pInfo, "%s.xWrite(%s,n=%d,ofst=%lld)", 332 pInfo->zVfsName, p->zFName, iAmt, iOfst); 333 rc = p->pReal->pMethods->xWrite(p->pReal, zBuf, iAmt, iOfst); 334 vfstrace_print_errcode(pInfo, " -> %s\n", rc); 335 return rc; 336 } 337 338 /* 339 ** Truncate an vfstrace-file. 340 */ 341 static int vfstraceTruncate(sqlite3_file *pFile, sqlite_int64 size){ 342 vfstrace_file *p = (vfstrace_file *)pFile; 343 vfstrace_info *pInfo = p->pInfo; 344 int rc; 345 vfstrace_printf(pInfo, "%s.xTruncate(%s,%lld)", pInfo->zVfsName, p->zFName, 346 size); 347 rc = p->pReal->pMethods->xTruncate(p->pReal, size); 348 vfstrace_printf(pInfo, " -> %d\n", rc); 349 return rc; 350 } 351 352 /* 353 ** Sync an vfstrace-file. 354 */ 355 static int vfstraceSync(sqlite3_file *pFile, int flags){ 356 vfstrace_file *p = (vfstrace_file *)pFile; 357 vfstrace_info *pInfo = p->pInfo; 358 int rc; 359 int i; 360 char zBuf[100]; 361 memcpy(zBuf, "|0", 3); 362 i = 0; 363 if( flags & SQLITE_SYNC_FULL ) strappend(zBuf, &i, "|FULL"); 364 else if( flags & SQLITE_SYNC_NORMAL ) strappend(zBuf, &i, "|NORMAL"); 365 if( flags & SQLITE_SYNC_DATAONLY ) strappend(zBuf, &i, "|DATAONLY"); 366 if( flags & ~(SQLITE_SYNC_FULL|SQLITE_SYNC_DATAONLY) ){ 367 sqlite3_snprintf(sizeof(zBuf)-i, &zBuf[i], "|0x%x", flags); 368 } 369 vfstrace_printf(pInfo, "%s.xSync(%s,%s)", pInfo->zVfsName, p->zFName, 370 &zBuf[1]); 371 rc = p->pReal->pMethods->xSync(p->pReal, flags); 372 vfstrace_printf(pInfo, " -> %d\n", rc); 373 return rc; 374 } 375 376 /* 377 ** Return the current file-size of an vfstrace-file. 378 */ 379 static int vfstraceFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ 380 vfstrace_file *p = (vfstrace_file *)pFile; 381 vfstrace_info *pInfo = p->pInfo; 382 int rc; 383 vfstrace_printf(pInfo, "%s.xFileSize(%s)", pInfo->zVfsName, p->zFName); 384 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize); 385 vfstrace_print_errcode(pInfo, " -> %s,", rc); 386 vfstrace_printf(pInfo, " size=%lld\n", *pSize); 387 return rc; 388 } 389 390 /* 391 ** Return the name of a lock. 392 */ 393 static const char *lockName(int eLock){ 394 const char *azLockNames[] = { 395 "NONE", "SHARED", "RESERVED", "PENDING", "EXCLUSIVE" 396 }; 397 if( eLock<0 || eLock>=sizeof(azLockNames)/sizeof(azLockNames[0]) ){ 398 return "???"; 399 }else{ 400 return azLockNames[eLock]; 401 } 402 } 403 404 /* 405 ** Lock an vfstrace-file. 406 */ 407 static int vfstraceLock(sqlite3_file *pFile, int eLock){ 408 vfstrace_file *p = (vfstrace_file *)pFile; 409 vfstrace_info *pInfo = p->pInfo; 410 int rc; 411 vfstrace_printf(pInfo, "%s.xLock(%s,%s)", pInfo->zVfsName, p->zFName, 412 lockName(eLock)); 413 rc = p->pReal->pMethods->xLock(p->pReal, eLock); 414 vfstrace_print_errcode(pInfo, " -> %s\n", rc); 415 return rc; 416 } 417 418 /* 419 ** Unlock an vfstrace-file. 420 */ 421 static int vfstraceUnlock(sqlite3_file *pFile, int eLock){ 422 vfstrace_file *p = (vfstrace_file *)pFile; 423 vfstrace_info *pInfo = p->pInfo; 424 int rc; 425 vfstrace_printf(pInfo, "%s.xUnlock(%s,%s)", pInfo->zVfsName, p->zFName, 426 lockName(eLock)); 427 rc = p->pReal->pMethods->xUnlock(p->pReal, eLock); 428 vfstrace_print_errcode(pInfo, " -> %s\n", rc); 429 return rc; 430 } 431 432 /* 433 ** Check if another file-handle holds a RESERVED lock on an vfstrace-file. 434 */ 435 static int vfstraceCheckReservedLock(sqlite3_file *pFile, int *pResOut){ 436 vfstrace_file *p = (vfstrace_file *)pFile; 437 vfstrace_info *pInfo = p->pInfo; 438 int rc; 439 vfstrace_printf(pInfo, "%s.xCheckReservedLock(%s,%d)", 440 pInfo->zVfsName, p->zFName); 441 rc = p->pReal->pMethods->xCheckReservedLock(p->pReal, pResOut); 442 vfstrace_print_errcode(pInfo, " -> %s", rc); 443 vfstrace_printf(pInfo, ", out=%d\n", *pResOut); 444 return rc; 445 } 446 447 /* 448 ** File control method. For custom operations on an vfstrace-file. 449 */ 450 static int vfstraceFileControl(sqlite3_file *pFile, int op, void *pArg){ 451 vfstrace_file *p = (vfstrace_file *)pFile; 452 vfstrace_info *pInfo = p->pInfo; 453 int rc; 454 char zBuf[100]; 455 char *zOp; 456 switch( op ){ 457 case SQLITE_FCNTL_LOCKSTATE: zOp = "LOCKSTATE"; break; 458 case SQLITE_GET_LOCKPROXYFILE: zOp = "GET_LOCKPROXYFILE"; break; 459 case SQLITE_SET_LOCKPROXYFILE: zOp = "SET_LOCKPROXYFILE"; break; 460 case SQLITE_LAST_ERRNO: zOp = "LAST_ERRNO"; break; 461 case SQLITE_FCNTL_SIZE_HINT: { 462 sqlite3_snprintf(sizeof(zBuf), zBuf, "SIZE_HINT,%lld", 463 *(sqlite3_int64*)pArg); 464 zOp = zBuf; 465 break; 466 } 467 case SQLITE_FCNTL_CHUNK_SIZE: { 468 sqlite3_snprintf(sizeof(zBuf), zBuf, "CHUNK_SIZE,%d", *(int*)pArg); 469 zOp = zBuf; 470 break; 471 } 472 case SQLITE_FCNTL_FILE_POINTER: zOp = "FILE_POINTER"; break; 473 case SQLITE_FCNTL_SYNC_OMITTED: zOp = "SYNC_OMITTED"; break; 474 case 0xca093fa0: zOp = "DB_UNCHANGED"; break; 475 default: { 476 sqlite3_snprintf(sizeof zBuf, zBuf, "%d", op); 477 zOp = zBuf; 478 break; 479 } 480 } 481 vfstrace_printf(pInfo, "%s.xFileControl(%s,%s)", 482 pInfo->zVfsName, p->zFName, zOp); 483 rc = p->pReal->pMethods->xFileControl(p->pReal, op, pArg); 484 vfstrace_print_errcode(pInfo, " -> %s\n", rc); 485 return rc; 486 } 487 488 /* 489 ** Return the sector-size in bytes for an vfstrace-file. 490 */ 491 static int vfstraceSectorSize(sqlite3_file *pFile){ 492 vfstrace_file *p = (vfstrace_file *)pFile; 493 vfstrace_info *pInfo = p->pInfo; 494 int rc; 495 vfstrace_printf(pInfo, "%s.xSectorSize(%s)", pInfo->zVfsName, p->zFName); 496 rc = p->pReal->pMethods->xSectorSize(p->pReal); 497 vfstrace_printf(pInfo, " -> %d\n", rc); 498 return rc; 499 } 500 501 /* 502 ** Return the device characteristic flags supported by an vfstrace-file. 503 */ 504 static int vfstraceDeviceCharacteristics(sqlite3_file *pFile){ 505 vfstrace_file *p = (vfstrace_file *)pFile; 506 vfstrace_info *pInfo = p->pInfo; 507 int rc; 508 vfstrace_printf(pInfo, "%s.xDeviceCharacteristics(%s)", 509 pInfo->zVfsName, p->zFName); 510 rc = p->pReal->pMethods->xDeviceCharacteristics(p->pReal); 511 vfstrace_printf(pInfo, " -> 0x%08x\n", rc); 512 return rc; 513 } 514 515 /* 516 ** Shared-memory operations. 517 */ 518 static int vfstraceShmLock(sqlite3_file *pFile, int ofst, int n, int flags){ 519 vfstrace_file *p = (vfstrace_file *)pFile; 520 vfstrace_info *pInfo = p->pInfo; 521 int rc; 522 char zLck[100]; 523 int i = 0; 524 memcpy(zLck, "|0", 3); 525 if( flags & SQLITE_SHM_UNLOCK ) strappend(zLck, &i, "|UNLOCK"); 526 if( flags & SQLITE_SHM_LOCK ) strappend(zLck, &i, "|LOCK"); 527 if( flags & SQLITE_SHM_SHARED ) strappend(zLck, &i, "|SHARED"); 528 if( flags & SQLITE_SHM_EXCLUSIVE ) strappend(zLck, &i, "|EXCLUSIVE"); 529 if( flags & ~(0xf) ){ 530 sqlite3_snprintf(sizeof(zLck)-i, &zLck[i], "|0x%x", flags); 531 } 532 vfstrace_printf(pInfo, "%s.xShmLock(%s,ofst=%d,n=%d,%s)", 533 pInfo->zVfsName, p->zFName, ofst, n, &zLck[1]); 534 rc = p->pReal->pMethods->xShmLock(p->pReal, ofst, n, flags); 535 vfstrace_print_errcode(pInfo, " -> %s\n", rc); 536 return rc; 537 } 538 static int vfstraceShmMap( 539 sqlite3_file *pFile, 540 int iRegion, 541 int szRegion, 542 int isWrite, 543 void volatile **pp 544 ){ 545 vfstrace_file *p = (vfstrace_file *)pFile; 546 vfstrace_info *pInfo = p->pInfo; 547 int rc; 548 vfstrace_printf(pInfo, "%s.xShmMap(%s,iRegion=%d,szRegion=%d,isWrite=%d,*)", 549 pInfo->zVfsName, p->zFName, iRegion, szRegion, isWrite); 550 rc = p->pReal->pMethods->xShmMap(p->pReal, iRegion, szRegion, isWrite, pp); 551 vfstrace_print_errcode(pInfo, " -> %s\n", rc); 552 return rc; 553 } 554 static void vfstraceShmBarrier(sqlite3_file *pFile){ 555 vfstrace_file *p = (vfstrace_file *)pFile; 556 vfstrace_info *pInfo = p->pInfo; 557 vfstrace_printf(pInfo, "%s.xShmBarrier(%s)\n", pInfo->zVfsName, p->zFName); 558 p->pReal->pMethods->xShmBarrier(p->pReal); 559 } 560 static int vfstraceShmUnmap(sqlite3_file *pFile, int delFlag){ 561 vfstrace_file *p = (vfstrace_file *)pFile; 562 vfstrace_info *pInfo = p->pInfo; 563 int rc; 564 vfstrace_printf(pInfo, "%s.xShmUnmap(%s,delFlag=%d)", 565 pInfo->zVfsName, p->zFName, delFlag); 566 rc = p->pReal->pMethods->xShmUnmap(p->pReal, delFlag); 567 vfstrace_print_errcode(pInfo, " -> %s\n", rc); 568 return rc; 569 } 570 571 572 573 /* 574 ** Open an vfstrace file handle. 575 */ 576 static int vfstraceOpen( 577 sqlite3_vfs *pVfs, 578 const char *zName, 579 sqlite3_file *pFile, 580 int flags, 581 int *pOutFlags 582 ){ 583 int rc; 584 vfstrace_file *p = (vfstrace_file *)pFile; 585 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 586 sqlite3_vfs *pRoot = pInfo->pRootVfs; 587 p->pInfo = pInfo; 588 p->zFName = zName ? fileTail(zName) : "<temp>"; 589 p->pReal = (sqlite3_file *)&p[1]; 590 rc = pRoot->xOpen(pRoot, zName, p->pReal, flags, pOutFlags); 591 vfstrace_printf(pInfo, "%s.xOpen(%s,flags=0x%x)", 592 pInfo->zVfsName, p->zFName, flags); 593 if( p->pReal->pMethods ){ 594 sqlite3_io_methods *pNew = sqlite3_malloc( sizeof(*pNew) ); 595 const sqlite3_io_methods *pSub = p->pReal->pMethods; 596 memset(pNew, 0, sizeof(*pNew)); 597 pNew->iVersion = pSub->iVersion; 598 pNew->xClose = vfstraceClose; 599 pNew->xRead = vfstraceRead; 600 pNew->xWrite = vfstraceWrite; 601 pNew->xTruncate = vfstraceTruncate; 602 pNew->xSync = vfstraceSync; 603 pNew->xFileSize = vfstraceFileSize; 604 pNew->xLock = vfstraceLock; 605 pNew->xUnlock = vfstraceUnlock; 606 pNew->xCheckReservedLock = vfstraceCheckReservedLock; 607 pNew->xFileControl = vfstraceFileControl; 608 pNew->xSectorSize = vfstraceSectorSize; 609 pNew->xDeviceCharacteristics = vfstraceDeviceCharacteristics; 610 if( pNew->iVersion>=2 ){ 611 pNew->xShmMap = pSub->xShmMap ? vfstraceShmMap : 0; 612 pNew->xShmLock = pSub->xShmLock ? vfstraceShmLock : 0; 613 pNew->xShmBarrier = pSub->xShmBarrier ? vfstraceShmBarrier : 0; 614 pNew->xShmUnmap = pSub->xShmUnmap ? vfstraceShmUnmap : 0; 615 } 616 pFile->pMethods = pNew; 617 } 618 vfstrace_print_errcode(pInfo, " -> %s", rc); 619 if( pOutFlags ){ 620 vfstrace_printf(pInfo, ", outFlags=0x%x\n", *pOutFlags); 621 }else{ 622 vfstrace_printf(pInfo, "\n"); 623 } 624 return rc; 625 } 626 627 /* 628 ** Delete the file located at zPath. If the dirSync argument is true, 629 ** ensure the file-system modifications are synced to disk before 630 ** returning. 631 */ 632 static int vfstraceDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ 633 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 634 sqlite3_vfs *pRoot = pInfo->pRootVfs; 635 int rc; 636 vfstrace_printf(pInfo, "%s.xDelete(\"%s\",%d)", 637 pInfo->zVfsName, zPath, dirSync); 638 rc = pRoot->xDelete(pRoot, zPath, dirSync); 639 vfstrace_print_errcode(pInfo, " -> %s\n", rc); 640 return rc; 641 } 642 643 /* 644 ** Test for access permissions. Return true if the requested permission 645 ** is available, or false otherwise. 646 */ 647 static int vfstraceAccess( 648 sqlite3_vfs *pVfs, 649 const char *zPath, 650 int flags, 651 int *pResOut 652 ){ 653 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 654 sqlite3_vfs *pRoot = pInfo->pRootVfs; 655 int rc; 656 vfstrace_printf(pInfo, "%s.xDelete(\"%s\",%d)", 657 pInfo->zVfsName, zPath, flags); 658 rc = pRoot->xAccess(pRoot, zPath, flags, pResOut); 659 vfstrace_print_errcode(pInfo, " -> %s", rc); 660 vfstrace_printf(pInfo, ", out=%d\n", *pResOut); 661 return rc; 662 } 663 664 /* 665 ** Populate buffer zOut with the full canonical pathname corresponding 666 ** to the pathname in zPath. zOut is guaranteed to point to a buffer 667 ** of at least (DEVSYM_MAX_PATHNAME+1) bytes. 668 */ 669 static int vfstraceFullPathname( 670 sqlite3_vfs *pVfs, 671 const char *zPath, 672 int nOut, 673 char *zOut 674 ){ 675 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 676 sqlite3_vfs *pRoot = pInfo->pRootVfs; 677 int rc; 678 vfstrace_printf(pInfo, "%s.xFullPathname(\"%s\")", 679 pInfo->zVfsName, zPath); 680 rc = pRoot->xFullPathname(pRoot, zPath, nOut, zOut); 681 vfstrace_print_errcode(pInfo, " -> %s", rc); 682 vfstrace_printf(pInfo, ", out=\"%.*s\"\n", nOut, zOut); 683 return rc; 684 } 685 686 /* 687 ** Open the dynamic library located at zPath and return a handle. 688 */ 689 static void *vfstraceDlOpen(sqlite3_vfs *pVfs, const char *zPath){ 690 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 691 sqlite3_vfs *pRoot = pInfo->pRootVfs; 692 vfstrace_printf(pInfo, "%s.xDlOpen(\"%s\")\n", pInfo->zVfsName, zPath); 693 return pRoot->xDlOpen(pRoot, zPath); 694 } 695 696 /* 697 ** Populate the buffer zErrMsg (size nByte bytes) with a human readable 698 ** utf-8 string describing the most recent error encountered associated 699 ** with dynamic libraries. 700 */ 701 static void vfstraceDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ 702 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 703 sqlite3_vfs *pRoot = pInfo->pRootVfs; 704 vfstrace_printf(pInfo, "%s.xDlError(%d)", pInfo->zVfsName, nByte); 705 pRoot->xDlError(pRoot, nByte, zErrMsg); 706 vfstrace_printf(pInfo, " -> \"%s\"", zErrMsg); 707 } 708 709 /* 710 ** Return a pointer to the symbol zSymbol in the dynamic library pHandle. 711 */ 712 static void (*vfstraceDlSym(sqlite3_vfs *pVfs,void *p,const char *zSym))(void){ 713 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 714 sqlite3_vfs *pRoot = pInfo->pRootVfs; 715 vfstrace_printf(pInfo, "%s.xDlSym(\"%s\")\n", pInfo->zVfsName, zSym); 716 return pRoot->xDlSym(pRoot, p, zSym); 717 } 718 719 /* 720 ** Close the dynamic library handle pHandle. 721 */ 722 static void vfstraceDlClose(sqlite3_vfs *pVfs, void *pHandle){ 723 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 724 sqlite3_vfs *pRoot = pInfo->pRootVfs; 725 vfstrace_printf(pInfo, "%s.xDlOpen()\n", pInfo->zVfsName); 726 pRoot->xDlClose(pRoot, pHandle); 727 } 728 729 /* 730 ** Populate the buffer pointed to by zBufOut with nByte bytes of 731 ** random data. 732 */ 733 static int vfstraceRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ 734 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 735 sqlite3_vfs *pRoot = pInfo->pRootVfs; 736 vfstrace_printf(pInfo, "%s.xRandomness(%d)\n", pInfo->zVfsName, nByte); 737 return pRoot->xRandomness(pRoot, nByte, zBufOut); 738 } 739 740 /* 741 ** Sleep for nMicro microseconds. Return the number of microseconds 742 ** actually slept. 743 */ 744 static int vfstraceSleep(sqlite3_vfs *pVfs, int nMicro){ 745 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 746 sqlite3_vfs *pRoot = pInfo->pRootVfs; 747 return pRoot->xSleep(pRoot, nMicro); 748 } 749 750 /* 751 ** Return the current time as a Julian Day number in *pTimeOut. 752 */ 753 static int vfstraceCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ 754 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 755 sqlite3_vfs *pRoot = pInfo->pRootVfs; 756 return pRoot->xCurrentTime(pRoot, pTimeOut); 757 } 758 static int vfstraceCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ 759 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 760 sqlite3_vfs *pRoot = pInfo->pRootVfs; 761 return pRoot->xCurrentTimeInt64(pRoot, pTimeOut); 762 } 763 764 /* 765 ** Return th3 emost recent error code and message 766 */ 767 static int vfstraceGetLastError(sqlite3_vfs *pVfs, int iErr, char *zErr){ 768 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 769 sqlite3_vfs *pRoot = pInfo->pRootVfs; 770 return pRoot->xGetLastError(pRoot, iErr, zErr); 771 } 772 773 /* 774 ** Override system calls. 775 */ 776 static int vfstraceSetSystemCall( 777 sqlite3_vfs *pVfs, 778 const char *zName, 779 sqlite3_syscall_ptr pFunc 780 ){ 781 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 782 sqlite3_vfs *pRoot = pInfo->pRootVfs; 783 return pRoot->xSetSystemCall(pRoot, zName, pFunc); 784 } 785 static sqlite3_syscall_ptr vfstraceGetSystemCall( 786 sqlite3_vfs *pVfs, 787 const char *zName 788 ){ 789 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 790 sqlite3_vfs *pRoot = pInfo->pRootVfs; 791 return pRoot->xGetSystemCall(pRoot, zName); 792 } 793 static const char *vfstraceNextSystemCall(sqlite3_vfs *pVfs, const char *zName){ 794 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData; 795 sqlite3_vfs *pRoot = pInfo->pRootVfs; 796 return pRoot->xNextSystemCall(pRoot, zName); 797 } 798 799 800 /* 801 ** Clients invoke this routine to construct a new trace-vfs shim. 802 ** 803 ** Return SQLITE_OK on success. 804 ** 805 ** SQLITE_NOMEM is returned in the case of a memory allocation error. 806 ** SQLITE_NOTFOUND is returned if zOldVfsName does not exist. 807 */ 808 int vfstrace_register( 809 const char *zTraceName, /* Name of the newly constructed VFS */ 810 const char *zOldVfsName, /* Name of the underlying VFS */ 811 int (*xOut)(const char*,void*), /* Output routine. ex: fputs */ 812 void *pOutArg, /* 2nd argument to xOut. ex: stderr */ 813 int makeDefault /* True to make the new VFS the default */ 814 ){ 815 sqlite3_vfs *pNew; 816 sqlite3_vfs *pRoot; 817 vfstrace_info *pInfo; 818 int nName; 819 int nByte; 820 821 pRoot = sqlite3_vfs_find(zOldVfsName); 822 if( pRoot==0 ) return SQLITE_NOTFOUND; 823 nName = strlen(zTraceName); 824 nByte = sizeof(*pNew) + sizeof(*pInfo) + nName + 1; 825 pNew = sqlite3_malloc( nByte ); 826 if( pNew==0 ) return SQLITE_NOMEM; 827 memset(pNew, 0, nByte); 828 pInfo = (vfstrace_info*)&pNew[1]; 829 pNew->iVersion = pRoot->iVersion; 830 pNew->szOsFile = pRoot->szOsFile + sizeof(vfstrace_file); 831 pNew->mxPathname = pRoot->mxPathname; 832 pNew->zName = (char*)&pInfo[1]; 833 memcpy((char*)&pInfo[1], zTraceName, nName+1); 834 pNew->pAppData = pInfo; 835 pNew->xOpen = vfstraceOpen; 836 pNew->xDelete = vfstraceDelete; 837 pNew->xAccess = vfstraceAccess; 838 pNew->xFullPathname = vfstraceFullPathname; 839 pNew->xDlOpen = pRoot->xDlOpen==0 ? 0 : vfstraceDlOpen; 840 pNew->xDlError = pRoot->xDlError==0 ? 0 : vfstraceDlError; 841 pNew->xDlSym = pRoot->xDlSym==0 ? 0 : vfstraceDlSym; 842 pNew->xDlClose = pRoot->xDlClose==0 ? 0 : vfstraceDlClose; 843 pNew->xRandomness = vfstraceRandomness; 844 pNew->xSleep = vfstraceSleep; 845 pNew->xCurrentTime = vfstraceCurrentTime; 846 pNew->xGetLastError = pRoot->xGetLastError==0 ? 0 : vfstraceGetLastError; 847 if( pNew->iVersion>=2 ){ 848 pNew->xCurrentTimeInt64 = pRoot->xCurrentTimeInt64==0 ? 0 : 849 vfstraceCurrentTimeInt64; 850 if( pNew->iVersion>=3 ){ 851 pNew->xSetSystemCall = pRoot->xSetSystemCall==0 ? 0 : 852 vfstraceSetSystemCall; 853 pNew->xGetSystemCall = pRoot->xGetSystemCall==0 ? 0 : 854 vfstraceGetSystemCall; 855 pNew->xNextSystemCall = pRoot->xNextSystemCall==0 ? 0 : 856 vfstraceNextSystemCall; 857 } 858 } 859 pInfo->pRootVfs = pRoot; 860 pInfo->xOut = xOut; 861 pInfo->pOutArg = pOutArg; 862 pInfo->zVfsName = pNew->zName; 863 pInfo->pTraceVfs = pNew; 864 vfstrace_printf(pInfo, "%s.enabled_for(\"%s\")\n", 865 pInfo->zVfsName, pRoot->zName); 866 return sqlite3_vfs_register(pNew, makeDefault); 867 } 868