From: dan Date: Thu, 19 Dec 2013 17:04:58 +0000 (+0000) Subject: Do not inject OOM faults into SQLITE_FCNTL_COMMIT_PHASE_TWO file-control invocations... X-Git-Tag: version-3.8.3~86 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1001ee8819a825d2b6076b7f4e98949deb1aef92;p=thirdparty%2Fsqlite.git Do not inject OOM faults into SQLITE_FCNTL_COMMIT_PHASE_TWO file-control invocations. It causes problems for test scripts. FossilOrigin-Name: 8eb28d23e353139d24a8af78309d39249ab9eaf0 --- diff --git a/manifest b/manifest index 7f912e08b8..0859d915c2 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Make\ssure\serrors\sencountered\swhile\sinitializing\sextensions\ssuch\sas\sFTS4\nget\sreported\sout\sfrom\ssqlite3_open().\s\sThis\sfixes\sa\sbug\sintroduced\sby\ncheck-in\s[9d347f547e7ba9].\s\sAlso\sremove\slots\sof\sforgotten\s"breakpoint"\ncommands\sleft\sin\stest\sscripts\sover\sthe\syears. -D 2013-12-19T16:26:05.208 +C Do\snot\sinject\sOOM\sfaults\sinto\sSQLITE_FCNTL_COMMIT_PHASE_TWO\sfile-control\sinvocations.\sIt\scauses\sproblems\sfor\stest\sscripts. +D 2013-12-19T17:04:58.210 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 2ef13430cd359f7b361bb863504e227b25cc7f81 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -202,7 +202,7 @@ F src/mutex_noop.c 7682796b7d8d39bf1c138248858efcd10c9e1553 F src/mutex_unix.c c3a4e00f96ba068a8dbef34084465979aaf369cc F src/mutex_w32.c 6108c88e1cb38d8fbb3534b170793815cbedbf97 F src/notify.c 976dd0f6171d4588e89e874fcc765e92914b6d30 -F src/os.c b4ad71336fd96f97776f75587cd9e8218288f5be +F src/os.c 1b147e4cf7cc39e618115c14a086aed44bc91ace F src/os.h 4a46270a64e9193af4a0aaa3bc2c66dc07c29b3f F src/os_common.h 92815ed65f805560b66166e3583470ff94478f04 F src/os_unix.c 60a7b3b23e6fcf83a50d1e320b280b551724e11f @@ -1147,7 +1147,7 @@ F tool/vdbe-compress.tcl 0cf56e9263a152b84da86e75a5c0cdcdb7a47891 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01 F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff -P ffa092e13b3781677b18418cca40e3dd1e388aed -R 62e1d728cd37281433b32cbd44f4c682 -U drh -Z 83a1d9d85b0e444eca37253273a68154 +P ca3fdfd41961d8d3d1e39d20dc628e8a95dabb2f +R b2d8ac3bed199d88ddec25ed7c70eec6 +U dan +Z b85edb7cdda29606f3560dec5a14157c diff --git a/manifest.uuid b/manifest.uuid index 44ff93880e..5b8bd821b1 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -ca3fdfd41961d8d3d1e39d20dc628e8a95dabb2f \ No newline at end of file +8eb28d23e353139d24a8af78309d39249ab9eaf0 \ No newline at end of file diff --git a/src/os.c b/src/os.c index be2ea4cfc0..b6c28a1dc4 100644 --- a/src/os.c +++ b/src/os.c @@ -107,7 +107,21 @@ int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut){ ** routine has no return value since the return value would be meaningless. */ int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){ - DO_OS_MALLOC_TEST(id); +#ifdef SQLITE_TEST + if( op!=SQLITE_FCNTL_COMMIT_PHASETWO ){ + /* Faults are not injected into COMMIT_PHASETWO because, assuming SQLite + ** is using a regular VFS, it is called after the corresponding + ** transaction has been committed. Injecting a fault at this point + ** confuses the test scripts - the COMMIT comand returns SQLITE_NOMEM + ** but the transaction is committed anyway. + ** + ** The core must call OsFileControl() though, not OsFileControlHint(), + ** as if a custom VFS (e.g. zipvfs) returns an error here, it probably + ** means the commit really has failed and an error should be returned + ** to the user. */ + DO_OS_MALLOC_TEST(id); + } +#endif return id->pMethods->xFileControl(id, op, pArg); } void sqlite3OsFileControlHint(sqlite3_file *id, int op, void *pArg){