blob: 340e7ce47d9e854fc824e95f660c27a685c17e8a [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{
43 sqlite3_stmt *stmt = dbc->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 =
86 dbc->stmt[enable ? SET_NAM_PS_BY_IMSI : UNSET_NAM_PS_BY_IMSI];
87 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);
95 rc = -ENOEXEC;
96 }
97
98 rc = sqlite3_changes(dbc->db); /* verify execution result */
99 if (rc != 1) {
100 LOGHLR(imsi, LOGL_ERROR, "SQL modified %d rows (expected 1)\n",
101 rc);
102 rc = -EINVAL;
103 }
104
105 db_remove_reset(stmt);
106 return rc;
107}
108
Harald Weltee687be52016-05-03 18:49:27 +0200109int db_subscr_lu(struct db_context *dbc,
110 const struct hlr_subscriber *subscr,
111 const char *vlr_or_sgsn_number, bool lu_is_ps)
112{
113 sqlite3_stmt *stmt = dbc->stmt[UPD_VLR_BY_ID];
114 const char *txt;
115 int rc, ret = 0;
116
117 if (lu_is_ps) {
118 stmt = dbc->stmt[UPD_SGSN_BY_ID];
119 txt = subscr->sgsn_number;
120 } else {
121 stmt = dbc->stmt[UPD_VLR_BY_ID];
122 txt = subscr->vlr_number;
123 }
124
125 rc = sqlite3_bind_int64(stmt, 1, subscr->id);
126 if (rc != SQLITE_OK) {
127 LOGP(DAUC, LOGL_ERROR, "Error binding ID: %d\n", rc);
Max00b37152017-02-20 11:09:27 +0100128 return -EINVAL;
Harald Weltee687be52016-05-03 18:49:27 +0200129 }
130
131 rc = sqlite3_bind_text(stmt, 2, txt, -1, SQLITE_STATIC);
132 if (rc != SQLITE_OK) {
133 LOGP(DAUC, LOGL_ERROR, "Error binding VLR/SGSN Number: %d\n", rc);
Max00b37152017-02-20 11:09:27 +0100134 ret = -EBADMSG;
Harald Weltee687be52016-05-03 18:49:27 +0200135 goto out;
136 }
137
138 /* execute the statement */
139 rc = sqlite3_step(stmt);
140 if (rc != SQLITE_DONE) {
141 LOGP(DAUC, LOGL_ERROR, "Error updating SQN: %d\n", rc);
Max00b37152017-02-20 11:09:27 +0100142 ret = -ENOEXEC;
Harald Weltee687be52016-05-03 18:49:27 +0200143 }
144out:
Max00b37152017-02-20 11:09:27 +0100145 db_remove_reset(stmt);
Harald Weltee687be52016-05-03 18:49:27 +0200146
147 return ret;
148}
Harald Welteb18f0e02016-05-05 21:03:03 +0200149
150int db_subscr_purge(struct db_context *dbc, const char *imsi, bool is_ps)
151{
152 sqlite3_stmt *stmt = dbc->stmt[UPD_VLR_BY_ID];
153 int rc, ret = 1;
154
155 if (is_ps)
156 stmt = dbc->stmt[UPD_PURGE_PS_BY_IMSI];
157 else
158 stmt = dbc->stmt[UPD_PURGE_CS_BY_IMSI];
159
Max00b37152017-02-20 11:09:27 +0100160 if (!db_bind_imsi(stmt, imsi))
161 return -EINVAL;
Harald Welteb18f0e02016-05-05 21:03:03 +0200162
163 /* execute the statement */
164 rc = sqlite3_step(stmt);
165 if (rc != SQLITE_DONE) {
166 LOGP(DAUC, LOGL_ERROR, "Error setting Purged: %d\n", rc);
Max00b37152017-02-20 11:09:27 +0100167 ret = -ENOEXEC;
Harald Welteb18f0e02016-05-05 21:03:03 +0200168 }
169 /* FIXME: return 0 in case IMSI not known */
Max00b37152017-02-20 11:09:27 +0100170
171 db_remove_reset(stmt);
Harald Welteb18f0e02016-05-05 21:03:03 +0200172
173 return ret;
174}