blob: c6a54360643394936a152b399c04f5357650a4f3 [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 Freythere0009f12010-08-12 01:41:57 +08005 * (C) 2008-2010 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>
28#include <errno.h>
Harald Weltedb253af2008-12-30 17:56:55 +000029#include <time.h>
Harald Welte4b634542008-12-27 01:55:51 +000030#include <netinet/in.h>
Harald Welte52b1f982008-12-23 20:25:15 +000031
Harald Welte9c3dc902012-04-08 16:59:24 +020032#include "bscconfig.h"
33
Sylvain Munaut30a15382009-12-24 00:27:26 +010034#include <openbsc/auth.h>
Harald Welte75a983f2008-12-27 21:34:06 +000035#include <openbsc/db.h>
Harald Welte8470bf22008-12-25 23:28:35 +000036#include <openbsc/debug.h>
37#include <openbsc/gsm_data.h>
38#include <openbsc/gsm_subscriber.h>
Daniel Willmann8b3390e2008-12-28 00:31:09 +000039#include <openbsc/gsm_04_11.h>
Harald Welte8470bf22008-12-25 23:28:35 +000040#include <openbsc/gsm_04_08.h>
Holger Hans Peter Freythere0009f12010-08-12 01:41:57 +080041#include <openbsc/gsm_04_80.h>
Harald Welte8470bf22008-12-25 23:28:35 +000042#include <openbsc/abis_rsl.h>
Holger Freytherca362a62009-01-04 21:05:01 +000043#include <openbsc/chan_alloc.h>
Harald Welte0b4c34e2009-02-09 17:54:43 +000044#include <openbsc/paging.h>
Holger Freyther053e09d2009-02-14 22:51:06 +000045#include <openbsc/signal.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020046#include <osmocom/abis/trau_frame.h>
Harald Welte11fa29c2009-02-19 17:24:39 +000047#include <openbsc/trau_mux.h>
Harald Welte805f6442009-07-28 18:25:29 +020048#include <openbsc/rtp_proxy.h>
Harald Weltedcaf5652009-07-23 18:56:43 +020049#include <openbsc/transaction.h>
Harald Welte6eafe912009-10-16 08:32:58 +020050#include <openbsc/ussd.h>
Harald Welte51008772009-12-29 11:49:12 +010051#include <openbsc/silent_call.h>
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +080052#include <openbsc/bsc_api.h>
Holger Hans Peter Freyther88519ea2010-06-30 12:44:07 +080053#include <openbsc/osmo_msc.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020054#include <osmocom/abis/e1_input.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010055#include <osmocom/core/bitvec.h>
Holger Hans Peter Freyther841c2002010-09-30 18:52:23 +080056
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010057#include <osmocom/gsm/gsm48.h>
58#include <osmocom/gsm/gsm0480.h>
59#include <osmocom/gsm/gsm_utils.h>
60#include <osmocom/core/msgb.h>
61#include <osmocom/core/talloc.h>
62#include <osmocom/gsm/tlv.h>
Harald Welte52b1f982008-12-23 20:25:15 +000063
Harald Welte (local)d19e58b2009-08-15 02:30:58 +020064void *tall_locop_ctx;
Sylvain Munaut30a15382009-12-24 00:27:26 +010065void *tall_authciphop_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +020066
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020067int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn, uint32_t tmsi);
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +080068static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020069 uint8_t pdisc, uint8_t msg_type);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +010070static void schedule_reject(struct gsm_subscriber_connection *conn);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +080071static void release_anchor(struct gsm_subscriber_connection *conn);
Harald Welte65e74cc2008-12-29 01:55:35 +000072
Harald Welte52b1f982008-12-23 20:25:15 +000073struct gsm_lai {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020074 uint16_t mcc;
75 uint16_t mnc;
76 uint16_t lac;
Harald Welte52b1f982008-12-23 20:25:15 +000077};
78
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020079static uint32_t new_callref = 0x80000001;
Harald Welte4bfdfe72009-06-10 23:11:52 +080080
Harald Welte31c00f72011-03-03 23:29:05 +010081void cc_tx_to_mncc(struct gsm_network *net, struct msgb *msg)
82{
83 net->mncc_recv(net, msg);
84}
85
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +080086static int gsm48_conn_sendmsg(struct msgb *msg, struct gsm_subscriber_connection *conn,
87 struct gsm_trans *trans)
88{
89 struct gsm48_hdr *gh = (struct gsm48_hdr *) msg->data;
90
91 /* if we get passed a transaction reference, do some common
92 * work that the caller no longer has to do */
93 if (trans) {
94 gh->proto_discr = trans->protocol | (trans->transaction_id << 4);
95 msg->lchan = trans->conn->lchan;
96 }
97
98
99 if (msg->lchan) {
Pablo Neira Ayuso7abecfc2011-08-17 22:43:54 +0200100 struct e1inp_sign_link *sign_link =
101 msg->lchan->ts->trx->rsl_link;
102
103 msg->dst = sign_link;
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800104 if ((gh->proto_discr & GSM48_PDISC_MASK) == GSM48_PDISC_CC)
105 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x) "
Pablo Neira Ayuso7abecfc2011-08-17 22:43:54 +0200106 "Sending '%s' to MS.\n",
107 sign_link->trx->bts->nr,
108 sign_link->trx->nr, msg->lchan->ts->nr,
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800109 gh->proto_discr & 0xf0,
110 gsm48_cc_msg_name(gh->msg_type));
111 else
112 DEBUGP(DCC, "(bts %d trx %d ts %d pd %02x) "
Pablo Neira Ayuso7abecfc2011-08-17 22:43:54 +0200113 "Sending 0x%02x to MS.\n",
114 sign_link->trx->bts->nr,
115 sign_link->trx->nr, msg->lchan->ts->nr,
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800116 gh->proto_discr, gh->msg_type);
117 }
118
Holger Hans Peter Freyther8d380dc2010-11-10 10:16:02 +0100119 return gsm0808_submit_dtap(conn, msg, 0, 0);
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800120}
Sylvain Munaut30a15382009-12-24 00:27:26 +0100121
Holger Hans Peter Freythere0009f12010-08-12 01:41:57 +0800122int gsm48_cc_tx_notify_ss(struct gsm_trans *trans, const char *message)
123{
124 struct gsm48_hdr *gh;
125 struct msgb *ss_notify;
126
127 ss_notify = gsm0480_create_notifySS(message);
128 if (!ss_notify)
129 return -1;
130
131 gsm0480_wrap_invoke(ss_notify, GSM0480_OP_CODE_NOTIFY_SS, 0);
132 uint8_t *data = msgb_push(ss_notify, 1);
133 data[0] = ss_notify->len - 1;
134 gh = (struct gsm48_hdr *) msgb_push(ss_notify, sizeof(*gh));
135 gh->msg_type = GSM48_MT_CC_FACILITY;
136 return gsm48_conn_sendmsg(ss_notify, trans->conn, trans);
137}
138
Harald Weltecf149ee2012-01-23 16:40:24 +0100139void release_security_operation(struct gsm_subscriber_connection *conn)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100140{
141 if (!conn->sec_operation)
142 return;
143
144 talloc_free(conn->sec_operation);
145 conn->sec_operation = NULL;
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800146 msc_release_connection(conn);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100147}
148
Harald Weltecf149ee2012-01-23 16:40:24 +0100149void allocate_security_operation(struct gsm_subscriber_connection *conn)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100150{
Sylvain Munaut30a15382009-12-24 00:27:26 +0100151 conn->sec_operation = talloc_zero(tall_authciphop_ctx,
152 struct gsm_security_operation);
153}
154
Sylvain Munaut0fbfd1b2010-12-01 22:37:05 +0100155int gsm48_secure_channel(struct gsm_subscriber_connection *conn, int key_seq,
156 gsm_cbfn *cb, void *cb_data)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100157{
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800158 struct gsm_network *net = conn->bts->network;
159 struct gsm_subscriber *subscr = conn->subscr;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100160 struct gsm_security_operation *op;
161 struct gsm_auth_tuple atuple;
162 int status = -1, rc;
163
164 /* Check if we _can_ enable encryption. Cases where we can't:
165 * - Encryption disabled in config
166 * - Channel already secured (nothing to do)
167 * - Subscriber equipment doesn't support configured encryption
168 */
169 if (!net->a5_encryption) {
170 status = GSM_SECURITY_NOAVAIL;
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800171 } else if (conn->lchan->encr.alg_id > RSL_ENC_ALG_A5(0)) {
Sylvain Munaut30a15382009-12-24 00:27:26 +0100172 DEBUGP(DMM, "Requesting to secure an already secure channel");
173 status = GSM_SECURITY_SUCCEEDED;
174 } else if (!ms_cm2_a5n_support(subscr->equipment.classmark2,
175 net->a5_encryption)) {
176 DEBUGP(DMM, "Subscriber equipment doesn't support requested encryption");
177 status = GSM_SECURITY_NOAVAIL;
178 }
179
180 /* If not done yet, try to get info for this user */
181 if (status < 0) {
182 rc = auth_get_tuple_for_subscr(&atuple, subscr, key_seq);
183 if (rc <= 0)
184 status = GSM_SECURITY_NOAVAIL;
185 }
186
187 /* Are we done yet ? */
188 if (status >= 0)
189 return cb ?
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800190 cb(GSM_HOOK_RR_SECURITY, status, NULL, conn, cb_data) :
Sylvain Munaut30a15382009-12-24 00:27:26 +0100191 0;
192
193 /* Start an operation (can't have more than one pending !!!) */
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800194 if (conn->sec_operation)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100195 return -EBUSY;
196
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800197 allocate_security_operation(conn);
198 op = conn->sec_operation;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100199 op->cb = cb;
200 op->cb_data = cb_data;
201 memcpy(&op->atuple, &atuple, sizeof(struct gsm_auth_tuple));
202
203 /* FIXME: Should start a timer for completion ... */
204
205 /* Then do whatever is needed ... */
Harald Welte86dda082010-12-23 18:07:49 +0100206 if (rc == AUTH_DO_AUTH_THAN_CIPH) {
Sylvain Munaut30a15382009-12-24 00:27:26 +0100207 /* Start authentication */
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800208 return gsm48_tx_mm_auth_req(conn, op->atuple.rand, op->atuple.key_seq);
Harald Welte86dda082010-12-23 18:07:49 +0100209 } else if (rc == AUTH_DO_CIPH) {
Sylvain Munaut30a15382009-12-24 00:27:26 +0100210 /* Start ciphering directly */
Sylvain Munaut67706df2010-11-29 08:19:04 +0100211 return gsm0808_cipher_mode(conn, net->a5_encryption,
212 op->atuple.kc, 8, 0);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100213 }
214
215 return -EINVAL; /* not reached */
216}
217
Holger Freyther73487a22008-12-31 18:53:57 +0000218static int authorize_subscriber(struct gsm_loc_updating_operation *loc,
219 struct gsm_subscriber *subscriber)
Holger Freyther89824fc2008-12-30 16:18:18 +0000220{
221 if (!subscriber)
222 return 0;
223
Holger Freyther73487a22008-12-31 18:53:57 +0000224 /*
225 * Do not send accept yet as more information should arrive. Some
226 * phones will not send us the information and we will have to check
227 * what we want to do with that.
228 */
229 if (loc && (loc->waiting_for_imsi || loc->waiting_for_imei))
230 return 0;
231
Jan Luebbe06513f22009-08-12 12:48:00 +0200232 switch (subscriber->net->auth_policy) {
233 case GSM_AUTH_POLICY_CLOSED:
234 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200235 case GSM_AUTH_POLICY_TOKEN:
Harald Welte (local)ee9afe32009-08-13 20:44:23 +0200236 if (subscriber->authorized)
237 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200238 return (subscriber->flags & GSM_SUBSCRIBER_FIRST_CONTACT);
Jan Luebbe06513f22009-08-12 12:48:00 +0200239 case GSM_AUTH_POLICY_ACCEPT_ALL:
Holger Freyther89824fc2008-12-30 16:18:18 +0000240 return 1;
Jan Luebbe06513f22009-08-12 12:48:00 +0200241 default:
242 return 0;
243 }
Holger Freyther89824fc2008-12-30 16:18:18 +0000244}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000245
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100246static void release_loc_updating_req(struct gsm_subscriber_connection *conn)
Holger Freyther73487a22008-12-31 18:53:57 +0000247{
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100248 if (!conn->loc_operation)
Holger Freyther73487a22008-12-31 18:53:57 +0000249 return;
250
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +0800251 /* No need to keep the connection up */
252 release_anchor(conn);
253
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200254 osmo_timer_del(&conn->loc_operation->updating_timer);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100255 talloc_free(conn->loc_operation);
Holger Hans Peter Freytherf93e8fa2010-12-22 08:53:28 +0100256 conn->loc_operation = NULL;
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800257 msc_release_connection(conn);
Holger Freyther73487a22008-12-31 18:53:57 +0000258}
259
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100260static void allocate_loc_updating_req(struct gsm_subscriber_connection *conn)
Holger Freyther73487a22008-12-31 18:53:57 +0000261{
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800262 if (conn->loc_operation)
263 LOGP(DMM, LOGL_ERROR, "Connection already had operation.\n");
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100264 release_loc_updating_req(conn);
Holger Freyther73487a22008-12-31 18:53:57 +0000265
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100266 conn->loc_operation = talloc_zero(tall_locop_ctx,
Harald Welte470ec292009-06-26 20:25:23 +0200267 struct gsm_loc_updating_operation);
Holger Freyther73487a22008-12-31 18:53:57 +0000268}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000269
Sylvain Munaut267fba02009-12-24 00:28:01 +0100270static int _gsm0408_authorize_sec_cb(unsigned int hooknum, unsigned int event,
271 struct msgb *msg, void *data, void *param)
272{
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800273 struct gsm_subscriber_connection *conn = data;
Sylvain Munaut267fba02009-12-24 00:28:01 +0100274 int rc = 0;
275
276 switch (event) {
277 case GSM_SECURITY_AUTH_FAILED:
278 release_loc_updating_req(conn);
279 break;
280
281 case GSM_SECURITY_NOAVAIL:
282 case GSM_SECURITY_SUCCEEDED:
283 /* We're all good */
284 db_subscriber_alloc_tmsi(conn->subscr);
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800285 rc = gsm0408_loc_upd_acc(conn, conn->subscr->tmsi);
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800286 if (conn->bts->network->send_mm_info) {
Sylvain Munaut267fba02009-12-24 00:28:01 +0100287 /* send MM INFO with network name */
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800288 rc = gsm48_tx_mm_info(conn);
Sylvain Munaut267fba02009-12-24 00:28:01 +0100289 }
290
291 /* call subscr_update after putting the loc_upd_acc
292 * in the transmit queue, since S_SUBSCR_ATTACHED might
293 * trigger further action like SMS delivery */
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800294 subscr_update(conn->subscr, conn->bts,
Sylvain Munaut267fba02009-12-24 00:28:01 +0100295 GSM_SUBSCRIBER_UPDATE_ATTACHED);
296
Holger Hans Peter Freytherd4e68722010-12-22 12:11:01 +0100297 /*
298 * The gsm0408_loc_upd_acc sends a MI with the TMSI. The
299 * MS needs to respond with a TMSI REALLOCATION COMPLETE
300 * (even if the TMSI is the same).
301 */
Sylvain Munaut267fba02009-12-24 00:28:01 +0100302 break;
303
304 default:
305 rc = -EINVAL;
306 };
307
308 return rc;
309}
310
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100311static int gsm0408_authorize(struct gsm_subscriber_connection *conn, struct msgb *msg)
Holger Freytherd51524f2009-06-09 08:27:07 +0000312{
Sylvain Munaut267fba02009-12-24 00:28:01 +0100313 if (authorize_subscriber(conn->loc_operation, conn->subscr))
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800314 return gsm48_secure_channel(conn,
Sylvain Munaut267fba02009-12-24 00:28:01 +0100315 conn->loc_operation->key_seq,
316 _gsm0408_authorize_sec_cb, NULL);
Holger Freytherd51524f2009-06-09 08:27:07 +0000317 return 0;
318}
319
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +0800320void gsm0408_clear_request(struct gsm_subscriber_connection *conn, uint32_t cause)
Holger Freyther7c19f742009-06-06 13:54:35 +0000321{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800322 struct gsm_trans *trans, *temp;
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800323
324 /* avoid someone issuing a clear */
325 conn->in_release = 1;
326
Holger Freyther7c19f742009-06-06 13:54:35 +0000327 /*
328 * Cancel any outstanding location updating request
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800329 * operation taking place on the subscriber connection.
Holger Freyther7c19f742009-06-06 13:54:35 +0000330 */
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800331 release_loc_updating_req(conn);
Holger Hans Peter Freytherc29043e2010-12-28 14:57:20 +0100332
333 /* We might need to cancel the paging response or such. */
334 if (conn->sec_operation && conn->sec_operation->cb) {
335 conn->sec_operation->cb(GSM_HOOK_RR_SECURITY, GSM_SECURITY_AUTH_FAILED,
336 NULL, conn, conn->sec_operation->cb_data);
337 }
338
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800339 release_security_operation(conn);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +0800340 release_anchor(conn);
Holger Freyther7c19f742009-06-06 13:54:35 +0000341
Harald Welte4bfdfe72009-06-10 23:11:52 +0800342 /* Free all transactions that are associated with the released lchan */
Harald Weltedcaf5652009-07-23 18:56:43 +0200343 /* FIXME: this is not neccessarily the right thing to do, we should
344 * only set trans->lchan to NULL and wait for another lchan to be
345 * established to the same MM entity (phone/subscriber) */
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800346 llist_for_each_entry_safe(trans, temp, &conn->bts->network->trans_list, entry) {
347 if (trans->conn == conn)
Harald Weltedcaf5652009-07-23 18:56:43 +0200348 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800349 }
Holger Freyther7c19f742009-06-06 13:54:35 +0000350}
351
Harald Welte371efe52010-12-22 23:17:50 +0100352void gsm0408_clear_all_trans(struct gsm_network *net, int protocol)
353{
354 struct gsm_trans *trans, *temp;
355
356 LOGP(DCC, LOGL_NOTICE, "Clearing all currently active transactions!!!\n");
357
358 llist_for_each_entry_safe(trans, temp, &net->trans_list, entry) {
Harald Welteeb76c7a2010-12-23 02:47:53 +0100359 if (trans->protocol == protocol) {
360 trans->callref = 0;
Harald Welte371efe52010-12-22 23:17:50 +0100361 trans_free(trans);
Harald Welteeb76c7a2010-12-23 02:47:53 +0100362 }
Harald Welte371efe52010-12-22 23:17:50 +0100363 }
364}
365
Holger Freyther429e7762008-12-30 13:28:30 +0000366/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200367int gsm0408_loc_upd_rej(struct gsm_subscriber_connection *conn, uint8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000368{
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800369 struct gsm_bts *bts = conn->bts;
Holger Hans Peter Freyther230a4d82010-06-15 19:40:05 +0800370 struct msgb *msg;
371
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200372 osmo_counter_inc(bts->network->stats.loc_upd_resp.reject);
Holger Hans Peter Freyther230a4d82010-06-15 19:40:05 +0800373
374 msg = gsm48_create_loc_upd_rej(cause);
375 if (!msg) {
376 LOGP(DMM, LOGL_ERROR, "Failed to create msg for LOCATION UPDATING REJECT.\n");
377 return -1;
378 }
Harald Welte52b1f982008-12-23 20:25:15 +0000379
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800380 msg->lchan = conn->lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000381
Harald Welte (local)198d5ad2009-12-26 22:15:28 +0100382 LOGP(DMM, LOGL_INFO, "Subscriber %s: LOCATION UPDATING REJECT "
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100383 "LAC=%u BTS=%u\n", conn->subscr ?
384 subscr_name(conn->subscr) : "unknown",
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800385 bts->location_area_code, bts->nr);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100386
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800387 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000388}
389
390/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200391int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn, uint32_t tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000392{
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800393 struct gsm_bts *bts = conn->bts;
Harald Welte8470bf22008-12-25 23:28:35 +0000394 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000395 struct gsm48_hdr *gh;
396 struct gsm48_loc_area_id *lai;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200397 uint8_t *mid;
Harald Welte52b1f982008-12-23 20:25:15 +0000398
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800399 msg->lchan = conn->lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000400
401 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
402 gh->proto_discr = GSM48_PDISC_MM;
403 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
404
405 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Harald Welteafedeab2010-03-04 10:55:40 +0100406 gsm48_generate_lai(lai, bts->network->country_code,
Harald Welte52b1f982008-12-23 20:25:15 +0000407 bts->network->network_code, bts->location_area_code);
408
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +0200409 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
Holger Hans Peter Freyther5d0e56f2009-08-20 08:41:24 +0200410 gsm48_generate_mid_from_tmsi(mid, tmsi);
Harald Welte52b1f982008-12-23 20:25:15 +0000411
412 DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n");
413
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200414 osmo_counter_inc(bts->network->stats.loc_upd_resp.accept);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100415
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800416 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000417}
418
Harald Weltebf5e8df2009-02-03 12:59:45 +0000419/* Transmit Chapter 9.2.10 Identity Request */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200420static int mm_tx_identity_req(struct gsm_subscriber_connection *conn, uint8_t id_type)
Harald Welte231ad4f2008-12-27 11:15:38 +0000421{
422 struct msgb *msg = gsm48_msgb_alloc();
423 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000424
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800425 msg->lchan = conn->lchan;
Harald Welte231ad4f2008-12-27 11:15:38 +0000426
427 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
428 gh->proto_discr = GSM48_PDISC_MM;
429 gh->msg_type = GSM48_MT_MM_ID_REQ;
430 gh->data[0] = id_type;
431
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800432 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte231ad4f2008-12-27 11:15:38 +0000433}
434
Harald Welte231ad4f2008-12-27 11:15:38 +0000435
Harald Weltebf5e8df2009-02-03 12:59:45 +0000436/* Parse Chapter 9.2.11 Identity Response */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800437static int mm_rx_id_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte231ad4f2008-12-27 11:15:38 +0000438{
439 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte75a983f2008-12-27 21:34:06 +0000440 struct gsm_lchan *lchan = msg->lchan;
Harald Welte9176bd42009-07-23 18:46:00 +0200441 struct gsm_bts *bts = lchan->ts->trx->bts;
442 struct gsm_network *net = bts->network;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200443 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200444 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000445
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200446 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte61253062008-12-27 11:25:50 +0000447 DEBUGP(DMM, "IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
Harald Welte231ad4f2008-12-27 11:15:38 +0000448 mi_type, mi_string);
449
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200450 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, gh->data);
Harald Welte7659de12009-12-13 12:39:18 +0100451
Harald Welte75a983f2008-12-27 21:34:06 +0000452 switch (mi_type) {
453 case GSM_MI_TYPE_IMSI:
Jan Luebbe370b41d2009-08-12 10:19:34 +0200454 /* look up subscriber based on IMSI, create if not found */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100455 if (!conn->subscr) {
456 conn->subscr = subscr_get_by_imsi(net, mi_string);
457 if (!conn->subscr)
458 conn->subscr = db_create_subscriber(net, mi_string);
Jan Luebbeb0dfc312009-08-12 10:12:52 +0200459 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100460 if (conn->loc_operation)
461 conn->loc_operation->waiting_for_imsi = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000462 break;
463 case GSM_MI_TYPE_IMEI:
Harald Welte255539c2008-12-28 02:26:27 +0000464 case GSM_MI_TYPE_IMEISV:
Harald Welte75a983f2008-12-27 21:34:06 +0000465 /* update subscribe <-> IMEI mapping */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100466 if (conn->subscr) {
467 db_subscriber_assoc_imei(conn->subscr, mi_string);
468 db_sync_equipment(&conn->subscr->equipment);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200469 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100470 if (conn->loc_operation)
471 conn->loc_operation->waiting_for_imei = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000472 break;
473 }
Holger Freyther73487a22008-12-31 18:53:57 +0000474
475 /* Check if we can let the mobile station enter */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100476 return gsm0408_authorize(conn, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000477}
478
Harald Welte255539c2008-12-28 02:26:27 +0000479
480static void loc_upd_rej_cb(void *data)
481{
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100482 struct gsm_subscriber_connection *conn = data;
483 struct gsm_lchan *lchan = conn->lchan;
Harald Welte1085c092009-11-18 20:33:19 +0100484 struct gsm_bts *bts = lchan->ts->trx->bts;
Harald Welte255539c2008-12-28 02:26:27 +0000485
Holger Hans Peter Freyther2692e3b2011-11-07 12:26:29 +0100486 LOGP(DMM, LOGL_DEBUG, "Location Updating Request procedure timedout.\n");
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800487 gsm0408_loc_upd_rej(conn, bts->network->reject_cause);
Holger Hans Peter Freyther01288432010-06-16 12:52:28 +0800488 release_loc_updating_req(conn);
Harald Welte255539c2008-12-28 02:26:27 +0000489}
490
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100491static void schedule_reject(struct gsm_subscriber_connection *conn)
Holger Freytherb7193e42008-12-29 17:44:08 +0000492{
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100493 conn->loc_operation->updating_timer.cb = loc_upd_rej_cb;
494 conn->loc_operation->updating_timer.data = conn;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200495 osmo_timer_schedule(&conn->loc_operation->updating_timer, 5, 0);
Holger Freytherb7193e42008-12-29 17:44:08 +0000496}
497
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200498static const char *lupd_name(uint8_t type)
Harald Welte2a139372009-02-22 21:14:55 +0000499{
500 switch (type) {
501 case GSM48_LUPD_NORMAL:
502 return "NORMAL";
503 case GSM48_LUPD_PERIODIC:
504 return "PEROIDOC";
505 case GSM48_LUPD_IMSI_ATT:
506 return "IMSI ATTACH";
507 default:
508 return "UNKNOWN";
509 }
510}
511
Harald Weltebf5e8df2009-02-03 12:59:45 +0000512/* Chapter 9.2.15: Receive Location Updating Request */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800513static int mm_rx_loc_upd_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000514{
Harald Welte8470bf22008-12-25 23:28:35 +0000515 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000516 struct gsm48_loc_upd_req *lu;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800517 struct gsm_subscriber *subscr = NULL;
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800518 struct gsm_bts *bts = conn->bts;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200519 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200520 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000521 int rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000522
Harald Welte8470bf22008-12-25 23:28:35 +0000523 lu = (struct gsm48_loc_upd_req *) gh->data;
524
525 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +0000526
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200527 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Harald Weltefc977a82008-12-27 10:19:37 +0000528
Harald Weltea0368542009-06-27 02:58:43 +0200529 DEBUGPC(DMM, "mi_type=0x%02x MI(%s) type=%s ", mi_type, mi_string,
Harald Welte2a139372009-02-22 21:14:55 +0000530 lupd_name(lu->type));
Holger Freyther73487a22008-12-31 18:53:57 +0000531
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200532 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, &lu->mi_len);
Harald Welte7659de12009-12-13 12:39:18 +0100533
Harald Welte24ff6ee2009-12-22 00:41:05 +0100534 switch (lu->type) {
535 case GSM48_LUPD_NORMAL:
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200536 osmo_counter_inc(bts->network->stats.loc_upd_type.normal);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100537 break;
538 case GSM48_LUPD_IMSI_ATT:
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200539 osmo_counter_inc(bts->network->stats.loc_upd_type.attach);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100540 break;
541 case GSM48_LUPD_PERIODIC:
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200542 osmo_counter_inc(bts->network->stats.loc_upd_type.periodic);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100543 break;
544 }
545
Holger Freythereaf04692009-06-06 13:54:44 +0000546 /*
547 * Pseudo Spoof detection: Just drop a second/concurrent
548 * location updating request.
549 */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100550 if (conn->loc_operation) {
Harald Weltea0368542009-06-27 02:58:43 +0200551 DEBUGPC(DMM, "ignoring request due an existing one: %p.\n",
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100552 conn->loc_operation);
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800553 gsm0408_loc_upd_rej(conn, GSM48_REJECT_PROTOCOL_ERROR);
Holger Freythereaf04692009-06-06 13:54:44 +0000554 return 0;
555 }
556
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800557 allocate_loc_updating_req(conn);
Holger Freyther73487a22008-12-31 18:53:57 +0000558
Sylvain Munaut2030a2a2010-06-10 13:36:59 +0200559 conn->loc_operation->key_seq = lu->key_seq;
560
Harald Welte52b1f982008-12-23 20:25:15 +0000561 switch (mi_type) {
562 case GSM_MI_TYPE_IMSI:
Harald Weltea0368542009-06-27 02:58:43 +0200563 DEBUGPC(DMM, "\n");
Harald Welte231ad4f2008-12-27 11:15:38 +0000564 /* we always want the IMEI, too */
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800565 rc = mm_tx_identity_req(conn, GSM_MI_TYPE_IMEI);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100566 conn->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000567
Jan Luebbe370b41d2009-08-12 10:19:34 +0200568 /* look up subscriber based on IMSI, create if not found */
569 subscr = subscr_get_by_imsi(bts->network, mi_string);
570 if (!subscr) {
571 subscr = db_create_subscriber(bts->network, mi_string);
572 }
Harald Welte4b634542008-12-27 01:55:51 +0000573 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000574 case GSM_MI_TYPE_TMSI:
Harald Weltea0368542009-06-27 02:58:43 +0200575 DEBUGPC(DMM, "\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000576 /* look up the subscriber based on TMSI, request IMSI if it fails */
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200577 subscr = subscr_get_by_tmsi(bts->network,
578 tmsi_from_string(mi_string));
Harald Welte52b1f982008-12-23 20:25:15 +0000579 if (!subscr) {
Harald Welte231ad4f2008-12-27 11:15:38 +0000580 /* send IDENTITY REQUEST message to get IMSI */
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800581 rc = mm_tx_identity_req(conn, GSM_MI_TYPE_IMSI);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100582 conn->loc_operation->waiting_for_imsi = 1;
Harald Welte52b1f982008-12-23 20:25:15 +0000583 }
Harald Weltef5f512c2010-06-07 17:56:32 +0200584 /* we always want the IMEI, too */
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800585 rc = mm_tx_identity_req(conn, GSM_MI_TYPE_IMEI);
Harald Weltef5f512c2010-06-07 17:56:32 +0200586 conn->loc_operation->waiting_for_imei = 1;
Harald Welte52b1f982008-12-23 20:25:15 +0000587 break;
588 case GSM_MI_TYPE_IMEI:
589 case GSM_MI_TYPE_IMEISV:
590 /* no sim card... FIXME: what to do ? */
Harald Weltea0368542009-06-27 02:58:43 +0200591 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000592 break;
593 default:
Harald Weltea0368542009-06-27 02:58:43 +0200594 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000595 break;
596 }
597
Harald Welte24516ea2009-07-04 10:18:00 +0200598 /* schedule the reject timer */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100599 schedule_reject(conn);
Harald Welte24516ea2009-07-04 10:18:00 +0200600
Harald Welte4bfdfe72009-06-10 23:11:52 +0800601 if (!subscr) {
Harald Weltea0368542009-06-27 02:58:43 +0200602 DEBUGPC(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte4bfdfe72009-06-10 23:11:52 +0800603 /* FIXME: request id? close channel? */
604 return -EINVAL;
605 }
606
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100607 conn->subscr = subscr;
608 conn->subscr->equipment.classmark1 = lu->classmark1;
Harald Welte255539c2008-12-28 02:26:27 +0000609
Harald Welte24516ea2009-07-04 10:18:00 +0200610 /* check if we can let the subscriber into our network immediately
611 * or if we need to wait for identity responses. */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100612 return gsm0408_authorize(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000613}
614
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100615/* Turn int into semi-octet representation: 98 => 0x89 */
616static uint8_t bcdify(uint8_t value)
Harald Welte4bfdfe72009-06-10 23:11:52 +0800617{
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100618 uint8_t ret;
619
620 ret = value / 10;
621 ret |= (value % 10) << 4;
622
623 return ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800624}
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100625
Harald Welte4bfdfe72009-06-10 23:11:52 +0800626
Harald Weltedb253af2008-12-30 17:56:55 +0000627/* Section 9.2.15a */
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800628int gsm48_tx_mm_info(struct gsm_subscriber_connection *conn)
Harald Weltedb253af2008-12-30 17:56:55 +0000629{
630 struct msgb *msg = gsm48_msgb_alloc();
631 struct gsm48_hdr *gh;
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800632 struct gsm_network *net = conn->bts->network;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100633 struct gsm_bts *bts = conn->bts;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200634 uint8_t *ptr8;
Daniel Willmanneea93372009-08-13 03:42:07 +0200635 int name_len, name_pad;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100636
Harald Welte4bfdfe72009-06-10 23:11:52 +0800637 time_t cur_t;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100638 struct tm* gmt_time;
639 struct tm* local_time;
640 int tzunits;
Harald Weltedb253af2008-12-30 17:56:55 +0000641
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800642 msg->lchan = conn->lchan;
Harald Weltedb253af2008-12-30 17:56:55 +0000643
644 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
645 gh->proto_discr = GSM48_PDISC_MM;
646 gh->msg_type = GSM48_MT_MM_INFO;
647
648 if (net->name_long) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200649#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000650 name_len = strlen(net->name_long);
651 /* 10.5.3.5a */
652 ptr8 = msgb_put(msg, 3);
653 ptr8[0] = GSM48_IE_NAME_LONG;
654 ptr8[1] = name_len*2 +1;
655 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
656
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200657 ptr16 = (uint16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000658 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000659 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +0000660
661 /* FIXME: Use Cell Broadcast, not UCS-2, since
662 * UCS-2 is only supported by later revisions of the spec */
Daniel Willmanneea93372009-08-13 03:42:07 +0200663#endif
664 name_len = (strlen(net->name_long)*7)/8;
665 name_pad = (8 - strlen(net->name_long)*7)%8;
666 if (name_pad > 0)
667 name_len++;
668 /* 10.5.3.5a */
669 ptr8 = msgb_put(msg, 3);
670 ptr8[0] = GSM48_IE_NAME_LONG;
671 ptr8[1] = name_len +1;
672 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
673
674 ptr8 = msgb_put(msg, name_len);
675 gsm_7bit_encode(ptr8, net->name_long);
676
Harald Weltedb253af2008-12-30 17:56:55 +0000677 }
678
679 if (net->name_short) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200680#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000681 name_len = strlen(net->name_short);
682 /* 10.5.3.5a */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200683 ptr8 = (uint8_t *) msgb_put(msg, 3);
Harald Welte7543eb72009-07-19 17:51:36 +0200684 ptr8[0] = GSM48_IE_NAME_SHORT;
Harald Weltedb253af2008-12-30 17:56:55 +0000685 ptr8[1] = name_len*2 + 1;
686 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
687
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200688 ptr16 = (uint16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000689 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000690 ptr16[i] = htons(net->name_short[i]);
Daniel Willmanneea93372009-08-13 03:42:07 +0200691#endif
692 name_len = (strlen(net->name_short)*7)/8;
693 name_pad = (8 - strlen(net->name_short)*7)%8;
694 if (name_pad > 0)
695 name_len++;
696 /* 10.5.3.5a */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200697 ptr8 = (uint8_t *) msgb_put(msg, 3);
Daniel Willmanneea93372009-08-13 03:42:07 +0200698 ptr8[0] = GSM48_IE_NAME_SHORT;
699 ptr8[1] = name_len +1;
700 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
701
702 ptr8 = msgb_put(msg, name_len);
703 gsm_7bit_encode(ptr8, net->name_short);
704
Harald Weltedb253af2008-12-30 17:56:55 +0000705 }
706
Harald Weltedb253af2008-12-30 17:56:55 +0000707 /* Section 10.5.3.9 */
708 cur_t = time(NULL);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100709 gmt_time = gmtime(&cur_t);
710
Harald Weltedb253af2008-12-30 17:56:55 +0000711 ptr8 = msgb_put(msg, 8);
712 ptr8[0] = GSM48_IE_NET_TIME_TZ;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100713 ptr8[1] = bcdify(gmt_time->tm_year % 100);
714 ptr8[2] = bcdify(gmt_time->tm_mon + 1);
715 ptr8[3] = bcdify(gmt_time->tm_mday);
716 ptr8[4] = bcdify(gmt_time->tm_hour);
717 ptr8[5] = bcdify(gmt_time->tm_min);
718 ptr8[6] = bcdify(gmt_time->tm_sec);
719
720 if (bts->tz_bts_specific) {
721 /* Convert tzhr and tzmn to units */
722 if (bts->tzhr < 0) {
723 tzunits = ((bts->tzhr/-1)*4);
724 tzunits = tzunits + (bts->tzmn/15);
725 ptr8[7] = bcdify(tzunits);
726 /* Set negative time */
727 ptr8[7] |= 0x08;
728 }
729 else {
730 tzunits = bts->tzhr*4;
731 tzunits = tzunits + (bts->tzmn/15);
732 ptr8[7] = bcdify(tzunits);
733 }
734 }
735 else {
736 /* Need to get GSM offset and convert into 15 min units */
737 /* This probably breaks if gmtoff returns a value not evenly divisible by 15? */
738 local_time = localtime(&cur_t);
Harald Welte9c3dc902012-04-08 16:59:24 +0200739#ifdef HAVE_TM_GMTOFF_IN_TM
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100740 tzunits = (local_time->tm_gmtoff/60)/15;
Harald Welte9c3dc902012-04-08 16:59:24 +0200741#else
742#warning find a portable way to obtain the timezone offset
743 tzunits = 0;
744#endif
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100745 if (tzunits < 0) {
746 tzunits = tzunits/-1;
747 ptr8[7] = bcdify(tzunits);
748 /* Flip it to negative */
749 ptr8[7] |= 0x08;
750 }
751 else
752 ptr8[7] = bcdify(tzunits);
753 }
Harald Weltedb253af2008-12-30 17:56:55 +0000754
Daniel Willmanneea93372009-08-13 03:42:07 +0200755 DEBUGP(DMM, "-> MM INFO\n");
756
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800757 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Weltedb253af2008-12-30 17:56:55 +0000758}
759
Harald Welte7984d5c2009-08-12 22:56:50 +0200760/* Section 9.2.2 */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200761int gsm48_tx_mm_auth_req(struct gsm_subscriber_connection *conn, uint8_t *rand, int key_seq)
Harald Welte7984d5c2009-08-12 22:56:50 +0200762{
763 struct msgb *msg = gsm48_msgb_alloc();
764 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Sylvain Munaut849f5542009-09-27 11:10:17 +0200765 struct gsm48_auth_req *ar = (struct gsm48_auth_req *) msgb_put(msg, sizeof(*ar));
Harald Welte7984d5c2009-08-12 22:56:50 +0200766
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200767 DEBUGP(DMM, "-> AUTH REQ (rand = %s)\n", osmo_hexdump(rand, 16));
Harald Welte7984d5c2009-08-12 22:56:50 +0200768
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800769 msg->lchan = conn->lchan;
Harald Welte7984d5c2009-08-12 22:56:50 +0200770 gh->proto_discr = GSM48_PDISC_MM;
771 gh->msg_type = GSM48_MT_MM_AUTH_REQ;
772
Sylvain Munautbd55a6d2009-12-24 00:23:46 +0100773 ar->key_seq = key_seq;
Sylvain Munaut849f5542009-09-27 11:10:17 +0200774
Harald Welte7984d5c2009-08-12 22:56:50 +0200775 /* 16 bytes RAND parameters */
Harald Welte7984d5c2009-08-12 22:56:50 +0200776 if (rand)
Sylvain Munaut849f5542009-09-27 11:10:17 +0200777 memcpy(ar->rand, rand, 16);
Harald Welte7984d5c2009-08-12 22:56:50 +0200778
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800779 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte7984d5c2009-08-12 22:56:50 +0200780}
781
782/* Section 9.2.1 */
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800783int gsm48_tx_mm_auth_rej(struct gsm_subscriber_connection *conn)
Harald Welte7984d5c2009-08-12 22:56:50 +0200784{
785 DEBUGP(DMM, "-> AUTH REJECT\n");
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800786 return gsm48_tx_simple(conn, GSM48_PDISC_MM, GSM48_MT_MM_AUTH_REJ);
Harald Welte7984d5c2009-08-12 22:56:50 +0200787}
788
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800789static int gsm48_tx_mm_serv_ack(struct gsm_subscriber_connection *conn)
Harald Welte4b634542008-12-27 01:55:51 +0000790{
Harald Welte4b634542008-12-27 01:55:51 +0000791 DEBUGP(DMM, "-> CM SERVICE ACK\n");
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800792 return gsm48_tx_simple(conn, GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_ACC);
Harald Welte4b634542008-12-27 01:55:51 +0000793}
Harald Welteba4cf162009-01-10 01:49:35 +0000794
795/* 9.2.6 CM service reject */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100796static int gsm48_tx_mm_serv_rej(struct gsm_subscriber_connection *conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000797 enum gsm48_reject_value value)
798{
Holger Hans Peter Freyther2c0f1662010-06-15 19:39:27 +0800799 struct msgb *msg;
Harald Welteba4cf162009-01-10 01:49:35 +0000800
Holger Hans Peter Freyther2c0f1662010-06-15 19:39:27 +0800801 msg = gsm48_create_mm_serv_rej(value);
802 if (!msg) {
803 LOGP(DMM, LOGL_ERROR, "Failed to allocate CM Service Reject.\n");
804 return -1;
805 }
Harald Welteba4cf162009-01-10 01:49:35 +0000806
Holger Hans Peter Freyther2c0f1662010-06-15 19:39:27 +0800807 DEBUGP(DMM, "-> CM SERVICE Reject cause: %d\n", value);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100808 msg->lchan = conn->lchan;
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800809 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welteba4cf162009-01-10 01:49:35 +0000810}
811
Sylvain Munautba87f452009-12-24 00:28:46 +0100812static int _gsm48_rx_mm_serv_req_sec_cb(
813 unsigned int hooknum, unsigned int event,
814 struct msgb *msg, void *data, void *param)
815{
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800816 struct gsm_subscriber_connection *conn = data;
Sylvain Munautba87f452009-12-24 00:28:46 +0100817 int rc = 0;
818
819 switch (event) {
820 case GSM_SECURITY_AUTH_FAILED:
821 /* Nothing to do */
822 break;
823
824 case GSM_SECURITY_NOAVAIL:
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800825 rc = gsm48_tx_mm_serv_ack(conn);
Sylvain Munautba87f452009-12-24 00:28:46 +0100826 break;
827
828 case GSM_SECURITY_SUCCEEDED:
829 /* nothing to do. CIPHER MODE COMMAND is
830 * implicit CM SERV ACK */
831 break;
832
833 default:
834 rc = -EINVAL;
835 };
836
837 return rc;
838}
839
Harald Welte4ed0e922009-01-10 03:17:30 +0000840/*
841 * Handle CM Service Requests
842 * a) Verify that the packet is long enough to contain the information
843 * we require otherwsie reject with INCORRECT_MESSAGE
844 * b) Try to parse the TMSI. If we do not have one reject
845 * c) Check that we know the subscriber with the TMSI otherwise reject
846 * with a HLR cause
847 * d) Set the subscriber on the gsm_lchan and accept
848 */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800849static int gsm48_rx_mm_serv_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4b634542008-12-27 01:55:51 +0000850{
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200851 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200852 char mi_string[GSM48_MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +0000853
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800854 struct gsm_bts *bts = conn->bts;
Harald Welteba4cf162009-01-10 01:49:35 +0000855 struct gsm_subscriber *subscr;
856 struct gsm48_hdr *gh = msgb_l3(msg);
857 struct gsm48_service_request *req =
858 (struct gsm48_service_request *)gh->data;
Holger Hans Peter Freyther5d658062010-05-14 08:02:08 +0800859 /* unfortunately in Phase1 the classmark2 length is variable */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200860 uint8_t classmark2_len = gh->data[1];
861 uint8_t *classmark2 = gh->data+2;
862 uint8_t mi_len = *(classmark2 + classmark2_len);
863 uint8_t *mi = (classmark2 + classmark2_len + 1);
Harald Welteba4cf162009-01-10 01:49:35 +0000864
Harald Weltec9e02182009-05-01 19:07:53 +0000865 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
Harald Welteba4cf162009-01-10 01:49:35 +0000866 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
Harald Weltec9e02182009-05-01 19:07:53 +0000867 DEBUGPC(DMM, "wrong sized message\n");
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800868 return gsm48_tx_mm_serv_rej(conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000869 GSM48_REJECT_INCORRECT_MESSAGE);
870 }
871
872 if (msg->data_len < req->mi_len + 6) {
Harald Weltec9e02182009-05-01 19:07:53 +0000873 DEBUGPC(DMM, "does not fit in packet\n");
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800874 return gsm48_tx_mm_serv_rej(conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000875 GSM48_REJECT_INCORRECT_MESSAGE);
876 }
877
Harald Weltec9e02182009-05-01 19:07:53 +0000878 mi_type = mi[0] & GSM_MI_TYPE_MASK;
Harald Welteba4cf162009-01-10 01:49:35 +0000879 if (mi_type != GSM_MI_TYPE_TMSI) {
Harald Weltec9e02182009-05-01 19:07:53 +0000880 DEBUGPC(DMM, "mi_type is not TMSI: %d\n", mi_type);
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800881 return gsm48_tx_mm_serv_rej(conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000882 GSM48_REJECT_INCORRECT_MESSAGE);
883 }
884
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200885 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
Harald Weltec9e02182009-05-01 19:07:53 +0000886 DEBUGPC(DMM, "serv_type=0x%02x mi_type=0x%02x M(%s)\n",
Harald Welte4ed0e922009-01-10 03:17:30 +0000887 req->cm_service_type, mi_type, mi_string);
Harald Weltebcae43f2008-12-27 21:45:37 +0000888
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200889 osmo_signal_dispatch(SS_SUBSCR, S_SUBSCR_IDENTITY, (classmark2 + classmark2_len));
Harald Welte7659de12009-12-13 12:39:18 +0100890
Harald Welte3ac7f102009-08-10 10:12:45 +0200891 if (is_siemens_bts(bts))
892 send_siemens_mrpci(msg->lchan, classmark2-1);
893
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200894 subscr = subscr_get_by_tmsi(bts->network,
895 tmsi_from_string(mi_string));
Holger Freythereb443982009-06-04 13:58:42 +0000896
Harald Welte2a139372009-02-22 21:14:55 +0000897 /* FIXME: if we don't know the TMSI, inquire abit IMSI and allocate new TMSI */
Harald Welte4ed0e922009-01-10 03:17:30 +0000898 if (!subscr)
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800899 return gsm48_tx_mm_serv_rej(conn,
Harald Welte4ed0e922009-01-10 03:17:30 +0000900 GSM48_REJECT_IMSI_UNKNOWN_IN_HLR);
901
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800902 if (!conn->subscr)
903 conn->subscr = subscr;
904 else if (conn->subscr == subscr)
Sylvain Munautea3f6742009-12-18 18:28:10 +0100905 subscr_put(subscr); /* lchan already has a ref, don't need another one */
906 else {
Harald Welte9bb7c702009-01-10 03:21:41 +0000907 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
908 subscr_put(subscr);
909 }
910
Harald Weltec2e302d2009-07-05 14:08:13 +0200911 subscr->equipment.classmark2_len = classmark2_len;
912 memcpy(subscr->equipment.classmark2, classmark2, classmark2_len);
913 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +0000914
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800915 return gsm48_secure_channel(conn, req->cipher_key_seq,
Sylvain Munautba87f452009-12-24 00:28:46 +0100916 _gsm48_rx_mm_serv_req_sec_cb, NULL);
Harald Welte4b634542008-12-27 01:55:51 +0000917}
918
Harald Welte2a139372009-02-22 21:14:55 +0000919static int gsm48_rx_mm_imsi_detach_ind(struct msgb *msg)
920{
Pablo Neira Ayuso7abecfc2011-08-17 22:43:54 +0200921 struct e1inp_sign_link *sign_link = msg->lchan->ts->trx->rsl_link;
Harald Welte9176bd42009-07-23 18:46:00 +0200922 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2a139372009-02-22 21:14:55 +0000923 struct gsm48_hdr *gh = msgb_l3(msg);
924 struct gsm48_imsi_detach_ind *idi =
925 (struct gsm48_imsi_detach_ind *) gh->data;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200926 uint8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200927 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +0800928 struct gsm_subscriber *subscr = NULL;
Harald Welte2a139372009-02-22 21:14:55 +0000929
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200930 gsm48_mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
Harald Welte2a139372009-02-22 21:14:55 +0000931 DEBUGP(DMM, "IMSI DETACH INDICATION: mi_type=0x%02x MI(%s): ",
932 mi_type, mi_string);
933
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200934 osmo_counter_inc(bts->network->stats.loc_upd_type.detach);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100935
Harald Welte2a139372009-02-22 21:14:55 +0000936 switch (mi_type) {
937 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200938 subscr = subscr_get_by_tmsi(bts->network,
939 tmsi_from_string(mi_string));
Harald Welte2a139372009-02-22 21:14:55 +0000940 break;
941 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +0200942 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000943 break;
944 case GSM_MI_TYPE_IMEI:
945 case GSM_MI_TYPE_IMEISV:
946 /* no sim card... FIXME: what to do ? */
Holger Freyther79f4ae62009-06-02 03:25:04 +0000947 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +0000948 break;
949 default:
Holger Freyther79f4ae62009-06-02 03:25:04 +0000950 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +0000951 break;
952 }
953
Holger Freyther4a49e772009-04-12 05:37:29 +0000954 if (subscr) {
Pablo Neira Ayuso7abecfc2011-08-17 22:43:54 +0200955 subscr_update(subscr, sign_link->trx->bts,
Holger Freyther4a49e772009-04-12 05:37:29 +0000956 GSM_SUBSCRIBER_UPDATE_DETACHED);
Harald Welte2e6d4682009-12-24 14:50:24 +0100957 DEBUGP(DMM, "Subscriber: %s\n", subscr_name(subscr));
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200958
959 subscr->equipment.classmark1 = idi->classmark1;
960 db_sync_equipment(&subscr->equipment);
961
Holger Freytherc21cfbc2009-06-02 02:54:57 +0000962 subscr_put(subscr);
Holger Freyther4a49e772009-04-12 05:37:29 +0000963 } else
Harald Welte2a139372009-02-22 21:14:55 +0000964 DEBUGP(DMM, "Unknown Subscriber ?!?\n");
965
Harald Welte31981a02009-12-20 09:58:40 +0100966 /* FIXME: iterate over all transactions and release them,
967 * imagine an IMSI DETACH happening during an active call! */
968
Harald Welteb83d9382009-12-12 21:00:48 +0100969 /* subscriber is detached: should we release lchan? */
Harald Welte2a139372009-02-22 21:14:55 +0000970 return 0;
971}
972
Harald Welted2a7f5a2009-06-05 20:08:20 +0000973static int gsm48_rx_mm_status(struct msgb *msg)
974{
975 struct gsm48_hdr *gh = msgb_l3(msg);
976
977 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
978
979 return 0;
980}
981
Sylvain Munaut30a15382009-12-24 00:27:26 +0100982/* Chapter 9.2.3: Authentication Response */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800983static int gsm48_rx_mm_auth_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100984{
985 struct gsm48_hdr *gh = msgb_l3(msg);
986 struct gsm48_auth_resp *ar = (struct gsm48_auth_resp*) gh->data;
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800987 struct gsm_network *net = conn->bts->network;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100988
Sylvain Munautc593cf12010-06-10 23:51:41 +0200989 DEBUGP(DMM, "MM AUTHENTICATION RESPONSE (sres = %s): ",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200990 osmo_hexdump(ar->sres, 4));
Sylvain Munaut30a15382009-12-24 00:27:26 +0100991
992 /* Safety check */
993 if (!conn->sec_operation) {
994 DEBUGP(DMM, "No authentication/cipher operation in progress !!!\n");
995 return -EIO;
996 }
997
998 /* Validate SRES */
999 if (memcmp(conn->sec_operation->atuple.sres, ar->sres,4)) {
Holger Hans Peter Freyther59f787a2010-12-27 10:57:56 +01001000 int rc;
Sylvain Munaut30a15382009-12-24 00:27:26 +01001001 gsm_cbfn *cb = conn->sec_operation->cb;
Sylvain Munautc593cf12010-06-10 23:51:41 +02001002
1003 DEBUGPC(DMM, "Invalid (expected %s)\n",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02001004 osmo_hexdump(conn->sec_operation->atuple.sres, 4));
Sylvain Munautc593cf12010-06-10 23:51:41 +02001005
Sylvain Munaut30a15382009-12-24 00:27:26 +01001006 if (cb)
1007 cb(GSM_HOOK_RR_SECURITY, GSM_SECURITY_AUTH_FAILED,
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +08001008 NULL, conn, conn->sec_operation->cb_data);
Sylvain Munaut30a15382009-12-24 00:27:26 +01001009
Holger Hans Peter Freyther59f787a2010-12-27 10:57:56 +01001010 rc = gsm48_tx_mm_auth_rej(conn);
Sylvain Munaut30a15382009-12-24 00:27:26 +01001011 release_security_operation(conn);
Holger Hans Peter Freyther59f787a2010-12-27 10:57:56 +01001012 return rc;
Sylvain Munaut30a15382009-12-24 00:27:26 +01001013 }
1014
Sylvain Munautc593cf12010-06-10 23:51:41 +02001015 DEBUGPC(DMM, "OK\n");
1016
Sylvain Munaut30a15382009-12-24 00:27:26 +01001017 /* Start ciphering */
Sylvain Munaut67706df2010-11-29 08:19:04 +01001018 return gsm0808_cipher_mode(conn, net->a5_encryption,
1019 conn->sec_operation->atuple.kc, 8, 0);
Sylvain Munaut30a15382009-12-24 00:27:26 +01001020}
1021
Harald Weltebf5e8df2009-02-03 12:59:45 +00001022/* Receive a GSM 04.08 Mobility Management (MM) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001023static int gsm0408_rcv_mm(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001024{
1025 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001026 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001027
1028 switch (gh->msg_type & 0xbf) {
1029 case GSM48_MT_MM_LOC_UPD_REQUEST:
Harald Weltea0368542009-06-27 02:58:43 +02001030 DEBUGP(DMM, "LOCATION UPDATING REQUEST: ");
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001031 rc = mm_rx_loc_upd_req(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001032 break;
1033 case GSM48_MT_MM_ID_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001034 rc = mm_rx_id_resp(conn, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001035 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001036 case GSM48_MT_MM_CM_SERV_REQ:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001037 rc = gsm48_rx_mm_serv_req(conn, msg);
Harald Welte4b634542008-12-27 01:55:51 +00001038 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001039 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +00001040 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001041 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001042 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte69b2af22009-01-06 19:47:00 +00001043 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001044 conn->subscr ?
1045 subscr_name(conn->subscr) :
Harald Welte69b2af22009-01-06 19:47:00 +00001046 "unknown subscriber");
Holger Hans Peter Freytherd4e68722010-12-22 12:11:01 +01001047 release_loc_updating_req(conn);
Harald Welte69b2af22009-01-06 19:47:00 +00001048 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001049 case GSM48_MT_MM_IMSI_DETACH_IND:
Harald Welte2a139372009-02-22 21:14:55 +00001050 rc = gsm48_rx_mm_imsi_detach_ind(msg);
1051 break;
1052 case GSM48_MT_MM_CM_REEST_REQ:
1053 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
1054 break;
1055 case GSM48_MT_MM_AUTH_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001056 rc = gsm48_rx_mm_auth_resp(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001057 break;
1058 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01001059 LOGP(DMM, LOGL_NOTICE, "Unknown GSM 04.08 MM msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00001060 gh->msg_type);
1061 break;
1062 }
1063
1064 return rc;
1065}
Harald Weltebf5e8df2009-02-03 12:59:45 +00001066
Harald Welte2d35ae62009-02-06 12:02:13 +00001067/* Receive a PAGING RESPONSE message from the MS */
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001068static int gsm48_rx_rr_pag_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte2d35ae62009-02-06 12:02:13 +00001069{
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001070 struct gsm_bts *bts = conn->bts;
Harald Welte2d35ae62009-02-06 12:02:13 +00001071 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001072 struct gsm48_pag_resp *resp;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001073 uint8_t *classmark2_lv = gh->data + 1;
1074 uint8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001075 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001076 struct gsm_subscriber *subscr = NULL;
Harald Welte2d35ae62009-02-06 12:02:13 +00001077 int rc = 0;
1078
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001079 resp = (struct gsm48_pag_resp *) &gh->data[0];
1080 gsm48_paging_extract_mi(resp, msgb_l3len(msg) - sizeof(*gh),
1081 mi_string, &mi_type);
Harald Welte2d35ae62009-02-06 12:02:13 +00001082 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
1083 mi_type, mi_string);
Harald Welte3ac7f102009-08-10 10:12:45 +02001084
Harald Weltefe18d8f2009-02-22 21:14:24 +00001085 switch (mi_type) {
1086 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001087 subscr = subscr_get_by_tmsi(bts->network,
1088 tmsi_from_string(mi_string));
Harald Weltefe18d8f2009-02-22 21:14:24 +00001089 break;
1090 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001091 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +00001092 break;
1093 }
Harald Welte2d35ae62009-02-06 12:02:13 +00001094
1095 if (!subscr) {
1096 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte09e38af2009-02-16 22:52:23 +00001097 /* FIXME: request id? close channel? */
Harald Welte2d35ae62009-02-06 12:02:13 +00001098 return -EINVAL;
1099 }
1100 DEBUGP(DRR, "<- Channel was requested by %s\n",
Harald Welte76042182009-08-08 16:03:15 +02001101 subscr->name && strlen(subscr->name) ? subscr->name : subscr->imsi);
Holger Freyther053e09d2009-02-14 22:51:06 +00001102
Harald Weltec2e302d2009-07-05 14:08:13 +02001103 subscr->equipment.classmark2_len = *classmark2_lv;
1104 memcpy(subscr->equipment.classmark2, classmark2_lv+1, *classmark2_lv);
1105 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001106
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001107 rc = gsm48_handle_paging_resp(conn, msg, subscr);
Harald Welte2d35ae62009-02-06 12:02:13 +00001108 return rc;
1109}
1110
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001111static int gsm48_rx_rr_app_info(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001112{
1113 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001114 uint8_t apdu_id_flags;
1115 uint8_t apdu_len;
1116 uint8_t *apdu_data;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001117
1118 apdu_id_flags = gh->data[0];
1119 apdu_len = gh->data[1];
1120 apdu_data = gh->data+2;
1121
1122 DEBUGP(DNM, "RX APPLICATION INFO id/flags=0x%02x apdu_len=%u apdu=%s",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02001123 apdu_id_flags, apdu_len, osmo_hexdump(apdu_data, apdu_len));
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001124
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001125 return db_apdu_blob_store(conn->subscr, apdu_id_flags, apdu_len, apdu_data);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001126}
1127
Harald Weltebf5e8df2009-02-03 12:59:45 +00001128/* Receive a GSM 04.08 Radio Resource (RR) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001129static int gsm0408_rcv_rr(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001130{
1131 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001132 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001133
1134 switch (gh->msg_type) {
Harald Welte52b1f982008-12-23 20:25:15 +00001135 case GSM48_MT_RR_PAG_RESP:
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001136 rc = gsm48_rx_rr_pag_resp(conn, msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001137 break;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001138 case GSM48_MT_RR_APP_INFO:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001139 rc = gsm48_rx_rr_app_info(conn, msg);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001140 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001141 default:
Harald Weltecf149ee2012-01-23 16:40:24 +01001142 LOGP(DRR, LOGL_NOTICE, "MSC: Unimplemented "
Harald Welte5d24ba12009-12-24 12:13:17 +01001143 "GSM 04.08 RR msg type 0x%02x\n", gh->msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +00001144 break;
1145 }
1146
Harald Welte2d35ae62009-02-06 12:02:13 +00001147 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001148}
1149
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001150int gsm48_send_rr_app_info(struct gsm_subscriber_connection *conn, uint8_t apdu_id,
1151 uint8_t apdu_len, const uint8_t *apdu)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001152{
1153 struct msgb *msg = gsm48_msgb_alloc();
1154 struct gsm48_hdr *gh;
1155
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +08001156 msg->lchan = conn->lchan;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001157
1158 DEBUGP(DRR, "TX APPLICATION INFO id=0x%02x, len=%u\n",
1159 apdu_id, apdu_len);
1160
1161 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2 + apdu_len);
1162 gh->proto_discr = GSM48_PDISC_RR;
1163 gh->msg_type = GSM48_MT_RR_APP_INFO;
1164 gh->data[0] = apdu_id;
1165 gh->data[1] = apdu_len;
1166 memcpy(gh->data+2, apdu, apdu_len);
1167
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +08001168 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001169}
1170
Harald Welte4bc90a12008-12-27 16:32:52 +00001171/* Call Control */
1172
Harald Welte7584aea2009-02-11 11:44:12 +00001173/* The entire call control code is written in accordance with Figure 7.10c
1174 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1175 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1176 * it for voice */
1177
Harald Welte4bfdfe72009-06-10 23:11:52 +08001178static void new_cc_state(struct gsm_trans *trans, int state)
1179{
1180 if (state > 31 || state < 0)
1181 return;
1182
1183 DEBUGP(DCC, "new state %s -> %s\n",
Harald Weltee95daf12010-03-25 12:13:02 +08001184 gsm48_cc_state_name(trans->cc.state),
1185 gsm48_cc_state_name(state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001186
Harald Weltedcaf5652009-07-23 18:56:43 +02001187 trans->cc.state = state;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001188}
1189
1190static int gsm48_cc_tx_status(struct gsm_trans *trans, void *arg)
Harald Welte4bc90a12008-12-27 16:32:52 +00001191{
1192 struct msgb *msg = gsm48_msgb_alloc();
1193 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001194 uint8_t *cause, *call_state;
Harald Welte4bc90a12008-12-27 16:32:52 +00001195
Harald Welte4bc90a12008-12-27 16:32:52 +00001196 gh->msg_type = GSM48_MT_CC_STATUS;
1197
1198 cause = msgb_put(msg, 3);
1199 cause[0] = 2;
1200 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1201 cause[2] = 0x80 | 30; /* response to status inquiry */
1202
1203 call_state = msgb_put(msg, 1);
1204 call_state[0] = 0xc0 | 0x00;
1205
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001206 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bc90a12008-12-27 16:32:52 +00001207}
1208
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001209static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001210 uint8_t pdisc, uint8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001211{
1212 struct msgb *msg = gsm48_msgb_alloc();
1213 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1214
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001215 msg->lchan = conn->lchan;
Harald Welte4bc90a12008-12-27 16:32:52 +00001216
Harald Welte6f4b7532008-12-29 00:39:37 +00001217 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001218 gh->msg_type = msg_type;
1219
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001220 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte4bc90a12008-12-27 16:32:52 +00001221}
1222
Harald Welte4bfdfe72009-06-10 23:11:52 +08001223static void gsm48_stop_cc_timer(struct gsm_trans *trans)
1224{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001225 if (osmo_timer_pending(&trans->cc.timer)) {
Harald Weltedcaf5652009-07-23 18:56:43 +02001226 DEBUGP(DCC, "stopping pending timer T%x\n", trans->cc.Tcurrent);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001227 osmo_timer_del(&trans->cc.timer);
Harald Weltedcaf5652009-07-23 18:56:43 +02001228 trans->cc.Tcurrent = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001229 }
1230}
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001231
Harald Welte4bfdfe72009-06-10 23:11:52 +08001232static int mncc_recvmsg(struct gsm_network *net, struct gsm_trans *trans,
1233 int msg_type, struct gsm_mncc *mncc)
1234{
1235 struct msgb *msg;
Harald Welte04dc88f2010-12-22 21:45:05 +01001236 unsigned char *data;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001237
1238 if (trans)
Harald Welteb854b292010-12-26 19:06:37 +01001239 if (trans->conn && trans->conn->lchan)
Harald Welte6f5aee02009-07-23 21:21:14 +02001240 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08001241 "Sending '%s' to MNCC.\n",
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001242 trans->conn->lchan->ts->trx->bts->nr,
1243 trans->conn->lchan->ts->trx->nr,
1244 trans->conn->lchan->ts->nr, trans->transaction_id,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001245 (trans->subscr)?(trans->subscr->extension):"-",
1246 get_mncc_name(msg_type));
1247 else
1248 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
1249 "Sending '%s' to MNCC.\n",
1250 (trans->subscr)?(trans->subscr->extension):"-",
1251 get_mncc_name(msg_type));
1252 else
1253 DEBUGP(DCC, "(bts - trx - ts - ti -- sub -) "
1254 "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
1255
1256 mncc->msg_type = msg_type;
1257
Harald Welte966636f2009-06-26 19:39:35 +02001258 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001259 if (!msg)
1260 return -ENOMEM;
Harald Welte04dc88f2010-12-22 21:45:05 +01001261
1262 data = msgb_put(msg, sizeof(struct gsm_mncc));
1263 memcpy(data, mncc, sizeof(struct gsm_mncc));
1264
Harald Welte54209c22010-12-22 23:43:29 +01001265 cc_tx_to_mncc(net, msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001266
1267 return 0;
1268}
1269
1270int mncc_release_ind(struct gsm_network *net, struct gsm_trans *trans,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001271 uint32_t callref, int location, int value)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001272{
1273 struct gsm_mncc rel;
1274
Harald Welte92f70c52009-06-12 01:54:08 +08001275 memset(&rel, 0, sizeof(rel));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001276 rel.callref = callref;
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001277 mncc_set_cause(&rel, location, value);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001278 return mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
1279}
1280
Harald Weltedcaf5652009-07-23 18:56:43 +02001281/* Call Control Specific transaction release.
1282 * gets called by trans_free, DO NOT CALL YOURSELF! */
1283void _gsm48_cc_trans_free(struct gsm_trans *trans)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001284{
Harald Welte4bfdfe72009-06-10 23:11:52 +08001285 gsm48_stop_cc_timer(trans);
1286
1287 /* send release to L4, if callref still exists */
1288 if (trans->callref) {
1289 /* Ressource unavailable */
Harald Welte596fed42009-07-23 19:06:52 +02001290 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001291 GSM48_CAUSE_LOC_PRN_S_LU,
1292 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001293 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001294 if (trans->cc.state != GSM_CSTATE_NULL)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001295 new_cc_state(trans, GSM_CSTATE_NULL);
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001296 if (trans->conn)
1297 trau_mux_unmap(&trans->conn->lchan->ts->e1_link, trans->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001298}
1299
1300static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001301
Harald Welte09e38af2009-02-16 22:52:23 +00001302/* call-back from paging the B-end of the connection */
1303static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001304 struct msgb *msg, void *_conn, void *param)
Harald Welte09e38af2009-02-16 22:52:23 +00001305{
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001306 int found = 0;
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001307 struct gsm_subscriber_connection *conn = _conn;
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001308 struct gsm_network **paging_request = param, *net;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001309 struct gsm_trans *transt, *tmp;
Harald Weltec05677b2009-06-26 20:17:06 +02001310
Harald Welte09e38af2009-02-16 22:52:23 +00001311 if (hooknum != GSM_HOOK_RR_PAGING)
1312 return -EINVAL;
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001313
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001314 net = *paging_request;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001315 if (!net) {
1316 DEBUGP(DCC, "Error Network not set!\n");
1317 return -EINVAL;
Harald Welte5a065df2009-02-22 21:13:18 +00001318 }
Harald Welte7584aea2009-02-11 11:44:12 +00001319
Harald Welte4bfdfe72009-06-10 23:11:52 +08001320 /* check all tranactions (without lchan) for subscriber */
1321 llist_for_each_entry_safe(transt, tmp, &net->trans_list, entry) {
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001322 if (transt->paging_request != paging_request || transt->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001323 continue;
1324 switch (event) {
1325 case GSM_PAGING_SUCCEEDED:
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001326 if (!conn) // paranoid
Harald Welte4bfdfe72009-06-10 23:11:52 +08001327 break;
1328 DEBUGP(DCC, "Paging subscr %s succeeded!\n",
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001329 transt->subscr->extension);
1330 found = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001331 /* Assign lchan */
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001332 if (!transt->conn) {
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001333 transt->paging_request = NULL;
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001334 transt->conn = conn;
Holger Hans Peter Freyther182c81f2010-12-29 16:28:33 +01001335 conn->put_channel = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001336 }
1337 /* send SETUP request to called party */
Harald Weltedcaf5652009-07-23 18:56:43 +02001338 gsm48_cc_tx_setup(transt, &transt->cc.msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001339 break;
1340 case GSM_PAGING_EXPIRED:
Holger Hans Peter Freytherd3baf412010-12-23 18:19:17 +01001341 case GSM_PAGING_BUSY:
Harald Welte4bfdfe72009-06-10 23:11:52 +08001342 DEBUGP(DCC, "Paging subscr %s expired!\n",
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001343 transt->subscr->extension);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001344 /* Temporarily out of order */
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001345 found = 1;
Harald Welte596fed42009-07-23 19:06:52 +02001346 mncc_release_ind(transt->subscr->net, transt,
1347 transt->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001348 GSM48_CAUSE_LOC_PRN_S_LU,
1349 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001350 transt->callref = 0;
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001351 transt->paging_request = NULL;
Harald Weltedcaf5652009-07-23 18:56:43 +02001352 trans_free(transt);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001353 break;
1354 }
1355 }
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001356
1357 talloc_free(paging_request);
1358
1359 /*
1360 * FIXME: The queue needs to be kicked. This is likely to go through a RF
1361 * failure and then the subscr will be poke again. This needs a lot of fixing
1362 * in the subscriber queue code.
1363 */
1364 if (!found && conn)
1365 conn->put_channel = 1;
Harald Welte09e38af2009-02-16 22:52:23 +00001366 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001367}
Harald Welte7584aea2009-02-11 11:44:12 +00001368
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001369static int tch_recv_mncc(struct gsm_network *net, uint32_t callref, int enable);
Harald Welteda7ab742009-12-19 22:23:05 +01001370
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001371/* handle audio path for handover */
1372static int handle_ho_signal(unsigned int subsys, unsigned int signal,
1373 void *handler_data, void *signal_data)
1374{
1375 struct rtp_socket *old_rs, *new_rs, *other_rs;
1376 struct ho_signal_data *sig = signal_data;
1377
1378 if (subsys != SS_HO || signal != S_HANDOVER_ACK)
1379 return 0;
1380
1381 if (ipacc_rtp_direct) {
1382 LOGP(DHO, LOGL_ERROR, "unable to handover in direct RTP mode\n");
1383 return 0;
1384 }
1385
1386 /* RTP Proxy mode */
1387 new_rs = sig->new_lchan->abis_ip.rtp_socket;
1388 old_rs = sig->old_lchan->abis_ip.rtp_socket;
1389
1390 if (!new_rs) {
1391 LOGP(DHO, LOGL_ERROR, "no RTP socket for new_lchan\n");
1392 return -EIO;
1393 }
1394
1395 rsl_ipacc_mdcx_to_rtpsock(sig->new_lchan);
1396
1397 if (!old_rs) {
1398 LOGP(DHO, LOGL_ERROR, "no RTP socket for old_lchan\n");
1399 return -EIO;
1400 }
1401
1402 /* copy rx_action and reference to other sock */
1403 new_rs->rx_action = old_rs->rx_action;
1404 new_rs->tx_action = old_rs->tx_action;
1405 new_rs->transmit = old_rs->transmit;
1406
1407 switch (sig->old_lchan->abis_ip.rtp_socket->rx_action) {
1408 case RTP_PROXY:
1409 other_rs = old_rs->proxy.other_sock;
1410 rtp_socket_proxy(new_rs, other_rs);
1411 /* delete reference to other end socket to prevent
1412 * rtp_socket_free() from removing the inverse reference */
1413 old_rs->proxy.other_sock = NULL;
1414 break;
1415 case RTP_RECV_UPSTREAM:
1416 new_rs->receive = old_rs->receive;
1417 break;
1418 case RTP_NONE:
1419 break;
1420 }
1421
1422 return 0;
1423}
1424
Harald Welte805f6442009-07-28 18:25:29 +02001425/* some other part of the code sends us a signal */
1426static int handle_abisip_signal(unsigned int subsys, unsigned int signal,
1427 void *handler_data, void *signal_data)
1428{
1429 struct gsm_lchan *lchan = signal_data;
Harald Welte805f6442009-07-28 18:25:29 +02001430 int rc;
Harald Welteda7ab742009-12-19 22:23:05 +01001431 struct gsm_network *net;
1432 struct gsm_trans *trans;
Harald Welte805f6442009-07-28 18:25:29 +02001433
1434 if (subsys != SS_ABISIP)
1435 return 0;
1436
1437 /* in case we use direct BTS-to-BTS RTP */
1438 if (ipacc_rtp_direct)
1439 return 0;
1440
Harald Welte805f6442009-07-28 18:25:29 +02001441 switch (signal) {
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001442 case S_ABISIP_CRCX_ACK:
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001443 /* in case we don't use direct BTS-to-BTS RTP */
1444 /* the BTS has successfully bound a TCH to a local ip/port,
1445 * which means we can connect our UDP socket to it */
1446 if (lchan->abis_ip.rtp_socket) {
1447 rtp_socket_free(lchan->abis_ip.rtp_socket);
1448 lchan->abis_ip.rtp_socket = NULL;
1449 }
1450
1451 lchan->abis_ip.rtp_socket = rtp_socket_create();
1452 if (!lchan->abis_ip.rtp_socket)
1453 return -EIO;
1454
1455 rc = rtp_socket_connect(lchan->abis_ip.rtp_socket,
1456 lchan->abis_ip.bound_ip,
1457 lchan->abis_ip.bound_port);
1458 if (rc < 0)
1459 return -EIO;
1460
Harald Welteda7ab742009-12-19 22:23:05 +01001461 /* check if any transactions on this lchan still have
1462 * a tch_recv_mncc request pending */
1463 net = lchan->ts->trx->bts->network;
1464 llist_for_each_entry(trans, &net->trans_list, entry) {
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001465 if (trans->conn && trans->conn->lchan == lchan && trans->tch_recv) {
Harald Welteda7ab742009-12-19 22:23:05 +01001466 DEBUGP(DCC, "pending tch_recv_mncc request\n");
1467 tch_recv_mncc(net, trans->callref, 1);
1468 }
1469 }
Harald Welte805f6442009-07-28 18:25:29 +02001470 break;
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001471 case S_ABISIP_DLCX_IND:
1472 /* the BTS tells us a RTP stream has been disconnected */
1473 if (lchan->abis_ip.rtp_socket) {
1474 rtp_socket_free(lchan->abis_ip.rtp_socket);
1475 lchan->abis_ip.rtp_socket = NULL;
1476 }
1477
1478 break;
Harald Welte805f6442009-07-28 18:25:29 +02001479 }
1480
1481 return 0;
Harald Welte805f6442009-07-28 18:25:29 +02001482}
1483
Harald Welte49f48b82009-02-17 15:29:33 +00001484/* map two ipaccess RTP streams onto each other */
Harald Welte11fa29c2009-02-19 17:24:39 +00001485static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
Harald Welte49f48b82009-02-17 15:29:33 +00001486{
Harald Welte11fa29c2009-02-19 17:24:39 +00001487 struct gsm_bts *bts = lchan->ts->trx->bts;
1488 struct gsm_bts *remote_bts = remote_lchan->ts->trx->bts;
Harald Welte805f6442009-07-28 18:25:29 +02001489 int rc;
Harald Welte49f48b82009-02-17 15:29:33 +00001490
Harald Welte11fa29c2009-02-19 17:24:39 +00001491 DEBUGP(DCC, "Setting up TCH map between (bts=%u,trx=%u,ts=%u) and (bts=%u,trx=%u,ts=%u)\n",
1492 bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1493 remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr);
1494
1495 if (bts->type != remote_bts->type) {
Harald Weltee5215b52011-08-09 21:53:20 +02001496 LOGP(DCC, LOGL_ERROR, "Cannot switch calls between different BTS types yet\n");
Harald Welte11fa29c2009-02-19 17:24:39 +00001497 return -EINVAL;
1498 }
Harald Welteda7ab742009-12-19 22:23:05 +01001499
1500 // todo: map between different bts types
Harald Welte11fa29c2009-02-19 17:24:39 +00001501 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +01001502 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +02001503 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Welte805f6442009-07-28 18:25:29 +02001504 if (!ipacc_rtp_direct) {
1505 /* connect the TCH's to our RTP proxy */
Harald Weltea72273e2009-12-20 16:51:09 +01001506 rc = rsl_ipacc_mdcx_to_rtpsock(lchan);
Harald Welte805f6442009-07-28 18:25:29 +02001507 if (rc < 0)
1508 return rc;
Harald Weltea72273e2009-12-20 16:51:09 +01001509 rc = rsl_ipacc_mdcx_to_rtpsock(remote_lchan);
Harald Welte4d54d0b2011-02-19 16:48:17 +01001510 if (rc < 0)
1511 return rc;
Harald Welte805f6442009-07-28 18:25:29 +02001512 /* connect them with each other */
Harald Welte2c828992009-12-02 01:56:49 +05301513 rtp_socket_proxy(lchan->abis_ip.rtp_socket,
1514 remote_lchan->abis_ip.rtp_socket);
Harald Welte805f6442009-07-28 18:25:29 +02001515 } else {
1516 /* directly connect TCH RTP streams to each other */
Harald Welte2c828992009-12-02 01:56:49 +05301517 rc = rsl_ipacc_mdcx(lchan, remote_lchan->abis_ip.bound_ip,
1518 remote_lchan->abis_ip.bound_port,
Harald Welte2c828992009-12-02 01:56:49 +05301519 remote_lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001520 if (rc < 0)
1521 return rc;
Harald Welte2c828992009-12-02 01:56:49 +05301522 rc = rsl_ipacc_mdcx(remote_lchan, lchan->abis_ip.bound_ip,
1523 lchan->abis_ip.bound_port,
Harald Welte2c828992009-12-02 01:56:49 +05301524 lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001525 }
Harald Welte11fa29c2009-02-19 17:24:39 +00001526 break;
1527 case GSM_BTS_TYPE_BS11:
Harald Weltec76fb5d2011-03-20 06:27:31 -03001528 case GSM_BTS_TYPE_RBS2000:
Dieter Spaar16646022011-07-28 00:01:50 +02001529 case GSM_BTS_TYPE_NOKIA_SITE:
Harald Welte11fa29c2009-02-19 17:24:39 +00001530 trau_mux_map_lchan(lchan, remote_lchan);
1531 break;
1532 default:
Harald Weltee5215b52011-08-09 21:53:20 +02001533 LOGP(DCC, LOGL_ERROR, "Unknown BTS type %u\n", bts->type);
Harald Welteda7ab742009-12-19 22:23:05 +01001534 return -EINVAL;
Harald Welte11fa29c2009-02-19 17:24:39 +00001535 }
Harald Welte49f48b82009-02-17 15:29:33 +00001536
1537 return 0;
1538}
1539
Harald Welte4bfdfe72009-06-10 23:11:52 +08001540/* bridge channels of two transactions */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001541static int tch_bridge(struct gsm_network *net, uint32_t *refs)
Harald Welte7ccf7782009-02-17 01:43:01 +00001542{
Harald Weltedcaf5652009-07-23 18:56:43 +02001543 struct gsm_trans *trans1 = trans_find_by_callref(net, refs[0]);
1544 struct gsm_trans *trans2 = trans_find_by_callref(net, refs[1]);
Harald Welte7ccf7782009-02-17 01:43:01 +00001545
Harald Welte4bfdfe72009-06-10 23:11:52 +08001546 if (!trans1 || !trans2)
Harald Welte7ccf7782009-02-17 01:43:01 +00001547 return -EIO;
1548
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001549 if (!trans1->conn || !trans2->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001550 return -EIO;
1551
1552 /* through-connect channel */
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001553 return tch_map(trans1->conn->lchan, trans2->conn->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00001554}
1555
Harald Welteda7ab742009-12-19 22:23:05 +01001556/* enable receive of channels to MNCC upqueue */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001557static int tch_recv_mncc(struct gsm_network *net, uint32_t callref, int enable)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001558{
1559 struct gsm_trans *trans;
Harald Welteda7ab742009-12-19 22:23:05 +01001560 struct gsm_lchan *lchan;
1561 struct gsm_bts *bts;
1562 int rc;
Harald Welte7ccf7782009-02-17 01:43:01 +00001563
Harald Welte4bfdfe72009-06-10 23:11:52 +08001564 /* Find callref */
Harald Welteda7ab742009-12-19 22:23:05 +01001565 trans = trans_find_by_callref(net, callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001566 if (!trans)
1567 return -EIO;
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001568 if (!trans->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001569 return 0;
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001570 lchan = trans->conn->lchan;
Harald Welteda7ab742009-12-19 22:23:05 +01001571 bts = lchan->ts->trx->bts;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001572
Harald Welteda7ab742009-12-19 22:23:05 +01001573 switch (bts->type) {
1574 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +02001575 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Welteda7ab742009-12-19 22:23:05 +01001576 if (ipacc_rtp_direct) {
Harald Weltee5215b52011-08-09 21:53:20 +02001577 LOGP(DCC, LOGL_ERROR, "Error: RTP proxy is disabled\n");
Harald Welteda7ab742009-12-19 22:23:05 +01001578 return -EINVAL;
1579 }
1580 /* in case, we don't have a RTP socket yet, we note this
1581 * in the transaction and try later */
1582 if (!lchan->abis_ip.rtp_socket) {
1583 trans->tch_recv = enable;
1584 DEBUGP(DCC, "queue tch_recv_mncc request (%d)\n", enable);
1585 return 0;
1586 }
1587 if (enable) {
1588 /* connect the TCH's to our RTP proxy */
Harald Weltea72273e2009-12-20 16:51:09 +01001589 rc = rsl_ipacc_mdcx_to_rtpsock(lchan);
Harald Welteda7ab742009-12-19 22:23:05 +01001590 if (rc < 0)
1591 return rc;
1592 /* assign socket to application interface */
1593 rtp_socket_upstream(lchan->abis_ip.rtp_socket,
1594 net, callref);
1595 } else
1596 rtp_socket_upstream(lchan->abis_ip.rtp_socket,
1597 net, 0);
1598 break;
1599 case GSM_BTS_TYPE_BS11:
Harald Weltec76fb5d2011-03-20 06:27:31 -03001600 case GSM_BTS_TYPE_RBS2000:
Harald Welte10456972011-08-05 20:11:18 +02001601 case GSM_BTS_TYPE_NOKIA_SITE:
Harald Welteda7ab742009-12-19 22:23:05 +01001602 if (enable)
1603 return trau_recv_lchan(lchan, callref);
1604 return trau_mux_unmap(NULL, callref);
1605 break;
1606 default:
Harald Weltee5215b52011-08-09 21:53:20 +02001607 LOGP(DCC, LOGL_ERROR, "Unknown BTS type %u\n", bts->type);
Harald Welteda7ab742009-12-19 22:23:05 +01001608 return -EINVAL;
1609 }
1610
1611 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001612}
1613
Harald Welte4bfdfe72009-06-10 23:11:52 +08001614static int gsm48_cc_rx_status_enq(struct gsm_trans *trans, struct msgb *msg)
1615{
1616 DEBUGP(DCC, "-> STATUS ENQ\n");
1617 return gsm48_cc_tx_status(trans, msg);
1618}
1619
1620static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg);
1621static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg);
1622
1623static void gsm48_cc_timeout(void *arg)
1624{
1625 struct gsm_trans *trans = arg;
1626 int disconnect = 0, release = 0;
Harald Weltec66b71c2009-06-11 14:23:20 +08001627 int mo_cause = GSM48_CC_CAUSE_RECOVERY_TIMER;
1628 int mo_location = GSM48_CAUSE_LOC_USER;
1629 int l4_cause = GSM48_CC_CAUSE_NORMAL_UNSPEC;
1630 int l4_location = GSM48_CAUSE_LOC_PRN_S_LU;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001631 struct gsm_mncc mo_rel, l4_rel;
1632
1633 memset(&mo_rel, 0, sizeof(struct gsm_mncc));
1634 mo_rel.callref = trans->callref;
1635 memset(&l4_rel, 0, sizeof(struct gsm_mncc));
1636 l4_rel.callref = trans->callref;
1637
Harald Weltedcaf5652009-07-23 18:56:43 +02001638 switch(trans->cc.Tcurrent) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001639 case 0x303:
1640 release = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001641 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001642 break;
1643 case 0x310:
1644 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001645 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001646 break;
1647 case 0x313:
1648 disconnect = 1;
1649 /* unknown, did not find it in the specs */
1650 break;
1651 case 0x301:
1652 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001653 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001654 break;
1655 case 0x308:
Harald Weltedcaf5652009-07-23 18:56:43 +02001656 if (!trans->cc.T308_second) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001657 /* restart T308 a second time */
Harald Weltedcaf5652009-07-23 18:56:43 +02001658 gsm48_cc_tx_release(trans, &trans->cc.msg);
1659 trans->cc.T308_second = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001660 break; /* stay in release state */
1661 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001662 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001663 return;
1664// release = 1;
1665// l4_cause = 14;
1666// break;
1667 case 0x306:
1668 release = 1;
Harald Weltedcaf5652009-07-23 18:56:43 +02001669 mo_cause = trans->cc.msg.cause.value;
1670 mo_location = trans->cc.msg.cause.location;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001671 break;
1672 case 0x323:
1673 disconnect = 1;
1674 break;
1675 default:
1676 release = 1;
1677 }
1678
1679 if (release && trans->callref) {
1680 /* process release towards layer 4 */
Harald Welte596fed42009-07-23 19:06:52 +02001681 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001682 l4_location, l4_cause);
1683 trans->callref = 0;
1684 }
1685
1686 if (disconnect && trans->callref) {
1687 /* process disconnect towards layer 4 */
1688 mncc_set_cause(&l4_rel, l4_location, l4_cause);
Harald Welte596fed42009-07-23 19:06:52 +02001689 mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &l4_rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001690 }
1691
1692 /* process disconnect towards mobile station */
1693 if (disconnect || release) {
1694 mncc_set_cause(&mo_rel, mo_location, mo_cause);
Harald Weltedcaf5652009-07-23 18:56:43 +02001695 mo_rel.cause.diag[0] = ((trans->cc.Tcurrent & 0xf00) >> 8) + '0';
1696 mo_rel.cause.diag[1] = ((trans->cc.Tcurrent & 0x0f0) >> 4) + '0';
1697 mo_rel.cause.diag[2] = (trans->cc.Tcurrent & 0x00f) + '0';
Harald Welte4bfdfe72009-06-10 23:11:52 +08001698 mo_rel.cause.diag_len = 3;
1699
1700 if (disconnect)
1701 gsm48_cc_tx_disconnect(trans, &mo_rel);
1702 if (release)
1703 gsm48_cc_tx_release(trans, &mo_rel);
1704 }
1705
1706}
1707
1708static void gsm48_start_cc_timer(struct gsm_trans *trans, int current,
1709 int sec, int micro)
1710{
1711 DEBUGP(DCC, "starting timer T%x with %d seconds\n", current, sec);
Harald Weltedcaf5652009-07-23 18:56:43 +02001712 trans->cc.timer.cb = gsm48_cc_timeout;
1713 trans->cc.timer.data = trans;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001714 osmo_timer_schedule(&trans->cc.timer, sec, micro);
Harald Weltedcaf5652009-07-23 18:56:43 +02001715 trans->cc.Tcurrent = current;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001716}
1717
1718static int gsm48_cc_rx_setup(struct gsm_trans *trans, struct msgb *msg)
1719{
1720 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02001721 uint8_t msg_type = gh->msg_type & 0xbf;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001722 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1723 struct tlv_parsed tp;
1724 struct gsm_mncc setup;
1725
1726 memset(&setup, 0, sizeof(struct gsm_mncc));
1727 setup.callref = trans->callref;
Harald Welteab386e62011-09-01 18:18:43 +02001728 if (trans->conn && trans->conn->lchan)
1729 setup.lchan_type = trans->conn->lchan->type;
Harald Welte474d19f2010-03-02 23:18:30 +01001730 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001731 /* emergency setup is identified by msg_type */
1732 if (msg_type == GSM48_MT_CC_EMERG_SETUP)
1733 setup.emergency = 1;
1734
1735 /* use subscriber as calling party number */
1736 if (trans->subscr) {
1737 setup.fields |= MNCC_F_CALLING;
1738 strncpy(setup.calling.number, trans->subscr->extension,
1739 sizeof(setup.calling.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02001740 strncpy(setup.imsi, trans->subscr->imsi,
1741 sizeof(setup.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001742 }
1743 /* bearer capability */
1744 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
1745 setup.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001746 gsm48_decode_bearer_cap(&setup.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001747 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
1748 }
1749 /* facility */
1750 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1751 setup.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001752 gsm48_decode_facility(&setup.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001753 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1754 }
1755 /* called party bcd number */
1756 if (TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD)) {
1757 setup.fields |= MNCC_F_CALLED;
Harald Welte55c8f352010-03-07 23:40:35 +01001758 gsm48_decode_called(&setup.called,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001759 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
1760 }
1761 /* user-user */
1762 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
1763 setup.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01001764 gsm48_decode_useruser(&setup.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001765 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
1766 }
1767 /* ss-version */
1768 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1769 setup.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001770 gsm48_decode_ssversion(&setup.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001771 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1772 }
1773 /* CLIR suppression */
1774 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_SUPP))
1775 setup.clir.sup = 1;
1776 /* CLIR invocation */
1777 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_INVOC))
1778 setup.clir.inv = 1;
1779 /* cc cap */
1780 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
1781 setup.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001782 gsm48_decode_cccap(&setup.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001783 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
1784 }
1785
Harald Welte4bfdfe72009-06-10 23:11:52 +08001786 new_cc_state(trans, GSM_CSTATE_INITIATED);
1787
Harald Welte (local)47df3992009-12-26 19:45:03 +01001788 LOGP(DCC, LOGL_INFO, "Subscriber %s (%s) sends SETUP to %s\n",
1789 subscr_name(trans->subscr), trans->subscr->extension,
1790 setup.called.number);
1791
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02001792 osmo_counter_inc(trans->subscr->net->stats.call.mo_setup);
Harald Weltea29e43a2010-12-24 16:06:33 +01001793
Harald Welte4bfdfe72009-06-10 23:11:52 +08001794 /* indicate setup to MNCC */
Harald Welte596fed42009-07-23 19:06:52 +02001795 mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_IND, &setup);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001796
Harald Welte13cac662009-07-29 12:10:35 +02001797 /* MNCC code will modify the channel asynchronously, we should
1798 * ipaccess-bind only after the modification has been made to the
1799 * lchan->tch_mode */
Harald Welte4bfdfe72009-06-10 23:11:52 +08001800 return 0;
1801}
1802
1803static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg)
Harald Welte65e74cc2008-12-29 01:55:35 +00001804{
1805 struct msgb *msg = gsm48_msgb_alloc();
1806 struct gsm48_hdr *gh;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001807 struct gsm_mncc *setup = arg;
Harald Welte78283ef2009-07-23 21:36:44 +02001808 int rc, trans_id;
Harald Welte65e74cc2008-12-29 01:55:35 +00001809
Harald Welte7ccf7782009-02-17 01:43:01 +00001810 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00001811
Harald Welte4bfdfe72009-06-10 23:11:52 +08001812 /* transaction id must not be assigned */
1813 if (trans->transaction_id != 0xff) { /* unasssigned */
1814 DEBUGP(DCC, "TX Setup with assigned transaction. "
1815 "This is not allowed!\n");
1816 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02001817 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001818 GSM48_CAUSE_LOC_PRN_S_LU,
1819 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001820 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001821 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001822 return rc;
1823 }
1824
1825 /* Get free transaction_id */
Harald Welte78283ef2009-07-23 21:36:44 +02001826 trans_id = trans_assign_trans_id(trans->subscr, GSM48_PDISC_CC, 0);
1827 if (trans_id < 0) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001828 /* no free transaction ID */
Harald Welte596fed42009-07-23 19:06:52 +02001829 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001830 GSM48_CAUSE_LOC_PRN_S_LU,
1831 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001832 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001833 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001834 return rc;
1835 }
Harald Welte78283ef2009-07-23 21:36:44 +02001836 trans->transaction_id = trans_id;
Harald Welte49f48b82009-02-17 15:29:33 +00001837
Harald Welte65e74cc2008-12-29 01:55:35 +00001838 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00001839
Harald Welte4bfdfe72009-06-10 23:11:52 +08001840 gsm48_start_cc_timer(trans, 0x303, GSM48_T303);
Harald Welte65e74cc2008-12-29 01:55:35 +00001841
Harald Welte4bfdfe72009-06-10 23:11:52 +08001842 /* bearer capability */
1843 if (setup->fields & MNCC_F_BEARER_CAP)
Harald Welte55c8f352010-03-07 23:40:35 +01001844 gsm48_encode_bearer_cap(msg, 0, &setup->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001845 /* facility */
1846 if (setup->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001847 gsm48_encode_facility(msg, 0, &setup->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001848 /* progress */
1849 if (setup->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001850 gsm48_encode_progress(msg, 0, &setup->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001851 /* calling party BCD number */
1852 if (setup->fields & MNCC_F_CALLING)
Harald Welte55c8f352010-03-07 23:40:35 +01001853 gsm48_encode_calling(msg, &setup->calling);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001854 /* called party BCD number */
1855 if (setup->fields & MNCC_F_CALLED)
Harald Welte55c8f352010-03-07 23:40:35 +01001856 gsm48_encode_called(msg, &setup->called);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001857 /* user-user */
1858 if (setup->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001859 gsm48_encode_useruser(msg, 0, &setup->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001860 /* redirecting party BCD number */
1861 if (setup->fields & MNCC_F_REDIRECTING)
Harald Welte55c8f352010-03-07 23:40:35 +01001862 gsm48_encode_redirecting(msg, &setup->redirecting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001863 /* signal */
1864 if (setup->fields & MNCC_F_SIGNAL)
Harald Welte55c8f352010-03-07 23:40:35 +01001865 gsm48_encode_signal(msg, setup->signal);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001866
1867 new_cc_state(trans, GSM_CSTATE_CALL_PRESENT);
Harald Welte65e74cc2008-12-29 01:55:35 +00001868
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02001869 osmo_counter_inc(trans->subscr->net->stats.call.mt_setup);
Harald Weltea29e43a2010-12-24 16:06:33 +01001870
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001871 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte65e74cc2008-12-29 01:55:35 +00001872}
1873
Harald Welte4bfdfe72009-06-10 23:11:52 +08001874static int gsm48_cc_rx_call_conf(struct gsm_trans *trans, struct msgb *msg)
1875{
1876 struct gsm48_hdr *gh = msgb_l3(msg);
1877 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1878 struct tlv_parsed tp;
1879 struct gsm_mncc call_conf;
1880
1881 gsm48_stop_cc_timer(trans);
1882 gsm48_start_cc_timer(trans, 0x310, GSM48_T310);
1883
1884 memset(&call_conf, 0, sizeof(struct gsm_mncc));
1885 call_conf.callref = trans->callref;
Harald Welteab386e62011-09-01 18:18:43 +02001886 if (trans->conn && trans->conn->lchan)
1887 call_conf.lchan_type = trans->conn->lchan->type;
Harald Welte474d19f2010-03-02 23:18:30 +01001888 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001889#if 0
1890 /* repeat */
1891 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_CIR))
1892 call_conf.repeat = 1;
1893 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_SEQ))
1894 call_conf.repeat = 2;
1895#endif
1896 /* bearer capability */
1897 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
1898 call_conf.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001899 gsm48_decode_bearer_cap(&call_conf.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001900 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
1901 }
1902 /* cause */
1903 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
1904 call_conf.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01001905 gsm48_decode_cause(&call_conf.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001906 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
1907 }
1908 /* cc cap */
1909 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
1910 call_conf.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001911 gsm48_decode_cccap(&call_conf.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001912 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
1913 }
1914
1915 new_cc_state(trans, GSM_CSTATE_MO_TERM_CALL_CONF);
1916
Harald Welte596fed42009-07-23 19:06:52 +02001917 return mncc_recvmsg(trans->subscr->net, trans, MNCC_CALL_CONF_IND,
1918 &call_conf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001919}
1920
1921static int gsm48_cc_tx_call_proc(struct gsm_trans *trans, void *arg)
1922{
1923 struct gsm_mncc *proceeding = arg;
1924 struct msgb *msg = gsm48_msgb_alloc();
1925 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1926
Harald Welte4bfdfe72009-06-10 23:11:52 +08001927 gh->msg_type = GSM48_MT_CC_CALL_PROC;
1928
1929 new_cc_state(trans, GSM_CSTATE_MO_CALL_PROC);
1930
1931 /* bearer capability */
1932 if (proceeding->fields & MNCC_F_BEARER_CAP)
Harald Welte55c8f352010-03-07 23:40:35 +01001933 gsm48_encode_bearer_cap(msg, 0, &proceeding->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001934 /* facility */
1935 if (proceeding->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001936 gsm48_encode_facility(msg, 0, &proceeding->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001937 /* progress */
1938 if (proceeding->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001939 gsm48_encode_progress(msg, 0, &proceeding->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001940
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001941 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001942}
1943
1944static int gsm48_cc_rx_alerting(struct gsm_trans *trans, struct msgb *msg)
1945{
1946 struct gsm48_hdr *gh = msgb_l3(msg);
1947 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1948 struct tlv_parsed tp;
1949 struct gsm_mncc alerting;
1950
1951 gsm48_stop_cc_timer(trans);
1952 gsm48_start_cc_timer(trans, 0x301, GSM48_T301);
1953
1954 memset(&alerting, 0, sizeof(struct gsm_mncc));
1955 alerting.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01001956 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001957 /* facility */
1958 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1959 alerting.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001960 gsm48_decode_facility(&alerting.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001961 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1962 }
1963
1964 /* progress */
1965 if (TLVP_PRESENT(&tp, GSM48_IE_PROGR_IND)) {
1966 alerting.fields |= MNCC_F_PROGRESS;
Harald Welte55c8f352010-03-07 23:40:35 +01001967 gsm48_decode_progress(&alerting.progress,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001968 TLVP_VAL(&tp, GSM48_IE_PROGR_IND)-1);
1969 }
1970 /* ss-version */
1971 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1972 alerting.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001973 gsm48_decode_ssversion(&alerting.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001974 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1975 }
1976
1977 new_cc_state(trans, GSM_CSTATE_CALL_RECEIVED);
1978
Harald Welte596fed42009-07-23 19:06:52 +02001979 return mncc_recvmsg(trans->subscr->net, trans, MNCC_ALERT_IND,
1980 &alerting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001981}
1982
1983static int gsm48_cc_tx_alerting(struct gsm_trans *trans, void *arg)
1984{
1985 struct gsm_mncc *alerting = arg;
1986 struct msgb *msg = gsm48_msgb_alloc();
1987 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1988
Harald Welte4bfdfe72009-06-10 23:11:52 +08001989 gh->msg_type = GSM48_MT_CC_ALERTING;
1990
1991 /* facility */
1992 if (alerting->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001993 gsm48_encode_facility(msg, 0, &alerting->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001994 /* progress */
1995 if (alerting->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001996 gsm48_encode_progress(msg, 0, &alerting->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001997 /* user-user */
1998 if (alerting->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001999 gsm48_encode_useruser(msg, 0, &alerting->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002000
2001 new_cc_state(trans, GSM_CSTATE_CALL_DELIVERED);
2002
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002003 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002004}
2005
2006static int gsm48_cc_tx_progress(struct gsm_trans *trans, void *arg)
2007{
2008 struct gsm_mncc *progress = arg;
2009 struct msgb *msg = gsm48_msgb_alloc();
2010 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2011
Harald Welte4bfdfe72009-06-10 23:11:52 +08002012 gh->msg_type = GSM48_MT_CC_PROGRESS;
2013
2014 /* progress */
Harald Welte55c8f352010-03-07 23:40:35 +01002015 gsm48_encode_progress(msg, 1, &progress->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002016 /* user-user */
2017 if (progress->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002018 gsm48_encode_useruser(msg, 0, &progress->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002019
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002020 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002021}
2022
2023static int gsm48_cc_tx_connect(struct gsm_trans *trans, void *arg)
2024{
2025 struct gsm_mncc *connect = arg;
2026 struct msgb *msg = gsm48_msgb_alloc();
2027 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2028
Harald Welte4bfdfe72009-06-10 23:11:52 +08002029 gh->msg_type = GSM48_MT_CC_CONNECT;
2030
2031 gsm48_stop_cc_timer(trans);
2032 gsm48_start_cc_timer(trans, 0x313, GSM48_T313);
2033
2034 /* facility */
2035 if (connect->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002036 gsm48_encode_facility(msg, 0, &connect->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002037 /* progress */
2038 if (connect->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002039 gsm48_encode_progress(msg, 0, &connect->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002040 /* connected number */
2041 if (connect->fields & MNCC_F_CONNECTED)
Harald Welte55c8f352010-03-07 23:40:35 +01002042 gsm48_encode_connected(msg, &connect->connected);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002043 /* user-user */
2044 if (connect->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002045 gsm48_encode_useruser(msg, 0, &connect->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002046
2047 new_cc_state(trans, GSM_CSTATE_CONNECT_IND);
2048
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002049 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002050}
2051
2052static int gsm48_cc_rx_connect(struct gsm_trans *trans, struct msgb *msg)
2053{
2054 struct gsm48_hdr *gh = msgb_l3(msg);
2055 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2056 struct tlv_parsed tp;
2057 struct gsm_mncc connect;
2058
2059 gsm48_stop_cc_timer(trans);
2060
2061 memset(&connect, 0, sizeof(struct gsm_mncc));
2062 connect.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002063 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002064 /* use subscriber as connected party number */
2065 if (trans->subscr) {
2066 connect.fields |= MNCC_F_CONNECTED;
2067 strncpy(connect.connected.number, trans->subscr->extension,
2068 sizeof(connect.connected.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002069 strncpy(connect.imsi, trans->subscr->imsi,
2070 sizeof(connect.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002071 }
2072 /* facility */
2073 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2074 connect.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002075 gsm48_decode_facility(&connect.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002076 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2077 }
2078 /* user-user */
2079 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2080 connect.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002081 gsm48_decode_useruser(&connect.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002082 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2083 }
2084 /* ss-version */
2085 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2086 connect.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002087 gsm48_decode_ssversion(&connect.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002088 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2089 }
2090
2091 new_cc_state(trans, GSM_CSTATE_CONNECT_REQUEST);
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002092 osmo_counter_inc(trans->subscr->net->stats.call.mt_connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002093
Harald Welte596fed42009-07-23 19:06:52 +02002094 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_CNF, &connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002095}
2096
2097
2098static int gsm48_cc_rx_connect_ack(struct gsm_trans *trans, struct msgb *msg)
2099{
2100 struct gsm_mncc connect_ack;
2101
2102 gsm48_stop_cc_timer(trans);
2103
2104 new_cc_state(trans, GSM_CSTATE_ACTIVE);
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002105 osmo_counter_inc(trans->subscr->net->stats.call.mo_connect_ack);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002106
2107 memset(&connect_ack, 0, sizeof(struct gsm_mncc));
2108 connect_ack.callref = trans->callref;
Harald Weltea29e43a2010-12-24 16:06:33 +01002109
Harald Welte596fed42009-07-23 19:06:52 +02002110 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_COMPL_IND,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002111 &connect_ack);
2112}
2113
2114static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg)
2115{
2116 struct msgb *msg = gsm48_msgb_alloc();
2117 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2118
Harald Welte4bfdfe72009-06-10 23:11:52 +08002119 gh->msg_type = GSM48_MT_CC_CONNECT_ACK;
2120
2121 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2122
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002123 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002124}
2125
2126static int gsm48_cc_rx_disconnect(struct gsm_trans *trans, struct msgb *msg)
2127{
2128 struct gsm48_hdr *gh = msgb_l3(msg);
2129 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2130 struct tlv_parsed tp;
2131 struct gsm_mncc disc;
2132
2133 gsm48_stop_cc_timer(trans);
2134
2135 new_cc_state(trans, GSM_CSTATE_DISCONNECT_REQ);
2136
2137 memset(&disc, 0, sizeof(struct gsm_mncc));
2138 disc.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002139 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_CAUSE, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002140 /* cause */
2141 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2142 disc.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002143 gsm48_decode_cause(&disc.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002144 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2145 }
2146 /* facility */
2147 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2148 disc.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002149 gsm48_decode_facility(&disc.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002150 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2151 }
2152 /* user-user */
2153 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2154 disc.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002155 gsm48_decode_useruser(&disc.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002156 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2157 }
2158 /* ss-version */
2159 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2160 disc.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002161 gsm48_decode_ssversion(&disc.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002162 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2163 }
2164
Harald Welte596fed42009-07-23 19:06:52 +02002165 return mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &disc);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002166
2167}
2168
Harald Weltec66b71c2009-06-11 14:23:20 +08002169static struct gsm_mncc_cause default_cause = {
2170 .location = GSM48_CAUSE_LOC_PRN_S_LU,
2171 .coding = 0,
2172 .rec = 0,
2173 .rec_val = 0,
2174 .value = GSM48_CC_CAUSE_NORMAL_UNSPEC,
2175 .diag_len = 0,
2176 .diag = { 0 },
2177};
Harald Welte4bfdfe72009-06-10 23:11:52 +08002178
2179static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg)
2180{
2181 struct gsm_mncc *disc = arg;
2182 struct msgb *msg = gsm48_msgb_alloc();
2183 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2184
Harald Welte4bfdfe72009-06-10 23:11:52 +08002185 gh->msg_type = GSM48_MT_CC_DISCONNECT;
2186
2187 gsm48_stop_cc_timer(trans);
2188 gsm48_start_cc_timer(trans, 0x306, GSM48_T306);
2189
2190 /* cause */
2191 if (disc->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002192 gsm48_encode_cause(msg, 1, &disc->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002193 else
Harald Welte55c8f352010-03-07 23:40:35 +01002194 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002195
2196 /* facility */
2197 if (disc->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002198 gsm48_encode_facility(msg, 0, &disc->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002199 /* progress */
2200 if (disc->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002201 gsm48_encode_progress(msg, 0, &disc->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002202 /* user-user */
2203 if (disc->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002204 gsm48_encode_useruser(msg, 0, &disc->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002205
2206 /* store disconnect cause for T306 expiry */
Harald Weltedcaf5652009-07-23 18:56:43 +02002207 memcpy(&trans->cc.msg, disc, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002208
2209 new_cc_state(trans, GSM_CSTATE_DISCONNECT_IND);
2210
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002211 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002212}
2213
2214static int gsm48_cc_rx_release(struct gsm_trans *trans, struct msgb *msg)
2215{
2216 struct gsm48_hdr *gh = msgb_l3(msg);
2217 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2218 struct tlv_parsed tp;
2219 struct gsm_mncc rel;
2220 int rc;
2221
2222 gsm48_stop_cc_timer(trans);
2223
2224 memset(&rel, 0, sizeof(struct gsm_mncc));
2225 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002226 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002227 /* cause */
2228 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2229 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002230 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002231 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2232 }
2233 /* facility */
2234 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2235 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002236 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002237 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2238 }
2239 /* user-user */
2240 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2241 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002242 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002243 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2244 }
2245 /* ss-version */
2246 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2247 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002248 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002249 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2250 }
2251
Harald Weltedcaf5652009-07-23 18:56:43 +02002252 if (trans->cc.state == GSM_CSTATE_RELEASE_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002253 /* release collision 5.4.5 */
Harald Welte596fed42009-07-23 19:06:52 +02002254 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002255 } else {
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08002256 rc = gsm48_tx_simple(trans->conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02002257 GSM48_PDISC_CC | (trans->transaction_id << 4),
Harald Welte596fed42009-07-23 19:06:52 +02002258 GSM48_MT_CC_RELEASE_COMPL);
2259 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_IND, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002260 }
2261
2262 new_cc_state(trans, GSM_CSTATE_NULL);
2263
2264 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002265 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002266
2267 return rc;
2268}
2269
2270static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg)
2271{
2272 struct gsm_mncc *rel = arg;
2273 struct msgb *msg = gsm48_msgb_alloc();
2274 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2275
Harald Welte4bfdfe72009-06-10 23:11:52 +08002276 gh->msg_type = GSM48_MT_CC_RELEASE;
2277
2278 trans->callref = 0;
2279
2280 gsm48_stop_cc_timer(trans);
2281 gsm48_start_cc_timer(trans, 0x308, GSM48_T308);
2282
2283 /* cause */
2284 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002285 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002286 /* facility */
2287 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002288 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002289 /* user-user */
2290 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002291 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002292
Harald Weltedcaf5652009-07-23 18:56:43 +02002293 trans->cc.T308_second = 0;
2294 memcpy(&trans->cc.msg, rel, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002295
Harald Weltedcaf5652009-07-23 18:56:43 +02002296 if (trans->cc.state != GSM_CSTATE_RELEASE_REQ)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002297 new_cc_state(trans, GSM_CSTATE_RELEASE_REQ);
2298
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002299 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002300}
2301
2302static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg)
2303{
2304 struct gsm48_hdr *gh = msgb_l3(msg);
2305 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2306 struct tlv_parsed tp;
2307 struct gsm_mncc rel;
2308 int rc = 0;
2309
2310 gsm48_stop_cc_timer(trans);
2311
2312 memset(&rel, 0, sizeof(struct gsm_mncc));
2313 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002314 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002315 /* cause */
2316 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2317 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002318 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002319 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2320 }
2321 /* facility */
2322 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2323 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002324 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002325 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2326 }
2327 /* user-user */
2328 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2329 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002330 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002331 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2332 }
2333 /* ss-version */
2334 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2335 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002336 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002337 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2338 }
2339
2340 if (trans->callref) {
Harald Weltedcaf5652009-07-23 18:56:43 +02002341 switch (trans->cc.state) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002342 case GSM_CSTATE_CALL_PRESENT:
Harald Welte596fed42009-07-23 19:06:52 +02002343 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002344 MNCC_REJ_IND, &rel);
2345 break;
2346 case GSM_CSTATE_RELEASE_REQ:
Harald Welte596fed42009-07-23 19:06:52 +02002347 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002348 MNCC_REL_CNF, &rel);
2349 break;
2350 default:
Harald Welte596fed42009-07-23 19:06:52 +02002351 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002352 MNCC_REL_IND, &rel);
2353 }
2354 }
2355
2356 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002357 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002358
2359 return rc;
2360}
2361
2362static int gsm48_cc_tx_release_compl(struct gsm_trans *trans, void *arg)
2363{
2364 struct gsm_mncc *rel = arg;
2365 struct msgb *msg = gsm48_msgb_alloc();
2366 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Weltec7782de2010-12-21 19:31:41 +01002367 int ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002368
Harald Welte4bfdfe72009-06-10 23:11:52 +08002369 gh->msg_type = GSM48_MT_CC_RELEASE_COMPL;
2370
2371 trans->callref = 0;
2372
2373 gsm48_stop_cc_timer(trans);
2374
2375 /* cause */
2376 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002377 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002378 /* facility */
2379 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002380 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002381 /* user-user */
2382 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002383 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002384
Harald Weltec7782de2010-12-21 19:31:41 +01002385 ret = gsm48_conn_sendmsg(msg, trans->conn, trans);
2386
Harald Weltedcaf5652009-07-23 18:56:43 +02002387 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002388
Harald Weltec7782de2010-12-21 19:31:41 +01002389 return ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002390}
2391
2392static int gsm48_cc_rx_facility(struct gsm_trans *trans, struct msgb *msg)
2393{
2394 struct gsm48_hdr *gh = msgb_l3(msg);
2395 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2396 struct tlv_parsed tp;
2397 struct gsm_mncc fac;
2398
2399 memset(&fac, 0, sizeof(struct gsm_mncc));
2400 fac.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002401 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_FACILITY, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002402 /* facility */
2403 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2404 fac.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002405 gsm48_decode_facility(&fac.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002406 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2407 }
2408 /* ss-version */
2409 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2410 fac.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002411 gsm48_decode_ssversion(&fac.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002412 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2413 }
2414
Harald Welte596fed42009-07-23 19:06:52 +02002415 return mncc_recvmsg(trans->subscr->net, trans, MNCC_FACILITY_IND, &fac);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002416}
2417
2418static int gsm48_cc_tx_facility(struct gsm_trans *trans, void *arg)
2419{
2420 struct gsm_mncc *fac = arg;
2421 struct msgb *msg = gsm48_msgb_alloc();
2422 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2423
Harald Welte4bfdfe72009-06-10 23:11:52 +08002424 gh->msg_type = GSM48_MT_CC_FACILITY;
2425
2426 /* facility */
Harald Welte55c8f352010-03-07 23:40:35 +01002427 gsm48_encode_facility(msg, 1, &fac->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002428
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002429 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002430}
2431
2432static int gsm48_cc_rx_hold(struct gsm_trans *trans, struct msgb *msg)
2433{
2434 struct gsm_mncc hold;
2435
2436 memset(&hold, 0, sizeof(struct gsm_mncc));
2437 hold.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002438 return mncc_recvmsg(trans->subscr->net, trans, MNCC_HOLD_IND, &hold);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002439}
2440
2441static int gsm48_cc_tx_hold_ack(struct gsm_trans *trans, void *arg)
2442{
2443 struct msgb *msg = gsm48_msgb_alloc();
2444 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2445
Harald Welte4bfdfe72009-06-10 23:11:52 +08002446 gh->msg_type = GSM48_MT_CC_HOLD_ACK;
2447
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002448 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002449}
2450
2451static int gsm48_cc_tx_hold_rej(struct gsm_trans *trans, void *arg)
2452{
2453 struct gsm_mncc *hold_rej = arg;
2454 struct msgb *msg = gsm48_msgb_alloc();
2455 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2456
Harald Welte4bfdfe72009-06-10 23:11:52 +08002457 gh->msg_type = GSM48_MT_CC_HOLD_REJ;
2458
2459 /* cause */
2460 if (hold_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002461 gsm48_encode_cause(msg, 1, &hold_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002462 else
Harald Welte55c8f352010-03-07 23:40:35 +01002463 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002464
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002465 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002466}
2467
2468static int gsm48_cc_rx_retrieve(struct gsm_trans *trans, struct msgb *msg)
2469{
2470 struct gsm_mncc retrieve;
2471
2472 memset(&retrieve, 0, sizeof(struct gsm_mncc));
2473 retrieve.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002474 return mncc_recvmsg(trans->subscr->net, trans, MNCC_RETRIEVE_IND,
2475 &retrieve);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002476}
2477
2478static int gsm48_cc_tx_retrieve_ack(struct gsm_trans *trans, void *arg)
2479{
2480 struct msgb *msg = gsm48_msgb_alloc();
2481 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2482
Harald Welte4bfdfe72009-06-10 23:11:52 +08002483 gh->msg_type = GSM48_MT_CC_RETR_ACK;
2484
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002485 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002486}
2487
2488static int gsm48_cc_tx_retrieve_rej(struct gsm_trans *trans, void *arg)
2489{
2490 struct gsm_mncc *retrieve_rej = arg;
2491 struct msgb *msg = gsm48_msgb_alloc();
2492 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2493
Harald Welte4bfdfe72009-06-10 23:11:52 +08002494 gh->msg_type = GSM48_MT_CC_RETR_REJ;
2495
2496 /* cause */
2497 if (retrieve_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002498 gsm48_encode_cause(msg, 1, &retrieve_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002499 else
Harald Welte55c8f352010-03-07 23:40:35 +01002500 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002501
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002502 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002503}
2504
2505static int gsm48_cc_rx_start_dtmf(struct gsm_trans *trans, struct msgb *msg)
2506{
2507 struct gsm48_hdr *gh = msgb_l3(msg);
2508 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2509 struct tlv_parsed tp;
2510 struct gsm_mncc dtmf;
2511
2512 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2513 dtmf.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002514 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002515 /* keypad facility */
2516 if (TLVP_PRESENT(&tp, GSM48_IE_KPD_FACILITY)) {
2517 dtmf.fields |= MNCC_F_KEYPAD;
Harald Welte55c8f352010-03-07 23:40:35 +01002518 gsm48_decode_keypad(&dtmf.keypad,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002519 TLVP_VAL(&tp, GSM48_IE_KPD_FACILITY)-1);
2520 }
2521
Harald Welte596fed42009-07-23 19:06:52 +02002522 return mncc_recvmsg(trans->subscr->net, trans, MNCC_START_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002523}
2524
2525static int gsm48_cc_tx_start_dtmf_ack(struct gsm_trans *trans, void *arg)
2526{
2527 struct gsm_mncc *dtmf = arg;
2528 struct msgb *msg = gsm48_msgb_alloc();
2529 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2530
Harald Welte4bfdfe72009-06-10 23:11:52 +08002531 gh->msg_type = GSM48_MT_CC_START_DTMF_ACK;
2532
2533 /* keypad */
2534 if (dtmf->fields & MNCC_F_KEYPAD)
Harald Welte55c8f352010-03-07 23:40:35 +01002535 gsm48_encode_keypad(msg, dtmf->keypad);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002536
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002537 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002538}
2539
2540static int gsm48_cc_tx_start_dtmf_rej(struct gsm_trans *trans, void *arg)
2541{
2542 struct gsm_mncc *dtmf = arg;
2543 struct msgb *msg = gsm48_msgb_alloc();
2544 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2545
Harald Welte4bfdfe72009-06-10 23:11:52 +08002546 gh->msg_type = GSM48_MT_CC_START_DTMF_REJ;
2547
2548 /* cause */
2549 if (dtmf->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002550 gsm48_encode_cause(msg, 1, &dtmf->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002551 else
Harald Welte55c8f352010-03-07 23:40:35 +01002552 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002553
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002554 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002555}
2556
2557static int gsm48_cc_tx_stop_dtmf_ack(struct gsm_trans *trans, void *arg)
2558{
2559 struct msgb *msg = gsm48_msgb_alloc();
2560 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2561
Harald Welte4bfdfe72009-06-10 23:11:52 +08002562 gh->msg_type = GSM48_MT_CC_STOP_DTMF_ACK;
2563
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002564 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002565}
2566
2567static int gsm48_cc_rx_stop_dtmf(struct gsm_trans *trans, struct msgb *msg)
2568{
2569 struct gsm_mncc dtmf;
2570
2571 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2572 dtmf.callref = trans->callref;
2573
Harald Welte596fed42009-07-23 19:06:52 +02002574 return mncc_recvmsg(trans->subscr->net, trans, MNCC_STOP_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002575}
2576
2577static int gsm48_cc_rx_modify(struct gsm_trans *trans, struct msgb *msg)
2578{
2579 struct gsm48_hdr *gh = msgb_l3(msg);
2580 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2581 struct tlv_parsed tp;
2582 struct gsm_mncc modify;
2583
2584 memset(&modify, 0, sizeof(struct gsm_mncc));
2585 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002586 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002587 /* bearer capability */
2588 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2589 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002590 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002591 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2592 }
2593
2594 new_cc_state(trans, GSM_CSTATE_MO_ORIG_MODIFY);
2595
Harald Welte596fed42009-07-23 19:06:52 +02002596 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_IND, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002597}
2598
2599static int gsm48_cc_tx_modify(struct gsm_trans *trans, void *arg)
2600{
2601 struct gsm_mncc *modify = arg;
2602 struct msgb *msg = gsm48_msgb_alloc();
2603 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2604
Harald Welte4bfdfe72009-06-10 23:11:52 +08002605 gh->msg_type = GSM48_MT_CC_MODIFY;
2606
2607 gsm48_start_cc_timer(trans, 0x323, GSM48_T323);
2608
2609 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002610 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002611
2612 new_cc_state(trans, GSM_CSTATE_MO_TERM_MODIFY);
2613
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002614 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002615}
2616
2617static int gsm48_cc_rx_modify_complete(struct gsm_trans *trans, struct msgb *msg)
2618{
2619 struct gsm48_hdr *gh = msgb_l3(msg);
2620 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2621 struct tlv_parsed tp;
2622 struct gsm_mncc modify;
2623
2624 gsm48_stop_cc_timer(trans);
2625
2626 memset(&modify, 0, sizeof(struct gsm_mncc));
2627 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002628 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002629 /* bearer capability */
2630 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2631 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002632 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002633 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2634 }
2635
2636 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2637
Harald Welte596fed42009-07-23 19:06:52 +02002638 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_CNF, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002639}
2640
2641static int gsm48_cc_tx_modify_complete(struct gsm_trans *trans, void *arg)
2642{
2643 struct gsm_mncc *modify = arg;
2644 struct msgb *msg = gsm48_msgb_alloc();
2645 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2646
Harald Welte4bfdfe72009-06-10 23:11:52 +08002647 gh->msg_type = GSM48_MT_CC_MODIFY_COMPL;
2648
2649 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002650 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002651
2652 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2653
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002654 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002655}
2656
2657static int gsm48_cc_rx_modify_reject(struct gsm_trans *trans, struct msgb *msg)
2658{
2659 struct gsm48_hdr *gh = msgb_l3(msg);
2660 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2661 struct tlv_parsed tp;
2662 struct gsm_mncc modify;
2663
2664 gsm48_stop_cc_timer(trans);
2665
2666 memset(&modify, 0, sizeof(struct gsm_mncc));
2667 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002668 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, GSM48_IE_CAUSE);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002669 /* bearer capability */
2670 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2671 modify.fields |= GSM48_IE_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002672 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002673 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2674 }
2675 /* cause */
2676 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2677 modify.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002678 gsm48_decode_cause(&modify.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002679 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2680 }
2681
2682 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2683
Harald Welte596fed42009-07-23 19:06:52 +02002684 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_REJ, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002685}
2686
2687static int gsm48_cc_tx_modify_reject(struct gsm_trans *trans, void *arg)
2688{
2689 struct gsm_mncc *modify = arg;
2690 struct msgb *msg = gsm48_msgb_alloc();
2691 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2692
Harald Welte4bfdfe72009-06-10 23:11:52 +08002693 gh->msg_type = GSM48_MT_CC_MODIFY_REJECT;
2694
2695 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002696 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002697 /* cause */
Harald Welte55c8f352010-03-07 23:40:35 +01002698 gsm48_encode_cause(msg, 1, &modify->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002699
2700 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2701
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002702 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002703}
2704
2705static int gsm48_cc_tx_notify(struct gsm_trans *trans, void *arg)
2706{
2707 struct gsm_mncc *notify = arg;
2708 struct msgb *msg = gsm48_msgb_alloc();
2709 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2710
Harald Welte4bfdfe72009-06-10 23:11:52 +08002711 gh->msg_type = GSM48_MT_CC_NOTIFY;
2712
2713 /* notify */
Harald Welte55c8f352010-03-07 23:40:35 +01002714 gsm48_encode_notify(msg, notify->notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002715
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002716 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002717}
2718
2719static int gsm48_cc_rx_notify(struct gsm_trans *trans, struct msgb *msg)
2720{
2721 struct gsm48_hdr *gh = msgb_l3(msg);
2722 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2723// struct tlv_parsed tp;
2724 struct gsm_mncc notify;
2725
2726 memset(&notify, 0, sizeof(struct gsm_mncc));
2727 notify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002728// tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002729 if (payload_len >= 1)
Harald Welte55c8f352010-03-07 23:40:35 +01002730 gsm48_decode_notify(&notify.notify, gh->data);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002731
Harald Welte596fed42009-07-23 19:06:52 +02002732 return mncc_recvmsg(trans->subscr->net, trans, MNCC_NOTIFY_IND, &notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002733}
2734
2735static int gsm48_cc_tx_userinfo(struct gsm_trans *trans, void *arg)
2736{
2737 struct gsm_mncc *user = arg;
2738 struct msgb *msg = gsm48_msgb_alloc();
2739 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2740
Harald Welte4bfdfe72009-06-10 23:11:52 +08002741 gh->msg_type = GSM48_MT_CC_USER_INFO;
2742
2743 /* user-user */
2744 if (user->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002745 gsm48_encode_useruser(msg, 1, &user->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002746 /* more data */
2747 if (user->more)
Harald Welte55c8f352010-03-07 23:40:35 +01002748 gsm48_encode_more(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002749
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002750 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002751}
2752
2753static int gsm48_cc_rx_userinfo(struct gsm_trans *trans, struct msgb *msg)
2754{
2755 struct gsm48_hdr *gh = msgb_l3(msg);
2756 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2757 struct tlv_parsed tp;
2758 struct gsm_mncc user;
2759
2760 memset(&user, 0, sizeof(struct gsm_mncc));
2761 user.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002762 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_USER_USER, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002763 /* user-user */
2764 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2765 user.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002766 gsm48_decode_useruser(&user.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002767 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2768 }
2769 /* more data */
2770 if (TLVP_PRESENT(&tp, GSM48_IE_MORE_DATA))
2771 user.more = 1;
2772
Harald Welte596fed42009-07-23 19:06:52 +02002773 return mncc_recvmsg(trans->subscr->net, trans, MNCC_USERINFO_IND, &user);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002774}
2775
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02002776static int _gsm48_lchan_modify(struct gsm_trans *trans, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002777{
2778 struct gsm_mncc *mode = arg;
2779
Holger Hans Peter Freytherb549ddf2011-01-16 18:17:04 +01002780 return gsm0808_assign_req(trans->conn, mode->lchan_mode, 1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002781}
2782
2783static struct downstate {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02002784 uint32_t states;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002785 int type;
2786 int (*rout) (struct gsm_trans *trans, void *arg);
2787} downstatelist[] = {
2788 /* mobile originating call establishment */
2789 {SBIT(GSM_CSTATE_INITIATED), /* 5.2.1.2 */
2790 MNCC_CALL_PROC_REQ, gsm48_cc_tx_call_proc},
2791 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.2 | 5.2.1.5 */
2792 MNCC_ALERT_REQ, gsm48_cc_tx_alerting},
2793 {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 */
2794 MNCC_SETUP_RSP, gsm48_cc_tx_connect},
2795 {SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.4.2 */
2796 MNCC_PROGRESS_REQ, gsm48_cc_tx_progress},
2797 /* mobile terminating call establishment */
2798 {SBIT(GSM_CSTATE_NULL), /* 5.2.2.1 */
2799 MNCC_SETUP_REQ, gsm48_cc_tx_setup},
2800 {SBIT(GSM_CSTATE_CONNECT_REQUEST),
2801 MNCC_SETUP_COMPL_REQ, gsm48_cc_tx_connect_ack},
2802 /* signalling during call */
2803 {SBIT(GSM_CSTATE_ACTIVE),
2804 MNCC_NOTIFY_REQ, gsm48_cc_tx_notify},
2805 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ),
2806 MNCC_FACILITY_REQ, gsm48_cc_tx_facility},
2807 {ALL_STATES,
2808 MNCC_START_DTMF_RSP, gsm48_cc_tx_start_dtmf_ack},
2809 {ALL_STATES,
2810 MNCC_START_DTMF_REJ, gsm48_cc_tx_start_dtmf_rej},
2811 {ALL_STATES,
2812 MNCC_STOP_DTMF_RSP, gsm48_cc_tx_stop_dtmf_ack},
2813 {SBIT(GSM_CSTATE_ACTIVE),
2814 MNCC_HOLD_CNF, gsm48_cc_tx_hold_ack},
2815 {SBIT(GSM_CSTATE_ACTIVE),
2816 MNCC_HOLD_REJ, gsm48_cc_tx_hold_rej},
2817 {SBIT(GSM_CSTATE_ACTIVE),
2818 MNCC_RETRIEVE_CNF, gsm48_cc_tx_retrieve_ack},
2819 {SBIT(GSM_CSTATE_ACTIVE),
2820 MNCC_RETRIEVE_REJ, gsm48_cc_tx_retrieve_rej},
2821 {SBIT(GSM_CSTATE_ACTIVE),
2822 MNCC_MODIFY_REQ, gsm48_cc_tx_modify},
2823 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
2824 MNCC_MODIFY_RSP, gsm48_cc_tx_modify_complete},
2825 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
2826 MNCC_MODIFY_REJ, gsm48_cc_tx_modify_reject},
2827 {SBIT(GSM_CSTATE_ACTIVE),
2828 MNCC_USERINFO_REQ, gsm48_cc_tx_userinfo},
2829 /* clearing */
2830 {SBIT(GSM_CSTATE_INITIATED),
2831 MNCC_REJ_REQ, gsm48_cc_tx_release_compl},
2832 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_DISCONNECT_IND) - SBIT(GSM_CSTATE_RELEASE_REQ) - SBIT(GSM_CSTATE_DISCONNECT_REQ), /* 5.4.4 */
2833 MNCC_DISC_REQ, gsm48_cc_tx_disconnect},
2834 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
2835 MNCC_REL_REQ, gsm48_cc_tx_release},
2836 /* special */
2837 {ALL_STATES,
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02002838 MNCC_LCHAN_MODIFY, _gsm48_lchan_modify},
Harald Welte4bfdfe72009-06-10 23:11:52 +08002839};
2840
2841#define DOWNSLLEN \
2842 (sizeof(downstatelist) / sizeof(struct downstate))
2843
2844
Harald Welte76556372010-12-22 23:57:45 +01002845int mncc_tx_to_cc(struct gsm_network *net, int msg_type, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002846{
Harald Welte1a6f7982009-08-09 18:52:33 +02002847 int i, rc = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002848 struct gsm_trans *trans = NULL, *transt;
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002849 struct gsm_subscriber_connection *conn = NULL;
Holger Hans Peter Freytherb56a6bb2010-12-27 16:02:25 +01002850 struct gsm_bts *bts = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002851 struct gsm_mncc *data = arg, rel;
2852
Harald Welte04dc88f2010-12-22 21:45:05 +01002853 DEBUGP(DMNCC, "receive message %s\n", get_mncc_name(msg_type));
2854
Harald Welte4bfdfe72009-06-10 23:11:52 +08002855 /* handle special messages */
2856 switch(msg_type) {
2857 case MNCC_BRIDGE:
2858 return tch_bridge(net, arg);
2859 case MNCC_FRAME_DROP:
Harald Welteda7ab742009-12-19 22:23:05 +01002860 return tch_recv_mncc(net, data->callref, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002861 case MNCC_FRAME_RECV:
Harald Welteda7ab742009-12-19 22:23:05 +01002862 return tch_recv_mncc(net, data->callref, 1);
2863 case GSM_TCHF_FRAME:
2864 /* Find callref */
2865 trans = trans_find_by_callref(net, data->callref);
Harald Welte04dc88f2010-12-22 21:45:05 +01002866 if (!trans) {
2867 LOGP(DMNCC, LOGL_ERROR, "TCH frame for non-existing trans\n");
Harald Welteda7ab742009-12-19 22:23:05 +01002868 return -EIO;
Harald Welte04dc88f2010-12-22 21:45:05 +01002869 }
2870 if (!trans->conn) {
2871 LOGP(DMNCC, LOGL_NOTICE, "TCH frame for trans without conn\n");
Harald Welteda7ab742009-12-19 22:23:05 +01002872 return 0;
Harald Welte04dc88f2010-12-22 21:45:05 +01002873 }
2874 if (trans->conn->lchan->type != GSM_LCHAN_TCH_F) {
2875 /* This should be LOGL_ERROR or NOTICE, but
2876 * unfortuantely it happens for a couple of frames at
2877 * the beginning of every RTP connection */
2878 LOGP(DMNCC, LOGL_DEBUG, "TCH frame for lchan != TCH_F\n");
Harald Welteda7ab742009-12-19 22:23:05 +01002879 return 0;
Harald Welte04dc88f2010-12-22 21:45:05 +01002880 }
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002881 bts = trans->conn->lchan->ts->trx->bts;
Harald Welteda7ab742009-12-19 22:23:05 +01002882 switch (bts->type) {
2883 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +02002884 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Welte04dc88f2010-12-22 21:45:05 +01002885 if (!trans->conn->lchan->abis_ip.rtp_socket) {
Harald Welte91c59c82010-12-24 12:40:21 +01002886 DEBUGP(DMNCC, "TCH frame to lchan without RTP connection\n");
Harald Welteda7ab742009-12-19 22:23:05 +01002887 return 0;
Harald Welte04dc88f2010-12-22 21:45:05 +01002888 }
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002889 return rtp_send_frame(trans->conn->lchan->abis_ip.rtp_socket, arg);
Harald Welteda7ab742009-12-19 22:23:05 +01002890 case GSM_BTS_TYPE_BS11:
Harald Weltec76fb5d2011-03-20 06:27:31 -03002891 case GSM_BTS_TYPE_RBS2000:
Harald Welte10456972011-08-05 20:11:18 +02002892 case GSM_BTS_TYPE_NOKIA_SITE:
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002893 return trau_send_frame(trans->conn->lchan, arg);
Harald Welteda7ab742009-12-19 22:23:05 +01002894 default:
Harald Weltee5215b52011-08-09 21:53:20 +02002895 LOGP(DCC, LOGL_ERROR, "Unknown BTS type %u\n", bts->type);
Harald Welteda7ab742009-12-19 22:23:05 +01002896 }
2897 return -EINVAL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002898 }
2899
2900 memset(&rel, 0, sizeof(struct gsm_mncc));
2901 rel.callref = data->callref;
2902
2903 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02002904 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002905
2906 /* Callref unknown */
2907 if (!trans) {
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01002908 struct gsm_subscriber *subscr;
2909
Harald Welte4a3464c2009-07-04 10:11:24 +02002910 if (msg_type != MNCC_SETUP_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002911 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
2912 "Received '%s' from MNCC with "
2913 "unknown callref %d\n", data->called.number,
2914 get_mncc_name(msg_type), data->callref);
2915 /* Invalid call reference */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002916 return mncc_release_ind(net, NULL, data->callref,
2917 GSM48_CAUSE_LOC_PRN_S_LU,
2918 GSM48_CC_CAUSE_INVAL_TRANS_ID);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002919 }
Andreas Eversbergc079be42009-06-15 23:22:09 +02002920 if (!data->called.number[0] && !data->imsi[0]) {
2921 DEBUGP(DCC, "(bts - trx - ts - ti) "
2922 "Received '%s' from MNCC with "
2923 "no number or IMSI\n", get_mncc_name(msg_type));
2924 /* Invalid number */
2925 return mncc_release_ind(net, NULL, data->callref,
2926 GSM48_CAUSE_LOC_PRN_S_LU,
2927 GSM48_CC_CAUSE_INV_NR_FORMAT);
2928 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08002929 /* New transaction due to setup, find subscriber */
Andreas Eversbergc079be42009-06-15 23:22:09 +02002930 if (data->called.number[0])
Harald Welte9176bd42009-07-23 18:46:00 +02002931 subscr = subscr_get_by_extension(net,
2932 data->called.number);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002933 else
Harald Welte9176bd42009-07-23 18:46:00 +02002934 subscr = subscr_get_by_imsi(net, data->imsi);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002935 /* If subscriber is not found */
2936 if (!subscr) {
2937 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
2938 "Received '%s' from MNCC with "
2939 "unknown subscriber %s\n", data->called.number,
2940 get_mncc_name(msg_type), data->called.number);
2941 /* Unknown subscriber */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002942 return mncc_release_ind(net, NULL, data->callref,
2943 GSM48_CAUSE_LOC_PRN_S_LU,
2944 GSM48_CC_CAUSE_UNASSIGNED_NR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002945 }
2946 /* If subscriber is not "attached" */
2947 if (!subscr->lac) {
2948 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
2949 "Received '%s' from MNCC with "
2950 "detached subscriber %s\n", data->called.number,
2951 get_mncc_name(msg_type), data->called.number);
2952 subscr_put(subscr);
2953 /* Temporarily out of order */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002954 return mncc_release_ind(net, NULL, data->callref,
2955 GSM48_CAUSE_LOC_PRN_S_LU,
2956 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002957 }
2958 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02002959 trans = trans_alloc(subscr, GSM48_PDISC_CC, 0xff, data->callref);
2960 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002961 DEBUGP(DCC, "No memory for trans.\n");
2962 subscr_put(subscr);
2963 /* Ressource unavailable */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002964 mncc_release_ind(net, NULL, data->callref,
2965 GSM48_CAUSE_LOC_PRN_S_LU,
2966 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002967 return -ENOMEM;
2968 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08002969 /* Find lchan */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002970 conn = connection_for_subscr(subscr);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01002971
Harald Welte4bfdfe72009-06-10 23:11:52 +08002972 /* If subscriber has no lchan */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002973 if (!conn) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002974 /* find transaction with this subscriber already paging */
2975 llist_for_each_entry(transt, &net->trans_list, entry) {
2976 /* Transaction of our lchan? */
2977 if (transt == trans ||
2978 transt->subscr != subscr)
2979 continue;
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01002980 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08002981 "Received '%s' from MNCC with "
2982 "unallocated channel, paging already "
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01002983 "started for lac %d.\n",
Harald Welte4bfdfe72009-06-10 23:11:52 +08002984 data->called.number,
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01002985 get_mncc_name(msg_type), subscr->lac);
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01002986 subscr_put(subscr);
2987 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002988 return 0;
2989 }
2990 /* store setup informations until paging was successfull */
Harald Weltedcaf5652009-07-23 18:56:43 +02002991 memcpy(&trans->cc.msg, data, sizeof(struct gsm_mncc));
Sylvain Munaut567c8dc2010-12-01 22:17:36 +01002992
2993 /* Get a channel */
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01002994 trans->paging_request = talloc_zero(subscr->net, struct gsm_network*);
2995 if (!trans->paging_request) {
2996 LOGP(DCC, LOGL_ERROR, "Failed to allocate paging token.\n");
2997 subscr_put(subscr);
2998 trans_free(trans);
2999 return 0;
3000 }
3001
3002 *trans->paging_request = subscr->net;
3003 subscr_get_channel(subscr, RSL_CHANNEED_TCH_F, setup_trig_pag_evt, trans->paging_request);
Sylvain Munaut567c8dc2010-12-01 22:17:36 +01003004
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003005 subscr_put(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003006 return 0;
3007 }
3008 /* Assign lchan */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003009 trans->conn = conn;
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003010 subscr_put(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003011 }
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01003012
3013 if (trans->conn)
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003014 conn = trans->conn;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003015
3016 /* if paging did not respond yet */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003017 if (!conn) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003018 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003019 "Received '%s' from MNCC in paging state\n",
Harald Welte4bfdfe72009-06-10 23:11:52 +08003020 (trans->subscr)?(trans->subscr->extension):"-",
3021 get_mncc_name(msg_type));
Harald Weltec66b71c2009-06-11 14:23:20 +08003022 mncc_set_cause(&rel, GSM48_CAUSE_LOC_PRN_S_LU,
3023 GSM48_CC_CAUSE_NORM_CALL_CLEAR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003024 if (msg_type == MNCC_REL_REQ)
3025 rc = mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
3026 else
3027 rc = mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
3028 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02003029 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003030 return rc;
3031 }
3032
3033 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x sub %s) "
3034 "Received '%s' from MNCC in state %d (%s)\n",
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003035 conn->bts->nr, conn->lchan->ts->trx->nr, conn->lchan->ts->nr,
Harald Welte4bfdfe72009-06-10 23:11:52 +08003036 trans->transaction_id,
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01003037 (trans->conn->subscr)?(trans->conn->subscr->extension):"-",
Harald Weltedcaf5652009-07-23 18:56:43 +02003038 get_mncc_name(msg_type), trans->cc.state,
Harald Weltee95daf12010-03-25 12:13:02 +08003039 gsm48_cc_state_name(trans->cc.state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08003040
3041 /* Find function for current state and message */
3042 for (i = 0; i < DOWNSLLEN; i++)
3043 if ((msg_type == downstatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003044 && ((1 << trans->cc.state) & downstatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003045 break;
3046 if (i == DOWNSLLEN) {
3047 DEBUGP(DCC, "Message unhandled at this state.\n");
3048 return 0;
3049 }
3050
3051 rc = downstatelist[i].rout(trans, arg);
3052
3053 return rc;
3054}
3055
3056
3057static struct datastate {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02003058 uint32_t states;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003059 int type;
3060 int (*rout) (struct gsm_trans *trans, struct msgb *msg);
3061} datastatelist[] = {
3062 /* mobile originating call establishment */
3063 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3064 GSM48_MT_CC_SETUP, gsm48_cc_rx_setup},
3065 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3066 GSM48_MT_CC_EMERG_SETUP, gsm48_cc_rx_setup},
3067 {SBIT(GSM_CSTATE_CONNECT_IND), /* 5.2.1.2 */
3068 GSM48_MT_CC_CONNECT_ACK, gsm48_cc_rx_connect_ack},
3069 /* mobile terminating call establishment */
3070 {SBIT(GSM_CSTATE_CALL_PRESENT), /* 5.2.2.3.2 */
3071 GSM48_MT_CC_CALL_CONF, gsm48_cc_rx_call_conf},
3072 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF), /* ???? | 5.2.2.3.2 */
3073 GSM48_MT_CC_ALERTING, gsm48_cc_rx_alerting},
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003074 {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 +08003075 GSM48_MT_CC_CONNECT, gsm48_cc_rx_connect},
3076 /* signalling during call */
3077 {ALL_STATES - SBIT(GSM_CSTATE_NULL),
3078 GSM48_MT_CC_FACILITY, gsm48_cc_rx_facility},
3079 {SBIT(GSM_CSTATE_ACTIVE),
3080 GSM48_MT_CC_NOTIFY, gsm48_cc_rx_notify},
3081 {ALL_STATES,
3082 GSM48_MT_CC_START_DTMF, gsm48_cc_rx_start_dtmf},
3083 {ALL_STATES,
3084 GSM48_MT_CC_STOP_DTMF, gsm48_cc_rx_stop_dtmf},
3085 {ALL_STATES,
3086 GSM48_MT_CC_STATUS_ENQ, gsm48_cc_rx_status_enq},
3087 {SBIT(GSM_CSTATE_ACTIVE),
3088 GSM48_MT_CC_HOLD, gsm48_cc_rx_hold},
3089 {SBIT(GSM_CSTATE_ACTIVE),
3090 GSM48_MT_CC_RETR, gsm48_cc_rx_retrieve},
3091 {SBIT(GSM_CSTATE_ACTIVE),
3092 GSM48_MT_CC_MODIFY, gsm48_cc_rx_modify},
3093 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3094 GSM48_MT_CC_MODIFY_COMPL, gsm48_cc_rx_modify_complete},
3095 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3096 GSM48_MT_CC_MODIFY_REJECT, gsm48_cc_rx_modify_reject},
3097 {SBIT(GSM_CSTATE_ACTIVE),
3098 GSM48_MT_CC_USER_INFO, gsm48_cc_rx_userinfo},
3099 /* clearing */
3100 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3101 GSM48_MT_CC_DISCONNECT, gsm48_cc_rx_disconnect},
3102 {ALL_STATES - SBIT(GSM_CSTATE_NULL), /* 5.4.4.1.2.2 */
3103 GSM48_MT_CC_RELEASE, gsm48_cc_rx_release},
3104 {ALL_STATES, /* 5.4.3.4 */
3105 GSM48_MT_CC_RELEASE_COMPL, gsm48_cc_rx_release_compl},
3106};
3107
3108#define DATASLLEN \
3109 (sizeof(datastatelist) / sizeof(struct datastate))
3110
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003111static int gsm0408_rcv_cc(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4bc90a12008-12-27 16:32:52 +00003112{
3113 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02003114 uint8_t msg_type = gh->msg_type & 0xbf;
3115 uint8_t transaction_id = ((gh->proto_discr & 0xf0) ^ 0x80) >> 4; /* flip */
Harald Weltedcaf5652009-07-23 18:56:43 +02003116 struct gsm_trans *trans = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003117 int i, rc = 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00003118
Harald Welte4bfdfe72009-06-10 23:11:52 +08003119 if (msg_type & 0x80) {
3120 DEBUGP(DCC, "MSG 0x%2x not defined for PD error\n", msg_type);
3121 return -EINVAL;
Harald Welte4bc90a12008-12-27 16:32:52 +00003122 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003123
Harald Welte4bfdfe72009-06-10 23:11:52 +08003124 /* Find transaction */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003125 trans = trans_find_by_id(conn->subscr, GSM48_PDISC_CC, transaction_id);
Harald Weltedcaf5652009-07-23 18:56:43 +02003126
Harald Welte6f5aee02009-07-23 21:21:14 +02003127 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003128 "Received '%s' from MS in state %d (%s)\n",
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003129 conn->bts->nr, conn->lchan->ts->trx->nr, conn->lchan->ts->nr,
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003130 transaction_id, (conn->subscr)?(conn->subscr->extension):"-",
Harald Weltee95daf12010-03-25 12:13:02 +08003131 gsm48_cc_msg_name(msg_type), trans?(trans->cc.state):0,
3132 gsm48_cc_state_name(trans?(trans->cc.state):0));
Harald Welte4bfdfe72009-06-10 23:11:52 +08003133
3134 /* Create transaction */
3135 if (!trans) {
Harald Welte6f5aee02009-07-23 21:21:14 +02003136 DEBUGP(DCC, "Unknown transaction ID %x, "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003137 "creating new trans.\n", transaction_id);
3138 /* Create transaction */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003139 trans = trans_alloc(conn->subscr, GSM48_PDISC_CC,
Harald Weltedcaf5652009-07-23 18:56:43 +02003140 transaction_id, new_callref++);
3141 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003142 DEBUGP(DCC, "No memory for trans.\n");
Holger Hans Peter Freytherb549ddf2011-01-16 18:17:04 +01003143 rc = gsm48_tx_simple(conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02003144 GSM48_PDISC_CC | (transaction_id << 4),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003145 GSM48_MT_CC_RELEASE_COMPL);
3146 return -ENOMEM;
3147 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003148 /* Assign transaction */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003149 trans->conn = conn;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003150 }
3151
3152 /* find function for current state and message */
3153 for (i = 0; i < DATASLLEN; i++)
3154 if ((msg_type == datastatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003155 && ((1 << trans->cc.state) & datastatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003156 break;
3157 if (i == DATASLLEN) {
3158 DEBUGP(DCC, "Message unhandled at this state.\n");
3159 return 0;
3160 }
3161
3162 rc = datastatelist[i].rout(trans, msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00003163
3164 return rc;
3165}
3166
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003167/* Create a dummy to wait five seconds */
3168static void release_anchor(struct gsm_subscriber_connection *conn)
3169{
3170 if (!conn->anch_operation)
3171 return;
3172
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02003173 osmo_timer_del(&conn->anch_operation->timeout);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003174 talloc_free(conn->anch_operation);
3175 conn->anch_operation = NULL;
3176}
3177
3178static void anchor_timeout(void *_data)
3179{
3180 struct gsm_subscriber_connection *con = _data;
3181
3182 release_anchor(con);
3183 msc_release_connection(con);
3184}
3185
3186int gsm0408_new_conn(struct gsm_subscriber_connection *conn)
3187{
3188 conn->anch_operation = talloc_zero(conn, struct gsm_anchor_operation);
3189 if (!conn->anch_operation)
3190 return -1;
3191
3192 conn->anch_operation->timeout.data = conn;
3193 conn->anch_operation->timeout.cb = anchor_timeout;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02003194 osmo_timer_schedule(&conn->anch_operation->timeout, 5, 0);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003195 return 0;
3196}
3197
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +08003198/* here we get data from the BSC level... */
3199int gsm0408_dispatch(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00003200{
3201 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +02003202 uint8_t pdisc = gh->proto_discr & 0x0f;
Harald Welte8470bf22008-12-25 23:28:35 +00003203 int rc = 0;
Harald Welte51008772009-12-29 11:49:12 +01003204
Holger Hans Peter Freyther758f4df2010-06-21 10:34:03 +08003205 if (silent_call_reroute(conn, msg))
3206 return silent_call_rx(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003207
3208 switch (pdisc) {
3209 case GSM48_PDISC_CC:
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003210 release_anchor(conn);
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003211 rc = gsm0408_rcv_cc(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003212 break;
3213 case GSM48_PDISC_MM:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003214 rc = gsm0408_rcv_mm(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003215 break;
3216 case GSM48_PDISC_RR:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003217 rc = gsm0408_rcv_rr(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003218 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00003219 case GSM48_PDISC_SMS:
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003220 release_anchor(conn);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +08003221 rc = gsm0411_rcv_sms(conn, msg);
Harald Weltebcae43f2008-12-27 21:45:37 +00003222 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003223 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00003224 case GSM48_PDISC_SM_GPRS:
Harald Welte5d24ba12009-12-24 12:13:17 +01003225 LOGP(DRLL, LOGL_NOTICE, "Unimplemented "
3226 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Harald Welte52b1f982008-12-23 20:25:15 +00003227 break;
Harald Welte6eafe912009-10-16 08:32:58 +02003228 case GSM48_PDISC_NC_SS:
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003229 release_anchor(conn);
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +08003230 rc = handle_rcv_ussd(conn, msg);
Harald Welte6eafe912009-10-16 08:32:58 +02003231 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003232 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01003233 LOGP(DRLL, LOGL_NOTICE, "Unknown "
3234 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Harald Welte52b1f982008-12-23 20:25:15 +00003235 break;
3236 }
3237
3238 return rc;
3239}
Harald Welte8470bf22008-12-25 23:28:35 +00003240
Harald Welte805f6442009-07-28 18:25:29 +02003241/*
3242 * This will be ran by the linker when loading the DSO. We use it to
3243 * do system initialization, e.g. registration of signal handlers.
3244 */
3245static __attribute__((constructor)) void on_dso_load_0408(void)
3246{
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +02003247 osmo_signal_register_handler(SS_HO, handle_ho_signal, NULL);
3248 osmo_signal_register_handler(SS_ABISIP, handle_abisip_signal, NULL);
Harald Welte805f6442009-07-28 18:25:29 +02003249}