blob: 9c74a2455be5ca5c6c64a330b169808fed0ebced [file] [log] [blame]
Harald Weltee687be52016-05-03 18:49:27 +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 <string.h>
Max00b37152017-02-20 11:09:27 +010021#include <errno.h>
Harald Weltee687be52016-05-03 18:49:27 +020022
23#include <osmocom/core/utils.h>
24#include <osmocom/crypt/auth.h>
25
26#include <sqlite3.h>
27
28#include "logging.h"
29#include "db.h"
30
31#define LOGHLR(imsi, level, fmt, args ...) LOGP(DAUC, level, "%s: " fmt, imsi, ## args)
32
33#define SL3_TXT(x, stmt, idx) do { \
34 const char *_txt = (const char *) sqlite3_column_text(stmt, idx); \
35 if (_txt) \
36 strncpy(x, _txt, sizeof(x)); \
37 x[sizeof(x)-1] = '\0'; \
38 } while (0)
39
40int db_subscr_get(struct db_context *dbc, const char *imsi,
41 struct hlr_subscriber *subscr)
42{
Neels Hofmeyr4bde9492017-10-06 03:09:34 +020043 sqlite3_stmt *stmt = dbc->stmt[DB_STMT_SEL_BY_IMSI];
Maxadc66482017-02-20 11:23:20 +010044 int rc;
Harald Weltee687be52016-05-03 18:49:27 +020045
Max00b37152017-02-20 11:09:27 +010046 if (!db_bind_imsi(stmt, imsi))
47 return -EINVAL;
Harald Weltee687be52016-05-03 18:49:27 +020048
49 /* execute the statement */
50 rc = sqlite3_step(stmt);
51 if (rc != SQLITE_ROW) {
52 LOGHLR(imsi, LOGL_ERROR, "Error executing SQL: %d\n", rc);
Maxadc66482017-02-20 11:23:20 +010053 db_remove_reset(stmt);
54 return -ENOEXEC;
55 }
56
57 if (!subscr) {
58 db_remove_reset(stmt);
59 return 0;
Harald Weltee687be52016-05-03 18:49:27 +020060 }
61
62 /* obtain the various columns */
63 subscr->id = sqlite3_column_int64(stmt, 0);
64 SL3_TXT(subscr->imsi, stmt, 1);
65 SL3_TXT(subscr->msisdn, stmt, 2);
Harald Welte99909272016-05-05 18:24:15 +020066 /* FIXME: These should all be BLOBs as they might contain NUL */
Harald Weltee687be52016-05-03 18:49:27 +020067 SL3_TXT(subscr->vlr_number, stmt, 3);
68 SL3_TXT(subscr->sgsn_number, stmt, 4);
69 SL3_TXT(subscr->sgsn_address, stmt, 5);
70 subscr->periodic_lu_timer = sqlite3_column_int(stmt, 6);
71 subscr->periodic_rau_tau_timer = sqlite3_column_int(stmt, 7);
72 subscr->nam_cs = sqlite3_column_int(stmt, 8);
73 subscr->nam_ps = sqlite3_column_int(stmt, 9);
74 subscr->lmsi = sqlite3_column_int(stmt, 10);
75 subscr->ms_purged_cs = sqlite3_column_int(stmt, 11);
76 subscr->ms_purged_ps = sqlite3_column_int(stmt, 12);
77
Max00b37152017-02-20 11:09:27 +010078 db_remove_reset(stmt);
Harald Weltee687be52016-05-03 18:49:27 +020079
Maxadc66482017-02-20 11:23:20 +010080 return 0;
Harald Weltee687be52016-05-03 18:49:27 +020081}
82
Max3ce36862017-02-20 11:18:04 +010083int db_subscr_ps(struct db_context *dbc, const char *imsi, bool enable)
84{
85 sqlite3_stmt *stmt =
Neels Hofmeyr4bde9492017-10-06 03:09:34 +020086 dbc->stmt[enable ? DB_STMT_SET_NAM_PS_BY_IMSI : DB_STMT_UNSET_NAM_PS_BY_IMSI];
Max3ce36862017-02-20 11:18:04 +010087 int rc;
88
89 if (!db_bind_imsi(stmt, imsi))
90 return -EINVAL;
91
92 rc = sqlite3_step(stmt); /* execute the statement */
93 if (rc != SQLITE_DONE) {
94 LOGHLR(imsi, LOGL_ERROR, "Error executing SQL: %d\n", rc);
Neels Hofmeyr743cf422017-03-16 20:38:44 +010095 db_remove_reset(stmt);
96 return -ENOEXEC;
Max3ce36862017-02-20 11:18:04 +010097 }
98
99 rc = sqlite3_changes(dbc->db); /* verify execution result */
100 if (rc != 1) {
101 LOGHLR(imsi, LOGL_ERROR, "SQL modified %d rows (expected 1)\n",
102 rc);
103 rc = -EINVAL;
104 }
105
106 db_remove_reset(stmt);
107 return rc;
108}
109
Harald Weltee687be52016-05-03 18:49:27 +0200110int db_subscr_lu(struct db_context *dbc,
111 const struct hlr_subscriber *subscr,
112 const char *vlr_or_sgsn_number, bool lu_is_ps)
113{
Neels Hofmeyr4bde9492017-10-06 03:09:34 +0200114 sqlite3_stmt *stmt = dbc->stmt[DB_STMT_UPD_VLR_BY_ID];
Harald Weltee687be52016-05-03 18:49:27 +0200115 const char *txt;
116 int rc, ret = 0;
117
118 if (lu_is_ps) {
Neels Hofmeyr4bde9492017-10-06 03:09:34 +0200119 stmt = dbc->stmt[DB_STMT_UPD_SGSN_BY_ID];
Harald Weltee687be52016-05-03 18:49:27 +0200120 txt = subscr->sgsn_number;
121 } else {
Neels Hofmeyr4bde9492017-10-06 03:09:34 +0200122 stmt = dbc->stmt[DB_STMT_UPD_VLR_BY_ID];
Harald Weltee687be52016-05-03 18:49:27 +0200123 txt = subscr->vlr_number;
124 }
125
126 rc = sqlite3_bind_int64(stmt, 1, subscr->id);
127 if (rc != SQLITE_OK) {
128 LOGP(DAUC, LOGL_ERROR, "Error binding ID: %d\n", rc);
Max00b37152017-02-20 11:09:27 +0100129 return -EINVAL;
Harald Weltee687be52016-05-03 18:49:27 +0200130 }
131
132 rc = sqlite3_bind_text(stmt, 2, txt, -1, SQLITE_STATIC);
133 if (rc != SQLITE_OK) {
134 LOGP(DAUC, LOGL_ERROR, "Error binding VLR/SGSN Number: %d\n", rc);
Max00b37152017-02-20 11:09:27 +0100135 ret = -EBADMSG;
Harald Weltee687be52016-05-03 18:49:27 +0200136 goto out;
137 }
138
139 /* execute the statement */
140 rc = sqlite3_step(stmt);
141 if (rc != SQLITE_DONE) {
142 LOGP(DAUC, LOGL_ERROR, "Error updating SQN: %d\n", rc);
Max00b37152017-02-20 11:09:27 +0100143 ret = -ENOEXEC;
Harald Weltee687be52016-05-03 18:49:27 +0200144 }
145out:
Max00b37152017-02-20 11:09:27 +0100146 db_remove_reset(stmt);
Harald Weltee687be52016-05-03 18:49:27 +0200147
148 return ret;
149}
Harald Welteb18f0e02016-05-05 21:03:03 +0200150
151int db_subscr_purge(struct db_context *dbc, const char *imsi, bool is_ps)
152{
Neels Hofmeyr4bde9492017-10-06 03:09:34 +0200153 sqlite3_stmt *stmt = dbc->stmt[DB_STMT_UPD_VLR_BY_ID];
Harald Welteb18f0e02016-05-05 21:03:03 +0200154 int rc, ret = 1;
155
156 if (is_ps)
Neels Hofmeyr4bde9492017-10-06 03:09:34 +0200157 stmt = dbc->stmt[DB_STMT_UPD_PURGE_PS_BY_IMSI];
Harald Welteb18f0e02016-05-05 21:03:03 +0200158 else
Neels Hofmeyr4bde9492017-10-06 03:09:34 +0200159 stmt = dbc->stmt[DB_STMT_UPD_PURGE_CS_BY_IMSI];
Harald Welteb18f0e02016-05-05 21:03:03 +0200160
Max00b37152017-02-20 11:09:27 +0100161 if (!db_bind_imsi(stmt, imsi))
162 return -EINVAL;
Harald Welteb18f0e02016-05-05 21:03:03 +0200163
164 /* execute the statement */
165 rc = sqlite3_step(stmt);
166 if (rc != SQLITE_DONE) {
167 LOGP(DAUC, LOGL_ERROR, "Error setting Purged: %d\n", rc);
Max00b37152017-02-20 11:09:27 +0100168 ret = -ENOEXEC;
Harald Welteb18f0e02016-05-05 21:03:03 +0200169 }
170 /* FIXME: return 0 in case IMSI not known */
Max00b37152017-02-20 11:09:27 +0100171
172 db_remove_reset(stmt);
Harald Welteb18f0e02016-05-05 21:03:03 +0200173
174 return ret;
175}