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