blob: fc9caafa0d389c48421c2ba43697c9b9f735053a [file] [log] [blame]
Neels Hofmeyrc69ee852016-05-10 12:50:31 +02001/* Code used by both libbsc and libmsc (common_cs means "BSC or MSC").
2 *
3 * (C) 2016 by sysmocom s.m.f.c. <info@sysmocom.de>
Neels Hofmeyre78ae212016-05-14 00:46:29 +02004 * (C) 2008-2010 by Harald Welte <laforge@gnumonks.org>
5 * (C) 2014 by Holger Hans Peter Freyther
Neels Hofmeyrc69ee852016-05-10 12:50:31 +02006 * All Rights Reserved
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 */
Neels Hofmeyre78ae212016-05-14 00:46:29 +020022
23#include <stdbool.h>
24
25#include <osmocom/gsm/gsm0480.h>
26
27#include <openbsc/common_cs.h>
28#include <openbsc/gsm_data.h>
29#include <openbsc/gsm_subscriber.h>
Neels Hofmeyr05667a02016-05-10 13:27:32 +020030#include <openbsc/gsm_data.h>
31#include <openbsc/gsm_04_11.h>
Neels Hofmeyre78ae212016-05-14 00:46:29 +020032
33/* Warning: if bsc_network_init() is not called, some of the members of
34 * gsm_network are not initialized properly and must not be used! (In
35 * particular the llist heads and stats counters.)
36 * The long term aim should be to have entirely separate structs for libbsc and
37 * libmsc with some common general items.
38 */
39struct gsm_network *gsm_network_init(void *ctx,
40 uint16_t country_code,
41 uint16_t network_code,
42 mncc_recv_cb_t mncc_recv)
43{
44 struct gsm_network *net;
45
46 const char *default_regexp = ".*";
47
48 net = talloc_zero(ctx, struct gsm_network);
49 if (!net)
50 return NULL;
51
Neels Hofmeyre78ae212016-05-14 00:46:29 +020052 if (gsm_parse_reg(net, &net->authorized_regexp, &net->authorized_reg_str, 1,
53 &default_regexp) != 0)
54 return NULL;
55
Neels Hofmeyre78ae212016-05-14 00:46:29 +020056 net->country_code = country_code;
57 net->network_code = network_code;
58
59 INIT_LLIST_HEAD(&net->trans_list);
60 INIT_LLIST_HEAD(&net->upqueue);
61 INIT_LLIST_HEAD(&net->subscr_conns);
62
Neels Hofmeyr6d804b12017-02-18 22:20:46 +010063 net->bsc_subscribers = talloc_zero(net, struct llist_head);
64 INIT_LLIST_HEAD(net->bsc_subscribers);
65
Neels Hofmeyre78ae212016-05-14 00:46:29 +020066 /* init statistics */
67 net->msc_ctrs = rate_ctr_group_alloc(net, &msc_ctrg_desc, 0);
68 net->active_calls = osmo_counter_alloc("msc.active_calls");
69
70 net->mncc_recv = mncc_recv;
Neels Hofmeyre78ae212016-05-14 00:46:29 +020071
72 net->dyn_ts_allow_tch_f = true;
73
74 return net;
75}
Neels Hofmeyr28f637e2016-05-10 14:58:51 +020076
77struct msgb *gsm48_create_mm_serv_rej(enum gsm48_reject_value value)
78{
79 struct msgb *msg;
80 struct gsm48_hdr *gh;
81
82 msg = gsm48_msgb_alloc_name("GSM 04.08 SERV REJ");
83 if (!msg)
84 return NULL;
85
86 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
87 gh->proto_discr = GSM48_PDISC_MM;
88 gh->msg_type = GSM48_MT_MM_CM_SERV_REJ;
89 gh->data[0] = value;
90
91 return msg;
92}
93
94struct msgb *gsm48_create_loc_upd_rej(uint8_t cause)
95{
96 struct gsm48_hdr *gh;
97 struct msgb *msg;
98
99 msg = gsm48_msgb_alloc_name("GSM 04.08 LOC UPD REJ");
100 if (!msg)
101 return NULL;
102
103 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
104 gh->proto_discr = GSM48_PDISC_MM;
105 gh->msg_type = GSM48_MT_MM_LOC_UPD_REJECT;
106 gh->data[0] = cause;
107 return msg;
108}
Neels Hofmeyr05667a02016-05-10 13:27:32 +0200109
110uint8_t sms_next_rp_msg_ref(uint8_t *next_rp_ref)
111{
112 const uint8_t rp_msg_ref = *next_rp_ref;
113 /*
114 * This should wrap as the valid range is 0 to 255. We only
115 * transfer one SMS at a time so we don't need to check if
116 * the id has been already assigned.
117 */
118 *next_rp_ref += 1;
119
120 return rp_msg_ref;
121}