3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
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.
10 #***********************************************************************
13 set testdir [file dirname $argv0]
14 source $testdir/tester.tcl
15 set testprefix corruptH
17 # This module uses hard-coded offsets which do not work if the reserved_bytes
19 if {[nonzero_reserved_bytes]} {finish_test; return;}
21 database_may_be_corrupt
23 # The corruption migrations tested by the code in this file are not detected
26 # The reason is that in mmap mode, the different queries may use different
27 # PgHdr objects for the same page (same data, but different PgHdr container
28 # objects). And so the corruption is not detected.
30 if {[permutation]=="mmap"} {
35 # Initialize the database.
38 PRAGMA page_size=1024;
40 CREATE TABLE t1(a INTEGER PRIMARY KEY, b);
41 INSERT INTO t1 VALUES(1, 'one');
42 INSERT INTO t1 VALUES(2, 'two');
45 INSERT INTO t2 VALUES(randomblob(200));
46 INSERT INTO t2 SELECT randomblob(200) FROM t2;
47 INSERT INTO t2 SELECT randomblob(200) FROM t2;
48 INSERT INTO t2 SELECT randomblob(200) FROM t2;
49 INSERT INTO t2 SELECT randomblob(200) FROM t2;
50 INSERT INTO t2 SELECT randomblob(200) FROM t2;
51 INSERT INTO t2 SELECT randomblob(200) FROM t2;
54 # Corrupt the file so that the root page of t1 is also linked into t2 as
58 db eval { SELECT name, rootpage FROM sqlite_master } {
59 set r($name) $rootpage
62 hexio_write test.db [expr {($r(t2)-1)*1024 + 11}] [format %.2X $r(t1)]
67 db eval { PRAGMA secure_delete=1 }
69 db eval { SELECT * FROM t1 WHERE a IN (1, 2) } {
70 db eval { DELETE FROM t2 }
73 } {1 {database disk image is malformed}}
75 #-------------------------------------------------------------------------
78 # Initialize the database.
82 PRAGMA page_size=1024;
84 CREATE TABLE t1(a INTEGER PRIMARY KEY, b);
85 INSERT INTO t1 VALUES(1, 'one');
86 INSERT INTO t1 VALUES(2, 'two');
90 CREATE TABLE t2(x PRIMARY KEY) WITHOUT ROWID;
91 INSERT INTO t2 VALUES(randomblob(100));
97 db eval { SELECT name, rootpage FROM sqlite_master } {
98 set r($name) $rootpage
101 set fl [hexio_get_int [hexio_read test.db 32 4]]
103 hexio_write test.db [expr {($fl-1) * 1024 + 0}] 00000000
104 hexio_write test.db [expr {($fl-1) * 1024 + 4}] 00000001
105 hexio_write test.db [expr {($fl-1) * 1024 + 8}] [format %.8X $r(t1)]
106 hexio_write test.db 36 00000002
112 # The trick here is that the root page of the tree scanned by the outer
113 # query is also currently on the free-list. So while the first seek on
114 # the table (for a==1) works, by the time the second is attempted The
115 # "INSERT INTO t2..." statements have recycled the root page of t1 and
116 # used it as an index leaf. Normally, BtreeMovetoUnpacked() detects
117 # that the PgHdr object associated with said root page does not match
118 # the cursor (as it is now marked with PgHdr.intKey==0) and returns
121 set res23 {1 {database disk image is malformed}}
125 db eval { SELECT * FROM t1 WHERE a IN (1, 2) } {
127 INSERT INTO t2 SELECT randomblob(100) FROM t2;
128 INSERT INTO t2 SELECT randomblob(100) FROM t2;
129 INSERT INTO t2 SELECT randomblob(100) FROM t2;
130 INSERT INTO t2 SELECT randomblob(100) FROM t2;
131 INSERT INTO t2 SELECT randomblob(100) FROM t2;
139 #-------------------------------------------------------------------------
142 # Initialize the database.
144 do_execsql_test 3.1 {
145 PRAGMA page_size=1024;
147 CREATE TABLE t1(a INTEGER PRIMARY KEY, b);
148 INSERT INTO t1 VALUES(1, 'one');
149 INSERT INTO t1 VALUES(2, 'two');
151 CREATE TABLE t2(c INTEGER PRAGMA KEY, d);
152 INSERT INTO t2 VALUES(1, randomblob(1100));
156 db eval { SELECT name, rootpage FROM sqlite_master } {
157 set r($name) $rootpage
161 hexio_write test.db [expr {($r(t2)-1) * 1024 + 1020}] 00000002
168 db eval { SELECT * FROM t1 WHERE a IN (1, 2) } {
170 DELETE FROM t2 WHERE c=1;
174 } {1 {database disk image is malformed}}