os/persistentdata/persistentstorage/sql/SQLite364/loadext.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
** 2006 June 7
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 code used to dynamically load extensions into
sl@0
    13
** the SQLite library.
sl@0
    14
**
sl@0
    15
** $Id: loadext.c,v 1.56 2008/10/12 00:27:53 shane Exp $
sl@0
    16
*/
sl@0
    17
sl@0
    18
#ifndef SQLITE_CORE
sl@0
    19
  #define SQLITE_CORE 1  /* Disable the API redefinition in sqlite3ext.h */
sl@0
    20
#endif
sl@0
    21
#include "sqlite3ext.h"
sl@0
    22
#include "sqliteInt.h"
sl@0
    23
#include <string.h>
sl@0
    24
#include <ctype.h>
sl@0
    25
sl@0
    26
#ifndef SQLITE_OMIT_LOAD_EXTENSION
sl@0
    27
sl@0
    28
/*
sl@0
    29
** Some API routines are omitted when various features are
sl@0
    30
** excluded from a build of SQLite.  Substitute a NULL pointer
sl@0
    31
** for any missing APIs.
sl@0
    32
*/
sl@0
    33
#ifndef SQLITE_ENABLE_COLUMN_METADATA
sl@0
    34
# define sqlite3_column_database_name   0
sl@0
    35
# define sqlite3_column_database_name16 0
sl@0
    36
# define sqlite3_column_table_name      0
sl@0
    37
# define sqlite3_column_table_name16    0
sl@0
    38
# define sqlite3_column_origin_name     0
sl@0
    39
# define sqlite3_column_origin_name16   0
sl@0
    40
# define sqlite3_table_column_metadata  0
sl@0
    41
#endif
sl@0
    42
sl@0
    43
#ifdef SQLITE_OMIT_AUTHORIZATION
sl@0
    44
# define sqlite3_set_authorizer         0
sl@0
    45
#endif
sl@0
    46
sl@0
    47
#ifdef SQLITE_OMIT_UTF16
sl@0
    48
# define sqlite3_bind_text16            0
sl@0
    49
# define sqlite3_collation_needed16     0
sl@0
    50
# define sqlite3_column_decltype16      0
sl@0
    51
# define sqlite3_column_name16          0
sl@0
    52
# define sqlite3_column_text16          0
sl@0
    53
# define sqlite3_complete16             0
sl@0
    54
# define sqlite3_create_collation16     0
sl@0
    55
# define sqlite3_create_function16      0
sl@0
    56
# define sqlite3_errmsg16               0
sl@0
    57
# define sqlite3_open16                 0
sl@0
    58
# define sqlite3_prepare16              0
sl@0
    59
# define sqlite3_prepare16_v2           0
sl@0
    60
# define sqlite3_result_error16         0
sl@0
    61
# define sqlite3_result_text16          0
sl@0
    62
# define sqlite3_result_text16be        0
sl@0
    63
# define sqlite3_result_text16le        0
sl@0
    64
# define sqlite3_value_text16           0
sl@0
    65
# define sqlite3_value_text16be         0
sl@0
    66
# define sqlite3_value_text16le         0
sl@0
    67
# define sqlite3_column_database_name16 0
sl@0
    68
# define sqlite3_column_table_name16    0
sl@0
    69
# define sqlite3_column_origin_name16   0
sl@0
    70
#endif
sl@0
    71
sl@0
    72
#ifdef SQLITE_OMIT_COMPLETE
sl@0
    73
# define sqlite3_complete 0
sl@0
    74
# define sqlite3_complete16 0
sl@0
    75
#endif
sl@0
    76
sl@0
    77
#ifdef SQLITE_OMIT_PROGRESS_CALLBACK
sl@0
    78
# define sqlite3_progress_handler 0
sl@0
    79
#endif
sl@0
    80
sl@0
    81
#ifdef SQLITE_OMIT_VIRTUALTABLE
sl@0
    82
# define sqlite3_create_module 0
sl@0
    83
# define sqlite3_create_module_v2 0
sl@0
    84
# define sqlite3_declare_vtab 0
sl@0
    85
#endif
sl@0
    86
sl@0
    87
#ifdef SQLITE_OMIT_SHARED_CACHE
sl@0
    88
# define sqlite3_enable_shared_cache 0
sl@0
    89
#endif
sl@0
    90
sl@0
    91
#ifdef SQLITE_OMIT_TRACE
sl@0
    92
# define sqlite3_profile       0
sl@0
    93
# define sqlite3_trace         0
sl@0
    94
#endif
sl@0
    95
sl@0
    96
#ifdef SQLITE_OMIT_GET_TABLE
sl@0
    97
# define sqlite3_free_table    0
sl@0
    98
# define sqlite3_get_table     0
sl@0
    99
#endif
sl@0
   100
sl@0
   101
#ifdef SQLITE_OMIT_INCRBLOB
sl@0
   102
#define sqlite3_bind_zeroblob  0
sl@0
   103
#define sqlite3_blob_bytes     0
sl@0
   104
#define sqlite3_blob_close     0
sl@0
   105
#define sqlite3_blob_open      0
sl@0
   106
#define sqlite3_blob_read      0
sl@0
   107
#define sqlite3_blob_write     0
sl@0
   108
#endif
sl@0
   109
sl@0
   110
/*
sl@0
   111
** The following structure contains pointers to all SQLite API routines.
sl@0
   112
** A pointer to this structure is passed into extensions when they are
sl@0
   113
** loaded so that the extension can make calls back into the SQLite
sl@0
   114
** library.
sl@0
   115
**
sl@0
   116
** When adding new APIs, add them to the bottom of this structure
sl@0
   117
** in order to preserve backwards compatibility.
sl@0
   118
**
sl@0
   119
** Extensions that use newer APIs should first call the
sl@0
   120
** sqlite3_libversion_number() to make sure that the API they
sl@0
   121
** intend to use is supported by the library.  Extensions should
sl@0
   122
** also check to make sure that the pointer to the function is
sl@0
   123
** not NULL before calling it.
sl@0
   124
*/
sl@0
   125
static const sqlite3_api_routines sqlite3Apis = {
sl@0
   126
  sqlite3_aggregate_context,
sl@0
   127
#ifndef SQLITE_OMIT_DEPRECATED
sl@0
   128
  sqlite3_aggregate_count,
sl@0
   129
#else
sl@0
   130
  0,
sl@0
   131
#endif
sl@0
   132
  sqlite3_bind_blob,
sl@0
   133
  sqlite3_bind_double,
sl@0
   134
  sqlite3_bind_int,
sl@0
   135
  sqlite3_bind_int64,
sl@0
   136
  sqlite3_bind_null,
sl@0
   137
  sqlite3_bind_parameter_count,
sl@0
   138
  sqlite3_bind_parameter_index,
sl@0
   139
  sqlite3_bind_parameter_name,
sl@0
   140
  sqlite3_bind_text,
sl@0
   141
  sqlite3_bind_text16,
sl@0
   142
  sqlite3_bind_value,
sl@0
   143
  sqlite3_busy_handler,
sl@0
   144
  sqlite3_busy_timeout,
sl@0
   145
  sqlite3_changes,
sl@0
   146
  sqlite3_close,
sl@0
   147
  sqlite3_collation_needed,
sl@0
   148
  sqlite3_collation_needed16,
sl@0
   149
  sqlite3_column_blob,
sl@0
   150
  sqlite3_column_bytes,
sl@0
   151
  sqlite3_column_bytes16,
sl@0
   152
  sqlite3_column_count,
sl@0
   153
  sqlite3_column_database_name,
sl@0
   154
  sqlite3_column_database_name16,
sl@0
   155
  sqlite3_column_decltype,
sl@0
   156
  sqlite3_column_decltype16,
sl@0
   157
  sqlite3_column_double,
sl@0
   158
  sqlite3_column_int,
sl@0
   159
  sqlite3_column_int64,
sl@0
   160
  sqlite3_column_name,
sl@0
   161
  sqlite3_column_name16,
sl@0
   162
  sqlite3_column_origin_name,
sl@0
   163
  sqlite3_column_origin_name16,
sl@0
   164
  sqlite3_column_table_name,
sl@0
   165
  sqlite3_column_table_name16,
sl@0
   166
  sqlite3_column_text,
sl@0
   167
  sqlite3_column_text16,
sl@0
   168
  sqlite3_column_type,
sl@0
   169
  sqlite3_column_value,
sl@0
   170
  sqlite3_commit_hook,
sl@0
   171
  sqlite3_complete,
sl@0
   172
  sqlite3_complete16,
sl@0
   173
  sqlite3_create_collation,
sl@0
   174
  sqlite3_create_collation16,
sl@0
   175
  sqlite3_create_function,
sl@0
   176
  sqlite3_create_function16,
sl@0
   177
  sqlite3_create_module,
sl@0
   178
  sqlite3_data_count,
sl@0
   179
  sqlite3_db_handle,
sl@0
   180
  sqlite3_declare_vtab,
sl@0
   181
  sqlite3_enable_shared_cache,
sl@0
   182
  sqlite3_errcode,
sl@0
   183
  sqlite3_errmsg,
sl@0
   184
  sqlite3_errmsg16,
sl@0
   185
  sqlite3_exec,
sl@0
   186
#ifndef SQLITE_OMIT_DEPRECATED
sl@0
   187
  sqlite3_expired,
sl@0
   188
#else
sl@0
   189
  0,
sl@0
   190
#endif
sl@0
   191
  sqlite3_finalize,
sl@0
   192
  sqlite3_free,
sl@0
   193
  sqlite3_free_table,
sl@0
   194
  sqlite3_get_autocommit,
sl@0
   195
  sqlite3_get_auxdata,
sl@0
   196
  sqlite3_get_table,
sl@0
   197
  0,     /* Was sqlite3_global_recover(), but that function is deprecated */
sl@0
   198
  sqlite3_interrupt,
sl@0
   199
  sqlite3_last_insert_rowid,
sl@0
   200
  sqlite3_libversion,
sl@0
   201
  sqlite3_libversion_number,
sl@0
   202
  sqlite3_malloc,
sl@0
   203
  sqlite3_mprintf,
sl@0
   204
  sqlite3_open,
sl@0
   205
  sqlite3_open16,
sl@0
   206
  sqlite3_prepare,
sl@0
   207
  sqlite3_prepare16,
sl@0
   208
  sqlite3_profile,
sl@0
   209
  sqlite3_progress_handler,
sl@0
   210
  sqlite3_realloc,
sl@0
   211
  sqlite3_reset,
sl@0
   212
  sqlite3_result_blob,
sl@0
   213
  sqlite3_result_double,
sl@0
   214
  sqlite3_result_error,
sl@0
   215
  sqlite3_result_error16,
sl@0
   216
  sqlite3_result_int,
sl@0
   217
  sqlite3_result_int64,
sl@0
   218
  sqlite3_result_null,
sl@0
   219
  sqlite3_result_text,
sl@0
   220
  sqlite3_result_text16,
sl@0
   221
  sqlite3_result_text16be,
sl@0
   222
  sqlite3_result_text16le,
sl@0
   223
  sqlite3_result_value,
sl@0
   224
  sqlite3_rollback_hook,
sl@0
   225
  sqlite3_set_authorizer,
sl@0
   226
  sqlite3_set_auxdata,
sl@0
   227
  sqlite3_snprintf,
sl@0
   228
  sqlite3_step,
sl@0
   229
  sqlite3_table_column_metadata,
sl@0
   230
#ifndef SQLITE_OMIT_DEPRECATED
sl@0
   231
  sqlite3_thread_cleanup,
sl@0
   232
#else
sl@0
   233
  0,
sl@0
   234
#endif
sl@0
   235
  sqlite3_total_changes,
sl@0
   236
  sqlite3_trace,
sl@0
   237
#ifndef SQLITE_OMIT_DEPRECATED
sl@0
   238
  sqlite3_transfer_bindings,
sl@0
   239
#else
sl@0
   240
  0,
sl@0
   241
#endif
sl@0
   242
  sqlite3_update_hook,
sl@0
   243
  sqlite3_user_data,
sl@0
   244
  sqlite3_value_blob,
sl@0
   245
  sqlite3_value_bytes,
sl@0
   246
  sqlite3_value_bytes16,
sl@0
   247
  sqlite3_value_double,
sl@0
   248
  sqlite3_value_int,
sl@0
   249
  sqlite3_value_int64,
sl@0
   250
  sqlite3_value_numeric_type,
sl@0
   251
  sqlite3_value_text,
sl@0
   252
  sqlite3_value_text16,
sl@0
   253
  sqlite3_value_text16be,
sl@0
   254
  sqlite3_value_text16le,
sl@0
   255
  sqlite3_value_type,
sl@0
   256
  sqlite3_vmprintf,
sl@0
   257
  /*
sl@0
   258
  ** The original API set ends here.  All extensions can call any
sl@0
   259
  ** of the APIs above provided that the pointer is not NULL.  But
sl@0
   260
  ** before calling APIs that follow, extension should check the
sl@0
   261
  ** sqlite3_libversion_number() to make sure they are dealing with
sl@0
   262
  ** a library that is new enough to support that API.
sl@0
   263
  *************************************************************************
sl@0
   264
  */
sl@0
   265
  sqlite3_overload_function,
sl@0
   266
sl@0
   267
  /*
sl@0
   268
  ** Added after 3.3.13
sl@0
   269
  */
sl@0
   270
  sqlite3_prepare_v2,
sl@0
   271
  sqlite3_prepare16_v2,
sl@0
   272
  sqlite3_clear_bindings,
sl@0
   273
sl@0
   274
  /*
sl@0
   275
  ** Added for 3.4.1
sl@0
   276
  */
sl@0
   277
  sqlite3_create_module_v2,
sl@0
   278
sl@0
   279
  /*
sl@0
   280
  ** Added for 3.5.0
sl@0
   281
  */
sl@0
   282
  sqlite3_bind_zeroblob,
sl@0
   283
  sqlite3_blob_bytes,
sl@0
   284
  sqlite3_blob_close,
sl@0
   285
  sqlite3_blob_open,
sl@0
   286
  sqlite3_blob_read,
sl@0
   287
  sqlite3_blob_write,
sl@0
   288
  sqlite3_create_collation_v2,
sl@0
   289
  sqlite3_file_control,
sl@0
   290
  sqlite3_memory_highwater,
sl@0
   291
  sqlite3_memory_used,
sl@0
   292
#ifdef SQLITE_MUTEX_OMIT
sl@0
   293
  0, 
sl@0
   294
  0, 
sl@0
   295
  0,
sl@0
   296
  0,
sl@0
   297
  0,
sl@0
   298
#else
sl@0
   299
  sqlite3_mutex_alloc,
sl@0
   300
  sqlite3_mutex_enter,
sl@0
   301
  sqlite3_mutex_free,
sl@0
   302
  sqlite3_mutex_leave,
sl@0
   303
  sqlite3_mutex_try,
sl@0
   304
#endif
sl@0
   305
  sqlite3_open_v2,
sl@0
   306
  sqlite3_release_memory,
sl@0
   307
  sqlite3_result_error_nomem,
sl@0
   308
  sqlite3_result_error_toobig,
sl@0
   309
  sqlite3_sleep,
sl@0
   310
  sqlite3_soft_heap_limit,
sl@0
   311
  sqlite3_vfs_find,
sl@0
   312
  sqlite3_vfs_register,
sl@0
   313
  sqlite3_vfs_unregister,
sl@0
   314
sl@0
   315
  /*
sl@0
   316
  ** Added for 3.5.8
sl@0
   317
  */
sl@0
   318
  sqlite3_threadsafe,
sl@0
   319
  sqlite3_result_zeroblob,
sl@0
   320
  sqlite3_result_error_code,
sl@0
   321
  sqlite3_test_control,
sl@0
   322
  sqlite3_randomness,
sl@0
   323
  sqlite3_context_db_handle,
sl@0
   324
sl@0
   325
  /*
sl@0
   326
  ** Added for 3.6.0
sl@0
   327
  */
sl@0
   328
  sqlite3_extended_result_codes,
sl@0
   329
  sqlite3_limit,
sl@0
   330
  sqlite3_next_stmt,
sl@0
   331
  sqlite3_sql,
sl@0
   332
  sqlite3_status,
sl@0
   333
};
sl@0
   334
sl@0
   335
/*
sl@0
   336
** Attempt to load an SQLite extension library contained in the file
sl@0
   337
** zFile.  The entry point is zProc.  zProc may be 0 in which case a
sl@0
   338
** default entry point name (sqlite3_extension_init) is used.  Use
sl@0
   339
** of the default name is recommended.
sl@0
   340
**
sl@0
   341
** Return SQLITE_OK on success and SQLITE_ERROR if something goes wrong.
sl@0
   342
**
sl@0
   343
** If an error occurs and pzErrMsg is not 0, then fill *pzErrMsg with 
sl@0
   344
** error message text.  The calling function should free this memory
sl@0
   345
** by calling sqlite3DbFree(db, ).
sl@0
   346
*/
sl@0
   347
static int sqlite3LoadExtension(
sl@0
   348
  sqlite3 *db,          /* Load the extension into this database connection */
sl@0
   349
  const char *zFile,    /* Name of the shared library containing extension */
sl@0
   350
  const char *zProc,    /* Entry point.  Use "sqlite3_extension_init" if 0 */
sl@0
   351
  char **pzErrMsg       /* Put error message here if not 0 */
sl@0
   352
){
sl@0
   353
  sqlite3_vfs *pVfs = db->pVfs;
sl@0
   354
  void *handle;
sl@0
   355
  int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*);
sl@0
   356
  char *zErrmsg = 0;
sl@0
   357
  void **aHandle;
sl@0
   358
sl@0
   359
  /* Ticket #1863.  To avoid a creating security problems for older
sl@0
   360
  ** applications that relink against newer versions of SQLite, the
sl@0
   361
  ** ability to run load_extension is turned off by default.  One
sl@0
   362
  ** must call sqlite3_enable_load_extension() to turn on extension
sl@0
   363
  ** loading.  Otherwise you get the following error.
sl@0
   364
  */
sl@0
   365
  if( (db->flags & SQLITE_LoadExtension)==0 ){
sl@0
   366
    if( pzErrMsg ){
sl@0
   367
      *pzErrMsg = sqlite3_mprintf("not authorized");
sl@0
   368
    }
sl@0
   369
    return SQLITE_ERROR;
sl@0
   370
  }
sl@0
   371
sl@0
   372
  if( zProc==0 ){
sl@0
   373
    zProc = "sqlite3_extension_init";
sl@0
   374
  }
sl@0
   375
sl@0
   376
  handle = sqlite3OsDlOpen(pVfs, zFile);
sl@0
   377
  if( handle==0 ){
sl@0
   378
    if( pzErrMsg ){
sl@0
   379
      char zErr[256];
sl@0
   380
      zErr[sizeof(zErr)-1] = '\0';
sl@0
   381
      sqlite3_snprintf(sizeof(zErr)-1, zErr, 
sl@0
   382
          "unable to open shared library [%s]", zFile);
sl@0
   383
      sqlite3OsDlError(pVfs, sizeof(zErr)-1, zErr);
sl@0
   384
      *pzErrMsg = sqlite3DbStrDup(0, zErr);
sl@0
   385
    }
sl@0
   386
    return SQLITE_ERROR;
sl@0
   387
  }
sl@0
   388
  xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*))
sl@0
   389
                   sqlite3OsDlSym(pVfs, handle, zProc);
sl@0
   390
  if( xInit==0 ){
sl@0
   391
    if( pzErrMsg ){
sl@0
   392
      char zErr[256];
sl@0
   393
      zErr[sizeof(zErr)-1] = '\0';
sl@0
   394
      sqlite3_snprintf(sizeof(zErr)-1, zErr,
sl@0
   395
          "no entry point [%s] in shared library [%s]", zProc,zFile);
sl@0
   396
      sqlite3OsDlError(pVfs, sizeof(zErr)-1, zErr);
sl@0
   397
      *pzErrMsg = sqlite3DbStrDup(0, zErr);
sl@0
   398
      sqlite3OsDlClose(pVfs, handle);
sl@0
   399
    }
sl@0
   400
    return SQLITE_ERROR;
sl@0
   401
  }else if( xInit(db, &zErrmsg, &sqlite3Apis) ){
sl@0
   402
    if( pzErrMsg ){
sl@0
   403
      *pzErrMsg = sqlite3_mprintf("error during initialization: %s", zErrmsg);
sl@0
   404
    }
sl@0
   405
    sqlite3_free(zErrmsg);
sl@0
   406
    sqlite3OsDlClose(pVfs, handle);
sl@0
   407
    return SQLITE_ERROR;
sl@0
   408
  }
sl@0
   409
sl@0
   410
  /* Append the new shared library handle to the db->aExtension array. */
sl@0
   411
  aHandle = sqlite3DbMallocZero(db, sizeof(handle)*(db->nExtension+1));
sl@0
   412
  if( aHandle==0 ){
sl@0
   413
    return SQLITE_NOMEM;
sl@0
   414
  }
sl@0
   415
  if( db->nExtension>0 ){
sl@0
   416
    memcpy(aHandle, db->aExtension, sizeof(handle)*db->nExtension);
sl@0
   417
  }
sl@0
   418
  sqlite3DbFree(db, db->aExtension);
sl@0
   419
  db->aExtension = aHandle;
sl@0
   420
sl@0
   421
  db->aExtension[db->nExtension++] = handle;
sl@0
   422
  return SQLITE_OK;
sl@0
   423
}
sl@0
   424
int sqlite3_load_extension(
sl@0
   425
  sqlite3 *db,          /* Load the extension into this database connection */
sl@0
   426
  const char *zFile,    /* Name of the shared library containing extension */
sl@0
   427
  const char *zProc,    /* Entry point.  Use "sqlite3_extension_init" if 0 */
sl@0
   428
  char **pzErrMsg       /* Put error message here if not 0 */
sl@0
   429
){
sl@0
   430
  int rc;
sl@0
   431
  sqlite3_mutex_enter(db->mutex);
sl@0
   432
  rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);
sl@0
   433
  sqlite3_mutex_leave(db->mutex);
sl@0
   434
  return rc;
sl@0
   435
}
sl@0
   436
sl@0
   437
/*
sl@0
   438
** Call this routine when the database connection is closing in order
sl@0
   439
** to clean up loaded extensions
sl@0
   440
*/
sl@0
   441
void sqlite3CloseExtensions(sqlite3 *db){
sl@0
   442
  int i;
sl@0
   443
  assert( sqlite3_mutex_held(db->mutex) );
sl@0
   444
  for(i=0; i<db->nExtension; i++){
sl@0
   445
    sqlite3OsDlClose(db->pVfs, db->aExtension[i]);
sl@0
   446
  }
sl@0
   447
  sqlite3DbFree(db, db->aExtension);
sl@0
   448
}
sl@0
   449
sl@0
   450
/*
sl@0
   451
** Enable or disable extension loading.  Extension loading is disabled by
sl@0
   452
** default so as not to open security holes in older applications.
sl@0
   453
*/
sl@0
   454
int sqlite3_enable_load_extension(sqlite3 *db, int onoff){
sl@0
   455
  sqlite3_mutex_enter(db->mutex);
sl@0
   456
  if( onoff ){
sl@0
   457
    db->flags |= SQLITE_LoadExtension;
sl@0
   458
  }else{
sl@0
   459
    db->flags &= ~SQLITE_LoadExtension;
sl@0
   460
  }
sl@0
   461
  sqlite3_mutex_leave(db->mutex);
sl@0
   462
  return SQLITE_OK;
sl@0
   463
}
sl@0
   464
sl@0
   465
#endif /* SQLITE_OMIT_LOAD_EXTENSION */
sl@0
   466
sl@0
   467
/*
sl@0
   468
** The auto-extension code added regardless of whether or not extension
sl@0
   469
** loading is supported.  We need a dummy sqlite3Apis pointer for that
sl@0
   470
** code if regular extension loading is not available.  This is that
sl@0
   471
** dummy pointer.
sl@0
   472
*/
sl@0
   473
#ifdef SQLITE_OMIT_LOAD_EXTENSION
sl@0
   474
static const sqlite3_api_routines sqlite3Apis = { 0 };
sl@0
   475
#endif
sl@0
   476
sl@0
   477
sl@0
   478
/*
sl@0
   479
** The following object holds the list of automatically loaded
sl@0
   480
** extensions.
sl@0
   481
**
sl@0
   482
** This list is shared across threads.  The SQLITE_MUTEX_STATIC_MASTER
sl@0
   483
** mutex must be held while accessing this list.
sl@0
   484
*/
sl@0
   485
typedef struct sqlite3ExtType sqlite3ExtType;
sl@0
   486
static SQLITE_WSD struct sqlite3ExtType {
sl@0
   487
  int nExt;        /* Number of entries in aExt[] */          
sl@0
   488
  void **aExt;     /* Pointers to the extension init functions */
sl@0
   489
} sqlite3Autoext = { 0, 0 };
sl@0
   490
sl@0
   491
/* The "wsdAutoext" macro will resolve to the autoextension
sl@0
   492
** state vector.  If writable static data is unsupported on the target,
sl@0
   493
** we have to locate the state vector at run-time.  In the more common
sl@0
   494
** case where writable static data is supported, wsdStat can refer directly
sl@0
   495
** to the "sqlite3Autoext" state vector declared above.
sl@0
   496
*/
sl@0
   497
#ifdef SQLITE_OMIT_WSD
sl@0
   498
# define wsdAutoextInit \
sl@0
   499
  sqlite3ExtType *x = &GLOBAL(sqlite3ExtType,sqlite3Autoext)
sl@0
   500
# define wsdAutoext x[0]
sl@0
   501
#else
sl@0
   502
# define wsdAutoextInit
sl@0
   503
# define wsdAutoext sqlite3Autoext
sl@0
   504
#endif
sl@0
   505
sl@0
   506
sl@0
   507
/*
sl@0
   508
** Register a statically linked extension that is automatically
sl@0
   509
** loaded by every new database connection.
sl@0
   510
*/
sl@0
   511
int sqlite3_auto_extension(void *xInit){
sl@0
   512
  int rc = SQLITE_OK;
sl@0
   513
#ifndef SQLITE_OMIT_AUTOINIT
sl@0
   514
  rc = sqlite3_initialize();
sl@0
   515
  if( rc ){
sl@0
   516
    return rc;
sl@0
   517
  }else
sl@0
   518
#endif
sl@0
   519
  {
sl@0
   520
    int i;
sl@0
   521
#if SQLITE_THREADSAFE
sl@0
   522
    sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
sl@0
   523
#endif
sl@0
   524
    wsdAutoextInit;
sl@0
   525
    sqlite3_mutex_enter(mutex);
sl@0
   526
    for(i=0; i<wsdAutoext.nExt; i++){
sl@0
   527
      if( wsdAutoext.aExt[i]==xInit ) break;
sl@0
   528
    }
sl@0
   529
    if( i==wsdAutoext.nExt ){
sl@0
   530
      int nByte = (wsdAutoext.nExt+1)*sizeof(wsdAutoext.aExt[0]);
sl@0
   531
      void **aNew;
sl@0
   532
      aNew = sqlite3_realloc(wsdAutoext.aExt, nByte);
sl@0
   533
      if( aNew==0 ){
sl@0
   534
        rc = SQLITE_NOMEM;
sl@0
   535
      }else{
sl@0
   536
        wsdAutoext.aExt = aNew;
sl@0
   537
        wsdAutoext.aExt[wsdAutoext.nExt] = xInit;
sl@0
   538
        wsdAutoext.nExt++;
sl@0
   539
      }
sl@0
   540
    }
sl@0
   541
    sqlite3_mutex_leave(mutex);
sl@0
   542
    assert( (rc&0xff)==rc );
sl@0
   543
    return rc;
sl@0
   544
  }
sl@0
   545
}
sl@0
   546
sl@0
   547
/*
sl@0
   548
** Reset the automatic extension loading mechanism.
sl@0
   549
*/
sl@0
   550
void sqlite3_reset_auto_extension(void){
sl@0
   551
#ifndef SQLITE_OMIT_AUTOINIT
sl@0
   552
  if( sqlite3_initialize()==SQLITE_OK )
sl@0
   553
#endif
sl@0
   554
  {
sl@0
   555
#if SQLITE_THREADSAFE
sl@0
   556
    sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
sl@0
   557
#endif
sl@0
   558
    wsdAutoextInit;
sl@0
   559
    sqlite3_mutex_enter(mutex);
sl@0
   560
    sqlite3_free(wsdAutoext.aExt);
sl@0
   561
    wsdAutoext.aExt = 0;
sl@0
   562
    wsdAutoext.nExt = 0;
sl@0
   563
    sqlite3_mutex_leave(mutex);
sl@0
   564
  }
sl@0
   565
}
sl@0
   566
sl@0
   567
/*
sl@0
   568
** Load all automatic extensions.
sl@0
   569
*/
sl@0
   570
int sqlite3AutoLoadExtensions(sqlite3 *db){
sl@0
   571
  int i;
sl@0
   572
  int go = 1;
sl@0
   573
  int rc = SQLITE_OK;
sl@0
   574
  int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*);
sl@0
   575
sl@0
   576
  wsdAutoextInit;
sl@0
   577
  if( wsdAutoext.nExt==0 ){
sl@0
   578
    /* Common case: early out without every having to acquire a mutex */
sl@0
   579
    return SQLITE_OK;
sl@0
   580
  }
sl@0
   581
  for(i=0; go; i++){
sl@0
   582
    char *zErrmsg = 0;
sl@0
   583
#if SQLITE_THREADSAFE
sl@0
   584
    sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
sl@0
   585
#endif
sl@0
   586
    sqlite3_mutex_enter(mutex);
sl@0
   587
    if( i>=wsdAutoext.nExt ){
sl@0
   588
      xInit = 0;
sl@0
   589
      go = 0;
sl@0
   590
    }else{
sl@0
   591
      xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*))
sl@0
   592
              wsdAutoext.aExt[i];
sl@0
   593
    }
sl@0
   594
    sqlite3_mutex_leave(mutex);
sl@0
   595
    if( xInit && xInit(db, &zErrmsg, &sqlite3Apis) ){
sl@0
   596
      sqlite3Error(db, SQLITE_ERROR,
sl@0
   597
            "automatic extension loading failed: %s", zErrmsg);
sl@0
   598
      go = 0;
sl@0
   599
      rc = SQLITE_ERROR;
sl@0
   600
      sqlite3_free(zErrmsg);
sl@0
   601
    }
sl@0
   602
  }
sl@0
   603
  return rc;
sl@0
   604
}