First public contribution.
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 #***********************************************************************
12 # This file contains tests to ensure that the library handles malloc() failures
13 # correctly. The emphasis of these tests are the _prepare(), _step() and
16 # $Id: malloc3.test,v 1.23 2008/05/13 19:41:54 shane Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
20 source $testdir/malloc_common.tcl
22 # Only run these tests if memory debugging is turned on.
25 puts "Skipping malloc3 tests: not compiled with -DSQLITE_MEMDEBUG..."
30 #--------------------------------------------------------------------------
31 # NOTES ON RECOVERING FROM A MALLOC FAILURE
33 # The tests in this file test the behaviours described in the following
34 # paragraphs. These tests test the behaviour of the system when malloc() fails
35 # inside of a call to _prepare(), _step(), _finalize() or _reset(). The
36 # handling of malloc() failures within ancillary procedures is tested
41 # Executing a statement is done in three stages (prepare, step and finalize). A
42 # malloc() failure may occur within any stage. If a memory allocation fails
43 # during statement preparation, no statement handle is returned. From the users
44 # point of view the system state is as if _prepare() had never been called.
46 # If the memory allocation fails during the _step() or _finalize() calls, then
47 # the database may be left in one of two states (after finalize() has been
50 # * As if the neither _step() nor _finalize() had ever been called on
51 # the statement handle (i.e. any changes made by the statement are
53 # * The current transaction may be rolled back. In this case a hot-journal
54 # may or may not actually be present in the filesystem.
56 # The caller can tell the difference between these two scenarios by invoking
60 # Handling of sqlite3_reset():
62 # If a malloc() fails while executing an sqlite3_reset() call, this is handled
63 # in the same way as a failure within _finalize(). The statement handle
64 # is not deleted and must be passed to _finalize() for resource deallocation.
65 # Attempting to _step() or _reset() the statement after a failed _reset() will
66 # always return SQLITE_NOMEM.
69 # Other active SQL statements:
71 # The effect of a malloc failure on concurrently executing SQL statements,
72 # particularly when the statement is executing with READ_UNCOMMITTED set and
73 # the malloc() failure mandates statement rollback only. Currently, if
74 # transaction rollback is required, all other vdbe's are aborted.
76 # Non-transient mallocs in btree.c:
77 # * The Btree structure itself
78 # * Each BtCursor structure
81 # readMasterJournal() - Space to read the master journal name
82 # pager_delmaster() - Space for the entire master journal file
84 # sqlite3pager_open() - The pager structure itself
85 # sqlite3_pagerget() - Space for a new page
86 # pager_open_journal() - Pager.aInJournal[] bitmap
87 # sqlite3pager_write() - For in-memory databases only: history page and
88 # statement history page.
89 # pager_stmt_begin() - Pager.aInStmt[] bitmap
91 # None of the above are a huge problem. The most troublesome failures are the
92 # transient malloc() calls in btree.c, which can occur during the tree-balance
93 # operation. This means the tree being balanced will be internally inconsistent
94 # after the malloc() fails. To avoid the corrupt tree being read by a
95 # READ_UNCOMMITTED query, we have to make sure the transaction or statement
96 # rollback occurs before sqlite3_step() returns, not during a subsequent
98 #--------------------------------------------------------------------------
100 #--------------------------------------------------------------------------
101 # NOTES ON TEST IMPLEMENTATION
103 # The tests in this file are implemented differently from those in other
104 # files. Instead, tests are specified using three primitives: SQL, PREP and
105 # TEST. Each primitive has a single argument. Primitives are processed in
106 # the order they are specified in the file.
108 # A TEST primitive specifies a TCL script as its argument. When a TEST
109 # directive is encountered the Tcl script is evaluated. Usually, this Tcl
110 # script contains one or more calls to [do_test].
112 # A PREP primitive specifies an SQL script as its argument. When a PREP
113 # directive is encountered the SQL is evaluated using database connection
116 # The SQL primitives are where the action happens. An SQL primitive must
117 # contain a single, valid SQL statement as its argument. When an SQL
118 # primitive is encountered, it is evaluated one or more times to test the
119 # behaviour of the system when malloc() fails during preparation or
120 # execution of said statement. The Nth time the statement is executed,
121 # the Nth malloc is said to fail. The statement is executed until it
122 # succeeds, i.e. (M+1) times, where M is the number of mallocs() required
123 # to prepare and execute the statement.
125 # Each time an SQL statement fails, the driver program (see proc [run_test]
126 # below) figures out if a transaction has been automatically rolled back.
127 # If not, it executes any TEST block immediately proceeding the SQL
128 # statement, then reexecutes the SQL statement with the next value of N.
130 # If a transaction has been automatically rolled back, then the driver
131 # program executes all the SQL specified as part of SQL or PREP primitives
132 # between the current SQL statement and the most recent "BEGIN". Any
133 # TEST block immediately proceeding the SQL statement is evaluated, and
134 # then the SQL statement reexecuted with the incremented N value.
136 # That make any sense? If not, read the code in [run_test] and it might.
138 # Extra restriction imposed by the implementation:
140 # * If a PREP block starts a transaction, it must finish it.
141 # * A PREP block may not close a transaction it did not start.
143 #--------------------------------------------------------------------------
145 # These procs are used to build up a "program" in global variable
146 # ::run_test_script. At the end of this file, the proc [run_test] is used
147 # to execute the program (and all test cases contained therein).
149 set ::run_test_script [list]
150 proc TEST {id t} {lappend ::run_test_script -test [list $id $t]}
151 proc PREP {p} {lappend ::run_test_script -prep [string trim $p]}
152 proc DEBUG {s} {lappend ::run_test_script -debug $s}
156 # SQL ?-norollback? <sql-text>
158 # Add an 'SQL' primitive to the program (see notes above). If the -norollback
159 # switch is present, then the statement is not allowed to automatically roll
160 # back any active transaction if malloc() fails. It must rollback the statement
163 proc SQL {a1 {a2 ""}} {
164 # An SQL primitive parameter is a list of two elements, a boolean value
165 # indicating if the statement may cause transaction rollback when malloc()
166 # fails, and the sql statement itself.
168 lappend ::run_test_script -sql [list true [string trim $a1]]
170 lappend ::run_test_script -sql [list false [string trim $a2]]
176 # A shorthand test to see if a transaction is active or not. The first
177 # argument - $id - is the integer number of the test case. The second
178 # argument is either 1 or 0, the expected value of the auto-commit flag.
180 proc TEST_AUTOCOMMIT {id a} {
181 TEST $id "do_test \$testid { sqlite3_get_autocommit \$::DB } {$a}"
184 #--------------------------------------------------------------------------
185 # Start of test program declaration
189 # Warm body test. A malloc() fails in the middle of a CREATE TABLE statement
190 # in a single-statement transaction on an empty database. Not too much can go
195 execsql {SELECT tbl_name FROM sqlite_master;}
199 CREATE TABLE abc(a, b, c);
203 execsql {SELECT tbl_name FROM sqlite_master;}
207 # Insert a couple of rows into the table. each insert is in its own
208 # transaction. test that the table is unpopulated before running the inserts
209 # (and hence after each failure of the first insert), and that it has been
210 # populated correctly after the final insert succeeds.
214 execsql {SELECT * FROM abc}
217 SQL {INSERT INTO abc VALUES(1, 2, 3);}
218 SQL {INSERT INTO abc VALUES(4, 5, 6);}
219 SQL {INSERT INTO abc VALUES(7, 8, 9);}
222 execsql {SELECT * FROM abc}
223 } {1 2 3 4 5 6 7 8 9}
226 # Test a CREATE INDEX statement. Because the table 'abc' is so small, the index
227 # will all fit on a single page, so this doesn't test too much that the CREATE
228 # TABLE statement didn't test. A few of the transient malloc()s in btree.c
231 SQL {CREATE INDEX abc_i ON abc(a, b, c);}
235 SELECT * FROM abc ORDER BY a DESC;
237 } {7 8 9 4 5 6 1 2 3}
240 # Test a DELETE statement. Also create a trigger and a view, just to make sure
241 # these statements don't have any obvious malloc() related bugs in them. Note
242 # that the test above will be executed each time the DELETE fails, so we're
243 # also testing rollback of a DELETE from a table with an index on it.
245 SQL {DELETE FROM abc WHERE a > 2;}
246 SQL {CREATE TRIGGER abc_t AFTER INSERT ON abc BEGIN SELECT 'trigger!'; END;}
247 SQL {CREATE VIEW abc_v AS SELECT * FROM abc;}
251 SELECT name, tbl_name FROM sqlite_master ORDER BY name;
254 } {abc abc abc_i abc abc_t abc abc_v abc_v 1 2 3}
258 BEGIN;DELETE FROM abc;
260 for {set i 1} {$i < 15} {incr i} {
262 set b "String value $i"
263 set c [string repeat X $i]
264 append sql "INSERT INTO abc VALUES ($a, '$b', '$c');"
270 DELETE FROM abc WHERE oid IN (SELECT oid FROM abc ORDER BY random() LIMIT 5);
274 execsql {SELECT count(*) FROM abc}
279 (oid == a) AND 'String value ' || a == b AND a == length(c)
285 DELETE FROM abc WHERE oid IN (SELECT oid FROM abc ORDER BY random() LIMIT 5);
289 execsql {SELECT count(*) FROM abc}
294 (oid == a) AND 'String value ' || a == b AND a == length(c)
300 DELETE FROM abc WHERE oid IN (SELECT oid FROM abc ORDER BY random() LIMIT 5);
304 execsql {SELECT count(*) FROM abc}
309 (oid == a) AND 'String value ' || a == b AND a == length(c)
315 set padding [string repeat X 500]
318 CREATE TABLE abc(a PRIMARY KEY, padding, b, c);
319 INSERT INTO abc VALUES(0, '$padding', 2, 2);
320 INSERT INTO abc VALUES(3, '$padding', 5, 5);
321 INSERT INTO abc VALUES(6, '$padding', 8, 8);
326 execsql {SELECT a, b, c FROM abc}
327 } {0 2 2 3 5 5 6 8 8}
331 SQL {INSERT INTO abc VALUES(9, 'XXXXX', 11, 12);}
333 SQL -norollback {UPDATE abc SET a = a + 1, c = c + 1;}
335 SQL {DELETE FROM abc WHERE a = 10;}
341 sqlite3_get_autocommit $::DB
344 execsql {SELECT a, b, c FROM abc}
345 } {1 2 3 4 5 6 7 8 9}
350 CREATE TABLE abc(a, padding, b, c);
351 INSERT INTO abc VALUES(1, '$padding', 2, 3);
352 INSERT INTO abc VALUES(4, '$padding', 5, 6);
353 INSERT INTO abc VALUES(7, '$padding', 8, 9);
354 CREATE INDEX abc_i ON abc(a, padding, b, c);
358 db eval {PRAGMA cache_size = 10}
362 SQL -norllbck {INSERT INTO abc (oid, a, padding, b, c) SELECT NULL, * FROM abc}
365 execsql {SELECT a, count(*) FROM abc GROUP BY a;}
368 SQL -norllbck {INSERT INTO abc (oid, a, padding, b, c) SELECT NULL, * FROM abc}
371 execsql {SELECT a, count(*) FROM abc GROUP BY a;}
374 SQL -norllbck {INSERT INTO abc (oid, a, padding, b, c) SELECT NULL, * FROM abc}
377 execsql {SELECT a, count(*) FROM abc GROUP BY a;}
380 SQL -norllbck {INSERT INTO abc (oid, a, padding, b, c) SELECT NULL, * FROM abc}
383 execsql {SELECT a, count(*) FROM abc GROUP BY a;}
389 execsql {SELECT a, count(*) FROM abc GROUP BY a;}
394 SQL {DELETE FROM abc WHERE oid %2}
397 execsql {SELECT a, count(*) FROM abc GROUP BY a;}
400 SQL {DELETE FROM abc}
403 execsql {SELECT * FROM abc}
409 execsql {SELECT a, count(*) FROM abc GROUP BY a;}
413 # Test some schema modifications inside of a transaction. These should all
414 # cause transaction rollback if they fail. Also query a view, to cover a bit
417 PREP {DROP VIEW abc_v;}
421 SELECT name, tbl_name FROM sqlite_master;
423 } {abc abc abc_i abc}
426 SQL {CREATE TABLE def(d, e, f);}
427 SQL {CREATE TABLE ghi(g, h, i);}
431 SELECT name, tbl_name FROM sqlite_master;
433 } {abc abc abc_i abc def def ghi ghi}
435 SQL {CREATE VIEW v1 AS SELECT * FROM def, ghi}
436 SQL {CREATE UNIQUE INDEX ghi_i1 ON ghi(g);}
440 SELECT name, tbl_name FROM sqlite_master;
442 } {abc abc abc_i abc def def ghi ghi v1 v1 ghi_i1 ghi}
444 SQL {INSERT INTO def VALUES('a', 'b', 'c')}
445 SQL {INSERT INTO def VALUES(1, 2, 3)}
446 SQL -norollback {INSERT INTO ghi SELECT * FROM def}
450 SELECT * FROM def, ghi WHERE d = g;
452 } {a b c a b c 1 2 3 1 2 3}
458 SELECT * FROM v1 WHERE d = g;
460 } {a b c a b c 1 2 3 1 2 3}
463 # Test a simple multi-file transaction
465 file delete -force test2.db
467 SQL {ATTACH 'test2.db' AS aux;}
469 SQL {CREATE TABLE aux.tbl2(x, y, z)}
470 SQL {INSERT INTO tbl2 VALUES(1, 2, 3)}
471 SQL {INSERT INTO def VALUES(4, 5, 6)}
475 SELECT * FROM tbl2, def WHERE d = x;
483 SELECT * FROM tbl2, def WHERE d = x;
489 # Test what happens when a malloc() fails while there are other active
490 # statements. This changes the way sqlite3VdbeHalt() works.
492 if {![info exists ::STMT32]} {
493 set sql "SELECT name FROM sqlite_master"
494 set ::STMT32 [sqlite3_prepare $::DB $sql -1 DUMMY]
496 sqlite3_step $::STMT32
503 execsql {SELECT * FROM ghi}
507 -- There is a unique index on ghi(g), so this statement may not cause
508 -- an automatic ROLLBACK. Hence the "-norollback" switch.
509 INSERT INTO ghi SELECT '2'||g, h, i FROM ghi;
512 if {[info exists ::STMT32]} {
514 sqlite3_finalize $::STMT32
522 # End of test program declaration
523 #--------------------------------------------------------------------------
525 proc run_test {arglist iRepeat {pcstart 0} {iFailStart 1}} {
526 if {[llength $arglist] %2} {
527 error "Uneven number of arguments to TEST"
530 for {set i 0} {$i < $pcstart} {incr i} {
531 set k2 [lindex $arglist [expr 2 * $i]]
532 set v2 [lindex $arglist [expr 2 * $i + 1]]
533 set ac [sqlite3_get_autocommit $::DB] ;# Auto-Commit
535 -sql {db eval [lindex $v2 1]}
538 set nac [sqlite3_get_autocommit $::DB] ;# New Auto-Commit
539 if {$ac && !$nac} {set begin_pc $i}
542 db rollback_hook [list incr ::rollback_hook_count]
544 set iFail $iFailStart
546 while {$pc*2 < [llength $arglist]} {
548 # Id of this iteration:
549 set k [lindex $arglist [expr 2 * $pc]]
550 set iterid "pc=$pc.iFail=$iFail$k"
551 set v [lindex $arglist [expr 2 * $pc + 1]]
559 foreach {id script} $v {}
564 set ::rollback_hook_count 0
566 set ac [sqlite3_get_autocommit $::DB] ;# Auto-Commit
567 sqlite3_memdebug_fail $iFail -repeat 0
568 set rc [catch {db eval [lindex $v 1]} msg] ;# True error occurs
569 set nac [sqlite3_get_autocommit $::DB] ;# New Auto-Commit
571 if {$rc != 0 && $nac && !$ac} {
572 # Before [db eval] the auto-commit flag was clear. Now it
573 # is set. Since an error occured we assume this was not a
574 # commit - therefore a rollback occured. Check that the
575 # rollback-hook was invoked.
576 do_test malloc3-rollback_hook.$iterid {
577 set ::rollback_hook_count
581 set nFail [sqlite3_memdebug_fail -1 -benigncnt nBenign]
583 # Successful execution of sql. The number of failed malloc()
584 # calls should be equal to the number of benign failures.
585 # Otherwise a malloc() failed and the error was not reported.
587 if {$nFail!=$nBenign} {
588 error "Unreported malloc() failure"
592 # Before the [db eval] the auto-commit flag was set, now it
593 # is clear. We can deduce that a "BEGIN" statement has just
594 # been successfully executed.
600 integrity_check "malloc3-(integrity).$iterid"
601 } elseif {[regexp {.*out of memory} $msg] || [db errorcode] == 3082} {
602 # Out of memory error, as expected.
604 integrity_check "malloc3-(integrity).$iterid"
608 if {![lindex $v 0] && [db errorcode] != 3082} {
609 # error "Statement \"[lindex $v 1]\" caused a rollback"
612 for {set i $begin_pc} {$i < $pc} {incr i} {
613 set k2 [lindex $arglist [expr 2 * $i]]
614 set v2 [lindex $arglist [expr 2 * $i + 1]]
617 -sql {set catchupsql [lindex $v2 1]}
618 -prep {set catchupsql $v2}
627 while {[lindex $arglist [expr 2 * ($pc -1)]] == "-test"} {
642 default { error "Unknown switch: $k" }
647 # Turn of the Tcl interface's prepared statement caching facility. Then
648 # run the tests with "persistent" malloc failures.
649 sqlite3_extended_result_codes db 1
651 run_test $::run_test_script 1
653 # Close and reopen the db.
655 file delete -force test.db test.db-journal test2.db test2.db-journal
657 sqlite3_extended_result_codes db 1
658 set ::DB [sqlite3_connection_pointer db]
660 # Turn of the Tcl interface's prepared statement caching facility in
661 # the new connnection. Then run the tests with "transient" malloc failures.
663 run_test $::run_test_script 0
665 sqlite3_memdebug_fail -1