blob: 9fa64152f8926a6c787d421120327a19986c906b [file] [log] [blame]
Holger Freyther12aa50d2009-01-01 18:02:05 +00001/* Simple HLR/VLR database backend using dbi */
Jan Luebbefaaa49c2008-12-27 01:07:07 +00002/* (C) 2008 by Jan Luebbe <jluebbe@debian.org>
Holger Freyther12aa50d2009-01-01 18:02:05 +00003 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Weltec2e302d2009-07-05 14:08:13 +02004 * (C) 2009 by Harald Welte <laforge@gnumonks.org>
Jan Luebbefaaa49c2008-12-27 01:07:07 +00005 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01008 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
Jan Luebbefaaa49c2008-12-27 01:07:07 +000010 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * GNU Affero General Public License for more details.
Jan Luebbefaaa49c2008-12-27 01:07:07 +000016 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Jan Luebbefaaa49c2008-12-27 01:07:07 +000019 *
20 */
21
Harald Weltef2b4cd72010-05-13 11:45:07 +020022#include <stdint.h>
23#include <inttypes.h>
Holger Freytherbde36102008-12-28 22:51:39 +000024#include <libgen.h>
Jan Luebbe7398eb92008-12-27 00:45:41 +000025#include <stdio.h>
Maxe6052c42016-06-30 10:25:49 +020026#include <stdbool.h>
Jan Luebbe5c15c852008-12-27 15:59:25 +000027#include <stdlib.h>
28#include <string.h>
Harald Welte7e310b12009-03-30 20:56:32 +000029#include <errno.h>
Jan Luebbe7398eb92008-12-27 00:45:41 +000030#include <dbi/dbi.h>
31
Harald Weltef2b4cd72010-05-13 11:45:07 +020032#include <openbsc/gsm_data.h>
Holger Hans Peter Freyther28dcbc52010-12-22 18:21:14 +010033#include <openbsc/gsm_subscriber.h>
Harald Weltef2b4cd72010-05-13 11:45:07 +020034#include <openbsc/gsm_04_11.h>
35#include <openbsc/db.h>
Harald Weltef2b4cd72010-05-13 11:45:07 +020036#include <openbsc/debug.h>
Holger Hans Peter Freytherc5faf662010-12-22 18:16:01 +010037
Harald Welted3fa84d2016-04-20 17:50:17 +020038#include <osmocom/gsm/protocol/gsm_23_003.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010039#include <osmocom/core/talloc.h>
40#include <osmocom/core/statistics.h>
41#include <osmocom/core/rate_ctr.h>
Neels Hofmeyr93bafb62017-01-13 03:12:08 +010042#include <osmocom/core/utils.h>
Harald Weltef2b4cd72010-05-13 11:45:07 +020043
Daniel Willmanncdeb8152015-10-08 16:10:23 +020044#include <openssl/rand.h>
45
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +010046/* Semi-Private-Interface (SPI) for the subscriber code */
47void subscr_direct_free(struct gsm_subscriber *subscr);
48
Holger Freytherbde36102008-12-28 22:51:39 +000049static char *db_basename = NULL;
50static char *db_dirname = NULL;
Holger Freyther1d506c82009-04-19 06:35:20 +000051static dbi_conn conn;
Jan Luebbe7398eb92008-12-27 00:45:41 +000052
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +010053#define SCHEMA_REVISION "4"
Jan Luebbebfbdeec2012-12-27 00:27:16 +010054
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +010055enum {
56 SCHEMA_META,
57 INSERT_META,
58 SCHEMA_SUBSCRIBER,
59 SCHEMA_AUTH,
60 SCHEMA_EQUIPMENT,
61 SCHEMA_EQUIPMENT_WATCH,
62 SCHEMA_SMS,
63 SCHEMA_VLR,
64 SCHEMA_APDU,
65 SCHEMA_COUNTERS,
66 SCHEMA_RATE,
67 SCHEMA_AUTHKEY,
68 SCHEMA_AUTHLAST,
69};
70
71static const char *create_stmts[] = {
72 [SCHEMA_META] = "CREATE TABLE IF NOT EXISTS Meta ("
Harald Welte7e310b12009-03-30 20:56:32 +000073 "id INTEGER PRIMARY KEY AUTOINCREMENT, "
74 "key TEXT UNIQUE NOT NULL, "
75 "value TEXT NOT NULL"
76 ")",
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +010077 [INSERT_META] = "INSERT OR IGNORE INTO Meta "
Harald Welte7e310b12009-03-30 20:56:32 +000078 "(key, value) "
79 "VALUES "
Jan Luebbebfbdeec2012-12-27 00:27:16 +010080 "('revision', " SCHEMA_REVISION ")",
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +010081 [SCHEMA_SUBSCRIBER] = "CREATE TABLE IF NOT EXISTS Subscriber ("
Harald Welte7e310b12009-03-30 20:56:32 +000082 "id INTEGER PRIMARY KEY AUTOINCREMENT, "
83 "created TIMESTAMP NOT NULL, "
84 "updated TIMESTAMP NOT NULL, "
85 "imsi NUMERIC UNIQUE NOT NULL, "
86 "name TEXT, "
87 "extension TEXT UNIQUE, "
88 "authorized INTEGER NOT NULL DEFAULT 0, "
89 "tmsi TEXT UNIQUE, "
Jan Luebbebfbdeec2012-12-27 00:27:16 +010090 "lac INTEGER NOT NULL DEFAULT 0, "
91 "expire_lu TIMESTAMP DEFAULT NULL"
Harald Welte7e310b12009-03-30 20:56:32 +000092 ")",
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +010093 [SCHEMA_AUTH] = "CREATE TABLE IF NOT EXISTS AuthToken ("
Jan Luebbe31bef492009-08-12 14:31:14 +020094 "id INTEGER PRIMARY KEY AUTOINCREMENT, "
95 "subscriber_id INTEGER UNIQUE NOT NULL, "
96 "created TIMESTAMP NOT NULL, "
97 "token TEXT UNIQUE NOT NULL"
98 ")",
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +010099 [SCHEMA_EQUIPMENT] = "CREATE TABLE IF NOT EXISTS Equipment ("
Harald Welte7e310b12009-03-30 20:56:32 +0000100 "id INTEGER PRIMARY KEY AUTOINCREMENT, "
101 "created TIMESTAMP NOT NULL, "
102 "updated TIMESTAMP NOT NULL, "
103 "name TEXT, "
Harald Weltec2e302d2009-07-05 14:08:13 +0200104 "classmark1 NUMERIC, "
105 "classmark2 BLOB, "
106 "classmark3 BLOB, "
Harald Welte7e310b12009-03-30 20:56:32 +0000107 "imei NUMERIC UNIQUE NOT NULL"
108 ")",
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100109 [SCHEMA_EQUIPMENT_WATCH] = "CREATE TABLE IF NOT EXISTS EquipmentWatch ("
Harald Welte7e310b12009-03-30 20:56:32 +0000110 "id INTEGER PRIMARY KEY AUTOINCREMENT, "
111 "created TIMESTAMP NOT NULL, "
112 "updated TIMESTAMP NOT NULL, "
113 "subscriber_id NUMERIC NOT NULL, "
114 "equipment_id NUMERIC NOT NULL, "
115 "UNIQUE (subscriber_id, equipment_id) "
116 ")",
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100117 [SCHEMA_SMS] = "CREATE TABLE IF NOT EXISTS SMS ("
Harald Welte76042182009-08-08 16:03:15 +0200118 /* metadata, not part of sms */
Harald Welte7e310b12009-03-30 20:56:32 +0000119 "id INTEGER PRIMARY KEY AUTOINCREMENT, "
120 "created TIMESTAMP NOT NULL, "
121 "sent TIMESTAMP, "
Harald Welte (local)db552c52009-08-15 20:15:14 +0200122 "deliver_attempts INTEGER NOT NULL DEFAULT 0, "
Harald Welte76042182009-08-08 16:03:15 +0200123 /* data directly copied/derived from SMS */
Harald Weltef3efc592009-07-27 20:11:35 +0200124 "valid_until TIMESTAMP, "
Harald Welte76042182009-08-08 16:03:15 +0200125 "reply_path_req INTEGER NOT NULL, "
126 "status_rep_req INTEGER NOT NULL, "
127 "protocol_id INTEGER NOT NULL, "
128 "data_coding_scheme INTEGER NOT NULL, "
Harald Welted0b7b772009-08-09 19:03:42 +0200129 "ud_hdr_ind INTEGER NOT NULL, "
Holger Hans Peter Freytherca3c2562013-10-08 03:17:30 +0200130 "src_addr TEXT NOT NULL, "
131 "src_ton INTEGER NOT NULL, "
132 "src_npi INTEGER NOT NULL, "
133 "dest_addr TEXT NOT NULL, "
134 "dest_ton INTEGER NOT NULL, "
135 "dest_npi INTEGER NOT NULL, "
Harald Welte76042182009-08-08 16:03:15 +0200136 "user_data BLOB, " /* TP-UD */
137 /* additional data, interpreted from SMS */
138 "header BLOB, " /* UD Header */
139 "text TEXT " /* decoded UD after UDH */
Harald Welte7e310b12009-03-30 20:56:32 +0000140 ")",
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100141 [SCHEMA_VLR] = "CREATE TABLE IF NOT EXISTS VLR ("
Holger Freytherc2995ea2009-04-19 06:35:23 +0000142 "id INTEGER PRIMARY KEY AUTOINCREMENT, "
143 "created TIMESTAMP NOT NULL, "
144 "updated TIMESTAMP NOT NULL, "
145 "subscriber_id NUMERIC UNIQUE NOT NULL, "
146 "last_bts NUMERIC NOT NULL "
147 ")",
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100148 [SCHEMA_APDU] = "CREATE TABLE IF NOT EXISTS ApduBlobs ("
Harald Welte (local)026531e2009-08-16 10:40:10 +0200149 "id INTEGER PRIMARY KEY AUTOINCREMENT, "
150 "created TIMESTAMP NOT NULL, "
151 "apdu_id_flags INTEGER NOT NULL, "
152 "subscriber_id INTEGER NOT NULL, "
153 "apdu BLOB "
154 ")",
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100155 [SCHEMA_COUNTERS] = "CREATE TABLE IF NOT EXISTS Counters ("
Harald Welteffa55a42009-12-22 19:07:32 +0100156 "id INTEGER PRIMARY KEY AUTOINCREMENT, "
157 "timestamp TIMESTAMP NOT NULL, "
Harald Weltef9a43c42009-12-22 21:40:42 +0100158 "value INTEGER NOT NULL, "
159 "name TEXT NOT NULL "
Harald Welte09f7ad02009-12-24 09:42:07 +0100160 ")",
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100161 [SCHEMA_RATE] = "CREATE TABLE IF NOT EXISTS RateCounters ("
Harald Weltec1919862010-05-13 12:55:20 +0200162 "id INTEGER PRIMARY KEY AUTOINCREMENT, "
163 "timestamp TIMESTAMP NOT NULL, "
164 "value INTEGER NOT NULL, "
165 "name TEXT NOT NULL, "
Harald Welted94d6a02010-05-14 17:38:47 +0200166 "idx INTEGER NOT NULL "
Harald Weltec1919862010-05-13 12:55:20 +0200167 ")",
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100168 [SCHEMA_AUTHKEY] = "CREATE TABLE IF NOT EXISTS AuthKeys ("
Sylvain Munaut10bf8122010-06-09 11:31:32 +0200169 "subscriber_id INTEGER PRIMARY KEY, "
Sylvain Munaut77d334a2009-12-27 19:26:12 +0100170 "algorithm_id INTEGER NOT NULL, "
Harald Welte3606cc52009-12-05 15:13:22 +0530171 "a3a8_ki BLOB "
172 ")",
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100173 [SCHEMA_AUTHLAST] = "CREATE TABLE IF NOT EXISTS AuthLastTuples ("
Sylvain Munaut10bf8122010-06-09 11:31:32 +0200174 "subscriber_id INTEGER PRIMARY KEY, "
Sylvain Munaut70881b72009-12-27 15:41:59 +0100175 "issued TIMESTAMP NOT NULL, "
176 "use_count INTEGER NOT NULL DEFAULT 0, "
177 "key_seq INTEGER NOT NULL, "
178 "rand BLOB NOT NULL, "
179 "sres BLOB NOT NULL, "
180 "kc BLOB NOT NULL "
Harald Welteffa55a42009-12-22 19:07:32 +0100181 ")",
Harald Welte7e310b12009-03-30 20:56:32 +0000182};
183
Harald Welte0b906d02009-12-24 11:21:42 +0100184void db_error_func(dbi_conn conn, void *data)
185{
186 const char *msg;
Jan Luebbe5c15c852008-12-27 15:59:25 +0000187 dbi_conn_error(conn, &msg);
Harald Welteae1f1592009-12-24 11:39:14 +0100188 LOGP(DDB, LOGL_ERROR, "DBI: %s\n", msg);
Harald Weltec7548a12014-07-10 20:18:15 +0200189 osmo_log_backtrace(DDB, LOGL_ERROR);
Jan Luebbe7398eb92008-12-27 00:45:41 +0000190}
191
Jan Luebbebfbdeec2012-12-27 00:27:16 +0100192static int update_db_revision_2(void)
193{
194 dbi_result result;
195
196 result = dbi_conn_query(conn,
197 "ALTER TABLE Subscriber "
198 "ADD COLUMN expire_lu "
199 "TIMESTAMP DEFAULT NULL");
200 if (!result) {
201 LOGP(DDB, LOGL_ERROR,
Alexander Chemeris7e20f642014-03-07 16:59:53 +0100202 "Failed to alter table Subscriber (upgrade from rev 2).\n");
Jan Luebbebfbdeec2012-12-27 00:27:16 +0100203 return -EINVAL;
204 }
205 dbi_result_free(result);
206
207 result = dbi_conn_query(conn,
208 "UPDATE Meta "
209 "SET value = '3' "
210 "WHERE key = 'revision'");
211 if (!result) {
212 LOGP(DDB, LOGL_ERROR,
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100213 "Failed to update DB schema revision (upgrade from rev 2).\n");
Jan Luebbebfbdeec2012-12-27 00:27:16 +0100214 return -EINVAL;
215 }
216 dbi_result_free(result);
217
218 return 0;
219}
220
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100221/**
222 * Copied from the normal sms_from_result_v3 to avoid having
223 * to make sure that the real routine will remain backward
224 * compatible.
225 */
226static struct gsm_sms *sms_from_result_v3(dbi_result result)
227{
228 struct gsm_sms *sms = sms_alloc();
229 long long unsigned int sender_id;
230 struct gsm_subscriber *sender;
231 const char *text, *daddr;
232 const unsigned char *user_data;
233 char buf[32];
234
235 if (!sms)
236 return NULL;
237
238 sms->id = dbi_result_get_ulonglong(result, "id");
239
240 sender_id = dbi_result_get_ulonglong(result, "sender_id");
241 snprintf(buf, sizeof(buf), "%llu", sender_id);
242 sender = db_get_subscriber(GSM_SUBSCRIBER_ID, buf);
243 OSMO_ASSERT(sender);
Neels Hofmeyr93bafb62017-01-13 03:12:08 +0100244 osmo_strlcpy(sms->src.addr, sender->extension, sizeof(sms->src.addr));
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100245 subscr_direct_free(sender);
246 sender = NULL;
247
Holger Hans Peter Freytherb115cb62014-07-03 14:00:30 +0200248 sms->reply_path_req = dbi_result_get_ulonglong(result, "reply_path_req");
249 sms->status_rep_req = dbi_result_get_ulonglong(result, "status_rep_req");
250 sms->ud_hdr_ind = dbi_result_get_ulonglong(result, "ud_hdr_ind");
251 sms->protocol_id = dbi_result_get_ulonglong(result, "protocol_id");
252 sms->data_coding_scheme = dbi_result_get_ulonglong(result,
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100253 "data_coding_scheme");
254
255 daddr = dbi_result_get_string(result, "dest_addr");
Neels Hofmeyr93bafb62017-01-13 03:12:08 +0100256 if (daddr)
257 osmo_strlcpy(sms->dst.addr, daddr, sizeof(sms->dst.addr));
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100258
259 sms->user_data_len = dbi_result_get_field_length(result, "user_data");
260 user_data = dbi_result_get_binary(result, "user_data");
261 if (sms->user_data_len > sizeof(sms->user_data))
262 sms->user_data_len = (uint8_t) sizeof(sms->user_data);
263 memcpy(sms->user_data, user_data, sms->user_data_len);
264
265 text = dbi_result_get_string(result, "text");
Neels Hofmeyr93bafb62017-01-13 03:12:08 +0100266 if (text)
267 osmo_strlcpy(sms->text, text, sizeof(sms->text));
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100268 return sms;
269}
270
271static int update_db_revision_3(void)
272{
273 dbi_result result;
274 struct gsm_sms *sms;
275
Holger Hans Peter Freyther61144012014-03-08 16:41:37 +0100276 LOGP(DDB, LOGL_NOTICE, "Going to migrate from revision 3\n");
277
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100278 result = dbi_conn_query(conn, "BEGIN EXCLUSIVE TRANSACTION");
279 if (!result) {
280 LOGP(DDB, LOGL_ERROR,
281 "Failed to begin transaction (upgrade from rev 3)\n");
282 return -EINVAL;
283 }
284 dbi_result_free(result);
285
286 /* Rename old SMS table to be able create a new one */
287 result = dbi_conn_query(conn, "ALTER TABLE SMS RENAME TO SMS_3");
288 if (!result) {
289 LOGP(DDB, LOGL_ERROR,
290 "Failed to rename the old SMS table (upgrade from rev 3).\n");
291 goto rollback;
292 }
293 dbi_result_free(result);
294
295 /* Create new SMS table with all the bells and whistles! */
296 result = dbi_conn_query(conn, create_stmts[SCHEMA_SMS]);
297 if (!result) {
298 LOGP(DDB, LOGL_ERROR,
299 "Failed to create a new SMS table (upgrade from rev 3).\n");
300 goto rollback;
301 }
302 dbi_result_free(result);
303
304 /* Cycle through old messages and convert them to the new format */
Max5c06e402015-07-29 20:20:28 +0200305 result = dbi_conn_query(conn, "SELECT * FROM SMS_3");
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100306 if (!result) {
307 LOGP(DDB, LOGL_ERROR,
308 "Failed fetch messages from the old SMS table (upgrade from rev 3).\n");
309 goto rollback;
310 }
311 while (dbi_result_next_row(result)) {
312 sms = sms_from_result_v3(result);
313 if (db_sms_store(sms) != 0) {
314 LOGP(DDB, LOGL_ERROR, "Failed to store message to the new SMS table(upgrade from rev 3).\n");
315 sms_free(sms);
316 dbi_result_free(result);
317 goto rollback;
318 }
319 sms_free(sms);
320 }
321 dbi_result_free(result);
322
323 /* Remove the temporary table */
324 result = dbi_conn_query(conn, "DROP TABLE SMS_3");
325 if (!result) {
326 LOGP(DDB, LOGL_ERROR,
327 "Failed to drop the old SMS table (upgrade from rev 3).\n");
328 goto rollback;
329 }
330 dbi_result_free(result);
331
332 /* We're done. Bump DB Meta revision to 4 */
333 result = dbi_conn_query(conn,
334 "UPDATE Meta "
335 "SET value = '4' "
336 "WHERE key = 'revision'");
337 if (!result) {
338 LOGP(DDB, LOGL_ERROR,
339 "Failed to update DB schema revision (upgrade from rev 3).\n");
340 goto rollback;
341 }
342 dbi_result_free(result);
343
344 result = dbi_conn_query(conn, "COMMIT TRANSACTION");
345 if (!result) {
346 LOGP(DDB, LOGL_ERROR,
347 "Failed to commit the transaction (upgrade from rev 3)\n");
348 return -EINVAL;
Alexander Couzensf480b352017-02-04 00:20:17 +0100349 } else {
350 dbi_result_free(result);
Holger Hans Peter Freythere7cc9aa2014-03-07 18:17:22 +0100351 }
352
353 /* Shrink DB file size by actually wiping out SMS_3 table data */
354 result = dbi_conn_query(conn, "VACUUM");
355 if (!result)
356 LOGP(DDB, LOGL_ERROR,
357 "VACUUM failed. Ignoring it (upgrade from rev 3).\n");
358 else
359 dbi_result_free(result);
360
361 return 0;
362
363rollback:
364 result = dbi_conn_query(conn, "ROLLBACK TRANSACTION");
365 if (!result)
366 LOGP(DDB, LOGL_ERROR,
367 "Rollback failed (upgrade from rev 3).\n");
368 else
369 dbi_result_free(result);
370 return -EINVAL;
371}
372
Harald Welted0b7b772009-08-09 19:03:42 +0200373static int check_db_revision(void)
374{
375 dbi_result result;
Jan Luebbebfbdeec2012-12-27 00:27:16 +0100376 const char *rev_s;
Vadim Yanitskiya8d8e932016-05-13 15:38:09 +0600377 int db_rev = 0;
Harald Welted0b7b772009-08-09 19:03:42 +0200378
Vadim Yanitskiya8d8e932016-05-13 15:38:09 +0600379 /* Make a query */
Harald Welted0b7b772009-08-09 19:03:42 +0200380 result = dbi_conn_query(conn,
Vadim Yanitskiya8d8e932016-05-13 15:38:09 +0600381 "SELECT value FROM Meta "
382 "WHERE key = 'revision'");
383
Harald Welted0b7b772009-08-09 19:03:42 +0200384 if (!result)
385 return -EINVAL;
386
387 if (!dbi_result_next_row(result)) {
388 dbi_result_free(result);
389 return -EINVAL;
390 }
Vadim Yanitskiya8d8e932016-05-13 15:38:09 +0600391
392 /* Fetch the DB schema revision */
Jan Luebbebfbdeec2012-12-27 00:27:16 +0100393 rev_s = dbi_result_get_string(result, "value");
394 if (!rev_s) {
Harald Welted0b7b772009-08-09 19:03:42 +0200395 dbi_result_free(result);
396 return -EINVAL;
397 }
Vadim Yanitskiya8d8e932016-05-13 15:38:09 +0600398
399 if (!strcmp(rev_s, SCHEMA_REVISION)) {
400 /* Everything is fine */
Jan Luebbebfbdeec2012-12-27 00:27:16 +0100401 dbi_result_free(result);
Vadim Yanitskiya8d8e932016-05-13 15:38:09 +0600402 return 0;
403 }
404
405 db_rev = atoi(rev_s);
406 dbi_result_free(result);
407
408 /* Incremental migration waterfall */
409 switch (db_rev) {
410 case 2:
411 if (update_db_revision_2())
412 goto error;
413 case 3:
414 if (update_db_revision_3())
415 goto error;
416
417 /* The end of waterfall */
418 break;
419 default:
420 LOGP(DDB, LOGL_FATAL,
421 "Invalid database schema revision '%d'.\n", db_rev);
Jan Luebbebfbdeec2012-12-27 00:27:16 +0100422 return -EINVAL;
423 }
424
Jan Luebbebfbdeec2012-12-27 00:27:16 +0100425 return 0;
Vadim Yanitskiya8d8e932016-05-13 15:38:09 +0600426
427error:
428 LOGP(DDB, LOGL_FATAL, "Failed to update database "
429 "from schema revision '%d'.\n", db_rev);
430 return -EINVAL;
Jan Luebbebfbdeec2012-12-27 00:27:16 +0100431}
432
433static int db_configure(void)
434{
435 dbi_result result;
436
437 result = dbi_conn_query(conn,
438 "PRAGMA synchronous = FULL");
439 if (!result)
440 return -EINVAL;
Harald Welted0b7b772009-08-09 19:03:42 +0200441
442 dbi_result_free(result);
443 return 0;
444}
445
Harald Welte0b906d02009-12-24 11:21:42 +0100446int db_init(const char *name)
447{
Jan Luebbe5c15c852008-12-27 15:59:25 +0000448 dbi_initialize(NULL);
Harald Welte0b906d02009-12-24 11:21:42 +0100449
Jan Luebbe5c15c852008-12-27 15:59:25 +0000450 conn = dbi_conn_new("sqlite3");
Harald Welte0b906d02009-12-24 11:21:42 +0100451 if (conn == NULL) {
Harald Welteae1f1592009-12-24 11:39:14 +0100452 LOGP(DDB, LOGL_FATAL, "Failed to create connection.\n");
Jan Luebbe5c15c852008-12-27 15:59:25 +0000453 return 1;
454 }
Jan Luebbe7398eb92008-12-27 00:45:41 +0000455
Holger Freyther12aa50d2009-01-01 18:02:05 +0000456 dbi_conn_error_handler( conn, db_error_func, NULL );
Jan Luebbe7398eb92008-12-27 00:45:41 +0000457
Jan Luebbe5c15c852008-12-27 15:59:25 +0000458 /* MySQL
459 dbi_conn_set_option(conn, "host", "localhost");
460 dbi_conn_set_option(conn, "username", "your_name");
461 dbi_conn_set_option(conn, "password", "your_password");
462 dbi_conn_set_option(conn, "dbname", "your_dbname");
463 dbi_conn_set_option(conn, "encoding", "UTF-8");
464 */
Jan Luebbe7398eb92008-12-27 00:45:41 +0000465
Jan Luebbe5c15c852008-12-27 15:59:25 +0000466 /* SqLite 3 */
Holger Freyther12aa50d2009-01-01 18:02:05 +0000467 db_basename = strdup(name);
468 db_dirname = strdup(name);
Holger Freytherbde36102008-12-28 22:51:39 +0000469 dbi_conn_set_option(conn, "sqlite3_dbdir", dirname(db_dirname));
470 dbi_conn_set_option(conn, "dbname", basename(db_basename));
Jan Luebbe7398eb92008-12-27 00:45:41 +0000471
Harald Welted0b7b772009-08-09 19:03:42 +0200472 if (dbi_conn_connect(conn) < 0)
473 goto out_err;
474
Jan Luebbe5c15c852008-12-27 15:59:25 +0000475 return 0;
Harald Welted0b7b772009-08-09 19:03:42 +0200476
477out_err:
478 free(db_dirname);
479 free(db_basename);
480 db_dirname = db_basename = NULL;
481 return -1;
Jan Luebbe7398eb92008-12-27 00:45:41 +0000482}
483
Harald Welted0b7b772009-08-09 19:03:42 +0200484
Harald Welted1476bc2011-07-16 13:24:09 +0200485int db_prepare(void)
Harald Welte0b906d02009-12-24 11:21:42 +0100486{
Jan Luebbe5c15c852008-12-27 15:59:25 +0000487 dbi_result result;
Harald Welte7e310b12009-03-30 20:56:32 +0000488 int i;
Holger Freytherb4064bc2009-02-23 00:50:31 +0000489
Harald Welte7e310b12009-03-30 20:56:32 +0000490 for (i = 0; i < ARRAY_SIZE(create_stmts); i++) {
491 result = dbi_conn_query(conn, create_stmts[i]);
Harald Welte0b906d02009-12-24 11:21:42 +0100492 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +0100493 LOGP(DDB, LOGL_ERROR,
494 "Failed to create some table.\n");
Harald Welte7e310b12009-03-30 20:56:32 +0000495 return 1;
496 }
497 dbi_result_free(result);
Holger Freytherb4064bc2009-02-23 00:50:31 +0000498 }
Holger Freytherb4064bc2009-02-23 00:50:31 +0000499
Holger Hans Peter Freyther850326e2009-08-10 08:36:04 +0200500 if (check_db_revision() < 0) {
Harald Welteae1f1592009-12-24 11:39:14 +0100501 LOGP(DDB, LOGL_FATAL, "Database schema revision invalid, "
Holger Hans Peter Freyther850326e2009-08-10 08:36:04 +0200502 "please update your database schema\n");
503 return -1;
504 }
505
Jan Luebbebfbdeec2012-12-27 00:27:16 +0100506 db_configure();
507
Jan Luebbe5c15c852008-12-27 15:59:25 +0000508 return 0;
Jan Luebbe7398eb92008-12-27 00:45:41 +0000509}
510
Harald Welted1476bc2011-07-16 13:24:09 +0200511int db_fini(void)
Harald Welte0b906d02009-12-24 11:21:42 +0100512{
Jan Luebbe5c15c852008-12-27 15:59:25 +0000513 dbi_conn_close(conn);
514 dbi_shutdown();
Holger Freytherbde36102008-12-28 22:51:39 +0000515
Harald Welte2c5f4c62011-07-16 13:22:57 +0200516 free(db_dirname);
517 free(db_basename);
Jan Luebbe5c15c852008-12-27 15:59:25 +0000518 return 0;
Jan Luebbe7398eb92008-12-27 00:45:41 +0000519}
520
Max0fcd2e22016-06-07 15:32:16 +0200521struct gsm_subscriber *db_create_subscriber(const char *imsi, uint64_t smin,
Maxe6052c42016-06-30 10:25:49 +0200522 uint64_t smax, bool alloc_exten)
Harald Welte9176bd42009-07-23 18:46:00 +0200523{
Jan Luebbe5c15c852008-12-27 15:59:25 +0000524 dbi_result result;
Harald Welte0b906d02009-12-24 11:21:42 +0100525 struct gsm_subscriber *subscr;
Holger Freyther12aa50d2009-01-01 18:02:05 +0000526
527 /* Is this subscriber known in the db? */
Holger Hans Peter Freyther7634ec12013-10-04 08:35:11 +0200528 subscr = db_get_subscriber(GSM_SUBSCRIBER_IMSI, imsi);
Holger Freyther12aa50d2009-01-01 18:02:05 +0000529 if (subscr) {
Holger Hans Peter Freyther2826df52016-04-01 20:21:03 +0200530 subscr_put(subscr);
531 return NULL;
Jan Luebbe5c15c852008-12-27 15:59:25 +0000532 }
Holger Freyther12aa50d2009-01-01 18:02:05 +0000533
534 subscr = subscr_alloc();
535 if (!subscr)
536 return NULL;
Harald Welte2c5f4c62011-07-16 13:22:57 +0200537 subscr->flags |= GSM_SUBSCRIBER_FIRST_CONTACT;
Jan Luebbe5c15c852008-12-27 15:59:25 +0000538 result = dbi_conn_queryf(conn,
Jan Luebbe391d86e2008-12-27 22:33:34 +0000539 "INSERT INTO Subscriber "
Jan Luebbee30dbb32008-12-27 18:08:13 +0000540 "(imsi, created, updated) "
Jan Luebbe5c15c852008-12-27 15:59:25 +0000541 "VALUES "
Jan Luebbee30dbb32008-12-27 18:08:13 +0000542 "(%s, datetime('now'), datetime('now')) ",
Jan Luebbe5c15c852008-12-27 15:59:25 +0000543 imsi
544 );
Holger Hans Peter Freytheradb86752016-04-01 20:31:11 +0200545 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +0100546 LOGP(DDB, LOGL_ERROR, "Failed to create Subscriber by IMSI.\n");
Holger Hans Peter Freytheradb86752016-04-01 20:31:11 +0200547 subscr_put(subscr);
548 return NULL;
549 }
Holger Freyther12aa50d2009-01-01 18:02:05 +0000550 subscr->id = dbi_conn_sequence_last(conn, NULL);
Neels Hofmeyr93bafb62017-01-13 03:12:08 +0100551 osmo_strlcpy(subscr->imsi, imsi, sizeof(subscr->imsi));
Jan Luebbe5c15c852008-12-27 15:59:25 +0000552 dbi_result_free(result);
Harald Welte (local)441e4832009-12-26 18:57:32 +0100553 LOGP(DDB, LOGL_INFO, "New Subscriber: ID %llu, IMSI %s\n", subscr->id, subscr->imsi);
Maxe6052c42016-06-30 10:25:49 +0200554 if (alloc_exten)
555 db_subscriber_alloc_exten(subscr, smin, smax);
Holger Freyther12aa50d2009-01-01 18:02:05 +0000556 return subscr;
Jan Luebbe7398eb92008-12-27 00:45:41 +0000557}
558
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200559osmo_static_assert(sizeof(unsigned char) == sizeof(struct gsm48_classmark1), classmark1_size);
Holger Hans Peter Freytherceb072d2010-03-30 15:28:36 +0200560
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200561static int get_equipment_by_subscr(struct gsm_subscriber *subscr)
562{
563 dbi_result result;
Harald Welte55726d72009-09-26 18:54:59 +0200564 const char *string;
Harald Welte4669f3d2009-12-09 19:19:45 +0100565 unsigned char cm1;
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200566 const unsigned char *cm2, *cm3;
567 struct gsm_equipment *equip = &subscr->equipment;
568
569 result = dbi_conn_queryf(conn,
Sylvain Munaut7a7d3642010-07-03 22:00:45 +0200570 "SELECT Equipment.* "
571 "FROM Equipment JOIN EquipmentWatch ON "
572 "EquipmentWatch.equipment_id=Equipment.id "
573 "WHERE EquipmentWatch.subscriber_id = %llu "
574 "ORDER BY EquipmentWatch.updated DESC", subscr->id);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200575 if (!result)
576 return -EIO;
577
578 if (!dbi_result_next_row(result)) {
579 dbi_result_free(result);
580 return -ENOENT;
581 }
582
583 equip->id = dbi_result_get_ulonglong(result, "id");
584
585 string = dbi_result_get_string(result, "imei");
586 if (string)
Neels Hofmeyr93bafb62017-01-13 03:12:08 +0100587 osmo_strlcpy(equip->imei, string, sizeof(equip->imei));
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200588
Harald Welte (local)1f3ecd42009-12-26 18:56:00 +0100589 string = dbi_result_get_string(result, "classmark1");
Holger Hans Peter Freytherceb072d2010-03-30 15:28:36 +0200590 if (string) {
591 cm1 = atoi(string) & 0xff;
592 memcpy(&equip->classmark1, &cm1, sizeof(equip->classmark1));
593 }
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200594
595 equip->classmark2_len = dbi_result_get_field_length(result, "classmark2");
596 cm2 = dbi_result_get_binary(result, "classmark2");
597 if (equip->classmark2_len > sizeof(equip->classmark2))
598 equip->classmark2_len = sizeof(equip->classmark2);
Holger Hans Peter Freytherf9f44902016-01-23 09:21:04 +0100599 if (cm2)
600 memcpy(equip->classmark2, cm2, equip->classmark2_len);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200601
602 equip->classmark3_len = dbi_result_get_field_length(result, "classmark3");
603 cm3 = dbi_result_get_binary(result, "classmark3");
604 if (equip->classmark3_len > sizeof(equip->classmark3))
605 equip->classmark3_len = sizeof(equip->classmark3);
Holger Hans Peter Freytherf9f44902016-01-23 09:21:04 +0100606 if (cm3)
607 memcpy(equip->classmark3, cm3, equip->classmark3_len);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200608
609 dbi_result_free(result);
610
611 return 0;
612}
Harald Welte3606cc52009-12-05 15:13:22 +0530613
Sylvain Munaut92b2ff52010-06-09 11:32:51 +0200614int db_get_authinfo_for_subscr(struct gsm_auth_info *ainfo,
615 struct gsm_subscriber *subscr)
Harald Welte3606cc52009-12-05 15:13:22 +0530616{
617 dbi_result result;
618 const unsigned char *a3a8_ki;
619
620 result = dbi_conn_queryf(conn,
Sylvain Munautadea4f12010-07-03 15:38:35 +0200621 "SELECT * FROM AuthKeys WHERE subscriber_id=%llu",
Harald Welte3606cc52009-12-05 15:13:22 +0530622 subscr->id);
623 if (!result)
624 return -EIO;
625
626 if (!dbi_result_next_row(result)) {
627 dbi_result_free(result);
628 return -ENOENT;
629 }
630
631 ainfo->auth_algo = dbi_result_get_ulonglong(result, "algorithm_id");
632 ainfo->a3a8_ki_len = dbi_result_get_field_length(result, "a3a8_ki");
633 a3a8_ki = dbi_result_get_binary(result, "a3a8_ki");
Sylvain Munaute1cb4de2009-12-27 19:24:05 +0100634 if (ainfo->a3a8_ki_len > sizeof(ainfo->a3a8_ki))
Sylvain Munaut5e80cc42012-05-07 22:09:15 +0200635 ainfo->a3a8_ki_len = sizeof(ainfo->a3a8_ki);
Harald Welte3606cc52009-12-05 15:13:22 +0530636 memcpy(ainfo->a3a8_ki, a3a8_ki, ainfo->a3a8_ki_len);
637
638 dbi_result_free(result);
639
640 return 0;
641}
642
Sylvain Munaut92b2ff52010-06-09 11:32:51 +0200643int db_sync_authinfo_for_subscr(struct gsm_auth_info *ainfo,
644 struct gsm_subscriber *subscr)
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100645{
646 dbi_result result;
647 struct gsm_auth_info ainfo_old;
648 int rc, upd;
649 unsigned char *ki_str;
650
651 /* Deletion ? */
652 if (ainfo == NULL) {
653 result = dbi_conn_queryf(conn,
Sylvain Munautadea4f12010-07-03 15:38:35 +0200654 "DELETE FROM AuthKeys WHERE subscriber_id=%llu",
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100655 subscr->id);
656
657 if (!result)
658 return -EIO;
659
660 dbi_result_free(result);
661
662 return 0;
663 }
664
665 /* Check if already existing */
Sylvain Munaut92b2ff52010-06-09 11:32:51 +0200666 rc = db_get_authinfo_for_subscr(&ainfo_old, subscr);
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100667 if (rc && rc != -ENOENT)
668 return rc;
669 upd = rc ? 0 : 1;
670
671 /* Update / Insert */
672 dbi_conn_quote_binary_copy(conn,
673 ainfo->a3a8_ki, ainfo->a3a8_ki_len, &ki_str);
674
675 if (!upd) {
676 result = dbi_conn_queryf(conn,
677 "INSERT INTO AuthKeys "
678 "(subscriber_id, algorithm_id, a3a8_ki) "
Sylvain Munautadea4f12010-07-03 15:38:35 +0200679 "VALUES (%llu, %u, %s)",
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100680 subscr->id, ainfo->auth_algo, ki_str);
681 } else {
682 result = dbi_conn_queryf(conn,
683 "UPDATE AuthKeys "
684 "SET algorithm_id=%u, a3a8_ki=%s "
Sylvain Munautadea4f12010-07-03 15:38:35 +0200685 "WHERE subscriber_id=%llu",
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100686 ainfo->auth_algo, ki_str, subscr->id);
687 }
688
689 free(ki_str);
690
691 if (!result)
692 return -EIO;
693
694 dbi_result_free(result);
695
696 return 0;
697}
698
Sylvain Munaut92b2ff52010-06-09 11:32:51 +0200699int db_get_lastauthtuple_for_subscr(struct gsm_auth_tuple *atuple,
700 struct gsm_subscriber *subscr)
Harald Welte3606cc52009-12-05 15:13:22 +0530701{
702 dbi_result result;
703 int len;
704 const unsigned char *blob;
705
706 result = dbi_conn_queryf(conn,
Sylvain Munautadea4f12010-07-03 15:38:35 +0200707 "SELECT * FROM AuthLastTuples WHERE subscriber_id=%llu",
Harald Welte3606cc52009-12-05 15:13:22 +0530708 subscr->id);
709 if (!result)
710 return -EIO;
711
712 if (!dbi_result_next_row(result)) {
713 dbi_result_free(result);
714 return -ENOENT;
715 }
716
Holger Hans Peter Freythere8859512013-07-04 20:24:02 +0200717 memset(atuple, 0, sizeof(*atuple));
Harald Welte3606cc52009-12-05 15:13:22 +0530718
Sylvain Munaut70881b72009-12-27 15:41:59 +0100719 atuple->use_count = dbi_result_get_ulonglong(result, "use_count");
720 atuple->key_seq = dbi_result_get_ulonglong(result, "key_seq");
721
Harald Welte3606cc52009-12-05 15:13:22 +0530722 len = dbi_result_get_field_length(result, "rand");
Harald Welte121e9a42016-04-20 13:13:19 +0200723 if (len != sizeof(atuple->vec.rand))
Harald Welte3606cc52009-12-05 15:13:22 +0530724 goto err_size;
725
726 blob = dbi_result_get_binary(result, "rand");
Harald Welte121e9a42016-04-20 13:13:19 +0200727 memcpy(atuple->vec.rand, blob, len);
Harald Welte3606cc52009-12-05 15:13:22 +0530728
729 len = dbi_result_get_field_length(result, "sres");
Harald Welte121e9a42016-04-20 13:13:19 +0200730 if (len != sizeof(atuple->vec.sres))
Harald Welte3606cc52009-12-05 15:13:22 +0530731 goto err_size;
732
733 blob = dbi_result_get_binary(result, "sres");
Harald Welte121e9a42016-04-20 13:13:19 +0200734 memcpy(atuple->vec.sres, blob, len);
Harald Welte3606cc52009-12-05 15:13:22 +0530735
736 len = dbi_result_get_field_length(result, "kc");
Harald Welte121e9a42016-04-20 13:13:19 +0200737 if (len != sizeof(atuple->vec.kc))
Harald Welte3606cc52009-12-05 15:13:22 +0530738 goto err_size;
739
740 blob = dbi_result_get_binary(result, "kc");
Harald Welte121e9a42016-04-20 13:13:19 +0200741 memcpy(atuple->vec.kc, blob, len);
Harald Welte3606cc52009-12-05 15:13:22 +0530742
743 dbi_result_free(result);
744
745 return 0;
746
747err_size:
748 dbi_result_free(result);
749 return -EIO;
750}
751
Sylvain Munaut92b2ff52010-06-09 11:32:51 +0200752int db_sync_lastauthtuple_for_subscr(struct gsm_auth_tuple *atuple,
753 struct gsm_subscriber *subscr)
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100754{
755 dbi_result result;
756 int rc, upd;
757 struct gsm_auth_tuple atuple_old;
758 unsigned char *rand_str, *sres_str, *kc_str;
759
760 /* Deletion ? */
761 if (atuple == NULL) {
762 result = dbi_conn_queryf(conn,
Sylvain Munautadea4f12010-07-03 15:38:35 +0200763 "DELETE FROM AuthLastTuples WHERE subscriber_id=%llu",
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100764 subscr->id);
765
766 if (!result)
767 return -EIO;
768
769 dbi_result_free(result);
770
771 return 0;
772 }
773
774 /* Check if already existing */
Sylvain Munaut92b2ff52010-06-09 11:32:51 +0200775 rc = db_get_lastauthtuple_for_subscr(&atuple_old, subscr);
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100776 if (rc && rc != -ENOENT)
777 return rc;
778 upd = rc ? 0 : 1;
779
780 /* Update / Insert */
781 dbi_conn_quote_binary_copy(conn,
Harald Welte121e9a42016-04-20 13:13:19 +0200782 atuple->vec.rand, sizeof(atuple->vec.rand), &rand_str);
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100783 dbi_conn_quote_binary_copy(conn,
Harald Welte121e9a42016-04-20 13:13:19 +0200784 atuple->vec.sres, sizeof(atuple->vec.sres), &sres_str);
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100785 dbi_conn_quote_binary_copy(conn,
Harald Welte121e9a42016-04-20 13:13:19 +0200786 atuple->vec.kc, sizeof(atuple->vec.kc), &kc_str);
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100787
788 if (!upd) {
789 result = dbi_conn_queryf(conn,
Sylvain Munautc614a6a2010-06-09 13:03:39 +0200790 "INSERT INTO AuthLastTuples "
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100791 "(subscriber_id, issued, use_count, "
792 "key_seq, rand, sres, kc) "
Sylvain Munautadea4f12010-07-03 15:38:35 +0200793 "VALUES (%llu, datetime('now'), %u, "
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100794 "%u, %s, %s, %s ) ",
795 subscr->id, atuple->use_count, atuple->key_seq,
796 rand_str, sres_str, kc_str);
797 } else {
798 char *issued = atuple->key_seq == atuple_old.key_seq ?
799 "issued" : "datetime('now')";
800 result = dbi_conn_queryf(conn,
Sylvain Munaut31ac3072010-06-10 22:26:21 +0200801 "UPDATE AuthLastTuples "
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100802 "SET issued=%s, use_count=%u, "
803 "key_seq=%u, rand=%s, sres=%s, kc=%s "
Sylvain Munautadea4f12010-07-03 15:38:35 +0200804 "WHERE subscriber_id = %llu",
Sylvain Munaut062d5ef2009-12-27 19:27:53 +0100805 issued, atuple->use_count, atuple->key_seq,
806 rand_str, sres_str, kc_str, subscr->id);
807 }
808
809 free(rand_str);
810 free(sres_str);
811 free(kc_str);
812
813 if (!result)
814 return -EIO;
815
816 dbi_result_free(result);
817
818 return 0;
819}
820
Holger Hans Peter Freytherabd0cac2010-12-22 18:12:11 +0100821static void db_set_from_query(struct gsm_subscriber *subscr, dbi_conn result)
822{
823 const char *string;
824 string = dbi_result_get_string(result, "imsi");
825 if (string)
Neels Hofmeyr93bafb62017-01-13 03:12:08 +0100826 osmo_strlcpy(subscr->imsi, string, sizeof(subscr->imsi));
Holger Hans Peter Freytherabd0cac2010-12-22 18:12:11 +0100827
828 string = dbi_result_get_string(result, "tmsi");
829 if (string)
830 subscr->tmsi = tmsi_from_string(string);
831
832 string = dbi_result_get_string(result, "name");
Neels Hofmeyr93bafb62017-01-13 03:12:08 +0100833 if (string)
834 osmo_strlcpy(subscr->name, string, sizeof(subscr->name));
Holger Hans Peter Freytherabd0cac2010-12-22 18:12:11 +0100835
836 string = dbi_result_get_string(result, "extension");
837 if (string)
Neels Hofmeyr93bafb62017-01-13 03:12:08 +0100838 osmo_strlcpy(subscr->extension, string, sizeof(subscr->extension));
Holger Hans Peter Freytherabd0cac2010-12-22 18:12:11 +0100839
Kevin Redonc9763a32013-11-04 22:43:15 +0100840 subscr->lac = dbi_result_get_ulonglong(result, "lac");
Jan Luebbebfbdeec2012-12-27 00:27:16 +0100841
842 if (!dbi_result_field_is_null(result, "expire_lu"))
843 subscr->expire_lu = dbi_result_get_datetime(result, "expire_lu");
844 else
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200845 subscr->expire_lu = GSM_SUBSCRIBER_NO_EXPIRATION;
Jan Luebbebfbdeec2012-12-27 00:27:16 +0100846
Kevin Redonc9763a32013-11-04 22:43:15 +0100847 subscr->authorized = dbi_result_get_ulonglong(result, "authorized");
848
Holger Hans Peter Freytherabd0cac2010-12-22 18:12:11 +0100849}
850
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200851#define BASE_QUERY "SELECT * FROM Subscriber "
Holger Hans Peter Freyther7634ec12013-10-04 08:35:11 +0200852struct gsm_subscriber *db_get_subscriber(enum gsm_subscriber_field field,
Harald Welte9176bd42009-07-23 18:46:00 +0200853 const char *id)
854{
Jan Luebbe5c15c852008-12-27 15:59:25 +0000855 dbi_result result;
Jan Luebbe391d86e2008-12-27 22:33:34 +0000856 char *quoted;
Holger Freyther12aa50d2009-01-01 18:02:05 +0000857 struct gsm_subscriber *subscr;
Harald Welte75a983f2008-12-27 21:34:06 +0000858
Jan Luebbe5c15c852008-12-27 15:59:25 +0000859 switch (field) {
860 case GSM_SUBSCRIBER_IMSI:
Holger Freyther12aa50d2009-01-01 18:02:05 +0000861 dbi_conn_quote_string_copy(conn, id, &quoted);
Jan Luebbe5c15c852008-12-27 15:59:25 +0000862 result = dbi_conn_queryf(conn,
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200863 BASE_QUERY
Jan Luebbe5c15c852008-12-27 15:59:25 +0000864 "WHERE imsi = %s ",
Jan Luebbe391d86e2008-12-27 22:33:34 +0000865 quoted
Jan Luebbe5c15c852008-12-27 15:59:25 +0000866 );
Holger Freyther12aa50d2009-01-01 18:02:05 +0000867 free(quoted);
Jan Luebbe5c15c852008-12-27 15:59:25 +0000868 break;
869 case GSM_SUBSCRIBER_TMSI:
Holger Freyther12aa50d2009-01-01 18:02:05 +0000870 dbi_conn_quote_string_copy(conn, id, &quoted);
Jan Luebbe5c15c852008-12-27 15:59:25 +0000871 result = dbi_conn_queryf(conn,
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200872 BASE_QUERY
Jan Luebbe5c15c852008-12-27 15:59:25 +0000873 "WHERE tmsi = %s ",
Jan Luebbe391d86e2008-12-27 22:33:34 +0000874 quoted
Jan Luebbe5c15c852008-12-27 15:59:25 +0000875 );
Holger Freyther12aa50d2009-01-01 18:02:05 +0000876 free(quoted);
Jan Luebbe5c15c852008-12-27 15:59:25 +0000877 break;
Holger Freyther9c564b82009-02-09 23:39:20 +0000878 case GSM_SUBSCRIBER_EXTENSION:
879 dbi_conn_quote_string_copy(conn, id, &quoted);
880 result = dbi_conn_queryf(conn,
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200881 BASE_QUERY
Holger Freyther9c564b82009-02-09 23:39:20 +0000882 "WHERE extension = %s ",
883 quoted
884 );
885 free(quoted);
886 break;
Harald Weltebe3e3782009-07-05 14:06:41 +0200887 case GSM_SUBSCRIBER_ID:
888 dbi_conn_quote_string_copy(conn, id, &quoted);
889 result = dbi_conn_queryf(conn,
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200890 BASE_QUERY
Harald Weltebe3e3782009-07-05 14:06:41 +0200891 "WHERE id = %s ", quoted);
892 free(quoted);
893 break;
Jan Luebbe5c15c852008-12-27 15:59:25 +0000894 default:
Harald Welteae1f1592009-12-24 11:39:14 +0100895 LOGP(DDB, LOGL_NOTICE, "Unknown query selector for Subscriber.\n");
Holger Freyther12aa50d2009-01-01 18:02:05 +0000896 return NULL;
Jan Luebbe5c15c852008-12-27 15:59:25 +0000897 }
Harald Welte0b906d02009-12-24 11:21:42 +0100898 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +0100899 LOGP(DDB, LOGL_ERROR, "Failed to query Subscriber.\n");
Holger Freyther12aa50d2009-01-01 18:02:05 +0000900 return NULL;
Jan Luebbe5c15c852008-12-27 15:59:25 +0000901 }
902 if (!dbi_result_next_row(result)) {
Harald Welteae1f1592009-12-24 11:39:14 +0100903 DEBUGP(DDB, "Failed to find the Subscriber. '%u' '%s'\n",
Holger Freyther1ef983b2009-02-22 20:33:09 +0000904 field, id);
Jan Luebbe5c15c852008-12-27 15:59:25 +0000905 dbi_result_free(result);
Holger Freyther12aa50d2009-01-01 18:02:05 +0000906 return NULL;
Jan Luebbe5c15c852008-12-27 15:59:25 +0000907 }
Holger Freyther12aa50d2009-01-01 18:02:05 +0000908
909 subscr = subscr_alloc();
910 subscr->id = dbi_result_get_ulonglong(result, "id");
Harald Welte75a983f2008-12-27 21:34:06 +0000911
Holger Hans Peter Freytherabd0cac2010-12-22 18:12:11 +0100912 db_set_from_query(subscr, result);
Neels Hofmeyr307e4062016-05-09 21:28:05 +0200913 DEBUGP(DDB, "Found Subscriber: ID %llu, IMSI %s, NAME '%s', TMSI %x, EXTEN '%s', LAC %hu, AUTH %u\n",
Harald Welte3ad03462016-03-17 14:41:26 +0100914 subscr->id, subscr->imsi, subscr->name, subscr->tmsi, subscr->extension,
915 subscr->lac, subscr->authorized);
Jan Luebbe5c15c852008-12-27 15:59:25 +0000916 dbi_result_free(result);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200917
918 get_equipment_by_subscr(subscr);
919
Holger Freyther12aa50d2009-01-01 18:02:05 +0000920 return subscr;
Jan Luebbe7398eb92008-12-27 00:45:41 +0000921}
922
Holger Hans Peter Freytherabd0cac2010-12-22 18:12:11 +0100923int db_subscriber_update(struct gsm_subscriber *subscr)
924{
925 char buf[32];
Holger Hans Peter Freytherabd0cac2010-12-22 18:12:11 +0100926 dbi_result result;
927
928 /* Copy the id to a string as queryf with %llu is failing */
929 sprintf(buf, "%llu", subscr->id);
930 result = dbi_conn_queryf(conn,
931 BASE_QUERY
932 "WHERE id = %s", buf);
933
934 if (!result) {
935 LOGP(DDB, LOGL_ERROR, "Failed to query Subscriber: %llu\n", subscr->id);
936 return -EIO;
937 }
938 if (!dbi_result_next_row(result)) {
939 DEBUGP(DDB, "Failed to find the Subscriber. %llu\n",
940 subscr->id);
941 dbi_result_free(result);
942 return -EIO;
943 }
944
945 db_set_from_query(subscr, result);
946 dbi_result_free(result);
947 get_equipment_by_subscr(subscr);
948
949 return 0;
950}
951
Harald Welte0b906d02009-12-24 11:21:42 +0100952int db_sync_subscriber(struct gsm_subscriber *subscriber)
953{
Jan Luebbe5c15c852008-12-27 15:59:25 +0000954 dbi_result result;
Harald Welte3ad03462016-03-17 14:41:26 +0100955 char tmsi[14];
Harald Welte019d0162010-12-26 19:12:30 +0100956 char *q_tmsi, *q_name, *q_extension;
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200957
Harald Welte019d0162010-12-26 19:12:30 +0100958 dbi_conn_quote_string_copy(conn,
959 subscriber->name, &q_name);
Maxe6052c42016-06-30 10:25:49 +0200960 if (subscriber->extension[0] != '\0')
961 dbi_conn_quote_string_copy(conn,
962 subscriber->extension, &q_extension);
963 else
964 q_extension = strdup("NULL");
Harald Welte019d0162010-12-26 19:12:30 +0100965
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200966 if (subscriber->tmsi != GSM_RESERVED_TMSI) {
Harald Welte3ad03462016-03-17 14:41:26 +0100967 sprintf(tmsi, "%u", subscriber->tmsi);
Jan Luebbe9eca37f2009-08-12 21:04:54 +0200968 dbi_conn_quote_string_copy(conn,
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200969 tmsi,
Jan Luebbe9eca37f2009-08-12 21:04:54 +0200970 &q_tmsi);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200971 } else
Jan Luebbe9eca37f2009-08-12 21:04:54 +0200972 q_tmsi = strdup("NULL");
Harald Welte0b906d02009-12-24 11:21:42 +0100973
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200974 if (subscriber->expire_lu == GSM_SUBSCRIBER_NO_EXPIRATION) {
975 result = dbi_conn_queryf(conn,
976 "UPDATE Subscriber "
977 "SET updated = datetime('now'), "
978 "name = %s, "
979 "extension = %s, "
980 "authorized = %i, "
981 "tmsi = %s, "
982 "lac = %i, "
983 "expire_lu = NULL "
984 "WHERE imsi = %s ",
985 q_name,
986 q_extension,
987 subscriber->authorized,
988 q_tmsi,
989 subscriber->lac,
990 subscriber->imsi);
991 } else {
992 result = dbi_conn_queryf(conn,
993 "UPDATE Subscriber "
994 "SET updated = datetime('now'), "
995 "name = %s, "
996 "extension = %s, "
997 "authorized = %i, "
998 "tmsi = %s, "
999 "lac = %i, "
1000 "expire_lu = datetime(%i, 'unixepoch') "
1001 "WHERE imsi = %s ",
1002 q_name,
1003 q_extension,
1004 subscriber->authorized,
1005 q_tmsi,
1006 subscriber->lac,
1007 (int) subscriber->expire_lu,
1008 subscriber->imsi);
1009 }
Harald Welte0b906d02009-12-24 11:21:42 +01001010
Jan Luebbe9eca37f2009-08-12 21:04:54 +02001011 free(q_tmsi);
Harald Welte019d0162010-12-26 19:12:30 +01001012 free(q_name);
1013 free(q_extension);
Harald Welte0b906d02009-12-24 11:21:42 +01001014
1015 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +01001016 LOGP(DDB, LOGL_ERROR, "Failed to update Subscriber (by IMSI).\n");
Jan Luebbe5c15c852008-12-27 15:59:25 +00001017 return 1;
1018 }
Harald Welte0b906d02009-12-24 11:21:42 +01001019
Jan Luebbe5c15c852008-12-27 15:59:25 +00001020 dbi_result_free(result);
Harald Welte0b906d02009-12-24 11:21:42 +01001021
Jan Luebbe5c15c852008-12-27 15:59:25 +00001022 return 0;
Jan Luebbe7398eb92008-12-27 00:45:41 +00001023}
1024
Holger Hans Peter Freyther2d99eeb2014-03-23 14:01:08 +01001025int db_subscriber_delete(struct gsm_subscriber *subscr)
1026{
1027 dbi_result result;
1028
1029 result = dbi_conn_queryf(conn,
1030 "DELETE FROM AuthKeys WHERE subscriber_id=%llu",
1031 subscr->id);
1032 if (!result) {
1033 LOGP(DDB, LOGL_ERROR,
1034 "Failed to delete Authkeys for %llu\n", subscr->id);
1035 return -1;
1036 }
1037 dbi_result_free(result);
1038
1039 result = dbi_conn_queryf(conn,
1040 "DELETE FROM AuthLastTuples WHERE subscriber_id=%llu",
1041 subscr->id);
1042 if (!result) {
1043 LOGP(DDB, LOGL_ERROR,
1044 "Failed to delete AuthLastTuples for %llu\n", subscr->id);
1045 return -1;
1046 }
1047 dbi_result_free(result);
1048
1049 result = dbi_conn_queryf(conn,
1050 "DELETE FROM AuthToken WHERE subscriber_id=%llu",
1051 subscr->id);
1052 if (!result) {
1053 LOGP(DDB, LOGL_ERROR,
1054 "Failed to delete AuthToken for %llu\n", subscr->id);
1055 return -1;
1056 }
1057 dbi_result_free(result);
1058
1059 result = dbi_conn_queryf(conn,
1060 "DELETE FROM EquipmentWatch WHERE subscriber_id=%llu",
1061 subscr->id);
1062 if (!result) {
1063 LOGP(DDB, LOGL_ERROR,
1064 "Failed to delete EquipmentWatch for %llu\n", subscr->id);
1065 return -1;
1066 }
1067 dbi_result_free(result);
1068
Maxe6052c42016-06-30 10:25:49 +02001069 if (subscr->extension[0] != '\0') {
1070 result = dbi_conn_queryf(conn,
1071 "DELETE FROM SMS WHERE src_addr=%s OR dest_addr=%s",
1072 subscr->extension, subscr->extension);
1073 if (!result) {
1074 LOGP(DDB, LOGL_ERROR,
1075 "Failed to delete SMS for %llu\n", subscr->id);
1076 return -1;
1077 }
1078 dbi_result_free(result);
Holger Hans Peter Freyther2d99eeb2014-03-23 14:01:08 +01001079 }
Holger Hans Peter Freyther2d99eeb2014-03-23 14:01:08 +01001080
1081 result = dbi_conn_queryf(conn,
1082 "DELETE FROM VLR WHERE subscriber_id=%llu",
1083 subscr->id);
1084 if (!result) {
1085 LOGP(DDB, LOGL_ERROR,
1086 "Failed to delete VLR for %llu\n", subscr->id);
1087 return -1;
1088 }
1089 dbi_result_free(result);
1090
1091 result = dbi_conn_queryf(conn,
1092 "DELETE FROM ApduBlobs WHERE subscriber_id=%llu",
1093 subscr->id);
1094 if (!result) {
1095 LOGP(DDB, LOGL_ERROR,
1096 "Failed to delete ApduBlobs for %llu\n", subscr->id);
1097 return -1;
1098 }
1099 dbi_result_free(result);
1100
1101 result = dbi_conn_queryf(conn,
1102 "DELETE FROM Subscriber WHERE id=%llu",
1103 subscr->id);
1104 if (!result) {
1105 LOGP(DDB, LOGL_ERROR,
1106 "Failed to delete Subscriber for %llu\n", subscr->id);
1107 return -1;
1108 }
1109 dbi_result_free(result);
1110
1111 return 0;
1112}
1113
Holger Hans Peter Freytherd883db02014-03-23 16:22:55 +01001114/**
1115 * List all the authorized and non-expired subscribers. The callback will
1116 * be called one by one. The subscr argument is not fully initialize and
1117 * subscr_get/subscr_put must not be called. The passed in pointer will be
1118 * deleted after the callback by the database call.
1119 */
1120int db_subscriber_list_active(void (*cb)(struct gsm_subscriber*,void*), void *closure)
1121{
1122 dbi_result result;
1123
Max5c06e402015-07-29 20:20:28 +02001124 result = dbi_conn_query(conn,
1125 "SELECT * from Subscriber WHERE LAC != 0 AND authorized = 1");
Holger Hans Peter Freytherd883db02014-03-23 16:22:55 +01001126 if (!result) {
1127 LOGP(DDB, LOGL_ERROR, "Failed to list active subscribers\n");
1128 return -1;
1129 }
1130
1131 while (dbi_result_next_row(result)) {
1132 struct gsm_subscriber *subscr;
1133
1134 subscr = subscr_alloc();
1135 subscr->id = dbi_result_get_ulonglong(result, "id");
1136 db_set_from_query(subscr, result);
1137 cb(subscr, closure);
1138 OSMO_ASSERT(subscr->use_count == 1);
1139 llist_del(&subscr->entry);
1140 talloc_free(subscr);
1141 }
1142
1143 dbi_result_free(result);
1144 return 0;
1145}
1146
Harald Weltec2e302d2009-07-05 14:08:13 +02001147int db_sync_equipment(struct gsm_equipment *equip)
1148{
1149 dbi_result result;
1150 unsigned char *cm2, *cm3;
Holger Hans Peter Freytherf64a20f2010-12-26 20:04:49 +01001151 char *q_imei;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001152 uint8_t classmark1;
Harald Weltec2e302d2009-07-05 14:08:13 +02001153
Holger Hans Peter Freyther2657abf2009-10-22 15:34:37 +02001154 memcpy(&classmark1, &equip->classmark1, sizeof(classmark1));
Harald Welteae1f1592009-12-24 11:39:14 +01001155 DEBUGP(DDB, "Sync Equipment IMEI=%s, classmark1=%02x",
Holger Hans Peter Freyther2657abf2009-10-22 15:34:37 +02001156 equip->imei, classmark1);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001157 if (equip->classmark2_len)
Harald Welteae1f1592009-12-24 11:39:14 +01001158 DEBUGPC(DDB, ", classmark2=%s",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02001159 osmo_hexdump(equip->classmark2, equip->classmark2_len));
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001160 if (equip->classmark3_len)
Harald Welteae1f1592009-12-24 11:39:14 +01001161 DEBUGPC(DDB, ", classmark3=%s",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02001162 osmo_hexdump(equip->classmark3, equip->classmark3_len));
Harald Welteae1f1592009-12-24 11:39:14 +01001163 DEBUGPC(DDB, "\n");
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001164
Harald Weltec2e302d2009-07-05 14:08:13 +02001165 dbi_conn_quote_binary_copy(conn, equip->classmark2,
1166 equip->classmark2_len, &cm2);
1167 dbi_conn_quote_binary_copy(conn, equip->classmark3,
1168 equip->classmark3_len, &cm3);
Holger Hans Peter Freytherf64a20f2010-12-26 20:04:49 +01001169 dbi_conn_quote_string_copy(conn, equip->imei, &q_imei);
Harald Weltec2e302d2009-07-05 14:08:13 +02001170
1171 result = dbi_conn_queryf(conn,
1172 "UPDATE Equipment SET "
1173 "updated = datetime('now'), "
1174 "classmark1 = %u, "
1175 "classmark2 = %s, "
1176 "classmark3 = %s "
Holger Hans Peter Freytherf64a20f2010-12-26 20:04:49 +01001177 "WHERE imei = %s ",
1178 classmark1, cm2, cm3, q_imei);
Harald Weltec2e302d2009-07-05 14:08:13 +02001179
1180 free(cm2);
1181 free(cm3);
Holger Hans Peter Freytherf64a20f2010-12-26 20:04:49 +01001182 free(q_imei);
Harald Weltec2e302d2009-07-05 14:08:13 +02001183
1184 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +01001185 LOGP(DDB, LOGL_ERROR, "Failed to update Equipment\n");
Harald Weltec2e302d2009-07-05 14:08:13 +02001186 return -EIO;
1187 }
1188
1189 dbi_result_free(result);
1190 return 0;
1191}
1192
Jan Luebbebfbdeec2012-12-27 00:27:16 +01001193int db_subscriber_expire(void *priv, void (*callback)(void *priv, long long unsigned int id))
1194{
1195 dbi_result result;
1196
1197 result = dbi_conn_query(conn,
1198 "SELECT id "
1199 "FROM Subscriber "
1200 "WHERE lac != 0 AND "
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02001201 "( expire_lu is NOT NULL "
1202 "AND expire_lu < datetime('now') ) "
Jan Luebbebfbdeec2012-12-27 00:27:16 +01001203 "LIMIT 1");
1204 if (!result) {
1205 LOGP(DDB, LOGL_ERROR, "Failed to get expired subscribers\n");
1206 return -EIO;
1207 }
1208
1209 while (dbi_result_next_row(result))
1210 callback(priv, dbi_result_get_ulonglong(result, "id"));
1211
1212 dbi_result_free(result);
1213 return 0;
1214}
1215
Harald Welte0b906d02009-12-24 11:21:42 +01001216int db_subscriber_alloc_tmsi(struct gsm_subscriber *subscriber)
1217{
1218 dbi_result result = NULL;
Harald Welte3ad03462016-03-17 14:41:26 +01001219 char tmsi[14];
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +08001220 char *tmsi_quoted;
Harald Welte0b906d02009-12-24 11:21:42 +01001221
Jan Luebbe5c15c852008-12-27 15:59:25 +00001222 for (;;) {
Daniel Willmanncdeb8152015-10-08 16:10:23 +02001223 if (RAND_bytes((uint8_t *) &subscriber->tmsi, sizeof(subscriber->tmsi)) != 1) {
1224 LOGP(DDB, LOGL_ERROR, "RAND_bytes failed\n");
1225 return 1;
1226 }
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001227 if (subscriber->tmsi == GSM_RESERVED_TMSI)
1228 continue;
1229
Harald Welte3ad03462016-03-17 14:41:26 +01001230 sprintf(tmsi, "%u", subscriber->tmsi);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001231 dbi_conn_quote_string_copy(conn, tmsi, &tmsi_quoted);
Jan Luebbe5c15c852008-12-27 15:59:25 +00001232 result = dbi_conn_queryf(conn,
1233 "SELECT * FROM Subscriber "
1234 "WHERE tmsi = %s ",
Harald Welte0b906d02009-12-24 11:21:42 +01001235 tmsi_quoted);
1236
Holger Freyther12aa50d2009-01-01 18:02:05 +00001237 free(tmsi_quoted);
Harald Welte0b906d02009-12-24 11:21:42 +01001238
1239 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +01001240 LOGP(DDB, LOGL_ERROR, "Failed to query Subscriber "
1241 "while allocating new TMSI.\n");
Jan Luebbe5c15c852008-12-27 15:59:25 +00001242 return 1;
1243 }
Harald Welte0b906d02009-12-24 11:21:42 +01001244 if (dbi_result_get_numrows(result)) {
Jan Luebbe5c15c852008-12-27 15:59:25 +00001245 dbi_result_free(result);
1246 continue;
1247 }
1248 if (!dbi_result_next_row(result)) {
Jan Luebbe5c15c852008-12-27 15:59:25 +00001249 dbi_result_free(result);
Harald Welteae1f1592009-12-24 11:39:14 +01001250 DEBUGP(DDB, "Allocated TMSI %u for IMSI %s.\n",
1251 subscriber->tmsi, subscriber->imsi);
Holger Freyther12aa50d2009-01-01 18:02:05 +00001252 return db_sync_subscriber(subscriber);
Jan Luebbe5c15c852008-12-27 15:59:25 +00001253 }
1254 dbi_result_free(result);
1255 }
1256 return 0;
Jan Luebbe7398eb92008-12-27 00:45:41 +00001257}
1258
Max0fcd2e22016-06-07 15:32:16 +02001259int db_subscriber_alloc_exten(struct gsm_subscriber *subscriber, uint64_t smin,
1260 uint64_t smax)
Harald Welte0b906d02009-12-24 11:21:42 +01001261{
1262 dbi_result result = NULL;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001263 uint32_t try;
Harald Welte0b906d02009-12-24 11:21:42 +01001264
Jan Luebbeebcce2a2009-08-12 19:45:37 +02001265 for (;;) {
Max0fcd2e22016-06-07 15:32:16 +02001266 try = (rand() % (smax - smin + 1) + smin);
Jan Luebbeebcce2a2009-08-12 19:45:37 +02001267 result = dbi_conn_queryf(conn,
1268 "SELECT * FROM Subscriber "
Jan Luebbe1da59ed2009-08-12 19:59:27 +02001269 "WHERE extension = %i",
Jan Luebbeebcce2a2009-08-12 19:45:37 +02001270 try
1271 );
Harald Welte0b906d02009-12-24 11:21:42 +01001272 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +01001273 LOGP(DDB, LOGL_ERROR, "Failed to query Subscriber "
1274 "while allocating new extension.\n");
Jan Luebbeebcce2a2009-08-12 19:45:37 +02001275 return 1;
1276 }
1277 if (dbi_result_get_numrows(result)){
1278 dbi_result_free(result);
1279 continue;
1280 }
1281 if (!dbi_result_next_row(result)) {
1282 dbi_result_free(result);
1283 break;
1284 }
1285 dbi_result_free(result);
1286 }
1287 sprintf(subscriber->extension, "%i", try);
Harald Welteae1f1592009-12-24 11:39:14 +01001288 DEBUGP(DDB, "Allocated extension %i for IMSI %s.\n", try, subscriber->imsi);
Jan Luebbeebcce2a2009-08-12 19:45:37 +02001289 return db_sync_subscriber(subscriber);
1290}
Jan Luebbe31bef492009-08-12 14:31:14 +02001291/*
1292 * try to allocate a new unique token for this subscriber and return it
1293 * via a parameter. if the subscriber already has a token, return
1294 * an error.
1295 */
1296
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001297int db_subscriber_alloc_token(struct gsm_subscriber *subscriber, uint32_t *token)
Harald Welte (local)3feef252009-08-13 13:26:11 +02001298{
1299 dbi_result result;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001300 uint32_t try;
Harald Welte (local)3feef252009-08-13 13:26:11 +02001301
Jan Luebbe31bef492009-08-12 14:31:14 +02001302 for (;;) {
Daniel Willmann2aedfbd2015-10-08 16:10:26 +02001303 if (RAND_bytes((uint8_t *) &try, sizeof(try)) != 1) {
1304 LOGP(DDB, LOGL_ERROR, "RAND_bytes failed\n");
1305 return 1;
1306 }
Jan Luebbe31bef492009-08-12 14:31:14 +02001307 if (!try) /* 0 is an invalid token */
1308 continue;
1309 result = dbi_conn_queryf(conn,
1310 "SELECT * FROM AuthToken "
Harald Welte (local)3feef252009-08-13 13:26:11 +02001311 "WHERE subscriber_id = %llu OR token = \"%08X\" ",
1312 subscriber->id, try);
1313 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +01001314 LOGP(DDB, LOGL_ERROR, "Failed to query AuthToken "
1315 "while allocating new token.\n");
Jan Luebbe31bef492009-08-12 14:31:14 +02001316 return 1;
1317 }
Harald Welte (local)3feef252009-08-13 13:26:11 +02001318 if (dbi_result_get_numrows(result)) {
Jan Luebbe31bef492009-08-12 14:31:14 +02001319 dbi_result_free(result);
1320 continue;
1321 }
1322 if (!dbi_result_next_row(result)) {
1323 dbi_result_free(result);
1324 break;
1325 }
1326 dbi_result_free(result);
1327 }
1328 result = dbi_conn_queryf(conn,
1329 "INSERT INTO AuthToken "
1330 "(subscriber_id, created, token) "
1331 "VALUES "
Harald Welte (local)3feef252009-08-13 13:26:11 +02001332 "(%llu, datetime('now'), \"%08X\") ",
1333 subscriber->id, try);
1334 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +01001335 LOGP(DDB, LOGL_ERROR, "Failed to create token %08X for "
1336 "IMSI %s.\n", try, subscriber->imsi);
Jan Luebbe31bef492009-08-12 14:31:14 +02001337 return 1;
1338 }
Harald Welte (local)3feef252009-08-13 13:26:11 +02001339 dbi_result_free(result);
Jan Luebbe31bef492009-08-12 14:31:14 +02001340 *token = try;
Harald Welteae1f1592009-12-24 11:39:14 +01001341 DEBUGP(DDB, "Allocated token %08X for IMSI %s.\n", try, subscriber->imsi);
Harald Welte (local)3feef252009-08-13 13:26:11 +02001342
Jan Luebbe31bef492009-08-12 14:31:14 +02001343 return 0;
1344}
1345
Harald Welted3fa84d2016-04-20 17:50:17 +02001346int db_subscriber_assoc_imei(struct gsm_subscriber *subscriber, char imei[GSM23003_IMEISV_NUM_DIGITS])
Harald Welte0b906d02009-12-24 11:21:42 +01001347{
Harald Welted409be72009-11-07 00:06:19 +09001348 unsigned long long equipment_id, watch_id;
Jan Luebbefac25fc2008-12-27 18:04:34 +00001349 dbi_result result;
1350
Neels Hofmeyr93bafb62017-01-13 03:12:08 +01001351 osmo_strlcpy(subscriber->equipment.imei, imei, sizeof(subscriber->equipment.imei));
Harald Weltec2e302d2009-07-05 14:08:13 +02001352
Jan Luebbefac25fc2008-12-27 18:04:34 +00001353 result = dbi_conn_queryf(conn,
1354 "INSERT OR IGNORE INTO Equipment "
Jan Luebbee30dbb32008-12-27 18:08:13 +00001355 "(imei, created, updated) "
Jan Luebbefac25fc2008-12-27 18:04:34 +00001356 "VALUES "
Jan Luebbee30dbb32008-12-27 18:08:13 +00001357 "(%s, datetime('now'), datetime('now')) ",
Harald Welte0b906d02009-12-24 11:21:42 +01001358 imei);
1359 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +01001360 LOGP(DDB, LOGL_ERROR, "Failed to create Equipment by IMEI.\n");
Jan Luebbefac25fc2008-12-27 18:04:34 +00001361 return 1;
1362 }
Harald Welte0b906d02009-12-24 11:21:42 +01001363
Jan Luebbe391d86e2008-12-27 22:33:34 +00001364 equipment_id = 0;
1365 if (dbi_result_get_numrows_affected(result)) {
1366 equipment_id = dbi_conn_sequence_last(conn, NULL);
1367 }
Jan Luebbefac25fc2008-12-27 18:04:34 +00001368 dbi_result_free(result);
Harald Welte0b906d02009-12-24 11:21:42 +01001369
1370 if (equipment_id)
Harald Welteae1f1592009-12-24 11:39:14 +01001371 DEBUGP(DDB, "New Equipment: ID %llu, IMEI %s\n", equipment_id, imei);
Jan Luebbefac25fc2008-12-27 18:04:34 +00001372 else {
1373 result = dbi_conn_queryf(conn,
1374 "SELECT id FROM Equipment "
1375 "WHERE imei = %s ",
1376 imei
1377 );
Harald Welte0b906d02009-12-24 11:21:42 +01001378 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +01001379 LOGP(DDB, LOGL_ERROR, "Failed to query Equipment by IMEI.\n");
Jan Luebbefac25fc2008-12-27 18:04:34 +00001380 return 1;
1381 }
1382 if (!dbi_result_next_row(result)) {
Harald Welteae1f1592009-12-24 11:39:14 +01001383 LOGP(DDB, LOGL_ERROR, "Failed to find the Equipment.\n");
Jan Luebbefac25fc2008-12-27 18:04:34 +00001384 dbi_result_free(result);
1385 return 1;
1386 }
1387 equipment_id = dbi_result_get_ulonglong(result, "id");
1388 dbi_result_free(result);
1389 }
1390
1391 result = dbi_conn_queryf(conn,
1392 "INSERT OR IGNORE INTO EquipmentWatch "
1393 "(subscriber_id, equipment_id, created, updated) "
1394 "VALUES "
1395 "(%llu, %llu, datetime('now'), datetime('now')) ",
Harald Welte0b906d02009-12-24 11:21:42 +01001396 subscriber->id, equipment_id);
1397 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +01001398 LOGP(DDB, LOGL_ERROR, "Failed to create EquipmentWatch.\n");
Jan Luebbefac25fc2008-12-27 18:04:34 +00001399 return 1;
1400 }
Harald Welte0b906d02009-12-24 11:21:42 +01001401
Jan Luebbe391d86e2008-12-27 22:33:34 +00001402 watch_id = 0;
Harald Welte0b906d02009-12-24 11:21:42 +01001403 if (dbi_result_get_numrows_affected(result))
Jan Luebbe391d86e2008-12-27 22:33:34 +00001404 watch_id = dbi_conn_sequence_last(conn, NULL);
Harald Welte0b906d02009-12-24 11:21:42 +01001405
Jan Luebbefac25fc2008-12-27 18:04:34 +00001406 dbi_result_free(result);
Harald Welte0b906d02009-12-24 11:21:42 +01001407 if (watch_id)
Harald Welteae1f1592009-12-24 11:39:14 +01001408 DEBUGP(DDB, "New EquipmentWatch: ID %llu, IMSI %s, IMEI %s\n",
1409 equipment_id, subscriber->imsi, imei);
Jan Luebbefac25fc2008-12-27 18:04:34 +00001410 else {
1411 result = dbi_conn_queryf(conn,
1412 "UPDATE EquipmentWatch "
1413 "SET updated = datetime('now') "
1414 "WHERE subscriber_id = %llu AND equipment_id = %llu ",
Harald Welte0b906d02009-12-24 11:21:42 +01001415 subscriber->id, equipment_id);
1416 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +01001417 LOGP(DDB, LOGL_ERROR, "Failed to update EquipmentWatch.\n");
Jan Luebbefac25fc2008-12-27 18:04:34 +00001418 return 1;
1419 }
1420 dbi_result_free(result);
Harald Welteae1f1592009-12-24 11:39:14 +01001421 DEBUGP(DDB, "Updated EquipmentWatch: ID %llu, IMSI %s, IMEI %s\n",
1422 equipment_id, subscriber->imsi, imei);
Jan Luebbefac25fc2008-12-27 18:04:34 +00001423 }
1424
1425 return 0;
1426}
1427
Harald Welte7e310b12009-03-30 20:56:32 +00001428/* store an [unsent] SMS to the database */
1429int db_sms_store(struct gsm_sms *sms)
1430{
1431 dbi_result result;
Holger Hans Peter Freytherca3c2562013-10-08 03:17:30 +02001432 char *q_text, *q_daddr, *q_saddr;
Harald Welte76042182009-08-08 16:03:15 +02001433 unsigned char *q_udata;
1434 char *validity_timestamp = "2222-2-2";
1435
1436 /* FIXME: generate validity timestamp based on validity_minutes */
Harald Welte7e310b12009-03-30 20:56:32 +00001437
1438 dbi_conn_quote_string_copy(conn, (char *)sms->text, &q_text);
Harald Weltec0de14d2012-11-23 23:35:01 +01001439 dbi_conn_quote_string_copy(conn, (char *)sms->dst.addr, &q_daddr);
Holger Hans Peter Freytherca3c2562013-10-08 03:17:30 +02001440 dbi_conn_quote_string_copy(conn, (char *)sms->src.addr, &q_saddr);
Harald Welte76042182009-08-08 16:03:15 +02001441 dbi_conn_quote_binary_copy(conn, sms->user_data, sms->user_data_len,
1442 &q_udata);
Holger Hans Peter Freytherca3c2562013-10-08 03:17:30 +02001443
Harald Weltef3efc592009-07-27 20:11:35 +02001444 /* FIXME: correct validity period */
Harald Welte7e310b12009-03-30 20:56:32 +00001445 result = dbi_conn_queryf(conn,
1446 "INSERT INTO SMS "
Alexander Chemerisca7ed2d2013-10-08 03:17:32 +02001447 "(created, valid_until, "
Harald Welte76042182009-08-08 16:03:15 +02001448 "reply_path_req, status_rep_req, protocol_id, "
Holger Hans Peter Freytherca3c2562013-10-08 03:17:30 +02001449 "data_coding_scheme, ud_hdr_ind, "
1450 "user_data, text, "
1451 "dest_addr, dest_ton, dest_npi, "
1452 "src_addr, src_ton, src_npi) VALUES "
Alexander Chemerisca7ed2d2013-10-08 03:17:32 +02001453 "(datetime('now'), %u, "
Holger Hans Peter Freytherca3c2562013-10-08 03:17:30 +02001454 "%u, %u, %u, "
1455 "%u, %u, "
1456 "%s, %s, "
1457 "%s, %u, %u, "
1458 "%s, %u, %u)",
Alexander Chemerisca7ed2d2013-10-08 03:17:32 +02001459 validity_timestamp,
Harald Welte76042182009-08-08 16:03:15 +02001460 sms->reply_path_req, sms->status_rep_req, sms->protocol_id,
Harald Welted0b7b772009-08-09 19:03:42 +02001461 sms->data_coding_scheme, sms->ud_hdr_ind,
Holger Hans Peter Freytherca3c2562013-10-08 03:17:30 +02001462 q_udata, q_text,
1463 q_daddr, sms->dst.ton, sms->dst.npi,
1464 q_saddr, sms->src.ton, sms->src.npi);
Harald Welte7e310b12009-03-30 20:56:32 +00001465 free(q_text);
Harald Welte76042182009-08-08 16:03:15 +02001466 free(q_udata);
Holger Hans Peter Freytherca3c2562013-10-08 03:17:30 +02001467 free(q_daddr);
1468 free(q_saddr);
Harald Welte7e310b12009-03-30 20:56:32 +00001469
1470 if (!result)
1471 return -EIO;
1472
1473 dbi_result_free(result);
1474 return 0;
1475}
1476
Harald Welte2ebabca2009-08-09 19:05:21 +02001477static struct gsm_sms *sms_from_result(struct gsm_network *net, dbi_result result)
Harald Welte7e310b12009-03-30 20:56:32 +00001478{
Harald Welte76042182009-08-08 16:03:15 +02001479 struct gsm_sms *sms = sms_alloc();
Holger Hans Peter Freytherca3c2562013-10-08 03:17:30 +02001480 const char *text, *daddr, *saddr;
Harald Welte76042182009-08-08 16:03:15 +02001481 const unsigned char *user_data;
Harald Welte7e310b12009-03-30 20:56:32 +00001482
Harald Welte76042182009-08-08 16:03:15 +02001483 if (!sms)
Harald Welte7e310b12009-03-30 20:56:32 +00001484 return NULL;
Harald Welte7e310b12009-03-30 20:56:32 +00001485
Harald Weltebe3e3782009-07-05 14:06:41 +02001486 sms->id = dbi_result_get_ulonglong(result, "id");
Harald Welte7e310b12009-03-30 20:56:32 +00001487
Harald Weltef3efc592009-07-27 20:11:35 +02001488 /* FIXME: validity */
Harald Welte76042182009-08-08 16:03:15 +02001489 /* FIXME: those should all be get_uchar, but sqlite3 is braindead */
Holger Hans Peter Freytherb115cb62014-07-03 14:00:30 +02001490 sms->reply_path_req = dbi_result_get_ulonglong(result, "reply_path_req");
1491 sms->status_rep_req = dbi_result_get_ulonglong(result, "status_rep_req");
1492 sms->ud_hdr_ind = dbi_result_get_ulonglong(result, "ud_hdr_ind");
1493 sms->protocol_id = dbi_result_get_ulonglong(result, "protocol_id");
1494 sms->data_coding_scheme = dbi_result_get_ulonglong(result,
Harald Weltef3efc592009-07-27 20:11:35 +02001495 "data_coding_scheme");
Harald Welte76042182009-08-08 16:03:15 +02001496 /* sms->msg_ref is temporary and not stored in DB */
Harald Weltef3efc592009-07-27 20:11:35 +02001497
Holger Hans Peter Freytherb115cb62014-07-03 14:00:30 +02001498 sms->dst.npi = dbi_result_get_ulonglong(result, "dest_npi");
1499 sms->dst.ton = dbi_result_get_ulonglong(result, "dest_ton");
Harald Welte76042182009-08-08 16:03:15 +02001500 daddr = dbi_result_get_string(result, "dest_addr");
Neels Hofmeyr93bafb62017-01-13 03:12:08 +01001501 if (daddr)
1502 osmo_strlcpy(sms->dst.addr, daddr, sizeof(sms->dst.addr));
Jacob Erlbeck1e30a282014-12-03 09:28:24 +01001503 sms->receiver = subscr_get_by_extension(net->subscr_group, sms->dst.addr);
Harald Welte76042182009-08-08 16:03:15 +02001504
Holger Hans Peter Freytherb115cb62014-07-03 14:00:30 +02001505 sms->src.npi = dbi_result_get_ulonglong(result, "src_npi");
1506 sms->src.ton = dbi_result_get_ulonglong(result, "src_ton");
Holger Hans Peter Freytherca3c2562013-10-08 03:17:30 +02001507 saddr = dbi_result_get_string(result, "src_addr");
Neels Hofmeyr93bafb62017-01-13 03:12:08 +01001508 if (saddr)
1509 osmo_strlcpy(sms->src.addr, saddr, sizeof(sms->src.addr));
Holger Hans Peter Freytherca3c2562013-10-08 03:17:30 +02001510
Harald Welte76042182009-08-08 16:03:15 +02001511 sms->user_data_len = dbi_result_get_field_length(result, "user_data");
1512 user_data = dbi_result_get_binary(result, "user_data");
1513 if (sms->user_data_len > sizeof(sms->user_data))
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001514 sms->user_data_len = (uint8_t) sizeof(sms->user_data);
Harald Welte76042182009-08-08 16:03:15 +02001515 memcpy(sms->user_data, user_data, sms->user_data_len);
Harald Weltebe3e3782009-07-05 14:06:41 +02001516
1517 text = dbi_result_get_string(result, "text");
Neels Hofmeyr93bafb62017-01-13 03:12:08 +01001518 if (text)
1519 osmo_strlcpy(sms->text, text, sizeof(sms->text));
Harald Welte2ebabca2009-08-09 19:05:21 +02001520 return sms;
1521}
1522
Holger Hans Peter Freyther812dad02010-12-24 23:18:31 +01001523struct gsm_sms *db_sms_get(struct gsm_network *net, unsigned long long id)
1524{
1525 dbi_result result;
1526 struct gsm_sms *sms;
1527
1528 result = dbi_conn_queryf(conn,
1529 "SELECT * FROM SMS WHERE SMS.id = %llu", id);
1530 if (!result)
1531 return NULL;
1532
1533 if (!dbi_result_next_row(result)) {
1534 dbi_result_free(result);
1535 return NULL;
1536 }
1537
1538 sms = sms_from_result(net, result);
1539
1540 dbi_result_free(result);
1541
1542 return sms;
1543}
1544
Harald Welte2ebabca2009-08-09 19:05:21 +02001545/* retrieve the next unsent SMS with ID >= min_id */
Holger Hans Peter Freytherb464fb42010-03-25 09:59:30 +01001546struct gsm_sms *db_sms_get_unsent(struct gsm_network *net, unsigned long long min_id)
Harald Welte2ebabca2009-08-09 19:05:21 +02001547{
1548 dbi_result result;
1549 struct gsm_sms *sms;
1550
1551 result = dbi_conn_queryf(conn,
Sylvain Munaut7a7d3642010-07-03 22:00:45 +02001552 "SELECT SMS.* "
1553 "FROM SMS JOIN Subscriber ON "
Alexander Chemerisca7ed2d2013-10-08 03:17:32 +02001554 "SMS.dest_addr = Subscriber.extension "
Sylvain Munaut7a7d3642010-07-03 22:00:45 +02001555 "WHERE SMS.id >= %llu AND SMS.sent IS NULL "
1556 "AND Subscriber.lac > 0 "
1557 "ORDER BY SMS.id LIMIT 1",
Harald Welte2ebabca2009-08-09 19:05:21 +02001558 min_id);
1559 if (!result)
1560 return NULL;
1561
1562 if (!dbi_result_next_row(result)) {
1563 dbi_result_free(result);
1564 return NULL;
1565 }
1566
1567 sms = sms_from_result(net, result);
Harald Welte7e310b12009-03-30 20:56:32 +00001568
1569 dbi_result_free(result);
Harald Welte2ebabca2009-08-09 19:05:21 +02001570
1571 return sms;
1572}
1573
Holger Hans Peter Freyther73b878a2010-12-25 00:33:40 +01001574struct gsm_sms *db_sms_get_unsent_by_subscr(struct gsm_network *net,
1575 unsigned long long min_subscr_id,
1576 unsigned int failed)
Sylvain Munautff1f19e2009-12-22 13:22:29 +01001577{
1578 dbi_result result;
1579 struct gsm_sms *sms;
1580
1581 result = dbi_conn_queryf(conn,
Sylvain Munaut7a7d3642010-07-03 22:00:45 +02001582 "SELECT SMS.* "
1583 "FROM SMS JOIN Subscriber ON "
Alexander Chemerisca7ed2d2013-10-08 03:17:32 +02001584 "SMS.dest_addr = Subscriber.extension "
1585 "WHERE Subscriber.id >= %llu AND SMS.sent IS NULL "
Holger Hans Peter Freyther73b878a2010-12-25 00:33:40 +01001586 "AND Subscriber.lac > 0 AND SMS.deliver_attempts < %u "
Alexander Chemerisca7ed2d2013-10-08 03:17:32 +02001587 "ORDER BY Subscriber.id, SMS.id LIMIT 1",
Holger Hans Peter Freyther73b878a2010-12-25 00:33:40 +01001588 min_subscr_id, failed);
Sylvain Munautff1f19e2009-12-22 13:22:29 +01001589 if (!result)
1590 return NULL;
1591
1592 if (!dbi_result_next_row(result)) {
1593 dbi_result_free(result);
1594 return NULL;
1595 }
1596
1597 sms = sms_from_result(net, result);
1598
1599 dbi_result_free(result);
1600
1601 return sms;
1602}
1603
Sylvain Munautd5778fc2009-12-21 01:09:57 +01001604/* retrieve the next unsent SMS for a given subscriber */
Harald Welte2ebabca2009-08-09 19:05:21 +02001605struct gsm_sms *db_sms_get_unsent_for_subscr(struct gsm_subscriber *subscr)
1606{
1607 dbi_result result;
1608 struct gsm_sms *sms;
1609
1610 result = dbi_conn_queryf(conn,
Sylvain Munaut7a7d3642010-07-03 22:00:45 +02001611 "SELECT SMS.* "
1612 "FROM SMS JOIN Subscriber ON "
Alexander Chemerisca7ed2d2013-10-08 03:17:32 +02001613 "SMS.dest_addr = Subscriber.extension "
1614 "WHERE Subscriber.id = %llu AND SMS.sent IS NULL "
Sylvain Munaut7a7d3642010-07-03 22:00:45 +02001615 "AND Subscriber.lac > 0 "
1616 "ORDER BY SMS.id LIMIT 1",
Harald Welte2ebabca2009-08-09 19:05:21 +02001617 subscr->id);
1618 if (!result)
1619 return NULL;
1620
1621 if (!dbi_result_next_row(result)) {
1622 dbi_result_free(result);
1623 return NULL;
1624 }
1625
Jacob Erlbeck1e30a282014-12-03 09:28:24 +01001626 sms = sms_from_result(subscr->group->net, result);
Harald Welte2ebabca2009-08-09 19:05:21 +02001627
1628 dbi_result_free(result);
1629
Harald Welte7e310b12009-03-30 20:56:32 +00001630 return sms;
1631}
1632
Alexander Chemeris1e77e3d2014-03-08 21:27:37 +01001633/* mark a given SMS as delivered */
1634int db_sms_mark_delivered(struct gsm_sms *sms)
Harald Welte7e310b12009-03-30 20:56:32 +00001635{
1636 dbi_result result;
1637
1638 result = dbi_conn_queryf(conn,
1639 "UPDATE SMS "
1640 "SET sent = datetime('now') "
1641 "WHERE id = %llu", sms->id);
1642 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +01001643 LOGP(DDB, LOGL_ERROR, "Failed to mark SMS %llu as sent.\n", sms->id);
Harald Welte7e310b12009-03-30 20:56:32 +00001644 return 1;
1645 }
1646
1647 dbi_result_free(result);
1648 return 0;
1649}
Harald Welte (local)db552c52009-08-15 20:15:14 +02001650
1651/* increase the number of attempted deliveries */
1652int db_sms_inc_deliver_attempts(struct gsm_sms *sms)
1653{
1654 dbi_result result;
1655
1656 result = dbi_conn_queryf(conn,
1657 "UPDATE SMS "
1658 "SET deliver_attempts = deliver_attempts + 1 "
1659 "WHERE id = %llu", sms->id);
1660 if (!result) {
Harald Welteae1f1592009-12-24 11:39:14 +01001661 LOGP(DDB, LOGL_ERROR, "Failed to inc deliver attempts for "
1662 "SMS %llu.\n", sms->id);
Harald Welte (local)db552c52009-08-15 20:15:14 +02001663 return 1;
1664 }
1665
1666 dbi_result_free(result);
1667 return 0;
1668}
Harald Welte (local)026531e2009-08-16 10:40:10 +02001669
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001670int db_apdu_blob_store(struct gsm_subscriber *subscr,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001671 uint8_t apdu_id_flags, uint8_t len,
1672 uint8_t *apdu)
Harald Welte (local)026531e2009-08-16 10:40:10 +02001673{
1674 dbi_result result;
Holger Hans Peter Freyther2657abf2009-10-22 15:34:37 +02001675 unsigned char *q_apdu;
Harald Welte (local)026531e2009-08-16 10:40:10 +02001676
1677 dbi_conn_quote_binary_copy(conn, apdu, len, &q_apdu);
1678
1679 result = dbi_conn_queryf(conn,
1680 "INSERT INTO ApduBlobs "
1681 "(created,subscriber_id,apdu_id_flags,apdu) VALUES "
1682 "(datetime('now'),%llu,%u,%s)",
1683 subscr->id, apdu_id_flags, q_apdu);
1684
1685 free(q_apdu);
1686
1687 if (!result)
1688 return -EIO;
1689
1690 dbi_result_free(result);
1691 return 0;
1692}
Harald Welteffa55a42009-12-22 19:07:32 +01001693
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02001694int db_store_counter(struct osmo_counter *ctr)
Harald Welteffa55a42009-12-22 19:07:32 +01001695{
1696 dbi_result result;
1697 char *q_name;
1698
1699 dbi_conn_quote_string_copy(conn, ctr->name, &q_name);
1700
1701 result = dbi_conn_queryf(conn,
1702 "INSERT INTO Counters "
1703 "(timestamp,name,value) VALUES "
1704 "(datetime('now'),%s,%lu)", q_name, ctr->value);
1705
1706 free(q_name);
1707
1708 if (!result)
1709 return -EIO;
1710
1711 dbi_result_free(result);
1712 return 0;
1713}
Harald Weltef2b4cd72010-05-13 11:45:07 +02001714
1715static int db_store_rate_ctr(struct rate_ctr_group *ctrg, unsigned int num,
1716 char *q_prefix)
1717{
1718 dbi_result result;
1719 char *q_name;
1720
1721 dbi_conn_quote_string_copy(conn, ctrg->desc->ctr_desc[num].name,
1722 &q_name);
1723
1724 result = dbi_conn_queryf(conn,
Harald Weltec1919862010-05-13 12:55:20 +02001725 "Insert INTO RateCounters "
Harald Welted94d6a02010-05-14 17:38:47 +02001726 "(timestamp,name,idx,value) VALUES "
Harald Weltec1919862010-05-13 12:55:20 +02001727 "(datetime('now'),%s.%s,%u,%"PRIu64")",
1728 q_prefix, q_name, ctrg->idx, ctrg->ctr[num].current);
Harald Weltef2b4cd72010-05-13 11:45:07 +02001729
1730 free(q_name);
1731
1732 if (!result)
1733 return -EIO;
1734
1735 dbi_result_free(result);
1736 return 0;
1737}
1738
1739int db_store_rate_ctr_group(struct rate_ctr_group *ctrg)
1740{
1741 unsigned int i;
1742 char *q_prefix;
1743
Harald Weltec1919862010-05-13 12:55:20 +02001744 dbi_conn_quote_string_copy(conn, ctrg->desc->group_name_prefix, &q_prefix);
Harald Weltef2b4cd72010-05-13 11:45:07 +02001745
1746 for (i = 0; i < ctrg->desc->num_ctr; i++)
1747 db_store_rate_ctr(ctrg, i, q_prefix);
1748
1749 free(q_prefix);
1750
1751 return 0;
1752}