blob: a2f5cb38e7c225bdec5aad3373b0e64cd6219f94 [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
Neels Hofmeyr90843962017-09-04 15:04:35 +020027#include <osmocom/msc/common_cs.h>
28#include <osmocom/msc/gsm_data.h>
29#include <osmocom/msc/gsm_subscriber.h>
30#include <osmocom/msc/gsm_data.h>
31#include <osmocom/msc/gsm_04_11.h>
Max43b01b02017-09-15 11:22:30 +020032#include <osmocom/msc/gsm_04_08.h>
Neels Hofmeyre78ae212016-05-14 00:46:29 +020033
34/* Warning: if bsc_network_init() is not called, some of the members of
35 * gsm_network are not initialized properly and must not be used! (In
36 * particular the llist heads and stats counters.)
37 * The long term aim should be to have entirely separate structs for libbsc and
38 * libmsc with some common general items.
39 */
40struct gsm_network *gsm_network_init(void *ctx,
41 uint16_t country_code,
42 uint16_t network_code,
43 mncc_recv_cb_t mncc_recv)
44{
45 struct gsm_network *net;
46
Neels Hofmeyre78ae212016-05-14 00:46:29 +020047 net = talloc_zero(ctx, struct gsm_network);
48 if (!net)
49 return NULL;
50
Neels Hofmeyre78ae212016-05-14 00:46:29 +020051 net->country_code = country_code;
52 net->network_code = network_code;
Harald Welte7b222aa2017-12-23 19:30:32 +010053 /* Permit a compile-time default of A5/3 and A5/1 */
54 net->a5_encryption_mask = (1 << 3) | (1 << 1);
Neels Hofmeyre78ae212016-05-14 00:46:29 +020055
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020056 /* Use 30 min periodic update interval as sane default */
57 net->t3212 = 5;
58
Neels Hofmeyr2ff5bcd2017-12-15 03:02:27 +010059 net->paging_response_timer = MSC_PAGING_RESPONSE_TIMER_DEFAULT;
60
Neels Hofmeyre78ae212016-05-14 00:46:29 +020061 INIT_LLIST_HEAD(&net->trans_list);
62 INIT_LLIST_HEAD(&net->upqueue);
63 INIT_LLIST_HEAD(&net->subscr_conns);
64
65 /* init statistics */
66 net->msc_ctrs = rate_ctr_group_alloc(net, &msc_ctrg_desc, 0);
Harald Welte3ee3b852017-07-12 00:25:51 +020067 if (!net->msc_ctrs) {
68 talloc_free(net);
69 return NULL;
70 }
Neels Hofmeyre78ae212016-05-14 00:46:29 +020071 net->active_calls = osmo_counter_alloc("msc.active_calls");
72
73 net->mncc_recv = mncc_recv;
Neels Hofmeyre78ae212016-05-14 00:46:29 +020074
Philipp Maierfbf66102017-04-09 12:32:51 +020075 INIT_LLIST_HEAD(&net->a.bscs);
76
Neels Hofmeyre78ae212016-05-14 00:46:29 +020077 return net;
78}
Neels Hofmeyr28f637e2016-05-10 14:58:51 +020079
80struct msgb *gsm48_create_mm_serv_rej(enum gsm48_reject_value value)
81{
82 struct msgb *msg;
83 struct gsm48_hdr *gh;
84
85 msg = gsm48_msgb_alloc_name("GSM 04.08 SERV REJ");
86 if (!msg)
87 return NULL;
88
89 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
90 gh->proto_discr = GSM48_PDISC_MM;
91 gh->msg_type = GSM48_MT_MM_CM_SERV_REJ;
92 gh->data[0] = value;
93
94 return msg;
95}
96
97struct msgb *gsm48_create_loc_upd_rej(uint8_t cause)
98{
99 struct gsm48_hdr *gh;
100 struct msgb *msg;
101
102 msg = gsm48_msgb_alloc_name("GSM 04.08 LOC UPD REJ");
103 if (!msg)
104 return NULL;
105
106 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
107 gh->proto_discr = GSM48_PDISC_MM;
108 gh->msg_type = GSM48_MT_MM_LOC_UPD_REJECT;
109 gh->data[0] = cause;
110 return msg;
111}
Neels Hofmeyr05667a02016-05-10 13:27:32 +0200112
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200113int gsm48_extract_mi(uint8_t *classmark2_lv, int length, char *mi_string, uint8_t *mi_type)
114{
115 /* Check the size for the classmark */
116 if (length < 1 + *classmark2_lv)
117 return -1;
118
119 uint8_t *mi_lv = classmark2_lv + *classmark2_lv + 1;
120 if (length < 2 + *classmark2_lv + mi_lv[0])
121 return -2;
122
123 *mi_type = mi_lv[1] & GSM_MI_TYPE_MASK;
124 return gsm48_mi_to_string(mi_string, GSM48_MI_SIZE, mi_lv+1, *mi_lv);
125}
126
127int gsm48_paging_extract_mi(struct gsm48_pag_resp *resp, int length,
128 char *mi_string, uint8_t *mi_type)
129{
130 static const uint32_t classmark_offset =
131 offsetof(struct gsm48_pag_resp, classmark2);
132 uint8_t *classmark2_lv = (uint8_t *) &resp->classmark2;
133 return gsm48_extract_mi(classmark2_lv, length - classmark_offset,
134 mi_string, mi_type);
135}
136
Neels Hofmeyr05667a02016-05-10 13:27:32 +0200137uint8_t sms_next_rp_msg_ref(uint8_t *next_rp_ref)
138{
139 const uint8_t rp_msg_ref = *next_rp_ref;
140 /*
141 * This should wrap as the valid range is 0 to 255. We only
142 * transfer one SMS at a time so we don't need to check if
143 * the id has been already assigned.
144 */
145 *next_rp_ref += 1;
146
147 return rp_msg_ref;
148}