blob: c733abb3116bd30bee06bb5050c9849a6044e7cd [file] [log] [blame]
Harald Welte936f6722016-05-03 18:51:18 +02001/* (C) 2016 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
Harald Welteaabae9e2016-04-28 12:48:14 +020020#include <signal.h>
Harald Weltee687be52016-05-03 18:49:27 +020021#include <errno.h>
Maxea8b0d42017-02-14 16:53:04 +010022#include <stdbool.h>
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +010023#include <getopt.h>
24
Harald Weltee72cf552016-04-28 07:18:49 +020025#include <osmocom/core/msgb.h>
Max20ddfdb2019-02-18 13:12:27 +010026#include <osmocom/core/stats.h>
Harald Weltee72cf552016-04-28 07:18:49 +020027#include <osmocom/core/logging.h>
28#include <osmocom/core/application.h>
29#include <osmocom/gsm/gsup.h>
Neels Hofmeyr7685a782017-01-30 23:30:26 +010030#include <osmocom/vty/vty.h>
31#include <osmocom/vty/command.h>
32#include <osmocom/vty/telnet_interface.h>
33#include <osmocom/vty/ports.h>
Max372868b2017-03-02 12:12:00 +010034#include <osmocom/ctrl/control_vty.h>
Neels Hofmeyr5aeb4382018-05-04 16:02:44 +020035#include <osmocom/gsm/apn.h>
Oliver Smith783ac812018-12-17 11:34:51 +010036#include <osmocom/gsm/gsm48_ie.h>
Oliver Smithc7f17872019-03-04 15:10:44 +010037#include <osmocom/gsm/gsm_utils.h>
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +010038#include <osmocom/gsm/gsm23003.h>
Neels Hofmeyr647c1062019-11-20 03:35:37 +010039#include <osmocom/mslookup/mslookup_client.h>
Harald Weltee72cf552016-04-28 07:18:49 +020040
Neels Hofmeyr0d28d852019-12-04 01:04:32 +010041#include <osmocom/gsupclient/gsup_peer_id.h>
Neels Hofmeyr2f758032019-11-20 00:37:07 +010042#include <osmocom/hlr/db.h>
43#include <osmocom/hlr/hlr.h>
44#include <osmocom/hlr/ctrl.h>
45#include <osmocom/hlr/logging.h>
46#include <osmocom/hlr/gsup_server.h>
47#include <osmocom/hlr/gsup_router.h>
48#include <osmocom/hlr/rand.h>
Neels Hofmeyr2f758032019-11-20 00:37:07 +010049#include <osmocom/hlr/hlr_vty.h>
50#include <osmocom/hlr/hlr_ussd.h>
Neels Hofmeyr647c1062019-11-20 03:35:37 +010051#include <osmocom/hlr/dgsm.h>
52#include <osmocom/hlr/proxy.h>
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +010053#include <osmocom/hlr/lu_fsm.h>
Neels Hofmeyra75d1c22019-11-20 03:35:37 +010054#include <osmocom/mslookup/mdns.h>
Harald Weltee72cf552016-04-28 07:18:49 +020055
Harald Welted5807b82018-07-29 12:27:41 +020056struct hlr *g_hlr;
Oliver Smithc5044cf2019-02-26 16:32:57 +010057static void *hlr_ctx = NULL;
Vadim Yanitskiy527d9342018-07-30 02:42:25 +070058static int quit = 0;
Harald Weltee72cf552016-04-28 07:18:49 +020059
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +010060struct osmo_tdef g_hlr_tdefs[] = {
61 /* 4222 is also the OSMO_GSUP_PORT */
62 { .T = -4222, .default_val = 30, .desc = "GSUP Update Location timeout" },
63 {}
64};
65
Stefan Sperlingf1622522018-04-09 11:39:16 +020066/* Trigger 'Insert Subscriber Data' messages to all connected GSUP clients.
67 *
Stefan Sperlingf1622522018-04-09 11:39:16 +020068 * \param[in] subscr A subscriber we have new data to send for.
69 */
70void
71osmo_hlr_subscriber_update_notify(struct hlr_subscriber *subscr)
72{
73 struct osmo_gsup_conn *co;
74
Neels Hofmeyre66e5252018-09-28 02:59:19 +020075 if (g_hlr->gs == NULL) {
76 LOGP(DLGSUP, LOGL_DEBUG,
77 "IMSI %s: NOT Notifying peers of subscriber data change,"
78 " there is no GSUP server\n",
79 subscr->imsi);
Stefan Sperlingf1622522018-04-09 11:39:16 +020080 return;
Neels Hofmeyre66e5252018-09-28 02:59:19 +020081 }
Stefan Sperlingf1622522018-04-09 11:39:16 +020082
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +010083 /* FIXME: send only to current vlr_number and sgsn_number */
84
Stefan Sperlingf1622522018-04-09 11:39:16 +020085 llist_for_each_entry(co, &g_hlr->gs->clients, list) {
Stefan Sperlingf83432c2018-05-03 14:26:59 +020086 struct osmo_gsup_message gsup = { };
87 uint8_t msisdn_enc[OSMO_GSUP_MAX_CALLED_PARTY_BCD_LEN];
88 uint8_t apn[APN_MAXLEN];
89 struct msgb *msg_out;
Stefan Sperling93c5b102018-04-10 19:26:14 +020090 uint8_t *peer;
91 int peer_len;
Neels Hofmeyre66e5252018-09-28 02:59:19 +020092 size_t peer_strlen;
93 const char *peer_compare;
Stefan Sperlingf83432c2018-05-03 14:26:59 +020094 enum osmo_gsup_cn_domain cn_domain;
Stefan Sperling93c5b102018-04-10 19:26:14 +020095
Neels Hofmeyre66e5252018-09-28 02:59:19 +020096 if (co->supports_ps) {
Stefan Sperlingf83432c2018-05-03 14:26:59 +020097 cn_domain = OSMO_GSUP_CN_DOMAIN_PS;
Neels Hofmeyre66e5252018-09-28 02:59:19 +020098 peer_compare = subscr->sgsn_number;
99 } else if (co->supports_cs) {
Stefan Sperlingf83432c2018-05-03 14:26:59 +0200100 cn_domain = OSMO_GSUP_CN_DOMAIN_CS;
Neels Hofmeyre66e5252018-09-28 02:59:19 +0200101 peer_compare = subscr->vlr_number;
102 } else {
103 /* We have not yet received a location update from this GSUP client.*/
Stefan Sperlingf83432c2018-05-03 14:26:59 +0200104 continue;
105 }
106
Neels Hofmeyre66e5252018-09-28 02:59:19 +0200107 peer_len = osmo_gsup_conn_ccm_get(co, &peer, IPAC_IDTAG_SERNR);
108 if (peer_len < 0) {
109 LOGP(DLGSUP, LOGL_ERROR,
110 "IMSI='%s': cannot get peer name for connection %s:%u\n", subscr->imsi,
111 co && co->conn && co->conn->server? co->conn->server->addr : "unset",
112 co && co->conn && co->conn->server? co->conn->server->port : 0);
113 continue;
114 }
115
116 peer_strlen = strnlen((const char*)peer, peer_len);
117 if (strlen(peer_compare) != peer_strlen || strncmp(peer_compare, (const char *)peer, peer_len)) {
118 /* Mismatch. The subscriber is not subscribed with this GSUP client. */
119 /* I hope peer is always nul terminated... */
120 if (peer_strlen < peer_len)
121 LOGP(DLGSUP, LOGL_DEBUG,
122 "IMSI %s: subscriber change: skipping %s peer %s\n",
123 subscr->imsi, cn_domain == OSMO_GSUP_CN_DOMAIN_PS ? "PS" : "CS",
124 osmo_quote_str((char*)peer, -1));
125 continue;
126 }
127
128 LOGP(DLGSUP, LOGL_DEBUG,
129 "IMSI %s: subscriber change: notifying %s peer %s\n",
130 subscr->imsi, cn_domain == OSMO_GSUP_CN_DOMAIN_PS ? "PS" : "CS",
131 osmo_quote_str(peer_compare, -1));
132
Stefan Sperlingf83432c2018-05-03 14:26:59 +0200133 if (osmo_gsup_create_insert_subscriber_data_msg(&gsup, subscr->imsi, subscr->msisdn, msisdn_enc,
134 sizeof(msisdn_enc), apn, sizeof(apn), cn_domain) != 0) {
Neels Hofmeyre66e5252018-09-28 02:59:19 +0200135 LOGP(DLGSUP, LOGL_ERROR,
Stefan Sperlingf83432c2018-05-03 14:26:59 +0200136 "IMSI='%s': Cannot notify GSUP client; could not create gsup message "
Stefan Sperling93c5b102018-04-10 19:26:14 +0200137 "for %s:%u\n", subscr->imsi,
Stefan Sperlingf1622522018-04-09 11:39:16 +0200138 co && co->conn && co->conn->server? co->conn->server->addr : "unset",
139 co && co->conn && co->conn->server? co->conn->server->port : 0);
140 continue;
141 }
Stefan Sperling93c5b102018-04-10 19:26:14 +0200142
Stefan Sperling93c5b102018-04-10 19:26:14 +0200143 /* Send ISD to MSC/SGSN */
Neels Hofmeyra7d0f872019-10-30 02:08:28 +0100144 msg_out = osmo_gsup_msgb_alloc("GSUP ISD UPDATE");
Stefan Sperling93c5b102018-04-10 19:26:14 +0200145 if (msg_out == NULL) {
Neels Hofmeyre66e5252018-09-28 02:59:19 +0200146 LOGP(DLGSUP, LOGL_ERROR,
Stefan Sperling93c5b102018-04-10 19:26:14 +0200147 "IMSI='%s': Cannot notify GSUP client; could not allocate msg buffer "
148 "for %s:%u\n", subscr->imsi,
149 co && co->conn && co->conn->server? co->conn->server->addr : "unset",
150 co && co->conn && co->conn->server? co->conn->server->port : 0);
151 continue;
152 }
Stefan Sperling93c5b102018-04-10 19:26:14 +0200153 osmo_gsup_encode(msg_out, &gsup);
Stefan Sperlingf83432c2018-05-03 14:26:59 +0200154
Stefan Sperling93c5b102018-04-10 19:26:14 +0200155 if (osmo_gsup_addr_send(g_hlr->gs, peer, peer_len, msg_out) < 0) {
156 LOGP(DMAIN, LOGL_ERROR,
157 "IMSI='%s': Cannot notify GSUP client; send operation failed "
158 "for %s:%u\n", subscr->imsi,
159 co && co->conn && co->conn->server? co->conn->server->addr : "unset",
160 co && co->conn && co->conn->server? co->conn->server->port : 0);
161 continue;
162 }
Stefan Sperlingf1622522018-04-09 11:39:16 +0200163 }
164}
165
Oliver Smithc7f17872019-03-04 15:10:44 +0100166static int generate_new_msisdn(char *msisdn, const char *imsi, unsigned int len)
167{
168 int i, j, rc;
169 uint8_t rand_buf[GSM23003_MSISDN_MAX_DIGITS];
170
171 OSMO_ASSERT(len <= sizeof(rand_buf));
172
173 /* Generate a random unique MSISDN (with retry) */
174 for (i = 0; i < 10; i++) {
175 /* Get a random number (with retry) */
176 for (j = 0; j < 10; j++) {
177 rc = osmo_get_rand_id(rand_buf, len);
178 if (!rc)
179 break;
180 }
181 if (rc) {
182 LOGP(DMAIN, LOGL_ERROR, "IMSI='%s': Failed to generate new MSISDN, random number generator"
183 " failed (rc=%d)\n", imsi, rc);
184 return rc;
185 }
186
187 /* Shift 0x00 ... 0xff range to 30 ... 39 (ASCII numbers) */
188 for (j = 0; j < len; j++)
189 msisdn[j] = 48 + (rand_buf[j] % 10);
190 msisdn[j] = '\0';
191
192 /* Ensure there is no subscriber with such MSISDN */
193 if (db_subscr_exists_by_msisdn(g_hlr->dbc, msisdn) == -ENOENT)
194 return 0;
195 }
196
197 /* Failure */
198 LOGP(DMAIN, LOGL_ERROR, "IMSI='%s': Failed to generate a new MSISDN, consider increasing "
199 "the length for the automatically assigned MSISDNs "
200 "(see 'subscriber-create-on-demand' command)\n", imsi);
201 return -1;
202}
203
204static int subscr_create_on_demand(const char *imsi)
205{
206 char msisdn[GSM23003_MSISDN_MAX_DIGITS + 1];
207 int rc;
208 unsigned int rand_msisdn_len = g_hlr->subscr_create_on_demand_rand_msisdn_len;
209
210 if (!g_hlr->subscr_create_on_demand)
211 return -1;
212 if (db_subscr_exists_by_imsi(g_hlr->dbc, imsi) == 0)
213 return -1;
214 if (rand_msisdn_len && generate_new_msisdn(msisdn, imsi, rand_msisdn_len) != 0)
215 return -1;
216
217 LOGP(DMAIN, LOGL_INFO, "IMSI='%s': Creating subscriber on demand\n", imsi);
218 rc = db_subscr_create(g_hlr->dbc, imsi, g_hlr->subscr_create_on_demand_flags);
219 if (rc) {
220 LOGP(DMAIN, LOGL_ERROR, "Failed to create subscriber on demand (rc=%d): IMSI='%s'\n", rc, imsi);
221 return rc;
222 }
223
224 if (!rand_msisdn_len)
225 return 0;
226
227 /* Update MSISDN of the new (just allocated) subscriber */
228 rc = db_subscr_update_msisdn_by_imsi(g_hlr->dbc, imsi, msisdn);
229 if (rc) {
230 LOGP(DMAIN, LOGL_ERROR, "IMSI='%s': Failed to assign MSISDN='%s' (rc=%d)\n", imsi, msisdn, rc);
231 return rc;
232 }
233 LOGP(DMAIN, LOGL_INFO, "IMSI='%s': Successfully assigned MSISDN='%s'\n", imsi, msisdn);
234
235 return 0;
236}
237
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100238/*! Update nam_cs/nam_ps in the db and trigger notifications to GSUP clients.
239 * \param[in,out] hlr Global hlr context.
240 * \param[in] subscr Subscriber from a fresh db_subscr_get_by_*() call.
241 * \param[in] nam_val True to enable CS/PS, false to disable.
242 * \param[in] is_ps True to enable/disable PS, false for CS.
243 * \returns 0 on success, ENOEXEC if there is no need to change, a negative
244 * value on error.
245 */
246int hlr_subscr_nam(struct hlr *hlr, struct hlr_subscriber *subscr, bool nam_val, bool is_ps)
247{
248 int rc;
249 bool is_val = is_ps? subscr->nam_ps : subscr->nam_cs;
250 struct osmo_ipa_name vlr_name;
251 struct osmo_gsup_message gsup_del_data = {
252 .message_type = OSMO_GSUP_MSGT_DELETE_DATA_REQUEST,
253 };
254 OSMO_STRLCPY_ARRAY(gsup_del_data.imsi, subscr->imsi);
255
256 if (is_val == nam_val) {
257 LOGP(DAUC, LOGL_DEBUG, "IMSI-%s: Already has the requested value when asked to %s %s\n",
258 subscr->imsi, nam_val ? "enable" : "disable", is_ps ? "PS" : "CS");
259 return ENOEXEC;
260 }
261
262 rc = db_subscr_nam(hlr->dbc, subscr->imsi, nam_val, is_ps);
263 if (rc)
264 return rc > 0? -rc : rc;
265
266 /* If we're disabling, send a notice out to the GSUP client that is
267 * responsible. Otherwise no need. */
268 if (nam_val)
269 return 0;
270
271 if (subscr->vlr_number && osmo_ipa_name_set_str(&vlr_name, subscr->vlr_number))
272 osmo_gsup_enc_send_to_ipa_name(g_hlr->gs, &vlr_name, &gsup_del_data);
273 if (subscr->sgsn_number && osmo_ipa_name_set_str(&vlr_name, subscr->sgsn_number))
274 osmo_gsup_enc_send_to_ipa_name(g_hlr->gs, &vlr_name, &gsup_del_data);
275 return 0;
276}
277
Harald Weltee687be52016-05-03 18:49:27 +0200278/***********************************************************************
279 * Send Auth Info handling
280 ***********************************************************************/
281
Harald Weltee72cf552016-04-28 07:18:49 +0200282/* process an incoming SAI request */
Neels Hofmeyrdd73ccf2019-12-12 04:04:53 +0100283static int rx_send_auth_info(struct osmo_gsup_req *req)
Harald Weltee72cf552016-04-28 07:18:49 +0200284{
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100285 struct osmo_gsup_message gsup_out = {
286 .message_type = OSMO_GSUP_MSGT_SEND_AUTH_INFO_RESULT,
287 };
Harald Welte06f5af22019-08-21 20:01:31 +0200288 bool separation_bit = false;
Alexander Couzens81b92bb2020-01-07 19:05:13 +0100289 int num_auth_vectors = OSMO_GSUP_MAX_NUM_AUTH_INFO;
Neels Hofmeyrdd73ccf2019-12-12 04:04:53 +0100290 unsigned int auc_3g_ind;
Harald Weltee72cf552016-04-28 07:18:49 +0200291 int rc;
292
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100293 subscr_create_on_demand(req->gsup.imsi);
Oliver Smithc7f17872019-03-04 15:10:44 +0100294
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100295 if (req->gsup.current_rat_type == OSMO_RAT_EUTRAN_SGS)
Harald Welte06f5af22019-08-21 20:01:31 +0200296 separation_bit = true;
297
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100298 if (req->gsup.num_auth_vectors > 0 &&
299 req->gsup.num_auth_vectors <= OSMO_GSUP_MAX_NUM_AUTH_INFO)
300 num_auth_vectors = req->gsup.num_auth_vectors;
Neels Hofmeyrdd73ccf2019-12-12 04:04:53 +0100301 rc = db_ind(g_hlr->dbc, &req->source_name, &auc_3g_ind);
302 if (rc) {
303 LOG_GSUP_REQ(req, LOGL_ERROR,
304 "Unable to determine 3G auth IND for source %s (rc=%d),"
305 " generating tuples with IND = 0\n",
306 osmo_gsup_peer_id_to_str(&req->source_name), rc);
307 auc_3g_ind = 0;
308 }
Alexander Couzens81b92bb2020-01-07 19:05:13 +0100309
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100310 rc = db_get_auc(g_hlr->dbc, req->gsup.imsi, auc_3g_ind,
Neels Hofmeyrcab2fcd2017-03-15 00:07:43 +0100311 gsup_out.auth_vectors,
Alexander Couzens81b92bb2020-01-07 19:05:13 +0100312 num_auth_vectors,
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100313 req->gsup.rand, req->gsup.auts, separation_bit);
314
Neels Hofmeyr671db902017-11-22 20:38:19 +0100315 if (rc <= 0) {
Neels Hofmeyr671db902017-11-22 20:38:19 +0100316 switch (rc) {
317 case 0:
Neels Hofmeyrbd1dca02017-11-23 15:25:30 +0100318 /* 0 means "0 tuples generated", which shouldn't happen.
319 * Treat the same as "no auth data". */
320 case -ENOKEY:
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100321 osmo_gsup_req_respond_err(req, GMM_CAUSE_IMSI_UNKNOWN,
322 "IMSI known, but has no auth data;"
323 " Returning slightly inaccurate cause 'IMSI Unknown' via GSUP");
324 return rc;
Neels Hofmeyr33cbde92017-11-22 20:39:59 +0100325 case -ENOENT:
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100326 osmo_gsup_req_respond_err(req, GMM_CAUSE_IMSI_UNKNOWN, "IMSI unknown");
327 return rc;
Neels Hofmeyr671db902017-11-22 20:38:19 +0100328 default:
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100329 osmo_gsup_req_respond_err(req, GMM_CAUSE_NET_FAIL, "failure to look up IMSI in db");
330 return rc;
Neels Hofmeyr671db902017-11-22 20:38:19 +0100331 }
Harald Weltee72cf552016-04-28 07:18:49 +0200332 }
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100333 gsup_out.num_auth_vectors = rc;
Harald Weltee72cf552016-04-28 07:18:49 +0200334
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100335 osmo_gsup_req_respond(req, &gsup_out, false, true);
336 return 0;
Harald Weltee72cf552016-04-28 07:18:49 +0200337}
338
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100339/*! Receive Update Location Request, creates new lu_operation */
340static int rx_upd_loc_req(struct osmo_gsup_conn *conn, struct osmo_gsup_req *req)
Harald Weltee687be52016-05-03 18:49:27 +0200341{
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100342 switch (req->gsup.cn_domain) {
Neels Hofmeyr6cee7992018-09-28 02:53:22 +0200343 case OSMO_GSUP_CN_DOMAIN_CS:
Stefan Sperling93c5b102018-04-10 19:26:14 +0200344 conn->supports_cs = true;
Neels Hofmeyr6cee7992018-09-28 02:53:22 +0200345 break;
346 default:
Stefan Sperling93c5b102018-04-10 19:26:14 +0200347 /* The client didn't send a CN_DOMAIN IE; assume packet-switched in
348 * accordance with the GSUP spec in osmo-hlr's user manual (section
349 * 11.6.15 "CN Domain" says "if no CN Domain IE is present within
350 * a request, the PS Domain is assumed." */
Neels Hofmeyr6cee7992018-09-28 02:53:22 +0200351 case OSMO_GSUP_CN_DOMAIN_PS:
Stefan Sperling93c5b102018-04-10 19:26:14 +0200352 conn->supports_ps = true;
Neels Hofmeyr6cee7992018-09-28 02:53:22 +0200353 break;
Stefan Sperling93c5b102018-04-10 19:26:14 +0200354 }
Harald Weltee687be52016-05-03 18:49:27 +0200355
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100356 subscr_create_on_demand(req->gsup.imsi);
Oliver Smithc7f17872019-03-04 15:10:44 +0100357
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100358 lu_rx_gsup(req);
Harald Weltee687be52016-05-03 18:49:27 +0200359 return 0;
360}
361
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100362static int rx_purge_ms_req(struct osmo_gsup_req *req)
Harald Welteb18f0e02016-05-05 21:03:03 +0200363{
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100364 bool is_ps = (req->gsup.cn_domain != OSMO_GSUP_CN_DOMAIN_CS);
Harald Welteb18f0e02016-05-05 21:03:03 +0200365 int rc;
366
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100367 LOG_GSUP_REQ_CAT(req, DAUC, LOGL_INFO, "Purge MS (%s)\n", is_ps ? "PS" : "CS");
Harald Welteb18f0e02016-05-05 21:03:03 +0200368
369 /* FIXME: check if the VLR that sends the purge is the same that
370 * we have on record. Only update if yes */
371
372 /* Perform the actual update of the DB */
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100373 rc = db_subscr_purge(g_hlr->dbc, req->gsup.imsi, true, is_ps);
Harald Welteb18f0e02016-05-05 21:03:03 +0200374
Harald Welte3f2a9a22018-03-01 23:35:35 +0100375 if (rc == 0)
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100376 osmo_gsup_req_respond_msgt(req, OSMO_GSUP_MSGT_PURGE_MS_RESULT, true);
377 else if (rc == -ENOENT)
378 osmo_gsup_req_respond_err(req, GMM_CAUSE_IMSI_UNKNOWN, "IMSI unknown");
379 else
380 osmo_gsup_req_respond_err(req, GMM_CAUSE_NET_FAIL, "db error");
381 return rc;
Harald Welteb18f0e02016-05-05 21:03:03 +0200382}
383
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100384static int rx_check_imei_req(struct osmo_gsup_req *req)
Harald Weltea1d3b042018-06-11 20:28:35 +0200385{
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100386 struct osmo_gsup_message gsup_reply;
Oliver Smith103c11b2019-06-06 11:57:05 +0200387 char imei[GSM23003_IMEI_NUM_DIGITS_NO_CHK+1] = {0};
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100388 const struct osmo_gsup_message *gsup = &req->gsup;
Oliver Smith103c11b2019-06-06 11:57:05 +0200389 int rc;
Oliver Smith783ac812018-12-17 11:34:51 +0100390
Oliver Smith103c11b2019-06-06 11:57:05 +0200391 /* Require IMEI */
392 if (!gsup->imei_enc) {
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100393 osmo_gsup_req_respond_err(req, GMM_CAUSE_INV_MAND_INFO, "missing IMEI");
Oliver Smith783ac812018-12-17 11:34:51 +0100394 return -1;
395 }
396
Oliver Smith103c11b2019-06-06 11:57:05 +0200397 /* Decode IMEI (fails if IMEI is too long) */
398 rc = gsm48_decode_bcd_number2(imei, sizeof(imei), gsup->imei_enc, gsup->imei_enc_len, 0);
399 if (rc < 0) {
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100400 osmo_gsup_req_respond_err(req, GMM_CAUSE_INV_MAND_INFO,
401 "failed to decode IMEI %s (rc: %d)",
402 osmo_hexdump_c(OTC_SELECT, gsup->imei_enc, gsup->imei_enc_len),
403 rc);
Oliver Smith103c11b2019-06-06 11:57:05 +0200404 return -1;
405 }
406
407 /* Check if IMEI is too short */
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100408 if (!osmo_imei_str_valid(imei, false)) {
409 osmo_gsup_req_respond_err(req, GMM_CAUSE_INV_MAND_INFO,
410 "invalid IMEI: %s", osmo_quote_str_c(OTC_SELECT, imei, -1));
Oliver Smith783ac812018-12-17 11:34:51 +0100411 return -1;
412 }
413
Oliver Smithc7f17872019-03-04 15:10:44 +0100414 subscr_create_on_demand(gsup->imsi);
415
Oliver Smith851814a2019-01-11 15:30:21 +0100416 /* Save in DB if desired */
417 if (g_hlr->store_imei) {
418 LOGP(DAUC, LOGL_DEBUG, "IMSI='%s': storing IMEI = %s\n", gsup->imsi, imei);
419 if (db_subscr_update_imei_by_imsi(g_hlr->dbc, gsup->imsi, imei) < 0) {
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100420 osmo_gsup_req_respond_err(req, GMM_CAUSE_INV_MAND_INFO, "Failed to store IMEI in HLR db");
Oliver Smith851814a2019-01-11 15:30:21 +0100421 return -1;
422 }
423 } else {
424 /* Check if subscriber exists and print IMEI */
425 LOGP(DMAIN, LOGL_INFO, "IMSI='%s': has IMEI = %s (consider setting 'store-imei')\n", gsup->imsi, imei);
426 struct hlr_subscriber subscr;
427 if (db_subscr_get_by_imsi(g_hlr->dbc, gsup->imsi, &subscr) < 0) {
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100428 osmo_gsup_req_respond_err(req, GMM_CAUSE_INV_MAND_INFO, "IMSI unknown");
Oliver Smith851814a2019-01-11 15:30:21 +0100429 return -1;
430 }
431 }
Oliver Smith783ac812018-12-17 11:34:51 +0100432
433 /* Accept all IMEIs */
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100434 gsup_reply = (struct osmo_gsup_message){
435 .message_type = OSMO_GSUP_MSGT_CHECK_IMEI_RESULT,
436 .imei_result = OSMO_GSUP_IMEI_RESULT_ACK,
437 };
438 return osmo_gsup_req_respond(req, &gsup_reply, false, true);
Oliver Smith783ac812018-12-17 11:34:51 +0100439}
440
Oliver Smith28f0af82019-02-22 11:46:33 +0100441static char namebuf[255];
442#define LOGP_GSUP_FWD(gsup, level, fmt, args ...) \
443 LOGP(DMAIN, level, "Forward %s (class=%s, IMSI=%s, %s->%s): " fmt, \
Neels Hofmeyrfbe49292020-01-09 18:35:03 +0100444 osmo_gsup_message_type_name((gsup)->message_type), \
445 osmo_gsup_message_class_name((gsup)->message_class), \
446 (gsup)->imsi, \
447 osmo_quote_str((const char *)(gsup)->source_name, (gsup)->source_name_len), \
448 osmo_quote_str_buf2(namebuf, sizeof(namebuf), (const char *)(gsup)->destination_name, (gsup)->destination_name_len), \
Oliver Smith28f0af82019-02-22 11:46:33 +0100449 ## args)
450
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100451static int read_cb_forward(struct osmo_gsup_req *req)
Oliver Smith28f0af82019-02-22 11:46:33 +0100452{
453 int ret = -EINVAL;
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100454 const struct osmo_gsup_message *gsup = &req->gsup;
455 struct osmo_gsup_message gsup_err;
456 struct msgb *forward_msg;
457 struct osmo_ipa_name destination_name;
Oliver Smith28f0af82019-02-22 11:46:33 +0100458
459 /* Check for routing IEs */
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100460 if (!req->gsup.source_name || !req->gsup.source_name_len
461 || !req->gsup.destination_name || !req->gsup.destination_name_len) {
462 LOGP_GSUP_FWD(&req->gsup, LOGL_ERROR, "missing routing IEs\n");
463 goto routing_error;
Oliver Smith28f0af82019-02-22 11:46:33 +0100464 }
465
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100466 if (osmo_ipa_name_set(&destination_name, req->gsup.destination_name, req->gsup.destination_name_len)) {
467 LOGP_GSUP_FWD(&req->gsup, LOGL_ERROR, "invalid destination name\n");
468 goto routing_error;
Oliver Smith28f0af82019-02-22 11:46:33 +0100469 }
470
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100471 LOG_GSUP_REQ(req, LOGL_INFO, "Forwarding to %s\n", osmo_ipa_name_to_str(&destination_name));
Oliver Smith28f0af82019-02-22 11:46:33 +0100472
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100473 /* Forward message without re-encoding (so we don't remove unknown IEs).
474 * Copy GSUP part to forward, removing incoming IPA header to be able to prepend an outgoing IPA header */
475 forward_msg = osmo_gsup_msgb_alloc("GSUP forward");
476 forward_msg->l2h = msgb_put(forward_msg, msgb_l2len(req->msg));
477 memcpy(forward_msg->l2h, msgb_l2(req->msg), msgb_l2len(req->msg));
478 ret = osmo_gsup_send_to_ipa_name(g_hlr->gs, &destination_name, forward_msg);
Oliver Smith28f0af82019-02-22 11:46:33 +0100479 if (ret) {
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100480 LOGP_GSUP_FWD(gsup, LOGL_ERROR, "%s (rc=%d)\n",
481 ret == -ENODEV ? "destination not connected" : "unknown error",
482 ret);
483 goto routing_error;
Oliver Smith28f0af82019-02-22 11:46:33 +0100484 }
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100485 osmo_gsup_req_free(req);
486 return 0;
487
488routing_error:
489 gsup_err = (struct osmo_gsup_message){
490 .message_type = OSMO_GSUP_MSGT_ROUTING_ERROR,
491 .source_name = gsup->destination_name,
492 .source_name_len = gsup->destination_name_len,
493 };
494 osmo_gsup_req_respond(req, &gsup_err, true, true);
495 return -1;
Oliver Smith28f0af82019-02-22 11:46:33 +0100496}
497
Harald Weltee72cf552016-04-28 07:18:49 +0200498static int read_cb(struct osmo_gsup_conn *conn, struct msgb *msg)
499{
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100500 struct osmo_gsup_req *req = osmo_gsup_conn_rx(conn, msg);
501 if (!req)
Vadim Yanitskiyd9724f42019-05-07 21:05:18 +0700502 return -EINVAL;
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100503
504 /* If the GSUP recipient is other than this HLR, forward. */
505 if (req->gsup.destination_name_len) {
506 struct osmo_ipa_name destination_name;
507 struct osmo_ipa_name my_name;
508 osmo_ipa_name_set_str(&my_name, g_hlr->gsup_unit_name.serno);
509 if (!osmo_ipa_name_set(&destination_name, req->gsup.destination_name, req->gsup.destination_name_len)
510 && osmo_ipa_name_cmp(&destination_name, &my_name)) {
511 return read_cb_forward(req);
512 }
Vadim Yanitskiyc69a18b2019-05-07 20:53:54 +0700513 }
514
Neels Hofmeyr647c1062019-11-20 03:35:37 +0100515 /* Distributed GSM: check whether to proxy for / lookup a remote HLR.
516 * It would require less database hits to do this only if a local-only operation fails with "unknown IMSI", but
517 * it becomes semantically easier if we do this once-off ahead of time. */
518 if (osmo_mslookup_client_active(g_hlr->mslookup.client.client)
519 || osmo_sockaddr_str_is_nonzero(&g_hlr->mslookup.client.gsup_gateway_proxy)) {
520 if (dgsm_check_forward_gsup_msg(req))
521 return 0;
522 }
523
524 /* HLR related messages that are handled at this HLR instance */
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100525 switch (req->gsup.message_type) {
Harald Weltee72cf552016-04-28 07:18:49 +0200526 /* requests sent to us */
527 case OSMO_GSUP_MSGT_SEND_AUTH_INFO_REQUEST:
Neels Hofmeyrdd73ccf2019-12-12 04:04:53 +0100528 rx_send_auth_info(req);
Harald Weltee72cf552016-04-28 07:18:49 +0200529 break;
530 case OSMO_GSUP_MSGT_UPDATE_LOCATION_REQUEST:
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100531 rx_upd_loc_req(conn, req);
Harald Weltee72cf552016-04-28 07:18:49 +0200532 break;
Harald Welteb18f0e02016-05-05 21:03:03 +0200533 case OSMO_GSUP_MSGT_PURGE_MS_REQUEST:
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100534 rx_purge_ms_req(req);
Harald Welteb18f0e02016-05-05 21:03:03 +0200535 break;
Harald Weltee72cf552016-04-28 07:18:49 +0200536 /* responses to requests sent by us */
Max9cacb6f2017-02-20 17:22:56 +0100537 case OSMO_GSUP_MSGT_DELETE_DATA_ERROR:
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100538 LOG_GSUP_REQ(req, LOGL_ERROR, "Peer responds with: Error while deleting subscriber data\n");
539 osmo_gsup_req_free(req);
Max9cacb6f2017-02-20 17:22:56 +0100540 break;
541 case OSMO_GSUP_MSGT_DELETE_DATA_RESULT:
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100542 LOG_GSUP_REQ(req, LOGL_DEBUG, "Peer responds with: Subscriber data deleted\n");
543 osmo_gsup_req_free(req);
Max9cacb6f2017-02-20 17:22:56 +0100544 break;
Harald Weltebb779392018-06-16 20:21:10 +0200545 case OSMO_GSUP_MSGT_PROC_SS_REQUEST:
546 case OSMO_GSUP_MSGT_PROC_SS_RESULT:
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100547 rx_proc_ss_req(req);
Harald Weltebb779392018-06-16 20:21:10 +0200548 break;
549 case OSMO_GSUP_MSGT_PROC_SS_ERROR:
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100550 rx_proc_ss_error(req);
Harald Weltebb779392018-06-16 20:21:10 +0200551 break;
Harald Weltee72cf552016-04-28 07:18:49 +0200552 case OSMO_GSUP_MSGT_INSERT_DATA_ERROR:
Harald Weltee72cf552016-04-28 07:18:49 +0200553 case OSMO_GSUP_MSGT_INSERT_DATA_RESULT:
Harald Weltee687be52016-05-03 18:49:27 +0200554 case OSMO_GSUP_MSGT_LOCATION_CANCEL_ERROR:
555 case OSMO_GSUP_MSGT_LOCATION_CANCEL_RESULT:
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100556 lu_rx_gsup(req);
Harald Weltee72cf552016-04-28 07:18:49 +0200557 break;
Oliver Smith783ac812018-12-17 11:34:51 +0100558 case OSMO_GSUP_MSGT_CHECK_IMEI_REQUEST:
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100559 rx_check_imei_req(req);
Oliver Smith783ac812018-12-17 11:34:51 +0100560 break;
Harald Weltee72cf552016-04-28 07:18:49 +0200561 default:
Maxaa0fefd2017-02-16 12:25:22 +0100562 LOGP(DMAIN, LOGL_DEBUG, "Unhandled GSUP message type %s\n",
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100563 osmo_gsup_message_type_name(req->gsup.message_type));
564 osmo_gsup_req_free(req);
Harald Weltee72cf552016-04-28 07:18:49 +0200565 break;
566 }
567 return 0;
568}
569
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100570static void print_usage()
571{
572 printf("Usage: osmo-hlr\n");
573}
574
575static void print_help()
576{
577 printf(" -h --help This text.\n");
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100578 printf(" -c --config-file filename The config file to use.\n");
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100579 printf(" -l --database db-name The database to use.\n");
580 printf(" -d option --debug=DRLL:DCC:DMM:DRR:DRSL:DNM Enable debugging.\n");
581 printf(" -D --daemonize Fork the process into a background daemon.\n");
582 printf(" -s --disable-color Do not print ANSI colors in the log\n");
583 printf(" -T --timestamp Prefix every log line with a timestamp.\n");
584 printf(" -e --log-level number Set a global loglevel.\n");
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100585 printf(" -U --db-upgrade Allow HLR database schema upgrades.\n");
Neels Hofmeyrc3d40322019-10-31 01:39:05 +0100586 printf(" -C --db-check Quit after opening (and upgrading) the database.\n");
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100587 printf(" -V --version Print the version of OsmoHLR.\n");
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100588}
589
590static struct {
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100591 const char *config_file;
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100592 const char *db_file;
593 bool daemonize;
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100594 bool db_upgrade;
Neels Hofmeyrc3d40322019-10-31 01:39:05 +0100595 bool db_check;
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100596} cmdline_opts = {
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100597 .config_file = "osmo-hlr.cfg",
Neels Hofmeyr5857c592019-04-02 04:24:49 +0200598 .db_file = NULL,
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100599 .daemonize = false,
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100600 .db_upgrade = false,
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100601};
602
603static void handle_options(int argc, char **argv)
604{
605 while (1) {
606 int option_index = 0, c;
607 static struct option long_options[] = {
608 {"help", 0, 0, 'h'},
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100609 {"config-file", 1, 0, 'c'},
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100610 {"database", 1, 0, 'l'},
611 {"debug", 1, 0, 'd'},
612 {"daemonize", 0, 0, 'D'},
613 {"disable-color", 0, 0, 's'},
614 {"log-level", 1, 0, 'e'},
615 {"timestamp", 0, 0, 'T'},
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100616 {"db-upgrade", 0, 0, 'U' },
Neels Hofmeyrc3d40322019-10-31 01:39:05 +0100617 {"db-check", 0, 0, 'C' },
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100618 {"version", 0, 0, 'V' },
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100619 {0, 0, 0, 0}
620 };
621
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100622 c = getopt_long(argc, argv, "hc:l:d:Dse:TUV",
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100623 long_options, &option_index);
624 if (c == -1)
625 break;
626
627 switch (c) {
628 case 'h':
629 print_usage();
630 print_help();
631 exit(0);
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100632 case 'c':
633 cmdline_opts.config_file = optarg;
634 break;
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100635 case 'l':
636 cmdline_opts.db_file = optarg;
637 break;
638 case 'd':
639 log_parse_category_mask(osmo_stderr_target, optarg);
640 break;
641 case 'D':
642 cmdline_opts.daemonize = 1;
643 break;
644 case 's':
645 log_set_use_color(osmo_stderr_target, 0);
646 break;
647 case 'e':
648 log_set_log_level(osmo_stderr_target, atoi(optarg));
649 break;
650 case 'T':
651 log_set_print_timestamp(osmo_stderr_target, 1);
652 break;
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100653 case 'U':
654 cmdline_opts.db_upgrade = true;
655 break;
Neels Hofmeyrc3d40322019-10-31 01:39:05 +0100656 case 'C':
657 cmdline_opts.db_check = true;
658 break;
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100659 case 'V':
660 print_version(1);
661 exit(0);
662 break;
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100663 default:
664 /* catch unknown options *as well as* missing arguments. */
665 fprintf(stderr, "Error in command line options. Exiting.\n");
666 exit(-1);
667 break;
668 }
669 }
Harald Welte80dc9ae2019-12-03 22:16:39 +0100670
671 if (argc > optind) {
672 fprintf(stderr, "Unsupported positional arguments on command line\n");
673 exit(2);
674 }
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100675}
676
Harald Welteaabae9e2016-04-28 12:48:14 +0200677static void signal_hdlr(int signal)
678{
679 switch (signal) {
Vadim Yanitskiyee7c0cb2019-03-19 18:10:51 +0700680 case SIGTERM:
Harald Welteaabae9e2016-04-28 12:48:14 +0200681 case SIGINT:
Vadim Yanitskiyee7c0cb2019-03-19 18:10:51 +0700682 LOGP(DMAIN, LOGL_NOTICE, "Terminating due to signal=%d\n", signal);
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700683 quit++;
Harald Welteaabae9e2016-04-28 12:48:14 +0200684 break;
685 case SIGUSR1:
686 LOGP(DMAIN, LOGL_DEBUG, "Talloc Report due to SIGUSR1\n");
Neels Hofmeyrca43e302017-01-30 13:18:23 +0100687 talloc_report_full(hlr_ctx, stderr);
Harald Welteaabae9e2016-04-28 12:48:14 +0200688 break;
689 }
690}
Harald Weltee72cf552016-04-28 07:18:49 +0200691
Max372868b2017-03-02 12:12:00 +0100692static const char vlr_copyright[] =
693 "Copyright (C) 2016, 2017 by Harald Welte, sysmocom s.f.m.c. GmbH\r\n"
694 "License AGPLv3+: GNU AGPL version 3 or later <http://gnu.org/licenses/agpl-3.0.html>\r\n"
695 "This is free software: you are free to change and redistribute it.\r\n"
696 "There is NO WARRANTY, to the extent permitted by law.\r\n";
697
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100698static struct vty_app_info vty_info = {
699 .name = "OsmoHLR",
700 .version = PACKAGE_VERSION,
Max372868b2017-03-02 12:12:00 +0100701 .copyright = vlr_copyright,
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100702 .is_config_node = hlr_vty_is_config_node,
Pau Espin Pedrolce9bc402017-05-31 13:19:22 +0200703 .go_parent_cb = hlr_vty_go_parent,
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100704};
705
Harald Weltee72cf552016-04-28 07:18:49 +0200706int main(int argc, char **argv)
707{
Harald Weltee72cf552016-04-28 07:18:49 +0200708 int rc;
709
Vadim Yanitskiy9fdb8542018-07-30 03:09:22 +0700710 /* Track the use of talloc NULL memory contexts */
711 talloc_enable_null_tracking();
712
Neels Hofmeyrca43e302017-01-30 13:18:23 +0100713 hlr_ctx = talloc_named_const(NULL, 1, "OsmoHLR");
714 msgb_talloc_ctx_init(hlr_ctx, 0);
Harald Welte7ee6e552018-02-14 00:52:05 +0100715 vty_info.tall_ctx = hlr_ctx;
Harald Welteaabae9e2016-04-28 12:48:14 +0200716
Maxd4bebbd2017-03-02 12:00:19 +0100717 g_hlr = talloc_zero(hlr_ctx, struct hlr);
Harald Welte4956ae12018-06-15 22:04:28 +0200718 INIT_LLIST_HEAD(&g_hlr->euse_list);
Harald Weltebb779392018-06-16 20:21:10 +0200719 INIT_LLIST_HEAD(&g_hlr->ss_sessions);
Harald Weltedab544e2018-07-29 16:14:48 +0200720 INIT_LLIST_HEAD(&g_hlr->ussd_routes);
Neels Hofmeyr32cc07a2019-11-20 03:35:37 +0100721 INIT_LLIST_HEAD(&g_hlr->mslookup.server.local_site_services);
Neels Hofmeyr5857c592019-04-02 04:24:49 +0200722 g_hlr->db_file_path = talloc_strdup(g_hlr, HLR_DEFAULT_DB_FILE_PATH);
Neels Hofmeyra75d1c22019-11-20 03:35:37 +0100723 g_hlr->mslookup.server.mdns.domain_suffix = talloc_strdup(g_hlr, OSMO_MDNS_DOMAIN_SUFFIX_DEFAULT);
Neels Hofmeyr647c1062019-11-20 03:35:37 +0100724 g_hlr->mslookup.client.mdns.domain_suffix = talloc_strdup(g_hlr, OSMO_MDNS_DOMAIN_SUFFIX_DEFAULT);
Maxd4bebbd2017-03-02 12:00:19 +0100725
Vadim Yanitskiyd157a562018-12-01 00:03:39 +0700726 /* Init default (call independent) SS session guard timeout value */
727 g_hlr->ncss_guard_timeout = NCSS_GUARD_TIMEOUT_DEFAULT;
728
Pau Espin Pedrol51530312018-04-17 15:07:06 +0200729 rc = osmo_init_logging2(hlr_ctx, &hlr_log_info);
Harald Weltee72cf552016-04-28 07:18:49 +0200730 if (rc < 0) {
731 fprintf(stderr, "Error initializing logging\n");
732 exit(1);
733 }
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100734
Neels Hofmeyr647c1062019-11-20 03:35:37 +0100735 /* Set up llists and objects, startup is happening from VTY commands. */
736 dgsm_init(hlr_ctx);
737
Max20ddfdb2019-02-18 13:12:27 +0100738 osmo_stats_init(hlr_ctx);
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100739 vty_init(&vty_info);
Max372868b2017-03-02 12:12:00 +0100740 ctrl_vty_init(hlr_ctx);
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100741 handle_options(argc, argv);
Pau Espin Pedrole49391b2019-08-05 15:57:10 +0200742 hlr_vty_init();
Neels Hofmeyra75d1c22019-11-20 03:35:37 +0100743 dgsm_vty_init();
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100744
745 rc = vty_read_config_file(cmdline_opts.config_file, NULL);
746 if (rc < 0) {
747 LOGP(DMAIN, LOGL_FATAL,
748 "Failed to parse the config file: '%s'\n",
749 cmdline_opts.config_file);
750 return rc;
751 }
752
Harald Weltee72cf552016-04-28 07:18:49 +0200753 LOGP(DMAIN, LOGL_NOTICE, "hlr starting\n");
754
755 rc = rand_init();
756 if (rc < 0) {
757 LOGP(DMAIN, LOGL_FATAL, "Error initializing random source\n");
758 exit(1);
759 }
760
Neels Hofmeyr5857c592019-04-02 04:24:49 +0200761 if (cmdline_opts.db_file)
762 osmo_talloc_replace_string(g_hlr, &g_hlr->db_file_path, cmdline_opts.db_file);
763
764 g_hlr->dbc = db_open(hlr_ctx, g_hlr->db_file_path, true, cmdline_opts.db_upgrade);
Maxd4bebbd2017-03-02 12:00:19 +0100765 if (!g_hlr->dbc) {
Neels Hofmeyr5857c592019-04-02 04:24:49 +0200766 LOGP(DMAIN, LOGL_FATAL, "Error opening database %s\n", osmo_quote_str(g_hlr->db_file_path, -1));
Harald Weltee72cf552016-04-28 07:18:49 +0200767 exit(1);
768 }
769
Neels Hofmeyrc3d40322019-10-31 01:39:05 +0100770 if (cmdline_opts.db_check) {
771 LOGP(DMAIN, LOGL_NOTICE, "Cmdline option --db-check: Database was opened successfully, quitting.\n");
772 db_close(g_hlr->dbc);
773 log_fini();
774 talloc_free(hlr_ctx);
775 talloc_free(tall_vty_ctx);
776 talloc_disable_null_tracking();
777 exit(0);
778 }
779
780 /* start telnet after reading config for vty_get_bind_addr() */
781 rc = telnet_init_dynif(hlr_ctx, NULL, vty_get_bind_addr(),
782 OSMO_VTY_PORT_HLR);
783 if (rc < 0)
784 return rc;
785
786
Neels Hofmeyr84201d32017-07-21 16:00:32 +0200787 g_hlr->gs = osmo_gsup_server_create(hlr_ctx, g_hlr->gsup_bind_addr, OSMO_GSUP_PORT,
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100788 read_cb, g_hlr);
Maxd4bebbd2017-03-02 12:00:19 +0100789 if (!g_hlr->gs) {
Harald Weltee72cf552016-04-28 07:18:49 +0200790 LOGP(DMAIN, LOGL_FATAL, "Error starting GSUP server\n");
791 exit(1);
792 }
Neels Hofmeyr647c1062019-11-20 03:35:37 +0100793 proxy_init(g_hlr->gs);
Harald Weltee72cf552016-04-28 07:18:49 +0200794
Max372868b2017-03-02 12:12:00 +0100795 g_hlr->ctrl_bind_addr = ctrl_vty_get_bind_addr();
Neels Hofmeyr234f9cb2017-10-24 17:23:04 +0200796 g_hlr->ctrl = hlr_controlif_setup(g_hlr);
Max372868b2017-03-02 12:12:00 +0100797
Neels Hofmeyr647c1062019-11-20 03:35:37 +0100798 dgsm_start(hlr_ctx);
799
Harald Welteaabae9e2016-04-28 12:48:14 +0200800 osmo_init_ignore_signals();
801 signal(SIGINT, &signal_hdlr);
Vadim Yanitskiyee7c0cb2019-03-19 18:10:51 +0700802 signal(SIGTERM, &signal_hdlr);
Harald Welteaabae9e2016-04-28 12:48:14 +0200803 signal(SIGUSR1, &signal_hdlr);
804
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100805 if (cmdline_opts.daemonize) {
806 rc = osmo_daemonize();
807 if (rc < 0) {
808 perror("Error during daemonize");
809 exit(1);
810 }
811 }
Harald Welteaabae9e2016-04-28 12:48:14 +0200812
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700813 while (!quit)
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +0100814 osmo_select_main_ctx(0);
815
Neels Hofmeyr647c1062019-11-20 03:35:37 +0100816 dgsm_stop();
Harald Weltee72cf552016-04-28 07:18:49 +0200817
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700818 osmo_gsup_server_destroy(g_hlr->gs);
Maxd4bebbd2017-03-02 12:00:19 +0100819 db_close(g_hlr->dbc);
Harald Weltee72cf552016-04-28 07:18:49 +0200820 log_fini();
821
Vadim Yanitskiy4793a7e2018-07-30 03:04:34 +0700822 /**
823 * Report the heap state of root context, then free,
824 * so both ASAN and Valgrind are happy...
825 */
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700826 talloc_report_full(hlr_ctx, stderr);
Vadim Yanitskiy4793a7e2018-07-30 03:04:34 +0700827 talloc_free(hlr_ctx);
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700828
Vadim Yanitskiy9fdb8542018-07-30 03:09:22 +0700829 /* FIXME: VTY code still uses NULL-context */
830 talloc_free(tall_vty_ctx);
831
832 /**
833 * Report the heap state of NULL context, then free,
834 * so both ASAN and Valgrind are happy...
835 */
836 talloc_report_full(NULL, stderr);
837 talloc_disable_null_tracking();
838
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700839 return 0;
Harald Weltee72cf552016-04-28 07:18:49 +0200840}