blob: 1f1bacb8a7981ec00b4e54cdb550ed65ce641987 [file] [log] [blame]
Harald Weltee72cf552016-04-28 07:18:49 +02001#pragma once
2
Harald Weltee687be52016-05-03 18:49:27 +02003#include <stdbool.h>
Harald Weltee72cf552016-04-28 07:18:49 +02004#include <sqlite3.h>
5
Neels Hofmeyr0d28d852019-12-04 01:04:32 +01006#include <osmocom/gsupclient/gsup_peer_id.h>
Neels Hofmeyrdd73ccf2019-12-12 04:04:53 +01007#include <osmocom/gsm/gsup.h>
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +01008
Neels Hofmeyr00b1d432017-10-17 01:43:48 +02009struct hlr;
10
Harald Weltee72cf552016-04-28 07:18:49 +020011enum stmt_idx {
Neels Hofmeyr4bde9492017-10-06 03:09:34 +020012 DB_STMT_SEL_BY_IMSI,
Neels Hofmeyr9c2bbc82017-10-09 17:30:32 +020013 DB_STMT_SEL_BY_MSISDN,
14 DB_STMT_SEL_BY_ID,
Oliver Smith81db3892019-01-09 12:03:51 +010015 DB_STMT_SEL_BY_IMEI,
Neels Hofmeyr4bde9492017-10-06 03:09:34 +020016 DB_STMT_UPD_VLR_BY_ID,
17 DB_STMT_UPD_SGSN_BY_ID,
Oliver Smith81db3892019-01-09 12:03:51 +010018 DB_STMT_UPD_IMEI_BY_IMSI,
Neels Hofmeyr4bde9492017-10-06 03:09:34 +020019 DB_STMT_AUC_BY_IMSI,
20 DB_STMT_AUC_UPD_SQN,
21 DB_STMT_UPD_PURGE_CS_BY_IMSI,
22 DB_STMT_UPD_PURGE_PS_BY_IMSI,
Neels Hofmeyre8ccd502017-10-06 04:10:06 +020023 DB_STMT_UPD_NAM_PS_BY_IMSI,
24 DB_STMT_UPD_NAM_CS_BY_IMSI,
Neels Hofmeyrf7c3e6e2017-10-09 17:55:16 +020025 DB_STMT_SUBSCR_CREATE,
26 DB_STMT_DEL_BY_ID,
27 DB_STMT_SET_MSISDN_BY_IMSI,
Neels Hofmeyra820ea12018-12-02 19:46:46 +010028 DB_STMT_DELETE_MSISDN_BY_IMSI,
Neels Hofmeyr1332a172017-10-10 02:25:00 +020029 DB_STMT_AUC_2G_INSERT,
30 DB_STMT_AUC_2G_DELETE,
31 DB_STMT_AUC_3G_INSERT,
32 DB_STMT_AUC_3G_DELETE,
Stefan Sperling638ba8c2018-12-04 15:07:29 +010033 DB_STMT_SET_LAST_LU_SEEN,
Neels Hofmeyr07e16022019-11-20 02:36:35 +010034 DB_STMT_SET_LAST_LU_SEEN_PS,
Oliver Smith6b73fd92019-03-06 13:49:05 +010035 DB_STMT_EXISTS_BY_IMSI,
Vadim Yanitskiyc13599d2019-03-30 17:03:42 +070036 DB_STMT_EXISTS_BY_MSISDN,
Neels Hofmeyrdd73ccf2019-12-12 04:04:53 +010037 DB_STMT_IND_ADD,
38 DB_STMT_IND_SELECT,
39 DB_STMT_IND_DEL,
Neels Hofmeyr4bde9492017-10-06 03:09:34 +020040 _NUM_DB_STMT
Harald Weltee72cf552016-04-28 07:18:49 +020041};
42
43struct db_context {
44 char *fname;
45 sqlite3 *db;
Neels Hofmeyr4bde9492017-10-06 03:09:34 +020046 sqlite3_stmt *stmt[_NUM_DB_STMT];
Harald Weltee72cf552016-04-28 07:18:49 +020047};
48
Vadim Yanitskiyfbd736e2018-07-31 22:40:30 +070049/* Optional feature to make SQLite3 using talloc */
50#ifdef SQLITE_USE_TALLOC
51int db_sqlite3_use_talloc(void *ctx);
52#endif
53
Neels Hofmeyrd7d96972017-10-06 03:50:30 +020054void db_remove_reset(sqlite3_stmt *stmt);
Neels Hofmeyrf3144592017-10-06 03:40:52 +020055bool db_bind_text(sqlite3_stmt *stmt, const char *param_name, const char *text);
Neels Hofmeyr28da26e2017-10-06 03:44:57 +020056bool db_bind_int(sqlite3_stmt *stmt, const char *param_name, int nr);
57bool db_bind_int64(sqlite3_stmt *stmt, const char *param_name, int64_t nr);
Neels Hofmeyrf6c8f042019-11-25 03:59:50 +010058bool db_bind_null(sqlite3_stmt *stmt, const char *param_name);
Harald Weltee72cf552016-04-28 07:18:49 +020059void db_close(struct db_context *dbc);
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +010060struct db_context *db_open(void *ctx, const char *fname, bool enable_sqlite3_logging, bool allow_upgrades);
Harald Weltee72cf552016-04-28 07:18:49 +020061
62#include <osmocom/crypt/auth.h>
63
64/* obtain the authentication data for a given imsi */
65int db_get_auth_data(struct db_context *dbc, const char *imsi,
66 struct osmo_sub_auth_data *aud2g,
67 struct osmo_sub_auth_data *aud3g,
Neels Hofmeyr32633e22017-10-06 04:26:21 +020068 int64_t *subscr_id);
Harald Weltee72cf552016-04-28 07:18:49 +020069
Neels Hofmeyr32633e22017-10-06 04:26:21 +020070int db_update_sqn(struct db_context *dbc, int64_t id,
Harald Weltee72cf552016-04-28 07:18:49 +020071 uint64_t new_sqn);
72
73int db_get_auc(struct db_context *dbc, const char *imsi,
Neels Hofmeyrcab2fcd2017-03-15 00:07:43 +010074 unsigned int auc_3g_ind, struct osmo_auth_vector *vec,
75 unsigned int num_vec, const uint8_t *rand_auts,
Harald Welte06f5af22019-08-21 20:01:31 +020076 const uint8_t *auts, bool separation_bit);
Harald Weltee687be52016-05-03 18:49:27 +020077
78#include <osmocom/core/linuxlist.h>
79#include <osmocom/gsm/protocol/gsm_23_003.h>
80
81/* TODO: Get this from somewhere? */
82#define GT_MAX_DIGITS 15
83
84struct hlr_subscriber {
85 struct llist_head list;
86
Neels Hofmeyr32633e22017-10-06 04:26:21 +020087 int64_t id;
Harald Weltee687be52016-05-03 18:49:27 +020088 char imsi[GSM23003_IMSI_MAX_DIGITS+1];
Vadim Yanitskiy2e403d62019-05-25 19:12:33 +070089 char msisdn[GSM23003_MSISDN_MAX_DIGITS+1];
Harald Weltee687be52016-05-03 18:49:27 +020090 /* imeisv? */
Oliver Smith81db3892019-01-09 12:03:51 +010091 char imei[GSM23003_IMEI_NUM_DIGITS+1];
Neels Hofmeyrd6462072018-09-28 01:22:15 +020092 char vlr_number[32];
93 char sgsn_number[32];
Harald Weltee687be52016-05-03 18:49:27 +020094 char sgsn_address[GT_MAX_DIGITS+1];
95 /* ggsn number + address */
96 /* gmlc number */
97 /* smsc number */
98 uint32_t periodic_lu_timer;
99 uint32_t periodic_rau_tau_timer;
100 bool nam_cs;
101 bool nam_ps;
102 uint32_t lmsi;
103 bool ms_purged_cs;
104 bool ms_purged_ps;
Stefan Sperling5c14c9c2018-12-07 12:30:21 +0100105 time_t last_lu_seen;
Neels Hofmeyr07e16022019-11-20 02:36:35 +0100106 time_t last_lu_seen_ps;
Neels Hofmeyrf6c8f042019-11-25 03:59:50 +0100107 /* talloc'd IPA unit name */
108 struct osmo_ipa_name vlr_via_proxy;
109 struct osmo_ipa_name sgsn_via_proxy;
Harald Weltee687be52016-05-03 18:49:27 +0200110};
111
Stefan Sperling5c14c9c2018-12-07 12:30:21 +0100112/* A format string for use with strptime(3). This format string is
113 * used to parse the last_lu_seen column stored in the HLR database.
114 * See https://sqlite.org/lang_datefunc.html, function datetime(). */
115#define DB_LAST_LU_SEEN_FMT "%Y-%m-%d %H:%M:%S"
116
Neels Hofmeyr1332a172017-10-10 02:25:00 +0200117/* Like struct osmo_sub_auth_data, but the keys are in hexdump representation.
118 * This is useful because SQLite requires them in hexdump format, and callers
119 * like the VTY and CTRL interface also have them available as hexdump to begin
120 * with. In the binary format, a VTY command would first need to hexparse,
121 * after which the db function would again hexdump, copying to separate
122 * buffers. The roundtrip can be saved by providing char* to begin with. */
123struct sub_auth_data_str {
124 enum osmo_sub_auth_type type;
125 enum osmo_auth_algo algo;
126 union {
127 struct {
128 const char *opc;
129 const char *k;
130 uint64_t sqn;
131 int opc_is_op;
132 unsigned int ind_bitlen;
133 } umts;
134 struct {
135 const char *ki;
136 } gsm;
137 } u;
138};
139
Oliver Smithcd2af5e2019-03-06 13:17:39 +0100140#define DB_SUBSCR_FLAG_NAM_CS (1 << 1)
141#define DB_SUBSCR_FLAG_NAM_PS (1 << 2)
142
143int db_subscr_create(struct db_context *dbc, const char *imsi, uint8_t flags);
Neels Hofmeyrf7c3e6e2017-10-09 17:55:16 +0200144int db_subscr_delete_by_id(struct db_context *dbc, int64_t subscr_id);
145
146int db_subscr_update_msisdn_by_imsi(struct db_context *dbc, const char *imsi,
147 const char *msisdn);
Neels Hofmeyr1332a172017-10-10 02:25:00 +0200148int db_subscr_update_aud_by_id(struct db_context *dbc, int64_t subscr_id,
149 const struct sub_auth_data_str *aud);
Oliver Smith81db3892019-01-09 12:03:51 +0100150int db_subscr_update_imei_by_imsi(struct db_context *dbc, const char* imsi, const char *imei);
Neels Hofmeyrf7c3e6e2017-10-09 17:55:16 +0200151
Oliver Smith6b73fd92019-03-06 13:49:05 +0100152int db_subscr_exists_by_imsi(struct db_context *dbc, const char *imsi);
Vadim Yanitskiyc13599d2019-03-30 17:03:42 +0700153int db_subscr_exists_by_msisdn(struct db_context *dbc, const char *msisdn);
Oliver Smith6b73fd92019-03-06 13:49:05 +0100154
Neels Hofmeyr518335e2017-10-06 03:20:14 +0200155int db_subscr_get_by_imsi(struct db_context *dbc, const char *imsi,
156 struct hlr_subscriber *subscr);
Neels Hofmeyr9c2bbc82017-10-09 17:30:32 +0200157int db_subscr_get_by_msisdn(struct db_context *dbc, const char *msisdn,
158 struct hlr_subscriber *subscr);
159int db_subscr_get_by_id(struct db_context *dbc, int64_t id,
160 struct hlr_subscriber *subscr);
Oliver Smith81db3892019-01-09 12:03:51 +0100161int db_subscr_get_by_imei(struct db_context *dbc, const char *imei, struct hlr_subscriber *subscr);
Neels Hofmeyre8ccd502017-10-06 04:10:06 +0200162int db_subscr_nam(struct db_context *dbc, const char *imsi, bool nam_val, bool is_ps);
Neels Hofmeyrdd783052017-10-09 17:36:08 +0200163int db_subscr_lu(struct db_context *dbc, int64_t subscr_id,
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100164 const struct osmo_ipa_name *vlr_name, bool is_ps,
165 const struct osmo_ipa_name *via_proxy);
Harald Welteb18f0e02016-05-05 21:03:03 +0200166
Neels Hofmeyre50121e2017-10-09 17:48:51 +0200167int db_subscr_purge(struct db_context *dbc, const char *by_imsi,
168 bool purge_val, bool is_ps);
Neels Hofmeyr00b1d432017-10-17 01:43:48 +0200169
Neels Hofmeyrdd73ccf2019-12-12 04:04:53 +0100170int db_ind(struct db_context *dbc, const struct osmo_gsup_peer_id *vlr, unsigned int *ind);
171int db_ind_del(struct db_context *dbc, const struct osmo_gsup_peer_id *vlr);
172
Neels Hofmeyr73d14af2017-10-24 23:26:53 +0200173/*! Call sqlite3_column_text() and copy result to a char[].
174 * \param[out] buf A char[] used as sizeof() arg(!) and osmo_strlcpy() target.
175 * \param[in] stmt An sqlite3_stmt*.
176 * \param[in] idx Index in stmt's returned columns.
177 */
178#define copy_sqlite3_text_to_buf(buf, stmt, idx) \
179 do { \
180 const char *_txt = (const char *) sqlite3_column_text(stmt, idx); \
181 osmo_strlcpy(buf, _txt, sizeof(buf)); \
182 } while (0)
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100183
184/*! Call sqlite3_column_text() and copy result to a struct osmo_ipa_name.
185 * \param[out] ipa_name A struct osmo_ipa_name* to write to.
186 * \param[in] stmt An sqlite3_stmt*.
187 * \param[in] idx Index in stmt's returned columns.
188 */
189#define copy_sqlite3_text_to_ipa_name(ipa_name, stmt, idx) \
190 do { \
191 const char *_txt = (const char *) sqlite3_column_text(stmt, idx); \
192 osmo_ipa_name_set_str(ipa_name, _txt); \
193 } while (0)