blob: 835b8a84ea01bffc078bc49a07d05415665b085b [file] [log] [blame]
drh1e397f82006-06-08 15:28:43 +00001/*
2** 2006 June 7
3**
4** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
6**
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.
10**
11*************************************************************************
12** This file contains code used to dynamically load extensions into
13** the SQLite library.
14*/
drh1e397f82006-06-08 15:28:43 +000015
danielk19777c9aaa72008-01-01 05:49:07 +000016#ifndef SQLITE_CORE
17 #define SQLITE_CORE 1 /* Disable the API redefinition in sqlite3ext.h */
18#endif
drh1e397f82006-06-08 15:28:43 +000019#include "sqlite3ext.h"
drhf1952c52006-06-08 15:48:00 +000020#include "sqliteInt.h"
drh1e397f82006-06-08 15:28:43 +000021#include <string.h>
drh1e397f82006-06-08 15:28:43 +000022
mlcreech9323f762008-03-19 23:52:34 +000023#ifndef SQLITE_OMIT_LOAD_EXTENSION
24
drh70df4fe2006-06-13 15:12:21 +000025/*
26** Some API routines are omitted when various features are
27** excluded from a build of SQLite. Substitute a NULL pointer
28** for any missing APIs.
29*/
drh1e397f82006-06-08 15:28:43 +000030#ifndef SQLITE_ENABLE_COLUMN_METADATA
31# define sqlite3_column_database_name 0
32# define sqlite3_column_database_name16 0
33# define sqlite3_column_table_name 0
34# define sqlite3_column_table_name16 0
35# define sqlite3_column_origin_name 0
36# define sqlite3_column_origin_name16 0
37# define sqlite3_table_column_metadata 0
38#endif
39
danielk19774b2688a2006-06-20 11:01:07 +000040#ifdef SQLITE_OMIT_AUTHORIZATION
drhaf304692007-04-23 23:56:31 +000041# define sqlite3_set_authorizer 0
danielk19774b2688a2006-06-20 11:01:07 +000042#endif
43
44#ifdef SQLITE_OMIT_UTF16
drhaf304692007-04-23 23:56:31 +000045# define sqlite3_bind_text16 0
46# define sqlite3_collation_needed16 0
47# define sqlite3_column_decltype16 0
48# define sqlite3_column_name16 0
49# define sqlite3_column_text16 0
50# define sqlite3_complete16 0
51# define sqlite3_create_collation16 0
52# define sqlite3_create_function16 0
53# define sqlite3_errmsg16 0
54# define sqlite3_open16 0
55# define sqlite3_prepare16 0
56# define sqlite3_prepare16_v2 0
57# define sqlite3_result_error16 0
58# define sqlite3_result_text16 0
59# define sqlite3_result_text16be 0
60# define sqlite3_result_text16le 0
61# define sqlite3_value_text16 0
62# define sqlite3_value_text16be 0
63# define sqlite3_value_text16le 0
64# define sqlite3_column_database_name16 0
65# define sqlite3_column_table_name16 0
66# define sqlite3_column_origin_name16 0
danielk19774b2688a2006-06-20 11:01:07 +000067#endif
68
69#ifdef SQLITE_OMIT_COMPLETE
70# define sqlite3_complete 0
71# define sqlite3_complete16 0
72#endif
73
74#ifdef SQLITE_OMIT_PROGRESS_CALLBACK
75# define sqlite3_progress_handler 0
76#endif
77
78#ifdef SQLITE_OMIT_VIRTUALTABLE
79# define sqlite3_create_module 0
danielk1977b7865fb2007-06-27 11:10:03 +000080# define sqlite3_create_module_v2 0
danielk19774b2688a2006-06-20 11:01:07 +000081# define sqlite3_declare_vtab 0
82#endif
83
drhe31a1fb2007-01-26 13:08:24 +000084#ifdef SQLITE_OMIT_SHARED_CACHE
85# define sqlite3_enable_shared_cache 0
86#endif
87
88#ifdef SQLITE_OMIT_TRACE
89# define sqlite3_profile 0
90# define sqlite3_trace 0
91#endif
92
93#ifdef SQLITE_OMIT_GET_TABLE
94# define sqlite3_free_table 0
95# define sqlite3_get_table 0
96#endif
97
danielk1977a15db352007-09-14 16:20:00 +000098#ifdef SQLITE_OMIT_INCRBLOB
99#define sqlite3_bind_zeroblob 0
100#define sqlite3_blob_bytes 0
101#define sqlite3_blob_close 0
102#define sqlite3_blob_open 0
103#define sqlite3_blob_read 0
104#define sqlite3_blob_write 0
105#endif
106
drh70df4fe2006-06-13 15:12:21 +0000107/*
108** The following structure contains pointers to all SQLite API routines.
109** A pointer to this structure is passed into extensions when they are
110** loaded so that the extension can make calls back into the SQLite
111** library.
112**
113** When adding new APIs, add them to the bottom of this structure
114** in order to preserve backwards compatibility.
115**
116** Extensions that use newer APIs should first call the
117** sqlite3_libversion_number() to make sure that the API they
118** intend to use is supported by the library. Extensions should
119** also check to make sure that the pointer to the function is
120** not NULL before calling it.
121*/
drhde244782008-04-10 16:01:10 +0000122static const sqlite3_api_routines sqlite3Apis = {
drh1e397f82006-06-08 15:28:43 +0000123 sqlite3_aggregate_context,
shaneeec556d2008-10-12 00:27:53 +0000124#ifndef SQLITE_OMIT_DEPRECATED
drh1e397f82006-06-08 15:28:43 +0000125 sqlite3_aggregate_count,
shaneeec556d2008-10-12 00:27:53 +0000126#else
127 0,
128#endif
drh1e397f82006-06-08 15:28:43 +0000129 sqlite3_bind_blob,
130 sqlite3_bind_double,
131 sqlite3_bind_int,
132 sqlite3_bind_int64,
133 sqlite3_bind_null,
134 sqlite3_bind_parameter_count,
135 sqlite3_bind_parameter_index,
136 sqlite3_bind_parameter_name,
137 sqlite3_bind_text,
138 sqlite3_bind_text16,
drhc1be6322006-06-27 00:14:27 +0000139 sqlite3_bind_value,
drh1e397f82006-06-08 15:28:43 +0000140 sqlite3_busy_handler,
141 sqlite3_busy_timeout,
142 sqlite3_changes,
143 sqlite3_close,
144 sqlite3_collation_needed,
145 sqlite3_collation_needed16,
146 sqlite3_column_blob,
147 sqlite3_column_bytes,
148 sqlite3_column_bytes16,
149 sqlite3_column_count,
150 sqlite3_column_database_name,
151 sqlite3_column_database_name16,
152 sqlite3_column_decltype,
153 sqlite3_column_decltype16,
154 sqlite3_column_double,
155 sqlite3_column_int,
156 sqlite3_column_int64,
157 sqlite3_column_name,
158 sqlite3_column_name16,
159 sqlite3_column_origin_name,
160 sqlite3_column_origin_name16,
161 sqlite3_column_table_name,
162 sqlite3_column_table_name16,
163 sqlite3_column_text,
164 sqlite3_column_text16,
165 sqlite3_column_type,
danielk1977d6e8dd02006-06-15 15:38:41 +0000166 sqlite3_column_value,
drh1e397f82006-06-08 15:28:43 +0000167 sqlite3_commit_hook,
168 sqlite3_complete,
169 sqlite3_complete16,
170 sqlite3_create_collation,
171 sqlite3_create_collation16,
172 sqlite3_create_function,
173 sqlite3_create_function16,
danielk1977d6e8dd02006-06-15 15:38:41 +0000174 sqlite3_create_module,
drh1e397f82006-06-08 15:28:43 +0000175 sqlite3_data_count,
176 sqlite3_db_handle,
danielk1977d6e8dd02006-06-15 15:38:41 +0000177 sqlite3_declare_vtab,
drh1e397f82006-06-08 15:28:43 +0000178 sqlite3_enable_shared_cache,
179 sqlite3_errcode,
180 sqlite3_errmsg,
181 sqlite3_errmsg16,
182 sqlite3_exec,
shaneeec556d2008-10-12 00:27:53 +0000183#ifndef SQLITE_OMIT_DEPRECATED
drh1e397f82006-06-08 15:28:43 +0000184 sqlite3_expired,
shaneeec556d2008-10-12 00:27:53 +0000185#else
186 0,
187#endif
drh1e397f82006-06-08 15:28:43 +0000188 sqlite3_finalize,
189 sqlite3_free,
190 sqlite3_free_table,
191 sqlite3_get_autocommit,
192 sqlite3_get_auxdata,
193 sqlite3_get_table,
drhe31a1fb2007-01-26 13:08:24 +0000194 0, /* Was sqlite3_global_recover(), but that function is deprecated */
drh1e397f82006-06-08 15:28:43 +0000195 sqlite3_interrupt,
196 sqlite3_last_insert_rowid,
197 sqlite3_libversion,
198 sqlite3_libversion_number,
drh28dd4792006-06-26 21:35:44 +0000199 sqlite3_malloc,
drh1e397f82006-06-08 15:28:43 +0000200 sqlite3_mprintf,
201 sqlite3_open,
202 sqlite3_open16,
203 sqlite3_prepare,
204 sqlite3_prepare16,
205 sqlite3_profile,
206 sqlite3_progress_handler,
drh28dd4792006-06-26 21:35:44 +0000207 sqlite3_realloc,
drh1e397f82006-06-08 15:28:43 +0000208 sqlite3_reset,
209 sqlite3_result_blob,
210 sqlite3_result_double,
211 sqlite3_result_error,
212 sqlite3_result_error16,
213 sqlite3_result_int,
214 sqlite3_result_int64,
215 sqlite3_result_null,
216 sqlite3_result_text,
217 sqlite3_result_text16,
218 sqlite3_result_text16be,
219 sqlite3_result_text16le,
220 sqlite3_result_value,
221 sqlite3_rollback_hook,
222 sqlite3_set_authorizer,
223 sqlite3_set_auxdata,
224 sqlite3_snprintf,
225 sqlite3_step,
226 sqlite3_table_column_metadata,
shaneeec556d2008-10-12 00:27:53 +0000227#ifndef SQLITE_OMIT_DEPRECATED
drh1e397f82006-06-08 15:28:43 +0000228 sqlite3_thread_cleanup,
shaneeec556d2008-10-12 00:27:53 +0000229#else
230 0,
231#endif
drh1e397f82006-06-08 15:28:43 +0000232 sqlite3_total_changes,
233 sqlite3_trace,
shaneeec556d2008-10-12 00:27:53 +0000234#ifndef SQLITE_OMIT_DEPRECATED
drh1e397f82006-06-08 15:28:43 +0000235 sqlite3_transfer_bindings,
shaneeec556d2008-10-12 00:27:53 +0000236#else
237 0,
238#endif
drh1e397f82006-06-08 15:28:43 +0000239 sqlite3_update_hook,
240 sqlite3_user_data,
241 sqlite3_value_blob,
242 sqlite3_value_bytes,
243 sqlite3_value_bytes16,
244 sqlite3_value_double,
245 sqlite3_value_int,
246 sqlite3_value_int64,
247 sqlite3_value_numeric_type,
248 sqlite3_value_text,
249 sqlite3_value_text16,
250 sqlite3_value_text16be,
251 sqlite3_value_text16le,
252 sqlite3_value_type,
253 sqlite3_vmprintf,
drh70df4fe2006-06-13 15:12:21 +0000254 /*
255 ** The original API set ends here. All extensions can call any
256 ** of the APIs above provided that the pointer is not NULL. But
257 ** before calling APIs that follow, extension should check the
258 ** sqlite3_libversion_number() to make sure they are dealing with
259 ** a library that is new enough to support that API.
260 *************************************************************************
261 */
shess74093102006-09-22 23:38:21 +0000262 sqlite3_overload_function,
drh6d54da02007-03-25 19:08:46 +0000263
264 /*
265 ** Added after 3.3.13
266 */
267 sqlite3_prepare_v2,
268 sqlite3_prepare16_v2,
drha92993c2007-03-29 18:46:00 +0000269 sqlite3_clear_bindings,
drh6bf0ae72007-07-20 10:33:58 +0000270
271 /*
272 ** Added for 3.4.1
273 */
274 sqlite3_create_module_v2,
275
drh428e2822007-08-30 16:23:19 +0000276 /*
277 ** Added for 3.5.0
278 */
279 sqlite3_bind_zeroblob,
280 sqlite3_blob_bytes,
281 sqlite3_blob_close,
282 sqlite3_blob_open,
283 sqlite3_blob_read,
284 sqlite3_blob_write,
285 sqlite3_create_collation_v2,
drhcc6bb3e2007-08-31 16:11:35 +0000286 sqlite3_file_control,
drh428e2822007-08-30 16:23:19 +0000287 sqlite3_memory_highwater,
288 sqlite3_memory_used,
drh18472fa2008-10-07 15:25:48 +0000289#ifdef SQLITE_MUTEX_OMIT
drhad3e78b2007-08-30 20:09:27 +0000290 0,
291 0,
292 0,
293 0,
294 0,
295#else
drh61f6dc62007-08-30 17:15:37 +0000296 sqlite3_mutex_alloc,
297 sqlite3_mutex_enter,
298 sqlite3_mutex_free,
299 sqlite3_mutex_leave,
300 sqlite3_mutex_try,
drhad3e78b2007-08-30 20:09:27 +0000301#endif
drh428e2822007-08-30 16:23:19 +0000302 sqlite3_open_v2,
303 sqlite3_release_memory,
304 sqlite3_result_error_nomem,
305 sqlite3_result_error_toobig,
306 sqlite3_sleep,
307 sqlite3_soft_heap_limit,
308 sqlite3_vfs_find,
309 sqlite3_vfs_register,
310 sqlite3_vfs_unregister,
drh2fa18682008-03-19 14:15:34 +0000311
312 /*
313 ** Added for 3.5.8
314 */
drhe5dd20a2008-03-19 19:55:55 +0000315 sqlite3_threadsafe,
316 sqlite3_result_zeroblob,
317 sqlite3_result_error_code,
318 sqlite3_test_control,
drh2fa18682008-03-19 14:15:34 +0000319 sqlite3_randomness,
drhfa4a4b92008-03-19 21:45:51 +0000320 sqlite3_context_db_handle,
drh8b6abed2008-06-19 15:06:24 +0000321
322 /*
323 ** Added for 3.6.0
324 */
325 sqlite3_extended_result_codes,
326 sqlite3_limit,
327 sqlite3_next_stmt,
328 sqlite3_sql,
329 sqlite3_status,
drh1e397f82006-06-08 15:28:43 +0000330};
331
drh70df4fe2006-06-13 15:12:21 +0000332/*
drh1e397f82006-06-08 15:28:43 +0000333** Attempt to load an SQLite extension library contained in the file
drh428397c2006-06-17 13:21:32 +0000334** zFile. The entry point is zProc. zProc may be 0 in which case a
335** default entry point name (sqlite3_extension_init) is used. Use
336** of the default name is recommended.
drh1e397f82006-06-08 15:28:43 +0000337**
338** Return SQLITE_OK on success and SQLITE_ERROR if something goes wrong.
339**
340** If an error occurs and pzErrMsg is not 0, then fill *pzErrMsg with
341** error message text. The calling function should free this memory
drh633e6d52008-07-28 19:34:53 +0000342** by calling sqlite3DbFree(db, ).
drh1e397f82006-06-08 15:28:43 +0000343*/
drhb21c8cd2007-08-21 19:33:56 +0000344static int sqlite3LoadExtension(
drh1e397f82006-06-08 15:28:43 +0000345 sqlite3 *db, /* Load the extension into this database connection */
346 const char *zFile, /* Name of the shared library containing extension */
drh428397c2006-06-17 13:21:32 +0000347 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
drh1e397f82006-06-08 15:28:43 +0000348 char **pzErrMsg /* Put error message here if not 0 */
349){
danielk1977b4b47412007-08-17 15:53:36 +0000350 sqlite3_vfs *pVfs = db->pVfs;
drh761df872006-12-21 01:29:22 +0000351 void *handle;
drh1e397f82006-06-08 15:28:43 +0000352 int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*);
353 char *zErrmsg = 0;
drh761df872006-12-21 01:29:22 +0000354 void **aHandle;
drh50d654d2009-06-03 01:24:54 +0000355 const int nMsg = 300;
drh1e397f82006-06-08 15:28:43 +0000356
drh7aaa8782009-05-20 02:40:45 +0000357 if( pzErrMsg ) *pzErrMsg = 0;
358
drhc2e87a32006-06-27 15:16:14 +0000359 /* 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.
364 */
365 if( (db->flags & SQLITE_LoadExtension)==0 ){
366 if( pzErrMsg ){
367 *pzErrMsg = sqlite3_mprintf("not authorized");
368 }
369 return SQLITE_ERROR;
370 }
371
drh1e397f82006-06-08 15:28:43 +0000372 if( zProc==0 ){
drh428397c2006-06-17 13:21:32 +0000373 zProc = "sqlite3_extension_init";
drh1e397f82006-06-08 15:28:43 +0000374 }
375
danielk1977b4b47412007-08-17 15:53:36 +0000376 handle = sqlite3OsDlOpen(pVfs, zFile);
drh1e397f82006-06-08 15:28:43 +0000377 if( handle==0 ){
378 if( pzErrMsg ){
drhb9755982010-07-24 16:34:37 +0000379 *pzErrMsg = zErrmsg = sqlite3_malloc(nMsg);
drh50d654d2009-06-03 01:24:54 +0000380 if( zErrmsg ){
381 sqlite3_snprintf(nMsg, zErrmsg,
382 "unable to open shared library [%s]", zFile);
383 sqlite3OsDlError(pVfs, nMsg-1, zErrmsg);
drh50d654d2009-06-03 01:24:54 +0000384 }
drh1e397f82006-06-08 15:28:43 +0000385 }
386 return SQLITE_ERROR;
387 }
388 xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*))
danielk1977b4b47412007-08-17 15:53:36 +0000389 sqlite3OsDlSym(pVfs, handle, zProc);
drh1e397f82006-06-08 15:28:43 +0000390 if( xInit==0 ){
391 if( pzErrMsg ){
drhb9755982010-07-24 16:34:37 +0000392 *pzErrMsg = zErrmsg = sqlite3_malloc(nMsg);
drh50d654d2009-06-03 01:24:54 +0000393 if( zErrmsg ){
394 sqlite3_snprintf(nMsg, zErrmsg,
395 "no entry point [%s] in shared library [%s]", zProc,zFile);
396 sqlite3OsDlError(pVfs, nMsg-1, zErrmsg);
drh50d654d2009-06-03 01:24:54 +0000397 }
danielk197798cab2c2007-09-01 05:57:49 +0000398 sqlite3OsDlClose(pVfs, handle);
drh1e397f82006-06-08 15:28:43 +0000399 }
drh1e397f82006-06-08 15:28:43 +0000400 return SQLITE_ERROR;
mlcreech3a00f902008-03-04 17:45:01 +0000401 }else if( xInit(db, &zErrmsg, &sqlite3Apis) ){
drh1e397f82006-06-08 15:28:43 +0000402 if( pzErrMsg ){
403 *pzErrMsg = sqlite3_mprintf("error during initialization: %s", zErrmsg);
404 }
405 sqlite3_free(zErrmsg);
danielk1977b4b47412007-08-17 15:53:36 +0000406 sqlite3OsDlClose(pVfs, handle);
drh1e397f82006-06-08 15:28:43 +0000407 return SQLITE_ERROR;
408 }
danielk197769e777f2006-06-14 10:38:02 +0000409
410 /* Append the new shared library handle to the db->aExtension array. */
drh701bb3b2008-08-02 03:50:39 +0000411 aHandle = sqlite3DbMallocZero(db, sizeof(handle)*(db->nExtension+1));
danielk197769e777f2006-06-14 10:38:02 +0000412 if( aHandle==0 ){
413 return SQLITE_NOMEM;
414 }
415 if( db->nExtension>0 ){
drh701bb3b2008-08-02 03:50:39 +0000416 memcpy(aHandle, db->aExtension, sizeof(handle)*db->nExtension);
danielk197769e777f2006-06-14 10:38:02 +0000417 }
drh633e6d52008-07-28 19:34:53 +0000418 sqlite3DbFree(db, db->aExtension);
danielk197769e777f2006-06-14 10:38:02 +0000419 db->aExtension = aHandle;
420
drh701bb3b2008-08-02 03:50:39 +0000421 db->aExtension[db->nExtension++] = handle;
drh1e397f82006-06-08 15:28:43 +0000422 return SQLITE_OK;
drh1e397f82006-06-08 15:28:43 +0000423}
drhb21c8cd2007-08-21 19:33:56 +0000424int 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 */
429){
430 int rc;
431 sqlite3_mutex_enter(db->mutex);
432 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);
drh7aaa8782009-05-20 02:40:45 +0000433 rc = sqlite3ApiExit(db, rc);
drhb21c8cd2007-08-21 19:33:56 +0000434 sqlite3_mutex_leave(db->mutex);
435 return rc;
436}
drhf1952c52006-06-08 15:48:00 +0000437
438/*
439** Call this routine when the database connection is closing in order
440** to clean up loaded extensions
441*/
442void sqlite3CloseExtensions(sqlite3 *db){
443 int i;
drhb21c8cd2007-08-21 19:33:56 +0000444 assert( sqlite3_mutex_held(db->mutex) );
drhf1952c52006-06-08 15:48:00 +0000445 for(i=0; i<db->nExtension; i++){
danielk1977b4b47412007-08-17 15:53:36 +0000446 sqlite3OsDlClose(db->pVfs, db->aExtension[i]);
drhf1952c52006-06-08 15:48:00 +0000447 }
drh633e6d52008-07-28 19:34:53 +0000448 sqlite3DbFree(db, db->aExtension);
drhf1952c52006-06-08 15:48:00 +0000449}
450
drhc2e87a32006-06-27 15:16:14 +0000451/*
452** Enable or disable extension loading. Extension loading is disabled by
453** default so as not to open security holes in older applications.
454*/
455int sqlite3_enable_load_extension(sqlite3 *db, int onoff){
drhb21c8cd2007-08-21 19:33:56 +0000456 sqlite3_mutex_enter(db->mutex);
drhc2e87a32006-06-27 15:16:14 +0000457 if( onoff ){
458 db->flags |= SQLITE_LoadExtension;
459 }else{
460 db->flags &= ~SQLITE_LoadExtension;
461 }
drhb21c8cd2007-08-21 19:33:56 +0000462 sqlite3_mutex_leave(db->mutex);
drhc2e87a32006-06-27 15:16:14 +0000463 return SQLITE_OK;
464}
465
drhcaa639f2008-03-20 00:32:20 +0000466#endif /* SQLITE_OMIT_LOAD_EXTENSION */
drh984bfaa2008-03-19 16:08:53 +0000467
468/*
drhcaa639f2008-03-20 00:32:20 +0000469** The auto-extension code added regardless of whether or not extension
470** loading is supported. We need a dummy sqlite3Apis pointer for that
471** code if regular extension loading is not available. This is that
472** dummy pointer.
drh984bfaa2008-03-19 16:08:53 +0000473*/
drhcaa639f2008-03-20 00:32:20 +0000474#ifdef SQLITE_OMIT_LOAD_EXTENSION
drhde244782008-04-10 16:01:10 +0000475static const sqlite3_api_routines sqlite3Apis = { 0 };
drh984bfaa2008-03-19 16:08:53 +0000476#endif
477
478
drh1409be62006-08-23 20:07:20 +0000479/*
drh605264d2007-08-21 15:13:19 +0000480** The following object holds the list of automatically loaded
481** extensions.
drh1409be62006-08-23 20:07:20 +0000482**
drh605264d2007-08-21 15:13:19 +0000483** This list is shared across threads. The SQLITE_MUTEX_STATIC_MASTER
484** mutex must be held while accessing this list.
drh1409be62006-08-23 20:07:20 +0000485*/
drh1875f7a2008-12-08 18:19:17 +0000486typedef struct sqlite3AutoExtList sqlite3AutoExtList;
487static SQLITE_WSD struct sqlite3AutoExtList {
488 int nExt; /* Number of entries in aExt[] */
489 void (**aExt)(void); /* Pointers to the extension init functions */
drh78f82d12008-09-02 00:52:52 +0000490} sqlite3Autoext = { 0, 0 };
491
492/* The "wsdAutoext" macro will resolve to the autoextension
493** state vector. If writable static data is unsupported on the target,
494** we have to locate the state vector at run-time. In the more common
495** case where writable static data is supported, wsdStat can refer directly
496** to the "sqlite3Autoext" state vector declared above.
497*/
498#ifdef SQLITE_OMIT_WSD
499# define wsdAutoextInit \
drh1875f7a2008-12-08 18:19:17 +0000500 sqlite3AutoExtList *x = &GLOBAL(sqlite3AutoExtList,sqlite3Autoext)
drh78f82d12008-09-02 00:52:52 +0000501# define wsdAutoext x[0]
502#else
503# define wsdAutoextInit
504# define wsdAutoext sqlite3Autoext
505#endif
drh1409be62006-08-23 20:07:20 +0000506
507
508/*
509** Register a statically linked extension that is automatically
510** loaded by every new database connection.
511*/
drh1875f7a2008-12-08 18:19:17 +0000512int sqlite3_auto_extension(void (*xInit)(void)){
danielk197700f0faf2008-07-08 14:17:35 +0000513 int rc = SQLITE_OK;
drh40257ff2008-06-13 18:24:27 +0000514#ifndef SQLITE_OMIT_AUTOINIT
danielk197700f0faf2008-07-08 14:17:35 +0000515 rc = sqlite3_initialize();
drh40257ff2008-06-13 18:24:27 +0000516 if( rc ){
517 return rc;
518 }else
drhe265b082008-05-01 17:03:49 +0000519#endif
drh40257ff2008-06-13 18:24:27 +0000520 {
521 int i;
drh18472fa2008-10-07 15:25:48 +0000522#if SQLITE_THREADSAFE
danielk197759f8c082008-06-18 17:09:10 +0000523 sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
drh40257ff2008-06-13 18:24:27 +0000524#endif
drh78f82d12008-09-02 00:52:52 +0000525 wsdAutoextInit;
drh40257ff2008-06-13 18:24:27 +0000526 sqlite3_mutex_enter(mutex);
drh78f82d12008-09-02 00:52:52 +0000527 for(i=0; i<wsdAutoext.nExt; i++){
528 if( wsdAutoext.aExt[i]==xInit ) break;
drh1409be62006-08-23 20:07:20 +0000529 }
drh78f82d12008-09-02 00:52:52 +0000530 if( i==wsdAutoext.nExt ){
531 int nByte = (wsdAutoext.nExt+1)*sizeof(wsdAutoext.aExt[0]);
drh1875f7a2008-12-08 18:19:17 +0000532 void (**aNew)(void);
drh78f82d12008-09-02 00:52:52 +0000533 aNew = sqlite3_realloc(wsdAutoext.aExt, nByte);
drh40257ff2008-06-13 18:24:27 +0000534 if( aNew==0 ){
535 rc = SQLITE_NOMEM;
536 }else{
drh78f82d12008-09-02 00:52:52 +0000537 wsdAutoext.aExt = aNew;
538 wsdAutoext.aExt[wsdAutoext.nExt] = xInit;
539 wsdAutoext.nExt++;
drh40257ff2008-06-13 18:24:27 +0000540 }
541 }
542 sqlite3_mutex_leave(mutex);
543 assert( (rc&0xff)==rc );
544 return rc;
drh1409be62006-08-23 20:07:20 +0000545 }
drh1409be62006-08-23 20:07:20 +0000546}
547
548/*
549** Reset the automatic extension loading mechanism.
550*/
551void sqlite3_reset_auto_extension(void){
drh40257ff2008-06-13 18:24:27 +0000552#ifndef SQLITE_OMIT_AUTOINIT
553 if( sqlite3_initialize()==SQLITE_OK )
drhe265b082008-05-01 17:03:49 +0000554#endif
drh40257ff2008-06-13 18:24:27 +0000555 {
drh18472fa2008-10-07 15:25:48 +0000556#if SQLITE_THREADSAFE
danielk197759f8c082008-06-18 17:09:10 +0000557 sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
drh40257ff2008-06-13 18:24:27 +0000558#endif
drh78f82d12008-09-02 00:52:52 +0000559 wsdAutoextInit;
drh40257ff2008-06-13 18:24:27 +0000560 sqlite3_mutex_enter(mutex);
drh78f82d12008-09-02 00:52:52 +0000561 sqlite3_free(wsdAutoext.aExt);
562 wsdAutoext.aExt = 0;
563 wsdAutoext.nExt = 0;
drh40257ff2008-06-13 18:24:27 +0000564 sqlite3_mutex_leave(mutex);
565 }
drh1409be62006-08-23 20:07:20 +0000566}
567
568/*
569** Load all automatic extensions.
drh7aaa8782009-05-20 02:40:45 +0000570**
571** If anything goes wrong, set an error in the database connection.
drh1409be62006-08-23 20:07:20 +0000572*/
drh7aaa8782009-05-20 02:40:45 +0000573void sqlite3AutoLoadExtensions(sqlite3 *db){
drh1409be62006-08-23 20:07:20 +0000574 int i;
575 int go = 1;
drh1409be62006-08-23 20:07:20 +0000576 int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*);
577
drh78f82d12008-09-02 00:52:52 +0000578 wsdAutoextInit;
579 if( wsdAutoext.nExt==0 ){
drh1409be62006-08-23 20:07:20 +0000580 /* Common case: early out without every having to acquire a mutex */
drh7aaa8782009-05-20 02:40:45 +0000581 return;
drh1409be62006-08-23 20:07:20 +0000582 }
583 for(i=0; go; i++){
drh7aaa8782009-05-20 02:40:45 +0000584 char *zErrmsg;
drh18472fa2008-10-07 15:25:48 +0000585#if SQLITE_THREADSAFE
danielk197759f8c082008-06-18 17:09:10 +0000586 sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
drhe265b082008-05-01 17:03:49 +0000587#endif
danielk1977b4b47412007-08-17 15:53:36 +0000588 sqlite3_mutex_enter(mutex);
drh78f82d12008-09-02 00:52:52 +0000589 if( i>=wsdAutoext.nExt ){
drh1409be62006-08-23 20:07:20 +0000590 xInit = 0;
591 go = 0;
592 }else{
593 xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*))
drh78f82d12008-09-02 00:52:52 +0000594 wsdAutoext.aExt[i];
drh1409be62006-08-23 20:07:20 +0000595 }
danielk1977b4b47412007-08-17 15:53:36 +0000596 sqlite3_mutex_leave(mutex);
drh7aaa8782009-05-20 02:40:45 +0000597 zErrmsg = 0;
mlcreech3a00f902008-03-04 17:45:01 +0000598 if( xInit && xInit(db, &zErrmsg, &sqlite3Apis) ){
drh1409be62006-08-23 20:07:20 +0000599 sqlite3Error(db, SQLITE_ERROR,
600 "automatic extension loading failed: %s", zErrmsg);
601 go = 0;
drh1409be62006-08-23 20:07:20 +0000602 }
drh7aaa8782009-05-20 02:40:45 +0000603 sqlite3_free(zErrmsg);
drh1409be62006-08-23 20:07:20 +0000604 }
drh1409be62006-08-23 20:07:20 +0000605}