|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "sqliteInt.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(SQLITE_TEST) |
|
|
int sqlite3_io_error_hit = 0; |
|
|
int sqlite3_io_error_hardhit = 0; |
|
|
int sqlite3_io_error_pending = 0; |
|
|
int sqlite3_io_error_persist = 0; |
|
|
int sqlite3_io_error_benign = 0; |
|
|
int sqlite3_diskfull_pending = 0; |
|
|
int sqlite3_diskfull = 0; |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(SQLITE_TEST) |
|
|
int sqlite3_open_file_count = 0; |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(SQLITE_TEST) |
|
|
int sqlite3_memdebug_vfs_oom_test = 1; |
|
|
#define DO_OS_MALLOC_TEST(x) \ |
|
|
if (sqlite3_memdebug_vfs_oom_test && (!x || !sqlite3JournalIsInMemory(x))) { \ |
|
|
void *pTstAlloc = sqlite3Malloc(10); \ |
|
|
if (!pTstAlloc) return SQLITE_IOERR_NOMEM_BKPT; \ |
|
|
sqlite3_free(pTstAlloc); \ |
|
|
} |
|
|
#else |
|
|
#define DO_OS_MALLOC_TEST(x) |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void sqlite3OsClose(sqlite3_file *pId){ |
|
|
if( pId->pMethods ){ |
|
|
pId->pMethods->xClose(pId); |
|
|
pId->pMethods = 0; |
|
|
} |
|
|
} |
|
|
int sqlite3OsRead(sqlite3_file *id, void *pBuf, int amt, i64 offset){ |
|
|
DO_OS_MALLOC_TEST(id); |
|
|
return id->pMethods->xRead(id, pBuf, amt, offset); |
|
|
} |
|
|
int sqlite3OsWrite(sqlite3_file *id, const void *pBuf, int amt, i64 offset){ |
|
|
DO_OS_MALLOC_TEST(id); |
|
|
return id->pMethods->xWrite(id, pBuf, amt, offset); |
|
|
} |
|
|
int sqlite3OsTruncate(sqlite3_file *id, i64 size){ |
|
|
return id->pMethods->xTruncate(id, size); |
|
|
} |
|
|
int sqlite3OsSync(sqlite3_file *id, int flags){ |
|
|
DO_OS_MALLOC_TEST(id); |
|
|
return flags ? id->pMethods->xSync(id, flags) : SQLITE_OK; |
|
|
} |
|
|
int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){ |
|
|
DO_OS_MALLOC_TEST(id); |
|
|
return id->pMethods->xFileSize(id, pSize); |
|
|
} |
|
|
int sqlite3OsLock(sqlite3_file *id, int lockType){ |
|
|
DO_OS_MALLOC_TEST(id); |
|
|
assert( lockType>=SQLITE_LOCK_SHARED && lockType<=SQLITE_LOCK_EXCLUSIVE ); |
|
|
return id->pMethods->xLock(id, lockType); |
|
|
} |
|
|
int sqlite3OsUnlock(sqlite3_file *id, int lockType){ |
|
|
assert( lockType==SQLITE_LOCK_NONE || lockType==SQLITE_LOCK_SHARED ); |
|
|
return id->pMethods->xUnlock(id, lockType); |
|
|
} |
|
|
int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut){ |
|
|
DO_OS_MALLOC_TEST(id); |
|
|
return id->pMethods->xCheckReservedLock(id, pResOut); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){ |
|
|
if( id->pMethods==0 ) return SQLITE_NOTFOUND; |
|
|
#ifdef SQLITE_TEST |
|
|
if( op!=SQLITE_FCNTL_COMMIT_PHASETWO |
|
|
&& op!=SQLITE_FCNTL_LOCK_TIMEOUT |
|
|
&& op!=SQLITE_FCNTL_CKPT_DONE |
|
|
&& op!=SQLITE_FCNTL_CKPT_START |
|
|
){ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DO_OS_MALLOC_TEST(id); |
|
|
} |
|
|
#endif |
|
|
return id->pMethods->xFileControl(id, op, pArg); |
|
|
} |
|
|
void sqlite3OsFileControlHint(sqlite3_file *id, int op, void *pArg){ |
|
|
if( id->pMethods ) (void)id->pMethods->xFileControl(id, op, pArg); |
|
|
} |
|
|
|
|
|
int sqlite3OsSectorSize(sqlite3_file *id){ |
|
|
int (*xSectorSize)(sqlite3_file*) = id->pMethods->xSectorSize; |
|
|
return (xSectorSize ? xSectorSize(id) : SQLITE_DEFAULT_SECTOR_SIZE); |
|
|
} |
|
|
int sqlite3OsDeviceCharacteristics(sqlite3_file *id){ |
|
|
if( NEVER(id->pMethods==0) ) return 0; |
|
|
return id->pMethods->xDeviceCharacteristics(id); |
|
|
} |
|
|
#ifndef SQLITE_OMIT_WAL |
|
|
int sqlite3OsShmLock(sqlite3_file *id, int offset, int n, int flags){ |
|
|
return id->pMethods->xShmLock(id, offset, n, flags); |
|
|
} |
|
|
void sqlite3OsShmBarrier(sqlite3_file *id){ |
|
|
id->pMethods->xShmBarrier(id); |
|
|
} |
|
|
int sqlite3OsShmUnmap(sqlite3_file *id, int deleteFlag){ |
|
|
return id->pMethods->xShmUnmap(id, deleteFlag); |
|
|
} |
|
|
int sqlite3OsShmMap( |
|
|
sqlite3_file *id, |
|
|
int iPage, |
|
|
int pgsz, |
|
|
int bExtend, |
|
|
void volatile **pp |
|
|
){ |
|
|
DO_OS_MALLOC_TEST(id); |
|
|
return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp); |
|
|
} |
|
|
#endif |
|
|
|
|
|
#if SQLITE_MAX_MMAP_SIZE>0 |
|
|
|
|
|
int sqlite3OsFetch(sqlite3_file *id, i64 iOff, int iAmt, void **pp){ |
|
|
DO_OS_MALLOC_TEST(id); |
|
|
return id->pMethods->xFetch(id, iOff, iAmt, pp); |
|
|
} |
|
|
int sqlite3OsUnfetch(sqlite3_file *id, i64 iOff, void *p){ |
|
|
return id->pMethods->xUnfetch(id, iOff, p); |
|
|
} |
|
|
#else |
|
|
|
|
|
int sqlite3OsFetch(sqlite3_file *id, i64 iOff, int iAmt, void **pp){ |
|
|
*pp = 0; |
|
|
return SQLITE_OK; |
|
|
} |
|
|
int sqlite3OsUnfetch(sqlite3_file *id, i64 iOff, void *p){ |
|
|
return SQLITE_OK; |
|
|
} |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int sqlite3OsOpen( |
|
|
sqlite3_vfs *pVfs, |
|
|
const char *zPath, |
|
|
sqlite3_file *pFile, |
|
|
int flags, |
|
|
int *pFlagsOut |
|
|
){ |
|
|
int rc; |
|
|
DO_OS_MALLOC_TEST(0); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert( zPath || (flags & SQLITE_OPEN_EXCLUSIVE) ); |
|
|
rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x1087f7f, pFlagsOut); |
|
|
assert( rc==SQLITE_OK || pFile->pMethods==0 ); |
|
|
return rc; |
|
|
} |
|
|
int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ |
|
|
DO_OS_MALLOC_TEST(0); |
|
|
assert( dirSync==0 || dirSync==1 ); |
|
|
return pVfs->xDelete!=0 ? pVfs->xDelete(pVfs, zPath, dirSync) : SQLITE_OK; |
|
|
} |
|
|
int sqlite3OsAccess( |
|
|
sqlite3_vfs *pVfs, |
|
|
const char *zPath, |
|
|
int flags, |
|
|
int *pResOut |
|
|
){ |
|
|
DO_OS_MALLOC_TEST(0); |
|
|
return pVfs->xAccess(pVfs, zPath, flags, pResOut); |
|
|
} |
|
|
int sqlite3OsFullPathname( |
|
|
sqlite3_vfs *pVfs, |
|
|
const char *zPath, |
|
|
int nPathOut, |
|
|
char *zPathOut |
|
|
){ |
|
|
DO_OS_MALLOC_TEST(0); |
|
|
zPathOut[0] = 0; |
|
|
return pVfs->xFullPathname(pVfs, zPath, nPathOut, zPathOut); |
|
|
} |
|
|
#ifndef SQLITE_OMIT_LOAD_EXTENSION |
|
|
void *sqlite3OsDlOpen(sqlite3_vfs *pVfs, const char *zPath){ |
|
|
assert( zPath!=0 ); |
|
|
assert( strlen(zPath)<=SQLITE_MAX_PATHLEN ); |
|
|
return pVfs->xDlOpen(pVfs, zPath); |
|
|
} |
|
|
void sqlite3OsDlError(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ |
|
|
pVfs->xDlError(pVfs, nByte, zBufOut); |
|
|
} |
|
|
void (*sqlite3OsDlSym(sqlite3_vfs *pVfs, void *pHdle, const char *zSym))(void){ |
|
|
return pVfs->xDlSym(pVfs, pHdle, zSym); |
|
|
} |
|
|
void sqlite3OsDlClose(sqlite3_vfs *pVfs, void *pHandle){ |
|
|
pVfs->xDlClose(pVfs, pHandle); |
|
|
} |
|
|
#endif |
|
|
int sqlite3OsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ |
|
|
if( sqlite3Config.iPrngSeed ){ |
|
|
memset(zBufOut, 0, nByte); |
|
|
if( ALWAYS(nByte>(signed)sizeof(unsigned)) ) nByte = sizeof(unsigned int); |
|
|
memcpy(zBufOut, &sqlite3Config.iPrngSeed, nByte); |
|
|
return SQLITE_OK; |
|
|
}else{ |
|
|
return pVfs->xRandomness(pVfs, nByte, zBufOut); |
|
|
} |
|
|
|
|
|
} |
|
|
int sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro){ |
|
|
return pVfs->xSleep(pVfs, nMicro); |
|
|
} |
|
|
int sqlite3OsGetLastError(sqlite3_vfs *pVfs){ |
|
|
return pVfs->xGetLastError ? pVfs->xGetLastError(pVfs, 0, 0) : 0; |
|
|
} |
|
|
int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ |
|
|
int rc; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){ |
|
|
rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); |
|
|
}else{ |
|
|
double r; |
|
|
rc = pVfs->xCurrentTime(pVfs, &r); |
|
|
*pTimeOut = (sqlite3_int64)(r*86400000.0); |
|
|
} |
|
|
return rc; |
|
|
} |
|
|
|
|
|
int sqlite3OsOpenMalloc( |
|
|
sqlite3_vfs *pVfs, |
|
|
const char *zFile, |
|
|
sqlite3_file **ppFile, |
|
|
int flags, |
|
|
int *pOutFlags |
|
|
){ |
|
|
int rc; |
|
|
sqlite3_file *pFile; |
|
|
pFile = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile); |
|
|
if( pFile ){ |
|
|
rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags); |
|
|
if( rc!=SQLITE_OK ){ |
|
|
sqlite3_free(pFile); |
|
|
*ppFile = 0; |
|
|
}else{ |
|
|
*ppFile = pFile; |
|
|
} |
|
|
}else{ |
|
|
*ppFile = 0; |
|
|
rc = SQLITE_NOMEM_BKPT; |
|
|
} |
|
|
assert( *ppFile!=0 || rc!=SQLITE_OK ); |
|
|
return rc; |
|
|
} |
|
|
void sqlite3OsCloseFree(sqlite3_file *pFile){ |
|
|
assert( pFile ); |
|
|
sqlite3OsClose(pFile); |
|
|
sqlite3_free(pFile); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int sqlite3OsInit(void){ |
|
|
void *p = sqlite3_malloc(10); |
|
|
if( p==0 ) return SQLITE_NOMEM_BKPT; |
|
|
sqlite3_free(p); |
|
|
return sqlite3_os_init(); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static sqlite3_vfs * SQLITE_WSD vfsList = 0; |
|
|
#define vfsList GLOBAL(sqlite3_vfs *, vfsList) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sqlite3_vfs *sqlite3_vfs_find(const char *zVfs){ |
|
|
sqlite3_vfs *pVfs = 0; |
|
|
#if SQLITE_THREADSAFE |
|
|
sqlite3_mutex *mutex; |
|
|
#endif |
|
|
#ifndef SQLITE_OMIT_AUTOINIT |
|
|
int rc = sqlite3_initialize(); |
|
|
if( rc ) return 0; |
|
|
#endif |
|
|
#if SQLITE_THREADSAFE |
|
|
mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); |
|
|
#endif |
|
|
sqlite3_mutex_enter(mutex); |
|
|
for(pVfs = vfsList; pVfs; pVfs=pVfs->pNext){ |
|
|
if( zVfs==0 ) break; |
|
|
if( strcmp(zVfs, pVfs->zName)==0 ) break; |
|
|
} |
|
|
sqlite3_mutex_leave(mutex); |
|
|
return pVfs; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void vfsUnlink(sqlite3_vfs *pVfs){ |
|
|
assert( sqlite3_mutex_held(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN)) ); |
|
|
if( pVfs==0 ){ |
|
|
|
|
|
}else if( vfsList==pVfs ){ |
|
|
vfsList = pVfs->pNext; |
|
|
}else if( vfsList ){ |
|
|
sqlite3_vfs *p = vfsList; |
|
|
while( p->pNext && p->pNext!=pVfs ){ |
|
|
p = p->pNext; |
|
|
} |
|
|
if( p->pNext==pVfs ){ |
|
|
p->pNext = pVfs->pNext; |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int sqlite3_vfs_register(sqlite3_vfs *pVfs, int makeDflt){ |
|
|
MUTEX_LOGIC(sqlite3_mutex *mutex;) |
|
|
#ifndef SQLITE_OMIT_AUTOINIT |
|
|
int rc = sqlite3_initialize(); |
|
|
if( rc ) return rc; |
|
|
#endif |
|
|
#ifdef SQLITE_ENABLE_API_ARMOR |
|
|
if( pVfs==0 ) return SQLITE_MISUSE_BKPT; |
|
|
#endif |
|
|
|
|
|
MUTEX_LOGIC( mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); ) |
|
|
sqlite3_mutex_enter(mutex); |
|
|
vfsUnlink(pVfs); |
|
|
if( makeDflt || vfsList==0 ){ |
|
|
pVfs->pNext = vfsList; |
|
|
vfsList = pVfs; |
|
|
}else{ |
|
|
pVfs->pNext = vfsList->pNext; |
|
|
vfsList->pNext = pVfs; |
|
|
} |
|
|
assert(vfsList); |
|
|
sqlite3_mutex_leave(mutex); |
|
|
return SQLITE_OK; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int sqlite3_vfs_unregister(sqlite3_vfs *pVfs){ |
|
|
MUTEX_LOGIC(sqlite3_mutex *mutex;) |
|
|
#ifndef SQLITE_OMIT_AUTOINIT |
|
|
int rc = sqlite3_initialize(); |
|
|
if( rc ) return rc; |
|
|
#endif |
|
|
MUTEX_LOGIC( mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); ) |
|
|
sqlite3_mutex_enter(mutex); |
|
|
vfsUnlink(pVfs); |
|
|
sqlite3_mutex_leave(mutex); |
|
|
return SQLITE_OK; |
|
|
} |
|
|
|