blob: 0a5117876255ba9ab1878f6231d2244ca4642ce3 [file] [log] [blame]
Harald Weltee72cf552016-04-28 07:18:49 +02001/* (C) 2015 by Harald Welte <laforge@gnumonks.org>
2 *
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 */
19
20#include <osmocom/core/utils.h>
21
Max00b37152017-02-20 11:09:27 +010022#include <stdbool.h>
Harald Weltee72cf552016-04-28 07:18:49 +020023#include <sqlite3.h>
Neels Hofmeyrcd83b8a2017-10-06 04:20:37 +020024#include <string.h>
Harald Weltee72cf552016-04-28 07:18:49 +020025
26#include "logging.h"
27#include "db.h"
Neels Hofmeyr7750d2c2017-10-24 23:26:27 +020028#include "db_bootstrap.h"
Harald Weltee72cf552016-04-28 07:18:49 +020029
Stefan Sperling638ba8c2018-12-04 15:07:29 +010030/* This constant is currently duplicated in sql/hlr.sql and must be kept in sync! */
Neels Hofmeyr2fb33f12018-12-26 01:49:53 +010031#define CURRENT_SCHEMA_VERSION 2
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +010032
Neels Hofmeyr9c2bbc82017-10-09 17:30:32 +020033#define SEL_COLUMNS \
34 "id," \
35 "imsi," \
36 "msisdn," \
37 "vlr_number," \
38 "sgsn_number," \
39 "sgsn_address," \
40 "periodic_lu_tmr," \
41 "periodic_rau_tau_tmr," \
42 "nam_cs," \
43 "nam_ps," \
44 "lmsi," \
45 "ms_purged_cs," \
Stefan Sperling638ba8c2018-12-04 15:07:29 +010046 "ms_purged_ps," \
47 "last_lu_seen"
Neels Hofmeyr9c2bbc82017-10-09 17:30:32 +020048
Harald Weltee72cf552016-04-28 07:18:49 +020049static const char *stmt_sql[] = {
Neels Hofmeyr9c2bbc82017-10-09 17:30:32 +020050 [DB_STMT_SEL_BY_IMSI] = "SELECT " SEL_COLUMNS " FROM subscriber WHERE imsi = ?",
51 [DB_STMT_SEL_BY_MSISDN] = "SELECT " SEL_COLUMNS " FROM subscriber WHERE msisdn = ?",
52 [DB_STMT_SEL_BY_ID] = "SELECT " SEL_COLUMNS " FROM subscriber WHERE id = ?",
Neels Hofmeyrdd783052017-10-09 17:36:08 +020053 [DB_STMT_UPD_VLR_BY_ID] = "UPDATE subscriber SET vlr_number = $number WHERE id = $subscriber_id",
54 [DB_STMT_UPD_SGSN_BY_ID] = "UPDATE subscriber SET sgsn_number = $number WHERE id = $subscriber_id",
Neels Hofmeyr0cac0a02017-10-09 17:47:21 +020055 [DB_STMT_AUC_BY_IMSI] =
56 "SELECT id, algo_id_2g, ki, algo_id_3g, k, op, opc, sqn, ind_bitlen"
57 " FROM subscriber"
58 " LEFT JOIN auc_2g ON auc_2g.subscriber_id = subscriber.id"
59 " LEFT JOIN auc_3g ON auc_3g.subscriber_id = subscriber.id"
Neels Hofmeyrc5122f22017-10-09 23:12:57 +020060 " WHERE imsi = $imsi",
Neels Hofmeyr1cbdb702017-10-09 23:03:57 +020061 [DB_STMT_AUC_UPD_SQN] = "UPDATE auc_3g SET sqn = $sqn WHERE subscriber_id = $subscriber_id",
Neels Hofmeyre50121e2017-10-09 17:48:51 +020062 [DB_STMT_UPD_PURGE_CS_BY_IMSI] = "UPDATE subscriber SET ms_purged_cs = $val WHERE imsi = $imsi",
63 [DB_STMT_UPD_PURGE_PS_BY_IMSI] = "UPDATE subscriber SET ms_purged_ps = $val WHERE imsi = $imsi",
Neels Hofmeyre8ccd502017-10-06 04:10:06 +020064 [DB_STMT_UPD_NAM_CS_BY_IMSI] = "UPDATE subscriber SET nam_cs = $val WHERE imsi = $imsi",
65 [DB_STMT_UPD_NAM_PS_BY_IMSI] = "UPDATE subscriber SET nam_ps = $val WHERE imsi = $imsi",
Neels Hofmeyrf7c3e6e2017-10-09 17:55:16 +020066 [DB_STMT_SUBSCR_CREATE] = "INSERT INTO subscriber (imsi) VALUES ($imsi)",
67 [DB_STMT_DEL_BY_ID] = "DELETE FROM subscriber WHERE id = $subscriber_id",
68 [DB_STMT_SET_MSISDN_BY_IMSI] = "UPDATE subscriber SET msisdn = $msisdn WHERE imsi = $imsi",
Neels Hofmeyra820ea12018-12-02 19:46:46 +010069 [DB_STMT_DELETE_MSISDN_BY_IMSI] = "UPDATE subscriber SET msisdn = NULL WHERE imsi = $imsi",
Neels Hofmeyr1332a172017-10-10 02:25:00 +020070 [DB_STMT_AUC_2G_INSERT] =
71 "INSERT INTO auc_2g (subscriber_id, algo_id_2g, ki)"
72 " VALUES($subscriber_id, $algo_id_2g, $ki)",
73 [DB_STMT_AUC_2G_DELETE] = "DELETE FROM auc_2g WHERE subscriber_id = $subscriber_id",
74 [DB_STMT_AUC_3G_INSERT] =
75 "INSERT INTO auc_3g (subscriber_id, algo_id_3g, k, op, opc, ind_bitlen)"
76 " VALUES($subscriber_id, $algo_id_3g, $k, $op, $opc, $ind_bitlen)",
77 [DB_STMT_AUC_3G_DELETE] = "DELETE FROM auc_3g WHERE subscriber_id = $subscriber_id",
Stefan Sperling638ba8c2018-12-04 15:07:29 +010078 [DB_STMT_SET_LAST_LU_SEEN] = "UPDATE subscriber SET last_lu_seen = datetime($val, 'unixepoch') WHERE id = $subscriber_id",
Neels Hofmeyr2fb33f12018-12-26 01:49:53 +010079 [DB_STMT_UPD_RAT_FLAG] = "INSERT OR REPLACE INTO subscriber_rat (subscriber_id, rat, allowed)"
80 " VALUES ($subscriber_id, $rat, $allowed)",
81 [DB_STMT_RAT_BY_ID] =
82 "SELECT rat, allowed"
83 " FROM subscriber_rat"
84 " WHERE subscriber_id = $subscriber_id",
Harald Weltee72cf552016-04-28 07:18:49 +020085};
86
87static void sql3_error_log_cb(void *arg, int err_code, const char *msg)
88{
89 LOGP(DDB, LOGL_ERROR, "(%d) %s\n", err_code, msg);
90}
91
92static void sql3_sql_log_cb(void *arg, sqlite3 *s3, const char *stmt, int type)
93{
94 switch (type) {
95 case 0:
96 LOGP(DDB, LOGL_DEBUG, "Opened database\n");
97 break;
98 case 1:
Max58d4a842017-02-20 11:06:12 +010099 LOGP(DDB, LOGL_DEBUG, "%s\n", stmt);
Harald Weltee72cf552016-04-28 07:18:49 +0200100 break;
101 case 2:
102 LOGP(DDB, LOGL_DEBUG, "Closed database\n");
103 break;
104 default:
105 LOGP(DDB, LOGL_DEBUG, "Unknown %d\n", type);
106 break;
107 }
108}
109
Max00b37152017-02-20 11:09:27 +0100110/* remove bindings and reset statement to be re-executed */
Neels Hofmeyrd7d96972017-10-06 03:50:30 +0200111void db_remove_reset(sqlite3_stmt *stmt)
Max00b37152017-02-20 11:09:27 +0100112{
Neels Hofmeyrd7d96972017-10-06 03:50:30 +0200113 sqlite3_clear_bindings(stmt);
Neels Hofmeyr4f3841c2017-11-07 13:24:44 +0100114 /* sqlite3_reset() just repeats an error code already evaluated during sqlite3_step(). */
115 /* coverity[CHECKED_RETURN] */
Neels Hofmeyrd7d96972017-10-06 03:50:30 +0200116 sqlite3_reset(stmt);
Max00b37152017-02-20 11:09:27 +0100117}
118
Neels Hofmeyrf3144592017-10-06 03:40:52 +0200119/** bind text arg and do proper cleanup in case of failure. If param_name is
120 * NULL, bind to the first parameter (useful for SQL statements that have only
121 * one parameter). */
122bool db_bind_text(sqlite3_stmt *stmt, const char *param_name, const char *text)
Max00b37152017-02-20 11:09:27 +0100123{
Neels Hofmeyrf3144592017-10-06 03:40:52 +0200124 int rc;
125 int idx = param_name ? sqlite3_bind_parameter_index(stmt, param_name) : 1;
126 if (idx < 1) {
127 LOGP(DDB, LOGL_ERROR, "Error composing SQL, cannot bind parameter '%s'\n",
128 param_name);
129 return false;
130 }
131 rc = sqlite3_bind_text(stmt, idx, text, -1, SQLITE_STATIC);
Max00b37152017-02-20 11:09:27 +0100132 if (rc != SQLITE_OK) {
Neels Hofmeyrf3144592017-10-06 03:40:52 +0200133 LOGP(DDB, LOGL_ERROR, "Error binding text to SQL parameter %s: %d\n",
134 param_name ? param_name : "#1", rc);
Max00b37152017-02-20 11:09:27 +0100135 db_remove_reset(stmt);
136 return false;
137 }
Max00b37152017-02-20 11:09:27 +0100138 return true;
139}
140
Neels Hofmeyr28da26e2017-10-06 03:44:57 +0200141/** bind int arg and do proper cleanup in case of failure. If param_name is
142 * NULL, bind to the first parameter (useful for SQL statements that have only
143 * one parameter). */
144bool db_bind_int(sqlite3_stmt *stmt, const char *param_name, int nr)
145{
146 int rc;
147 int idx = param_name ? sqlite3_bind_parameter_index(stmt, param_name) : 1;
148 if (idx < 1) {
149 LOGP(DDB, LOGL_ERROR, "Error composing SQL, cannot bind parameter '%s'\n",
150 param_name);
151 return false;
152 }
153 rc = sqlite3_bind_int(stmt, idx, nr);
154 if (rc != SQLITE_OK) {
155 LOGP(DDB, LOGL_ERROR, "Error binding int64 to SQL parameter %s: %d\n",
156 param_name ? param_name : "#1", rc);
157 db_remove_reset(stmt);
158 return false;
159 }
160 return true;
161}
162
163/** bind int64 arg and do proper cleanup in case of failure. If param_name is
164 * NULL, bind to the first parameter (useful for SQL statements that have only
165 * one parameter). */
166bool db_bind_int64(sqlite3_stmt *stmt, const char *param_name, int64_t nr)
167{
168 int rc;
169 int idx = param_name ? sqlite3_bind_parameter_index(stmt, param_name) : 1;
170 if (idx < 1) {
171 LOGP(DDB, LOGL_ERROR, "Error composing SQL, cannot bind parameter '%s'\n",
172 param_name);
173 return false;
174 }
175 rc = sqlite3_bind_int64(stmt, idx, nr);
176 if (rc != SQLITE_OK) {
177 LOGP(DDB, LOGL_ERROR, "Error binding int64 to SQL parameter %s: %d\n",
178 param_name ? param_name : "#1", rc);
179 db_remove_reset(stmt);
180 return false;
181 }
182 return true;
183}
184
Harald Weltee72cf552016-04-28 07:18:49 +0200185void db_close(struct db_context *dbc)
186{
187 unsigned int i;
Vadim Yanitskiydc17e052018-07-30 20:14:16 +0700188 int rc;
Harald Weltee72cf552016-04-28 07:18:49 +0200189
190 for (i = 0; i < ARRAY_SIZE(dbc->stmt); i++) {
191 /* it is ok to call finalize on NULL */
192 sqlite3_finalize(dbc->stmt[i]);
193 }
Vadim Yanitskiydc17e052018-07-30 20:14:16 +0700194
195 /* Ask sqlite3 to close DB */
196 rc = sqlite3_close(dbc->db);
197 if (rc != SQLITE_OK) { /* Make sure it's actually closed! */
198 LOGP(DDB, LOGL_ERROR, "Couldn't close database: (rc=%d) %s\n",
199 rc, sqlite3_errmsg(dbc->db));
200 }
201
Harald Weltee72cf552016-04-28 07:18:49 +0200202 talloc_free(dbc);
203}
204
Neels Hofmeyr7750d2c2017-10-24 23:26:27 +0200205static int db_bootstrap(struct db_context *dbc)
206{
207 int i;
208 for (i = 0; i < ARRAY_SIZE(stmt_bootstrap_sql); i++) {
209 int rc;
210 sqlite3_stmt *stmt;
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100211 rc = sqlite3_prepare_v2(dbc->db, stmt_bootstrap_sql[i], -1, &stmt, NULL);
Neels Hofmeyr7750d2c2017-10-24 23:26:27 +0200212 if (rc != SQLITE_OK) {
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100213 LOGP(DDB, LOGL_ERROR, "Unable to prepare SQL statement '%s'\n", stmt_bootstrap_sql[i]);
Vadim Yanitskiy050eb1d2018-07-30 20:48:19 +0700214 return rc;
Neels Hofmeyr7750d2c2017-10-24 23:26:27 +0200215 }
216
Neels Hofmeyr7750d2c2017-10-24 23:26:27 +0200217 rc = sqlite3_step(stmt);
218 db_remove_reset(stmt);
Vadim Yanitskiydc17e052018-07-30 20:14:16 +0700219 sqlite3_finalize(stmt);
Neels Hofmeyr7750d2c2017-10-24 23:26:27 +0200220 if (rc != SQLITE_DONE) {
221 LOGP(DDB, LOGL_ERROR, "Cannot bootstrap database: SQL error: (%d) %s,"
222 " during stmt '%s'",
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100223 rc, sqlite3_errmsg(dbc->db), stmt_bootstrap_sql[i]);
Vadim Yanitskiy050eb1d2018-07-30 20:48:19 +0700224 return rc;
Neels Hofmeyr7750d2c2017-10-24 23:26:27 +0200225 }
226 }
Vadim Yanitskiy050eb1d2018-07-30 20:48:19 +0700227 return SQLITE_OK;
Neels Hofmeyr7750d2c2017-10-24 23:26:27 +0200228}
229
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100230/* https://www.sqlite.org/fileformat2.html#storage_of_the_sql_database_schema */
231static bool db_table_exists(struct db_context *dbc, const char *table_name)
232{
233 const char *table_exists_sql = "SELECT name FROM sqlite_master WHERE type='table' AND name=?";
234 sqlite3_stmt *stmt;
235 int rc;
236
237 rc = sqlite3_prepare_v2(dbc->db, table_exists_sql, -1, &stmt, NULL);
238 if (rc != SQLITE_OK) {
239 LOGP(DDB, LOGL_ERROR, "Unable to prepare SQL statement '%s'\n", table_exists_sql);
240 return false;
241 }
242
243 if (!db_bind_text(stmt, NULL, table_name))
244 return false;
245
246 rc = sqlite3_step(stmt);
247 db_remove_reset(stmt);
248 sqlite3_finalize(stmt);
249 return (rc == SQLITE_ROW);
250}
251
252/* Indicate whether the database is initialized with tables for schema version 0.
253 * We only check for the 'subscriber' table here because Neels said so. */
254static bool db_is_bootstrapped_v0(struct db_context *dbc)
255{
256 if (!db_table_exists(dbc, "subscriber")) {
257 LOGP(DDB, LOGL_DEBUG, "Table 'subscriber' not found in database '%s'\n", dbc->fname);
258 return false;
259 }
260
261 return true;
262}
263
Stefan Sperling638ba8c2018-12-04 15:07:29 +0100264static int
265db_upgrade_v1(struct db_context *dbc)
266{
267 sqlite3_stmt *stmt;
268 int rc;
269 const char *update_stmt_sql = "ALTER TABLE subscriber ADD COLUMN last_lu_seen TIMESTAMP default NULL";
270 const char *set_schema_version_sql = "PRAGMA user_version = 1";
271
272 rc = sqlite3_prepare_v2(dbc->db, update_stmt_sql, -1, &stmt, NULL);
273 if (rc != SQLITE_OK) {
274 LOGP(DDB, LOGL_ERROR, "Unable to prepare SQL statement '%s'\n", update_stmt_sql);
275 return rc;
276 }
277 rc = sqlite3_step(stmt);
278 db_remove_reset(stmt);
279 sqlite3_finalize(stmt);
280 if (rc != SQLITE_DONE) {
281 LOGP(DDB, LOGL_ERROR, "Unable to update HLR database schema to version %d\n", 1);
282 return rc;
283 }
284
285 rc = sqlite3_prepare_v2(dbc->db, set_schema_version_sql, -1, &stmt, NULL);
286 if (rc != SQLITE_OK) {
287 LOGP(DDB, LOGL_ERROR, "Unable to prepare SQL statement '%s'\n", set_schema_version_sql);
288 return rc;
289 }
290 rc = sqlite3_step(stmt);
291 if (rc != SQLITE_DONE)
292 LOGP(DDB, LOGL_ERROR, "Unable to update HLR database schema to version %d\n", 1);
293
294 db_remove_reset(stmt);
295 sqlite3_finalize(stmt);
296 return rc;
297}
298
Neels Hofmeyr2fb33f12018-12-26 01:49:53 +0100299static int db_upgrade_v2(struct db_context *dbc)
300{
301 int i;
302 const char *stmts[] = {
303 "CREATE TABLE subscriber_rat",
304 "CREATE UNIQUE INDEX idx_subscr_rat_flag",
305 NULL
306 };
307 sqlite3_stmt *stmt = NULL;
308
309 for (i = 0; i < ARRAY_SIZE(stmts); i++) {
310 int rc;
311 int j;
312 const char *stmt_sql = NULL;
313
314 if (stmts[i] != NULL) {
315 for (j = 0; j < ARRAY_SIZE(stmt_bootstrap_sql); j++) {
316 if (strstr(stmt_bootstrap_sql[j], stmts[i])) {
317 /* make sure we have a unique match, hence also not break; here */
318 OSMO_ASSERT(!stmt_sql);
319 stmt_sql = stmt_bootstrap_sql[j];
320 }
321 }
322 } else
323 stmt_sql = "PRAGMA user_version = 2";
324 OSMO_ASSERT(stmt_sql);
325
326 rc = sqlite3_prepare_v2(dbc->db, stmt_sql, -1, &stmt, NULL);
327 if (rc != SQLITE_OK) {
328 LOGP(DDB, LOGL_ERROR, "Unable to prepare SQL statement '%s'\n", stmt_sql);
329 return rc;
330 }
331 rc = sqlite3_step(stmt);
332 db_remove_reset(stmt);
333 sqlite3_finalize(stmt);
334 if (rc != SQLITE_DONE) {
335 LOGP(DDB, LOGL_ERROR, "Unable to update HLR database schema to version 2: '%s'\n",
336 stmt_sql);
337 return rc;
338 }
339 }
340
341 return SQLITE_DONE;
342}
343
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100344static int db_get_user_version(struct db_context *dbc)
345{
346 const char *user_version_sql = "PRAGMA user_version";
347 sqlite3_stmt *stmt;
348 int version, rc;
349
350 rc = sqlite3_prepare_v2(dbc->db, user_version_sql, -1, &stmt, NULL);
351 if (rc != SQLITE_OK) {
352 LOGP(DDB, LOGL_ERROR, "Unable to prepare SQL statement '%s'\n", user_version_sql);
353 return -1;
354 }
355 rc = sqlite3_step(stmt);
356 if (rc == SQLITE_ROW) {
357 version = sqlite3_column_int(stmt, 0);
358 } else {
359 LOGP(DDB, LOGL_ERROR, "SQL statement '%s' failed: %d\n", user_version_sql, rc);
360 version = -1;
361 }
362
363 db_remove_reset(stmt);
364 sqlite3_finalize(stmt);
365 return version;
366}
367
368struct db_context *db_open(void *ctx, const char *fname, bool enable_sqlite_logging, bool allow_upgrade)
Harald Weltee72cf552016-04-28 07:18:49 +0200369{
370 struct db_context *dbc = talloc_zero(ctx, struct db_context);
371 unsigned int i;
372 int rc;
Neels Hofmeyrcd83b8a2017-10-06 04:20:37 +0200373 bool has_sqlite_config_sqllog = false;
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100374 int version;
Harald Weltee72cf552016-04-28 07:18:49 +0200375
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100376 LOGP(DDB, LOGL_NOTICE, "using database: %s\n", fname);
Harald Weltee72cf552016-04-28 07:18:49 +0200377 LOGP(DDB, LOGL_INFO, "Compiled against SQLite3 lib version %s\n", SQLITE_VERSION);
378 LOGP(DDB, LOGL_INFO, "Running with SQLite3 lib version %s\n", sqlite3_libversion());
379
380 dbc->fname = talloc_strdup(dbc, fname);
381
382 for (i = 0; i < 0xfffff; i++) {
383 const char *o = sqlite3_compileoption_get(i);
384 if (!o)
385 break;
Neels Hofmeyre9c0c5b2017-10-10 16:52:22 +0200386 LOGP(DDB, LOGL_DEBUG, "SQLite3 compiled with '%s'\n", o);
Neels Hofmeyrcd83b8a2017-10-06 04:20:37 +0200387 if (!strcmp(o, "ENABLE_SQLLOG"))
388 has_sqlite_config_sqllog = true;
Harald Weltee72cf552016-04-28 07:18:49 +0200389 }
390
Neels Hofmeyrd3814b92017-11-21 12:28:07 +0100391 if (enable_sqlite_logging) {
392 rc = sqlite3_config(SQLITE_CONFIG_LOG, sql3_error_log_cb, NULL);
393 if (rc != SQLITE_OK)
394 LOGP(DDB, LOGL_NOTICE, "Unable to set SQLite3 error log callback\n");
395 }
Harald Weltee72cf552016-04-28 07:18:49 +0200396
Neels Hofmeyrcd83b8a2017-10-06 04:20:37 +0200397 if (has_sqlite_config_sqllog) {
398 rc = sqlite3_config(SQLITE_CONFIG_SQLLOG, sql3_sql_log_cb, NULL);
399 if (rc != SQLITE_OK)
400 LOGP(DDB, LOGL_NOTICE, "Unable to set SQLite3 SQL log callback\n");
401 } else
402 LOGP(DDB, LOGL_DEBUG, "Not setting SQL log callback:"
403 " SQLite3 compiled without support for it\n");
Harald Weltee72cf552016-04-28 07:18:49 +0200404
405 rc = sqlite3_open(dbc->fname, &dbc->db);
406 if (rc != SQLITE_OK) {
407 LOGP(DDB, LOGL_ERROR, "Unable to open DB; rc = %d\n", rc);
408 talloc_free(dbc);
409 return NULL;
410 }
411
412 /* enable extended result codes */
413 rc = sqlite3_extended_result_codes(dbc->db, 1);
414 if (rc != SQLITE_OK)
Neels Hofmeyre9c0c5b2017-10-10 16:52:22 +0200415 LOGP(DDB, LOGL_ERROR, "Unable to enable SQLite3 extended result codes\n");
Harald Weltee72cf552016-04-28 07:18:49 +0200416
Harald Welteabd1a542016-05-03 18:50:41 +0200417 char *err_msg;
418 rc = sqlite3_exec(dbc->db, "PRAGMA journal_mode=WAL; PRAGMA synchonous = NORMAL;", 0, 0, &err_msg);
419 if (rc != SQLITE_OK)
420 LOGP(DDB, LOGL_ERROR, "Unable to set Write-Ahead Logging: %s\n",
421 err_msg);
422
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100423 version = db_get_user_version(dbc);
424 if (version < 0) {
425 LOGP(DDB, LOGL_ERROR, "Unable to read user version number from database '%s'\n", dbc->fname);
426 goto out_free;
427 }
428
429 /* An empty database will always report version zero. */
430 if (version == 0 && !db_is_bootstrapped_v0(dbc)) {
431 LOGP(DDB, LOGL_NOTICE, "Missing database tables detected; Bootstrapping database '%s'\n", dbc->fname);
432 rc = db_bootstrap(dbc);
433 if (rc != SQLITE_OK) {
434 LOGP(DDB, LOGL_ERROR, "Failed to bootstrap DB: (rc=%d) %s\n",
435 rc, sqlite3_errmsg(dbc->db));
436 goto out_free;
437 }
Stefan Sperling638ba8c2018-12-04 15:07:29 +0100438 version = CURRENT_SCHEMA_VERSION;
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100439 }
440
441 LOGP(DDB, LOGL_NOTICE, "Database '%s' has HLR DB schema version %d\n", dbc->fname, version);
442
443 if (version < CURRENT_SCHEMA_VERSION && allow_upgrade) {
Neels Hofmeyr2fb33f12018-12-26 01:49:53 +0100444 int orig_version = version;
445
Stefan Sperling638ba8c2018-12-04 15:07:29 +0100446 switch (version) {
447 case 0:
448 rc = db_upgrade_v1(dbc);
449 if (rc != SQLITE_DONE) {
450 LOGP(DDB, LOGL_ERROR, "Failed to upgrade HLR DB schema to version 1: (rc=%d) %s\n",
451 rc, sqlite3_errmsg(dbc->db));
452 goto out_free;
453 }
454 version = 1;
455 /* fall through */
Neels Hofmeyr2fb33f12018-12-26 01:49:53 +0100456 case 1:
457 rc = db_upgrade_v2(dbc);
458 if (rc != SQLITE_DONE) {
459 LOGP(DDB, LOGL_ERROR, "Failed to upgrade HLR DB schema to version 2: (rc=%d) %s\n",
460 rc, sqlite3_errmsg(dbc->db));
461 goto out_free;
462 }
463 version = 2;
464 /* fall through */
Stefan Sperling638ba8c2018-12-04 15:07:29 +0100465 /* case N: ... */
466 default:
467 break;
468 }
Neels Hofmeyr2fb33f12018-12-26 01:49:53 +0100469 LOGP(DDB, LOGL_NOTICE, "Database '%s' has been upgraded from HLR DB schema version %d to %d\n",
470 dbc->fname, orig_version, version);
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100471 }
472
473 if (version != CURRENT_SCHEMA_VERSION) {
474 if (version < CURRENT_SCHEMA_VERSION) {
475 LOGP(DDB, LOGL_NOTICE, "HLR DB schema version %d is outdated\n", version);
476 if (!allow_upgrade) {
Neels Hofmeyr2fb33f12018-12-26 01:49:53 +0100477 LOGP(DDB, LOGL_ERROR, "Not upgrading HLR database from schema version %d to %d; "
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100478 "use the --db-upgrade option to allow HLR database upgrades\n",
Neels Hofmeyr2fb33f12018-12-26 01:49:53 +0100479 version, CURRENT_SCHEMA_VERSION);
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100480 }
481 } else
482 LOGP(DDB, LOGL_ERROR, "HLR DB schema version %d is unknown\n", version);
483
Vadim Yanitskiy050eb1d2018-07-30 20:48:19 +0700484 goto out_free;
485 }
Neels Hofmeyr7750d2c2017-10-24 23:26:27 +0200486
Harald Weltee72cf552016-04-28 07:18:49 +0200487 /* prepare all SQL statements */
488 for (i = 0; i < ARRAY_SIZE(dbc->stmt); i++) {
489 rc = sqlite3_prepare_v2(dbc->db, stmt_sql[i], -1,
490 &dbc->stmt[i], NULL);
491 if (rc != SQLITE_OK) {
492 LOGP(DDB, LOGL_ERROR, "Unable to prepare SQL statement '%s'\n", stmt_sql[i]);
493 goto out_free;
494 }
495 }
496
497 return dbc;
498out_free:
499 db_close(dbc);
500 return NULL;
501}