blob: 76217ae5c3b8aaedbda38086141b3aac2c7f8a91 [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 Weltebf5e8df2009-02-03 12:59:45 +00004/* (C) 2008-2009 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freytherc121bb32012-12-26 10:17:42 +01005 * (C) 2008-2012 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte8470bf22008-12-25 23:28:35 +00006 *
Harald Welte52b1f982008-12-23 20:25:15 +00007 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010010 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
Harald Welte52b1f982008-12-23 20:25:15 +000012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Harald Welte52b1f982008-12-23 20:25:15 +000018 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010019 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte52b1f982008-12-23 20:25:15 +000021 *
22 */
23
24
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
Maxddee01f2016-05-24 14:23:27 +020028#include <stdbool.h>
Harald Welte52b1f982008-12-23 20:25:15 +000029#include <errno.h>
Harald Weltedb253af2008-12-30 17:56:55 +000030#include <time.h>
Harald Welte4b634542008-12-27 01:55:51 +000031#include <netinet/in.h>
Maxddee01f2016-05-24 14:23:27 +020032#include <regex.h>
33#include <sys/types.h>
Harald Welte52b1f982008-12-23 20:25:15 +000034
Harald Welte9c3dc902012-04-08 16:59:24 +020035#include "bscconfig.h"
36
Sylvain Munaut30a15382009-12-24 00:27:26 +010037#include <openbsc/auth.h>
Harald Welte75a983f2008-12-27 21:34:06 +000038#include <openbsc/db.h>
Harald Welte8470bf22008-12-25 23:28:35 +000039#include <openbsc/debug.h>
40#include <openbsc/gsm_data.h>
41#include <openbsc/gsm_subscriber.h>
Daniel Willmann8b3390e2008-12-28 00:31:09 +000042#include <openbsc/gsm_04_11.h>
Harald Welte8470bf22008-12-25 23:28:35 +000043#include <openbsc/gsm_04_08.h>
Holger Hans Peter Freythere0009f12010-08-12 01:41:57 +080044#include <openbsc/gsm_04_80.h>
Harald Welte8470bf22008-12-25 23:28:35 +000045#include <openbsc/abis_rsl.h>
Holger Freytherca362a62009-01-04 21:05:01 +000046#include <openbsc/chan_alloc.h>
Harald Welte0b4c34e2009-02-09 17:54:43 +000047#include <openbsc/paging.h>
Holger Freyther053e09d2009-02-14 22:51:06 +000048#include <openbsc/signal.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020049#include <osmocom/abis/trau_frame.h>
Harald Welte11fa29c2009-02-19 17:24:39 +000050#include <openbsc/trau_mux.h>
Harald Welte805f6442009-07-28 18:25:29 +020051#include <openbsc/rtp_proxy.h>
Harald Weltedcaf5652009-07-23 18:56:43 +020052#include <openbsc/transaction.h>
Harald Welte6eafe912009-10-16 08:32:58 +020053#include <openbsc/ussd.h>
Harald Welte51008772009-12-29 11:49:12 +010054#include <openbsc/silent_call.h>
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +080055#include <openbsc/bsc_api.h>
Holger Hans Peter Freyther88519ea2010-06-30 12:44:07 +080056#include <openbsc/osmo_msc.h>
Holger Hans Peter Freytherc121bb32012-12-26 10:17:42 +010057#include <openbsc/handover.h>
Holger Hans Peter Freyther53122b02015-08-20 19:10:58 +020058#include <openbsc/mncc_int.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020059#include <osmocom/abis/e1_input.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010060#include <osmocom/core/bitvec.h>
Holger Hans Peter Freyther841c2002010-09-30 18:52:23 +080061
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010062#include <osmocom/gsm/gsm48.h>
63#include <osmocom/gsm/gsm0480.h>
64#include <osmocom/gsm/gsm_utils.h>
Max8db12e42016-04-18 23:11:18 +020065#include <osmocom/gsm/protocol/gsm_04_08.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010066#include <osmocom/core/msgb.h>
67#include <osmocom/core/talloc.h>
68#include <osmocom/gsm/tlv.h>
Harald Welte52b1f982008-12-23 20:25:15 +000069
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +020070#include <assert.h>
71
Harald Welte (local)d19e58b2009-08-15 02:30:58 +020072void *tall_locop_ctx;
Sylvain Munaut30a15382009-12-24 00:27:26 +010073void *tall_authciphop_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +020074
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +020075static int tch_rtp_signal(struct gsm_lchan *lchan, int signal);
76
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +020077static int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn);
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +080078static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020079 uint8_t pdisc, uint8_t msg_type);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +010080static void schedule_reject(struct gsm_subscriber_connection *conn);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +080081static void release_anchor(struct gsm_subscriber_connection *conn);
Harald Welte65e74cc2008-12-29 01:55:35 +000082
Harald Welte52b1f982008-12-23 20:25:15 +000083struct gsm_lai {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020084 uint16_t mcc;
85 uint16_t mnc;
86 uint16_t lac;
Harald Welte52b1f982008-12-23 20:25:15 +000087};
88
Andreas Eversberga83d5112013-12-07 18:32:28 +010089static int apply_codec_restrictions(struct gsm_bts *bts,
90 struct gsm_mncc_bearer_cap *bcap)
91{
92 int i, j;
93
94 /* remove unsupported speech versions from list */
95 for (i = 0, j = 0; bcap->speech_ver[i] >= 0; i++) {
96 if (bcap->speech_ver[i] == GSM48_BCAP_SV_FR)
97 bcap->speech_ver[j++] = GSM48_BCAP_SV_FR;
98 if (bcap->speech_ver[i] == GSM48_BCAP_SV_EFR && bts->codec.efr)
99 bcap->speech_ver[j++] = GSM48_BCAP_SV_EFR;
100 if (bcap->speech_ver[i] == GSM48_BCAP_SV_AMR_F && bts->codec.amr)
101 bcap->speech_ver[j++] = GSM48_BCAP_SV_AMR_F;
102 if (bcap->speech_ver[i] == GSM48_BCAP_SV_HR && bts->codec.hr)
103 bcap->speech_ver[j++] = GSM48_BCAP_SV_HR;
104 if (bcap->speech_ver[i] == GSM48_BCAP_SV_AMR_H && bts->codec.amr)
105 bcap->speech_ver[j++] = GSM48_BCAP_SV_AMR_H;
106 }
107 bcap->speech_ver[j] = -1;
108
109 return 0;
110}
111
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200112static uint32_t new_callref = 0x80000001;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800113
Harald Welte31c00f72011-03-03 23:29:05 +0100114void cc_tx_to_mncc(struct gsm_network *net, struct msgb *msg)
115{
116 net->mncc_recv(net, msg);
117}
118
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800119static int gsm48_conn_sendmsg(struct msgb *msg, struct gsm_subscriber_connection *conn,
120 struct gsm_trans *trans)
121{
122 struct gsm48_hdr *gh = (struct gsm48_hdr *) msg->data;
123
124 /* if we get passed a transaction reference, do some common
125 * work that the caller no longer has to do */
126 if (trans) {
127 gh->proto_discr = trans->protocol | (trans->transaction_id << 4);
128 msg->lchan = trans->conn->lchan;
129 }
130
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800131 if (msg->lchan) {
Pablo Neira Ayuso7abecfc2011-08-17 22:43:54 +0200132 struct e1inp_sign_link *sign_link =
133 msg->lchan->ts->trx->rsl_link;
134
135 msg->dst = sign_link;
Neels Hofmeyr531734a2016-03-14 16:13:24 +0100136 if (gsm48_hdr_pdisc(gh) == GSM48_PDISC_CC)
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800137 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x) "
Pablo Neira Ayuso7abecfc2011-08-17 22:43:54 +0200138 "Sending '%s' to MS.\n",
139 sign_link->trx->bts->nr,
140 sign_link->trx->nr, msg->lchan->ts->nr,
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800141 gh->proto_discr & 0xf0,
142 gsm48_cc_msg_name(gh->msg_type));
143 else
144 DEBUGP(DCC, "(bts %d trx %d ts %d pd %02x) "
Pablo Neira Ayuso7abecfc2011-08-17 22:43:54 +0200145 "Sending 0x%02x to MS.\n",
146 sign_link->trx->bts->nr,
147 sign_link->trx->nr, msg->lchan->ts->nr,
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800148 gh->proto_discr, gh->msg_type);
149 }
150
Holger Hans Peter Freyther8d380dc2010-11-10 10:16:02 +0100151 return gsm0808_submit_dtap(conn, msg, 0, 0);
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800152}
Sylvain Munaut30a15382009-12-24 00:27:26 +0100153
Holger Hans Peter Freythere0009f12010-08-12 01:41:57 +0800154int gsm48_cc_tx_notify_ss(struct gsm_trans *trans, const char *message)
155{
156 struct gsm48_hdr *gh;
157 struct msgb *ss_notify;
158
159 ss_notify = gsm0480_create_notifySS(message);
160 if (!ss_notify)
161 return -1;
162
163 gsm0480_wrap_invoke(ss_notify, GSM0480_OP_CODE_NOTIFY_SS, 0);
164 uint8_t *data = msgb_push(ss_notify, 1);
165 data[0] = ss_notify->len - 1;
166 gh = (struct gsm48_hdr *) msgb_push(ss_notify, sizeof(*gh));
167 gh->msg_type = GSM48_MT_CC_FACILITY;
168 return gsm48_conn_sendmsg(ss_notify, trans->conn, trans);
169}
170
Harald Weltecf149ee2012-01-23 16:40:24 +0100171void release_security_operation(struct gsm_subscriber_connection *conn)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100172{
173 if (!conn->sec_operation)
174 return;
175
176 talloc_free(conn->sec_operation);
177 conn->sec_operation = NULL;
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800178 msc_release_connection(conn);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100179}
180
Harald Weltecf149ee2012-01-23 16:40:24 +0100181void allocate_security_operation(struct gsm_subscriber_connection *conn)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100182{
Sylvain Munaut30a15382009-12-24 00:27:26 +0100183 conn->sec_operation = talloc_zero(tall_authciphop_ctx,
184 struct gsm_security_operation);
185}
186
Sylvain Munaut0fbfd1b2010-12-01 22:37:05 +0100187int gsm48_secure_channel(struct gsm_subscriber_connection *conn, int key_seq,
188 gsm_cbfn *cb, void *cb_data)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100189{
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800190 struct gsm_network *net = conn->bts->network;
191 struct gsm_subscriber *subscr = conn->subscr;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100192 struct gsm_security_operation *op;
193 struct gsm_auth_tuple atuple;
194 int status = -1, rc;
195
196 /* Check if we _can_ enable encryption. Cases where we can't:
197 * - Encryption disabled in config
198 * - Channel already secured (nothing to do)
199 * - Subscriber equipment doesn't support configured encryption
200 */
201 if (!net->a5_encryption) {
202 status = GSM_SECURITY_NOAVAIL;
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800203 } else if (conn->lchan->encr.alg_id > RSL_ENC_ALG_A5(0)) {
Sylvain Munaut30a15382009-12-24 00:27:26 +0100204 DEBUGP(DMM, "Requesting to secure an already secure channel");
Andreas Eversberg641475c2013-07-10 08:58:03 +0200205 status = GSM_SECURITY_ALREADY;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100206 } else if (!ms_cm2_a5n_support(subscr->equipment.classmark2,
207 net->a5_encryption)) {
208 DEBUGP(DMM, "Subscriber equipment doesn't support requested encryption");
209 status = GSM_SECURITY_NOAVAIL;
210 }
211
212 /* If not done yet, try to get info for this user */
213 if (status < 0) {
214 rc = auth_get_tuple_for_subscr(&atuple, subscr, key_seq);
215 if (rc <= 0)
216 status = GSM_SECURITY_NOAVAIL;
217 }
218
219 /* Are we done yet ? */
220 if (status >= 0)
221 return cb ?
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800222 cb(GSM_HOOK_RR_SECURITY, status, NULL, conn, cb_data) :
Sylvain Munaut30a15382009-12-24 00:27:26 +0100223 0;
224
225 /* Start an operation (can't have more than one pending !!!) */
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800226 if (conn->sec_operation)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100227 return -EBUSY;
228
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800229 allocate_security_operation(conn);
230 op = conn->sec_operation;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100231 op->cb = cb;
232 op->cb_data = cb_data;
233 memcpy(&op->atuple, &atuple, sizeof(struct gsm_auth_tuple));
234
235 /* FIXME: Should start a timer for completion ... */
236
237 /* Then do whatever is needed ... */
Neels Hofmeyrd2fa7a52016-03-10 23:30:37 +0100238 if (rc == AUTH_DO_AUTH_THEN_CIPH) {
Sylvain Munaut30a15382009-12-24 00:27:26 +0100239 /* Start authentication */
Harald Welte121e9a42016-04-20 13:13:19 +0200240 return gsm48_tx_mm_auth_req(conn, op->atuple.vec.rand, op->atuple.key_seq);
Harald Welte86dda082010-12-23 18:07:49 +0100241 } else if (rc == AUTH_DO_CIPH) {
Sylvain Munaut30a15382009-12-24 00:27:26 +0100242 /* Start ciphering directly */
Sylvain Munaut67706df2010-11-29 08:19:04 +0100243 return gsm0808_cipher_mode(conn, net->a5_encryption,
Harald Welte121e9a42016-04-20 13:13:19 +0200244 op->atuple.vec.kc, 8, 0);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100245 }
246
247 return -EINVAL; /* not reached */
248}
249
Maxddee01f2016-05-24 14:23:27 +0200250static bool subscr_regexp_check(const struct gsm_network *net, const char *imsi)
251{
252 if (!net->authorized_reg_str)
253 return false;
254
255 if (regexec(&net->authorized_regexp, imsi, 0, NULL, 0) != REG_NOMATCH)
256 return true;
257
258 return false;
259}
260
Holger Freyther73487a22008-12-31 18:53:57 +0000261static int authorize_subscriber(struct gsm_loc_updating_operation *loc,
262 struct gsm_subscriber *subscriber)
Holger Freyther89824fc2008-12-30 16:18:18 +0000263{
264 if (!subscriber)
265 return 0;
266
Holger Freyther73487a22008-12-31 18:53:57 +0000267 /*
268 * Do not send accept yet as more information should arrive. Some
269 * phones will not send us the information and we will have to check
270 * what we want to do with that.
271 */
272 if (loc && (loc->waiting_for_imsi || loc->waiting_for_imei))
273 return 0;
274
Jacob Erlbeck1e30a282014-12-03 09:28:24 +0100275 switch (subscriber->group->net->auth_policy) {
Jan Luebbe06513f22009-08-12 12:48:00 +0200276 case GSM_AUTH_POLICY_CLOSED:
277 return subscriber->authorized;
Maxddee01f2016-05-24 14:23:27 +0200278 case GSM_AUTH_POLICY_REGEXP:
279 if (subscriber->authorized)
280 return 1;
281 if (subscr_regexp_check(subscriber->group->net,
282 subscriber->imsi))
283 subscriber->authorized = 1;
284 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200285 case GSM_AUTH_POLICY_TOKEN:
Harald Welte (local)ee9afe32009-08-13 20:44:23 +0200286 if (subscriber->authorized)
287 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200288 return (subscriber->flags & GSM_SUBSCRIBER_FIRST_CONTACT);
Jan Luebbe06513f22009-08-12 12:48:00 +0200289 case GSM_AUTH_POLICY_ACCEPT_ALL:
Holger Freyther89824fc2008-12-30 16:18:18 +0000290 return 1;
Jan Luebbe06513f22009-08-12 12:48:00 +0200291 default:
292 return 0;
293 }
Holger Freyther89824fc2008-12-30 16:18:18 +0000294}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000295
Holger Hans Peter Freyther1ba07302015-01-27 10:27:53 +0100296static void release_loc_updating_req(struct gsm_subscriber_connection *conn, int release)
Holger Freyther73487a22008-12-31 18:53:57 +0000297{
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100298 if (!conn->loc_operation)
Holger Freyther73487a22008-12-31 18:53:57 +0000299 return;
300
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +0800301 /* No need to keep the connection up */
302 release_anchor(conn);
303
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200304 osmo_timer_del(&conn->loc_operation->updating_timer);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100305 talloc_free(conn->loc_operation);
Holger Hans Peter Freytherf93e8fa2010-12-22 08:53:28 +0100306 conn->loc_operation = NULL;
Holger Hans Peter Freyther1ba07302015-01-27 10:27:53 +0100307 if (release)
308 msc_release_connection(conn);
Holger Freyther73487a22008-12-31 18:53:57 +0000309}
310
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100311static void allocate_loc_updating_req(struct gsm_subscriber_connection *conn)
Holger Freyther73487a22008-12-31 18:53:57 +0000312{
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800313 if (conn->loc_operation)
314 LOGP(DMM, LOGL_ERROR, "Connection already had operation.\n");
Holger Hans Peter Freyther1ba07302015-01-27 10:27:53 +0100315 release_loc_updating_req(conn, 0);
Holger Freyther73487a22008-12-31 18:53:57 +0000316
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100317 conn->loc_operation = talloc_zero(tall_locop_ctx,
Harald Welte470ec292009-06-26 20:25:23 +0200318 struct gsm_loc_updating_operation);
Holger Freyther73487a22008-12-31 18:53:57 +0000319}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000320
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200321static int finish_lu(struct gsm_subscriber_connection *conn)
322{
323 int rc = 0;
324 int avoid_tmsi = conn->bts->network->avoid_tmsi;
325
326 /* We're all good */
327 if (avoid_tmsi) {
328 conn->subscr->tmsi = GSM_RESERVED_TMSI;
329 db_sync_subscriber(conn->subscr);
330 } else {
331 db_subscriber_alloc_tmsi(conn->subscr);
332 }
333
334 rc = gsm0408_loc_upd_acc(conn);
335 if (conn->bts->network->send_mm_info) {
336 /* send MM INFO with network name */
337 rc = gsm48_tx_mm_info(conn);
338 }
339
340 /* call subscr_update after putting the loc_upd_acc
341 * in the transmit queue, since S_SUBSCR_ATTACHED might
342 * trigger further action like SMS delivery */
343 subscr_update(conn->subscr, conn->bts,
344 GSM_SUBSCRIBER_UPDATE_ATTACHED);
345
346 /*
347 * The gsm0408_loc_upd_acc sends a MI with the TMSI. The
348 * MS needs to respond with a TMSI REALLOCATION COMPLETE
349 * (even if the TMSI is the same).
350 */
351 if (avoid_tmsi)
352 release_loc_updating_req(conn, 1);
353
354 return rc;
355}
356
Sylvain Munaut267fba02009-12-24 00:28:01 +0100357static int _gsm0408_authorize_sec_cb(unsigned int hooknum, unsigned int event,
358 struct msgb *msg, void *data, void *param)
359{
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800360 struct gsm_subscriber_connection *conn = data;
Sylvain Munaut267fba02009-12-24 00:28:01 +0100361 int rc = 0;
362
363 switch (event) {
364 case GSM_SECURITY_AUTH_FAILED:
Holger Hans Peter Freyther1ba07302015-01-27 10:27:53 +0100365 release_loc_updating_req(conn, 1);
Sylvain Munaut267fba02009-12-24 00:28:01 +0100366 break;
367
Andreas Eversberga874b8d2013-07-10 08:58:03 +0200368 case GSM_SECURITY_ALREADY:
369 LOGP(DMM, LOGL_ERROR, "We don't expect LOCATION "
370 "UPDATING after CM SERVICE REQUEST\n");
371 /* fall through */
372
Sylvain Munaut267fba02009-12-24 00:28:01 +0100373 case GSM_SECURITY_NOAVAIL:
374 case GSM_SECURITY_SUCCEEDED:
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200375 rc = finish_lu(conn);
Sylvain Munaut267fba02009-12-24 00:28:01 +0100376 break;
377
378 default:
379 rc = -EINVAL;
380 };
381
382 return rc;
383}
384
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100385static int gsm0408_authorize(struct gsm_subscriber_connection *conn, struct msgb *msg)
Holger Freytherd51524f2009-06-09 08:27:07 +0000386{
Holger Hans Peter Freyther1a345ca2013-12-27 17:37:27 +0100387 if (!conn->loc_operation)
388 return 0;
389
Sylvain Munaut267fba02009-12-24 00:28:01 +0100390 if (authorize_subscriber(conn->loc_operation, conn->subscr))
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800391 return gsm48_secure_channel(conn,
Sylvain Munaut267fba02009-12-24 00:28:01 +0100392 conn->loc_operation->key_seq,
393 _gsm0408_authorize_sec_cb, NULL);
Holger Freytherd51524f2009-06-09 08:27:07 +0000394 return 0;
395}
396
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +0800397void gsm0408_clear_request(struct gsm_subscriber_connection *conn, uint32_t cause)
Holger Freyther7c19f742009-06-06 13:54:35 +0000398{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800399 struct gsm_trans *trans, *temp;
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800400
401 /* avoid someone issuing a clear */
402 conn->in_release = 1;
403
Holger Freyther7c19f742009-06-06 13:54:35 +0000404 /*
405 * Cancel any outstanding location updating request
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800406 * operation taking place on the subscriber connection.
Holger Freyther7c19f742009-06-06 13:54:35 +0000407 */
Neels Hofmeyraea28ce2016-05-04 15:30:30 +0200408 release_loc_updating_req(conn, 0);
Holger Hans Peter Freytherc29043e2010-12-28 14:57:20 +0100409
410 /* We might need to cancel the paging response or such. */
411 if (conn->sec_operation && conn->sec_operation->cb) {
412 conn->sec_operation->cb(GSM_HOOK_RR_SECURITY, GSM_SECURITY_AUTH_FAILED,
413 NULL, conn, conn->sec_operation->cb_data);
414 }
415
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800416 release_security_operation(conn);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +0800417 release_anchor(conn);
Holger Freyther7c19f742009-06-06 13:54:35 +0000418
Holger Hans Peter Freyther3e9b2ec2012-12-22 18:45:27 +0100419 /*
420 * Free all transactions that are associated with the released
421 * connection. The transaction code will inform the CC or SMS
422 * facilities that will send the release indications. As part of
423 * the CC REL_IND the remote leg might be released and this will
424 * trigger the call to trans_free. This is something the llist
425 * macro can not handle and we will need to re-iterate the list.
426 *
427 * TODO: Move the trans_list into the subscriber connection and
428 * create a pending list for MT transactions. These exist before
429 * we have a subscriber connection.
430 */
431restart:
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800432 llist_for_each_entry_safe(trans, temp, &conn->bts->network->trans_list, entry) {
Holger Hans Peter Freyther3e9b2ec2012-12-22 18:45:27 +0100433 if (trans->conn == conn) {
Harald Weltedcaf5652009-07-23 18:56:43 +0200434 trans_free(trans);
Holger Hans Peter Freyther3e9b2ec2012-12-22 18:45:27 +0100435 goto restart;
436 }
Harald Welte4bfdfe72009-06-10 23:11:52 +0800437 }
Holger Freyther7c19f742009-06-06 13:54:35 +0000438}
439
Harald Welte371efe52010-12-22 23:17:50 +0100440void gsm0408_clear_all_trans(struct gsm_network *net, int protocol)
441{
442 struct gsm_trans *trans, *temp;
443
444 LOGP(DCC, LOGL_NOTICE, "Clearing all currently active transactions!!!\n");
445
446 llist_for_each_entry_safe(trans, temp, &net->trans_list, entry) {
Harald Welteeb76c7a2010-12-23 02:47:53 +0100447 if (trans->protocol == protocol) {
448 trans->callref = 0;
Harald Welte371efe52010-12-22 23:17:50 +0100449 trans_free(trans);
Harald Welteeb76c7a2010-12-23 02:47:53 +0100450 }
Harald Welte371efe52010-12-22 23:17:50 +0100451 }
452}
453
Holger Freyther429e7762008-12-30 13:28:30 +0000454/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200455int gsm0408_loc_upd_rej(struct gsm_subscriber_connection *conn, uint8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000456{
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800457 struct gsm_bts *bts = conn->bts;
Holger Hans Peter Freyther230a4d82010-06-15 19:40:05 +0800458 struct msgb *msg;
459
Alexander Couzensb847a212016-08-02 11:34:11 +0200460 rate_ctr_inc(&bts->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_RESP_REJECT]);
Holger Hans Peter Freyther230a4d82010-06-15 19:40:05 +0800461
462 msg = gsm48_create_loc_upd_rej(cause);
463 if (!msg) {
464 LOGP(DMM, LOGL_ERROR, "Failed to create msg for LOCATION UPDATING REJECT.\n");
465 return -1;
466 }
Harald Welte52b1f982008-12-23 20:25:15 +0000467
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800468 msg->lchan = conn->lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000469
Harald Welte (local)198d5ad2009-12-26 22:15:28 +0100470 LOGP(DMM, LOGL_INFO, "Subscriber %s: LOCATION UPDATING REJECT "
Harald Welte7184bd02015-12-28 14:04:36 +0100471 "LAC=%u BTS=%u\n", subscr_name(conn->subscr),
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800472 bts->location_area_code, bts->nr);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100473
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800474 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000475}
476
477/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200478static int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn)
Harald Welte52b1f982008-12-23 20:25:15 +0000479{
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800480 struct gsm_bts *bts = conn->bts;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100481 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 LOC UPD ACC");
Harald Welte52b1f982008-12-23 20:25:15 +0000482 struct gsm48_hdr *gh;
483 struct gsm48_loc_area_id *lai;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200484 uint8_t *mid;
Harald Welte52b1f982008-12-23 20:25:15 +0000485
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800486 msg->lchan = conn->lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000487
488 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
489 gh->proto_discr = GSM48_PDISC_MM;
490 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
491
492 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Harald Welteafedeab2010-03-04 10:55:40 +0100493 gsm48_generate_lai(lai, bts->network->country_code,
Harald Welte52b1f982008-12-23 20:25:15 +0000494 bts->network->network_code, bts->location_area_code);
495
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +0200496 if (conn->subscr->tmsi == GSM_RESERVED_TMSI) {
497 uint8_t mi[10];
498 int len;
499 len = gsm48_generate_mid_from_imsi(mi, conn->subscr->imsi);
500 mid = msgb_put(msg, len);
501 memcpy(mid, mi, len);
502 } else {
503 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
504 gsm48_generate_mid_from_tmsi(mid, conn->subscr->tmsi);
505 }
Harald Welte52b1f982008-12-23 20:25:15 +0000506
507 DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n");
508
Alexander Couzensb847a212016-08-02 11:34:11 +0200509 rate_ctr_inc(&bts->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_RESP_ACCEPT]);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100510
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800511 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000512}
513
Harald Weltebf5e8df2009-02-03 12:59:45 +0000514/* Transmit Chapter 9.2.10 Identity Request */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200515static int mm_tx_identity_req(struct gsm_subscriber_connection *conn, uint8_t id_type)
Harald Welte231ad4f2008-12-27 11:15:38 +0000516{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100517 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 ID REQ");
Harald Welte231ad4f2008-12-27 11:15:38 +0000518 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000519
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800520 msg->lchan = conn->lchan;
Harald Welte231ad4f2008-12-27 11:15:38 +0000521
522 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
523 gh->proto_discr = GSM48_PDISC_MM;
524 gh->msg_type = GSM48_MT_MM_ID_REQ;
525 gh->data[0] = id_type;
526
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800527 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte231ad4f2008-12-27 11:15:38 +0000528}
529
Maxe21cf382016-05-11 11:01:06 +0200530static struct gsm_subscriber *subscr_create(const struct gsm_network *net,
531 const char *imsi)
532{
Maxe6052c42016-06-30 10:25:49 +0200533 if (!net->auto_create_subscr)
Maxddee01f2016-05-24 14:23:27 +0200534 return NULL;
Maxe21cf382016-05-11 11:01:06 +0200535
Maxe6052c42016-06-30 10:25:49 +0200536 if (!subscr_regexp_check(net, imsi))
537 return NULL;
Maxddee01f2016-05-24 14:23:27 +0200538
Maxe6052c42016-06-30 10:25:49 +0200539 return subscr_create_subscriber(net->subscr_group, imsi);
Maxe21cf382016-05-11 11:01:06 +0200540}
Harald Welte231ad4f2008-12-27 11:15:38 +0000541
Harald Weltebf5e8df2009-02-03 12:59:45 +0000542/* Parse Chapter 9.2.11 Identity Response */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800543static int mm_rx_id_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte231ad4f2008-12-27 11:15:38 +0000544{
545 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte75a983f2008-12-27 21:34:06 +0000546 struct gsm_lchan *lchan = msg->lchan;
Harald Welte9176bd42009-07-23 18:46:00 +0200547 struct gsm_bts *bts = lchan->ts->trx->bts;
548 struct gsm_network *net = bts->network;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200549 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200550 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000551
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200552 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welteb9845f92015-08-16 18:07:48 +0200553 DEBUGP(DMM, "IDENTITY RESPONSE: MI(%s)=%s\n",
554 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte231ad4f2008-12-27 11:15:38 +0000555
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200556 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, gh->data);
Harald Welte7659de12009-12-13 12:39:18 +0100557
Harald Welte75a983f2008-12-27 21:34:06 +0000558 switch (mi_type) {
559 case GSM_MI_TYPE_IMSI:
Jan Luebbe370b41d2009-08-12 10:19:34 +0200560 /* look up subscriber based on IMSI, create if not found */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100561 if (!conn->subscr) {
Jacob Erlbeck1e30a282014-12-03 09:28:24 +0100562 conn->subscr = subscr_get_by_imsi(net->subscr_group,
563 mi_string);
Maxe21cf382016-05-11 11:01:06 +0200564 if (!conn->subscr)
565 conn->subscr = subscr_create(net, mi_string);
Jan Luebbeb0dfc312009-08-12 10:12:52 +0200566 }
Holger Hans Peter Freyther1ba07302015-01-27 10:27:53 +0100567 if (!conn->subscr && conn->loc_operation) {
568 gsm0408_loc_upd_rej(conn, bts->network->reject_cause);
569 release_loc_updating_req(conn, 1);
570 return 0;
571 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100572 if (conn->loc_operation)
573 conn->loc_operation->waiting_for_imsi = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000574 break;
575 case GSM_MI_TYPE_IMEI:
Harald Welte255539c2008-12-28 02:26:27 +0000576 case GSM_MI_TYPE_IMEISV:
Harald Welte75a983f2008-12-27 21:34:06 +0000577 /* update subscribe <-> IMEI mapping */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100578 if (conn->subscr) {
579 db_subscriber_assoc_imei(conn->subscr, mi_string);
580 db_sync_equipment(&conn->subscr->equipment);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200581 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100582 if (conn->loc_operation)
583 conn->loc_operation->waiting_for_imei = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000584 break;
585 }
Holger Freyther73487a22008-12-31 18:53:57 +0000586
587 /* Check if we can let the mobile station enter */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100588 return gsm0408_authorize(conn, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000589}
590
Harald Welte255539c2008-12-28 02:26:27 +0000591
592static void loc_upd_rej_cb(void *data)
593{
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100594 struct gsm_subscriber_connection *conn = data;
595 struct gsm_lchan *lchan = conn->lchan;
Harald Welte1085c092009-11-18 20:33:19 +0100596 struct gsm_bts *bts = lchan->ts->trx->bts;
Harald Welte255539c2008-12-28 02:26:27 +0000597
Holger Hans Peter Freyther2692e3b2011-11-07 12:26:29 +0100598 LOGP(DMM, LOGL_DEBUG, "Location Updating Request procedure timedout.\n");
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800599 gsm0408_loc_upd_rej(conn, bts->network->reject_cause);
Holger Hans Peter Freyther1ba07302015-01-27 10:27:53 +0100600 release_loc_updating_req(conn, 1);
Harald Welte255539c2008-12-28 02:26:27 +0000601}
602
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100603static void schedule_reject(struct gsm_subscriber_connection *conn)
Holger Freytherb7193e42008-12-29 17:44:08 +0000604{
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100605 conn->loc_operation->updating_timer.cb = loc_upd_rej_cb;
606 conn->loc_operation->updating_timer.data = conn;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200607 osmo_timer_schedule(&conn->loc_operation->updating_timer, 5, 0);
Holger Freytherb7193e42008-12-29 17:44:08 +0000608}
609
Harald Welteb9845f92015-08-16 18:07:48 +0200610static const struct value_string lupd_names[] = {
611 { GSM48_LUPD_NORMAL, "NORMAL" },
612 { GSM48_LUPD_PERIODIC, "PERIODIC" },
613 { GSM48_LUPD_IMSI_ATT, "IMSI ATTACH" },
614 { 0, NULL }
615};
Harald Welte2a139372009-02-22 21:14:55 +0000616
Harald Weltebf5e8df2009-02-03 12:59:45 +0000617/* Chapter 9.2.15: Receive Location Updating Request */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800618static int mm_rx_loc_upd_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000619{
Harald Welte8470bf22008-12-25 23:28:35 +0000620 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000621 struct gsm48_loc_upd_req *lu;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800622 struct gsm_subscriber *subscr = NULL;
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800623 struct gsm_bts *bts = conn->bts;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200624 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200625 char mi_string[GSM48_MI_SIZE];
Harald Welte52b1f982008-12-23 20:25:15 +0000626
Harald Welte8470bf22008-12-25 23:28:35 +0000627 lu = (struct gsm48_loc_upd_req *) gh->data;
628
629 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +0000630
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200631 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Harald Weltefc977a82008-12-27 10:19:37 +0000632
Harald Welteb9845f92015-08-16 18:07:48 +0200633 DEBUGPC(DMM, "MI(%s)=%s type=%s ", gsm48_mi_type_name(mi_type),
634 mi_string, get_value_string(lupd_names, lu->type));
Holger Freyther73487a22008-12-31 18:53:57 +0000635
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200636 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, &lu->mi_len);
Harald Welte7659de12009-12-13 12:39:18 +0100637
Harald Welte24ff6ee2009-12-22 00:41:05 +0100638 switch (lu->type) {
639 case GSM48_LUPD_NORMAL:
Alexander Couzensb847a212016-08-02 11:34:11 +0200640 rate_ctr_inc(&bts->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_NORMAL]);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100641 break;
642 case GSM48_LUPD_IMSI_ATT:
Alexander Couzensb847a212016-08-02 11:34:11 +0200643 rate_ctr_inc(&bts->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_ATTACH]);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100644 break;
645 case GSM48_LUPD_PERIODIC:
Alexander Couzensb847a212016-08-02 11:34:11 +0200646 rate_ctr_inc(&bts->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_PERIODIC]);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100647 break;
648 }
649
Holger Freythereaf04692009-06-06 13:54:44 +0000650 /*
651 * Pseudo Spoof detection: Just drop a second/concurrent
652 * location updating request.
653 */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100654 if (conn->loc_operation) {
Harald Weltea0368542009-06-27 02:58:43 +0200655 DEBUGPC(DMM, "ignoring request due an existing one: %p.\n",
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100656 conn->loc_operation);
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800657 gsm0408_loc_upd_rej(conn, GSM48_REJECT_PROTOCOL_ERROR);
Holger Freythereaf04692009-06-06 13:54:44 +0000658 return 0;
659 }
660
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800661 allocate_loc_updating_req(conn);
Holger Freyther73487a22008-12-31 18:53:57 +0000662
Sylvain Munaut2030a2a2010-06-10 13:36:59 +0200663 conn->loc_operation->key_seq = lu->key_seq;
664
Harald Welte52b1f982008-12-23 20:25:15 +0000665 switch (mi_type) {
666 case GSM_MI_TYPE_IMSI:
Harald Weltea0368542009-06-27 02:58:43 +0200667 DEBUGPC(DMM, "\n");
Harald Welte231ad4f2008-12-27 11:15:38 +0000668 /* we always want the IMEI, too */
Holger Hans Peter Freythera5050b12012-09-11 11:55:03 +0200669 mm_tx_identity_req(conn, GSM_MI_TYPE_IMEI);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100670 conn->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000671
Jan Luebbe370b41d2009-08-12 10:19:34 +0200672 /* look up subscriber based on IMSI, create if not found */
Jacob Erlbeck1e30a282014-12-03 09:28:24 +0100673 subscr = subscr_get_by_imsi(bts->network->subscr_group, mi_string);
Maxe21cf382016-05-11 11:01:06 +0200674 if (!subscr)
675 subscr = subscr_create(bts->network, mi_string);
676
Holger Hans Peter Freyther1ba07302015-01-27 10:27:53 +0100677 if (!subscr) {
678 gsm0408_loc_upd_rej(conn, bts->network->reject_cause);
679 release_loc_updating_req(conn, 0);
680 return 0;
681 }
Harald Welte4b634542008-12-27 01:55:51 +0000682 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000683 case GSM_MI_TYPE_TMSI:
Harald Weltea0368542009-06-27 02:58:43 +0200684 DEBUGPC(DMM, "\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000685 /* look up the subscriber based on TMSI, request IMSI if it fails */
Jacob Erlbeck1e30a282014-12-03 09:28:24 +0100686 subscr = subscr_get_by_tmsi(bts->network->subscr_group,
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200687 tmsi_from_string(mi_string));
Harald Welte52b1f982008-12-23 20:25:15 +0000688 if (!subscr) {
Harald Welte231ad4f2008-12-27 11:15:38 +0000689 /* send IDENTITY REQUEST message to get IMSI */
Holger Hans Peter Freythera5050b12012-09-11 11:55:03 +0200690 mm_tx_identity_req(conn, GSM_MI_TYPE_IMSI);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100691 conn->loc_operation->waiting_for_imsi = 1;
Harald Welte52b1f982008-12-23 20:25:15 +0000692 }
Harald Weltef5f512c2010-06-07 17:56:32 +0200693 /* we always want the IMEI, too */
Holger Hans Peter Freythera5050b12012-09-11 11:55:03 +0200694 mm_tx_identity_req(conn, GSM_MI_TYPE_IMEI);
Harald Weltef5f512c2010-06-07 17:56:32 +0200695 conn->loc_operation->waiting_for_imei = 1;
Harald Welte52b1f982008-12-23 20:25:15 +0000696 break;
697 case GSM_MI_TYPE_IMEI:
698 case GSM_MI_TYPE_IMEISV:
699 /* no sim card... FIXME: what to do ? */
Harald Weltea0368542009-06-27 02:58:43 +0200700 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000701 break;
702 default:
Harald Weltea0368542009-06-27 02:58:43 +0200703 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000704 break;
705 }
706
Harald Welte24516ea2009-07-04 10:18:00 +0200707 /* schedule the reject timer */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100708 schedule_reject(conn);
Harald Welte24516ea2009-07-04 10:18:00 +0200709
Harald Welte4bfdfe72009-06-10 23:11:52 +0800710 if (!subscr) {
Harald Weltea0368542009-06-27 02:58:43 +0200711 DEBUGPC(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte4bfdfe72009-06-10 23:11:52 +0800712 /* FIXME: request id? close channel? */
713 return -EINVAL;
714 }
715
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100716 conn->subscr = subscr;
717 conn->subscr->equipment.classmark1 = lu->classmark1;
Harald Welte255539c2008-12-28 02:26:27 +0000718
Harald Welte24516ea2009-07-04 10:18:00 +0200719 /* check if we can let the subscriber into our network immediately
720 * or if we need to wait for identity responses. */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100721 return gsm0408_authorize(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000722}
723
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100724/* Turn int into semi-octet representation: 98 => 0x89 */
725static uint8_t bcdify(uint8_t value)
Harald Welte4bfdfe72009-06-10 23:11:52 +0800726{
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100727 uint8_t ret;
728
729 ret = value / 10;
730 ret |= (value % 10) << 4;
731
732 return ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800733}
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100734
Harald Welte4bfdfe72009-06-10 23:11:52 +0800735
Harald Weltedb253af2008-12-30 17:56:55 +0000736/* Section 9.2.15a */
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800737int gsm48_tx_mm_info(struct gsm_subscriber_connection *conn)
Harald Weltedb253af2008-12-30 17:56:55 +0000738{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100739 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 MM INF");
Harald Weltedb253af2008-12-30 17:56:55 +0000740 struct gsm48_hdr *gh;
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800741 struct gsm_network *net = conn->bts->network;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100742 struct gsm_bts *bts = conn->bts;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200743 uint8_t *ptr8;
Daniel Willmanneea93372009-08-13 03:42:07 +0200744 int name_len, name_pad;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100745
Harald Welte4bfdfe72009-06-10 23:11:52 +0800746 time_t cur_t;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100747 struct tm* gmt_time;
748 struct tm* local_time;
749 int tzunits;
Jacob Erlbeckf46e2262014-01-07 15:05:16 +0100750 int dst = 0;
Harald Weltedb253af2008-12-30 17:56:55 +0000751
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800752 msg->lchan = conn->lchan;
Harald Weltedb253af2008-12-30 17:56:55 +0000753
754 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
755 gh->proto_discr = GSM48_PDISC_MM;
756 gh->msg_type = GSM48_MT_MM_INFO;
757
758 if (net->name_long) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200759#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000760 name_len = strlen(net->name_long);
761 /* 10.5.3.5a */
762 ptr8 = msgb_put(msg, 3);
763 ptr8[0] = GSM48_IE_NAME_LONG;
764 ptr8[1] = name_len*2 +1;
765 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
766
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200767 ptr16 = (uint16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000768 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000769 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +0000770
771 /* FIXME: Use Cell Broadcast, not UCS-2, since
772 * UCS-2 is only supported by later revisions of the spec */
Daniel Willmanneea93372009-08-13 03:42:07 +0200773#endif
774 name_len = (strlen(net->name_long)*7)/8;
775 name_pad = (8 - strlen(net->name_long)*7)%8;
776 if (name_pad > 0)
777 name_len++;
778 /* 10.5.3.5a */
779 ptr8 = msgb_put(msg, 3);
780 ptr8[0] = GSM48_IE_NAME_LONG;
781 ptr8[1] = name_len +1;
782 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
783
784 ptr8 = msgb_put(msg, name_len);
Harald Welte5468f762015-01-01 12:41:17 +0100785 gsm_7bit_encode_n(ptr8, name_len, net->name_long, NULL);
Daniel Willmanneea93372009-08-13 03:42:07 +0200786
Harald Weltedb253af2008-12-30 17:56:55 +0000787 }
788
789 if (net->name_short) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200790#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000791 name_len = strlen(net->name_short);
792 /* 10.5.3.5a */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200793 ptr8 = (uint8_t *) msgb_put(msg, 3);
Harald Welte7543eb72009-07-19 17:51:36 +0200794 ptr8[0] = GSM48_IE_NAME_SHORT;
Harald Weltedb253af2008-12-30 17:56:55 +0000795 ptr8[1] = name_len*2 + 1;
796 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
797
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200798 ptr16 = (uint16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000799 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000800 ptr16[i] = htons(net->name_short[i]);
Daniel Willmanneea93372009-08-13 03:42:07 +0200801#endif
802 name_len = (strlen(net->name_short)*7)/8;
803 name_pad = (8 - strlen(net->name_short)*7)%8;
804 if (name_pad > 0)
805 name_len++;
806 /* 10.5.3.5a */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200807 ptr8 = (uint8_t *) msgb_put(msg, 3);
Daniel Willmanneea93372009-08-13 03:42:07 +0200808 ptr8[0] = GSM48_IE_NAME_SHORT;
809 ptr8[1] = name_len +1;
810 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
811
812 ptr8 = msgb_put(msg, name_len);
Harald Welte5468f762015-01-01 12:41:17 +0100813 gsm_7bit_encode_n(ptr8, name_len, net->name_short, NULL);
Daniel Willmanneea93372009-08-13 03:42:07 +0200814
Harald Weltedb253af2008-12-30 17:56:55 +0000815 }
816
Harald Weltedb253af2008-12-30 17:56:55 +0000817 /* Section 10.5.3.9 */
818 cur_t = time(NULL);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100819 gmt_time = gmtime(&cur_t);
820
Harald Weltedb253af2008-12-30 17:56:55 +0000821 ptr8 = msgb_put(msg, 8);
822 ptr8[0] = GSM48_IE_NET_TIME_TZ;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100823 ptr8[1] = bcdify(gmt_time->tm_year % 100);
824 ptr8[2] = bcdify(gmt_time->tm_mon + 1);
825 ptr8[3] = bcdify(gmt_time->tm_mday);
826 ptr8[4] = bcdify(gmt_time->tm_hour);
827 ptr8[5] = bcdify(gmt_time->tm_min);
828 ptr8[6] = bcdify(gmt_time->tm_sec);
829
Harald Welte45f91712012-07-08 16:48:11 +0200830 if (bts->tz.override) {
831 /* Convert tz.hr and tz.mn to units */
832 if (bts->tz.hr < 0) {
833 tzunits = ((bts->tz.hr/-1)*4);
834 tzunits = tzunits + (bts->tz.mn/15);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100835 ptr8[7] = bcdify(tzunits);
836 /* Set negative time */
837 ptr8[7] |= 0x08;
838 }
839 else {
Harald Welte45f91712012-07-08 16:48:11 +0200840 tzunits = bts->tz.hr*4;
841 tzunits = tzunits + (bts->tz.mn/15);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100842 ptr8[7] = bcdify(tzunits);
843 }
Jacob Erlbeckf46e2262014-01-07 15:05:16 +0100844 /* Convert DST value */
845 if (bts->tz.dst >= 0 && bts->tz.dst <= 2)
846 dst = bts->tz.dst;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100847 }
848 else {
849 /* Need to get GSM offset and convert into 15 min units */
850 /* This probably breaks if gmtoff returns a value not evenly divisible by 15? */
851 local_time = localtime(&cur_t);
Harald Welte9c3dc902012-04-08 16:59:24 +0200852#ifdef HAVE_TM_GMTOFF_IN_TM
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100853 tzunits = (local_time->tm_gmtoff/60)/15;
Harald Welte9c3dc902012-04-08 16:59:24 +0200854#else
855#warning find a portable way to obtain the timezone offset
856 tzunits = 0;
857#endif
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100858 if (tzunits < 0) {
859 tzunits = tzunits/-1;
860 ptr8[7] = bcdify(tzunits);
861 /* Flip it to negative */
862 ptr8[7] |= 0x08;
863 }
864 else
865 ptr8[7] = bcdify(tzunits);
Jacob Erlbeckf46e2262014-01-07 15:05:16 +0100866
867 /* Does not support DST +2 */
868 if (local_time->tm_isdst)
869 dst = 1;
870 }
871
872 if (dst) {
873 ptr8 = msgb_put(msg, 3);
874 ptr8[0] = GSM48_IE_NET_DST;
875 ptr8[1] = 1;
876 ptr8[2] = dst;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100877 }
Harald Weltedb253af2008-12-30 17:56:55 +0000878
Daniel Willmanneea93372009-08-13 03:42:07 +0200879 DEBUGP(DMM, "-> MM INFO\n");
880
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800881 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Weltedb253af2008-12-30 17:56:55 +0000882}
883
Harald Welte7984d5c2009-08-12 22:56:50 +0200884/* Section 9.2.2 */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200885int gsm48_tx_mm_auth_req(struct gsm_subscriber_connection *conn, uint8_t *rand, int key_seq)
Harald Welte7984d5c2009-08-12 22:56:50 +0200886{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100887 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 AUTH REQ");
Harald Welte7984d5c2009-08-12 22:56:50 +0200888 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Sylvain Munaut849f5542009-09-27 11:10:17 +0200889 struct gsm48_auth_req *ar = (struct gsm48_auth_req *) msgb_put(msg, sizeof(*ar));
Harald Welte7984d5c2009-08-12 22:56:50 +0200890
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200891 DEBUGP(DMM, "-> AUTH REQ (rand = %s)\n", osmo_hexdump(rand, 16));
Harald Welte7984d5c2009-08-12 22:56:50 +0200892
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800893 msg->lchan = conn->lchan;
Harald Welte7984d5c2009-08-12 22:56:50 +0200894 gh->proto_discr = GSM48_PDISC_MM;
895 gh->msg_type = GSM48_MT_MM_AUTH_REQ;
896
Sylvain Munautbd55a6d2009-12-24 00:23:46 +0100897 ar->key_seq = key_seq;
Sylvain Munaut849f5542009-09-27 11:10:17 +0200898
Harald Welte7984d5c2009-08-12 22:56:50 +0200899 /* 16 bytes RAND parameters */
Harald Welte7984d5c2009-08-12 22:56:50 +0200900 if (rand)
Sylvain Munaut849f5542009-09-27 11:10:17 +0200901 memcpy(ar->rand, rand, 16);
Harald Welte7984d5c2009-08-12 22:56:50 +0200902
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800903 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte7984d5c2009-08-12 22:56:50 +0200904}
905
906/* Section 9.2.1 */
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800907int gsm48_tx_mm_auth_rej(struct gsm_subscriber_connection *conn)
Harald Welte7984d5c2009-08-12 22:56:50 +0200908{
909 DEBUGP(DMM, "-> AUTH REJECT\n");
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800910 return gsm48_tx_simple(conn, GSM48_PDISC_MM, GSM48_MT_MM_AUTH_REJ);
Harald Welte7984d5c2009-08-12 22:56:50 +0200911}
912
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100913/*
914 * At the 30C3 phones miss their periodic update
915 * interval a lot and then remain unreachable. In case
916 * we still know the TMSI we can just attach it again.
917 */
918static void implit_attach(struct gsm_subscriber_connection *conn)
919{
920 if (conn->subscr->lac != GSM_LAC_RESERVED_DETACHED)
921 return;
922
923 subscr_update(conn->subscr, conn->bts,
924 GSM_SUBSCRIBER_UPDATE_ATTACHED);
925}
926
927
Sylvain Munautba87f452009-12-24 00:28:46 +0100928static int _gsm48_rx_mm_serv_req_sec_cb(
929 unsigned int hooknum, unsigned int event,
930 struct msgb *msg, void *data, void *param)
931{
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800932 struct gsm_subscriber_connection *conn = data;
Sylvain Munautba87f452009-12-24 00:28:46 +0100933 int rc = 0;
934
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +0200935 /* auth failed or succeeded, the timer was stopped */
936 conn->expire_timer_stopped = 1;
937
Sylvain Munautba87f452009-12-24 00:28:46 +0100938 switch (event) {
939 case GSM_SECURITY_AUTH_FAILED:
940 /* Nothing to do */
941 break;
942
943 case GSM_SECURITY_NOAVAIL:
Andreas Eversberg641475c2013-07-10 08:58:03 +0200944 case GSM_SECURITY_ALREADY:
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800945 rc = gsm48_tx_mm_serv_ack(conn);
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100946 implit_attach(conn);
Sylvain Munautba87f452009-12-24 00:28:46 +0100947 break;
948
949 case GSM_SECURITY_SUCCEEDED:
950 /* nothing to do. CIPHER MODE COMMAND is
951 * implicit CM SERV ACK */
Holger Hans Peter Freyther2147bc42013-12-27 17:19:19 +0100952 implit_attach(conn);
Sylvain Munautba87f452009-12-24 00:28:46 +0100953 break;
954
955 default:
956 rc = -EINVAL;
957 };
958
959 return rc;
960}
961
Harald Welte4ed0e922009-01-10 03:17:30 +0000962/*
963 * Handle CM Service Requests
964 * a) Verify that the packet is long enough to contain the information
965 * we require otherwsie reject with INCORRECT_MESSAGE
966 * b) Try to parse the TMSI. If we do not have one reject
967 * c) Check that we know the subscriber with the TMSI otherwise reject
968 * with a HLR cause
969 * d) Set the subscriber on the gsm_lchan and accept
970 */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800971static int gsm48_rx_mm_serv_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4b634542008-12-27 01:55:51 +0000972{
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200973 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200974 char mi_string[GSM48_MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +0000975
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800976 struct gsm_bts *bts = conn->bts;
Harald Welteba4cf162009-01-10 01:49:35 +0000977 struct gsm_subscriber *subscr;
978 struct gsm48_hdr *gh = msgb_l3(msg);
979 struct gsm48_service_request *req =
980 (struct gsm48_service_request *)gh->data;
Holger Hans Peter Freyther5d658062010-05-14 08:02:08 +0800981 /* unfortunately in Phase1 the classmark2 length is variable */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200982 uint8_t classmark2_len = gh->data[1];
983 uint8_t *classmark2 = gh->data+2;
984 uint8_t mi_len = *(classmark2 + classmark2_len);
985 uint8_t *mi = (classmark2 + classmark2_len + 1);
Harald Welteba4cf162009-01-10 01:49:35 +0000986
Harald Weltec9e02182009-05-01 19:07:53 +0000987 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
Harald Welteba4cf162009-01-10 01:49:35 +0000988 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
Harald Weltec9e02182009-05-01 19:07:53 +0000989 DEBUGPC(DMM, "wrong sized message\n");
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800990 return gsm48_tx_mm_serv_rej(conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000991 GSM48_REJECT_INCORRECT_MESSAGE);
992 }
993
994 if (msg->data_len < req->mi_len + 6) {
Harald Weltec9e02182009-05-01 19:07:53 +0000995 DEBUGPC(DMM, "does not fit in packet\n");
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800996 return gsm48_tx_mm_serv_rej(conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000997 GSM48_REJECT_INCORRECT_MESSAGE);
998 }
999
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +02001000 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
Harald Weltec9e02182009-05-01 19:07:53 +00001001 mi_type = mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +02001002
1003 if (mi_type == GSM_MI_TYPE_IMSI) {
Harald Welteb9845f92015-08-16 18:07:48 +02001004 DEBUGPC(DMM, "serv_type=0x%02x MI(%s)=%s\n",
1005 req->cm_service_type, gsm48_mi_type_name(mi_type),
1006 mi_string);
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +02001007 subscr = subscr_get_by_imsi(bts->network->subscr_group,
1008 mi_string);
1009 } else if (mi_type == GSM_MI_TYPE_TMSI) {
Harald Welteb9845f92015-08-16 18:07:48 +02001010 DEBUGPC(DMM, "serv_type=0x%02x MI(%s)=%s\n",
1011 req->cm_service_type, gsm48_mi_type_name(mi_type),
1012 mi_string);
Holger Hans Peter Freyther666e36a2015-07-13 20:33:08 +02001013 subscr = subscr_get_by_tmsi(bts->network->subscr_group,
1014 tmsi_from_string(mi_string));
1015 } else {
1016 DEBUGPC(DMM, "mi_type is not expected: %d\n", mi_type);
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001017 return gsm48_tx_mm_serv_rej(conn,
Harald Welteba4cf162009-01-10 01:49:35 +00001018 GSM48_REJECT_INCORRECT_MESSAGE);
1019 }
1020
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +02001021 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, (classmark2 + classmark2_len));
Harald Welte7659de12009-12-13 12:39:18 +01001022
Harald Welte3ac7f102009-08-10 10:12:45 +02001023 if (is_siemens_bts(bts))
1024 send_siemens_mrpci(msg->lchan, classmark2-1);
1025
Holger Freythereb443982009-06-04 13:58:42 +00001026
Harald Welte2a139372009-02-22 21:14:55 +00001027 /* FIXME: if we don't know the TMSI, inquire abit IMSI and allocate new TMSI */
Harald Welte4ed0e922009-01-10 03:17:30 +00001028 if (!subscr)
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001029 return gsm48_tx_mm_serv_rej(conn,
Holger Hans Peter Freyther5f8a0c52015-07-13 14:28:29 +02001030 GSM48_REJECT_IMSI_UNKNOWN_IN_VLR);
Harald Welte4ed0e922009-01-10 03:17:30 +00001031
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001032 if (!conn->subscr)
1033 conn->subscr = subscr;
1034 else if (conn->subscr == subscr)
Sylvain Munautea3f6742009-12-18 18:28:10 +01001035 subscr_put(subscr); /* lchan already has a ref, don't need another one */
1036 else {
Harald Welte9bb7c702009-01-10 03:21:41 +00001037 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
1038 subscr_put(subscr);
1039 }
1040
Harald Weltec2e302d2009-07-05 14:08:13 +02001041 subscr->equipment.classmark2_len = classmark2_len;
1042 memcpy(subscr->equipment.classmark2, classmark2, classmark2_len);
1043 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001044
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +02001045 /* we will send a MM message soon */
1046 conn->expire_timer_stopped = 1;
1047
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001048 return gsm48_secure_channel(conn, req->cipher_key_seq,
Sylvain Munautba87f452009-12-24 00:28:46 +01001049 _gsm48_rx_mm_serv_req_sec_cb, NULL);
Harald Welte4b634542008-12-27 01:55:51 +00001050}
1051
Holger Hans Peter Freyther153b13b2012-07-10 08:53:27 +02001052static int gsm48_rx_mm_imsi_detach_ind(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte2a139372009-02-22 21:14:55 +00001053{
Holger Hans Peter Freyther153b13b2012-07-10 08:53:27 +02001054 struct gsm_bts *bts = conn->bts;
Harald Welte2a139372009-02-22 21:14:55 +00001055 struct gsm48_hdr *gh = msgb_l3(msg);
1056 struct gsm48_imsi_detach_ind *idi =
1057 (struct gsm48_imsi_detach_ind *) gh->data;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001058 uint8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001059 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001060 struct gsm_subscriber *subscr = NULL;
Harald Welte2a139372009-02-22 21:14:55 +00001061
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001062 gsm48_mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
Harald Welteb9845f92015-08-16 18:07:48 +02001063 DEBUGP(DMM, "IMSI DETACH INDICATION: MI(%s)=%s",
1064 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte2a139372009-02-22 21:14:55 +00001065
Alexander Couzensb847a212016-08-02 11:34:11 +02001066 rate_ctr_inc(&bts->network->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_TYPE_DETACH]);
Harald Welte24ff6ee2009-12-22 00:41:05 +01001067
Harald Welte2a139372009-02-22 21:14:55 +00001068 switch (mi_type) {
1069 case GSM_MI_TYPE_TMSI:
Daniel Willmann977cd132012-12-28 19:29:44 +01001070 DEBUGPC(DMM, "\n");
Jacob Erlbeck1e30a282014-12-03 09:28:24 +01001071 subscr = subscr_get_by_tmsi(bts->network->subscr_group,
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001072 tmsi_from_string(mi_string));
Harald Welte2a139372009-02-22 21:14:55 +00001073 break;
1074 case GSM_MI_TYPE_IMSI:
Daniel Willmann977cd132012-12-28 19:29:44 +01001075 DEBUGPC(DMM, "\n");
Jacob Erlbeck1e30a282014-12-03 09:28:24 +01001076 subscr = subscr_get_by_imsi(bts->network->subscr_group,
1077 mi_string);
Harald Welte2a139372009-02-22 21:14:55 +00001078 break;
1079 case GSM_MI_TYPE_IMEI:
1080 case GSM_MI_TYPE_IMEISV:
1081 /* no sim card... FIXME: what to do ? */
Daniel Willmann977cd132012-12-28 19:29:44 +01001082 DEBUGPC(DMM, ": unimplemented mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001083 break;
1084 default:
Daniel Willmann977cd132012-12-28 19:29:44 +01001085 DEBUGPC(DMM, ": unknown mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001086 break;
1087 }
1088
Holger Freyther4a49e772009-04-12 05:37:29 +00001089 if (subscr) {
Holger Hans Peter Freyther153b13b2012-07-10 08:53:27 +02001090 subscr_update(subscr, bts,
Neels Hofmeyr378a4922016-05-09 21:07:43 +02001091 GSM_SUBSCRIBER_UPDATE_DETACHED);
Harald Welte2e6d4682009-12-24 14:50:24 +01001092 DEBUGP(DMM, "Subscriber: %s\n", subscr_name(subscr));
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001093
1094 subscr->equipment.classmark1 = idi->classmark1;
1095 db_sync_equipment(&subscr->equipment);
1096
Holger Freytherc21cfbc2009-06-02 02:54:57 +00001097 subscr_put(subscr);
Holger Freyther4a49e772009-04-12 05:37:29 +00001098 } else
Harald Welte2a139372009-02-22 21:14:55 +00001099 DEBUGP(DMM, "Unknown Subscriber ?!?\n");
1100
Harald Welte31981a02009-12-20 09:58:40 +01001101 /* FIXME: iterate over all transactions and release them,
1102 * imagine an IMSI DETACH happening during an active call! */
1103
Holger Hans Peter Freyther153b13b2012-07-10 08:53:27 +02001104 release_anchor(conn);
Harald Welte2a139372009-02-22 21:14:55 +00001105 return 0;
1106}
1107
Harald Welted2a7f5a2009-06-05 20:08:20 +00001108static int gsm48_rx_mm_status(struct msgb *msg)
1109{
1110 struct gsm48_hdr *gh = msgb_l3(msg);
1111
1112 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
1113
1114 return 0;
1115}
1116
Sylvain Munaut30a15382009-12-24 00:27:26 +01001117/* Chapter 9.2.3: Authentication Response */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001118static int gsm48_rx_mm_auth_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Sylvain Munaut30a15382009-12-24 00:27:26 +01001119{
1120 struct gsm48_hdr *gh = msgb_l3(msg);
1121 struct gsm48_auth_resp *ar = (struct gsm48_auth_resp*) gh->data;
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +08001122 struct gsm_network *net = conn->bts->network;
Sylvain Munaut30a15382009-12-24 00:27:26 +01001123
Sylvain Munautc593cf12010-06-10 23:51:41 +02001124 DEBUGP(DMM, "MM AUTHENTICATION RESPONSE (sres = %s): ",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02001125 osmo_hexdump(ar->sres, 4));
Sylvain Munaut30a15382009-12-24 00:27:26 +01001126
1127 /* Safety check */
1128 if (!conn->sec_operation) {
1129 DEBUGP(DMM, "No authentication/cipher operation in progress !!!\n");
1130 return -EIO;
1131 }
1132
1133 /* Validate SRES */
Harald Welte121e9a42016-04-20 13:13:19 +02001134 if (memcmp(conn->sec_operation->atuple.vec.sres, ar->sres,4)) {
Holger Hans Peter Freyther59f787a2010-12-27 10:57:56 +01001135 int rc;
Sylvain Munaut30a15382009-12-24 00:27:26 +01001136 gsm_cbfn *cb = conn->sec_operation->cb;
Sylvain Munautc593cf12010-06-10 23:51:41 +02001137
1138 DEBUGPC(DMM, "Invalid (expected %s)\n",
Harald Welte121e9a42016-04-20 13:13:19 +02001139 osmo_hexdump(conn->sec_operation->atuple.vec.sres, 4));
Sylvain Munautc593cf12010-06-10 23:51:41 +02001140
Sylvain Munaut30a15382009-12-24 00:27:26 +01001141 if (cb)
1142 cb(GSM_HOOK_RR_SECURITY, GSM_SECURITY_AUTH_FAILED,
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +08001143 NULL, conn, conn->sec_operation->cb_data);
Sylvain Munaut30a15382009-12-24 00:27:26 +01001144
Holger Hans Peter Freyther59f787a2010-12-27 10:57:56 +01001145 rc = gsm48_tx_mm_auth_rej(conn);
Sylvain Munaut30a15382009-12-24 00:27:26 +01001146 release_security_operation(conn);
Holger Hans Peter Freyther59f787a2010-12-27 10:57:56 +01001147 return rc;
Sylvain Munaut30a15382009-12-24 00:27:26 +01001148 }
1149
Sylvain Munautc593cf12010-06-10 23:51:41 +02001150 DEBUGPC(DMM, "OK\n");
1151
Sylvain Munaut30a15382009-12-24 00:27:26 +01001152 /* Start ciphering */
Sylvain Munaut67706df2010-11-29 08:19:04 +01001153 return gsm0808_cipher_mode(conn, net->a5_encryption,
Harald Welte121e9a42016-04-20 13:13:19 +02001154 conn->sec_operation->atuple.vec.kc, 8, 0);
Sylvain Munaut30a15382009-12-24 00:27:26 +01001155}
1156
Harald Weltebf5e8df2009-02-03 12:59:45 +00001157/* Receive a GSM 04.08 Mobility Management (MM) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001158static int gsm0408_rcv_mm(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001159{
1160 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001161 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001162
Neels Hofmeyr531734a2016-03-14 16:13:24 +01001163 switch (gsm48_hdr_msg_type(gh)) {
Harald Welte52b1f982008-12-23 20:25:15 +00001164 case GSM48_MT_MM_LOC_UPD_REQUEST:
Harald Weltea0368542009-06-27 02:58:43 +02001165 DEBUGP(DMM, "LOCATION UPDATING REQUEST: ");
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001166 rc = mm_rx_loc_upd_req(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001167 break;
1168 case GSM48_MT_MM_ID_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001169 rc = mm_rx_id_resp(conn, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001170 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001171 case GSM48_MT_MM_CM_SERV_REQ:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001172 rc = gsm48_rx_mm_serv_req(conn, msg);
Harald Welte4b634542008-12-27 01:55:51 +00001173 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001174 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +00001175 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001176 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001177 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte69b2af22009-01-06 19:47:00 +00001178 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
Harald Welte7184bd02015-12-28 14:04:36 +01001179 subscr_name(conn->subscr));
Holger Hans Peter Freyther1ba07302015-01-27 10:27:53 +01001180 release_loc_updating_req(conn, 1);
Harald Welte69b2af22009-01-06 19:47:00 +00001181 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001182 case GSM48_MT_MM_IMSI_DETACH_IND:
Holger Hans Peter Freyther153b13b2012-07-10 08:53:27 +02001183 rc = gsm48_rx_mm_imsi_detach_ind(conn, msg);
Harald Welte2a139372009-02-22 21:14:55 +00001184 break;
1185 case GSM48_MT_MM_CM_REEST_REQ:
1186 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
1187 break;
1188 case GSM48_MT_MM_AUTH_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001189 rc = gsm48_rx_mm_auth_resp(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001190 break;
1191 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01001192 LOGP(DMM, LOGL_NOTICE, "Unknown GSM 04.08 MM msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00001193 gh->msg_type);
1194 break;
1195 }
1196
1197 return rc;
1198}
Harald Weltebf5e8df2009-02-03 12:59:45 +00001199
Harald Welte2d35ae62009-02-06 12:02:13 +00001200/* Receive a PAGING RESPONSE message from the MS */
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001201static int gsm48_rx_rr_pag_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte2d35ae62009-02-06 12:02:13 +00001202{
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001203 struct gsm_bts *bts = conn->bts;
Harald Welte2d35ae62009-02-06 12:02:13 +00001204 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001205 struct gsm48_pag_resp *resp;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001206 uint8_t *classmark2_lv = gh->data + 1;
1207 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001208 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001209 struct gsm_subscriber *subscr = NULL;
Harald Welte2d35ae62009-02-06 12:02:13 +00001210 int rc = 0;
1211
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001212 resp = (struct gsm48_pag_resp *) &gh->data[0];
1213 gsm48_paging_extract_mi(resp, msgb_l3len(msg) - sizeof(*gh),
1214 mi_string, &mi_type);
Harald Welteb9845f92015-08-16 18:07:48 +02001215 DEBUGP(DRR, "PAGING RESPONSE: MI(%s)=%s\n",
1216 gsm48_mi_type_name(mi_type), mi_string);
Harald Welte3ac7f102009-08-10 10:12:45 +02001217
Harald Weltefe18d8f2009-02-22 21:14:24 +00001218 switch (mi_type) {
1219 case GSM_MI_TYPE_TMSI:
Jacob Erlbeck1e30a282014-12-03 09:28:24 +01001220 subscr = subscr_get_by_tmsi(bts->network->subscr_group,
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001221 tmsi_from_string(mi_string));
Harald Weltefe18d8f2009-02-22 21:14:24 +00001222 break;
1223 case GSM_MI_TYPE_IMSI:
Jacob Erlbeck1e30a282014-12-03 09:28:24 +01001224 subscr = subscr_get_by_imsi(bts->network->subscr_group,
1225 mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +00001226 break;
1227 }
Harald Welte2d35ae62009-02-06 12:02:13 +00001228
1229 if (!subscr) {
1230 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte09e38af2009-02-16 22:52:23 +00001231 /* FIXME: request id? close channel? */
Harald Welte2d35ae62009-02-06 12:02:13 +00001232 return -EINVAL;
1233 }
Holger Hans Peter Freytherb7ccac42014-12-28 15:00:36 +01001234 log_set_context(BSC_CTX_SUBSCR, subscr);
Harald Welte2d35ae62009-02-06 12:02:13 +00001235 DEBUGP(DRR, "<- Channel was requested by %s\n",
Harald Welte76042182009-08-08 16:03:15 +02001236 subscr->name && strlen(subscr->name) ? subscr->name : subscr->imsi);
Holger Freyther053e09d2009-02-14 22:51:06 +00001237
Harald Weltec2e302d2009-07-05 14:08:13 +02001238 subscr->equipment.classmark2_len = *classmark2_lv;
1239 memcpy(subscr->equipment.classmark2, classmark2_lv+1, *classmark2_lv);
1240 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001241
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +02001242 /* We received a paging */
1243 conn->expire_timer_stopped = 1;
1244
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001245 rc = gsm48_handle_paging_resp(conn, msg, subscr);
Harald Welte2d35ae62009-02-06 12:02:13 +00001246 return rc;
1247}
1248
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001249static int gsm48_rx_rr_app_info(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001250{
1251 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001252 uint8_t apdu_id_flags;
1253 uint8_t apdu_len;
1254 uint8_t *apdu_data;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001255
1256 apdu_id_flags = gh->data[0];
1257 apdu_len = gh->data[1];
1258 apdu_data = gh->data+2;
1259
Harald Welte70f92052012-07-16 13:22:19 +02001260 DEBUGP(DRR, "RX APPLICATION INFO id/flags=0x%02x apdu_len=%u apdu=%s",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02001261 apdu_id_flags, apdu_len, osmo_hexdump(apdu_data, apdu_len));
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001262
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001263 return db_apdu_blob_store(conn->subscr, apdu_id_flags, apdu_len, apdu_data);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001264}
1265
Harald Weltebf5e8df2009-02-03 12:59:45 +00001266/* Receive a GSM 04.08 Radio Resource (RR) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001267static int gsm0408_rcv_rr(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001268{
1269 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001270 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001271
1272 switch (gh->msg_type) {
Harald Welte52b1f982008-12-23 20:25:15 +00001273 case GSM48_MT_RR_PAG_RESP:
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001274 rc = gsm48_rx_rr_pag_resp(conn, msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001275 break;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001276 case GSM48_MT_RR_APP_INFO:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001277 rc = gsm48_rx_rr_app_info(conn, msg);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001278 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001279 default:
Harald Weltecf149ee2012-01-23 16:40:24 +01001280 LOGP(DRR, LOGL_NOTICE, "MSC: Unimplemented "
Harald Welte5d24ba12009-12-24 12:13:17 +01001281 "GSM 04.08 RR msg type 0x%02x\n", gh->msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +00001282 break;
1283 }
1284
Harald Welte2d35ae62009-02-06 12:02:13 +00001285 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001286}
1287
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001288int gsm48_send_rr_app_info(struct gsm_subscriber_connection *conn, uint8_t apdu_id,
1289 uint8_t apdu_len, const uint8_t *apdu)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001290{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001291 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 APP INF");
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001292 struct gsm48_hdr *gh;
1293
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +08001294 msg->lchan = conn->lchan;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001295
1296 DEBUGP(DRR, "TX APPLICATION INFO id=0x%02x, len=%u\n",
1297 apdu_id, apdu_len);
1298
1299 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2 + apdu_len);
1300 gh->proto_discr = GSM48_PDISC_RR;
1301 gh->msg_type = GSM48_MT_RR_APP_INFO;
1302 gh->data[0] = apdu_id;
1303 gh->data[1] = apdu_len;
1304 memcpy(gh->data+2, apdu, apdu_len);
1305
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +08001306 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001307}
1308
Harald Welte4bc90a12008-12-27 16:32:52 +00001309/* Call Control */
1310
Harald Welte7584aea2009-02-11 11:44:12 +00001311/* The entire call control code is written in accordance with Figure 7.10c
1312 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1313 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1314 * it for voice */
1315
Harald Welte4bfdfe72009-06-10 23:11:52 +08001316static void new_cc_state(struct gsm_trans *trans, int state)
1317{
1318 if (state > 31 || state < 0)
1319 return;
1320
1321 DEBUGP(DCC, "new state %s -> %s\n",
Harald Weltee95daf192010-03-25 12:13:02 +08001322 gsm48_cc_state_name(trans->cc.state),
1323 gsm48_cc_state_name(state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001324
Harald Weltedcaf5652009-07-23 18:56:43 +02001325 trans->cc.state = state;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001326}
1327
1328static int gsm48_cc_tx_status(struct gsm_trans *trans, void *arg)
Harald Welte4bc90a12008-12-27 16:32:52 +00001329{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001330 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC STATUS");
Harald Welte4bc90a12008-12-27 16:32:52 +00001331 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001332 uint8_t *cause, *call_state;
Harald Welte4bc90a12008-12-27 16:32:52 +00001333
Harald Welte4bc90a12008-12-27 16:32:52 +00001334 gh->msg_type = GSM48_MT_CC_STATUS;
1335
1336 cause = msgb_put(msg, 3);
1337 cause[0] = 2;
1338 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1339 cause[2] = 0x80 | 30; /* response to status inquiry */
1340
1341 call_state = msgb_put(msg, 1);
1342 call_state[0] = 0xc0 | 0x00;
1343
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001344 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bc90a12008-12-27 16:32:52 +00001345}
1346
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001347static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001348 uint8_t pdisc, uint8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001349{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01001350 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 TX SIMPLE");
Harald Welte4bc90a12008-12-27 16:32:52 +00001351 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1352
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001353 msg->lchan = conn->lchan;
Harald Welte4bc90a12008-12-27 16:32:52 +00001354
Harald Welte6f4b7532008-12-29 00:39:37 +00001355 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001356 gh->msg_type = msg_type;
1357
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001358 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte4bc90a12008-12-27 16:32:52 +00001359}
1360
Harald Welte4bfdfe72009-06-10 23:11:52 +08001361static void gsm48_stop_cc_timer(struct gsm_trans *trans)
1362{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001363 if (osmo_timer_pending(&trans->cc.timer)) {
Harald Weltedcaf5652009-07-23 18:56:43 +02001364 DEBUGP(DCC, "stopping pending timer T%x\n", trans->cc.Tcurrent);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001365 osmo_timer_del(&trans->cc.timer);
Harald Weltedcaf5652009-07-23 18:56:43 +02001366 trans->cc.Tcurrent = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001367 }
1368}
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001369
Harald Welte4bfdfe72009-06-10 23:11:52 +08001370static int mncc_recvmsg(struct gsm_network *net, struct gsm_trans *trans,
1371 int msg_type, struct gsm_mncc *mncc)
1372{
1373 struct msgb *msg;
Harald Welte04dc88f2010-12-22 21:45:05 +01001374 unsigned char *data;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001375
1376 if (trans)
Harald Welteb854b292010-12-26 19:06:37 +01001377 if (trans->conn && trans->conn->lchan)
Harald Welte6f5aee02009-07-23 21:21:14 +02001378 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08001379 "Sending '%s' to MNCC.\n",
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001380 trans->conn->lchan->ts->trx->bts->nr,
1381 trans->conn->lchan->ts->trx->nr,
1382 trans->conn->lchan->ts->nr, trans->transaction_id,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001383 (trans->subscr)?(trans->subscr->extension):"-",
1384 get_mncc_name(msg_type));
1385 else
1386 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
1387 "Sending '%s' to MNCC.\n",
1388 (trans->subscr)?(trans->subscr->extension):"-",
1389 get_mncc_name(msg_type));
1390 else
1391 DEBUGP(DCC, "(bts - trx - ts - ti -- sub -) "
1392 "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
1393
1394 mncc->msg_type = msg_type;
1395
Harald Welte966636f2009-06-26 19:39:35 +02001396 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001397 if (!msg)
1398 return -ENOMEM;
Harald Welte04dc88f2010-12-22 21:45:05 +01001399
1400 data = msgb_put(msg, sizeof(struct gsm_mncc));
1401 memcpy(data, mncc, sizeof(struct gsm_mncc));
1402
Harald Welte54209c22010-12-22 23:43:29 +01001403 cc_tx_to_mncc(net, msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001404
1405 return 0;
1406}
1407
1408int mncc_release_ind(struct gsm_network *net, struct gsm_trans *trans,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001409 uint32_t callref, int location, int value)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001410{
1411 struct gsm_mncc rel;
1412
Harald Welte92f70c52009-06-12 01:54:08 +08001413 memset(&rel, 0, sizeof(rel));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001414 rel.callref = callref;
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001415 mncc_set_cause(&rel, location, value);
Andreas Eversberg15907272013-01-25 08:38:29 +01001416 if (trans && trans->cc.state == GSM_CSTATE_RELEASE_REQ)
1417 return mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001418 return mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
1419}
1420
Harald Weltedcaf5652009-07-23 18:56:43 +02001421/* Call Control Specific transaction release.
1422 * gets called by trans_free, DO NOT CALL YOURSELF! */
1423void _gsm48_cc_trans_free(struct gsm_trans *trans)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001424{
Harald Welte4bfdfe72009-06-10 23:11:52 +08001425 gsm48_stop_cc_timer(trans);
1426
1427 /* send release to L4, if callref still exists */
1428 if (trans->callref) {
1429 /* Ressource unavailable */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001430 mncc_release_ind(trans->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001431 GSM48_CAUSE_LOC_PRN_S_LU,
1432 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001433 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001434 if (trans->cc.state != GSM_CSTATE_NULL)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001435 new_cc_state(trans, GSM_CSTATE_NULL);
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001436 if (trans->conn)
1437 trau_mux_unmap(&trans->conn->lchan->ts->e1_link, trans->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001438}
1439
1440static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001441
Harald Welte09e38af2009-02-16 22:52:23 +00001442/* call-back from paging the B-end of the connection */
1443static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001444 struct msgb *msg, void *_conn, void *_transt)
Harald Welte09e38af2009-02-16 22:52:23 +00001445{
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001446 struct gsm_subscriber_connection *conn = _conn;
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001447 struct gsm_trans *transt = _transt;
Harald Weltec05677b2009-06-26 20:17:06 +02001448
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001449 OSMO_ASSERT(!transt->conn);
Harald Welte7584aea2009-02-11 11:44:12 +00001450
Harald Welte4bfdfe72009-06-10 23:11:52 +08001451 /* check all tranactions (without lchan) for subscriber */
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001452 switch (event) {
1453 case GSM_PAGING_SUCCEEDED:
1454 DEBUGP(DCC, "Paging subscr %s succeeded!\n", transt->subscr->extension);
Ivan Kluchnikov5fd0c642015-05-26 13:36:58 +03001455 OSMO_ASSERT(conn);
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001456 /* Assign lchan */
1457 transt->conn = conn;
1458 /* send SETUP request to called party */
1459 gsm48_cc_tx_setup(transt, &transt->cc.msg);
1460 break;
1461 case GSM_PAGING_EXPIRED:
1462 case GSM_PAGING_BUSY:
1463 DEBUGP(DCC, "Paging subscr %s expired!\n",
1464 transt->subscr->extension);
1465 /* Temporarily out of order */
1466 mncc_release_ind(transt->net, transt,
1467 transt->callref,
1468 GSM48_CAUSE_LOC_PRN_S_LU,
1469 GSM48_CC_CAUSE_DEST_OOO);
1470 transt->callref = 0;
1471 transt->paging_request = NULL;
1472 trans_free(transt);
1473 break;
1474 default:
1475 LOGP(DCC, LOGL_ERROR, "Unknown paging event %d\n", event);
1476 break;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001477 }
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001478
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02001479 transt->paging_request = NULL;
Harald Welte09e38af2009-02-16 22:52:23 +00001480 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001481}
Harald Welte7584aea2009-02-11 11:44:12 +00001482
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001483static int tch_recv_mncc(struct gsm_network *net, uint32_t callref, int enable);
Harald Welteda7ab742009-12-19 22:23:05 +01001484
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001485/* handle audio path for handover */
Holger Hans Peter Freytherc121bb32012-12-26 10:17:42 +01001486static int switch_for_handover(struct gsm_lchan *old_lchan,
1487 struct gsm_lchan *new_lchan)
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001488{
1489 struct rtp_socket *old_rs, *new_rs, *other_rs;
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001490
Holger Hans Peter Freytherc21dcb22015-08-04 14:41:21 +02001491 /* Ask the new socket to send to the already known port. */
1492 if (new_lchan->conn->mncc_rtp_bridge) {
1493 LOGP(DHO, LOGL_DEBUG, "Forwarding RTP\n");
1494 rsl_ipacc_mdcx(new_lchan,
1495 old_lchan->abis_ip.connect_ip,
1496 old_lchan->abis_ip.connect_port, 0);
1497 return 0;
1498 }
1499
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001500 if (ipacc_rtp_direct) {
1501 LOGP(DHO, LOGL_ERROR, "unable to handover in direct RTP mode\n");
1502 return 0;
1503 }
1504
1505 /* RTP Proxy mode */
Holger Hans Peter Freytherc121bb32012-12-26 10:17:42 +01001506 new_rs = new_lchan->abis_ip.rtp_socket;
1507 old_rs = old_lchan->abis_ip.rtp_socket;
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001508
1509 if (!new_rs) {
1510 LOGP(DHO, LOGL_ERROR, "no RTP socket for new_lchan\n");
1511 return -EIO;
1512 }
1513
Holger Hans Peter Freytherc121bb32012-12-26 10:17:42 +01001514 rsl_ipacc_mdcx_to_rtpsock(new_lchan);
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001515
1516 if (!old_rs) {
1517 LOGP(DHO, LOGL_ERROR, "no RTP socket for old_lchan\n");
1518 return -EIO;
1519 }
1520
1521 /* copy rx_action and reference to other sock */
1522 new_rs->rx_action = old_rs->rx_action;
1523 new_rs->tx_action = old_rs->tx_action;
1524 new_rs->transmit = old_rs->transmit;
1525
Holger Hans Peter Freytherc121bb32012-12-26 10:17:42 +01001526 switch (old_lchan->abis_ip.rtp_socket->rx_action) {
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001527 case RTP_PROXY:
1528 other_rs = old_rs->proxy.other_sock;
1529 rtp_socket_proxy(new_rs, other_rs);
1530 /* delete reference to other end socket to prevent
1531 * rtp_socket_free() from removing the inverse reference */
1532 old_rs->proxy.other_sock = NULL;
1533 break;
1534 case RTP_RECV_UPSTREAM:
1535 new_rs->receive = old_rs->receive;
1536 break;
1537 case RTP_NONE:
1538 break;
1539 }
1540
1541 return 0;
1542}
1543
Holger Hans Peter Freytherc21dcb22015-08-04 14:41:21 +02001544static void maybe_switch_for_handover(struct gsm_lchan *lchan)
1545{
1546 struct gsm_lchan *old_lchan;
1547 old_lchan = bsc_handover_pending(lchan);
1548 if (old_lchan)
1549 switch_for_handover(old_lchan, lchan);
1550}
1551
Harald Welte805f6442009-07-28 18:25:29 +02001552/* some other part of the code sends us a signal */
1553static int handle_abisip_signal(unsigned int subsys, unsigned int signal,
1554 void *handler_data, void *signal_data)
1555{
Holger Hans Peter Freytherc21dcb22015-08-04 14:41:21 +02001556 struct gsm_lchan *lchan = signal_data;
Harald Welte805f6442009-07-28 18:25:29 +02001557 int rc;
Harald Welteda7ab742009-12-19 22:23:05 +01001558 struct gsm_network *net;
1559 struct gsm_trans *trans;
Harald Welte805f6442009-07-28 18:25:29 +02001560
1561 if (subsys != SS_ABISIP)
1562 return 0;
1563
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02001564 /* RTP bridge handling */
1565 if (lchan->conn && lchan->conn->mncc_rtp_bridge)
1566 return tch_rtp_signal(lchan, signal);
1567
Harald Welte805f6442009-07-28 18:25:29 +02001568 /* in case we use direct BTS-to-BTS RTP */
1569 if (ipacc_rtp_direct)
1570 return 0;
1571
Harald Welte805f6442009-07-28 18:25:29 +02001572 switch (signal) {
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001573 case S_ABISIP_CRCX_ACK:
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001574 /* in case we don't use direct BTS-to-BTS RTP */
1575 /* the BTS has successfully bound a TCH to a local ip/port,
1576 * which means we can connect our UDP socket to it */
1577 if (lchan->abis_ip.rtp_socket) {
1578 rtp_socket_free(lchan->abis_ip.rtp_socket);
1579 lchan->abis_ip.rtp_socket = NULL;
1580 }
1581
1582 lchan->abis_ip.rtp_socket = rtp_socket_create();
1583 if (!lchan->abis_ip.rtp_socket)
1584 return -EIO;
1585
1586 rc = rtp_socket_connect(lchan->abis_ip.rtp_socket,
1587 lchan->abis_ip.bound_ip,
1588 lchan->abis_ip.bound_port);
1589 if (rc < 0)
1590 return -EIO;
1591
Harald Welteda7ab742009-12-19 22:23:05 +01001592 /* check if any transactions on this lchan still have
1593 * a tch_recv_mncc request pending */
1594 net = lchan->ts->trx->bts->network;
1595 llist_for_each_entry(trans, &net->trans_list, entry) {
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001596 if (trans->conn && trans->conn->lchan == lchan && trans->tch_recv) {
Harald Welteda7ab742009-12-19 22:23:05 +01001597 DEBUGP(DCC, "pending tch_recv_mncc request\n");
1598 tch_recv_mncc(net, trans->callref, 1);
1599 }
1600 }
Holger Hans Peter Freytherc121bb32012-12-26 10:17:42 +01001601
1602 /*
1603 * TODO: this appears to be too early? Why not until after
1604 * the handover detect or the handover complete?
1605 *
1606 * Do we have a handover pending for this new lchan? In that
1607 * case re-route the audio from the old channel to the new one.
1608 */
Holger Hans Peter Freytherc21dcb22015-08-04 14:41:21 +02001609 maybe_switch_for_handover(lchan);
Harald Welte805f6442009-07-28 18:25:29 +02001610 break;
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001611 case S_ABISIP_DLCX_IND:
1612 /* the BTS tells us a RTP stream has been disconnected */
1613 if (lchan->abis_ip.rtp_socket) {
1614 rtp_socket_free(lchan->abis_ip.rtp_socket);
1615 lchan->abis_ip.rtp_socket = NULL;
1616 }
1617
1618 break;
Harald Welte805f6442009-07-28 18:25:29 +02001619 }
1620
1621 return 0;
Harald Welte805f6442009-07-28 18:25:29 +02001622}
1623
Harald Welte49f48b82009-02-17 15:29:33 +00001624/* map two ipaccess RTP streams onto each other */
Harald Welte11fa29c2009-02-19 17:24:39 +00001625static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
Harald Welte49f48b82009-02-17 15:29:33 +00001626{
Harald Welte11fa29c2009-02-19 17:24:39 +00001627 struct gsm_bts *bts = lchan->ts->trx->bts;
1628 struct gsm_bts *remote_bts = remote_lchan->ts->trx->bts;
Max8db12e42016-04-18 23:11:18 +02001629 enum gsm_chan_t lt = lchan->type, rt = remote_lchan->type;
Max3ffce192016-04-25 15:22:00 +02001630 enum gsm48_chan_mode lm = lchan->tch_mode, rm = remote_lchan->tch_mode;
Harald Welte805f6442009-07-28 18:25:29 +02001631 int rc;
Harald Welte49f48b82009-02-17 15:29:33 +00001632
Max8db12e42016-04-18 23:11:18 +02001633 DEBUGP(DCC, "Setting up TCH map between (bts=%u,trx=%u,ts=%u,%s) and "
1634 "(bts=%u,trx=%u,ts=%u,%s)\n",
1635 bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1636 get_value_string(gsm_chan_t_names, lt),
1637 remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr,
1638 get_value_string(gsm_chan_t_names, rt));
Harald Welte11fa29c2009-02-19 17:24:39 +00001639
1640 if (bts->type != remote_bts->type) {
Harald Weltee5215b52011-08-09 21:53:20 +02001641 LOGP(DCC, LOGL_ERROR, "Cannot switch calls between different BTS types yet\n");
Harald Welte11fa29c2009-02-19 17:24:39 +00001642 return -EINVAL;
1643 }
Harald Welteda7ab742009-12-19 22:23:05 +01001644
Max3ffce192016-04-25 15:22:00 +02001645 if (lt != rt) {
1646 LOGP(DCC, LOGL_ERROR, "Cannot patch through call with different"
1647 " channel types: local = %s, remote = %s\n",
1648 get_value_string(gsm_chan_t_names, lt),
1649 get_value_string(gsm_chan_t_names, rt));
1650 return -EBADSLT;
1651 }
1652
1653 if (lm != rm) {
1654 LOGP(DCC, LOGL_ERROR, "Cannot patch through call with different"
1655 " channel modes: local = %s, remote = %s\n",
1656 get_value_string(gsm48_chan_mode_names, lm),
1657 get_value_string(gsm48_chan_mode_names, rm));
1658 return -EMEDIUMTYPE;
1659 }
1660
Harald Welteda7ab742009-12-19 22:23:05 +01001661 // todo: map between different bts types
Harald Welte11fa29c2009-02-19 17:24:39 +00001662 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +01001663 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +02001664 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Welte805f6442009-07-28 18:25:29 +02001665 if (!ipacc_rtp_direct) {
Andreas Eversberga4d0e3c2014-01-22 08:57:18 +01001666 if (!lchan->abis_ip.rtp_socket) {
1667 LOGP(DHO, LOGL_ERROR, "no RTP socket for "
1668 "lchan\n");
1669 return -EIO;
1670 }
1671 if (!remote_lchan->abis_ip.rtp_socket) {
1672 LOGP(DHO, LOGL_ERROR, "no RTP socket for "
1673 "remote_lchan\n");
1674 return -EIO;
1675 }
1676
Harald Welte805f6442009-07-28 18:25:29 +02001677 /* connect the TCH's to our RTP proxy */
Harald Weltea72273e2009-12-20 16:51:09 +01001678 rc = rsl_ipacc_mdcx_to_rtpsock(lchan);
Harald Welte805f6442009-07-28 18:25:29 +02001679 if (rc < 0)
1680 return rc;
Harald Weltea72273e2009-12-20 16:51:09 +01001681 rc = rsl_ipacc_mdcx_to_rtpsock(remote_lchan);
Harald Welte4d54d0b2011-02-19 16:48:17 +01001682 if (rc < 0)
1683 return rc;
Harald Welte805f6442009-07-28 18:25:29 +02001684 /* connect them with each other */
Harald Welte2c828992009-12-02 01:56:49 +05301685 rtp_socket_proxy(lchan->abis_ip.rtp_socket,
1686 remote_lchan->abis_ip.rtp_socket);
Harald Welte805f6442009-07-28 18:25:29 +02001687 } else {
1688 /* directly connect TCH RTP streams to each other */
Harald Welte2c828992009-12-02 01:56:49 +05301689 rc = rsl_ipacc_mdcx(lchan, remote_lchan->abis_ip.bound_ip,
1690 remote_lchan->abis_ip.bound_port,
Harald Welte2c828992009-12-02 01:56:49 +05301691 remote_lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001692 if (rc < 0)
1693 return rc;
Harald Welte2c828992009-12-02 01:56:49 +05301694 rc = rsl_ipacc_mdcx(remote_lchan, lchan->abis_ip.bound_ip,
1695 lchan->abis_ip.bound_port,
Harald Welte2c828992009-12-02 01:56:49 +05301696 lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001697 }
Harald Welte11fa29c2009-02-19 17:24:39 +00001698 break;
1699 case GSM_BTS_TYPE_BS11:
Harald Weltec76fb5d2011-03-20 06:27:31 -03001700 case GSM_BTS_TYPE_RBS2000:
Dieter Spaar16646022011-07-28 00:01:50 +02001701 case GSM_BTS_TYPE_NOKIA_SITE:
Harald Welte11fa29c2009-02-19 17:24:39 +00001702 trau_mux_map_lchan(lchan, remote_lchan);
1703 break;
1704 default:
Harald Weltee5215b52011-08-09 21:53:20 +02001705 LOGP(DCC, LOGL_ERROR, "Unknown BTS type %u\n", bts->type);
Harald Welteda7ab742009-12-19 22:23:05 +01001706 return -EINVAL;
Harald Welte11fa29c2009-02-19 17:24:39 +00001707 }
Harald Welte49f48b82009-02-17 15:29:33 +00001708
1709 return 0;
1710}
1711
Harald Welte4bfdfe72009-06-10 23:11:52 +08001712/* bridge channels of two transactions */
Harald Welte53d51f52015-12-03 14:59:04 +01001713static int tch_bridge(struct gsm_network *net, struct gsm_mncc_bridge *bridge)
Harald Welte7ccf7782009-02-17 01:43:01 +00001714{
Harald Welte53d51f52015-12-03 14:59:04 +01001715 struct gsm_trans *trans1 = trans_find_by_callref(net, bridge->callref[0]);
1716 struct gsm_trans *trans2 = trans_find_by_callref(net, bridge->callref[1]);
Harald Welte7ccf7782009-02-17 01:43:01 +00001717
Harald Welte4bfdfe72009-06-10 23:11:52 +08001718 if (!trans1 || !trans2)
Harald Welte7ccf7782009-02-17 01:43:01 +00001719 return -EIO;
1720
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001721 if (!trans1->conn || !trans2->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001722 return -EIO;
1723
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01001724 /* Which subscriber do we want to track trans1 or trans2? */
1725 log_set_context(BSC_CTX_SUBSCR, trans1->subscr);
1726
Harald Welte4bfdfe72009-06-10 23:11:52 +08001727 /* through-connect channel */
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001728 return tch_map(trans1->conn->lchan, trans2->conn->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00001729}
1730
Harald Welteda7ab742009-12-19 22:23:05 +01001731/* enable receive of channels to MNCC upqueue */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001732static int tch_recv_mncc(struct gsm_network *net, uint32_t callref, int enable)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001733{
1734 struct gsm_trans *trans;
Harald Welteda7ab742009-12-19 22:23:05 +01001735 struct gsm_lchan *lchan;
1736 struct gsm_bts *bts;
1737 int rc;
Harald Welte7ccf7782009-02-17 01:43:01 +00001738
Harald Welte4bfdfe72009-06-10 23:11:52 +08001739 /* Find callref */
Harald Welteda7ab742009-12-19 22:23:05 +01001740 trans = trans_find_by_callref(net, callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001741 if (!trans)
1742 return -EIO;
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001743 if (!trans->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001744 return 0;
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01001745
1746 log_set_context(BSC_CTX_SUBSCR, trans->subscr);
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001747 lchan = trans->conn->lchan;
Harald Welteda7ab742009-12-19 22:23:05 +01001748 bts = lchan->ts->trx->bts;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001749
Andreas Eversbergdcf38e12013-12-05 14:37:11 +01001750 /* store receive state */
1751 trans->tch_recv = enable;
1752
Harald Welteda7ab742009-12-19 22:23:05 +01001753 switch (bts->type) {
1754 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +02001755 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Welteda7ab742009-12-19 22:23:05 +01001756 if (ipacc_rtp_direct) {
Harald Weltee5215b52011-08-09 21:53:20 +02001757 LOGP(DCC, LOGL_ERROR, "Error: RTP proxy is disabled\n");
Harald Welteda7ab742009-12-19 22:23:05 +01001758 return -EINVAL;
1759 }
Andreas Eversbergdcf38e12013-12-05 14:37:11 +01001760 /* In case, we don't have a RTP socket to the BTS yet, the BTS
1761 * will not be connected to our RTP proxy and the socket will
1762 * not be assigned to the application interface. This method
1763 * will be called again, once the audio socket is created and
1764 * connected. */
Harald Welteda7ab742009-12-19 22:23:05 +01001765 if (!lchan->abis_ip.rtp_socket) {
Harald Welteda7ab742009-12-19 22:23:05 +01001766 DEBUGP(DCC, "queue tch_recv_mncc request (%d)\n", enable);
1767 return 0;
1768 }
1769 if (enable) {
1770 /* connect the TCH's to our RTP proxy */
Harald Weltea72273e2009-12-20 16:51:09 +01001771 rc = rsl_ipacc_mdcx_to_rtpsock(lchan);
Harald Welteda7ab742009-12-19 22:23:05 +01001772 if (rc < 0)
1773 return rc;
1774 /* assign socket to application interface */
1775 rtp_socket_upstream(lchan->abis_ip.rtp_socket,
1776 net, callref);
1777 } else
1778 rtp_socket_upstream(lchan->abis_ip.rtp_socket,
1779 net, 0);
1780 break;
1781 case GSM_BTS_TYPE_BS11:
Harald Weltec76fb5d2011-03-20 06:27:31 -03001782 case GSM_BTS_TYPE_RBS2000:
Harald Welte10456972011-08-05 20:11:18 +02001783 case GSM_BTS_TYPE_NOKIA_SITE:
Andreas Eversbergdcf38e12013-12-05 14:37:11 +01001784 /* In case we don't have a TCH with correct mode, the TRAU muxer
1785 * will not be asigned to the application interface. This is
1786 * performed by switch_trau_mux() after successful handover or
1787 * assignment. */
1788 if (lchan->tch_mode == GSM48_CMODE_SIGN) {
1789 DEBUGP(DCC, "queue tch_recv_mncc request (%d)\n", enable);
1790 return 0;
1791 }
Harald Welteda7ab742009-12-19 22:23:05 +01001792 if (enable)
1793 return trau_recv_lchan(lchan, callref);
1794 return trau_mux_unmap(NULL, callref);
1795 break;
1796 default:
Harald Weltee5215b52011-08-09 21:53:20 +02001797 LOGP(DCC, LOGL_ERROR, "Unknown BTS type %u\n", bts->type);
Harald Welteda7ab742009-12-19 22:23:05 +01001798 return -EINVAL;
1799 }
1800
1801 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001802}
1803
Harald Welte4bfdfe72009-06-10 23:11:52 +08001804static int gsm48_cc_rx_status_enq(struct gsm_trans *trans, struct msgb *msg)
1805{
1806 DEBUGP(DCC, "-> STATUS ENQ\n");
1807 return gsm48_cc_tx_status(trans, msg);
1808}
1809
1810static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg);
1811static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg);
1812
1813static void gsm48_cc_timeout(void *arg)
1814{
1815 struct gsm_trans *trans = arg;
1816 int disconnect = 0, release = 0;
Harald Weltec66b71c2009-06-11 14:23:20 +08001817 int mo_cause = GSM48_CC_CAUSE_RECOVERY_TIMER;
1818 int mo_location = GSM48_CAUSE_LOC_USER;
1819 int l4_cause = GSM48_CC_CAUSE_NORMAL_UNSPEC;
1820 int l4_location = GSM48_CAUSE_LOC_PRN_S_LU;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001821 struct gsm_mncc mo_rel, l4_rel;
1822
1823 memset(&mo_rel, 0, sizeof(struct gsm_mncc));
1824 mo_rel.callref = trans->callref;
1825 memset(&l4_rel, 0, sizeof(struct gsm_mncc));
1826 l4_rel.callref = trans->callref;
1827
Harald Weltedcaf5652009-07-23 18:56:43 +02001828 switch(trans->cc.Tcurrent) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001829 case 0x303:
1830 release = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001831 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001832 break;
1833 case 0x310:
1834 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001835 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001836 break;
1837 case 0x313:
1838 disconnect = 1;
1839 /* unknown, did not find it in the specs */
1840 break;
1841 case 0x301:
1842 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001843 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001844 break;
1845 case 0x308:
Harald Weltedcaf5652009-07-23 18:56:43 +02001846 if (!trans->cc.T308_second) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001847 /* restart T308 a second time */
Harald Weltedcaf5652009-07-23 18:56:43 +02001848 gsm48_cc_tx_release(trans, &trans->cc.msg);
1849 trans->cc.T308_second = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001850 break; /* stay in release state */
1851 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001852 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001853 return;
1854// release = 1;
1855// l4_cause = 14;
1856// break;
1857 case 0x306:
1858 release = 1;
Harald Weltedcaf5652009-07-23 18:56:43 +02001859 mo_cause = trans->cc.msg.cause.value;
1860 mo_location = trans->cc.msg.cause.location;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001861 break;
1862 case 0x323:
1863 disconnect = 1;
1864 break;
1865 default:
1866 release = 1;
1867 }
1868
1869 if (release && trans->callref) {
1870 /* process release towards layer 4 */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001871 mncc_release_ind(trans->net, trans, trans->callref,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001872 l4_location, l4_cause);
1873 trans->callref = 0;
1874 }
1875
1876 if (disconnect && trans->callref) {
1877 /* process disconnect towards layer 4 */
1878 mncc_set_cause(&l4_rel, l4_location, l4_cause);
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01001879 mncc_recvmsg(trans->net, trans, MNCC_DISC_IND, &l4_rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001880 }
1881
1882 /* process disconnect towards mobile station */
1883 if (disconnect || release) {
1884 mncc_set_cause(&mo_rel, mo_location, mo_cause);
Harald Weltedcaf5652009-07-23 18:56:43 +02001885 mo_rel.cause.diag[0] = ((trans->cc.Tcurrent & 0xf00) >> 8) + '0';
1886 mo_rel.cause.diag[1] = ((trans->cc.Tcurrent & 0x0f0) >> 4) + '0';
1887 mo_rel.cause.diag[2] = (trans->cc.Tcurrent & 0x00f) + '0';
Harald Welte4bfdfe72009-06-10 23:11:52 +08001888 mo_rel.cause.diag_len = 3;
1889
1890 if (disconnect)
1891 gsm48_cc_tx_disconnect(trans, &mo_rel);
1892 if (release)
1893 gsm48_cc_tx_release(trans, &mo_rel);
1894 }
1895
1896}
1897
Max3ffce192016-04-25 15:22:00 +02001898/* disconnect both calls from the bridge */
1899static inline void disconnect_bridge(struct gsm_network *net,
1900 struct gsm_mncc_bridge *bridge, int err)
1901{
1902 struct gsm_trans *trans0 = trans_find_by_callref(net, bridge->callref[0]);
1903 struct gsm_trans *trans1 = trans_find_by_callref(net, bridge->callref[1]);
1904 struct gsm_mncc mx_rel;
1905 if (!trans0 || !trans1)
1906 return;
1907
1908 DEBUGP(DCC, "Failed to bridge TCH for calls %x <-> %x :: %s \n",
1909 trans0->callref, trans1->callref, strerror(err));
1910
1911 memset(&mx_rel, 0, sizeof(struct gsm_mncc));
1912 mncc_set_cause(&mx_rel, GSM48_CAUSE_LOC_INN_NET,
1913 GSM48_CC_CAUSE_CHAN_UNACCEPT);
1914
1915 mx_rel.callref = trans0->callref;
1916 gsm48_cc_tx_disconnect(trans0, &mx_rel);
1917
1918 mx_rel.callref = trans1->callref;
1919 gsm48_cc_tx_disconnect(trans1, &mx_rel);
1920}
1921
Harald Welte4bfdfe72009-06-10 23:11:52 +08001922static void gsm48_start_cc_timer(struct gsm_trans *trans, int current,
1923 int sec, int micro)
1924{
1925 DEBUGP(DCC, "starting timer T%x with %d seconds\n", current, sec);
Harald Weltedcaf5652009-07-23 18:56:43 +02001926 trans->cc.timer.cb = gsm48_cc_timeout;
1927 trans->cc.timer.data = trans;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001928 osmo_timer_schedule(&trans->cc.timer, sec, micro);
Harald Weltedcaf5652009-07-23 18:56:43 +02001929 trans->cc.Tcurrent = current;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001930}
1931
1932static int gsm48_cc_rx_setup(struct gsm_trans *trans, struct msgb *msg)
1933{
1934 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyr531734a2016-03-14 16:13:24 +01001935 uint8_t msg_type = gsm48_hdr_msg_type(gh);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001936 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1937 struct tlv_parsed tp;
1938 struct gsm_mncc setup;
1939
1940 memset(&setup, 0, sizeof(struct gsm_mncc));
1941 setup.callref = trans->callref;
Andreas Eversbergcaae10b2014-01-16 16:04:12 +01001942 setup.lchan_type = trans->conn->lchan->type;
Harald Welte474d19f2010-03-02 23:18:30 +01001943 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001944 /* emergency setup is identified by msg_type */
1945 if (msg_type == GSM48_MT_CC_EMERG_SETUP)
1946 setup.emergency = 1;
1947
1948 /* use subscriber as calling party number */
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02001949 setup.fields |= MNCC_F_CALLING;
1950 strncpy(setup.calling.number, trans->subscr->extension,
1951 sizeof(setup.calling.number)-1);
1952 strncpy(setup.imsi, trans->subscr->imsi,
1953 sizeof(setup.imsi)-1);
1954
Harald Welte4bfdfe72009-06-10 23:11:52 +08001955 /* bearer capability */
1956 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
1957 setup.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001958 gsm48_decode_bearer_cap(&setup.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001959 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Andreas Eversberga83d5112013-12-07 18:32:28 +01001960 apply_codec_restrictions(trans->conn->bts, &setup.bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001961 }
1962 /* facility */
1963 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1964 setup.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001965 gsm48_decode_facility(&setup.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001966 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1967 }
1968 /* called party bcd number */
1969 if (TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD)) {
1970 setup.fields |= MNCC_F_CALLED;
Harald Welte55c8f352010-03-07 23:40:35 +01001971 gsm48_decode_called(&setup.called,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001972 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
1973 }
1974 /* user-user */
1975 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
1976 setup.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01001977 gsm48_decode_useruser(&setup.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001978 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
1979 }
1980 /* ss-version */
1981 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1982 setup.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001983 gsm48_decode_ssversion(&setup.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001984 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1985 }
1986 /* CLIR suppression */
1987 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_SUPP))
1988 setup.clir.sup = 1;
1989 /* CLIR invocation */
1990 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_INVOC))
1991 setup.clir.inv = 1;
1992 /* cc cap */
1993 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
1994 setup.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001995 gsm48_decode_cccap(&setup.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001996 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
1997 }
1998
Harald Welte4bfdfe72009-06-10 23:11:52 +08001999 new_cc_state(trans, GSM_CSTATE_INITIATED);
2000
Harald Welte (local)47df3992009-12-26 19:45:03 +01002001 LOGP(DCC, LOGL_INFO, "Subscriber %s (%s) sends SETUP to %s\n",
2002 subscr_name(trans->subscr), trans->subscr->extension,
2003 setup.called.number);
2004
Alexander Couzensb847a212016-08-02 11:34:11 +02002005 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MO_SETUP]);
Harald Weltea29e43a2010-12-24 16:06:33 +01002006
Harald Welte4bfdfe72009-06-10 23:11:52 +08002007 /* indicate setup to MNCC */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002008 mncc_recvmsg(trans->net, trans, MNCC_SETUP_IND, &setup);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002009
Harald Welte13cac662009-07-29 12:10:35 +02002010 /* MNCC code will modify the channel asynchronously, we should
2011 * ipaccess-bind only after the modification has been made to the
2012 * lchan->tch_mode */
Harald Welte4bfdfe72009-06-10 23:11:52 +08002013 return 0;
2014}
2015
2016static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg)
Harald Welte65e74cc2008-12-29 01:55:35 +00002017{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002018 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC STUP");
Harald Welte65e74cc2008-12-29 01:55:35 +00002019 struct gsm48_hdr *gh;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002020 struct gsm_mncc *setup = arg;
Harald Welte78283ef2009-07-23 21:36:44 +02002021 int rc, trans_id;
Harald Welte65e74cc2008-12-29 01:55:35 +00002022
Harald Welte7ccf7782009-02-17 01:43:01 +00002023 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00002024
Harald Welte4bfdfe72009-06-10 23:11:52 +08002025 /* transaction id must not be assigned */
2026 if (trans->transaction_id != 0xff) { /* unasssigned */
2027 DEBUGP(DCC, "TX Setup with assigned transaction. "
2028 "This is not allowed!\n");
2029 /* Temporarily out of order */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002030 rc = mncc_release_ind(trans->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002031 GSM48_CAUSE_LOC_PRN_S_LU,
2032 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002033 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002034 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002035 return rc;
2036 }
2037
2038 /* Get free transaction_id */
Jacob Erlbeckdae1f642014-12-02 14:22:53 +01002039 trans_id = trans_assign_trans_id(trans->net, trans->subscr,
2040 GSM48_PDISC_CC, 0);
Harald Welte78283ef2009-07-23 21:36:44 +02002041 if (trans_id < 0) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002042 /* no free transaction ID */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002043 rc = mncc_release_ind(trans->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002044 GSM48_CAUSE_LOC_PRN_S_LU,
2045 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002046 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002047 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002048 return rc;
2049 }
Harald Welte78283ef2009-07-23 21:36:44 +02002050 trans->transaction_id = trans_id;
Harald Welte49f48b82009-02-17 15:29:33 +00002051
Harald Welte65e74cc2008-12-29 01:55:35 +00002052 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00002053
Harald Welte4bfdfe72009-06-10 23:11:52 +08002054 gsm48_start_cc_timer(trans, 0x303, GSM48_T303);
Harald Welte65e74cc2008-12-29 01:55:35 +00002055
Harald Welte4bfdfe72009-06-10 23:11:52 +08002056 /* bearer capability */
2057 if (setup->fields & MNCC_F_BEARER_CAP)
Harald Welte55c8f352010-03-07 23:40:35 +01002058 gsm48_encode_bearer_cap(msg, 0, &setup->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002059 /* facility */
2060 if (setup->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002061 gsm48_encode_facility(msg, 0, &setup->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002062 /* progress */
2063 if (setup->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002064 gsm48_encode_progress(msg, 0, &setup->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002065 /* calling party BCD number */
2066 if (setup->fields & MNCC_F_CALLING)
Harald Welte55c8f352010-03-07 23:40:35 +01002067 gsm48_encode_calling(msg, &setup->calling);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002068 /* called party BCD number */
2069 if (setup->fields & MNCC_F_CALLED)
Harald Welte55c8f352010-03-07 23:40:35 +01002070 gsm48_encode_called(msg, &setup->called);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002071 /* user-user */
2072 if (setup->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002073 gsm48_encode_useruser(msg, 0, &setup->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002074 /* redirecting party BCD number */
2075 if (setup->fields & MNCC_F_REDIRECTING)
Harald Welte55c8f352010-03-07 23:40:35 +01002076 gsm48_encode_redirecting(msg, &setup->redirecting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002077 /* signal */
2078 if (setup->fields & MNCC_F_SIGNAL)
Harald Welte55c8f352010-03-07 23:40:35 +01002079 gsm48_encode_signal(msg, setup->signal);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002080
2081 new_cc_state(trans, GSM_CSTATE_CALL_PRESENT);
Harald Welte65e74cc2008-12-29 01:55:35 +00002082
Alexander Couzensb847a212016-08-02 11:34:11 +02002083 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MT_SETUP]);
Harald Weltea29e43a2010-12-24 16:06:33 +01002084
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002085 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte65e74cc2008-12-29 01:55:35 +00002086}
2087
Harald Welte4bfdfe72009-06-10 23:11:52 +08002088static int gsm48_cc_rx_call_conf(struct gsm_trans *trans, struct msgb *msg)
2089{
2090 struct gsm48_hdr *gh = msgb_l3(msg);
2091 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2092 struct tlv_parsed tp;
2093 struct gsm_mncc call_conf;
2094
2095 gsm48_stop_cc_timer(trans);
2096 gsm48_start_cc_timer(trans, 0x310, GSM48_T310);
2097
2098 memset(&call_conf, 0, sizeof(struct gsm_mncc));
2099 call_conf.callref = trans->callref;
Andreas Eversbergcaae10b2014-01-16 16:04:12 +01002100 call_conf.lchan_type = trans->conn->lchan->type;
Harald Welte474d19f2010-03-02 23:18:30 +01002101 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002102#if 0
2103 /* repeat */
2104 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_CIR))
2105 call_conf.repeat = 1;
2106 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_SEQ))
2107 call_conf.repeat = 2;
2108#endif
2109 /* bearer capability */
2110 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2111 call_conf.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002112 gsm48_decode_bearer_cap(&call_conf.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002113 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Andreas Eversberga83d5112013-12-07 18:32:28 +01002114 apply_codec_restrictions(trans->conn->bts, &call_conf.bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002115 }
2116 /* cause */
2117 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2118 call_conf.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002119 gsm48_decode_cause(&call_conf.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002120 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2121 }
2122 /* cc cap */
2123 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2124 call_conf.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002125 gsm48_decode_cccap(&call_conf.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002126 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2127 }
2128
Andreas Eversberg035b8742013-09-19 09:27:06 +02002129 /* IMSI of called subscriber */
2130 strncpy(call_conf.imsi, trans->subscr->imsi,
2131 sizeof(call_conf.imsi)-1);
2132
Harald Welte4bfdfe72009-06-10 23:11:52 +08002133 new_cc_state(trans, GSM_CSTATE_MO_TERM_CALL_CONF);
2134
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002135 return mncc_recvmsg(trans->net, trans, MNCC_CALL_CONF_IND,
Harald Welte596fed42009-07-23 19:06:52 +02002136 &call_conf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002137}
2138
2139static int gsm48_cc_tx_call_proc(struct gsm_trans *trans, void *arg)
2140{
2141 struct gsm_mncc *proceeding = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002142 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC PROC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002143 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2144
Harald Welte4bfdfe72009-06-10 23:11:52 +08002145 gh->msg_type = GSM48_MT_CC_CALL_PROC;
2146
2147 new_cc_state(trans, GSM_CSTATE_MO_CALL_PROC);
2148
2149 /* bearer capability */
2150 if (proceeding->fields & MNCC_F_BEARER_CAP)
Harald Welte55c8f352010-03-07 23:40:35 +01002151 gsm48_encode_bearer_cap(msg, 0, &proceeding->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002152 /* facility */
2153 if (proceeding->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002154 gsm48_encode_facility(msg, 0, &proceeding->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002155 /* progress */
2156 if (proceeding->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002157 gsm48_encode_progress(msg, 0, &proceeding->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002158
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002159 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002160}
2161
2162static int gsm48_cc_rx_alerting(struct gsm_trans *trans, struct msgb *msg)
2163{
2164 struct gsm48_hdr *gh = msgb_l3(msg);
2165 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2166 struct tlv_parsed tp;
2167 struct gsm_mncc alerting;
2168
2169 gsm48_stop_cc_timer(trans);
2170 gsm48_start_cc_timer(trans, 0x301, GSM48_T301);
2171
2172 memset(&alerting, 0, sizeof(struct gsm_mncc));
2173 alerting.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002174 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002175 /* facility */
2176 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2177 alerting.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002178 gsm48_decode_facility(&alerting.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002179 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2180 }
2181
2182 /* progress */
2183 if (TLVP_PRESENT(&tp, GSM48_IE_PROGR_IND)) {
2184 alerting.fields |= MNCC_F_PROGRESS;
Harald Welte55c8f352010-03-07 23:40:35 +01002185 gsm48_decode_progress(&alerting.progress,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002186 TLVP_VAL(&tp, GSM48_IE_PROGR_IND)-1);
2187 }
2188 /* ss-version */
2189 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2190 alerting.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002191 gsm48_decode_ssversion(&alerting.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002192 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2193 }
2194
2195 new_cc_state(trans, GSM_CSTATE_CALL_RECEIVED);
2196
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002197 return mncc_recvmsg(trans->net, trans, MNCC_ALERT_IND,
Harald Welte596fed42009-07-23 19:06:52 +02002198 &alerting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002199}
2200
2201static int gsm48_cc_tx_alerting(struct gsm_trans *trans, void *arg)
2202{
2203 struct gsm_mncc *alerting = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002204 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC ALERT");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002205 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2206
Harald Welte4bfdfe72009-06-10 23:11:52 +08002207 gh->msg_type = GSM48_MT_CC_ALERTING;
2208
2209 /* facility */
2210 if (alerting->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002211 gsm48_encode_facility(msg, 0, &alerting->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002212 /* progress */
2213 if (alerting->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002214 gsm48_encode_progress(msg, 0, &alerting->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002215 /* user-user */
2216 if (alerting->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002217 gsm48_encode_useruser(msg, 0, &alerting->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002218
2219 new_cc_state(trans, GSM_CSTATE_CALL_DELIVERED);
2220
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002221 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002222}
2223
2224static int gsm48_cc_tx_progress(struct gsm_trans *trans, void *arg)
2225{
2226 struct gsm_mncc *progress = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002227 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC PROGRESS");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002228 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2229
Harald Welte4bfdfe72009-06-10 23:11:52 +08002230 gh->msg_type = GSM48_MT_CC_PROGRESS;
2231
2232 /* progress */
Harald Welte55c8f352010-03-07 23:40:35 +01002233 gsm48_encode_progress(msg, 1, &progress->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002234 /* user-user */
2235 if (progress->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002236 gsm48_encode_useruser(msg, 0, &progress->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002237
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002238 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002239}
2240
2241static int gsm48_cc_tx_connect(struct gsm_trans *trans, void *arg)
2242{
2243 struct gsm_mncc *connect = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002244 struct msgb *msg = gsm48_msgb_alloc_name("GSN 04.08 CC CON");
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_CONNECT;
2248
2249 gsm48_stop_cc_timer(trans);
2250 gsm48_start_cc_timer(trans, 0x313, GSM48_T313);
2251
2252 /* facility */
2253 if (connect->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002254 gsm48_encode_facility(msg, 0, &connect->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002255 /* progress */
2256 if (connect->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002257 gsm48_encode_progress(msg, 0, &connect->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002258 /* connected number */
2259 if (connect->fields & MNCC_F_CONNECTED)
Harald Welte55c8f352010-03-07 23:40:35 +01002260 gsm48_encode_connected(msg, &connect->connected);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002261 /* user-user */
2262 if (connect->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002263 gsm48_encode_useruser(msg, 0, &connect->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002264
2265 new_cc_state(trans, GSM_CSTATE_CONNECT_IND);
2266
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002267 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002268}
2269
2270static int gsm48_cc_rx_connect(struct gsm_trans *trans, struct msgb *msg)
2271{
2272 struct gsm48_hdr *gh = msgb_l3(msg);
2273 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2274 struct tlv_parsed tp;
2275 struct gsm_mncc connect;
2276
2277 gsm48_stop_cc_timer(trans);
2278
2279 memset(&connect, 0, sizeof(struct gsm_mncc));
2280 connect.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002281 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002282 /* use subscriber as connected party number */
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02002283 connect.fields |= MNCC_F_CONNECTED;
2284 strncpy(connect.connected.number, trans->subscr->extension,
2285 sizeof(connect.connected.number)-1);
2286 strncpy(connect.imsi, trans->subscr->imsi,
2287 sizeof(connect.imsi)-1);
2288
Harald Welte4bfdfe72009-06-10 23:11:52 +08002289 /* facility */
2290 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2291 connect.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002292 gsm48_decode_facility(&connect.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002293 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2294 }
2295 /* user-user */
2296 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2297 connect.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002298 gsm48_decode_useruser(&connect.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002299 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2300 }
2301 /* ss-version */
2302 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2303 connect.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002304 gsm48_decode_ssversion(&connect.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002305 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2306 }
2307
2308 new_cc_state(trans, GSM_CSTATE_CONNECT_REQUEST);
Alexander Couzensb847a212016-08-02 11:34:11 +02002309 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MT_CONNECT]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002310
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002311 return mncc_recvmsg(trans->net, trans, MNCC_SETUP_CNF, &connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002312}
2313
2314
2315static int gsm48_cc_rx_connect_ack(struct gsm_trans *trans, struct msgb *msg)
2316{
2317 struct gsm_mncc connect_ack;
2318
2319 gsm48_stop_cc_timer(trans);
2320
2321 new_cc_state(trans, GSM_CSTATE_ACTIVE);
Alexander Couzensb847a212016-08-02 11:34:11 +02002322 rate_ctr_inc(&trans->net->msc_ctrs->ctr[MSC_CTR_CALL_MO_CONNECT_ACK]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002323
2324 memset(&connect_ack, 0, sizeof(struct gsm_mncc));
2325 connect_ack.callref = trans->callref;
Harald Weltea29e43a2010-12-24 16:06:33 +01002326
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002327 return mncc_recvmsg(trans->net, trans, MNCC_SETUP_COMPL_IND,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002328 &connect_ack);
2329}
2330
2331static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg)
2332{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002333 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC CON ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002334 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2335
Harald Welte4bfdfe72009-06-10 23:11:52 +08002336 gh->msg_type = GSM48_MT_CC_CONNECT_ACK;
2337
2338 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2339
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002340 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002341}
2342
2343static int gsm48_cc_rx_disconnect(struct gsm_trans *trans, struct msgb *msg)
2344{
2345 struct gsm48_hdr *gh = msgb_l3(msg);
2346 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2347 struct tlv_parsed tp;
2348 struct gsm_mncc disc;
2349
2350 gsm48_stop_cc_timer(trans);
2351
2352 new_cc_state(trans, GSM_CSTATE_DISCONNECT_REQ);
2353
2354 memset(&disc, 0, sizeof(struct gsm_mncc));
2355 disc.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002356 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_CAUSE, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002357 /* cause */
2358 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2359 disc.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002360 gsm48_decode_cause(&disc.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002361 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2362 }
2363 /* facility */
2364 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2365 disc.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002366 gsm48_decode_facility(&disc.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002367 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2368 }
2369 /* user-user */
2370 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2371 disc.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002372 gsm48_decode_useruser(&disc.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002373 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2374 }
2375 /* ss-version */
2376 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2377 disc.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002378 gsm48_decode_ssversion(&disc.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002379 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2380 }
2381
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002382 return mncc_recvmsg(trans->net, trans, MNCC_DISC_IND, &disc);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002383
2384}
2385
Harald Weltec66b71c2009-06-11 14:23:20 +08002386static struct gsm_mncc_cause default_cause = {
2387 .location = GSM48_CAUSE_LOC_PRN_S_LU,
2388 .coding = 0,
2389 .rec = 0,
2390 .rec_val = 0,
2391 .value = GSM48_CC_CAUSE_NORMAL_UNSPEC,
2392 .diag_len = 0,
2393 .diag = { 0 },
2394};
Harald Welte4bfdfe72009-06-10 23:11:52 +08002395
2396static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg)
2397{
2398 struct gsm_mncc *disc = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002399 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC DISC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002400 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2401
Harald Welte4bfdfe72009-06-10 23:11:52 +08002402 gh->msg_type = GSM48_MT_CC_DISCONNECT;
2403
2404 gsm48_stop_cc_timer(trans);
2405 gsm48_start_cc_timer(trans, 0x306, GSM48_T306);
2406
2407 /* cause */
2408 if (disc->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002409 gsm48_encode_cause(msg, 1, &disc->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002410 else
Harald Welte55c8f352010-03-07 23:40:35 +01002411 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002412
2413 /* facility */
2414 if (disc->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002415 gsm48_encode_facility(msg, 0, &disc->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002416 /* progress */
2417 if (disc->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002418 gsm48_encode_progress(msg, 0, &disc->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002419 /* user-user */
2420 if (disc->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002421 gsm48_encode_useruser(msg, 0, &disc->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002422
2423 /* store disconnect cause for T306 expiry */
Harald Weltedcaf5652009-07-23 18:56:43 +02002424 memcpy(&trans->cc.msg, disc, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002425
2426 new_cc_state(trans, GSM_CSTATE_DISCONNECT_IND);
2427
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002428 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002429}
2430
2431static int gsm48_cc_rx_release(struct gsm_trans *trans, struct msgb *msg)
2432{
2433 struct gsm48_hdr *gh = msgb_l3(msg);
2434 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2435 struct tlv_parsed tp;
2436 struct gsm_mncc rel;
2437 int rc;
2438
2439 gsm48_stop_cc_timer(trans);
2440
2441 memset(&rel, 0, sizeof(struct gsm_mncc));
2442 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002443 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002444 /* cause */
2445 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2446 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002447 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002448 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2449 }
2450 /* facility */
2451 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2452 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002453 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002454 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2455 }
2456 /* user-user */
2457 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2458 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002459 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002460 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2461 }
2462 /* ss-version */
2463 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2464 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002465 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002466 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2467 }
2468
Harald Weltedcaf5652009-07-23 18:56:43 +02002469 if (trans->cc.state == GSM_CSTATE_RELEASE_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002470 /* release collision 5.4.5 */
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002471 rc = mncc_recvmsg(trans->net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002472 } else {
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08002473 rc = gsm48_tx_simple(trans->conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02002474 GSM48_PDISC_CC | (trans->transaction_id << 4),
Harald Welte596fed42009-07-23 19:06:52 +02002475 GSM48_MT_CC_RELEASE_COMPL);
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002476 rc = mncc_recvmsg(trans->net, trans, MNCC_REL_IND, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002477 }
2478
2479 new_cc_state(trans, GSM_CSTATE_NULL);
2480
2481 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002482 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002483
2484 return rc;
2485}
2486
2487static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg)
2488{
2489 struct gsm_mncc *rel = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002490 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC REL");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002491 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2492
Harald Welte4bfdfe72009-06-10 23:11:52 +08002493 gh->msg_type = GSM48_MT_CC_RELEASE;
2494
Harald Welte4bfdfe72009-06-10 23:11:52 +08002495 gsm48_stop_cc_timer(trans);
2496 gsm48_start_cc_timer(trans, 0x308, GSM48_T308);
2497
2498 /* cause */
2499 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002500 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002501 /* facility */
2502 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002503 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002504 /* user-user */
2505 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002506 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002507
Harald Weltedcaf5652009-07-23 18:56:43 +02002508 trans->cc.T308_second = 0;
2509 memcpy(&trans->cc.msg, rel, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002510
Harald Weltedcaf5652009-07-23 18:56:43 +02002511 if (trans->cc.state != GSM_CSTATE_RELEASE_REQ)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002512 new_cc_state(trans, GSM_CSTATE_RELEASE_REQ);
2513
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002514 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002515}
2516
2517static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg)
2518{
2519 struct gsm48_hdr *gh = msgb_l3(msg);
2520 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2521 struct tlv_parsed tp;
2522 struct gsm_mncc rel;
2523 int rc = 0;
2524
2525 gsm48_stop_cc_timer(trans);
2526
2527 memset(&rel, 0, sizeof(struct gsm_mncc));
2528 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002529 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002530 /* cause */
2531 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2532 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002533 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002534 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2535 }
2536 /* facility */
2537 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2538 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002539 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002540 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2541 }
2542 /* user-user */
2543 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2544 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002545 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002546 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2547 }
2548 /* ss-version */
2549 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2550 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002551 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002552 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2553 }
2554
2555 if (trans->callref) {
Harald Weltedcaf5652009-07-23 18:56:43 +02002556 switch (trans->cc.state) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002557 case GSM_CSTATE_CALL_PRESENT:
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002558 rc = mncc_recvmsg(trans->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002559 MNCC_REJ_IND, &rel);
2560 break;
2561 case GSM_CSTATE_RELEASE_REQ:
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002562 rc = mncc_recvmsg(trans->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002563 MNCC_REL_CNF, &rel);
2564 break;
2565 default:
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002566 rc = mncc_recvmsg(trans->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002567 MNCC_REL_IND, &rel);
2568 }
2569 }
2570
2571 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002572 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002573
2574 return rc;
2575}
2576
2577static int gsm48_cc_tx_release_compl(struct gsm_trans *trans, void *arg)
2578{
2579 struct gsm_mncc *rel = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002580 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC REL COMPL");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002581 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Weltec7782de2010-12-21 19:31:41 +01002582 int ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002583
Harald Welte4bfdfe72009-06-10 23:11:52 +08002584 gh->msg_type = GSM48_MT_CC_RELEASE_COMPL;
2585
2586 trans->callref = 0;
2587
2588 gsm48_stop_cc_timer(trans);
2589
2590 /* cause */
2591 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002592 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002593 /* facility */
2594 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002595 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002596 /* user-user */
2597 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002598 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002599
Harald Weltec7782de2010-12-21 19:31:41 +01002600 ret = gsm48_conn_sendmsg(msg, trans->conn, trans);
2601
Harald Weltedcaf5652009-07-23 18:56:43 +02002602 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002603
Harald Weltec7782de2010-12-21 19:31:41 +01002604 return ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002605}
2606
2607static int gsm48_cc_rx_facility(struct gsm_trans *trans, struct msgb *msg)
2608{
2609 struct gsm48_hdr *gh = msgb_l3(msg);
2610 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2611 struct tlv_parsed tp;
2612 struct gsm_mncc fac;
2613
2614 memset(&fac, 0, sizeof(struct gsm_mncc));
2615 fac.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002616 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_FACILITY, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002617 /* facility */
2618 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2619 fac.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002620 gsm48_decode_facility(&fac.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002621 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2622 }
2623 /* ss-version */
2624 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2625 fac.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002626 gsm48_decode_ssversion(&fac.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002627 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2628 }
2629
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002630 return mncc_recvmsg(trans->net, trans, MNCC_FACILITY_IND, &fac);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002631}
2632
2633static int gsm48_cc_tx_facility(struct gsm_trans *trans, void *arg)
2634{
2635 struct gsm_mncc *fac = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002636 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC FAC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002637 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2638
Harald Welte4bfdfe72009-06-10 23:11:52 +08002639 gh->msg_type = GSM48_MT_CC_FACILITY;
2640
2641 /* facility */
Harald Welte55c8f352010-03-07 23:40:35 +01002642 gsm48_encode_facility(msg, 1, &fac->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002643
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002644 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002645}
2646
2647static int gsm48_cc_rx_hold(struct gsm_trans *trans, struct msgb *msg)
2648{
2649 struct gsm_mncc hold;
2650
2651 memset(&hold, 0, sizeof(struct gsm_mncc));
2652 hold.callref = trans->callref;
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002653 return mncc_recvmsg(trans->net, trans, MNCC_HOLD_IND, &hold);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002654}
2655
2656static int gsm48_cc_tx_hold_ack(struct gsm_trans *trans, void *arg)
2657{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002658 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC HLD ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002659 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2660
Harald Welte4bfdfe72009-06-10 23:11:52 +08002661 gh->msg_type = GSM48_MT_CC_HOLD_ACK;
2662
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002663 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002664}
2665
2666static int gsm48_cc_tx_hold_rej(struct gsm_trans *trans, void *arg)
2667{
2668 struct gsm_mncc *hold_rej = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002669 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC HLD REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002670 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2671
Harald Welte4bfdfe72009-06-10 23:11:52 +08002672 gh->msg_type = GSM48_MT_CC_HOLD_REJ;
2673
2674 /* cause */
2675 if (hold_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002676 gsm48_encode_cause(msg, 1, &hold_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002677 else
Harald Welte55c8f352010-03-07 23:40:35 +01002678 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002679
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002680 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002681}
2682
2683static int gsm48_cc_rx_retrieve(struct gsm_trans *trans, struct msgb *msg)
2684{
2685 struct gsm_mncc retrieve;
2686
2687 memset(&retrieve, 0, sizeof(struct gsm_mncc));
2688 retrieve.callref = trans->callref;
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002689 return mncc_recvmsg(trans->net, trans, MNCC_RETRIEVE_IND,
Harald Welte596fed42009-07-23 19:06:52 +02002690 &retrieve);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002691}
2692
2693static int gsm48_cc_tx_retrieve_ack(struct gsm_trans *trans, void *arg)
2694{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002695 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC RETR ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002696 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2697
Harald Welte4bfdfe72009-06-10 23:11:52 +08002698 gh->msg_type = GSM48_MT_CC_RETR_ACK;
2699
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002700 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002701}
2702
2703static int gsm48_cc_tx_retrieve_rej(struct gsm_trans *trans, void *arg)
2704{
2705 struct gsm_mncc *retrieve_rej = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002706 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC RETR REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002707 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2708
Harald Welte4bfdfe72009-06-10 23:11:52 +08002709 gh->msg_type = GSM48_MT_CC_RETR_REJ;
2710
2711 /* cause */
2712 if (retrieve_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002713 gsm48_encode_cause(msg, 1, &retrieve_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002714 else
Harald Welte55c8f352010-03-07 23:40:35 +01002715 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002716
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002717 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002718}
2719
2720static int gsm48_cc_rx_start_dtmf(struct gsm_trans *trans, struct msgb *msg)
2721{
2722 struct gsm48_hdr *gh = msgb_l3(msg);
2723 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2724 struct tlv_parsed tp;
2725 struct gsm_mncc dtmf;
2726
2727 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2728 dtmf.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002729 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002730 /* keypad facility */
2731 if (TLVP_PRESENT(&tp, GSM48_IE_KPD_FACILITY)) {
2732 dtmf.fields |= MNCC_F_KEYPAD;
Harald Welte55c8f352010-03-07 23:40:35 +01002733 gsm48_decode_keypad(&dtmf.keypad,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002734 TLVP_VAL(&tp, GSM48_IE_KPD_FACILITY)-1);
2735 }
2736
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002737 return mncc_recvmsg(trans->net, trans, MNCC_START_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002738}
2739
2740static int gsm48_cc_tx_start_dtmf_ack(struct gsm_trans *trans, void *arg)
2741{
2742 struct gsm_mncc *dtmf = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002743 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 DTMF ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002744 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2745
Harald Welte4bfdfe72009-06-10 23:11:52 +08002746 gh->msg_type = GSM48_MT_CC_START_DTMF_ACK;
2747
2748 /* keypad */
2749 if (dtmf->fields & MNCC_F_KEYPAD)
Harald Welte55c8f352010-03-07 23:40:35 +01002750 gsm48_encode_keypad(msg, dtmf->keypad);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002751
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002752 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002753}
2754
2755static int gsm48_cc_tx_start_dtmf_rej(struct gsm_trans *trans, void *arg)
2756{
2757 struct gsm_mncc *dtmf = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002758 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 DTMF REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002759 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2760
Harald Welte4bfdfe72009-06-10 23:11:52 +08002761 gh->msg_type = GSM48_MT_CC_START_DTMF_REJ;
2762
2763 /* cause */
2764 if (dtmf->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002765 gsm48_encode_cause(msg, 1, &dtmf->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002766 else
Harald Welte55c8f352010-03-07 23:40:35 +01002767 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002768
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002769 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002770}
2771
2772static int gsm48_cc_tx_stop_dtmf_ack(struct gsm_trans *trans, void *arg)
2773{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002774 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 DTMF STP ACK");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002775 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2776
Harald Welte4bfdfe72009-06-10 23:11:52 +08002777 gh->msg_type = GSM48_MT_CC_STOP_DTMF_ACK;
2778
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002779 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002780}
2781
2782static int gsm48_cc_rx_stop_dtmf(struct gsm_trans *trans, struct msgb *msg)
2783{
2784 struct gsm_mncc dtmf;
2785
2786 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2787 dtmf.callref = trans->callref;
2788
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002789 return mncc_recvmsg(trans->net, trans, MNCC_STOP_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002790}
2791
2792static int gsm48_cc_rx_modify(struct gsm_trans *trans, struct msgb *msg)
2793{
2794 struct gsm48_hdr *gh = msgb_l3(msg);
2795 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2796 struct tlv_parsed tp;
2797 struct gsm_mncc modify;
2798
2799 memset(&modify, 0, sizeof(struct gsm_mncc));
2800 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002801 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002802 /* bearer capability */
2803 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2804 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002805 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002806 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Andreas Eversberga83d5112013-12-07 18:32:28 +01002807 apply_codec_restrictions(trans->conn->bts, &modify.bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002808 }
2809
2810 new_cc_state(trans, GSM_CSTATE_MO_ORIG_MODIFY);
2811
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002812 return mncc_recvmsg(trans->net, trans, MNCC_MODIFY_IND, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002813}
2814
2815static int gsm48_cc_tx_modify(struct gsm_trans *trans, void *arg)
2816{
2817 struct gsm_mncc *modify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002818 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC MOD");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002819 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2820
Harald Welte4bfdfe72009-06-10 23:11:52 +08002821 gh->msg_type = GSM48_MT_CC_MODIFY;
2822
2823 gsm48_start_cc_timer(trans, 0x323, GSM48_T323);
2824
2825 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002826 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002827
2828 new_cc_state(trans, GSM_CSTATE_MO_TERM_MODIFY);
2829
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002830 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002831}
2832
2833static int gsm48_cc_rx_modify_complete(struct gsm_trans *trans, struct msgb *msg)
2834{
2835 struct gsm48_hdr *gh = msgb_l3(msg);
2836 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2837 struct tlv_parsed tp;
2838 struct gsm_mncc modify;
2839
2840 gsm48_stop_cc_timer(trans);
2841
2842 memset(&modify, 0, sizeof(struct gsm_mncc));
2843 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002844 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002845 /* bearer capability */
2846 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2847 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002848 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002849 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Andreas Eversberga83d5112013-12-07 18:32:28 +01002850 apply_codec_restrictions(trans->conn->bts, &modify.bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002851 }
2852
2853 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2854
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002855 return mncc_recvmsg(trans->net, trans, MNCC_MODIFY_CNF, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002856}
2857
2858static int gsm48_cc_tx_modify_complete(struct gsm_trans *trans, void *arg)
2859{
2860 struct gsm_mncc *modify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002861 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC MOD COMPL");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002862 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2863
Harald Welte4bfdfe72009-06-10 23:11:52 +08002864 gh->msg_type = GSM48_MT_CC_MODIFY_COMPL;
2865
2866 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002867 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002868
2869 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2870
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002871 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002872}
2873
2874static int gsm48_cc_rx_modify_reject(struct gsm_trans *trans, struct msgb *msg)
2875{
2876 struct gsm48_hdr *gh = msgb_l3(msg);
2877 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2878 struct tlv_parsed tp;
2879 struct gsm_mncc modify;
2880
2881 gsm48_stop_cc_timer(trans);
2882
2883 memset(&modify, 0, sizeof(struct gsm_mncc));
2884 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002885 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, GSM48_IE_CAUSE);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002886 /* bearer capability */
2887 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2888 modify.fields |= GSM48_IE_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002889 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002890 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
Andreas Eversberga83d5112013-12-07 18:32:28 +01002891 apply_codec_restrictions(trans->conn->bts, &modify.bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002892 }
2893 /* cause */
2894 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2895 modify.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002896 gsm48_decode_cause(&modify.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002897 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2898 }
2899
2900 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2901
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002902 return mncc_recvmsg(trans->net, trans, MNCC_MODIFY_REJ, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002903}
2904
2905static int gsm48_cc_tx_modify_reject(struct gsm_trans *trans, void *arg)
2906{
2907 struct gsm_mncc *modify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002908 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC MOD REJ");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002909 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2910
Harald Welte4bfdfe72009-06-10 23:11:52 +08002911 gh->msg_type = GSM48_MT_CC_MODIFY_REJECT;
2912
2913 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002914 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002915 /* cause */
Harald Welte55c8f352010-03-07 23:40:35 +01002916 gsm48_encode_cause(msg, 1, &modify->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002917
2918 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2919
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002920 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002921}
2922
2923static int gsm48_cc_tx_notify(struct gsm_trans *trans, void *arg)
2924{
2925 struct gsm_mncc *notify = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002926 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 CC NOT");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002927 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2928
Harald Welte4bfdfe72009-06-10 23:11:52 +08002929 gh->msg_type = GSM48_MT_CC_NOTIFY;
2930
2931 /* notify */
Harald Welte55c8f352010-03-07 23:40:35 +01002932 gsm48_encode_notify(msg, notify->notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002933
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002934 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002935}
2936
2937static int gsm48_cc_rx_notify(struct gsm_trans *trans, struct msgb *msg)
2938{
2939 struct gsm48_hdr *gh = msgb_l3(msg);
2940 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2941// struct tlv_parsed tp;
2942 struct gsm_mncc notify;
2943
2944 memset(&notify, 0, sizeof(struct gsm_mncc));
2945 notify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002946// tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002947 if (payload_len >= 1)
Harald Welte55c8f352010-03-07 23:40:35 +01002948 gsm48_decode_notify(&notify.notify, gh->data);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002949
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002950 return mncc_recvmsg(trans->net, trans, MNCC_NOTIFY_IND, &notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002951}
2952
2953static int gsm48_cc_tx_userinfo(struct gsm_trans *trans, void *arg)
2954{
2955 struct gsm_mncc *user = arg;
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +01002956 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 USR INFO");
Harald Welte4bfdfe72009-06-10 23:11:52 +08002957 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2958
Harald Welte4bfdfe72009-06-10 23:11:52 +08002959 gh->msg_type = GSM48_MT_CC_USER_INFO;
2960
2961 /* user-user */
2962 if (user->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002963 gsm48_encode_useruser(msg, 1, &user->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002964 /* more data */
2965 if (user->more)
Harald Welte55c8f352010-03-07 23:40:35 +01002966 gsm48_encode_more(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002967
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002968 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002969}
2970
2971static int gsm48_cc_rx_userinfo(struct gsm_trans *trans, struct msgb *msg)
2972{
2973 struct gsm48_hdr *gh = msgb_l3(msg);
2974 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2975 struct tlv_parsed tp;
2976 struct gsm_mncc user;
2977
2978 memset(&user, 0, sizeof(struct gsm_mncc));
2979 user.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002980 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_USER_USER, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002981 /* user-user */
2982 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2983 user.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002984 gsm48_decode_useruser(&user.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002985 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2986 }
2987 /* more data */
2988 if (TLVP_PRESENT(&tp, GSM48_IE_MORE_DATA))
2989 user.more = 1;
2990
Jacob Erlbeckf07c6052014-12-02 11:58:00 +01002991 return mncc_recvmsg(trans->net, trans, MNCC_USERINFO_IND, &user);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002992}
2993
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02002994static int _gsm48_lchan_modify(struct gsm_trans *trans, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002995{
2996 struct gsm_mncc *mode = arg;
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02002997 struct gsm_lchan *lchan = trans->conn->lchan;
2998
2999 /*
3000 * We were forced to make an assignment a lot earlier and
3001 * we should avoid sending another assignment that might
3002 * even lead to a different kind of lchan (TCH/F vs. TCH/H).
3003 * In case of rtp-bridge it is too late to change things
3004 * here.
3005 */
3006 if (trans->conn->mncc_rtp_bridge && lchan->tch_mode != GSM48_CMODE_SIGN)
3007 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003008
Andreas Eversberg72c0dbd2013-03-31 11:50:35 +02003009 return gsm0808_assign_req(trans->conn, mode->lchan_mode,
3010 trans->conn->lchan->type != GSM_LCHAN_TCH_H);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003011}
3012
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02003013static void mncc_recv_rtp(struct gsm_network *net, uint32_t callref,
3014 int cmd, uint32_t addr, uint16_t port, uint32_t payload_type,
3015 uint32_t payload_msg_type)
3016{
3017 uint8_t data[sizeof(struct gsm_mncc)];
3018 struct gsm_mncc_rtp *rtp;
3019
3020 memset(&data, 0, sizeof(data));
3021 rtp = (struct gsm_mncc_rtp *) &data[0];
3022
3023 rtp->callref = callref;
3024 rtp->msg_type = cmd;
3025 rtp->ip = addr;
3026 rtp->port = port;
3027 rtp->payload_type = payload_type;
3028 rtp->payload_msg_type = payload_msg_type;
3029 mncc_recvmsg(net, NULL, cmd, (struct gsm_mncc *)data);
3030}
3031
3032static void mncc_recv_rtp_sock(struct gsm_network *net, struct gsm_trans *trans, int cmd)
3033{
3034 struct gsm_lchan *lchan;
3035 int msg_type;
3036
3037 lchan = trans->conn->lchan;
3038 switch (lchan->abis_ip.rtp_payload) {
3039 case RTP_PT_GSM_FULL:
3040 msg_type = GSM_TCHF_FRAME;
3041 break;
3042 case RTP_PT_GSM_EFR:
3043 msg_type = GSM_TCHF_FRAME_EFR;
3044 break;
3045 case RTP_PT_GSM_HALF:
3046 msg_type = GSM_TCHH_FRAME;
3047 break;
3048 case RTP_PT_AMR:
3049 msg_type = GSM_TCH_FRAME_AMR;
3050 break;
3051 default:
3052 LOGP(DMNCC, LOGL_ERROR, "%s unknown payload type %d\n",
3053 gsm_lchan_name(lchan), lchan->abis_ip.rtp_payload);
3054 msg_type = 0;
3055 break;
3056 }
3057
3058 return mncc_recv_rtp(net, trans->callref, cmd,
3059 lchan->abis_ip.bound_ip,
3060 lchan->abis_ip.bound_port,
3061 lchan->abis_ip.rtp_payload,
3062 msg_type);
3063}
3064
3065static void mncc_recv_rtp_err(struct gsm_network *net, uint32_t callref, int cmd)
3066{
3067 return mncc_recv_rtp(net, callref, cmd, 0, 0, 0, 0);
3068}
3069
3070static int tch_rtp_create(struct gsm_network *net, uint32_t callref)
3071{
3072 struct gsm_bts *bts;
3073 struct gsm_lchan *lchan;
3074 struct gsm_trans *trans;
Max8db12e42016-04-18 23:11:18 +02003075 enum gsm48_chan_mode m;
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02003076
3077 /* Find callref */
3078 trans = trans_find_by_callref(net, callref);
3079 if (!trans) {
3080 LOGP(DMNCC, LOGL_ERROR, "RTP create for non-existing trans\n");
3081 mncc_recv_rtp_err(net, callref, MNCC_RTP_CREATE);
3082 return -EIO;
3083 }
3084 log_set_context(BSC_CTX_SUBSCR, trans->subscr);
3085 if (!trans->conn) {
3086 LOGP(DMNCC, LOGL_NOTICE, "RTP create for trans without conn\n");
3087 mncc_recv_rtp_err(net, callref, MNCC_RTP_CREATE);
3088 return 0;
3089 }
3090
3091 lchan = trans->conn->lchan;
3092 bts = lchan->ts->trx->bts;
3093 if (!is_ipaccess_bts(bts)) {
3094 /*
3095 * I want this to be straight forward and have no audio flow
3096 * through the nitb/osmo-mss system. This currently means that
3097 * this will not work with BS11/Nokia type BTS. We would need
3098 * to have a trau<->rtp bridge for these but still preferable
3099 * in another process.
3100 */
3101 LOGP(DMNCC, LOGL_ERROR, "RTP create only works with IP systems\n");
3102 mncc_recv_rtp_err(net, callref, MNCC_RTP_CREATE);
3103 return -EINVAL;
3104 }
3105
3106 trans->conn->mncc_rtp_bridge = 1;
3107 /*
3108 * *sigh* we need to pick a codec now. Pick the most generic one
3109 * right now and hope we could fix that later on. This is very
Holger Hans Peter Freyther53122b02015-08-20 19:10:58 +02003110 * similiar to the routine above.
3111 * Fallback to the internal MNCC mode to select a route.
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02003112 */
3113 if (lchan->tch_mode == GSM48_CMODE_SIGN) {
3114 trans->conn->mncc_rtp_create_pending = 1;
Max8db12e42016-04-18 23:11:18 +02003115 m = mncc_codec_for_mode(lchan->type);
3116 LOGP(DMNCC, LOGL_DEBUG, "RTP create: codec=%s, chan_type=%s\n",
3117 get_value_string(gsm48_chan_mode_names, m),
3118 get_value_string(gsm_chan_t_names, lchan->type));
3119 return gsm0808_assign_req(trans->conn, m,
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02003120 lchan->type != GSM_LCHAN_TCH_H);
3121 }
3122
3123 mncc_recv_rtp_sock(trans->net, trans, MNCC_RTP_CREATE);
3124 return 0;
3125}
3126
3127static int tch_rtp_connect(struct gsm_network *net, void *arg)
3128{
3129 struct gsm_lchan *lchan;
3130 struct gsm_trans *trans;
3131 struct gsm_mncc_rtp *rtp = arg;
3132
3133 /* Find callref */
3134 trans = trans_find_by_callref(net, rtp->callref);
3135 if (!trans) {
3136 LOGP(DMNCC, LOGL_ERROR, "RTP connect for non-existing trans\n");
3137 mncc_recv_rtp_err(net, rtp->callref, MNCC_RTP_CONNECT);
3138 return -EIO;
3139 }
3140 log_set_context(BSC_CTX_SUBSCR, trans->subscr);
3141 if (!trans->conn) {
3142 LOGP(DMNCC, LOGL_ERROR, "RTP connect for trans without conn\n");
3143 mncc_recv_rtp_err(net, rtp->callref, MNCC_RTP_CONNECT);
3144 return 0;
3145 }
3146
3147 lchan = trans->conn->lchan;
Max8db12e42016-04-18 23:11:18 +02003148 LOGP(DMNCC, LOGL_DEBUG, "RTP connect: codec=%s, chan_type=%s\n",
3149 get_value_string(gsm48_chan_mode_names,
3150 mncc_codec_for_mode(lchan->type)),
3151 get_value_string(gsm_chan_t_names, lchan->type));
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02003152
3153 /* TODO: Check if payload_msg_type is compatible with what we have */
3154 if (rtp->payload_type != lchan->abis_ip.rtp_payload) {
3155 LOGP(DMNCC, LOGL_ERROR, "RTP connect with different RTP payload\n");
3156 mncc_recv_rtp_err(net, rtp->callref, MNCC_RTP_CONNECT);
3157 }
3158
3159 /*
3160 * FIXME: payload2 can't be sent with MDCX as the osmo-bts code
3161 * complains about both rtp and rtp payload2 being present in the
3162 * same package!
3163 */
Holger Hans Peter Freytherc21dcb22015-08-04 14:41:21 +02003164 trans->conn->mncc_rtp_connect_pending = 1;
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02003165 return rsl_ipacc_mdcx(lchan, rtp->ip, rtp->port, 0);
3166}
3167
3168static int tch_rtp_signal(struct gsm_lchan *lchan, int signal)
3169{
3170 struct gsm_network *net;
3171 struct gsm_trans *tmp, *trans = NULL;
3172
3173 net = lchan->ts->trx->bts->network;
3174 llist_for_each_entry(tmp, &net->trans_list, entry) {
3175 if (!tmp->conn)
3176 continue;
Holger Hans Peter Freytherc21dcb22015-08-04 14:41:21 +02003177 if (tmp->conn->lchan != lchan && tmp->conn->ho_lchan != lchan)
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02003178 continue;
3179 trans = tmp;
3180 break;
3181 }
3182
3183 if (!trans) {
3184 LOGP(DMNCC, LOGL_ERROR, "%s IPA abis signal but no transaction.\n",
3185 gsm_lchan_name(lchan));
3186 return 0;
3187 }
3188
3189 switch (signal) {
3190 case S_ABISIP_CRCX_ACK:
3191 if (lchan->conn->mncc_rtp_create_pending) {
3192 lchan->conn->mncc_rtp_create_pending = 0;
3193 LOGP(DMNCC, LOGL_NOTICE, "%s sending pending RTP create ind.\n",
3194 gsm_lchan_name(lchan));
3195 mncc_recv_rtp_sock(net, trans, MNCC_RTP_CREATE);
3196 }
Holger Hans Peter Freytherc21dcb22015-08-04 14:41:21 +02003197 /*
3198 * TODO: this appears to be too early? Why not until after
3199 * the handover detect or the handover complete?
3200 */
3201 maybe_switch_for_handover(lchan);
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02003202 break;
3203 case S_ABISIP_MDCX_ACK:
Holger Hans Peter Freytherc21dcb22015-08-04 14:41:21 +02003204 if (lchan->conn->mncc_rtp_connect_pending) {
3205 lchan->conn->mncc_rtp_connect_pending = 0;
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02003206 LOGP(DMNCC, LOGL_NOTICE, "%s sending pending RTP connect ind.\n",
3207 gsm_lchan_name(lchan));
3208 mncc_recv_rtp_sock(net, trans, MNCC_RTP_CONNECT);
3209 }
3210 break;
3211 }
3212
3213 return 0;
3214}
3215
3216
Harald Welte4bfdfe72009-06-10 23:11:52 +08003217static struct downstate {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02003218 uint32_t states;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003219 int type;
3220 int (*rout) (struct gsm_trans *trans, void *arg);
3221} downstatelist[] = {
3222 /* mobile originating call establishment */
3223 {SBIT(GSM_CSTATE_INITIATED), /* 5.2.1.2 */
3224 MNCC_CALL_PROC_REQ, gsm48_cc_tx_call_proc},
3225 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.2 | 5.2.1.5 */
3226 MNCC_ALERT_REQ, gsm48_cc_tx_alerting},
3227 {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 */
3228 MNCC_SETUP_RSP, gsm48_cc_tx_connect},
3229 {SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.4.2 */
3230 MNCC_PROGRESS_REQ, gsm48_cc_tx_progress},
3231 /* mobile terminating call establishment */
3232 {SBIT(GSM_CSTATE_NULL), /* 5.2.2.1 */
3233 MNCC_SETUP_REQ, gsm48_cc_tx_setup},
3234 {SBIT(GSM_CSTATE_CONNECT_REQUEST),
3235 MNCC_SETUP_COMPL_REQ, gsm48_cc_tx_connect_ack},
3236 /* signalling during call */
3237 {SBIT(GSM_CSTATE_ACTIVE),
3238 MNCC_NOTIFY_REQ, gsm48_cc_tx_notify},
3239 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ),
3240 MNCC_FACILITY_REQ, gsm48_cc_tx_facility},
3241 {ALL_STATES,
3242 MNCC_START_DTMF_RSP, gsm48_cc_tx_start_dtmf_ack},
3243 {ALL_STATES,
3244 MNCC_START_DTMF_REJ, gsm48_cc_tx_start_dtmf_rej},
3245 {ALL_STATES,
3246 MNCC_STOP_DTMF_RSP, gsm48_cc_tx_stop_dtmf_ack},
3247 {SBIT(GSM_CSTATE_ACTIVE),
3248 MNCC_HOLD_CNF, gsm48_cc_tx_hold_ack},
3249 {SBIT(GSM_CSTATE_ACTIVE),
3250 MNCC_HOLD_REJ, gsm48_cc_tx_hold_rej},
3251 {SBIT(GSM_CSTATE_ACTIVE),
3252 MNCC_RETRIEVE_CNF, gsm48_cc_tx_retrieve_ack},
3253 {SBIT(GSM_CSTATE_ACTIVE),
3254 MNCC_RETRIEVE_REJ, gsm48_cc_tx_retrieve_rej},
3255 {SBIT(GSM_CSTATE_ACTIVE),
3256 MNCC_MODIFY_REQ, gsm48_cc_tx_modify},
3257 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3258 MNCC_MODIFY_RSP, gsm48_cc_tx_modify_complete},
3259 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3260 MNCC_MODIFY_REJ, gsm48_cc_tx_modify_reject},
3261 {SBIT(GSM_CSTATE_ACTIVE),
3262 MNCC_USERINFO_REQ, gsm48_cc_tx_userinfo},
3263 /* clearing */
3264 {SBIT(GSM_CSTATE_INITIATED),
3265 MNCC_REJ_REQ, gsm48_cc_tx_release_compl},
3266 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_DISCONNECT_IND) - SBIT(GSM_CSTATE_RELEASE_REQ) - SBIT(GSM_CSTATE_DISCONNECT_REQ), /* 5.4.4 */
3267 MNCC_DISC_REQ, gsm48_cc_tx_disconnect},
3268 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3269 MNCC_REL_REQ, gsm48_cc_tx_release},
3270 /* special */
3271 {ALL_STATES,
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02003272 MNCC_LCHAN_MODIFY, _gsm48_lchan_modify},
Harald Welte4bfdfe72009-06-10 23:11:52 +08003273};
3274
3275#define DOWNSLLEN \
3276 (sizeof(downstatelist) / sizeof(struct downstate))
3277
3278
Harald Welte76556372010-12-22 23:57:45 +01003279int mncc_tx_to_cc(struct gsm_network *net, int msg_type, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08003280{
Harald Welte1a6f7982009-08-09 18:52:33 +02003281 int i, rc = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003282 struct gsm_trans *trans = NULL, *transt;
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003283 struct gsm_subscriber_connection *conn = NULL;
Holger Hans Peter Freytherb56a6bb2010-12-27 16:02:25 +01003284 struct gsm_bts *bts = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003285 struct gsm_mncc *data = arg, rel;
3286
Harald Welte04dc88f2010-12-22 21:45:05 +01003287 DEBUGP(DMNCC, "receive message %s\n", get_mncc_name(msg_type));
3288
Harald Welte4bfdfe72009-06-10 23:11:52 +08003289 /* handle special messages */
3290 switch(msg_type) {
3291 case MNCC_BRIDGE:
Max3ffce192016-04-25 15:22:00 +02003292 rc = tch_bridge(net, arg);
3293 if (rc < 0)
3294 disconnect_bridge(net, arg, -rc);
3295 return rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003296 case MNCC_FRAME_DROP:
Harald Welteda7ab742009-12-19 22:23:05 +01003297 return tch_recv_mncc(net, data->callref, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003298 case MNCC_FRAME_RECV:
Harald Welteda7ab742009-12-19 22:23:05 +01003299 return tch_recv_mncc(net, data->callref, 1);
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +02003300 case MNCC_RTP_CREATE:
3301 return tch_rtp_create(net, data->callref);
3302 case MNCC_RTP_CONNECT:
3303 return tch_rtp_connect(net, arg);
3304 case MNCC_RTP_FREE:
3305 /* unused right now */
3306 return -EIO;
Harald Welteda7ab742009-12-19 22:23:05 +01003307 case GSM_TCHF_FRAME:
Andreas Eversbergd074f8f2013-12-06 16:59:10 +01003308 case GSM_TCHF_FRAME_EFR:
Andreas Eversberg63bfdd82014-01-17 19:06:38 +01003309 case GSM_TCHH_FRAME:
Andreas Eversbergd8967f72012-03-08 14:39:19 +01003310 case GSM_TCH_FRAME_AMR:
Harald Welteda7ab742009-12-19 22:23:05 +01003311 /* Find callref */
3312 trans = trans_find_by_callref(net, data->callref);
Harald Welte04dc88f2010-12-22 21:45:05 +01003313 if (!trans) {
3314 LOGP(DMNCC, LOGL_ERROR, "TCH frame for non-existing trans\n");
Harald Welteda7ab742009-12-19 22:23:05 +01003315 return -EIO;
Harald Welte04dc88f2010-12-22 21:45:05 +01003316 }
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01003317 log_set_context(BSC_CTX_SUBSCR, trans->subscr);
Harald Welte04dc88f2010-12-22 21:45:05 +01003318 if (!trans->conn) {
3319 LOGP(DMNCC, LOGL_NOTICE, "TCH frame for trans without conn\n");
Harald Welteda7ab742009-12-19 22:23:05 +01003320 return 0;
Harald Welte04dc88f2010-12-22 21:45:05 +01003321 }
Andreas Eversberg93e795c2013-03-11 08:20:48 +01003322 if (!trans->conn->lchan) {
3323 LOGP(DMNCC, LOGL_NOTICE, "TCH frame for trans without lchan\n");
3324 return 0;
3325 }
Andreas Eversberg63bfdd82014-01-17 19:06:38 +01003326 if (trans->conn->lchan->type != GSM_LCHAN_TCH_F
3327 && trans->conn->lchan->type != GSM_LCHAN_TCH_H) {
Harald Welte04dc88f2010-12-22 21:45:05 +01003328 /* This should be LOGL_ERROR or NOTICE, but
3329 * unfortuantely it happens for a couple of frames at
3330 * the beginning of every RTP connection */
Andreas Eversberg63bfdd82014-01-17 19:06:38 +01003331 LOGP(DMNCC, LOGL_DEBUG, "TCH frame for lchan != TCH_F/TCH_H\n");
Harald Welteda7ab742009-12-19 22:23:05 +01003332 return 0;
Harald Welte04dc88f2010-12-22 21:45:05 +01003333 }
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01003334 bts = trans->conn->lchan->ts->trx->bts;
Harald Welteda7ab742009-12-19 22:23:05 +01003335 switch (bts->type) {
3336 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +02003337 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Welte04dc88f2010-12-22 21:45:05 +01003338 if (!trans->conn->lchan->abis_ip.rtp_socket) {
Harald Welte91c59c82010-12-24 12:40:21 +01003339 DEBUGP(DMNCC, "TCH frame to lchan without RTP connection\n");
Harald Welteda7ab742009-12-19 22:23:05 +01003340 return 0;
Harald Welte04dc88f2010-12-22 21:45:05 +01003341 }
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01003342 return rtp_send_frame(trans->conn->lchan->abis_ip.rtp_socket, arg);
Harald Welteda7ab742009-12-19 22:23:05 +01003343 case GSM_BTS_TYPE_BS11:
Harald Weltec76fb5d2011-03-20 06:27:31 -03003344 case GSM_BTS_TYPE_RBS2000:
Harald Welte10456972011-08-05 20:11:18 +02003345 case GSM_BTS_TYPE_NOKIA_SITE:
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01003346 return trau_send_frame(trans->conn->lchan, arg);
Harald Welteda7ab742009-12-19 22:23:05 +01003347 default:
Harald Weltee5215b52011-08-09 21:53:20 +02003348 LOGP(DCC, LOGL_ERROR, "Unknown BTS type %u\n", bts->type);
Harald Welteda7ab742009-12-19 22:23:05 +01003349 }
3350 return -EINVAL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003351 }
3352
3353 memset(&rel, 0, sizeof(struct gsm_mncc));
3354 rel.callref = data->callref;
3355
3356 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02003357 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003358
3359 /* Callref unknown */
3360 if (!trans) {
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003361 struct gsm_subscriber *subscr;
3362
Harald Welte4a3464c2009-07-04 10:11:24 +02003363 if (msg_type != MNCC_SETUP_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003364 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3365 "Received '%s' from MNCC with "
3366 "unknown callref %d\n", data->called.number,
3367 get_mncc_name(msg_type), data->callref);
3368 /* Invalid call reference */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003369 return mncc_release_ind(net, NULL, data->callref,
3370 GSM48_CAUSE_LOC_PRN_S_LU,
3371 GSM48_CC_CAUSE_INVAL_TRANS_ID);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003372 }
Andreas Eversbergc079be42009-06-15 23:22:09 +02003373 if (!data->called.number[0] && !data->imsi[0]) {
3374 DEBUGP(DCC, "(bts - trx - ts - ti) "
3375 "Received '%s' from MNCC with "
3376 "no number or IMSI\n", get_mncc_name(msg_type));
3377 /* Invalid number */
3378 return mncc_release_ind(net, NULL, data->callref,
3379 GSM48_CAUSE_LOC_PRN_S_LU,
3380 GSM48_CC_CAUSE_INV_NR_FORMAT);
3381 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003382 /* New transaction due to setup, find subscriber */
Andreas Eversbergc079be42009-06-15 23:22:09 +02003383 if (data->called.number[0])
Jacob Erlbeck1e30a282014-12-03 09:28:24 +01003384 subscr = subscr_get_by_extension(net->subscr_group,
Harald Welte9176bd42009-07-23 18:46:00 +02003385 data->called.number);
Andreas Eversbergc079be42009-06-15 23:22:09 +02003386 else
Jacob Erlbeck1e30a282014-12-03 09:28:24 +01003387 subscr = subscr_get_by_imsi(net->subscr_group,
3388 data->imsi);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01003389
3390 /* update the subscriber we deal with */
3391 log_set_context(BSC_CTX_SUBSCR, subscr);
3392
Harald Welte4bfdfe72009-06-10 23:11:52 +08003393 /* If subscriber is not found */
3394 if (!subscr) {
3395 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3396 "Received '%s' from MNCC with "
3397 "unknown subscriber %s\n", data->called.number,
3398 get_mncc_name(msg_type), data->called.number);
3399 /* Unknown subscriber */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003400 return mncc_release_ind(net, NULL, data->callref,
3401 GSM48_CAUSE_LOC_PRN_S_LU,
3402 GSM48_CC_CAUSE_UNASSIGNED_NR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003403 }
3404 /* If subscriber is not "attached" */
3405 if (!subscr->lac) {
3406 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3407 "Received '%s' from MNCC with "
3408 "detached subscriber %s\n", data->called.number,
3409 get_mncc_name(msg_type), data->called.number);
3410 subscr_put(subscr);
3411 /* Temporarily out of order */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003412 return mncc_release_ind(net, NULL, data->callref,
3413 GSM48_CAUSE_LOC_PRN_S_LU,
3414 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003415 }
3416 /* Create transaction */
Jacob Erlbeckaf792d62014-12-02 14:22:53 +01003417 trans = trans_alloc(net, subscr, GSM48_PDISC_CC, 0xff, data->callref);
Harald Weltedcaf5652009-07-23 18:56:43 +02003418 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003419 DEBUGP(DCC, "No memory for trans.\n");
3420 subscr_put(subscr);
3421 /* Ressource unavailable */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003422 mncc_release_ind(net, NULL, data->callref,
3423 GSM48_CAUSE_LOC_PRN_S_LU,
3424 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003425 return -ENOMEM;
3426 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003427 /* Find lchan */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003428 conn = connection_for_subscr(subscr);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003429
Harald Welte4bfdfe72009-06-10 23:11:52 +08003430 /* If subscriber has no lchan */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003431 if (!conn) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003432 /* find transaction with this subscriber already paging */
3433 llist_for_each_entry(transt, &net->trans_list, entry) {
3434 /* Transaction of our lchan? */
3435 if (transt == trans ||
3436 transt->subscr != subscr)
3437 continue;
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01003438 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003439 "Received '%s' from MNCC with "
3440 "unallocated channel, paging already "
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01003441 "started for lac %d.\n",
Harald Welte4bfdfe72009-06-10 23:11:52 +08003442 data->called.number,
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01003443 get_mncc_name(msg_type), subscr->lac);
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003444 subscr_put(subscr);
3445 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003446 return 0;
3447 }
3448 /* store setup informations until paging was successfull */
Harald Weltedcaf5652009-07-23 18:56:43 +02003449 memcpy(&trans->cc.msg, data, sizeof(struct gsm_mncc));
Sylvain Munaut567c8dc2010-12-01 22:17:36 +01003450
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +02003451 /* Request a channel */
3452 trans->paging_request = subscr_request_channel(subscr,
3453 RSL_CHANNEED_TCH_F, setup_trig_pag_evt,
3454 trans);
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01003455 if (!trans->paging_request) {
3456 LOGP(DCC, LOGL_ERROR, "Failed to allocate paging token.\n");
3457 subscr_put(subscr);
3458 trans_free(trans);
3459 return 0;
3460 }
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003461 subscr_put(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003462 return 0;
3463 }
3464 /* Assign lchan */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003465 trans->conn = conn;
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003466 subscr_put(subscr);
Holger Hans Peter Freyther249b3f32013-12-29 20:24:37 +01003467 } else {
3468 /* update the subscriber we deal with */
3469 log_set_context(BSC_CTX_SUBSCR, trans->subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003470 }
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01003471
3472 if (trans->conn)
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003473 conn = trans->conn;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003474
3475 /* if paging did not respond yet */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003476 if (!conn) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003477 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003478 "Received '%s' from MNCC in paging state\n",
Harald Welte4bfdfe72009-06-10 23:11:52 +08003479 (trans->subscr)?(trans->subscr->extension):"-",
3480 get_mncc_name(msg_type));
Harald Weltec66b71c2009-06-11 14:23:20 +08003481 mncc_set_cause(&rel, GSM48_CAUSE_LOC_PRN_S_LU,
3482 GSM48_CC_CAUSE_NORM_CALL_CLEAR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003483 if (msg_type == MNCC_REL_REQ)
3484 rc = mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
3485 else
3486 rc = mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
3487 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02003488 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003489 return rc;
3490 }
3491
3492 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x sub %s) "
3493 "Received '%s' from MNCC in state %d (%s)\n",
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003494 conn->bts->nr, conn->lchan->ts->trx->nr, conn->lchan->ts->nr,
Harald Welte4bfdfe72009-06-10 23:11:52 +08003495 trans->transaction_id,
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01003496 (trans->conn->subscr)?(trans->conn->subscr->extension):"-",
Harald Weltedcaf5652009-07-23 18:56:43 +02003497 get_mncc_name(msg_type), trans->cc.state,
Harald Weltee95daf192010-03-25 12:13:02 +08003498 gsm48_cc_state_name(trans->cc.state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08003499
3500 /* Find function for current state and message */
3501 for (i = 0; i < DOWNSLLEN; i++)
3502 if ((msg_type == downstatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003503 && ((1 << trans->cc.state) & downstatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003504 break;
3505 if (i == DOWNSLLEN) {
3506 DEBUGP(DCC, "Message unhandled at this state.\n");
3507 return 0;
3508 }
3509
3510 rc = downstatelist[i].rout(trans, arg);
3511
3512 return rc;
3513}
3514
3515
3516static struct datastate {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02003517 uint32_t states;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003518 int type;
3519 int (*rout) (struct gsm_trans *trans, struct msgb *msg);
3520} datastatelist[] = {
3521 /* mobile originating call establishment */
3522 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3523 GSM48_MT_CC_SETUP, gsm48_cc_rx_setup},
3524 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3525 GSM48_MT_CC_EMERG_SETUP, gsm48_cc_rx_setup},
3526 {SBIT(GSM_CSTATE_CONNECT_IND), /* 5.2.1.2 */
3527 GSM48_MT_CC_CONNECT_ACK, gsm48_cc_rx_connect_ack},
3528 /* mobile terminating call establishment */
3529 {SBIT(GSM_CSTATE_CALL_PRESENT), /* 5.2.2.3.2 */
3530 GSM48_MT_CC_CALL_CONF, gsm48_cc_rx_call_conf},
3531 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF), /* ???? | 5.2.2.3.2 */
3532 GSM48_MT_CC_ALERTING, gsm48_cc_rx_alerting},
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003533 {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 +08003534 GSM48_MT_CC_CONNECT, gsm48_cc_rx_connect},
3535 /* signalling during call */
3536 {ALL_STATES - SBIT(GSM_CSTATE_NULL),
3537 GSM48_MT_CC_FACILITY, gsm48_cc_rx_facility},
3538 {SBIT(GSM_CSTATE_ACTIVE),
3539 GSM48_MT_CC_NOTIFY, gsm48_cc_rx_notify},
3540 {ALL_STATES,
3541 GSM48_MT_CC_START_DTMF, gsm48_cc_rx_start_dtmf},
3542 {ALL_STATES,
3543 GSM48_MT_CC_STOP_DTMF, gsm48_cc_rx_stop_dtmf},
3544 {ALL_STATES,
3545 GSM48_MT_CC_STATUS_ENQ, gsm48_cc_rx_status_enq},
3546 {SBIT(GSM_CSTATE_ACTIVE),
3547 GSM48_MT_CC_HOLD, gsm48_cc_rx_hold},
3548 {SBIT(GSM_CSTATE_ACTIVE),
3549 GSM48_MT_CC_RETR, gsm48_cc_rx_retrieve},
3550 {SBIT(GSM_CSTATE_ACTIVE),
3551 GSM48_MT_CC_MODIFY, gsm48_cc_rx_modify},
3552 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3553 GSM48_MT_CC_MODIFY_COMPL, gsm48_cc_rx_modify_complete},
3554 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3555 GSM48_MT_CC_MODIFY_REJECT, gsm48_cc_rx_modify_reject},
3556 {SBIT(GSM_CSTATE_ACTIVE),
3557 GSM48_MT_CC_USER_INFO, gsm48_cc_rx_userinfo},
3558 /* clearing */
3559 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3560 GSM48_MT_CC_DISCONNECT, gsm48_cc_rx_disconnect},
3561 {ALL_STATES - SBIT(GSM_CSTATE_NULL), /* 5.4.4.1.2.2 */
3562 GSM48_MT_CC_RELEASE, gsm48_cc_rx_release},
3563 {ALL_STATES, /* 5.4.3.4 */
3564 GSM48_MT_CC_RELEASE_COMPL, gsm48_cc_rx_release_compl},
3565};
3566
3567#define DATASLLEN \
3568 (sizeof(datastatelist) / sizeof(struct datastate))
3569
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003570static int gsm0408_rcv_cc(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4bc90a12008-12-27 16:32:52 +00003571{
3572 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyr531734a2016-03-14 16:13:24 +01003573 uint8_t msg_type = gsm48_hdr_msg_type(gh);
Neels Hofmeyr961bd0b2016-03-14 16:13:25 +01003574 uint8_t transaction_id = gsm48_hdr_trans_id_flip_ti(gh);
Harald Weltedcaf5652009-07-23 18:56:43 +02003575 struct gsm_trans *trans = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003576 int i, rc = 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00003577
Harald Welte4bfdfe72009-06-10 23:11:52 +08003578 if (msg_type & 0x80) {
3579 DEBUGP(DCC, "MSG 0x%2x not defined for PD error\n", msg_type);
3580 return -EINVAL;
Harald Welte4bc90a12008-12-27 16:32:52 +00003581 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003582
Harald Welte4bfdfe72009-06-10 23:11:52 +08003583 /* Find transaction */
Jacob Erlbeckdae1f642014-12-02 14:22:53 +01003584 trans = trans_find_by_id(conn, GSM48_PDISC_CC, transaction_id);
Harald Weltedcaf5652009-07-23 18:56:43 +02003585
Harald Welte6f5aee02009-07-23 21:21:14 +02003586 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003587 "Received '%s' from MS in state %d (%s)\n",
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003588 conn->bts->nr, conn->lchan->ts->trx->nr, conn->lchan->ts->nr,
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003589 transaction_id, (conn->subscr)?(conn->subscr->extension):"-",
Harald Weltee95daf192010-03-25 12:13:02 +08003590 gsm48_cc_msg_name(msg_type), trans?(trans->cc.state):0,
3591 gsm48_cc_state_name(trans?(trans->cc.state):0));
Harald Welte4bfdfe72009-06-10 23:11:52 +08003592
3593 /* Create transaction */
3594 if (!trans) {
Harald Welte6f5aee02009-07-23 21:21:14 +02003595 DEBUGP(DCC, "Unknown transaction ID %x, "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003596 "creating new trans.\n", transaction_id);
3597 /* Create transaction */
Jacob Erlbeckaf792d62014-12-02 14:22:53 +01003598 trans = trans_alloc(conn->bts->network, conn->subscr,
3599 GSM48_PDISC_CC,
Harald Weltedcaf5652009-07-23 18:56:43 +02003600 transaction_id, new_callref++);
3601 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003602 DEBUGP(DCC, "No memory for trans.\n");
Holger Hans Peter Freytherb549ddf2011-01-16 18:17:04 +01003603 rc = gsm48_tx_simple(conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02003604 GSM48_PDISC_CC | (transaction_id << 4),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003605 GSM48_MT_CC_RELEASE_COMPL);
3606 return -ENOMEM;
3607 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003608 /* Assign transaction */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003609 trans->conn = conn;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003610 }
3611
3612 /* find function for current state and message */
3613 for (i = 0; i < DATASLLEN; i++)
3614 if ((msg_type == datastatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003615 && ((1 << trans->cc.state) & datastatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003616 break;
3617 if (i == DATASLLEN) {
3618 DEBUGP(DCC, "Message unhandled at this state.\n");
3619 return 0;
3620 }
3621
Holger Hans Peter Freyther1e61b252013-07-06 11:45:38 +02003622 assert(trans->subscr);
3623
Harald Welte4bfdfe72009-06-10 23:11:52 +08003624 rc = datastatelist[i].rout(trans, msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00003625
3626 return rc;
3627}
3628
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003629/* Create a dummy to wait five seconds */
3630static void release_anchor(struct gsm_subscriber_connection *conn)
3631{
3632 if (!conn->anch_operation)
3633 return;
3634
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02003635 osmo_timer_del(&conn->anch_operation->timeout);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003636 talloc_free(conn->anch_operation);
3637 conn->anch_operation = NULL;
3638}
3639
3640static void anchor_timeout(void *_data)
3641{
3642 struct gsm_subscriber_connection *con = _data;
3643
3644 release_anchor(con);
3645 msc_release_connection(con);
3646}
3647
3648int gsm0408_new_conn(struct gsm_subscriber_connection *conn)
3649{
3650 conn->anch_operation = talloc_zero(conn, struct gsm_anchor_operation);
3651 if (!conn->anch_operation)
3652 return -1;
3653
3654 conn->anch_operation->timeout.data = conn;
3655 conn->anch_operation->timeout.cb = anchor_timeout;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02003656 osmo_timer_schedule(&conn->anch_operation->timeout, 5, 0);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003657 return 0;
3658}
3659
Neels Hofmeyr378a4922016-05-09 21:07:43 +02003660/* 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 +08003661int gsm0408_dispatch(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00003662{
3663 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyr531734a2016-03-14 16:13:24 +01003664 uint8_t pdisc = gsm48_hdr_pdisc(gh);
Harald Welte8470bf22008-12-25 23:28:35 +00003665 int rc = 0;
Harald Welte51008772009-12-29 11:49:12 +01003666
Jacob Erlbeck8e68b562014-01-30 21:01:12 +01003667 LOGP(DRLL, LOGL_DEBUG, "Dispatching 04.08 message, pdisc=%d\n", pdisc);
Holger Hans Peter Freyther758f4df2010-06-21 10:34:03 +08003668 if (silent_call_reroute(conn, msg))
3669 return silent_call_rx(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003670
3671 switch (pdisc) {
3672 case GSM48_PDISC_CC:
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003673 release_anchor(conn);
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003674 rc = gsm0408_rcv_cc(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003675 break;
3676 case GSM48_PDISC_MM:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003677 rc = gsm0408_rcv_mm(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003678 break;
3679 case GSM48_PDISC_RR:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003680 rc = gsm0408_rcv_rr(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003681 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00003682 case GSM48_PDISC_SMS:
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003683 release_anchor(conn);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +08003684 rc = gsm0411_rcv_sms(conn, msg);
Harald Weltebcae43f2008-12-27 21:45:37 +00003685 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003686 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00003687 case GSM48_PDISC_SM_GPRS:
Harald Welte5d24ba12009-12-24 12:13:17 +01003688 LOGP(DRLL, LOGL_NOTICE, "Unimplemented "
3689 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Harald Welte52b1f982008-12-23 20:25:15 +00003690 break;
Harald Welte6eafe912009-10-16 08:32:58 +02003691 case GSM48_PDISC_NC_SS:
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003692 release_anchor(conn);
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +08003693 rc = handle_rcv_ussd(conn, msg);
Harald Welte6eafe912009-10-16 08:32:58 +02003694 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003695 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01003696 LOGP(DRLL, LOGL_NOTICE, "Unknown "
3697 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Harald Welte52b1f982008-12-23 20:25:15 +00003698 break;
3699 }
3700
3701 return rc;
3702}
Harald Welte8470bf22008-12-25 23:28:35 +00003703
Harald Welte805f6442009-07-28 18:25:29 +02003704/*
3705 * This will be ran by the linker when loading the DSO. We use it to
3706 * do system initialization, e.g. registration of signal handlers.
3707 */
3708static __attribute__((constructor)) void on_dso_load_0408(void)
3709{
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +02003710 osmo_signal_register_handler(SS_ABISIP, handle_abisip_signal, NULL);
Harald Welte805f6442009-07-28 18:25:29 +02003711}