blob: 18c4a1d71fe613649ca9233130e693543971f921 [file] [log] [blame]
Maxd4bebbd2017-03-02 12:00:19 +01001/* OsmoHLR generic header */
2
3/* (C) 2017 sysmocom s.f.m.c. GmbH <info@sysmocom.de>
4 * All Rights Reserved
5 *
6 * Author: Max Suraev <msuraev@sysmocom.de>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23#pragma once
24
25#include <stdbool.h>
Harald Welte4956ae12018-06-15 22:04:28 +020026#include <osmocom/core/linuxlist.h>
27
Neels Hofmeyr5857c592019-04-02 04:24:49 +020028#define HLR_DEFAULT_DB_FILE_PATH "hlr.db"
29
Harald Welte4956ae12018-06-15 22:04:28 +020030struct hlr_euse;
Maxd4bebbd2017-03-02 12:00:19 +010031
32struct hlr {
33 /* GSUP server pointer */
34 struct osmo_gsup_server *gs;
35
36 /* DB context */
Neels Hofmeyr5857c592019-04-02 04:24:49 +020037 char *db_file_path;
Maxd4bebbd2017-03-02 12:00:19 +010038 struct db_context *dbc;
Max372868b2017-03-02 12:12:00 +010039
40 /* Control Interface */
41 struct ctrl_handle *ctrl;
42 const char *ctrl_bind_addr;
Pau Espin Pedrolce9bc402017-05-31 13:19:22 +020043
44 /* Local bind addr */
45 char *gsup_bind_addr;
Harald Welte4956ae12018-06-15 22:04:28 +020046
47 struct llist_head euse_list;
48 struct hlr_euse *euse_default;
Harald Weltedab544e2018-07-29 16:14:48 +020049 struct llist_head iuse_list;
50
Vadim Yanitskiyd157a562018-12-01 00:03:39 +070051 /* NCSS (call independent) session guard timeout value */
52 int ncss_guard_timeout;
53
Harald Weltedab544e2018-07-29 16:14:48 +020054 struct llist_head ussd_routes;
Harald Weltebb779392018-06-16 20:21:10 +020055
56 struct llist_head ss_sessions;
Oliver Smith851814a2019-01-11 15:30:21 +010057
58 bool store_imei;
Oliver Smithc7f17872019-03-04 15:10:44 +010059
60 bool subscr_create_on_demand;
61 /* Bitmask of DB_SUBSCR_FLAG_* */
62 uint8_t subscr_create_on_demand_flags;
63 unsigned int subscr_create_on_demand_rand_msisdn_len;
Maxd4bebbd2017-03-02 12:00:19 +010064};
Stefan Sperlingf1622522018-04-09 11:39:16 +020065
Harald Welted5807b82018-07-29 12:27:41 +020066extern struct hlr *g_hlr;
67
Stefan Sperlingf1622522018-04-09 11:39:16 +020068struct hlr_subscriber;
69
70void osmo_hlr_subscriber_update_notify(struct hlr_subscriber *subscr);