blob: 8f2670415ec2b5e0fc850b94f71c65ac02ec02cf [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>
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +010027#include <osmocom/gsm/ipa.h>
28#include <osmocom/core/tdef.h>
Neels Hofmeyra75d1c22019-11-20 03:35:37 +010029#include <osmocom/core/sockaddr_str.h>
Harald Welte4956ae12018-06-15 22:04:28 +020030
Neels Hofmeyr5857c592019-04-02 04:24:49 +020031#define HLR_DEFAULT_DB_FILE_PATH "hlr.db"
32
Harald Welte4956ae12018-06-15 22:04:28 +020033struct hlr_euse;
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +010034struct osmo_gsup_conn;
35enum osmo_gsup_message_type;
36
37extern struct osmo_tdef g_hlr_tdefs[];
Maxd4bebbd2017-03-02 12:00:19 +010038
39struct hlr {
40 /* GSUP server pointer */
41 struct osmo_gsup_server *gs;
42
43 /* DB context */
Neels Hofmeyr5857c592019-04-02 04:24:49 +020044 char *db_file_path;
Maxd4bebbd2017-03-02 12:00:19 +010045 struct db_context *dbc;
Max372868b2017-03-02 12:12:00 +010046
47 /* Control Interface */
48 struct ctrl_handle *ctrl;
49 const char *ctrl_bind_addr;
Pau Espin Pedrolce9bc402017-05-31 13:19:22 +020050
51 /* Local bind addr */
52 char *gsup_bind_addr;
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +010053 struct ipaccess_unit gsup_unit_name;
Harald Welte4956ae12018-06-15 22:04:28 +020054
55 struct llist_head euse_list;
56 struct hlr_euse *euse_default;
Harald Weltedab544e2018-07-29 16:14:48 +020057
Vadim Yanitskiyd157a562018-12-01 00:03:39 +070058 /* NCSS (call independent) session guard timeout value */
59 int ncss_guard_timeout;
60
Harald Weltedab544e2018-07-29 16:14:48 +020061 struct llist_head ussd_routes;
Harald Weltebb779392018-06-16 20:21:10 +020062
63 struct llist_head ss_sessions;
Oliver Smith851814a2019-01-11 15:30:21 +010064
65 bool store_imei;
Oliver Smithc7f17872019-03-04 15:10:44 +010066
67 bool subscr_create_on_demand;
68 /* Bitmask of DB_SUBSCR_FLAG_* */
69 uint8_t subscr_create_on_demand_flags;
70 unsigned int subscr_create_on_demand_rand_msisdn_len;
Neels Hofmeyr32cc07a2019-11-20 03:35:37 +010071
72 struct {
Neels Hofmeyra75d1c22019-11-20 03:35:37 +010073 bool allow_startup;
Neels Hofmeyr32cc07a2019-11-20 03:35:37 +010074 struct {
Neels Hofmeyra75d1c22019-11-20 03:35:37 +010075 /* Whether the mslookup server should be active in general (all lookup methods) */
76 bool enable;
Neels Hofmeyr32cc07a2019-11-20 03:35:37 +010077 uint32_t local_attach_max_age;
78 struct llist_head local_site_services;
Neels Hofmeyra75d1c22019-11-20 03:35:37 +010079 struct {
80 /* Whether the mDNS method of the mslookup server should be active. */
81 bool enable;
82 /* The mDNS bind address and domain suffix as set by the VTY, not necessarily in use. */
83 struct osmo_sockaddr_str bind_addr;
84 char *domain_suffix;
85 struct osmo_mslookup_server_mdns *running;
86 } mdns;
Neels Hofmeyr32cc07a2019-11-20 03:35:37 +010087 } server;
88 } mslookup;
Maxd4bebbd2017-03-02 12:00:19 +010089};
Stefan Sperlingf1622522018-04-09 11:39:16 +020090
Harald Welted5807b82018-07-29 12:27:41 +020091extern struct hlr *g_hlr;
92
Stefan Sperlingf1622522018-04-09 11:39:16 +020093struct hlr_subscriber;
94
95void osmo_hlr_subscriber_update_notify(struct hlr_subscriber *subscr);
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +010096int hlr_subscr_nam(struct hlr *hlr, struct hlr_subscriber *subscr, bool nam_val, bool is_ps);