blob: 4136e3924cfb3e1d01707c3533d5913400d66462 [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"
28
Neels Hofmeyr9c2bbc82017-10-09 17:30:32 +020029#define SEL_COLUMNS \
30 "id," \
31 "imsi," \
32 "msisdn," \
33 "vlr_number," \
34 "sgsn_number," \
35 "sgsn_address," \
36 "periodic_lu_tmr," \
37 "periodic_rau_tau_tmr," \
38 "nam_cs," \
39 "nam_ps," \
40 "lmsi," \
41 "ms_purged_cs," \
42 "ms_purged_ps"
43
Harald Weltee72cf552016-04-28 07:18:49 +020044static const char *stmt_sql[] = {
Neels Hofmeyr9c2bbc82017-10-09 17:30:32 +020045 [DB_STMT_SEL_BY_IMSI] = "SELECT " SEL_COLUMNS " FROM subscriber WHERE imsi = ?",
46 [DB_STMT_SEL_BY_MSISDN] = "SELECT " SEL_COLUMNS " FROM subscriber WHERE msisdn = ?",
47 [DB_STMT_SEL_BY_ID] = "SELECT " SEL_COLUMNS " FROM subscriber WHERE id = ?",
Neels Hofmeyrdd783052017-10-09 17:36:08 +020048 [DB_STMT_UPD_VLR_BY_ID] = "UPDATE subscriber SET vlr_number = $number WHERE id = $subscriber_id",
49 [DB_STMT_UPD_SGSN_BY_ID] = "UPDATE subscriber SET sgsn_number = $number WHERE id = $subscriber_id",
Neels Hofmeyr0cac0a02017-10-09 17:47:21 +020050 [DB_STMT_AUC_BY_IMSI] =
51 "SELECT id, algo_id_2g, ki, algo_id_3g, k, op, opc, sqn, ind_bitlen"
52 " FROM subscriber"
53 " LEFT JOIN auc_2g ON auc_2g.subscriber_id = subscriber.id"
54 " LEFT JOIN auc_3g ON auc_3g.subscriber_id = subscriber.id"
55 " WHERE imsi = ?",
Neels Hofmeyr4bde9492017-10-06 03:09:34 +020056 [DB_STMT_AUC_UPD_SQN] = "UPDATE auc_3g SET sqn = ? WHERE subscriber_id = ?",
Neels Hofmeyre50121e2017-10-09 17:48:51 +020057 [DB_STMT_UPD_PURGE_CS_BY_IMSI] = "UPDATE subscriber SET ms_purged_cs = $val WHERE imsi = $imsi",
58 [DB_STMT_UPD_PURGE_PS_BY_IMSI] = "UPDATE subscriber SET ms_purged_ps = $val WHERE imsi = $imsi",
Neels Hofmeyre8ccd502017-10-06 04:10:06 +020059 [DB_STMT_UPD_NAM_CS_BY_IMSI] = "UPDATE subscriber SET nam_cs = $val WHERE imsi = $imsi",
60 [DB_STMT_UPD_NAM_PS_BY_IMSI] = "UPDATE subscriber SET nam_ps = $val WHERE imsi = $imsi",
Neels Hofmeyrf7c3e6e2017-10-09 17:55:16 +020061 [DB_STMT_SUBSCR_CREATE] = "INSERT INTO subscriber (imsi) VALUES ($imsi)",
62 [DB_STMT_DEL_BY_ID] = "DELETE FROM subscriber WHERE id = $subscriber_id",
63 [DB_STMT_SET_MSISDN_BY_IMSI] = "UPDATE subscriber SET msisdn = $msisdn WHERE imsi = $imsi",
Neels Hofmeyr1332a172017-10-10 02:25:00 +020064 [DB_STMT_AUC_2G_INSERT] =
65 "INSERT INTO auc_2g (subscriber_id, algo_id_2g, ki)"
66 " VALUES($subscriber_id, $algo_id_2g, $ki)",
67 [DB_STMT_AUC_2G_DELETE] = "DELETE FROM auc_2g WHERE subscriber_id = $subscriber_id",
68 [DB_STMT_AUC_3G_INSERT] =
69 "INSERT INTO auc_3g (subscriber_id, algo_id_3g, k, op, opc, ind_bitlen)"
70 " VALUES($subscriber_id, $algo_id_3g, $k, $op, $opc, $ind_bitlen)",
71 [DB_STMT_AUC_3G_DELETE] = "DELETE FROM auc_3g WHERE subscriber_id = $subscriber_id",
Harald Weltee72cf552016-04-28 07:18:49 +020072};
73
74static void sql3_error_log_cb(void *arg, int err_code, const char *msg)
75{
76 LOGP(DDB, LOGL_ERROR, "(%d) %s\n", err_code, msg);
77}
78
79static void sql3_sql_log_cb(void *arg, sqlite3 *s3, const char *stmt, int type)
80{
81 switch (type) {
82 case 0:
83 LOGP(DDB, LOGL_DEBUG, "Opened database\n");
84 break;
85 case 1:
Max58d4a842017-02-20 11:06:12 +010086 LOGP(DDB, LOGL_DEBUG, "%s\n", stmt);
Harald Weltee72cf552016-04-28 07:18:49 +020087 break;
88 case 2:
89 LOGP(DDB, LOGL_DEBUG, "Closed database\n");
90 break;
91 default:
92 LOGP(DDB, LOGL_DEBUG, "Unknown %d\n", type);
93 break;
94 }
95}
96
Max00b37152017-02-20 11:09:27 +010097/* remove bindings and reset statement to be re-executed */
Neels Hofmeyrd7d96972017-10-06 03:50:30 +020098void db_remove_reset(sqlite3_stmt *stmt)
Max00b37152017-02-20 11:09:27 +010099{
Neels Hofmeyrd7d96972017-10-06 03:50:30 +0200100 sqlite3_clear_bindings(stmt);
101 sqlite3_reset(stmt);
Max00b37152017-02-20 11:09:27 +0100102}
103
Neels Hofmeyrf3144592017-10-06 03:40:52 +0200104/** bind text arg and do proper cleanup in case of failure. If param_name is
105 * NULL, bind to the first parameter (useful for SQL statements that have only
106 * one parameter). */
107bool db_bind_text(sqlite3_stmt *stmt, const char *param_name, const char *text)
Max00b37152017-02-20 11:09:27 +0100108{
Neels Hofmeyrf3144592017-10-06 03:40:52 +0200109 int rc;
110 int idx = param_name ? sqlite3_bind_parameter_index(stmt, param_name) : 1;
111 if (idx < 1) {
112 LOGP(DDB, LOGL_ERROR, "Error composing SQL, cannot bind parameter '%s'\n",
113 param_name);
114 return false;
115 }
116 rc = sqlite3_bind_text(stmt, idx, text, -1, SQLITE_STATIC);
Max00b37152017-02-20 11:09:27 +0100117 if (rc != SQLITE_OK) {
Neels Hofmeyrf3144592017-10-06 03:40:52 +0200118 LOGP(DDB, LOGL_ERROR, "Error binding text to SQL parameter %s: %d\n",
119 param_name ? param_name : "#1", rc);
Max00b37152017-02-20 11:09:27 +0100120 db_remove_reset(stmt);
121 return false;
122 }
Max00b37152017-02-20 11:09:27 +0100123 return true;
124}
125
Neels Hofmeyr28da26e2017-10-06 03:44:57 +0200126/** bind int arg and do proper cleanup in case of failure. If param_name is
127 * NULL, bind to the first parameter (useful for SQL statements that have only
128 * one parameter). */
129bool db_bind_int(sqlite3_stmt *stmt, const char *param_name, int nr)
130{
131 int rc;
132 int idx = param_name ? sqlite3_bind_parameter_index(stmt, param_name) : 1;
133 if (idx < 1) {
134 LOGP(DDB, LOGL_ERROR, "Error composing SQL, cannot bind parameter '%s'\n",
135 param_name);
136 return false;
137 }
138 rc = sqlite3_bind_int(stmt, idx, nr);
139 if (rc != SQLITE_OK) {
140 LOGP(DDB, LOGL_ERROR, "Error binding int64 to SQL parameter %s: %d\n",
141 param_name ? param_name : "#1", rc);
142 db_remove_reset(stmt);
143 return false;
144 }
145 return true;
146}
147
148/** bind int64 arg and do proper cleanup in case of failure. If param_name is
149 * NULL, bind to the first parameter (useful for SQL statements that have only
150 * one parameter). */
151bool db_bind_int64(sqlite3_stmt *stmt, const char *param_name, int64_t nr)
152{
153 int rc;
154 int idx = param_name ? sqlite3_bind_parameter_index(stmt, param_name) : 1;
155 if (idx < 1) {
156 LOGP(DDB, LOGL_ERROR, "Error composing SQL, cannot bind parameter '%s'\n",
157 param_name);
158 return false;
159 }
160 rc = sqlite3_bind_int64(stmt, idx, nr);
161 if (rc != SQLITE_OK) {
162 LOGP(DDB, LOGL_ERROR, "Error binding int64 to SQL parameter %s: %d\n",
163 param_name ? param_name : "#1", rc);
164 db_remove_reset(stmt);
165 return false;
166 }
167 return true;
168}
169
Harald Weltee72cf552016-04-28 07:18:49 +0200170void db_close(struct db_context *dbc)
171{
172 unsigned int i;
173
174 for (i = 0; i < ARRAY_SIZE(dbc->stmt); i++) {
175 /* it is ok to call finalize on NULL */
176 sqlite3_finalize(dbc->stmt[i]);
177 }
178 sqlite3_close(dbc->db);
179 talloc_free(dbc);
180}
181
182struct db_context *db_open(void *ctx, const char *fname)
183{
184 struct db_context *dbc = talloc_zero(ctx, struct db_context);
185 unsigned int i;
186 int rc;
Neels Hofmeyrcd83b8a2017-10-06 04:20:37 +0200187 bool has_sqlite_config_sqllog = false;
Harald Weltee72cf552016-04-28 07:18:49 +0200188
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100189 LOGP(DDB, LOGL_NOTICE, "using database: %s\n", fname);
Harald Weltee72cf552016-04-28 07:18:49 +0200190 LOGP(DDB, LOGL_INFO, "Compiled against SQLite3 lib version %s\n", SQLITE_VERSION);
191 LOGP(DDB, LOGL_INFO, "Running with SQLite3 lib version %s\n", sqlite3_libversion());
192
193 dbc->fname = talloc_strdup(dbc, fname);
194
195 for (i = 0; i < 0xfffff; i++) {
196 const char *o = sqlite3_compileoption_get(i);
197 if (!o)
198 break;
Neels Hofmeyre9c0c5b2017-10-10 16:52:22 +0200199 LOGP(DDB, LOGL_DEBUG, "SQLite3 compiled with '%s'\n", o);
Neels Hofmeyrcd83b8a2017-10-06 04:20:37 +0200200 if (!strcmp(o, "ENABLE_SQLLOG"))
201 has_sqlite_config_sqllog = true;
Harald Weltee72cf552016-04-28 07:18:49 +0200202 }
203
204 rc = sqlite3_config(SQLITE_CONFIG_LOG, sql3_error_log_cb, NULL);
205 if (rc != SQLITE_OK)
Neels Hofmeyre9c0c5b2017-10-10 16:52:22 +0200206 LOGP(DDB, LOGL_NOTICE, "Unable to set SQLite3 error log callback\n");
Harald Weltee72cf552016-04-28 07:18:49 +0200207
Neels Hofmeyrcd83b8a2017-10-06 04:20:37 +0200208 if (has_sqlite_config_sqllog) {
209 rc = sqlite3_config(SQLITE_CONFIG_SQLLOG, sql3_sql_log_cb, NULL);
210 if (rc != SQLITE_OK)
211 LOGP(DDB, LOGL_NOTICE, "Unable to set SQLite3 SQL log callback\n");
212 } else
213 LOGP(DDB, LOGL_DEBUG, "Not setting SQL log callback:"
214 " SQLite3 compiled without support for it\n");
Harald Weltee72cf552016-04-28 07:18:49 +0200215
216 rc = sqlite3_open(dbc->fname, &dbc->db);
217 if (rc != SQLITE_OK) {
218 LOGP(DDB, LOGL_ERROR, "Unable to open DB; rc = %d\n", rc);
219 talloc_free(dbc);
220 return NULL;
221 }
222
223 /* enable extended result codes */
224 rc = sqlite3_extended_result_codes(dbc->db, 1);
225 if (rc != SQLITE_OK)
Neels Hofmeyre9c0c5b2017-10-10 16:52:22 +0200226 LOGP(DDB, LOGL_ERROR, "Unable to enable SQLite3 extended result codes\n");
Harald Weltee72cf552016-04-28 07:18:49 +0200227
Harald Welteabd1a542016-05-03 18:50:41 +0200228 char *err_msg;
229 rc = sqlite3_exec(dbc->db, "PRAGMA journal_mode=WAL; PRAGMA synchonous = NORMAL;", 0, 0, &err_msg);
230 if (rc != SQLITE_OK)
231 LOGP(DDB, LOGL_ERROR, "Unable to set Write-Ahead Logging: %s\n",
232 err_msg);
233
Harald Weltee72cf552016-04-28 07:18:49 +0200234 /* prepare all SQL statements */
235 for (i = 0; i < ARRAY_SIZE(dbc->stmt); i++) {
236 rc = sqlite3_prepare_v2(dbc->db, stmt_sql[i], -1,
237 &dbc->stmt[i], NULL);
238 if (rc != SQLITE_OK) {
239 LOGP(DDB, LOGL_ERROR, "Unable to prepare SQL statement '%s'\n", stmt_sql[i]);
240 goto out_free;
241 }
242 }
243
244 return dbc;
245out_free:
246 db_close(dbc);
247 return NULL;
248}