Update contrib.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 *************************************************************************
12 ** This file contains code used to dynamically load extensions into
13 ** the SQLite library.
15 ** $Id: loadext.c,v 1.56 2008/10/12 00:27:53 shane Exp $
19 #define SQLITE_CORE 1 /* Disable the API redefinition in sqlite3ext.h */
21 #include "sqlite3ext.h"
22 #include "sqliteInt.h"
26 #ifndef SQLITE_OMIT_LOAD_EXTENSION
29 ** Some API routines are omitted when various features are
30 ** excluded from a build of SQLite. Substitute a NULL pointer
31 ** for any missing APIs.
33 #ifndef SQLITE_ENABLE_COLUMN_METADATA
34 # define sqlite3_column_database_name 0
35 # define sqlite3_column_database_name16 0
36 # define sqlite3_column_table_name 0
37 # define sqlite3_column_table_name16 0
38 # define sqlite3_column_origin_name 0
39 # define sqlite3_column_origin_name16 0
40 # define sqlite3_table_column_metadata 0
43 #ifdef SQLITE_OMIT_AUTHORIZATION
44 # define sqlite3_set_authorizer 0
47 #ifdef SQLITE_OMIT_UTF16
48 # define sqlite3_bind_text16 0
49 # define sqlite3_collation_needed16 0
50 # define sqlite3_column_decltype16 0
51 # define sqlite3_column_name16 0
52 # define sqlite3_column_text16 0
53 # define sqlite3_complete16 0
54 # define sqlite3_create_collation16 0
55 # define sqlite3_create_function16 0
56 # define sqlite3_errmsg16 0
57 # define sqlite3_open16 0
58 # define sqlite3_prepare16 0
59 # define sqlite3_prepare16_v2 0
60 # define sqlite3_result_error16 0
61 # define sqlite3_result_text16 0
62 # define sqlite3_result_text16be 0
63 # define sqlite3_result_text16le 0
64 # define sqlite3_value_text16 0
65 # define sqlite3_value_text16be 0
66 # define sqlite3_value_text16le 0
67 # define sqlite3_column_database_name16 0
68 # define sqlite3_column_table_name16 0
69 # define sqlite3_column_origin_name16 0
72 #ifdef SQLITE_OMIT_COMPLETE
73 # define sqlite3_complete 0
74 # define sqlite3_complete16 0
77 #ifdef SQLITE_OMIT_PROGRESS_CALLBACK
78 # define sqlite3_progress_handler 0
81 #ifdef SQLITE_OMIT_VIRTUALTABLE
82 # define sqlite3_create_module 0
83 # define sqlite3_create_module_v2 0
84 # define sqlite3_declare_vtab 0
87 #ifdef SQLITE_OMIT_SHARED_CACHE
88 # define sqlite3_enable_shared_cache 0
91 #ifdef SQLITE_OMIT_TRACE
92 # define sqlite3_profile 0
93 # define sqlite3_trace 0
96 #ifdef SQLITE_OMIT_GET_TABLE
97 # define sqlite3_free_table 0
98 # define sqlite3_get_table 0
101 #ifdef SQLITE_OMIT_INCRBLOB
102 #define sqlite3_bind_zeroblob 0
103 #define sqlite3_blob_bytes 0
104 #define sqlite3_blob_close 0
105 #define sqlite3_blob_open 0
106 #define sqlite3_blob_read 0
107 #define sqlite3_blob_write 0
111 ** The following structure contains pointers to all SQLite API routines.
112 ** A pointer to this structure is passed into extensions when they are
113 ** loaded so that the extension can make calls back into the SQLite
116 ** When adding new APIs, add them to the bottom of this structure
117 ** in order to preserve backwards compatibility.
119 ** Extensions that use newer APIs should first call the
120 ** sqlite3_libversion_number() to make sure that the API they
121 ** intend to use is supported by the library. Extensions should
122 ** also check to make sure that the pointer to the function is
123 ** not NULL before calling it.
125 static const sqlite3_api_routines sqlite3Apis = {
126 sqlite3_aggregate_context,
127 #ifndef SQLITE_OMIT_DEPRECATED
128 sqlite3_aggregate_count,
137 sqlite3_bind_parameter_count,
138 sqlite3_bind_parameter_index,
139 sqlite3_bind_parameter_name,
143 sqlite3_busy_handler,
144 sqlite3_busy_timeout,
147 sqlite3_collation_needed,
148 sqlite3_collation_needed16,
150 sqlite3_column_bytes,
151 sqlite3_column_bytes16,
152 sqlite3_column_count,
153 sqlite3_column_database_name,
154 sqlite3_column_database_name16,
155 sqlite3_column_decltype,
156 sqlite3_column_decltype16,
157 sqlite3_column_double,
159 sqlite3_column_int64,
161 sqlite3_column_name16,
162 sqlite3_column_origin_name,
163 sqlite3_column_origin_name16,
164 sqlite3_column_table_name,
165 sqlite3_column_table_name16,
167 sqlite3_column_text16,
169 sqlite3_column_value,
173 sqlite3_create_collation,
174 sqlite3_create_collation16,
175 sqlite3_create_function,
176 sqlite3_create_function16,
177 sqlite3_create_module,
180 sqlite3_declare_vtab,
181 sqlite3_enable_shared_cache,
186 #ifndef SQLITE_OMIT_DEPRECATED
194 sqlite3_get_autocommit,
197 0, /* Was sqlite3_global_recover(), but that function is deprecated */
199 sqlite3_last_insert_rowid,
201 sqlite3_libversion_number,
209 sqlite3_progress_handler,
213 sqlite3_result_double,
214 sqlite3_result_error,
215 sqlite3_result_error16,
217 sqlite3_result_int64,
220 sqlite3_result_text16,
221 sqlite3_result_text16be,
222 sqlite3_result_text16le,
223 sqlite3_result_value,
224 sqlite3_rollback_hook,
225 sqlite3_set_authorizer,
229 sqlite3_table_column_metadata,
230 #ifndef SQLITE_OMIT_DEPRECATED
231 sqlite3_thread_cleanup,
235 sqlite3_total_changes,
237 #ifndef SQLITE_OMIT_DEPRECATED
238 sqlite3_transfer_bindings,
246 sqlite3_value_bytes16,
247 sqlite3_value_double,
250 sqlite3_value_numeric_type,
252 sqlite3_value_text16,
253 sqlite3_value_text16be,
254 sqlite3_value_text16le,
258 ** The original API set ends here. All extensions can call any
259 ** of the APIs above provided that the pointer is not NULL. But
260 ** before calling APIs that follow, extension should check the
261 ** sqlite3_libversion_number() to make sure they are dealing with
262 ** a library that is new enough to support that API.
263 *************************************************************************
265 sqlite3_overload_function,
268 ** Added after 3.3.13
271 sqlite3_prepare16_v2,
272 sqlite3_clear_bindings,
277 sqlite3_create_module_v2,
282 sqlite3_bind_zeroblob,
288 sqlite3_create_collation_v2,
289 sqlite3_file_control,
290 sqlite3_memory_highwater,
292 #ifdef SQLITE_MUTEX_OMIT
306 sqlite3_release_memory,
307 sqlite3_result_error_nomem,
308 sqlite3_result_error_toobig,
310 sqlite3_soft_heap_limit,
312 sqlite3_vfs_register,
313 sqlite3_vfs_unregister,
319 sqlite3_result_zeroblob,
320 sqlite3_result_error_code,
321 sqlite3_test_control,
323 sqlite3_context_db_handle,
328 sqlite3_extended_result_codes,
336 ** Attempt to load an SQLite extension library contained in the file
337 ** zFile. The entry point is zProc. zProc may be 0 in which case a
338 ** default entry point name (sqlite3_extension_init) is used. Use
339 ** of the default name is recommended.
341 ** Return SQLITE_OK on success and SQLITE_ERROR if something goes wrong.
343 ** If an error occurs and pzErrMsg is not 0, then fill *pzErrMsg with
344 ** error message text. The calling function should free this memory
345 ** by calling sqlite3DbFree(db, ).
347 static int sqlite3LoadExtension(
348 sqlite3 *db, /* Load the extension into this database connection */
349 const char *zFile, /* Name of the shared library containing extension */
350 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
351 char **pzErrMsg /* Put error message here if not 0 */
353 sqlite3_vfs *pVfs = db->pVfs;
355 int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*);
359 /* Ticket #1863. To avoid a creating security problems for older
360 ** applications that relink against newer versions of SQLite, the
361 ** ability to run load_extension is turned off by default. One
362 ** must call sqlite3_enable_load_extension() to turn on extension
363 ** loading. Otherwise you get the following error.
365 if( (db->flags & SQLITE_LoadExtension)==0 ){
367 *pzErrMsg = sqlite3_mprintf("not authorized");
373 zProc = "sqlite3_extension_init";
376 handle = sqlite3OsDlOpen(pVfs, zFile);
380 zErr[sizeof(zErr)-1] = '\0';
381 sqlite3_snprintf(sizeof(zErr)-1, zErr,
382 "unable to open shared library [%s]", zFile);
383 sqlite3OsDlError(pVfs, sizeof(zErr)-1, zErr);
384 *pzErrMsg = sqlite3DbStrDup(0, zErr);
388 xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*))
389 sqlite3OsDlSym(pVfs, handle, zProc);
393 zErr[sizeof(zErr)-1] = '\0';
394 sqlite3_snprintf(sizeof(zErr)-1, zErr,
395 "no entry point [%s] in shared library [%s]", zProc,zFile);
396 sqlite3OsDlError(pVfs, sizeof(zErr)-1, zErr);
397 *pzErrMsg = sqlite3DbStrDup(0, zErr);
398 sqlite3OsDlClose(pVfs, handle);
401 }else if( xInit(db, &zErrmsg, &sqlite3Apis) ){
403 *pzErrMsg = sqlite3_mprintf("error during initialization: %s", zErrmsg);
405 sqlite3_free(zErrmsg);
406 sqlite3OsDlClose(pVfs, handle);
410 /* Append the new shared library handle to the db->aExtension array. */
411 aHandle = sqlite3DbMallocZero(db, sizeof(handle)*(db->nExtension+1));
415 if( db->nExtension>0 ){
416 memcpy(aHandle, db->aExtension, sizeof(handle)*db->nExtension);
418 sqlite3DbFree(db, db->aExtension);
419 db->aExtension = aHandle;
421 db->aExtension[db->nExtension++] = handle;
424 int sqlite3_load_extension(
425 sqlite3 *db, /* Load the extension into this database connection */
426 const char *zFile, /* Name of the shared library containing extension */
427 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
428 char **pzErrMsg /* Put error message here if not 0 */
431 sqlite3_mutex_enter(db->mutex);
432 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);
433 sqlite3_mutex_leave(db->mutex);
438 ** Call this routine when the database connection is closing in order
439 ** to clean up loaded extensions
441 void sqlite3CloseExtensions(sqlite3 *db){
443 assert( sqlite3_mutex_held(db->mutex) );
444 for(i=0; i<db->nExtension; i++){
445 sqlite3OsDlClose(db->pVfs, db->aExtension[i]);
447 sqlite3DbFree(db, db->aExtension);
451 ** Enable or disable extension loading. Extension loading is disabled by
452 ** default so as not to open security holes in older applications.
454 int sqlite3_enable_load_extension(sqlite3 *db, int onoff){
455 sqlite3_mutex_enter(db->mutex);
457 db->flags |= SQLITE_LoadExtension;
459 db->flags &= ~SQLITE_LoadExtension;
461 sqlite3_mutex_leave(db->mutex);
465 #endif /* SQLITE_OMIT_LOAD_EXTENSION */
468 ** The auto-extension code added regardless of whether or not extension
469 ** loading is supported. We need a dummy sqlite3Apis pointer for that
470 ** code if regular extension loading is not available. This is that
473 #ifdef SQLITE_OMIT_LOAD_EXTENSION
474 static const sqlite3_api_routines sqlite3Apis = { 0 };
479 ** The following object holds the list of automatically loaded
482 ** This list is shared across threads. The SQLITE_MUTEX_STATIC_MASTER
483 ** mutex must be held while accessing this list.
485 typedef struct sqlite3ExtType sqlite3ExtType;
486 static SQLITE_WSD struct sqlite3ExtType {
487 int nExt; /* Number of entries in aExt[] */
488 void **aExt; /* Pointers to the extension init functions */
489 } sqlite3Autoext = { 0, 0 };
491 /* The "wsdAutoext" macro will resolve to the autoextension
492 ** state vector. If writable static data is unsupported on the target,
493 ** we have to locate the state vector at run-time. In the more common
494 ** case where writable static data is supported, wsdStat can refer directly
495 ** to the "sqlite3Autoext" state vector declared above.
497 #ifdef SQLITE_OMIT_WSD
498 # define wsdAutoextInit \
499 sqlite3ExtType *x = &GLOBAL(sqlite3ExtType,sqlite3Autoext)
500 # define wsdAutoext x[0]
502 # define wsdAutoextInit
503 # define wsdAutoext sqlite3Autoext
508 ** Register a statically linked extension that is automatically
509 ** loaded by every new database connection.
511 int sqlite3_auto_extension(void *xInit){
513 #ifndef SQLITE_OMIT_AUTOINIT
514 rc = sqlite3_initialize();
521 #if SQLITE_THREADSAFE
522 sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
525 sqlite3_mutex_enter(mutex);
526 for(i=0; i<wsdAutoext.nExt; i++){
527 if( wsdAutoext.aExt[i]==xInit ) break;
529 if( i==wsdAutoext.nExt ){
530 int nByte = (wsdAutoext.nExt+1)*sizeof(wsdAutoext.aExt[0]);
532 aNew = sqlite3_realloc(wsdAutoext.aExt, nByte);
536 wsdAutoext.aExt = aNew;
537 wsdAutoext.aExt[wsdAutoext.nExt] = xInit;
541 sqlite3_mutex_leave(mutex);
542 assert( (rc&0xff)==rc );
548 ** Reset the automatic extension loading mechanism.
550 void sqlite3_reset_auto_extension(void){
551 #ifndef SQLITE_OMIT_AUTOINIT
552 if( sqlite3_initialize()==SQLITE_OK )
555 #if SQLITE_THREADSAFE
556 sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
559 sqlite3_mutex_enter(mutex);
560 sqlite3_free(wsdAutoext.aExt);
563 sqlite3_mutex_leave(mutex);
568 ** Load all automatic extensions.
570 int sqlite3AutoLoadExtensions(sqlite3 *db){
574 int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*);
577 if( wsdAutoext.nExt==0 ){
578 /* Common case: early out without every having to acquire a mutex */
583 #if SQLITE_THREADSAFE
584 sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
586 sqlite3_mutex_enter(mutex);
587 if( i>=wsdAutoext.nExt ){
591 xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*))
594 sqlite3_mutex_leave(mutex);
595 if( xInit && xInit(db, &zErrmsg, &sqlite3Apis) ){
596 sqlite3Error(db, SQLITE_ERROR,
597 "automatic extension loading failed: %s", zErrmsg);
600 sqlite3_free(zErrmsg);