sl@0: /* sl@0: ** 2004 May 22 sl@0: ** sl@0: ** The author disclaims copyright to this source code. In place of sl@0: ** a legal notice, here is a blessing: sl@0: ** sl@0: ** May you do good and not evil. sl@0: ** May you find forgiveness for yourself and forgive others. sl@0: ** May you share freely, never taking more than you give. sl@0: ** sl@0: ****************************************************************************** sl@0: ** sl@0: ** This file contains code that modified the OS layer in order to simulate sl@0: ** the effect on the database file of an OS crash or power failure. This sl@0: ** is used to test the ability of SQLite to recover from those situations. sl@0: ** sl@0: ** $Id: test6.c,v 1.39 2008/06/06 11:11:26 danielk1977 Exp $ sl@0: */ sl@0: #if SQLITE_TEST /* This file is used for testing only */ sl@0: #include "sqliteInt.h" sl@0: #include "tcl.h" sl@0: sl@0: #ifndef SQLITE_OMIT_DISKIO /* This file is a no-op if disk I/O is disabled */ sl@0: sl@0: /* #define TRACE_CRASHTEST */ sl@0: sl@0: typedef struct CrashFile CrashFile; sl@0: typedef struct CrashGlobal CrashGlobal; sl@0: typedef struct WriteBuffer WriteBuffer; sl@0: sl@0: /* sl@0: ** Method: sl@0: ** sl@0: ** This layer is implemented as a wrapper around the "real" sl@0: ** sqlite3_file object for the host system. Each time data is sl@0: ** written to the file object, instead of being written to the sl@0: ** underlying file, the write operation is stored in an in-memory sl@0: ** structure (type WriteBuffer). This structure is placed at the sl@0: ** end of a global ordered list (the write-list). sl@0: ** sl@0: ** When data is read from a file object, the requested region is sl@0: ** first retrieved from the real file. The write-list is then sl@0: ** traversed and data copied from any overlapping WriteBuffer sl@0: ** structures to the output buffer. i.e. a read() operation following sl@0: ** one or more write() operations works as expected, even if no sl@0: ** data has actually been written out to the real file. sl@0: ** sl@0: ** When a fsync() operation is performed, an operating system crash sl@0: ** may be simulated, in which case exit(-1) is called (the call to sl@0: ** xSync() never returns). Whether or not a crash is simulated, sl@0: ** the data associated with a subset of the WriteBuffer structures sl@0: ** stored in the write-list is written to the real underlying files sl@0: ** and the entries removed from the write-list. If a crash is simulated, sl@0: ** a subset of the buffers may be corrupted before the data is written. sl@0: ** sl@0: ** The exact subset of the write-list written and/or corrupted is sl@0: ** determined by the simulated device characteristics and sector-size. sl@0: ** sl@0: ** "Normal" mode: sl@0: ** sl@0: ** Normal mode is used when the simulated device has none of the sl@0: ** SQLITE_IOCAP_XXX flags set. sl@0: ** sl@0: ** In normal mode, if the fsync() is not a simulated crash, the sl@0: ** write-list is traversed from beginning to end. Each WriteBuffer sl@0: ** structure associated with the file handle used to call xSync() sl@0: ** is written to the real file and removed from the write-list. sl@0: ** sl@0: ** If a crash is simulated, one of the following takes place for sl@0: ** each WriteBuffer in the write-list, regardless of which sl@0: ** file-handle it is associated with: sl@0: ** sl@0: ** 1. The buffer is correctly written to the file, just as if sl@0: ** a crash were not being simulated. sl@0: ** sl@0: ** 2. Nothing is done. sl@0: ** sl@0: ** 3. Garbage data is written to all sectors of the file that sl@0: ** overlap the region specified by the WriteBuffer. Or garbage sl@0: ** data is written to some contiguous section within the sl@0: ** overlapped sectors. sl@0: ** sl@0: ** Device Characteristic flag handling: sl@0: ** sl@0: ** If the IOCAP_ATOMIC flag is set, then option (3) above is sl@0: ** never selected. sl@0: ** sl@0: ** If the IOCAP_ATOMIC512 flag is set, and the WriteBuffer represents sl@0: ** an aligned write() of an integer number of 512 byte regions, then sl@0: ** option (3) above is never selected. Instead, each 512 byte region sl@0: ** is either correctly written or left completely untouched. Similar sl@0: ** logic governs the behaviour if any of the other ATOMICXXX flags sl@0: ** is set. sl@0: ** sl@0: ** If either the IOCAP_SAFEAPPEND or IOCAP_SEQUENTIAL flags are set sl@0: ** and a crash is being simulated, then an entry of the write-list is sl@0: ** selected at random. Everything in the list after the selected entry sl@0: ** is discarded before processing begins. sl@0: ** sl@0: ** If IOCAP_SEQUENTIAL is set and a crash is being simulated, option sl@0: ** (1) is selected for all write-list entries except the last. If a sl@0: ** crash is not being simulated, then all entries in the write-list sl@0: ** that occur before at least one write() on the file-handle specified sl@0: ** as part of the xSync() are written to their associated real files. sl@0: ** sl@0: ** If IOCAP_SAFEAPPEND is set and the first byte written by the write() sl@0: ** operation is one byte past the current end of the file, then option sl@0: ** (1) is always selected. sl@0: */ sl@0: sl@0: /* sl@0: ** Each write operation in the write-list is represented by an instance sl@0: ** of the following structure. sl@0: ** sl@0: ** If zBuf is 0, then this structure represents a call to xTruncate(), sl@0: ** not xWrite(). In that case, iOffset is the size that the file is sl@0: ** truncated to. sl@0: */ sl@0: struct WriteBuffer { sl@0: i64 iOffset; /* Byte offset of the start of this write() */ sl@0: int nBuf; /* Number of bytes written */ sl@0: u8 *zBuf; /* Pointer to copy of written data */ sl@0: CrashFile *pFile; /* File this write() applies to */ sl@0: sl@0: WriteBuffer *pNext; /* Next in CrashGlobal.pWriteList */ sl@0: }; sl@0: sl@0: struct CrashFile { sl@0: const sqlite3_io_methods *pMethod; /* Must be first */ sl@0: sqlite3_file *pRealFile; /* Underlying "real" file handle */ sl@0: char *zName; sl@0: sl@0: /* Cache of the entire file. This is used to speed up OsRead() and sl@0: ** OsFileSize() calls. Although both could be done by traversing the sl@0: ** write-list, in practice this is impractically slow. sl@0: */ sl@0: int iSize; /* Size of file in bytes */ sl@0: int nData; /* Size of buffer allocated at zData */ sl@0: u8 *zData; /* Buffer containing file contents */ sl@0: }; sl@0: sl@0: struct CrashGlobal { sl@0: WriteBuffer *pWriteList; /* Head of write-list */ sl@0: WriteBuffer *pWriteListEnd; /* End of write-list */ sl@0: sl@0: int iSectorSize; /* Value of simulated sector size */ sl@0: int iDeviceCharacteristics; /* Value of simulated device characteristics */ sl@0: sl@0: int iCrash; /* Crash on the iCrash'th call to xSync() */ sl@0: char zCrashFile[500]; /* Crash during an xSync() on this file */ sl@0: }; sl@0: sl@0: static CrashGlobal g = {0, 0, SQLITE_DEFAULT_SECTOR_SIZE, 0, 0}; sl@0: sl@0: /* sl@0: ** Set this global variable to 1 to enable crash testing. sl@0: */ sl@0: static int sqlite3CrashTestEnable = 0; sl@0: sl@0: static void *crash_malloc(int nByte){ sl@0: return (void *)Tcl_Alloc((size_t)nByte); sl@0: } sl@0: static void crash_free(void *p){ sl@0: Tcl_Free(p); sl@0: } sl@0: static void *crash_realloc(void *p, int n){ sl@0: return (void *)Tcl_Realloc(p, (size_t)n); sl@0: } sl@0: sl@0: /* sl@0: ** Flush the write-list as if xSync() had been called on file handle sl@0: ** pFile. If isCrash is true, simulate a crash. sl@0: */ sl@0: static int writeListSync(CrashFile *pFile, int isCrash){ sl@0: int rc = SQLITE_OK; sl@0: int iDc = g.iDeviceCharacteristics; sl@0: sl@0: WriteBuffer *pWrite; sl@0: WriteBuffer **ppPtr; sl@0: sl@0: /* If this is not a crash simulation, set pFinal to point to the sl@0: ** last element of the write-list that is associated with file handle sl@0: ** pFile. sl@0: ** sl@0: ** If this is a crash simulation, set pFinal to an arbitrarily selected sl@0: ** element of the write-list. sl@0: */ sl@0: WriteBuffer *pFinal = 0; sl@0: if( !isCrash ){ sl@0: for(pWrite=g.pWriteList; pWrite; pWrite=pWrite->pNext){ sl@0: if( pWrite->pFile==pFile ){ sl@0: pFinal = pWrite; sl@0: } sl@0: } sl@0: }else if( iDc&(SQLITE_IOCAP_SEQUENTIAL|SQLITE_IOCAP_SAFE_APPEND) ){ sl@0: int nWrite = 0; sl@0: int iFinal; sl@0: for(pWrite=g.pWriteList; pWrite; pWrite=pWrite->pNext) nWrite++; sl@0: sqlite3_randomness(sizeof(int), &iFinal); sl@0: iFinal = ((iFinal<0)?-1*iFinal:iFinal)%nWrite; sl@0: for(pWrite=g.pWriteList; iFinal>0; pWrite=pWrite->pNext) iFinal--; sl@0: pFinal = pWrite; sl@0: } sl@0: sl@0: #ifdef TRACE_CRASHTEST sl@0: printf("Sync %s (is %s crash)\n", pFile->zName, (isCrash?"a":"not a")); sl@0: #endif sl@0: sl@0: ppPtr = &g.pWriteList; sl@0: for(pWrite=*ppPtr; rc==SQLITE_OK && pWrite; pWrite=*ppPtr){ sl@0: sqlite3_file *pRealFile = pWrite->pFile->pRealFile; sl@0: sl@0: /* (eAction==1) -> write block out normally, sl@0: ** (eAction==2) -> do nothing, sl@0: ** (eAction==3) -> trash sectors. sl@0: */ sl@0: int eAction = 0; sl@0: if( !isCrash ){ sl@0: eAction = 2; sl@0: if( (pWrite->pFile==pFile || iDc&SQLITE_IOCAP_SEQUENTIAL) ){ sl@0: eAction = 1; sl@0: } sl@0: }else{ sl@0: char random; sl@0: sqlite3_randomness(1, &random); sl@0: sl@0: /* Do not select option 3 (sector trashing) if the IOCAP_ATOMIC flag sl@0: ** is set or this is an OsTruncate(), not an Oswrite(). sl@0: */ sl@0: if( (iDc&SQLITE_IOCAP_ATOMIC) || (pWrite->zBuf==0) ){ sl@0: random &= 0x01; sl@0: } sl@0: sl@0: /* If IOCAP_SEQUENTIAL is set and this is not the final entry sl@0: ** in the truncated write-list, always select option 1 (write sl@0: ** out correctly). sl@0: */ sl@0: if( (iDc&SQLITE_IOCAP_SEQUENTIAL && pWrite!=pFinal) ){ sl@0: random = 0; sl@0: } sl@0: sl@0: /* If IOCAP_SAFE_APPEND is set and this OsWrite() operation is sl@0: ** an append (first byte of the written region is 1 byte past the sl@0: ** current EOF), always select option 1 (write out correctly). sl@0: */ sl@0: if( iDc&SQLITE_IOCAP_SAFE_APPEND && pWrite->zBuf ){ sl@0: i64 iSize; sl@0: sqlite3OsFileSize(pRealFile, &iSize); sl@0: if( iSize==pWrite->iOffset ){ sl@0: random = 0; sl@0: } sl@0: } sl@0: sl@0: if( (random&0x06)==0x06 ){ sl@0: eAction = 3; sl@0: }else{ sl@0: eAction = ((random&0x01)?2:1); sl@0: } sl@0: } sl@0: sl@0: switch( eAction ){ sl@0: case 1: { /* Write out correctly */ sl@0: if( pWrite->zBuf ){ sl@0: rc = sqlite3OsWrite( sl@0: pRealFile, pWrite->zBuf, pWrite->nBuf, pWrite->iOffset sl@0: ); sl@0: }else{ sl@0: rc = sqlite3OsTruncate(pRealFile, pWrite->iOffset); sl@0: } sl@0: *ppPtr = pWrite->pNext; sl@0: #ifdef TRACE_CRASHTEST sl@0: if( isCrash ){ sl@0: printf("Writing %d bytes @ %d (%s)\n", sl@0: pWrite->nBuf, (int)pWrite->iOffset, pWrite->pFile->zName sl@0: ); sl@0: } sl@0: #endif sl@0: crash_free(pWrite); sl@0: break; sl@0: } sl@0: case 2: { /* Do nothing */ sl@0: ppPtr = &pWrite->pNext; sl@0: #ifdef TRACE_CRASHTEST sl@0: if( isCrash ){ sl@0: printf("Omiting %d bytes @ %d (%s)\n", sl@0: pWrite->nBuf, (int)pWrite->iOffset, pWrite->pFile->zName sl@0: ); sl@0: } sl@0: #endif sl@0: break; sl@0: } sl@0: case 3: { /* Trash sectors */ sl@0: u8 *zGarbage; sl@0: int iFirst = (pWrite->iOffset/g.iSectorSize); sl@0: int iLast = (pWrite->iOffset+pWrite->nBuf-1)/g.iSectorSize; sl@0: sl@0: assert(pWrite->zBuf); sl@0: sl@0: #ifdef TRACE_CRASHTEST sl@0: printf("Trashing %d sectors @ sector %d (%s)\n", sl@0: 1+iLast-iFirst, iFirst, pWrite->pFile->zName sl@0: ); sl@0: #endif sl@0: sl@0: zGarbage = crash_malloc(g.iSectorSize); sl@0: if( zGarbage ){ sl@0: sqlite3_int64 i; sl@0: for(i=iFirst; rc==SQLITE_OK && i<=iLast; i++){ sl@0: sqlite3_randomness(g.iSectorSize, zGarbage); sl@0: rc = sqlite3OsWrite( sl@0: pRealFile, zGarbage, g.iSectorSize, i*g.iSectorSize sl@0: ); sl@0: } sl@0: crash_free(zGarbage); sl@0: }else{ sl@0: rc = SQLITE_NOMEM; sl@0: } sl@0: sl@0: ppPtr = &pWrite->pNext; sl@0: break; sl@0: } sl@0: sl@0: default: sl@0: assert(0); /* Cannot happen */ sl@0: } sl@0: sl@0: if( pWrite==pFinal ) break; sl@0: } sl@0: sl@0: if( rc==SQLITE_OK && isCrash ){ sl@0: exit(-1); sl@0: } sl@0: sl@0: for(pWrite=g.pWriteList; pWrite && pWrite->pNext; pWrite=pWrite->pNext); sl@0: g.pWriteListEnd = pWrite; sl@0: sl@0: return rc; sl@0: } sl@0: sl@0: /* sl@0: ** Add an entry to the end of the write-list. sl@0: */ sl@0: static int writeListAppend( sl@0: sqlite3_file *pFile, sl@0: sqlite3_int64 iOffset, sl@0: const u8 *zBuf, sl@0: int nBuf sl@0: ){ sl@0: WriteBuffer *pNew; sl@0: sl@0: assert((zBuf && nBuf) || (!nBuf && !zBuf)); sl@0: sl@0: pNew = (WriteBuffer *)crash_malloc(sizeof(WriteBuffer) + nBuf); sl@0: if( pNew==0 ){ sl@0: fprintf(stderr, "out of memory in the crash simulator\n"); sl@0: } sl@0: memset(pNew, 0, sizeof(WriteBuffer)+nBuf); sl@0: pNew->iOffset = iOffset; sl@0: pNew->nBuf = nBuf; sl@0: pNew->pFile = (CrashFile *)pFile; sl@0: if( zBuf ){ sl@0: pNew->zBuf = (u8 *)&pNew[1]; sl@0: memcpy(pNew->zBuf, zBuf, nBuf); sl@0: } sl@0: sl@0: if( g.pWriteList ){ sl@0: assert(g.pWriteListEnd); sl@0: g.pWriteListEnd->pNext = pNew; sl@0: }else{ sl@0: g.pWriteList = pNew; sl@0: } sl@0: g.pWriteListEnd = pNew; sl@0: sl@0: return SQLITE_OK; sl@0: } sl@0: sl@0: /* sl@0: ** Close a crash-file. sl@0: */ sl@0: static int cfClose(sqlite3_file *pFile){ sl@0: CrashFile *pCrash = (CrashFile *)pFile; sl@0: writeListSync(pCrash, 0); sl@0: sqlite3OsClose(pCrash->pRealFile); sl@0: return SQLITE_OK; sl@0: } sl@0: sl@0: /* sl@0: ** Read data from a crash-file. sl@0: */ sl@0: static int cfRead( sl@0: sqlite3_file *pFile, sl@0: void *zBuf, sl@0: int iAmt, sl@0: sqlite_int64 iOfst sl@0: ){ sl@0: CrashFile *pCrash = (CrashFile *)pFile; sl@0: sl@0: /* Check the file-size to see if this is a short-read */ sl@0: if( pCrash->iSize<(iOfst+iAmt) ){ sl@0: return SQLITE_IOERR_SHORT_READ; sl@0: } sl@0: sl@0: memcpy(zBuf, &pCrash->zData[iOfst], iAmt); sl@0: return SQLITE_OK; sl@0: } sl@0: sl@0: /* sl@0: ** Write data to a crash-file. sl@0: */ sl@0: static int cfWrite( sl@0: sqlite3_file *pFile, sl@0: const void *zBuf, sl@0: int iAmt, sl@0: sqlite_int64 iOfst sl@0: ){ sl@0: CrashFile *pCrash = (CrashFile *)pFile; sl@0: if( iAmt+iOfst>pCrash->iSize ){ sl@0: pCrash->iSize = iAmt+iOfst; sl@0: } sl@0: while( pCrash->iSize>pCrash->nData ){ sl@0: u8 *zNew; sl@0: int nNew = (pCrash->nData*2) + 4096; sl@0: zNew = crash_realloc(pCrash->zData, nNew); sl@0: if( !zNew ){ sl@0: return SQLITE_NOMEM; sl@0: } sl@0: memset(&zNew[pCrash->nData], 0, nNew-pCrash->nData); sl@0: pCrash->nData = nNew; sl@0: pCrash->zData = zNew; sl@0: } sl@0: memcpy(&pCrash->zData[iOfst], zBuf, iAmt); sl@0: return writeListAppend(pFile, iOfst, zBuf, iAmt); sl@0: } sl@0: sl@0: /* sl@0: ** Truncate a crash-file. sl@0: */ sl@0: static int cfTruncate(sqlite3_file *pFile, sqlite_int64 size){ sl@0: CrashFile *pCrash = (CrashFile *)pFile; sl@0: assert(size>=0); sl@0: if( pCrash->iSize>size ){ sl@0: pCrash->iSize = size; sl@0: } sl@0: return writeListAppend(pFile, size, 0, 0); sl@0: } sl@0: sl@0: /* sl@0: ** Sync a crash-file. sl@0: */ sl@0: static int cfSync(sqlite3_file *pFile, int flags){ sl@0: CrashFile *pCrash = (CrashFile *)pFile; sl@0: int isCrash = 0; sl@0: sl@0: const char *zName = pCrash->zName; sl@0: const char *zCrashFile = g.zCrashFile; sl@0: int nName = strlen(zName); sl@0: int nCrashFile = strlen(zCrashFile); sl@0: sl@0: if( nCrashFile>0 && zCrashFile[nCrashFile-1]=='*' ){ sl@0: nCrashFile--; sl@0: if( nName>nCrashFile ) nName = nCrashFile; sl@0: } sl@0: sl@0: if( nName==nCrashFile && 0==memcmp(zName, zCrashFile, nName) ){ sl@0: if( (--g.iCrash)==0 ) isCrash = 1; sl@0: } sl@0: sl@0: return writeListSync(pCrash, isCrash); sl@0: } sl@0: sl@0: /* sl@0: ** Return the current file-size of the crash-file. sl@0: */ sl@0: static int cfFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ sl@0: CrashFile *pCrash = (CrashFile *)pFile; sl@0: *pSize = (i64)pCrash->iSize; sl@0: return SQLITE_OK; sl@0: } sl@0: sl@0: /* sl@0: ** Calls related to file-locks are passed on to the real file handle. sl@0: */ sl@0: static int cfLock(sqlite3_file *pFile, int eLock){ sl@0: return sqlite3OsLock(((CrashFile *)pFile)->pRealFile, eLock); sl@0: } sl@0: static int cfUnlock(sqlite3_file *pFile, int eLock){ sl@0: return sqlite3OsUnlock(((CrashFile *)pFile)->pRealFile, eLock); sl@0: } sl@0: static int cfCheckReservedLock(sqlite3_file *pFile, int *pResOut){ sl@0: return sqlite3OsCheckReservedLock(((CrashFile *)pFile)->pRealFile, pResOut); sl@0: } sl@0: static int cfFileControl(sqlite3_file *pFile, int op, void *pArg){ sl@0: return sqlite3OsFileControl(((CrashFile *)pFile)->pRealFile, op, pArg); sl@0: } sl@0: sl@0: /* sl@0: ** The xSectorSize() and xDeviceCharacteristics() functions return sl@0: ** the global values configured by the [sqlite_crashparams] tcl sl@0: * interface. sl@0: */ sl@0: static int cfSectorSize(sqlite3_file *pFile){ sl@0: return g.iSectorSize; sl@0: } sl@0: static int cfDeviceCharacteristics(sqlite3_file *pFile){ sl@0: return g.iDeviceCharacteristics; sl@0: } sl@0: sl@0: static const sqlite3_io_methods CrashFileVtab = { sl@0: 1, /* iVersion */ sl@0: cfClose, /* xClose */ sl@0: cfRead, /* xRead */ sl@0: cfWrite, /* xWrite */ sl@0: cfTruncate, /* xTruncate */ sl@0: cfSync, /* xSync */ sl@0: cfFileSize, /* xFileSize */ sl@0: cfLock, /* xLock */ sl@0: cfUnlock, /* xUnlock */ sl@0: cfCheckReservedLock, /* xCheckReservedLock */ sl@0: cfFileControl, /* xFileControl */ sl@0: cfSectorSize, /* xSectorSize */ sl@0: cfDeviceCharacteristics /* xDeviceCharacteristics */ sl@0: }; sl@0: sl@0: /* sl@0: ** Application data for the crash VFS sl@0: */ sl@0: struct crashAppData { sl@0: sqlite3_vfs *pOrig; /* Wrapped vfs structure */ sl@0: }; sl@0: sl@0: /* sl@0: ** Open a crash-file file handle. sl@0: ** sl@0: ** The caller will have allocated pVfs->szOsFile bytes of space sl@0: ** at pFile. This file uses this space for the CrashFile structure sl@0: ** and allocates space for the "real" file structure using sl@0: ** sqlite3_malloc(). The assumption here is (pVfs->szOsFile) is sl@0: ** equal or greater than sizeof(CrashFile). sl@0: */ sl@0: static int cfOpen( sl@0: sqlite3_vfs *pCfVfs, sl@0: const char *zName, sl@0: sqlite3_file *pFile, sl@0: int flags, sl@0: int *pOutFlags sl@0: ){ sl@0: sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sl@0: int rc; sl@0: CrashFile *pWrapper = (CrashFile *)pFile; sl@0: sqlite3_file *pReal = (sqlite3_file*)&pWrapper[1]; sl@0: sl@0: memset(pWrapper, 0, sizeof(CrashFile)); sl@0: rc = sqlite3OsOpen(pVfs, zName, pReal, flags, pOutFlags); sl@0: sl@0: if( rc==SQLITE_OK ){ sl@0: i64 iSize; sl@0: pWrapper->pMethod = &CrashFileVtab; sl@0: pWrapper->zName = (char *)zName; sl@0: pWrapper->pRealFile = pReal; sl@0: rc = sqlite3OsFileSize(pReal, &iSize); sl@0: pWrapper->iSize = (int)iSize; sl@0: } sl@0: if( rc==SQLITE_OK ){ sl@0: pWrapper->nData = (4096 + pWrapper->iSize); sl@0: pWrapper->zData = crash_malloc(pWrapper->nData); sl@0: if( pWrapper->zData ){ sl@0: memset(pWrapper->zData, 0, pWrapper->nData); sl@0: rc = sqlite3OsRead(pReal, pWrapper->zData, pWrapper->iSize, 0); sl@0: }else{ sl@0: rc = SQLITE_NOMEM; sl@0: } sl@0: } sl@0: if( rc!=SQLITE_OK && pWrapper->pMethod ){ sl@0: sqlite3OsClose(pFile); sl@0: } sl@0: return rc; sl@0: } sl@0: sl@0: static int cfDelete(sqlite3_vfs *pCfVfs, const char *zPath, int dirSync){ sl@0: sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sl@0: return pVfs->xDelete(pVfs, zPath, dirSync); sl@0: } sl@0: static int cfAccess( sl@0: sqlite3_vfs *pCfVfs, sl@0: const char *zPath, sl@0: int flags, sl@0: int *pResOut sl@0: ){ sl@0: sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sl@0: return pVfs->xAccess(pVfs, zPath, flags, pResOut); sl@0: } sl@0: static int cfFullPathname( sl@0: sqlite3_vfs *pCfVfs, sl@0: const char *zPath, sl@0: int nPathOut, sl@0: char *zPathOut sl@0: ){ sl@0: sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sl@0: return pVfs->xFullPathname(pVfs, zPath, nPathOut, zPathOut); sl@0: } sl@0: static void *cfDlOpen(sqlite3_vfs *pCfVfs, const char *zPath){ sl@0: sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sl@0: return pVfs->xDlOpen(pVfs, zPath); sl@0: } sl@0: static void cfDlError(sqlite3_vfs *pCfVfs, int nByte, char *zErrMsg){ sl@0: sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sl@0: pVfs->xDlError(pVfs, nByte, zErrMsg); sl@0: } sl@0: static void *cfDlSym(sqlite3_vfs *pCfVfs, void *pHandle, const char *zSymbol){ sl@0: sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sl@0: return pVfs->xDlSym(pVfs, pHandle, zSymbol); sl@0: } sl@0: static void cfDlClose(sqlite3_vfs *pCfVfs, void *pHandle){ sl@0: sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sl@0: pVfs->xDlClose(pVfs, pHandle); sl@0: } sl@0: static int cfRandomness(sqlite3_vfs *pCfVfs, int nByte, char *zBufOut){ sl@0: sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sl@0: return pVfs->xRandomness(pVfs, nByte, zBufOut); sl@0: } sl@0: static int cfSleep(sqlite3_vfs *pCfVfs, int nMicro){ sl@0: sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sl@0: return pVfs->xSleep(pVfs, nMicro); sl@0: } sl@0: static int cfCurrentTime(sqlite3_vfs *pCfVfs, double *pTimeOut){ sl@0: sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; sl@0: return pVfs->xCurrentTime(pVfs, pTimeOut); sl@0: } sl@0: sl@0: static int processDevSymArgs( sl@0: Tcl_Interp *interp, sl@0: int objc, sl@0: Tcl_Obj *CONST objv[], sl@0: int *piDeviceChar, sl@0: int *piSectorSize sl@0: ){ sl@0: struct DeviceFlag { sl@0: char *zName; sl@0: int iValue; sl@0: } aFlag[] = { sl@0: { "atomic", SQLITE_IOCAP_ATOMIC }, sl@0: { "atomic512", SQLITE_IOCAP_ATOMIC512 }, sl@0: { "atomic1k", SQLITE_IOCAP_ATOMIC1K }, sl@0: { "atomic2k", SQLITE_IOCAP_ATOMIC2K }, sl@0: { "atomic4k", SQLITE_IOCAP_ATOMIC4K }, sl@0: { "atomic8k", SQLITE_IOCAP_ATOMIC8K }, sl@0: { "atomic16k", SQLITE_IOCAP_ATOMIC16K }, sl@0: { "atomic32k", SQLITE_IOCAP_ATOMIC32K }, sl@0: { "atomic64k", SQLITE_IOCAP_ATOMIC64K }, sl@0: { "sequential", SQLITE_IOCAP_SEQUENTIAL }, sl@0: { "safe_append", SQLITE_IOCAP_SAFE_APPEND }, sl@0: { 0, 0 } sl@0: }; sl@0: sl@0: int i; sl@0: int iDc = 0; sl@0: int iSectorSize = 0; sl@0: int setSectorsize = 0; sl@0: int setDeviceChar = 0; sl@0: sl@0: for(i=0; i11 || nOpt<2 || strncmp("-sectorsize", zOpt, nOpt)) sl@0: && (nOpt>16 || nOpt<2 || strncmp("-characteristics", zOpt, nOpt)) sl@0: ){ sl@0: Tcl_AppendResult(interp, sl@0: "Bad option: \"", zOpt, sl@0: "\" - must be \"-characteristics\" or \"-sectorsize\"", 0 sl@0: ); sl@0: return TCL_ERROR; sl@0: } sl@0: if( i==objc-1 ){ sl@0: Tcl_AppendResult(interp, "Option requires an argument: \"", zOpt, "\"",0); sl@0: return TCL_ERROR; sl@0: } sl@0: sl@0: if( zOpt[1]=='s' ){ sl@0: if( Tcl_GetIntFromObj(interp, objv[i+1], &iSectorSize) ){ sl@0: return TCL_ERROR; sl@0: } sl@0: setSectorsize = 1; sl@0: }else{ sl@0: int j; sl@0: Tcl_Obj **apObj; sl@0: int nObj; sl@0: if( Tcl_ListObjGetElements(interp, objv[i+1], &nObj, &apObj) ){ sl@0: return TCL_ERROR; sl@0: } sl@0: for(j=0; jmxPathname; sl@0: crashVfs.pAppData = (void *)pOriginalVfs; sl@0: crashVfs.szOsFile = sizeof(CrashFile) + pOriginalVfs->szOsFile; sl@0: sqlite3_vfs_register(&crashVfs, 0); sl@0: }else{ sl@0: crashVfs.pAppData = 0; sl@0: sqlite3_vfs_unregister(&crashVfs); sl@0: } sl@0: sl@0: return TCL_OK; sl@0: } sl@0: sl@0: /* sl@0: ** tclcmd: sqlite_crashparams ?OPTIONS? DELAY CRASHFILE sl@0: ** sl@0: ** This procedure implements a TCL command that enables crash testing sl@0: ** in testfixture. Once enabled, crash testing cannot be disabled. sl@0: ** sl@0: ** Available options are "-characteristics" and "-sectorsize". Both require sl@0: ** an argument. For -sectorsize, this is the simulated sector size in sl@0: ** bytes. For -characteristics, the argument must be a list of io-capability sl@0: ** flags to simulate. Valid flags are "atomic", "atomic512", "atomic1K", sl@0: ** "atomic2K", "atomic4K", "atomic8K", "atomic16K", "atomic32K", sl@0: ** "atomic64K", "sequential" and "safe_append". sl@0: ** sl@0: ** Example: sl@0: ** sl@0: ** sqlite_crashparams -sect 1024 -char {atomic sequential} ./test.db 1 sl@0: ** sl@0: */ sl@0: static int crashParamsObjCmd( sl@0: void * clientData, sl@0: Tcl_Interp *interp, sl@0: int objc, sl@0: Tcl_Obj *CONST objv[] sl@0: ){ sl@0: int iDelay; sl@0: const char *zCrashFile; sl@0: int nCrashFile, iDc, iSectorSize; sl@0: sl@0: iDc = -1; sl@0: iSectorSize = -1; sl@0: sl@0: if( objc<3 ){ sl@0: Tcl_WrongNumArgs(interp, 1, objv, "?OPTIONS? DELAY CRASHFILE"); sl@0: goto error; sl@0: } sl@0: sl@0: zCrashFile = Tcl_GetStringFromObj(objv[objc-1], &nCrashFile); sl@0: if( nCrashFile>=sizeof(g.zCrashFile) ){ sl@0: Tcl_AppendResult(interp, "Filename is too long: \"", zCrashFile, "\"", 0); sl@0: goto error; sl@0: } sl@0: if( Tcl_GetIntFromObj(interp, objv[objc-2], &iDelay) ){ sl@0: goto error; sl@0: } sl@0: sl@0: if( processDevSymArgs(interp, objc-3, &objv[1], &iDc, &iSectorSize) ){ sl@0: return TCL_ERROR; sl@0: } sl@0: sl@0: if( iDc>=0 ){ sl@0: g.iDeviceCharacteristics = iDc; sl@0: } sl@0: if( iSectorSize>=0 ){ sl@0: g.iSectorSize = iSectorSize; sl@0: } sl@0: sl@0: g.iCrash = iDelay; sl@0: memcpy(g.zCrashFile, zCrashFile, nCrashFile+1); sl@0: sqlite3CrashTestEnable = 1; sl@0: return TCL_OK; sl@0: sl@0: error: sl@0: return TCL_ERROR; sl@0: } sl@0: sl@0: static int devSymObjCmd( sl@0: void * clientData, sl@0: Tcl_Interp *interp, sl@0: int objc, sl@0: Tcl_Obj *CONST objv[] sl@0: ){ sl@0: void devsym_register(int iDeviceChar, int iSectorSize); sl@0: sl@0: int iDc = -1; sl@0: int iSectorSize = -1; sl@0: sl@0: if( processDevSymArgs(interp, objc-1, &objv[1], &iDc, &iSectorSize) ){ sl@0: return TCL_ERROR; sl@0: } sl@0: devsym_register(iDc, iSectorSize); sl@0: sl@0: return TCL_OK; sl@0: } sl@0: sl@0: #endif /* SQLITE_OMIT_DISKIO */ sl@0: sl@0: /* sl@0: ** This procedure registers the TCL procedures defined in this file. sl@0: */ sl@0: int Sqlitetest6_Init(Tcl_Interp *interp){ sl@0: #ifndef SQLITE_OMIT_DISKIO sl@0: Tcl_CreateObjCommand(interp, "sqlite3_crash_enable", crashEnableCmd, 0, 0); sl@0: Tcl_CreateObjCommand(interp, "sqlite3_crashparams", crashParamsObjCmd, 0, 0); sl@0: Tcl_CreateObjCommand(interp, "sqlite3_simulate_device", devSymObjCmd, 0, 0); sl@0: #endif sl@0: return TCL_OK; sl@0: } sl@0: sl@0: #endif /* SQLITE_TEST */