blob: 3f3f90581a7d519e6c4226fffd442d4063450990 [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 Welte9066b742016-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>
Neels Hofmeyr2188a772016-05-20 21:59:55 +020034#include <openssl/rand.h>
Harald Welte52b1f982008-12-23 20:25:15 +000035
Harald Welte9c3dc902012-04-08 16:59:24 +020036#include "bscconfig.h"
37
Sylvain Munaut30a15382009-12-24 00:27:26 +010038#include <openbsc/auth.h>
Harald Welte75a983f2008-12-27 21:34:06 +000039#include <openbsc/db.h>
Harald Welte8470bf22008-12-25 23:28:35 +000040#include <openbsc/debug.h>
41#include <openbsc/gsm_data.h>
42#include <openbsc/gsm_subscriber.h>
Daniel Willmann8b3390e2008-12-28 00:31:09 +000043#include <openbsc/gsm_04_11.h>
Harald Welte8470bf22008-12-25 23:28:35 +000044#include <openbsc/gsm_04_08.h>
Holger Hans Peter Freythere0009f12010-08-12 01:41:57 +080045#include <openbsc/gsm_04_80.h>
Harald Welte8470bf22008-12-25 23:28:35 +000046#include <openbsc/abis_rsl.h>
Holger Freytherca362a62009-01-04 21:05:01 +000047#include <openbsc/chan_alloc.h>
Harald Welte0b4c34e2009-02-09 17:54:43 +000048#include <openbsc/paging.h>
Holger Freyther053e09d2009-02-14 22:51:06 +000049#include <openbsc/signal.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020050#include <osmocom/abis/trau_frame.h>
Harald Welte11fa29c2009-02-19 17:24:39 +000051#include <openbsc/trau_mux.h>
Harald Welte805f6442009-07-28 18:25:29 +020052#include <openbsc/rtp_proxy.h>
Harald Weltedcaf5652009-07-23 18:56:43 +020053#include <openbsc/transaction.h>
Harald Welte6eafe912009-10-16 08:32:58 +020054#include <openbsc/ussd.h>
Harald Welte51008772009-12-29 11:49:12 +010055#include <openbsc/silent_call.h>
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +080056#include <openbsc/bsc_api.h>
Holger Hans Peter Freyther88519ea2010-06-30 12:44:07 +080057#include <openbsc/osmo_msc.h>
Holger Hans Peter Freytherc121bb32012-12-26 10:17:42 +010058#include <openbsc/handover.h>
Holger Hans Peter Freyther53122b02015-08-20 19:10:58 +020059#include <openbsc/mncc_int.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020060#include <osmocom/abis/e1_input.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010061#include <osmocom/core/bitvec.h>
Harald Welte9066b742016-06-19 18:06:02 +020062#include <openbsc/vlr.h>
Neels Hofmeyrce67be12017-05-08 15:12:20 +020063#include <openbsc/msc_ifaces.h>
Holger Hans Peter Freyther841c2002010-09-30 18:52:23 +080064
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010065#include <osmocom/gsm/gsm48.h>
66#include <osmocom/gsm/gsm0480.h>
67#include <osmocom/gsm/gsm_utils.h>
Max8db12e42016-04-18 23:11:18 +020068#include <osmocom/gsm/protocol/gsm_04_08.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010069#include <osmocom/core/msgb.h>
70#include <osmocom/core/talloc.h>
Neels Hofmeyr93bafb62017-01-13 03:12:08 +010071#include <osmocom/core/utils.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010072#include <osmocom/gsm/tlv.h>
Neels Hofmeyr2188a772016-05-20 21:59:55 +020073#include <osmocom/crypt/auth.h>
74
75#include <openbsc/msc_ifaces.h>
76
77#ifdef BUILD_IU
78#include <openbsc/iu.h>
79#endif
Harald Welte52b1f982008-12-23 20:25:15 +000080
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +020081#include <assert.h>
82
Neels Hofmeyrce67be12017-05-08 15:12:20 +020083
Harald Welte (local)d19e58b2009-08-15 02:30:58 +020084void *tall_locop_ctx;
Sylvain Munaut30a15382009-12-24 00:27:26 +010085void *tall_authciphop_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +020086
Harald Welte9066b742016-06-19 18:06:02 +020087static int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn,
88 uint32_t send_tmsi);
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +080089static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020090 uint8_t pdisc, uint8_t msg_type);
Harald Welte65e74cc2008-12-29 01:55:35 +000091
Harald Welte52b1f982008-12-23 20:25:15 +000092struct gsm_lai {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020093 uint16_t mcc;
94 uint16_t mnc;
95 uint16_t lac;
Harald Welte52b1f982008-12-23 20:25:15 +000096};
97
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020098static uint32_t new_callref = 0x80000001;
Harald Welte4bfdfe72009-06-10 23:11:52 +080099
Harald Welte31c00f72011-03-03 23:29:05 +0100100void cc_tx_to_mncc(struct gsm_network *net, struct msgb *msg)
101{
102 net->mncc_recv(net, msg);
103}
104
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800105static int gsm48_conn_sendmsg(struct msgb *msg, struct gsm_subscriber_connection *conn,
106 struct gsm_trans *trans)
107{
108 struct gsm48_hdr *gh = (struct gsm48_hdr *) msg->data;
109
110 /* if we get passed a transaction reference, do some common
111 * work that the caller no longer has to do */
112 if (trans) {
113 gh->proto_discr = trans->protocol | (trans->transaction_id << 4);
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800114 }
115
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200116 return msc_tx_dtap(conn, msg);
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800117}
Sylvain Munaut30a15382009-12-24 00:27:26 +0100118
Holger Hans Peter Freythere0009f12010-08-12 01:41:57 +0800119int gsm48_cc_tx_notify_ss(struct gsm_trans *trans, const char *message)
120{
121 struct gsm48_hdr *gh;
122 struct msgb *ss_notify;
123
124 ss_notify = gsm0480_create_notifySS(message);
125 if (!ss_notify)
126 return -1;
127
128 gsm0480_wrap_invoke(ss_notify, GSM0480_OP_CODE_NOTIFY_SS, 0);
129 uint8_t *data = msgb_push(ss_notify, 1);
130 data[0] = ss_notify->len - 1;
131 gh = (struct gsm48_hdr *) msgb_push(ss_notify, sizeof(*gh));
132 gh->msg_type = GSM48_MT_CC_FACILITY;
133 return gsm48_conn_sendmsg(ss_notify, trans->conn, trans);
134}
135
Harald Welte9066b742016-06-19 18:06:02 +0200136/* clear all transactions globally; used in case of MNCC socket disconnect */
Harald Welte371efe52010-12-22 23:17:50 +0100137void gsm0408_clear_all_trans(struct gsm_network *net, int protocol)
138{
139 struct gsm_trans *trans, *temp;
140
141 LOGP(DCC, LOGL_NOTICE, "Clearing all currently active transactions!!!\n");
142
143 llist_for_each_entry_safe(trans, temp, &net->trans_list, entry) {
Harald Welteeb76c7a2010-12-23 02:47:53 +0100144 if (trans->protocol == protocol) {
145 trans->callref = 0;
Harald Welte371efe52010-12-22 23:17:50 +0100146 trans_free(trans);
Harald Welteeb76c7a2010-12-23 02:47:53 +0100147 }
Harald Welte371efe52010-12-22 23:17:50 +0100148 }
149}
150
Holger Freyther429e7762008-12-30 13:28:30 +0000151/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200152static int gsm0408_loc_upd_rej(struct gsm_subscriber_connection *conn, uint8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000153{
Holger Hans Peter Freyther230a4d82010-06-15 19:40:05 +0800154 struct msgb *msg;
155
Holger Hans Peter Freyther230a4d82010-06-15 19:40:05 +0800156 msg = gsm48_create_loc_upd_rej(cause);
157 if (!msg) {
158 LOGP(DMM, LOGL_ERROR, "Failed to create msg for LOCATION UPDATING REJECT.\n");
159 return -1;
160 }
Alexander Couzensfbd96f52016-08-29 18:40:02 +0200161
Neels Hofmeyrce67be12017-05-08 15:12:20 +0200162 LOGP(DMM, LOGL_INFO, "Subscriber %s: LOCATION UPDATING REJECT\n",
163 vlr_subscr_name(conn->vsub));
Harald Welte24ff6ee2009-12-22 00:41:05 +0100164
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800165 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000166}
167
168/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Harald Welte9066b742016-06-19 18:06:02 +0200169static int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn,
170 uint32_t send_tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000171{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100172 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 LOC UPD ACC");
Harald Welte52b1f982008-12-23 20:25:15 +0000173 struct gsm48_hdr *gh;
174 struct gsm48_loc_area_id *lai;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200175 uint8_t *mid;
Alexander Couzensfbd96f52016-08-29 18:40:02 +0200176
Harald Welte52b1f982008-12-23 20:25:15 +0000177 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
178 gh->proto_discr = GSM48_PDISC_MM;
179 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
180
181 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200182 gsm48_generate_lai(lai, conn->network->country_code,
183 conn->network->network_code,
Neels Hofmeyrce67be12017-05-08 15:12:20 +0200184 conn->lac);
Harald Welte52b1f982008-12-23 20:25:15 +0000185
Harald Welte9066b742016-06-19 18:06:02 +0200186 if (send_tmsi == GSM_RESERVED_TMSI) {
187 /* we did not allocate a TMSI to the MS, so we need to
188 * include the IMSI in order for the MS to delete any
189 * old TMSI that might still be allocated */
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200190 uint8_t mi[10];
191 int len;
Harald Welte9066b742016-06-19 18:06:02 +0200192 len = gsm48_generate_mid_from_imsi(mi, conn->vsub->imsi);
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200193 mid = msgb_put(msg, len);
194 memcpy(mid, mi, len);
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200195 DEBUGP(DMM, "-> %s LOCATION UPDATE ACCEPT\n",
196 vlr_subscr_name(conn->vsub));
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200197 } else {
Harald Welte9066b742016-06-19 18:06:02 +0200198 /* Include the TMSI, which means that the MS will send a
199 * TMSI REALLOCATION COMPLETE, and we should wait for
200 * that until T3250 expiration */
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200201 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
Harald Welte9066b742016-06-19 18:06:02 +0200202 gsm48_generate_mid_from_tmsi(mid, send_tmsi);
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200203 DEBUGP(DMM, "-> %s LOCATION UPDATE ACCEPT (TMSI = 0x%08x)\n",
204 vlr_subscr_name(conn->vsub),
205 send_tmsi);
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200206 }
Harald Welte9066b742016-06-19 18:06:02 +0200207 /* TODO: Follow-on proceed */
208 /* TODO: CTS permission */
209 /* TODO: Equivalent PLMNs */
210 /* TODO: Emergency Number List */
211 /* TODO: Per-MS T3312 */
Harald Welte52b1f982008-12-23 20:25:15 +0000212
Harald Welte52b1f982008-12-23 20:25:15 +0000213
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800214 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000215}
216
Harald Weltebf5e8df2009-02-03 12:59:45 +0000217/* Transmit Chapter 9.2.10 Identity Request */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200218static int mm_tx_identity_req(struct gsm_subscriber_connection *conn, uint8_t id_type)
Harald Welte231ad4f2008-12-27 11:15:38 +0000219{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100220 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 ID REQ");
Harald Welte231ad4f2008-12-27 11:15:38 +0000221 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000222
Harald Welte231ad4f2008-12-27 11:15:38 +0000223 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
224 gh->proto_discr = GSM48_PDISC_MM;
225 gh->msg_type = GSM48_MT_MM_ID_REQ;
226 gh->data[0] = id_type;
227
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800228 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte231ad4f2008-12-27 11:15:38 +0000229}
230
Harald Weltebf5e8df2009-02-03 12:59:45 +0000231/* Parse Chapter 9.2.11 Identity Response */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800232static int mm_rx_id_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte231ad4f2008-12-27 11:15:38 +0000233{
234 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200235 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200236 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000237
Harald Welte9066b742016-06-19 18:06:02 +0200238 if (!conn->vsub) {
239 LOGP(DMM, LOGL_ERROR,
240 "Rx MM Identity Response: invalid: no subscriber\n");
241 return -EINVAL;
242 }
243
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200244 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welteb9845f92015-08-16 18:07:48 +0200245 DEBUGP(DMM, "IDENTITY RESPONSE: MI(%s)=%s\n",
246 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte231ad4f2008-12-27 11:15:38 +0000247
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200248 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, gh->data);
Harald Welte7659de12009-12-13 12:39:18 +0100249
Harald Welte9066b742016-06-19 18:06:02 +0200250 return vlr_subscr_rx_id_resp(conn->vsub, gh->data+1, gh->data[0]);
Harald Welte231ad4f2008-12-27 11:15:38 +0000251}
252
Harald Welte9066b742016-06-19 18:06:02 +0200253/* FIXME: to libosmogsm */
Harald Welteb9845f92015-08-16 18:07:48 +0200254static const struct value_string lupd_names[] = {
255 { GSM48_LUPD_NORMAL, "NORMAL" },
256 { GSM48_LUPD_PERIODIC, "PERIODIC" },
257 { GSM48_LUPD_IMSI_ATT, "IMSI ATTACH" },
258 { 0, NULL }
259};
Harald Welte2a139372009-02-22 21:14:55 +0000260
Harald Welte9066b742016-06-19 18:06:02 +0200261/* Chapter 9.2.15: Receive Location Updating Request.
262 * Keep this function non-static for direct invocation by unit tests. */
263int mm_rx_loc_upd_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000264{
Harald Welte9066b742016-06-19 18:06:02 +0200265 static const enum subscr_conn_from conn_from_lu = SUBSCR_CONN_FROM_LU;
266 struct gsm_network *net = conn->network;
Harald Welte8470bf22008-12-25 23:28:35 +0000267 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000268 struct gsm48_loc_upd_req *lu;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200269 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200270 char mi_string[GSM48_MI_SIZE];
Harald Welte9066b742016-06-19 18:06:02 +0200271 enum vlr_lu_type vlr_lu_type = VLR_LU_TYPE_REGULAR;
Harald Welte9066b742016-06-19 18:06:02 +0200272 uint32_t tmsi;
273 char *imsi;
274 struct osmo_location_area_id old_lai, new_lai;
275 struct osmo_fsm_inst *lu_fsm;
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200276 bool is_utran;
Harald Welte9066b742016-06-19 18:06:02 +0200277 int rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000278
Harald Welte8470bf22008-12-25 23:28:35 +0000279 lu = (struct gsm48_loc_upd_req *) gh->data;
280
281 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +0000282
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200283 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Harald Weltefc977a82008-12-27 10:19:37 +0000284
Harald Welte9066b742016-06-19 18:06:02 +0200285 rc = msc_create_conn_fsm(conn, mi_string);
286 if (rc)
287 /* logging already happened in msc_create_conn_fsm() */
288 return rc;
289
290 conn->classmark.classmark1 = lu->classmark1;
291 conn->classmark.classmark1_set = true;
292
293 DEBUGP(DMM, "LOCATION UPDATING REQUEST: MI(%s)=%s type=%s\n",
294 gsm48_mi_type_name(mi_type), mi_string,
295 get_value_string(lupd_names, lu->type));
Holger Freyther73487a22008-12-31 18:53:57 +0000296
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200297 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, &lu->mi_len);
Harald Welte7659de12009-12-13 12:39:18 +0100298
Harald Welte24ff6ee2009-12-22 00:41:05 +0100299 switch (lu->type) {
300 case GSM48_LUPD_NORMAL:
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200301 rate_ctr_inc(&conn->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_NORMAL]);
Harald Welte9066b742016-06-19 18:06:02 +0200302 vlr_lu_type = VLR_LU_TYPE_REGULAR;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100303 break;
304 case GSM48_LUPD_IMSI_ATT:
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200305 rate_ctr_inc(&conn->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_ATTACH]);
Harald Welte9066b742016-06-19 18:06:02 +0200306 vlr_lu_type = VLR_LU_TYPE_IMSI_ATTACH;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100307 break;
308 case GSM48_LUPD_PERIODIC:
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200309 rate_ctr_inc(&conn->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_PERIODIC]);
Harald Welte9066b742016-06-19 18:06:02 +0200310 vlr_lu_type = VLR_LU_TYPE_PERIODIC;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100311 break;
312 }
313
Harald Welte9066b742016-06-19 18:06:02 +0200314 /* TODO: 10.5.1.6 MS Classmark for UMTS / Classmark 2 */
315 /* TODO: 10.5.3.14 Aditional update parameters (CS fallback calls) */
316 /* TODO: 10.5.7.8 Device properties */
317 /* TODO: 10.5.1.15 MS network feature support */
Sylvain Munaut2030a2a2010-06-10 13:36:59 +0200318
Harald Welte52b1f982008-12-23 20:25:15 +0000319 switch (mi_type) {
320 case GSM_MI_TYPE_IMSI:
Harald Welte9066b742016-06-19 18:06:02 +0200321 tmsi = GSM_RESERVED_TMSI;
322 imsi = mi_string;
Harald Welte4b634542008-12-27 01:55:51 +0000323 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000324 case GSM_MI_TYPE_TMSI:
Harald Welte9066b742016-06-19 18:06:02 +0200325 tmsi = tmsi_from_string(mi_string);
326 imsi = NULL;
Harald Welte52b1f982008-12-23 20:25:15 +0000327 break;
Alexander Couzensfbd96f52016-08-29 18:40:02 +0200328 default:
Harald Weltea0368542009-06-27 02:58:43 +0200329 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte9066b742016-06-19 18:06:02 +0200330 tmsi = GSM_RESERVED_TMSI;
331 imsi = NULL;
Harald Welte52b1f982008-12-23 20:25:15 +0000332 break;
333 }
334
Harald Welte9066b742016-06-19 18:06:02 +0200335 gsm48_decode_lai(&lu->lai, &old_lai.plmn.mcc,
336 &old_lai.plmn.mnc, &old_lai.lac);
337 new_lai.plmn.mcc = conn->network->country_code;
338 new_lai.plmn.mnc = conn->network->network_code;
Neels Hofmeyrce67be12017-05-08 15:12:20 +0200339 new_lai.lac = conn->lac;
Harald Welte9066b742016-06-19 18:06:02 +0200340 DEBUGP(DMM, "LU/new-LAC: %u/%u\n", old_lai.lac, new_lai.lac);
Harald Welte24516ea2009-07-04 10:18:00 +0200341
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200342 is_utran = (conn->via_ran == RAN_UTRAN_IU);
Harald Welte9066b742016-06-19 18:06:02 +0200343 lu_fsm = vlr_loc_update(conn->conn_fsm,
344 SUBSCR_CONN_E_ACCEPTED,
345 SUBSCR_CONN_E_CN_CLOSE,
346 (void*)&conn_from_lu,
347 net->vlr, conn, vlr_lu_type, tmsi, imsi,
348 &old_lai, &new_lai,
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200349 is_utran || conn->network->authentication_required,
350 is_utran? VLR_CIPH_A5_3
351 : conn->network->a5_encryption,
Harald Welte9066b742016-06-19 18:06:02 +0200352 classmark_is_r99(&conn->classmark),
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200353 is_utran,
Harald Welte9066b742016-06-19 18:06:02 +0200354 net->vlr->cfg.assign_tmsi);
355 if (!lu_fsm) {
356 DEBUGP(DRR, "%s: Can't start LU FSM\n", mi_string);
357 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800358 }
359
Harald Welte9066b742016-06-19 18:06:02 +0200360 /* From vlr_loc_update() we expect an implicit dispatch of
361 * VLR_ULA_E_UPDATE_LA, and thus we expect msc_vlr_subscr_assoc() to
362 * already have been called and completed. Has an error occured? */
Harald Welte255539c2008-12-28 02:26:27 +0000363
Harald Welte9066b742016-06-19 18:06:02 +0200364 if (!conn->vsub || conn->vsub->lu_fsm != lu_fsm) {
365 LOGP(DRR, LOGL_ERROR,
366 "%s: internal error during Location Updating attempt\n",
367 mi_string);
368 return -EIO;
369 }
370
371 return 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000372}
373
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100374/* Turn int into semi-octet representation: 98 => 0x89 */
Harald Welte9066b742016-06-19 18:06:02 +0200375/* FIXME: libosmocore/libosmogsm */
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100376static uint8_t bcdify(uint8_t value)
Harald Welte4bfdfe72009-06-10 23:11:52 +0800377{
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100378 uint8_t ret;
379
380 ret = value / 10;
381 ret |= (value % 10) << 4;
382
383 return ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800384}
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100385
Harald Welte4bfdfe72009-06-10 23:11:52 +0800386
Harald Weltedb253af2008-12-30 17:56:55 +0000387/* Section 9.2.15a */
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800388int gsm48_tx_mm_info(struct gsm_subscriber_connection *conn)
Harald Weltedb253af2008-12-30 17:56:55 +0000389{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100390 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 MM INF");
Harald Weltedb253af2008-12-30 17:56:55 +0000391 struct gsm48_hdr *gh;
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200392 struct gsm_network *net = conn->network;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200393 uint8_t *ptr8;
Daniel Willmanneea93372009-08-13 03:42:07 +0200394 int name_len, name_pad;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100395
Harald Welte4bfdfe72009-06-10 23:11:52 +0800396 time_t cur_t;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100397 struct tm* gmt_time;
398 struct tm* local_time;
399 int tzunits;
Jacob Erlbeckf46e2262014-01-07 15:05:16 +0100400 int dst = 0;
Harald Weltedb253af2008-12-30 17:56:55 +0000401
Harald Weltedb253af2008-12-30 17:56:55 +0000402 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
403 gh->proto_discr = GSM48_PDISC_MM;
404 gh->msg_type = GSM48_MT_MM_INFO;
405
406 if (net->name_long) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200407#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000408 name_len = strlen(net->name_long);
409 /* 10.5.3.5a */
410 ptr8 = msgb_put(msg, 3);
411 ptr8[0] = GSM48_IE_NAME_LONG;
412 ptr8[1] = name_len*2 +1;
413 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
414
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200415 ptr16 = (uint16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000416 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000417 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +0000418
419 /* FIXME: Use Cell Broadcast, not UCS-2, since
420 * UCS-2 is only supported by later revisions of the spec */
Daniel Willmanneea93372009-08-13 03:42:07 +0200421#endif
422 name_len = (strlen(net->name_long)*7)/8;
423 name_pad = (8 - strlen(net->name_long)*7)%8;
424 if (name_pad > 0)
425 name_len++;
426 /* 10.5.3.5a */
427 ptr8 = msgb_put(msg, 3);
428 ptr8[0] = GSM48_IE_NAME_LONG;
429 ptr8[1] = name_len +1;
430 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
431
432 ptr8 = msgb_put(msg, name_len);
Harald Welte5468f762015-01-01 12:41:17 +0100433 gsm_7bit_encode_n(ptr8, name_len, net->name_long, NULL);
Daniel Willmanneea93372009-08-13 03:42:07 +0200434
Harald Weltedb253af2008-12-30 17:56:55 +0000435 }
436
437 if (net->name_short) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200438#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000439 name_len = strlen(net->name_short);
440 /* 10.5.3.5a */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200441 ptr8 = (uint8_t *) msgb_put(msg, 3);
Harald Welte7543eb72009-07-19 17:51:36 +0200442 ptr8[0] = GSM48_IE_NAME_SHORT;
Harald Weltedb253af2008-12-30 17:56:55 +0000443 ptr8[1] = name_len*2 + 1;
444 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
445
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200446 ptr16 = (uint16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000447 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000448 ptr16[i] = htons(net->name_short[i]);
Daniel Willmanneea93372009-08-13 03:42:07 +0200449#endif
450 name_len = (strlen(net->name_short)*7)/8;
451 name_pad = (8 - strlen(net->name_short)*7)%8;
452 if (name_pad > 0)
453 name_len++;
454 /* 10.5.3.5a */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200455 ptr8 = (uint8_t *) msgb_put(msg, 3);
Daniel Willmanneea93372009-08-13 03:42:07 +0200456 ptr8[0] = GSM48_IE_NAME_SHORT;
457 ptr8[1] = name_len +1;
458 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
459
460 ptr8 = msgb_put(msg, name_len);
Harald Welte5468f762015-01-01 12:41:17 +0100461 gsm_7bit_encode_n(ptr8, name_len, net->name_short, NULL);
Daniel Willmanneea93372009-08-13 03:42:07 +0200462
Harald Weltedb253af2008-12-30 17:56:55 +0000463 }
464
Harald Weltedb253af2008-12-30 17:56:55 +0000465 /* Section 10.5.3.9 */
466 cur_t = time(NULL);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100467 gmt_time = gmtime(&cur_t);
468
Harald Weltedb253af2008-12-30 17:56:55 +0000469 ptr8 = msgb_put(msg, 8);
470 ptr8[0] = GSM48_IE_NET_TIME_TZ;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100471 ptr8[1] = bcdify(gmt_time->tm_year % 100);
472 ptr8[2] = bcdify(gmt_time->tm_mon + 1);
473 ptr8[3] = bcdify(gmt_time->tm_mday);
474 ptr8[4] = bcdify(gmt_time->tm_hour);
475 ptr8[5] = bcdify(gmt_time->tm_min);
476 ptr8[6] = bcdify(gmt_time->tm_sec);
477
Neels Hofmeyr73983952016-05-10 13:29:33 +0200478 if (net->tz.override) {
Harald Welte45f91712012-07-08 16:48:11 +0200479 /* Convert tz.hr and tz.mn to units */
Neels Hofmeyr73983952016-05-10 13:29:33 +0200480 if (net->tz.hr < 0) {
481 tzunits = ((net->tz.hr/-1)*4);
482 tzunits = tzunits + (net->tz.mn/15);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100483 ptr8[7] = bcdify(tzunits);
484 /* Set negative time */
485 ptr8[7] |= 0x08;
486 }
487 else {
Neels Hofmeyr73983952016-05-10 13:29:33 +0200488 tzunits = net->tz.hr*4;
489 tzunits = tzunits + (net->tz.mn/15);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100490 ptr8[7] = bcdify(tzunits);
491 }
Jacob Erlbeckf46e2262014-01-07 15:05:16 +0100492 /* Convert DST value */
Neels Hofmeyr73983952016-05-10 13:29:33 +0200493 if (net->tz.dst >= 0 && net->tz.dst <= 2)
494 dst = net->tz.dst;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100495 }
496 else {
497 /* Need to get GSM offset and convert into 15 min units */
498 /* This probably breaks if gmtoff returns a value not evenly divisible by 15? */
499 local_time = localtime(&cur_t);
Harald Welte9c3dc902012-04-08 16:59:24 +0200500#ifdef HAVE_TM_GMTOFF_IN_TM
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100501 tzunits = (local_time->tm_gmtoff/60)/15;
Harald Welte9c3dc902012-04-08 16:59:24 +0200502#else
503#warning find a portable way to obtain the timezone offset
504 tzunits = 0;
505#endif
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100506 if (tzunits < 0) {
507 tzunits = tzunits/-1;
508 ptr8[7] = bcdify(tzunits);
509 /* Flip it to negative */
510 ptr8[7] |= 0x08;
511 }
512 else
513 ptr8[7] = bcdify(tzunits);
Jacob Erlbeckf46e2262014-01-07 15:05:16 +0100514
515 /* Does not support DST +2 */
516 if (local_time->tm_isdst)
517 dst = 1;
518 }
519
520 if (dst) {
521 ptr8 = msgb_put(msg, 3);
522 ptr8[0] = GSM48_IE_NET_DST;
523 ptr8[1] = 1;
524 ptr8[2] = dst;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100525 }
Harald Weltedb253af2008-12-30 17:56:55 +0000526
Daniel Willmanneea93372009-08-13 03:42:07 +0200527 DEBUGP(DMM, "-> MM INFO\n");
528
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800529 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Weltedb253af2008-12-30 17:56:55 +0000530}
531
Neels Hofmeyrd6755152017-01-27 00:25:47 +0100532/*! Send an Authentication Request to MS on the given subscriber connection
533 * according to 3GPP/ETSI TS 24.008, Section 9.2.2.
534 * \param[in] conn Subscriber connection to send on.
535 * \param[in] rand Random challenge token to send, must be 16 bytes long.
536 * \param[in] autn r99: In case of UMTS mutual authentication, AUTN token to
537 * send; must be 16 bytes long, or pass NULL for plain GSM auth.
538 * \param[in] key_seq auth tuple's sequence number.
539 */
540int gsm48_tx_mm_auth_req(struct gsm_subscriber_connection *conn, uint8_t *rand,
541 uint8_t *autn, int key_seq)
Harald Welte7984d5c2009-08-12 22:56:50 +0200542{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100543 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 AUTH REQ");
Harald Welte7984d5c2009-08-12 22:56:50 +0200544 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Sylvain Munaut849f5542009-09-27 11:10:17 +0200545 struct gsm48_auth_req *ar = (struct gsm48_auth_req *) msgb_put(msg, sizeof(*ar));
Harald Welte7984d5c2009-08-12 22:56:50 +0200546
Neels Hofmeyrd2871142017-02-14 17:42:25 +0100547 DEBUGP(DMM, "-> AUTH REQ (rand = %s)\n", osmo_hexdump_nospc(rand, 16));
Neels Hofmeyrd6755152017-01-27 00:25:47 +0100548 if (autn)
Neels Hofmeyrd2871142017-02-14 17:42:25 +0100549 DEBUGP(DMM, " AUTH REQ (autn = %s)\n", osmo_hexdump_nospc(autn, 16));
Harald Welte7984d5c2009-08-12 22:56:50 +0200550
Harald Welte7984d5c2009-08-12 22:56:50 +0200551 gh->proto_discr = GSM48_PDISC_MM;
552 gh->msg_type = GSM48_MT_MM_AUTH_REQ;
553
Sylvain Munautbd55a6d2009-12-24 00:23:46 +0100554 ar->key_seq = key_seq;
Sylvain Munaut849f5542009-09-27 11:10:17 +0200555
Harald Welte7984d5c2009-08-12 22:56:50 +0200556 /* 16 bytes RAND parameters */
Neels Hofmeyrd6755152017-01-27 00:25:47 +0100557 osmo_static_assert(sizeof(ar->rand) == 16, sizeof_auth_req_r99_rand);
Harald Welte7984d5c2009-08-12 22:56:50 +0200558 if (rand)
Sylvain Munaut849f5542009-09-27 11:10:17 +0200559 memcpy(ar->rand, rand, 16);
Harald Welte7984d5c2009-08-12 22:56:50 +0200560
Neels Hofmeyrd6755152017-01-27 00:25:47 +0100561
562 /* 16 bytes AUTN */
563 if (autn)
564 msgb_tlv_put(msg, GSM48_IE_AUTN, 16, autn);
565
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800566 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte7984d5c2009-08-12 22:56:50 +0200567}
568
569/* Section 9.2.1 */
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800570int gsm48_tx_mm_auth_rej(struct gsm_subscriber_connection *conn)
Harald Welte7984d5c2009-08-12 22:56:50 +0200571{
572 DEBUGP(DMM, "-> AUTH REJECT\n");
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800573 return gsm48_tx_simple(conn, GSM48_PDISC_MM, GSM48_MT_MM_AUTH_REJ);
Harald Welte7984d5c2009-08-12 22:56:50 +0200574}
575
Harald Welte9066b742016-06-19 18:06:02 +0200576static int msc_vlr_tx_cm_serv_acc(void *msc_conn_ref);
577static int msc_vlr_tx_cm_serv_rej(void *msc_conn_ref, enum vlr_proc_arq_result result);
578
579static int cm_serv_reuse_conn(struct gsm_subscriber_connection *conn, const uint8_t *mi_lv)
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100580{
Harald Welte9066b742016-06-19 18:06:02 +0200581 uint8_t mi_type;
582 char mi_string[GSM48_MI_SIZE];
583 uint32_t tmsi;
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100584
Harald Welte9066b742016-06-19 18:06:02 +0200585 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi_lv+1, mi_lv[0]);
586 mi_type = mi_lv[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100587
Harald Welte9066b742016-06-19 18:06:02 +0200588 switch (mi_type) {
589 case GSM_MI_TYPE_IMSI:
590 if (vlr_subscr_matches_imsi(conn->vsub, mi_string))
591 goto accept_reuse;
592 break;
593 case GSM_MI_TYPE_TMSI:
594 tmsi = osmo_load32be(mi_lv+2);
595 if (vlr_subscr_matches_tmsi(conn->vsub, tmsi))
596 goto accept_reuse;
597 break;
598 case GSM_MI_TYPE_IMEI:
599 if (vlr_subscr_matches_imei(conn->vsub, mi_string))
600 goto accept_reuse;
601 break;
602 default:
603 break;
604 }
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100605
Harald Welte9066b742016-06-19 18:06:02 +0200606 LOGP(DMM, LOGL_ERROR, "%s: CM Service Request with mismatching mobile identity: %s %s\n",
607 vlr_subscr_name(conn->vsub), gsm48_mi_type_name(mi_type), mi_string);
608 msc_vlr_tx_cm_serv_rej(conn, VLR_PR_ARQ_RES_ILLEGAL_SUBSCR);
609 return -EINVAL;
Sylvain Munautba87f452009-12-24 00:28:46 +0100610
Harald Welte9066b742016-06-19 18:06:02 +0200611accept_reuse:
612 DEBUGP(DMM, "%s: re-using already accepted connection\n",
613 vlr_subscr_name(conn->vsub));
614 conn->received_cm_service_request = true;
615 return conn->network->vlr->ops.tx_cm_serv_acc(conn);
Sylvain Munautba87f452009-12-24 00:28:46 +0100616}
617
Harald Welte4ed0e922009-01-10 03:17:30 +0000618/*
619 * Handle CM Service Requests
620 * a) Verify that the packet is long enough to contain the information
621 * we require otherwsie reject with INCORRECT_MESSAGE
622 * b) Try to parse the TMSI. If we do not have one reject
623 * c) Check that we know the subscriber with the TMSI otherwise reject
624 * with a HLR cause
Neels Hofmeyrce67be12017-05-08 15:12:20 +0200625 * d) Set the subscriber on the conn and accept
Harald Welte9066b742016-06-19 18:06:02 +0200626 *
627 * Keep this function non-static for direct invocation by unit tests.
Harald Welte4ed0e922009-01-10 03:17:30 +0000628 */
Harald Welte9066b742016-06-19 18:06:02 +0200629int gsm48_rx_mm_serv_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4b634542008-12-27 01:55:51 +0000630{
Harald Welte9066b742016-06-19 18:06:02 +0200631 static const enum subscr_conn_from conn_from_cm_service_req =
632 SUBSCR_CONN_FROM_CM_SERVICE_REQ;
633 struct gsm_network *net = conn->network;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200634 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200635 char mi_string[GSM48_MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +0000636
Harald Welteba4cf162009-01-10 01:49:35 +0000637 struct gsm48_hdr *gh = msgb_l3(msg);
638 struct gsm48_service_request *req =
639 (struct gsm48_service_request *)gh->data;
Holger Hans Peter Freyther5d658062010-05-14 08:02:08 +0800640 /* unfortunately in Phase1 the classmark2 length is variable */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200641 uint8_t classmark2_len = gh->data[1];
642 uint8_t *classmark2 = gh->data+2;
643 uint8_t mi_len = *(classmark2 + classmark2_len);
644 uint8_t *mi = (classmark2 + classmark2_len + 1);
Harald Welte9066b742016-06-19 18:06:02 +0200645 struct osmo_location_area_id lai;
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200646 bool is_utran;
Harald Welte9066b742016-06-19 18:06:02 +0200647 int rc;
648
649 lai.plmn.mcc = conn->network->country_code;
650 lai.plmn.mnc = conn->network->network_code;
Neels Hofmeyrce67be12017-05-08 15:12:20 +0200651 lai.lac = conn->lac;
Harald Welteba4cf162009-01-10 01:49:35 +0000652
Harald Weltec9e02182009-05-01 19:07:53 +0000653 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
Harald Welteba4cf162009-01-10 01:49:35 +0000654 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
Harald Weltec9e02182009-05-01 19:07:53 +0000655 DEBUGPC(DMM, "wrong sized message\n");
Neels Hofmeyrce67be12017-05-08 15:12:20 +0200656 return msc_gsm48_tx_mm_serv_rej(conn,
657 GSM48_REJECT_INCORRECT_MESSAGE);
Harald Welteba4cf162009-01-10 01:49:35 +0000658 }
659
660 if (msg->data_len < req->mi_len + 6) {
Harald Weltec9e02182009-05-01 19:07:53 +0000661 DEBUGPC(DMM, "does not fit in packet\n");
Neels Hofmeyrce67be12017-05-08 15:12:20 +0200662 return msc_gsm48_tx_mm_serv_rej(conn,
663 GSM48_REJECT_INCORRECT_MESSAGE);
Harald Welteba4cf162009-01-10 01:49:35 +0000664 }
665
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200666 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
Harald Weltec9e02182009-05-01 19:07:53 +0000667 mi_type = mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200668
669 if (mi_type == GSM_MI_TYPE_IMSI) {
Harald Welteb9845f92015-08-16 18:07:48 +0200670 DEBUGPC(DMM, "serv_type=0x%02x MI(%s)=%s\n",
671 req->cm_service_type, gsm48_mi_type_name(mi_type),
672 mi_string);
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200673 } else if (mi_type == GSM_MI_TYPE_TMSI) {
Harald Welteb9845f92015-08-16 18:07:48 +0200674 DEBUGPC(DMM, "serv_type=0x%02x MI(%s)=%s\n",
675 req->cm_service_type, gsm48_mi_type_name(mi_type),
676 mi_string);
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200677 } else {
678 DEBUGPC(DMM, "mi_type is not expected: %d\n", mi_type);
Neels Hofmeyrce67be12017-05-08 15:12:20 +0200679 return msc_gsm48_tx_mm_serv_rej(conn,
680 GSM48_REJECT_INCORRECT_MESSAGE);
Harald Welteba4cf162009-01-10 01:49:35 +0000681 }
682
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200683 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, (classmark2 + classmark2_len));
Harald Welte9066b742016-06-19 18:06:02 +0200684 memcpy(conn->classmark.classmark2, classmark2, classmark2_len);
685 conn->classmark.classmark2_len = classmark2_len;
686
687 if (conn->conn_fsm) {
688 if (msc_subscr_conn_is_accepted(conn))
689 return cm_serv_reuse_conn(conn, mi-1);
690 LOGP(DMM, LOGL_ERROR, "%s: connection already in use\n",
691 vlr_subscr_name(conn->vsub));
692 msc_vlr_tx_cm_serv_rej(conn, VLR_PR_ARQ_RES_UNKNOWN_ERROR);
693 return -EINVAL;
694 }
695
696 rc = msc_create_conn_fsm(conn, mi_string);
697 if (rc) {
698 msc_vlr_tx_cm_serv_rej(conn, VLR_PR_ARQ_RES_UNKNOWN_ERROR);
699 /* logging already happened in msc_create_conn_fsm() */
700 return rc;
701 }
Harald Welte7659de12009-12-13 12:39:18 +0100702
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200703 is_utran = (conn->via_ran == RAN_UTRAN_IU);
Harald Welte9066b742016-06-19 18:06:02 +0200704 vlr_proc_acc_req(conn->conn_fsm,
705 SUBSCR_CONN_E_ACCEPTED,
706 SUBSCR_CONN_E_CN_CLOSE,
707 (void*)&conn_from_cm_service_req,
708 net->vlr, conn,
709 VLR_PR_ARQ_T_CM_SERV_REQ, mi-1, &lai,
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200710 is_utran || conn->network->authentication_required,
711 is_utran? VLR_CIPH_A5_3
712 : conn->network->a5_encryption,
Harald Welte9066b742016-06-19 18:06:02 +0200713 classmark_is_r99(&conn->classmark),
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200714 is_utran);
Holger Freythereb443982009-06-04 13:58:42 +0000715
Harald Welte9066b742016-06-19 18:06:02 +0200716 return 0;
Harald Welte4b634542008-12-27 01:55:51 +0000717}
718
Holger Hans Peter Freyther153b13b2012-07-10 08:53:27 +0200719static int gsm48_rx_mm_imsi_detach_ind(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte2a139372009-02-22 21:14:55 +0000720{
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200721 struct gsm_network *network = conn->network;
Harald Welte2a139372009-02-22 21:14:55 +0000722 struct gsm48_hdr *gh = msgb_l3(msg);
723 struct gsm48_imsi_detach_ind *idi =
724 (struct gsm48_imsi_detach_ind *) gh->data;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200725 uint8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200726 char mi_string[GSM48_MI_SIZE];
Harald Welte9066b742016-06-19 18:06:02 +0200727 struct vlr_subscr *vsub = NULL;
Harald Welte2a139372009-02-22 21:14:55 +0000728
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200729 gsm48_mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
Harald Welte9066b742016-06-19 18:06:02 +0200730 DEBUGP(DMM, "IMSI DETACH INDICATION: MI(%s)=%s\n",
731 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000732
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +0200733 rate_ctr_inc(&network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_DETACH]);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100734
Harald Welte2a139372009-02-22 21:14:55 +0000735 switch (mi_type) {
736 case GSM_MI_TYPE_TMSI:
Harald Welte9066b742016-06-19 18:06:02 +0200737 vsub = vlr_subscr_find_by_tmsi(network->vlr,
738 tmsi_from_string(mi_string));
Harald Welte2a139372009-02-22 21:14:55 +0000739 break;
740 case GSM_MI_TYPE_IMSI:
Harald Welte9066b742016-06-19 18:06:02 +0200741 vsub = vlr_subscr_find_by_imsi(network->vlr, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000742 break;
743 case GSM_MI_TYPE_IMEI:
744 case GSM_MI_TYPE_IMEISV:
745 /* no sim card... FIXME: what to do ? */
Harald Welte9066b742016-06-19 18:06:02 +0200746 LOGP(DMM, LOGL_ERROR, "MI(%s)=%s: unimplemented mobile identity type\n",
747 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000748 break;
Alexander Couzensfbd96f52016-08-29 18:40:02 +0200749 default:
Harald Welte9066b742016-06-19 18:06:02 +0200750 LOGP(DMM, LOGL_ERROR, "MI(%s)=%s: unknown mobile identity type\n",
751 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000752 break;
753 }
754
Harald Welte9066b742016-06-19 18:06:02 +0200755 /* TODO? We used to remember the subscriber's classmark1 here and
756 * stored it in the old sqlite db, but now we store it in a conn that
757 * will be discarded anyway: */
758 conn->classmark.classmark1 = idi->classmark1;
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200759
Harald Welte9066b742016-06-19 18:06:02 +0200760 if (!vsub) {
761 LOGP(DMM, LOGL_ERROR, "IMSI DETACH for unknown subscriber MI(%s)=%s\n",
762 gsm48_mi_type_name(mi_type), mi_string);
763 } else {
764 LOGP(DMM, LOGL_INFO, "IMSI DETACH for %s\n", vlr_subscr_name(vsub));
765 vlr_subscr_rx_imsi_detach(vsub);
766 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_DETACHED, vsub);
767 vlr_subscr_put(vsub);
768 }
Harald Welte2a139372009-02-22 21:14:55 +0000769
Harald Welte9066b742016-06-19 18:06:02 +0200770 msc_subscr_conn_close(conn, 0);
Harald Welte2a139372009-02-22 21:14:55 +0000771 return 0;
772}
773
Harald Welted2a7f5a2009-06-05 20:08:20 +0000774static int gsm48_rx_mm_status(struct msgb *msg)
775{
776 struct gsm48_hdr *gh = msgb_l3(msg);
777
778 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
779
780 return 0;
781}
782
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100783static int parse_gsm_auth_resp(uint8_t *res, uint8_t *res_len,
784 struct gsm_subscriber_connection *conn,
785 struct msgb *msg)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100786{
787 struct gsm48_hdr *gh = msgb_l3(msg);
788 struct gsm48_auth_resp *ar = (struct gsm48_auth_resp*) gh->data;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100789
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100790 if (msgb_l3len(msg) < sizeof(*gh) + sizeof(*ar)) {
791 LOGP(DMM, LOGL_ERROR,
792 "%s: MM AUTHENTICATION RESPONSE:"
793 " l3 length invalid: %u\n",
Harald Welte9066b742016-06-19 18:06:02 +0200794 vlr_subscr_name(conn->vsub), msgb_l3len(msg));
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100795 return -EINVAL;
796 }
797
798 *res_len = sizeof(ar->sres);
799 memcpy(res, ar->sres, sizeof(ar->sres));
800 return 0;
801}
802
803static int parse_umts_auth_resp(uint8_t *res, uint8_t *res_len,
804 struct gsm_subscriber_connection *conn,
805 struct msgb *msg)
806{
807 struct gsm48_hdr *gh;
808 uint8_t *data;
809 uint8_t iei;
810 uint8_t ie_len;
811 unsigned int data_len;
812
813 /* First parse the GSM part */
814 if (parse_gsm_auth_resp(res, res_len, conn, msg))
815 return -EINVAL;
816 OSMO_ASSERT(*res_len == 4);
817
818 /* Then add the extended res part */
819 gh = msgb_l3(msg);
820 data = gh->data + sizeof(struct gsm48_auth_resp);
821 data_len = msgb_l3len(msg) - (data - (uint8_t*)msgb_l3(msg));
822
823 if (data_len < 3) {
824 LOGP(DMM, LOGL_ERROR,
825 "%s: MM AUTHENTICATION RESPONSE:"
826 " l3 length invalid: %u\n",
Harald Welte9066b742016-06-19 18:06:02 +0200827 vlr_subscr_name(conn->vsub), msgb_l3len(msg));
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100828 return -EINVAL;
829 }
830
831 iei = data[0];
832 ie_len = data[1];
833 if (iei != GSM48_IE_AUTH_RES_EXT) {
834 LOGP(DMM, LOGL_ERROR,
835 "%s: MM R99 AUTHENTICATION RESPONSE:"
836 " expected IEI 0x%02x, got 0x%02x\n",
Harald Welte9066b742016-06-19 18:06:02 +0200837 vlr_subscr_name(conn->vsub),
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100838 GSM48_IE_AUTH_RES_EXT, iei);
839 return -EINVAL;
840 }
841
842 if (ie_len > 12) {
843 LOGP(DMM, LOGL_ERROR,
844 "%s: MM R99 AUTHENTICATION RESPONSE:"
845 " extended Auth Resp IE 0x%02x is too large: %u bytes\n",
Harald Welte9066b742016-06-19 18:06:02 +0200846 vlr_subscr_name(conn->vsub), GSM48_IE_AUTH_RES_EXT, ie_len);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100847 return -EINVAL;
848 }
849
850 *res_len += ie_len;
851 memcpy(res + 4, &data[2], ie_len);
852 return 0;
853}
854
855/* Chapter 9.2.3: Authentication Response */
856static int gsm48_rx_mm_auth_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
857{
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100858 uint8_t res[16];
859 uint8_t res_len;
860 int rc;
861 bool is_r99;
862
Harald Welte9066b742016-06-19 18:06:02 +0200863 if (!conn->vsub) {
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100864 LOGP(DMM, LOGL_ERROR,
865 "MM AUTHENTICATION RESPONSE: invalid: no subscriber\n");
Harald Welte9066b742016-06-19 18:06:02 +0200866 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100867 return -EINVAL;
868 }
869
870 if (msgb_l3len(msg) >
871 sizeof(struct gsm48_hdr) + sizeof(struct gsm48_auth_resp)) {
872 rc = parse_umts_auth_resp(res, &res_len, conn, msg);
873 is_r99 = true;
874 } else {
875 rc = parse_gsm_auth_resp(res, &res_len, conn, msg);
876 is_r99 = false;
877 }
878
879 if (rc) {
Harald Welte9066b742016-06-19 18:06:02 +0200880 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100881 return -EINVAL;
882 }
883
884 DEBUGP(DMM, "%s: MM %s AUTHENTICATION RESPONSE (%s = %s)\n",
Harald Welte9066b742016-06-19 18:06:02 +0200885 vlr_subscr_name(conn->vsub),
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100886 is_r99 ? "R99" : "GSM", is_r99 ? "res" : "sres",
887 osmo_hexdump_nospc(res, res_len));
888
Harald Welte9066b742016-06-19 18:06:02 +0200889 return vlr_subscr_rx_auth_resp(conn->vsub, is_r99,
890 conn->via_ran == RAN_UTRAN_IU,
891 res, res_len);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100892}
893
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100894static int gsm48_rx_mm_auth_fail(struct gsm_subscriber_connection *conn, struct msgb *msg)
895{
896 struct gsm48_hdr *gh = msgb_l3(msg);
897 uint8_t cause;
898 uint8_t auts_tag;
899 uint8_t auts_len;
900 uint8_t *auts;
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100901
Harald Welte9066b742016-06-19 18:06:02 +0200902 if (!conn->vsub) {
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100903 LOGP(DMM, LOGL_ERROR,
904 "MM R99 AUTHENTICATION FAILURE: invalid: no subscriber\n");
Harald Welte9066b742016-06-19 18:06:02 +0200905 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100906 return -EINVAL;
907 }
908
909 if (msgb_l3len(msg) < sizeof(*gh) + 1) {
910 LOGP(DMM, LOGL_ERROR,
911 "%s: MM R99 AUTHENTICATION FAILURE:"
912 " l3 length invalid: %u\n",
Harald Welte9066b742016-06-19 18:06:02 +0200913 vlr_subscr_name(conn->vsub), msgb_l3len(msg));
914 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100915 return -EINVAL;
916 }
917
918 cause = gh->data[0];
919
920 if (cause != GSM48_REJECT_SYNCH_FAILURE) {
921 LOGP(DMM, LOGL_INFO,
922 "%s: MM R99 AUTHENTICATION FAILURE: cause 0x%0x\n",
Harald Welte9066b742016-06-19 18:06:02 +0200923 vlr_subscr_name(conn->vsub), cause);
924 vlr_subscr_rx_auth_fail(conn->vsub, NULL);
925 return 0;
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100926 }
927
928 /* This is a Synch Failure procedure, which should pass an AUTS to
929 * resynchronize the sequence nr with the HLR. Expecting exactly one
930 * TLV with 14 bytes of AUTS. */
931
932 if (msgb_l3len(msg) < sizeof(*gh) + 1 + 2) {
933 LOGP(DMM, LOGL_INFO,
934 "%s: MM R99 AUTHENTICATION FAILURE:"
935 " invalid Synch Failure: missing AUTS IE\n",
Harald Welte9066b742016-06-19 18:06:02 +0200936 vlr_subscr_name(conn->vsub));
937 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100938 return -EINVAL;
939 }
940
941 auts_tag = gh->data[1];
942 auts_len = gh->data[2];
943 auts = &gh->data[3];
944
945 if (auts_tag != GSM48_IE_AUTS
946 || auts_len != 14) {
947 LOGP(DMM, LOGL_INFO,
948 "%s: MM R99 AUTHENTICATION FAILURE:"
949 " invalid Synch Failure:"
950 " expected AUTS IE 0x%02x of 14 bytes,"
951 " got IE 0x%02x of %u bytes\n",
Harald Welte9066b742016-06-19 18:06:02 +0200952 vlr_subscr_name(conn->vsub),
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100953 GSM48_IE_AUTS, auts_tag, auts_len);
Harald Welte9066b742016-06-19 18:06:02 +0200954 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100955 return -EINVAL;
956 }
957
958 if (msgb_l3len(msg) < sizeof(*gh) + 1 + 2 + auts_len) {
959 LOGP(DMM, LOGL_INFO,
960 "%s: MM R99 AUTHENTICATION FAILURE:"
961 " invalid Synch Failure msg: message truncated (%u)\n",
Harald Welte9066b742016-06-19 18:06:02 +0200962 vlr_subscr_name(conn->vsub), msgb_l3len(msg));
963 msc_subscr_conn_close(conn, GSM_CAUSE_AUTH_FAILED);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100964 return -EINVAL;
965 }
966
967 /* We have an AUTS IE with exactly 14 bytes of AUTS and the msgb is
968 * large enough. */
969
970 DEBUGP(DMM, "%s: MM R99 AUTHENTICATION SYNCH (AUTS = %s)\n",
Harald Welte9066b742016-06-19 18:06:02 +0200971 vlr_subscr_name(conn->vsub), osmo_hexdump_nospc(auts, 14));
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100972
Harald Welte9066b742016-06-19 18:06:02 +0200973 return vlr_subscr_rx_auth_fail(conn->vsub, auts);
974}
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100975
Harald Welte9066b742016-06-19 18:06:02 +0200976static int gsm48_rx_mm_tmsi_reall_compl(struct gsm_subscriber_connection *conn)
977{
978 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
979 vlr_subscr_name(conn->vsub));
980 if (!conn->vsub) {
981 LOGP(DMM, LOGL_ERROR,
982 "Rx MM TMSI Reallocation Complete: invalid: no subscriber\n");
983 return -EINVAL;
984 }
985 return vlr_subscr_rx_tmsi_reall_compl(conn->vsub);
Neels Hofmeyr22a735b2017-02-03 01:22:40 +0100986}
987
Harald Weltebf5e8df2009-02-03 12:59:45 +0000988/* Receive a GSM 04.08 Mobility Management (MM) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800989static int gsm0408_rcv_mm(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000990{
991 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800992 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000993
Neels Hofmeyr531734a2016-03-14 16:13:24 +0100994 switch (gsm48_hdr_msg_type(gh)) {
Harald Welte52b1f982008-12-23 20:25:15 +0000995 case GSM48_MT_MM_LOC_UPD_REQUEST:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800996 rc = mm_rx_loc_upd_req(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000997 break;
998 case GSM48_MT_MM_ID_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800999 rc = mm_rx_id_resp(conn, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001000 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001001 case GSM48_MT_MM_CM_SERV_REQ:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001002 rc = gsm48_rx_mm_serv_req(conn, msg);
Harald Welte4b634542008-12-27 01:55:51 +00001003 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001004 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +00001005 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001006 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001007 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte9066b742016-06-19 18:06:02 +02001008 rc = gsm48_rx_mm_tmsi_reall_compl(conn);
Harald Welte69b2af22009-01-06 19:47:00 +00001009 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001010 case GSM48_MT_MM_IMSI_DETACH_IND:
Holger Hans Peter Freyther153b13b2012-07-10 08:53:27 +02001011 rc = gsm48_rx_mm_imsi_detach_ind(conn, msg);
Harald Welte2a139372009-02-22 21:14:55 +00001012 break;
1013 case GSM48_MT_MM_CM_REEST_REQ:
1014 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
1015 break;
1016 case GSM48_MT_MM_AUTH_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001017 rc = gsm48_rx_mm_auth_resp(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001018 break;
Neels Hofmeyr22a735b2017-02-03 01:22:40 +01001019 case GSM48_MT_MM_AUTH_FAIL:
1020 rc = gsm48_rx_mm_auth_fail(conn, msg);
1021 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001022 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01001023 LOGP(DMM, LOGL_NOTICE, "Unknown GSM 04.08 MM msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00001024 gh->msg_type);
1025 break;
1026 }
1027
1028 return rc;
1029}
Harald Weltebf5e8df2009-02-03 12:59:45 +00001030
Harald Welte9066b742016-06-19 18:06:02 +02001031static uint8_t *gsm48_cm2_get_mi(uint8_t *classmark2_lv, unsigned int tot_len)
1032{
1033 /* Check the size for the classmark */
1034 if (tot_len < 1 + *classmark2_lv)
1035 return NULL;
1036
1037 uint8_t *mi_lv = classmark2_lv + *classmark2_lv + 1;
1038 if (tot_len < 2 + *classmark2_lv + mi_lv[0])
1039 return NULL;
1040
1041 return mi_lv;
1042}
1043
Harald Welte2d35ae62009-02-06 12:02:13 +00001044/* Receive a PAGING RESPONSE message from the MS */
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001045static int gsm48_rx_rr_pag_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte2d35ae62009-02-06 12:02:13 +00001046{
Harald Welte9066b742016-06-19 18:06:02 +02001047 static const enum subscr_conn_from conn_from_paging_resp =
1048 SUBSCR_CONN_FROM_PAGING_RESP;
1049 struct gsm_network *net = conn->network;
Harald Welte2d35ae62009-02-06 12:02:13 +00001050 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001051 struct gsm48_pag_resp *resp;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001052 uint8_t *classmark2_lv = gh->data + 1;
Harald Welte9066b742016-06-19 18:06:02 +02001053 uint8_t *mi_lv;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001054 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001055 char mi_string[GSM48_MI_SIZE];
Harald Welte2d35ae62009-02-06 12:02:13 +00001056 int rc = 0;
Harald Welte9066b742016-06-19 18:06:02 +02001057 struct osmo_location_area_id lai;
Neels Hofmeyr2188a772016-05-20 21:59:55 +02001058 bool is_utran;
Harald Welte9066b742016-06-19 18:06:02 +02001059
1060 lai.plmn.mcc = conn->network->country_code;
1061 lai.plmn.mnc = conn->network->network_code;
Neels Hofmeyrce67be12017-05-08 15:12:20 +02001062 lai.lac = conn->lac;
Harald Welte2d35ae62009-02-06 12:02:13 +00001063
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001064 resp = (struct gsm48_pag_resp *) &gh->data[0];
1065 gsm48_paging_extract_mi(resp, msgb_l3len(msg) - sizeof(*gh),
1066 mi_string, &mi_type);
Harald Welteb9845f92015-08-16 18:07:48 +02001067 DEBUGP(DRR, "PAGING RESPONSE: MI(%s)=%s\n",
1068 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte3ac7f102009-08-10 10:12:45 +02001069
Harald Welte9066b742016-06-19 18:06:02 +02001070 mi_lv = gsm48_cm2_get_mi(classmark2_lv, msgb_l3len(msg) - sizeof(*gh));
1071 if (!mi_lv) {
1072 /* FIXME */
1073 return -1;
Harald Weltefe18d8f2009-02-22 21:14:24 +00001074 }
Harald Welte2d35ae62009-02-06 12:02:13 +00001075
Harald Welte9066b742016-06-19 18:06:02 +02001076 rc = msc_create_conn_fsm(conn, mi_string);
1077 if (rc)
1078 /* logging already happened in msc_create_conn_fsm() */
1079 return rc;
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001080
Harald Welte9066b742016-06-19 18:06:02 +02001081 memcpy(conn->classmark.classmark2, classmark2_lv+1, *classmark2_lv);
1082 conn->classmark.classmark2_len = *classmark2_lv;
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001083
Neels Hofmeyr2188a772016-05-20 21:59:55 +02001084 is_utran = (conn->via_ran == RAN_UTRAN_IU);
Harald Welte9066b742016-06-19 18:06:02 +02001085 vlr_proc_acc_req(conn->conn_fsm,
1086 SUBSCR_CONN_E_ACCEPTED,
1087 SUBSCR_CONN_E_CN_CLOSE,
1088 (void*)&conn_from_paging_resp,
1089 net->vlr, conn,
1090 VLR_PR_ARQ_T_PAGING_RESP, mi_lv, &lai,
Neels Hofmeyr2188a772016-05-20 21:59:55 +02001091 is_utran || conn->network->authentication_required,
1092 is_utran? VLR_CIPH_A5_3
1093 : conn->network->a5_encryption,
Harald Welte9066b742016-06-19 18:06:02 +02001094 classmark_is_r99(&conn->classmark),
Neels Hofmeyr2188a772016-05-20 21:59:55 +02001095 is_utran);
Holger Freyther053e09d2009-02-14 22:51:06 +00001096
Neels Hofmeyr2188a772016-05-20 21:59:55 +02001097 return 0;
Harald Welte2d35ae62009-02-06 12:02:13 +00001098}
1099
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001100static int gsm48_rx_rr_app_info(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001101{
1102 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001103 uint8_t apdu_id_flags;
1104 uint8_t apdu_len;
1105 uint8_t *apdu_data;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001106
1107 apdu_id_flags = gh->data[0];
1108 apdu_len = gh->data[1];
1109 apdu_data = gh->data+2;
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001110
Max8dc8f232017-02-09 19:13:02 +01001111 DEBUGP(DRR, "RX APPLICATION INFO id/flags=0x%02x apdu_len=%u apdu=%s\n",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02001112 apdu_id_flags, apdu_len, osmo_hexdump(apdu_data, apdu_len));
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001113
Harald Welte9066b742016-06-19 18:06:02 +02001114 /* we're not using the app info blob anywhere, so ignore. */
1115#if 0
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001116 return db_apdu_blob_store(conn->subscr, apdu_id_flags, apdu_len, apdu_data);
Harald Welte9066b742016-06-19 18:06:02 +02001117#else
1118 return 0;
1119#endif
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001120}
1121
Harald Weltebf5e8df2009-02-03 12:59:45 +00001122/* Receive a GSM 04.08 Radio Resource (RR) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001123static int gsm0408_rcv_rr(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001124{
1125 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001126 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001127
1128 switch (gh->msg_type) {
Harald Welte52b1f982008-12-23 20:25:15 +00001129 case GSM48_MT_RR_PAG_RESP:
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001130 rc = gsm48_rx_rr_pag_resp(conn, msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001131 break;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001132 case GSM48_MT_RR_APP_INFO:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001133 rc = gsm48_rx_rr_app_info(conn, msg);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001134 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001135 default:
Philippd37981e2016-10-10 15:11:41 +02001136 LOGP(DRR, LOGL_NOTICE, "MSC: Unimplemented %s GSM 04.08 RR "
1137 "message\n", gsm48_rr_msg_name(gh->msg_type));
Harald Welte52b1f982008-12-23 20:25:15 +00001138 break;
1139 }
1140
Harald Welte2d35ae62009-02-06 12:02:13 +00001141 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001142}
1143
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001144int gsm48_send_rr_app_info(struct gsm_subscriber_connection *conn, uint8_t apdu_id,
1145 uint8_t apdu_len, const uint8_t *apdu)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001146{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001147 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 APP INF");
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001148 struct gsm48_hdr *gh;
1149
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001150 DEBUGP(DRR, "TX APPLICATION INFO id=0x%02x, len=%u\n",
1151 apdu_id, apdu_len);
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001152
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001153 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2 + apdu_len);
1154 gh->proto_discr = GSM48_PDISC_RR;
1155 gh->msg_type = GSM48_MT_RR_APP_INFO;
1156 gh->data[0] = apdu_id;
1157 gh->data[1] = apdu_len;
1158 memcpy(gh->data+2, apdu, apdu_len);
1159
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +08001160 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001161}
1162
Alexander Couzens92f552f2016-08-23 07:32:27 +02001163/* FIXME: this count_statistics is a state machine behaviour. we should convert
1164 * the complete call control into a state machine. Afterwards we can move this
1165 * code into state transitions.
1166 */
1167static void count_statistics(struct gsm_trans *trans, int new_state)
1168{
1169 int old_state = trans->cc.state;
1170 struct rate_ctr_group *msc = trans->net->msc_ctrs;
1171
1172 if (old_state == new_state)
1173 return;
1174
1175 /* state incoming */
1176 switch (new_state) {
1177 case GSM_CSTATE_ACTIVE:
1178 osmo_counter_inc(trans->net->active_calls);
1179 rate_ctr_inc(&msc->ctr[MSC_CTR_CALL_ACTIVE]);
1180 break;
1181 }
1182
1183 /* state outgoing */
1184 switch (old_state) {
1185 case GSM_CSTATE_ACTIVE:
1186 osmo_counter_dec(trans->net->active_calls);
1187 if (new_state == GSM_CSTATE_DISCONNECT_REQ ||
1188 new_state == GSM_CSTATE_DISCONNECT_IND)
1189 rate_ctr_inc(&msc->ctr[MSC_CTR_CALL_COMPLETE]);
1190 else
1191 rate_ctr_inc(&msc->ctr[MSC_CTR_CALL_INCOMPLETE]);
1192 break;
1193 }
1194}
1195
Harald Welte4bc90a12008-12-27 16:32:52 +00001196/* Call Control */
1197
Harald Welte7584aea2009-02-11 11:44:12 +00001198/* The entire call control code is written in accordance with Figure 7.10c
1199 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1200 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1201 * it for voice */
1202
Harald Welte4bfdfe72009-06-10 23:11:52 +08001203static void new_cc_state(struct gsm_trans *trans, int state)
1204{
1205 if (state > 31 || state < 0)
1206 return;
1207
1208 DEBUGP(DCC, "new state %s -> %s\n",
Harald Weltee95daf12010-03-25 12:13:02 +08001209 gsm48_cc_state_name(trans->cc.state),
1210 gsm48_cc_state_name(state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001211
Alexander Couzens92f552f2016-08-23 07:32:27 +02001212 count_statistics(trans, state);
Harald Weltedcaf5652009-07-23 18:56:43 +02001213 trans->cc.state = state;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001214}
1215
1216static int gsm48_cc_tx_status(struct gsm_trans *trans, void *arg)
Harald Welte4bc90a12008-12-27 16:32:52 +00001217{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001218 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC STATUS");
Harald Welte4bc90a12008-12-27 16:32:52 +00001219 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001220 uint8_t *cause, *call_state;
Harald Welte4bc90a12008-12-27 16:32:52 +00001221
Harald Welte4bc90a12008-12-27 16:32:52 +00001222 gh->msg_type = GSM48_MT_CC_STATUS;
1223
1224 cause = msgb_put(msg, 3);
1225 cause[0] = 2;
1226 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1227 cause[2] = 0x80 | 30; /* response to status inquiry */
1228
1229 call_state = msgb_put(msg, 1);
1230 call_state[0] = 0xc0 | 0x00;
1231
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001232 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bc90a12008-12-27 16:32:52 +00001233}
1234
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001235static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001236 uint8_t pdisc, uint8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001237{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001238 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 TX SIMPLE");
Harald Welte4bc90a12008-12-27 16:32:52 +00001239 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1240
Harald Welte6f4b7532008-12-29 00:39:37 +00001241 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001242 gh->msg_type = msg_type;
1243
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001244 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte4bc90a12008-12-27 16:32:52 +00001245}
1246
Harald Welte4bfdfe72009-06-10 23:11:52 +08001247static void gsm48_stop_cc_timer(struct gsm_trans *trans)
1248{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001249 if (osmo_timer_pending(&trans->cc.timer)) {
Harald Weltedcaf5652009-07-23 18:56:43 +02001250 DEBUGP(DCC, "stopping pending timer T%x\n", trans->cc.Tcurrent);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001251 osmo_timer_del(&trans->cc.timer);
Harald Weltedcaf5652009-07-23 18:56:43 +02001252 trans->cc.Tcurrent = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001253 }
1254}
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001255
Harald Welte4bfdfe72009-06-10 23:11:52 +08001256static int mncc_recvmsg(struct gsm_network *net, struct gsm_trans *trans,
1257 int msg_type, struct gsm_mncc *mncc)
1258{
1259 struct msgb *msg;
Harald Welte04dc88f2010-12-22 21:45:05 +01001260 unsigned char *data;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001261
Neels Hofmeyrce67be12017-05-08 15:12:20 +02001262#if BEFORE_MSCSPLIT
1263 /* Re-enable this log output once we can obtain this information via
1264 * A-interface, see OS#2391. */
Harald Welte4bfdfe72009-06-10 23:11:52 +08001265 if (trans)
Harald Welteb854b292010-12-26 19:06:37 +01001266 if (trans->conn && trans->conn->lchan)
Harald Welte6f5aee02009-07-23 21:21:14 +02001267 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08001268 "Sending '%s' to MNCC.\n",
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001269 trans->conn->lchan->ts->trx->bts->nr,
1270 trans->conn->lchan->ts->trx->nr,
1271 trans->conn->lchan->ts->nr, trans->transaction_id,
Harald Welte9066b742016-06-19 18:06:02 +02001272 vlr_subscr_msisdn_or_name(trans->vsub),
Harald Welte4bfdfe72009-06-10 23:11:52 +08001273 get_mncc_name(msg_type));
1274 else
1275 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
1276 "Sending '%s' to MNCC.\n",
Harald Welte9066b742016-06-19 18:06:02 +02001277 vlr_subscr_msisdn_or_name(trans->vsub),
Harald Welte4bfdfe72009-06-10 23:11:52 +08001278 get_mncc_name(msg_type));
1279 else
1280 DEBUGP(DCC, "(bts - trx - ts - ti -- sub -) "
1281 "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
Neels Hofmeyrce67be12017-05-08 15:12:20 +02001282#else
1283 DEBUGP(DCC, "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
1284#endif
Harald Welte4bfdfe72009-06-10 23:11:52 +08001285
1286 mncc->msg_type = msg_type;
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001287
Harald Welte966636f2009-06-26 19:39:35 +02001288 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001289 if (!msg)
1290 return -ENOMEM;
Harald Welte04dc88f2010-12-22 21:45:05 +01001291
1292 data = msgb_put(msg, sizeof(struct gsm_mncc));
1293 memcpy(data, mncc, sizeof(struct gsm_mncc));
1294
Harald Welte54209c22010-12-22 23:43:29 +01001295 cc_tx_to_mncc(net, msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001296
1297 return 0;
1298}
1299
1300int mncc_release_ind(struct gsm_network *net, struct gsm_trans *trans,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001301 uint32_t callref, int location, int value)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001302{
1303 struct gsm_mncc rel;
1304
Harald Welte92f70c52009-06-12 01:54:08 +08001305 memset(&rel, 0, sizeof(rel));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001306 rel.callref = callref;
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001307 mncc_set_cause(&rel, location, value);
Andreas Eversberg15907272013-01-25 08:38:29 +01001308 if (trans && trans->cc.state == GSM_CSTATE_RELEASE_REQ)
1309 return mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001310 return mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
1311}
1312
Harald Weltedcaf5652009-07-23 18:56:43 +02001313/* Call Control Specific transaction release.
1314 * gets called by trans_free, DO NOT CALL YOURSELF! */
1315void _gsm48_cc_trans_free(struct gsm_trans *trans)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001316{
Harald Welte4bfdfe72009-06-10 23:11:52 +08001317 gsm48_stop_cc_timer(trans);
1318
1319 /* send release to L4, if callref still exists */
1320 if (trans->callref) {
1321 /* Ressource unavailable */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001322 mncc_release_ind(trans->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001323 GSM48_CAUSE_LOC_PRN_S_LU,
1324 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001325 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001326 if (trans->cc.state != GSM_CSTATE_NULL)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001327 new_cc_state(trans, GSM_CSTATE_NULL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001328}
1329
1330static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001331
Harald Welte09e38af2009-02-16 22:52:23 +00001332/* call-back from paging the B-end of the connection */
1333static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001334 struct msgb *msg, void *_conn, void *_transt)
Harald Welte09e38af2009-02-16 22:52:23 +00001335{
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001336 struct gsm_subscriber_connection *conn = _conn;
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001337 struct gsm_trans *transt = _transt;
Harald Weltec05677b2009-06-26 20:17:06 +02001338
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001339 OSMO_ASSERT(!transt->conn);
Harald Welte7584aea2009-02-11 11:44:12 +00001340
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001341 switch (event) {
1342 case GSM_PAGING_SUCCEEDED:
Harald Welte9066b742016-06-19 18:06:02 +02001343 DEBUGP(DCC, "Paging subscr %s succeeded!\n",
1344 vlr_subscr_msisdn_or_name(transt->vsub));
Ivan Kluchnikov5fd0c642015-05-26 13:36:58 +03001345 OSMO_ASSERT(conn);
Neels Hofmeyrce67be12017-05-08 15:12:20 +02001346 /* Assign conn */
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001347 transt->conn = conn;
1348 /* send SETUP request to called party */
1349 gsm48_cc_tx_setup(transt, &transt->cc.msg);
1350 break;
1351 case GSM_PAGING_EXPIRED:
1352 case GSM_PAGING_BUSY:
1353 DEBUGP(DCC, "Paging subscr %s expired!\n",
Harald Welte9066b742016-06-19 18:06:02 +02001354 vlr_subscr_msisdn_or_name(transt->vsub));
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001355 /* Temporarily out of order */
1356 mncc_release_ind(transt->net, transt,
1357 transt->callref,
1358 GSM48_CAUSE_LOC_PRN_S_LU,
1359 GSM48_CC_CAUSE_DEST_OOO);
1360 transt->callref = 0;
1361 transt->paging_request = NULL;
1362 trans_free(transt);
1363 break;
1364 default:
1365 LOGP(DCC, LOGL_ERROR, "Unknown paging event %d\n", event);
1366 break;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001367 }
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001368
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001369 transt->paging_request = NULL;
Harald Welte09e38af2009-02-16 22:52:23 +00001370 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001371}
Harald Welte7584aea2009-02-11 11:44:12 +00001372
Harald Welte4bfdfe72009-06-10 23:11:52 +08001373/* bridge channels of two transactions */
Harald Welte53d51f52015-12-03 14:59:04 +01001374static int tch_bridge(struct gsm_network *net, struct gsm_mncc_bridge *bridge)
Harald Welte7ccf7782009-02-17 01:43:01 +00001375{
Harald Welte53d51f52015-12-03 14:59:04 +01001376 struct gsm_trans *trans1 = trans_find_by_callref(net, bridge->callref[0]);
1377 struct gsm_trans *trans2 = trans_find_by_callref(net, bridge->callref[1]);
Harald Welte7ccf7782009-02-17 01:43:01 +00001378
Harald Welte4bfdfe72009-06-10 23:11:52 +08001379 if (!trans1 || !trans2)
Harald Welte7ccf7782009-02-17 01:43:01 +00001380 return -EIO;
1381
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001382 if (!trans1->conn || !trans2->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001383 return -EIO;
1384
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01001385 /* Which subscriber do we want to track trans1 or trans2? */
Harald Welte9066b742016-06-19 18:06:02 +02001386 log_set_context(LOG_CTX_VLR_SUBSCR, trans1->vsub);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01001387
Neels Hofmeyr2188a772016-05-20 21:59:55 +02001388 return msc_call_bridge(trans1, trans2);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001389}
1390
Harald Welte4bfdfe72009-06-10 23:11:52 +08001391static int gsm48_cc_rx_status_enq(struct gsm_trans *trans, struct msgb *msg)
1392{
1393 DEBUGP(DCC, "-> STATUS ENQ\n");
1394 return gsm48_cc_tx_status(trans, msg);
1395}
1396
1397static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg);
1398static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg);
1399
1400static void gsm48_cc_timeout(void *arg)
1401{
1402 struct gsm_trans *trans = arg;
1403 int disconnect = 0, release = 0;
Harald Weltec66b71c2009-06-11 14:23:20 +08001404 int mo_cause = GSM48_CC_CAUSE_RECOVERY_TIMER;
1405 int mo_location = GSM48_CAUSE_LOC_USER;
1406 int l4_cause = GSM48_CC_CAUSE_NORMAL_UNSPEC;
1407 int l4_location = GSM48_CAUSE_LOC_PRN_S_LU;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001408 struct gsm_mncc mo_rel, l4_rel;
1409
1410 memset(&mo_rel, 0, sizeof(struct gsm_mncc));
1411 mo_rel.callref = trans->callref;
1412 memset(&l4_rel, 0, sizeof(struct gsm_mncc));
1413 l4_rel.callref = trans->callref;
1414
Harald Weltedcaf5652009-07-23 18:56:43 +02001415 switch(trans->cc.Tcurrent) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001416 case 0x303:
1417 release = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001418 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001419 break;
1420 case 0x310:
1421 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001422 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001423 break;
1424 case 0x313:
1425 disconnect = 1;
1426 /* unknown, did not find it in the specs */
1427 break;
1428 case 0x301:
1429 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001430 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001431 break;
1432 case 0x308:
Harald Weltedcaf5652009-07-23 18:56:43 +02001433 if (!trans->cc.T308_second) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001434 /* restart T308 a second time */
Harald Weltedcaf5652009-07-23 18:56:43 +02001435 gsm48_cc_tx_release(trans, &trans->cc.msg);
1436 trans->cc.T308_second = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001437 break; /* stay in release state */
1438 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001439 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001440 return;
1441// release = 1;
1442// l4_cause = 14;
1443// break;
1444 case 0x306:
1445 release = 1;
Harald Weltedcaf5652009-07-23 18:56:43 +02001446 mo_cause = trans->cc.msg.cause.value;
1447 mo_location = trans->cc.msg.cause.location;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001448 break;
1449 case 0x323:
1450 disconnect = 1;
1451 break;
1452 default:
1453 release = 1;
1454 }
1455
1456 if (release && trans->callref) {
1457 /* process release towards layer 4 */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001458 mncc_release_ind(trans->net, trans, trans->callref,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001459 l4_location, l4_cause);
1460 trans->callref = 0;
1461 }
1462
1463 if (disconnect && trans->callref) {
1464 /* process disconnect towards layer 4 */
1465 mncc_set_cause(&l4_rel, l4_location, l4_cause);
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001466 mncc_recvmsg(trans->net, trans, MNCC_DISC_IND, &l4_rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001467 }
1468
1469 /* process disconnect towards mobile station */
1470 if (disconnect || release) {
1471 mncc_set_cause(&mo_rel, mo_location, mo_cause);
Harald Weltedcaf5652009-07-23 18:56:43 +02001472 mo_rel.cause.diag[0] = ((trans->cc.Tcurrent & 0xf00) >> 8) + '0';
1473 mo_rel.cause.diag[1] = ((trans->cc.Tcurrent & 0x0f0) >> 4) + '0';
1474 mo_rel.cause.diag[2] = (trans->cc.Tcurrent & 0x00f) + '0';
Harald Welte4bfdfe72009-06-10 23:11:52 +08001475 mo_rel.cause.diag_len = 3;
1476
1477 if (disconnect)
1478 gsm48_cc_tx_disconnect(trans, &mo_rel);
1479 if (release)
1480 gsm48_cc_tx_release(trans, &mo_rel);
1481 }
1482
1483}
1484
Max3ffce192016-04-25 15:22:00 +02001485/* disconnect both calls from the bridge */
1486static inline void disconnect_bridge(struct gsm_network *net,
1487 struct gsm_mncc_bridge *bridge, int err)
1488{
1489 struct gsm_trans *trans0 = trans_find_by_callref(net, bridge->callref[0]);
1490 struct gsm_trans *trans1 = trans_find_by_callref(net, bridge->callref[1]);
1491 struct gsm_mncc mx_rel;
1492 if (!trans0 || !trans1)
1493 return;
1494
1495 DEBUGP(DCC, "Failed to bridge TCH for calls %x <-> %x :: %s \n",
1496 trans0->callref, trans1->callref, strerror(err));
1497
1498 memset(&mx_rel, 0, sizeof(struct gsm_mncc));
1499 mncc_set_cause(&mx_rel, GSM48_CAUSE_LOC_INN_NET,
1500 GSM48_CC_CAUSE_CHAN_UNACCEPT);
1501
1502 mx_rel.callref = trans0->callref;
1503 gsm48_cc_tx_disconnect(trans0, &mx_rel);
1504
1505 mx_rel.callref = trans1->callref;
1506 gsm48_cc_tx_disconnect(trans1, &mx_rel);
1507}
1508
Harald Welte4bfdfe72009-06-10 23:11:52 +08001509static void gsm48_start_cc_timer(struct gsm_trans *trans, int current,
1510 int sec, int micro)
1511{
1512 DEBUGP(DCC, "starting timer T%x with %d seconds\n", current, sec);
Pablo Neira Ayuso51215762017-05-08 20:57:52 +02001513 osmo_timer_setup(&trans->cc.timer, gsm48_cc_timeout, trans);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001514 osmo_timer_schedule(&trans->cc.timer, sec, micro);
Harald Weltedcaf5652009-07-23 18:56:43 +02001515 trans->cc.Tcurrent = current;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001516}
1517
1518static int gsm48_cc_rx_setup(struct gsm_trans *trans, struct msgb *msg)
1519{
1520 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyr531734a2016-03-14 16:13:24 +01001521 uint8_t msg_type = gsm48_hdr_msg_type(gh);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001522 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1523 struct tlv_parsed tp;
1524 struct gsm_mncc setup;
1525
1526 memset(&setup, 0, sizeof(struct gsm_mncc));
1527 setup.callref = trans->callref;
Neels Hofmeyrce67be12017-05-08 15:12:20 +02001528
Harald Welte474d19f2010-03-02 23:18:30 +01001529 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001530 /* emergency setup is identified by msg_type */
1531 if (msg_type == GSM48_MT_CC_EMERG_SETUP)
1532 setup.emergency = 1;
1533
1534 /* use subscriber as calling party number */
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02001535 setup.fields |= MNCC_F_CALLING;
Harald Welte9066b742016-06-19 18:06:02 +02001536 osmo_strlcpy(setup.calling.number, trans->vsub->msisdn, sizeof(setup.calling.number));
1537 osmo_strlcpy(setup.imsi, trans->vsub->imsi, sizeof(setup.imsi));
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02001538
Harald Welte4bfdfe72009-06-10 23:11:52 +08001539 /* bearer capability */
1540 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
1541 setup.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001542 gsm48_decode_bearer_cap(&setup.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001543 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
1544 }
1545 /* facility */
1546 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1547 setup.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001548 gsm48_decode_facility(&setup.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001549 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1550 }
1551 /* called party bcd number */
1552 if (TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD)) {
1553 setup.fields |= MNCC_F_CALLED;
Harald Welte55c8f352010-03-07 23:40:35 +01001554 gsm48_decode_called(&setup.called,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001555 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
1556 }
1557 /* user-user */
1558 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
1559 setup.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01001560 gsm48_decode_useruser(&setup.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001561 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
1562 }
1563 /* ss-version */
1564 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1565 setup.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001566 gsm48_decode_ssversion(&setup.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001567 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1568 }
1569 /* CLIR suppression */
1570 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_SUPP))
1571 setup.clir.sup = 1;
1572 /* CLIR invocation */
1573 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_INVOC))
1574 setup.clir.inv = 1;
1575 /* cc cap */
1576 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
1577 setup.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001578 gsm48_decode_cccap(&setup.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001579 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
1580 }
1581
Harald Welte4bfdfe72009-06-10 23:11:52 +08001582 new_cc_state(trans, GSM_CSTATE_INITIATED);
1583
Harald Welte (local)47df3992009-12-26 19:45:03 +01001584 LOGP(DCC, LOGL_INFO, "Subscriber %s (%s) sends SETUP to %s\n",
Harald Welte9066b742016-06-19 18:06:02 +02001585 vlr_subscr_name(trans->vsub), trans->vsub->msisdn,
Harald Welte (local)47df3992009-12-26 19:45:03 +01001586 setup.called.number);
1587
Alexander Couzensb847a212016-08-02 11:34:11 +02001588 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MO_SETUP]);
Harald Weltea29e43a2010-12-24 16:06:33 +01001589
Harald Welte4bfdfe72009-06-10 23:11:52 +08001590 /* indicate setup to MNCC */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001591 mncc_recvmsg(trans->net, trans, MNCC_SETUP_IND, &setup);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001592
Harald Welte13cac662009-07-29 12:10:35 +02001593 /* MNCC code will modify the channel asynchronously, we should
1594 * ipaccess-bind only after the modification has been made to the
1595 * lchan->tch_mode */
Harald Welte4bfdfe72009-06-10 23:11:52 +08001596 return 0;
1597}
1598
1599static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg)
Harald Welte65e74cc2008-12-29 01:55:35 +00001600{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001601 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC STUP");
Harald Welte65e74cc2008-12-29 01:55:35 +00001602 struct gsm48_hdr *gh;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001603 struct gsm_mncc *setup = arg;
Harald Welte78283ef2009-07-23 21:36:44 +02001604 int rc, trans_id;
Harald Welte65e74cc2008-12-29 01:55:35 +00001605
Harald Welte7ccf7782009-02-17 01:43:01 +00001606 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00001607
Harald Welte4bfdfe72009-06-10 23:11:52 +08001608 /* transaction id must not be assigned */
1609 if (trans->transaction_id != 0xff) { /* unasssigned */
1610 DEBUGP(DCC, "TX Setup with assigned transaction. "
1611 "This is not allowed!\n");
1612 /* Temporarily out of order */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001613 rc = mncc_release_ind(trans->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001614 GSM48_CAUSE_LOC_PRN_S_LU,
1615 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001616 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001617 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001618 return rc;
1619 }
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001620
Harald Welte4bfdfe72009-06-10 23:11:52 +08001621 /* Get free transaction_id */
Harald Welte9066b742016-06-19 18:06:02 +02001622 trans_id = trans_assign_trans_id(trans->net, trans->vsub,
Jacob Erlbeckdae1f642014-12-02 14:22:53 +01001623 GSM48_PDISC_CC, 0);
Harald Welte78283ef2009-07-23 21:36:44 +02001624 if (trans_id < 0) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001625 /* no free transaction ID */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001626 rc = mncc_release_ind(trans->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001627 GSM48_CAUSE_LOC_PRN_S_LU,
1628 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001629 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001630 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001631 return rc;
1632 }
Harald Welte78283ef2009-07-23 21:36:44 +02001633 trans->transaction_id = trans_id;
Harald Welte49f48b82009-02-17 15:29:33 +00001634
Harald Welte65e74cc2008-12-29 01:55:35 +00001635 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00001636
Harald Welte4bfdfe72009-06-10 23:11:52 +08001637 gsm48_start_cc_timer(trans, 0x303, GSM48_T303);
Harald Welte65e74cc2008-12-29 01:55:35 +00001638
Harald Welte4bfdfe72009-06-10 23:11:52 +08001639 /* bearer capability */
1640 if (setup->fields & MNCC_F_BEARER_CAP)
Harald Welte55c8f352010-03-07 23:40:35 +01001641 gsm48_encode_bearer_cap(msg, 0, &setup->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001642 /* facility */
1643 if (setup->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001644 gsm48_encode_facility(msg, 0, &setup->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001645 /* progress */
1646 if (setup->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001647 gsm48_encode_progress(msg, 0, &setup->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001648 /* calling party BCD number */
1649 if (setup->fields & MNCC_F_CALLING)
Harald Welte55c8f352010-03-07 23:40:35 +01001650 gsm48_encode_calling(msg, &setup->calling);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001651 /* called party BCD number */
1652 if (setup->fields & MNCC_F_CALLED)
Harald Welte55c8f352010-03-07 23:40:35 +01001653 gsm48_encode_called(msg, &setup->called);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001654 /* user-user */
1655 if (setup->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001656 gsm48_encode_useruser(msg, 0, &setup->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001657 /* redirecting party BCD number */
1658 if (setup->fields & MNCC_F_REDIRECTING)
Harald Welte55c8f352010-03-07 23:40:35 +01001659 gsm48_encode_redirecting(msg, &setup->redirecting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001660 /* signal */
1661 if (setup->fields & MNCC_F_SIGNAL)
Harald Welte55c8f352010-03-07 23:40:35 +01001662 gsm48_encode_signal(msg, setup->signal);
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001663
Harald Welte4bfdfe72009-06-10 23:11:52 +08001664 new_cc_state(trans, GSM_CSTATE_CALL_PRESENT);
Harald Welte65e74cc2008-12-29 01:55:35 +00001665
Alexander Couzensb847a212016-08-02 11:34:11 +02001666 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MT_SETUP]);
Harald Weltea29e43a2010-12-24 16:06:33 +01001667
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001668 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte65e74cc2008-12-29 01:55:35 +00001669}
1670
Harald Welte4bfdfe72009-06-10 23:11:52 +08001671static int gsm48_cc_rx_call_conf(struct gsm_trans *trans, struct msgb *msg)
1672{
1673 struct gsm48_hdr *gh = msgb_l3(msg);
1674 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1675 struct tlv_parsed tp;
1676 struct gsm_mncc call_conf;
1677
1678 gsm48_stop_cc_timer(trans);
1679 gsm48_start_cc_timer(trans, 0x310, GSM48_T310);
1680
1681 memset(&call_conf, 0, sizeof(struct gsm_mncc));
1682 call_conf.callref = trans->callref;
Neels Hofmeyrce67be12017-05-08 15:12:20 +02001683
Harald Welte474d19f2010-03-02 23:18:30 +01001684 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001685#if 0
1686 /* repeat */
1687 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_CIR))
1688 call_conf.repeat = 1;
1689 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_SEQ))
1690 call_conf.repeat = 2;
1691#endif
1692 /* bearer capability */
1693 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
1694 call_conf.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001695 gsm48_decode_bearer_cap(&call_conf.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001696 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
1697 }
1698 /* cause */
1699 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
1700 call_conf.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01001701 gsm48_decode_cause(&call_conf.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001702 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
1703 }
1704 /* cc cap */
1705 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
1706 call_conf.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001707 gsm48_decode_cccap(&call_conf.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001708 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
1709 }
1710
Andreas Eversberg035b8742013-09-19 09:27:06 +02001711 /* IMSI of called subscriber */
Harald Welte9066b742016-06-19 18:06:02 +02001712 osmo_strlcpy(call_conf.imsi, trans->vsub->imsi, sizeof(call_conf.imsi));
Andreas Eversberg035b8742013-09-19 09:27:06 +02001713
Harald Welte4bfdfe72009-06-10 23:11:52 +08001714 new_cc_state(trans, GSM_CSTATE_MO_TERM_CALL_CONF);
1715
Neels Hofmeyr2188a772016-05-20 21:59:55 +02001716 msc_call_assignment(trans);
1717
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001718 return mncc_recvmsg(trans->net, trans, MNCC_CALL_CONF_IND,
Harald Welte596fed42009-07-23 19:06:52 +02001719 &call_conf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001720}
1721
Neels Hofmeyr2188a772016-05-20 21:59:55 +02001722static int gsm48_cc_tx_call_proc_and_assign(struct gsm_trans *trans, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001723{
1724 struct gsm_mncc *proceeding = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001725 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC PROC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001726 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Neels Hofmeyr2188a772016-05-20 21:59:55 +02001727 int rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001728
Harald Welte4bfdfe72009-06-10 23:11:52 +08001729 gh->msg_type = GSM48_MT_CC_CALL_PROC;
1730
1731 new_cc_state(trans, GSM_CSTATE_MO_CALL_PROC);
1732
1733 /* bearer capability */
1734 if (proceeding->fields & MNCC_F_BEARER_CAP)
Harald Welte55c8f352010-03-07 23:40:35 +01001735 gsm48_encode_bearer_cap(msg, 0, &proceeding->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001736 /* facility */
1737 if (proceeding->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001738 gsm48_encode_facility(msg, 0, &proceeding->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001739 /* progress */
1740 if (proceeding->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001741 gsm48_encode_progress(msg, 0, &proceeding->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001742
Neels Hofmeyr2188a772016-05-20 21:59:55 +02001743 rc = gsm48_conn_sendmsg(msg, trans->conn, trans);
1744 if (rc)
1745 return rc;
1746
1747 return msc_call_assignment(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001748}
1749
1750static int gsm48_cc_rx_alerting(struct gsm_trans *trans, struct msgb *msg)
1751{
1752 struct gsm48_hdr *gh = msgb_l3(msg);
1753 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1754 struct tlv_parsed tp;
1755 struct gsm_mncc alerting;
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001756
Harald Welte4bfdfe72009-06-10 23:11:52 +08001757 gsm48_stop_cc_timer(trans);
1758 gsm48_start_cc_timer(trans, 0x301, GSM48_T301);
1759
1760 memset(&alerting, 0, sizeof(struct gsm_mncc));
1761 alerting.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01001762 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001763 /* facility */
1764 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1765 alerting.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001766 gsm48_decode_facility(&alerting.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001767 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1768 }
1769
1770 /* progress */
1771 if (TLVP_PRESENT(&tp, GSM48_IE_PROGR_IND)) {
1772 alerting.fields |= MNCC_F_PROGRESS;
Harald Welte55c8f352010-03-07 23:40:35 +01001773 gsm48_decode_progress(&alerting.progress,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001774 TLVP_VAL(&tp, GSM48_IE_PROGR_IND)-1);
1775 }
1776 /* ss-version */
1777 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1778 alerting.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001779 gsm48_decode_ssversion(&alerting.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001780 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1781 }
1782
1783 new_cc_state(trans, GSM_CSTATE_CALL_RECEIVED);
1784
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001785 return mncc_recvmsg(trans->net, trans, MNCC_ALERT_IND,
Harald Welte596fed42009-07-23 19:06:52 +02001786 &alerting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001787}
1788
1789static int gsm48_cc_tx_alerting(struct gsm_trans *trans, void *arg)
1790{
1791 struct gsm_mncc *alerting = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001792 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC ALERT");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001793 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1794
Harald Welte4bfdfe72009-06-10 23:11:52 +08001795 gh->msg_type = GSM48_MT_CC_ALERTING;
1796
1797 /* facility */
1798 if (alerting->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001799 gsm48_encode_facility(msg, 0, &alerting->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001800 /* progress */
1801 if (alerting->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001802 gsm48_encode_progress(msg, 0, &alerting->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001803 /* user-user */
1804 if (alerting->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001805 gsm48_encode_useruser(msg, 0, &alerting->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001806
1807 new_cc_state(trans, GSM_CSTATE_CALL_DELIVERED);
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001808
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001809 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001810}
1811
1812static int gsm48_cc_tx_progress(struct gsm_trans *trans, void *arg)
1813{
1814 struct gsm_mncc *progress = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001815 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC PROGRESS");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001816 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1817
Harald Welte4bfdfe72009-06-10 23:11:52 +08001818 gh->msg_type = GSM48_MT_CC_PROGRESS;
1819
1820 /* progress */
Harald Welte55c8f352010-03-07 23:40:35 +01001821 gsm48_encode_progress(msg, 1, &progress->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001822 /* user-user */
1823 if (progress->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001824 gsm48_encode_useruser(msg, 0, &progress->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001825
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001826 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001827}
1828
1829static int gsm48_cc_tx_connect(struct gsm_trans *trans, void *arg)
1830{
1831 struct gsm_mncc *connect = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001832 struct msgb *msg = gsm48_msgb_alloc_name("GSN 04.08 CC CON");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001833 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1834
Harald Welte4bfdfe72009-06-10 23:11:52 +08001835 gh->msg_type = GSM48_MT_CC_CONNECT;
1836
1837 gsm48_stop_cc_timer(trans);
1838 gsm48_start_cc_timer(trans, 0x313, GSM48_T313);
1839
1840 /* facility */
1841 if (connect->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001842 gsm48_encode_facility(msg, 0, &connect->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001843 /* progress */
1844 if (connect->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001845 gsm48_encode_progress(msg, 0, &connect->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001846 /* connected number */
1847 if (connect->fields & MNCC_F_CONNECTED)
Harald Welte55c8f352010-03-07 23:40:35 +01001848 gsm48_encode_connected(msg, &connect->connected);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001849 /* user-user */
1850 if (connect->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001851 gsm48_encode_useruser(msg, 0, &connect->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001852
1853 new_cc_state(trans, GSM_CSTATE_CONNECT_IND);
1854
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001855 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001856}
1857
1858static int gsm48_cc_rx_connect(struct gsm_trans *trans, struct msgb *msg)
1859{
1860 struct gsm48_hdr *gh = msgb_l3(msg);
1861 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1862 struct tlv_parsed tp;
1863 struct gsm_mncc connect;
1864
1865 gsm48_stop_cc_timer(trans);
1866
1867 memset(&connect, 0, sizeof(struct gsm_mncc));
1868 connect.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01001869 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001870 /* use subscriber as connected party number */
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02001871 connect.fields |= MNCC_F_CONNECTED;
Harald Welte9066b742016-06-19 18:06:02 +02001872 osmo_strlcpy(connect.connected.number, trans->vsub->msisdn, sizeof(connect.connected.number));
1873 osmo_strlcpy(connect.imsi, trans->vsub->imsi, sizeof(connect.imsi));
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02001874
Harald Welte4bfdfe72009-06-10 23:11:52 +08001875 /* facility */
1876 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1877 connect.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001878 gsm48_decode_facility(&connect.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001879 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1880 }
1881 /* user-user */
1882 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
1883 connect.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01001884 gsm48_decode_useruser(&connect.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001885 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
1886 }
1887 /* ss-version */
1888 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1889 connect.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001890 gsm48_decode_ssversion(&connect.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001891 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1892 }
1893
1894 new_cc_state(trans, GSM_CSTATE_CONNECT_REQUEST);
Alexander Couzensb847a212016-08-02 11:34:11 +02001895 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MT_CONNECT]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001896
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001897 return mncc_recvmsg(trans->net, trans, MNCC_SETUP_CNF, &connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001898}
1899
1900
1901static int gsm48_cc_rx_connect_ack(struct gsm_trans *trans, struct msgb *msg)
1902{
1903 struct gsm_mncc connect_ack;
1904
1905 gsm48_stop_cc_timer(trans);
1906
1907 new_cc_state(trans, GSM_CSTATE_ACTIVE);
Alexander Couzensb847a212016-08-02 11:34:11 +02001908 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MO_CONNECT_ACK]);
Alexander Couzensfbd96f52016-08-29 18:40:02 +02001909
Harald Welte4bfdfe72009-06-10 23:11:52 +08001910 memset(&connect_ack, 0, sizeof(struct gsm_mncc));
1911 connect_ack.callref = trans->callref;
Harald Weltea29e43a2010-12-24 16:06:33 +01001912
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001913 return mncc_recvmsg(trans->net, trans, MNCC_SETUP_COMPL_IND,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001914 &connect_ack);
1915}
1916
1917static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg)
1918{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001919 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC CON ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001920 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1921
Harald Welte4bfdfe72009-06-10 23:11:52 +08001922 gh->msg_type = GSM48_MT_CC_CONNECT_ACK;
1923
1924 new_cc_state(trans, GSM_CSTATE_ACTIVE);
1925
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001926 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001927}
1928
1929static int gsm48_cc_rx_disconnect(struct gsm_trans *trans, struct msgb *msg)
1930{
1931 struct gsm48_hdr *gh = msgb_l3(msg);
1932 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1933 struct tlv_parsed tp;
1934 struct gsm_mncc disc;
1935
1936 gsm48_stop_cc_timer(trans);
1937
1938 new_cc_state(trans, GSM_CSTATE_DISCONNECT_REQ);
1939
1940 memset(&disc, 0, sizeof(struct gsm_mncc));
1941 disc.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01001942 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_CAUSE, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001943 /* cause */
1944 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
1945 disc.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01001946 gsm48_decode_cause(&disc.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001947 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
1948 }
1949 /* facility */
1950 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1951 disc.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001952 gsm48_decode_facility(&disc.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001953 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1954 }
1955 /* user-user */
1956 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
1957 disc.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01001958 gsm48_decode_useruser(&disc.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001959 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
1960 }
1961 /* ss-version */
1962 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1963 disc.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001964 gsm48_decode_ssversion(&disc.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001965 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1966 }
1967
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001968 return mncc_recvmsg(trans->net, trans, MNCC_DISC_IND, &disc);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001969
1970}
1971
Harald Weltec66b71c2009-06-11 14:23:20 +08001972static struct gsm_mncc_cause default_cause = {
1973 .location = GSM48_CAUSE_LOC_PRN_S_LU,
1974 .coding = 0,
1975 .rec = 0,
1976 .rec_val = 0,
1977 .value = GSM48_CC_CAUSE_NORMAL_UNSPEC,
1978 .diag_len = 0,
1979 .diag = { 0 },
1980};
Harald Welte4bfdfe72009-06-10 23:11:52 +08001981
1982static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg)
1983{
1984 struct gsm_mncc *disc = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001985 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC DISC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001986 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1987
Harald Welte4bfdfe72009-06-10 23:11:52 +08001988 gh->msg_type = GSM48_MT_CC_DISCONNECT;
1989
1990 gsm48_stop_cc_timer(trans);
1991 gsm48_start_cc_timer(trans, 0x306, GSM48_T306);
1992
1993 /* cause */
1994 if (disc->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01001995 gsm48_encode_cause(msg, 1, &disc->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001996 else
Harald Welte55c8f352010-03-07 23:40:35 +01001997 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001998
1999 /* facility */
2000 if (disc->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002001 gsm48_encode_facility(msg, 0, &disc->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002002 /* progress */
2003 if (disc->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002004 gsm48_encode_progress(msg, 0, &disc->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002005 /* user-user */
2006 if (disc->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002007 gsm48_encode_useruser(msg, 0, &disc->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002008
2009 /* store disconnect cause for T306 expiry */
Harald Weltedcaf5652009-07-23 18:56:43 +02002010 memcpy(&trans->cc.msg, disc, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002011
2012 new_cc_state(trans, GSM_CSTATE_DISCONNECT_IND);
2013
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002014 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002015}
2016
2017static int gsm48_cc_rx_release(struct gsm_trans *trans, struct msgb *msg)
2018{
2019 struct gsm48_hdr *gh = msgb_l3(msg);
2020 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2021 struct tlv_parsed tp;
2022 struct gsm_mncc rel;
2023 int rc;
2024
2025 gsm48_stop_cc_timer(trans);
2026
2027 memset(&rel, 0, sizeof(struct gsm_mncc));
2028 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002029 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002030 /* cause */
2031 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2032 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002033 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002034 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2035 }
2036 /* facility */
2037 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2038 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002039 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002040 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2041 }
2042 /* user-user */
2043 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2044 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002045 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002046 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2047 }
2048 /* ss-version */
2049 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2050 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002051 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002052 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2053 }
2054
Harald Weltedcaf5652009-07-23 18:56:43 +02002055 if (trans->cc.state == GSM_CSTATE_RELEASE_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002056 /* release collision 5.4.5 */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002057 rc = mncc_recvmsg(trans->net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002058 } else {
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08002059 rc = gsm48_tx_simple(trans->conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02002060 GSM48_PDISC_CC | (trans->transaction_id << 4),
Harald Welte596fed42009-07-23 19:06:52 +02002061 GSM48_MT_CC_RELEASE_COMPL);
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002062 rc = mncc_recvmsg(trans->net, trans, MNCC_REL_IND, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002063 }
2064
2065 new_cc_state(trans, GSM_CSTATE_NULL);
2066
2067 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002068 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002069
2070 return rc;
2071}
2072
2073static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg)
2074{
2075 struct gsm_mncc *rel = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002076 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC REL");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002077 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2078
Harald Welte4bfdfe72009-06-10 23:11:52 +08002079 gh->msg_type = GSM48_MT_CC_RELEASE;
2080
Harald Welte4bfdfe72009-06-10 23:11:52 +08002081 gsm48_stop_cc_timer(trans);
2082 gsm48_start_cc_timer(trans, 0x308, GSM48_T308);
2083
2084 /* cause */
2085 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002086 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002087 /* facility */
2088 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002089 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002090 /* user-user */
2091 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002092 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002093
Harald Weltedcaf5652009-07-23 18:56:43 +02002094 trans->cc.T308_second = 0;
2095 memcpy(&trans->cc.msg, rel, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002096
Harald Weltedcaf5652009-07-23 18:56:43 +02002097 if (trans->cc.state != GSM_CSTATE_RELEASE_REQ)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002098 new_cc_state(trans, GSM_CSTATE_RELEASE_REQ);
2099
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002100 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002101}
2102
2103static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg)
2104{
2105 struct gsm48_hdr *gh = msgb_l3(msg);
2106 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2107 struct tlv_parsed tp;
2108 struct gsm_mncc rel;
2109 int rc = 0;
2110
2111 gsm48_stop_cc_timer(trans);
2112
2113 memset(&rel, 0, sizeof(struct gsm_mncc));
2114 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002115 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002116 /* cause */
2117 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2118 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002119 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002120 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2121 }
2122 /* facility */
2123 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2124 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002125 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002126 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2127 }
2128 /* user-user */
2129 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2130 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002131 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002132 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2133 }
2134 /* ss-version */
2135 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2136 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002137 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002138 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2139 }
2140
2141 if (trans->callref) {
Harald Weltedcaf5652009-07-23 18:56:43 +02002142 switch (trans->cc.state) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002143 case GSM_CSTATE_CALL_PRESENT:
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002144 rc = mncc_recvmsg(trans->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002145 MNCC_REJ_IND, &rel);
2146 break;
2147 case GSM_CSTATE_RELEASE_REQ:
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002148 rc = mncc_recvmsg(trans->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002149 MNCC_REL_CNF, &rel);
2150 break;
2151 default:
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002152 rc = mncc_recvmsg(trans->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002153 MNCC_REL_IND, &rel);
2154 }
2155 }
2156
2157 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002158 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002159
2160 return rc;
2161}
2162
2163static int gsm48_cc_tx_release_compl(struct gsm_trans *trans, void *arg)
2164{
2165 struct gsm_mncc *rel = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002166 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC REL COMPL");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002167 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Weltec7782de2010-12-21 19:31:41 +01002168 int ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002169
Harald Welte4bfdfe72009-06-10 23:11:52 +08002170 gh->msg_type = GSM48_MT_CC_RELEASE_COMPL;
2171
2172 trans->callref = 0;
Alexander Couzensfbd96f52016-08-29 18:40:02 +02002173
Harald Welte4bfdfe72009-06-10 23:11:52 +08002174 gsm48_stop_cc_timer(trans);
2175
2176 /* cause */
2177 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002178 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002179 /* facility */
2180 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002181 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002182 /* user-user */
2183 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002184 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002185
Harald Weltec7782de2010-12-21 19:31:41 +01002186 ret = gsm48_conn_sendmsg(msg, trans->conn, trans);
2187
Harald Weltedcaf5652009-07-23 18:56:43 +02002188 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002189
Harald Weltec7782de2010-12-21 19:31:41 +01002190 return ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002191}
2192
2193static int gsm48_cc_rx_facility(struct gsm_trans *trans, struct msgb *msg)
2194{
2195 struct gsm48_hdr *gh = msgb_l3(msg);
2196 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2197 struct tlv_parsed tp;
2198 struct gsm_mncc fac;
2199
2200 memset(&fac, 0, sizeof(struct gsm_mncc));
2201 fac.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002202 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_FACILITY, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002203 /* facility */
2204 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2205 fac.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002206 gsm48_decode_facility(&fac.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002207 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2208 }
2209 /* ss-version */
2210 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2211 fac.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002212 gsm48_decode_ssversion(&fac.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002213 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2214 }
2215
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002216 return mncc_recvmsg(trans->net, trans, MNCC_FACILITY_IND, &fac);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002217}
2218
2219static int gsm48_cc_tx_facility(struct gsm_trans *trans, void *arg)
2220{
2221 struct gsm_mncc *fac = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002222 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC FAC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002223 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2224
Harald Welte4bfdfe72009-06-10 23:11:52 +08002225 gh->msg_type = GSM48_MT_CC_FACILITY;
2226
2227 /* facility */
Harald Welte55c8f352010-03-07 23:40:35 +01002228 gsm48_encode_facility(msg, 1, &fac->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002229
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002230 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002231}
2232
2233static int gsm48_cc_rx_hold(struct gsm_trans *trans, struct msgb *msg)
2234{
2235 struct gsm_mncc hold;
2236
2237 memset(&hold, 0, sizeof(struct gsm_mncc));
2238 hold.callref = trans->callref;
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002239 return mncc_recvmsg(trans->net, trans, MNCC_HOLD_IND, &hold);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002240}
2241
2242static int gsm48_cc_tx_hold_ack(struct gsm_trans *trans, void *arg)
2243{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002244 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC HLD ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002245 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2246
Harald Welte4bfdfe72009-06-10 23:11:52 +08002247 gh->msg_type = GSM48_MT_CC_HOLD_ACK;
2248
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002249 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002250}
2251
2252static int gsm48_cc_tx_hold_rej(struct gsm_trans *trans, void *arg)
2253{
2254 struct gsm_mncc *hold_rej = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002255 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC HLD REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002256 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2257
Harald Welte4bfdfe72009-06-10 23:11:52 +08002258 gh->msg_type = GSM48_MT_CC_HOLD_REJ;
2259
2260 /* cause */
2261 if (hold_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002262 gsm48_encode_cause(msg, 1, &hold_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002263 else
Harald Welte55c8f352010-03-07 23:40:35 +01002264 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002265
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002266 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002267}
2268
2269static int gsm48_cc_rx_retrieve(struct gsm_trans *trans, struct msgb *msg)
2270{
2271 struct gsm_mncc retrieve;
2272
2273 memset(&retrieve, 0, sizeof(struct gsm_mncc));
2274 retrieve.callref = trans->callref;
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002275 return mncc_recvmsg(trans->net, trans, MNCC_RETRIEVE_IND,
Harald Welte596fed42009-07-23 19:06:52 +02002276 &retrieve);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002277}
2278
2279static int gsm48_cc_tx_retrieve_ack(struct gsm_trans *trans, void *arg)
2280{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002281 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC RETR ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002282 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2283
Harald Welte4bfdfe72009-06-10 23:11:52 +08002284 gh->msg_type = GSM48_MT_CC_RETR_ACK;
2285
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002286 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002287}
2288
2289static int gsm48_cc_tx_retrieve_rej(struct gsm_trans *trans, void *arg)
2290{
2291 struct gsm_mncc *retrieve_rej = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002292 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC RETR REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002293 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2294
Harald Welte4bfdfe72009-06-10 23:11:52 +08002295 gh->msg_type = GSM48_MT_CC_RETR_REJ;
2296
2297 /* cause */
2298 if (retrieve_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002299 gsm48_encode_cause(msg, 1, &retrieve_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002300 else
Harald Welte55c8f352010-03-07 23:40:35 +01002301 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002302
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002303 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002304}
2305
2306static int gsm48_cc_rx_start_dtmf(struct gsm_trans *trans, struct msgb *msg)
2307{
2308 struct gsm48_hdr *gh = msgb_l3(msg);
2309 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2310 struct tlv_parsed tp;
2311 struct gsm_mncc dtmf;
2312
2313 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2314 dtmf.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002315 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002316 /* keypad facility */
2317 if (TLVP_PRESENT(&tp, GSM48_IE_KPD_FACILITY)) {
2318 dtmf.fields |= MNCC_F_KEYPAD;
Harald Welte55c8f352010-03-07 23:40:35 +01002319 gsm48_decode_keypad(&dtmf.keypad,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002320 TLVP_VAL(&tp, GSM48_IE_KPD_FACILITY)-1);
2321 }
2322
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002323 return mncc_recvmsg(trans->net, trans, MNCC_START_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002324}
2325
2326static int gsm48_cc_tx_start_dtmf_ack(struct gsm_trans *trans, void *arg)
2327{
2328 struct gsm_mncc *dtmf = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002329 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 DTMF ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002330 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2331
Harald Welte4bfdfe72009-06-10 23:11:52 +08002332 gh->msg_type = GSM48_MT_CC_START_DTMF_ACK;
2333
2334 /* keypad */
2335 if (dtmf->fields & MNCC_F_KEYPAD)
Harald Welte55c8f352010-03-07 23:40:35 +01002336 gsm48_encode_keypad(msg, dtmf->keypad);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002337
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002338 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002339}
2340
2341static int gsm48_cc_tx_start_dtmf_rej(struct gsm_trans *trans, void *arg)
2342{
2343 struct gsm_mncc *dtmf = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002344 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 DTMF REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002345 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2346
Harald Welte4bfdfe72009-06-10 23:11:52 +08002347 gh->msg_type = GSM48_MT_CC_START_DTMF_REJ;
2348
2349 /* cause */
2350 if (dtmf->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002351 gsm48_encode_cause(msg, 1, &dtmf->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002352 else
Harald Welte55c8f352010-03-07 23:40:35 +01002353 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002354
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002355 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002356}
2357
2358static int gsm48_cc_tx_stop_dtmf_ack(struct gsm_trans *trans, void *arg)
2359{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002360 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 DTMF STP ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002361 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2362
Harald Welte4bfdfe72009-06-10 23:11:52 +08002363 gh->msg_type = GSM48_MT_CC_STOP_DTMF_ACK;
2364
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002365 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002366}
2367
2368static int gsm48_cc_rx_stop_dtmf(struct gsm_trans *trans, struct msgb *msg)
2369{
2370 struct gsm_mncc dtmf;
2371
2372 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2373 dtmf.callref = trans->callref;
2374
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002375 return mncc_recvmsg(trans->net, trans, MNCC_STOP_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002376}
2377
2378static int gsm48_cc_rx_modify(struct gsm_trans *trans, struct msgb *msg)
2379{
2380 struct gsm48_hdr *gh = msgb_l3(msg);
2381 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2382 struct tlv_parsed tp;
2383 struct gsm_mncc modify;
2384
2385 memset(&modify, 0, sizeof(struct gsm_mncc));
2386 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002387 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002388 /* bearer capability */
2389 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2390 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002391 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002392 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2393 }
2394
2395 new_cc_state(trans, GSM_CSTATE_MO_ORIG_MODIFY);
2396
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002397 return mncc_recvmsg(trans->net, trans, MNCC_MODIFY_IND, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002398}
2399
2400static int gsm48_cc_tx_modify(struct gsm_trans *trans, void *arg)
2401{
2402 struct gsm_mncc *modify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002403 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC MOD");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002404 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2405
Harald Welte4bfdfe72009-06-10 23:11:52 +08002406 gh->msg_type = GSM48_MT_CC_MODIFY;
2407
2408 gsm48_start_cc_timer(trans, 0x323, GSM48_T323);
2409
2410 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002411 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002412
2413 new_cc_state(trans, GSM_CSTATE_MO_TERM_MODIFY);
2414
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002415 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002416}
2417
2418static int gsm48_cc_rx_modify_complete(struct gsm_trans *trans, struct msgb *msg)
2419{
2420 struct gsm48_hdr *gh = msgb_l3(msg);
2421 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2422 struct tlv_parsed tp;
2423 struct gsm_mncc modify;
2424
2425 gsm48_stop_cc_timer(trans);
2426
2427 memset(&modify, 0, sizeof(struct gsm_mncc));
2428 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002429 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002430 /* bearer capability */
2431 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2432 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002433 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002434 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2435 }
2436
2437 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2438
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002439 return mncc_recvmsg(trans->net, trans, MNCC_MODIFY_CNF, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002440}
2441
2442static int gsm48_cc_tx_modify_complete(struct gsm_trans *trans, void *arg)
2443{
2444 struct gsm_mncc *modify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002445 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC MOD COMPL");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002446 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2447
Harald Welte4bfdfe72009-06-10 23:11:52 +08002448 gh->msg_type = GSM48_MT_CC_MODIFY_COMPL;
2449
2450 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002451 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002452
2453 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2454
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002455 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002456}
2457
2458static int gsm48_cc_rx_modify_reject(struct gsm_trans *trans, struct msgb *msg)
2459{
2460 struct gsm48_hdr *gh = msgb_l3(msg);
2461 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2462 struct tlv_parsed tp;
2463 struct gsm_mncc modify;
2464
2465 gsm48_stop_cc_timer(trans);
2466
2467 memset(&modify, 0, sizeof(struct gsm_mncc));
2468 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002469 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, GSM48_IE_CAUSE);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002470 /* bearer capability */
2471 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2472 modify.fields |= GSM48_IE_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002473 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002474 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2475 }
2476 /* cause */
2477 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2478 modify.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002479 gsm48_decode_cause(&modify.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002480 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2481 }
2482
2483 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2484
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002485 return mncc_recvmsg(trans->net, trans, MNCC_MODIFY_REJ, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002486}
2487
2488static int gsm48_cc_tx_modify_reject(struct gsm_trans *trans, void *arg)
2489{
2490 struct gsm_mncc *modify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002491 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC MOD REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002492 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2493
Harald Welte4bfdfe72009-06-10 23:11:52 +08002494 gh->msg_type = GSM48_MT_CC_MODIFY_REJECT;
2495
2496 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002497 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002498 /* cause */
Harald Welte55c8f352010-03-07 23:40:35 +01002499 gsm48_encode_cause(msg, 1, &modify->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002500
2501 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2502
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002503 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002504}
2505
2506static int gsm48_cc_tx_notify(struct gsm_trans *trans, void *arg)
2507{
2508 struct gsm_mncc *notify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002509 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC NOT");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002510 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2511
Harald Welte4bfdfe72009-06-10 23:11:52 +08002512 gh->msg_type = GSM48_MT_CC_NOTIFY;
2513
2514 /* notify */
Harald Welte55c8f352010-03-07 23:40:35 +01002515 gsm48_encode_notify(msg, notify->notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002516
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002517 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002518}
2519
2520static int gsm48_cc_rx_notify(struct gsm_trans *trans, struct msgb *msg)
2521{
2522 struct gsm48_hdr *gh = msgb_l3(msg);
2523 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2524// struct tlv_parsed tp;
2525 struct gsm_mncc notify;
2526
2527 memset(&notify, 0, sizeof(struct gsm_mncc));
2528 notify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002529// tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002530 if (payload_len >= 1)
Harald Welte55c8f352010-03-07 23:40:35 +01002531 gsm48_decode_notify(&notify.notify, gh->data);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002532
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002533 return mncc_recvmsg(trans->net, trans, MNCC_NOTIFY_IND, &notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002534}
2535
2536static int gsm48_cc_tx_userinfo(struct gsm_trans *trans, void *arg)
2537{
2538 struct gsm_mncc *user = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002539 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 USR INFO");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002540 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2541
Harald Welte4bfdfe72009-06-10 23:11:52 +08002542 gh->msg_type = GSM48_MT_CC_USER_INFO;
2543
2544 /* user-user */
2545 if (user->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002546 gsm48_encode_useruser(msg, 1, &user->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002547 /* more data */
2548 if (user->more)
Harald Welte55c8f352010-03-07 23:40:35 +01002549 gsm48_encode_more(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002550
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002551 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002552}
2553
2554static int gsm48_cc_rx_userinfo(struct gsm_trans *trans, struct msgb *msg)
2555{
2556 struct gsm48_hdr *gh = msgb_l3(msg);
2557 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2558 struct tlv_parsed tp;
2559 struct gsm_mncc user;
2560
2561 memset(&user, 0, sizeof(struct gsm_mncc));
2562 user.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002563 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_USER_USER, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002564 /* user-user */
2565 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2566 user.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002567 gsm48_decode_useruser(&user.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002568 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2569 }
2570 /* more data */
2571 if (TLVP_PRESENT(&tp, GSM48_IE_MORE_DATA))
2572 user.more = 1;
2573
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002574 return mncc_recvmsg(trans->net, trans, MNCC_USERINFO_IND, &user);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002575}
2576
Harald Welte4bfdfe72009-06-10 23:11:52 +08002577static struct downstate {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02002578 uint32_t states;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002579 int type;
2580 int (*rout) (struct gsm_trans *trans, void *arg);
2581} downstatelist[] = {
2582 /* mobile originating call establishment */
2583 {SBIT(GSM_CSTATE_INITIATED), /* 5.2.1.2 */
Neels Hofmeyr2188a772016-05-20 21:59:55 +02002584 MNCC_CALL_PROC_REQ, gsm48_cc_tx_call_proc_and_assign},
Harald Welte4bfdfe72009-06-10 23:11:52 +08002585 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.2 | 5.2.1.5 */
2586 MNCC_ALERT_REQ, gsm48_cc_tx_alerting},
2587 {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 */
2588 MNCC_SETUP_RSP, gsm48_cc_tx_connect},
2589 {SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.4.2 */
2590 MNCC_PROGRESS_REQ, gsm48_cc_tx_progress},
2591 /* mobile terminating call establishment */
2592 {SBIT(GSM_CSTATE_NULL), /* 5.2.2.1 */
2593 MNCC_SETUP_REQ, gsm48_cc_tx_setup},
2594 {SBIT(GSM_CSTATE_CONNECT_REQUEST),
2595 MNCC_SETUP_COMPL_REQ, gsm48_cc_tx_connect_ack},
2596 /* signalling during call */
2597 {SBIT(GSM_CSTATE_ACTIVE),
2598 MNCC_NOTIFY_REQ, gsm48_cc_tx_notify},
2599 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ),
2600 MNCC_FACILITY_REQ, gsm48_cc_tx_facility},
2601 {ALL_STATES,
2602 MNCC_START_DTMF_RSP, gsm48_cc_tx_start_dtmf_ack},
2603 {ALL_STATES,
2604 MNCC_START_DTMF_REJ, gsm48_cc_tx_start_dtmf_rej},
2605 {ALL_STATES,
2606 MNCC_STOP_DTMF_RSP, gsm48_cc_tx_stop_dtmf_ack},
2607 {SBIT(GSM_CSTATE_ACTIVE),
2608 MNCC_HOLD_CNF, gsm48_cc_tx_hold_ack},
2609 {SBIT(GSM_CSTATE_ACTIVE),
2610 MNCC_HOLD_REJ, gsm48_cc_tx_hold_rej},
2611 {SBIT(GSM_CSTATE_ACTIVE),
2612 MNCC_RETRIEVE_CNF, gsm48_cc_tx_retrieve_ack},
2613 {SBIT(GSM_CSTATE_ACTIVE),
2614 MNCC_RETRIEVE_REJ, gsm48_cc_tx_retrieve_rej},
2615 {SBIT(GSM_CSTATE_ACTIVE),
2616 MNCC_MODIFY_REQ, gsm48_cc_tx_modify},
2617 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
2618 MNCC_MODIFY_RSP, gsm48_cc_tx_modify_complete},
2619 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
2620 MNCC_MODIFY_REJ, gsm48_cc_tx_modify_reject},
2621 {SBIT(GSM_CSTATE_ACTIVE),
2622 MNCC_USERINFO_REQ, gsm48_cc_tx_userinfo},
2623 /* clearing */
2624 {SBIT(GSM_CSTATE_INITIATED),
2625 MNCC_REJ_REQ, gsm48_cc_tx_release_compl},
2626 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_DISCONNECT_IND) - SBIT(GSM_CSTATE_RELEASE_REQ) - SBIT(GSM_CSTATE_DISCONNECT_REQ), /* 5.4.4 */
2627 MNCC_DISC_REQ, gsm48_cc_tx_disconnect},
2628 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
2629 MNCC_REL_REQ, gsm48_cc_tx_release},
Harald Welte4bfdfe72009-06-10 23:11:52 +08002630};
2631
2632#define DOWNSLLEN \
2633 (sizeof(downstatelist) / sizeof(struct downstate))
2634
2635
Harald Welte76556372010-12-22 23:57:45 +01002636int mncc_tx_to_cc(struct gsm_network *net, int msg_type, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002637{
Harald Welte1a6f7982009-08-09 18:52:33 +02002638 int i, rc = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002639 struct gsm_trans *trans = NULL, *transt;
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002640 struct gsm_subscriber_connection *conn = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002641 struct gsm_mncc *data = arg, rel;
2642
Harald Welte04dc88f2010-12-22 21:45:05 +01002643 DEBUGP(DMNCC, "receive message %s\n", get_mncc_name(msg_type));
2644
Harald Welte4bfdfe72009-06-10 23:11:52 +08002645 /* handle special messages */
2646 switch(msg_type) {
2647 case MNCC_BRIDGE:
Max3ffce192016-04-25 15:22:00 +02002648 rc = tch_bridge(net, arg);
2649 if (rc < 0)
2650 disconnect_bridge(net, arg, -rc);
2651 return rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002652 case MNCC_FRAME_DROP:
Harald Welte4bfdfe72009-06-10 23:11:52 +08002653 case MNCC_FRAME_RECV:
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02002654 case MNCC_RTP_CREATE:
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02002655 case MNCC_RTP_CONNECT:
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02002656 case MNCC_RTP_FREE:
Harald Welteda7ab742009-12-19 22:23:05 +01002657 case GSM_TCHF_FRAME:
Andreas Eversbergd074f8f2013-12-06 16:59:10 +01002658 case GSM_TCHF_FRAME_EFR:
Andreas Eversberg63bfdd82014-01-17 19:06:38 +01002659 case GSM_TCHH_FRAME:
Andreas Eversbergd8967f72012-03-08 14:39:19 +01002660 case GSM_TCH_FRAME_AMR:
Neels Hofmeyrce67be12017-05-08 15:12:20 +02002661 LOGP(DMNCC, LOGL_ERROR, "RTP streams must be handled externally; %s not supported.\n",
2662 get_mncc_name(msg_type));
2663 return -ENOTSUP;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002664 }
2665
2666 memset(&rel, 0, sizeof(struct gsm_mncc));
2667 rel.callref = data->callref;
2668
2669 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02002670 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002671
2672 /* Callref unknown */
2673 if (!trans) {
Harald Welte9066b742016-06-19 18:06:02 +02002674 struct vlr_subscr *vsub;
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01002675
Harald Welte4a3464c2009-07-04 10:11:24 +02002676 if (msg_type != MNCC_SETUP_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002677 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
2678 "Received '%s' from MNCC with "
2679 "unknown callref %d\n", data->called.number,
2680 get_mncc_name(msg_type), data->callref);
2681 /* Invalid call reference */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002682 return mncc_release_ind(net, NULL, data->callref,
2683 GSM48_CAUSE_LOC_PRN_S_LU,
2684 GSM48_CC_CAUSE_INVAL_TRANS_ID);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002685 }
Andreas Eversbergc079be42009-06-15 23:22:09 +02002686 if (!data->called.number[0] && !data->imsi[0]) {
2687 DEBUGP(DCC, "(bts - trx - ts - ti) "
2688 "Received '%s' from MNCC with "
2689 "no number or IMSI\n", get_mncc_name(msg_type));
2690 /* Invalid number */
2691 return mncc_release_ind(net, NULL, data->callref,
2692 GSM48_CAUSE_LOC_PRN_S_LU,
2693 GSM48_CC_CAUSE_INV_NR_FORMAT);
2694 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08002695 /* New transaction due to setup, find subscriber */
Andreas Eversbergc079be42009-06-15 23:22:09 +02002696 if (data->called.number[0])
Harald Welte9066b742016-06-19 18:06:02 +02002697 vsub = vlr_subscr_find_by_msisdn(net->vlr,
2698 data->called.number);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002699 else
Harald Welte9066b742016-06-19 18:06:02 +02002700 vsub = vlr_subscr_find_by_imsi(net->vlr, data->imsi);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01002701
2702 /* update the subscriber we deal with */
Harald Welte9066b742016-06-19 18:06:02 +02002703 log_set_context(LOG_CTX_VLR_SUBSCR, vsub);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01002704
Harald Welte4bfdfe72009-06-10 23:11:52 +08002705 /* If subscriber is not found */
Harald Welte9066b742016-06-19 18:06:02 +02002706 if (!vsub) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002707 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
2708 "Received '%s' from MNCC with "
2709 "unknown subscriber %s\n", data->called.number,
2710 get_mncc_name(msg_type), data->called.number);
2711 /* Unknown subscriber */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002712 return mncc_release_ind(net, NULL, data->callref,
2713 GSM48_CAUSE_LOC_PRN_S_LU,
2714 GSM48_CC_CAUSE_UNASSIGNED_NR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002715 }
2716 /* If subscriber is not "attached" */
Harald Welte9066b742016-06-19 18:06:02 +02002717 if (!vsub->lac) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002718 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
2719 "Received '%s' from MNCC with "
2720 "detached subscriber %s\n", data->called.number,
2721 get_mncc_name(msg_type), data->called.number);
Harald Welte9066b742016-06-19 18:06:02 +02002722 vlr_subscr_put(vsub);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002723 /* Temporarily out of order */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002724 return mncc_release_ind(net, NULL, data->callref,
2725 GSM48_CAUSE_LOC_PRN_S_LU,
2726 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002727 }
2728 /* Create transaction */
Harald Welte9066b742016-06-19 18:06:02 +02002729 trans = trans_alloc(net, vsub, GSM48_PDISC_CC, 0xff, data->callref);
Harald Weltedcaf5652009-07-23 18:56:43 +02002730 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002731 DEBUGP(DCC, "No memory for trans.\n");
Harald Welte9066b742016-06-19 18:06:02 +02002732 vlr_subscr_put(vsub);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002733 /* Ressource unavailable */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002734 mncc_release_ind(net, NULL, data->callref,
2735 GSM48_CAUSE_LOC_PRN_S_LU,
2736 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002737 return -ENOMEM;
2738 }
Neels Hofmeyrce67be12017-05-08 15:12:20 +02002739
2740 /* Find conn */
Harald Welte9066b742016-06-19 18:06:02 +02002741 conn = connection_for_subscr(vsub);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01002742
Neels Hofmeyrce67be12017-05-08 15:12:20 +02002743 /* If subscriber has no conn */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002744 if (!conn) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002745 /* find transaction with this subscriber already paging */
2746 llist_for_each_entry(transt, &net->trans_list, entry) {
Neels Hofmeyrce67be12017-05-08 15:12:20 +02002747 /* Transaction of our conn? */
Harald Welte4bfdfe72009-06-10 23:11:52 +08002748 if (transt == trans ||
Harald Welte9066b742016-06-19 18:06:02 +02002749 transt->vsub != vsub)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002750 continue;
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01002751 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08002752 "Received '%s' from MNCC with "
2753 "unallocated channel, paging already "
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01002754 "started for lac %d.\n",
Harald Welte4bfdfe72009-06-10 23:11:52 +08002755 data->called.number,
Harald Welte9066b742016-06-19 18:06:02 +02002756 get_mncc_name(msg_type), vsub->lac);
2757 vlr_subscr_put(vsub);
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01002758 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002759 return 0;
2760 }
Neels Hofmeyr2188a772016-05-20 21:59:55 +02002761 /* store setup information until paging succeeds */
Harald Weltedcaf5652009-07-23 18:56:43 +02002762 memcpy(&trans->cc.msg, data, sizeof(struct gsm_mncc));
Sylvain Munaut567c8dc2010-12-01 22:17:36 +01002763
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02002764 /* Request a channel */
Neels Hofmeyrce67be12017-05-08 15:12:20 +02002765 trans->paging_request = subscr_request_conn(
Harald Welte9066b742016-06-19 18:06:02 +02002766 vsub,
Harald Welte9066b742016-06-19 18:06:02 +02002767 setup_trig_pag_evt,
Neels Hofmeyr2188a772016-05-20 21:59:55 +02002768 trans,
2769 "MNCC: establish call");
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01002770 if (!trans->paging_request) {
2771 LOGP(DCC, LOGL_ERROR, "Failed to allocate paging token.\n");
Harald Welte9066b742016-06-19 18:06:02 +02002772 vlr_subscr_put(vsub);
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01002773 trans_free(trans);
2774 return 0;
2775 }
Harald Welte9066b742016-06-19 18:06:02 +02002776 vlr_subscr_put(vsub);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002777 return 0;
2778 }
Neels Hofmeyrce67be12017-05-08 15:12:20 +02002779
2780 /* Assign conn */
Harald Welte9066b742016-06-19 18:06:02 +02002781 trans->conn = msc_subscr_conn_get(conn);
2782 vlr_subscr_put(vsub);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01002783 } else {
2784 /* update the subscriber we deal with */
Harald Welte9066b742016-06-19 18:06:02 +02002785 log_set_context(LOG_CTX_VLR_SUBSCR, trans->vsub);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002786 }
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002787
2788 if (trans->conn)
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002789 conn = trans->conn;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002790
2791 /* if paging did not respond yet */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002792 if (!conn) {
Neels Hofmeyrce67be12017-05-08 15:12:20 +02002793 DEBUGP(DCC, "(sub %s) "
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02002794 "Received '%s' from MNCC in paging state\n",
Harald Welte9066b742016-06-19 18:06:02 +02002795 vlr_subscr_msisdn_or_name(trans->vsub),
Harald Welte4bfdfe72009-06-10 23:11:52 +08002796 get_mncc_name(msg_type));
Harald Weltec66b71c2009-06-11 14:23:20 +08002797 mncc_set_cause(&rel, GSM48_CAUSE_LOC_PRN_S_LU,
2798 GSM48_CC_CAUSE_NORM_CALL_CLEAR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002799 if (msg_type == MNCC_REL_REQ)
2800 rc = mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
2801 else
2802 rc = mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
2803 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002804 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002805 return rc;
2806 }
2807
Neels Hofmeyrce67be12017-05-08 15:12:20 +02002808 DEBUGP(DCC, "(ti %02x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08002809 "Received '%s' from MNCC in state %d (%s)\n",
Harald Welte4bfdfe72009-06-10 23:11:52 +08002810 trans->transaction_id,
Harald Welte9066b742016-06-19 18:06:02 +02002811 vlr_subscr_msisdn_or_name(trans->conn->vsub),
Harald Weltedcaf5652009-07-23 18:56:43 +02002812 get_mncc_name(msg_type), trans->cc.state,
Harald Weltee95daf12010-03-25 12:13:02 +08002813 gsm48_cc_state_name(trans->cc.state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002814
2815 /* Find function for current state and message */
2816 for (i = 0; i < DOWNSLLEN; i++)
2817 if ((msg_type == downstatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02002818 && ((1 << trans->cc.state) & downstatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08002819 break;
2820 if (i == DOWNSLLEN) {
2821 DEBUGP(DCC, "Message unhandled at this state.\n");
2822 return 0;
2823 }
2824
2825 rc = downstatelist[i].rout(trans, arg);
2826
2827 return rc;
2828}
2829
2830
2831static struct datastate {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02002832 uint32_t states;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002833 int type;
2834 int (*rout) (struct gsm_trans *trans, struct msgb *msg);
2835} datastatelist[] = {
2836 /* mobile originating call establishment */
2837 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
2838 GSM48_MT_CC_SETUP, gsm48_cc_rx_setup},
2839 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
2840 GSM48_MT_CC_EMERG_SETUP, gsm48_cc_rx_setup},
2841 {SBIT(GSM_CSTATE_CONNECT_IND), /* 5.2.1.2 */
2842 GSM48_MT_CC_CONNECT_ACK, gsm48_cc_rx_connect_ack},
2843 /* mobile terminating call establishment */
2844 {SBIT(GSM_CSTATE_CALL_PRESENT), /* 5.2.2.3.2 */
2845 GSM48_MT_CC_CALL_CONF, gsm48_cc_rx_call_conf},
2846 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF), /* ???? | 5.2.2.3.2 */
2847 GSM48_MT_CC_ALERTING, gsm48_cc_rx_alerting},
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02002848 {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 +08002849 GSM48_MT_CC_CONNECT, gsm48_cc_rx_connect},
2850 /* signalling during call */
2851 {ALL_STATES - SBIT(GSM_CSTATE_NULL),
2852 GSM48_MT_CC_FACILITY, gsm48_cc_rx_facility},
2853 {SBIT(GSM_CSTATE_ACTIVE),
2854 GSM48_MT_CC_NOTIFY, gsm48_cc_rx_notify},
2855 {ALL_STATES,
2856 GSM48_MT_CC_START_DTMF, gsm48_cc_rx_start_dtmf},
2857 {ALL_STATES,
2858 GSM48_MT_CC_STOP_DTMF, gsm48_cc_rx_stop_dtmf},
2859 {ALL_STATES,
2860 GSM48_MT_CC_STATUS_ENQ, gsm48_cc_rx_status_enq},
2861 {SBIT(GSM_CSTATE_ACTIVE),
2862 GSM48_MT_CC_HOLD, gsm48_cc_rx_hold},
2863 {SBIT(GSM_CSTATE_ACTIVE),
2864 GSM48_MT_CC_RETR, gsm48_cc_rx_retrieve},
2865 {SBIT(GSM_CSTATE_ACTIVE),
2866 GSM48_MT_CC_MODIFY, gsm48_cc_rx_modify},
2867 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
2868 GSM48_MT_CC_MODIFY_COMPL, gsm48_cc_rx_modify_complete},
2869 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
2870 GSM48_MT_CC_MODIFY_REJECT, gsm48_cc_rx_modify_reject},
2871 {SBIT(GSM_CSTATE_ACTIVE),
2872 GSM48_MT_CC_USER_INFO, gsm48_cc_rx_userinfo},
2873 /* clearing */
2874 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
2875 GSM48_MT_CC_DISCONNECT, gsm48_cc_rx_disconnect},
2876 {ALL_STATES - SBIT(GSM_CSTATE_NULL), /* 5.4.4.1.2.2 */
2877 GSM48_MT_CC_RELEASE, gsm48_cc_rx_release},
2878 {ALL_STATES, /* 5.4.3.4 */
2879 GSM48_MT_CC_RELEASE_COMPL, gsm48_cc_rx_release_compl},
2880};
2881
2882#define DATASLLEN \
2883 (sizeof(datastatelist) / sizeof(struct datastate))
2884
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08002885static int gsm0408_rcv_cc(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4bc90a12008-12-27 16:32:52 +00002886{
2887 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyr531734a2016-03-14 16:13:24 +01002888 uint8_t msg_type = gsm48_hdr_msg_type(gh);
Neels Hofmeyr961bd0b2016-03-14 16:13:25 +01002889 uint8_t transaction_id = gsm48_hdr_trans_id_flip_ti(gh);
Harald Weltedcaf5652009-07-23 18:56:43 +02002890 struct gsm_trans *trans = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002891 int i, rc = 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00002892
Harald Welte4bfdfe72009-06-10 23:11:52 +08002893 if (msg_type & 0x80) {
2894 DEBUGP(DCC, "MSG 0x%2x not defined for PD error\n", msg_type);
2895 return -EINVAL;
Harald Welte4bc90a12008-12-27 16:32:52 +00002896 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01002897
Harald Welte9066b742016-06-19 18:06:02 +02002898 if (!conn->vsub) {
2899 LOGP(DCC, LOGL_ERROR, "Invalid conn: no subscriber\n");
Neels Hofmeyr35706dd2016-12-22 01:58:03 +01002900 return -EINVAL;
2901 }
2902
Harald Welte4bfdfe72009-06-10 23:11:52 +08002903 /* Find transaction */
Jacob Erlbeckdae1f642014-12-02 14:22:53 +01002904 trans = trans_find_by_id(conn, GSM48_PDISC_CC, transaction_id);
Harald Weltedcaf5652009-07-23 18:56:43 +02002905
Neels Hofmeyrce67be12017-05-08 15:12:20 +02002906#if BEFORE_MSCSPLIT
2907 /* Re-enable this log output once we can obtain this information via
2908 * A-interface, see OS#2391. */
Harald Welte6f5aee02009-07-23 21:21:14 +02002909 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08002910 "Received '%s' from MS in state %d (%s)\n",
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08002911 conn->bts->nr, conn->lchan->ts->trx->nr, conn->lchan->ts->nr,
Harald Welte9066b742016-06-19 18:06:02 +02002912 transaction_id, vlr_subscr_msisdn_or_name(conn->vsub),
Harald Weltee95daf12010-03-25 12:13:02 +08002913 gsm48_cc_msg_name(msg_type), trans?(trans->cc.state):0,
2914 gsm48_cc_state_name(trans?(trans->cc.state):0));
Neels Hofmeyrce67be12017-05-08 15:12:20 +02002915#endif
Harald Welte4bfdfe72009-06-10 23:11:52 +08002916
2917 /* Create transaction */
2918 if (!trans) {
Harald Welte6f5aee02009-07-23 21:21:14 +02002919 DEBUGP(DCC, "Unknown transaction ID %x, "
Harald Welte4bfdfe72009-06-10 23:11:52 +08002920 "creating new trans.\n", transaction_id);
2921 /* Create transaction */
Harald Welte9066b742016-06-19 18:06:02 +02002922 trans = trans_alloc(conn->network, conn->vsub,
Jacob Erlbeckaf792d62014-12-02 14:22:53 +01002923 GSM48_PDISC_CC,
Harald Weltedcaf5652009-07-23 18:56:43 +02002924 transaction_id, new_callref++);
2925 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002926 DEBUGP(DCC, "No memory for trans.\n");
Holger Hans Peter Freytherb549ddf2011-01-16 18:17:04 +01002927 rc = gsm48_tx_simple(conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02002928 GSM48_PDISC_CC | (transaction_id << 4),
Harald Welte4bfdfe72009-06-10 23:11:52 +08002929 GSM48_MT_CC_RELEASE_COMPL);
2930 return -ENOMEM;
2931 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08002932 /* Assign transaction */
Harald Welte9066b742016-06-19 18:06:02 +02002933 trans->conn = msc_subscr_conn_get(conn);
2934 cm_service_request_concludes(conn, msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002935 }
2936
2937 /* find function for current state and message */
2938 for (i = 0; i < DATASLLEN; i++)
2939 if ((msg_type == datastatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02002940 && ((1 << trans->cc.state) & datastatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08002941 break;
2942 if (i == DATASLLEN) {
2943 DEBUGP(DCC, "Message unhandled at this state.\n");
2944 return 0;
2945 }
2946
Harald Welte9066b742016-06-19 18:06:02 +02002947 assert(trans->vsub);
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02002948
Harald Welte4bfdfe72009-06-10 23:11:52 +08002949 rc = datastatelist[i].rout(trans, msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00002950
Harald Welte9066b742016-06-19 18:06:02 +02002951 msc_subscr_conn_communicating(conn);
Harald Welte4bc90a12008-12-27 16:32:52 +00002952 return rc;
2953}
2954
Harald Welte9066b742016-06-19 18:06:02 +02002955static bool msg_is_initially_permitted(const struct gsm48_hdr *hdr)
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08002956{
Harald Welte9066b742016-06-19 18:06:02 +02002957 uint8_t pdisc = gsm48_hdr_pdisc(hdr);
2958 uint8_t msg_type = gsm48_hdr_msg_type(hdr);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08002959
Harald Welte9066b742016-06-19 18:06:02 +02002960 switch (pdisc) {
2961 case GSM48_PDISC_MM:
2962 switch (msg_type) {
2963 case GSM48_MT_MM_LOC_UPD_REQUEST:
2964 case GSM48_MT_MM_CM_SERV_REQ:
2965 case GSM48_MT_MM_AUTH_RESP:
2966 case GSM48_MT_MM_AUTH_FAIL:
2967 case GSM48_MT_MM_ID_RESP:
2968 case GSM48_MT_MM_TMSI_REALL_COMPL:
2969 case GSM48_MT_MM_IMSI_DETACH_IND:
2970 return true;
2971 default:
2972 break;
2973 }
2974 break;
2975 case GSM48_PDISC_RR:
2976 switch (msg_type) {
2977 case GSM48_MT_RR_CIPH_M_COMPL:
2978 case GSM48_MT_RR_PAG_RESP:
2979 return true;
2980 default:
2981 break;
2982 }
2983 break;
2984 default:
2985 break;
Neels Hofmeyr42eb0142016-05-20 17:15:44 +02002986 }
2987
Harald Welte9066b742016-06-19 18:06:02 +02002988 return false;
Neels Hofmeyr42eb0142016-05-20 17:15:44 +02002989}
2990
Harald Welte9066b742016-06-19 18:06:02 +02002991void cm_service_request_concludes(struct gsm_subscriber_connection *conn,
2992 struct msgb *msg)
2993{
2994
2995 /* If a CM Service Request was received before, this is the request the
2996 * conn was opened for. No need to wait for further messages. */
2997
2998 if (!conn->received_cm_service_request)
2999 return;
3000
3001 if (log_check_level(DMM, LOGL_DEBUG)) {
3002 struct gsm48_hdr *gh = msgb_l3(msg);
3003 uint8_t pdisc = gsm48_hdr_pdisc(gh);
3004 uint8_t msg_type = gsm48_hdr_msg_type(gh);
3005
3006 DEBUGP(DMM, "%s pdisc=%d msg_type=0x%02x:"
3007 " received_cm_service_request changes to false\n",
3008 vlr_subscr_name(conn->vsub),
3009 pdisc, msg_type);
3010 }
3011 conn->received_cm_service_request = false;
3012}
3013
3014
Neels Hofmeyr378a4922016-05-09 21:07:43 +02003015/* 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 +08003016int gsm0408_dispatch(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00003017{
3018 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyr531734a2016-03-14 16:13:24 +01003019 uint8_t pdisc = gsm48_hdr_pdisc(gh);
Harald Welte8470bf22008-12-25 23:28:35 +00003020 int rc = 0;
Harald Welte51008772009-12-29 11:49:12 +01003021
Neels Hofmeyrffaed9e2016-05-09 21:38:51 +02003022 OSMO_ASSERT(conn);
3023 OSMO_ASSERT(msg);
3024
Jacob Erlbeck8e68b562014-01-30 21:01:12 +01003025 LOGP(DRLL, LOGL_DEBUG, "Dispatching 04.08 message, pdisc=%d\n", pdisc);
Harald Welte9066b742016-06-19 18:06:02 +02003026
3027 if (!msc_subscr_conn_is_accepted(conn)
3028 && !msg_is_initially_permitted(gh)) {
3029 LOGP(DRLL, LOGL_ERROR,
3030 "subscr %s: Message not permitted for initial conn:"
3031 " pdisc=0x%02x msg_type=0x%02x\n",
3032 vlr_subscr_name(conn->vsub), gh->proto_discr, gh->msg_type);
3033 return -EACCES;
3034 }
3035
Neels Hofmeyr2188a772016-05-20 21:59:55 +02003036 if (conn->vsub && conn->vsub->cs.attached_via_ran != conn->via_ran) {
3037 LOGP(DMM, LOGL_ERROR,
3038 "%s: Illegal situation: RAN type mismatch:"
3039 " attached via %s, received message via %s\n",
3040 vlr_subscr_name(conn->vsub),
3041 ran_type_name(conn->vsub->cs.attached_via_ran),
3042 ran_type_name(conn->via_ran));
3043 return -EACCES;
3044 }
3045
Philipp Maiere0d5caa2017-02-27 16:56:59 +01003046#if 0
Holger Hans Peter Freyther758f4df2010-06-21 10:34:03 +08003047 if (silent_call_reroute(conn, msg))
3048 return silent_call_rx(conn, msg);
Philipp Maiere0d5caa2017-02-27 16:56:59 +01003049#endif
Alexander Couzensfbd96f52016-08-29 18:40:02 +02003050
Harald Welte52b1f982008-12-23 20:25:15 +00003051 switch (pdisc) {
3052 case GSM48_PDISC_CC:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003053 rc = gsm0408_rcv_cc(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003054 break;
3055 case GSM48_PDISC_MM:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003056 rc = gsm0408_rcv_mm(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003057 break;
3058 case GSM48_PDISC_RR:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003059 rc = gsm0408_rcv_rr(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003060 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00003061 case GSM48_PDISC_SMS:
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +08003062 rc = gsm0411_rcv_sms(conn, msg);
Harald Weltebcae43f2008-12-27 21:45:37 +00003063 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003064 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00003065 case GSM48_PDISC_SM_GPRS:
Harald Welte5d24ba12009-12-24 12:13:17 +01003066 LOGP(DRLL, LOGL_NOTICE, "Unimplemented "
3067 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Neels Hofmeyrffaed9e2016-05-09 21:38:51 +02003068 rc = -ENOTSUP;
Harald Welte52b1f982008-12-23 20:25:15 +00003069 break;
Harald Welte6eafe912009-10-16 08:32:58 +02003070 case GSM48_PDISC_NC_SS:
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +08003071 rc = handle_rcv_ussd(conn, msg);
Harald Welte6eafe912009-10-16 08:32:58 +02003072 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003073 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01003074 LOGP(DRLL, LOGL_NOTICE, "Unknown "
3075 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Neels Hofmeyrffaed9e2016-05-09 21:38:51 +02003076 rc = -EINVAL;
Harald Welte52b1f982008-12-23 20:25:15 +00003077 break;
3078 }
3079
3080 return rc;
3081}
Harald Welte8470bf22008-12-25 23:28:35 +00003082
Harald Welte9066b742016-06-19 18:06:02 +02003083/***********************************************************************
3084 * VLR integration
3085 ***********************************************************************/
3086
3087/* VLR asks us to send an authentication request */
3088static int msc_vlr_tx_auth_req(void *msc_conn_ref, struct gsm_auth_tuple *at,
3089 bool send_autn)
3090{
3091 struct gsm_subscriber_connection *conn = msc_conn_ref;
3092 return gsm48_tx_mm_auth_req(conn, at->vec.rand,
3093 send_autn? at->vec.autn : NULL,
3094 at->key_seq);
3095}
3096
3097/* VLR asks us to send an authentication reject */
3098static int msc_vlr_tx_auth_rej(void *msc_conn_ref)
3099{
3100 struct gsm_subscriber_connection *conn = msc_conn_ref;
3101 return gsm48_tx_mm_auth_rej(conn);
3102}
3103
3104/* VLR asks us to transmit an Identity Request of given type */
3105static int msc_vlr_tx_id_req(void *msc_conn_ref, uint8_t mi_type)
3106{
3107 struct gsm_subscriber_connection *conn = msc_conn_ref;
3108 return mm_tx_identity_req(conn, mi_type);
3109}
3110
3111/* VLR asks us to transmit a Location Update Accept */
3112static int msc_vlr_tx_lu_acc(void *msc_conn_ref, uint32_t send_tmsi)
3113{
3114 struct gsm_subscriber_connection *conn = msc_conn_ref;
3115 return gsm0408_loc_upd_acc(conn, send_tmsi);
3116}
3117
3118/* VLR asks us to transmit a Location Update Reject */
3119static int msc_vlr_tx_lu_rej(void *msc_conn_ref, uint8_t cause)
3120{
3121 struct gsm_subscriber_connection *conn = msc_conn_ref;
3122 return gsm0408_loc_upd_rej(conn, cause);
3123}
3124
3125/* VLR asks us to transmit a CM Service Accept */
3126static int msc_vlr_tx_cm_serv_acc(void *msc_conn_ref)
3127{
3128 struct gsm_subscriber_connection *conn = msc_conn_ref;
Neels Hofmeyr2188a772016-05-20 21:59:55 +02003129 return msc_gsm48_tx_mm_serv_ack(conn);
3130}
3131
3132static int msc_vlr_tx_common_id(void *msc_conn_ref)
3133{
3134 struct gsm_subscriber_connection *conn = msc_conn_ref;
3135 return msc_tx_common_id(conn);
Harald Welte9066b742016-06-19 18:06:02 +02003136}
3137
3138/* VLR asks us to transmit a CM Service Reject */
3139static int msc_vlr_tx_cm_serv_rej(void *msc_conn_ref, enum vlr_proc_arq_result result)
3140{
3141 uint8_t cause;
3142 struct gsm_subscriber_connection *conn = msc_conn_ref;
3143 conn->received_cm_service_request = false;
3144
3145 switch (result) {
3146 default:
3147 case VLR_PR_ARQ_RES_NONE:
3148 case VLR_PR_ARQ_RES_SYSTEM_FAILURE:
3149 case VLR_PR_ARQ_RES_UNKNOWN_ERROR:
3150 cause = GSM48_REJECT_NETWORK_FAILURE;
3151 break;
3152 case VLR_PR_ARQ_RES_ILLEGAL_SUBSCR:
3153 cause = GSM48_REJECT_LOC_NOT_ALLOWED;
3154 break;
3155 case VLR_PR_ARQ_RES_UNIDENT_SUBSCR:
3156 cause = GSM48_REJECT_INVALID_MANDANTORY_INF;
3157 break;
3158 case VLR_PR_ARQ_RES_ROAMING_NOTALLOWED:
3159 cause = GSM48_REJECT_ROAMING_NOT_ALLOWED;
3160 break;
3161 case VLR_PR_ARQ_RES_ILLEGAL_EQUIP:
3162 cause = GSM48_REJECT_ILLEGAL_MS;
3163 break;
3164 case VLR_PR_ARQ_RES_TIMEOUT:
3165 cause = GSM48_REJECT_CONGESTION;
3166 break;
3167 };
3168
Neels Hofmeyr2188a772016-05-20 21:59:55 +02003169 return msc_gsm48_tx_mm_serv_rej(conn, cause);
Harald Welte9066b742016-06-19 18:06:02 +02003170}
3171
3172/* VLR asks us to start using ciphering */
3173static int msc_vlr_set_ciph_mode(void *msc_conn_ref,
3174 enum vlr_ciph ciph,
3175 bool retrieve_imeisv)
3176{
3177 struct gsm_subscriber_connection *conn = msc_conn_ref;
3178 struct vlr_subscr *vsub;
3179 struct gsm_auth_tuple *tuple;
3180
3181 if (!conn || !conn->vsub) {
3182 LOGP(DMM, LOGL_ERROR, "Cannot send Ciphering Mode Command to"
3183 " NULL conn/subscriber");
3184 return -EINVAL;
3185 }
3186
3187 vsub = conn->vsub;
3188 tuple = vsub->last_tuple;
3189
3190 if (!tuple) {
3191 LOGP(DMM, LOGL_ERROR, "subscr %s: Cannot send Ciphering Mode"
3192 " Command: no auth tuple available\n",
3193 vlr_subscr_name(vsub));
3194 return -EINVAL;
3195 }
3196
Neels Hofmeyr2188a772016-05-20 21:59:55 +02003197 switch (conn->via_ran) {
3198 case RAN_GERAN_A:
3199 DEBUGP(DMM, "-> CIPHER MODE COMMAND %s\n",
3200 vlr_subscr_name(conn->vsub));
3201 return msc_gsm0808_tx_cipher_mode(conn, ciph, tuple->vec.kc, 8,
3202 retrieve_imeisv);
3203 case RAN_UTRAN_IU:
3204#ifdef BUILD_IU
3205 DEBUGP(DMM, "-> SECURITY MODE CONTROL %s\n",
3206 vlr_subscr_name(conn->vsub));
3207 return iu_tx_sec_mode_cmd(conn->iu.ue_ctx, tuple, 0, 1);
3208#else
3209 LOGP(DMM, LOGL_ERROR, "Cannot send Security Mode Control over RAN_UTRAN_IU,"
3210 " built without Iu support\n");
3211 return -ENOTSUP;
3212#endif
3213
3214 default:
3215 break;
3216 }
3217 LOGP(DMM, LOGL_ERROR,
3218 "%s: cannot start ciphering, unknown RAN type %d\n",
3219 vlr_subscr_name(conn->vsub), conn->via_ran);
3220 return -ENOTSUP;
3221}
3222
3223void msc_rx_sec_mode_compl(struct gsm_subscriber_connection *conn)
3224{
3225 struct vlr_ciph_result vlr_res = {};
3226
3227 if (!conn || !conn->vsub) {
3228 LOGP(DMM, LOGL_ERROR,
3229 "Rx Security Mode Complete for invalid conn\n");
3230 return;
3231 }
3232
3233 DEBUGP(DMM, "<- SECURITY MODE COMPLETE %s\n",
3234 vlr_subscr_name(conn->vsub));
3235
3236 vlr_res.cause = VLR_CIPH_COMPL;
3237 vlr_subscr_rx_ciph_res(conn->vsub, &vlr_res);
Harald Welte9066b742016-06-19 18:06:02 +02003238}
3239
3240/* VLR informs us that the subscriber data has somehow been modified */
3241static void msc_vlr_subscr_update(struct vlr_subscr *subscr)
3242{
3243 /* FIXME */
3244}
3245
3246/* VLR informs us that the subscriber has been associated with a conn */
3247static void msc_vlr_subscr_assoc(void *msc_conn_ref,
3248 struct vlr_subscr *vsub)
3249{
3250 struct gsm_subscriber_connection *conn = msc_conn_ref;
3251 OSMO_ASSERT(!conn->vsub);
3252 conn->vsub = vlr_subscr_get(vsub);
Neels Hofmeyr2188a772016-05-20 21:59:55 +02003253 conn->vsub->cs.attached_via_ran = conn->via_ran;
Harald Welte9066b742016-06-19 18:06:02 +02003254}
3255
3256/* operations that we need to implement for libvlr */
3257static const struct vlr_ops msc_vlr_ops = {
3258 .tx_auth_req = msc_vlr_tx_auth_req,
3259 .tx_auth_rej = msc_vlr_tx_auth_rej,
3260 .tx_id_req = msc_vlr_tx_id_req,
3261 .tx_lu_acc = msc_vlr_tx_lu_acc,
3262 .tx_lu_rej = msc_vlr_tx_lu_rej,
3263 .tx_cm_serv_acc = msc_vlr_tx_cm_serv_acc,
3264 .tx_cm_serv_rej = msc_vlr_tx_cm_serv_rej,
3265 .set_ciph_mode = msc_vlr_set_ciph_mode,
Neels Hofmeyr2188a772016-05-20 21:59:55 +02003266 .tx_common_id = msc_vlr_tx_common_id,
Harald Welte9066b742016-06-19 18:06:02 +02003267 .subscr_update = msc_vlr_subscr_update,
3268 .subscr_assoc = msc_vlr_subscr_assoc,
3269};
3270
3271/* Allocate net->vlr so that the VTY may configure the VLR's data structures */
3272int msc_vlr_alloc(struct gsm_network *net)
3273{
3274 net->vlr = vlr_alloc(net, &msc_vlr_ops);
3275 if (!net->vlr)
3276 return -ENOMEM;
3277 net->vlr->user_ctx = net;
3278 return 0;
3279}
3280
3281/* Launch the VLR, i.e. its GSUP connection */
3282int msc_vlr_start(struct gsm_network *net)
3283{
3284 OSMO_ASSERT(net->vlr);
3285 return vlr_start("MSC", net->vlr, net->gsup_server_addr_str,
3286 net->gsup_server_port);
3287}