AryaWu/sqlite
0
1# 2014-01-202#3# The author disclaims copyright to this source code. In place of4# a legal notice, here is a blessing:5#6# May you do good and not evil.7# May you find forgiveness for yourself and forgive others.8# May you share freely, never taking more than you give.9#10#***********************************************************************11#12 13set testdir [file dirname $argv0]14source $testdir/tester.tcl15set testprefix corruptI16 17if {[permutation]=="mmap"} {18 finish_test19 return20}21 22# This module uses hard-coded offsets which do not work if the reserved_bytes23# value is nonzero.24if {[nonzero_reserved_bytes]} {finish_test; return;}25 26database_may_be_corrupt27 28# Initialize the database.29#30do_execsql_test 1.1 {31 PRAGMA page_size=1024;32 PRAGMA auto_vacuum=0;33 CREATE TABLE t1(a);34 CREATE INDEX i1 ON t1(a);35 INSERT INTO t1 VALUES('abcdefghijklmnop');36} {}37db close38 39do_test 1.2 {40 set offset [hexio_get_int [hexio_read test.db [expr 2*1024 + 8] 2]]41 set off [expr 2*1024 + $offset + 1]42 hexio_write test.db $off 7f0643 sqlite3 db test.db44 catchsql { SELECT * FROM t1 WHERE a = 10 }45} {0 {}}46 47do_test 1.3 {48 db close49 set offset [hexio_get_int [hexio_read test.db [expr 2*1024 + 8] 2]]50 set off [expr 2*1024 + $offset + 1]51 hexio_write test.db $off FFFF7f0252 sqlite3 db test.db53 catchsql { SELECT * FROM t1 WHERE a = 10 }54} {1 {database disk image is malformed}}55 56do_test 2.0 {57 execsql {58 CREATE TABLE r(x);59 INSERT INTO r VALUES('ABCDEFGHIJK');60 CREATE INDEX r1 ON r(x);61 }62 set pg [db one {SELECT rootpage FROM sqlite_master WHERE name = 'r1'}]63} {5}64 65do_test 2.1 {66 db close67 set offset [hexio_get_int [hexio_read test.db [expr (5-1)*1024 + 8] 2]]68 set off [expr (5-1)*1024 + $offset + 1]69 hexio_write test.db $off FFFF000470 sqlite3 db test.db71 catchsql { SELECT * FROM r WHERE x >= 10.0 }72} {1 {database disk image is malformed}}73 74do_test 2.2 {75 catchsql { SELECT * FROM r WHERE x >= 10 }76} {1 {database disk image is malformed}}77 78if {[db one {SELECT sqlite_compileoption_used('ENABLE_OVERSIZE_CELL_CHECK')}]} {79 # The following tests only work if OVERSIZE_CELL_CHECK is disabled80} else {81 reset_db82 do_execsql_test 3.1 {83 PRAGMA auto_vacuum=0;84 PRAGMA page_size = 512;85 CREATE TABLE t1(a INTEGER PRIMARY KEY, b);86 WITH s(a, b) AS (87 SELECT 2, 'abcdefghij'88 UNION ALL89 SELECT a+2, b FROM s WHERe a < 4090 )91 INSERT INTO t1 SELECT * FROM s;92 } {}93 94 do_test 3.2 {95 hexio_write test.db [expr 512+3] 005496 db close97 sqlite3 db test.db98 execsql { INSERT INTO t1 VALUES(5, 'klmnopqrst') }99 execsql { INSERT INTO t1 VALUES(7, 'klmnopqrst') }100 } {}101 102 db close103 sqlite3 db test.db104 do_catchsql_test 3.3 {105 INSERT INTO t1 VALUES(9, 'klmnopqrst');106 } {1 {database disk image is malformed}}107} ;# end-if !defined(ENABLE_OVERSIZE_CELL_CHECK)108 109 110#-------------------------------------------------------------------------111# Test that an assert() failure discovered by AFL corrupt database file112# testing has been fixed.113#114reset_db115do_execsql_test 4.0 {116 PRAGMA page_size = 65536;117 PRAGMA autovacuum = 0;118 CREATE TABLE t1(a INTEGER PRIMARY KEY, b);119 INSERT INTO t1 VALUES(-1, 'abcdefghij');120 INSERT INTO t1 VALUES(0, 'abcdefghij');121}122 123set root [db one {SELECT rootpage FROM sqlite_master}]124set offset [expr ($root-1) * 65536]125 126do_test 4.1 {127 db close128 hexio_write test.db [expr $offset + 8 + 2] 0000129 hexio_write test.db [expr $offset + 5] 0000130 sqlite3 db test.db131 catchsql { DELETE FROM t1 WHERE a=0 }132} {1 {database disk image is malformed}}133 134 135#-------------------------------------------------------------------------136# Database properties:137#138# * Incremental vacuum mode.139# * Database root table has a single leaf page.140# * Free list consists of a single trunk page.141#142# The db is then corrupted by adding the root table leaf page as a free-list143# leaf page (so that it is referenced twice).144#145# Then, a new table is created. The new root page is the current free-list146# trunk. This means that the root table leaf page is made into the new147# free list trunk, which corrupts its header. Then, when the new entry is148# inserted into the root table, things would get chaotic.149#150reset_db151do_test 5.0 {152 execsql {153 PRAGMA page_size = 512;154 PRAGMA auto_vacuum = 2;155 }156 for {set i 3} {1} {incr i} {157 execsql "CREATE TABLE t${i}(x)"158 if {[db one {PRAGMA page_count}]>$i} break159 }160 set nPage [db one {PRAGMA page_count}]161 execsql {162 CREATE TABLE t100(x);163 DROP TABLE t100;164 }165} {}166 167do_execsql_test 5.1 { 168 PRAGMA page_count 169} [expr $nPage+1]170 171do_test 5.2 { 172 # The last page of the db is now the only leaf of the sqlite_master table.173 # Corrupt the db by adding it to the free-list as well (the second last174 # page of the db is the free-list trunk).175 db close176 hexio_write test.db [expr 512*($nPage-1)] [177 format "%.8X%.8X%.8X" 0 1 [expr $nPage+1]178 ]179} {12}180 181do_test 5.3 {182 sqlite3 db test.db183 catchsql { CREATE TABLE tx(x); }184} {1 {database disk image is malformed}}185 186 187#-------------------------------------------------------------------------188# Set the payload size of a cell to just less than 2^32 bytes (not189# possible in an uncorrupted db). Then try to delete the cell. At one190# point this led to an integer overflow that caused an assert() to fail.191#192reset_db193do_execsql_test 6.0 {194 PRAGMA page_size = 512;195 PRAGMA auto_vacuum=0;196 CREATE TABLE t1(x);197 INSERT INTO t1 VALUES(zeroblob(300));198 INSERT INTO t1 VALUES(zeroblob(600));199} {}200do_test 6.1 {201 db close202 hexio_write test.db 616 8FFFFFFF7F02203 sqlite3 db test.db204 execsql { DELETE FROM t1 WHERE rowid=2 }205} {}206 207#-------------------------------------------------------------------------208# See what happens if the sqlite_master entry associated with a PRIMARY209# KEY or UNIQUE index is removed. 210#211reset_db212do_execsql_test 7.0 {213 PRAGMA auto_vacuum=0;214 CREATE TABLE t1(x PRIMARY KEY, y);215 INSERT INTO t1 VALUES('a', 'A');216 INSERT INTO t1 VALUES('b', 'A');217 INSERT INTO t1 VALUES('c', 'A');218 SELECT name FROM sqlite_master;219} {t1 sqlite_autoindex_t1_1}220sqlite3_db_config db DEFENSIVE 0221do_execsql_test 7.1 {222 PRAGMA writable_schema = 1;223 DELETE FROM sqlite_master WHERE name = 'sqlite_autoindex_t1_1';224}225do_test 7.2 {226 db close227 sqlite3 db test.db228 catchsql { UPDATE t1 SET x='d' AND y='D' WHERE rowid = 2 }229} {1 {database disk image is malformed}}230 231#-------------------------------------------------------------------------232# At one point an assert() would fail if attempt was made to free page 1.233#234reset_db235do_execsql_test 8.0 {236 PRAGMA auto_vacuum=0;237 CREATE TABLE t1(x);238 INSERT INTO t1 VALUES(zeroblob(300));239 INSERT INTO t1 VALUES(zeroblob(300));240 INSERT INTO t1 VALUES(zeroblob(300));241 INSERT INTO t1 VALUES(zeroblob(300));242} {}243 244do_test 8.1 {245 db close246 hexio_write test.db [expr 1024 + 8] 00000001247 sqlite3 db test.db248 catchsql { DELETE FROM t1 }249} {1 {database disk image is malformed}}250 251do_test 8.2 {252 db close253 sqlite3 db test.db254 execsql { PRAGMA integrity_check }255} {/.*in database main.*/}256 257 258finish_test259 