os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/crash5.test
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
sl@0
     2
# 2007 Aug 13
sl@0
     3
#
sl@0
     4
# The author disclaims copyright to this source code.  In place of
sl@0
     5
# a legal notice, here is a blessing:
sl@0
     6
#
sl@0
     7
#    May you do good and not evil.
sl@0
     8
#    May you find forgiveness for yourself and forgive others.
sl@0
     9
#    May you share freely, never taking more than you give.
sl@0
    10
#
sl@0
    11
#***********************************************************************
sl@0
    12
# 
sl@0
    13
# This file tests aspects of recovery from a malloc() failure
sl@0
    14
# in a CREATE INDEX statement.
sl@0
    15
#
sl@0
    16
# $Id: crash5.test,v 1.3 2008/07/12 14:52:20 drh Exp $
sl@0
    17
sl@0
    18
set testdir [file dirname $argv0]
sl@0
    19
source $testdir/tester.tcl
sl@0
    20
sl@0
    21
# Only run these tests if memory debugging is turned on.
sl@0
    22
#
sl@0
    23
ifcapable !memdebug||!crashtest||!memorymanage {
sl@0
    24
   puts "Skipping crash5 tests: not compiled with -DSQLITE_MEMDEBUG..."
sl@0
    25
   finish_test
sl@0
    26
   return
sl@0
    27
}
sl@0
    28
sl@0
    29
db close
sl@0
    30
sl@0
    31
for {set ii 0} {$ii < 10} {incr ii} {
sl@0
    32
  for {set jj 50} {$jj < 100} {incr jj} {
sl@0
    33
sl@0
    34
    # Set up the database so that it is an auto-vacuum database 
sl@0
    35
    # containing a single table (root page 3) with a single row. 
sl@0
    36
    # The row has an overflow page (page 4).
sl@0
    37
    file delete -force test.db test.db-journal
sl@0
    38
    sqlite3 db test.db
sl@0
    39
    set c [string repeat 3 1500]
sl@0
    40
    db eval {
sl@0
    41
      pragma auto_vacuum = 1;
sl@0
    42
      CREATE TABLE t1(a, b, c);
sl@0
    43
      INSERT INTO t1 VALUES('1111111111', '2222222222', $c);
sl@0
    44
    }
sl@0
    45
    db close
sl@0
    46
sl@0
    47
    do_test crash5-$ii.$jj.1 {
sl@0
    48
      crashsql -delay 1 -file test.db-journal -seed $ii -tclbody [join [list \
sl@0
    49
        [list set iFail $jj] {
sl@0
    50
        sqlite3_crashparams 0 [file join [pwd] test.db-journal]
sl@0
    51
      
sl@0
    52
        # Begin a transaction and evaluate a "CREATE INDEX" statement
sl@0
    53
        # with the iFail'th malloc() set to fail. This operation will
sl@0
    54
        # have to move the current contents of page 4 (the overflow
sl@0
    55
        # page) to make room for the new root page. The bug is that
sl@0
    56
        # if malloc() fails at a particular point in sqlite3PagerMovepage(),
sl@0
    57
        # sqlite mistakenly thinks that the page being moved (page 4) has 
sl@0
    58
        # been safely synced into the journal. If the page is written
sl@0
    59
        # to later in the transaction, it may be written out to the database
sl@0
    60
        # before the relevant part of the journal has been synced.
sl@0
    61
        #
sl@0
    62
        db eval BEGIN
sl@0
    63
        sqlite3_memdebug_fail $iFail -repeat 0
sl@0
    64
        catch {db eval { CREATE UNIQUE INDEX i1 ON t1(a); }} msg
sl@0
    65
        # puts "$n $msg ac=[sqlite3_get_autocommit db]"
sl@0
    66
      
sl@0
    67
        # If the transaction is still active (it may not be if the malloc()
sl@0
    68
        # failure occured in the OS layer), write to the database. Make sure
sl@0
    69
        # page 4 is among those written.
sl@0
    70
        #
sl@0
    71
        if {![sqlite3_get_autocommit db]} {
sl@0
    72
          db eval {
sl@0
    73
            DELETE FROM t1;  -- This will put page 4 on the free list.
sl@0
    74
            INSERT INTO t1 VALUES('111111111', '2222222222', '33333333');
sl@0
    75
            INSERT INTO t1 SELECT * FROM t1;                     -- 2
sl@0
    76
            INSERT INTO t1 SELECT * FROM t1;                     -- 4
sl@0
    77
            INSERT INTO t1 SELECT * FROM t1;                     -- 8
sl@0
    78
            INSERT INTO t1 SELECT * FROM t1;                     -- 16
sl@0
    79
            INSERT INTO t1 SELECT * FROM t1;                     -- 32
sl@0
    80
            INSERT INTO t1 SELECT * FROM t1 WHERE rowid%2;       -- 48
sl@0
    81
          }
sl@0
    82
        }
sl@0
    83
        
sl@0
    84
        # If the right malloc() failed during the 'CREATE INDEX' above and
sl@0
    85
        # the transaction was not rolled back, then the sqlite cache now 
sl@0
    86
        # has a dirty page 4 that it incorrectly believes is already safely
sl@0
    87
        # in the synced part of the journal file. When 
sl@0
    88
        # sqlite3_release_memory() is called sqlite tries to free memory
sl@0
    89
        # by writing page 4 out to the db file. If it crashes later on,
sl@0
    90
        # before syncing the journal... Corruption!
sl@0
    91
        #
sl@0
    92
        sqlite3_crashparams 1 [file join [pwd] test.db-journal]
sl@0
    93
        sqlite3_release_memory 8092
sl@0
    94
      }]] {}
sl@0
    95
      expr 1
sl@0
    96
    } {1}
sl@0
    97
  
sl@0
    98
    sqlite3 db test.db
sl@0
    99
    do_test crash5-$ii.$jj.2 {
sl@0
   100
      db eval {pragma integrity_check}
sl@0
   101
    } {ok}
sl@0
   102
    do_test crash5-$ii.$jj.3 {
sl@0
   103
      db eval {SELECT * FROM t1}
sl@0
   104
    } [list 1111111111 2222222222 $::c]
sl@0
   105
    db close
sl@0
   106
  }
sl@0
   107
}
sl@0
   108
sl@0
   109
sl@0
   110
finish_test