blob: d16f8ecaeea19a210c745bd77372503b0534c423 [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
Neels Hofmeyr9c2bbc82017-10-09 17:30:32 +020030#define SEL_COLUMNS \
31 "id," \
32 "imsi," \
33 "msisdn," \
34 "vlr_number," \
35 "sgsn_number," \
36 "sgsn_address," \
37 "periodic_lu_tmr," \
38 "periodic_rau_tau_tmr," \
39 "nam_cs," \
40 "nam_ps," \
41 "lmsi," \
42 "ms_purged_cs," \
43 "ms_purged_ps"
44
Harald Weltee72cf552016-04-28 07:18:49 +020045static const char *stmt_sql[] = {
Neels Hofmeyr9c2bbc82017-10-09 17:30:32 +020046 [DB_STMT_SEL_BY_IMSI] = "SELECT " SEL_COLUMNS " FROM subscriber WHERE imsi = ?",
47 [DB_STMT_SEL_BY_MSISDN] = "SELECT " SEL_COLUMNS " FROM subscriber WHERE msisdn = ?",
48 [DB_STMT_SEL_BY_ID] = "SELECT " SEL_COLUMNS " FROM subscriber WHERE id = ?",
Neels Hofmeyrdd783052017-10-09 17:36:08 +020049 [DB_STMT_UPD_VLR_BY_ID] = "UPDATE subscriber SET vlr_number = $number WHERE id = $subscriber_id",
50 [DB_STMT_UPD_SGSN_BY_ID] = "UPDATE subscriber SET sgsn_number = $number WHERE id = $subscriber_id",
Neels Hofmeyr0cac0a02017-10-09 17:47:21 +020051 [DB_STMT_AUC_BY_IMSI] =
52 "SELECT id, algo_id_2g, ki, algo_id_3g, k, op, opc, sqn, ind_bitlen"
53 " FROM subscriber"
54 " LEFT JOIN auc_2g ON auc_2g.subscriber_id = subscriber.id"
55 " LEFT JOIN auc_3g ON auc_3g.subscriber_id = subscriber.id"
Neels Hofmeyrc5122f22017-10-09 23:12:57 +020056 " WHERE imsi = $imsi",
Neels Hofmeyr1cbdb702017-10-09 23:03:57 +020057 [DB_STMT_AUC_UPD_SQN] = "UPDATE auc_3g SET sqn = $sqn WHERE subscriber_id = $subscriber_id",
Neels Hofmeyre50121e2017-10-09 17:48:51 +020058 [DB_STMT_UPD_PURGE_CS_BY_IMSI] = "UPDATE subscriber SET ms_purged_cs = $val WHERE imsi = $imsi",
59 [DB_STMT_UPD_PURGE_PS_BY_IMSI] = "UPDATE subscriber SET ms_purged_ps = $val WHERE imsi = $imsi",
Neels Hofmeyre8ccd502017-10-06 04:10:06 +020060 [DB_STMT_UPD_NAM_CS_BY_IMSI] = "UPDATE subscriber SET nam_cs = $val WHERE imsi = $imsi",
61 [DB_STMT_UPD_NAM_PS_BY_IMSI] = "UPDATE subscriber SET nam_ps = $val WHERE imsi = $imsi",
Neels Hofmeyrf7c3e6e2017-10-09 17:55:16 +020062 [DB_STMT_SUBSCR_CREATE] = "INSERT INTO subscriber (imsi) VALUES ($imsi)",
63 [DB_STMT_DEL_BY_ID] = "DELETE FROM subscriber WHERE id = $subscriber_id",
64 [DB_STMT_SET_MSISDN_BY_IMSI] = "UPDATE subscriber SET msisdn = $msisdn WHERE imsi = $imsi",
Neels Hofmeyr1332a172017-10-10 02:25:00 +020065 [DB_STMT_AUC_2G_INSERT] =
66 "INSERT INTO auc_2g (subscriber_id, algo_id_2g, ki)"
67 " VALUES($subscriber_id, $algo_id_2g, $ki)",
68 [DB_STMT_AUC_2G_DELETE] = "DELETE FROM auc_2g WHERE subscriber_id = $subscriber_id",
69 [DB_STMT_AUC_3G_INSERT] =
70 "INSERT INTO auc_3g (subscriber_id, algo_id_3g, k, op, opc, ind_bitlen)"
71 " VALUES($subscriber_id, $algo_id_3g, $k, $op, $opc, $ind_bitlen)",
72 [DB_STMT_AUC_3G_DELETE] = "DELETE FROM auc_3g WHERE subscriber_id = $subscriber_id",
Harald Weltee72cf552016-04-28 07:18:49 +020073};
74
75static void sql3_error_log_cb(void *arg, int err_code, const char *msg)
76{
77 LOGP(DDB, LOGL_ERROR, "(%d) %s\n", err_code, msg);
78}
79
80static void sql3_sql_log_cb(void *arg, sqlite3 *s3, const char *stmt, int type)
81{
82 switch (type) {
83 case 0:
84 LOGP(DDB, LOGL_DEBUG, "Opened database\n");
85 break;
86 case 1:
Max58d4a842017-02-20 11:06:12 +010087 LOGP(DDB, LOGL_DEBUG, "%s\n", stmt);
Harald Weltee72cf552016-04-28 07:18:49 +020088 break;
89 case 2:
90 LOGP(DDB, LOGL_DEBUG, "Closed database\n");
91 break;
92 default:
93 LOGP(DDB, LOGL_DEBUG, "Unknown %d\n", type);
94 break;
95 }
96}
97
Max00b37152017-02-20 11:09:27 +010098/* remove bindings and reset statement to be re-executed */
Neels Hofmeyrd7d96972017-10-06 03:50:30 +020099void db_remove_reset(sqlite3_stmt *stmt)
Max00b37152017-02-20 11:09:27 +0100100{
Neels Hofmeyrd7d96972017-10-06 03:50:30 +0200101 sqlite3_clear_bindings(stmt);
Neels Hofmeyr4f3841c2017-11-07 13:24:44 +0100102 /* sqlite3_reset() just repeats an error code already evaluated during sqlite3_step(). */
103 /* coverity[CHECKED_RETURN] */
Neels Hofmeyrd7d96972017-10-06 03:50:30 +0200104 sqlite3_reset(stmt);
Max00b37152017-02-20 11:09:27 +0100105}
106
Neels Hofmeyrf3144592017-10-06 03:40:52 +0200107/** bind text arg and do proper cleanup in case of failure. If param_name is
108 * NULL, bind to the first parameter (useful for SQL statements that have only
109 * one parameter). */
110bool db_bind_text(sqlite3_stmt *stmt, const char *param_name, const char *text)
Max00b37152017-02-20 11:09:27 +0100111{
Neels Hofmeyrf3144592017-10-06 03:40:52 +0200112 int rc;
113 int idx = param_name ? sqlite3_bind_parameter_index(stmt, param_name) : 1;
114 if (idx < 1) {
115 LOGP(DDB, LOGL_ERROR, "Error composing SQL, cannot bind parameter '%s'\n",
116 param_name);
117 return false;
118 }
119 rc = sqlite3_bind_text(stmt, idx, text, -1, SQLITE_STATIC);
Max00b37152017-02-20 11:09:27 +0100120 if (rc != SQLITE_OK) {
Neels Hofmeyrf3144592017-10-06 03:40:52 +0200121 LOGP(DDB, LOGL_ERROR, "Error binding text to SQL parameter %s: %d\n",
122 param_name ? param_name : "#1", rc);
Max00b37152017-02-20 11:09:27 +0100123 db_remove_reset(stmt);
124 return false;
125 }
Max00b37152017-02-20 11:09:27 +0100126 return true;
127}
128
Neels Hofmeyr28da26e2017-10-06 03:44:57 +0200129/** bind int arg and do proper cleanup in case of failure. If param_name is
130 * NULL, bind to the first parameter (useful for SQL statements that have only
131 * one parameter). */
132bool db_bind_int(sqlite3_stmt *stmt, const char *param_name, int nr)
133{
134 int rc;
135 int idx = param_name ? sqlite3_bind_parameter_index(stmt, param_name) : 1;
136 if (idx < 1) {
137 LOGP(DDB, LOGL_ERROR, "Error composing SQL, cannot bind parameter '%s'\n",
138 param_name);
139 return false;
140 }
141 rc = sqlite3_bind_int(stmt, idx, nr);
142 if (rc != SQLITE_OK) {
143 LOGP(DDB, LOGL_ERROR, "Error binding int64 to SQL parameter %s: %d\n",
144 param_name ? param_name : "#1", rc);
145 db_remove_reset(stmt);
146 return false;
147 }
148 return true;
149}
150
151/** bind int64 arg and do proper cleanup in case of failure. If param_name is
152 * NULL, bind to the first parameter (useful for SQL statements that have only
153 * one parameter). */
154bool db_bind_int64(sqlite3_stmt *stmt, const char *param_name, int64_t nr)
155{
156 int rc;
157 int idx = param_name ? sqlite3_bind_parameter_index(stmt, param_name) : 1;
158 if (idx < 1) {
159 LOGP(DDB, LOGL_ERROR, "Error composing SQL, cannot bind parameter '%s'\n",
160 param_name);
161 return false;
162 }
163 rc = sqlite3_bind_int64(stmt, idx, nr);
164 if (rc != SQLITE_OK) {
165 LOGP(DDB, LOGL_ERROR, "Error binding int64 to SQL parameter %s: %d\n",
166 param_name ? param_name : "#1", rc);
167 db_remove_reset(stmt);
168 return false;
169 }
170 return true;
171}
172
Harald Weltee72cf552016-04-28 07:18:49 +0200173void db_close(struct db_context *dbc)
174{
175 unsigned int i;
176
177 for (i = 0; i < ARRAY_SIZE(dbc->stmt); i++) {
178 /* it is ok to call finalize on NULL */
179 sqlite3_finalize(dbc->stmt[i]);
180 }
181 sqlite3_close(dbc->db);
182 talloc_free(dbc);
183}
184
Neels Hofmeyr7750d2c2017-10-24 23:26:27 +0200185static int db_bootstrap(struct db_context *dbc)
186{
187 int i;
188 for (i = 0; i < ARRAY_SIZE(stmt_bootstrap_sql); i++) {
189 int rc;
190 sqlite3_stmt *stmt;
191
192 rc = sqlite3_prepare_v2(dbc->db, stmt_bootstrap_sql[i], -1,
193 &stmt, NULL);
194 if (rc != SQLITE_OK) {
195 LOGP(DDB, LOGL_ERROR, "Unable to prepare SQL statement '%s'\n",
196 stmt_bootstrap_sql[i]);
197 return -1;
198 }
199
200 /* execute the statement */
201 rc = sqlite3_step(stmt);
202 db_remove_reset(stmt);
203 if (rc != SQLITE_DONE) {
204 LOGP(DDB, LOGL_ERROR, "Cannot bootstrap database: SQL error: (%d) %s,"
205 " during stmt '%s'",
206 rc, sqlite3_errmsg(dbc->db),
207 stmt_bootstrap_sql[i]);
208 return -1;
209 }
210 }
211 return 0;
212}
213
Harald Weltee72cf552016-04-28 07:18:49 +0200214struct db_context *db_open(void *ctx, const char *fname)
215{
216 struct db_context *dbc = talloc_zero(ctx, struct db_context);
217 unsigned int i;
218 int rc;
Neels Hofmeyrcd83b8a2017-10-06 04:20:37 +0200219 bool has_sqlite_config_sqllog = false;
Harald Weltee72cf552016-04-28 07:18:49 +0200220
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100221 LOGP(DDB, LOGL_NOTICE, "using database: %s\n", fname);
Harald Weltee72cf552016-04-28 07:18:49 +0200222 LOGP(DDB, LOGL_INFO, "Compiled against SQLite3 lib version %s\n", SQLITE_VERSION);
223 LOGP(DDB, LOGL_INFO, "Running with SQLite3 lib version %s\n", sqlite3_libversion());
224
225 dbc->fname = talloc_strdup(dbc, fname);
226
227 for (i = 0; i < 0xfffff; i++) {
228 const char *o = sqlite3_compileoption_get(i);
229 if (!o)
230 break;
Neels Hofmeyre9c0c5b2017-10-10 16:52:22 +0200231 LOGP(DDB, LOGL_DEBUG, "SQLite3 compiled with '%s'\n", o);
Neels Hofmeyrcd83b8a2017-10-06 04:20:37 +0200232 if (!strcmp(o, "ENABLE_SQLLOG"))
233 has_sqlite_config_sqllog = true;
Harald Weltee72cf552016-04-28 07:18:49 +0200234 }
235
236 rc = sqlite3_config(SQLITE_CONFIG_LOG, sql3_error_log_cb, NULL);
237 if (rc != SQLITE_OK)
Neels Hofmeyre9c0c5b2017-10-10 16:52:22 +0200238 LOGP(DDB, LOGL_NOTICE, "Unable to set SQLite3 error log callback\n");
Harald Weltee72cf552016-04-28 07:18:49 +0200239
Neels Hofmeyrcd83b8a2017-10-06 04:20:37 +0200240 if (has_sqlite_config_sqllog) {
241 rc = sqlite3_config(SQLITE_CONFIG_SQLLOG, sql3_sql_log_cb, NULL);
242 if (rc != SQLITE_OK)
243 LOGP(DDB, LOGL_NOTICE, "Unable to set SQLite3 SQL log callback\n");
244 } else
245 LOGP(DDB, LOGL_DEBUG, "Not setting SQL log callback:"
246 " SQLite3 compiled without support for it\n");
Harald Weltee72cf552016-04-28 07:18:49 +0200247
248 rc = sqlite3_open(dbc->fname, &dbc->db);
249 if (rc != SQLITE_OK) {
250 LOGP(DDB, LOGL_ERROR, "Unable to open DB; rc = %d\n", rc);
251 talloc_free(dbc);
252 return NULL;
253 }
254
255 /* enable extended result codes */
256 rc = sqlite3_extended_result_codes(dbc->db, 1);
257 if (rc != SQLITE_OK)
Neels Hofmeyre9c0c5b2017-10-10 16:52:22 +0200258 LOGP(DDB, LOGL_ERROR, "Unable to enable SQLite3 extended result codes\n");
Harald Weltee72cf552016-04-28 07:18:49 +0200259
Harald Welteabd1a542016-05-03 18:50:41 +0200260 char *err_msg;
261 rc = sqlite3_exec(dbc->db, "PRAGMA journal_mode=WAL; PRAGMA synchonous = NORMAL;", 0, 0, &err_msg);
262 if (rc != SQLITE_OK)
263 LOGP(DDB, LOGL_ERROR, "Unable to set Write-Ahead Logging: %s\n",
264 err_msg);
265
Neels Hofmeyr7750d2c2017-10-24 23:26:27 +0200266 db_bootstrap(dbc);
267
Harald Weltee72cf552016-04-28 07:18:49 +0200268 /* prepare all SQL statements */
269 for (i = 0; i < ARRAY_SIZE(dbc->stmt); i++) {
270 rc = sqlite3_prepare_v2(dbc->db, stmt_sql[i], -1,
271 &dbc->stmt[i], NULL);
272 if (rc != SQLITE_OK) {
273 LOGP(DDB, LOGL_ERROR, "Unable to prepare SQL statement '%s'\n", stmt_sql[i]);
274 goto out_free;
275 }
276 }
277
278 return dbc;
279out_free:
280 db_close(dbc);
281 return NULL;
282}