blob: 87f92e396631eacb25710a07f7a3181c0014a329 [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>
38#include <osmocom/gsm/protocol/gsm_23_003.h>
Harald Weltee72cf552016-04-28 07:18:49 +020039
40#include "db.h"
Maxd4bebbd2017-03-02 12:00:19 +010041#include "hlr.h"
Max372868b2017-03-02 12:12:00 +010042#include "ctrl.h"
Harald Weltee72cf552016-04-28 07:18:49 +020043#include "logging.h"
44#include "gsup_server.h"
Harald Weltee687be52016-05-03 18:49:27 +020045#include "gsup_router.h"
Harald Weltee72cf552016-04-28 07:18:49 +020046#include "rand.h"
Maxea8b0d42017-02-14 16:53:04 +010047#include "luop.h"
Neels Hofmeyr7685a782017-01-30 23:30:26 +010048#include "hlr_vty.h"
Harald Weltebb779392018-06-16 20:21:10 +020049#include "hlr_ussd.h"
Harald Weltee72cf552016-04-28 07:18:49 +020050
Harald Welted5807b82018-07-29 12:27:41 +020051struct hlr *g_hlr;
Oliver Smithc5044cf2019-02-26 16:32:57 +010052static void *hlr_ctx = NULL;
Vadim Yanitskiy527d9342018-07-30 02:42:25 +070053static int quit = 0;
Harald Weltee72cf552016-04-28 07:18:49 +020054
Stefan Sperlingf1622522018-04-09 11:39:16 +020055/* Trigger 'Insert Subscriber Data' messages to all connected GSUP clients.
56 *
Stefan Sperlingf1622522018-04-09 11:39:16 +020057 * \param[in] subscr A subscriber we have new data to send for.
58 */
59void
60osmo_hlr_subscriber_update_notify(struct hlr_subscriber *subscr)
61{
62 struct osmo_gsup_conn *co;
63
Neels Hofmeyre66e5252018-09-28 02:59:19 +020064 if (g_hlr->gs == NULL) {
65 LOGP(DLGSUP, LOGL_DEBUG,
66 "IMSI %s: NOT Notifying peers of subscriber data change,"
67 " there is no GSUP server\n",
68 subscr->imsi);
Stefan Sperlingf1622522018-04-09 11:39:16 +020069 return;
Neels Hofmeyre66e5252018-09-28 02:59:19 +020070 }
Stefan Sperlingf1622522018-04-09 11:39:16 +020071
72 llist_for_each_entry(co, &g_hlr->gs->clients, list) {
Stefan Sperlingf83432c2018-05-03 14:26:59 +020073 struct osmo_gsup_message gsup = { };
74 uint8_t msisdn_enc[OSMO_GSUP_MAX_CALLED_PARTY_BCD_LEN];
75 uint8_t apn[APN_MAXLEN];
76 struct msgb *msg_out;
Stefan Sperling93c5b102018-04-10 19:26:14 +020077 uint8_t *peer;
78 int peer_len;
Neels Hofmeyre66e5252018-09-28 02:59:19 +020079 size_t peer_strlen;
80 const char *peer_compare;
Stefan Sperlingf83432c2018-05-03 14:26:59 +020081 enum osmo_gsup_cn_domain cn_domain;
Stefan Sperling93c5b102018-04-10 19:26:14 +020082
Neels Hofmeyre66e5252018-09-28 02:59:19 +020083 if (co->supports_ps) {
Stefan Sperlingf83432c2018-05-03 14:26:59 +020084 cn_domain = OSMO_GSUP_CN_DOMAIN_PS;
Neels Hofmeyre66e5252018-09-28 02:59:19 +020085 peer_compare = subscr->sgsn_number;
86 } else if (co->supports_cs) {
Stefan Sperlingf83432c2018-05-03 14:26:59 +020087 cn_domain = OSMO_GSUP_CN_DOMAIN_CS;
Neels Hofmeyre66e5252018-09-28 02:59:19 +020088 peer_compare = subscr->vlr_number;
89 } else {
90 /* We have not yet received a location update from this GSUP client.*/
Stefan Sperlingf83432c2018-05-03 14:26:59 +020091 continue;
92 }
93
Neels Hofmeyre66e5252018-09-28 02:59:19 +020094 peer_len = osmo_gsup_conn_ccm_get(co, &peer, IPAC_IDTAG_SERNR);
95 if (peer_len < 0) {
96 LOGP(DLGSUP, LOGL_ERROR,
97 "IMSI='%s': cannot get peer name for connection %s:%u\n", subscr->imsi,
98 co && co->conn && co->conn->server? co->conn->server->addr : "unset",
99 co && co->conn && co->conn->server? co->conn->server->port : 0);
100 continue;
101 }
102
103 peer_strlen = strnlen((const char*)peer, peer_len);
104 if (strlen(peer_compare) != peer_strlen || strncmp(peer_compare, (const char *)peer, peer_len)) {
105 /* Mismatch. The subscriber is not subscribed with this GSUP client. */
106 /* I hope peer is always nul terminated... */
107 if (peer_strlen < peer_len)
108 LOGP(DLGSUP, LOGL_DEBUG,
109 "IMSI %s: subscriber change: skipping %s peer %s\n",
110 subscr->imsi, cn_domain == OSMO_GSUP_CN_DOMAIN_PS ? "PS" : "CS",
111 osmo_quote_str((char*)peer, -1));
112 continue;
113 }
114
115 LOGP(DLGSUP, LOGL_DEBUG,
116 "IMSI %s: subscriber change: notifying %s peer %s\n",
117 subscr->imsi, cn_domain == OSMO_GSUP_CN_DOMAIN_PS ? "PS" : "CS",
118 osmo_quote_str(peer_compare, -1));
119
Stefan Sperlingf83432c2018-05-03 14:26:59 +0200120 if (osmo_gsup_create_insert_subscriber_data_msg(&gsup, subscr->imsi, subscr->msisdn, msisdn_enc,
121 sizeof(msisdn_enc), apn, sizeof(apn), cn_domain) != 0) {
Neels Hofmeyre66e5252018-09-28 02:59:19 +0200122 LOGP(DLGSUP, LOGL_ERROR,
Stefan Sperlingf83432c2018-05-03 14:26:59 +0200123 "IMSI='%s': Cannot notify GSUP client; could not create gsup message "
Stefan Sperling93c5b102018-04-10 19:26:14 +0200124 "for %s:%u\n", subscr->imsi,
Stefan Sperlingf1622522018-04-09 11:39:16 +0200125 co && co->conn && co->conn->server? co->conn->server->addr : "unset",
126 co && co->conn && co->conn->server? co->conn->server->port : 0);
127 continue;
128 }
Stefan Sperling93c5b102018-04-10 19:26:14 +0200129
Stefan Sperling93c5b102018-04-10 19:26:14 +0200130 /* Send ISD to MSC/SGSN */
131 msg_out = msgb_alloc_headroom(1024+16, 16, "GSUP ISD UPDATE");
132 if (msg_out == NULL) {
Neels Hofmeyre66e5252018-09-28 02:59:19 +0200133 LOGP(DLGSUP, LOGL_ERROR,
Stefan Sperling93c5b102018-04-10 19:26:14 +0200134 "IMSI='%s': Cannot notify GSUP client; could not allocate msg buffer "
135 "for %s:%u\n", subscr->imsi,
136 co && co->conn && co->conn->server? co->conn->server->addr : "unset",
137 co && co->conn && co->conn->server? co->conn->server->port : 0);
138 continue;
139 }
Stefan Sperling93c5b102018-04-10 19:26:14 +0200140 osmo_gsup_encode(msg_out, &gsup);
Stefan Sperlingf83432c2018-05-03 14:26:59 +0200141
Stefan Sperling93c5b102018-04-10 19:26:14 +0200142 if (osmo_gsup_addr_send(g_hlr->gs, peer, peer_len, msg_out) < 0) {
143 LOGP(DMAIN, LOGL_ERROR,
144 "IMSI='%s': Cannot notify GSUP client; send operation failed "
145 "for %s:%u\n", subscr->imsi,
146 co && co->conn && co->conn->server? co->conn->server->addr : "unset",
147 co && co->conn && co->conn->server? co->conn->server->port : 0);
148 continue;
149 }
Stefan Sperlingf1622522018-04-09 11:39:16 +0200150 }
151}
152
Oliver Smithc7f17872019-03-04 15:10:44 +0100153static int generate_new_msisdn(char *msisdn, const char *imsi, unsigned int len)
154{
155 int i, j, rc;
156 uint8_t rand_buf[GSM23003_MSISDN_MAX_DIGITS];
157
158 OSMO_ASSERT(len <= sizeof(rand_buf));
159
160 /* Generate a random unique MSISDN (with retry) */
161 for (i = 0; i < 10; i++) {
162 /* Get a random number (with retry) */
163 for (j = 0; j < 10; j++) {
164 rc = osmo_get_rand_id(rand_buf, len);
165 if (!rc)
166 break;
167 }
168 if (rc) {
169 LOGP(DMAIN, LOGL_ERROR, "IMSI='%s': Failed to generate new MSISDN, random number generator"
170 " failed (rc=%d)\n", imsi, rc);
171 return rc;
172 }
173
174 /* Shift 0x00 ... 0xff range to 30 ... 39 (ASCII numbers) */
175 for (j = 0; j < len; j++)
176 msisdn[j] = 48 + (rand_buf[j] % 10);
177 msisdn[j] = '\0';
178
179 /* Ensure there is no subscriber with such MSISDN */
180 if (db_subscr_exists_by_msisdn(g_hlr->dbc, msisdn) == -ENOENT)
181 return 0;
182 }
183
184 /* Failure */
185 LOGP(DMAIN, LOGL_ERROR, "IMSI='%s': Failed to generate a new MSISDN, consider increasing "
186 "the length for the automatically assigned MSISDNs "
187 "(see 'subscriber-create-on-demand' command)\n", imsi);
188 return -1;
189}
190
191static int subscr_create_on_demand(const char *imsi)
192{
193 char msisdn[GSM23003_MSISDN_MAX_DIGITS + 1];
194 int rc;
195 unsigned int rand_msisdn_len = g_hlr->subscr_create_on_demand_rand_msisdn_len;
196
197 if (!g_hlr->subscr_create_on_demand)
198 return -1;
199 if (db_subscr_exists_by_imsi(g_hlr->dbc, imsi) == 0)
200 return -1;
201 if (rand_msisdn_len && generate_new_msisdn(msisdn, imsi, rand_msisdn_len) != 0)
202 return -1;
203
204 LOGP(DMAIN, LOGL_INFO, "IMSI='%s': Creating subscriber on demand\n", imsi);
205 rc = db_subscr_create(g_hlr->dbc, imsi, g_hlr->subscr_create_on_demand_flags);
206 if (rc) {
207 LOGP(DMAIN, LOGL_ERROR, "Failed to create subscriber on demand (rc=%d): IMSI='%s'\n", rc, imsi);
208 return rc;
209 }
210
211 if (!rand_msisdn_len)
212 return 0;
213
214 /* Update MSISDN of the new (just allocated) subscriber */
215 rc = db_subscr_update_msisdn_by_imsi(g_hlr->dbc, imsi, msisdn);
216 if (rc) {
217 LOGP(DMAIN, LOGL_ERROR, "IMSI='%s': Failed to assign MSISDN='%s' (rc=%d)\n", imsi, msisdn, rc);
218 return rc;
219 }
220 LOGP(DMAIN, LOGL_INFO, "IMSI='%s': Successfully assigned MSISDN='%s'\n", imsi, msisdn);
221
222 return 0;
223}
224
Harald Weltee687be52016-05-03 18:49:27 +0200225/***********************************************************************
226 * Send Auth Info handling
227 ***********************************************************************/
228
Harald Weltee72cf552016-04-28 07:18:49 +0200229/* process an incoming SAI request */
230static int rx_send_auth_info(struct osmo_gsup_conn *conn,
Maxd4bebbd2017-03-02 12:00:19 +0100231 const struct osmo_gsup_message *gsup,
232 struct db_context *dbc)
Harald Weltee72cf552016-04-28 07:18:49 +0200233{
234 struct osmo_gsup_message gsup_out;
235 struct msgb *msg_out;
Harald Welte15f88102019-08-21 20:01:31 +0200236 bool separation_bit = false;
Harald Weltee72cf552016-04-28 07:18:49 +0200237 int rc;
238
Oliver Smithc7f17872019-03-04 15:10:44 +0100239 subscr_create_on_demand(gsup->imsi);
240
Harald Weltee72cf552016-04-28 07:18:49 +0200241 /* initialize return message structure */
242 memset(&gsup_out, 0, sizeof(gsup_out));
Harald Weltee72cf552016-04-28 07:18:49 +0200243 memcpy(&gsup_out.imsi, &gsup->imsi, sizeof(gsup_out.imsi));
244
Harald Welte15f88102019-08-21 20:01:31 +0200245 if (gsup->rat_types_len >= 1 && gsup->rat_types[0] == OSMO_RAT_EUTRAN_SGS)
246 separation_bit = true;
247
Neels Hofmeyrcab2fcd2017-03-15 00:07:43 +0100248 rc = db_get_auc(dbc, gsup->imsi, conn->auc_3g_ind,
249 gsup_out.auth_vectors,
Harald Weltee72cf552016-04-28 07:18:49 +0200250 ARRAY_SIZE(gsup_out.auth_vectors),
Harald Welte15f88102019-08-21 20:01:31 +0200251 gsup->rand, gsup->auts, separation_bit);
Neels Hofmeyr671db902017-11-22 20:38:19 +0100252 if (rc <= 0) {
Harald Weltee72cf552016-04-28 07:18:49 +0200253 gsup_out.message_type = OSMO_GSUP_MSGT_SEND_AUTH_INFO_ERROR;
Neels Hofmeyr671db902017-11-22 20:38:19 +0100254 switch (rc) {
255 case 0:
Neels Hofmeyrbd1dca02017-11-23 15:25:30 +0100256 /* 0 means "0 tuples generated", which shouldn't happen.
257 * Treat the same as "no auth data". */
258 case -ENOKEY:
Neels Hofmeyrab4d5092017-11-23 15:31:12 +0100259 LOGP(DAUC, LOGL_NOTICE, "%s: IMSI known, but has no auth data;"
260 " Returning slightly inaccurate cause 'IMSI Unknown' via GSUP\n",
261 gsup->imsi);
262 gsup_out.cause = GMM_CAUSE_IMSI_UNKNOWN;
263 break;
Neels Hofmeyr33cbde92017-11-22 20:39:59 +0100264 case -ENOENT:
Neels Hofmeyrab4d5092017-11-23 15:31:12 +0100265 LOGP(DAUC, LOGL_NOTICE, "%s: IMSI not known\n", gsup->imsi);
gsmevent admin9eb10ef2019-08-17 21:43:07 +0200266 gsup_out.cause = GMM_CAUSE_ROAMING_NOTALLOWED;
Neels Hofmeyr671db902017-11-22 20:38:19 +0100267 break;
268 default:
Neels Hofmeyrab4d5092017-11-23 15:31:12 +0100269 LOGP(DAUC, LOGL_ERROR, "%s: failure to look up IMSI in db\n", gsup->imsi);
Neels Hofmeyr671db902017-11-22 20:38:19 +0100270 gsup_out.cause = GMM_CAUSE_NET_FAIL;
271 break;
272 }
Harald Welte15db8262016-05-05 16:50:39 +0200273 } else {
274 gsup_out.message_type = OSMO_GSUP_MSGT_SEND_AUTH_INFO_RESULT;
275 gsup_out.num_auth_vectors = rc;
Harald Weltee72cf552016-04-28 07:18:49 +0200276 }
277
Harald Weltee687be52016-05-03 18:49:27 +0200278 msg_out = msgb_alloc_headroom(1024+16, 16, "GSUP AUC response");
Harald Weltee72cf552016-04-28 07:18:49 +0200279 osmo_gsup_encode(msg_out, &gsup_out);
280 return osmo_gsup_conn_send(conn, msg_out);
281}
282
Harald Weltee687be52016-05-03 18:49:27 +0200283/***********************************************************************
284 * LU Operation State / Structure
285 ***********************************************************************/
286
287static LLIST_HEAD(g_lu_ops);
288
Harald Weltee687be52016-05-03 18:49:27 +0200289/*! Receive Cancel Location Result from old VLR/SGSN */
290void lu_op_rx_cancel_old_ack(struct lu_operation *luop,
Maxea8b0d42017-02-14 16:53:04 +0100291 const struct osmo_gsup_message *gsup)
Harald Weltee687be52016-05-03 18:49:27 +0200292{
293 OSMO_ASSERT(luop->state == LU_S_CANCEL_SENT);
294 /* FIXME: Check for spoofing */
295
296 osmo_timer_del(&luop->timer);
297
298 /* FIXME */
299
300 lu_op_tx_insert_subscr_data(luop);
301}
302
Harald Weltee687be52016-05-03 18:49:27 +0200303/*! Receive Insert Subscriber Data Result from new VLR/SGSN */
304static void lu_op_rx_insert_subscr_data_ack(struct lu_operation *luop,
305 const struct osmo_gsup_message *gsup)
306{
307 OSMO_ASSERT(luop->state == LU_S_ISD_SENT);
308 /* FIXME: Check for spoofing */
309
310 osmo_timer_del(&luop->timer);
311
312 /* Subscriber_Present_HLR */
313 /* CS only: Check_SS_required? -> MAP-FW-CHECK_SS_IND.req */
314
315 /* Send final ACK towards inquiring VLR/SGSN */
316 lu_op_tx_ack(luop);
317}
318
319/*! Receive GSUP message for given \ref lu_operation */
320void lu_op_rx_gsup(struct lu_operation *luop,
321 const struct osmo_gsup_message *gsup)
322{
323 switch (gsup->message_type) {
324 case OSMO_GSUP_MSGT_INSERT_DATA_ERROR:
325 /* FIXME */
326 break;
327 case OSMO_GSUP_MSGT_INSERT_DATA_RESULT:
328 lu_op_rx_insert_subscr_data_ack(luop, gsup);
329 break;
330 case OSMO_GSUP_MSGT_LOCATION_CANCEL_ERROR:
331 /* FIXME */
332 break;
333 case OSMO_GSUP_MSGT_LOCATION_CANCEL_RESULT:
334 lu_op_rx_cancel_old_ack(luop, gsup);
335 break;
336 default:
337 LOGP(DMAIN, LOGL_ERROR, "Unhandled GSUP msg_type 0x%02x\n",
338 gsup->message_type);
339 break;
340 }
341}
342
Harald Weltee687be52016-05-03 18:49:27 +0200343/*! Receive Update Location Request, creates new \ref lu_operation */
344static int rx_upd_loc_req(struct osmo_gsup_conn *conn,
345 const struct osmo_gsup_message *gsup)
346{
Neels Hofmeyrcb364bb2018-09-28 01:22:15 +0200347 struct hlr_subscriber *subscr;
Maxea8b0d42017-02-14 16:53:04 +0100348 struct lu_operation *luop = lu_op_alloc_conn(conn);
Neels Hofmeyrf1949f72018-12-26 01:49:53 +0100349 int i;
350 bool allowed;
351
Maxea8b0d42017-02-14 16:53:04 +0100352 if (!luop) {
Harald Weltee687be52016-05-03 18:49:27 +0200353 LOGP(DMAIN, LOGL_ERROR, "LU REQ from conn without addr?\n");
Maxea8b0d42017-02-14 16:53:04 +0100354 return -EINVAL;
Harald Weltee687be52016-05-03 18:49:27 +0200355 }
356
Neels Hofmeyrcb364bb2018-09-28 01:22:15 +0200357 subscr = &luop->subscr;
358
Harald Weltee687be52016-05-03 18:49:27 +0200359 lu_op_statechg(luop, LU_S_LU_RECEIVED);
Maxea8b0d42017-02-14 16:53:04 +0100360
Neels Hofmeyr6cee7992018-09-28 02:53:22 +0200361 switch (gsup->cn_domain) {
362 case OSMO_GSUP_CN_DOMAIN_CS:
Stefan Sperling93c5b102018-04-10 19:26:14 +0200363 conn->supports_cs = true;
Neels Hofmeyr6cee7992018-09-28 02:53:22 +0200364 break;
365 default:
Stefan Sperling93c5b102018-04-10 19:26:14 +0200366 /* The client didn't send a CN_DOMAIN IE; assume packet-switched in
367 * accordance with the GSUP spec in osmo-hlr's user manual (section
368 * 11.6.15 "CN Domain" says "if no CN Domain IE is present within
369 * a request, the PS Domain is assumed." */
Neels Hofmeyr6cee7992018-09-28 02:53:22 +0200370 case OSMO_GSUP_CN_DOMAIN_PS:
Stefan Sperling93c5b102018-04-10 19:26:14 +0200371 conn->supports_ps = true;
Stefan Sperling1cb48922018-05-03 14:05:56 +0200372 luop->is_ps = true;
Neels Hofmeyr6cee7992018-09-28 02:53:22 +0200373 break;
Stefan Sperling93c5b102018-04-10 19:26:14 +0200374 }
Harald Weltee687be52016-05-03 18:49:27 +0200375 llist_add(&luop->list, &g_lu_ops);
376
Oliver Smithc7f17872019-03-04 15:10:44 +0100377 subscr_create_on_demand(gsup->imsi);
378
Harald Weltee687be52016-05-03 18:49:27 +0200379 /* Roughly follwing "Process Update_Location_HLR" of TS 09.02 */
380
381 /* check if subscriber is known at all */
Maxd4bebbd2017-03-02 12:00:19 +0100382 if (!lu_op_fill_subscr(luop, g_hlr->dbc, gsup->imsi)) {
Harald Weltee687be52016-05-03 18:49:27 +0200383 /* Send Error back: Subscriber Unknown in HLR */
Harald Weltebd0d5bf2017-11-06 03:55:02 +0900384 osmo_strlcpy(luop->subscr.imsi, gsup->imsi, sizeof(luop->subscr.imsi));
gsmevent admin9eb10ef2019-08-17 21:43:07 +0200385 lu_op_tx_error(luop, GMM_CAUSE_ROAMING_NOTALLOWED);
Harald Weltee687be52016-05-03 18:49:27 +0200386 return 0;
387 }
388
Harald Welte99909272016-05-05 18:24:15 +0200389 /* Check if subscriber is generally permitted on CS or PS
390 * service (as requested) */
Maxea8b0d42017-02-14 16:53:04 +0100391 if (!luop->is_ps && !luop->subscr.nam_cs) {
Harald Weltee687be52016-05-03 18:49:27 +0200392 lu_op_tx_error(luop, GMM_CAUSE_PLMN_NOTALLOWED);
393 return 0;
Maxea8b0d42017-02-14 16:53:04 +0100394 } else if (luop->is_ps && !luop->subscr.nam_ps) {
Harald Weltee687be52016-05-03 18:49:27 +0200395 lu_op_tx_error(luop, GMM_CAUSE_GPRS_NOTALLOWED);
396 return 0;
397 }
398
Neels Hofmeyrf1949f72018-12-26 01:49:53 +0100399 /* Check if any available RAT type is allowed. See 3GPP TS 29.010 3.2 'Routeing area updating' and 3.8 'Location
400 * update' for the "No Suitable cells in location area" error code. */
401 allowed = false;
402 LOGP(DAUC, LOGL_DEBUG, "LU: IMSI='%s' on %s sent RAT types: %zu\n", subscr->imsi,
403 gsup->cn_domain == OSMO_GSUP_CN_DOMAIN_CS ? "CS" : "PS", gsup->rat_types_len);
404 for (i = 0; i < gsup->rat_types_len; i++) {
405 enum osmo_rat_type rat = gsup->rat_types[i];
406 if (rat <= 0 || rat >= OSMO_RAT_COUNT) {
407 lu_op_tx_error(luop, GMM_CAUSE_COND_IE_ERR);
408 return 0;
409 }
410 if (luop->subscr.rat_types[rat]) {
411 allowed = true;
412 LOGP(DAUC, LOGL_DEBUG, "LU: IMSI='%s' allowed on %s\n",
413 subscr->imsi, osmo_rat_type_name(rat));
414 } else {
415 LOGP(DAUC, LOGL_DEBUG, "LU: IMSI='%s' not allowed on %s\n",
416 subscr->imsi, osmo_rat_type_name(rat));
417 }
418 }
419 if (!allowed && gsup->rat_types_len > 0) {
420 LOGP(DAUC, LOGL_DEBUG, "ISMI='%s' not allowed on %s%s\n",
421 subscr->imsi, osmo_rat_type_name(gsup->rat_types[0]),
422 gsup->rat_types_len > 1 ? " (nor on the other available RAT types)" : "");
423 lu_op_tx_error(luop, GMM_CAUSE_NO_SUIT_CELL_IN_LA);
424 return 0;
425 }
426
Harald Weltee687be52016-05-03 18:49:27 +0200427 /* TODO: Set subscriber tracing = deactive in VLR/SGSN */
428
429#if 0
430 /* Cancel in old VLR/SGSN, if new VLR/SGSN differs from old */
431 if (luop->is_ps == false &&
432 strcmp(subscr->vlr_number, vlr_number)) {
Harald Weltee687be52016-05-03 18:49:27 +0200433 lu_op_tx_cancel_old(luop);
434 } else if (luop->is_ps == true &&
435 strcmp(subscr->sgsn_number, sgsn_number)) {
Harald Weltee687be52016-05-03 18:49:27 +0200436 lu_op_tx_cancel_old(luop);
437 } else
438#endif
Neels Hofmeyrcb364bb2018-09-28 01:22:15 +0200439
440 /* Store the VLR / SGSN number with the subscriber, so we know where it was last seen. */
441 LOGP(DAUC, LOGL_DEBUG, "IMSI='%s': storing %s = %s\n",
442 subscr->imsi, luop->is_ps ? "SGSN number" : "VLR number",
443 osmo_quote_str((const char*)luop->peer, -1));
Neels Hofmeyrb984a6c2018-12-29 03:28:38 +0100444 if (db_subscr_lu(g_hlr->dbc, subscr->id, (const char *)luop->peer, luop->is_ps,
445 gsup->rat_types, gsup->rat_types_len))
Neels Hofmeyrcb364bb2018-09-28 01:22:15 +0200446 LOGP(DAUC, LOGL_ERROR, "IMSI='%s': Cannot update %s in the database\n",
447 subscr->imsi, luop->is_ps ? "SGSN number" : "VLR number");
448
Oliver Smith66106c02019-01-09 12:05:15 +0100449 /* TODO: Subscriber allowed to roam in PLMN? */
450 /* TODO: Update RoutingInfo */
451 /* TODO: Reset Flag MS Purged (cs/ps) */
452 /* TODO: Control_Tracing_HLR / Control_Tracing_HLR_with_SGSN */
453 lu_op_tx_insert_subscr_data(luop);
454
Harald Weltee687be52016-05-03 18:49:27 +0200455 return 0;
456}
457
Harald Welteb18f0e02016-05-05 21:03:03 +0200458static int rx_purge_ms_req(struct osmo_gsup_conn *conn,
459 const struct osmo_gsup_message *gsup)
460{
461 struct osmo_gsup_message gsup_reply = {0};
462 struct msgb *msg_out;
463 bool is_ps = false;
464 int rc;
465
466 LOGP(DAUC, LOGL_INFO, "%s: Purge MS (%s)\n", gsup->imsi,
467 is_ps ? "PS" : "CS");
468
469 memcpy(gsup_reply.imsi, gsup->imsi, sizeof(gsup_reply.imsi));
470
471 if (gsup->cn_domain == OSMO_GSUP_CN_DOMAIN_PS)
472 is_ps = true;
473
474 /* FIXME: check if the VLR that sends the purge is the same that
475 * we have on record. Only update if yes */
476
477 /* Perform the actual update of the DB */
Neels Hofmeyre50121e2017-10-09 17:48:51 +0200478 rc = db_subscr_purge(g_hlr->dbc, gsup->imsi, true, is_ps);
Harald Welteb18f0e02016-05-05 21:03:03 +0200479
Harald Welte3f2a9a22018-03-01 23:35:35 +0100480 if (rc == 0)
Harald Welteb18f0e02016-05-05 21:03:03 +0200481 gsup_reply.message_type = OSMO_GSUP_MSGT_PURGE_MS_RESULT;
Harald Welte3f2a9a22018-03-01 23:35:35 +0100482 else if (rc == -ENOENT) {
Harald Welteb18f0e02016-05-05 21:03:03 +0200483 gsup_reply.message_type = OSMO_GSUP_MSGT_PURGE_MS_ERROR;
484 gsup_reply.cause = GMM_CAUSE_IMSI_UNKNOWN;
485 } else {
486 gsup_reply.message_type = OSMO_GSUP_MSGT_PURGE_MS_ERROR;
487 gsup_reply.cause = GMM_CAUSE_NET_FAIL;
488 }
489
490 msg_out = msgb_alloc_headroom(1024+16, 16, "GSUP AUC response");
491 osmo_gsup_encode(msg_out, &gsup_reply);
492 return osmo_gsup_conn_send(conn, msg_out);
493}
494
Harald Weltea1d3b042018-06-11 20:28:35 +0200495static int gsup_send_err_reply(struct osmo_gsup_conn *conn, const char *imsi,
496 enum osmo_gsup_message_type type_in, uint8_t err_cause)
497{
Oliver Smithf9cf1802019-02-04 11:20:08 +0100498 int type_err = OSMO_GSUP_TO_MSGT_ERROR(type_in);
Harald Weltea1d3b042018-06-11 20:28:35 +0200499 struct osmo_gsup_message gsup_reply = {0};
500 struct msgb *msg_out;
501
Harald Weltea1d3b042018-06-11 20:28:35 +0200502 OSMO_STRLCPY_ARRAY(gsup_reply.imsi, imsi);
503 gsup_reply.message_type = type_err;
504 gsup_reply.cause = err_cause;
505 msg_out = msgb_alloc_headroom(1024+16, 16, "GSUP ERR response");
506 OSMO_ASSERT(msg_out);
507 osmo_gsup_encode(msg_out, &gsup_reply);
508 LOGP(DMAIN, LOGL_NOTICE, "Tx %s\n", osmo_gsup_message_type_name(type_err));
509 return osmo_gsup_conn_send(conn, msg_out);
510}
511
Oliver Smith783ac812018-12-17 11:34:51 +0100512static int rx_check_imei_req(struct osmo_gsup_conn *conn, const struct osmo_gsup_message *gsup)
513{
514 struct osmo_gsup_message gsup_reply = {0};
515 struct msgb *msg_out;
Oliver Smith103c11b2019-06-06 11:57:05 +0200516 char imei[GSM23003_IMEI_NUM_DIGITS_NO_CHK+1] = {0};
517 int rc;
Oliver Smith783ac812018-12-17 11:34:51 +0100518
Oliver Smith103c11b2019-06-06 11:57:05 +0200519 /* Require IMEI */
520 if (!gsup->imei_enc) {
521 LOGP(DMAIN, LOGL_ERROR, "%s: missing IMEI\n", gsup->imsi);
Oliver Smith783ac812018-12-17 11:34:51 +0100522 gsup_send_err_reply(conn, gsup->imsi, gsup->message_type, GMM_CAUSE_INV_MAND_INFO);
523 return -1;
524 }
525
Oliver Smith103c11b2019-06-06 11:57:05 +0200526 /* Decode IMEI (fails if IMEI is too long) */
527 rc = gsm48_decode_bcd_number2(imei, sizeof(imei), gsup->imei_enc, gsup->imei_enc_len, 0);
528 if (rc < 0) {
529 LOGP(DMAIN, LOGL_ERROR, "%s: failed to decode IMEI (rc: %i)\n", gsup->imsi, rc);
530 gsup_send_err_reply(conn, gsup->imsi, gsup->message_type, GMM_CAUSE_INV_MAND_INFO);
531 return -1;
532 }
533
534 /* Check if IMEI is too short */
535 if (strlen(imei) != GSM23003_IMEI_NUM_DIGITS_NO_CHK) {
536 LOGP(DMAIN, LOGL_ERROR, "%s: wrong encoded IMEI length (IMEI: '%s', %lu, %i)\n", gsup->imsi, imei,
537 strlen(imei), GSM23003_IMEI_NUM_DIGITS_NO_CHK);
Oliver Smith783ac812018-12-17 11:34:51 +0100538 gsup_send_err_reply(conn, gsup->imsi, gsup->message_type, GMM_CAUSE_INV_MAND_INFO);
539 return -1;
540 }
541
Oliver Smithc7f17872019-03-04 15:10:44 +0100542 subscr_create_on_demand(gsup->imsi);
543
Oliver Smith851814a2019-01-11 15:30:21 +0100544 /* Save in DB if desired */
545 if (g_hlr->store_imei) {
546 LOGP(DAUC, LOGL_DEBUG, "IMSI='%s': storing IMEI = %s\n", gsup->imsi, imei);
547 if (db_subscr_update_imei_by_imsi(g_hlr->dbc, gsup->imsi, imei) < 0) {
548 gsup_send_err_reply(conn, gsup->imsi, gsup->message_type, GMM_CAUSE_INV_MAND_INFO);
549 return -1;
550 }
551 } else {
552 /* Check if subscriber exists and print IMEI */
553 LOGP(DMAIN, LOGL_INFO, "IMSI='%s': has IMEI = %s (consider setting 'store-imei')\n", gsup->imsi, imei);
554 struct hlr_subscriber subscr;
555 if (db_subscr_get_by_imsi(g_hlr->dbc, gsup->imsi, &subscr) < 0) {
556 gsup_send_err_reply(conn, gsup->imsi, gsup->message_type, GMM_CAUSE_INV_MAND_INFO);
557 return -1;
558 }
559 }
Oliver Smith783ac812018-12-17 11:34:51 +0100560
561 /* Accept all IMEIs */
562 gsup_reply.imei_result = OSMO_GSUP_IMEI_RESULT_ACK;
563 gsup_reply.message_type = OSMO_GSUP_MSGT_CHECK_IMEI_RESULT;
564 msg_out = msgb_alloc_headroom(1024+16, 16, "GSUP Check_IMEI response");
565 memcpy(gsup_reply.imsi, gsup->imsi, sizeof(gsup_reply.imsi));
566 osmo_gsup_encode(msg_out, &gsup_reply);
567 return osmo_gsup_conn_send(conn, msg_out);
568}
569
Oliver Smith28f0af82019-02-22 11:46:33 +0100570static char namebuf[255];
571#define LOGP_GSUP_FWD(gsup, level, fmt, args ...) \
572 LOGP(DMAIN, level, "Forward %s (class=%s, IMSI=%s, %s->%s): " fmt, \
573 osmo_gsup_message_type_name(gsup->message_type), \
574 osmo_gsup_message_class_name(gsup->message_class), \
575 gsup->imsi, \
576 osmo_quote_str((const char *)gsup->source_name, gsup->source_name_len), \
577 osmo_quote_str_buf2(namebuf, sizeof(namebuf), (const char *)gsup->destination_name, gsup->destination_name_len), \
578 ## args)
579
580static int read_cb_forward(struct osmo_gsup_conn *conn, struct msgb *msg, const struct osmo_gsup_message *gsup)
581{
582 int ret = -EINVAL;
583 struct osmo_gsup_message *gsup_err;
584
585 /* FIXME: it would be better if the msgb never were deallocated immediately by osmo_gsup_addr_send(), which a
586 * select-loop volatile talloc context could facilitate. Then we would still be able to access gsup-> members
587 * (pointing into the msgb) even after sending failed, and we wouldn't need to copy this data before sending: */
588 /* Prepare error message (before IEs get deallocated) */
589 gsup_err = talloc_zero(hlr_ctx, struct osmo_gsup_message);
590 OSMO_STRLCPY_ARRAY(gsup_err->imsi, gsup->imsi);
591 gsup_err->message_class = gsup->message_class;
592 gsup_err->destination_name = talloc_memdup(gsup_err, gsup->destination_name, gsup->destination_name_len);
593 gsup_err->destination_name_len = gsup->destination_name_len;
Vadim Yanitskiy8625cda2019-05-07 21:09:01 +0700594 gsup_err->message_type = gsup->message_type;
Vadim Yanitskiy609978d2019-05-07 20:35:05 +0700595 gsup_err->session_state = gsup->session_state;
Oliver Smith28f0af82019-02-22 11:46:33 +0100596 gsup_err->session_id = gsup->session_id;
597 gsup_err->source_name = talloc_memdup(gsup_err, gsup->source_name, gsup->source_name_len);
598 gsup_err->source_name_len = gsup->source_name_len;
599
600 /* Check for routing IEs */
601 if (!gsup->source_name || !gsup->source_name_len || !gsup->destination_name || !gsup->destination_name_len) {
602 LOGP_GSUP_FWD(gsup, LOGL_ERROR, "missing routing IEs\n");
603 goto end;
604 }
605
606 /* Verify source name (e.g. "MSC-00-00-00-00-00-00") */
607 if (gsup_route_find(conn->server, gsup->source_name, gsup->source_name_len) != conn) {
608 LOGP_GSUP_FWD(gsup, LOGL_ERROR, "mismatching source name\n");
609 goto end;
610 }
611
Oliver Smith28f0af82019-02-22 11:46:33 +0100612 /* Forward message without re-encoding (so we don't remove unknown IEs) */
613 LOGP_GSUP_FWD(gsup, LOGL_INFO, "checks passed, forwarding\n");
614
615 /* Remove incoming IPA header to be able to prepend an outgoing IPA header */
616 msgb_pull_to_l2(msg);
617 ret = osmo_gsup_addr_send(g_hlr->gs, gsup->destination_name, gsup->destination_name_len, msg);
618 /* AT THIS POINT, THE msg MAY BE DEALLOCATED and the data like gsup->imsi, gsup->source_name etc may all be
619 * invalid and cause segfaults. */
620 msg = NULL;
621 gsup = NULL;
622 if (ret == -ENODEV)
623 LOGP_GSUP_FWD(gsup_err, LOGL_ERROR, "destination not connected\n");
624 else if (ret)
625 LOGP_GSUP_FWD(gsup_err, LOGL_ERROR, "unknown error %i\n", ret);
626
627end:
628 /* Send error back to source */
629 if (ret) {
630 struct msgb *msg_err = msgb_alloc_headroom(1024+16, 16, "GSUP forward ERR response");
631 OSMO_ASSERT(msg_err);
Vadim Yanitskiy8625cda2019-05-07 21:09:01 +0700632 gsup_err->message_type = OSMO_GSUP_MSGT_E_ROUTING_ERROR;
Oliver Smith28f0af82019-02-22 11:46:33 +0100633 osmo_gsup_encode(msg_err, gsup_err);
634 LOGP_GSUP_FWD(gsup_err, LOGL_NOTICE, "Tx %s\n", osmo_gsup_message_type_name(gsup_err->message_type));
635 osmo_gsup_conn_send(conn, msg_err);
636 }
637 talloc_free(gsup_err);
638 if (msg)
639 msgb_free(msg);
640 return ret;
641}
642
Harald Weltee72cf552016-04-28 07:18:49 +0200643static int read_cb(struct osmo_gsup_conn *conn, struct msgb *msg)
644{
645 static struct osmo_gsup_message gsup;
646 int rc;
647
Vadim Yanitskiyc69a18b2019-05-07 20:53:54 +0700648 if (!msgb_l2(msg) || !msgb_l2len(msg)) {
649 LOGP(DMAIN, LOGL_ERROR, "missing or empty L2 data\n");
Vadim Yanitskiyd9724f42019-05-07 21:05:18 +0700650 msgb_free(msg);
651 return -EINVAL;
Vadim Yanitskiyc69a18b2019-05-07 20:53:54 +0700652 }
653
Harald Weltee687be52016-05-03 18:49:27 +0200654 rc = osmo_gsup_decode(msgb_l2(msg), msgb_l2len(msg), &gsup);
Harald Weltee72cf552016-04-28 07:18:49 +0200655 if (rc < 0) {
656 LOGP(DMAIN, LOGL_ERROR, "error in GSUP decode: %d\n", rc);
Vadim Yanitskiyd9724f42019-05-07 21:05:18 +0700657 msgb_free(msg);
658 return rc;
Harald Weltee72cf552016-04-28 07:18:49 +0200659 }
660
Harald Weltea1d3b042018-06-11 20:28:35 +0200661 /* 3GPP TS 23.003 Section 2.2 clearly states that an IMSI with less than 5
662 * digits is impossible. Even 5 digits is a highly theoretical case */
Vadim Yanitskiyd9724f42019-05-07 21:05:18 +0700663 if (strlen(gsup.imsi) < 5) { /* TODO: move this check to libosmogsm/gsup.c? */
Neels Hofmeyr9f6e5582019-04-03 18:16:50 +0200664 LOGP(DMAIN, LOGL_ERROR, "IMSI too short: %s\n", osmo_quote_str(gsup.imsi, -1));
Vadim Yanitskiyd9724f42019-05-07 21:05:18 +0700665 gsup_send_err_reply(conn, gsup.imsi, gsup.message_type, GMM_CAUSE_INV_MAND_INFO);
666 msgb_free(msg);
667 return -EINVAL;
Neels Hofmeyr9f6e5582019-04-03 18:16:50 +0200668 }
Harald Weltea1d3b042018-06-11 20:28:35 +0200669
Oliver Smith28f0af82019-02-22 11:46:33 +0100670 if (gsup.destination_name_len)
671 return read_cb_forward(conn, msg, &gsup);
672
Harald Weltee72cf552016-04-28 07:18:49 +0200673 switch (gsup.message_type) {
674 /* requests sent to us */
675 case OSMO_GSUP_MSGT_SEND_AUTH_INFO_REQUEST:
Maxd4bebbd2017-03-02 12:00:19 +0100676 rx_send_auth_info(conn, &gsup, g_hlr->dbc);
Harald Weltee72cf552016-04-28 07:18:49 +0200677 break;
678 case OSMO_GSUP_MSGT_UPDATE_LOCATION_REQUEST:
Harald Weltee687be52016-05-03 18:49:27 +0200679 rx_upd_loc_req(conn, &gsup);
Harald Weltee72cf552016-04-28 07:18:49 +0200680 break;
Harald Welteb18f0e02016-05-05 21:03:03 +0200681 case OSMO_GSUP_MSGT_PURGE_MS_REQUEST:
682 rx_purge_ms_req(conn, &gsup);
683 break;
Harald Weltee72cf552016-04-28 07:18:49 +0200684 /* responses to requests sent by us */
Max9cacb6f2017-02-20 17:22:56 +0100685 case OSMO_GSUP_MSGT_DELETE_DATA_ERROR:
686 LOGP(DMAIN, LOGL_ERROR, "Error while deleting subscriber data "
687 "for IMSI %s\n", gsup.imsi);
688 break;
689 case OSMO_GSUP_MSGT_DELETE_DATA_RESULT:
690 LOGP(DMAIN, LOGL_ERROR, "Deleting subscriber data for IMSI %s\n",
691 gsup.imsi);
692 break;
Harald Weltebb779392018-06-16 20:21:10 +0200693 case OSMO_GSUP_MSGT_PROC_SS_REQUEST:
694 case OSMO_GSUP_MSGT_PROC_SS_RESULT:
695 rx_proc_ss_req(conn, &gsup);
696 break;
697 case OSMO_GSUP_MSGT_PROC_SS_ERROR:
698 rx_proc_ss_error(conn, &gsup);
699 break;
Harald Weltee72cf552016-04-28 07:18:49 +0200700 case OSMO_GSUP_MSGT_INSERT_DATA_ERROR:
Harald Weltee72cf552016-04-28 07:18:49 +0200701 case OSMO_GSUP_MSGT_INSERT_DATA_RESULT:
Harald Weltee687be52016-05-03 18:49:27 +0200702 case OSMO_GSUP_MSGT_LOCATION_CANCEL_ERROR:
703 case OSMO_GSUP_MSGT_LOCATION_CANCEL_RESULT:
704 {
Maxea8b0d42017-02-14 16:53:04 +0100705 struct lu_operation *luop = lu_op_by_imsi(gsup.imsi,
706 &g_lu_ops);
Harald Weltee687be52016-05-03 18:49:27 +0200707 if (!luop) {
Maxaa0fefd2017-02-16 12:25:22 +0100708 LOGP(DMAIN, LOGL_ERROR, "GSUP message %s for "
709 "unknown IMSI %s\n",
710 osmo_gsup_message_type_name(gsup.message_type),
Harald Weltee687be52016-05-03 18:49:27 +0200711 gsup.imsi);
712 break;
713 }
714 lu_op_rx_gsup(luop, &gsup);
715 }
Harald Weltee72cf552016-04-28 07:18:49 +0200716 break;
Oliver Smith783ac812018-12-17 11:34:51 +0100717 case OSMO_GSUP_MSGT_CHECK_IMEI_REQUEST:
718 rx_check_imei_req(conn, &gsup);
719 break;
Harald Weltee72cf552016-04-28 07:18:49 +0200720 default:
Maxaa0fefd2017-02-16 12:25:22 +0100721 LOGP(DMAIN, LOGL_DEBUG, "Unhandled GSUP message type %s\n",
722 osmo_gsup_message_type_name(gsup.message_type));
Harald Weltee72cf552016-04-28 07:18:49 +0200723 break;
724 }
Harald Welte5341b5d2016-04-28 12:48:39 +0200725 msgb_free(msg);
Harald Weltee72cf552016-04-28 07:18:49 +0200726 return 0;
727}
728
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100729static void print_usage()
730{
731 printf("Usage: osmo-hlr\n");
732}
733
734static void print_help()
735{
736 printf(" -h --help This text.\n");
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100737 printf(" -c --config-file filename The config file to use.\n");
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100738 printf(" -l --database db-name The database to use.\n");
739 printf(" -d option --debug=DRLL:DCC:DMM:DRR:DRSL:DNM Enable debugging.\n");
740 printf(" -D --daemonize Fork the process into a background daemon.\n");
741 printf(" -s --disable-color Do not print ANSI colors in the log\n");
742 printf(" -T --timestamp Prefix every log line with a timestamp.\n");
743 printf(" -e --log-level number Set a global loglevel.\n");
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100744 printf(" -U --db-upgrade Allow HLR database schema upgrades.\n");
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100745 printf(" -V --version Print the version of OsmoHLR.\n");
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100746}
747
748static struct {
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100749 const char *config_file;
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100750 const char *db_file;
751 bool daemonize;
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100752 bool db_upgrade;
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100753} cmdline_opts = {
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100754 .config_file = "osmo-hlr.cfg",
Neels Hofmeyr5857c592019-04-02 04:24:49 +0200755 .db_file = NULL,
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100756 .daemonize = false,
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100757 .db_upgrade = false,
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100758};
759
760static void handle_options(int argc, char **argv)
761{
762 while (1) {
763 int option_index = 0, c;
764 static struct option long_options[] = {
765 {"help", 0, 0, 'h'},
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100766 {"config-file", 1, 0, 'c'},
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100767 {"database", 1, 0, 'l'},
768 {"debug", 1, 0, 'd'},
769 {"daemonize", 0, 0, 'D'},
770 {"disable-color", 0, 0, 's'},
771 {"log-level", 1, 0, 'e'},
772 {"timestamp", 0, 0, 'T'},
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100773 {"db-upgrade", 0, 0, 'U' },
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100774 {"version", 0, 0, 'V' },
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100775 {0, 0, 0, 0}
776 };
777
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100778 c = getopt_long(argc, argv, "hc:l:d:Dse:TUV",
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100779 long_options, &option_index);
780 if (c == -1)
781 break;
782
783 switch (c) {
784 case 'h':
785 print_usage();
786 print_help();
787 exit(0);
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100788 case 'c':
789 cmdline_opts.config_file = optarg;
790 break;
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100791 case 'l':
792 cmdline_opts.db_file = optarg;
793 break;
794 case 'd':
795 log_parse_category_mask(osmo_stderr_target, optarg);
796 break;
797 case 'D':
798 cmdline_opts.daemonize = 1;
799 break;
800 case 's':
801 log_set_use_color(osmo_stderr_target, 0);
802 break;
803 case 'e':
804 log_set_log_level(osmo_stderr_target, atoi(optarg));
805 break;
806 case 'T':
807 log_set_print_timestamp(osmo_stderr_target, 1);
808 break;
Stefan Sperling8f3a7cc2018-11-27 12:10:45 +0100809 case 'U':
810 cmdline_opts.db_upgrade = true;
811 break;
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100812 case 'V':
813 print_version(1);
814 exit(0);
815 break;
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100816 default:
817 /* catch unknown options *as well as* missing arguments. */
818 fprintf(stderr, "Error in command line options. Exiting.\n");
819 exit(-1);
820 break;
821 }
822 }
823}
824
Harald Welteaabae9e2016-04-28 12:48:14 +0200825static void signal_hdlr(int signal)
826{
827 switch (signal) {
Vadim Yanitskiyee7c0cb2019-03-19 18:10:51 +0700828 case SIGTERM:
Harald Welteaabae9e2016-04-28 12:48:14 +0200829 case SIGINT:
Vadim Yanitskiyee7c0cb2019-03-19 18:10:51 +0700830 LOGP(DMAIN, LOGL_NOTICE, "Terminating due to signal=%d\n", signal);
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700831 quit++;
Harald Welteaabae9e2016-04-28 12:48:14 +0200832 break;
833 case SIGUSR1:
834 LOGP(DMAIN, LOGL_DEBUG, "Talloc Report due to SIGUSR1\n");
Neels Hofmeyrca43e302017-01-30 13:18:23 +0100835 talloc_report_full(hlr_ctx, stderr);
Harald Welteaabae9e2016-04-28 12:48:14 +0200836 break;
837 }
838}
Harald Weltee72cf552016-04-28 07:18:49 +0200839
Max372868b2017-03-02 12:12:00 +0100840static const char vlr_copyright[] =
841 "Copyright (C) 2016, 2017 by Harald Welte, sysmocom s.f.m.c. GmbH\r\n"
842 "License AGPLv3+: GNU AGPL version 3 or later <http://gnu.org/licenses/agpl-3.0.html>\r\n"
843 "This is free software: you are free to change and redistribute it.\r\n"
844 "There is NO WARRANTY, to the extent permitted by law.\r\n";
845
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100846static struct vty_app_info vty_info = {
847 .name = "OsmoHLR",
848 .version = PACKAGE_VERSION,
Max372868b2017-03-02 12:12:00 +0100849 .copyright = vlr_copyright,
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100850 .is_config_node = hlr_vty_is_config_node,
Pau Espin Pedrolce9bc402017-05-31 13:19:22 +0200851 .go_parent_cb = hlr_vty_go_parent,
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100852};
853
Harald Weltee72cf552016-04-28 07:18:49 +0200854int main(int argc, char **argv)
855{
Harald Weltee72cf552016-04-28 07:18:49 +0200856 int rc;
857
Vadim Yanitskiy9fdb8542018-07-30 03:09:22 +0700858 /* Track the use of talloc NULL memory contexts */
859 talloc_enable_null_tracking();
860
Neels Hofmeyrca43e302017-01-30 13:18:23 +0100861 hlr_ctx = talloc_named_const(NULL, 1, "OsmoHLR");
862 msgb_talloc_ctx_init(hlr_ctx, 0);
Harald Welte7ee6e552018-02-14 00:52:05 +0100863 vty_info.tall_ctx = hlr_ctx;
Harald Welteaabae9e2016-04-28 12:48:14 +0200864
Maxd4bebbd2017-03-02 12:00:19 +0100865 g_hlr = talloc_zero(hlr_ctx, struct hlr);
Harald Welte4956ae12018-06-15 22:04:28 +0200866 INIT_LLIST_HEAD(&g_hlr->euse_list);
Harald Weltedab544e2018-07-29 16:14:48 +0200867 INIT_LLIST_HEAD(&g_hlr->iuse_list);
Harald Weltebb779392018-06-16 20:21:10 +0200868 INIT_LLIST_HEAD(&g_hlr->ss_sessions);
Harald Weltedab544e2018-07-29 16:14:48 +0200869 INIT_LLIST_HEAD(&g_hlr->ussd_routes);
Neels Hofmeyr5857c592019-04-02 04:24:49 +0200870 g_hlr->db_file_path = talloc_strdup(g_hlr, HLR_DEFAULT_DB_FILE_PATH);
Maxd4bebbd2017-03-02 12:00:19 +0100871
Vadim Yanitskiyd157a562018-12-01 00:03:39 +0700872 /* Init default (call independent) SS session guard timeout value */
873 g_hlr->ncss_guard_timeout = NCSS_GUARD_TIMEOUT_DEFAULT;
874
Pau Espin Pedrol51530312018-04-17 15:07:06 +0200875 rc = osmo_init_logging2(hlr_ctx, &hlr_log_info);
Harald Weltee72cf552016-04-28 07:18:49 +0200876 if (rc < 0) {
877 fprintf(stderr, "Error initializing logging\n");
878 exit(1);
879 }
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100880
Max20ddfdb2019-02-18 13:12:27 +0100881 osmo_stats_init(hlr_ctx);
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100882 vty_init(&vty_info);
Max372868b2017-03-02 12:12:00 +0100883 ctrl_vty_init(hlr_ctx);
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100884 handle_options(argc, argv);
Pau Espin Pedrole49391b2019-08-05 15:57:10 +0200885 hlr_vty_init();
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100886
887 rc = vty_read_config_file(cmdline_opts.config_file, NULL);
888 if (rc < 0) {
889 LOGP(DMAIN, LOGL_FATAL,
890 "Failed to parse the config file: '%s'\n",
891 cmdline_opts.config_file);
892 return rc;
893 }
894
895 /* start telnet after reading config for vty_get_bind_addr() */
896 rc = telnet_init_dynif(hlr_ctx, NULL, vty_get_bind_addr(),
897 OSMO_VTY_PORT_HLR);
898 if (rc < 0)
899 return rc;
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100900
Harald Weltee72cf552016-04-28 07:18:49 +0200901 LOGP(DMAIN, LOGL_NOTICE, "hlr starting\n");
902
903 rc = rand_init();
904 if (rc < 0) {
905 LOGP(DMAIN, LOGL_FATAL, "Error initializing random source\n");
906 exit(1);
907 }
908
Neels Hofmeyr5857c592019-04-02 04:24:49 +0200909 if (cmdline_opts.db_file)
910 osmo_talloc_replace_string(g_hlr, &g_hlr->db_file_path, cmdline_opts.db_file);
911
912 g_hlr->dbc = db_open(hlr_ctx, g_hlr->db_file_path, true, cmdline_opts.db_upgrade);
Maxd4bebbd2017-03-02 12:00:19 +0100913 if (!g_hlr->dbc) {
Neels Hofmeyr5857c592019-04-02 04:24:49 +0200914 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 +0200915 exit(1);
916 }
917
Neels Hofmeyr84201d32017-07-21 16:00:32 +0200918 g_hlr->gs = osmo_gsup_server_create(hlr_ctx, g_hlr->gsup_bind_addr, OSMO_GSUP_PORT,
Harald Welte32acace2018-06-16 17:07:28 +0200919 read_cb, &g_lu_ops, g_hlr);
Maxd4bebbd2017-03-02 12:00:19 +0100920 if (!g_hlr->gs) {
Harald Weltee72cf552016-04-28 07:18:49 +0200921 LOGP(DMAIN, LOGL_FATAL, "Error starting GSUP server\n");
922 exit(1);
923 }
924
Max372868b2017-03-02 12:12:00 +0100925 g_hlr->ctrl_bind_addr = ctrl_vty_get_bind_addr();
Neels Hofmeyr234f9cb2017-10-24 17:23:04 +0200926 g_hlr->ctrl = hlr_controlif_setup(g_hlr);
Max372868b2017-03-02 12:12:00 +0100927
Harald Welteaabae9e2016-04-28 12:48:14 +0200928 osmo_init_ignore_signals();
929 signal(SIGINT, &signal_hdlr);
Vadim Yanitskiyee7c0cb2019-03-19 18:10:51 +0700930 signal(SIGTERM, &signal_hdlr);
Harald Welteaabae9e2016-04-28 12:48:14 +0200931 signal(SIGUSR1, &signal_hdlr);
932
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100933 if (cmdline_opts.daemonize) {
934 rc = osmo_daemonize();
935 if (rc < 0) {
936 perror("Error during daemonize");
937 exit(1);
938 }
939 }
Harald Welteaabae9e2016-04-28 12:48:14 +0200940
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700941 while (!quit)
Harald Weltee72cf552016-04-28 07:18:49 +0200942 osmo_select_main(0);
Harald Weltee72cf552016-04-28 07:18:49 +0200943
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700944 osmo_gsup_server_destroy(g_hlr->gs);
Maxd4bebbd2017-03-02 12:00:19 +0100945 db_close(g_hlr->dbc);
Harald Weltee72cf552016-04-28 07:18:49 +0200946 log_fini();
947
Vadim Yanitskiy4793a7e2018-07-30 03:04:34 +0700948 /**
949 * Report the heap state of root context, then free,
950 * so both ASAN and Valgrind are happy...
951 */
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700952 talloc_report_full(hlr_ctx, stderr);
Vadim Yanitskiy4793a7e2018-07-30 03:04:34 +0700953 talloc_free(hlr_ctx);
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700954
Vadim Yanitskiy9fdb8542018-07-30 03:09:22 +0700955 /* FIXME: VTY code still uses NULL-context */
956 talloc_free(tall_vty_ctx);
957
958 /**
959 * Report the heap state of NULL context, then free,
960 * so both ASAN and Valgrind are happy...
961 */
962 talloc_report_full(NULL, stderr);
963 talloc_disable_null_tracking();
964
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700965 return 0;
Harald Weltee72cf552016-04-28 07:18:49 +0200966}