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.53 2008/08/02 03:50:39 drh 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 sqlite3_aggregate_count,
133 sqlite3_bind_parameter_count,
134 sqlite3_bind_parameter_index,
135 sqlite3_bind_parameter_name,
139 sqlite3_busy_handler,
140 sqlite3_busy_timeout,
143 sqlite3_collation_needed,
144 sqlite3_collation_needed16,
146 sqlite3_column_bytes,
147 sqlite3_column_bytes16,
148 sqlite3_column_count,
149 sqlite3_column_database_name,
150 sqlite3_column_database_name16,
151 sqlite3_column_decltype,
152 sqlite3_column_decltype16,
153 sqlite3_column_double,
155 sqlite3_column_int64,
157 sqlite3_column_name16,
158 sqlite3_column_origin_name,
159 sqlite3_column_origin_name16,
160 sqlite3_column_table_name,
161 sqlite3_column_table_name16,
163 sqlite3_column_text16,
165 sqlite3_column_value,
169 sqlite3_create_collation,
170 sqlite3_create_collation16,
171 sqlite3_create_function,
172 sqlite3_create_function16,
173 sqlite3_create_module,
176 sqlite3_declare_vtab,
177 sqlite3_enable_shared_cache,
186 sqlite3_get_autocommit,
189 0, /* Was sqlite3_global_recover(), but that function is deprecated */
191 sqlite3_last_insert_rowid,
193 sqlite3_libversion_number,
201 sqlite3_progress_handler,
205 sqlite3_result_double,
206 sqlite3_result_error,
207 sqlite3_result_error16,
209 sqlite3_result_int64,
212 sqlite3_result_text16,
213 sqlite3_result_text16be,
214 sqlite3_result_text16le,
215 sqlite3_result_value,
216 sqlite3_rollback_hook,
217 sqlite3_set_authorizer,
221 sqlite3_table_column_metadata,
222 sqlite3_thread_cleanup,
223 sqlite3_total_changes,
225 sqlite3_transfer_bindings,
230 sqlite3_value_bytes16,
231 sqlite3_value_double,
234 sqlite3_value_numeric_type,
236 sqlite3_value_text16,
237 sqlite3_value_text16be,
238 sqlite3_value_text16le,
242 ** The original API set ends here. All extensions can call any
243 ** of the APIs above provided that the pointer is not NULL. But
244 ** before calling APIs that follow, extension should check the
245 ** sqlite3_libversion_number() to make sure they are dealing with
246 ** a library that is new enough to support that API.
247 *************************************************************************
249 sqlite3_overload_function,
252 ** Added after 3.3.13
255 sqlite3_prepare16_v2,
256 sqlite3_clear_bindings,
261 sqlite3_create_module_v2,
266 sqlite3_bind_zeroblob,
272 sqlite3_create_collation_v2,
273 sqlite3_file_control,
274 sqlite3_memory_highwater,
276 #ifdef SQLITE_MUTEX_NOOP
290 sqlite3_release_memory,
291 sqlite3_result_error_nomem,
292 sqlite3_result_error_toobig,
294 sqlite3_soft_heap_limit,
296 sqlite3_vfs_register,
297 sqlite3_vfs_unregister,
303 sqlite3_result_zeroblob,
304 sqlite3_result_error_code,
305 sqlite3_test_control,
307 sqlite3_context_db_handle,
312 sqlite3_extended_result_codes,
320 ** Attempt to load an SQLite extension library contained in the file
321 ** zFile. The entry point is zProc. zProc may be 0 in which case a
322 ** default entry point name (sqlite3_extension_init) is used. Use
323 ** of the default name is recommended.
325 ** Return SQLITE_OK on success and SQLITE_ERROR if something goes wrong.
327 ** If an error occurs and pzErrMsg is not 0, then fill *pzErrMsg with
328 ** error message text. The calling function should free this memory
329 ** by calling sqlite3DbFree(db, ).
331 static int sqlite3LoadExtension(
332 sqlite3 *db, /* Load the extension into this database connection */
333 const char *zFile, /* Name of the shared library containing extension */
334 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
335 char **pzErrMsg /* Put error message here if not 0 */
337 sqlite3_vfs *pVfs = db->pVfs;
339 int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*);
343 /* Ticket #1863. To avoid a creating security problems for older
344 ** applications that relink against newer versions of SQLite, the
345 ** ability to run load_extension is turned off by default. One
346 ** must call sqlite3_enable_load_extension() to turn on extension
347 ** loading. Otherwise you get the following error.
349 if( (db->flags & SQLITE_LoadExtension)==0 ){
351 *pzErrMsg = sqlite3_mprintf("not authorized");
357 zProc = "sqlite3_extension_init";
360 handle = sqlite3OsDlOpen(pVfs, zFile);
364 zErr[sizeof(zErr)-1] = '\0';
365 sqlite3_snprintf(sizeof(zErr)-1, zErr,
366 "unable to open shared library [%s]", zFile);
367 sqlite3OsDlError(pVfs, sizeof(zErr)-1, zErr);
368 *pzErrMsg = sqlite3DbStrDup(0, zErr);
372 xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*))
373 sqlite3OsDlSym(pVfs, handle, zProc);
377 zErr[sizeof(zErr)-1] = '\0';
378 sqlite3_snprintf(sizeof(zErr)-1, zErr,
379 "no entry point [%s] in shared library [%s]", zProc,zFile);
380 sqlite3OsDlError(pVfs, sizeof(zErr)-1, zErr);
381 *pzErrMsg = sqlite3DbStrDup(0, zErr);
382 sqlite3OsDlClose(pVfs, handle);
385 }else if( xInit(db, &zErrmsg, &sqlite3Apis) ){
387 *pzErrMsg = sqlite3_mprintf("error during initialization: %s", zErrmsg);
389 sqlite3_free(zErrmsg);
390 sqlite3OsDlClose(pVfs, handle);
394 /* Append the new shared library handle to the db->aExtension array. */
395 aHandle = sqlite3DbMallocZero(db, sizeof(handle)*(db->nExtension+1));
399 if( db->nExtension>0 ){
400 memcpy(aHandle, db->aExtension, sizeof(handle)*db->nExtension);
402 sqlite3DbFree(db, db->aExtension);
403 db->aExtension = aHandle;
405 db->aExtension[db->nExtension++] = handle;
408 int sqlite3_load_extension(
409 sqlite3 *db, /* Load the extension into this database connection */
410 const char *zFile, /* Name of the shared library containing extension */
411 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
412 char **pzErrMsg /* Put error message here if not 0 */
415 sqlite3_mutex_enter(db->mutex);
416 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);
417 sqlite3_mutex_leave(db->mutex);
422 ** Call this routine when the database connection is closing in order
423 ** to clean up loaded extensions
425 void sqlite3CloseExtensions(sqlite3 *db){
427 assert( sqlite3_mutex_held(db->mutex) );
428 for(i=0; i<db->nExtension; i++){
429 sqlite3OsDlClose(db->pVfs, db->aExtension[i]);
431 sqlite3DbFree(db, db->aExtension);
435 ** Enable or disable extension loading. Extension loading is disabled by
436 ** default so as not to open security holes in older applications.
438 int sqlite3_enable_load_extension(sqlite3 *db, int onoff){
439 sqlite3_mutex_enter(db->mutex);
441 db->flags |= SQLITE_LoadExtension;
443 db->flags &= ~SQLITE_LoadExtension;
445 sqlite3_mutex_leave(db->mutex);
449 #endif /* SQLITE_OMIT_LOAD_EXTENSION */
452 ** The auto-extension code added regardless of whether or not extension
453 ** loading is supported. We need a dummy sqlite3Apis pointer for that
454 ** code if regular extension loading is not available. This is that
457 #ifdef SQLITE_OMIT_LOAD_EXTENSION
458 static const sqlite3_api_routines sqlite3Apis = { 0 };
463 ** The following object holds the list of automatically loaded
466 ** This list is shared across threads. The SQLITE_MUTEX_STATIC_MASTER
467 ** mutex must be held while accessing this list.
470 int nExt; /* Number of entries in aExt[] */
471 void **aExt; /* Pointers to the extension init functions */
472 } autoext = { 0, 0 };
476 ** Register a statically linked extension that is automatically
477 ** loaded by every new database connection.
479 int sqlite3_auto_extension(void *xInit){
481 #ifndef SQLITE_OMIT_AUTOINIT
482 rc = sqlite3_initialize();
489 #ifndef SQLITE_MUTEX_NOOP
490 sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
492 sqlite3_mutex_enter(mutex);
493 for(i=0; i<autoext.nExt; i++){
494 if( autoext.aExt[i]==xInit ) break;
496 if( i==autoext.nExt ){
497 int nByte = (autoext.nExt+1)*sizeof(autoext.aExt[0]);
499 aNew = sqlite3_realloc(autoext.aExt, nByte);
504 autoext.aExt[autoext.nExt] = xInit;
508 sqlite3_mutex_leave(mutex);
509 assert( (rc&0xff)==rc );
515 ** Reset the automatic extension loading mechanism.
517 void sqlite3_reset_auto_extension(void){
518 #ifndef SQLITE_OMIT_AUTOINIT
519 if( sqlite3_initialize()==SQLITE_OK )
522 #ifndef SQLITE_MUTEX_NOOP
523 sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
525 sqlite3_mutex_enter(mutex);
526 sqlite3_free(autoext.aExt);
529 sqlite3_mutex_leave(mutex);
534 ** Load all automatic extensions.
536 int sqlite3AutoLoadExtensions(sqlite3 *db){
540 int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*);
542 if( autoext.nExt==0 ){
543 /* Common case: early out without every having to acquire a mutex */
548 #ifndef SQLITE_MUTEX_NOOP
549 sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
551 sqlite3_mutex_enter(mutex);
552 if( i>=autoext.nExt ){
556 xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*))
559 sqlite3_mutex_leave(mutex);
560 if( xInit && xInit(db, &zErrmsg, &sqlite3Apis) ){
561 sqlite3Error(db, SQLITE_ERROR,
562 "automatic extension loading failed: %s", zErrmsg);
565 sqlite3_free(zErrmsg);