blob: 1bb6fa76d3683aec543a825e842778bdac6375c8 [file] [log] [blame]
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001/* GSM Mobile Radio Interface Layer 3 messages on the A-bis interface
Harald Welte52b1f982008-12-23 20:25:15 +00002 * 3GPP TS 04.08 version 7.21.0 Release 1998 / ETSI TS 100 940 V7.21.0 */
3
Harald Welte2483f1b2016-06-19 18:06:02 +02004/* (C) 2008-2016 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freytherc121bb32012-12-26 10:17:42 +01005 * (C) 2008-2012 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte8470bf22008-12-25 23:28:35 +00006 *
Harald Welte52b1f982008-12-23 20:25:15 +00007 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010010 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
Harald Welte52b1f982008-12-23 20:25:15 +000012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Harald Welte52b1f982008-12-23 20:25:15 +000018 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010019 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte52b1f982008-12-23 20:25:15 +000021 *
22 */
23
24
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
Maxddee01f2016-05-24 14:23:27 +020028#include <stdbool.h>
Harald Welte52b1f982008-12-23 20:25:15 +000029#include <errno.h>
Harald Weltedb253af2008-12-30 17:56:55 +000030#include <time.h>
Harald Welte4b634542008-12-27 01:55:51 +000031#include <netinet/in.h>
Maxddee01f2016-05-24 14:23:27 +020032#include <regex.h>
33#include <sys/types.h>
Harald Welte52b1f982008-12-23 20:25:15 +000034
Harald Welte9c3dc902012-04-08 16:59:24 +020035#include "bscconfig.h"
36
Neels Hofmeyr90843962017-09-04 15:04:35 +020037#include <osmocom/msc/db.h>
38#include <osmocom/msc/debug.h>
39#include <osmocom/msc/gsm_data.h>
40#include <osmocom/msc/gsm_subscriber.h>
41#include <osmocom/msc/gsm_04_11.h>
42#include <osmocom/msc/gsm_04_08.h>
43#include <osmocom/msc/gsm_04_80.h>
44#include <osmocom/msc/gsm_04_14.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020045#include <osmocom/msc/signal.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020046#include <osmocom/msc/transaction.h>
47#include <osmocom/msc/ussd.h>
48#include <osmocom/msc/silent_call.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020049#include <osmocom/msc/osmo_msc.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020050#include <osmocom/msc/mncc_int.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020051#include <osmocom/abis/e1_input.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010052#include <osmocom/core/bitvec.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020053#include <osmocom/msc/vlr.h>
54#include <osmocom/msc/msc_ifaces.h>
Holger Hans Peter Freyther841c2002010-09-30 18:52:23 +080055
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010056#include <osmocom/gsm/gsm48.h>
57#include <osmocom/gsm/gsm0480.h>
58#include <osmocom/gsm/gsm_utils.h>
Max8db12e42016-04-18 23:11:18 +020059#include <osmocom/gsm/protocol/gsm_04_08.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010060#include <osmocom/core/msgb.h>
61#include <osmocom/core/talloc.h>
Neels Hofmeyr93bafb62017-01-13 03:12:08 +010062#include <osmocom/core/utils.h>
Philipp Maier621ba032017-11-07 17:19:25 +010063#include <osmocom/core/byteswap.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010064#include <osmocom/gsm/tlv.h>
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020065#include <osmocom/crypt/auth.h>
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020066#ifdef BUILD_IU
Neels Hofmeyr00e82d62017-07-05 15:19:52 +020067#include <osmocom/ranap/iu_client.h>
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020068#endif
Harald Welte52b1f982008-12-23 20:25:15 +000069
Neels Hofmeyr90843962017-09-04 15:04:35 +020070#include <osmocom/msc/msc_ifaces.h>
71#include <osmocom/msc/a_iface.h>
Philipp Maier621ba032017-11-07 17:19:25 +010072#include <osmocom/msc/msc_mgcp.h>
Philipp Maierfbf66102017-04-09 12:32:51 +020073
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +020074#include <assert.h>
75
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020076
Harald Welte (local)d19e58b2009-08-15 02:30:58 +020077void *tall_locop_ctx;
Sylvain Munaut30a15382009-12-24 00:27:26 +010078void *tall_authciphop_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +020079
Harald Welte2483f1b2016-06-19 18:06:02 +020080static int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn,
81 uint32_t send_tmsi);
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +080082static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020083 uint8_t pdisc, uint8_t msg_type);
Harald Welte65e74cc2008-12-29 01:55:35 +000084
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020085static uint32_t new_callref = 0x80000001;
Harald Welte4bfdfe72009-06-10 23:11:52 +080086
Neels Hofmeyr9d744252018-03-22 16:09:50 +010087static bool classmark_is_r99(struct gsm_classmark *cm)
88{
89 int rev_lev = 0;
90 if (cm->classmark1_set)
91 rev_lev = cm->classmark1.rev_lev;
92 else if (cm->classmark2_len > 0)
93 rev_lev = (cm->classmark2[0] >> 5) & 0x3;
94 return rev_lev >= 2;
95}
96
Harald Welte71330722017-12-23 19:59:02 +010097/* Determine if the given CLASSMARK (1/2/3) value permits a given A5/n cipher */
98static bool classmark_supports_a5(const struct gsm_classmark *cm, uint8_t a5)
99{
100 switch (a5) {
101 case 0:
102 /* all phones must implement A5/0, see 3GPP TS 43.020 4.9 */
103 return true;
104 case 1:
105 /* 3GPP TS 43.020 4.9 requires A5/1 to be suppored by all phones and actually states:
106 * "The network shall not provide service to an MS which indicates that it does not
107 * support the ciphering algorithm A5/1.". However, let's be more tolerant based
108 * on policy here */
109 /* See 3GPP TS 24.008 10.5.1.7 */
110 if (!cm->classmark1_set) {
111 DEBUGP(DMSC, "CLASSMARK 1 unknown, assuming MS supports A5/1\n");
112 return true;
113 } else {
114 if (cm->classmark1.a5_1)
115 return false; /* Inverted logic for this bit! */
116 else
117 return true;
118 }
119 break;
120 case 2:
121 case 3:
122 /* See 3GPP TS 24.008 10.5.1.6 */
123 if (cm->classmark2_len < 3) {
124 DEBUGP(DMSC, "CLASSMARK 2 unknown, assuming MS doesn't support A5/%u\n", a5);
125 return false;
126 } else {
127 if (cm->classmark2[2] & (1 << (a5-2)))
128 return true;
129 else
130 return false;
131 }
132 break;
133 case 4:
134 case 5:
135 case 6:
136 case 7:
137 /* See 3GPP TS 24.008 10.5.1.7 */
138 if (cm->classmark3_len < 1) {
139 DEBUGP(DMSC, "CLASSMARK 3 unknown, assuming MS doesn't support A5/%u\n", a5);
140 return false;
141 } else {
142 if (cm->classmark3[0] & (1 << (a5-4)))
143 return true;
144 else
145 return false;
146 }
147 break;
148 default:
149 return false;
150 }
151}
152
Harald Welte31c00f72011-03-03 23:29:05 +0100153void cc_tx_to_mncc(struct gsm_network *net, struct msgb *msg)
154{
155 net->mncc_recv(net, msg);
156}
157
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800158static int gsm48_conn_sendmsg(struct msgb *msg, struct gsm_subscriber_connection *conn,
159 struct gsm_trans *trans)
160{
161 struct gsm48_hdr *gh = (struct gsm48_hdr *) msg->data;
162
163 /* if we get passed a transaction reference, do some common
164 * work that the caller no longer has to do */
165 if (trans) {
166 gh->proto_discr = trans->protocol | (trans->transaction_id << 4);
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800167 }
168
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200169 return msc_tx_dtap(conn, msg);
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800170}
Sylvain Munaut30a15382009-12-24 00:27:26 +0100171
Holger Hans Peter Freythere0009f12010-08-12 01:41:57 +0800172int gsm48_cc_tx_notify_ss(struct gsm_trans *trans, const char *message)
173{
174 struct gsm48_hdr *gh;
175 struct msgb *ss_notify;
176
177 ss_notify = gsm0480_create_notifySS(message);
178 if (!ss_notify)
179 return -1;
180
181 gsm0480_wrap_invoke(ss_notify, GSM0480_OP_CODE_NOTIFY_SS, 0);
182 uint8_t *data = msgb_push(ss_notify, 1);
183 data[0] = ss_notify->len - 1;
184 gh = (struct gsm48_hdr *) msgb_push(ss_notify, sizeof(*gh));
185 gh->msg_type = GSM48_MT_CC_FACILITY;
186 return gsm48_conn_sendmsg(ss_notify, trans->conn, trans);
187}
188
Harald Welte2483f1b2016-06-19 18:06:02 +0200189/* clear all transactions globally; used in case of MNCC socket disconnect */
Harald Welte371efe52010-12-22 23:17:50 +0100190void gsm0408_clear_all_trans(struct gsm_network *net, int protocol)
191{
192 struct gsm_trans *trans, *temp;
193
194 LOGP(DCC, LOGL_NOTICE, "Clearing all currently active transactions!!!\n");
195
196 llist_for_each_entry_safe(trans, temp, &net->trans_list, entry) {
Harald Welteeb76c7a2010-12-23 02:47:53 +0100197 if (trans->protocol == protocol) {
198 trans->callref = 0;
Harald Welte371efe52010-12-22 23:17:50 +0100199 trans_free(trans);
Harald Welteeb76c7a2010-12-23 02:47:53 +0100200 }
Harald Welte371efe52010-12-22 23:17:50 +0100201 }
202}
203
Holger Freyther429e7762008-12-30 13:28:30 +0000204/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200205static int gsm0408_loc_upd_rej(struct gsm_subscriber_connection *conn, uint8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000206{
Holger Hans Peter Freyther230a4d82010-06-15 19:40:05 +0800207 struct msgb *msg;
208
Holger Hans Peter Freyther230a4d82010-06-15 19:40:05 +0800209 msg = gsm48_create_loc_upd_rej(cause);
210 if (!msg) {
211 LOGP(DMM, LOGL_ERROR, "Failed to create msg for LOCATION UPDATING REJECT.\n");
212 return -1;
213 }
Alexander Couzensfbd96f52016-08-29 18:40:02 +0200214
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200215 LOGP(DMM, LOGL_INFO, "Subscriber %s: LOCATION UPDATING REJECT\n",
216 vlr_subscr_name(conn->vsub));
Harald Welte24ff6ee2009-12-22 00:41:05 +0100217
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800218 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000219}
220
221/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Harald Welte2483f1b2016-06-19 18:06:02 +0200222static int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn,
223 uint32_t send_tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000224{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100225 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 LOC UPD ACC");
Harald Welte52b1f982008-12-23 20:25:15 +0000226 struct gsm48_hdr *gh;
227 struct gsm48_loc_area_id *lai;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200228 uint8_t *mid;
Neels Hofmeyr379d5792018-02-22 04:04:54 +0100229 struct osmo_location_area_id laid = {
230 .plmn = conn->network->plmn,
231 .lac = conn->lac,
232 };
Alexander Couzensfbd96f52016-08-29 18:40:02 +0200233
Harald Welte52b1f982008-12-23 20:25:15 +0000234 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
235 gh->proto_discr = GSM48_PDISC_MM;
236 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
237
238 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Neels Hofmeyr379d5792018-02-22 04:04:54 +0100239 gsm48_generate_lai2(lai, &laid);
Harald Welte52b1f982008-12-23 20:25:15 +0000240
Harald Welte2483f1b2016-06-19 18:06:02 +0200241 if (send_tmsi == GSM_RESERVED_TMSI) {
242 /* we did not allocate a TMSI to the MS, so we need to
243 * include the IMSI in order for the MS to delete any
244 * old TMSI that might still be allocated */
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200245 uint8_t mi[10];
246 int len;
Harald Welte2483f1b2016-06-19 18:06:02 +0200247 len = gsm48_generate_mid_from_imsi(mi, conn->vsub->imsi);
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200248 mid = msgb_put(msg, len);
249 memcpy(mid, mi, len);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200250 DEBUGP(DMM, "-> %s LOCATION UPDATE ACCEPT\n",
251 vlr_subscr_name(conn->vsub));
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200252 } else {
Harald Welte2483f1b2016-06-19 18:06:02 +0200253 /* Include the TMSI, which means that the MS will send a
254 * TMSI REALLOCATION COMPLETE, and we should wait for
255 * that until T3250 expiration */
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200256 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
Harald Welte2483f1b2016-06-19 18:06:02 +0200257 gsm48_generate_mid_from_tmsi(mid, send_tmsi);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200258 DEBUGP(DMM, "-> %s LOCATION UPDATE ACCEPT (TMSI = 0x%08x)\n",
259 vlr_subscr_name(conn->vsub),
260 send_tmsi);
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200261 }
Harald Welte2483f1b2016-06-19 18:06:02 +0200262 /* TODO: Follow-on proceed */
263 /* TODO: CTS permission */
264 /* TODO: Equivalent PLMNs */
265 /* TODO: Emergency Number List */
266 /* TODO: Per-MS T3312 */
Harald Welte52b1f982008-12-23 20:25:15 +0000267
Harald Welte52b1f982008-12-23 20:25:15 +0000268
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800269 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000270}
271
Harald Weltebf5e8df2009-02-03 12:59:45 +0000272/* Transmit Chapter 9.2.10 Identity Request */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200273static int mm_tx_identity_req(struct gsm_subscriber_connection *conn, uint8_t id_type)
Harald Welte231ad4f2008-12-27 11:15:38 +0000274{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100275 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 ID REQ");
Harald Welte231ad4f2008-12-27 11:15:38 +0000276 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000277
Harald Welte231ad4f2008-12-27 11:15:38 +0000278 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
279 gh->proto_discr = GSM48_PDISC_MM;
280 gh->msg_type = GSM48_MT_MM_ID_REQ;
281 gh->data[0] = id_type;
282
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800283 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte231ad4f2008-12-27 11:15:38 +0000284}
285
Harald Weltebf5e8df2009-02-03 12:59:45 +0000286/* Parse Chapter 9.2.11 Identity Response */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800287static int mm_rx_id_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte231ad4f2008-12-27 11:15:38 +0000288{
289 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200290 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200291 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000292
Harald Welte2483f1b2016-06-19 18:06:02 +0200293 if (!conn->vsub) {
294 LOGP(DMM, LOGL_ERROR,
295 "Rx MM Identity Response: invalid: no subscriber\n");
296 return -EINVAL;
297 }
298
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200299 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welteb9845f92015-08-16 18:07:48 +0200300 DEBUGP(DMM, "IDENTITY RESPONSE: MI(%s)=%s\n",
301 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte231ad4f2008-12-27 11:15:38 +0000302
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200303 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, gh->data);
Harald Welte7659de12009-12-13 12:39:18 +0100304
Harald Welte2483f1b2016-06-19 18:06:02 +0200305 return vlr_subscr_rx_id_resp(conn->vsub, gh->data+1, gh->data[0]);
Harald Welte231ad4f2008-12-27 11:15:38 +0000306}
307
Harald Welte2483f1b2016-06-19 18:06:02 +0200308/* FIXME: to libosmogsm */
Harald Welteb9845f92015-08-16 18:07:48 +0200309static const struct value_string lupd_names[] = {
310 { GSM48_LUPD_NORMAL, "NORMAL" },
311 { GSM48_LUPD_PERIODIC, "PERIODIC" },
312 { GSM48_LUPD_IMSI_ATT, "IMSI ATTACH" },
313 { 0, NULL }
314};
Harald Welte2a139372009-02-22 21:14:55 +0000315
Harald Welte2483f1b2016-06-19 18:06:02 +0200316/* Chapter 9.2.15: Receive Location Updating Request.
317 * Keep this function non-static for direct invocation by unit tests. */
318int mm_rx_loc_upd_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000319{
Harald Welte2483f1b2016-06-19 18:06:02 +0200320 static const enum subscr_conn_from conn_from_lu = SUBSCR_CONN_FROM_LU;
321 struct gsm_network *net = conn->network;
Harald Welte8470bf22008-12-25 23:28:35 +0000322 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000323 struct gsm48_loc_upd_req *lu;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200324 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200325 char mi_string[GSM48_MI_SIZE];
Harald Welte2483f1b2016-06-19 18:06:02 +0200326 enum vlr_lu_type vlr_lu_type = VLR_LU_TYPE_REGULAR;
Harald Welte2483f1b2016-06-19 18:06:02 +0200327 uint32_t tmsi;
328 char *imsi;
329 struct osmo_location_area_id old_lai, new_lai;
330 struct osmo_fsm_inst *lu_fsm;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200331 bool is_utran;
Harald Welte2483f1b2016-06-19 18:06:02 +0200332 int rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000333
Harald Welte8470bf22008-12-25 23:28:35 +0000334 lu = (struct gsm48_loc_upd_req *) gh->data;
335
336 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +0000337
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200338 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Harald Weltefc977a82008-12-27 10:19:37 +0000339
Harald Welte2483f1b2016-06-19 18:06:02 +0200340 rc = msc_create_conn_fsm(conn, mi_string);
341 if (rc)
342 /* logging already happened in msc_create_conn_fsm() */
343 return rc;
344
345 conn->classmark.classmark1 = lu->classmark1;
346 conn->classmark.classmark1_set = true;
347
348 DEBUGP(DMM, "LOCATION UPDATING REQUEST: MI(%s)=%s type=%s\n",
349 gsm48_mi_type_name(mi_type), mi_string,
350 get_value_string(lupd_names, lu->type));
Holger Freyther73487a22008-12-31 18:53:57 +0000351
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200352 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, &lu->mi_len);
Harald Welte7659de12009-12-13 12:39:18 +0100353
Harald Welte24ff6ee2009-12-22 00:41:05 +0100354 switch (lu->type) {
355 case GSM48_LUPD_NORMAL:
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200356 rate_ctr_inc(&conn->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_NORMAL]);
Harald Welte2483f1b2016-06-19 18:06:02 +0200357 vlr_lu_type = VLR_LU_TYPE_REGULAR;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100358 break;
359 case GSM48_LUPD_IMSI_ATT:
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200360 rate_ctr_inc(&conn->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_ATTACH]);
Harald Welte2483f1b2016-06-19 18:06:02 +0200361 vlr_lu_type = VLR_LU_TYPE_IMSI_ATTACH;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100362 break;
363 case GSM48_LUPD_PERIODIC:
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200364 rate_ctr_inc(&conn->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_PERIODIC]);
Harald Welte2483f1b2016-06-19 18:06:02 +0200365 vlr_lu_type = VLR_LU_TYPE_PERIODIC;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100366 break;
367 }
368
Harald Welte2483f1b2016-06-19 18:06:02 +0200369 /* TODO: 10.5.1.6 MS Classmark for UMTS / Classmark 2 */
370 /* TODO: 10.5.3.14 Aditional update parameters (CS fallback calls) */
371 /* TODO: 10.5.7.8 Device properties */
372 /* TODO: 10.5.1.15 MS network feature support */
Sylvain Munaut2030a2a2010-06-10 13:36:59 +0200373
Harald Welte52b1f982008-12-23 20:25:15 +0000374 switch (mi_type) {
375 case GSM_MI_TYPE_IMSI:
Harald Welte2483f1b2016-06-19 18:06:02 +0200376 tmsi = GSM_RESERVED_TMSI;
377 imsi = mi_string;
Harald Welte4b634542008-12-27 01:55:51 +0000378 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000379 case GSM_MI_TYPE_TMSI:
Harald Welte2483f1b2016-06-19 18:06:02 +0200380 tmsi = tmsi_from_string(mi_string);
381 imsi = NULL;
Harald Welte52b1f982008-12-23 20:25:15 +0000382 break;
Alexander Couzensfbd96f52016-08-29 18:40:02 +0200383 default:
Harald Weltea0368542009-06-27 02:58:43 +0200384 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte2483f1b2016-06-19 18:06:02 +0200385 tmsi = GSM_RESERVED_TMSI;
386 imsi = NULL;
Harald Welte52b1f982008-12-23 20:25:15 +0000387 break;
388 }
389
Neels Hofmeyr379d5792018-02-22 04:04:54 +0100390 gsm48_decode_lai2(&lu->lai, &old_lai);
391 new_lai.plmn = conn->network->plmn;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200392 new_lai.lac = conn->lac;
Harald Welte2483f1b2016-06-19 18:06:02 +0200393 DEBUGP(DMM, "LU/new-LAC: %u/%u\n", old_lai.lac, new_lai.lac);
Harald Welte24516ea2009-07-04 10:18:00 +0200394
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200395 is_utran = (conn->via_ran == RAN_UTRAN_IU);
Neels Hofmeyr4d3a66b2018-03-31 18:45:59 +0200396 lu_fsm = vlr_loc_update(conn->fi,
Harald Welte2483f1b2016-06-19 18:06:02 +0200397 SUBSCR_CONN_E_ACCEPTED,
398 SUBSCR_CONN_E_CN_CLOSE,
399 (void*)&conn_from_lu,
400 net->vlr, conn, vlr_lu_type, tmsi, imsi,
401 &old_lai, &new_lai,
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200402 is_utran || conn->network->authentication_required,
Harald Welte7b222aa2017-12-23 19:30:32 +0100403 is_utran || conn->network->a5_encryption_mask > 0x01,
Harald Welte2483f1b2016-06-19 18:06:02 +0200404 classmark_is_r99(&conn->classmark),
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200405 is_utran,
Harald Welte2483f1b2016-06-19 18:06:02 +0200406 net->vlr->cfg.assign_tmsi);
407 if (!lu_fsm) {
408 DEBUGP(DRR, "%s: Can't start LU FSM\n", mi_string);
409 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800410 }
411
Harald Welte2483f1b2016-06-19 18:06:02 +0200412 /* From vlr_loc_update() we expect an implicit dispatch of
413 * VLR_ULA_E_UPDATE_LA, and thus we expect msc_vlr_subscr_assoc() to
414 * already have been called and completed. Has an error occured? */
Harald Welte255539c2008-12-28 02:26:27 +0000415
Harald Welte2483f1b2016-06-19 18:06:02 +0200416 if (!conn->vsub || conn->vsub->lu_fsm != lu_fsm) {
417 LOGP(DRR, LOGL_ERROR,
418 "%s: internal error during Location Updating attempt\n",
419 mi_string);
420 return -EIO;
421 }
422
423 return 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000424}
425
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100426/* Turn int into semi-octet representation: 98 => 0x89 */
Harald Welte2483f1b2016-06-19 18:06:02 +0200427/* FIXME: libosmocore/libosmogsm */
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100428static uint8_t bcdify(uint8_t value)
Harald Welte4bfdfe72009-06-10 23:11:52 +0800429{
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100430 uint8_t ret;
431
432 ret = value / 10;
433 ret |= (value % 10) << 4;
434
435 return ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800436}
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100437
Harald Welte4bfdfe72009-06-10 23:11:52 +0800438
Harald Weltedb253af2008-12-30 17:56:55 +0000439/* Section 9.2.15a */
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800440int gsm48_tx_mm_info(struct gsm_subscriber_connection *conn)
Harald Weltedb253af2008-12-30 17:56:55 +0000441{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100442 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 MM INF");
Harald Weltedb253af2008-12-30 17:56:55 +0000443 struct gsm48_hdr *gh;
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200444 struct gsm_network *net = conn->network;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200445 uint8_t *ptr8;
Daniel Willmanneea93372009-08-13 03:42:07 +0200446 int name_len, name_pad;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100447
Harald Welte4bfdfe72009-06-10 23:11:52 +0800448 time_t cur_t;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100449 struct tm* gmt_time;
450 struct tm* local_time;
451 int tzunits;
Jacob Erlbeckf46e2262014-01-07 15:05:16 +0100452 int dst = 0;
Harald Weltedb253af2008-12-30 17:56:55 +0000453
Harald Weltedb253af2008-12-30 17:56:55 +0000454 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
455 gh->proto_discr = GSM48_PDISC_MM;
456 gh->msg_type = GSM48_MT_MM_INFO;
457
458 if (net->name_long) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200459#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000460 name_len = strlen(net->name_long);
461 /* 10.5.3.5a */
462 ptr8 = msgb_put(msg, 3);
463 ptr8[0] = GSM48_IE_NAME_LONG;
464 ptr8[1] = name_len*2 +1;
465 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
466
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200467 ptr16 = (uint16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000468 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000469 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +0000470
471 /* FIXME: Use Cell Broadcast, not UCS-2, since
472 * UCS-2 is only supported by later revisions of the spec */
Daniel Willmanneea93372009-08-13 03:42:07 +0200473#endif
474 name_len = (strlen(net->name_long)*7)/8;
475 name_pad = (8 - strlen(net->name_long)*7)%8;
476 if (name_pad > 0)
477 name_len++;
478 /* 10.5.3.5a */
479 ptr8 = msgb_put(msg, 3);
480 ptr8[0] = GSM48_IE_NAME_LONG;
481 ptr8[1] = name_len +1;
482 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
483
484 ptr8 = msgb_put(msg, name_len);
Harald Welte5468f762015-01-01 12:41:17 +0100485 gsm_7bit_encode_n(ptr8, name_len, net->name_long, NULL);
Daniel Willmanneea93372009-08-13 03:42:07 +0200486
Harald Weltedb253af2008-12-30 17:56:55 +0000487 }
488
489 if (net->name_short) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200490#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000491 name_len = strlen(net->name_short);
492 /* 10.5.3.5a */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200493 ptr8 = (uint8_t *) msgb_put(msg, 3);
Harald Welte7543eb72009-07-19 17:51:36 +0200494 ptr8[0] = GSM48_IE_NAME_SHORT;
Harald Weltedb253af2008-12-30 17:56:55 +0000495 ptr8[1] = name_len*2 + 1;
496 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
497
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200498 ptr16 = (uint16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000499 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000500 ptr16[i] = htons(net->name_short[i]);
Daniel Willmanneea93372009-08-13 03:42:07 +0200501#endif
502 name_len = (strlen(net->name_short)*7)/8;
503 name_pad = (8 - strlen(net->name_short)*7)%8;
504 if (name_pad > 0)
505 name_len++;
506 /* 10.5.3.5a */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200507 ptr8 = (uint8_t *) msgb_put(msg, 3);
Daniel Willmanneea93372009-08-13 03:42:07 +0200508 ptr8[0] = GSM48_IE_NAME_SHORT;
509 ptr8[1] = name_len +1;
510 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
511
512 ptr8 = msgb_put(msg, name_len);
Harald Welte5468f762015-01-01 12:41:17 +0100513 gsm_7bit_encode_n(ptr8, name_len, net->name_short, NULL);
Daniel Willmanneea93372009-08-13 03:42:07 +0200514
Harald Weltedb253af2008-12-30 17:56:55 +0000515 }
516
Harald Weltedb253af2008-12-30 17:56:55 +0000517 /* Section 10.5.3.9 */
518 cur_t = time(NULL);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100519 gmt_time = gmtime(&cur_t);
520
Harald Weltedb253af2008-12-30 17:56:55 +0000521 ptr8 = msgb_put(msg, 8);
522 ptr8[0] = GSM48_IE_NET_TIME_TZ;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100523 ptr8[1] = bcdify(gmt_time->tm_year % 100);
524 ptr8[2] = bcdify(gmt_time->tm_mon + 1);
525 ptr8[3] = bcdify(gmt_time->tm_mday);
526 ptr8[4] = bcdify(gmt_time->tm_hour);
527 ptr8[5] = bcdify(gmt_time->tm_min);
528 ptr8[6] = bcdify(gmt_time->tm_sec);
529
Neels Hofmeyr73983952016-05-10 13:29:33 +0200530 if (net->tz.override) {
Harald Welte45f91712012-07-08 16:48:11 +0200531 /* Convert tz.hr and tz.mn to units */
Neels Hofmeyr73983952016-05-10 13:29:33 +0200532 if (net->tz.hr < 0) {
533 tzunits = ((net->tz.hr/-1)*4);
534 tzunits = tzunits + (net->tz.mn/15);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100535 ptr8[7] = bcdify(tzunits);
536 /* Set negative time */
537 ptr8[7] |= 0x08;
538 }
539 else {
Neels Hofmeyr73983952016-05-10 13:29:33 +0200540 tzunits = net->tz.hr*4;
541 tzunits = tzunits + (net->tz.mn/15);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100542 ptr8[7] = bcdify(tzunits);
543 }
Jacob Erlbeckf46e2262014-01-07 15:05:16 +0100544 /* Convert DST value */
Neels Hofmeyr73983952016-05-10 13:29:33 +0200545 if (net->tz.dst >= 0 && net->tz.dst <= 2)
546 dst = net->tz.dst;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100547 }
548 else {
549 /* Need to get GSM offset and convert into 15 min units */
550 /* This probably breaks if gmtoff returns a value not evenly divisible by 15? */
Harald Welte9c3dc902012-04-08 16:59:24 +0200551#ifdef HAVE_TM_GMTOFF_IN_TM
Benoit Bolsee38bb3442017-07-05 12:57:16 +0200552 local_time = localtime(&cur_t);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100553 tzunits = (local_time->tm_gmtoff/60)/15;
Harald Welte9c3dc902012-04-08 16:59:24 +0200554#else
Benoit Bolsee38bb3442017-07-05 12:57:16 +0200555 /* find timezone offset */
556 time_t utc;
557 double offsetFromUTC;
558 utc = mktime(gmt_time);
559 local_time = localtime(&cur_t);
560 offsetFromUTC = difftime(cur_t, utc);
561 if (local_time->tm_isdst)
562 offsetFromUTC += 3600.0;
563 tzunits = ((int)offsetFromUTC) / 60 / 15;
Harald Welte9c3dc902012-04-08 16:59:24 +0200564#endif
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100565 if (tzunits < 0) {
566 tzunits = tzunits/-1;
567 ptr8[7] = bcdify(tzunits);
568 /* Flip it to negative */
569 ptr8[7] |= 0x08;
570 }
571 else
572 ptr8[7] = bcdify(tzunits);
Jacob Erlbeckf46e2262014-01-07 15:05:16 +0100573
574 /* Does not support DST +2 */
575 if (local_time->tm_isdst)
576 dst = 1;
577 }
578
579 if (dst) {
580 ptr8 = msgb_put(msg, 3);
581 ptr8[0] = GSM48_IE_NET_DST;
582 ptr8[1] = 1;
583 ptr8[2] = dst;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100584 }
Harald Weltedb253af2008-12-30 17:56:55 +0000585
Daniel Willmanneea93372009-08-13 03:42:07 +0200586 DEBUGP(DMM, "-> MM INFO\n");
587
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800588 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Weltedb253af2008-12-30 17:56:55 +0000589}
590
Neels Hofmeyrd6755152017-01-27 00:25:47 +0100591/*! Send an Authentication Request to MS on the given subscriber connection
592 * according to 3GPP/ETSI TS 24.008, Section 9.2.2.
593 * \param[in] conn Subscriber connection to send on.
594 * \param[in] rand Random challenge token to send, must be 16 bytes long.
595 * \param[in] autn r99: In case of UMTS mutual authentication, AUTN token to
596 * send; must be 16 bytes long, or pass NULL for plain GSM auth.
597 * \param[in] key_seq auth tuple's sequence number.
598 */
599int gsm48_tx_mm_auth_req(struct gsm_subscriber_connection *conn, uint8_t *rand,
600 uint8_t *autn, int key_seq)
Harald Welte7984d5c2009-08-12 22:56:50 +0200601{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100602 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 AUTH REQ");
Harald Welte7984d5c2009-08-12 22:56:50 +0200603 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Sylvain Munaut849f5542009-09-27 11:10:17 +0200604 struct gsm48_auth_req *ar = (struct gsm48_auth_req *) msgb_put(msg, sizeof(*ar));
Harald Welte7984d5c2009-08-12 22:56:50 +0200605
Neels Hofmeyr3355fd62017-02-14 17:42:25 +0100606 DEBUGP(DMM, "-> AUTH REQ (rand = %s)\n", osmo_hexdump_nospc(rand, 16));
Neels Hofmeyrd6755152017-01-27 00:25:47 +0100607 if (autn)
Neels Hofmeyr3355fd62017-02-14 17:42:25 +0100608 DEBUGP(DMM, " AUTH REQ (autn = %s)\n", osmo_hexdump_nospc(autn, 16));
Harald Welte7984d5c2009-08-12 22:56:50 +0200609
Harald Welte7984d5c2009-08-12 22:56:50 +0200610 gh->proto_discr = GSM48_PDISC_MM;
611 gh->msg_type = GSM48_MT_MM_AUTH_REQ;
612
Sylvain Munautbd55a6d2009-12-24 00:23:46 +0100613 ar->key_seq = key_seq;
Sylvain Munaut849f5542009-09-27 11:10:17 +0200614
Harald Welte7984d5c2009-08-12 22:56:50 +0200615 /* 16 bytes RAND parameters */
Neels Hofmeyrd6755152017-01-27 00:25:47 +0100616 osmo_static_assert(sizeof(ar->rand) == 16, sizeof_auth_req_r99_rand);
Harald Welte7984d5c2009-08-12 22:56:50 +0200617 if (rand)
Sylvain Munaut849f5542009-09-27 11:10:17 +0200618 memcpy(ar->rand, rand, 16);
Harald Welte7984d5c2009-08-12 22:56:50 +0200619
Neels Hofmeyrd6755152017-01-27 00:25:47 +0100620
621 /* 16 bytes AUTN */
622 if (autn)
623 msgb_tlv_put(msg, GSM48_IE_AUTN, 16, autn);
624
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800625 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte7984d5c2009-08-12 22:56:50 +0200626}
627
628/* Section 9.2.1 */
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800629int gsm48_tx_mm_auth_rej(struct gsm_subscriber_connection *conn)
Harald Welte7984d5c2009-08-12 22:56:50 +0200630{
631 DEBUGP(DMM, "-> AUTH REJECT\n");
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800632 return gsm48_tx_simple(conn, GSM48_PDISC_MM, GSM48_MT_MM_AUTH_REJ);
Harald Welte7984d5c2009-08-12 22:56:50 +0200633}
634
Harald Welte2483f1b2016-06-19 18:06:02 +0200635static int msc_vlr_tx_cm_serv_acc(void *msc_conn_ref);
636static int msc_vlr_tx_cm_serv_rej(void *msc_conn_ref, enum vlr_proc_arq_result result);
637
638static int cm_serv_reuse_conn(struct gsm_subscriber_connection *conn, const uint8_t *mi_lv)
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100639{
Harald Welte2483f1b2016-06-19 18:06:02 +0200640 uint8_t mi_type;
641 char mi_string[GSM48_MI_SIZE];
642 uint32_t tmsi;
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100643
Harald Welte2483f1b2016-06-19 18:06:02 +0200644 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi_lv+1, mi_lv[0]);
645 mi_type = mi_lv[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100646
Harald Welte2483f1b2016-06-19 18:06:02 +0200647 switch (mi_type) {
648 case GSM_MI_TYPE_IMSI:
649 if (vlr_subscr_matches_imsi(conn->vsub, mi_string))
650 goto accept_reuse;
651 break;
652 case GSM_MI_TYPE_TMSI:
653 tmsi = osmo_load32be(mi_lv+2);
654 if (vlr_subscr_matches_tmsi(conn->vsub, tmsi))
655 goto accept_reuse;
656 break;
657 case GSM_MI_TYPE_IMEI:
658 if (vlr_subscr_matches_imei(conn->vsub, mi_string))
659 goto accept_reuse;
660 break;
661 default:
662 break;
663 }
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100664
Harald Welte2483f1b2016-06-19 18:06:02 +0200665 LOGP(DMM, LOGL_ERROR, "%s: CM Service Request with mismatching mobile identity: %s %s\n",
666 vlr_subscr_name(conn->vsub), gsm48_mi_type_name(mi_type), mi_string);
667 msc_vlr_tx_cm_serv_rej(conn, VLR_PR_ARQ_RES_ILLEGAL_SUBSCR);
668 return -EINVAL;
Sylvain Munautba87f452009-12-24 00:28:46 +0100669
Harald Welte2483f1b2016-06-19 18:06:02 +0200670accept_reuse:
671 DEBUGP(DMM, "%s: re-using already accepted connection\n",
672 vlr_subscr_name(conn->vsub));
673 conn->received_cm_service_request = true;
674 return conn->network->vlr->ops.tx_cm_serv_acc(conn);
Sylvain Munautba87f452009-12-24 00:28:46 +0100675}
676
Harald Welte4ed0e922009-01-10 03:17:30 +0000677/*
678 * Handle CM Service Requests
679 * a) Verify that the packet is long enough to contain the information
680 * we require otherwsie reject with INCORRECT_MESSAGE
681 * b) Try to parse the TMSI. If we do not have one reject
682 * c) Check that we know the subscriber with the TMSI otherwise reject
683 * with a HLR cause
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200684 * d) Set the subscriber on the conn and accept
Harald Welte2483f1b2016-06-19 18:06:02 +0200685 *
686 * Keep this function non-static for direct invocation by unit tests.
Harald Welte4ed0e922009-01-10 03:17:30 +0000687 */
Harald Welte2483f1b2016-06-19 18:06:02 +0200688int gsm48_rx_mm_serv_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4b634542008-12-27 01:55:51 +0000689{
Harald Welte2483f1b2016-06-19 18:06:02 +0200690 static const enum subscr_conn_from conn_from_cm_service_req =
691 SUBSCR_CONN_FROM_CM_SERVICE_REQ;
692 struct gsm_network *net = conn->network;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200693 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200694 char mi_string[GSM48_MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +0000695
Harald Welteba4cf162009-01-10 01:49:35 +0000696 struct gsm48_hdr *gh = msgb_l3(msg);
697 struct gsm48_service_request *req =
698 (struct gsm48_service_request *)gh->data;
Holger Hans Peter Freyther5d658062010-05-14 08:02:08 +0800699 /* unfortunately in Phase1 the classmark2 length is variable */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200700 uint8_t classmark2_len = gh->data[1];
701 uint8_t *classmark2 = gh->data+2;
702 uint8_t mi_len = *(classmark2 + classmark2_len);
703 uint8_t *mi = (classmark2 + classmark2_len + 1);
Harald Welte2483f1b2016-06-19 18:06:02 +0200704 struct osmo_location_area_id lai;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200705 bool is_utran;
Harald Welte2483f1b2016-06-19 18:06:02 +0200706 int rc;
707
Neels Hofmeyr379d5792018-02-22 04:04:54 +0100708 lai.plmn = conn->network->plmn;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200709 lai.lac = conn->lac;
Harald Welteba4cf162009-01-10 01:49:35 +0000710
Harald Weltec9e02182009-05-01 19:07:53 +0000711 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
Harald Welteba4cf162009-01-10 01:49:35 +0000712 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
Harald Weltec9e02182009-05-01 19:07:53 +0000713 DEBUGPC(DMM, "wrong sized message\n");
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200714 return msc_gsm48_tx_mm_serv_rej(conn,
715 GSM48_REJECT_INCORRECT_MESSAGE);
Harald Welteba4cf162009-01-10 01:49:35 +0000716 }
717
718 if (msg->data_len < req->mi_len + 6) {
Harald Weltec9e02182009-05-01 19:07:53 +0000719 DEBUGPC(DMM, "does not fit in packet\n");
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200720 return msc_gsm48_tx_mm_serv_rej(conn,
721 GSM48_REJECT_INCORRECT_MESSAGE);
Harald Welteba4cf162009-01-10 01:49:35 +0000722 }
723
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200724 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
Harald Weltec9e02182009-05-01 19:07:53 +0000725 mi_type = mi[0] & GSM_MI_TYPE_MASK;
Harald Welte3995d2e2018-01-24 11:23:54 +0100726 DEBUGPC(DMM, "serv_type=0x%02x MI(%s)=%s\n",
727 req->cm_service_type, gsm48_mi_type_name(mi_type), mi_string);
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200728
Harald Welte3995d2e2018-01-24 11:23:54 +0100729 switch (mi_type) {
730 case GSM_MI_TYPE_IMSI:
731 case GSM_MI_TYPE_TMSI:
732 /* continue below */
733 break;
734 case GSM_MI_TYPE_IMEI:
735 if (req->cm_service_type == GSM48_CMSERV_EMERGENCY) {
736 /* We don't do emergency calls by IMEI */
737 LOGP(DMM, LOGL_NOTICE, "<- CM SERVICE REQUEST(IMEI=%s) rejected\n", mi_string);
738 return msc_gsm48_tx_mm_serv_rej(conn, GSM48_REJECT_IMEI_NOT_ACCEPTED);
739 }
740 /* fall-through for non-emergency setup */
741 default:
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200742 DEBUGPC(DMM, "mi_type is not expected: %d\n", mi_type);
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200743 return msc_gsm48_tx_mm_serv_rej(conn,
744 GSM48_REJECT_INCORRECT_MESSAGE);
Harald Welteba4cf162009-01-10 01:49:35 +0000745 }
746
Harald Welte37382ec2018-01-24 12:49:34 +0100747 switch (req->cm_service_type) {
748 case GSM48_CMSERV_MO_CALL_PACKET:
749 case GSM48_CMSERV_EMERGENCY:
750 case GSM48_CMSERV_SMS:
751 case GSM48_CMSERV_SUP_SERV:
752 /* continue below */
753 break;
754 default:
755 return msc_gsm48_tx_mm_serv_rej(conn, GSM48_REJECT_SRV_OPT_NOT_SUPPORTED);
756 }
757
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200758 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, (classmark2 + classmark2_len));
Harald Welte2483f1b2016-06-19 18:06:02 +0200759 memcpy(conn->classmark.classmark2, classmark2, classmark2_len);
760 conn->classmark.classmark2_len = classmark2_len;
761
Neels Hofmeyr4d3a66b2018-03-31 18:45:59 +0200762 if (conn->fi) {
Harald Welte2483f1b2016-06-19 18:06:02 +0200763 if (msc_subscr_conn_is_accepted(conn))
764 return cm_serv_reuse_conn(conn, mi-1);
765 LOGP(DMM, LOGL_ERROR, "%s: connection already in use\n",
766 vlr_subscr_name(conn->vsub));
767 msc_vlr_tx_cm_serv_rej(conn, VLR_PR_ARQ_RES_UNKNOWN_ERROR);
768 return -EINVAL;
769 }
770
771 rc = msc_create_conn_fsm(conn, mi_string);
772 if (rc) {
773 msc_vlr_tx_cm_serv_rej(conn, VLR_PR_ARQ_RES_UNKNOWN_ERROR);
774 /* logging already happened in msc_create_conn_fsm() */
775 return rc;
776 }
Harald Welte7659de12009-12-13 12:39:18 +0100777
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200778 is_utran = (conn->via_ran == RAN_UTRAN_IU);
Neels Hofmeyr4d3a66b2018-03-31 18:45:59 +0200779 vlr_proc_acc_req(conn->fi,
Harald Welte2483f1b2016-06-19 18:06:02 +0200780 SUBSCR_CONN_E_ACCEPTED,
781 SUBSCR_CONN_E_CN_CLOSE,
782 (void*)&conn_from_cm_service_req,
783 net->vlr, conn,
784 VLR_PR_ARQ_T_CM_SERV_REQ, mi-1, &lai,
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200785 is_utran || conn->network->authentication_required,
Harald Welte7b222aa2017-12-23 19:30:32 +0100786 is_utran || conn->network->a5_encryption_mask > 0x01,
Harald Welte2483f1b2016-06-19 18:06:02 +0200787 classmark_is_r99(&conn->classmark),
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200788 is_utran);
Holger Freythereb443982009-06-04 13:58:42 +0000789
Harald Welte2483f1b2016-06-19 18:06:02 +0200790 return 0;
Harald Welte4b634542008-12-27 01:55:51 +0000791}
792
Harald Welte49f8fcb2018-01-24 21:40:19 +0100793/* Receive a CM Re-establish Request */
794static int gsm48_rx_cm_reest_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
795{
796 uint8_t mi_type;
797 char mi_string[GSM48_MI_SIZE];
798 struct gsm48_hdr *gh = msgb_l3(msg);
799
800 uint8_t classmark2_len = gh->data[1];
801 uint8_t *classmark2 = gh->data+2;
802 uint8_t mi_len = *(classmark2 + classmark2_len);
803 uint8_t *mi = (classmark2 + classmark2_len + 1);
804
805 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
806 mi_type = mi[0] & GSM_MI_TYPE_MASK;
807 DEBUGP(DMM, "<- CM RE-ESTABLISH REQUEST MI(%s)=%s\n", gsm48_mi_type_name(mi_type), mi_string);
808
809 /* we don't support CM call re-establishment */
810 return msc_gsm48_tx_mm_serv_rej(conn, GSM48_REJECT_SRV_OPT_NOT_SUPPORTED);
811}
812
Holger Hans Peter Freyther153b13b2012-07-10 08:53:27 +0200813static int gsm48_rx_mm_imsi_detach_ind(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte2a139372009-02-22 21:14:55 +0000814{
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200815 struct gsm_network *network = conn->network;
Harald Welte2a139372009-02-22 21:14:55 +0000816 struct gsm48_hdr *gh = msgb_l3(msg);
817 struct gsm48_imsi_detach_ind *idi =
818 (struct gsm48_imsi_detach_ind *) gh->data;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200819 uint8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200820 char mi_string[GSM48_MI_SIZE];
Harald Welte2483f1b2016-06-19 18:06:02 +0200821 struct vlr_subscr *vsub = NULL;
Harald Welte2a139372009-02-22 21:14:55 +0000822
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200823 gsm48_mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
Harald Welte2483f1b2016-06-19 18:06:02 +0200824 DEBUGP(DMM, "IMSI DETACH INDICATION: MI(%s)=%s\n",
825 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000826
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200827 rate_ctr_inc(&network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_DETACH]);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100828
Harald Welte2a139372009-02-22 21:14:55 +0000829 switch (mi_type) {
830 case GSM_MI_TYPE_TMSI:
Harald Welte2483f1b2016-06-19 18:06:02 +0200831 vsub = vlr_subscr_find_by_tmsi(network->vlr,
832 tmsi_from_string(mi_string));
Harald Welte2a139372009-02-22 21:14:55 +0000833 break;
834 case GSM_MI_TYPE_IMSI:
Harald Welte2483f1b2016-06-19 18:06:02 +0200835 vsub = vlr_subscr_find_by_imsi(network->vlr, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000836 break;
837 case GSM_MI_TYPE_IMEI:
838 case GSM_MI_TYPE_IMEISV:
839 /* no sim card... FIXME: what to do ? */
Harald Welte2483f1b2016-06-19 18:06:02 +0200840 LOGP(DMM, LOGL_ERROR, "MI(%s)=%s: unimplemented mobile identity type\n",
841 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000842 break;
Alexander Couzensfbd96f52016-08-29 18:40:02 +0200843 default:
Harald Welte2483f1b2016-06-19 18:06:02 +0200844 LOGP(DMM, LOGL_ERROR, "MI(%s)=%s: unknown mobile identity type\n",
845 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000846 break;
847 }
848
Harald Welte2483f1b2016-06-19 18:06:02 +0200849 /* TODO? We used to remember the subscriber's classmark1 here and
850 * stored it in the old sqlite db, but now we store it in a conn that
851 * will be discarded anyway: */
852 conn->classmark.classmark1 = idi->classmark1;
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200853
Harald Welte2483f1b2016-06-19 18:06:02 +0200854 if (!vsub) {
855 LOGP(DMM, LOGL_ERROR, "IMSI DETACH for unknown subscriber MI(%s)=%s\n",
856 gsm48_mi_type_name(mi_type), mi_string);
857 } else {
858 LOGP(DMM, LOGL_INFO, "IMSI DETACH for %s\n", vlr_subscr_name(vsub));
Neels Hofmeyrfacd57a2017-12-15 03:48:48 +0100859
860 if (vsub->cs.is_paging)
861 subscr_paging_cancel(vsub, GSM_PAGING_EXPIRED);
862
Harald Welte2483f1b2016-06-19 18:06:02 +0200863 vlr_subscr_rx_imsi_detach(vsub);
864 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_DETACHED, vsub);
865 vlr_subscr_put(vsub);
866 }
Harald Welte2a139372009-02-22 21:14:55 +0000867
Harald Welte2483f1b2016-06-19 18:06:02 +0200868 msc_subscr_conn_close(conn, 0);
Harald Welte2a139372009-02-22 21:14:55 +0000869 return 0;
870}
871
Harald Welted2a7f5a2009-06-05 20:08:20 +0000872static int gsm48_rx_mm_status(struct msgb *msg)
873{
874 struct gsm48_hdr *gh = msgb_l3(msg);
875
876 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
877
878 return 0;
879}
880
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100881static int parse_gsm_auth_resp(uint8_t *res, uint8_t *res_len,
882 struct gsm_subscriber_connection *conn,
883 struct msgb *msg)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100884{
885 struct gsm48_hdr *gh = msgb_l3(msg);
886 struct gsm48_auth_resp *ar = (struct gsm48_auth_resp*) gh->data;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100887
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100888 if (msgb_l3len(msg) < sizeof(*gh) + sizeof(*ar)) {
889 LOGP(DMM, LOGL_ERROR,
890 "%s: MM AUTHENTICATION RESPONSE:"
891 " l3 length invalid: %u\n",
Harald Welte2483f1b2016-06-19 18:06:02 +0200892 vlr_subscr_name(conn->vsub), msgb_l3len(msg));
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100893 return -EINVAL;
894 }
895
896 *res_len = sizeof(ar->sres);
897 memcpy(res, ar->sres, sizeof(ar->sres));
898 return 0;
899}
900
901static int parse_umts_auth_resp(uint8_t *res, uint8_t *res_len,
902 struct gsm_subscriber_connection *conn,
903 struct msgb *msg)
904{
905 struct gsm48_hdr *gh;
906 uint8_t *data;
907 uint8_t iei;
908 uint8_t ie_len;
909 unsigned int data_len;
910
911 /* First parse the GSM part */
912 if (parse_gsm_auth_resp(res, res_len, conn, msg))
913 return -EINVAL;
914 OSMO_ASSERT(*res_len == 4);
915
916 /* Then add the extended res part */
917 gh = msgb_l3(msg);
918 data = gh->data + sizeof(struct gsm48_auth_resp);
919 data_len = msgb_l3len(msg) - (data - (uint8_t*)msgb_l3(msg));
920
921 if (data_len < 3) {
922 LOGP(DMM, LOGL_ERROR,
923 "%s: MM AUTHENTICATION RESPONSE:"
924 " l3 length invalid: %u\n",
Harald Welte2483f1b2016-06-19 18:06:02 +0200925 vlr_subscr_name(conn->vsub), msgb_l3len(msg));
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100926 return -EINVAL;
927 }
928
929 iei = data[0];
930 ie_len = data[1];
931 if (iei != GSM48_IE_AUTH_RES_EXT) {
932 LOGP(DMM, LOGL_ERROR,
933 "%s: MM R99 AUTHENTICATION RESPONSE:"
934 " expected IEI 0x%02x, got 0x%02x\n",
Harald Welte2483f1b2016-06-19 18:06:02 +0200935 vlr_subscr_name(conn->vsub),
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100936 GSM48_IE_AUTH_RES_EXT, iei);
937 return -EINVAL;
938 }
939
940 if (ie_len > 12) {
941 LOGP(DMM, LOGL_ERROR,
942 "%s: MM R99 AUTHENTICATION RESPONSE:"
943 " extended Auth Resp IE 0x%02x is too large: %u bytes\n",
Harald Welte2483f1b2016-06-19 18:06:02 +0200944 vlr_subscr_name(conn->vsub), GSM48_IE_AUTH_RES_EXT, ie_len);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100945 return -EINVAL;
946 }
947
948 *res_len += ie_len;
949 memcpy(res + 4, &data[2], ie_len);
950 return 0;
951}
952
953/* Chapter 9.2.3: Authentication Response */
954static int gsm48_rx_mm_auth_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
955{
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100956 uint8_t res[16];
957 uint8_t res_len;
958 int rc;
Neels Hofmeyr25f69d52018-03-10 03:44:06 +0100959 bool is_umts;
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100960
Harald Welte2483f1b2016-06-19 18:06:02 +0200961 if (!conn->vsub) {
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100962 LOGP(DMM, LOGL_ERROR,
963 "MM AUTHENTICATION RESPONSE: invalid: no subscriber\n");
Harald Welte2483f1b2016-06-19 18:06:02 +0200964 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100965 return -EINVAL;
966 }
967
Neels Hofmeyr25f69d52018-03-10 03:44:06 +0100968 is_umts = (msgb_l3len(msg) > sizeof(struct gsm48_hdr) + sizeof(struct gsm48_auth_resp));
969
970 if (is_umts)
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100971 rc = parse_umts_auth_resp(res, &res_len, conn, msg);
Neels Hofmeyr25f69d52018-03-10 03:44:06 +0100972 else
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100973 rc = parse_gsm_auth_resp(res, &res_len, conn, msg);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100974
975 if (rc) {
Neels Hofmeyr8e0af0b2018-03-10 03:32:18 +0100976 LOGP(DMM, LOGL_ERROR,
977 "%s: MM AUTHENTICATION RESPONSE: invalid: parsing %s AKA Auth Response"
978 " failed with rc=%d; dispatching zero length SRES/RES to trigger failure\n",
Neels Hofmeyr25f69d52018-03-10 03:44:06 +0100979 vlr_subscr_name(conn->vsub), is_umts ? "UMTS" : "GSM", rc);
Neels Hofmeyr8e0af0b2018-03-10 03:32:18 +0100980 memset(res, 0, sizeof(res));
981 res_len = 0;
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100982 }
983
984 DEBUGP(DMM, "%s: MM %s AUTHENTICATION RESPONSE (%s = %s)\n",
Harald Welte2483f1b2016-06-19 18:06:02 +0200985 vlr_subscr_name(conn->vsub),
Neels Hofmeyrd97821f2018-03-10 04:51:39 +0100986 is_umts ? "UMTS" : "GSM", is_umts ? "res" : "sres",
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100987 osmo_hexdump_nospc(res, res_len));
988
Neels Hofmeyr25f69d52018-03-10 03:44:06 +0100989 return vlr_subscr_rx_auth_resp(conn->vsub, classmark_is_r99(&conn->classmark),
Harald Welte2483f1b2016-06-19 18:06:02 +0200990 conn->via_ran == RAN_UTRAN_IU,
991 res, res_len);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100992}
993
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100994static int gsm48_rx_mm_auth_fail(struct gsm_subscriber_connection *conn, struct msgb *msg)
995{
996 struct gsm48_hdr *gh = msgb_l3(msg);
997 uint8_t cause;
998 uint8_t auts_tag;
999 uint8_t auts_len;
1000 uint8_t *auts;
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001001
Harald Welte2483f1b2016-06-19 18:06:02 +02001002 if (!conn->vsub) {
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001003 LOGP(DMM, LOGL_ERROR,
1004 "MM R99 AUTHENTICATION FAILURE: invalid: no subscriber\n");
Harald Welte2483f1b2016-06-19 18:06:02 +02001005 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001006 return -EINVAL;
1007 }
1008
1009 if (msgb_l3len(msg) < sizeof(*gh) + 1) {
1010 LOGP(DMM, LOGL_ERROR,
1011 "%s: MM R99 AUTHENTICATION FAILURE:"
1012 " l3 length invalid: %u\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001013 vlr_subscr_name(conn->vsub), msgb_l3len(msg));
1014 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001015 return -EINVAL;
1016 }
1017
1018 cause = gh->data[0];
1019
1020 if (cause != GSM48_REJECT_SYNCH_FAILURE) {
1021 LOGP(DMM, LOGL_INFO,
1022 "%s: MM R99 AUTHENTICATION FAILURE: cause 0x%0x\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001023 vlr_subscr_name(conn->vsub), cause);
1024 vlr_subscr_rx_auth_fail(conn->vsub, NULL);
1025 return 0;
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001026 }
1027
1028 /* This is a Synch Failure procedure, which should pass an AUTS to
1029 * resynchronize the sequence nr with the HLR. Expecting exactly one
1030 * TLV with 14 bytes of AUTS. */
1031
1032 if (msgb_l3len(msg) < sizeof(*gh) + 1 + 2) {
1033 LOGP(DMM, LOGL_INFO,
1034 "%s: MM R99 AUTHENTICATION FAILURE:"
1035 " invalid Synch Failure: missing AUTS IE\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001036 vlr_subscr_name(conn->vsub));
1037 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001038 return -EINVAL;
1039 }
1040
1041 auts_tag = gh->data[1];
1042 auts_len = gh->data[2];
1043 auts = &gh->data[3];
1044
1045 if (auts_tag != GSM48_IE_AUTS
1046 || auts_len != 14) {
1047 LOGP(DMM, LOGL_INFO,
1048 "%s: MM R99 AUTHENTICATION FAILURE:"
1049 " invalid Synch Failure:"
1050 " expected AUTS IE 0x%02x of 14 bytes,"
1051 " got IE 0x%02x of %u bytes\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001052 vlr_subscr_name(conn->vsub),
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001053 GSM48_IE_AUTS, auts_tag, auts_len);
Harald Welte2483f1b2016-06-19 18:06:02 +02001054 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001055 return -EINVAL;
1056 }
1057
1058 if (msgb_l3len(msg) < sizeof(*gh) + 1 + 2 + auts_len) {
1059 LOGP(DMM, LOGL_INFO,
1060 "%s: MM R99 AUTHENTICATION FAILURE:"
1061 " invalid Synch Failure msg: message truncated (%u)\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001062 vlr_subscr_name(conn->vsub), msgb_l3len(msg));
1063 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001064 return -EINVAL;
1065 }
1066
1067 /* We have an AUTS IE with exactly 14 bytes of AUTS and the msgb is
1068 * large enough. */
1069
1070 DEBUGP(DMM, "%s: MM R99 AUTHENTICATION SYNCH (AUTS = %s)\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001071 vlr_subscr_name(conn->vsub), osmo_hexdump_nospc(auts, 14));
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001072
Harald Welte2483f1b2016-06-19 18:06:02 +02001073 return vlr_subscr_rx_auth_fail(conn->vsub, auts);
1074}
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001075
Harald Welte2483f1b2016-06-19 18:06:02 +02001076static int gsm48_rx_mm_tmsi_reall_compl(struct gsm_subscriber_connection *conn)
1077{
1078 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
1079 vlr_subscr_name(conn->vsub));
1080 if (!conn->vsub) {
1081 LOGP(DMM, LOGL_ERROR,
1082 "Rx MM TMSI Reallocation Complete: invalid: no subscriber\n");
1083 return -EINVAL;
1084 }
1085 return vlr_subscr_rx_tmsi_reall_compl(conn->vsub);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001086}
1087
Harald Weltebf5e8df2009-02-03 12:59:45 +00001088/* Receive a GSM 04.08 Mobility Management (MM) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001089static int gsm0408_rcv_mm(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001090{
1091 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001092 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001093
Neels Hofmeyr531734a2016-03-14 16:13:24 +01001094 switch (gsm48_hdr_msg_type(gh)) {
Harald Welte52b1f982008-12-23 20:25:15 +00001095 case GSM48_MT_MM_LOC_UPD_REQUEST:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001096 rc = mm_rx_loc_upd_req(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001097 break;
1098 case GSM48_MT_MM_ID_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001099 rc = mm_rx_id_resp(conn, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001100 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001101 case GSM48_MT_MM_CM_SERV_REQ:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001102 rc = gsm48_rx_mm_serv_req(conn, msg);
Harald Welte4b634542008-12-27 01:55:51 +00001103 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001104 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +00001105 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001106 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001107 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte2483f1b2016-06-19 18:06:02 +02001108 rc = gsm48_rx_mm_tmsi_reall_compl(conn);
Harald Welte69b2af22009-01-06 19:47:00 +00001109 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001110 case GSM48_MT_MM_IMSI_DETACH_IND:
Holger Hans Peter Freyther153b13b2012-07-10 08:53:27 +02001111 rc = gsm48_rx_mm_imsi_detach_ind(conn, msg);
Harald Welte2a139372009-02-22 21:14:55 +00001112 break;
1113 case GSM48_MT_MM_CM_REEST_REQ:
Harald Welte49f8fcb2018-01-24 21:40:19 +01001114 rc = gsm48_rx_cm_reest_req(conn, msg);
Harald Welte2a139372009-02-22 21:14:55 +00001115 break;
1116 case GSM48_MT_MM_AUTH_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001117 rc = gsm48_rx_mm_auth_resp(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001118 break;
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001119 case GSM48_MT_MM_AUTH_FAIL:
1120 rc = gsm48_rx_mm_auth_fail(conn, msg);
1121 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001122 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01001123 LOGP(DMM, LOGL_NOTICE, "Unknown GSM 04.08 MM msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00001124 gh->msg_type);
1125 break;
1126 }
1127
1128 return rc;
1129}
Harald Weltebf5e8df2009-02-03 12:59:45 +00001130
Harald Welte2483f1b2016-06-19 18:06:02 +02001131static uint8_t *gsm48_cm2_get_mi(uint8_t *classmark2_lv, unsigned int tot_len)
1132{
1133 /* Check the size for the classmark */
1134 if (tot_len < 1 + *classmark2_lv)
1135 return NULL;
1136
1137 uint8_t *mi_lv = classmark2_lv + *classmark2_lv + 1;
1138 if (tot_len < 2 + *classmark2_lv + mi_lv[0])
1139 return NULL;
1140
1141 return mi_lv;
1142}
1143
Harald Welte2d35ae62009-02-06 12:02:13 +00001144/* Receive a PAGING RESPONSE message from the MS */
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001145static int gsm48_rx_rr_pag_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte2d35ae62009-02-06 12:02:13 +00001146{
Harald Welte2483f1b2016-06-19 18:06:02 +02001147 static const enum subscr_conn_from conn_from_paging_resp =
1148 SUBSCR_CONN_FROM_PAGING_RESP;
1149 struct gsm_network *net = conn->network;
Harald Welte2d35ae62009-02-06 12:02:13 +00001150 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001151 struct gsm48_pag_resp *resp;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001152 uint8_t *classmark2_lv = gh->data + 1;
Harald Welte2483f1b2016-06-19 18:06:02 +02001153 uint8_t *mi_lv;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001154 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001155 char mi_string[GSM48_MI_SIZE];
Harald Welte2d35ae62009-02-06 12:02:13 +00001156 int rc = 0;
Harald Welte2483f1b2016-06-19 18:06:02 +02001157 struct osmo_location_area_id lai;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001158 bool is_utran;
Harald Welte2483f1b2016-06-19 18:06:02 +02001159
Neels Hofmeyr379d5792018-02-22 04:04:54 +01001160 lai.plmn = conn->network->plmn;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02001161 lai.lac = conn->lac;
Harald Welte2d35ae62009-02-06 12:02:13 +00001162
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001163 resp = (struct gsm48_pag_resp *) &gh->data[0];
1164 gsm48_paging_extract_mi(resp, msgb_l3len(msg) - sizeof(*gh),
1165 mi_string, &mi_type);
Harald Welteb9845f92015-08-16 18:07:48 +02001166 DEBUGP(DRR, "PAGING RESPONSE: MI(%s)=%s\n",
1167 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte3ac7f102009-08-10 10:12:45 +02001168
Harald Welte2483f1b2016-06-19 18:06:02 +02001169 mi_lv = gsm48_cm2_get_mi(classmark2_lv, msgb_l3len(msg) - sizeof(*gh));
1170 if (!mi_lv) {
1171 /* FIXME */
1172 return -1;
Harald Weltefe18d8f2009-02-22 21:14:24 +00001173 }
Harald Welte2d35ae62009-02-06 12:02:13 +00001174
Harald Welte2483f1b2016-06-19 18:06:02 +02001175 rc = msc_create_conn_fsm(conn, mi_string);
1176 if (rc)
1177 /* logging already happened in msc_create_conn_fsm() */
1178 return rc;
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001179
Harald Welte2483f1b2016-06-19 18:06:02 +02001180 memcpy(conn->classmark.classmark2, classmark2_lv+1, *classmark2_lv);
1181 conn->classmark.classmark2_len = *classmark2_lv;
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001182
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001183 is_utran = (conn->via_ran == RAN_UTRAN_IU);
Neels Hofmeyr4d3a66b2018-03-31 18:45:59 +02001184 vlr_proc_acc_req(conn->fi,
Harald Welte2483f1b2016-06-19 18:06:02 +02001185 SUBSCR_CONN_E_ACCEPTED,
1186 SUBSCR_CONN_E_CN_CLOSE,
1187 (void*)&conn_from_paging_resp,
1188 net->vlr, conn,
1189 VLR_PR_ARQ_T_PAGING_RESP, mi_lv, &lai,
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001190 is_utran || conn->network->authentication_required,
Harald Welte7b222aa2017-12-23 19:30:32 +01001191 is_utran || conn->network->a5_encryption_mask > 0x01,
Harald Welte2483f1b2016-06-19 18:06:02 +02001192 classmark_is_r99(&conn->classmark),
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001193 is_utran);
Holger Freyther053e09d2009-02-14 22:51:06 +00001194
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001195 return 0;
Harald Welte2d35ae62009-02-06 12:02:13 +00001196}
1197
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001198static int gsm48_rx_rr_app_info(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001199{
1200 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001201 uint8_t apdu_id_flags;
1202 uint8_t apdu_len;
1203 uint8_t *apdu_data;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001204
1205 apdu_id_flags = gh->data[0];
1206 apdu_len = gh->data[1];
1207 apdu_data = gh->data+2;
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001208
Max8dc8f232017-02-09 19:13:02 +01001209 DEBUGP(DRR, "RX APPLICATION INFO id/flags=0x%02x apdu_len=%u apdu=%s\n",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02001210 apdu_id_flags, apdu_len, osmo_hexdump(apdu_data, apdu_len));
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001211
Harald Welte2483f1b2016-06-19 18:06:02 +02001212 /* we're not using the app info blob anywhere, so ignore. */
1213#if 0
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001214 return db_apdu_blob_store(conn->subscr, apdu_id_flags, apdu_len, apdu_data);
Harald Welte2483f1b2016-06-19 18:06:02 +02001215#else
1216 return 0;
1217#endif
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001218}
1219
Harald Weltebf5e8df2009-02-03 12:59:45 +00001220/* Receive a GSM 04.08 Radio Resource (RR) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001221static int gsm0408_rcv_rr(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001222{
1223 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001224 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001225
1226 switch (gh->msg_type) {
Harald Welte52b1f982008-12-23 20:25:15 +00001227 case GSM48_MT_RR_PAG_RESP:
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001228 rc = gsm48_rx_rr_pag_resp(conn, msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001229 break;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001230 case GSM48_MT_RR_APP_INFO:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001231 rc = gsm48_rx_rr_app_info(conn, msg);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001232 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001233 default:
Philippd37981e2016-10-10 15:11:41 +02001234 LOGP(DRR, LOGL_NOTICE, "MSC: Unimplemented %s GSM 04.08 RR "
1235 "message\n", gsm48_rr_msg_name(gh->msg_type));
Harald Welte52b1f982008-12-23 20:25:15 +00001236 break;
1237 }
1238
Harald Welte2d35ae62009-02-06 12:02:13 +00001239 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001240}
1241
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001242int gsm48_send_rr_app_info(struct gsm_subscriber_connection *conn, uint8_t apdu_id,
1243 uint8_t apdu_len, const uint8_t *apdu)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001244{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001245 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 APP INF");
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001246 struct gsm48_hdr *gh;
1247
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001248 DEBUGP(DRR, "TX APPLICATION INFO id=0x%02x, len=%u\n",
1249 apdu_id, apdu_len);
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001250
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001251 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2 + apdu_len);
1252 gh->proto_discr = GSM48_PDISC_RR;
1253 gh->msg_type = GSM48_MT_RR_APP_INFO;
1254 gh->data[0] = apdu_id;
1255 gh->data[1] = apdu_len;
1256 memcpy(gh->data+2, apdu, apdu_len);
1257
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +08001258 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001259}
1260
Alexander Couzens92f552f2016-08-23 07:32:27 +02001261/* FIXME: this count_statistics is a state machine behaviour. we should convert
1262 * the complete call control into a state machine. Afterwards we can move this
1263 * code into state transitions.
1264 */
1265static void count_statistics(struct gsm_trans *trans, int new_state)
1266{
1267 int old_state = trans->cc.state;
1268 struct rate_ctr_group *msc = trans->net->msc_ctrs;
1269
1270 if (old_state == new_state)
1271 return;
1272
1273 /* state incoming */
1274 switch (new_state) {
1275 case GSM_CSTATE_ACTIVE:
1276 osmo_counter_inc(trans->net->active_calls);
1277 rate_ctr_inc(&msc->ctr[MSC_CTR_CALL_ACTIVE]);
1278 break;
1279 }
1280
1281 /* state outgoing */
1282 switch (old_state) {
1283 case GSM_CSTATE_ACTIVE:
1284 osmo_counter_dec(trans->net->active_calls);
1285 if (new_state == GSM_CSTATE_DISCONNECT_REQ ||
1286 new_state == GSM_CSTATE_DISCONNECT_IND)
1287 rate_ctr_inc(&msc->ctr[MSC_CTR_CALL_COMPLETE]);
1288 else
1289 rate_ctr_inc(&msc->ctr[MSC_CTR_CALL_INCOMPLETE]);
1290 break;
1291 }
1292}
1293
Harald Welte4bc90a12008-12-27 16:32:52 +00001294/* Call Control */
1295
Harald Welte7584aea2009-02-11 11:44:12 +00001296/* The entire call control code is written in accordance with Figure 7.10c
1297 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1298 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1299 * it for voice */
1300
Harald Welte4bfdfe72009-06-10 23:11:52 +08001301static void new_cc_state(struct gsm_trans *trans, int state)
1302{
1303 if (state > 31 || state < 0)
1304 return;
1305
Neels Hofmeyrfef670b2017-11-22 01:57:00 +01001306 DEBUGP(DCC, "(ti %02x sub %s) new state %s -> %s\n",
1307 trans->transaction_id,
1308 vlr_subscr_name(trans->vsub),
1309 gsm48_cc_state_name(trans->cc.state),
1310 gsm48_cc_state_name(state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001311
Alexander Couzens92f552f2016-08-23 07:32:27 +02001312 count_statistics(trans, state);
Harald Weltedcaf5652009-07-23 18:56:43 +02001313 trans->cc.state = state;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001314}
1315
1316static int gsm48_cc_tx_status(struct gsm_trans *trans, void *arg)
Harald Welte4bc90a12008-12-27 16:32:52 +00001317{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001318 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC STATUS");
Harald Welte4bc90a12008-12-27 16:32:52 +00001319 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001320 uint8_t *cause, *call_state;
Harald Welte4bc90a12008-12-27 16:32:52 +00001321
Harald Welte4bc90a12008-12-27 16:32:52 +00001322 gh->msg_type = GSM48_MT_CC_STATUS;
1323
1324 cause = msgb_put(msg, 3);
1325 cause[0] = 2;
1326 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1327 cause[2] = 0x80 | 30; /* response to status inquiry */
1328
1329 call_state = msgb_put(msg, 1);
1330 call_state[0] = 0xc0 | 0x00;
1331
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001332 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bc90a12008-12-27 16:32:52 +00001333}
1334
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001335static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001336 uint8_t pdisc, uint8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001337{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001338 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 TX SIMPLE");
Harald Welte4bc90a12008-12-27 16:32:52 +00001339 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1340
Harald Welte6f4b7532008-12-29 00:39:37 +00001341 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001342 gh->msg_type = msg_type;
1343
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001344 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte4bc90a12008-12-27 16:32:52 +00001345}
1346
Harald Welte4bfdfe72009-06-10 23:11:52 +08001347static void gsm48_stop_cc_timer(struct gsm_trans *trans)
1348{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001349 if (osmo_timer_pending(&trans->cc.timer)) {
Harald Weltedcaf5652009-07-23 18:56:43 +02001350 DEBUGP(DCC, "stopping pending timer T%x\n", trans->cc.Tcurrent);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001351 osmo_timer_del(&trans->cc.timer);
Harald Weltedcaf5652009-07-23 18:56:43 +02001352 trans->cc.Tcurrent = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001353 }
1354}
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001355
Harald Welte4bfdfe72009-06-10 23:11:52 +08001356static int mncc_recvmsg(struct gsm_network *net, struct gsm_trans *trans,
1357 int msg_type, struct gsm_mncc *mncc)
1358{
1359 struct msgb *msg;
Harald Welte04dc88f2010-12-22 21:45:05 +01001360 unsigned char *data;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001361
Philipp Maierfbf66102017-04-09 12:32:51 +02001362 DEBUGP(DMNCC, "transmit message %s\n", get_mncc_name(msg_type));
1363
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02001364#if BEFORE_MSCSPLIT
1365 /* Re-enable this log output once we can obtain this information via
1366 * A-interface, see OS#2391. */
Harald Welte4bfdfe72009-06-10 23:11:52 +08001367 if (trans)
Harald Welteb854b292010-12-26 19:06:37 +01001368 if (trans->conn && trans->conn->lchan)
Harald Welte6f5aee02009-07-23 21:21:14 +02001369 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08001370 "Sending '%s' to MNCC.\n",
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001371 trans->conn->lchan->ts->trx->bts->nr,
1372 trans->conn->lchan->ts->trx->nr,
1373 trans->conn->lchan->ts->nr, trans->transaction_id,
Harald Welte2483f1b2016-06-19 18:06:02 +02001374 vlr_subscr_msisdn_or_name(trans->vsub),
Harald Welte4bfdfe72009-06-10 23:11:52 +08001375 get_mncc_name(msg_type));
1376 else
1377 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
1378 "Sending '%s' to MNCC.\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001379 vlr_subscr_msisdn_or_name(trans->vsub),
Harald Welte4bfdfe72009-06-10 23:11:52 +08001380 get_mncc_name(msg_type));
1381 else
1382 DEBUGP(DCC, "(bts - trx - ts - ti -- sub -) "
1383 "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02001384#else
1385 DEBUGP(DCC, "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
1386#endif
Harald Welte4bfdfe72009-06-10 23:11:52 +08001387
1388 mncc->msg_type = msg_type;
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001389
Harald Welte966636f2009-06-26 19:39:35 +02001390 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001391 if (!msg)
1392 return -ENOMEM;
Harald Welte04dc88f2010-12-22 21:45:05 +01001393
1394 data = msgb_put(msg, sizeof(struct gsm_mncc));
1395 memcpy(data, mncc, sizeof(struct gsm_mncc));
1396
Harald Welte54209c22010-12-22 23:43:29 +01001397 cc_tx_to_mncc(net, msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001398
1399 return 0;
1400}
1401
1402int mncc_release_ind(struct gsm_network *net, struct gsm_trans *trans,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001403 uint32_t callref, int location, int value)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001404{
1405 struct gsm_mncc rel;
1406
Harald Welte92f70c52009-06-12 01:54:08 +08001407 memset(&rel, 0, sizeof(rel));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001408 rel.callref = callref;
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001409 mncc_set_cause(&rel, location, value);
Andreas Eversberg15907272013-01-25 08:38:29 +01001410 if (trans && trans->cc.state == GSM_CSTATE_RELEASE_REQ)
1411 return mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001412 return mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
1413}
1414
Harald Weltedcaf5652009-07-23 18:56:43 +02001415/* Call Control Specific transaction release.
1416 * gets called by trans_free, DO NOT CALL YOURSELF! */
1417void _gsm48_cc_trans_free(struct gsm_trans *trans)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001418{
Harald Welte4bfdfe72009-06-10 23:11:52 +08001419 gsm48_stop_cc_timer(trans);
1420
Philipp Maier621ba032017-11-07 17:19:25 +01001421 /* Initiate the teardown of the related connections on the MGW */
1422 msc_mgcp_call_release(trans);
Philipp Maierfbf66102017-04-09 12:32:51 +02001423
Harald Welte4bfdfe72009-06-10 23:11:52 +08001424 /* send release to L4, if callref still exists */
1425 if (trans->callref) {
1426 /* Ressource unavailable */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001427 mncc_release_ind(trans->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001428 GSM48_CAUSE_LOC_PRN_S_LU,
1429 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001430 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001431 if (trans->cc.state != GSM_CSTATE_NULL)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001432 new_cc_state(trans, GSM_CSTATE_NULL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001433}
1434
1435static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001436
Harald Welte09e38af2009-02-16 22:52:23 +00001437/* call-back from paging the B-end of the connection */
1438static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001439 struct msgb *msg, void *_conn, void *_transt)
Harald Welte09e38af2009-02-16 22:52:23 +00001440{
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001441 struct gsm_subscriber_connection *conn = _conn;
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001442 struct gsm_trans *transt = _transt;
Harald Weltec05677b2009-06-26 20:17:06 +02001443
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001444 OSMO_ASSERT(!transt->conn);
Harald Welte7584aea2009-02-11 11:44:12 +00001445
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001446 switch (event) {
1447 case GSM_PAGING_SUCCEEDED:
Harald Welte2483f1b2016-06-19 18:06:02 +02001448 DEBUGP(DCC, "Paging subscr %s succeeded!\n",
1449 vlr_subscr_msisdn_or_name(transt->vsub));
Ivan Kluchnikov5fd0c642015-05-26 13:36:58 +03001450 OSMO_ASSERT(conn);
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02001451 /* Assign conn */
Neels Hofmeyr82be67d2017-11-22 15:43:03 +01001452 transt->conn = msc_subscr_conn_get(conn, MSC_CONN_USE_TRANS_CC);
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001453 /* send SETUP request to called party */
1454 gsm48_cc_tx_setup(transt, &transt->cc.msg);
1455 break;
1456 case GSM_PAGING_EXPIRED:
1457 case GSM_PAGING_BUSY:
1458 DEBUGP(DCC, "Paging subscr %s expired!\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001459 vlr_subscr_msisdn_or_name(transt->vsub));
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001460 /* Temporarily out of order */
1461 mncc_release_ind(transt->net, transt,
1462 transt->callref,
1463 GSM48_CAUSE_LOC_PRN_S_LU,
1464 GSM48_CC_CAUSE_DEST_OOO);
1465 transt->callref = 0;
1466 transt->paging_request = NULL;
1467 trans_free(transt);
1468 break;
1469 default:
1470 LOGP(DCC, LOGL_ERROR, "Unknown paging event %d\n", event);
1471 break;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001472 }
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001473
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001474 transt->paging_request = NULL;
Harald Welte09e38af2009-02-16 22:52:23 +00001475 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001476}
Harald Welte7584aea2009-02-11 11:44:12 +00001477
Harald Welte4bfdfe72009-06-10 23:11:52 +08001478/* bridge channels of two transactions */
Harald Welte53d51f52015-12-03 14:59:04 +01001479static int tch_bridge(struct gsm_network *net, struct gsm_mncc_bridge *bridge)
Harald Welte7ccf7782009-02-17 01:43:01 +00001480{
Harald Welte53d51f52015-12-03 14:59:04 +01001481 struct gsm_trans *trans1 = trans_find_by_callref(net, bridge->callref[0]);
1482 struct gsm_trans *trans2 = trans_find_by_callref(net, bridge->callref[1]);
Philipp Maier621ba032017-11-07 17:19:25 +01001483 int rc;
Harald Welte7ccf7782009-02-17 01:43:01 +00001484
Harald Welte4bfdfe72009-06-10 23:11:52 +08001485 if (!trans1 || !trans2)
Harald Welte7ccf7782009-02-17 01:43:01 +00001486 return -EIO;
1487
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001488 if (!trans1->conn || !trans2->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001489 return -EIO;
1490
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01001491 /* Which subscriber do we want to track trans1 or trans2? */
Harald Welte2483f1b2016-06-19 18:06:02 +02001492 log_set_context(LOG_CTX_VLR_SUBSCR, trans1->vsub);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01001493
Philipp Maier621ba032017-11-07 17:19:25 +01001494 /* Bridge RTP streams */
1495 rc = msc_mgcp_call_complete(trans1, trans2->conn->rtp.local_port_cn,
1496 trans2->conn->rtp.local_addr_cn);
1497 if (rc)
1498 return -EINVAL;
1499
1500 rc = msc_mgcp_call_complete(trans2, trans1->conn->rtp.local_port_cn,
1501 trans1->conn->rtp.local_addr_cn);
1502 if (rc)
1503 return -EINVAL;
1504
1505 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001506}
1507
Harald Welte4bfdfe72009-06-10 23:11:52 +08001508static int gsm48_cc_rx_status_enq(struct gsm_trans *trans, struct msgb *msg)
1509{
1510 DEBUGP(DCC, "-> STATUS ENQ\n");
1511 return gsm48_cc_tx_status(trans, msg);
1512}
1513
1514static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg);
1515static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg);
1516
1517static void gsm48_cc_timeout(void *arg)
1518{
1519 struct gsm_trans *trans = arg;
1520 int disconnect = 0, release = 0;
Harald Weltec66b71c2009-06-11 14:23:20 +08001521 int mo_cause = GSM48_CC_CAUSE_RECOVERY_TIMER;
1522 int mo_location = GSM48_CAUSE_LOC_USER;
1523 int l4_cause = GSM48_CC_CAUSE_NORMAL_UNSPEC;
1524 int l4_location = GSM48_CAUSE_LOC_PRN_S_LU;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001525 struct gsm_mncc mo_rel, l4_rel;
1526
1527 memset(&mo_rel, 0, sizeof(struct gsm_mncc));
1528 mo_rel.callref = trans->callref;
1529 memset(&l4_rel, 0, sizeof(struct gsm_mncc));
1530 l4_rel.callref = trans->callref;
1531
Harald Weltedcaf5652009-07-23 18:56:43 +02001532 switch(trans->cc.Tcurrent) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001533 case 0x303:
1534 release = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001535 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001536 break;
1537 case 0x310:
1538 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001539 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001540 break;
1541 case 0x313:
1542 disconnect = 1;
1543 /* unknown, did not find it in the specs */
1544 break;
1545 case 0x301:
1546 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001547 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001548 break;
1549 case 0x308:
Harald Weltedcaf5652009-07-23 18:56:43 +02001550 if (!trans->cc.T308_second) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001551 /* restart T308 a second time */
Harald Weltedcaf5652009-07-23 18:56:43 +02001552 gsm48_cc_tx_release(trans, &trans->cc.msg);
1553 trans->cc.T308_second = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001554 break; /* stay in release state */
1555 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001556 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001557 return;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001558 case 0x306:
1559 release = 1;
Harald Weltedcaf5652009-07-23 18:56:43 +02001560 mo_cause = trans->cc.msg.cause.value;
1561 mo_location = trans->cc.msg.cause.location;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001562 break;
1563 case 0x323:
1564 disconnect = 1;
1565 break;
1566 default:
1567 release = 1;
1568 }
1569
1570 if (release && trans->callref) {
1571 /* process release towards layer 4 */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001572 mncc_release_ind(trans->net, trans, trans->callref,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001573 l4_location, l4_cause);
1574 trans->callref = 0;
1575 }
1576
1577 if (disconnect && trans->callref) {
1578 /* process disconnect towards layer 4 */
1579 mncc_set_cause(&l4_rel, l4_location, l4_cause);
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001580 mncc_recvmsg(trans->net, trans, MNCC_DISC_IND, &l4_rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001581 }
1582
1583 /* process disconnect towards mobile station */
1584 if (disconnect || release) {
1585 mncc_set_cause(&mo_rel, mo_location, mo_cause);
Harald Weltedcaf5652009-07-23 18:56:43 +02001586 mo_rel.cause.diag[0] = ((trans->cc.Tcurrent & 0xf00) >> 8) + '0';
1587 mo_rel.cause.diag[1] = ((trans->cc.Tcurrent & 0x0f0) >> 4) + '0';
1588 mo_rel.cause.diag[2] = (trans->cc.Tcurrent & 0x00f) + '0';
Harald Welte4bfdfe72009-06-10 23:11:52 +08001589 mo_rel.cause.diag_len = 3;
1590
1591 if (disconnect)
1592 gsm48_cc_tx_disconnect(trans, &mo_rel);
1593 if (release)
1594 gsm48_cc_tx_release(trans, &mo_rel);
1595 }
1596
1597}
1598
Max3ffce192016-04-25 15:22:00 +02001599/* disconnect both calls from the bridge */
1600static inline void disconnect_bridge(struct gsm_network *net,
1601 struct gsm_mncc_bridge *bridge, int err)
1602{
1603 struct gsm_trans *trans0 = trans_find_by_callref(net, bridge->callref[0]);
1604 struct gsm_trans *trans1 = trans_find_by_callref(net, bridge->callref[1]);
1605 struct gsm_mncc mx_rel;
1606 if (!trans0 || !trans1)
1607 return;
1608
1609 DEBUGP(DCC, "Failed to bridge TCH for calls %x <-> %x :: %s \n",
1610 trans0->callref, trans1->callref, strerror(err));
1611
1612 memset(&mx_rel, 0, sizeof(struct gsm_mncc));
1613 mncc_set_cause(&mx_rel, GSM48_CAUSE_LOC_INN_NET,
1614 GSM48_CC_CAUSE_CHAN_UNACCEPT);
1615
1616 mx_rel.callref = trans0->callref;
1617 gsm48_cc_tx_disconnect(trans0, &mx_rel);
1618
1619 mx_rel.callref = trans1->callref;
1620 gsm48_cc_tx_disconnect(trans1, &mx_rel);
1621}
1622
Harald Welte4bfdfe72009-06-10 23:11:52 +08001623static void gsm48_start_cc_timer(struct gsm_trans *trans, int current,
1624 int sec, int micro)
1625{
1626 DEBUGP(DCC, "starting timer T%x with %d seconds\n", current, sec);
Pablo Neira Ayuso51215762017-05-08 20:57:52 +02001627 osmo_timer_setup(&trans->cc.timer, gsm48_cc_timeout, trans);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001628 osmo_timer_schedule(&trans->cc.timer, sec, micro);
Harald Weltedcaf5652009-07-23 18:56:43 +02001629 trans->cc.Tcurrent = current;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001630}
1631
1632static int gsm48_cc_rx_setup(struct gsm_trans *trans, struct msgb *msg)
1633{
1634 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyr531734a2016-03-14 16:13:24 +01001635 uint8_t msg_type = gsm48_hdr_msg_type(gh);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001636 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1637 struct tlv_parsed tp;
1638 struct gsm_mncc setup;
1639
1640 memset(&setup, 0, sizeof(struct gsm_mncc));
1641 setup.callref = trans->callref;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02001642
Harald Welte474d19f2010-03-02 23:18:30 +01001643 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001644 /* emergency setup is identified by msg_type */
Harald Welte0dd01372018-01-24 11:06:19 +01001645 if (msg_type == GSM48_MT_CC_EMERG_SETUP) {
1646 setup.fields |= MNCC_F_EMERGENCY;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001647 setup.emergency = 1;
Harald Welte69c54a82018-02-09 20:41:14 +01001648 /* use destination number as configured by user (if any) */
1649 if (trans->net->emergency.route_to_msisdn) {
1650 setup.fields |= MNCC_F_CALLED;
1651 setup.called.type = 0; /* unknown */
1652 setup.called.plan = 0; /* unknown */
1653 OSMO_STRLCPY_ARRAY(setup.called.number,
1654 trans->net->emergency.route_to_msisdn);
1655 }
Harald Welte0dd01372018-01-24 11:06:19 +01001656 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08001657
1658 /* use subscriber as calling party number */
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02001659 setup.fields |= MNCC_F_CALLING;
Max98f74672018-02-05 12:57:06 +01001660 OSMO_STRLCPY_ARRAY(setup.calling.number, trans->vsub->msisdn);
1661 OSMO_STRLCPY_ARRAY(setup.imsi, trans->vsub->imsi);
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02001662
Harald Welte4bfdfe72009-06-10 23:11:52 +08001663 /* bearer capability */
1664 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
1665 setup.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001666 gsm48_decode_bearer_cap(&setup.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001667 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Philipp Maierfbf66102017-04-09 12:32:51 +02001668
1669 /* Create a copy of the bearer capability
1670 * in the transaction struct, so we can use
1671 * this information later */
1672 memcpy(&trans->bearer_cap,&setup.bearer_cap,
1673 sizeof(trans->bearer_cap));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001674 }
1675 /* facility */
1676 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1677 setup.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001678 gsm48_decode_facility(&setup.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001679 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1680 }
1681 /* called party bcd number */
1682 if (TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD)) {
1683 setup.fields |= MNCC_F_CALLED;
Harald Welte55c8f352010-03-07 23:40:35 +01001684 gsm48_decode_called(&setup.called,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001685 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
1686 }
1687 /* user-user */
1688 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
1689 setup.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01001690 gsm48_decode_useruser(&setup.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001691 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
1692 }
1693 /* ss-version */
1694 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1695 setup.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001696 gsm48_decode_ssversion(&setup.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001697 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1698 }
1699 /* CLIR suppression */
1700 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_SUPP))
1701 setup.clir.sup = 1;
1702 /* CLIR invocation */
1703 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_INVOC))
1704 setup.clir.inv = 1;
1705 /* cc cap */
1706 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
1707 setup.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001708 gsm48_decode_cccap(&setup.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001709 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
1710 }
1711
Harald Welte4bfdfe72009-06-10 23:11:52 +08001712 new_cc_state(trans, GSM_CSTATE_INITIATED);
1713
Harald Welte79826e12018-01-24 10:50:24 +01001714 LOGP(DCC, setup.emergency ? LOGL_NOTICE : LOGL_INFO, "Subscriber %s (%s) sends %sSETUP to %s\n",
1715 vlr_subscr_name(trans->vsub), trans->vsub->msisdn, setup.emergency ? "EMERGENCY_" : "",
Harald Welte (local)47df3992009-12-26 19:45:03 +01001716 setup.called.number);
1717
Alexander Couzensb847a212016-08-02 11:34:11 +02001718 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MO_SETUP]);
Harald Weltea29e43a2010-12-24 16:06:33 +01001719
Harald Welte4bfdfe72009-06-10 23:11:52 +08001720 /* indicate setup to MNCC */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001721 mncc_recvmsg(trans->net, trans, MNCC_SETUP_IND, &setup);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001722
Harald Welte13cac662009-07-29 12:10:35 +02001723 /* MNCC code will modify the channel asynchronously, we should
1724 * ipaccess-bind only after the modification has been made to the
1725 * lchan->tch_mode */
Harald Welte4bfdfe72009-06-10 23:11:52 +08001726 return 0;
1727}
1728
1729static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg)
Harald Welte65e74cc2008-12-29 01:55:35 +00001730{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001731 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC STUP");
Harald Welte65e74cc2008-12-29 01:55:35 +00001732 struct gsm48_hdr *gh;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001733 struct gsm_mncc *setup = arg;
Harald Welte78283ef2009-07-23 21:36:44 +02001734 int rc, trans_id;
Harald Welte65e74cc2008-12-29 01:55:35 +00001735
Harald Welte7ccf7782009-02-17 01:43:01 +00001736 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00001737
Harald Welte4bfdfe72009-06-10 23:11:52 +08001738 /* transaction id must not be assigned */
1739 if (trans->transaction_id != 0xff) { /* unasssigned */
1740 DEBUGP(DCC, "TX Setup with assigned transaction. "
1741 "This is not allowed!\n");
1742 /* Temporarily out of order */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001743 rc = mncc_release_ind(trans->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001744 GSM48_CAUSE_LOC_PRN_S_LU,
1745 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001746 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001747 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001748 return rc;
1749 }
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001750
Harald Welte4bfdfe72009-06-10 23:11:52 +08001751 /* Get free transaction_id */
Harald Welte2483f1b2016-06-19 18:06:02 +02001752 trans_id = trans_assign_trans_id(trans->net, trans->vsub,
Jacob Erlbeckdae1f642014-12-02 14:22:53 +01001753 GSM48_PDISC_CC, 0);
Harald Welte78283ef2009-07-23 21:36:44 +02001754 if (trans_id < 0) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001755 /* no free transaction ID */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001756 rc = mncc_release_ind(trans->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001757 GSM48_CAUSE_LOC_PRN_S_LU,
1758 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001759 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001760 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001761 return rc;
1762 }
Harald Welte78283ef2009-07-23 21:36:44 +02001763 trans->transaction_id = trans_id;
Harald Welte49f48b82009-02-17 15:29:33 +00001764
Harald Welte65e74cc2008-12-29 01:55:35 +00001765 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00001766
Harald Welte4bfdfe72009-06-10 23:11:52 +08001767 gsm48_start_cc_timer(trans, 0x303, GSM48_T303);
Harald Welte65e74cc2008-12-29 01:55:35 +00001768
Harald Welte4bfdfe72009-06-10 23:11:52 +08001769 /* bearer capability */
Harald Welte32958872018-02-12 11:56:51 +01001770 if (setup->fields & MNCC_F_BEARER_CAP) {
1771 /* Create a copy of the bearer capability in the transaction struct, so we
1772 * can use this information later */
1773 memcpy(&trans->bearer_cap, &setup->bearer_cap, sizeof(trans->bearer_cap));
Harald Welte55c8f352010-03-07 23:40:35 +01001774 gsm48_encode_bearer_cap(msg, 0, &setup->bearer_cap);
Harald Welte32958872018-02-12 11:56:51 +01001775 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08001776 /* facility */
1777 if (setup->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001778 gsm48_encode_facility(msg, 0, &setup->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001779 /* progress */
1780 if (setup->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001781 gsm48_encode_progress(msg, 0, &setup->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001782 /* calling party BCD number */
1783 if (setup->fields & MNCC_F_CALLING)
Harald Welte55c8f352010-03-07 23:40:35 +01001784 gsm48_encode_calling(msg, &setup->calling);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001785 /* called party BCD number */
1786 if (setup->fields & MNCC_F_CALLED)
Harald Welte55c8f352010-03-07 23:40:35 +01001787 gsm48_encode_called(msg, &setup->called);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001788 /* user-user */
1789 if (setup->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001790 gsm48_encode_useruser(msg, 0, &setup->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001791 /* redirecting party BCD number */
1792 if (setup->fields & MNCC_F_REDIRECTING)
Harald Welte55c8f352010-03-07 23:40:35 +01001793 gsm48_encode_redirecting(msg, &setup->redirecting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001794 /* signal */
1795 if (setup->fields & MNCC_F_SIGNAL)
Harald Welte55c8f352010-03-07 23:40:35 +01001796 gsm48_encode_signal(msg, setup->signal);
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001797
Harald Welte4bfdfe72009-06-10 23:11:52 +08001798 new_cc_state(trans, GSM_CSTATE_CALL_PRESENT);
Harald Welte65e74cc2008-12-29 01:55:35 +00001799
Alexander Couzensb847a212016-08-02 11:34:11 +02001800 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MT_SETUP]);
Harald Weltea29e43a2010-12-24 16:06:33 +01001801
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001802 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte65e74cc2008-12-29 01:55:35 +00001803}
1804
Harald Welte4bfdfe72009-06-10 23:11:52 +08001805static int gsm48_cc_rx_call_conf(struct gsm_trans *trans, struct msgb *msg)
1806{
1807 struct gsm48_hdr *gh = msgb_l3(msg);
1808 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1809 struct tlv_parsed tp;
1810 struct gsm_mncc call_conf;
Philipp Maierfbf66102017-04-09 12:32:51 +02001811 int rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001812
1813 gsm48_stop_cc_timer(trans);
1814 gsm48_start_cc_timer(trans, 0x310, GSM48_T310);
1815
1816 memset(&call_conf, 0, sizeof(struct gsm_mncc));
1817 call_conf.callref = trans->callref;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02001818
Harald Welte474d19f2010-03-02 23:18:30 +01001819 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001820#if 0
1821 /* repeat */
1822 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_CIR))
1823 call_conf.repeat = 1;
1824 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_SEQ))
1825 call_conf.repeat = 2;
1826#endif
1827 /* bearer capability */
1828 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
1829 call_conf.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001830 gsm48_decode_bearer_cap(&call_conf.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001831 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Philipp Maierfbf66102017-04-09 12:32:51 +02001832
1833 /* Create a copy of the bearer capability
1834 * in the transaction struct, so we can use
1835 * this information later */
1836 memcpy(&trans->bearer_cap,&call_conf.bearer_cap,
1837 sizeof(trans->bearer_cap));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001838 }
1839 /* cause */
1840 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
1841 call_conf.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01001842 gsm48_decode_cause(&call_conf.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001843 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
1844 }
1845 /* cc cap */
1846 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
1847 call_conf.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001848 gsm48_decode_cccap(&call_conf.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001849 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
1850 }
1851
Andreas Eversberg035b8742013-09-19 09:27:06 +02001852 /* IMSI of called subscriber */
Max98f74672018-02-05 12:57:06 +01001853 OSMO_STRLCPY_ARRAY(call_conf.imsi, trans->vsub->imsi);
Andreas Eversberg035b8742013-09-19 09:27:06 +02001854
Harald Welte4bfdfe72009-06-10 23:11:52 +08001855 new_cc_state(trans, GSM_CSTATE_MO_TERM_CALL_CONF);
1856
Philipp Maierfbf66102017-04-09 12:32:51 +02001857 /* Assign call (if not done yet) */
1858 if (trans->assignment_done == false) {
Philipp Maier621ba032017-11-07 17:19:25 +01001859 rc = msc_mgcp_call_assignment(trans);
Philipp Maierfbf66102017-04-09 12:32:51 +02001860 trans->assignment_done = true;
1861 }
1862 else
1863 rc = 0;
1864
1865 /* don't continue, if there were problems with
1866 * the call assignment. */
1867 if (rc)
1868 return rc;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001869
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001870 return mncc_recvmsg(trans->net, trans, MNCC_CALL_CONF_IND,
Harald Welte596fed42009-07-23 19:06:52 +02001871 &call_conf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001872}
1873
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001874static int gsm48_cc_tx_call_proc_and_assign(struct gsm_trans *trans, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001875{
1876 struct gsm_mncc *proceeding = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001877 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC PROC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001878 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001879 int rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001880
Harald Welte4bfdfe72009-06-10 23:11:52 +08001881 gh->msg_type = GSM48_MT_CC_CALL_PROC;
1882
1883 new_cc_state(trans, GSM_CSTATE_MO_CALL_PROC);
1884
1885 /* bearer capability */
Harald Welte4804c552018-02-12 12:30:54 +01001886 if (proceeding->fields & MNCC_F_BEARER_CAP) {
Harald Welte55c8f352010-03-07 23:40:35 +01001887 gsm48_encode_bearer_cap(msg, 0, &proceeding->bearer_cap);
Harald Welte4804c552018-02-12 12:30:54 +01001888 memcpy(&trans->bearer_cap, &proceeding->bearer_cap, sizeof(trans->bearer_cap));
1889 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08001890 /* facility */
1891 if (proceeding->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001892 gsm48_encode_facility(msg, 0, &proceeding->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001893 /* progress */
1894 if (proceeding->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001895 gsm48_encode_progress(msg, 0, &proceeding->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001896
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001897 rc = gsm48_conn_sendmsg(msg, trans->conn, trans);
1898 if (rc)
1899 return rc;
1900
Philipp Maierfbf66102017-04-09 12:32:51 +02001901 /* Assign call (if not done yet) */
1902 if (trans->assignment_done == false) {
Philipp Maier621ba032017-11-07 17:19:25 +01001903 rc = msc_mgcp_call_assignment(trans);
Philipp Maierfbf66102017-04-09 12:32:51 +02001904 trans->assignment_done = true;
1905 }
1906 else
1907 rc = 0;
1908
1909 return rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001910}
1911
1912static int gsm48_cc_rx_alerting(struct gsm_trans *trans, struct msgb *msg)
1913{
1914 struct gsm48_hdr *gh = msgb_l3(msg);
1915 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1916 struct tlv_parsed tp;
1917 struct gsm_mncc alerting;
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001918
Harald Welte4bfdfe72009-06-10 23:11:52 +08001919 gsm48_stop_cc_timer(trans);
1920 gsm48_start_cc_timer(trans, 0x301, GSM48_T301);
1921
1922 memset(&alerting, 0, sizeof(struct gsm_mncc));
1923 alerting.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01001924 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001925 /* facility */
1926 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1927 alerting.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001928 gsm48_decode_facility(&alerting.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001929 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1930 }
1931
1932 /* progress */
1933 if (TLVP_PRESENT(&tp, GSM48_IE_PROGR_IND)) {
1934 alerting.fields |= MNCC_F_PROGRESS;
Harald Welte55c8f352010-03-07 23:40:35 +01001935 gsm48_decode_progress(&alerting.progress,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001936 TLVP_VAL(&tp, GSM48_IE_PROGR_IND)-1);
1937 }
1938 /* ss-version */
1939 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1940 alerting.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001941 gsm48_decode_ssversion(&alerting.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001942 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1943 }
1944
1945 new_cc_state(trans, GSM_CSTATE_CALL_RECEIVED);
1946
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001947 return mncc_recvmsg(trans->net, trans, MNCC_ALERT_IND,
Harald Welte596fed42009-07-23 19:06:52 +02001948 &alerting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001949}
1950
1951static int gsm48_cc_tx_alerting(struct gsm_trans *trans, void *arg)
1952{
1953 struct gsm_mncc *alerting = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001954 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC ALERT");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001955 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1956
Harald Welte4bfdfe72009-06-10 23:11:52 +08001957 gh->msg_type = GSM48_MT_CC_ALERTING;
1958
1959 /* facility */
1960 if (alerting->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001961 gsm48_encode_facility(msg, 0, &alerting->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001962 /* progress */
1963 if (alerting->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001964 gsm48_encode_progress(msg, 0, &alerting->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001965 /* user-user */
1966 if (alerting->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001967 gsm48_encode_useruser(msg, 0, &alerting->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001968
1969 new_cc_state(trans, GSM_CSTATE_CALL_DELIVERED);
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001970
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001971 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001972}
1973
1974static int gsm48_cc_tx_progress(struct gsm_trans *trans, void *arg)
1975{
1976 struct gsm_mncc *progress = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001977 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC PROGRESS");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001978 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1979
Harald Welte4bfdfe72009-06-10 23:11:52 +08001980 gh->msg_type = GSM48_MT_CC_PROGRESS;
1981
1982 /* progress */
Harald Welte55c8f352010-03-07 23:40:35 +01001983 gsm48_encode_progress(msg, 1, &progress->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001984 /* user-user */
1985 if (progress->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001986 gsm48_encode_useruser(msg, 0, &progress->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001987
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001988 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001989}
1990
1991static int gsm48_cc_tx_connect(struct gsm_trans *trans, void *arg)
1992{
1993 struct gsm_mncc *connect = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001994 struct msgb *msg = gsm48_msgb_alloc_name("GSN 04.08 CC CON");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001995 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1996
Harald Welte4bfdfe72009-06-10 23:11:52 +08001997 gh->msg_type = GSM48_MT_CC_CONNECT;
1998
1999 gsm48_stop_cc_timer(trans);
2000 gsm48_start_cc_timer(trans, 0x313, GSM48_T313);
2001
2002 /* facility */
2003 if (connect->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002004 gsm48_encode_facility(msg, 0, &connect->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002005 /* progress */
2006 if (connect->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002007 gsm48_encode_progress(msg, 0, &connect->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002008 /* connected number */
2009 if (connect->fields & MNCC_F_CONNECTED)
Harald Welte55c8f352010-03-07 23:40:35 +01002010 gsm48_encode_connected(msg, &connect->connected);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002011 /* user-user */
2012 if (connect->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002013 gsm48_encode_useruser(msg, 0, &connect->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002014
2015 new_cc_state(trans, GSM_CSTATE_CONNECT_IND);
2016
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002017 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002018}
2019
2020static int gsm48_cc_rx_connect(struct gsm_trans *trans, struct msgb *msg)
2021{
2022 struct gsm48_hdr *gh = msgb_l3(msg);
2023 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2024 struct tlv_parsed tp;
2025 struct gsm_mncc connect;
2026
2027 gsm48_stop_cc_timer(trans);
2028
2029 memset(&connect, 0, sizeof(struct gsm_mncc));
2030 connect.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002031 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002032 /* use subscriber as connected party number */
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02002033 connect.fields |= MNCC_F_CONNECTED;
Max98f74672018-02-05 12:57:06 +01002034 OSMO_STRLCPY_ARRAY(connect.connected.number, trans->vsub->msisdn);
2035 OSMO_STRLCPY_ARRAY(connect.imsi, trans->vsub->imsi);
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02002036
Harald Welte4bfdfe72009-06-10 23:11:52 +08002037 /* facility */
2038 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2039 connect.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002040 gsm48_decode_facility(&connect.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002041 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2042 }
2043 /* user-user */
2044 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2045 connect.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002046 gsm48_decode_useruser(&connect.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002047 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2048 }
2049 /* ss-version */
2050 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2051 connect.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002052 gsm48_decode_ssversion(&connect.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002053 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2054 }
2055
2056 new_cc_state(trans, GSM_CSTATE_CONNECT_REQUEST);
Alexander Couzensb847a212016-08-02 11:34:11 +02002057 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MT_CONNECT]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002058
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002059 return mncc_recvmsg(trans->net, trans, MNCC_SETUP_CNF, &connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002060}
2061
2062
2063static int gsm48_cc_rx_connect_ack(struct gsm_trans *trans, struct msgb *msg)
2064{
2065 struct gsm_mncc connect_ack;
2066
2067 gsm48_stop_cc_timer(trans);
2068
2069 new_cc_state(trans, GSM_CSTATE_ACTIVE);
Alexander Couzensb847a212016-08-02 11:34:11 +02002070 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MO_CONNECT_ACK]);
Alexander Couzensfbd96f52016-08-29 18:40:02 +02002071
Harald Welte4bfdfe72009-06-10 23:11:52 +08002072 memset(&connect_ack, 0, sizeof(struct gsm_mncc));
2073 connect_ack.callref = trans->callref;
Harald Weltea29e43a2010-12-24 16:06:33 +01002074
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002075 return mncc_recvmsg(trans->net, trans, MNCC_SETUP_COMPL_IND,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002076 &connect_ack);
2077}
2078
2079static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg)
2080{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002081 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC CON ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002082 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2083
Harald Welte4bfdfe72009-06-10 23:11:52 +08002084 gh->msg_type = GSM48_MT_CC_CONNECT_ACK;
2085
2086 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2087
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002088 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002089}
2090
2091static int gsm48_cc_rx_disconnect(struct gsm_trans *trans, struct msgb *msg)
2092{
2093 struct gsm48_hdr *gh = msgb_l3(msg);
2094 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2095 struct tlv_parsed tp;
2096 struct gsm_mncc disc;
2097
2098 gsm48_stop_cc_timer(trans);
2099
2100 new_cc_state(trans, GSM_CSTATE_DISCONNECT_REQ);
2101
2102 memset(&disc, 0, sizeof(struct gsm_mncc));
2103 disc.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002104 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_CAUSE, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002105 /* cause */
2106 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2107 disc.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002108 gsm48_decode_cause(&disc.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002109 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2110 }
2111 /* facility */
2112 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2113 disc.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002114 gsm48_decode_facility(&disc.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002115 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2116 }
2117 /* user-user */
2118 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2119 disc.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002120 gsm48_decode_useruser(&disc.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002121 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2122 }
2123 /* ss-version */
2124 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2125 disc.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002126 gsm48_decode_ssversion(&disc.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002127 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2128 }
2129
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002130 return mncc_recvmsg(trans->net, trans, MNCC_DISC_IND, &disc);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002131
2132}
2133
Harald Weltec66b71c2009-06-11 14:23:20 +08002134static struct gsm_mncc_cause default_cause = {
2135 .location = GSM48_CAUSE_LOC_PRN_S_LU,
2136 .coding = 0,
2137 .rec = 0,
2138 .rec_val = 0,
2139 .value = GSM48_CC_CAUSE_NORMAL_UNSPEC,
2140 .diag_len = 0,
2141 .diag = { 0 },
2142};
Harald Welte4bfdfe72009-06-10 23:11:52 +08002143
2144static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg)
2145{
2146 struct gsm_mncc *disc = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002147 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC DISC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002148 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2149
Harald Welte4bfdfe72009-06-10 23:11:52 +08002150 gh->msg_type = GSM48_MT_CC_DISCONNECT;
2151
2152 gsm48_stop_cc_timer(trans);
2153 gsm48_start_cc_timer(trans, 0x306, GSM48_T306);
2154
2155 /* cause */
2156 if (disc->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002157 gsm48_encode_cause(msg, 1, &disc->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002158 else
Harald Welte55c8f352010-03-07 23:40:35 +01002159 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002160
2161 /* facility */
2162 if (disc->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002163 gsm48_encode_facility(msg, 0, &disc->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002164 /* progress */
2165 if (disc->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002166 gsm48_encode_progress(msg, 0, &disc->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002167 /* user-user */
2168 if (disc->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002169 gsm48_encode_useruser(msg, 0, &disc->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002170
2171 /* store disconnect cause for T306 expiry */
Harald Weltedcaf5652009-07-23 18:56:43 +02002172 memcpy(&trans->cc.msg, disc, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002173
2174 new_cc_state(trans, GSM_CSTATE_DISCONNECT_IND);
2175
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002176 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002177}
2178
2179static int gsm48_cc_rx_release(struct gsm_trans *trans, struct msgb *msg)
2180{
2181 struct gsm48_hdr *gh = msgb_l3(msg);
2182 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2183 struct tlv_parsed tp;
2184 struct gsm_mncc rel;
2185 int rc;
2186
2187 gsm48_stop_cc_timer(trans);
2188
2189 memset(&rel, 0, sizeof(struct gsm_mncc));
2190 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002191 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002192 /* cause */
2193 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2194 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002195 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002196 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2197 }
2198 /* facility */
2199 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2200 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002201 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002202 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2203 }
2204 /* user-user */
2205 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2206 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002207 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002208 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2209 }
2210 /* ss-version */
2211 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2212 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002213 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002214 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2215 }
2216
Harald Weltedcaf5652009-07-23 18:56:43 +02002217 if (trans->cc.state == GSM_CSTATE_RELEASE_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002218 /* release collision 5.4.5 */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002219 rc = mncc_recvmsg(trans->net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002220 } else {
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08002221 rc = gsm48_tx_simple(trans->conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02002222 GSM48_PDISC_CC | (trans->transaction_id << 4),
Harald Welte596fed42009-07-23 19:06:52 +02002223 GSM48_MT_CC_RELEASE_COMPL);
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002224 rc = mncc_recvmsg(trans->net, trans, MNCC_REL_IND, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002225 }
2226
2227 new_cc_state(trans, GSM_CSTATE_NULL);
2228
2229 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002230 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002231
2232 return rc;
2233}
2234
2235static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg)
2236{
2237 struct gsm_mncc *rel = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002238 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC REL");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002239 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2240
Harald Welte4bfdfe72009-06-10 23:11:52 +08002241 gh->msg_type = GSM48_MT_CC_RELEASE;
2242
Harald Welte4bfdfe72009-06-10 23:11:52 +08002243 gsm48_stop_cc_timer(trans);
2244 gsm48_start_cc_timer(trans, 0x308, GSM48_T308);
2245
2246 /* cause */
2247 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002248 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002249 /* facility */
2250 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002251 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002252 /* user-user */
2253 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002254 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002255
Harald Weltedcaf5652009-07-23 18:56:43 +02002256 trans->cc.T308_second = 0;
2257 memcpy(&trans->cc.msg, rel, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002258
Harald Weltedcaf5652009-07-23 18:56:43 +02002259 if (trans->cc.state != GSM_CSTATE_RELEASE_REQ)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002260 new_cc_state(trans, GSM_CSTATE_RELEASE_REQ);
2261
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002262 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002263}
2264
2265static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg)
2266{
2267 struct gsm48_hdr *gh = msgb_l3(msg);
2268 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2269 struct tlv_parsed tp;
2270 struct gsm_mncc rel;
2271 int rc = 0;
2272
2273 gsm48_stop_cc_timer(trans);
2274
2275 memset(&rel, 0, sizeof(struct gsm_mncc));
2276 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002277 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002278 /* cause */
2279 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2280 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002281 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002282 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2283 }
2284 /* facility */
2285 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2286 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002287 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002288 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2289 }
2290 /* user-user */
2291 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2292 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002293 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002294 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2295 }
2296 /* ss-version */
2297 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2298 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002299 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002300 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2301 }
2302
2303 if (trans->callref) {
Harald Weltedcaf5652009-07-23 18:56:43 +02002304 switch (trans->cc.state) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002305 case GSM_CSTATE_CALL_PRESENT:
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002306 rc = mncc_recvmsg(trans->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002307 MNCC_REJ_IND, &rel);
2308 break;
2309 case GSM_CSTATE_RELEASE_REQ:
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002310 rc = mncc_recvmsg(trans->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002311 MNCC_REL_CNF, &rel);
2312 break;
2313 default:
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002314 rc = mncc_recvmsg(trans->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002315 MNCC_REL_IND, &rel);
2316 }
2317 }
2318
2319 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002320 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002321
2322 return rc;
2323}
2324
2325static int gsm48_cc_tx_release_compl(struct gsm_trans *trans, void *arg)
2326{
2327 struct gsm_mncc *rel = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002328 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC REL COMPL");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002329 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Weltec7782de2010-12-21 19:31:41 +01002330 int ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002331
Harald Welte4bfdfe72009-06-10 23:11:52 +08002332 gh->msg_type = GSM48_MT_CC_RELEASE_COMPL;
2333
2334 trans->callref = 0;
Alexander Couzensfbd96f52016-08-29 18:40:02 +02002335
Harald Welte4bfdfe72009-06-10 23:11:52 +08002336 gsm48_stop_cc_timer(trans);
2337
2338 /* cause */
2339 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002340 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002341 /* facility */
2342 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002343 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002344 /* user-user */
2345 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002346 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002347
Harald Weltec7782de2010-12-21 19:31:41 +01002348 ret = gsm48_conn_sendmsg(msg, trans->conn, trans);
2349
Harald Weltedcaf5652009-07-23 18:56:43 +02002350 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002351
Harald Weltec7782de2010-12-21 19:31:41 +01002352 return ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002353}
2354
2355static int gsm48_cc_rx_facility(struct gsm_trans *trans, struct msgb *msg)
2356{
2357 struct gsm48_hdr *gh = msgb_l3(msg);
2358 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2359 struct tlv_parsed tp;
2360 struct gsm_mncc fac;
2361
2362 memset(&fac, 0, sizeof(struct gsm_mncc));
2363 fac.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002364 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_FACILITY, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002365 /* facility */
2366 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2367 fac.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002368 gsm48_decode_facility(&fac.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002369 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2370 }
2371 /* ss-version */
2372 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2373 fac.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002374 gsm48_decode_ssversion(&fac.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002375 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2376 }
2377
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002378 return mncc_recvmsg(trans->net, trans, MNCC_FACILITY_IND, &fac);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002379}
2380
2381static int gsm48_cc_tx_facility(struct gsm_trans *trans, void *arg)
2382{
2383 struct gsm_mncc *fac = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002384 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC FAC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002385 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2386
Harald Welte4bfdfe72009-06-10 23:11:52 +08002387 gh->msg_type = GSM48_MT_CC_FACILITY;
2388
2389 /* facility */
Harald Welte55c8f352010-03-07 23:40:35 +01002390 gsm48_encode_facility(msg, 1, &fac->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002391
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002392 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002393}
2394
2395static int gsm48_cc_rx_hold(struct gsm_trans *trans, struct msgb *msg)
2396{
2397 struct gsm_mncc hold;
2398
2399 memset(&hold, 0, sizeof(struct gsm_mncc));
2400 hold.callref = trans->callref;
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002401 return mncc_recvmsg(trans->net, trans, MNCC_HOLD_IND, &hold);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002402}
2403
2404static int gsm48_cc_tx_hold_ack(struct gsm_trans *trans, void *arg)
2405{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002406 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC HLD ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002407 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2408
Harald Welte4bfdfe72009-06-10 23:11:52 +08002409 gh->msg_type = GSM48_MT_CC_HOLD_ACK;
2410
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002411 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002412}
2413
2414static int gsm48_cc_tx_hold_rej(struct gsm_trans *trans, void *arg)
2415{
2416 struct gsm_mncc *hold_rej = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002417 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC HLD REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002418 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2419
Harald Welte4bfdfe72009-06-10 23:11:52 +08002420 gh->msg_type = GSM48_MT_CC_HOLD_REJ;
2421
2422 /* cause */
2423 if (hold_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002424 gsm48_encode_cause(msg, 1, &hold_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002425 else
Harald Welte55c8f352010-03-07 23:40:35 +01002426 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002427
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002428 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002429}
2430
2431static int gsm48_cc_rx_retrieve(struct gsm_trans *trans, struct msgb *msg)
2432{
2433 struct gsm_mncc retrieve;
2434
2435 memset(&retrieve, 0, sizeof(struct gsm_mncc));
2436 retrieve.callref = trans->callref;
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002437 return mncc_recvmsg(trans->net, trans, MNCC_RETRIEVE_IND,
Harald Welte596fed42009-07-23 19:06:52 +02002438 &retrieve);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002439}
2440
2441static int gsm48_cc_tx_retrieve_ack(struct gsm_trans *trans, void *arg)
2442{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002443 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC RETR ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002444 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2445
Harald Welte4bfdfe72009-06-10 23:11:52 +08002446 gh->msg_type = GSM48_MT_CC_RETR_ACK;
2447
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002448 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002449}
2450
2451static int gsm48_cc_tx_retrieve_rej(struct gsm_trans *trans, void *arg)
2452{
2453 struct gsm_mncc *retrieve_rej = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002454 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC RETR REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002455 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2456
Harald Welte4bfdfe72009-06-10 23:11:52 +08002457 gh->msg_type = GSM48_MT_CC_RETR_REJ;
2458
2459 /* cause */
2460 if (retrieve_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002461 gsm48_encode_cause(msg, 1, &retrieve_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002462 else
Harald Welte55c8f352010-03-07 23:40:35 +01002463 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002464
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002465 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002466}
2467
2468static int gsm48_cc_rx_start_dtmf(struct gsm_trans *trans, struct msgb *msg)
2469{
2470 struct gsm48_hdr *gh = msgb_l3(msg);
2471 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2472 struct tlv_parsed tp;
2473 struct gsm_mncc dtmf;
2474
2475 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2476 dtmf.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002477 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002478 /* keypad facility */
2479 if (TLVP_PRESENT(&tp, GSM48_IE_KPD_FACILITY)) {
2480 dtmf.fields |= MNCC_F_KEYPAD;
Harald Welte55c8f352010-03-07 23:40:35 +01002481 gsm48_decode_keypad(&dtmf.keypad,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002482 TLVP_VAL(&tp, GSM48_IE_KPD_FACILITY)-1);
2483 }
2484
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002485 return mncc_recvmsg(trans->net, trans, MNCC_START_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002486}
2487
2488static int gsm48_cc_tx_start_dtmf_ack(struct gsm_trans *trans, void *arg)
2489{
2490 struct gsm_mncc *dtmf = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002491 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 DTMF ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002492 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2493
Harald Welte4bfdfe72009-06-10 23:11:52 +08002494 gh->msg_type = GSM48_MT_CC_START_DTMF_ACK;
2495
2496 /* keypad */
2497 if (dtmf->fields & MNCC_F_KEYPAD)
Harald Welte55c8f352010-03-07 23:40:35 +01002498 gsm48_encode_keypad(msg, dtmf->keypad);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002499
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002500 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002501}
2502
2503static int gsm48_cc_tx_start_dtmf_rej(struct gsm_trans *trans, void *arg)
2504{
2505 struct gsm_mncc *dtmf = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002506 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 DTMF REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002507 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2508
Harald Welte4bfdfe72009-06-10 23:11:52 +08002509 gh->msg_type = GSM48_MT_CC_START_DTMF_REJ;
2510
2511 /* cause */
2512 if (dtmf->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002513 gsm48_encode_cause(msg, 1, &dtmf->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002514 else
Harald Welte55c8f352010-03-07 23:40:35 +01002515 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002516
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002517 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002518}
2519
2520static int gsm48_cc_tx_stop_dtmf_ack(struct gsm_trans *trans, void *arg)
2521{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002522 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 DTMF STP ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002523 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2524
Harald Welte4bfdfe72009-06-10 23:11:52 +08002525 gh->msg_type = GSM48_MT_CC_STOP_DTMF_ACK;
2526
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002527 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002528}
2529
2530static int gsm48_cc_rx_stop_dtmf(struct gsm_trans *trans, struct msgb *msg)
2531{
2532 struct gsm_mncc dtmf;
2533
2534 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2535 dtmf.callref = trans->callref;
2536
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002537 return mncc_recvmsg(trans->net, trans, MNCC_STOP_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002538}
2539
2540static int gsm48_cc_rx_modify(struct gsm_trans *trans, struct msgb *msg)
2541{
2542 struct gsm48_hdr *gh = msgb_l3(msg);
2543 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2544 struct tlv_parsed tp;
2545 struct gsm_mncc modify;
2546
2547 memset(&modify, 0, sizeof(struct gsm_mncc));
2548 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002549 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002550 /* bearer capability */
2551 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2552 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002553 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002554 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Philipp Maierfbf66102017-04-09 12:32:51 +02002555
2556 /* Create a copy of the bearer capability
2557 * in the transaction struct, so we can use
2558 * this information later */
2559 memcpy(&trans->bearer_cap,&modify.bearer_cap,
2560 sizeof(trans->bearer_cap));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002561 }
2562
2563 new_cc_state(trans, GSM_CSTATE_MO_ORIG_MODIFY);
2564
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002565 return mncc_recvmsg(trans->net, trans, MNCC_MODIFY_IND, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002566}
2567
2568static int gsm48_cc_tx_modify(struct gsm_trans *trans, void *arg)
2569{
2570 struct gsm_mncc *modify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002571 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC MOD");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002572 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2573
Harald Welte4bfdfe72009-06-10 23:11:52 +08002574 gh->msg_type = GSM48_MT_CC_MODIFY;
2575
2576 gsm48_start_cc_timer(trans, 0x323, GSM48_T323);
2577
2578 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002579 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4804c552018-02-12 12:30:54 +01002580 memcpy(&trans->bearer_cap, &modify->bearer_cap, sizeof(trans->bearer_cap));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002581
2582 new_cc_state(trans, GSM_CSTATE_MO_TERM_MODIFY);
2583
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002584 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002585}
2586
2587static int gsm48_cc_rx_modify_complete(struct gsm_trans *trans, struct msgb *msg)
2588{
2589 struct gsm48_hdr *gh = msgb_l3(msg);
2590 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2591 struct tlv_parsed tp;
2592 struct gsm_mncc modify;
2593
2594 gsm48_stop_cc_timer(trans);
2595
2596 memset(&modify, 0, sizeof(struct gsm_mncc));
2597 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002598 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002599 /* bearer capability */
2600 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2601 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002602 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002603 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Philipp Maierfbf66102017-04-09 12:32:51 +02002604
2605 /* Create a copy of the bearer capability
2606 * in the transaction struct, so we can use
2607 * this information later */
2608 memcpy(&trans->bearer_cap,&modify.bearer_cap,
2609 sizeof(trans->bearer_cap));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002610 }
2611
2612 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2613
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002614 return mncc_recvmsg(trans->net, trans, MNCC_MODIFY_CNF, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002615}
2616
2617static int gsm48_cc_tx_modify_complete(struct gsm_trans *trans, void *arg)
2618{
2619 struct gsm_mncc *modify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002620 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC MOD COMPL");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002621 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2622
Harald Welte4bfdfe72009-06-10 23:11:52 +08002623 gh->msg_type = GSM48_MT_CC_MODIFY_COMPL;
2624
2625 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002626 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4804c552018-02-12 12:30:54 +01002627 memcpy(&trans->bearer_cap, &modify->bearer_cap, sizeof(trans->bearer_cap));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002628
2629 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2630
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002631 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002632}
2633
2634static int gsm48_cc_rx_modify_reject(struct gsm_trans *trans, struct msgb *msg)
2635{
2636 struct gsm48_hdr *gh = msgb_l3(msg);
2637 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2638 struct tlv_parsed tp;
2639 struct gsm_mncc modify;
2640
2641 gsm48_stop_cc_timer(trans);
2642
2643 memset(&modify, 0, sizeof(struct gsm_mncc));
2644 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002645 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, GSM48_IE_CAUSE);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002646 /* bearer capability */
2647 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2648 modify.fields |= GSM48_IE_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002649 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002650 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Philipp Maierfbf66102017-04-09 12:32:51 +02002651
2652 /* Create a copy of the bearer capability
2653 * in the transaction struct, so we can use
2654 * this information later */
2655 memcpy(&trans->bearer_cap,&modify.bearer_cap,
2656 sizeof(trans->bearer_cap));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002657 }
2658 /* cause */
2659 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2660 modify.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002661 gsm48_decode_cause(&modify.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002662 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2663 }
2664
2665 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2666
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002667 return mncc_recvmsg(trans->net, trans, MNCC_MODIFY_REJ, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002668}
2669
2670static int gsm48_cc_tx_modify_reject(struct gsm_trans *trans, void *arg)
2671{
2672 struct gsm_mncc *modify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002673 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC MOD REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002674 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2675
Harald Welte4bfdfe72009-06-10 23:11:52 +08002676 gh->msg_type = GSM48_MT_CC_MODIFY_REJECT;
2677
2678 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002679 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4804c552018-02-12 12:30:54 +01002680 memcpy(&trans->bearer_cap, &modify->bearer_cap, sizeof(trans->bearer_cap));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002681 /* cause */
Harald Welte55c8f352010-03-07 23:40:35 +01002682 gsm48_encode_cause(msg, 1, &modify->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002683
2684 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2685
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002686 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002687}
2688
2689static int gsm48_cc_tx_notify(struct gsm_trans *trans, void *arg)
2690{
2691 struct gsm_mncc *notify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002692 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC NOT");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002693 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2694
Harald Welte4bfdfe72009-06-10 23:11:52 +08002695 gh->msg_type = GSM48_MT_CC_NOTIFY;
2696
2697 /* notify */
Harald Welte55c8f352010-03-07 23:40:35 +01002698 gsm48_encode_notify(msg, notify->notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002699
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002700 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002701}
2702
2703static int gsm48_cc_rx_notify(struct gsm_trans *trans, struct msgb *msg)
2704{
2705 struct gsm48_hdr *gh = msgb_l3(msg);
2706 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2707// struct tlv_parsed tp;
2708 struct gsm_mncc notify;
2709
2710 memset(&notify, 0, sizeof(struct gsm_mncc));
2711 notify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002712// tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002713 if (payload_len >= 1)
Harald Welte55c8f352010-03-07 23:40:35 +01002714 gsm48_decode_notify(&notify.notify, gh->data);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002715
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002716 return mncc_recvmsg(trans->net, trans, MNCC_NOTIFY_IND, &notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002717}
2718
2719static int gsm48_cc_tx_userinfo(struct gsm_trans *trans, void *arg)
2720{
2721 struct gsm_mncc *user = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002722 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 USR INFO");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002723 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2724
Harald Welte4bfdfe72009-06-10 23:11:52 +08002725 gh->msg_type = GSM48_MT_CC_USER_INFO;
2726
2727 /* user-user */
2728 if (user->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002729 gsm48_encode_useruser(msg, 1, &user->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002730 /* more data */
2731 if (user->more)
Harald Welte55c8f352010-03-07 23:40:35 +01002732 gsm48_encode_more(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002733
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002734 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002735}
2736
2737static int gsm48_cc_rx_userinfo(struct gsm_trans *trans, struct msgb *msg)
2738{
2739 struct gsm48_hdr *gh = msgb_l3(msg);
2740 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2741 struct tlv_parsed tp;
2742 struct gsm_mncc user;
2743
2744 memset(&user, 0, sizeof(struct gsm_mncc));
2745 user.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002746 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_USER_USER, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002747 /* user-user */
2748 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2749 user.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002750 gsm48_decode_useruser(&user.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002751 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2752 }
2753 /* more data */
2754 if (TLVP_PRESENT(&tp, GSM48_IE_MORE_DATA))
2755 user.more = 1;
2756
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002757 return mncc_recvmsg(trans->net, trans, MNCC_USERINFO_IND, &user);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002758}
2759
Philipp Maierfbf66102017-04-09 12:32:51 +02002760static void mncc_recv_rtp(struct gsm_network *net, uint32_t callref,
2761 int cmd, uint32_t addr, uint16_t port, uint32_t payload_type,
2762 uint32_t payload_msg_type)
2763{
2764 uint8_t data[sizeof(struct gsm_mncc)];
2765 struct gsm_mncc_rtp *rtp;
2766
2767 memset(&data, 0, sizeof(data));
2768 rtp = (struct gsm_mncc_rtp *) &data[0];
2769
2770 rtp->callref = callref;
2771 rtp->msg_type = cmd;
2772 rtp->ip = addr;
2773 rtp->port = port;
2774 rtp->payload_type = payload_type;
2775 rtp->payload_msg_type = payload_msg_type;
2776 mncc_recvmsg(net, NULL, cmd, (struct gsm_mncc *)data);
2777}
2778
2779static void mncc_recv_rtp_sock(struct gsm_network *net, struct gsm_trans *trans, int cmd)
2780{
2781 int msg_type;
2782
2783 /* FIXME This has to be set to some meaningful value.
2784 * Possible options are:
2785 * GSM_TCHF_FRAME, GSM_TCHF_FRAME_EFR,
2786 * GSM_TCHH_FRAME, GSM_TCH_FRAME_AMR
2787 * (0 if unknown) */
2788 msg_type = GSM_TCHF_FRAME;
2789
Philipp Maier621ba032017-11-07 17:19:25 +01002790 uint32_t addr = inet_addr(trans->conn->rtp.local_addr_cn);
2791 uint16_t port = trans->conn->rtp.local_port_cn;
2792
2793 LOGP(DMNCC, LOGL_ERROR, "RTP create for non-existing trans\n");
2794
2795 if (addr == INADDR_NONE) {
2796 LOGP(DMNCC, LOGL_ERROR,
2797 "(subscriber:%s) external MNCC is signalling invalid IP-Address\n",
2798 vlr_subscr_name(trans->vsub));
2799 return;
2800 }
2801 if (port == 0) {
2802 LOGP(DMNCC, LOGL_ERROR,
2803 "(subscriber:%s) external MNCC is signalling invalid Port\n",
2804 vlr_subscr_name(trans->vsub));
2805 return;
2806 }
Philipp Maierfbf66102017-04-09 12:32:51 +02002807
2808 /* FIXME: This has to be set to some meaningful value,
2809 * before the MSC-Split, this value was pulled from
2810 * lchan->abis_ip.rtp_payload */
2811 uint32_t payload_type = 0;
2812
2813 return mncc_recv_rtp(net, trans->callref, cmd,
2814 addr,
2815 port,
2816 payload_type,
2817 msg_type);
2818}
2819
2820static void mncc_recv_rtp_err(struct gsm_network *net, uint32_t callref, int cmd)
2821{
2822 return mncc_recv_rtp(net, callref, cmd, 0, 0, 0, 0);
2823}
2824
2825static int tch_rtp_create(struct gsm_network *net, uint32_t callref)
2826{
2827 struct gsm_trans *trans;
2828 int rc;
2829
2830 /* Find callref */
2831 trans = trans_find_by_callref(net, callref);
2832 if (!trans) {
2833 LOGP(DMNCC, LOGL_ERROR, "RTP create for non-existing trans\n");
2834 mncc_recv_rtp_err(net, callref, MNCC_RTP_CREATE);
2835 return -EIO;
2836 }
2837 log_set_context(LOG_CTX_VLR_SUBSCR, trans->vsub);
2838 if (!trans->conn) {
2839 LOGP(DMNCC, LOGL_NOTICE, "RTP create for trans without conn\n");
2840 mncc_recv_rtp_err(net, callref, MNCC_RTP_CREATE);
2841 return 0;
2842 }
2843
2844 trans->conn->mncc_rtp_bridge = 1;
2845
Philipp Maier621ba032017-11-07 17:19:25 +01002846 /* When we call msc_mgcp_call_assignment() we will trigger, depending
Philipp Maierfbf66102017-04-09 12:32:51 +02002847 * on the RAN type the call assignment on the A or Iu interface.
Philipp Maier621ba032017-11-07 17:19:25 +01002848 * msc_mgcp_call_assignment() also takes care about sending the CRCX
Philipp Maierfbf66102017-04-09 12:32:51 +02002849 * command to the MGCP-GW. The CRCX will return the port number,
2850 * where the PBX (e.g. Asterisk) will send its RTP stream to. We
2851 * have to return this port number back to the MNCC by sending
2852 * it back with the TCH_RTP_CREATE message. To make sure that
2853 * this message is sent AFTER the response to CRCX from the
Philipp Maier621ba032017-11-07 17:19:25 +01002854 * MGCP-GW has arrived, we need will instruct msc_mgcp_call_assignment()
Philipp Maierfbf66102017-04-09 12:32:51 +02002855 * to take care of this by setting trans->tch_rtp_create to true.
2856 * This will make sure that gsm48_tch_rtp_create() (below) is
2857 * called as soon as the local port number has become known. */
2858 trans->tch_rtp_create = true;
2859
2860 /* Assign call (if not done yet) */
2861 if (trans->assignment_done == false) {
Philipp Maier621ba032017-11-07 17:19:25 +01002862 rc = msc_mgcp_call_assignment(trans);
Philipp Maierfbf66102017-04-09 12:32:51 +02002863 trans->assignment_done = true;
2864 }
2865 else
2866 rc = 0;
2867
2868 return rc;
2869}
2870
2871/* Trigger TCH_RTP_CREATE acknowledgement */
2872int gsm48_tch_rtp_create(struct gsm_trans *trans)
2873{
2874 /* This function is called as soon as the port, on which the
2875 * mgcp-gw expects the incoming RTP stream from the remote
2876 * end (e.g. Asterisk) is known. */
2877
2878 struct gsm_subscriber_connection *conn = trans->conn;
2879 struct gsm_network *network = conn->network;
2880
2881 mncc_recv_rtp_sock(network, trans, MNCC_RTP_CREATE);
2882 return 0;
2883}
2884
2885static int tch_rtp_connect(struct gsm_network *net, void *arg)
2886{
2887 struct gsm_trans *trans;
2888 struct gsm_mncc_rtp *rtp = arg;
Philipp Maier621ba032017-11-07 17:19:25 +01002889 struct in_addr addr;
Philipp Maierfbf66102017-04-09 12:32:51 +02002890
2891 /* Find callref */
2892 trans = trans_find_by_callref(net, rtp->callref);
2893 if (!trans) {
2894 LOGP(DMNCC, LOGL_ERROR, "RTP connect for non-existing trans\n");
2895 mncc_recv_rtp_err(net, rtp->callref, MNCC_RTP_CONNECT);
2896 return -EIO;
2897 }
2898 log_set_context(LOG_CTX_VLR_SUBSCR, trans->vsub);
2899 if (!trans->conn) {
2900 LOGP(DMNCC, LOGL_ERROR, "RTP connect for trans without conn\n");
2901 mncc_recv_rtp_err(net, rtp->callref, MNCC_RTP_CONNECT);
2902 return 0;
2903 }
2904
Philipp Maier621ba032017-11-07 17:19:25 +01002905 addr.s_addr = osmo_htonl(rtp->ip);
2906 return msc_mgcp_call_complete(trans, rtp->port, inet_ntoa(addr));
Philipp Maierfbf66102017-04-09 12:32:51 +02002907}
2908
Harald Welte4bfdfe72009-06-10 23:11:52 +08002909static struct downstate {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02002910 uint32_t states;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002911 int type;
2912 int (*rout) (struct gsm_trans *trans, void *arg);
2913} downstatelist[] = {
2914 /* mobile originating call establishment */
2915 {SBIT(GSM_CSTATE_INITIATED), /* 5.2.1.2 */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02002916 MNCC_CALL_PROC_REQ, gsm48_cc_tx_call_proc_and_assign},
Harald Welte4bfdfe72009-06-10 23:11:52 +08002917 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.2 | 5.2.1.5 */
2918 MNCC_ALERT_REQ, gsm48_cc_tx_alerting},
2919 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC) | SBIT(GSM_CSTATE_CALL_DELIVERED), /* 5.2.1.2 | 5.2.1.6 | 5.2.1.6 */
2920 MNCC_SETUP_RSP, gsm48_cc_tx_connect},
2921 {SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.4.2 */
2922 MNCC_PROGRESS_REQ, gsm48_cc_tx_progress},
2923 /* mobile terminating call establishment */
2924 {SBIT(GSM_CSTATE_NULL), /* 5.2.2.1 */
2925 MNCC_SETUP_REQ, gsm48_cc_tx_setup},
2926 {SBIT(GSM_CSTATE_CONNECT_REQUEST),
2927 MNCC_SETUP_COMPL_REQ, gsm48_cc_tx_connect_ack},
2928 /* signalling during call */
2929 {SBIT(GSM_CSTATE_ACTIVE),
2930 MNCC_NOTIFY_REQ, gsm48_cc_tx_notify},
2931 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ),
2932 MNCC_FACILITY_REQ, gsm48_cc_tx_facility},
2933 {ALL_STATES,
2934 MNCC_START_DTMF_RSP, gsm48_cc_tx_start_dtmf_ack},
2935 {ALL_STATES,
2936 MNCC_START_DTMF_REJ, gsm48_cc_tx_start_dtmf_rej},
2937 {ALL_STATES,
2938 MNCC_STOP_DTMF_RSP, gsm48_cc_tx_stop_dtmf_ack},
2939 {SBIT(GSM_CSTATE_ACTIVE),
2940 MNCC_HOLD_CNF, gsm48_cc_tx_hold_ack},
2941 {SBIT(GSM_CSTATE_ACTIVE),
2942 MNCC_HOLD_REJ, gsm48_cc_tx_hold_rej},
2943 {SBIT(GSM_CSTATE_ACTIVE),
2944 MNCC_RETRIEVE_CNF, gsm48_cc_tx_retrieve_ack},
2945 {SBIT(GSM_CSTATE_ACTIVE),
2946 MNCC_RETRIEVE_REJ, gsm48_cc_tx_retrieve_rej},
2947 {SBIT(GSM_CSTATE_ACTIVE),
2948 MNCC_MODIFY_REQ, gsm48_cc_tx_modify},
2949 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
2950 MNCC_MODIFY_RSP, gsm48_cc_tx_modify_complete},
2951 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
2952 MNCC_MODIFY_REJ, gsm48_cc_tx_modify_reject},
2953 {SBIT(GSM_CSTATE_ACTIVE),
2954 MNCC_USERINFO_REQ, gsm48_cc_tx_userinfo},
2955 /* clearing */
2956 {SBIT(GSM_CSTATE_INITIATED),
2957 MNCC_REJ_REQ, gsm48_cc_tx_release_compl},
2958 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_DISCONNECT_IND) - SBIT(GSM_CSTATE_RELEASE_REQ) - SBIT(GSM_CSTATE_DISCONNECT_REQ), /* 5.4.4 */
2959 MNCC_DISC_REQ, gsm48_cc_tx_disconnect},
2960 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
2961 MNCC_REL_REQ, gsm48_cc_tx_release},
Harald Welte4bfdfe72009-06-10 23:11:52 +08002962};
2963
2964#define DOWNSLLEN \
2965 (sizeof(downstatelist) / sizeof(struct downstate))
2966
2967
Harald Welte76556372010-12-22 23:57:45 +01002968int mncc_tx_to_cc(struct gsm_network *net, int msg_type, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002969{
Harald Welte1a6f7982009-08-09 18:52:33 +02002970 int i, rc = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002971 struct gsm_trans *trans = NULL, *transt;
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002972 struct gsm_subscriber_connection *conn = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002973 struct gsm_mncc *data = arg, rel;
2974
Harald Welte04dc88f2010-12-22 21:45:05 +01002975 DEBUGP(DMNCC, "receive message %s\n", get_mncc_name(msg_type));
2976
Harald Welte4bfdfe72009-06-10 23:11:52 +08002977 /* handle special messages */
2978 switch(msg_type) {
2979 case MNCC_BRIDGE:
Max3ffce192016-04-25 15:22:00 +02002980 rc = tch_bridge(net, arg);
2981 if (rc < 0)
2982 disconnect_bridge(net, arg, -rc);
2983 return rc;
Philipp Maierfbf66102017-04-09 12:32:51 +02002984 case MNCC_RTP_CREATE:
2985 return tch_rtp_create(net, data->callref);
2986 case MNCC_RTP_CONNECT:
2987 return tch_rtp_connect(net, arg);
2988 case MNCC_RTP_FREE:
2989 /* unused right now */
2990 return -EIO;
2991
Harald Welte4bfdfe72009-06-10 23:11:52 +08002992 case MNCC_FRAME_DROP:
Harald Welte4bfdfe72009-06-10 23:11:52 +08002993 case MNCC_FRAME_RECV:
Harald Welteda7ab742009-12-19 22:23:05 +01002994 case GSM_TCHF_FRAME:
Andreas Eversbergd074f8f2013-12-06 16:59:10 +01002995 case GSM_TCHF_FRAME_EFR:
Andreas Eversberg63bfdd82014-01-17 19:06:38 +01002996 case GSM_TCHH_FRAME:
Andreas Eversbergd8967f72012-03-08 14:39:19 +01002997 case GSM_TCH_FRAME_AMR:
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02002998 LOGP(DMNCC, LOGL_ERROR, "RTP streams must be handled externally; %s not supported.\n",
2999 get_mncc_name(msg_type));
3000 return -ENOTSUP;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003001 }
3002
3003 memset(&rel, 0, sizeof(struct gsm_mncc));
3004 rel.callref = data->callref;
3005
3006 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02003007 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003008
3009 /* Callref unknown */
3010 if (!trans) {
Harald Welte2483f1b2016-06-19 18:06:02 +02003011 struct vlr_subscr *vsub;
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003012
Harald Welte4a3464c2009-07-04 10:11:24 +02003013 if (msg_type != MNCC_SETUP_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003014 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3015 "Received '%s' from MNCC with "
3016 "unknown callref %d\n", data->called.number,
3017 get_mncc_name(msg_type), data->callref);
3018 /* Invalid call reference */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003019 return mncc_release_ind(net, NULL, data->callref,
3020 GSM48_CAUSE_LOC_PRN_S_LU,
3021 GSM48_CC_CAUSE_INVAL_TRANS_ID);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003022 }
Andreas Eversbergc079be42009-06-15 23:22:09 +02003023 if (!data->called.number[0] && !data->imsi[0]) {
3024 DEBUGP(DCC, "(bts - trx - ts - ti) "
3025 "Received '%s' from MNCC with "
3026 "no number or IMSI\n", get_mncc_name(msg_type));
3027 /* Invalid number */
3028 return mncc_release_ind(net, NULL, data->callref,
3029 GSM48_CAUSE_LOC_PRN_S_LU,
3030 GSM48_CC_CAUSE_INV_NR_FORMAT);
3031 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003032 /* New transaction due to setup, find subscriber */
Andreas Eversbergc079be42009-06-15 23:22:09 +02003033 if (data->called.number[0])
Harald Welte2483f1b2016-06-19 18:06:02 +02003034 vsub = vlr_subscr_find_by_msisdn(net->vlr,
3035 data->called.number);
Andreas Eversbergc079be42009-06-15 23:22:09 +02003036 else
Harald Welte2483f1b2016-06-19 18:06:02 +02003037 vsub = vlr_subscr_find_by_imsi(net->vlr, data->imsi);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01003038
3039 /* update the subscriber we deal with */
Harald Welte2483f1b2016-06-19 18:06:02 +02003040 log_set_context(LOG_CTX_VLR_SUBSCR, vsub);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01003041
Harald Welte4bfdfe72009-06-10 23:11:52 +08003042 /* If subscriber is not found */
Harald Welte2483f1b2016-06-19 18:06:02 +02003043 if (!vsub) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003044 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3045 "Received '%s' from MNCC with "
3046 "unknown subscriber %s\n", data->called.number,
3047 get_mncc_name(msg_type), data->called.number);
3048 /* Unknown subscriber */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003049 return mncc_release_ind(net, NULL, data->callref,
3050 GSM48_CAUSE_LOC_PRN_S_LU,
3051 GSM48_CC_CAUSE_UNASSIGNED_NR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003052 }
3053 /* If subscriber is not "attached" */
Harald Welte2483f1b2016-06-19 18:06:02 +02003054 if (!vsub->lac) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003055 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3056 "Received '%s' from MNCC with "
3057 "detached subscriber %s\n", data->called.number,
Neels Hofmeyr7bbac162017-11-22 02:54:45 +01003058 get_mncc_name(msg_type), vlr_subscr_name(vsub));
Harald Welte2483f1b2016-06-19 18:06:02 +02003059 vlr_subscr_put(vsub);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003060 /* Temporarily out of order */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003061 return mncc_release_ind(net, NULL, data->callref,
3062 GSM48_CAUSE_LOC_PRN_S_LU,
3063 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003064 }
3065 /* Create transaction */
Harald Welte2483f1b2016-06-19 18:06:02 +02003066 trans = trans_alloc(net, vsub, GSM48_PDISC_CC, 0xff, data->callref);
Harald Weltedcaf5652009-07-23 18:56:43 +02003067 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003068 DEBUGP(DCC, "No memory for trans.\n");
Harald Welte2483f1b2016-06-19 18:06:02 +02003069 vlr_subscr_put(vsub);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003070 /* Ressource unavailable */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003071 mncc_release_ind(net, NULL, data->callref,
3072 GSM48_CAUSE_LOC_PRN_S_LU,
3073 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003074 return -ENOMEM;
3075 }
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003076
3077 /* Find conn */
Harald Welte2483f1b2016-06-19 18:06:02 +02003078 conn = connection_for_subscr(vsub);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003079
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003080 /* If subscriber has no conn */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003081 if (!conn) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003082 /* find transaction with this subscriber already paging */
3083 llist_for_each_entry(transt, &net->trans_list, entry) {
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003084 /* Transaction of our conn? */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003085 if (transt == trans ||
Harald Welte2483f1b2016-06-19 18:06:02 +02003086 transt->vsub != vsub)
Harald Welte4bfdfe72009-06-10 23:11:52 +08003087 continue;
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01003088 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003089 "Received '%s' from MNCC with "
3090 "unallocated channel, paging already "
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01003091 "started for lac %d.\n",
Harald Welte4bfdfe72009-06-10 23:11:52 +08003092 data->called.number,
Harald Welte2483f1b2016-06-19 18:06:02 +02003093 get_mncc_name(msg_type), vsub->lac);
3094 vlr_subscr_put(vsub);
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003095 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003096 return 0;
3097 }
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003098 /* store setup information until paging succeeds */
Harald Weltedcaf5652009-07-23 18:56:43 +02003099 memcpy(&trans->cc.msg, data, sizeof(struct gsm_mncc));
Sylvain Munaut567c8dc2010-12-01 22:17:36 +01003100
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02003101 /* Request a channel */
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003102 trans->paging_request = subscr_request_conn(
Harald Welte2483f1b2016-06-19 18:06:02 +02003103 vsub,
Harald Welte2483f1b2016-06-19 18:06:02 +02003104 setup_trig_pag_evt,
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003105 trans,
3106 "MNCC: establish call");
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01003107 if (!trans->paging_request) {
3108 LOGP(DCC, LOGL_ERROR, "Failed to allocate paging token.\n");
Harald Welte2483f1b2016-06-19 18:06:02 +02003109 vlr_subscr_put(vsub);
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01003110 trans_free(trans);
3111 return 0;
3112 }
Harald Welte2483f1b2016-06-19 18:06:02 +02003113 vlr_subscr_put(vsub);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003114 return 0;
3115 }
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003116
3117 /* Assign conn */
Neels Hofmeyr6166f292017-11-22 14:33:12 +01003118 trans->conn = msc_subscr_conn_get(conn, MSC_CONN_USE_TRANS_CC);
Harald Welte2483f1b2016-06-19 18:06:02 +02003119 vlr_subscr_put(vsub);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01003120 } else {
3121 /* update the subscriber we deal with */
Harald Welte2483f1b2016-06-19 18:06:02 +02003122 log_set_context(LOG_CTX_VLR_SUBSCR, trans->vsub);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003123 }
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01003124
3125 if (trans->conn)
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003126 conn = trans->conn;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003127
3128 /* if paging did not respond yet */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003129 if (!conn) {
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003130 DEBUGP(DCC, "(sub %s) "
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003131 "Received '%s' from MNCC in paging state\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02003132 vlr_subscr_msisdn_or_name(trans->vsub),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003133 get_mncc_name(msg_type));
Harald Weltec66b71c2009-06-11 14:23:20 +08003134 mncc_set_cause(&rel, GSM48_CAUSE_LOC_PRN_S_LU,
3135 GSM48_CC_CAUSE_NORM_CALL_CLEAR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003136 if (msg_type == MNCC_REL_REQ)
3137 rc = mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
3138 else
3139 rc = mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
3140 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02003141 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003142 return rc;
Philipp Maiere4db08a2017-11-07 15:48:29 +01003143 } else {
3144 DEBUGP(DCC, "(ti %02x sub %s) "
3145 "Received '%s' from MNCC in state %d (%s)\n",
3146 trans->transaction_id,
3147 vlr_subscr_msisdn_or_name(trans->conn->vsub),
3148 get_mncc_name(msg_type), trans->cc.state,
3149 gsm48_cc_state_name(trans->cc.state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08003150 }
3151
Harald Welte4bfdfe72009-06-10 23:11:52 +08003152 /* Find function for current state and message */
3153 for (i = 0; i < DOWNSLLEN; i++)
3154 if ((msg_type == downstatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003155 && ((1 << trans->cc.state) & downstatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003156 break;
3157 if (i == DOWNSLLEN) {
3158 DEBUGP(DCC, "Message unhandled at this state.\n");
3159 return 0;
3160 }
3161
3162 rc = downstatelist[i].rout(trans, arg);
3163
3164 return rc;
3165}
3166
3167
3168static struct datastate {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02003169 uint32_t states;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003170 int type;
3171 int (*rout) (struct gsm_trans *trans, struct msgb *msg);
3172} datastatelist[] = {
3173 /* mobile originating call establishment */
3174 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3175 GSM48_MT_CC_SETUP, gsm48_cc_rx_setup},
3176 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3177 GSM48_MT_CC_EMERG_SETUP, gsm48_cc_rx_setup},
3178 {SBIT(GSM_CSTATE_CONNECT_IND), /* 5.2.1.2 */
3179 GSM48_MT_CC_CONNECT_ACK, gsm48_cc_rx_connect_ack},
3180 /* mobile terminating call establishment */
3181 {SBIT(GSM_CSTATE_CALL_PRESENT), /* 5.2.2.3.2 */
3182 GSM48_MT_CC_CALL_CONF, gsm48_cc_rx_call_conf},
3183 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF), /* ???? | 5.2.2.3.2 */
3184 GSM48_MT_CC_ALERTING, gsm48_cc_rx_alerting},
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003185 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF) | SBIT(GSM_CSTATE_CALL_RECEIVED), /* (5.2.2.6) | 5.2.2.6 | 5.2.2.6 */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003186 GSM48_MT_CC_CONNECT, gsm48_cc_rx_connect},
3187 /* signalling during call */
3188 {ALL_STATES - SBIT(GSM_CSTATE_NULL),
3189 GSM48_MT_CC_FACILITY, gsm48_cc_rx_facility},
3190 {SBIT(GSM_CSTATE_ACTIVE),
3191 GSM48_MT_CC_NOTIFY, gsm48_cc_rx_notify},
3192 {ALL_STATES,
3193 GSM48_MT_CC_START_DTMF, gsm48_cc_rx_start_dtmf},
3194 {ALL_STATES,
3195 GSM48_MT_CC_STOP_DTMF, gsm48_cc_rx_stop_dtmf},
3196 {ALL_STATES,
3197 GSM48_MT_CC_STATUS_ENQ, gsm48_cc_rx_status_enq},
3198 {SBIT(GSM_CSTATE_ACTIVE),
3199 GSM48_MT_CC_HOLD, gsm48_cc_rx_hold},
3200 {SBIT(GSM_CSTATE_ACTIVE),
3201 GSM48_MT_CC_RETR, gsm48_cc_rx_retrieve},
3202 {SBIT(GSM_CSTATE_ACTIVE),
3203 GSM48_MT_CC_MODIFY, gsm48_cc_rx_modify},
3204 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3205 GSM48_MT_CC_MODIFY_COMPL, gsm48_cc_rx_modify_complete},
3206 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3207 GSM48_MT_CC_MODIFY_REJECT, gsm48_cc_rx_modify_reject},
3208 {SBIT(GSM_CSTATE_ACTIVE),
3209 GSM48_MT_CC_USER_INFO, gsm48_cc_rx_userinfo},
3210 /* clearing */
3211 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3212 GSM48_MT_CC_DISCONNECT, gsm48_cc_rx_disconnect},
3213 {ALL_STATES - SBIT(GSM_CSTATE_NULL), /* 5.4.4.1.2.2 */
3214 GSM48_MT_CC_RELEASE, gsm48_cc_rx_release},
3215 {ALL_STATES, /* 5.4.3.4 */
3216 GSM48_MT_CC_RELEASE_COMPL, gsm48_cc_rx_release_compl},
3217};
3218
3219#define DATASLLEN \
3220 (sizeof(datastatelist) / sizeof(struct datastate))
3221
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003222static int gsm0408_rcv_cc(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4bc90a12008-12-27 16:32:52 +00003223{
3224 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyr531734a2016-03-14 16:13:24 +01003225 uint8_t msg_type = gsm48_hdr_msg_type(gh);
Neels Hofmeyr961bd0b2016-03-14 16:13:25 +01003226 uint8_t transaction_id = gsm48_hdr_trans_id_flip_ti(gh);
Harald Weltedcaf5652009-07-23 18:56:43 +02003227 struct gsm_trans *trans = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003228 int i, rc = 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00003229
Harald Welte4bfdfe72009-06-10 23:11:52 +08003230 if (msg_type & 0x80) {
3231 DEBUGP(DCC, "MSG 0x%2x not defined for PD error\n", msg_type);
3232 return -EINVAL;
Harald Welte4bc90a12008-12-27 16:32:52 +00003233 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003234
Harald Welte2483f1b2016-06-19 18:06:02 +02003235 if (!conn->vsub) {
3236 LOGP(DCC, LOGL_ERROR, "Invalid conn: no subscriber\n");
Neels Hofmeyr35706dd2016-12-22 01:58:03 +01003237 return -EINVAL;
3238 }
3239
Harald Welte4bfdfe72009-06-10 23:11:52 +08003240 /* Find transaction */
Jacob Erlbeckdae1f642014-12-02 14:22:53 +01003241 trans = trans_find_by_id(conn, GSM48_PDISC_CC, transaction_id);
Harald Weltedcaf5652009-07-23 18:56:43 +02003242
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003243#if BEFORE_MSCSPLIT
3244 /* Re-enable this log output once we can obtain this information via
3245 * A-interface, see OS#2391. */
Harald Welte6f5aee02009-07-23 21:21:14 +02003246 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003247 "Received '%s' from MS in state %d (%s)\n",
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003248 conn->bts->nr, conn->lchan->ts->trx->nr, conn->lchan->ts->nr,
Harald Welte2483f1b2016-06-19 18:06:02 +02003249 transaction_id, vlr_subscr_msisdn_or_name(conn->vsub),
Harald Weltee95daf192010-03-25 12:13:02 +08003250 gsm48_cc_msg_name(msg_type), trans?(trans->cc.state):0,
3251 gsm48_cc_state_name(trans?(trans->cc.state):0));
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003252#endif
Harald Welte4bfdfe72009-06-10 23:11:52 +08003253
3254 /* Create transaction */
3255 if (!trans) {
Harald Welte6f5aee02009-07-23 21:21:14 +02003256 DEBUGP(DCC, "Unknown transaction ID %x, "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003257 "creating new trans.\n", transaction_id);
3258 /* Create transaction */
Harald Welte2483f1b2016-06-19 18:06:02 +02003259 trans = trans_alloc(conn->network, conn->vsub,
Jacob Erlbeckaf792d62014-12-02 14:22:53 +01003260 GSM48_PDISC_CC,
Harald Weltedcaf5652009-07-23 18:56:43 +02003261 transaction_id, new_callref++);
3262 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003263 DEBUGP(DCC, "No memory for trans.\n");
Holger Hans Peter Freytherb549ddf2011-01-16 18:17:04 +01003264 rc = gsm48_tx_simple(conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02003265 GSM48_PDISC_CC | (transaction_id << 4),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003266 GSM48_MT_CC_RELEASE_COMPL);
3267 return -ENOMEM;
3268 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003269 /* Assign transaction */
Neels Hofmeyr6166f292017-11-22 14:33:12 +01003270 trans->conn = msc_subscr_conn_get(conn, MSC_CONN_USE_TRANS_CC);
Harald Welte2483f1b2016-06-19 18:06:02 +02003271 cm_service_request_concludes(conn, msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003272 }
3273
3274 /* find function for current state and message */
3275 for (i = 0; i < DATASLLEN; i++)
3276 if ((msg_type == datastatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003277 && ((1 << trans->cc.state) & datastatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003278 break;
3279 if (i == DATASLLEN) {
3280 DEBUGP(DCC, "Message unhandled at this state.\n");
3281 return 0;
3282 }
3283
Harald Welte2483f1b2016-06-19 18:06:02 +02003284 assert(trans->vsub);
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02003285
Harald Welte4bfdfe72009-06-10 23:11:52 +08003286 rc = datastatelist[i].rout(trans, msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00003287
Harald Welte2483f1b2016-06-19 18:06:02 +02003288 msc_subscr_conn_communicating(conn);
Harald Welte4bc90a12008-12-27 16:32:52 +00003289 return rc;
3290}
3291
Harald Welte2483f1b2016-06-19 18:06:02 +02003292static bool msg_is_initially_permitted(const struct gsm48_hdr *hdr)
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003293{
Harald Welte2483f1b2016-06-19 18:06:02 +02003294 uint8_t pdisc = gsm48_hdr_pdisc(hdr);
3295 uint8_t msg_type = gsm48_hdr_msg_type(hdr);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003296
Harald Welte2483f1b2016-06-19 18:06:02 +02003297 switch (pdisc) {
3298 case GSM48_PDISC_MM:
3299 switch (msg_type) {
3300 case GSM48_MT_MM_LOC_UPD_REQUEST:
3301 case GSM48_MT_MM_CM_SERV_REQ:
Harald Welte49f8fcb2018-01-24 21:40:19 +01003302 case GSM48_MT_MM_CM_REEST_REQ:
Harald Welte2483f1b2016-06-19 18:06:02 +02003303 case GSM48_MT_MM_AUTH_RESP:
3304 case GSM48_MT_MM_AUTH_FAIL:
3305 case GSM48_MT_MM_ID_RESP:
3306 case GSM48_MT_MM_TMSI_REALL_COMPL:
3307 case GSM48_MT_MM_IMSI_DETACH_IND:
3308 return true;
3309 default:
3310 break;
3311 }
3312 break;
3313 case GSM48_PDISC_RR:
3314 switch (msg_type) {
3315 case GSM48_MT_RR_CIPH_M_COMPL:
3316 case GSM48_MT_RR_PAG_RESP:
3317 return true;
3318 default:
3319 break;
3320 }
3321 break;
3322 default:
3323 break;
Neels Hofmeyr42eb0142016-05-20 17:15:44 +02003324 }
3325
Harald Welte2483f1b2016-06-19 18:06:02 +02003326 return false;
Neels Hofmeyr42eb0142016-05-20 17:15:44 +02003327}
3328
Harald Welte2483f1b2016-06-19 18:06:02 +02003329void cm_service_request_concludes(struct gsm_subscriber_connection *conn,
3330 struct msgb *msg)
3331{
3332
3333 /* If a CM Service Request was received before, this is the request the
3334 * conn was opened for. No need to wait for further messages. */
3335
3336 if (!conn->received_cm_service_request)
3337 return;
3338
3339 if (log_check_level(DMM, LOGL_DEBUG)) {
3340 struct gsm48_hdr *gh = msgb_l3(msg);
3341 uint8_t pdisc = gsm48_hdr_pdisc(gh);
3342 uint8_t msg_type = gsm48_hdr_msg_type(gh);
3343
Neels Hofmeyr78ada642017-03-10 02:15:20 +01003344 DEBUGP(DMM, "%s: rx msg %s:"
Harald Welte2483f1b2016-06-19 18:06:02 +02003345 " received_cm_service_request changes to false\n",
3346 vlr_subscr_name(conn->vsub),
Neels Hofmeyr78ada642017-03-10 02:15:20 +01003347 gsm48_pdisc_msgtype_name(pdisc, msg_type));
Harald Welte2483f1b2016-06-19 18:06:02 +02003348 }
3349 conn->received_cm_service_request = false;
3350}
3351
Harald Weltec2007852018-02-03 21:08:26 +01003352/* TS 24.007 11.2.3.2.3 Message Type Octet / Duplicate Detection */
3353int gsm0407_pdisc_ctr_bin(uint8_t pdisc)
3354{
3355 switch (pdisc) {
3356 case GSM48_PDISC_MM:
3357 case GSM48_PDISC_CC:
3358 case GSM48_PDISC_NC_SS:
3359 return 0;
3360 case GSM48_PDISC_GROUP_CC:
3361 return 1;
3362 case GSM48_PDISC_BCAST_CC:
3363 return 2;
3364 case GSM48_PDISC_LOC:
3365 return 3;
3366 default:
3367 return -1;
3368 }
3369}
3370
3371/* extract the N(SD) and return the modulo value for a R98 message */
3372static uint8_t gsm0407_determine_nsd_ret_modulo_r99(uint8_t pdisc, uint8_t msg_type, uint8_t *n_sd)
3373{
3374 switch (pdisc) {
3375 case GSM48_PDISC_MM:
3376 case GSM48_PDISC_CC:
3377 case GSM48_PDISC_NC_SS:
3378 *n_sd = (msg_type >> 6) & 0x3;
3379 return 4;
3380 case GSM48_PDISC_GROUP_CC:
3381 case GSM48_PDISC_BCAST_CC:
3382 case GSM48_PDISC_LOC:
3383 *n_sd = (msg_type >> 6) & 0x1;
3384 return 2;
3385 default:
3386 /* no sequence number, we cannot detect dups */
3387 return 0;
3388 }
3389}
3390
3391/* extract the N(SD) and return the modulo value for a R99 message */
3392static uint8_t gsm0407_determine_nsd_ret_modulo_r98(uint8_t pdisc, uint8_t msg_type, uint8_t *n_sd)
3393{
3394 switch (pdisc) {
3395 case GSM48_PDISC_MM:
3396 case GSM48_PDISC_CC:
3397 case GSM48_PDISC_NC_SS:
3398 case GSM48_PDISC_GROUP_CC:
3399 case GSM48_PDISC_BCAST_CC:
3400 case GSM48_PDISC_LOC:
3401 *n_sd = (msg_type >> 6) & 0x1;
3402 return 2;
3403 default:
3404 /* no sequence number, we cannot detect dups */
3405 return 0;
3406 }
3407}
3408
3409/* TS 24.007 11.2.3.2 Message Type Octet / Duplicate Detection */
3410static bool gsm0407_is_duplicate(struct gsm_subscriber_connection *conn, struct msgb *msg)
3411{
3412 struct gsm48_hdr *gh;
3413 uint8_t pdisc;
3414 uint8_t n_sd, modulo, bin;
3415
3416 gh = msgb_l3(msg);
3417 pdisc = gsm48_hdr_pdisc(gh);
3418
3419 if (conn->classmark.classmark1_set && conn->classmark.classmark1.rev_lev < 2) {
3420 modulo = gsm0407_determine_nsd_ret_modulo_r98(pdisc, gh->msg_type, &n_sd);
3421 } else { /* R99 */
3422 modulo = gsm0407_determine_nsd_ret_modulo_r99(pdisc, gh->msg_type, &n_sd);
3423 }
3424 if (modulo == 0)
3425 return false;
3426 bin = gsm0407_pdisc_ctr_bin(pdisc);
3427 if (bin < 0)
3428 return false;
3429
3430 OSMO_ASSERT(bin < ARRAY_SIZE(conn->n_sd_next));
3431 if (n_sd != conn->n_sd_next[bin]) {
3432 /* not what we expected: duplicate */
3433 return true;
3434 } else {
3435 /* as expected: no dup; update expected counter for next message */
3436 conn->n_sd_next[bin] = (n_sd + 1) % modulo;
3437 return false;
3438 }
3439}
Harald Welte2483f1b2016-06-19 18:06:02 +02003440
Neels Hofmeyr378a4922016-05-09 21:07:43 +02003441/* Main entry point for GSM 04.08/44.008 Layer 3 data (e.g. from the BSC). */
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +08003442int gsm0408_dispatch(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00003443{
Philipp Maier91f10c72017-04-20 18:40:37 +02003444 struct gsm48_hdr *gh;
3445 uint8_t pdisc;
Harald Welte8470bf22008-12-25 23:28:35 +00003446 int rc = 0;
Harald Welte51008772009-12-29 11:49:12 +01003447
Neels Hofmeyr0906a392017-09-19 14:36:06 +02003448 OSMO_ASSERT(msg->l3h);
Neels Hofmeyrffaed9e2016-05-09 21:38:51 +02003449 OSMO_ASSERT(conn);
3450 OSMO_ASSERT(msg);
3451
Philipp Maier91f10c72017-04-20 18:40:37 +02003452 gh = msgb_l3(msg);
3453 pdisc = gsm48_hdr_pdisc(gh);
3454
Harald Weltec2007852018-02-03 21:08:26 +01003455 if (gsm0407_is_duplicate(conn, msg)) {
3456 LOGP(DRLL, LOGL_NOTICE, "%s: Discarding duplicate L3 message\n",
3457 (conn && conn->vsub) ? vlr_subscr_name(conn->vsub) : "UNKNOWN");
3458 return 0;
3459 }
3460
Neels Hofmeyr78ada642017-03-10 02:15:20 +01003461 LOGP(DRLL, LOGL_DEBUG, "Dispatching 04.08 message %s (0x%x:0x%x)\n",
3462 gsm48_pdisc_msgtype_name(pdisc, gsm48_hdr_msg_type(gh)),
3463 pdisc, gsm48_hdr_msg_type(gh));
Harald Welte2483f1b2016-06-19 18:06:02 +02003464
3465 if (!msc_subscr_conn_is_accepted(conn)
3466 && !msg_is_initially_permitted(gh)) {
3467 LOGP(DRLL, LOGL_ERROR,
Neels Hofmeyr78ada642017-03-10 02:15:20 +01003468 "subscr %s: Message not permitted for initial conn: %s\n",
3469 vlr_subscr_name(conn->vsub),
3470 gsm48_pdisc_msgtype_name(pdisc, gsm48_hdr_msg_type(gh)));
Harald Welte2483f1b2016-06-19 18:06:02 +02003471 return -EACCES;
3472 }
3473
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003474 if (conn->vsub && conn->vsub->cs.attached_via_ran != conn->via_ran) {
3475 LOGP(DMM, LOGL_ERROR,
3476 "%s: Illegal situation: RAN type mismatch:"
3477 " attached via %s, received message via %s\n",
3478 vlr_subscr_name(conn->vsub),
3479 ran_type_name(conn->vsub->cs.attached_via_ran),
3480 ran_type_name(conn->via_ran));
3481 return -EACCES;
3482 }
3483
Philipp Maiere0d5caa2017-02-27 16:56:59 +01003484#if 0
Holger Hans Peter Freyther758f4df2010-06-21 10:34:03 +08003485 if (silent_call_reroute(conn, msg))
3486 return silent_call_rx(conn, msg);
Philipp Maiere0d5caa2017-02-27 16:56:59 +01003487#endif
Alexander Couzensfbd96f52016-08-29 18:40:02 +02003488
Harald Welte52b1f982008-12-23 20:25:15 +00003489 switch (pdisc) {
3490 case GSM48_PDISC_CC:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003491 rc = gsm0408_rcv_cc(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003492 break;
3493 case GSM48_PDISC_MM:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003494 rc = gsm0408_rcv_mm(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003495 break;
3496 case GSM48_PDISC_RR:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003497 rc = gsm0408_rcv_rr(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003498 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00003499 case GSM48_PDISC_SMS:
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +08003500 rc = gsm0411_rcv_sms(conn, msg);
Harald Weltebcae43f2008-12-27 21:45:37 +00003501 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003502 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00003503 case GSM48_PDISC_SM_GPRS:
Harald Welte5d24ba12009-12-24 12:13:17 +01003504 LOGP(DRLL, LOGL_NOTICE, "Unimplemented "
3505 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Neels Hofmeyrffaed9e2016-05-09 21:38:51 +02003506 rc = -ENOTSUP;
Harald Welte52b1f982008-12-23 20:25:15 +00003507 break;
Harald Welte6eafe912009-10-16 08:32:58 +02003508 case GSM48_PDISC_NC_SS:
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +08003509 rc = handle_rcv_ussd(conn, msg);
Harald Welte6eafe912009-10-16 08:32:58 +02003510 break;
Harald Welteeac38c32017-05-29 18:02:53 +02003511 case GSM48_PDISC_TEST:
3512 rc = gsm0414_rcv_test(conn, msg);
3513 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003514 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01003515 LOGP(DRLL, LOGL_NOTICE, "Unknown "
3516 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Neels Hofmeyrffaed9e2016-05-09 21:38:51 +02003517 rc = -EINVAL;
Harald Welte52b1f982008-12-23 20:25:15 +00003518 break;
3519 }
3520
3521 return rc;
3522}
Harald Welte8470bf22008-12-25 23:28:35 +00003523
Harald Welte2483f1b2016-06-19 18:06:02 +02003524/***********************************************************************
3525 * VLR integration
3526 ***********************************************************************/
3527
3528/* VLR asks us to send an authentication request */
3529static int msc_vlr_tx_auth_req(void *msc_conn_ref, struct gsm_auth_tuple *at,
3530 bool send_autn)
3531{
3532 struct gsm_subscriber_connection *conn = msc_conn_ref;
3533 return gsm48_tx_mm_auth_req(conn, at->vec.rand,
3534 send_autn? at->vec.autn : NULL,
3535 at->key_seq);
3536}
3537
3538/* VLR asks us to send an authentication reject */
3539static int msc_vlr_tx_auth_rej(void *msc_conn_ref)
3540{
3541 struct gsm_subscriber_connection *conn = msc_conn_ref;
3542 return gsm48_tx_mm_auth_rej(conn);
3543}
3544
3545/* VLR asks us to transmit an Identity Request of given type */
3546static int msc_vlr_tx_id_req(void *msc_conn_ref, uint8_t mi_type)
3547{
3548 struct gsm_subscriber_connection *conn = msc_conn_ref;
3549 return mm_tx_identity_req(conn, mi_type);
3550}
3551
3552/* VLR asks us to transmit a Location Update Accept */
3553static int msc_vlr_tx_lu_acc(void *msc_conn_ref, uint32_t send_tmsi)
3554{
3555 struct gsm_subscriber_connection *conn = msc_conn_ref;
3556 return gsm0408_loc_upd_acc(conn, send_tmsi);
3557}
3558
3559/* VLR asks us to transmit a Location Update Reject */
3560static int msc_vlr_tx_lu_rej(void *msc_conn_ref, uint8_t cause)
3561{
3562 struct gsm_subscriber_connection *conn = msc_conn_ref;
3563 return gsm0408_loc_upd_rej(conn, cause);
3564}
3565
3566/* VLR asks us to transmit a CM Service Accept */
3567static int msc_vlr_tx_cm_serv_acc(void *msc_conn_ref)
3568{
3569 struct gsm_subscriber_connection *conn = msc_conn_ref;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003570 return msc_gsm48_tx_mm_serv_ack(conn);
3571}
3572
3573static int msc_vlr_tx_common_id(void *msc_conn_ref)
3574{
3575 struct gsm_subscriber_connection *conn = msc_conn_ref;
3576 return msc_tx_common_id(conn);
Harald Welte2483f1b2016-06-19 18:06:02 +02003577}
3578
Stefan Sperling3a741282018-03-13 21:11:49 +01003579/* VLR asks us to transmit MM info. */
3580static int msc_vlr_tx_mm_info(void *msc_conn_ref)
3581{
3582 struct gsm_subscriber_connection *conn = msc_conn_ref;
3583 if (!conn->network->send_mm_info)
3584 return 0;
3585 return gsm48_tx_mm_info(conn);
3586}
3587
Harald Welte2483f1b2016-06-19 18:06:02 +02003588/* VLR asks us to transmit a CM Service Reject */
3589static int msc_vlr_tx_cm_serv_rej(void *msc_conn_ref, enum vlr_proc_arq_result result)
3590{
3591 uint8_t cause;
3592 struct gsm_subscriber_connection *conn = msc_conn_ref;
3593 conn->received_cm_service_request = false;
3594
3595 switch (result) {
3596 default:
3597 case VLR_PR_ARQ_RES_NONE:
3598 case VLR_PR_ARQ_RES_SYSTEM_FAILURE:
3599 case VLR_PR_ARQ_RES_UNKNOWN_ERROR:
3600 cause = GSM48_REJECT_NETWORK_FAILURE;
3601 break;
3602 case VLR_PR_ARQ_RES_ILLEGAL_SUBSCR:
3603 cause = GSM48_REJECT_LOC_NOT_ALLOWED;
3604 break;
3605 case VLR_PR_ARQ_RES_UNIDENT_SUBSCR:
3606 cause = GSM48_REJECT_INVALID_MANDANTORY_INF;
3607 break;
3608 case VLR_PR_ARQ_RES_ROAMING_NOTALLOWED:
3609 cause = GSM48_REJECT_ROAMING_NOT_ALLOWED;
3610 break;
3611 case VLR_PR_ARQ_RES_ILLEGAL_EQUIP:
3612 cause = GSM48_REJECT_ILLEGAL_MS;
3613 break;
3614 case VLR_PR_ARQ_RES_TIMEOUT:
3615 cause = GSM48_REJECT_CONGESTION;
3616 break;
3617 };
3618
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003619 return msc_gsm48_tx_mm_serv_rej(conn, cause);
Harald Welte2483f1b2016-06-19 18:06:02 +02003620}
3621
Neels Hofmeyr703638e2017-12-14 05:30:16 +01003622/* For msc_vlr_set_ciph_mode() */
3623osmo_static_assert(sizeof(((struct gsm0808_encrypt_info*)0)->key) >= sizeof(((struct osmo_auth_vector*)0)->kc),
3624 gsm0808_encrypt_info_key_fits_osmo_auth_vec_kc);
3625
Neels Hofmeyrda21a522018-03-02 01:50:09 +01003626/* VLR asks us to start using ciphering.
3627 * (Keep non-static to allow regression testing on this function.) */
3628int msc_vlr_set_ciph_mode(void *msc_conn_ref,
3629 bool umts_aka,
3630 bool retrieve_imeisv)
Harald Welte2483f1b2016-06-19 18:06:02 +02003631{
3632 struct gsm_subscriber_connection *conn = msc_conn_ref;
3633 struct vlr_subscr *vsub;
3634 struct gsm_auth_tuple *tuple;
3635
3636 if (!conn || !conn->vsub) {
3637 LOGP(DMM, LOGL_ERROR, "Cannot send Ciphering Mode Command to"
3638 " NULL conn/subscriber");
3639 return -EINVAL;
3640 }
3641
3642 vsub = conn->vsub;
3643 tuple = vsub->last_tuple;
3644
3645 if (!tuple) {
3646 LOGP(DMM, LOGL_ERROR, "subscr %s: Cannot send Ciphering Mode"
3647 " Command: no auth tuple available\n",
3648 vlr_subscr_name(vsub));
3649 return -EINVAL;
3650 }
3651
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003652 switch (conn->via_ran) {
3653 case RAN_GERAN_A:
3654 DEBUGP(DMM, "-> CIPHER MODE COMMAND %s\n",
3655 vlr_subscr_name(conn->vsub));
Neels Hofmeyr703638e2017-12-14 05:30:16 +01003656 {
Harald Welte7b222aa2017-12-23 19:30:32 +01003657 struct gsm_network *net = conn->network;
Neels Hofmeyr703638e2017-12-14 05:30:16 +01003658 struct gsm0808_encrypt_info ei;
Harald Welte7b222aa2017-12-23 19:30:32 +01003659 int i, j = 0;
Neels Hofmeyr703638e2017-12-14 05:30:16 +01003660
Harald Welte7b222aa2017-12-23 19:30:32 +01003661 for (i = 0; i < 8; i++) {
Harald Welte71330722017-12-23 19:59:02 +01003662 if (net->a5_encryption_mask & (1 << i) &&
3663 classmark_supports_a5(&conn->classmark, i))
Harald Welte7b222aa2017-12-23 19:30:32 +01003664 ei.perm_algo[j++] = vlr_ciph_to_gsm0808_alg_id(i);
3665 }
3666 ei.perm_algo_len = j;
Neels Hofmeyr703638e2017-12-14 05:30:16 +01003667
Harald Welte71330722017-12-23 19:59:02 +01003668 if (ei.perm_algo_len == 0) {
3669 LOGP(DMM, LOGL_ERROR, "%s: cannot start ciphering, no intersection "
3670 "between MSC-configured and MS-supported A5 algorithms\n",
3671 vlr_subscr_name(conn->vsub));
3672 return -ENOTSUP;
3673 }
3674
Neels Hofmeyr52821712017-12-18 01:23:42 +01003675 /* In case of UMTS AKA, the Kc for ciphering must be derived from the 3G auth
3676 * tokens. tuple->vec.kc was calculated from the GSM algorithm and is not
3677 * necessarily a match for the UMTS AKA tokens. */
3678 if (umts_aka)
3679 osmo_auth_c3(ei.key, tuple->vec.ck, tuple->vec.ik);
3680 else
3681 memcpy(ei.key, tuple->vec.kc, sizeof(tuple->vec.kc));
Neels Hofmeyr703638e2017-12-14 05:30:16 +01003682 ei.key_len = sizeof(tuple->vec.kc);
3683
3684 return a_iface_tx_cipher_mode(conn, &ei, retrieve_imeisv);
3685 }
3686
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003687 case RAN_UTRAN_IU:
3688#ifdef BUILD_IU
3689 DEBUGP(DMM, "-> SECURITY MODE CONTROL %s\n",
3690 vlr_subscr_name(conn->vsub));
Neels Hofmeyr00e82d62017-07-05 15:19:52 +02003691 return ranap_iu_tx_sec_mode_cmd(conn->iu.ue_ctx, &tuple->vec, 0, 1);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003692#else
3693 LOGP(DMM, LOGL_ERROR, "Cannot send Security Mode Control over RAN_UTRAN_IU,"
3694 " built without Iu support\n");
3695 return -ENOTSUP;
3696#endif
3697
3698 default:
3699 break;
3700 }
3701 LOGP(DMM, LOGL_ERROR,
3702 "%s: cannot start ciphering, unknown RAN type %d\n",
3703 vlr_subscr_name(conn->vsub), conn->via_ran);
3704 return -ENOTSUP;
3705}
3706
3707void msc_rx_sec_mode_compl(struct gsm_subscriber_connection *conn)
3708{
3709 struct vlr_ciph_result vlr_res = {};
3710
3711 if (!conn || !conn->vsub) {
3712 LOGP(DMM, LOGL_ERROR,
3713 "Rx Security Mode Complete for invalid conn\n");
3714 return;
3715 }
3716
3717 DEBUGP(DMM, "<- SECURITY MODE COMPLETE %s\n",
3718 vlr_subscr_name(conn->vsub));
3719
3720 vlr_res.cause = VLR_CIPH_COMPL;
3721 vlr_subscr_rx_ciph_res(conn->vsub, &vlr_res);
Harald Welte2483f1b2016-06-19 18:06:02 +02003722}
3723
3724/* VLR informs us that the subscriber data has somehow been modified */
3725static void msc_vlr_subscr_update(struct vlr_subscr *subscr)
3726{
Maxa263bb22017-12-27 13:23:44 +01003727 LOGVSUBP(LOGL_NOTICE, subscr, "VLR: update for IMSI=%s (MSISDN=%s, used=%d)\n",
3728 subscr->imsi, subscr->msisdn, subscr->use_count);
Harald Welte2483f1b2016-06-19 18:06:02 +02003729}
3730
3731/* VLR informs us that the subscriber has been associated with a conn */
3732static void msc_vlr_subscr_assoc(void *msc_conn_ref,
3733 struct vlr_subscr *vsub)
3734{
3735 struct gsm_subscriber_connection *conn = msc_conn_ref;
Max48d4ec02018-02-12 16:51:03 +01003736 OSMO_ASSERT(vsub);
Harald Welte2483f1b2016-06-19 18:06:02 +02003737 OSMO_ASSERT(!conn->vsub);
3738 conn->vsub = vlr_subscr_get(vsub);
Max48d4ec02018-02-12 16:51:03 +01003739 OSMO_ASSERT(conn->vsub);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003740 conn->vsub->cs.attached_via_ran = conn->via_ran;
Harald Welte2483f1b2016-06-19 18:06:02 +02003741}
3742
3743/* operations that we need to implement for libvlr */
3744static const struct vlr_ops msc_vlr_ops = {
3745 .tx_auth_req = msc_vlr_tx_auth_req,
3746 .tx_auth_rej = msc_vlr_tx_auth_rej,
3747 .tx_id_req = msc_vlr_tx_id_req,
3748 .tx_lu_acc = msc_vlr_tx_lu_acc,
3749 .tx_lu_rej = msc_vlr_tx_lu_rej,
3750 .tx_cm_serv_acc = msc_vlr_tx_cm_serv_acc,
3751 .tx_cm_serv_rej = msc_vlr_tx_cm_serv_rej,
3752 .set_ciph_mode = msc_vlr_set_ciph_mode,
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003753 .tx_common_id = msc_vlr_tx_common_id,
Stefan Sperling3a741282018-03-13 21:11:49 +01003754 .tx_mm_info = msc_vlr_tx_mm_info,
Harald Welte2483f1b2016-06-19 18:06:02 +02003755 .subscr_update = msc_vlr_subscr_update,
3756 .subscr_assoc = msc_vlr_subscr_assoc,
3757};
3758
3759/* Allocate net->vlr so that the VTY may configure the VLR's data structures */
3760int msc_vlr_alloc(struct gsm_network *net)
3761{
3762 net->vlr = vlr_alloc(net, &msc_vlr_ops);
3763 if (!net->vlr)
3764 return -ENOMEM;
3765 net->vlr->user_ctx = net;
3766 return 0;
3767}
3768
3769/* Launch the VLR, i.e. its GSUP connection */
3770int msc_vlr_start(struct gsm_network *net)
3771{
3772 OSMO_ASSERT(net->vlr);
3773 return vlr_start("MSC", net->vlr, net->gsup_server_addr_str,
3774 net->gsup_server_port);
3775}
Neels Hofmeyr79e580b2018-03-22 16:48:22 +01003776
3777struct msgb *gsm48_create_mm_serv_rej(enum gsm48_reject_value value)
3778{
3779 struct msgb *msg;
3780 struct gsm48_hdr *gh;
3781
3782 msg = gsm48_msgb_alloc_name("GSM 04.08 SERV REJ");
3783 if (!msg)
3784 return NULL;
3785
3786 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
3787 gh->proto_discr = GSM48_PDISC_MM;
3788 gh->msg_type = GSM48_MT_MM_CM_SERV_REJ;
3789 gh->data[0] = value;
3790
3791 return msg;
3792}
3793
3794struct msgb *gsm48_create_loc_upd_rej(uint8_t cause)
3795{
3796 struct gsm48_hdr *gh;
3797 struct msgb *msg;
3798
3799 msg = gsm48_msgb_alloc_name("GSM 04.08 LOC UPD REJ");
3800 if (!msg)
3801 return NULL;
3802
3803 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
3804 gh->proto_discr = GSM48_PDISC_MM;
3805 gh->msg_type = GSM48_MT_MM_LOC_UPD_REJECT;
3806 gh->data[0] = cause;
3807 return msg;
3808}
3809
3810int gsm48_extract_mi(uint8_t *classmark2_lv, int length, char *mi_string, uint8_t *mi_type)
3811{
3812 /* Check the size for the classmark */
3813 if (length < 1 + *classmark2_lv)
3814 return -1;
3815
3816 uint8_t *mi_lv = classmark2_lv + *classmark2_lv + 1;
3817 if (length < 2 + *classmark2_lv + mi_lv[0])
3818 return -2;
3819
3820 *mi_type = mi_lv[1] & GSM_MI_TYPE_MASK;
3821 return gsm48_mi_to_string(mi_string, GSM48_MI_SIZE, mi_lv+1, *mi_lv);
3822}
3823
3824int gsm48_paging_extract_mi(struct gsm48_pag_resp *resp, int length,
3825 char *mi_string, uint8_t *mi_type)
3826{
3827 static const uint32_t classmark_offset =
3828 offsetof(struct gsm48_pag_resp, classmark2);
3829 uint8_t *classmark2_lv = (uint8_t *) &resp->classmark2;
3830 return gsm48_extract_mi(classmark2_lv, length - classmark_offset,
3831 mi_string, mi_type);
3832}