blob: 5acc4e44548c97fe37d59faa3b10458f23e9fd73 [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>
49#include <osmocom/msc/bsc_api.h>
50#include <osmocom/msc/osmo_msc.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020051#include <osmocom/msc/mncc_int.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020052#include <osmocom/abis/e1_input.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010053#include <osmocom/core/bitvec.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020054#include <osmocom/msc/vlr.h>
55#include <osmocom/msc/msc_ifaces.h>
Holger Hans Peter Freyther841c2002010-09-30 18:52:23 +080056
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010057#include <osmocom/gsm/gsm48.h>
58#include <osmocom/gsm/gsm0480.h>
59#include <osmocom/gsm/gsm_utils.h>
Max8db12e42016-04-18 23:11:18 +020060#include <osmocom/gsm/protocol/gsm_04_08.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010061#include <osmocom/core/msgb.h>
62#include <osmocom/core/talloc.h>
Neels Hofmeyr93bafb62017-01-13 03:12:08 +010063#include <osmocom/core/utils.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 Maierfbf66102017-04-09 12:32:51 +020072
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +020073#include <assert.h>
74
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020075
Harald Welte (local)d19e58b2009-08-15 02:30:58 +020076void *tall_locop_ctx;
Sylvain Munaut30a15382009-12-24 00:27:26 +010077void *tall_authciphop_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +020078
Harald Welte2483f1b2016-06-19 18:06:02 +020079static int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn,
80 uint32_t send_tmsi);
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +080081static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020082 uint8_t pdisc, uint8_t msg_type);
Harald Welte65e74cc2008-12-29 01:55:35 +000083
Harald Welte52b1f982008-12-23 20:25:15 +000084struct gsm_lai {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020085 uint16_t mcc;
86 uint16_t mnc;
87 uint16_t lac;
Harald Welte52b1f982008-12-23 20:25:15 +000088};
89
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020090static uint32_t new_callref = 0x80000001;
Harald Welte4bfdfe72009-06-10 23:11:52 +080091
Harald Welte71330722017-12-23 19:59:02 +010092/* Determine if the given CLASSMARK (1/2/3) value permits a given A5/n cipher */
93static bool classmark_supports_a5(const struct gsm_classmark *cm, uint8_t a5)
94{
95 switch (a5) {
96 case 0:
97 /* all phones must implement A5/0, see 3GPP TS 43.020 4.9 */
98 return true;
99 case 1:
100 /* 3GPP TS 43.020 4.9 requires A5/1 to be suppored by all phones and actually states:
101 * "The network shall not provide service to an MS which indicates that it does not
102 * support the ciphering algorithm A5/1.". However, let's be more tolerant based
103 * on policy here */
104 /* See 3GPP TS 24.008 10.5.1.7 */
105 if (!cm->classmark1_set) {
106 DEBUGP(DMSC, "CLASSMARK 1 unknown, assuming MS supports A5/1\n");
107 return true;
108 } else {
109 if (cm->classmark1.a5_1)
110 return false; /* Inverted logic for this bit! */
111 else
112 return true;
113 }
114 break;
115 case 2:
116 case 3:
117 /* See 3GPP TS 24.008 10.5.1.6 */
118 if (cm->classmark2_len < 3) {
119 DEBUGP(DMSC, "CLASSMARK 2 unknown, assuming MS doesn't support A5/%u\n", a5);
120 return false;
121 } else {
122 if (cm->classmark2[2] & (1 << (a5-2)))
123 return true;
124 else
125 return false;
126 }
127 break;
128 case 4:
129 case 5:
130 case 6:
131 case 7:
132 /* See 3GPP TS 24.008 10.5.1.7 */
133 if (cm->classmark3_len < 1) {
134 DEBUGP(DMSC, "CLASSMARK 3 unknown, assuming MS doesn't support A5/%u\n", a5);
135 return false;
136 } else {
137 if (cm->classmark3[0] & (1 << (a5-4)))
138 return true;
139 else
140 return false;
141 }
142 break;
143 default:
144 return false;
145 }
146}
147
Harald Welte31c00f72011-03-03 23:29:05 +0100148void cc_tx_to_mncc(struct gsm_network *net, struct msgb *msg)
149{
150 net->mncc_recv(net, msg);
151}
152
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800153static int gsm48_conn_sendmsg(struct msgb *msg, struct gsm_subscriber_connection *conn,
154 struct gsm_trans *trans)
155{
156 struct gsm48_hdr *gh = (struct gsm48_hdr *) msg->data;
157
158 /* if we get passed a transaction reference, do some common
159 * work that the caller no longer has to do */
160 if (trans) {
161 gh->proto_discr = trans->protocol | (trans->transaction_id << 4);
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800162 }
163
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200164 return msc_tx_dtap(conn, msg);
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800165}
Sylvain Munaut30a15382009-12-24 00:27:26 +0100166
Holger Hans Peter Freythere0009f12010-08-12 01:41:57 +0800167int gsm48_cc_tx_notify_ss(struct gsm_trans *trans, const char *message)
168{
169 struct gsm48_hdr *gh;
170 struct msgb *ss_notify;
171
172 ss_notify = gsm0480_create_notifySS(message);
173 if (!ss_notify)
174 return -1;
175
176 gsm0480_wrap_invoke(ss_notify, GSM0480_OP_CODE_NOTIFY_SS, 0);
177 uint8_t *data = msgb_push(ss_notify, 1);
178 data[0] = ss_notify->len - 1;
179 gh = (struct gsm48_hdr *) msgb_push(ss_notify, sizeof(*gh));
180 gh->msg_type = GSM48_MT_CC_FACILITY;
181 return gsm48_conn_sendmsg(ss_notify, trans->conn, trans);
182}
183
Harald Welte2483f1b2016-06-19 18:06:02 +0200184/* clear all transactions globally; used in case of MNCC socket disconnect */
Harald Welte371efe52010-12-22 23:17:50 +0100185void gsm0408_clear_all_trans(struct gsm_network *net, int protocol)
186{
187 struct gsm_trans *trans, *temp;
188
189 LOGP(DCC, LOGL_NOTICE, "Clearing all currently active transactions!!!\n");
190
191 llist_for_each_entry_safe(trans, temp, &net->trans_list, entry) {
Harald Welteeb76c7a2010-12-23 02:47:53 +0100192 if (trans->protocol == protocol) {
193 trans->callref = 0;
Harald Welte371efe52010-12-22 23:17:50 +0100194 trans_free(trans);
Harald Welteeb76c7a2010-12-23 02:47:53 +0100195 }
Harald Welte371efe52010-12-22 23:17:50 +0100196 }
197}
198
Holger Freyther429e7762008-12-30 13:28:30 +0000199/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200200static int gsm0408_loc_upd_rej(struct gsm_subscriber_connection *conn, uint8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000201{
Holger Hans Peter Freyther230a4d82010-06-15 19:40:05 +0800202 struct msgb *msg;
203
Holger Hans Peter Freyther230a4d82010-06-15 19:40:05 +0800204 msg = gsm48_create_loc_upd_rej(cause);
205 if (!msg) {
206 LOGP(DMM, LOGL_ERROR, "Failed to create msg for LOCATION UPDATING REJECT.\n");
207 return -1;
208 }
Alexander Couzensfbd96f52016-08-29 18:40:02 +0200209
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200210 LOGP(DMM, LOGL_INFO, "Subscriber %s: LOCATION UPDATING REJECT\n",
211 vlr_subscr_name(conn->vsub));
Harald Welte24ff6ee2009-12-22 00:41:05 +0100212
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800213 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000214}
215
216/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Harald Welte2483f1b2016-06-19 18:06:02 +0200217static int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn,
218 uint32_t send_tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000219{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100220 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 LOC UPD ACC");
Harald Welte52b1f982008-12-23 20:25:15 +0000221 struct gsm48_hdr *gh;
222 struct gsm48_loc_area_id *lai;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200223 uint8_t *mid;
Alexander Couzensfbd96f52016-08-29 18:40:02 +0200224
Harald Welte52b1f982008-12-23 20:25:15 +0000225 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
226 gh->proto_discr = GSM48_PDISC_MM;
227 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
228
229 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200230 gsm48_generate_lai(lai, conn->network->country_code,
231 conn->network->network_code,
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200232 conn->lac);
Harald Welte52b1f982008-12-23 20:25:15 +0000233
Harald Welte2483f1b2016-06-19 18:06:02 +0200234 if (send_tmsi == GSM_RESERVED_TMSI) {
235 /* we did not allocate a TMSI to the MS, so we need to
236 * include the IMSI in order for the MS to delete any
237 * old TMSI that might still be allocated */
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200238 uint8_t mi[10];
239 int len;
Harald Welte2483f1b2016-06-19 18:06:02 +0200240 len = gsm48_generate_mid_from_imsi(mi, conn->vsub->imsi);
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200241 mid = msgb_put(msg, len);
242 memcpy(mid, mi, len);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200243 DEBUGP(DMM, "-> %s LOCATION UPDATE ACCEPT\n",
244 vlr_subscr_name(conn->vsub));
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200245 } else {
Harald Welte2483f1b2016-06-19 18:06:02 +0200246 /* Include the TMSI, which means that the MS will send a
247 * TMSI REALLOCATION COMPLETE, and we should wait for
248 * that until T3250 expiration */
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200249 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
Harald Welte2483f1b2016-06-19 18:06:02 +0200250 gsm48_generate_mid_from_tmsi(mid, send_tmsi);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200251 DEBUGP(DMM, "-> %s LOCATION UPDATE ACCEPT (TMSI = 0x%08x)\n",
252 vlr_subscr_name(conn->vsub),
253 send_tmsi);
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200254 }
Harald Welte2483f1b2016-06-19 18:06:02 +0200255 /* TODO: Follow-on proceed */
256 /* TODO: CTS permission */
257 /* TODO: Equivalent PLMNs */
258 /* TODO: Emergency Number List */
259 /* TODO: Per-MS T3312 */
Harald Welte52b1f982008-12-23 20:25:15 +0000260
Harald Welte52b1f982008-12-23 20:25:15 +0000261
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800262 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000263}
264
Harald Weltebf5e8df2009-02-03 12:59:45 +0000265/* Transmit Chapter 9.2.10 Identity Request */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200266static int mm_tx_identity_req(struct gsm_subscriber_connection *conn, uint8_t id_type)
Harald Welte231ad4f2008-12-27 11:15:38 +0000267{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100268 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 ID REQ");
Harald Welte231ad4f2008-12-27 11:15:38 +0000269 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000270
Harald Welte231ad4f2008-12-27 11:15:38 +0000271 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
272 gh->proto_discr = GSM48_PDISC_MM;
273 gh->msg_type = GSM48_MT_MM_ID_REQ;
274 gh->data[0] = id_type;
275
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800276 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte231ad4f2008-12-27 11:15:38 +0000277}
278
Harald Weltebf5e8df2009-02-03 12:59:45 +0000279/* Parse Chapter 9.2.11 Identity Response */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800280static int mm_rx_id_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte231ad4f2008-12-27 11:15:38 +0000281{
282 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200283 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200284 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000285
Harald Welte2483f1b2016-06-19 18:06:02 +0200286 if (!conn->vsub) {
287 LOGP(DMM, LOGL_ERROR,
288 "Rx MM Identity Response: invalid: no subscriber\n");
289 return -EINVAL;
290 }
291
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200292 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welteb9845f92015-08-16 18:07:48 +0200293 DEBUGP(DMM, "IDENTITY RESPONSE: MI(%s)=%s\n",
294 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte231ad4f2008-12-27 11:15:38 +0000295
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200296 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, gh->data);
Harald Welte7659de12009-12-13 12:39:18 +0100297
Harald Welte2483f1b2016-06-19 18:06:02 +0200298 return vlr_subscr_rx_id_resp(conn->vsub, gh->data+1, gh->data[0]);
Harald Welte231ad4f2008-12-27 11:15:38 +0000299}
300
Harald Welte2483f1b2016-06-19 18:06:02 +0200301/* FIXME: to libosmogsm */
Harald Welteb9845f92015-08-16 18:07:48 +0200302static const struct value_string lupd_names[] = {
303 { GSM48_LUPD_NORMAL, "NORMAL" },
304 { GSM48_LUPD_PERIODIC, "PERIODIC" },
305 { GSM48_LUPD_IMSI_ATT, "IMSI ATTACH" },
306 { 0, NULL }
307};
Harald Welte2a139372009-02-22 21:14:55 +0000308
Harald Welte2483f1b2016-06-19 18:06:02 +0200309/* Chapter 9.2.15: Receive Location Updating Request.
310 * Keep this function non-static for direct invocation by unit tests. */
311int mm_rx_loc_upd_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000312{
Harald Welte2483f1b2016-06-19 18:06:02 +0200313 static const enum subscr_conn_from conn_from_lu = SUBSCR_CONN_FROM_LU;
314 struct gsm_network *net = conn->network;
Harald Welte8470bf22008-12-25 23:28:35 +0000315 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000316 struct gsm48_loc_upd_req *lu;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200317 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200318 char mi_string[GSM48_MI_SIZE];
Harald Welte2483f1b2016-06-19 18:06:02 +0200319 enum vlr_lu_type vlr_lu_type = VLR_LU_TYPE_REGULAR;
Harald Welte2483f1b2016-06-19 18:06:02 +0200320 uint32_t tmsi;
321 char *imsi;
322 struct osmo_location_area_id old_lai, new_lai;
323 struct osmo_fsm_inst *lu_fsm;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200324 bool is_utran;
Harald Welte2483f1b2016-06-19 18:06:02 +0200325 int rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000326
Harald Welte8470bf22008-12-25 23:28:35 +0000327 lu = (struct gsm48_loc_upd_req *) gh->data;
328
329 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +0000330
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200331 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Harald Weltefc977a82008-12-27 10:19:37 +0000332
Harald Welte2483f1b2016-06-19 18:06:02 +0200333 rc = msc_create_conn_fsm(conn, mi_string);
334 if (rc)
335 /* logging already happened in msc_create_conn_fsm() */
336 return rc;
337
338 conn->classmark.classmark1 = lu->classmark1;
339 conn->classmark.classmark1_set = true;
340
341 DEBUGP(DMM, "LOCATION UPDATING REQUEST: MI(%s)=%s type=%s\n",
342 gsm48_mi_type_name(mi_type), mi_string,
343 get_value_string(lupd_names, lu->type));
Holger Freyther73487a22008-12-31 18:53:57 +0000344
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200345 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, &lu->mi_len);
Harald Welte7659de12009-12-13 12:39:18 +0100346
Harald Welte24ff6ee2009-12-22 00:41:05 +0100347 switch (lu->type) {
348 case GSM48_LUPD_NORMAL:
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200349 rate_ctr_inc(&conn->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_NORMAL]);
Harald Welte2483f1b2016-06-19 18:06:02 +0200350 vlr_lu_type = VLR_LU_TYPE_REGULAR;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100351 break;
352 case GSM48_LUPD_IMSI_ATT:
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200353 rate_ctr_inc(&conn->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_ATTACH]);
Harald Welte2483f1b2016-06-19 18:06:02 +0200354 vlr_lu_type = VLR_LU_TYPE_IMSI_ATTACH;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100355 break;
356 case GSM48_LUPD_PERIODIC:
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200357 rate_ctr_inc(&conn->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_PERIODIC]);
Harald Welte2483f1b2016-06-19 18:06:02 +0200358 vlr_lu_type = VLR_LU_TYPE_PERIODIC;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100359 break;
360 }
361
Harald Welte2483f1b2016-06-19 18:06:02 +0200362 /* TODO: 10.5.1.6 MS Classmark for UMTS / Classmark 2 */
363 /* TODO: 10.5.3.14 Aditional update parameters (CS fallback calls) */
364 /* TODO: 10.5.7.8 Device properties */
365 /* TODO: 10.5.1.15 MS network feature support */
Sylvain Munaut2030a2a2010-06-10 13:36:59 +0200366
Harald Welte52b1f982008-12-23 20:25:15 +0000367 switch (mi_type) {
368 case GSM_MI_TYPE_IMSI:
Harald Welte2483f1b2016-06-19 18:06:02 +0200369 tmsi = GSM_RESERVED_TMSI;
370 imsi = mi_string;
Harald Welte4b634542008-12-27 01:55:51 +0000371 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000372 case GSM_MI_TYPE_TMSI:
Harald Welte2483f1b2016-06-19 18:06:02 +0200373 tmsi = tmsi_from_string(mi_string);
374 imsi = NULL;
Harald Welte52b1f982008-12-23 20:25:15 +0000375 break;
Alexander Couzensfbd96f52016-08-29 18:40:02 +0200376 default:
Harald Weltea0368542009-06-27 02:58:43 +0200377 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte2483f1b2016-06-19 18:06:02 +0200378 tmsi = GSM_RESERVED_TMSI;
379 imsi = NULL;
Harald Welte52b1f982008-12-23 20:25:15 +0000380 break;
381 }
382
Harald Welte2483f1b2016-06-19 18:06:02 +0200383 gsm48_decode_lai(&lu->lai, &old_lai.plmn.mcc,
384 &old_lai.plmn.mnc, &old_lai.lac);
385 new_lai.plmn.mcc = conn->network->country_code;
386 new_lai.plmn.mnc = conn->network->network_code;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200387 new_lai.lac = conn->lac;
Harald Welte2483f1b2016-06-19 18:06:02 +0200388 DEBUGP(DMM, "LU/new-LAC: %u/%u\n", old_lai.lac, new_lai.lac);
Harald Welte24516ea2009-07-04 10:18:00 +0200389
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200390 is_utran = (conn->via_ran == RAN_UTRAN_IU);
Harald Welte2483f1b2016-06-19 18:06:02 +0200391 lu_fsm = vlr_loc_update(conn->conn_fsm,
392 SUBSCR_CONN_E_ACCEPTED,
393 SUBSCR_CONN_E_CN_CLOSE,
394 (void*)&conn_from_lu,
395 net->vlr, conn, vlr_lu_type, tmsi, imsi,
396 &old_lai, &new_lai,
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200397 is_utran || conn->network->authentication_required,
Harald Welte7b222aa2017-12-23 19:30:32 +0100398 is_utran || conn->network->a5_encryption_mask > 0x01,
Harald Welte2483f1b2016-06-19 18:06:02 +0200399 classmark_is_r99(&conn->classmark),
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200400 is_utran,
Harald Welte2483f1b2016-06-19 18:06:02 +0200401 net->vlr->cfg.assign_tmsi);
402 if (!lu_fsm) {
403 DEBUGP(DRR, "%s: Can't start LU FSM\n", mi_string);
404 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800405 }
406
Harald Welte2483f1b2016-06-19 18:06:02 +0200407 /* From vlr_loc_update() we expect an implicit dispatch of
408 * VLR_ULA_E_UPDATE_LA, and thus we expect msc_vlr_subscr_assoc() to
409 * already have been called and completed. Has an error occured? */
Harald Welte255539c2008-12-28 02:26:27 +0000410
Harald Welte2483f1b2016-06-19 18:06:02 +0200411 if (!conn->vsub || conn->vsub->lu_fsm != lu_fsm) {
412 LOGP(DRR, LOGL_ERROR,
413 "%s: internal error during Location Updating attempt\n",
414 mi_string);
415 return -EIO;
416 }
417
418 return 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000419}
420
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100421/* Turn int into semi-octet representation: 98 => 0x89 */
Harald Welte2483f1b2016-06-19 18:06:02 +0200422/* FIXME: libosmocore/libosmogsm */
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100423static uint8_t bcdify(uint8_t value)
Harald Welte4bfdfe72009-06-10 23:11:52 +0800424{
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100425 uint8_t ret;
426
427 ret = value / 10;
428 ret |= (value % 10) << 4;
429
430 return ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800431}
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100432
Harald Welte4bfdfe72009-06-10 23:11:52 +0800433
Harald Weltedb253af2008-12-30 17:56:55 +0000434/* Section 9.2.15a */
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800435int gsm48_tx_mm_info(struct gsm_subscriber_connection *conn)
Harald Weltedb253af2008-12-30 17:56:55 +0000436{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100437 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 MM INF");
Harald Weltedb253af2008-12-30 17:56:55 +0000438 struct gsm48_hdr *gh;
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200439 struct gsm_network *net = conn->network;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200440 uint8_t *ptr8;
Daniel Willmanneea93372009-08-13 03:42:07 +0200441 int name_len, name_pad;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100442
Harald Welte4bfdfe72009-06-10 23:11:52 +0800443 time_t cur_t;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100444 struct tm* gmt_time;
445 struct tm* local_time;
446 int tzunits;
Jacob Erlbeckf46e2262014-01-07 15:05:16 +0100447 int dst = 0;
Harald Weltedb253af2008-12-30 17:56:55 +0000448
Harald Weltedb253af2008-12-30 17:56:55 +0000449 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
450 gh->proto_discr = GSM48_PDISC_MM;
451 gh->msg_type = GSM48_MT_MM_INFO;
452
453 if (net->name_long) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200454#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000455 name_len = strlen(net->name_long);
456 /* 10.5.3.5a */
457 ptr8 = msgb_put(msg, 3);
458 ptr8[0] = GSM48_IE_NAME_LONG;
459 ptr8[1] = name_len*2 +1;
460 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
461
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200462 ptr16 = (uint16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000463 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000464 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +0000465
466 /* FIXME: Use Cell Broadcast, not UCS-2, since
467 * UCS-2 is only supported by later revisions of the spec */
Daniel Willmanneea93372009-08-13 03:42:07 +0200468#endif
469 name_len = (strlen(net->name_long)*7)/8;
470 name_pad = (8 - strlen(net->name_long)*7)%8;
471 if (name_pad > 0)
472 name_len++;
473 /* 10.5.3.5a */
474 ptr8 = msgb_put(msg, 3);
475 ptr8[0] = GSM48_IE_NAME_LONG;
476 ptr8[1] = name_len +1;
477 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
478
479 ptr8 = msgb_put(msg, name_len);
Harald Welte5468f762015-01-01 12:41:17 +0100480 gsm_7bit_encode_n(ptr8, name_len, net->name_long, NULL);
Daniel Willmanneea93372009-08-13 03:42:07 +0200481
Harald Weltedb253af2008-12-30 17:56:55 +0000482 }
483
484 if (net->name_short) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200485#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000486 name_len = strlen(net->name_short);
487 /* 10.5.3.5a */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200488 ptr8 = (uint8_t *) msgb_put(msg, 3);
Harald Welte7543eb72009-07-19 17:51:36 +0200489 ptr8[0] = GSM48_IE_NAME_SHORT;
Harald Weltedb253af2008-12-30 17:56:55 +0000490 ptr8[1] = name_len*2 + 1;
491 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
492
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200493 ptr16 = (uint16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000494 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000495 ptr16[i] = htons(net->name_short[i]);
Daniel Willmanneea93372009-08-13 03:42:07 +0200496#endif
497 name_len = (strlen(net->name_short)*7)/8;
498 name_pad = (8 - strlen(net->name_short)*7)%8;
499 if (name_pad > 0)
500 name_len++;
501 /* 10.5.3.5a */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200502 ptr8 = (uint8_t *) msgb_put(msg, 3);
Daniel Willmanneea93372009-08-13 03:42:07 +0200503 ptr8[0] = GSM48_IE_NAME_SHORT;
504 ptr8[1] = name_len +1;
505 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
506
507 ptr8 = msgb_put(msg, name_len);
Harald Welte5468f762015-01-01 12:41:17 +0100508 gsm_7bit_encode_n(ptr8, name_len, net->name_short, NULL);
Daniel Willmanneea93372009-08-13 03:42:07 +0200509
Harald Weltedb253af2008-12-30 17:56:55 +0000510 }
511
Harald Weltedb253af2008-12-30 17:56:55 +0000512 /* Section 10.5.3.9 */
513 cur_t = time(NULL);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100514 gmt_time = gmtime(&cur_t);
515
Harald Weltedb253af2008-12-30 17:56:55 +0000516 ptr8 = msgb_put(msg, 8);
517 ptr8[0] = GSM48_IE_NET_TIME_TZ;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100518 ptr8[1] = bcdify(gmt_time->tm_year % 100);
519 ptr8[2] = bcdify(gmt_time->tm_mon + 1);
520 ptr8[3] = bcdify(gmt_time->tm_mday);
521 ptr8[4] = bcdify(gmt_time->tm_hour);
522 ptr8[5] = bcdify(gmt_time->tm_min);
523 ptr8[6] = bcdify(gmt_time->tm_sec);
524
Neels Hofmeyr73983952016-05-10 13:29:33 +0200525 if (net->tz.override) {
Harald Welte45f91712012-07-08 16:48:11 +0200526 /* Convert tz.hr and tz.mn to units */
Neels Hofmeyr73983952016-05-10 13:29:33 +0200527 if (net->tz.hr < 0) {
528 tzunits = ((net->tz.hr/-1)*4);
529 tzunits = tzunits + (net->tz.mn/15);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100530 ptr8[7] = bcdify(tzunits);
531 /* Set negative time */
532 ptr8[7] |= 0x08;
533 }
534 else {
Neels Hofmeyr73983952016-05-10 13:29:33 +0200535 tzunits = net->tz.hr*4;
536 tzunits = tzunits + (net->tz.mn/15);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100537 ptr8[7] = bcdify(tzunits);
538 }
Jacob Erlbeckf46e2262014-01-07 15:05:16 +0100539 /* Convert DST value */
Neels Hofmeyr73983952016-05-10 13:29:33 +0200540 if (net->tz.dst >= 0 && net->tz.dst <= 2)
541 dst = net->tz.dst;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100542 }
543 else {
544 /* Need to get GSM offset and convert into 15 min units */
545 /* This probably breaks if gmtoff returns a value not evenly divisible by 15? */
Harald Welte9c3dc902012-04-08 16:59:24 +0200546#ifdef HAVE_TM_GMTOFF_IN_TM
Benoit Bolsee38bb3442017-07-05 12:57:16 +0200547 local_time = localtime(&cur_t);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100548 tzunits = (local_time->tm_gmtoff/60)/15;
Harald Welte9c3dc902012-04-08 16:59:24 +0200549#else
Benoit Bolsee38bb3442017-07-05 12:57:16 +0200550 /* find timezone offset */
551 time_t utc;
552 double offsetFromUTC;
553 utc = mktime(gmt_time);
554 local_time = localtime(&cur_t);
555 offsetFromUTC = difftime(cur_t, utc);
556 if (local_time->tm_isdst)
557 offsetFromUTC += 3600.0;
558 tzunits = ((int)offsetFromUTC) / 60 / 15;
Harald Welte9c3dc902012-04-08 16:59:24 +0200559#endif
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100560 if (tzunits < 0) {
561 tzunits = tzunits/-1;
562 ptr8[7] = bcdify(tzunits);
563 /* Flip it to negative */
564 ptr8[7] |= 0x08;
565 }
566 else
567 ptr8[7] = bcdify(tzunits);
Jacob Erlbeckf46e2262014-01-07 15:05:16 +0100568
569 /* Does not support DST +2 */
570 if (local_time->tm_isdst)
571 dst = 1;
572 }
573
574 if (dst) {
575 ptr8 = msgb_put(msg, 3);
576 ptr8[0] = GSM48_IE_NET_DST;
577 ptr8[1] = 1;
578 ptr8[2] = dst;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100579 }
Harald Weltedb253af2008-12-30 17:56:55 +0000580
Daniel Willmanneea93372009-08-13 03:42:07 +0200581 DEBUGP(DMM, "-> MM INFO\n");
582
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800583 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Weltedb253af2008-12-30 17:56:55 +0000584}
585
Neels Hofmeyrd6755152017-01-27 00:25:47 +0100586/*! Send an Authentication Request to MS on the given subscriber connection
587 * according to 3GPP/ETSI TS 24.008, Section 9.2.2.
588 * \param[in] conn Subscriber connection to send on.
589 * \param[in] rand Random challenge token to send, must be 16 bytes long.
590 * \param[in] autn r99: In case of UMTS mutual authentication, AUTN token to
591 * send; must be 16 bytes long, or pass NULL for plain GSM auth.
592 * \param[in] key_seq auth tuple's sequence number.
593 */
594int gsm48_tx_mm_auth_req(struct gsm_subscriber_connection *conn, uint8_t *rand,
595 uint8_t *autn, int key_seq)
Harald Welte7984d5c2009-08-12 22:56:50 +0200596{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100597 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 AUTH REQ");
Harald Welte7984d5c2009-08-12 22:56:50 +0200598 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Sylvain Munaut849f5542009-09-27 11:10:17 +0200599 struct gsm48_auth_req *ar = (struct gsm48_auth_req *) msgb_put(msg, sizeof(*ar));
Harald Welte7984d5c2009-08-12 22:56:50 +0200600
Neels Hofmeyr3355fd62017-02-14 17:42:25 +0100601 DEBUGP(DMM, "-> AUTH REQ (rand = %s)\n", osmo_hexdump_nospc(rand, 16));
Neels Hofmeyrd6755152017-01-27 00:25:47 +0100602 if (autn)
Neels Hofmeyr3355fd62017-02-14 17:42:25 +0100603 DEBUGP(DMM, " AUTH REQ (autn = %s)\n", osmo_hexdump_nospc(autn, 16));
Harald Welte7984d5c2009-08-12 22:56:50 +0200604
Harald Welte7984d5c2009-08-12 22:56:50 +0200605 gh->proto_discr = GSM48_PDISC_MM;
606 gh->msg_type = GSM48_MT_MM_AUTH_REQ;
607
Sylvain Munautbd55a6d2009-12-24 00:23:46 +0100608 ar->key_seq = key_seq;
Sylvain Munaut849f5542009-09-27 11:10:17 +0200609
Harald Welte7984d5c2009-08-12 22:56:50 +0200610 /* 16 bytes RAND parameters */
Neels Hofmeyrd6755152017-01-27 00:25:47 +0100611 osmo_static_assert(sizeof(ar->rand) == 16, sizeof_auth_req_r99_rand);
Harald Welte7984d5c2009-08-12 22:56:50 +0200612 if (rand)
Sylvain Munaut849f5542009-09-27 11:10:17 +0200613 memcpy(ar->rand, rand, 16);
Harald Welte7984d5c2009-08-12 22:56:50 +0200614
Neels Hofmeyrd6755152017-01-27 00:25:47 +0100615
616 /* 16 bytes AUTN */
617 if (autn)
618 msgb_tlv_put(msg, GSM48_IE_AUTN, 16, autn);
619
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800620 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte7984d5c2009-08-12 22:56:50 +0200621}
622
623/* Section 9.2.1 */
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800624int gsm48_tx_mm_auth_rej(struct gsm_subscriber_connection *conn)
Harald Welte7984d5c2009-08-12 22:56:50 +0200625{
626 DEBUGP(DMM, "-> AUTH REJECT\n");
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800627 return gsm48_tx_simple(conn, GSM48_PDISC_MM, GSM48_MT_MM_AUTH_REJ);
Harald Welte7984d5c2009-08-12 22:56:50 +0200628}
629
Harald Welte2483f1b2016-06-19 18:06:02 +0200630static int msc_vlr_tx_cm_serv_acc(void *msc_conn_ref);
631static int msc_vlr_tx_cm_serv_rej(void *msc_conn_ref, enum vlr_proc_arq_result result);
632
633static int cm_serv_reuse_conn(struct gsm_subscriber_connection *conn, const uint8_t *mi_lv)
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100634{
Harald Welte2483f1b2016-06-19 18:06:02 +0200635 uint8_t mi_type;
636 char mi_string[GSM48_MI_SIZE];
637 uint32_t tmsi;
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100638
Harald Welte2483f1b2016-06-19 18:06:02 +0200639 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi_lv+1, mi_lv[0]);
640 mi_type = mi_lv[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100641
Harald Welte2483f1b2016-06-19 18:06:02 +0200642 switch (mi_type) {
643 case GSM_MI_TYPE_IMSI:
644 if (vlr_subscr_matches_imsi(conn->vsub, mi_string))
645 goto accept_reuse;
646 break;
647 case GSM_MI_TYPE_TMSI:
648 tmsi = osmo_load32be(mi_lv+2);
649 if (vlr_subscr_matches_tmsi(conn->vsub, tmsi))
650 goto accept_reuse;
651 break;
652 case GSM_MI_TYPE_IMEI:
653 if (vlr_subscr_matches_imei(conn->vsub, mi_string))
654 goto accept_reuse;
655 break;
656 default:
657 break;
658 }
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100659
Harald Welte2483f1b2016-06-19 18:06:02 +0200660 LOGP(DMM, LOGL_ERROR, "%s: CM Service Request with mismatching mobile identity: %s %s\n",
661 vlr_subscr_name(conn->vsub), gsm48_mi_type_name(mi_type), mi_string);
662 msc_vlr_tx_cm_serv_rej(conn, VLR_PR_ARQ_RES_ILLEGAL_SUBSCR);
663 return -EINVAL;
Sylvain Munautba87f452009-12-24 00:28:46 +0100664
Harald Welte2483f1b2016-06-19 18:06:02 +0200665accept_reuse:
666 DEBUGP(DMM, "%s: re-using already accepted connection\n",
667 vlr_subscr_name(conn->vsub));
668 conn->received_cm_service_request = true;
669 return conn->network->vlr->ops.tx_cm_serv_acc(conn);
Sylvain Munautba87f452009-12-24 00:28:46 +0100670}
671
Harald Welte4ed0e922009-01-10 03:17:30 +0000672/*
673 * Handle CM Service Requests
674 * a) Verify that the packet is long enough to contain the information
675 * we require otherwsie reject with INCORRECT_MESSAGE
676 * b) Try to parse the TMSI. If we do not have one reject
677 * c) Check that we know the subscriber with the TMSI otherwise reject
678 * with a HLR cause
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200679 * d) Set the subscriber on the conn and accept
Harald Welte2483f1b2016-06-19 18:06:02 +0200680 *
681 * Keep this function non-static for direct invocation by unit tests.
Harald Welte4ed0e922009-01-10 03:17:30 +0000682 */
Harald Welte2483f1b2016-06-19 18:06:02 +0200683int gsm48_rx_mm_serv_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4b634542008-12-27 01:55:51 +0000684{
Harald Welte2483f1b2016-06-19 18:06:02 +0200685 static const enum subscr_conn_from conn_from_cm_service_req =
686 SUBSCR_CONN_FROM_CM_SERVICE_REQ;
687 struct gsm_network *net = conn->network;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200688 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200689 char mi_string[GSM48_MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +0000690
Harald Welteba4cf162009-01-10 01:49:35 +0000691 struct gsm48_hdr *gh = msgb_l3(msg);
692 struct gsm48_service_request *req =
693 (struct gsm48_service_request *)gh->data;
Holger Hans Peter Freyther5d658062010-05-14 08:02:08 +0800694 /* unfortunately in Phase1 the classmark2 length is variable */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200695 uint8_t classmark2_len = gh->data[1];
696 uint8_t *classmark2 = gh->data+2;
697 uint8_t mi_len = *(classmark2 + classmark2_len);
698 uint8_t *mi = (classmark2 + classmark2_len + 1);
Harald Welte2483f1b2016-06-19 18:06:02 +0200699 struct osmo_location_area_id lai;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200700 bool is_utran;
Harald Welte2483f1b2016-06-19 18:06:02 +0200701 int rc;
702
703 lai.plmn.mcc = conn->network->country_code;
704 lai.plmn.mnc = conn->network->network_code;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200705 lai.lac = conn->lac;
Harald Welteba4cf162009-01-10 01:49:35 +0000706
Harald Weltec9e02182009-05-01 19:07:53 +0000707 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
Harald Welteba4cf162009-01-10 01:49:35 +0000708 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
Harald Weltec9e02182009-05-01 19:07:53 +0000709 DEBUGPC(DMM, "wrong sized message\n");
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200710 return msc_gsm48_tx_mm_serv_rej(conn,
711 GSM48_REJECT_INCORRECT_MESSAGE);
Harald Welteba4cf162009-01-10 01:49:35 +0000712 }
713
714 if (msg->data_len < req->mi_len + 6) {
Harald Weltec9e02182009-05-01 19:07:53 +0000715 DEBUGPC(DMM, "does not fit in packet\n");
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200716 return msc_gsm48_tx_mm_serv_rej(conn,
717 GSM48_REJECT_INCORRECT_MESSAGE);
Harald Welteba4cf162009-01-10 01:49:35 +0000718 }
719
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200720 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
Harald Weltec9e02182009-05-01 19:07:53 +0000721 mi_type = mi[0] & GSM_MI_TYPE_MASK;
Harald Welte3995d2e2018-01-24 11:23:54 +0100722 DEBUGPC(DMM, "serv_type=0x%02x MI(%s)=%s\n",
723 req->cm_service_type, gsm48_mi_type_name(mi_type), mi_string);
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200724
Harald Welte3995d2e2018-01-24 11:23:54 +0100725 switch (mi_type) {
726 case GSM_MI_TYPE_IMSI:
727 case GSM_MI_TYPE_TMSI:
728 /* continue below */
729 break;
730 case GSM_MI_TYPE_IMEI:
731 if (req->cm_service_type == GSM48_CMSERV_EMERGENCY) {
732 /* We don't do emergency calls by IMEI */
733 LOGP(DMM, LOGL_NOTICE, "<- CM SERVICE REQUEST(IMEI=%s) rejected\n", mi_string);
734 return msc_gsm48_tx_mm_serv_rej(conn, GSM48_REJECT_IMEI_NOT_ACCEPTED);
735 }
736 /* fall-through for non-emergency setup */
737 default:
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200738 DEBUGPC(DMM, "mi_type is not expected: %d\n", mi_type);
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200739 return msc_gsm48_tx_mm_serv_rej(conn,
740 GSM48_REJECT_INCORRECT_MESSAGE);
Harald Welteba4cf162009-01-10 01:49:35 +0000741 }
742
Harald Welte37382ec2018-01-24 12:49:34 +0100743 switch (req->cm_service_type) {
744 case GSM48_CMSERV_MO_CALL_PACKET:
745 case GSM48_CMSERV_EMERGENCY:
746 case GSM48_CMSERV_SMS:
747 case GSM48_CMSERV_SUP_SERV:
748 /* continue below */
749 break;
750 default:
751 return msc_gsm48_tx_mm_serv_rej(conn, GSM48_REJECT_SRV_OPT_NOT_SUPPORTED);
752 }
753
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200754 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, (classmark2 + classmark2_len));
Harald Welte2483f1b2016-06-19 18:06:02 +0200755 memcpy(conn->classmark.classmark2, classmark2, classmark2_len);
756 conn->classmark.classmark2_len = classmark2_len;
757
758 if (conn->conn_fsm) {
759 if (msc_subscr_conn_is_accepted(conn))
760 return cm_serv_reuse_conn(conn, mi-1);
761 LOGP(DMM, LOGL_ERROR, "%s: connection already in use\n",
762 vlr_subscr_name(conn->vsub));
763 msc_vlr_tx_cm_serv_rej(conn, VLR_PR_ARQ_RES_UNKNOWN_ERROR);
764 return -EINVAL;
765 }
766
767 rc = msc_create_conn_fsm(conn, mi_string);
768 if (rc) {
769 msc_vlr_tx_cm_serv_rej(conn, VLR_PR_ARQ_RES_UNKNOWN_ERROR);
770 /* logging already happened in msc_create_conn_fsm() */
771 return rc;
772 }
Harald Welte7659de12009-12-13 12:39:18 +0100773
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200774 is_utran = (conn->via_ran == RAN_UTRAN_IU);
Harald Welte2483f1b2016-06-19 18:06:02 +0200775 vlr_proc_acc_req(conn->conn_fsm,
776 SUBSCR_CONN_E_ACCEPTED,
777 SUBSCR_CONN_E_CN_CLOSE,
778 (void*)&conn_from_cm_service_req,
779 net->vlr, conn,
780 VLR_PR_ARQ_T_CM_SERV_REQ, mi-1, &lai,
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200781 is_utran || conn->network->authentication_required,
Harald Welte7b222aa2017-12-23 19:30:32 +0100782 is_utran || conn->network->a5_encryption_mask > 0x01,
Harald Welte2483f1b2016-06-19 18:06:02 +0200783 classmark_is_r99(&conn->classmark),
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200784 is_utran);
Holger Freythereb443982009-06-04 13:58:42 +0000785
Harald Welte2483f1b2016-06-19 18:06:02 +0200786 return 0;
Harald Welte4b634542008-12-27 01:55:51 +0000787}
788
Harald Welte49f8fcb2018-01-24 21:40:19 +0100789/* Receive a CM Re-establish Request */
790static int gsm48_rx_cm_reest_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
791{
792 uint8_t mi_type;
793 char mi_string[GSM48_MI_SIZE];
794 struct gsm48_hdr *gh = msgb_l3(msg);
795
796 uint8_t classmark2_len = gh->data[1];
797 uint8_t *classmark2 = gh->data+2;
798 uint8_t mi_len = *(classmark2 + classmark2_len);
799 uint8_t *mi = (classmark2 + classmark2_len + 1);
800
801 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
802 mi_type = mi[0] & GSM_MI_TYPE_MASK;
803 DEBUGP(DMM, "<- CM RE-ESTABLISH REQUEST MI(%s)=%s\n", gsm48_mi_type_name(mi_type), mi_string);
804
805 /* we don't support CM call re-establishment */
806 return msc_gsm48_tx_mm_serv_rej(conn, GSM48_REJECT_SRV_OPT_NOT_SUPPORTED);
807}
808
Holger Hans Peter Freyther153b13b2012-07-10 08:53:27 +0200809static int gsm48_rx_mm_imsi_detach_ind(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte2a139372009-02-22 21:14:55 +0000810{
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200811 struct gsm_network *network = conn->network;
Harald Welte2a139372009-02-22 21:14:55 +0000812 struct gsm48_hdr *gh = msgb_l3(msg);
813 struct gsm48_imsi_detach_ind *idi =
814 (struct gsm48_imsi_detach_ind *) gh->data;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200815 uint8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200816 char mi_string[GSM48_MI_SIZE];
Harald Welte2483f1b2016-06-19 18:06:02 +0200817 struct vlr_subscr *vsub = NULL;
Harald Welte2a139372009-02-22 21:14:55 +0000818
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200819 gsm48_mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
Harald Welte2483f1b2016-06-19 18:06:02 +0200820 DEBUGP(DMM, "IMSI DETACH INDICATION: MI(%s)=%s\n",
821 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000822
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200823 rate_ctr_inc(&network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_DETACH]);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100824
Harald Welte2a139372009-02-22 21:14:55 +0000825 switch (mi_type) {
826 case GSM_MI_TYPE_TMSI:
Harald Welte2483f1b2016-06-19 18:06:02 +0200827 vsub = vlr_subscr_find_by_tmsi(network->vlr,
828 tmsi_from_string(mi_string));
Harald Welte2a139372009-02-22 21:14:55 +0000829 break;
830 case GSM_MI_TYPE_IMSI:
Harald Welte2483f1b2016-06-19 18:06:02 +0200831 vsub = vlr_subscr_find_by_imsi(network->vlr, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000832 break;
833 case GSM_MI_TYPE_IMEI:
834 case GSM_MI_TYPE_IMEISV:
835 /* no sim card... FIXME: what to do ? */
Harald Welte2483f1b2016-06-19 18:06:02 +0200836 LOGP(DMM, LOGL_ERROR, "MI(%s)=%s: unimplemented mobile identity type\n",
837 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000838 break;
Alexander Couzensfbd96f52016-08-29 18:40:02 +0200839 default:
Harald Welte2483f1b2016-06-19 18:06:02 +0200840 LOGP(DMM, LOGL_ERROR, "MI(%s)=%s: unknown mobile identity type\n",
841 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000842 break;
843 }
844
Harald Welte2483f1b2016-06-19 18:06:02 +0200845 /* TODO? We used to remember the subscriber's classmark1 here and
846 * stored it in the old sqlite db, but now we store it in a conn that
847 * will be discarded anyway: */
848 conn->classmark.classmark1 = idi->classmark1;
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200849
Harald Welte2483f1b2016-06-19 18:06:02 +0200850 if (!vsub) {
851 LOGP(DMM, LOGL_ERROR, "IMSI DETACH for unknown subscriber MI(%s)=%s\n",
852 gsm48_mi_type_name(mi_type), mi_string);
853 } else {
854 LOGP(DMM, LOGL_INFO, "IMSI DETACH for %s\n", vlr_subscr_name(vsub));
Neels Hofmeyrfacd57a2017-12-15 03:48:48 +0100855
856 if (vsub->cs.is_paging)
857 subscr_paging_cancel(vsub, GSM_PAGING_EXPIRED);
858
Harald Welte2483f1b2016-06-19 18:06:02 +0200859 vlr_subscr_rx_imsi_detach(vsub);
860 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_DETACHED, vsub);
861 vlr_subscr_put(vsub);
862 }
Harald Welte2a139372009-02-22 21:14:55 +0000863
Harald Welte2483f1b2016-06-19 18:06:02 +0200864 msc_subscr_conn_close(conn, 0);
Harald Welte2a139372009-02-22 21:14:55 +0000865 return 0;
866}
867
Harald Welted2a7f5a2009-06-05 20:08:20 +0000868static int gsm48_rx_mm_status(struct msgb *msg)
869{
870 struct gsm48_hdr *gh = msgb_l3(msg);
871
872 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
873
874 return 0;
875}
876
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100877static int parse_gsm_auth_resp(uint8_t *res, uint8_t *res_len,
878 struct gsm_subscriber_connection *conn,
879 struct msgb *msg)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100880{
881 struct gsm48_hdr *gh = msgb_l3(msg);
882 struct gsm48_auth_resp *ar = (struct gsm48_auth_resp*) gh->data;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100883
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100884 if (msgb_l3len(msg) < sizeof(*gh) + sizeof(*ar)) {
885 LOGP(DMM, LOGL_ERROR,
886 "%s: MM AUTHENTICATION RESPONSE:"
887 " l3 length invalid: %u\n",
Harald Welte2483f1b2016-06-19 18:06:02 +0200888 vlr_subscr_name(conn->vsub), msgb_l3len(msg));
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100889 return -EINVAL;
890 }
891
892 *res_len = sizeof(ar->sres);
893 memcpy(res, ar->sres, sizeof(ar->sres));
894 return 0;
895}
896
897static int parse_umts_auth_resp(uint8_t *res, uint8_t *res_len,
898 struct gsm_subscriber_connection *conn,
899 struct msgb *msg)
900{
901 struct gsm48_hdr *gh;
902 uint8_t *data;
903 uint8_t iei;
904 uint8_t ie_len;
905 unsigned int data_len;
906
907 /* First parse the GSM part */
908 if (parse_gsm_auth_resp(res, res_len, conn, msg))
909 return -EINVAL;
910 OSMO_ASSERT(*res_len == 4);
911
912 /* Then add the extended res part */
913 gh = msgb_l3(msg);
914 data = gh->data + sizeof(struct gsm48_auth_resp);
915 data_len = msgb_l3len(msg) - (data - (uint8_t*)msgb_l3(msg));
916
917 if (data_len < 3) {
918 LOGP(DMM, LOGL_ERROR,
919 "%s: MM AUTHENTICATION RESPONSE:"
920 " l3 length invalid: %u\n",
Harald Welte2483f1b2016-06-19 18:06:02 +0200921 vlr_subscr_name(conn->vsub), msgb_l3len(msg));
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100922 return -EINVAL;
923 }
924
925 iei = data[0];
926 ie_len = data[1];
927 if (iei != GSM48_IE_AUTH_RES_EXT) {
928 LOGP(DMM, LOGL_ERROR,
929 "%s: MM R99 AUTHENTICATION RESPONSE:"
930 " expected IEI 0x%02x, got 0x%02x\n",
Harald Welte2483f1b2016-06-19 18:06:02 +0200931 vlr_subscr_name(conn->vsub),
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100932 GSM48_IE_AUTH_RES_EXT, iei);
933 return -EINVAL;
934 }
935
936 if (ie_len > 12) {
937 LOGP(DMM, LOGL_ERROR,
938 "%s: MM R99 AUTHENTICATION RESPONSE:"
939 " extended Auth Resp IE 0x%02x is too large: %u bytes\n",
Harald Welte2483f1b2016-06-19 18:06:02 +0200940 vlr_subscr_name(conn->vsub), GSM48_IE_AUTH_RES_EXT, ie_len);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100941 return -EINVAL;
942 }
943
944 *res_len += ie_len;
945 memcpy(res + 4, &data[2], ie_len);
946 return 0;
947}
948
949/* Chapter 9.2.3: Authentication Response */
950static int gsm48_rx_mm_auth_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
951{
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100952 uint8_t res[16];
953 uint8_t res_len;
954 int rc;
955 bool is_r99;
956
Harald Welte2483f1b2016-06-19 18:06:02 +0200957 if (!conn->vsub) {
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100958 LOGP(DMM, LOGL_ERROR,
959 "MM AUTHENTICATION RESPONSE: invalid: no subscriber\n");
Harald Welte2483f1b2016-06-19 18:06:02 +0200960 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100961 return -EINVAL;
962 }
963
964 if (msgb_l3len(msg) >
965 sizeof(struct gsm48_hdr) + sizeof(struct gsm48_auth_resp)) {
966 rc = parse_umts_auth_resp(res, &res_len, conn, msg);
967 is_r99 = true;
968 } else {
969 rc = parse_gsm_auth_resp(res, &res_len, conn, msg);
970 is_r99 = false;
971 }
972
973 if (rc) {
Harald Welte2483f1b2016-06-19 18:06:02 +0200974 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100975 return -EINVAL;
976 }
977
978 DEBUGP(DMM, "%s: MM %s AUTHENTICATION RESPONSE (%s = %s)\n",
Harald Welte2483f1b2016-06-19 18:06:02 +0200979 vlr_subscr_name(conn->vsub),
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100980 is_r99 ? "R99" : "GSM", is_r99 ? "res" : "sres",
981 osmo_hexdump_nospc(res, res_len));
982
Harald Welte2483f1b2016-06-19 18:06:02 +0200983 return vlr_subscr_rx_auth_resp(conn->vsub, is_r99,
984 conn->via_ran == RAN_UTRAN_IU,
985 res, res_len);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100986}
987
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100988static int gsm48_rx_mm_auth_fail(struct gsm_subscriber_connection *conn, struct msgb *msg)
989{
990 struct gsm48_hdr *gh = msgb_l3(msg);
991 uint8_t cause;
992 uint8_t auts_tag;
993 uint8_t auts_len;
994 uint8_t *auts;
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100995
Harald Welte2483f1b2016-06-19 18:06:02 +0200996 if (!conn->vsub) {
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100997 LOGP(DMM, LOGL_ERROR,
998 "MM R99 AUTHENTICATION FAILURE: invalid: no subscriber\n");
Harald Welte2483f1b2016-06-19 18:06:02 +0200999 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001000 return -EINVAL;
1001 }
1002
1003 if (msgb_l3len(msg) < sizeof(*gh) + 1) {
1004 LOGP(DMM, LOGL_ERROR,
1005 "%s: MM R99 AUTHENTICATION FAILURE:"
1006 " l3 length invalid: %u\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001007 vlr_subscr_name(conn->vsub), msgb_l3len(msg));
1008 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001009 return -EINVAL;
1010 }
1011
1012 cause = gh->data[0];
1013
1014 if (cause != GSM48_REJECT_SYNCH_FAILURE) {
1015 LOGP(DMM, LOGL_INFO,
1016 "%s: MM R99 AUTHENTICATION FAILURE: cause 0x%0x\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001017 vlr_subscr_name(conn->vsub), cause);
1018 vlr_subscr_rx_auth_fail(conn->vsub, NULL);
1019 return 0;
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001020 }
1021
1022 /* This is a Synch Failure procedure, which should pass an AUTS to
1023 * resynchronize the sequence nr with the HLR. Expecting exactly one
1024 * TLV with 14 bytes of AUTS. */
1025
1026 if (msgb_l3len(msg) < sizeof(*gh) + 1 + 2) {
1027 LOGP(DMM, LOGL_INFO,
1028 "%s: MM R99 AUTHENTICATION FAILURE:"
1029 " invalid Synch Failure: missing AUTS IE\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001030 vlr_subscr_name(conn->vsub));
1031 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001032 return -EINVAL;
1033 }
1034
1035 auts_tag = gh->data[1];
1036 auts_len = gh->data[2];
1037 auts = &gh->data[3];
1038
1039 if (auts_tag != GSM48_IE_AUTS
1040 || auts_len != 14) {
1041 LOGP(DMM, LOGL_INFO,
1042 "%s: MM R99 AUTHENTICATION FAILURE:"
1043 " invalid Synch Failure:"
1044 " expected AUTS IE 0x%02x of 14 bytes,"
1045 " got IE 0x%02x of %u bytes\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001046 vlr_subscr_name(conn->vsub),
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001047 GSM48_IE_AUTS, auts_tag, auts_len);
Harald Welte2483f1b2016-06-19 18:06:02 +02001048 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001049 return -EINVAL;
1050 }
1051
1052 if (msgb_l3len(msg) < sizeof(*gh) + 1 + 2 + auts_len) {
1053 LOGP(DMM, LOGL_INFO,
1054 "%s: MM R99 AUTHENTICATION FAILURE:"
1055 " invalid Synch Failure msg: message truncated (%u)\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001056 vlr_subscr_name(conn->vsub), msgb_l3len(msg));
1057 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001058 return -EINVAL;
1059 }
1060
1061 /* We have an AUTS IE with exactly 14 bytes of AUTS and the msgb is
1062 * large enough. */
1063
1064 DEBUGP(DMM, "%s: MM R99 AUTHENTICATION SYNCH (AUTS = %s)\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001065 vlr_subscr_name(conn->vsub), osmo_hexdump_nospc(auts, 14));
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001066
Harald Welte2483f1b2016-06-19 18:06:02 +02001067 return vlr_subscr_rx_auth_fail(conn->vsub, auts);
1068}
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001069
Harald Welte2483f1b2016-06-19 18:06:02 +02001070static int gsm48_rx_mm_tmsi_reall_compl(struct gsm_subscriber_connection *conn)
1071{
1072 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
1073 vlr_subscr_name(conn->vsub));
1074 if (!conn->vsub) {
1075 LOGP(DMM, LOGL_ERROR,
1076 "Rx MM TMSI Reallocation Complete: invalid: no subscriber\n");
1077 return -EINVAL;
1078 }
1079 return vlr_subscr_rx_tmsi_reall_compl(conn->vsub);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001080}
1081
Harald Weltebf5e8df2009-02-03 12:59:45 +00001082/* Receive a GSM 04.08 Mobility Management (MM) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001083static int gsm0408_rcv_mm(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001084{
1085 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001086 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001087
Neels Hofmeyr531734a2016-03-14 16:13:24 +01001088 switch (gsm48_hdr_msg_type(gh)) {
Harald Welte52b1f982008-12-23 20:25:15 +00001089 case GSM48_MT_MM_LOC_UPD_REQUEST:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001090 rc = mm_rx_loc_upd_req(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001091 break;
1092 case GSM48_MT_MM_ID_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001093 rc = mm_rx_id_resp(conn, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001094 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001095 case GSM48_MT_MM_CM_SERV_REQ:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001096 rc = gsm48_rx_mm_serv_req(conn, msg);
Harald Welte4b634542008-12-27 01:55:51 +00001097 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001098 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +00001099 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001100 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001101 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte2483f1b2016-06-19 18:06:02 +02001102 rc = gsm48_rx_mm_tmsi_reall_compl(conn);
Harald Welte69b2af22009-01-06 19:47:00 +00001103 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001104 case GSM48_MT_MM_IMSI_DETACH_IND:
Holger Hans Peter Freyther153b13b2012-07-10 08:53:27 +02001105 rc = gsm48_rx_mm_imsi_detach_ind(conn, msg);
Harald Welte2a139372009-02-22 21:14:55 +00001106 break;
1107 case GSM48_MT_MM_CM_REEST_REQ:
Harald Welte49f8fcb2018-01-24 21:40:19 +01001108 rc = gsm48_rx_cm_reest_req(conn, msg);
Harald Welte2a139372009-02-22 21:14:55 +00001109 break;
1110 case GSM48_MT_MM_AUTH_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001111 rc = gsm48_rx_mm_auth_resp(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001112 break;
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001113 case GSM48_MT_MM_AUTH_FAIL:
1114 rc = gsm48_rx_mm_auth_fail(conn, msg);
1115 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001116 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01001117 LOGP(DMM, LOGL_NOTICE, "Unknown GSM 04.08 MM msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00001118 gh->msg_type);
1119 break;
1120 }
1121
1122 return rc;
1123}
Harald Weltebf5e8df2009-02-03 12:59:45 +00001124
Harald Welte2483f1b2016-06-19 18:06:02 +02001125static uint8_t *gsm48_cm2_get_mi(uint8_t *classmark2_lv, unsigned int tot_len)
1126{
1127 /* Check the size for the classmark */
1128 if (tot_len < 1 + *classmark2_lv)
1129 return NULL;
1130
1131 uint8_t *mi_lv = classmark2_lv + *classmark2_lv + 1;
1132 if (tot_len < 2 + *classmark2_lv + mi_lv[0])
1133 return NULL;
1134
1135 return mi_lv;
1136}
1137
Harald Welte2d35ae62009-02-06 12:02:13 +00001138/* Receive a PAGING RESPONSE message from the MS */
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001139static int gsm48_rx_rr_pag_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte2d35ae62009-02-06 12:02:13 +00001140{
Harald Welte2483f1b2016-06-19 18:06:02 +02001141 static const enum subscr_conn_from conn_from_paging_resp =
1142 SUBSCR_CONN_FROM_PAGING_RESP;
1143 struct gsm_network *net = conn->network;
Harald Welte2d35ae62009-02-06 12:02:13 +00001144 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001145 struct gsm48_pag_resp *resp;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001146 uint8_t *classmark2_lv = gh->data + 1;
Harald Welte2483f1b2016-06-19 18:06:02 +02001147 uint8_t *mi_lv;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001148 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001149 char mi_string[GSM48_MI_SIZE];
Harald Welte2d35ae62009-02-06 12:02:13 +00001150 int rc = 0;
Harald Welte2483f1b2016-06-19 18:06:02 +02001151 struct osmo_location_area_id lai;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001152 bool is_utran;
Harald Welte2483f1b2016-06-19 18:06:02 +02001153
1154 lai.plmn.mcc = conn->network->country_code;
1155 lai.plmn.mnc = conn->network->network_code;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02001156 lai.lac = conn->lac;
Harald Welte2d35ae62009-02-06 12:02:13 +00001157
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001158 resp = (struct gsm48_pag_resp *) &gh->data[0];
1159 gsm48_paging_extract_mi(resp, msgb_l3len(msg) - sizeof(*gh),
1160 mi_string, &mi_type);
Harald Welteb9845f92015-08-16 18:07:48 +02001161 DEBUGP(DRR, "PAGING RESPONSE: MI(%s)=%s\n",
1162 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte3ac7f102009-08-10 10:12:45 +02001163
Harald Welte2483f1b2016-06-19 18:06:02 +02001164 mi_lv = gsm48_cm2_get_mi(classmark2_lv, msgb_l3len(msg) - sizeof(*gh));
1165 if (!mi_lv) {
1166 /* FIXME */
1167 return -1;
Harald Weltefe18d8f2009-02-22 21:14:24 +00001168 }
Harald Welte2d35ae62009-02-06 12:02:13 +00001169
Harald Welte2483f1b2016-06-19 18:06:02 +02001170 rc = msc_create_conn_fsm(conn, mi_string);
1171 if (rc)
1172 /* logging already happened in msc_create_conn_fsm() */
1173 return rc;
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001174
Harald Welte2483f1b2016-06-19 18:06:02 +02001175 memcpy(conn->classmark.classmark2, classmark2_lv+1, *classmark2_lv);
1176 conn->classmark.classmark2_len = *classmark2_lv;
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001177
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001178 is_utran = (conn->via_ran == RAN_UTRAN_IU);
Harald Welte2483f1b2016-06-19 18:06:02 +02001179 vlr_proc_acc_req(conn->conn_fsm,
1180 SUBSCR_CONN_E_ACCEPTED,
1181 SUBSCR_CONN_E_CN_CLOSE,
1182 (void*)&conn_from_paging_resp,
1183 net->vlr, conn,
1184 VLR_PR_ARQ_T_PAGING_RESP, mi_lv, &lai,
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001185 is_utran || conn->network->authentication_required,
Harald Welte7b222aa2017-12-23 19:30:32 +01001186 is_utran || conn->network->a5_encryption_mask > 0x01,
Harald Welte2483f1b2016-06-19 18:06:02 +02001187 classmark_is_r99(&conn->classmark),
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001188 is_utran);
Holger Freyther053e09d2009-02-14 22:51:06 +00001189
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001190 return 0;
Harald Welte2d35ae62009-02-06 12:02:13 +00001191}
1192
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001193static int gsm48_rx_rr_app_info(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001194{
1195 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001196 uint8_t apdu_id_flags;
1197 uint8_t apdu_len;
1198 uint8_t *apdu_data;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001199
1200 apdu_id_flags = gh->data[0];
1201 apdu_len = gh->data[1];
1202 apdu_data = gh->data+2;
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001203
Max8dc8f232017-02-09 19:13:02 +01001204 DEBUGP(DRR, "RX APPLICATION INFO id/flags=0x%02x apdu_len=%u apdu=%s\n",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02001205 apdu_id_flags, apdu_len, osmo_hexdump(apdu_data, apdu_len));
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001206
Harald Welte2483f1b2016-06-19 18:06:02 +02001207 /* we're not using the app info blob anywhere, so ignore. */
1208#if 0
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001209 return db_apdu_blob_store(conn->subscr, apdu_id_flags, apdu_len, apdu_data);
Harald Welte2483f1b2016-06-19 18:06:02 +02001210#else
1211 return 0;
1212#endif
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001213}
1214
Harald Weltebf5e8df2009-02-03 12:59:45 +00001215/* Receive a GSM 04.08 Radio Resource (RR) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001216static int gsm0408_rcv_rr(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001217{
1218 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001219 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001220
1221 switch (gh->msg_type) {
Harald Welte52b1f982008-12-23 20:25:15 +00001222 case GSM48_MT_RR_PAG_RESP:
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001223 rc = gsm48_rx_rr_pag_resp(conn, msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001224 break;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001225 case GSM48_MT_RR_APP_INFO:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001226 rc = gsm48_rx_rr_app_info(conn, msg);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001227 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001228 default:
Philippd37981e2016-10-10 15:11:41 +02001229 LOGP(DRR, LOGL_NOTICE, "MSC: Unimplemented %s GSM 04.08 RR "
1230 "message\n", gsm48_rr_msg_name(gh->msg_type));
Harald Welte52b1f982008-12-23 20:25:15 +00001231 break;
1232 }
1233
Harald Welte2d35ae62009-02-06 12:02:13 +00001234 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001235}
1236
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001237int gsm48_send_rr_app_info(struct gsm_subscriber_connection *conn, uint8_t apdu_id,
1238 uint8_t apdu_len, const uint8_t *apdu)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001239{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001240 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 APP INF");
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001241 struct gsm48_hdr *gh;
1242
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001243 DEBUGP(DRR, "TX APPLICATION INFO id=0x%02x, len=%u\n",
1244 apdu_id, apdu_len);
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001245
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001246 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2 + apdu_len);
1247 gh->proto_discr = GSM48_PDISC_RR;
1248 gh->msg_type = GSM48_MT_RR_APP_INFO;
1249 gh->data[0] = apdu_id;
1250 gh->data[1] = apdu_len;
1251 memcpy(gh->data+2, apdu, apdu_len);
1252
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +08001253 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001254}
1255
Alexander Couzens92f552f2016-08-23 07:32:27 +02001256/* FIXME: this count_statistics is a state machine behaviour. we should convert
1257 * the complete call control into a state machine. Afterwards we can move this
1258 * code into state transitions.
1259 */
1260static void count_statistics(struct gsm_trans *trans, int new_state)
1261{
1262 int old_state = trans->cc.state;
1263 struct rate_ctr_group *msc = trans->net->msc_ctrs;
1264
1265 if (old_state == new_state)
1266 return;
1267
1268 /* state incoming */
1269 switch (new_state) {
1270 case GSM_CSTATE_ACTIVE:
1271 osmo_counter_inc(trans->net->active_calls);
1272 rate_ctr_inc(&msc->ctr[MSC_CTR_CALL_ACTIVE]);
1273 break;
1274 }
1275
1276 /* state outgoing */
1277 switch (old_state) {
1278 case GSM_CSTATE_ACTIVE:
1279 osmo_counter_dec(trans->net->active_calls);
1280 if (new_state == GSM_CSTATE_DISCONNECT_REQ ||
1281 new_state == GSM_CSTATE_DISCONNECT_IND)
1282 rate_ctr_inc(&msc->ctr[MSC_CTR_CALL_COMPLETE]);
1283 else
1284 rate_ctr_inc(&msc->ctr[MSC_CTR_CALL_INCOMPLETE]);
1285 break;
1286 }
1287}
1288
Harald Welte4bc90a12008-12-27 16:32:52 +00001289/* Call Control */
1290
Harald Welte7584aea2009-02-11 11:44:12 +00001291/* The entire call control code is written in accordance with Figure 7.10c
1292 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1293 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1294 * it for voice */
1295
Harald Welte4bfdfe72009-06-10 23:11:52 +08001296static void new_cc_state(struct gsm_trans *trans, int state)
1297{
1298 if (state > 31 || state < 0)
1299 return;
1300
Neels Hofmeyrfef670b2017-11-22 01:57:00 +01001301 DEBUGP(DCC, "(ti %02x sub %s) new state %s -> %s\n",
1302 trans->transaction_id,
1303 vlr_subscr_name(trans->vsub),
1304 gsm48_cc_state_name(trans->cc.state),
1305 gsm48_cc_state_name(state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001306
Alexander Couzens92f552f2016-08-23 07:32:27 +02001307 count_statistics(trans, state);
Harald Weltedcaf5652009-07-23 18:56:43 +02001308 trans->cc.state = state;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001309}
1310
1311static int gsm48_cc_tx_status(struct gsm_trans *trans, void *arg)
Harald Welte4bc90a12008-12-27 16:32:52 +00001312{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001313 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC STATUS");
Harald Welte4bc90a12008-12-27 16:32:52 +00001314 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001315 uint8_t *cause, *call_state;
Harald Welte4bc90a12008-12-27 16:32:52 +00001316
Harald Welte4bc90a12008-12-27 16:32:52 +00001317 gh->msg_type = GSM48_MT_CC_STATUS;
1318
1319 cause = msgb_put(msg, 3);
1320 cause[0] = 2;
1321 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1322 cause[2] = 0x80 | 30; /* response to status inquiry */
1323
1324 call_state = msgb_put(msg, 1);
1325 call_state[0] = 0xc0 | 0x00;
1326
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001327 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bc90a12008-12-27 16:32:52 +00001328}
1329
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001330static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001331 uint8_t pdisc, uint8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001332{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001333 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 TX SIMPLE");
Harald Welte4bc90a12008-12-27 16:32:52 +00001334 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1335
Harald Welte6f4b7532008-12-29 00:39:37 +00001336 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001337 gh->msg_type = msg_type;
1338
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001339 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte4bc90a12008-12-27 16:32:52 +00001340}
1341
Harald Welte4bfdfe72009-06-10 23:11:52 +08001342static void gsm48_stop_cc_timer(struct gsm_trans *trans)
1343{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001344 if (osmo_timer_pending(&trans->cc.timer)) {
Harald Weltedcaf5652009-07-23 18:56:43 +02001345 DEBUGP(DCC, "stopping pending timer T%x\n", trans->cc.Tcurrent);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001346 osmo_timer_del(&trans->cc.timer);
Harald Weltedcaf5652009-07-23 18:56:43 +02001347 trans->cc.Tcurrent = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001348 }
1349}
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001350
Harald Welte4bfdfe72009-06-10 23:11:52 +08001351static int mncc_recvmsg(struct gsm_network *net, struct gsm_trans *trans,
1352 int msg_type, struct gsm_mncc *mncc)
1353{
1354 struct msgb *msg;
Harald Welte04dc88f2010-12-22 21:45:05 +01001355 unsigned char *data;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001356
Philipp Maierfbf66102017-04-09 12:32:51 +02001357 DEBUGP(DMNCC, "transmit message %s\n", get_mncc_name(msg_type));
1358
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02001359#if BEFORE_MSCSPLIT
1360 /* Re-enable this log output once we can obtain this information via
1361 * A-interface, see OS#2391. */
Harald Welte4bfdfe72009-06-10 23:11:52 +08001362 if (trans)
Harald Welteb854b292010-12-26 19:06:37 +01001363 if (trans->conn && trans->conn->lchan)
Harald Welte6f5aee02009-07-23 21:21:14 +02001364 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08001365 "Sending '%s' to MNCC.\n",
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001366 trans->conn->lchan->ts->trx->bts->nr,
1367 trans->conn->lchan->ts->trx->nr,
1368 trans->conn->lchan->ts->nr, trans->transaction_id,
Harald Welte2483f1b2016-06-19 18:06:02 +02001369 vlr_subscr_msisdn_or_name(trans->vsub),
Harald Welte4bfdfe72009-06-10 23:11:52 +08001370 get_mncc_name(msg_type));
1371 else
1372 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
1373 "Sending '%s' to MNCC.\n",
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 -) "
1378 "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02001379#else
1380 DEBUGP(DCC, "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
1381#endif
Harald Welte4bfdfe72009-06-10 23:11:52 +08001382
1383 mncc->msg_type = msg_type;
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001384
Harald Welte966636f2009-06-26 19:39:35 +02001385 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001386 if (!msg)
1387 return -ENOMEM;
Harald Welte04dc88f2010-12-22 21:45:05 +01001388
1389 data = msgb_put(msg, sizeof(struct gsm_mncc));
1390 memcpy(data, mncc, sizeof(struct gsm_mncc));
1391
Harald Welte54209c22010-12-22 23:43:29 +01001392 cc_tx_to_mncc(net, msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001393
1394 return 0;
1395}
1396
1397int mncc_release_ind(struct gsm_network *net, struct gsm_trans *trans,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001398 uint32_t callref, int location, int value)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001399{
1400 struct gsm_mncc rel;
1401
Harald Welte92f70c52009-06-12 01:54:08 +08001402 memset(&rel, 0, sizeof(rel));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001403 rel.callref = callref;
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001404 mncc_set_cause(&rel, location, value);
Andreas Eversberg15907272013-01-25 08:38:29 +01001405 if (trans && trans->cc.state == GSM_CSTATE_RELEASE_REQ)
1406 return mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001407 return mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
1408}
1409
Harald Weltedcaf5652009-07-23 18:56:43 +02001410/* Call Control Specific transaction release.
1411 * gets called by trans_free, DO NOT CALL YOURSELF! */
1412void _gsm48_cc_trans_free(struct gsm_trans *trans)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001413{
Harald Welte4bfdfe72009-06-10 23:11:52 +08001414 gsm48_stop_cc_timer(trans);
1415
Philipp Maierfbf66102017-04-09 12:32:51 +02001416 /* Make sure call also gets released on the mgcp side */
1417 msc_call_release(trans);
1418
Harald Welte4bfdfe72009-06-10 23:11:52 +08001419 /* send release to L4, if callref still exists */
1420 if (trans->callref) {
1421 /* Ressource unavailable */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001422 mncc_release_ind(trans->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001423 GSM48_CAUSE_LOC_PRN_S_LU,
1424 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001425 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001426 if (trans->cc.state != GSM_CSTATE_NULL)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001427 new_cc_state(trans, GSM_CSTATE_NULL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001428}
1429
1430static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001431
Harald Welte09e38af2009-02-16 22:52:23 +00001432/* call-back from paging the B-end of the connection */
1433static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001434 struct msgb *msg, void *_conn, void *_transt)
Harald Welte09e38af2009-02-16 22:52:23 +00001435{
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001436 struct gsm_subscriber_connection *conn = _conn;
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001437 struct gsm_trans *transt = _transt;
Harald Weltec05677b2009-06-26 20:17:06 +02001438
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001439 OSMO_ASSERT(!transt->conn);
Harald Welte7584aea2009-02-11 11:44:12 +00001440
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001441 switch (event) {
1442 case GSM_PAGING_SUCCEEDED:
Harald Welte2483f1b2016-06-19 18:06:02 +02001443 DEBUGP(DCC, "Paging subscr %s succeeded!\n",
1444 vlr_subscr_msisdn_or_name(transt->vsub));
Ivan Kluchnikov5fd0c642015-05-26 13:36:58 +03001445 OSMO_ASSERT(conn);
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02001446 /* Assign conn */
Neels Hofmeyr82be67d2017-11-22 15:43:03 +01001447 transt->conn = msc_subscr_conn_get(conn, MSC_CONN_USE_TRANS_CC);
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001448 /* send SETUP request to called party */
1449 gsm48_cc_tx_setup(transt, &transt->cc.msg);
1450 break;
1451 case GSM_PAGING_EXPIRED:
1452 case GSM_PAGING_BUSY:
1453 DEBUGP(DCC, "Paging subscr %s expired!\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02001454 vlr_subscr_msisdn_or_name(transt->vsub));
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001455 /* Temporarily out of order */
1456 mncc_release_ind(transt->net, transt,
1457 transt->callref,
1458 GSM48_CAUSE_LOC_PRN_S_LU,
1459 GSM48_CC_CAUSE_DEST_OOO);
1460 transt->callref = 0;
1461 transt->paging_request = NULL;
1462 trans_free(transt);
1463 break;
1464 default:
1465 LOGP(DCC, LOGL_ERROR, "Unknown paging event %d\n", event);
1466 break;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001467 }
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001468
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001469 transt->paging_request = NULL;
Harald Welte09e38af2009-02-16 22:52:23 +00001470 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001471}
Harald Welte7584aea2009-02-11 11:44:12 +00001472
Harald Welte4bfdfe72009-06-10 23:11:52 +08001473/* bridge channels of two transactions */
Harald Welte53d51f52015-12-03 14:59:04 +01001474static int tch_bridge(struct gsm_network *net, struct gsm_mncc_bridge *bridge)
Harald Welte7ccf7782009-02-17 01:43:01 +00001475{
Harald Welte53d51f52015-12-03 14:59:04 +01001476 struct gsm_trans *trans1 = trans_find_by_callref(net, bridge->callref[0]);
1477 struct gsm_trans *trans2 = trans_find_by_callref(net, bridge->callref[1]);
Harald Welte7ccf7782009-02-17 01:43:01 +00001478
Harald Welte4bfdfe72009-06-10 23:11:52 +08001479 if (!trans1 || !trans2)
Harald Welte7ccf7782009-02-17 01:43:01 +00001480 return -EIO;
1481
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001482 if (!trans1->conn || !trans2->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001483 return -EIO;
1484
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01001485 /* Which subscriber do we want to track trans1 or trans2? */
Harald Welte2483f1b2016-06-19 18:06:02 +02001486 log_set_context(LOG_CTX_VLR_SUBSCR, trans1->vsub);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01001487
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001488 return msc_call_bridge(trans1, trans2);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001489}
1490
Harald Welte4bfdfe72009-06-10 23:11:52 +08001491static int gsm48_cc_rx_status_enq(struct gsm_trans *trans, struct msgb *msg)
1492{
1493 DEBUGP(DCC, "-> STATUS ENQ\n");
1494 return gsm48_cc_tx_status(trans, msg);
1495}
1496
1497static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg);
1498static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg);
1499
1500static void gsm48_cc_timeout(void *arg)
1501{
1502 struct gsm_trans *trans = arg;
1503 int disconnect = 0, release = 0;
Harald Weltec66b71c2009-06-11 14:23:20 +08001504 int mo_cause = GSM48_CC_CAUSE_RECOVERY_TIMER;
1505 int mo_location = GSM48_CAUSE_LOC_USER;
1506 int l4_cause = GSM48_CC_CAUSE_NORMAL_UNSPEC;
1507 int l4_location = GSM48_CAUSE_LOC_PRN_S_LU;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001508 struct gsm_mncc mo_rel, l4_rel;
1509
1510 memset(&mo_rel, 0, sizeof(struct gsm_mncc));
1511 mo_rel.callref = trans->callref;
1512 memset(&l4_rel, 0, sizeof(struct gsm_mncc));
1513 l4_rel.callref = trans->callref;
1514
Harald Weltedcaf5652009-07-23 18:56:43 +02001515 switch(trans->cc.Tcurrent) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001516 case 0x303:
1517 release = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001518 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001519 break;
1520 case 0x310:
1521 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001522 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001523 break;
1524 case 0x313:
1525 disconnect = 1;
1526 /* unknown, did not find it in the specs */
1527 break;
1528 case 0x301:
1529 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001530 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001531 break;
1532 case 0x308:
Harald Weltedcaf5652009-07-23 18:56:43 +02001533 if (!trans->cc.T308_second) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001534 /* restart T308 a second time */
Harald Weltedcaf5652009-07-23 18:56:43 +02001535 gsm48_cc_tx_release(trans, &trans->cc.msg);
1536 trans->cc.T308_second = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001537 break; /* stay in release state */
1538 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001539 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001540 return;
1541// release = 1;
1542// l4_cause = 14;
1543// break;
1544 case 0x306:
1545 release = 1;
Harald Weltedcaf5652009-07-23 18:56:43 +02001546 mo_cause = trans->cc.msg.cause.value;
1547 mo_location = trans->cc.msg.cause.location;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001548 break;
1549 case 0x323:
1550 disconnect = 1;
1551 break;
1552 default:
1553 release = 1;
1554 }
1555
1556 if (release && trans->callref) {
1557 /* process release towards layer 4 */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001558 mncc_release_ind(trans->net, trans, trans->callref,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001559 l4_location, l4_cause);
1560 trans->callref = 0;
1561 }
1562
1563 if (disconnect && trans->callref) {
1564 /* process disconnect towards layer 4 */
1565 mncc_set_cause(&l4_rel, l4_location, l4_cause);
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001566 mncc_recvmsg(trans->net, trans, MNCC_DISC_IND, &l4_rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001567 }
1568
1569 /* process disconnect towards mobile station */
1570 if (disconnect || release) {
1571 mncc_set_cause(&mo_rel, mo_location, mo_cause);
Harald Weltedcaf5652009-07-23 18:56:43 +02001572 mo_rel.cause.diag[0] = ((trans->cc.Tcurrent & 0xf00) >> 8) + '0';
1573 mo_rel.cause.diag[1] = ((trans->cc.Tcurrent & 0x0f0) >> 4) + '0';
1574 mo_rel.cause.diag[2] = (trans->cc.Tcurrent & 0x00f) + '0';
Harald Welte4bfdfe72009-06-10 23:11:52 +08001575 mo_rel.cause.diag_len = 3;
1576
1577 if (disconnect)
1578 gsm48_cc_tx_disconnect(trans, &mo_rel);
1579 if (release)
1580 gsm48_cc_tx_release(trans, &mo_rel);
1581 }
1582
1583}
1584
Max3ffce192016-04-25 15:22:00 +02001585/* disconnect both calls from the bridge */
1586static inline void disconnect_bridge(struct gsm_network *net,
1587 struct gsm_mncc_bridge *bridge, int err)
1588{
1589 struct gsm_trans *trans0 = trans_find_by_callref(net, bridge->callref[0]);
1590 struct gsm_trans *trans1 = trans_find_by_callref(net, bridge->callref[1]);
1591 struct gsm_mncc mx_rel;
1592 if (!trans0 || !trans1)
1593 return;
1594
1595 DEBUGP(DCC, "Failed to bridge TCH for calls %x <-> %x :: %s \n",
1596 trans0->callref, trans1->callref, strerror(err));
1597
1598 memset(&mx_rel, 0, sizeof(struct gsm_mncc));
1599 mncc_set_cause(&mx_rel, GSM48_CAUSE_LOC_INN_NET,
1600 GSM48_CC_CAUSE_CHAN_UNACCEPT);
1601
1602 mx_rel.callref = trans0->callref;
1603 gsm48_cc_tx_disconnect(trans0, &mx_rel);
1604
1605 mx_rel.callref = trans1->callref;
1606 gsm48_cc_tx_disconnect(trans1, &mx_rel);
1607}
1608
Harald Welte4bfdfe72009-06-10 23:11:52 +08001609static void gsm48_start_cc_timer(struct gsm_trans *trans, int current,
1610 int sec, int micro)
1611{
1612 DEBUGP(DCC, "starting timer T%x with %d seconds\n", current, sec);
Pablo Neira Ayuso51215762017-05-08 20:57:52 +02001613 osmo_timer_setup(&trans->cc.timer, gsm48_cc_timeout, trans);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001614 osmo_timer_schedule(&trans->cc.timer, sec, micro);
Harald Weltedcaf5652009-07-23 18:56:43 +02001615 trans->cc.Tcurrent = current;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001616}
1617
1618static int gsm48_cc_rx_setup(struct gsm_trans *trans, struct msgb *msg)
1619{
1620 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyr531734a2016-03-14 16:13:24 +01001621 uint8_t msg_type = gsm48_hdr_msg_type(gh);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001622 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1623 struct tlv_parsed tp;
1624 struct gsm_mncc setup;
1625
1626 memset(&setup, 0, sizeof(struct gsm_mncc));
1627 setup.callref = trans->callref;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02001628
Harald Welte474d19f2010-03-02 23:18:30 +01001629 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001630 /* emergency setup is identified by msg_type */
Harald Welte0dd01372018-01-24 11:06:19 +01001631 if (msg_type == GSM48_MT_CC_EMERG_SETUP) {
1632 setup.fields |= MNCC_F_EMERGENCY;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001633 setup.emergency = 1;
Harald Welte0dd01372018-01-24 11:06:19 +01001634 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08001635
1636 /* use subscriber as calling party number */
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02001637 setup.fields |= MNCC_F_CALLING;
Harald Welte2483f1b2016-06-19 18:06:02 +02001638 osmo_strlcpy(setup.calling.number, trans->vsub->msisdn, sizeof(setup.calling.number));
1639 osmo_strlcpy(setup.imsi, trans->vsub->imsi, sizeof(setup.imsi));
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02001640
Harald Welte4bfdfe72009-06-10 23:11:52 +08001641 /* bearer capability */
1642 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
1643 setup.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001644 gsm48_decode_bearer_cap(&setup.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001645 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Philipp Maierfbf66102017-04-09 12:32:51 +02001646
1647 /* Create a copy of the bearer capability
1648 * in the transaction struct, so we can use
1649 * this information later */
1650 memcpy(&trans->bearer_cap,&setup.bearer_cap,
1651 sizeof(trans->bearer_cap));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001652 }
1653 /* facility */
1654 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1655 setup.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001656 gsm48_decode_facility(&setup.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001657 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1658 }
1659 /* called party bcd number */
1660 if (TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD)) {
1661 setup.fields |= MNCC_F_CALLED;
Harald Welte55c8f352010-03-07 23:40:35 +01001662 gsm48_decode_called(&setup.called,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001663 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
1664 }
1665 /* user-user */
1666 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
1667 setup.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01001668 gsm48_decode_useruser(&setup.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001669 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
1670 }
1671 /* ss-version */
1672 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1673 setup.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001674 gsm48_decode_ssversion(&setup.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001675 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1676 }
1677 /* CLIR suppression */
1678 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_SUPP))
1679 setup.clir.sup = 1;
1680 /* CLIR invocation */
1681 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_INVOC))
1682 setup.clir.inv = 1;
1683 /* cc cap */
1684 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
1685 setup.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001686 gsm48_decode_cccap(&setup.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001687 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
1688 }
1689
Harald Welte4bfdfe72009-06-10 23:11:52 +08001690 new_cc_state(trans, GSM_CSTATE_INITIATED);
1691
Harald Welte79826e12018-01-24 10:50:24 +01001692 LOGP(DCC, setup.emergency ? LOGL_NOTICE : LOGL_INFO, "Subscriber %s (%s) sends %sSETUP to %s\n",
1693 vlr_subscr_name(trans->vsub), trans->vsub->msisdn, setup.emergency ? "EMERGENCY_" : "",
Harald Welte (local)47df3992009-12-26 19:45:03 +01001694 setup.called.number);
1695
Alexander Couzensb847a212016-08-02 11:34:11 +02001696 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MO_SETUP]);
Harald Weltea29e43a2010-12-24 16:06:33 +01001697
Harald Welte4bfdfe72009-06-10 23:11:52 +08001698 /* indicate setup to MNCC */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001699 mncc_recvmsg(trans->net, trans, MNCC_SETUP_IND, &setup);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001700
Harald Welte13cac662009-07-29 12:10:35 +02001701 /* MNCC code will modify the channel asynchronously, we should
1702 * ipaccess-bind only after the modification has been made to the
1703 * lchan->tch_mode */
Harald Welte4bfdfe72009-06-10 23:11:52 +08001704 return 0;
1705}
1706
1707static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg)
Harald Welte65e74cc2008-12-29 01:55:35 +00001708{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001709 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC STUP");
Harald Welte65e74cc2008-12-29 01:55:35 +00001710 struct gsm48_hdr *gh;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001711 struct gsm_mncc *setup = arg;
Harald Welte78283ef2009-07-23 21:36:44 +02001712 int rc, trans_id;
Harald Welte65e74cc2008-12-29 01:55:35 +00001713
Harald Welte7ccf7782009-02-17 01:43:01 +00001714 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00001715
Harald Welte4bfdfe72009-06-10 23:11:52 +08001716 /* transaction id must not be assigned */
1717 if (trans->transaction_id != 0xff) { /* unasssigned */
1718 DEBUGP(DCC, "TX Setup with assigned transaction. "
1719 "This is not allowed!\n");
1720 /* Temporarily out of order */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001721 rc = mncc_release_ind(trans->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001722 GSM48_CAUSE_LOC_PRN_S_LU,
1723 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001724 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001725 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001726 return rc;
1727 }
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001728
Harald Welte4bfdfe72009-06-10 23:11:52 +08001729 /* Get free transaction_id */
Harald Welte2483f1b2016-06-19 18:06:02 +02001730 trans_id = trans_assign_trans_id(trans->net, trans->vsub,
Jacob Erlbeckdae1f642014-12-02 14:22:53 +01001731 GSM48_PDISC_CC, 0);
Harald Welte78283ef2009-07-23 21:36:44 +02001732 if (trans_id < 0) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001733 /* no free transaction ID */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001734 rc = mncc_release_ind(trans->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001735 GSM48_CAUSE_LOC_PRN_S_LU,
1736 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001737 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001738 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001739 return rc;
1740 }
Harald Welte78283ef2009-07-23 21:36:44 +02001741 trans->transaction_id = trans_id;
Harald Welte49f48b82009-02-17 15:29:33 +00001742
Harald Welte65e74cc2008-12-29 01:55:35 +00001743 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00001744
Harald Welte4bfdfe72009-06-10 23:11:52 +08001745 gsm48_start_cc_timer(trans, 0x303, GSM48_T303);
Harald Welte65e74cc2008-12-29 01:55:35 +00001746
Harald Welte4bfdfe72009-06-10 23:11:52 +08001747 /* bearer capability */
1748 if (setup->fields & MNCC_F_BEARER_CAP)
Harald Welte55c8f352010-03-07 23:40:35 +01001749 gsm48_encode_bearer_cap(msg, 0, &setup->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001750 /* facility */
1751 if (setup->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001752 gsm48_encode_facility(msg, 0, &setup->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001753 /* progress */
1754 if (setup->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001755 gsm48_encode_progress(msg, 0, &setup->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001756 /* calling party BCD number */
1757 if (setup->fields & MNCC_F_CALLING)
Harald Welte55c8f352010-03-07 23:40:35 +01001758 gsm48_encode_calling(msg, &setup->calling);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001759 /* called party BCD number */
1760 if (setup->fields & MNCC_F_CALLED)
Harald Welte55c8f352010-03-07 23:40:35 +01001761 gsm48_encode_called(msg, &setup->called);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001762 /* user-user */
1763 if (setup->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001764 gsm48_encode_useruser(msg, 0, &setup->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001765 /* redirecting party BCD number */
1766 if (setup->fields & MNCC_F_REDIRECTING)
Harald Welte55c8f352010-03-07 23:40:35 +01001767 gsm48_encode_redirecting(msg, &setup->redirecting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001768 /* signal */
1769 if (setup->fields & MNCC_F_SIGNAL)
Harald Welte55c8f352010-03-07 23:40:35 +01001770 gsm48_encode_signal(msg, setup->signal);
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001771
Harald Welte4bfdfe72009-06-10 23:11:52 +08001772 new_cc_state(trans, GSM_CSTATE_CALL_PRESENT);
Harald Welte65e74cc2008-12-29 01:55:35 +00001773
Alexander Couzensb847a212016-08-02 11:34:11 +02001774 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MT_SETUP]);
Harald Weltea29e43a2010-12-24 16:06:33 +01001775
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001776 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte65e74cc2008-12-29 01:55:35 +00001777}
1778
Harald Welte4bfdfe72009-06-10 23:11:52 +08001779static int gsm48_cc_rx_call_conf(struct gsm_trans *trans, struct msgb *msg)
1780{
1781 struct gsm48_hdr *gh = msgb_l3(msg);
1782 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1783 struct tlv_parsed tp;
1784 struct gsm_mncc call_conf;
Philipp Maierfbf66102017-04-09 12:32:51 +02001785 int rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001786
1787 gsm48_stop_cc_timer(trans);
1788 gsm48_start_cc_timer(trans, 0x310, GSM48_T310);
1789
1790 memset(&call_conf, 0, sizeof(struct gsm_mncc));
1791 call_conf.callref = trans->callref;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02001792
Harald Welte474d19f2010-03-02 23:18:30 +01001793 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001794#if 0
1795 /* repeat */
1796 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_CIR))
1797 call_conf.repeat = 1;
1798 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_SEQ))
1799 call_conf.repeat = 2;
1800#endif
1801 /* bearer capability */
1802 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
1803 call_conf.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001804 gsm48_decode_bearer_cap(&call_conf.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001805 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Philipp Maierfbf66102017-04-09 12:32:51 +02001806
1807 /* Create a copy of the bearer capability
1808 * in the transaction struct, so we can use
1809 * this information later */
1810 memcpy(&trans->bearer_cap,&call_conf.bearer_cap,
1811 sizeof(trans->bearer_cap));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001812 }
1813 /* cause */
1814 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
1815 call_conf.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01001816 gsm48_decode_cause(&call_conf.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001817 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
1818 }
1819 /* cc cap */
1820 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
1821 call_conf.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001822 gsm48_decode_cccap(&call_conf.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001823 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
1824 }
1825
Andreas Eversberg035b8742013-09-19 09:27:06 +02001826 /* IMSI of called subscriber */
Harald Welte2483f1b2016-06-19 18:06:02 +02001827 osmo_strlcpy(call_conf.imsi, trans->vsub->imsi, sizeof(call_conf.imsi));
Andreas Eversberg035b8742013-09-19 09:27:06 +02001828
Harald Welte4bfdfe72009-06-10 23:11:52 +08001829 new_cc_state(trans, GSM_CSTATE_MO_TERM_CALL_CONF);
1830
Philipp Maierfbf66102017-04-09 12:32:51 +02001831 /* Assign call (if not done yet) */
1832 if (trans->assignment_done == false) {
1833 rc = msc_call_assignment(trans);
1834 trans->assignment_done = true;
1835 }
1836 else
1837 rc = 0;
1838
1839 /* don't continue, if there were problems with
1840 * the call assignment. */
1841 if (rc)
1842 return rc;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001843
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001844 return mncc_recvmsg(trans->net, trans, MNCC_CALL_CONF_IND,
Harald Welte596fed42009-07-23 19:06:52 +02001845 &call_conf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001846}
1847
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001848static int gsm48_cc_tx_call_proc_and_assign(struct gsm_trans *trans, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001849{
1850 struct gsm_mncc *proceeding = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001851 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC PROC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001852 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001853 int rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001854
Harald Welte4bfdfe72009-06-10 23:11:52 +08001855 gh->msg_type = GSM48_MT_CC_CALL_PROC;
1856
1857 new_cc_state(trans, GSM_CSTATE_MO_CALL_PROC);
1858
1859 /* bearer capability */
1860 if (proceeding->fields & MNCC_F_BEARER_CAP)
Harald Welte55c8f352010-03-07 23:40:35 +01001861 gsm48_encode_bearer_cap(msg, 0, &proceeding->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001862 /* facility */
1863 if (proceeding->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001864 gsm48_encode_facility(msg, 0, &proceeding->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001865 /* progress */
1866 if (proceeding->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001867 gsm48_encode_progress(msg, 0, &proceeding->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001868
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001869 rc = gsm48_conn_sendmsg(msg, trans->conn, trans);
1870 if (rc)
1871 return rc;
1872
Philipp Maierfbf66102017-04-09 12:32:51 +02001873 /* Assign call (if not done yet) */
1874 if (trans->assignment_done == false) {
1875 rc = msc_call_assignment(trans);
1876 trans->assignment_done = true;
1877 }
1878 else
1879 rc = 0;
1880
1881 return rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001882}
1883
1884static int gsm48_cc_rx_alerting(struct gsm_trans *trans, struct msgb *msg)
1885{
1886 struct gsm48_hdr *gh = msgb_l3(msg);
1887 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1888 struct tlv_parsed tp;
1889 struct gsm_mncc alerting;
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001890
Harald Welte4bfdfe72009-06-10 23:11:52 +08001891 gsm48_stop_cc_timer(trans);
1892 gsm48_start_cc_timer(trans, 0x301, GSM48_T301);
1893
1894 memset(&alerting, 0, sizeof(struct gsm_mncc));
1895 alerting.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01001896 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001897 /* facility */
1898 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1899 alerting.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001900 gsm48_decode_facility(&alerting.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001901 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1902 }
1903
1904 /* progress */
1905 if (TLVP_PRESENT(&tp, GSM48_IE_PROGR_IND)) {
1906 alerting.fields |= MNCC_F_PROGRESS;
Harald Welte55c8f352010-03-07 23:40:35 +01001907 gsm48_decode_progress(&alerting.progress,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001908 TLVP_VAL(&tp, GSM48_IE_PROGR_IND)-1);
1909 }
1910 /* ss-version */
1911 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1912 alerting.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001913 gsm48_decode_ssversion(&alerting.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001914 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1915 }
1916
1917 new_cc_state(trans, GSM_CSTATE_CALL_RECEIVED);
1918
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001919 return mncc_recvmsg(trans->net, trans, MNCC_ALERT_IND,
Harald Welte596fed42009-07-23 19:06:52 +02001920 &alerting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001921}
1922
1923static int gsm48_cc_tx_alerting(struct gsm_trans *trans, void *arg)
1924{
1925 struct gsm_mncc *alerting = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001926 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC ALERT");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001927 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1928
Harald Welte4bfdfe72009-06-10 23:11:52 +08001929 gh->msg_type = GSM48_MT_CC_ALERTING;
1930
1931 /* facility */
1932 if (alerting->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001933 gsm48_encode_facility(msg, 0, &alerting->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001934 /* progress */
1935 if (alerting->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001936 gsm48_encode_progress(msg, 0, &alerting->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001937 /* user-user */
1938 if (alerting->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001939 gsm48_encode_useruser(msg, 0, &alerting->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001940
1941 new_cc_state(trans, GSM_CSTATE_CALL_DELIVERED);
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001942
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001943 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001944}
1945
1946static int gsm48_cc_tx_progress(struct gsm_trans *trans, void *arg)
1947{
1948 struct gsm_mncc *progress = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001949 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC PROGRESS");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001950 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1951
Harald Welte4bfdfe72009-06-10 23:11:52 +08001952 gh->msg_type = GSM48_MT_CC_PROGRESS;
1953
1954 /* progress */
Harald Welte55c8f352010-03-07 23:40:35 +01001955 gsm48_encode_progress(msg, 1, &progress->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001956 /* user-user */
1957 if (progress->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001958 gsm48_encode_useruser(msg, 0, &progress->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001959
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001960 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001961}
1962
1963static int gsm48_cc_tx_connect(struct gsm_trans *trans, void *arg)
1964{
1965 struct gsm_mncc *connect = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001966 struct msgb *msg = gsm48_msgb_alloc_name("GSN 04.08 CC CON");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001967 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1968
Harald Welte4bfdfe72009-06-10 23:11:52 +08001969 gh->msg_type = GSM48_MT_CC_CONNECT;
1970
1971 gsm48_stop_cc_timer(trans);
1972 gsm48_start_cc_timer(trans, 0x313, GSM48_T313);
1973
1974 /* facility */
1975 if (connect->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001976 gsm48_encode_facility(msg, 0, &connect->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001977 /* progress */
1978 if (connect->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001979 gsm48_encode_progress(msg, 0, &connect->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001980 /* connected number */
1981 if (connect->fields & MNCC_F_CONNECTED)
Harald Welte55c8f352010-03-07 23:40:35 +01001982 gsm48_encode_connected(msg, &connect->connected);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001983 /* user-user */
1984 if (connect->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001985 gsm48_encode_useruser(msg, 0, &connect->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001986
1987 new_cc_state(trans, GSM_CSTATE_CONNECT_IND);
1988
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001989 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001990}
1991
1992static int gsm48_cc_rx_connect(struct gsm_trans *trans, struct msgb *msg)
1993{
1994 struct gsm48_hdr *gh = msgb_l3(msg);
1995 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1996 struct tlv_parsed tp;
1997 struct gsm_mncc connect;
1998
1999 gsm48_stop_cc_timer(trans);
2000
2001 memset(&connect, 0, sizeof(struct gsm_mncc));
2002 connect.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002003 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002004 /* use subscriber as connected party number */
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02002005 connect.fields |= MNCC_F_CONNECTED;
Harald Welte2483f1b2016-06-19 18:06:02 +02002006 osmo_strlcpy(connect.connected.number, trans->vsub->msisdn, sizeof(connect.connected.number));
2007 osmo_strlcpy(connect.imsi, trans->vsub->imsi, sizeof(connect.imsi));
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02002008
Harald Welte4bfdfe72009-06-10 23:11:52 +08002009 /* facility */
2010 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2011 connect.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002012 gsm48_decode_facility(&connect.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002013 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2014 }
2015 /* user-user */
2016 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2017 connect.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002018 gsm48_decode_useruser(&connect.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002019 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2020 }
2021 /* ss-version */
2022 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2023 connect.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002024 gsm48_decode_ssversion(&connect.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002025 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2026 }
2027
2028 new_cc_state(trans, GSM_CSTATE_CONNECT_REQUEST);
Alexander Couzensb847a212016-08-02 11:34:11 +02002029 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MT_CONNECT]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002030
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002031 return mncc_recvmsg(trans->net, trans, MNCC_SETUP_CNF, &connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002032}
2033
2034
2035static int gsm48_cc_rx_connect_ack(struct gsm_trans *trans, struct msgb *msg)
2036{
2037 struct gsm_mncc connect_ack;
2038
2039 gsm48_stop_cc_timer(trans);
2040
2041 new_cc_state(trans, GSM_CSTATE_ACTIVE);
Alexander Couzensb847a212016-08-02 11:34:11 +02002042 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MO_CONNECT_ACK]);
Alexander Couzensfbd96f52016-08-29 18:40:02 +02002043
Harald Welte4bfdfe72009-06-10 23:11:52 +08002044 memset(&connect_ack, 0, sizeof(struct gsm_mncc));
2045 connect_ack.callref = trans->callref;
Harald Weltea29e43a2010-12-24 16:06:33 +01002046
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002047 return mncc_recvmsg(trans->net, trans, MNCC_SETUP_COMPL_IND,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002048 &connect_ack);
2049}
2050
2051static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg)
2052{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002053 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC CON ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002054 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2055
Harald Welte4bfdfe72009-06-10 23:11:52 +08002056 gh->msg_type = GSM48_MT_CC_CONNECT_ACK;
2057
2058 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2059
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002060 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002061}
2062
2063static int gsm48_cc_rx_disconnect(struct gsm_trans *trans, struct msgb *msg)
2064{
2065 struct gsm48_hdr *gh = msgb_l3(msg);
2066 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2067 struct tlv_parsed tp;
2068 struct gsm_mncc disc;
2069
2070 gsm48_stop_cc_timer(trans);
2071
2072 new_cc_state(trans, GSM_CSTATE_DISCONNECT_REQ);
2073
2074 memset(&disc, 0, sizeof(struct gsm_mncc));
2075 disc.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002076 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_CAUSE, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002077 /* cause */
2078 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2079 disc.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002080 gsm48_decode_cause(&disc.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002081 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2082 }
2083 /* facility */
2084 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2085 disc.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002086 gsm48_decode_facility(&disc.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002087 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2088 }
2089 /* user-user */
2090 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2091 disc.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002092 gsm48_decode_useruser(&disc.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002093 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2094 }
2095 /* ss-version */
2096 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2097 disc.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002098 gsm48_decode_ssversion(&disc.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002099 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2100 }
2101
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002102 return mncc_recvmsg(trans->net, trans, MNCC_DISC_IND, &disc);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002103
2104}
2105
Harald Weltec66b71c2009-06-11 14:23:20 +08002106static struct gsm_mncc_cause default_cause = {
2107 .location = GSM48_CAUSE_LOC_PRN_S_LU,
2108 .coding = 0,
2109 .rec = 0,
2110 .rec_val = 0,
2111 .value = GSM48_CC_CAUSE_NORMAL_UNSPEC,
2112 .diag_len = 0,
2113 .diag = { 0 },
2114};
Harald Welte4bfdfe72009-06-10 23:11:52 +08002115
2116static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg)
2117{
2118 struct gsm_mncc *disc = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002119 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC DISC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002120 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2121
Harald Welte4bfdfe72009-06-10 23:11:52 +08002122 gh->msg_type = GSM48_MT_CC_DISCONNECT;
2123
2124 gsm48_stop_cc_timer(trans);
2125 gsm48_start_cc_timer(trans, 0x306, GSM48_T306);
2126
2127 /* cause */
2128 if (disc->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002129 gsm48_encode_cause(msg, 1, &disc->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002130 else
Harald Welte55c8f352010-03-07 23:40:35 +01002131 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002132
2133 /* facility */
2134 if (disc->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002135 gsm48_encode_facility(msg, 0, &disc->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002136 /* progress */
2137 if (disc->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002138 gsm48_encode_progress(msg, 0, &disc->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002139 /* user-user */
2140 if (disc->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002141 gsm48_encode_useruser(msg, 0, &disc->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002142
2143 /* store disconnect cause for T306 expiry */
Harald Weltedcaf5652009-07-23 18:56:43 +02002144 memcpy(&trans->cc.msg, disc, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002145
2146 new_cc_state(trans, GSM_CSTATE_DISCONNECT_IND);
2147
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002148 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002149}
2150
2151static int gsm48_cc_rx_release(struct gsm_trans *trans, struct msgb *msg)
2152{
2153 struct gsm48_hdr *gh = msgb_l3(msg);
2154 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2155 struct tlv_parsed tp;
2156 struct gsm_mncc rel;
2157 int rc;
2158
2159 gsm48_stop_cc_timer(trans);
2160
2161 memset(&rel, 0, sizeof(struct gsm_mncc));
2162 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002163 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002164 /* cause */
2165 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2166 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002167 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002168 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2169 }
2170 /* facility */
2171 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2172 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002173 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002174 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2175 }
2176 /* user-user */
2177 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2178 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002179 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002180 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2181 }
2182 /* ss-version */
2183 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2184 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002185 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002186 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2187 }
2188
Harald Weltedcaf5652009-07-23 18:56:43 +02002189 if (trans->cc.state == GSM_CSTATE_RELEASE_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002190 /* release collision 5.4.5 */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002191 rc = mncc_recvmsg(trans->net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002192 } else {
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08002193 rc = gsm48_tx_simple(trans->conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02002194 GSM48_PDISC_CC | (trans->transaction_id << 4),
Harald Welte596fed42009-07-23 19:06:52 +02002195 GSM48_MT_CC_RELEASE_COMPL);
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002196 rc = mncc_recvmsg(trans->net, trans, MNCC_REL_IND, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002197 }
2198
2199 new_cc_state(trans, GSM_CSTATE_NULL);
2200
2201 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002202 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002203
2204 return rc;
2205}
2206
2207static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg)
2208{
2209 struct gsm_mncc *rel = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002210 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC REL");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002211 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2212
Harald Welte4bfdfe72009-06-10 23:11:52 +08002213 gh->msg_type = GSM48_MT_CC_RELEASE;
2214
Harald Welte4bfdfe72009-06-10 23:11:52 +08002215 gsm48_stop_cc_timer(trans);
2216 gsm48_start_cc_timer(trans, 0x308, GSM48_T308);
2217
2218 /* cause */
2219 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002220 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002221 /* facility */
2222 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002223 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002224 /* user-user */
2225 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002226 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002227
Harald Weltedcaf5652009-07-23 18:56:43 +02002228 trans->cc.T308_second = 0;
2229 memcpy(&trans->cc.msg, rel, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002230
Harald Weltedcaf5652009-07-23 18:56:43 +02002231 if (trans->cc.state != GSM_CSTATE_RELEASE_REQ)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002232 new_cc_state(trans, GSM_CSTATE_RELEASE_REQ);
2233
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002234 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002235}
2236
2237static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg)
2238{
2239 struct gsm48_hdr *gh = msgb_l3(msg);
2240 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2241 struct tlv_parsed tp;
2242 struct gsm_mncc rel;
2243 int rc = 0;
2244
2245 gsm48_stop_cc_timer(trans);
2246
2247 memset(&rel, 0, sizeof(struct gsm_mncc));
2248 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002249 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002250 /* cause */
2251 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2252 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002253 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002254 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2255 }
2256 /* facility */
2257 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2258 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002259 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002260 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2261 }
2262 /* user-user */
2263 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2264 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002265 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002266 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2267 }
2268 /* ss-version */
2269 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2270 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002271 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002272 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2273 }
2274
2275 if (trans->callref) {
Harald Weltedcaf5652009-07-23 18:56:43 +02002276 switch (trans->cc.state) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002277 case GSM_CSTATE_CALL_PRESENT:
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002278 rc = mncc_recvmsg(trans->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002279 MNCC_REJ_IND, &rel);
2280 break;
2281 case GSM_CSTATE_RELEASE_REQ:
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002282 rc = mncc_recvmsg(trans->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002283 MNCC_REL_CNF, &rel);
2284 break;
2285 default:
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002286 rc = mncc_recvmsg(trans->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002287 MNCC_REL_IND, &rel);
2288 }
2289 }
2290
2291 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002292 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002293
2294 return rc;
2295}
2296
2297static int gsm48_cc_tx_release_compl(struct gsm_trans *trans, void *arg)
2298{
2299 struct gsm_mncc *rel = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002300 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC REL COMPL");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002301 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Weltec7782de2010-12-21 19:31:41 +01002302 int ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002303
Harald Welte4bfdfe72009-06-10 23:11:52 +08002304 gh->msg_type = GSM48_MT_CC_RELEASE_COMPL;
2305
2306 trans->callref = 0;
Alexander Couzensfbd96f52016-08-29 18:40:02 +02002307
Harald Welte4bfdfe72009-06-10 23:11:52 +08002308 gsm48_stop_cc_timer(trans);
2309
2310 /* cause */
2311 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002312 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002313 /* facility */
2314 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002315 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002316 /* user-user */
2317 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002318 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002319
Harald Weltec7782de2010-12-21 19:31:41 +01002320 ret = gsm48_conn_sendmsg(msg, trans->conn, trans);
2321
Harald Weltedcaf5652009-07-23 18:56:43 +02002322 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002323
Harald Weltec7782de2010-12-21 19:31:41 +01002324 return ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002325}
2326
2327static int gsm48_cc_rx_facility(struct gsm_trans *trans, struct msgb *msg)
2328{
2329 struct gsm48_hdr *gh = msgb_l3(msg);
2330 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2331 struct tlv_parsed tp;
2332 struct gsm_mncc fac;
2333
2334 memset(&fac, 0, sizeof(struct gsm_mncc));
2335 fac.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002336 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_FACILITY, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002337 /* facility */
2338 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2339 fac.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002340 gsm48_decode_facility(&fac.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002341 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2342 }
2343 /* ss-version */
2344 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2345 fac.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002346 gsm48_decode_ssversion(&fac.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002347 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2348 }
2349
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002350 return mncc_recvmsg(trans->net, trans, MNCC_FACILITY_IND, &fac);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002351}
2352
2353static int gsm48_cc_tx_facility(struct gsm_trans *trans, void *arg)
2354{
2355 struct gsm_mncc *fac = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002356 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC FAC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002357 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2358
Harald Welte4bfdfe72009-06-10 23:11:52 +08002359 gh->msg_type = GSM48_MT_CC_FACILITY;
2360
2361 /* facility */
Harald Welte55c8f352010-03-07 23:40:35 +01002362 gsm48_encode_facility(msg, 1, &fac->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002363
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002364 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002365}
2366
2367static int gsm48_cc_rx_hold(struct gsm_trans *trans, struct msgb *msg)
2368{
2369 struct gsm_mncc hold;
2370
2371 memset(&hold, 0, sizeof(struct gsm_mncc));
2372 hold.callref = trans->callref;
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002373 return mncc_recvmsg(trans->net, trans, MNCC_HOLD_IND, &hold);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002374}
2375
2376static int gsm48_cc_tx_hold_ack(struct gsm_trans *trans, void *arg)
2377{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002378 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC HLD ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002379 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2380
Harald Welte4bfdfe72009-06-10 23:11:52 +08002381 gh->msg_type = GSM48_MT_CC_HOLD_ACK;
2382
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002383 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002384}
2385
2386static int gsm48_cc_tx_hold_rej(struct gsm_trans *trans, void *arg)
2387{
2388 struct gsm_mncc *hold_rej = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002389 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC HLD REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002390 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2391
Harald Welte4bfdfe72009-06-10 23:11:52 +08002392 gh->msg_type = GSM48_MT_CC_HOLD_REJ;
2393
2394 /* cause */
2395 if (hold_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002396 gsm48_encode_cause(msg, 1, &hold_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002397 else
Harald Welte55c8f352010-03-07 23:40:35 +01002398 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002399
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002400 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002401}
2402
2403static int gsm48_cc_rx_retrieve(struct gsm_trans *trans, struct msgb *msg)
2404{
2405 struct gsm_mncc retrieve;
2406
2407 memset(&retrieve, 0, sizeof(struct gsm_mncc));
2408 retrieve.callref = trans->callref;
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002409 return mncc_recvmsg(trans->net, trans, MNCC_RETRIEVE_IND,
Harald Welte596fed42009-07-23 19:06:52 +02002410 &retrieve);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002411}
2412
2413static int gsm48_cc_tx_retrieve_ack(struct gsm_trans *trans, void *arg)
2414{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002415 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC RETR ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002416 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2417
Harald Welte4bfdfe72009-06-10 23:11:52 +08002418 gh->msg_type = GSM48_MT_CC_RETR_ACK;
2419
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002420 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002421}
2422
2423static int gsm48_cc_tx_retrieve_rej(struct gsm_trans *trans, void *arg)
2424{
2425 struct gsm_mncc *retrieve_rej = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002426 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC RETR REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002427 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2428
Harald Welte4bfdfe72009-06-10 23:11:52 +08002429 gh->msg_type = GSM48_MT_CC_RETR_REJ;
2430
2431 /* cause */
2432 if (retrieve_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002433 gsm48_encode_cause(msg, 1, &retrieve_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002434 else
Harald Welte55c8f352010-03-07 23:40:35 +01002435 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002436
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002437 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002438}
2439
2440static int gsm48_cc_rx_start_dtmf(struct gsm_trans *trans, struct msgb *msg)
2441{
2442 struct gsm48_hdr *gh = msgb_l3(msg);
2443 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2444 struct tlv_parsed tp;
2445 struct gsm_mncc dtmf;
2446
2447 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2448 dtmf.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002449 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002450 /* keypad facility */
2451 if (TLVP_PRESENT(&tp, GSM48_IE_KPD_FACILITY)) {
2452 dtmf.fields |= MNCC_F_KEYPAD;
Harald Welte55c8f352010-03-07 23:40:35 +01002453 gsm48_decode_keypad(&dtmf.keypad,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002454 TLVP_VAL(&tp, GSM48_IE_KPD_FACILITY)-1);
2455 }
2456
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002457 return mncc_recvmsg(trans->net, trans, MNCC_START_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002458}
2459
2460static int gsm48_cc_tx_start_dtmf_ack(struct gsm_trans *trans, void *arg)
2461{
2462 struct gsm_mncc *dtmf = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002463 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 DTMF ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002464 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2465
Harald Welte4bfdfe72009-06-10 23:11:52 +08002466 gh->msg_type = GSM48_MT_CC_START_DTMF_ACK;
2467
2468 /* keypad */
2469 if (dtmf->fields & MNCC_F_KEYPAD)
Harald Welte55c8f352010-03-07 23:40:35 +01002470 gsm48_encode_keypad(msg, dtmf->keypad);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002471
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002472 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002473}
2474
2475static int gsm48_cc_tx_start_dtmf_rej(struct gsm_trans *trans, void *arg)
2476{
2477 struct gsm_mncc *dtmf = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002478 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 DTMF REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002479 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2480
Harald Welte4bfdfe72009-06-10 23:11:52 +08002481 gh->msg_type = GSM48_MT_CC_START_DTMF_REJ;
2482
2483 /* cause */
2484 if (dtmf->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002485 gsm48_encode_cause(msg, 1, &dtmf->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002486 else
Harald Welte55c8f352010-03-07 23:40:35 +01002487 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002488
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002489 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002490}
2491
2492static int gsm48_cc_tx_stop_dtmf_ack(struct gsm_trans *trans, void *arg)
2493{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002494 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 DTMF STP ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002495 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2496
Harald Welte4bfdfe72009-06-10 23:11:52 +08002497 gh->msg_type = GSM48_MT_CC_STOP_DTMF_ACK;
2498
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002499 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002500}
2501
2502static int gsm48_cc_rx_stop_dtmf(struct gsm_trans *trans, struct msgb *msg)
2503{
2504 struct gsm_mncc dtmf;
2505
2506 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2507 dtmf.callref = trans->callref;
2508
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002509 return mncc_recvmsg(trans->net, trans, MNCC_STOP_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002510}
2511
2512static int gsm48_cc_rx_modify(struct gsm_trans *trans, struct msgb *msg)
2513{
2514 struct gsm48_hdr *gh = msgb_l3(msg);
2515 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2516 struct tlv_parsed tp;
2517 struct gsm_mncc modify;
2518
2519 memset(&modify, 0, sizeof(struct gsm_mncc));
2520 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002521 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002522 /* bearer capability */
2523 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2524 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002525 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002526 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Philipp Maierfbf66102017-04-09 12:32:51 +02002527
2528 /* Create a copy of the bearer capability
2529 * in the transaction struct, so we can use
2530 * this information later */
2531 memcpy(&trans->bearer_cap,&modify.bearer_cap,
2532 sizeof(trans->bearer_cap));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002533 }
2534
2535 new_cc_state(trans, GSM_CSTATE_MO_ORIG_MODIFY);
2536
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002537 return mncc_recvmsg(trans->net, trans, MNCC_MODIFY_IND, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002538}
2539
2540static int gsm48_cc_tx_modify(struct gsm_trans *trans, void *arg)
2541{
2542 struct gsm_mncc *modify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002543 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC MOD");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002544 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2545
Harald Welte4bfdfe72009-06-10 23:11:52 +08002546 gh->msg_type = GSM48_MT_CC_MODIFY;
2547
2548 gsm48_start_cc_timer(trans, 0x323, GSM48_T323);
2549
2550 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002551 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002552
2553 new_cc_state(trans, GSM_CSTATE_MO_TERM_MODIFY);
2554
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002555 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002556}
2557
2558static int gsm48_cc_rx_modify_complete(struct gsm_trans *trans, struct msgb *msg)
2559{
2560 struct gsm48_hdr *gh = msgb_l3(msg);
2561 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2562 struct tlv_parsed tp;
2563 struct gsm_mncc modify;
2564
2565 gsm48_stop_cc_timer(trans);
2566
2567 memset(&modify, 0, sizeof(struct gsm_mncc));
2568 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002569 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002570 /* bearer capability */
2571 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2572 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002573 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002574 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Philipp Maierfbf66102017-04-09 12:32:51 +02002575
2576 /* Create a copy of the bearer capability
2577 * in the transaction struct, so we can use
2578 * this information later */
2579 memcpy(&trans->bearer_cap,&modify.bearer_cap,
2580 sizeof(trans->bearer_cap));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002581 }
2582
2583 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2584
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002585 return mncc_recvmsg(trans->net, trans, MNCC_MODIFY_CNF, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002586}
2587
2588static int gsm48_cc_tx_modify_complete(struct gsm_trans *trans, void *arg)
2589{
2590 struct gsm_mncc *modify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002591 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC MOD COMPL");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002592 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2593
Harald Welte4bfdfe72009-06-10 23:11:52 +08002594 gh->msg_type = GSM48_MT_CC_MODIFY_COMPL;
2595
2596 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002597 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002598
2599 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2600
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002601 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002602}
2603
2604static int gsm48_cc_rx_modify_reject(struct gsm_trans *trans, struct msgb *msg)
2605{
2606 struct gsm48_hdr *gh = msgb_l3(msg);
2607 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2608 struct tlv_parsed tp;
2609 struct gsm_mncc modify;
2610
2611 gsm48_stop_cc_timer(trans);
2612
2613 memset(&modify, 0, sizeof(struct gsm_mncc));
2614 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002615 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, GSM48_IE_CAUSE);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002616 /* bearer capability */
2617 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2618 modify.fields |= GSM48_IE_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002619 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002620 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Philipp Maierfbf66102017-04-09 12:32:51 +02002621
2622 /* Create a copy of the bearer capability
2623 * in the transaction struct, so we can use
2624 * this information later */
2625 memcpy(&trans->bearer_cap,&modify.bearer_cap,
2626 sizeof(trans->bearer_cap));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002627 }
2628 /* cause */
2629 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2630 modify.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002631 gsm48_decode_cause(&modify.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002632 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2633 }
2634
2635 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2636
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002637 return mncc_recvmsg(trans->net, trans, MNCC_MODIFY_REJ, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002638}
2639
2640static int gsm48_cc_tx_modify_reject(struct gsm_trans *trans, void *arg)
2641{
2642 struct gsm_mncc *modify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002643 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC MOD REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002644 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2645
Harald Welte4bfdfe72009-06-10 23:11:52 +08002646 gh->msg_type = GSM48_MT_CC_MODIFY_REJECT;
2647
2648 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002649 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002650 /* cause */
Harald Welte55c8f352010-03-07 23:40:35 +01002651 gsm48_encode_cause(msg, 1, &modify->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002652
2653 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2654
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002655 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002656}
2657
2658static int gsm48_cc_tx_notify(struct gsm_trans *trans, void *arg)
2659{
2660 struct gsm_mncc *notify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002661 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC NOT");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002662 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2663
Harald Welte4bfdfe72009-06-10 23:11:52 +08002664 gh->msg_type = GSM48_MT_CC_NOTIFY;
2665
2666 /* notify */
Harald Welte55c8f352010-03-07 23:40:35 +01002667 gsm48_encode_notify(msg, notify->notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002668
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002669 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002670}
2671
2672static int gsm48_cc_rx_notify(struct gsm_trans *trans, struct msgb *msg)
2673{
2674 struct gsm48_hdr *gh = msgb_l3(msg);
2675 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2676// struct tlv_parsed tp;
2677 struct gsm_mncc notify;
2678
2679 memset(&notify, 0, sizeof(struct gsm_mncc));
2680 notify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002681// tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002682 if (payload_len >= 1)
Harald Welte55c8f352010-03-07 23:40:35 +01002683 gsm48_decode_notify(&notify.notify, gh->data);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002684
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002685 return mncc_recvmsg(trans->net, trans, MNCC_NOTIFY_IND, &notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002686}
2687
2688static int gsm48_cc_tx_userinfo(struct gsm_trans *trans, void *arg)
2689{
2690 struct gsm_mncc *user = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002691 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 USR INFO");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002692 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2693
Harald Welte4bfdfe72009-06-10 23:11:52 +08002694 gh->msg_type = GSM48_MT_CC_USER_INFO;
2695
2696 /* user-user */
2697 if (user->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002698 gsm48_encode_useruser(msg, 1, &user->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002699 /* more data */
2700 if (user->more)
Harald Welte55c8f352010-03-07 23:40:35 +01002701 gsm48_encode_more(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002702
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002703 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002704}
2705
2706static int gsm48_cc_rx_userinfo(struct gsm_trans *trans, struct msgb *msg)
2707{
2708 struct gsm48_hdr *gh = msgb_l3(msg);
2709 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2710 struct tlv_parsed tp;
2711 struct gsm_mncc user;
2712
2713 memset(&user, 0, sizeof(struct gsm_mncc));
2714 user.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002715 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_USER_USER, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002716 /* user-user */
2717 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2718 user.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002719 gsm48_decode_useruser(&user.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002720 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2721 }
2722 /* more data */
2723 if (TLVP_PRESENT(&tp, GSM48_IE_MORE_DATA))
2724 user.more = 1;
2725
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002726 return mncc_recvmsg(trans->net, trans, MNCC_USERINFO_IND, &user);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002727}
2728
Philipp Maierfbf66102017-04-09 12:32:51 +02002729static void mncc_recv_rtp(struct gsm_network *net, uint32_t callref,
2730 int cmd, uint32_t addr, uint16_t port, uint32_t payload_type,
2731 uint32_t payload_msg_type)
2732{
2733 uint8_t data[sizeof(struct gsm_mncc)];
2734 struct gsm_mncc_rtp *rtp;
2735
2736 memset(&data, 0, sizeof(data));
2737 rtp = (struct gsm_mncc_rtp *) &data[0];
2738
2739 rtp->callref = callref;
2740 rtp->msg_type = cmd;
2741 rtp->ip = addr;
2742 rtp->port = port;
2743 rtp->payload_type = payload_type;
2744 rtp->payload_msg_type = payload_msg_type;
2745 mncc_recvmsg(net, NULL, cmd, (struct gsm_mncc *)data);
2746}
2747
2748static void mncc_recv_rtp_sock(struct gsm_network *net, struct gsm_trans *trans, int cmd)
2749{
2750 int msg_type;
2751
2752 /* FIXME This has to be set to some meaningful value.
2753 * Possible options are:
2754 * GSM_TCHF_FRAME, GSM_TCHF_FRAME_EFR,
2755 * GSM_TCHH_FRAME, GSM_TCH_FRAME_AMR
2756 * (0 if unknown) */
2757 msg_type = GSM_TCHF_FRAME;
2758
Neels Hofmeyr6c8afe12017-09-04 01:03:58 +02002759 uint32_t addr = mgcp_client_remote_addr_n(net->mgw.client);
Philipp Maierfbf66102017-04-09 12:32:51 +02002760 uint16_t port = trans->conn->rtp.port_cn;
2761
2762 /* FIXME: This has to be set to some meaningful value,
2763 * before the MSC-Split, this value was pulled from
2764 * lchan->abis_ip.rtp_payload */
2765 uint32_t payload_type = 0;
2766
2767 return mncc_recv_rtp(net, trans->callref, cmd,
2768 addr,
2769 port,
2770 payload_type,
2771 msg_type);
2772}
2773
2774static void mncc_recv_rtp_err(struct gsm_network *net, uint32_t callref, int cmd)
2775{
2776 return mncc_recv_rtp(net, callref, cmd, 0, 0, 0, 0);
2777}
2778
2779static int tch_rtp_create(struct gsm_network *net, uint32_t callref)
2780{
2781 struct gsm_trans *trans;
2782 int rc;
2783
2784 /* Find callref */
2785 trans = trans_find_by_callref(net, callref);
2786 if (!trans) {
2787 LOGP(DMNCC, LOGL_ERROR, "RTP create for non-existing trans\n");
2788 mncc_recv_rtp_err(net, callref, MNCC_RTP_CREATE);
2789 return -EIO;
2790 }
2791 log_set_context(LOG_CTX_VLR_SUBSCR, trans->vsub);
2792 if (!trans->conn) {
2793 LOGP(DMNCC, LOGL_NOTICE, "RTP create for trans without conn\n");
2794 mncc_recv_rtp_err(net, callref, MNCC_RTP_CREATE);
2795 return 0;
2796 }
2797
2798 trans->conn->mncc_rtp_bridge = 1;
2799
2800 /* When we call msc_call_assignment() we will trigger, depending
2801 * on the RAN type the call assignment on the A or Iu interface.
2802 * msc_call_assignment() also takes care about sending the CRCX
2803 * command to the MGCP-GW. The CRCX will return the port number,
2804 * where the PBX (e.g. Asterisk) will send its RTP stream to. We
2805 * have to return this port number back to the MNCC by sending
2806 * it back with the TCH_RTP_CREATE message. To make sure that
2807 * this message is sent AFTER the response to CRCX from the
2808 * MGCP-GW has arrived, we need will instruct msc_call_assignment()
2809 * to take care of this by setting trans->tch_rtp_create to true.
2810 * This will make sure that gsm48_tch_rtp_create() (below) is
2811 * called as soon as the local port number has become known. */
2812 trans->tch_rtp_create = true;
2813
2814 /* Assign call (if not done yet) */
2815 if (trans->assignment_done == false) {
2816 rc = msc_call_assignment(trans);
2817 trans->assignment_done = true;
2818 }
2819 else
2820 rc = 0;
2821
2822 return rc;
2823}
2824
2825/* Trigger TCH_RTP_CREATE acknowledgement */
2826int gsm48_tch_rtp_create(struct gsm_trans *trans)
2827{
2828 /* This function is called as soon as the port, on which the
2829 * mgcp-gw expects the incoming RTP stream from the remote
2830 * end (e.g. Asterisk) is known. */
2831
2832 struct gsm_subscriber_connection *conn = trans->conn;
2833 struct gsm_network *network = conn->network;
2834
2835 mncc_recv_rtp_sock(network, trans, MNCC_RTP_CREATE);
2836 return 0;
2837}
2838
2839static int tch_rtp_connect(struct gsm_network *net, void *arg)
2840{
2841 struct gsm_trans *trans;
2842 struct gsm_mncc_rtp *rtp = arg;
2843
2844 /* Find callref */
2845 trans = trans_find_by_callref(net, rtp->callref);
2846 if (!trans) {
2847 LOGP(DMNCC, LOGL_ERROR, "RTP connect for non-existing trans\n");
2848 mncc_recv_rtp_err(net, rtp->callref, MNCC_RTP_CONNECT);
2849 return -EIO;
2850 }
2851 log_set_context(LOG_CTX_VLR_SUBSCR, trans->vsub);
2852 if (!trans->conn) {
2853 LOGP(DMNCC, LOGL_ERROR, "RTP connect for trans without conn\n");
2854 mncc_recv_rtp_err(net, rtp->callref, MNCC_RTP_CONNECT);
2855 return 0;
2856 }
2857
Philipp Maier2f108b02017-11-23 13:38:02 +01002858 msc_call_connect(trans, rtp->port, rtp->ip);
Philipp Maierfbf66102017-04-09 12:32:51 +02002859 return 0;
2860}
2861
Harald Welte4bfdfe72009-06-10 23:11:52 +08002862static struct downstate {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02002863 uint32_t states;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002864 int type;
2865 int (*rout) (struct gsm_trans *trans, void *arg);
2866} downstatelist[] = {
2867 /* mobile originating call establishment */
2868 {SBIT(GSM_CSTATE_INITIATED), /* 5.2.1.2 */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02002869 MNCC_CALL_PROC_REQ, gsm48_cc_tx_call_proc_and_assign},
Harald Welte4bfdfe72009-06-10 23:11:52 +08002870 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.2 | 5.2.1.5 */
2871 MNCC_ALERT_REQ, gsm48_cc_tx_alerting},
2872 {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 */
2873 MNCC_SETUP_RSP, gsm48_cc_tx_connect},
2874 {SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.4.2 */
2875 MNCC_PROGRESS_REQ, gsm48_cc_tx_progress},
2876 /* mobile terminating call establishment */
2877 {SBIT(GSM_CSTATE_NULL), /* 5.2.2.1 */
2878 MNCC_SETUP_REQ, gsm48_cc_tx_setup},
2879 {SBIT(GSM_CSTATE_CONNECT_REQUEST),
2880 MNCC_SETUP_COMPL_REQ, gsm48_cc_tx_connect_ack},
2881 /* signalling during call */
2882 {SBIT(GSM_CSTATE_ACTIVE),
2883 MNCC_NOTIFY_REQ, gsm48_cc_tx_notify},
2884 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ),
2885 MNCC_FACILITY_REQ, gsm48_cc_tx_facility},
2886 {ALL_STATES,
2887 MNCC_START_DTMF_RSP, gsm48_cc_tx_start_dtmf_ack},
2888 {ALL_STATES,
2889 MNCC_START_DTMF_REJ, gsm48_cc_tx_start_dtmf_rej},
2890 {ALL_STATES,
2891 MNCC_STOP_DTMF_RSP, gsm48_cc_tx_stop_dtmf_ack},
2892 {SBIT(GSM_CSTATE_ACTIVE),
2893 MNCC_HOLD_CNF, gsm48_cc_tx_hold_ack},
2894 {SBIT(GSM_CSTATE_ACTIVE),
2895 MNCC_HOLD_REJ, gsm48_cc_tx_hold_rej},
2896 {SBIT(GSM_CSTATE_ACTIVE),
2897 MNCC_RETRIEVE_CNF, gsm48_cc_tx_retrieve_ack},
2898 {SBIT(GSM_CSTATE_ACTIVE),
2899 MNCC_RETRIEVE_REJ, gsm48_cc_tx_retrieve_rej},
2900 {SBIT(GSM_CSTATE_ACTIVE),
2901 MNCC_MODIFY_REQ, gsm48_cc_tx_modify},
2902 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
2903 MNCC_MODIFY_RSP, gsm48_cc_tx_modify_complete},
2904 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
2905 MNCC_MODIFY_REJ, gsm48_cc_tx_modify_reject},
2906 {SBIT(GSM_CSTATE_ACTIVE),
2907 MNCC_USERINFO_REQ, gsm48_cc_tx_userinfo},
2908 /* clearing */
2909 {SBIT(GSM_CSTATE_INITIATED),
2910 MNCC_REJ_REQ, gsm48_cc_tx_release_compl},
2911 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_DISCONNECT_IND) - SBIT(GSM_CSTATE_RELEASE_REQ) - SBIT(GSM_CSTATE_DISCONNECT_REQ), /* 5.4.4 */
2912 MNCC_DISC_REQ, gsm48_cc_tx_disconnect},
2913 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
2914 MNCC_REL_REQ, gsm48_cc_tx_release},
Harald Welte4bfdfe72009-06-10 23:11:52 +08002915};
2916
2917#define DOWNSLLEN \
2918 (sizeof(downstatelist) / sizeof(struct downstate))
2919
2920
Harald Welte76556372010-12-22 23:57:45 +01002921int mncc_tx_to_cc(struct gsm_network *net, int msg_type, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002922{
Harald Welte1a6f7982009-08-09 18:52:33 +02002923 int i, rc = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002924 struct gsm_trans *trans = NULL, *transt;
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002925 struct gsm_subscriber_connection *conn = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002926 struct gsm_mncc *data = arg, rel;
2927
Harald Welte04dc88f2010-12-22 21:45:05 +01002928 DEBUGP(DMNCC, "receive message %s\n", get_mncc_name(msg_type));
2929
Harald Welte4bfdfe72009-06-10 23:11:52 +08002930 /* handle special messages */
2931 switch(msg_type) {
2932 case MNCC_BRIDGE:
Max3ffce192016-04-25 15:22:00 +02002933 rc = tch_bridge(net, arg);
2934 if (rc < 0)
2935 disconnect_bridge(net, arg, -rc);
2936 return rc;
Philipp Maierfbf66102017-04-09 12:32:51 +02002937 case MNCC_RTP_CREATE:
2938 return tch_rtp_create(net, data->callref);
2939 case MNCC_RTP_CONNECT:
2940 return tch_rtp_connect(net, arg);
2941 case MNCC_RTP_FREE:
2942 /* unused right now */
2943 return -EIO;
2944
Harald Welte4bfdfe72009-06-10 23:11:52 +08002945 case MNCC_FRAME_DROP:
Harald Welte4bfdfe72009-06-10 23:11:52 +08002946 case MNCC_FRAME_RECV:
Harald Welteda7ab742009-12-19 22:23:05 +01002947 case GSM_TCHF_FRAME:
Andreas Eversbergd074f8f2013-12-06 16:59:10 +01002948 case GSM_TCHF_FRAME_EFR:
Andreas Eversberg63bfdd82014-01-17 19:06:38 +01002949 case GSM_TCHH_FRAME:
Andreas Eversbergd8967f72012-03-08 14:39:19 +01002950 case GSM_TCH_FRAME_AMR:
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02002951 LOGP(DMNCC, LOGL_ERROR, "RTP streams must be handled externally; %s not supported.\n",
2952 get_mncc_name(msg_type));
2953 return -ENOTSUP;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002954 }
2955
2956 memset(&rel, 0, sizeof(struct gsm_mncc));
2957 rel.callref = data->callref;
2958
2959 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02002960 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002961
2962 /* Callref unknown */
2963 if (!trans) {
Harald Welte2483f1b2016-06-19 18:06:02 +02002964 struct vlr_subscr *vsub;
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01002965
Harald Welte4a3464c2009-07-04 10:11:24 +02002966 if (msg_type != MNCC_SETUP_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002967 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
2968 "Received '%s' from MNCC with "
2969 "unknown callref %d\n", data->called.number,
2970 get_mncc_name(msg_type), data->callref);
2971 /* Invalid call reference */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002972 return mncc_release_ind(net, NULL, data->callref,
2973 GSM48_CAUSE_LOC_PRN_S_LU,
2974 GSM48_CC_CAUSE_INVAL_TRANS_ID);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002975 }
Andreas Eversbergc079be42009-06-15 23:22:09 +02002976 if (!data->called.number[0] && !data->imsi[0]) {
2977 DEBUGP(DCC, "(bts - trx - ts - ti) "
2978 "Received '%s' from MNCC with "
2979 "no number or IMSI\n", get_mncc_name(msg_type));
2980 /* Invalid number */
2981 return mncc_release_ind(net, NULL, data->callref,
2982 GSM48_CAUSE_LOC_PRN_S_LU,
2983 GSM48_CC_CAUSE_INV_NR_FORMAT);
2984 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08002985 /* New transaction due to setup, find subscriber */
Andreas Eversbergc079be42009-06-15 23:22:09 +02002986 if (data->called.number[0])
Harald Welte2483f1b2016-06-19 18:06:02 +02002987 vsub = vlr_subscr_find_by_msisdn(net->vlr,
2988 data->called.number);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002989 else
Harald Welte2483f1b2016-06-19 18:06:02 +02002990 vsub = vlr_subscr_find_by_imsi(net->vlr, data->imsi);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01002991
2992 /* update the subscriber we deal with */
Harald Welte2483f1b2016-06-19 18:06:02 +02002993 log_set_context(LOG_CTX_VLR_SUBSCR, vsub);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01002994
Harald Welte4bfdfe72009-06-10 23:11:52 +08002995 /* If subscriber is not found */
Harald Welte2483f1b2016-06-19 18:06:02 +02002996 if (!vsub) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002997 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
2998 "Received '%s' from MNCC with "
2999 "unknown subscriber %s\n", data->called.number,
3000 get_mncc_name(msg_type), data->called.number);
3001 /* Unknown subscriber */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003002 return mncc_release_ind(net, NULL, data->callref,
3003 GSM48_CAUSE_LOC_PRN_S_LU,
3004 GSM48_CC_CAUSE_UNASSIGNED_NR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003005 }
3006 /* If subscriber is not "attached" */
Harald Welte2483f1b2016-06-19 18:06:02 +02003007 if (!vsub->lac) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003008 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3009 "Received '%s' from MNCC with "
3010 "detached subscriber %s\n", data->called.number,
Neels Hofmeyr7bbac162017-11-22 02:54:45 +01003011 get_mncc_name(msg_type), vlr_subscr_name(vsub));
Harald Welte2483f1b2016-06-19 18:06:02 +02003012 vlr_subscr_put(vsub);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003013 /* Temporarily out of order */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003014 return mncc_release_ind(net, NULL, data->callref,
3015 GSM48_CAUSE_LOC_PRN_S_LU,
3016 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003017 }
3018 /* Create transaction */
Harald Welte2483f1b2016-06-19 18:06:02 +02003019 trans = trans_alloc(net, vsub, GSM48_PDISC_CC, 0xff, data->callref);
Harald Weltedcaf5652009-07-23 18:56:43 +02003020 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003021 DEBUGP(DCC, "No memory for trans.\n");
Harald Welte2483f1b2016-06-19 18:06:02 +02003022 vlr_subscr_put(vsub);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003023 /* Ressource unavailable */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003024 mncc_release_ind(net, NULL, data->callref,
3025 GSM48_CAUSE_LOC_PRN_S_LU,
3026 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003027 return -ENOMEM;
3028 }
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003029
3030 /* Find conn */
Harald Welte2483f1b2016-06-19 18:06:02 +02003031 conn = connection_for_subscr(vsub);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003032
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003033 /* If subscriber has no conn */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003034 if (!conn) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003035 /* find transaction with this subscriber already paging */
3036 llist_for_each_entry(transt, &net->trans_list, entry) {
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003037 /* Transaction of our conn? */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003038 if (transt == trans ||
Harald Welte2483f1b2016-06-19 18:06:02 +02003039 transt->vsub != vsub)
Harald Welte4bfdfe72009-06-10 23:11:52 +08003040 continue;
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01003041 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003042 "Received '%s' from MNCC with "
3043 "unallocated channel, paging already "
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01003044 "started for lac %d.\n",
Harald Welte4bfdfe72009-06-10 23:11:52 +08003045 data->called.number,
Harald Welte2483f1b2016-06-19 18:06:02 +02003046 get_mncc_name(msg_type), vsub->lac);
3047 vlr_subscr_put(vsub);
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003048 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003049 return 0;
3050 }
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003051 /* store setup information until paging succeeds */
Harald Weltedcaf5652009-07-23 18:56:43 +02003052 memcpy(&trans->cc.msg, data, sizeof(struct gsm_mncc));
Sylvain Munaut567c8dc2010-12-01 22:17:36 +01003053
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02003054 /* Request a channel */
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003055 trans->paging_request = subscr_request_conn(
Harald Welte2483f1b2016-06-19 18:06:02 +02003056 vsub,
Harald Welte2483f1b2016-06-19 18:06:02 +02003057 setup_trig_pag_evt,
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003058 trans,
3059 "MNCC: establish call");
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01003060 if (!trans->paging_request) {
3061 LOGP(DCC, LOGL_ERROR, "Failed to allocate paging token.\n");
Harald Welte2483f1b2016-06-19 18:06:02 +02003062 vlr_subscr_put(vsub);
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01003063 trans_free(trans);
3064 return 0;
3065 }
Harald Welte2483f1b2016-06-19 18:06:02 +02003066 vlr_subscr_put(vsub);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003067 return 0;
3068 }
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003069
3070 /* Assign conn */
Neels Hofmeyr6166f292017-11-22 14:33:12 +01003071 trans->conn = msc_subscr_conn_get(conn, MSC_CONN_USE_TRANS_CC);
Harald Welte2483f1b2016-06-19 18:06:02 +02003072 vlr_subscr_put(vsub);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01003073 } else {
3074 /* update the subscriber we deal with */
Harald Welte2483f1b2016-06-19 18:06:02 +02003075 log_set_context(LOG_CTX_VLR_SUBSCR, trans->vsub);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003076 }
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01003077
3078 if (trans->conn)
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003079 conn = trans->conn;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003080
3081 /* if paging did not respond yet */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003082 if (!conn) {
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003083 DEBUGP(DCC, "(sub %s) "
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003084 "Received '%s' from MNCC in paging state\n",
Harald Welte2483f1b2016-06-19 18:06:02 +02003085 vlr_subscr_msisdn_or_name(trans->vsub),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003086 get_mncc_name(msg_type));
Harald Weltec66b71c2009-06-11 14:23:20 +08003087 mncc_set_cause(&rel, GSM48_CAUSE_LOC_PRN_S_LU,
3088 GSM48_CC_CAUSE_NORM_CALL_CLEAR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003089 if (msg_type == MNCC_REL_REQ)
3090 rc = mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
3091 else
3092 rc = mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
3093 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02003094 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003095 return rc;
Philipp Maiere4db08a2017-11-07 15:48:29 +01003096 } else {
3097 DEBUGP(DCC, "(ti %02x sub %s) "
3098 "Received '%s' from MNCC in state %d (%s)\n",
3099 trans->transaction_id,
3100 vlr_subscr_msisdn_or_name(trans->conn->vsub),
3101 get_mncc_name(msg_type), trans->cc.state,
3102 gsm48_cc_state_name(trans->cc.state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08003103 }
3104
Harald Welte4bfdfe72009-06-10 23:11:52 +08003105 /* Find function for current state and message */
3106 for (i = 0; i < DOWNSLLEN; i++)
3107 if ((msg_type == downstatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003108 && ((1 << trans->cc.state) & downstatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003109 break;
3110 if (i == DOWNSLLEN) {
3111 DEBUGP(DCC, "Message unhandled at this state.\n");
3112 return 0;
3113 }
3114
3115 rc = downstatelist[i].rout(trans, arg);
3116
3117 return rc;
3118}
3119
3120
3121static struct datastate {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02003122 uint32_t states;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003123 int type;
3124 int (*rout) (struct gsm_trans *trans, struct msgb *msg);
3125} datastatelist[] = {
3126 /* mobile originating call establishment */
3127 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3128 GSM48_MT_CC_SETUP, gsm48_cc_rx_setup},
3129 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3130 GSM48_MT_CC_EMERG_SETUP, gsm48_cc_rx_setup},
3131 {SBIT(GSM_CSTATE_CONNECT_IND), /* 5.2.1.2 */
3132 GSM48_MT_CC_CONNECT_ACK, gsm48_cc_rx_connect_ack},
3133 /* mobile terminating call establishment */
3134 {SBIT(GSM_CSTATE_CALL_PRESENT), /* 5.2.2.3.2 */
3135 GSM48_MT_CC_CALL_CONF, gsm48_cc_rx_call_conf},
3136 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF), /* ???? | 5.2.2.3.2 */
3137 GSM48_MT_CC_ALERTING, gsm48_cc_rx_alerting},
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003138 {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 +08003139 GSM48_MT_CC_CONNECT, gsm48_cc_rx_connect},
3140 /* signalling during call */
3141 {ALL_STATES - SBIT(GSM_CSTATE_NULL),
3142 GSM48_MT_CC_FACILITY, gsm48_cc_rx_facility},
3143 {SBIT(GSM_CSTATE_ACTIVE),
3144 GSM48_MT_CC_NOTIFY, gsm48_cc_rx_notify},
3145 {ALL_STATES,
3146 GSM48_MT_CC_START_DTMF, gsm48_cc_rx_start_dtmf},
3147 {ALL_STATES,
3148 GSM48_MT_CC_STOP_DTMF, gsm48_cc_rx_stop_dtmf},
3149 {ALL_STATES,
3150 GSM48_MT_CC_STATUS_ENQ, gsm48_cc_rx_status_enq},
3151 {SBIT(GSM_CSTATE_ACTIVE),
3152 GSM48_MT_CC_HOLD, gsm48_cc_rx_hold},
3153 {SBIT(GSM_CSTATE_ACTIVE),
3154 GSM48_MT_CC_RETR, gsm48_cc_rx_retrieve},
3155 {SBIT(GSM_CSTATE_ACTIVE),
3156 GSM48_MT_CC_MODIFY, gsm48_cc_rx_modify},
3157 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3158 GSM48_MT_CC_MODIFY_COMPL, gsm48_cc_rx_modify_complete},
3159 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3160 GSM48_MT_CC_MODIFY_REJECT, gsm48_cc_rx_modify_reject},
3161 {SBIT(GSM_CSTATE_ACTIVE),
3162 GSM48_MT_CC_USER_INFO, gsm48_cc_rx_userinfo},
3163 /* clearing */
3164 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3165 GSM48_MT_CC_DISCONNECT, gsm48_cc_rx_disconnect},
3166 {ALL_STATES - SBIT(GSM_CSTATE_NULL), /* 5.4.4.1.2.2 */
3167 GSM48_MT_CC_RELEASE, gsm48_cc_rx_release},
3168 {ALL_STATES, /* 5.4.3.4 */
3169 GSM48_MT_CC_RELEASE_COMPL, gsm48_cc_rx_release_compl},
3170};
3171
3172#define DATASLLEN \
3173 (sizeof(datastatelist) / sizeof(struct datastate))
3174
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003175static int gsm0408_rcv_cc(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4bc90a12008-12-27 16:32:52 +00003176{
3177 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyr531734a2016-03-14 16:13:24 +01003178 uint8_t msg_type = gsm48_hdr_msg_type(gh);
Neels Hofmeyr961bd0b2016-03-14 16:13:25 +01003179 uint8_t transaction_id = gsm48_hdr_trans_id_flip_ti(gh);
Harald Weltedcaf5652009-07-23 18:56:43 +02003180 struct gsm_trans *trans = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003181 int i, rc = 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00003182
Harald Welte4bfdfe72009-06-10 23:11:52 +08003183 if (msg_type & 0x80) {
3184 DEBUGP(DCC, "MSG 0x%2x not defined for PD error\n", msg_type);
3185 return -EINVAL;
Harald Welte4bc90a12008-12-27 16:32:52 +00003186 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003187
Harald Welte2483f1b2016-06-19 18:06:02 +02003188 if (!conn->vsub) {
3189 LOGP(DCC, LOGL_ERROR, "Invalid conn: no subscriber\n");
Neels Hofmeyr35706dd2016-12-22 01:58:03 +01003190 return -EINVAL;
3191 }
3192
Harald Welte4bfdfe72009-06-10 23:11:52 +08003193 /* Find transaction */
Jacob Erlbeckdae1f642014-12-02 14:22:53 +01003194 trans = trans_find_by_id(conn, GSM48_PDISC_CC, transaction_id);
Harald Weltedcaf5652009-07-23 18:56:43 +02003195
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003196#if BEFORE_MSCSPLIT
3197 /* Re-enable this log output once we can obtain this information via
3198 * A-interface, see OS#2391. */
Harald Welte6f5aee02009-07-23 21:21:14 +02003199 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003200 "Received '%s' from MS in state %d (%s)\n",
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003201 conn->bts->nr, conn->lchan->ts->trx->nr, conn->lchan->ts->nr,
Harald Welte2483f1b2016-06-19 18:06:02 +02003202 transaction_id, vlr_subscr_msisdn_or_name(conn->vsub),
Harald Weltee95daf192010-03-25 12:13:02 +08003203 gsm48_cc_msg_name(msg_type), trans?(trans->cc.state):0,
3204 gsm48_cc_state_name(trans?(trans->cc.state):0));
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003205#endif
Harald Welte4bfdfe72009-06-10 23:11:52 +08003206
3207 /* Create transaction */
3208 if (!trans) {
Harald Welte6f5aee02009-07-23 21:21:14 +02003209 DEBUGP(DCC, "Unknown transaction ID %x, "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003210 "creating new trans.\n", transaction_id);
3211 /* Create transaction */
Harald Welte2483f1b2016-06-19 18:06:02 +02003212 trans = trans_alloc(conn->network, conn->vsub,
Jacob Erlbeckaf792d62014-12-02 14:22:53 +01003213 GSM48_PDISC_CC,
Harald Weltedcaf5652009-07-23 18:56:43 +02003214 transaction_id, new_callref++);
3215 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003216 DEBUGP(DCC, "No memory for trans.\n");
Holger Hans Peter Freytherb549ddf2011-01-16 18:17:04 +01003217 rc = gsm48_tx_simple(conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02003218 GSM48_PDISC_CC | (transaction_id << 4),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003219 GSM48_MT_CC_RELEASE_COMPL);
3220 return -ENOMEM;
3221 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003222 /* Assign transaction */
Neels Hofmeyr6166f292017-11-22 14:33:12 +01003223 trans->conn = msc_subscr_conn_get(conn, MSC_CONN_USE_TRANS_CC);
Harald Welte2483f1b2016-06-19 18:06:02 +02003224 cm_service_request_concludes(conn, msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003225 }
3226
3227 /* find function for current state and message */
3228 for (i = 0; i < DATASLLEN; i++)
3229 if ((msg_type == datastatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003230 && ((1 << trans->cc.state) & datastatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003231 break;
3232 if (i == DATASLLEN) {
3233 DEBUGP(DCC, "Message unhandled at this state.\n");
3234 return 0;
3235 }
3236
Harald Welte2483f1b2016-06-19 18:06:02 +02003237 assert(trans->vsub);
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02003238
Harald Welte4bfdfe72009-06-10 23:11:52 +08003239 rc = datastatelist[i].rout(trans, msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00003240
Harald Welte2483f1b2016-06-19 18:06:02 +02003241 msc_subscr_conn_communicating(conn);
Harald Welte4bc90a12008-12-27 16:32:52 +00003242 return rc;
3243}
3244
Harald Welte2483f1b2016-06-19 18:06:02 +02003245static bool msg_is_initially_permitted(const struct gsm48_hdr *hdr)
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003246{
Harald Welte2483f1b2016-06-19 18:06:02 +02003247 uint8_t pdisc = gsm48_hdr_pdisc(hdr);
3248 uint8_t msg_type = gsm48_hdr_msg_type(hdr);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003249
Harald Welte2483f1b2016-06-19 18:06:02 +02003250 switch (pdisc) {
3251 case GSM48_PDISC_MM:
3252 switch (msg_type) {
3253 case GSM48_MT_MM_LOC_UPD_REQUEST:
3254 case GSM48_MT_MM_CM_SERV_REQ:
Harald Welte49f8fcb2018-01-24 21:40:19 +01003255 case GSM48_MT_MM_CM_REEST_REQ:
Harald Welte2483f1b2016-06-19 18:06:02 +02003256 case GSM48_MT_MM_AUTH_RESP:
3257 case GSM48_MT_MM_AUTH_FAIL:
3258 case GSM48_MT_MM_ID_RESP:
3259 case GSM48_MT_MM_TMSI_REALL_COMPL:
3260 case GSM48_MT_MM_IMSI_DETACH_IND:
3261 return true;
3262 default:
3263 break;
3264 }
3265 break;
3266 case GSM48_PDISC_RR:
3267 switch (msg_type) {
3268 case GSM48_MT_RR_CIPH_M_COMPL:
3269 case GSM48_MT_RR_PAG_RESP:
3270 return true;
3271 default:
3272 break;
3273 }
3274 break;
3275 default:
3276 break;
Neels Hofmeyr42eb0142016-05-20 17:15:44 +02003277 }
3278
Harald Welte2483f1b2016-06-19 18:06:02 +02003279 return false;
Neels Hofmeyr42eb0142016-05-20 17:15:44 +02003280}
3281
Harald Welte2483f1b2016-06-19 18:06:02 +02003282void cm_service_request_concludes(struct gsm_subscriber_connection *conn,
3283 struct msgb *msg)
3284{
3285
3286 /* If a CM Service Request was received before, this is the request the
3287 * conn was opened for. No need to wait for further messages. */
3288
3289 if (!conn->received_cm_service_request)
3290 return;
3291
3292 if (log_check_level(DMM, LOGL_DEBUG)) {
3293 struct gsm48_hdr *gh = msgb_l3(msg);
3294 uint8_t pdisc = gsm48_hdr_pdisc(gh);
3295 uint8_t msg_type = gsm48_hdr_msg_type(gh);
3296
Neels Hofmeyr78ada642017-03-10 02:15:20 +01003297 DEBUGP(DMM, "%s: rx msg %s:"
Harald Welte2483f1b2016-06-19 18:06:02 +02003298 " received_cm_service_request changes to false\n",
3299 vlr_subscr_name(conn->vsub),
Neels Hofmeyr78ada642017-03-10 02:15:20 +01003300 gsm48_pdisc_msgtype_name(pdisc, msg_type));
Harald Welte2483f1b2016-06-19 18:06:02 +02003301 }
3302 conn->received_cm_service_request = false;
3303}
3304
Harald Weltec2007852018-02-03 21:08:26 +01003305/* TS 24.007 11.2.3.2.3 Message Type Octet / Duplicate Detection */
3306int gsm0407_pdisc_ctr_bin(uint8_t pdisc)
3307{
3308 switch (pdisc) {
3309 case GSM48_PDISC_MM:
3310 case GSM48_PDISC_CC:
3311 case GSM48_PDISC_NC_SS:
3312 return 0;
3313 case GSM48_PDISC_GROUP_CC:
3314 return 1;
3315 case GSM48_PDISC_BCAST_CC:
3316 return 2;
3317 case GSM48_PDISC_LOC:
3318 return 3;
3319 default:
3320 return -1;
3321 }
3322}
3323
3324/* extract the N(SD) and return the modulo value for a R98 message */
3325static uint8_t gsm0407_determine_nsd_ret_modulo_r99(uint8_t pdisc, uint8_t msg_type, uint8_t *n_sd)
3326{
3327 switch (pdisc) {
3328 case GSM48_PDISC_MM:
3329 case GSM48_PDISC_CC:
3330 case GSM48_PDISC_NC_SS:
3331 *n_sd = (msg_type >> 6) & 0x3;
3332 return 4;
3333 case GSM48_PDISC_GROUP_CC:
3334 case GSM48_PDISC_BCAST_CC:
3335 case GSM48_PDISC_LOC:
3336 *n_sd = (msg_type >> 6) & 0x1;
3337 return 2;
3338 default:
3339 /* no sequence number, we cannot detect dups */
3340 return 0;
3341 }
3342}
3343
3344/* extract the N(SD) and return the modulo value for a R99 message */
3345static uint8_t gsm0407_determine_nsd_ret_modulo_r98(uint8_t pdisc, uint8_t msg_type, uint8_t *n_sd)
3346{
3347 switch (pdisc) {
3348 case GSM48_PDISC_MM:
3349 case GSM48_PDISC_CC:
3350 case GSM48_PDISC_NC_SS:
3351 case GSM48_PDISC_GROUP_CC:
3352 case GSM48_PDISC_BCAST_CC:
3353 case GSM48_PDISC_LOC:
3354 *n_sd = (msg_type >> 6) & 0x1;
3355 return 2;
3356 default:
3357 /* no sequence number, we cannot detect dups */
3358 return 0;
3359 }
3360}
3361
3362/* TS 24.007 11.2.3.2 Message Type Octet / Duplicate Detection */
3363static bool gsm0407_is_duplicate(struct gsm_subscriber_connection *conn, struct msgb *msg)
3364{
3365 struct gsm48_hdr *gh;
3366 uint8_t pdisc;
3367 uint8_t n_sd, modulo, bin;
3368
3369 gh = msgb_l3(msg);
3370 pdisc = gsm48_hdr_pdisc(gh);
3371
3372 if (conn->classmark.classmark1_set && conn->classmark.classmark1.rev_lev < 2) {
3373 modulo = gsm0407_determine_nsd_ret_modulo_r98(pdisc, gh->msg_type, &n_sd);
3374 } else { /* R99 */
3375 modulo = gsm0407_determine_nsd_ret_modulo_r99(pdisc, gh->msg_type, &n_sd);
3376 }
3377 if (modulo == 0)
3378 return false;
3379 bin = gsm0407_pdisc_ctr_bin(pdisc);
3380 if (bin < 0)
3381 return false;
3382
3383 OSMO_ASSERT(bin < ARRAY_SIZE(conn->n_sd_next));
3384 if (n_sd != conn->n_sd_next[bin]) {
3385 /* not what we expected: duplicate */
3386 return true;
3387 } else {
3388 /* as expected: no dup; update expected counter for next message */
3389 conn->n_sd_next[bin] = (n_sd + 1) % modulo;
3390 return false;
3391 }
3392}
Harald Welte2483f1b2016-06-19 18:06:02 +02003393
Neels Hofmeyr378a4922016-05-09 21:07:43 +02003394/* 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 +08003395int gsm0408_dispatch(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00003396{
Philipp Maier91f10c72017-04-20 18:40:37 +02003397 struct gsm48_hdr *gh;
3398 uint8_t pdisc;
Harald Welte8470bf22008-12-25 23:28:35 +00003399 int rc = 0;
Harald Welte51008772009-12-29 11:49:12 +01003400
Neels Hofmeyr0906a392017-09-19 14:36:06 +02003401 OSMO_ASSERT(msg->l3h);
Neels Hofmeyrffaed9e2016-05-09 21:38:51 +02003402 OSMO_ASSERT(conn);
3403 OSMO_ASSERT(msg);
3404
Philipp Maier91f10c72017-04-20 18:40:37 +02003405 gh = msgb_l3(msg);
3406 pdisc = gsm48_hdr_pdisc(gh);
3407
Harald Weltec2007852018-02-03 21:08:26 +01003408 if (gsm0407_is_duplicate(conn, msg)) {
3409 LOGP(DRLL, LOGL_NOTICE, "%s: Discarding duplicate L3 message\n",
3410 (conn && conn->vsub) ? vlr_subscr_name(conn->vsub) : "UNKNOWN");
3411 return 0;
3412 }
3413
Neels Hofmeyr78ada642017-03-10 02:15:20 +01003414 LOGP(DRLL, LOGL_DEBUG, "Dispatching 04.08 message %s (0x%x:0x%x)\n",
3415 gsm48_pdisc_msgtype_name(pdisc, gsm48_hdr_msg_type(gh)),
3416 pdisc, gsm48_hdr_msg_type(gh));
Harald Welte2483f1b2016-06-19 18:06:02 +02003417
3418 if (!msc_subscr_conn_is_accepted(conn)
3419 && !msg_is_initially_permitted(gh)) {
3420 LOGP(DRLL, LOGL_ERROR,
Neels Hofmeyr78ada642017-03-10 02:15:20 +01003421 "subscr %s: Message not permitted for initial conn: %s\n",
3422 vlr_subscr_name(conn->vsub),
3423 gsm48_pdisc_msgtype_name(pdisc, gsm48_hdr_msg_type(gh)));
Harald Welte2483f1b2016-06-19 18:06:02 +02003424 return -EACCES;
3425 }
3426
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003427 if (conn->vsub && conn->vsub->cs.attached_via_ran != conn->via_ran) {
3428 LOGP(DMM, LOGL_ERROR,
3429 "%s: Illegal situation: RAN type mismatch:"
3430 " attached via %s, received message via %s\n",
3431 vlr_subscr_name(conn->vsub),
3432 ran_type_name(conn->vsub->cs.attached_via_ran),
3433 ran_type_name(conn->via_ran));
3434 return -EACCES;
3435 }
3436
Philipp Maiere0d5caa2017-02-27 16:56:59 +01003437#if 0
Holger Hans Peter Freyther758f4df2010-06-21 10:34:03 +08003438 if (silent_call_reroute(conn, msg))
3439 return silent_call_rx(conn, msg);
Philipp Maiere0d5caa2017-02-27 16:56:59 +01003440#endif
Alexander Couzensfbd96f52016-08-29 18:40:02 +02003441
Harald Welte52b1f982008-12-23 20:25:15 +00003442 switch (pdisc) {
3443 case GSM48_PDISC_CC:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003444 rc = gsm0408_rcv_cc(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003445 break;
3446 case GSM48_PDISC_MM:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003447 rc = gsm0408_rcv_mm(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003448 break;
3449 case GSM48_PDISC_RR:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003450 rc = gsm0408_rcv_rr(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003451 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00003452 case GSM48_PDISC_SMS:
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +08003453 rc = gsm0411_rcv_sms(conn, msg);
Harald Weltebcae43f2008-12-27 21:45:37 +00003454 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003455 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00003456 case GSM48_PDISC_SM_GPRS:
Harald Welte5d24ba12009-12-24 12:13:17 +01003457 LOGP(DRLL, LOGL_NOTICE, "Unimplemented "
3458 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Neels Hofmeyrffaed9e2016-05-09 21:38:51 +02003459 rc = -ENOTSUP;
Harald Welte52b1f982008-12-23 20:25:15 +00003460 break;
Harald Welte6eafe912009-10-16 08:32:58 +02003461 case GSM48_PDISC_NC_SS:
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +08003462 rc = handle_rcv_ussd(conn, msg);
Harald Welte6eafe912009-10-16 08:32:58 +02003463 break;
Harald Welteeac38c32017-05-29 18:02:53 +02003464 case GSM48_PDISC_TEST:
3465 rc = gsm0414_rcv_test(conn, msg);
3466 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003467 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01003468 LOGP(DRLL, LOGL_NOTICE, "Unknown "
3469 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Neels Hofmeyrffaed9e2016-05-09 21:38:51 +02003470 rc = -EINVAL;
Harald Welte52b1f982008-12-23 20:25:15 +00003471 break;
3472 }
3473
3474 return rc;
3475}
Harald Welte8470bf22008-12-25 23:28:35 +00003476
Harald Welte2483f1b2016-06-19 18:06:02 +02003477/***********************************************************************
3478 * VLR integration
3479 ***********************************************************************/
3480
3481/* VLR asks us to send an authentication request */
3482static int msc_vlr_tx_auth_req(void *msc_conn_ref, struct gsm_auth_tuple *at,
3483 bool send_autn)
3484{
3485 struct gsm_subscriber_connection *conn = msc_conn_ref;
3486 return gsm48_tx_mm_auth_req(conn, at->vec.rand,
3487 send_autn? at->vec.autn : NULL,
3488 at->key_seq);
3489}
3490
3491/* VLR asks us to send an authentication reject */
3492static int msc_vlr_tx_auth_rej(void *msc_conn_ref)
3493{
3494 struct gsm_subscriber_connection *conn = msc_conn_ref;
3495 return gsm48_tx_mm_auth_rej(conn);
3496}
3497
3498/* VLR asks us to transmit an Identity Request of given type */
3499static int msc_vlr_tx_id_req(void *msc_conn_ref, uint8_t mi_type)
3500{
3501 struct gsm_subscriber_connection *conn = msc_conn_ref;
3502 return mm_tx_identity_req(conn, mi_type);
3503}
3504
3505/* VLR asks us to transmit a Location Update Accept */
3506static int msc_vlr_tx_lu_acc(void *msc_conn_ref, uint32_t send_tmsi)
3507{
3508 struct gsm_subscriber_connection *conn = msc_conn_ref;
3509 return gsm0408_loc_upd_acc(conn, send_tmsi);
3510}
3511
3512/* VLR asks us to transmit a Location Update Reject */
3513static int msc_vlr_tx_lu_rej(void *msc_conn_ref, uint8_t cause)
3514{
3515 struct gsm_subscriber_connection *conn = msc_conn_ref;
3516 return gsm0408_loc_upd_rej(conn, cause);
3517}
3518
3519/* VLR asks us to transmit a CM Service Accept */
3520static int msc_vlr_tx_cm_serv_acc(void *msc_conn_ref)
3521{
3522 struct gsm_subscriber_connection *conn = msc_conn_ref;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003523 return msc_gsm48_tx_mm_serv_ack(conn);
3524}
3525
3526static int msc_vlr_tx_common_id(void *msc_conn_ref)
3527{
3528 struct gsm_subscriber_connection *conn = msc_conn_ref;
3529 return msc_tx_common_id(conn);
Harald Welte2483f1b2016-06-19 18:06:02 +02003530}
3531
3532/* VLR asks us to transmit a CM Service Reject */
3533static int msc_vlr_tx_cm_serv_rej(void *msc_conn_ref, enum vlr_proc_arq_result result)
3534{
3535 uint8_t cause;
3536 struct gsm_subscriber_connection *conn = msc_conn_ref;
3537 conn->received_cm_service_request = false;
3538
3539 switch (result) {
3540 default:
3541 case VLR_PR_ARQ_RES_NONE:
3542 case VLR_PR_ARQ_RES_SYSTEM_FAILURE:
3543 case VLR_PR_ARQ_RES_UNKNOWN_ERROR:
3544 cause = GSM48_REJECT_NETWORK_FAILURE;
3545 break;
3546 case VLR_PR_ARQ_RES_ILLEGAL_SUBSCR:
3547 cause = GSM48_REJECT_LOC_NOT_ALLOWED;
3548 break;
3549 case VLR_PR_ARQ_RES_UNIDENT_SUBSCR:
3550 cause = GSM48_REJECT_INVALID_MANDANTORY_INF;
3551 break;
3552 case VLR_PR_ARQ_RES_ROAMING_NOTALLOWED:
3553 cause = GSM48_REJECT_ROAMING_NOT_ALLOWED;
3554 break;
3555 case VLR_PR_ARQ_RES_ILLEGAL_EQUIP:
3556 cause = GSM48_REJECT_ILLEGAL_MS;
3557 break;
3558 case VLR_PR_ARQ_RES_TIMEOUT:
3559 cause = GSM48_REJECT_CONGESTION;
3560 break;
3561 };
3562
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003563 return msc_gsm48_tx_mm_serv_rej(conn, cause);
Harald Welte2483f1b2016-06-19 18:06:02 +02003564}
3565
Neels Hofmeyr703638e2017-12-14 05:30:16 +01003566/* For msc_vlr_set_ciph_mode() */
3567osmo_static_assert(sizeof(((struct gsm0808_encrypt_info*)0)->key) >= sizeof(((struct osmo_auth_vector*)0)->kc),
3568 gsm0808_encrypt_info_key_fits_osmo_auth_vec_kc);
3569
Harald Welte2483f1b2016-06-19 18:06:02 +02003570/* VLR asks us to start using ciphering */
3571static int msc_vlr_set_ciph_mode(void *msc_conn_ref,
Neels Hofmeyr2ef2da52017-12-18 01:23:42 +01003572 bool umts_aka,
Harald Welte2483f1b2016-06-19 18:06:02 +02003573 bool retrieve_imeisv)
3574{
3575 struct gsm_subscriber_connection *conn = msc_conn_ref;
3576 struct vlr_subscr *vsub;
3577 struct gsm_auth_tuple *tuple;
3578
3579 if (!conn || !conn->vsub) {
3580 LOGP(DMM, LOGL_ERROR, "Cannot send Ciphering Mode Command to"
3581 " NULL conn/subscriber");
3582 return -EINVAL;
3583 }
3584
3585 vsub = conn->vsub;
3586 tuple = vsub->last_tuple;
3587
3588 if (!tuple) {
3589 LOGP(DMM, LOGL_ERROR, "subscr %s: Cannot send Ciphering Mode"
3590 " Command: no auth tuple available\n",
3591 vlr_subscr_name(vsub));
3592 return -EINVAL;
3593 }
3594
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003595 switch (conn->via_ran) {
3596 case RAN_GERAN_A:
3597 DEBUGP(DMM, "-> CIPHER MODE COMMAND %s\n",
3598 vlr_subscr_name(conn->vsub));
Neels Hofmeyr703638e2017-12-14 05:30:16 +01003599 {
Harald Welte7b222aa2017-12-23 19:30:32 +01003600 struct gsm_network *net = conn->network;
Neels Hofmeyr703638e2017-12-14 05:30:16 +01003601 struct gsm0808_encrypt_info ei;
Harald Welte7b222aa2017-12-23 19:30:32 +01003602 int i, j = 0;
Neels Hofmeyr703638e2017-12-14 05:30:16 +01003603
Harald Welte7b222aa2017-12-23 19:30:32 +01003604 for (i = 0; i < 8; i++) {
Harald Welte71330722017-12-23 19:59:02 +01003605 if (net->a5_encryption_mask & (1 << i) &&
3606 classmark_supports_a5(&conn->classmark, i))
Harald Welte7b222aa2017-12-23 19:30:32 +01003607 ei.perm_algo[j++] = vlr_ciph_to_gsm0808_alg_id(i);
3608 }
3609 ei.perm_algo_len = j;
Neels Hofmeyr703638e2017-12-14 05:30:16 +01003610
Harald Welte71330722017-12-23 19:59:02 +01003611 if (ei.perm_algo_len == 0) {
3612 LOGP(DMM, LOGL_ERROR, "%s: cannot start ciphering, no intersection "
3613 "between MSC-configured and MS-supported A5 algorithms\n",
3614 vlr_subscr_name(conn->vsub));
3615 return -ENOTSUP;
3616 }
3617
Neels Hofmeyr52821712017-12-18 01:23:42 +01003618 /* In case of UMTS AKA, the Kc for ciphering must be derived from the 3G auth
3619 * tokens. tuple->vec.kc was calculated from the GSM algorithm and is not
3620 * necessarily a match for the UMTS AKA tokens. */
3621 if (umts_aka)
3622 osmo_auth_c3(ei.key, tuple->vec.ck, tuple->vec.ik);
3623 else
3624 memcpy(ei.key, tuple->vec.kc, sizeof(tuple->vec.kc));
Neels Hofmeyr703638e2017-12-14 05:30:16 +01003625 ei.key_len = sizeof(tuple->vec.kc);
3626
3627 return a_iface_tx_cipher_mode(conn, &ei, retrieve_imeisv);
3628 }
3629
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003630 case RAN_UTRAN_IU:
3631#ifdef BUILD_IU
3632 DEBUGP(DMM, "-> SECURITY MODE CONTROL %s\n",
3633 vlr_subscr_name(conn->vsub));
Neels Hofmeyr00e82d62017-07-05 15:19:52 +02003634 return ranap_iu_tx_sec_mode_cmd(conn->iu.ue_ctx, &tuple->vec, 0, 1);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003635#else
3636 LOGP(DMM, LOGL_ERROR, "Cannot send Security Mode Control over RAN_UTRAN_IU,"
3637 " built without Iu support\n");
3638 return -ENOTSUP;
3639#endif
3640
3641 default:
3642 break;
3643 }
3644 LOGP(DMM, LOGL_ERROR,
3645 "%s: cannot start ciphering, unknown RAN type %d\n",
3646 vlr_subscr_name(conn->vsub), conn->via_ran);
3647 return -ENOTSUP;
3648}
3649
3650void msc_rx_sec_mode_compl(struct gsm_subscriber_connection *conn)
3651{
3652 struct vlr_ciph_result vlr_res = {};
3653
3654 if (!conn || !conn->vsub) {
3655 LOGP(DMM, LOGL_ERROR,
3656 "Rx Security Mode Complete for invalid conn\n");
3657 return;
3658 }
3659
3660 DEBUGP(DMM, "<- SECURITY MODE COMPLETE %s\n",
3661 vlr_subscr_name(conn->vsub));
3662
3663 vlr_res.cause = VLR_CIPH_COMPL;
3664 vlr_subscr_rx_ciph_res(conn->vsub, &vlr_res);
Harald Welte2483f1b2016-06-19 18:06:02 +02003665}
3666
3667/* VLR informs us that the subscriber data has somehow been modified */
3668static void msc_vlr_subscr_update(struct vlr_subscr *subscr)
3669{
Maxa263bb22017-12-27 13:23:44 +01003670 LOGVSUBP(LOGL_NOTICE, subscr, "VLR: update for IMSI=%s (MSISDN=%s, used=%d)\n",
3671 subscr->imsi, subscr->msisdn, subscr->use_count);
Harald Welte2483f1b2016-06-19 18:06:02 +02003672}
3673
3674/* VLR informs us that the subscriber has been associated with a conn */
3675static void msc_vlr_subscr_assoc(void *msc_conn_ref,
3676 struct vlr_subscr *vsub)
3677{
3678 struct gsm_subscriber_connection *conn = msc_conn_ref;
3679 OSMO_ASSERT(!conn->vsub);
3680 conn->vsub = vlr_subscr_get(vsub);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003681 conn->vsub->cs.attached_via_ran = conn->via_ran;
Harald Welte2483f1b2016-06-19 18:06:02 +02003682}
3683
3684/* operations that we need to implement for libvlr */
3685static const struct vlr_ops msc_vlr_ops = {
3686 .tx_auth_req = msc_vlr_tx_auth_req,
3687 .tx_auth_rej = msc_vlr_tx_auth_rej,
3688 .tx_id_req = msc_vlr_tx_id_req,
3689 .tx_lu_acc = msc_vlr_tx_lu_acc,
3690 .tx_lu_rej = msc_vlr_tx_lu_rej,
3691 .tx_cm_serv_acc = msc_vlr_tx_cm_serv_acc,
3692 .tx_cm_serv_rej = msc_vlr_tx_cm_serv_rej,
3693 .set_ciph_mode = msc_vlr_set_ciph_mode,
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02003694 .tx_common_id = msc_vlr_tx_common_id,
Harald Welte2483f1b2016-06-19 18:06:02 +02003695 .subscr_update = msc_vlr_subscr_update,
3696 .subscr_assoc = msc_vlr_subscr_assoc,
3697};
3698
3699/* Allocate net->vlr so that the VTY may configure the VLR's data structures */
3700int msc_vlr_alloc(struct gsm_network *net)
3701{
3702 net->vlr = vlr_alloc(net, &msc_vlr_ops);
3703 if (!net->vlr)
3704 return -ENOMEM;
3705 net->vlr->user_ctx = net;
3706 return 0;
3707}
3708
3709/* Launch the VLR, i.e. its GSUP connection */
3710int msc_vlr_start(struct gsm_network *net)
3711{
3712 OSMO_ASSERT(net->vlr);
3713 return vlr_start("MSC", net->vlr, net->gsup_server_addr_str,
3714 net->gsup_server_port);
3715}