os/persistentdata/persistentstorage/sql/SQLite/prepare.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
** 2005 May 25
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
** This file contains the implementation of the sqlite3_prepare()
sl@0
    13
** interface, and routines that contribute to loading the database schema
sl@0
    14
** from disk.
sl@0
    15
**
sl@0
    16
** $Id: prepare.c,v 1.91 2008/08/02 03:50:39 drh Exp $
sl@0
    17
*/
sl@0
    18
#include "sqliteInt.h"
sl@0
    19
#include <ctype.h>
sl@0
    20
sl@0
    21
/*
sl@0
    22
** Fill the InitData structure with an error message that indicates
sl@0
    23
** that the database is corrupt.
sl@0
    24
*/
sl@0
    25
static void corruptSchema(
sl@0
    26
  InitData *pData,     /* Initialization context */
sl@0
    27
  const char *zObj,    /* Object being parsed at the point of error */
sl@0
    28
  const char *zExtra   /* Error information */
sl@0
    29
){
sl@0
    30
  if( !pData->db->mallocFailed ){
sl@0
    31
    if( zObj==0 ) zObj = "?";
sl@0
    32
    sqlite3SetString(pData->pzErrMsg, pData->db,
sl@0
    33
       "malformed database schema (%s)", zObj);
sl@0
    34
    if( zExtra && zExtra[0] ){
sl@0
    35
      *pData->pzErrMsg = sqlite3MAppendf(pData->db, *pData->pzErrMsg, "%s - %s",
sl@0
    36
                                  *pData->pzErrMsg, zExtra);
sl@0
    37
    }
sl@0
    38
  }
sl@0
    39
  pData->rc = SQLITE_CORRUPT;
sl@0
    40
}
sl@0
    41
sl@0
    42
/*
sl@0
    43
** This is the callback routine for the code that initializes the
sl@0
    44
** database.  See sqlite3Init() below for additional information.
sl@0
    45
** This routine is also called from the OP_ParseSchema opcode of the VDBE.
sl@0
    46
**
sl@0
    47
** Each callback contains the following information:
sl@0
    48
**
sl@0
    49
**     argv[0] = name of thing being created
sl@0
    50
**     argv[1] = root page number for table or index. 0 for trigger or view.
sl@0
    51
**     argv[2] = SQL text for the CREATE statement.
sl@0
    52
**
sl@0
    53
*/
sl@0
    54
int sqlite3InitCallback(void *pInit, int argc, char **argv, char **azColName){
sl@0
    55
  InitData *pData = (InitData*)pInit;
sl@0
    56
  sqlite3 *db = pData->db;
sl@0
    57
  int iDb = pData->iDb;
sl@0
    58
sl@0
    59
  assert( sqlite3_mutex_held(db->mutex) );
sl@0
    60
  pData->rc = SQLITE_OK;
sl@0
    61
  DbClearProperty(db, iDb, DB_Empty);
sl@0
    62
  if( db->mallocFailed ){
sl@0
    63
    corruptSchema(pData, argv[0], 0);
sl@0
    64
    return SQLITE_NOMEM;
sl@0
    65
  }
sl@0
    66
sl@0
    67
  assert( argc==3 );
sl@0
    68
  if( argv==0 ) return 0;   /* Might happen if EMPTY_RESULT_CALLBACKS are on */
sl@0
    69
  if( argv[1]==0 ){
sl@0
    70
    corruptSchema(pData, argv[0], 0);
sl@0
    71
    return 1;
sl@0
    72
  }
sl@0
    73
  assert( iDb>=0 && iDb<db->nDb );
sl@0
    74
  if( argv[2] && argv[2][0] ){
sl@0
    75
    /* Call the parser to process a CREATE TABLE, INDEX or VIEW.
sl@0
    76
    ** But because db->init.busy is set to 1, no VDBE code is generated
sl@0
    77
    ** or executed.  All the parser does is build the internal data
sl@0
    78
    ** structures that describe the table, index, or view.
sl@0
    79
    */
sl@0
    80
    char *zErr;
sl@0
    81
    int rc;
sl@0
    82
    u8 lookasideEnabled;
sl@0
    83
    assert( db->init.busy );
sl@0
    84
    db->init.iDb = iDb;
sl@0
    85
    db->init.newTnum = atoi(argv[1]);
sl@0
    86
    lookasideEnabled = db->lookaside.bEnabled;
sl@0
    87
    db->lookaside.bEnabled = 0;
sl@0
    88
    rc = sqlite3_exec(db, argv[2], 0, 0, &zErr);
sl@0
    89
    db->init.iDb = 0;
sl@0
    90
    db->lookaside.bEnabled = lookasideEnabled;
sl@0
    91
    assert( rc!=SQLITE_OK || zErr==0 );
sl@0
    92
    if( SQLITE_OK!=rc ){
sl@0
    93
      pData->rc = rc;
sl@0
    94
      if( rc==SQLITE_NOMEM ){
sl@0
    95
        db->mallocFailed = 1;
sl@0
    96
      }else if( rc!=SQLITE_INTERRUPT ){
sl@0
    97
        corruptSchema(pData, argv[0], zErr);
sl@0
    98
      }
sl@0
    99
      sqlite3DbFree(db, zErr);
sl@0
   100
      return 1;
sl@0
   101
    }
sl@0
   102
  }else if( argv[0]==0 ){
sl@0
   103
    corruptSchema(pData, 0, 0);
sl@0
   104
  }else{
sl@0
   105
    /* If the SQL column is blank it means this is an index that
sl@0
   106
    ** was created to be the PRIMARY KEY or to fulfill a UNIQUE
sl@0
   107
    ** constraint for a CREATE TABLE.  The index should have already
sl@0
   108
    ** been created when we processed the CREATE TABLE.  All we have
sl@0
   109
    ** to do here is record the root page number for that index.
sl@0
   110
    */
sl@0
   111
    Index *pIndex;
sl@0
   112
    pIndex = sqlite3FindIndex(db, argv[0], db->aDb[iDb].zName);
sl@0
   113
    if( pIndex==0 || pIndex->tnum!=0 ){
sl@0
   114
      /* This can occur if there exists an index on a TEMP table which
sl@0
   115
      ** has the same name as another index on a permanent index.  Since
sl@0
   116
      ** the permanent table is hidden by the TEMP table, we can also
sl@0
   117
      ** safely ignore the index on the permanent table.
sl@0
   118
      */
sl@0
   119
      /* Do Nothing */;
sl@0
   120
    }else{
sl@0
   121
      pIndex->tnum = atoi(argv[1]);
sl@0
   122
    }
sl@0
   123
  }
sl@0
   124
  return 0;
sl@0
   125
}
sl@0
   126
sl@0
   127
/*
sl@0
   128
** Attempt to read the database schema and initialize internal
sl@0
   129
** data structures for a single database file.  The index of the
sl@0
   130
** database file is given by iDb.  iDb==0 is used for the main
sl@0
   131
** database.  iDb==1 should never be used.  iDb>=2 is used for
sl@0
   132
** auxiliary databases.  Return one of the SQLITE_ error codes to
sl@0
   133
** indicate success or failure.
sl@0
   134
*/
sl@0
   135
static int sqlite3InitOne(sqlite3 *db, int iDb, char **pzErrMsg){
sl@0
   136
  int rc;
sl@0
   137
  BtCursor *curMain;
sl@0
   138
  int size;
sl@0
   139
  Table *pTab;
sl@0
   140
  Db *pDb;
sl@0
   141
  char const *azArg[4];
sl@0
   142
  int meta[10];
sl@0
   143
  InitData initData;
sl@0
   144
  char const *zMasterSchema;
sl@0
   145
  char const *zMasterName = SCHEMA_TABLE(iDb);
sl@0
   146
sl@0
   147
  /*
sl@0
   148
  ** The master database table has a structure like this
sl@0
   149
  */
sl@0
   150
  static const char master_schema[] = 
sl@0
   151
     "CREATE TABLE sqlite_master(\n"
sl@0
   152
     "  type text,\n"
sl@0
   153
     "  name text,\n"
sl@0
   154
     "  tbl_name text,\n"
sl@0
   155
     "  rootpage integer,\n"
sl@0
   156
     "  sql text\n"
sl@0
   157
     ")"
sl@0
   158
  ;
sl@0
   159
#ifndef SQLITE_OMIT_TEMPDB
sl@0
   160
  static const char temp_master_schema[] = 
sl@0
   161
     "CREATE TEMP TABLE sqlite_temp_master(\n"
sl@0
   162
     "  type text,\n"
sl@0
   163
     "  name text,\n"
sl@0
   164
     "  tbl_name text,\n"
sl@0
   165
     "  rootpage integer,\n"
sl@0
   166
     "  sql text\n"
sl@0
   167
     ")"
sl@0
   168
  ;
sl@0
   169
#else
sl@0
   170
  #define temp_master_schema 0
sl@0
   171
#endif
sl@0
   172
sl@0
   173
  assert( iDb>=0 && iDb<db->nDb );
sl@0
   174
  assert( db->aDb[iDb].pSchema );
sl@0
   175
  assert( sqlite3_mutex_held(db->mutex) );
sl@0
   176
  assert( iDb==1 || sqlite3BtreeHoldsMutex(db->aDb[iDb].pBt) );
sl@0
   177
sl@0
   178
  /* zMasterSchema and zInitScript are set to point at the master schema
sl@0
   179
  ** and initialisation script appropriate for the database being
sl@0
   180
  ** initialised. zMasterName is the name of the master table.
sl@0
   181
  */
sl@0
   182
  if( !OMIT_TEMPDB && iDb==1 ){
sl@0
   183
    zMasterSchema = temp_master_schema;
sl@0
   184
  }else{
sl@0
   185
    zMasterSchema = master_schema;
sl@0
   186
  }
sl@0
   187
  zMasterName = SCHEMA_TABLE(iDb);
sl@0
   188
sl@0
   189
  /* Construct the schema tables.  */
sl@0
   190
  azArg[0] = zMasterName;
sl@0
   191
  azArg[1] = "1";
sl@0
   192
  azArg[2] = zMasterSchema;
sl@0
   193
  azArg[3] = 0;
sl@0
   194
  initData.db = db;
sl@0
   195
  initData.iDb = iDb;
sl@0
   196
  initData.pzErrMsg = pzErrMsg;
sl@0
   197
  (void)sqlite3SafetyOff(db);
sl@0
   198
  rc = sqlite3InitCallback(&initData, 3, (char **)azArg, 0);
sl@0
   199
  (void)sqlite3SafetyOn(db);
sl@0
   200
  if( rc ){
sl@0
   201
    rc = initData.rc;
sl@0
   202
    goto error_out;
sl@0
   203
  }
sl@0
   204
  pTab = sqlite3FindTable(db, zMasterName, db->aDb[iDb].zName);
sl@0
   205
  if( pTab ){
sl@0
   206
    pTab->readOnly = 1;
sl@0
   207
  }
sl@0
   208
sl@0
   209
  /* Create a cursor to hold the database open
sl@0
   210
  */
sl@0
   211
  pDb = &db->aDb[iDb];
sl@0
   212
  if( pDb->pBt==0 ){
sl@0
   213
    if( !OMIT_TEMPDB && iDb==1 ){
sl@0
   214
      DbSetProperty(db, 1, DB_SchemaLoaded);
sl@0
   215
    }
sl@0
   216
    return SQLITE_OK;
sl@0
   217
  }
sl@0
   218
  curMain = sqlite3MallocZero(sqlite3BtreeCursorSize());
sl@0
   219
  if( !curMain ){
sl@0
   220
    rc = SQLITE_NOMEM;
sl@0
   221
    goto error_out;
sl@0
   222
  }
sl@0
   223
  sqlite3BtreeEnter(pDb->pBt);
sl@0
   224
  rc = sqlite3BtreeCursor(pDb->pBt, MASTER_ROOT, 0, 0, curMain);
sl@0
   225
  if( rc!=SQLITE_OK && rc!=SQLITE_EMPTY ){
sl@0
   226
    sqlite3SetString(pzErrMsg, db, "%s", sqlite3ErrStr(rc));
sl@0
   227
    goto initone_error_out;
sl@0
   228
  }
sl@0
   229
sl@0
   230
  /* Get the database meta information.
sl@0
   231
  **
sl@0
   232
  ** Meta values are as follows:
sl@0
   233
  **    meta[0]   Schema cookie.  Changes with each schema change.
sl@0
   234
  **    meta[1]   File format of schema layer.
sl@0
   235
  **    meta[2]   Size of the page cache.
sl@0
   236
  **    meta[3]   Use freelist if 0.  Autovacuum if greater than zero.
sl@0
   237
  **    meta[4]   Db text encoding. 1:UTF-8 2:UTF-16LE 3:UTF-16BE
sl@0
   238
  **    meta[5]   The user cookie. Used by the application.
sl@0
   239
  **    meta[6]   Incremental-vacuum flag.
sl@0
   240
  **    meta[7]
sl@0
   241
  **    meta[8]
sl@0
   242
  **    meta[9]
sl@0
   243
  **
sl@0
   244
  ** Note: The #defined SQLITE_UTF* symbols in sqliteInt.h correspond to
sl@0
   245
  ** the possible values of meta[4].
sl@0
   246
  */
sl@0
   247
  if( rc==SQLITE_OK ){
sl@0
   248
    int i;
sl@0
   249
    for(i=0; i<sizeof(meta)/sizeof(meta[0]); i++){
sl@0
   250
      rc = sqlite3BtreeGetMeta(pDb->pBt, i+1, (u32 *)&meta[i]);
sl@0
   251
      if( rc ){
sl@0
   252
        sqlite3SetString(pzErrMsg, db, "%s", sqlite3ErrStr(rc));
sl@0
   253
        goto initone_error_out;
sl@0
   254
      }
sl@0
   255
    }
sl@0
   256
  }else{
sl@0
   257
    memset(meta, 0, sizeof(meta));
sl@0
   258
  }
sl@0
   259
  pDb->pSchema->schema_cookie = meta[0];
sl@0
   260
sl@0
   261
  /* If opening a non-empty database, check the text encoding. For the
sl@0
   262
  ** main database, set sqlite3.enc to the encoding of the main database.
sl@0
   263
  ** For an attached db, it is an error if the encoding is not the same
sl@0
   264
  ** as sqlite3.enc.
sl@0
   265
  */
sl@0
   266
  if( meta[4] ){  /* text encoding */
sl@0
   267
    if( iDb==0 ){
sl@0
   268
      /* If opening the main database, set ENC(db). */
sl@0
   269
      ENC(db) = (u8)meta[4];
sl@0
   270
      db->pDfltColl = sqlite3FindCollSeq(db, SQLITE_UTF8, "BINARY", 6, 0);
sl@0
   271
    }else{
sl@0
   272
      /* If opening an attached database, the encoding much match ENC(db) */
sl@0
   273
      if( meta[4]!=ENC(db) ){
sl@0
   274
        sqlite3SetString(pzErrMsg, db, "attached databases must use the same"
sl@0
   275
            " text encoding as main database");
sl@0
   276
        rc = SQLITE_ERROR;
sl@0
   277
        goto initone_error_out;
sl@0
   278
      }
sl@0
   279
    }
sl@0
   280
  }else{
sl@0
   281
    DbSetProperty(db, iDb, DB_Empty);
sl@0
   282
  }
sl@0
   283
  pDb->pSchema->enc = ENC(db);
sl@0
   284
sl@0
   285
  if( pDb->pSchema->cache_size==0 ){
sl@0
   286
    size = meta[2];
sl@0
   287
    if( size==0 ){ size = SQLITE_DEFAULT_CACHE_SIZE; }
sl@0
   288
    if( size<0 ) size = -size;
sl@0
   289
    pDb->pSchema->cache_size = size;
sl@0
   290
    sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size);
sl@0
   291
  }
sl@0
   292
sl@0
   293
  /*
sl@0
   294
  ** file_format==1    Version 3.0.0.
sl@0
   295
  ** file_format==2    Version 3.1.3.  // ALTER TABLE ADD COLUMN
sl@0
   296
  ** file_format==3    Version 3.1.4.  // ditto but with non-NULL defaults
sl@0
   297
  ** file_format==4    Version 3.3.0.  // DESC indices.  Boolean constants
sl@0
   298
  */
sl@0
   299
  pDb->pSchema->file_format = meta[1];
sl@0
   300
  if( pDb->pSchema->file_format==0 ){
sl@0
   301
    pDb->pSchema->file_format = 1;
sl@0
   302
  }
sl@0
   303
  if( pDb->pSchema->file_format>SQLITE_MAX_FILE_FORMAT ){
sl@0
   304
    sqlite3SetString(pzErrMsg, db, "unsupported file format");
sl@0
   305
    rc = SQLITE_ERROR;
sl@0
   306
    goto initone_error_out;
sl@0
   307
  }
sl@0
   308
sl@0
   309
  /* Ticket #2804:  When we open a database in the newer file format,
sl@0
   310
  ** clear the legacy_file_format pragma flag so that a VACUUM will
sl@0
   311
  ** not downgrade the database and thus invalidate any descending
sl@0
   312
  ** indices that the user might have created.
sl@0
   313
  */
sl@0
   314
  if( iDb==0 && meta[1]>=4 ){
sl@0
   315
    db->flags &= ~SQLITE_LegacyFileFmt;
sl@0
   316
  }
sl@0
   317
sl@0
   318
  /* Read the schema information out of the schema tables
sl@0
   319
  */
sl@0
   320
  assert( db->init.busy );
sl@0
   321
  if( rc==SQLITE_EMPTY ){
sl@0
   322
    /* For an empty database, there is nothing to read */
sl@0
   323
    rc = SQLITE_OK;
sl@0
   324
  }else{
sl@0
   325
    char *zSql;
sl@0
   326
    zSql = sqlite3MPrintf(db, 
sl@0
   327
        "SELECT name, rootpage, sql FROM '%q'.%s",
sl@0
   328
        db->aDb[iDb].zName, zMasterName);
sl@0
   329
    (void)sqlite3SafetyOff(db);
sl@0
   330
#ifndef SQLITE_OMIT_AUTHORIZATION
sl@0
   331
    {
sl@0
   332
      int (*xAuth)(void*,int,const char*,const char*,const char*,const char*);
sl@0
   333
      xAuth = db->xAuth;
sl@0
   334
      db->xAuth = 0;
sl@0
   335
#endif
sl@0
   336
      rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0);
sl@0
   337
#ifndef SQLITE_OMIT_AUTHORIZATION
sl@0
   338
      db->xAuth = xAuth;
sl@0
   339
    }
sl@0
   340
#endif
sl@0
   341
    if( rc==SQLITE_ABORT ) rc = initData.rc;
sl@0
   342
    (void)sqlite3SafetyOn(db);
sl@0
   343
    sqlite3DbFree(db, zSql);
sl@0
   344
#ifndef SQLITE_OMIT_ANALYZE
sl@0
   345
    if( rc==SQLITE_OK ){
sl@0
   346
      sqlite3AnalysisLoad(db, iDb);
sl@0
   347
    }
sl@0
   348
#endif
sl@0
   349
  }
sl@0
   350
  if( db->mallocFailed ){
sl@0
   351
    rc = SQLITE_NOMEM;
sl@0
   352
    sqlite3ResetInternalSchema(db, 0);
sl@0
   353
  }
sl@0
   354
  if( rc==SQLITE_OK || (db->flags&SQLITE_RecoveryMode)){
sl@0
   355
    /* Black magic: If the SQLITE_RecoveryMode flag is set, then consider
sl@0
   356
    ** the schema loaded, even if errors occured. In this situation the 
sl@0
   357
    ** current sqlite3_prepare() operation will fail, but the following one
sl@0
   358
    ** will attempt to compile the supplied statement against whatever subset
sl@0
   359
    ** of the schema was loaded before the error occured. The primary
sl@0
   360
    ** purpose of this is to allow access to the sqlite_master table
sl@0
   361
    ** even when its contents have been corrupted.
sl@0
   362
    */
sl@0
   363
    DbSetProperty(db, iDb, DB_SchemaLoaded);
sl@0
   364
    rc = SQLITE_OK;
sl@0
   365
  }
sl@0
   366
sl@0
   367
  /* Jump here for an error that occurs after successfully allocating
sl@0
   368
  ** curMain and calling sqlite3BtreeEnter(). For an error that occurs
sl@0
   369
  ** before that point, jump to error_out.
sl@0
   370
  */
sl@0
   371
initone_error_out:
sl@0
   372
  sqlite3BtreeCloseCursor(curMain);
sl@0
   373
  sqlite3_free(curMain);
sl@0
   374
  sqlite3BtreeLeave(pDb->pBt);
sl@0
   375
sl@0
   376
error_out:
sl@0
   377
  if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){
sl@0
   378
    db->mallocFailed = 1;
sl@0
   379
  }
sl@0
   380
  return rc;
sl@0
   381
}
sl@0
   382
sl@0
   383
/*
sl@0
   384
** Initialize all database files - the main database file, the file
sl@0
   385
** used to store temporary tables, and any additional database files
sl@0
   386
** created using ATTACH statements.  Return a success code.  If an
sl@0
   387
** error occurs, write an error message into *pzErrMsg.
sl@0
   388
**
sl@0
   389
** After a database is initialized, the DB_SchemaLoaded bit is set
sl@0
   390
** bit is set in the flags field of the Db structure. If the database
sl@0
   391
** file was of zero-length, then the DB_Empty flag is also set.
sl@0
   392
*/
sl@0
   393
int sqlite3Init(sqlite3 *db, char **pzErrMsg){
sl@0
   394
  int i, rc;
sl@0
   395
  int commit_internal = !(db->flags&SQLITE_InternChanges);
sl@0
   396
  
sl@0
   397
  assert( sqlite3_mutex_held(db->mutex) );
sl@0
   398
  if( db->init.busy ) return SQLITE_OK;
sl@0
   399
  rc = SQLITE_OK;
sl@0
   400
  db->init.busy = 1;
sl@0
   401
  for(i=0; rc==SQLITE_OK && i<db->nDb; i++){
sl@0
   402
    if( DbHasProperty(db, i, DB_SchemaLoaded) || i==1 ) continue;
sl@0
   403
    rc = sqlite3InitOne(db, i, pzErrMsg);
sl@0
   404
    if( rc ){
sl@0
   405
      sqlite3ResetInternalSchema(db, i);
sl@0
   406
    }
sl@0
   407
  }
sl@0
   408
sl@0
   409
  /* Once all the other databases have been initialised, load the schema
sl@0
   410
  ** for the TEMP database. This is loaded last, as the TEMP database
sl@0
   411
  ** schema may contain references to objects in other databases.
sl@0
   412
  */
sl@0
   413
#ifndef SQLITE_OMIT_TEMPDB
sl@0
   414
  if( rc==SQLITE_OK && db->nDb>1 && !DbHasProperty(db, 1, DB_SchemaLoaded) ){
sl@0
   415
    rc = sqlite3InitOne(db, 1, pzErrMsg);
sl@0
   416
    if( rc ){
sl@0
   417
      sqlite3ResetInternalSchema(db, 1);
sl@0
   418
    }
sl@0
   419
  }
sl@0
   420
#endif
sl@0
   421
sl@0
   422
  db->init.busy = 0;
sl@0
   423
  if( rc==SQLITE_OK && commit_internal ){
sl@0
   424
    sqlite3CommitInternalChanges(db);
sl@0
   425
  }
sl@0
   426
sl@0
   427
  return rc; 
sl@0
   428
}
sl@0
   429
sl@0
   430
/*
sl@0
   431
** This routine is a no-op if the database schema is already initialised.
sl@0
   432
** Otherwise, the schema is loaded. An error code is returned.
sl@0
   433
*/
sl@0
   434
int sqlite3ReadSchema(Parse *pParse){
sl@0
   435
  int rc = SQLITE_OK;
sl@0
   436
  sqlite3 *db = pParse->db;
sl@0
   437
  assert( sqlite3_mutex_held(db->mutex) );
sl@0
   438
  if( !db->init.busy ){
sl@0
   439
    rc = sqlite3Init(db, &pParse->zErrMsg);
sl@0
   440
  }
sl@0
   441
  if( rc!=SQLITE_OK ){
sl@0
   442
    pParse->rc = rc;
sl@0
   443
    pParse->nErr++;
sl@0
   444
  }
sl@0
   445
  return rc;
sl@0
   446
}
sl@0
   447
sl@0
   448
sl@0
   449
/*
sl@0
   450
** Check schema cookies in all databases.  If any cookie is out
sl@0
   451
** of date, return 0.  If all schema cookies are current, return 1.
sl@0
   452
*/
sl@0
   453
static int schemaIsValid(sqlite3 *db){
sl@0
   454
  int iDb;
sl@0
   455
  int rc;
sl@0
   456
  BtCursor *curTemp;
sl@0
   457
  int cookie;
sl@0
   458
  int allOk = 1;
sl@0
   459
sl@0
   460
  curTemp = (BtCursor *)sqlite3Malloc(sqlite3BtreeCursorSize());
sl@0
   461
  if( curTemp ){
sl@0
   462
    assert( sqlite3_mutex_held(db->mutex) );
sl@0
   463
    for(iDb=0; allOk && iDb<db->nDb; iDb++){
sl@0
   464
      Btree *pBt;
sl@0
   465
      pBt = db->aDb[iDb].pBt;
sl@0
   466
      if( pBt==0 ) continue;
sl@0
   467
      memset(curTemp, 0, sqlite3BtreeCursorSize());
sl@0
   468
      rc = sqlite3BtreeCursor(pBt, MASTER_ROOT, 0, 0, curTemp);
sl@0
   469
      if( rc==SQLITE_OK ){
sl@0
   470
        rc = sqlite3BtreeGetMeta(pBt, 1, (u32 *)&cookie);
sl@0
   471
        if( rc==SQLITE_OK && cookie!=db->aDb[iDb].pSchema->schema_cookie ){
sl@0
   472
          allOk = 0;
sl@0
   473
        }
sl@0
   474
        sqlite3BtreeCloseCursor(curTemp);
sl@0
   475
      }
sl@0
   476
      if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){
sl@0
   477
        db->mallocFailed = 1;
sl@0
   478
      }
sl@0
   479
    }
sl@0
   480
    sqlite3_free(curTemp);
sl@0
   481
  }else{
sl@0
   482
    allOk = 0;
sl@0
   483
    db->mallocFailed = 1;
sl@0
   484
  }
sl@0
   485
sl@0
   486
  return allOk;
sl@0
   487
}
sl@0
   488
sl@0
   489
/*
sl@0
   490
** Convert a schema pointer into the iDb index that indicates
sl@0
   491
** which database file in db->aDb[] the schema refers to.
sl@0
   492
**
sl@0
   493
** If the same database is attached more than once, the first
sl@0
   494
** attached database is returned.
sl@0
   495
*/
sl@0
   496
int sqlite3SchemaToIndex(sqlite3 *db, Schema *pSchema){
sl@0
   497
  int i = -1000000;
sl@0
   498
sl@0
   499
  /* If pSchema is NULL, then return -1000000. This happens when code in 
sl@0
   500
  ** expr.c is trying to resolve a reference to a transient table (i.e. one
sl@0
   501
  ** created by a sub-select). In this case the return value of this 
sl@0
   502
  ** function should never be used.
sl@0
   503
  **
sl@0
   504
  ** We return -1000000 instead of the more usual -1 simply because using
sl@0
   505
  ** -1000000 as incorrectly using -1000000 index into db->aDb[] is much 
sl@0
   506
  ** more likely to cause a segfault than -1 (of course there are assert()
sl@0
   507
  ** statements too, but it never hurts to play the odds).
sl@0
   508
  */
sl@0
   509
  assert( sqlite3_mutex_held(db->mutex) );
sl@0
   510
  if( pSchema ){
sl@0
   511
    for(i=0; i<db->nDb; i++){
sl@0
   512
      if( db->aDb[i].pSchema==pSchema ){
sl@0
   513
        break;
sl@0
   514
      }
sl@0
   515
    }
sl@0
   516
    assert( i>=0 &&i>=0 &&  i<db->nDb );
sl@0
   517
  }
sl@0
   518
  return i;
sl@0
   519
}
sl@0
   520
sl@0
   521
/*
sl@0
   522
** Compile the UTF-8 encoded SQL statement zSql into a statement handle.
sl@0
   523
*/
sl@0
   524
static int sqlite3Prepare(
sl@0
   525
  sqlite3 *db,              /* Database handle. */
sl@0
   526
  const char *zSql,         /* UTF-8 encoded SQL statement. */
sl@0
   527
  int nBytes,               /* Length of zSql in bytes. */
sl@0
   528
  int saveSqlFlag,          /* True to copy SQL text into the sqlite3_stmt */
sl@0
   529
  sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
sl@0
   530
  const char **pzTail       /* OUT: End of parsed string */
sl@0
   531
){
sl@0
   532
  Parse sParse;
sl@0
   533
  char *zErrMsg = 0;
sl@0
   534
  int rc = SQLITE_OK;
sl@0
   535
  int i;
sl@0
   536
sl@0
   537
  assert( ppStmt );
sl@0
   538
  *ppStmt = 0;
sl@0
   539
  if( sqlite3SafetyOn(db) ){
sl@0
   540
    return SQLITE_MISUSE;
sl@0
   541
  }
sl@0
   542
  assert( !db->mallocFailed );
sl@0
   543
  assert( sqlite3_mutex_held(db->mutex) );
sl@0
   544
sl@0
   545
  /* If any attached database schemas are locked, do not proceed with
sl@0
   546
  ** compilation. Instead return SQLITE_LOCKED immediately.
sl@0
   547
  */
sl@0
   548
  for(i=0; i<db->nDb; i++) {
sl@0
   549
    Btree *pBt = db->aDb[i].pBt;
sl@0
   550
    if( pBt ){
sl@0
   551
      int rc;
sl@0
   552
      rc = sqlite3BtreeSchemaLocked(pBt);
sl@0
   553
      if( rc ){
sl@0
   554
        const char *zDb = db->aDb[i].zName;
sl@0
   555
        sqlite3Error(db, SQLITE_LOCKED, "database schema is locked: %s", zDb);
sl@0
   556
        (void)sqlite3SafetyOff(db);
sl@0
   557
        return sqlite3ApiExit(db, SQLITE_LOCKED);
sl@0
   558
      }
sl@0
   559
    }
sl@0
   560
  }
sl@0
   561
  
sl@0
   562
  memset(&sParse, 0, sizeof(sParse));
sl@0
   563
  sParse.db = db;
sl@0
   564
  if( nBytes>=0 && (nBytes==0 || zSql[nBytes-1]!=0) ){
sl@0
   565
    char *zSqlCopy;
sl@0
   566
    int mxLen = db->aLimit[SQLITE_LIMIT_SQL_LENGTH];
sl@0
   567
    if( nBytes>mxLen ){
sl@0
   568
      sqlite3Error(db, SQLITE_TOOBIG, "statement too long");
sl@0
   569
      (void)sqlite3SafetyOff(db);
sl@0
   570
      return sqlite3ApiExit(db, SQLITE_TOOBIG);
sl@0
   571
    }
sl@0
   572
    zSqlCopy = sqlite3DbStrNDup(db, zSql, nBytes);
sl@0
   573
    if( zSqlCopy ){
sl@0
   574
      sqlite3RunParser(&sParse, zSqlCopy, &zErrMsg);
sl@0
   575
      sqlite3DbFree(db, zSqlCopy);
sl@0
   576
      sParse.zTail = &zSql[sParse.zTail-zSqlCopy];
sl@0
   577
    }else{
sl@0
   578
      sParse.zTail = &zSql[nBytes];
sl@0
   579
    }
sl@0
   580
  }else{
sl@0
   581
    sqlite3RunParser(&sParse, zSql, &zErrMsg);
sl@0
   582
  }
sl@0
   583
sl@0
   584
  if( db->mallocFailed ){
sl@0
   585
    sParse.rc = SQLITE_NOMEM;
sl@0
   586
  }
sl@0
   587
  if( sParse.rc==SQLITE_DONE ) sParse.rc = SQLITE_OK;
sl@0
   588
  if( sParse.checkSchema && !schemaIsValid(db) ){
sl@0
   589
    sParse.rc = SQLITE_SCHEMA;
sl@0
   590
  }
sl@0
   591
  if( sParse.rc==SQLITE_SCHEMA ){
sl@0
   592
    sqlite3ResetInternalSchema(db, 0);
sl@0
   593
  }
sl@0
   594
  if( db->mallocFailed ){
sl@0
   595
    sParse.rc = SQLITE_NOMEM;
sl@0
   596
  }
sl@0
   597
  if( pzTail ){
sl@0
   598
    *pzTail = sParse.zTail;
sl@0
   599
  }
sl@0
   600
  rc = sParse.rc;
sl@0
   601
sl@0
   602
#ifndef SQLITE_OMIT_EXPLAIN
sl@0
   603
  if( rc==SQLITE_OK && sParse.pVdbe && sParse.explain ){
sl@0
   604
    if( sParse.explain==2 ){
sl@0
   605
      sqlite3VdbeSetNumCols(sParse.pVdbe, 3);
sl@0
   606
      sqlite3VdbeSetColName(sParse.pVdbe, 0, COLNAME_NAME, "order", P4_STATIC);
sl@0
   607
      sqlite3VdbeSetColName(sParse.pVdbe, 1, COLNAME_NAME, "from", P4_STATIC);
sl@0
   608
      sqlite3VdbeSetColName(sParse.pVdbe, 2, COLNAME_NAME, "detail", P4_STATIC);
sl@0
   609
    }else{
sl@0
   610
      sqlite3VdbeSetNumCols(sParse.pVdbe, 8);
sl@0
   611
      sqlite3VdbeSetColName(sParse.pVdbe, 0, COLNAME_NAME, "addr", P4_STATIC);
sl@0
   612
      sqlite3VdbeSetColName(sParse.pVdbe, 1, COLNAME_NAME, "opcode", P4_STATIC);
sl@0
   613
      sqlite3VdbeSetColName(sParse.pVdbe, 2, COLNAME_NAME, "p1", P4_STATIC);
sl@0
   614
      sqlite3VdbeSetColName(sParse.pVdbe, 3, COLNAME_NAME, "p2", P4_STATIC);
sl@0
   615
      sqlite3VdbeSetColName(sParse.pVdbe, 4, COLNAME_NAME, "p3", P4_STATIC);
sl@0
   616
      sqlite3VdbeSetColName(sParse.pVdbe, 5, COLNAME_NAME, "p4", P4_STATIC);
sl@0
   617
      sqlite3VdbeSetColName(sParse.pVdbe, 6, COLNAME_NAME, "p5", P4_STATIC);
sl@0
   618
      sqlite3VdbeSetColName(sParse.pVdbe, 7, COLNAME_NAME, "comment",P4_STATIC);
sl@0
   619
    }
sl@0
   620
  }
sl@0
   621
#endif
sl@0
   622
sl@0
   623
  if( sqlite3SafetyOff(db) ){
sl@0
   624
    rc = SQLITE_MISUSE;
sl@0
   625
  }
sl@0
   626
sl@0
   627
  if( saveSqlFlag ){
sl@0
   628
    sqlite3VdbeSetSql(sParse.pVdbe, zSql, sParse.zTail - zSql);
sl@0
   629
  }
sl@0
   630
  if( rc!=SQLITE_OK || db->mallocFailed ){
sl@0
   631
    sqlite3_finalize((sqlite3_stmt*)sParse.pVdbe);
sl@0
   632
    assert(!(*ppStmt));
sl@0
   633
  }else{
sl@0
   634
    *ppStmt = (sqlite3_stmt*)sParse.pVdbe;
sl@0
   635
  }
sl@0
   636
sl@0
   637
  if( zErrMsg ){
sl@0
   638
    sqlite3Error(db, rc, "%s", zErrMsg);
sl@0
   639
    sqlite3DbFree(db, zErrMsg);
sl@0
   640
  }else{
sl@0
   641
    sqlite3Error(db, rc, 0);
sl@0
   642
  }
sl@0
   643
sl@0
   644
  rc = sqlite3ApiExit(db, rc);
sl@0
   645
  assert( (rc&db->errMask)==rc );
sl@0
   646
  return rc;
sl@0
   647
}
sl@0
   648
static int sqlite3LockAndPrepare(
sl@0
   649
  sqlite3 *db,              /* Database handle. */
sl@0
   650
  const char *zSql,         /* UTF-8 encoded SQL statement. */
sl@0
   651
  int nBytes,               /* Length of zSql in bytes. */
sl@0
   652
  int saveSqlFlag,          /* True to copy SQL text into the sqlite3_stmt */
sl@0
   653
  sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
sl@0
   654
  const char **pzTail       /* OUT: End of parsed string */
sl@0
   655
){
sl@0
   656
  int rc;
sl@0
   657
  if( !sqlite3SafetyCheckOk(db) ){
sl@0
   658
    return SQLITE_MISUSE;
sl@0
   659
  }
sl@0
   660
  sqlite3_mutex_enter(db->mutex);
sl@0
   661
  sqlite3BtreeEnterAll(db);
sl@0
   662
  rc = sqlite3Prepare(db, zSql, nBytes, saveSqlFlag, ppStmt, pzTail);
sl@0
   663
  sqlite3BtreeLeaveAll(db);
sl@0
   664
  sqlite3_mutex_leave(db->mutex);
sl@0
   665
  return rc;
sl@0
   666
}
sl@0
   667
sl@0
   668
/*
sl@0
   669
** Rerun the compilation of a statement after a schema change.
sl@0
   670
** Return true if the statement was recompiled successfully.
sl@0
   671
** Return false if there is an error of some kind.
sl@0
   672
*/
sl@0
   673
int sqlite3Reprepare(Vdbe *p){
sl@0
   674
  int rc;
sl@0
   675
  sqlite3_stmt *pNew;
sl@0
   676
  const char *zSql;
sl@0
   677
  sqlite3 *db;
sl@0
   678
sl@0
   679
  assert( sqlite3_mutex_held(sqlite3VdbeDb(p)->mutex) );
sl@0
   680
  zSql = sqlite3_sql((sqlite3_stmt *)p);
sl@0
   681
  assert( zSql!=0 );  /* Reprepare only called for prepare_v2() statements */
sl@0
   682
  db = sqlite3VdbeDb(p);
sl@0
   683
  assert( sqlite3_mutex_held(db->mutex) );
sl@0
   684
  rc = sqlite3LockAndPrepare(db, zSql, -1, 0, &pNew, 0);
sl@0
   685
  if( rc ){
sl@0
   686
    if( rc==SQLITE_NOMEM ){
sl@0
   687
      db->mallocFailed = 1;
sl@0
   688
    }
sl@0
   689
    assert( pNew==0 );
sl@0
   690
    return 0;
sl@0
   691
  }else{
sl@0
   692
    assert( pNew!=0 );
sl@0
   693
  }
sl@0
   694
  sqlite3VdbeSwap((Vdbe*)pNew, p);
sl@0
   695
  sqlite3_transfer_bindings(pNew, (sqlite3_stmt*)p);
sl@0
   696
  sqlite3VdbeResetStepResult((Vdbe*)pNew);
sl@0
   697
  sqlite3VdbeFinalize((Vdbe*)pNew);
sl@0
   698
  return 1;
sl@0
   699
}
sl@0
   700
sl@0
   701
sl@0
   702
/*
sl@0
   703
** Two versions of the official API.  Legacy and new use.  In the legacy
sl@0
   704
** version, the original SQL text is not saved in the prepared statement
sl@0
   705
** and so if a schema change occurs, SQLITE_SCHEMA is returned by
sl@0
   706
** sqlite3_step().  In the new version, the original SQL text is retained
sl@0
   707
** and the statement is automatically recompiled if an schema change
sl@0
   708
** occurs.
sl@0
   709
*/
sl@0
   710
int sqlite3_prepare(
sl@0
   711
  sqlite3 *db,              /* Database handle. */
sl@0
   712
  const char *zSql,         /* UTF-8 encoded SQL statement. */
sl@0
   713
  int nBytes,               /* Length of zSql in bytes. */
sl@0
   714
  sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
sl@0
   715
  const char **pzTail       /* OUT: End of parsed string */
sl@0
   716
){
sl@0
   717
  int rc;
sl@0
   718
  rc = sqlite3LockAndPrepare(db,zSql,nBytes,0,ppStmt,pzTail);
sl@0
   719
  assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 );  /* VERIFY: F13021 */
sl@0
   720
  return rc;
sl@0
   721
}
sl@0
   722
int sqlite3_prepare_v2(
sl@0
   723
  sqlite3 *db,              /* Database handle. */
sl@0
   724
  const char *zSql,         /* UTF-8 encoded SQL statement. */
sl@0
   725
  int nBytes,               /* Length of zSql in bytes. */
sl@0
   726
  sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
sl@0
   727
  const char **pzTail       /* OUT: End of parsed string */
sl@0
   728
){
sl@0
   729
  int rc;
sl@0
   730
  rc = sqlite3LockAndPrepare(db,zSql,nBytes,1,ppStmt,pzTail);
sl@0
   731
  assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 );  /* VERIFY: F13021 */
sl@0
   732
  return rc;
sl@0
   733
}
sl@0
   734
sl@0
   735
sl@0
   736
#ifndef SQLITE_OMIT_UTF16
sl@0
   737
/*
sl@0
   738
** Compile the UTF-16 encoded SQL statement zSql into a statement handle.
sl@0
   739
*/
sl@0
   740
static int sqlite3Prepare16(
sl@0
   741
  sqlite3 *db,              /* Database handle. */ 
sl@0
   742
  const void *zSql,         /* UTF-8 encoded SQL statement. */
sl@0
   743
  int nBytes,               /* Length of zSql in bytes. */
sl@0
   744
  int saveSqlFlag,          /* True to save SQL text into the sqlite3_stmt */
sl@0
   745
  sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
sl@0
   746
  const void **pzTail       /* OUT: End of parsed string */
sl@0
   747
){
sl@0
   748
  /* This function currently works by first transforming the UTF-16
sl@0
   749
  ** encoded string to UTF-8, then invoking sqlite3_prepare(). The
sl@0
   750
  ** tricky bit is figuring out the pointer to return in *pzTail.
sl@0
   751
  */
sl@0
   752
  char *zSql8;
sl@0
   753
  const char *zTail8 = 0;
sl@0
   754
  int rc = SQLITE_OK;
sl@0
   755
sl@0
   756
  if( !sqlite3SafetyCheckOk(db) ){
sl@0
   757
    return SQLITE_MISUSE;
sl@0
   758
  }
sl@0
   759
  sqlite3_mutex_enter(db->mutex);
sl@0
   760
  zSql8 = sqlite3Utf16to8(db, zSql, nBytes);
sl@0
   761
  if( zSql8 ){
sl@0
   762
    rc = sqlite3LockAndPrepare(db, zSql8, -1, saveSqlFlag, ppStmt, &zTail8);
sl@0
   763
  }
sl@0
   764
sl@0
   765
  if( zTail8 && pzTail ){
sl@0
   766
    /* If sqlite3_prepare returns a tail pointer, we calculate the
sl@0
   767
    ** equivalent pointer into the UTF-16 string by counting the unicode
sl@0
   768
    ** characters between zSql8 and zTail8, and then returning a pointer
sl@0
   769
    ** the same number of characters into the UTF-16 string.
sl@0
   770
    */
sl@0
   771
    int chars_parsed = sqlite3Utf8CharLen(zSql8, zTail8-zSql8);
sl@0
   772
    *pzTail = (u8 *)zSql + sqlite3Utf16ByteLen(zSql, chars_parsed);
sl@0
   773
  }
sl@0
   774
  sqlite3DbFree(db, zSql8); 
sl@0
   775
  rc = sqlite3ApiExit(db, rc);
sl@0
   776
  sqlite3_mutex_leave(db->mutex);
sl@0
   777
  return rc;
sl@0
   778
}
sl@0
   779
sl@0
   780
/*
sl@0
   781
** Two versions of the official API.  Legacy and new use.  In the legacy
sl@0
   782
** version, the original SQL text is not saved in the prepared statement
sl@0
   783
** and so if a schema change occurs, SQLITE_SCHEMA is returned by
sl@0
   784
** sqlite3_step().  In the new version, the original SQL text is retained
sl@0
   785
** and the statement is automatically recompiled if an schema change
sl@0
   786
** occurs.
sl@0
   787
*/
sl@0
   788
int sqlite3_prepare16(
sl@0
   789
  sqlite3 *db,              /* Database handle. */ 
sl@0
   790
  const void *zSql,         /* UTF-8 encoded SQL statement. */
sl@0
   791
  int nBytes,               /* Length of zSql in bytes. */
sl@0
   792
  sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
sl@0
   793
  const void **pzTail       /* OUT: End of parsed string */
sl@0
   794
){
sl@0
   795
  int rc;
sl@0
   796
  rc = sqlite3Prepare16(db,zSql,nBytes,0,ppStmt,pzTail);
sl@0
   797
  assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 );  /* VERIFY: F13021 */
sl@0
   798
  return rc;
sl@0
   799
}
sl@0
   800
int sqlite3_prepare16_v2(
sl@0
   801
  sqlite3 *db,              /* Database handle. */ 
sl@0
   802
  const void *zSql,         /* UTF-8 encoded SQL statement. */
sl@0
   803
  int nBytes,               /* Length of zSql in bytes. */
sl@0
   804
  sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
sl@0
   805
  const void **pzTail       /* OUT: End of parsed string */
sl@0
   806
){
sl@0
   807
  int rc;
sl@0
   808
  rc = sqlite3Prepare16(db,zSql,nBytes,1,ppStmt,pzTail);
sl@0
   809
  assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 );  /* VERIFY: F13021 */
sl@0
   810
  return rc;
sl@0
   811
}
sl@0
   812
sl@0
   813
#endif /* SQLITE_OMIT_UTF16 */