blob: 8733cf56e23f4248571947f10e41657436e2dd4c [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);
102 sqlite3_reset(stmt);
Max00b37152017-02-20 11:09:27 +0100103}
104
Neels Hofmeyrf3144592017-10-06 03:40:52 +0200105/** bind text arg and do proper cleanup in case of failure. If param_name is
106 * NULL, bind to the first parameter (useful for SQL statements that have only
107 * one parameter). */
108bool db_bind_text(sqlite3_stmt *stmt, const char *param_name, const char *text)
Max00b37152017-02-20 11:09:27 +0100109{
Neels Hofmeyrf3144592017-10-06 03:40:52 +0200110 int rc;
111 int idx = param_name ? sqlite3_bind_parameter_index(stmt, param_name) : 1;
112 if (idx < 1) {
113 LOGP(DDB, LOGL_ERROR, "Error composing SQL, cannot bind parameter '%s'\n",
114 param_name);
115 return false;
116 }
117 rc = sqlite3_bind_text(stmt, idx, text, -1, SQLITE_STATIC);
Max00b37152017-02-20 11:09:27 +0100118 if (rc != SQLITE_OK) {
Neels Hofmeyrf3144592017-10-06 03:40:52 +0200119 LOGP(DDB, LOGL_ERROR, "Error binding text to SQL parameter %s: %d\n",
120 param_name ? param_name : "#1", rc);
Max00b37152017-02-20 11:09:27 +0100121 db_remove_reset(stmt);
122 return false;
123 }
Max00b37152017-02-20 11:09:27 +0100124 return true;
125}
126
Neels Hofmeyr28da26e2017-10-06 03:44:57 +0200127/** bind int arg and do proper cleanup in case of failure. If param_name is
128 * NULL, bind to the first parameter (useful for SQL statements that have only
129 * one parameter). */
130bool db_bind_int(sqlite3_stmt *stmt, const char *param_name, int nr)
131{
132 int rc;
133 int idx = param_name ? sqlite3_bind_parameter_index(stmt, param_name) : 1;
134 if (idx < 1) {
135 LOGP(DDB, LOGL_ERROR, "Error composing SQL, cannot bind parameter '%s'\n",
136 param_name);
137 return false;
138 }
139 rc = sqlite3_bind_int(stmt, idx, nr);
140 if (rc != SQLITE_OK) {
141 LOGP(DDB, LOGL_ERROR, "Error binding int64 to SQL parameter %s: %d\n",
142 param_name ? param_name : "#1", rc);
143 db_remove_reset(stmt);
144 return false;
145 }
146 return true;
147}
148
149/** bind int64 arg and do proper cleanup in case of failure. If param_name is
150 * NULL, bind to the first parameter (useful for SQL statements that have only
151 * one parameter). */
152bool db_bind_int64(sqlite3_stmt *stmt, const char *param_name, int64_t nr)
153{
154 int rc;
155 int idx = param_name ? sqlite3_bind_parameter_index(stmt, param_name) : 1;
156 if (idx < 1) {
157 LOGP(DDB, LOGL_ERROR, "Error composing SQL, cannot bind parameter '%s'\n",
158 param_name);
159 return false;
160 }
161 rc = sqlite3_bind_int64(stmt, idx, nr);
162 if (rc != SQLITE_OK) {
163 LOGP(DDB, LOGL_ERROR, "Error binding int64 to SQL parameter %s: %d\n",
164 param_name ? param_name : "#1", rc);
165 db_remove_reset(stmt);
166 return false;
167 }
168 return true;
169}
170
Harald Weltee72cf552016-04-28 07:18:49 +0200171void db_close(struct db_context *dbc)
172{
173 unsigned int i;
174
175 for (i = 0; i < ARRAY_SIZE(dbc->stmt); i++) {
176 /* it is ok to call finalize on NULL */
177 sqlite3_finalize(dbc->stmt[i]);
178 }
179 sqlite3_close(dbc->db);
180 talloc_free(dbc);
181}
182
Neels Hofmeyr7750d2c2017-10-24 23:26:27 +0200183static int db_bootstrap(struct db_context *dbc)
184{
185 int i;
186 for (i = 0; i < ARRAY_SIZE(stmt_bootstrap_sql); i++) {
187 int rc;
188 sqlite3_stmt *stmt;
189
190 rc = sqlite3_prepare_v2(dbc->db, stmt_bootstrap_sql[i], -1,
191 &stmt, NULL);
192 if (rc != SQLITE_OK) {
193 LOGP(DDB, LOGL_ERROR, "Unable to prepare SQL statement '%s'\n",
194 stmt_bootstrap_sql[i]);
195 return -1;
196 }
197
198 /* execute the statement */
199 rc = sqlite3_step(stmt);
200 db_remove_reset(stmt);
201 if (rc != SQLITE_DONE) {
202 LOGP(DDB, LOGL_ERROR, "Cannot bootstrap database: SQL error: (%d) %s,"
203 " during stmt '%s'",
204 rc, sqlite3_errmsg(dbc->db),
205 stmt_bootstrap_sql[i]);
206 return -1;
207 }
208 }
209 return 0;
210}
211
Harald Weltee72cf552016-04-28 07:18:49 +0200212struct db_context *db_open(void *ctx, const char *fname)
213{
214 struct db_context *dbc = talloc_zero(ctx, struct db_context);
215 unsigned int i;
216 int rc;
Neels Hofmeyrcd83b8a2017-10-06 04:20:37 +0200217 bool has_sqlite_config_sqllog = false;
Harald Weltee72cf552016-04-28 07:18:49 +0200218
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100219 LOGP(DDB, LOGL_NOTICE, "using database: %s\n", fname);
Harald Weltee72cf552016-04-28 07:18:49 +0200220 LOGP(DDB, LOGL_INFO, "Compiled against SQLite3 lib version %s\n", SQLITE_VERSION);
221 LOGP(DDB, LOGL_INFO, "Running with SQLite3 lib version %s\n", sqlite3_libversion());
222
223 dbc->fname = talloc_strdup(dbc, fname);
224
225 for (i = 0; i < 0xfffff; i++) {
226 const char *o = sqlite3_compileoption_get(i);
227 if (!o)
228 break;
Neels Hofmeyre9c0c5b2017-10-10 16:52:22 +0200229 LOGP(DDB, LOGL_DEBUG, "SQLite3 compiled with '%s'\n", o);
Neels Hofmeyrcd83b8a2017-10-06 04:20:37 +0200230 if (!strcmp(o, "ENABLE_SQLLOG"))
231 has_sqlite_config_sqllog = true;
Harald Weltee72cf552016-04-28 07:18:49 +0200232 }
233
234 rc = sqlite3_config(SQLITE_CONFIG_LOG, sql3_error_log_cb, NULL);
235 if (rc != SQLITE_OK)
Neels Hofmeyre9c0c5b2017-10-10 16:52:22 +0200236 LOGP(DDB, LOGL_NOTICE, "Unable to set SQLite3 error log callback\n");
Harald Weltee72cf552016-04-28 07:18:49 +0200237
Neels Hofmeyrcd83b8a2017-10-06 04:20:37 +0200238 if (has_sqlite_config_sqllog) {
239 rc = sqlite3_config(SQLITE_CONFIG_SQLLOG, sql3_sql_log_cb, NULL);
240 if (rc != SQLITE_OK)
241 LOGP(DDB, LOGL_NOTICE, "Unable to set SQLite3 SQL log callback\n");
242 } else
243 LOGP(DDB, LOGL_DEBUG, "Not setting SQL log callback:"
244 " SQLite3 compiled without support for it\n");
Harald Weltee72cf552016-04-28 07:18:49 +0200245
246 rc = sqlite3_open(dbc->fname, &dbc->db);
247 if (rc != SQLITE_OK) {
248 LOGP(DDB, LOGL_ERROR, "Unable to open DB; rc = %d\n", rc);
249 talloc_free(dbc);
250 return NULL;
251 }
252
253 /* enable extended result codes */
254 rc = sqlite3_extended_result_codes(dbc->db, 1);
255 if (rc != SQLITE_OK)
Neels Hofmeyre9c0c5b2017-10-10 16:52:22 +0200256 LOGP(DDB, LOGL_ERROR, "Unable to enable SQLite3 extended result codes\n");
Harald Weltee72cf552016-04-28 07:18:49 +0200257
Harald Welteabd1a542016-05-03 18:50:41 +0200258 char *err_msg;
259 rc = sqlite3_exec(dbc->db, "PRAGMA journal_mode=WAL; PRAGMA synchonous = NORMAL;", 0, 0, &err_msg);
260 if (rc != SQLITE_OK)
261 LOGP(DDB, LOGL_ERROR, "Unable to set Write-Ahead Logging: %s\n",
262 err_msg);
263
Neels Hofmeyr7750d2c2017-10-24 23:26:27 +0200264 db_bootstrap(dbc);
265
Harald Weltee72cf552016-04-28 07:18:49 +0200266 /* prepare all SQL statements */
267 for (i = 0; i < ARRAY_SIZE(dbc->stmt); i++) {
268 rc = sqlite3_prepare_v2(dbc->db, stmt_sql[i], -1,
269 &dbc->stmt[i], NULL);
270 if (rc != SQLITE_OK) {
271 LOGP(DDB, LOGL_ERROR, "Unable to prepare SQL statement '%s'\n", stmt_sql[i]);
272 goto out_free;
273 }
274 }
275
276 return dbc;
277out_free:
278 db_close(dbc);
279 return NULL;
280}