blob: bcf620d7acbd9dcd731e3a17294ab3c7d57f1dd5 [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>
26#include <osmocom/core/logging.h>
27#include <osmocom/core/application.h>
28#include <osmocom/gsm/gsup.h>
Neels Hofmeyr7685a782017-01-30 23:30:26 +010029#include <osmocom/vty/vty.h>
30#include <osmocom/vty/command.h>
31#include <osmocom/vty/telnet_interface.h>
32#include <osmocom/vty/ports.h>
Max372868b2017-03-02 12:12:00 +010033#include <osmocom/ctrl/control_vty.h>
Neels Hofmeyr5aeb4382018-05-04 16:02:44 +020034#include <osmocom/gsm/apn.h>
Harald Weltee72cf552016-04-28 07:18:49 +020035
36#include "db.h"
Maxd4bebbd2017-03-02 12:00:19 +010037#include "hlr.h"
Max372868b2017-03-02 12:12:00 +010038#include "ctrl.h"
Harald Weltee72cf552016-04-28 07:18:49 +020039#include "logging.h"
40#include "gsup_server.h"
Harald Weltee687be52016-05-03 18:49:27 +020041#include "gsup_router.h"
Harald Weltee72cf552016-04-28 07:18:49 +020042#include "rand.h"
Maxea8b0d42017-02-14 16:53:04 +010043#include "luop.h"
Neels Hofmeyr7685a782017-01-30 23:30:26 +010044#include "hlr_vty.h"
Harald Weltebb779392018-06-16 20:21:10 +020045#include "hlr_ussd.h"
Harald Weltee72cf552016-04-28 07:18:49 +020046
Harald Welted5807b82018-07-29 12:27:41 +020047struct hlr *g_hlr;
Vadim Yanitskiy527d9342018-07-30 02:42:25 +070048static int quit = 0;
Harald Weltee72cf552016-04-28 07:18:49 +020049
Stefan Sperlingf1622522018-04-09 11:39:16 +020050/* Trigger 'Insert Subscriber Data' messages to all connected GSUP clients.
51 *
Stefan Sperlingf1622522018-04-09 11:39:16 +020052 * \param[in] subscr A subscriber we have new data to send for.
53 */
54void
55osmo_hlr_subscriber_update_notify(struct hlr_subscriber *subscr)
56{
Harald Welteb85f6042018-06-15 18:01:14 +020057 /* FIXME: the below code can only be re-enabled after we make sure that an ISD
58 * is only sent tot the currently serving VLR and/or SGSN (if there are any).
59 * We cannot blindly flood the entire PLMN with this, as it would create subscriber
60 * state in every VLR/SGSN out there, even those that have never seen the subscriber.
61 * See https://osmocom.org/issues/3154 for details. */
62#if 0
Stefan Sperlingf1622522018-04-09 11:39:16 +020063 struct osmo_gsup_conn *co;
64
65 if (g_hlr->gs == NULL)
66 return;
67
68 llist_for_each_entry(co, &g_hlr->gs->clients, list) {
Stefan Sperlingf83432c2018-05-03 14:26:59 +020069 struct osmo_gsup_message gsup = { };
70 uint8_t msisdn_enc[OSMO_GSUP_MAX_CALLED_PARTY_BCD_LEN];
71 uint8_t apn[APN_MAXLEN];
72 struct msgb *msg_out;
Stefan Sperling93c5b102018-04-10 19:26:14 +020073 uint8_t *peer;
74 int peer_len;
Stefan Sperlingf83432c2018-05-03 14:26:59 +020075 enum osmo_gsup_cn_domain cn_domain;
Stefan Sperling93c5b102018-04-10 19:26:14 +020076
Stefan Sperlingf83432c2018-05-03 14:26:59 +020077 if (co->supports_ps)
78 cn_domain = OSMO_GSUP_CN_DOMAIN_PS;
79 else if (co->supports_cs)
80 cn_domain = OSMO_GSUP_CN_DOMAIN_CS;
81 else {
82 /* We have not yet received a location update from this subscriber .*/
83 continue;
84 }
85
86 if (osmo_gsup_create_insert_subscriber_data_msg(&gsup, subscr->imsi, subscr->msisdn, msisdn_enc,
87 sizeof(msisdn_enc), apn, sizeof(apn), cn_domain) != 0) {
Stefan Sperlingf1622522018-04-09 11:39:16 +020088 LOGP(DMAIN, LOGL_ERROR,
Stefan Sperlingf83432c2018-05-03 14:26:59 +020089 "IMSI='%s': Cannot notify GSUP client; could not create gsup message "
Stefan Sperling93c5b102018-04-10 19:26:14 +020090 "for %s:%u\n", subscr->imsi,
Stefan Sperlingf1622522018-04-09 11:39:16 +020091 co && co->conn && co->conn->server? co->conn->server->addr : "unset",
92 co && co->conn && co->conn->server? co->conn->server->port : 0);
93 continue;
94 }
Stefan Sperling93c5b102018-04-10 19:26:14 +020095
Stefan Sperling93c5b102018-04-10 19:26:14 +020096 /* Send ISD to MSC/SGSN */
97 msg_out = msgb_alloc_headroom(1024+16, 16, "GSUP ISD UPDATE");
98 if (msg_out == NULL) {
99 LOGP(DMAIN, LOGL_ERROR,
100 "IMSI='%s': Cannot notify GSUP client; could not allocate msg buffer "
101 "for %s:%u\n", subscr->imsi,
102 co && co->conn && co->conn->server? co->conn->server->addr : "unset",
103 co && co->conn && co->conn->server? co->conn->server->port : 0);
104 continue;
105 }
Stefan Sperling93c5b102018-04-10 19:26:14 +0200106 osmo_gsup_encode(msg_out, &gsup);
Stefan Sperlingf83432c2018-05-03 14:26:59 +0200107
108 peer_len = osmo_gsup_conn_ccm_get(co, &peer, IPAC_IDTAG_SERNR);
109 if (peer_len < 0) {
110 LOGP(DMAIN, LOGL_ERROR,
111 "IMSI='%s': cannot get peer name for connection %s:%u\n", subscr->imsi,
112 co && co->conn && co->conn->server? co->conn->server->addr : "unset",
113 co && co->conn && co->conn->server? co->conn->server->port : 0);
114 continue;
115 }
116
Stefan Sperling93c5b102018-04-10 19:26:14 +0200117 if (osmo_gsup_addr_send(g_hlr->gs, peer, peer_len, msg_out) < 0) {
118 LOGP(DMAIN, LOGL_ERROR,
119 "IMSI='%s': Cannot notify GSUP client; send operation failed "
120 "for %s:%u\n", subscr->imsi,
121 co && co->conn && co->conn->server? co->conn->server->addr : "unset",
122 co && co->conn && co->conn->server? co->conn->server->port : 0);
123 continue;
124 }
Stefan Sperlingf1622522018-04-09 11:39:16 +0200125 }
Harald Welteb85f6042018-06-15 18:01:14 +0200126#endif
Stefan Sperlingf1622522018-04-09 11:39:16 +0200127}
128
Harald Weltee687be52016-05-03 18:49:27 +0200129/***********************************************************************
130 * Send Auth Info handling
131 ***********************************************************************/
132
Harald Weltee72cf552016-04-28 07:18:49 +0200133/* process an incoming SAI request */
134static int rx_send_auth_info(struct osmo_gsup_conn *conn,
Maxd4bebbd2017-03-02 12:00:19 +0100135 const struct osmo_gsup_message *gsup,
136 struct db_context *dbc)
Harald Weltee72cf552016-04-28 07:18:49 +0200137{
138 struct osmo_gsup_message gsup_out;
139 struct msgb *msg_out;
140 int rc;
141
142 /* initialize return message structure */
143 memset(&gsup_out, 0, sizeof(gsup_out));
Harald Weltee72cf552016-04-28 07:18:49 +0200144 memcpy(&gsup_out.imsi, &gsup->imsi, sizeof(gsup_out.imsi));
145
Neels Hofmeyrcab2fcd2017-03-15 00:07:43 +0100146 rc = db_get_auc(dbc, gsup->imsi, conn->auc_3g_ind,
147 gsup_out.auth_vectors,
Harald Weltee72cf552016-04-28 07:18:49 +0200148 ARRAY_SIZE(gsup_out.auth_vectors),
Harald Welte9be0d2f2016-06-10 17:34:02 +0200149 gsup->rand, gsup->auts);
Neels Hofmeyr671db902017-11-22 20:38:19 +0100150 if (rc <= 0) {
Harald Weltee72cf552016-04-28 07:18:49 +0200151 gsup_out.message_type = OSMO_GSUP_MSGT_SEND_AUTH_INFO_ERROR;
Neels Hofmeyr671db902017-11-22 20:38:19 +0100152 switch (rc) {
153 case 0:
Neels Hofmeyrbd1dca02017-11-23 15:25:30 +0100154 /* 0 means "0 tuples generated", which shouldn't happen.
155 * Treat the same as "no auth data". */
156 case -ENOKEY:
Neels Hofmeyrab4d5092017-11-23 15:31:12 +0100157 LOGP(DAUC, LOGL_NOTICE, "%s: IMSI known, but has no auth data;"
158 " Returning slightly inaccurate cause 'IMSI Unknown' via GSUP\n",
159 gsup->imsi);
160 gsup_out.cause = GMM_CAUSE_IMSI_UNKNOWN;
161 break;
Neels Hofmeyr33cbde92017-11-22 20:39:59 +0100162 case -ENOENT:
Neels Hofmeyrab4d5092017-11-23 15:31:12 +0100163 LOGP(DAUC, LOGL_NOTICE, "%s: IMSI not known\n", gsup->imsi);
Neels Hofmeyr671db902017-11-22 20:38:19 +0100164 gsup_out.cause = GMM_CAUSE_IMSI_UNKNOWN;
165 break;
166 default:
Neels Hofmeyrab4d5092017-11-23 15:31:12 +0100167 LOGP(DAUC, LOGL_ERROR, "%s: failure to look up IMSI in db\n", gsup->imsi);
Neels Hofmeyr671db902017-11-22 20:38:19 +0100168 gsup_out.cause = GMM_CAUSE_NET_FAIL;
169 break;
170 }
Harald Welte15db8262016-05-05 16:50:39 +0200171 } else {
172 gsup_out.message_type = OSMO_GSUP_MSGT_SEND_AUTH_INFO_RESULT;
173 gsup_out.num_auth_vectors = rc;
Harald Weltee72cf552016-04-28 07:18:49 +0200174 }
175
Harald Weltee687be52016-05-03 18:49:27 +0200176 msg_out = msgb_alloc_headroom(1024+16, 16, "GSUP AUC response");
Harald Weltee72cf552016-04-28 07:18:49 +0200177 osmo_gsup_encode(msg_out, &gsup_out);
178 return osmo_gsup_conn_send(conn, msg_out);
179}
180
Harald Weltee687be52016-05-03 18:49:27 +0200181/***********************************************************************
182 * LU Operation State / Structure
183 ***********************************************************************/
184
185static LLIST_HEAD(g_lu_ops);
186
Harald Weltee687be52016-05-03 18:49:27 +0200187/*! Receive Cancel Location Result from old VLR/SGSN */
188void lu_op_rx_cancel_old_ack(struct lu_operation *luop,
Maxea8b0d42017-02-14 16:53:04 +0100189 const struct osmo_gsup_message *gsup)
Harald Weltee687be52016-05-03 18:49:27 +0200190{
191 OSMO_ASSERT(luop->state == LU_S_CANCEL_SENT);
192 /* FIXME: Check for spoofing */
193
194 osmo_timer_del(&luop->timer);
195
196 /* FIXME */
197
198 lu_op_tx_insert_subscr_data(luop);
199}
200
Harald Weltee687be52016-05-03 18:49:27 +0200201/*! Receive Insert Subscriber Data Result from new VLR/SGSN */
202static void lu_op_rx_insert_subscr_data_ack(struct lu_operation *luop,
203 const struct osmo_gsup_message *gsup)
204{
205 OSMO_ASSERT(luop->state == LU_S_ISD_SENT);
206 /* FIXME: Check for spoofing */
207
208 osmo_timer_del(&luop->timer);
209
210 /* Subscriber_Present_HLR */
211 /* CS only: Check_SS_required? -> MAP-FW-CHECK_SS_IND.req */
212
213 /* Send final ACK towards inquiring VLR/SGSN */
214 lu_op_tx_ack(luop);
215}
216
217/*! Receive GSUP message for given \ref lu_operation */
218void lu_op_rx_gsup(struct lu_operation *luop,
219 const struct osmo_gsup_message *gsup)
220{
221 switch (gsup->message_type) {
222 case OSMO_GSUP_MSGT_INSERT_DATA_ERROR:
223 /* FIXME */
224 break;
225 case OSMO_GSUP_MSGT_INSERT_DATA_RESULT:
226 lu_op_rx_insert_subscr_data_ack(luop, gsup);
227 break;
228 case OSMO_GSUP_MSGT_LOCATION_CANCEL_ERROR:
229 /* FIXME */
230 break;
231 case OSMO_GSUP_MSGT_LOCATION_CANCEL_RESULT:
232 lu_op_rx_cancel_old_ack(luop, gsup);
233 break;
234 default:
235 LOGP(DMAIN, LOGL_ERROR, "Unhandled GSUP msg_type 0x%02x\n",
236 gsup->message_type);
237 break;
238 }
239}
240
Harald Weltee687be52016-05-03 18:49:27 +0200241/*! Receive Update Location Request, creates new \ref lu_operation */
242static int rx_upd_loc_req(struct osmo_gsup_conn *conn,
243 const struct osmo_gsup_message *gsup)
244{
Maxea8b0d42017-02-14 16:53:04 +0100245 struct lu_operation *luop = lu_op_alloc_conn(conn);
246 if (!luop) {
Harald Weltee687be52016-05-03 18:49:27 +0200247 LOGP(DMAIN, LOGL_ERROR, "LU REQ from conn without addr?\n");
Maxea8b0d42017-02-14 16:53:04 +0100248 return -EINVAL;
Harald Weltee687be52016-05-03 18:49:27 +0200249 }
250
Harald Weltee687be52016-05-03 18:49:27 +0200251 lu_op_statechg(luop, LU_S_LU_RECEIVED);
Maxea8b0d42017-02-14 16:53:04 +0100252
Stefan Sperling93c5b102018-04-10 19:26:14 +0200253 if (gsup->cn_domain == OSMO_GSUP_CN_DOMAIN_CS)
254 conn->supports_cs = true;
255 if (gsup->cn_domain == OSMO_GSUP_CN_DOMAIN_PS) {
256 conn->supports_ps = true;
Harald Weltee687be52016-05-03 18:49:27 +0200257 luop->is_ps = true;
Stefan Sperling93c5b102018-04-10 19:26:14 +0200258 } else {
259 /* The client didn't send a CN_DOMAIN IE; assume packet-switched in
260 * accordance with the GSUP spec in osmo-hlr's user manual (section
261 * 11.6.15 "CN Domain" says "if no CN Domain IE is present within
262 * a request, the PS Domain is assumed." */
263 conn->supports_ps = true;
Stefan Sperling1cb48922018-05-03 14:05:56 +0200264 luop->is_ps = true;
Stefan Sperling93c5b102018-04-10 19:26:14 +0200265 }
Harald Weltee687be52016-05-03 18:49:27 +0200266 llist_add(&luop->list, &g_lu_ops);
267
268 /* Roughly follwing "Process Update_Location_HLR" of TS 09.02 */
269
270 /* check if subscriber is known at all */
Maxd4bebbd2017-03-02 12:00:19 +0100271 if (!lu_op_fill_subscr(luop, g_hlr->dbc, gsup->imsi)) {
Harald Weltee687be52016-05-03 18:49:27 +0200272 /* Send Error back: Subscriber Unknown in HLR */
Harald Weltebd0d5bf2017-11-06 03:55:02 +0900273 osmo_strlcpy(luop->subscr.imsi, gsup->imsi, sizeof(luop->subscr.imsi));
Harald Weltee687be52016-05-03 18:49:27 +0200274 lu_op_tx_error(luop, GMM_CAUSE_IMSI_UNKNOWN);
275 return 0;
276 }
277
Harald Welte99909272016-05-05 18:24:15 +0200278 /* Check if subscriber is generally permitted on CS or PS
279 * service (as requested) */
Maxea8b0d42017-02-14 16:53:04 +0100280 if (!luop->is_ps && !luop->subscr.nam_cs) {
Harald Weltee687be52016-05-03 18:49:27 +0200281 lu_op_tx_error(luop, GMM_CAUSE_PLMN_NOTALLOWED);
282 return 0;
Maxea8b0d42017-02-14 16:53:04 +0100283 } else if (luop->is_ps && !luop->subscr.nam_ps) {
Harald Weltee687be52016-05-03 18:49:27 +0200284 lu_op_tx_error(luop, GMM_CAUSE_GPRS_NOTALLOWED);
285 return 0;
286 }
287
288 /* TODO: Set subscriber tracing = deactive in VLR/SGSN */
289
290#if 0
291 /* Cancel in old VLR/SGSN, if new VLR/SGSN differs from old */
292 if (luop->is_ps == false &&
293 strcmp(subscr->vlr_number, vlr_number)) {
Harald Weltee687be52016-05-03 18:49:27 +0200294 lu_op_tx_cancel_old(luop);
295 } else if (luop->is_ps == true &&
296 strcmp(subscr->sgsn_number, sgsn_number)) {
Harald Weltee687be52016-05-03 18:49:27 +0200297 lu_op_tx_cancel_old(luop);
298 } else
299#endif
300 {
301 /* TODO: Subscriber allowed to roam in PLMN? */
302 /* TODO: Update RoutingInfo */
303 /* TODO: Reset Flag MS Purged (cs/ps) */
304 /* TODO: Control_Tracing_HLR / Control_Tracing_HLR_with_SGSN */
305 lu_op_tx_insert_subscr_data(luop);
306 }
307 return 0;
308}
309
Harald Welteb18f0e02016-05-05 21:03:03 +0200310static int rx_purge_ms_req(struct osmo_gsup_conn *conn,
311 const struct osmo_gsup_message *gsup)
312{
313 struct osmo_gsup_message gsup_reply = {0};
314 struct msgb *msg_out;
315 bool is_ps = false;
316 int rc;
317
318 LOGP(DAUC, LOGL_INFO, "%s: Purge MS (%s)\n", gsup->imsi,
319 is_ps ? "PS" : "CS");
320
321 memcpy(gsup_reply.imsi, gsup->imsi, sizeof(gsup_reply.imsi));
322
323 if (gsup->cn_domain == OSMO_GSUP_CN_DOMAIN_PS)
324 is_ps = true;
325
326 /* FIXME: check if the VLR that sends the purge is the same that
327 * we have on record. Only update if yes */
328
329 /* Perform the actual update of the DB */
Neels Hofmeyre50121e2017-10-09 17:48:51 +0200330 rc = db_subscr_purge(g_hlr->dbc, gsup->imsi, true, is_ps);
Harald Welteb18f0e02016-05-05 21:03:03 +0200331
Harald Welte3f2a9a22018-03-01 23:35:35 +0100332 if (rc == 0)
Harald Welteb18f0e02016-05-05 21:03:03 +0200333 gsup_reply.message_type = OSMO_GSUP_MSGT_PURGE_MS_RESULT;
Harald Welte3f2a9a22018-03-01 23:35:35 +0100334 else if (rc == -ENOENT) {
Harald Welteb18f0e02016-05-05 21:03:03 +0200335 gsup_reply.message_type = OSMO_GSUP_MSGT_PURGE_MS_ERROR;
336 gsup_reply.cause = GMM_CAUSE_IMSI_UNKNOWN;
337 } else {
338 gsup_reply.message_type = OSMO_GSUP_MSGT_PURGE_MS_ERROR;
339 gsup_reply.cause = GMM_CAUSE_NET_FAIL;
340 }
341
342 msg_out = msgb_alloc_headroom(1024+16, 16, "GSUP AUC response");
343 osmo_gsup_encode(msg_out, &gsup_reply);
344 return osmo_gsup_conn_send(conn, msg_out);
345}
346
Harald Weltea1d3b042018-06-11 20:28:35 +0200347static int gsup_send_err_reply(struct osmo_gsup_conn *conn, const char *imsi,
348 enum osmo_gsup_message_type type_in, uint8_t err_cause)
349{
350 int type_err = osmo_gsup_get_err_msg_type(type_in);
351 struct osmo_gsup_message gsup_reply = {0};
352 struct msgb *msg_out;
353
354 if (type_err < 0) {
355 LOGP(DMAIN, LOGL_ERROR, "unable to determine error response for %s\n",
356 osmo_gsup_message_type_name(type_in));
357 return type_err;
358 }
359
360 OSMO_STRLCPY_ARRAY(gsup_reply.imsi, imsi);
361 gsup_reply.message_type = type_err;
362 gsup_reply.cause = err_cause;
363 msg_out = msgb_alloc_headroom(1024+16, 16, "GSUP ERR response");
364 OSMO_ASSERT(msg_out);
365 osmo_gsup_encode(msg_out, &gsup_reply);
366 LOGP(DMAIN, LOGL_NOTICE, "Tx %s\n", osmo_gsup_message_type_name(type_err));
367 return osmo_gsup_conn_send(conn, msg_out);
368}
369
Harald Weltee72cf552016-04-28 07:18:49 +0200370static int read_cb(struct osmo_gsup_conn *conn, struct msgb *msg)
371{
372 static struct osmo_gsup_message gsup;
373 int rc;
374
Harald Weltee687be52016-05-03 18:49:27 +0200375 rc = osmo_gsup_decode(msgb_l2(msg), msgb_l2len(msg), &gsup);
Harald Weltee72cf552016-04-28 07:18:49 +0200376 if (rc < 0) {
377 LOGP(DMAIN, LOGL_ERROR, "error in GSUP decode: %d\n", rc);
378 return rc;
379 }
380
Harald Weltea1d3b042018-06-11 20:28:35 +0200381 /* 3GPP TS 23.003 Section 2.2 clearly states that an IMSI with less than 5
382 * digits is impossible. Even 5 digits is a highly theoretical case */
383 if (strlen(gsup.imsi) < 5)
384 return gsup_send_err_reply(conn, gsup.imsi, gsup.message_type, GMM_CAUSE_INV_MAND_INFO);
385
Harald Weltee72cf552016-04-28 07:18:49 +0200386 switch (gsup.message_type) {
387 /* requests sent to us */
388 case OSMO_GSUP_MSGT_SEND_AUTH_INFO_REQUEST:
Maxd4bebbd2017-03-02 12:00:19 +0100389 rx_send_auth_info(conn, &gsup, g_hlr->dbc);
Harald Weltee72cf552016-04-28 07:18:49 +0200390 break;
391 case OSMO_GSUP_MSGT_UPDATE_LOCATION_REQUEST:
Harald Weltee687be52016-05-03 18:49:27 +0200392 rx_upd_loc_req(conn, &gsup);
Harald Weltee72cf552016-04-28 07:18:49 +0200393 break;
Harald Welteb18f0e02016-05-05 21:03:03 +0200394 case OSMO_GSUP_MSGT_PURGE_MS_REQUEST:
395 rx_purge_ms_req(conn, &gsup);
396 break;
Harald Weltee72cf552016-04-28 07:18:49 +0200397 /* responses to requests sent by us */
Max9cacb6f2017-02-20 17:22:56 +0100398 case OSMO_GSUP_MSGT_DELETE_DATA_ERROR:
399 LOGP(DMAIN, LOGL_ERROR, "Error while deleting subscriber data "
400 "for IMSI %s\n", gsup.imsi);
401 break;
402 case OSMO_GSUP_MSGT_DELETE_DATA_RESULT:
403 LOGP(DMAIN, LOGL_ERROR, "Deleting subscriber data for IMSI %s\n",
404 gsup.imsi);
405 break;
Harald Weltebb779392018-06-16 20:21:10 +0200406 case OSMO_GSUP_MSGT_PROC_SS_REQUEST:
407 case OSMO_GSUP_MSGT_PROC_SS_RESULT:
408 rx_proc_ss_req(conn, &gsup);
409 break;
410 case OSMO_GSUP_MSGT_PROC_SS_ERROR:
411 rx_proc_ss_error(conn, &gsup);
412 break;
Harald Weltee72cf552016-04-28 07:18:49 +0200413 case OSMO_GSUP_MSGT_INSERT_DATA_ERROR:
Harald Weltee72cf552016-04-28 07:18:49 +0200414 case OSMO_GSUP_MSGT_INSERT_DATA_RESULT:
Harald Weltee687be52016-05-03 18:49:27 +0200415 case OSMO_GSUP_MSGT_LOCATION_CANCEL_ERROR:
416 case OSMO_GSUP_MSGT_LOCATION_CANCEL_RESULT:
417 {
Maxea8b0d42017-02-14 16:53:04 +0100418 struct lu_operation *luop = lu_op_by_imsi(gsup.imsi,
419 &g_lu_ops);
Harald Weltee687be52016-05-03 18:49:27 +0200420 if (!luop) {
Maxaa0fefd2017-02-16 12:25:22 +0100421 LOGP(DMAIN, LOGL_ERROR, "GSUP message %s for "
422 "unknown IMSI %s\n",
423 osmo_gsup_message_type_name(gsup.message_type),
Harald Weltee687be52016-05-03 18:49:27 +0200424 gsup.imsi);
425 break;
426 }
427 lu_op_rx_gsup(luop, &gsup);
428 }
Harald Weltee72cf552016-04-28 07:18:49 +0200429 break;
430 default:
Maxaa0fefd2017-02-16 12:25:22 +0100431 LOGP(DMAIN, LOGL_DEBUG, "Unhandled GSUP message type %s\n",
432 osmo_gsup_message_type_name(gsup.message_type));
Harald Weltee72cf552016-04-28 07:18:49 +0200433 break;
434 }
Harald Welte5341b5d2016-04-28 12:48:39 +0200435 msgb_free(msg);
Harald Weltee72cf552016-04-28 07:18:49 +0200436 return 0;
437}
438
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100439static void print_usage()
440{
441 printf("Usage: osmo-hlr\n");
442}
443
444static void print_help()
445{
446 printf(" -h --help This text.\n");
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100447 printf(" -c --config-file filename The config file to use.\n");
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100448 printf(" -l --database db-name The database to use.\n");
449 printf(" -d option --debug=DRLL:DCC:DMM:DRR:DRSL:DNM Enable debugging.\n");
450 printf(" -D --daemonize Fork the process into a background daemon.\n");
451 printf(" -s --disable-color Do not print ANSI colors in the log\n");
452 printf(" -T --timestamp Prefix every log line with a timestamp.\n");
453 printf(" -e --log-level number Set a global loglevel.\n");
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100454 printf(" -V --version Print the version of OsmoHLR.\n");
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100455}
456
457static struct {
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100458 const char *config_file;
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100459 const char *db_file;
460 bool daemonize;
461} cmdline_opts = {
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100462 .config_file = "osmo-hlr.cfg",
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100463 .db_file = "hlr.db",
464 .daemonize = false,
465};
466
467static void handle_options(int argc, char **argv)
468{
469 while (1) {
470 int option_index = 0, c;
471 static struct option long_options[] = {
472 {"help", 0, 0, 'h'},
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100473 {"config-file", 1, 0, 'c'},
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100474 {"database", 1, 0, 'l'},
475 {"debug", 1, 0, 'd'},
476 {"daemonize", 0, 0, 'D'},
477 {"disable-color", 0, 0, 's'},
478 {"log-level", 1, 0, 'e'},
479 {"timestamp", 0, 0, 'T'},
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100480 {"version", 0, 0, 'V' },
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100481 {0, 0, 0, 0}
482 };
483
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100484 c = getopt_long(argc, argv, "hc:l:d:Dse:TV",
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100485 long_options, &option_index);
486 if (c == -1)
487 break;
488
489 switch (c) {
490 case 'h':
491 print_usage();
492 print_help();
493 exit(0);
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100494 case 'c':
495 cmdline_opts.config_file = optarg;
496 break;
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100497 case 'l':
498 cmdline_opts.db_file = optarg;
499 break;
500 case 'd':
501 log_parse_category_mask(osmo_stderr_target, optarg);
502 break;
503 case 'D':
504 cmdline_opts.daemonize = 1;
505 break;
506 case 's':
507 log_set_use_color(osmo_stderr_target, 0);
508 break;
509 case 'e':
510 log_set_log_level(osmo_stderr_target, atoi(optarg));
511 break;
512 case 'T':
513 log_set_print_timestamp(osmo_stderr_target, 1);
514 break;
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100515 case 'V':
516 print_version(1);
517 exit(0);
518 break;
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100519 default:
520 /* catch unknown options *as well as* missing arguments. */
521 fprintf(stderr, "Error in command line options. Exiting.\n");
522 exit(-1);
523 break;
524 }
525 }
526}
527
Neels Hofmeyrca43e302017-01-30 13:18:23 +0100528static void *hlr_ctx = NULL;
Harald Welteaabae9e2016-04-28 12:48:14 +0200529
530static void signal_hdlr(int signal)
531{
532 switch (signal) {
533 case SIGINT:
534 LOGP(DMAIN, LOGL_NOTICE, "Terminating due to SIGINT\n");
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700535 quit++;
Harald Welteaabae9e2016-04-28 12:48:14 +0200536 break;
537 case SIGUSR1:
538 LOGP(DMAIN, LOGL_DEBUG, "Talloc Report due to SIGUSR1\n");
Neels Hofmeyrca43e302017-01-30 13:18:23 +0100539 talloc_report_full(hlr_ctx, stderr);
Harald Welteaabae9e2016-04-28 12:48:14 +0200540 break;
541 }
542}
Harald Weltee72cf552016-04-28 07:18:49 +0200543
Max372868b2017-03-02 12:12:00 +0100544static const char vlr_copyright[] =
545 "Copyright (C) 2016, 2017 by Harald Welte, sysmocom s.f.m.c. GmbH\r\n"
546 "License AGPLv3+: GNU AGPL version 3 or later <http://gnu.org/licenses/agpl-3.0.html>\r\n"
547 "This is free software: you are free to change and redistribute it.\r\n"
548 "There is NO WARRANTY, to the extent permitted by law.\r\n";
549
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100550static struct vty_app_info vty_info = {
551 .name = "OsmoHLR",
552 .version = PACKAGE_VERSION,
Max372868b2017-03-02 12:12:00 +0100553 .copyright = vlr_copyright,
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100554 .is_config_node = hlr_vty_is_config_node,
Pau Espin Pedrolce9bc402017-05-31 13:19:22 +0200555 .go_parent_cb = hlr_vty_go_parent,
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100556};
557
Harald Weltee72cf552016-04-28 07:18:49 +0200558int main(int argc, char **argv)
559{
Harald Weltee72cf552016-04-28 07:18:49 +0200560 int rc;
561
Vadim Yanitskiy9fdb8542018-07-30 03:09:22 +0700562 /* Track the use of talloc NULL memory contexts */
563 talloc_enable_null_tracking();
564
Neels Hofmeyrca43e302017-01-30 13:18:23 +0100565 hlr_ctx = talloc_named_const(NULL, 1, "OsmoHLR");
566 msgb_talloc_ctx_init(hlr_ctx, 0);
Harald Welte7ee6e552018-02-14 00:52:05 +0100567 vty_info.tall_ctx = hlr_ctx;
Harald Welteaabae9e2016-04-28 12:48:14 +0200568
Maxd4bebbd2017-03-02 12:00:19 +0100569 g_hlr = talloc_zero(hlr_ctx, struct hlr);
Harald Welte4956ae12018-06-15 22:04:28 +0200570 INIT_LLIST_HEAD(&g_hlr->euse_list);
Harald Weltebb779392018-06-16 20:21:10 +0200571 INIT_LLIST_HEAD(&g_hlr->ss_sessions);
Maxd4bebbd2017-03-02 12:00:19 +0100572
Pau Espin Pedrol51530312018-04-17 15:07:06 +0200573 rc = osmo_init_logging2(hlr_ctx, &hlr_log_info);
Harald Weltee72cf552016-04-28 07:18:49 +0200574 if (rc < 0) {
575 fprintf(stderr, "Error initializing logging\n");
576 exit(1);
577 }
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100578
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100579 vty_init(&vty_info);
Max372868b2017-03-02 12:12:00 +0100580 ctrl_vty_init(hlr_ctx);
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100581 handle_options(argc, argv);
Harald Welted5807b82018-07-29 12:27:41 +0200582 hlr_vty_init(&hlr_log_info);
Neels Hofmeyr7685a782017-01-30 23:30:26 +0100583
584 rc = vty_read_config_file(cmdline_opts.config_file, NULL);
585 if (rc < 0) {
586 LOGP(DMAIN, LOGL_FATAL,
587 "Failed to parse the config file: '%s'\n",
588 cmdline_opts.config_file);
589 return rc;
590 }
591
592 /* start telnet after reading config for vty_get_bind_addr() */
593 rc = telnet_init_dynif(hlr_ctx, NULL, vty_get_bind_addr(),
594 OSMO_VTY_PORT_HLR);
595 if (rc < 0)
596 return rc;
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100597
Harald Weltee72cf552016-04-28 07:18:49 +0200598 LOGP(DMAIN, LOGL_NOTICE, "hlr starting\n");
599
600 rc = rand_init();
601 if (rc < 0) {
602 LOGP(DMAIN, LOGL_FATAL, "Error initializing random source\n");
603 exit(1);
604 }
605
Neels Hofmeyrd3814b92017-11-21 12:28:07 +0100606 g_hlr->dbc = db_open(hlr_ctx, cmdline_opts.db_file, true);
Maxd4bebbd2017-03-02 12:00:19 +0100607 if (!g_hlr->dbc) {
Harald Weltee72cf552016-04-28 07:18:49 +0200608 LOGP(DMAIN, LOGL_FATAL, "Error opening database\n");
609 exit(1);
610 }
611
Neels Hofmeyr84201d32017-07-21 16:00:32 +0200612 g_hlr->gs = osmo_gsup_server_create(hlr_ctx, g_hlr->gsup_bind_addr, OSMO_GSUP_PORT,
Harald Welte32acace2018-06-16 17:07:28 +0200613 read_cb, &g_lu_ops, g_hlr);
Maxd4bebbd2017-03-02 12:00:19 +0100614 if (!g_hlr->gs) {
Harald Weltee72cf552016-04-28 07:18:49 +0200615 LOGP(DMAIN, LOGL_FATAL, "Error starting GSUP server\n");
616 exit(1);
617 }
618
Max372868b2017-03-02 12:12:00 +0100619 g_hlr->ctrl_bind_addr = ctrl_vty_get_bind_addr();
Neels Hofmeyr234f9cb2017-10-24 17:23:04 +0200620 g_hlr->ctrl = hlr_controlif_setup(g_hlr);
Max372868b2017-03-02 12:12:00 +0100621
Harald Welteaabae9e2016-04-28 12:48:14 +0200622 osmo_init_ignore_signals();
623 signal(SIGINT, &signal_hdlr);
624 signal(SIGUSR1, &signal_hdlr);
625
Neels Hofmeyr7f9491f2017-01-30 13:30:47 +0100626 if (cmdline_opts.daemonize) {
627 rc = osmo_daemonize();
628 if (rc < 0) {
629 perror("Error during daemonize");
630 exit(1);
631 }
632 }
Harald Welteaabae9e2016-04-28 12:48:14 +0200633
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700634 while (!quit)
Harald Weltee72cf552016-04-28 07:18:49 +0200635 osmo_select_main(0);
Harald Weltee72cf552016-04-28 07:18:49 +0200636
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700637 osmo_gsup_server_destroy(g_hlr->gs);
Maxd4bebbd2017-03-02 12:00:19 +0100638 db_close(g_hlr->dbc);
Harald Weltee72cf552016-04-28 07:18:49 +0200639 log_fini();
640
Vadim Yanitskiy4793a7e2018-07-30 03:04:34 +0700641 /**
642 * Report the heap state of root context, then free,
643 * so both ASAN and Valgrind are happy...
644 */
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700645 talloc_report_full(hlr_ctx, stderr);
Vadim Yanitskiy4793a7e2018-07-30 03:04:34 +0700646 talloc_free(hlr_ctx);
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700647
Vadim Yanitskiy9fdb8542018-07-30 03:09:22 +0700648 /* FIXME: VTY code still uses NULL-context */
649 talloc_free(tall_vty_ctx);
650
651 /**
652 * Report the heap state of NULL context, then free,
653 * so both ASAN and Valgrind are happy...
654 */
655 talloc_report_full(NULL, stderr);
656 talloc_disable_null_tracking();
657
Vadim Yanitskiy527d9342018-07-30 02:42:25 +0700658 return 0;
Harald Weltee72cf552016-04-28 07:18:49 +0200659}