blob: ddda19b75355ee574478a9fe7b03cad635c86df2 [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
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (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
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29#include <errno.h>
Harald Weltedb253af2008-12-30 17:56:55 +000030#include <time.h>
Harald Welte4b634542008-12-27 01:55:51 +000031#include <netinet/in.h>
Harald Welte52b1f982008-12-23 20:25:15 +000032
Sylvain Munaut30a15382009-12-24 00:27:26 +010033#include <openbsc/auth.h>
Harald Welte75a983f2008-12-27 21:34:06 +000034#include <openbsc/db.h>
Harald Welte8470bf22008-12-25 23:28:35 +000035#include <openbsc/debug.h>
36#include <openbsc/gsm_data.h>
37#include <openbsc/gsm_subscriber.h>
Daniel Willmann8b3390e2008-12-28 00:31:09 +000038#include <openbsc/gsm_04_11.h>
Harald Welte8470bf22008-12-25 23:28:35 +000039#include <openbsc/gsm_04_08.h>
Holger Hans Peter Freythere0009f12010-08-12 01:41:57 +080040#include <openbsc/gsm_04_80.h>
Harald Welte8470bf22008-12-25 23:28:35 +000041#include <openbsc/abis_rsl.h>
Holger Freytherca362a62009-01-04 21:05:01 +000042#include <openbsc/chan_alloc.h>
Harald Welte0b4c34e2009-02-09 17:54:43 +000043#include <openbsc/paging.h>
Holger Freyther053e09d2009-02-14 22:51:06 +000044#include <openbsc/signal.h>
Harald Welte45b407a2009-05-23 15:51:12 +000045#include <openbsc/trau_frame.h>
Harald Welte11fa29c2009-02-19 17:24:39 +000046#include <openbsc/trau_mux.h>
Harald Welte805f6442009-07-28 18:25:29 +020047#include <openbsc/rtp_proxy.h>
Harald Weltedcaf5652009-07-23 18:56:43 +020048#include <openbsc/transaction.h>
Harald Welte6eafe912009-10-16 08:32:58 +020049#include <openbsc/ussd.h>
Harald Welte51008772009-12-29 11:49:12 +010050#include <openbsc/silent_call.h>
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +080051#include <openbsc/bsc_api.h>
Holger Hans Peter Freyther88519ea2010-06-30 12:44:07 +080052#include <openbsc/osmo_msc.h>
Holger Hans Peter Freyther841c2002010-09-30 18:52:23 +080053#include <osmocore/bitvec.h>
54
55#include <osmocore/gsm48.h>
Holger Hans Peter Freyther12eb9b72010-09-30 18:53:47 +080056#include <osmocore/gsm0480.h>
Holger Hans Peter Freyther841c2002010-09-30 18:52:23 +080057#include <osmocore/gsm_utils.h>
58#include <osmocore/msgb.h>
59#include <osmocore/talloc.h>
60#include <osmocore/tlv.h>
Harald Welte52b1f982008-12-23 20:25:15 +000061
Harald Welte (local)d19e58b2009-08-15 02:30:58 +020062void *tall_locop_ctx;
Sylvain Munaut30a15382009-12-24 00:27:26 +010063void *tall_authciphop_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +020064
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +080065int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn, u_int32_t tmsi);
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +080066static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Harald Welte65e74cc2008-12-29 01:55:35 +000067 u_int8_t pdisc, u_int8_t msg_type);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +010068static void schedule_reject(struct gsm_subscriber_connection *conn);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +080069static void release_anchor(struct gsm_subscriber_connection *conn);
Harald Welte65e74cc2008-12-29 01:55:35 +000070
Harald Welte52b1f982008-12-23 20:25:15 +000071struct gsm_lai {
72 u_int16_t mcc;
73 u_int16_t mnc;
74 u_int16_t lac;
75};
76
Harald Welte4bfdfe72009-06-10 23:11:52 +080077static u_int32_t new_callref = 0x80000001;
78
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +080079static int gsm48_conn_sendmsg(struct msgb *msg, struct gsm_subscriber_connection *conn,
80 struct gsm_trans *trans)
81{
82 struct gsm48_hdr *gh = (struct gsm48_hdr *) msg->data;
83
84 /* if we get passed a transaction reference, do some common
85 * work that the caller no longer has to do */
86 if (trans) {
87 gh->proto_discr = trans->protocol | (trans->transaction_id << 4);
88 msg->lchan = trans->conn->lchan;
89 }
90
91
92 if (msg->lchan) {
93 msg->trx = msg->lchan->ts->trx;
94 if ((gh->proto_discr & GSM48_PDISC_MASK) == GSM48_PDISC_CC)
95 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x) "
96 "Sending '%s' to MS.\n", msg->trx->bts->nr,
97 msg->trx->nr, msg->lchan->ts->nr,
98 gh->proto_discr & 0xf0,
99 gsm48_cc_msg_name(gh->msg_type));
100 else
101 DEBUGP(DCC, "(bts %d trx %d ts %d pd %02x) "
102 "Sending 0x%02x to MS.\n", msg->trx->bts->nr,
103 msg->trx->nr, msg->lchan->ts->nr,
104 gh->proto_discr, gh->msg_type);
105 }
106
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800107 return gsm0808_submit_dtap(conn, msg, 0);
108}
Sylvain Munaut30a15382009-12-24 00:27:26 +0100109
Holger Hans Peter Freythere0009f12010-08-12 01:41:57 +0800110int gsm48_cc_tx_notify_ss(struct gsm_trans *trans, const char *message)
111{
112 struct gsm48_hdr *gh;
113 struct msgb *ss_notify;
114
115 ss_notify = gsm0480_create_notifySS(message);
116 if (!ss_notify)
117 return -1;
118
119 gsm0480_wrap_invoke(ss_notify, GSM0480_OP_CODE_NOTIFY_SS, 0);
120 uint8_t *data = msgb_push(ss_notify, 1);
121 data[0] = ss_notify->len - 1;
122 gh = (struct gsm48_hdr *) msgb_push(ss_notify, sizeof(*gh));
123 gh->msg_type = GSM48_MT_CC_FACILITY;
124 return gsm48_conn_sendmsg(ss_notify, trans->conn, trans);
125}
126
Sylvain Munaut30a15382009-12-24 00:27:26 +0100127static void release_security_operation(struct gsm_subscriber_connection *conn)
128{
129 if (!conn->sec_operation)
130 return;
131
132 talloc_free(conn->sec_operation);
133 conn->sec_operation = NULL;
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800134 msc_release_connection(conn);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100135}
136
137static void allocate_security_operation(struct gsm_subscriber_connection *conn)
138{
Sylvain Munaut30a15382009-12-24 00:27:26 +0100139 conn->sec_operation = talloc_zero(tall_authciphop_ctx,
140 struct gsm_security_operation);
141}
142
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800143static int gsm48_secure_channel(struct gsm_subscriber_connection *conn, int key_seq,
144 gsm_cbfn *cb, void *cb_data)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100145{
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800146 struct gsm_network *net = conn->bts->network;
147 struct gsm_subscriber *subscr = conn->subscr;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100148 struct gsm_security_operation *op;
149 struct gsm_auth_tuple atuple;
150 int status = -1, rc;
151
152 /* Check if we _can_ enable encryption. Cases where we can't:
153 * - Encryption disabled in config
154 * - Channel already secured (nothing to do)
155 * - Subscriber equipment doesn't support configured encryption
156 */
157 if (!net->a5_encryption) {
158 status = GSM_SECURITY_NOAVAIL;
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800159 } else if (conn->lchan->encr.alg_id > RSL_ENC_ALG_A5(0)) {
Sylvain Munaut30a15382009-12-24 00:27:26 +0100160 DEBUGP(DMM, "Requesting to secure an already secure channel");
161 status = GSM_SECURITY_SUCCEEDED;
162 } else if (!ms_cm2_a5n_support(subscr->equipment.classmark2,
163 net->a5_encryption)) {
164 DEBUGP(DMM, "Subscriber equipment doesn't support requested encryption");
165 status = GSM_SECURITY_NOAVAIL;
166 }
167
168 /* If not done yet, try to get info for this user */
169 if (status < 0) {
170 rc = auth_get_tuple_for_subscr(&atuple, subscr, key_seq);
171 if (rc <= 0)
172 status = GSM_SECURITY_NOAVAIL;
173 }
174
175 /* Are we done yet ? */
176 if (status >= 0)
177 return cb ?
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800178 cb(GSM_HOOK_RR_SECURITY, status, NULL, conn, cb_data) :
Sylvain Munaut30a15382009-12-24 00:27:26 +0100179 0;
180
181 /* Start an operation (can't have more than one pending !!!) */
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800182 if (conn->sec_operation)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100183 return -EBUSY;
184
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800185 allocate_security_operation(conn);
186 op = conn->sec_operation;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100187 op->cb = cb;
188 op->cb_data = cb_data;
189 memcpy(&op->atuple, &atuple, sizeof(struct gsm_auth_tuple));
190
191 /* FIXME: Should start a timer for completion ... */
192
193 /* Then do whatever is needed ... */
194 if (rc == 1) {
195 /* Start authentication */
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800196 return gsm48_tx_mm_auth_req(conn, op->atuple.rand, op->atuple.key_seq);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100197 } else if (rc == 2) {
198 /* Start ciphering directly */
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800199 conn->lchan->encr.alg_id = RSL_ENC_ALG_A5(net->a5_encryption);
200 conn->lchan->encr.key_len = 8;
201 memcpy(conn->lchan->encr.key, op->atuple.kc, 8);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100202
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800203 return gsm48_send_rr_ciph_mode(conn->lchan, 0);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100204 }
205
206 return -EINVAL; /* not reached */
207}
208
Holger Freyther73487a22008-12-31 18:53:57 +0000209static int authorize_subscriber(struct gsm_loc_updating_operation *loc,
210 struct gsm_subscriber *subscriber)
Holger Freyther89824fc2008-12-30 16:18:18 +0000211{
212 if (!subscriber)
213 return 0;
214
Holger Freyther73487a22008-12-31 18:53:57 +0000215 /*
216 * Do not send accept yet as more information should arrive. Some
217 * phones will not send us the information and we will have to check
218 * what we want to do with that.
219 */
220 if (loc && (loc->waiting_for_imsi || loc->waiting_for_imei))
221 return 0;
222
Jan Luebbe06513f22009-08-12 12:48:00 +0200223 switch (subscriber->net->auth_policy) {
224 case GSM_AUTH_POLICY_CLOSED:
225 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200226 case GSM_AUTH_POLICY_TOKEN:
Harald Welte (local)ee9afe32009-08-13 20:44:23 +0200227 if (subscriber->authorized)
228 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200229 return (subscriber->flags & GSM_SUBSCRIBER_FIRST_CONTACT);
Jan Luebbe06513f22009-08-12 12:48:00 +0200230 case GSM_AUTH_POLICY_ACCEPT_ALL:
Holger Freyther89824fc2008-12-30 16:18:18 +0000231 return 1;
Jan Luebbe06513f22009-08-12 12:48:00 +0200232 default:
233 return 0;
234 }
Holger Freyther89824fc2008-12-30 16:18:18 +0000235}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000236
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100237static void release_loc_updating_req(struct gsm_subscriber_connection *conn)
Holger Freyther73487a22008-12-31 18:53:57 +0000238{
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100239 if (!conn->loc_operation)
Holger Freyther73487a22008-12-31 18:53:57 +0000240 return;
241
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +0800242 /* No need to keep the connection up */
243 release_anchor(conn);
244
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100245 bsc_del_timer(&conn->loc_operation->updating_timer);
246 talloc_free(conn->loc_operation);
247 conn->loc_operation = 0;
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800248 msc_release_connection(conn);
Holger Freyther73487a22008-12-31 18:53:57 +0000249}
250
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100251static void allocate_loc_updating_req(struct gsm_subscriber_connection *conn)
Holger Freyther73487a22008-12-31 18:53:57 +0000252{
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800253 if (conn->loc_operation)
254 LOGP(DMM, LOGL_ERROR, "Connection already had operation.\n");
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100255 release_loc_updating_req(conn);
Holger Freyther73487a22008-12-31 18:53:57 +0000256
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100257 conn->loc_operation = talloc_zero(tall_locop_ctx,
Harald Welte470ec292009-06-26 20:25:23 +0200258 struct gsm_loc_updating_operation);
Holger Freyther73487a22008-12-31 18:53:57 +0000259}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000260
Sylvain Munaut267fba02009-12-24 00:28:01 +0100261static int _gsm0408_authorize_sec_cb(unsigned int hooknum, unsigned int event,
262 struct msgb *msg, void *data, void *param)
263{
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800264 struct gsm_subscriber_connection *conn = data;
Sylvain Munaut267fba02009-12-24 00:28:01 +0100265 int rc = 0;
266
267 switch (event) {
268 case GSM_SECURITY_AUTH_FAILED:
269 release_loc_updating_req(conn);
270 break;
271
272 case GSM_SECURITY_NOAVAIL:
273 case GSM_SECURITY_SUCCEEDED:
274 /* We're all good */
275 db_subscriber_alloc_tmsi(conn->subscr);
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800276 rc = gsm0408_loc_upd_acc(conn, conn->subscr->tmsi);
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800277 if (conn->bts->network->send_mm_info) {
Sylvain Munaut267fba02009-12-24 00:28:01 +0100278 /* send MM INFO with network name */
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800279 rc = gsm48_tx_mm_info(conn);
Sylvain Munaut267fba02009-12-24 00:28:01 +0100280 }
281
282 /* call subscr_update after putting the loc_upd_acc
283 * in the transmit queue, since S_SUBSCR_ATTACHED might
284 * trigger further action like SMS delivery */
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800285 subscr_update(conn->subscr, conn->bts,
Sylvain Munaut267fba02009-12-24 00:28:01 +0100286 GSM_SUBSCRIBER_UPDATE_ATTACHED);
287
288 /* try to close channel ASAP */
Holger Hans Peter Freyther01288432010-06-16 12:52:28 +0800289 release_loc_updating_req(conn);
Sylvain Munaut267fba02009-12-24 00:28:01 +0100290 break;
291
292 default:
293 rc = -EINVAL;
294 };
295
296 return rc;
297}
298
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100299static int gsm0408_authorize(struct gsm_subscriber_connection *conn, struct msgb *msg)
Holger Freytherd51524f2009-06-09 08:27:07 +0000300{
Sylvain Munaut267fba02009-12-24 00:28:01 +0100301 if (authorize_subscriber(conn->loc_operation, conn->subscr))
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800302 return gsm48_secure_channel(conn,
Sylvain Munaut267fba02009-12-24 00:28:01 +0100303 conn->loc_operation->key_seq,
304 _gsm0408_authorize_sec_cb, NULL);
Holger Freytherd51524f2009-06-09 08:27:07 +0000305 return 0;
306}
307
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +0800308void gsm0408_clear_request(struct gsm_subscriber_connection *conn, uint32_t cause)
Holger Freyther7c19f742009-06-06 13:54:35 +0000309{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800310 struct gsm_trans *trans, *temp;
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800311
312 /* avoid someone issuing a clear */
313 conn->in_release = 1;
314
Holger Freyther7c19f742009-06-06 13:54:35 +0000315 /*
316 * Cancel any outstanding location updating request
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800317 * operation taking place on the subscriber connection.
Holger Freyther7c19f742009-06-06 13:54:35 +0000318 */
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800319 release_loc_updating_req(conn);
320 release_security_operation(conn);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +0800321 release_anchor(conn);
Holger Freyther7c19f742009-06-06 13:54:35 +0000322
Harald Welte4bfdfe72009-06-10 23:11:52 +0800323 /* Free all transactions that are associated with the released lchan */
Harald Weltedcaf5652009-07-23 18:56:43 +0200324 /* FIXME: this is not neccessarily the right thing to do, we should
325 * only set trans->lchan to NULL and wait for another lchan to be
326 * established to the same MM entity (phone/subscriber) */
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800327 llist_for_each_entry_safe(trans, temp, &conn->bts->network->trans_list, entry) {
328 if (trans->conn == conn)
Harald Weltedcaf5652009-07-23 18:56:43 +0200329 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800330 }
Holger Hans Peter Freytheraaa40b82010-09-16 20:48:15 +0800331
332 subscr_con_free(conn);
Holger Freyther7c19f742009-06-06 13:54:35 +0000333}
334
Holger Freyther429e7762008-12-30 13:28:30 +0000335/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800336int gsm0408_loc_upd_rej(struct gsm_subscriber_connection *conn, u_int8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000337{
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800338 struct gsm_bts *bts = conn->bts;
Holger Hans Peter Freyther230a4d82010-06-15 19:40:05 +0800339 struct msgb *msg;
340
341 counter_inc(bts->network->stats.loc_upd_resp.reject);
342
343 msg = gsm48_create_loc_upd_rej(cause);
344 if (!msg) {
345 LOGP(DMM, LOGL_ERROR, "Failed to create msg for LOCATION UPDATING REJECT.\n");
346 return -1;
347 }
Harald Welte52b1f982008-12-23 20:25:15 +0000348
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800349 msg->lchan = conn->lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000350
Harald Welte (local)198d5ad2009-12-26 22:15:28 +0100351 LOGP(DMM, LOGL_INFO, "Subscriber %s: LOCATION UPDATING REJECT "
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100352 "LAC=%u BTS=%u\n", conn->subscr ?
353 subscr_name(conn->subscr) : "unknown",
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800354 bts->location_area_code, bts->nr);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100355
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800356 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000357}
358
359/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800360int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn, u_int32_t tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000361{
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800362 struct gsm_bts *bts = conn->bts;
Harald Welte8470bf22008-12-25 23:28:35 +0000363 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000364 struct gsm48_hdr *gh;
365 struct gsm48_loc_area_id *lai;
366 u_int8_t *mid;
367
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800368 msg->lchan = conn->lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000369
370 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
371 gh->proto_discr = GSM48_PDISC_MM;
372 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
373
374 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Harald Welteafedeab2010-03-04 10:55:40 +0100375 gsm48_generate_lai(lai, bts->network->country_code,
Harald Welte52b1f982008-12-23 20:25:15 +0000376 bts->network->network_code, bts->location_area_code);
377
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +0200378 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
Holger Hans Peter Freyther5d0e56f2009-08-20 08:41:24 +0200379 gsm48_generate_mid_from_tmsi(mid, tmsi);
Harald Welte52b1f982008-12-23 20:25:15 +0000380
381 DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n");
382
Harald Welteffa55a42009-12-22 19:07:32 +0100383 counter_inc(bts->network->stats.loc_upd_resp.accept);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100384
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800385 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000386}
387
Harald Weltebf5e8df2009-02-03 12:59:45 +0000388/* Transmit Chapter 9.2.10 Identity Request */
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800389static int mm_tx_identity_req(struct gsm_subscriber_connection *conn, u_int8_t id_type)
Harald Welte231ad4f2008-12-27 11:15:38 +0000390{
391 struct msgb *msg = gsm48_msgb_alloc();
392 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000393
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800394 msg->lchan = conn->lchan;
Harald Welte231ad4f2008-12-27 11:15:38 +0000395
396 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
397 gh->proto_discr = GSM48_PDISC_MM;
398 gh->msg_type = GSM48_MT_MM_ID_REQ;
399 gh->data[0] = id_type;
400
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800401 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte231ad4f2008-12-27 11:15:38 +0000402}
403
Harald Welte231ad4f2008-12-27 11:15:38 +0000404
Harald Weltebf5e8df2009-02-03 12:59:45 +0000405/* Parse Chapter 9.2.11 Identity Response */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800406static int mm_rx_id_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte231ad4f2008-12-27 11:15:38 +0000407{
408 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte75a983f2008-12-27 21:34:06 +0000409 struct gsm_lchan *lchan = msg->lchan;
Harald Welte9176bd42009-07-23 18:46:00 +0200410 struct gsm_bts *bts = lchan->ts->trx->bts;
411 struct gsm_network *net = bts->network;
Harald Welte231ad4f2008-12-27 11:15:38 +0000412 u_int8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200413 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000414
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200415 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte61253062008-12-27 11:25:50 +0000416 DEBUGP(DMM, "IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
Harald Welte231ad4f2008-12-27 11:15:38 +0000417 mi_type, mi_string);
418
Harald Welte7659de12009-12-13 12:39:18 +0100419 dispatch_signal(SS_SUBSCR, S_SUBSCR_IDENTITY, gh->data);
420
Harald Welte75a983f2008-12-27 21:34:06 +0000421 switch (mi_type) {
422 case GSM_MI_TYPE_IMSI:
Jan Luebbe370b41d2009-08-12 10:19:34 +0200423 /* look up subscriber based on IMSI, create if not found */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100424 if (!conn->subscr) {
425 conn->subscr = subscr_get_by_imsi(net, mi_string);
426 if (!conn->subscr)
427 conn->subscr = db_create_subscriber(net, mi_string);
Jan Luebbeb0dfc312009-08-12 10:12:52 +0200428 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100429 if (conn->loc_operation)
430 conn->loc_operation->waiting_for_imsi = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000431 break;
432 case GSM_MI_TYPE_IMEI:
Harald Welte255539c2008-12-28 02:26:27 +0000433 case GSM_MI_TYPE_IMEISV:
Harald Welte75a983f2008-12-27 21:34:06 +0000434 /* update subscribe <-> IMEI mapping */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100435 if (conn->subscr) {
436 db_subscriber_assoc_imei(conn->subscr, mi_string);
437 db_sync_equipment(&conn->subscr->equipment);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200438 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100439 if (conn->loc_operation)
440 conn->loc_operation->waiting_for_imei = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000441 break;
442 }
Holger Freyther73487a22008-12-31 18:53:57 +0000443
444 /* Check if we can let the mobile station enter */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100445 return gsm0408_authorize(conn, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000446}
447
Harald Welte255539c2008-12-28 02:26:27 +0000448
449static void loc_upd_rej_cb(void *data)
450{
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100451 struct gsm_subscriber_connection *conn = data;
452 struct gsm_lchan *lchan = conn->lchan;
Harald Welte1085c092009-11-18 20:33:19 +0100453 struct gsm_bts *bts = lchan->ts->trx->bts;
Harald Welte255539c2008-12-28 02:26:27 +0000454
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800455 gsm0408_loc_upd_rej(conn, bts->network->reject_cause);
Holger Hans Peter Freyther01288432010-06-16 12:52:28 +0800456 release_loc_updating_req(conn);
Harald Welte255539c2008-12-28 02:26:27 +0000457}
458
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100459static void schedule_reject(struct gsm_subscriber_connection *conn)
Holger Freytherb7193e42008-12-29 17:44:08 +0000460{
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100461 conn->loc_operation->updating_timer.cb = loc_upd_rej_cb;
462 conn->loc_operation->updating_timer.data = conn;
463 bsc_schedule_timer(&conn->loc_operation->updating_timer, 5, 0);
Holger Freytherb7193e42008-12-29 17:44:08 +0000464}
465
Harald Welte2a139372009-02-22 21:14:55 +0000466static const char *lupd_name(u_int8_t type)
467{
468 switch (type) {
469 case GSM48_LUPD_NORMAL:
470 return "NORMAL";
471 case GSM48_LUPD_PERIODIC:
472 return "PEROIDOC";
473 case GSM48_LUPD_IMSI_ATT:
474 return "IMSI ATTACH";
475 default:
476 return "UNKNOWN";
477 }
478}
479
Harald Weltebf5e8df2009-02-03 12:59:45 +0000480/* Chapter 9.2.15: Receive Location Updating Request */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800481static int mm_rx_loc_upd_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000482{
Harald Welte8470bf22008-12-25 23:28:35 +0000483 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000484 struct gsm48_loc_upd_req *lu;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800485 struct gsm_subscriber *subscr = NULL;
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800486 struct gsm_bts *bts = conn->bts;
Harald Welte8470bf22008-12-25 23:28:35 +0000487 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200488 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000489 int rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000490
Harald Welte8470bf22008-12-25 23:28:35 +0000491 lu = (struct gsm48_loc_upd_req *) gh->data;
492
493 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +0000494
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200495 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Harald Weltefc977a82008-12-27 10:19:37 +0000496
Harald Weltea0368542009-06-27 02:58:43 +0200497 DEBUGPC(DMM, "mi_type=0x%02x MI(%s) type=%s ", mi_type, mi_string,
Harald Welte2a139372009-02-22 21:14:55 +0000498 lupd_name(lu->type));
Holger Freyther73487a22008-12-31 18:53:57 +0000499
Harald Welte7659de12009-12-13 12:39:18 +0100500 dispatch_signal(SS_SUBSCR, S_SUBSCR_IDENTITY, &lu->mi_len);
501
Harald Welte24ff6ee2009-12-22 00:41:05 +0100502 switch (lu->type) {
503 case GSM48_LUPD_NORMAL:
Harald Welteffa55a42009-12-22 19:07:32 +0100504 counter_inc(bts->network->stats.loc_upd_type.normal);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100505 break;
506 case GSM48_LUPD_IMSI_ATT:
Harald Welteffa55a42009-12-22 19:07:32 +0100507 counter_inc(bts->network->stats.loc_upd_type.attach);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100508 break;
509 case GSM48_LUPD_PERIODIC:
Harald Welteffa55a42009-12-22 19:07:32 +0100510 counter_inc(bts->network->stats.loc_upd_type.periodic);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100511 break;
512 }
513
Holger Freythereaf04692009-06-06 13:54:44 +0000514 /*
515 * Pseudo Spoof detection: Just drop a second/concurrent
516 * location updating request.
517 */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100518 if (conn->loc_operation) {
Harald Weltea0368542009-06-27 02:58:43 +0200519 DEBUGPC(DMM, "ignoring request due an existing one: %p.\n",
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100520 conn->loc_operation);
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800521 gsm0408_loc_upd_rej(conn, GSM48_REJECT_PROTOCOL_ERROR);
Holger Freythereaf04692009-06-06 13:54:44 +0000522 return 0;
523 }
524
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800525 allocate_loc_updating_req(conn);
Holger Freyther73487a22008-12-31 18:53:57 +0000526
Sylvain Munaut2030a2a2010-06-10 13:36:59 +0200527 conn->loc_operation->key_seq = lu->key_seq;
528
Harald Welte52b1f982008-12-23 20:25:15 +0000529 switch (mi_type) {
530 case GSM_MI_TYPE_IMSI:
Harald Weltea0368542009-06-27 02:58:43 +0200531 DEBUGPC(DMM, "\n");
Harald Welte231ad4f2008-12-27 11:15:38 +0000532 /* we always want the IMEI, too */
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800533 rc = mm_tx_identity_req(conn, GSM_MI_TYPE_IMEI);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100534 conn->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000535
Jan Luebbe370b41d2009-08-12 10:19:34 +0200536 /* look up subscriber based on IMSI, create if not found */
537 subscr = subscr_get_by_imsi(bts->network, mi_string);
538 if (!subscr) {
539 subscr = db_create_subscriber(bts->network, mi_string);
540 }
Harald Welte4b634542008-12-27 01:55:51 +0000541 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000542 case GSM_MI_TYPE_TMSI:
Harald Weltea0368542009-06-27 02:58:43 +0200543 DEBUGPC(DMM, "\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000544 /* look up the subscriber based on TMSI, request IMSI if it fails */
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200545 subscr = subscr_get_by_tmsi(bts->network,
546 tmsi_from_string(mi_string));
Harald Welte52b1f982008-12-23 20:25:15 +0000547 if (!subscr) {
Harald Welte231ad4f2008-12-27 11:15:38 +0000548 /* send IDENTITY REQUEST message to get IMSI */
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800549 rc = mm_tx_identity_req(conn, GSM_MI_TYPE_IMSI);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100550 conn->loc_operation->waiting_for_imsi = 1;
Harald Welte52b1f982008-12-23 20:25:15 +0000551 }
Harald Weltef5f512c2010-06-07 17:56:32 +0200552 /* we always want the IMEI, too */
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800553 rc = mm_tx_identity_req(conn, GSM_MI_TYPE_IMEI);
Harald Weltef5f512c2010-06-07 17:56:32 +0200554 conn->loc_operation->waiting_for_imei = 1;
Harald Welte52b1f982008-12-23 20:25:15 +0000555 break;
556 case GSM_MI_TYPE_IMEI:
557 case GSM_MI_TYPE_IMEISV:
558 /* no sim card... FIXME: what to do ? */
Harald Weltea0368542009-06-27 02:58:43 +0200559 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000560 break;
561 default:
Harald Weltea0368542009-06-27 02:58:43 +0200562 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000563 break;
564 }
565
Harald Welte24516ea2009-07-04 10:18:00 +0200566 /* schedule the reject timer */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100567 schedule_reject(conn);
Harald Welte24516ea2009-07-04 10:18:00 +0200568
Harald Welte4bfdfe72009-06-10 23:11:52 +0800569 if (!subscr) {
Harald Weltea0368542009-06-27 02:58:43 +0200570 DEBUGPC(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte4bfdfe72009-06-10 23:11:52 +0800571 /* FIXME: request id? close channel? */
572 return -EINVAL;
573 }
574
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100575 conn->subscr = subscr;
576 conn->subscr->equipment.classmark1 = lu->classmark1;
Harald Welte255539c2008-12-28 02:26:27 +0000577
Harald Welte24516ea2009-07-04 10:18:00 +0200578 /* check if we can let the subscriber into our network immediately
579 * or if we need to wait for identity responses. */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100580 return gsm0408_authorize(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000581}
582
Harald Welte4bfdfe72009-06-10 23:11:52 +0800583#if 0
584static u_int8_t to_bcd8(u_int8_t val)
585{
586 return ((val / 10) << 4) | (val % 10);
587}
588#endif
589
Harald Weltedb253af2008-12-30 17:56:55 +0000590/* Section 9.2.15a */
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800591int gsm48_tx_mm_info(struct gsm_subscriber_connection *conn)
Harald Weltedb253af2008-12-30 17:56:55 +0000592{
593 struct msgb *msg = gsm48_msgb_alloc();
594 struct gsm48_hdr *gh;
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800595 struct gsm_network *net = conn->bts->network;
Harald Weltedb253af2008-12-30 17:56:55 +0000596 u_int8_t *ptr8;
Daniel Willmanneea93372009-08-13 03:42:07 +0200597 int name_len, name_pad;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800598#if 0
599 time_t cur_t;
600 struct tm* cur_time;
601 int tz15min;
602#endif
Harald Weltedb253af2008-12-30 17:56:55 +0000603
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800604 msg->lchan = conn->lchan;
Harald Weltedb253af2008-12-30 17:56:55 +0000605
606 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
607 gh->proto_discr = GSM48_PDISC_MM;
608 gh->msg_type = GSM48_MT_MM_INFO;
609
610 if (net->name_long) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200611#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000612 name_len = strlen(net->name_long);
613 /* 10.5.3.5a */
614 ptr8 = msgb_put(msg, 3);
615 ptr8[0] = GSM48_IE_NAME_LONG;
616 ptr8[1] = name_len*2 +1;
617 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
618
619 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
620 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000621 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +0000622
623 /* FIXME: Use Cell Broadcast, not UCS-2, since
624 * UCS-2 is only supported by later revisions of the spec */
Daniel Willmanneea93372009-08-13 03:42:07 +0200625#endif
626 name_len = (strlen(net->name_long)*7)/8;
627 name_pad = (8 - strlen(net->name_long)*7)%8;
628 if (name_pad > 0)
629 name_len++;
630 /* 10.5.3.5a */
631 ptr8 = msgb_put(msg, 3);
632 ptr8[0] = GSM48_IE_NAME_LONG;
633 ptr8[1] = name_len +1;
634 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
635
636 ptr8 = msgb_put(msg, name_len);
637 gsm_7bit_encode(ptr8, net->name_long);
638
Harald Weltedb253af2008-12-30 17:56:55 +0000639 }
640
641 if (net->name_short) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200642#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000643 name_len = strlen(net->name_short);
644 /* 10.5.3.5a */
645 ptr8 = (u_int8_t *) msgb_put(msg, 3);
Harald Welte7543eb72009-07-19 17:51:36 +0200646 ptr8[0] = GSM48_IE_NAME_SHORT;
Harald Weltedb253af2008-12-30 17:56:55 +0000647 ptr8[1] = name_len*2 + 1;
648 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
649
Harald Weltee872cb12009-01-01 00:33:37 +0000650 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000651 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000652 ptr16[i] = htons(net->name_short[i]);
Daniel Willmanneea93372009-08-13 03:42:07 +0200653#endif
654 name_len = (strlen(net->name_short)*7)/8;
655 name_pad = (8 - strlen(net->name_short)*7)%8;
656 if (name_pad > 0)
657 name_len++;
658 /* 10.5.3.5a */
659 ptr8 = (u_int8_t *) msgb_put(msg, 3);
660 ptr8[0] = GSM48_IE_NAME_SHORT;
661 ptr8[1] = name_len +1;
662 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
663
664 ptr8 = msgb_put(msg, name_len);
665 gsm_7bit_encode(ptr8, net->name_short);
666
Harald Weltedb253af2008-12-30 17:56:55 +0000667 }
668
669#if 0
670 /* Section 10.5.3.9 */
671 cur_t = time(NULL);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800672 cur_time = gmtime(&cur_t);
Harald Weltedb253af2008-12-30 17:56:55 +0000673 ptr8 = msgb_put(msg, 8);
674 ptr8[0] = GSM48_IE_NET_TIME_TZ;
675 ptr8[1] = to_bcd8(cur_time->tm_year % 100);
676 ptr8[2] = to_bcd8(cur_time->tm_mon);
677 ptr8[3] = to_bcd8(cur_time->tm_mday);
678 ptr8[4] = to_bcd8(cur_time->tm_hour);
679 ptr8[5] = to_bcd8(cur_time->tm_min);
680 ptr8[6] = to_bcd8(cur_time->tm_sec);
681 /* 02.42: coded as BCD encoded signed value in units of 15 minutes */
682 tz15min = (cur_time->tm_gmtoff)/(60*15);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800683 ptr8[7] = to_bcd8(tz15min);
Harald Weltedb253af2008-12-30 17:56:55 +0000684 if (tz15min < 0)
Harald Welte4bfdfe72009-06-10 23:11:52 +0800685 ptr8[7] |= 0x80;
Harald Weltedb253af2008-12-30 17:56:55 +0000686#endif
687
Daniel Willmanneea93372009-08-13 03:42:07 +0200688 DEBUGP(DMM, "-> MM INFO\n");
689
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800690 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Weltedb253af2008-12-30 17:56:55 +0000691}
692
Harald Welte7984d5c2009-08-12 22:56:50 +0200693/* Section 9.2.2 */
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800694int gsm48_tx_mm_auth_req(struct gsm_subscriber_connection *conn, u_int8_t *rand, int key_seq)
Harald Welte7984d5c2009-08-12 22:56:50 +0200695{
696 struct msgb *msg = gsm48_msgb_alloc();
697 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Sylvain Munaut849f5542009-09-27 11:10:17 +0200698 struct gsm48_auth_req *ar = (struct gsm48_auth_req *) msgb_put(msg, sizeof(*ar));
Harald Welte7984d5c2009-08-12 22:56:50 +0200699
Sylvain Munaut8608e7c2009-12-24 00:24:29 +0100700 DEBUGP(DMM, "-> AUTH REQ (rand = %s)\n", hexdump(rand, 16));
Harald Welte7984d5c2009-08-12 22:56:50 +0200701
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800702 msg->lchan = conn->lchan;
Harald Welte7984d5c2009-08-12 22:56:50 +0200703 gh->proto_discr = GSM48_PDISC_MM;
704 gh->msg_type = GSM48_MT_MM_AUTH_REQ;
705
Sylvain Munautbd55a6d2009-12-24 00:23:46 +0100706 ar->key_seq = key_seq;
Sylvain Munaut849f5542009-09-27 11:10:17 +0200707
Harald Welte7984d5c2009-08-12 22:56:50 +0200708 /* 16 bytes RAND parameters */
Harald Welte7984d5c2009-08-12 22:56:50 +0200709 if (rand)
Sylvain Munaut849f5542009-09-27 11:10:17 +0200710 memcpy(ar->rand, rand, 16);
Harald Welte7984d5c2009-08-12 22:56:50 +0200711
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800712 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte7984d5c2009-08-12 22:56:50 +0200713}
714
715/* Section 9.2.1 */
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800716int gsm48_tx_mm_auth_rej(struct gsm_subscriber_connection *conn)
Harald Welte7984d5c2009-08-12 22:56:50 +0200717{
718 DEBUGP(DMM, "-> AUTH REJECT\n");
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800719 return gsm48_tx_simple(conn, GSM48_PDISC_MM, GSM48_MT_MM_AUTH_REJ);
Harald Welte7984d5c2009-08-12 22:56:50 +0200720}
721
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800722static int gsm48_tx_mm_serv_ack(struct gsm_subscriber_connection *conn)
Harald Welte4b634542008-12-27 01:55:51 +0000723{
Harald Welte4b634542008-12-27 01:55:51 +0000724 DEBUGP(DMM, "-> CM SERVICE ACK\n");
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800725 return gsm48_tx_simple(conn, GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_ACC);
Harald Welte4b634542008-12-27 01:55:51 +0000726}
Harald Welteba4cf162009-01-10 01:49:35 +0000727
728/* 9.2.6 CM service reject */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100729static int gsm48_tx_mm_serv_rej(struct gsm_subscriber_connection *conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000730 enum gsm48_reject_value value)
731{
Holger Hans Peter Freyther2c0f1662010-06-15 19:39:27 +0800732 struct msgb *msg;
Harald Welteba4cf162009-01-10 01:49:35 +0000733
Holger Hans Peter Freyther2c0f1662010-06-15 19:39:27 +0800734 msg = gsm48_create_mm_serv_rej(value);
735 if (!msg) {
736 LOGP(DMM, LOGL_ERROR, "Failed to allocate CM Service Reject.\n");
737 return -1;
738 }
Harald Welteba4cf162009-01-10 01:49:35 +0000739
Holger Hans Peter Freyther2c0f1662010-06-15 19:39:27 +0800740 DEBUGP(DMM, "-> CM SERVICE Reject cause: %d\n", value);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100741 msg->lchan = conn->lchan;
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800742 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welteba4cf162009-01-10 01:49:35 +0000743}
744
Sylvain Munautba87f452009-12-24 00:28:46 +0100745static int _gsm48_rx_mm_serv_req_sec_cb(
746 unsigned int hooknum, unsigned int event,
747 struct msgb *msg, void *data, void *param)
748{
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800749 struct gsm_subscriber_connection *conn = data;
Sylvain Munautba87f452009-12-24 00:28:46 +0100750 int rc = 0;
751
752 switch (event) {
753 case GSM_SECURITY_AUTH_FAILED:
754 /* Nothing to do */
755 break;
756
757 case GSM_SECURITY_NOAVAIL:
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800758 rc = gsm48_tx_mm_serv_ack(conn);
Sylvain Munautba87f452009-12-24 00:28:46 +0100759 break;
760
761 case GSM_SECURITY_SUCCEEDED:
762 /* nothing to do. CIPHER MODE COMMAND is
763 * implicit CM SERV ACK */
764 break;
765
766 default:
767 rc = -EINVAL;
768 };
769
770 return rc;
771}
772
Harald Welte4ed0e922009-01-10 03:17:30 +0000773/*
774 * Handle CM Service Requests
775 * a) Verify that the packet is long enough to contain the information
776 * we require otherwsie reject with INCORRECT_MESSAGE
777 * b) Try to parse the TMSI. If we do not have one reject
778 * c) Check that we know the subscriber with the TMSI otherwise reject
779 * with a HLR cause
780 * d) Set the subscriber on the gsm_lchan and accept
781 */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800782static int gsm48_rx_mm_serv_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4b634542008-12-27 01:55:51 +0000783{
Harald Welteba4cf162009-01-10 01:49:35 +0000784 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200785 char mi_string[GSM48_MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +0000786
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800787 struct gsm_bts *bts = conn->bts;
Harald Welteba4cf162009-01-10 01:49:35 +0000788 struct gsm_subscriber *subscr;
789 struct gsm48_hdr *gh = msgb_l3(msg);
790 struct gsm48_service_request *req =
791 (struct gsm48_service_request *)gh->data;
Holger Hans Peter Freyther5d658062010-05-14 08:02:08 +0800792 /* unfortunately in Phase1 the classmark2 length is variable */
Harald Weltec9e02182009-05-01 19:07:53 +0000793 u_int8_t classmark2_len = gh->data[1];
794 u_int8_t *classmark2 = gh->data+2;
795 u_int8_t mi_len = *(classmark2 + classmark2_len);
796 u_int8_t *mi = (classmark2 + classmark2_len + 1);
Harald Welteba4cf162009-01-10 01:49:35 +0000797
Harald Weltec9e02182009-05-01 19:07:53 +0000798 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
Harald Welteba4cf162009-01-10 01:49:35 +0000799 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
Harald Weltec9e02182009-05-01 19:07:53 +0000800 DEBUGPC(DMM, "wrong sized message\n");
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800801 return gsm48_tx_mm_serv_rej(conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000802 GSM48_REJECT_INCORRECT_MESSAGE);
803 }
804
805 if (msg->data_len < req->mi_len + 6) {
Harald Weltec9e02182009-05-01 19:07:53 +0000806 DEBUGPC(DMM, "does not fit in packet\n");
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800807 return gsm48_tx_mm_serv_rej(conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000808 GSM48_REJECT_INCORRECT_MESSAGE);
809 }
810
Harald Weltec9e02182009-05-01 19:07:53 +0000811 mi_type = mi[0] & GSM_MI_TYPE_MASK;
Harald Welteba4cf162009-01-10 01:49:35 +0000812 if (mi_type != GSM_MI_TYPE_TMSI) {
Harald Weltec9e02182009-05-01 19:07:53 +0000813 DEBUGPC(DMM, "mi_type is not TMSI: %d\n", mi_type);
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800814 return gsm48_tx_mm_serv_rej(conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000815 GSM48_REJECT_INCORRECT_MESSAGE);
816 }
817
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200818 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
Harald Weltec9e02182009-05-01 19:07:53 +0000819 DEBUGPC(DMM, "serv_type=0x%02x mi_type=0x%02x M(%s)\n",
Harald Welte4ed0e922009-01-10 03:17:30 +0000820 req->cm_service_type, mi_type, mi_string);
Harald Weltebcae43f2008-12-27 21:45:37 +0000821
Harald Welte7659de12009-12-13 12:39:18 +0100822 dispatch_signal(SS_SUBSCR, S_SUBSCR_IDENTITY, (classmark2 + classmark2_len));
823
Harald Welte3ac7f102009-08-10 10:12:45 +0200824 if (is_siemens_bts(bts))
825 send_siemens_mrpci(msg->lchan, classmark2-1);
826
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200827 subscr = subscr_get_by_tmsi(bts->network,
828 tmsi_from_string(mi_string));
Holger Freythereb443982009-06-04 13:58:42 +0000829
Harald Welte2a139372009-02-22 21:14:55 +0000830 /* FIXME: if we don't know the TMSI, inquire abit IMSI and allocate new TMSI */
Harald Welte4ed0e922009-01-10 03:17:30 +0000831 if (!subscr)
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800832 return gsm48_tx_mm_serv_rej(conn,
Harald Welte4ed0e922009-01-10 03:17:30 +0000833 GSM48_REJECT_IMSI_UNKNOWN_IN_HLR);
834
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800835 if (!conn->subscr)
836 conn->subscr = subscr;
837 else if (conn->subscr == subscr)
Sylvain Munautea3f6742009-12-18 18:28:10 +0100838 subscr_put(subscr); /* lchan already has a ref, don't need another one */
839 else {
Harald Welte9bb7c702009-01-10 03:21:41 +0000840 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
841 subscr_put(subscr);
842 }
843
Harald Weltec2e302d2009-07-05 14:08:13 +0200844 subscr->equipment.classmark2_len = classmark2_len;
845 memcpy(subscr->equipment.classmark2, classmark2, classmark2_len);
846 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +0000847
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800848 return gsm48_secure_channel(conn, req->cipher_key_seq,
Sylvain Munautba87f452009-12-24 00:28:46 +0100849 _gsm48_rx_mm_serv_req_sec_cb, NULL);
Harald Welte4b634542008-12-27 01:55:51 +0000850}
851
Harald Welte2a139372009-02-22 21:14:55 +0000852static int gsm48_rx_mm_imsi_detach_ind(struct msgb *msg)
853{
Harald Welte9176bd42009-07-23 18:46:00 +0200854 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2a139372009-02-22 21:14:55 +0000855 struct gsm48_hdr *gh = msgb_l3(msg);
856 struct gsm48_imsi_detach_ind *idi =
857 (struct gsm48_imsi_detach_ind *) gh->data;
858 u_int8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200859 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +0800860 struct gsm_subscriber *subscr = NULL;
Harald Welte2a139372009-02-22 21:14:55 +0000861
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200862 gsm48_mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
Harald Welte2a139372009-02-22 21:14:55 +0000863 DEBUGP(DMM, "IMSI DETACH INDICATION: mi_type=0x%02x MI(%s): ",
864 mi_type, mi_string);
865
Harald Welteffa55a42009-12-22 19:07:32 +0100866 counter_inc(bts->network->stats.loc_upd_type.detach);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100867
Harald Welte2a139372009-02-22 21:14:55 +0000868 switch (mi_type) {
869 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200870 subscr = subscr_get_by_tmsi(bts->network,
871 tmsi_from_string(mi_string));
Harald Welte2a139372009-02-22 21:14:55 +0000872 break;
873 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +0200874 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000875 break;
876 case GSM_MI_TYPE_IMEI:
877 case GSM_MI_TYPE_IMEISV:
878 /* no sim card... FIXME: what to do ? */
Holger Freyther79f4ae62009-06-02 03:25:04 +0000879 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +0000880 break;
881 default:
Holger Freyther79f4ae62009-06-02 03:25:04 +0000882 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +0000883 break;
884 }
885
Holger Freyther4a49e772009-04-12 05:37:29 +0000886 if (subscr) {
887 subscr_update(subscr, msg->trx->bts,
888 GSM_SUBSCRIBER_UPDATE_DETACHED);
Harald Welte2e6d4682009-12-24 14:50:24 +0100889 DEBUGP(DMM, "Subscriber: %s\n", subscr_name(subscr));
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200890
891 subscr->equipment.classmark1 = idi->classmark1;
892 db_sync_equipment(&subscr->equipment);
893
Holger Freytherc21cfbc2009-06-02 02:54:57 +0000894 subscr_put(subscr);
Holger Freyther4a49e772009-04-12 05:37:29 +0000895 } else
Harald Welte2a139372009-02-22 21:14:55 +0000896 DEBUGP(DMM, "Unknown Subscriber ?!?\n");
897
Harald Welte31981a02009-12-20 09:58:40 +0100898 /* FIXME: iterate over all transactions and release them,
899 * imagine an IMSI DETACH happening during an active call! */
900
Harald Welteb83d9382009-12-12 21:00:48 +0100901 /* subscriber is detached: should we release lchan? */
Harald Welte2a139372009-02-22 21:14:55 +0000902 return 0;
903}
904
Harald Welted2a7f5a2009-06-05 20:08:20 +0000905static int gsm48_rx_mm_status(struct msgb *msg)
906{
907 struct gsm48_hdr *gh = msgb_l3(msg);
908
909 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
910
911 return 0;
912}
913
Sylvain Munaut30a15382009-12-24 00:27:26 +0100914/* Chapter 9.2.3: Authentication Response */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800915static int gsm48_rx_mm_auth_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100916{
917 struct gsm48_hdr *gh = msgb_l3(msg);
918 struct gsm48_auth_resp *ar = (struct gsm48_auth_resp*) gh->data;
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800919 struct gsm_network *net = conn->bts->network;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100920
Sylvain Munautc593cf12010-06-10 23:51:41 +0200921 DEBUGP(DMM, "MM AUTHENTICATION RESPONSE (sres = %s): ",
Sylvain Munaut30a15382009-12-24 00:27:26 +0100922 hexdump(ar->sres, 4));
923
924 /* Safety check */
925 if (!conn->sec_operation) {
926 DEBUGP(DMM, "No authentication/cipher operation in progress !!!\n");
927 return -EIO;
928 }
929
930 /* Validate SRES */
931 if (memcmp(conn->sec_operation->atuple.sres, ar->sres,4)) {
932 gsm_cbfn *cb = conn->sec_operation->cb;
Sylvain Munautc593cf12010-06-10 23:51:41 +0200933
934 DEBUGPC(DMM, "Invalid (expected %s)\n",
935 hexdump(conn->sec_operation->atuple.sres, 4));
936
Sylvain Munaut30a15382009-12-24 00:27:26 +0100937 if (cb)
938 cb(GSM_HOOK_RR_SECURITY, GSM_SECURITY_AUTH_FAILED,
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800939 NULL, conn, conn->sec_operation->cb_data);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100940
941 release_security_operation(conn);
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800942 return gsm48_tx_mm_auth_rej(conn);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100943 }
944
Sylvain Munautc593cf12010-06-10 23:51:41 +0200945 DEBUGPC(DMM, "OK\n");
946
Sylvain Munaut30a15382009-12-24 00:27:26 +0100947 /* Start ciphering */
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800948 conn->lchan->encr.alg_id = RSL_ENC_ALG_A5(net->a5_encryption);
949 conn->lchan->encr.key_len = 8;
950 memcpy(conn->lchan->encr.key, conn->sec_operation->atuple.kc, 8);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100951
952 return gsm48_send_rr_ciph_mode(msg->lchan, 0);
953}
954
Harald Weltebf5e8df2009-02-03 12:59:45 +0000955/* Receive a GSM 04.08 Mobility Management (MM) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800956static int gsm0408_rcv_mm(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000957{
958 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800959 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000960
961 switch (gh->msg_type & 0xbf) {
962 case GSM48_MT_MM_LOC_UPD_REQUEST:
Harald Weltea0368542009-06-27 02:58:43 +0200963 DEBUGP(DMM, "LOCATION UPDATING REQUEST: ");
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800964 rc = mm_rx_loc_upd_req(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000965 break;
966 case GSM48_MT_MM_ID_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800967 rc = mm_rx_id_resp(conn, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000968 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000969 case GSM48_MT_MM_CM_SERV_REQ:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800970 rc = gsm48_rx_mm_serv_req(conn, msg);
Harald Welte4b634542008-12-27 01:55:51 +0000971 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000972 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +0000973 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000974 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000975 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte69b2af22009-01-06 19:47:00 +0000976 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800977 conn->subscr ?
978 subscr_name(conn->subscr) :
Harald Welte69b2af22009-01-06 19:47:00 +0000979 "unknown subscriber");
980 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000981 case GSM48_MT_MM_IMSI_DETACH_IND:
Harald Welte2a139372009-02-22 21:14:55 +0000982 rc = gsm48_rx_mm_imsi_detach_ind(msg);
983 break;
984 case GSM48_MT_MM_CM_REEST_REQ:
985 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
986 break;
987 case GSM48_MT_MM_AUTH_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800988 rc = gsm48_rx_mm_auth_resp(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000989 break;
990 default:
Harald Welte5d24ba12009-12-24 12:13:17 +0100991 LOGP(DMM, LOGL_NOTICE, "Unknown GSM 04.08 MM msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +0000992 gh->msg_type);
993 break;
994 }
995
996 return rc;
997}
Harald Weltebf5e8df2009-02-03 12:59:45 +0000998
Harald Welte2d35ae62009-02-06 12:02:13 +0000999/* Receive a PAGING RESPONSE message from the MS */
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001000static int gsm48_rx_rr_pag_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte2d35ae62009-02-06 12:02:13 +00001001{
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001002 struct gsm_bts *bts = conn->bts;
Harald Welte2d35ae62009-02-06 12:02:13 +00001003 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001004 struct gsm48_pag_resp *resp;
Harald Welte61548982009-02-22 21:26:29 +00001005 u_int8_t *classmark2_lv = gh->data + 1;
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001006 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001007 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001008 struct gsm_subscriber *subscr = NULL;
Harald Welte2d35ae62009-02-06 12:02:13 +00001009 int rc = 0;
1010
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001011 resp = (struct gsm48_pag_resp *) &gh->data[0];
1012 gsm48_paging_extract_mi(resp, msgb_l3len(msg) - sizeof(*gh),
1013 mi_string, &mi_type);
Harald Welte2d35ae62009-02-06 12:02:13 +00001014 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
1015 mi_type, mi_string);
Harald Welte3ac7f102009-08-10 10:12:45 +02001016
Harald Weltefe18d8f2009-02-22 21:14:24 +00001017 switch (mi_type) {
1018 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001019 subscr = subscr_get_by_tmsi(bts->network,
1020 tmsi_from_string(mi_string));
Harald Weltefe18d8f2009-02-22 21:14:24 +00001021 break;
1022 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001023 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +00001024 break;
1025 }
Harald Welte2d35ae62009-02-06 12:02:13 +00001026
1027 if (!subscr) {
1028 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte09e38af2009-02-16 22:52:23 +00001029 /* FIXME: request id? close channel? */
Harald Welte2d35ae62009-02-06 12:02:13 +00001030 return -EINVAL;
1031 }
1032 DEBUGP(DRR, "<- Channel was requested by %s\n",
Harald Welte76042182009-08-08 16:03:15 +02001033 subscr->name && strlen(subscr->name) ? subscr->name : subscr->imsi);
Holger Freyther053e09d2009-02-14 22:51:06 +00001034
Harald Weltec2e302d2009-07-05 14:08:13 +02001035 subscr->equipment.classmark2_len = *classmark2_lv;
1036 memcpy(subscr->equipment.classmark2, classmark2_lv+1, *classmark2_lv);
1037 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001038
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001039 rc = gsm48_handle_paging_resp(conn, msg, subscr);
Harald Welte2d35ae62009-02-06 12:02:13 +00001040 return rc;
1041}
1042
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001043static int gsm48_rx_rr_classmark(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Weltef7c43522009-06-09 20:24:21 +00001044{
1045 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001046 struct gsm_subscriber *subscr = conn->subscr;
Harald Weltef7c43522009-06-09 20:24:21 +00001047 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1048 u_int8_t cm2_len, cm3_len = 0;
1049 u_int8_t *cm2, *cm3 = NULL;
1050
1051 DEBUGP(DRR, "CLASSMARK CHANGE ");
1052
1053 /* classmark 2 */
1054 cm2_len = gh->data[0];
1055 cm2 = &gh->data[1];
1056 DEBUGPC(DRR, "CM2(len=%u) ", cm2_len);
1057
1058 if (payload_len > cm2_len + 1) {
1059 /* we must have a classmark3 */
1060 if (gh->data[cm2_len+1] != 0x20) {
1061 DEBUGPC(DRR, "ERR CM3 TAG\n");
1062 return -EINVAL;
1063 }
1064 if (cm2_len > 3) {
1065 DEBUGPC(DRR, "CM2 too long!\n");
1066 return -EINVAL;
1067 }
1068
1069 cm3_len = gh->data[cm2_len+2];
1070 cm3 = &gh->data[cm2_len+3];
1071 if (cm3_len > 14) {
1072 DEBUGPC(DRR, "CM3 len %u too long!\n", cm3_len);
1073 return -EINVAL;
1074 }
1075 DEBUGPC(DRR, "CM3(len=%u)\n", cm3_len);
1076 }
1077 if (subscr) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001078 subscr->equipment.classmark2_len = cm2_len;
1079 memcpy(subscr->equipment.classmark2, cm2, cm2_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001080 if (cm3) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001081 subscr->equipment.classmark3_len = cm3_len;
1082 memcpy(subscr->equipment.classmark3, cm3, cm3_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001083 }
Harald Weltec2e302d2009-07-05 14:08:13 +02001084 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001085 }
1086
Harald Weltef7c43522009-06-09 20:24:21 +00001087 return 0;
1088}
1089
Harald Weltecf5b3592009-05-01 18:28:42 +00001090static int gsm48_rx_rr_status(struct msgb *msg)
1091{
1092 struct gsm48_hdr *gh = msgb_l3(msg);
1093
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001094 DEBUGP(DRR, "STATUS rr_cause = %s\n",
Harald Weltecf5b3592009-05-01 18:28:42 +00001095 rr_cause_name(gh->data[0]));
1096
1097 return 0;
1098}
1099
Harald Weltef7c43522009-06-09 20:24:21 +00001100static int gsm48_rx_rr_meas_rep(struct msgb *msg)
1101{
Harald Welted12b0fd2009-12-15 21:36:05 +01001102 struct gsm_meas_rep *meas_rep = lchan_next_meas_rep(msg->lchan);
Harald Weltef7c43522009-06-09 20:24:21 +00001103
Harald Welte3c7dc6e2009-11-29 19:07:28 +01001104 /* This shouldn't actually end up here, as RSL treats
1105 * L3 Info of 08.58 MEASUREMENT REPORT different by calling
1106 * directly into gsm48_parse_meas_rep */
1107 DEBUGP(DMEAS, "DIRECT GSM48 MEASUREMENT REPORT ?!? ");
Harald Welted12b0fd2009-12-15 21:36:05 +01001108 gsm48_parse_meas_rep(meas_rep, msg);
Harald Weltef7c43522009-06-09 20:24:21 +00001109
1110 return 0;
1111}
1112
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001113static int gsm48_rx_rr_app_info(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001114{
1115 struct gsm48_hdr *gh = msgb_l3(msg);
1116 u_int8_t apdu_id_flags;
1117 u_int8_t apdu_len;
1118 u_int8_t *apdu_data;
1119
1120 apdu_id_flags = gh->data[0];
1121 apdu_len = gh->data[1];
1122 apdu_data = gh->data+2;
1123
1124 DEBUGP(DNM, "RX APPLICATION INFO id/flags=0x%02x apdu_len=%u apdu=%s",
1125 apdu_id_flags, apdu_len, hexdump(apdu_data, apdu_len));
1126
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001127 return db_apdu_blob_store(conn->subscr, apdu_id_flags, apdu_len, apdu_data);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001128}
1129
Sylvain Munaut30a15382009-12-24 00:27:26 +01001130/* Chapter 9.1.10 Ciphering Mode Complete */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001131static int gsm48_rx_rr_ciph_m_compl(struct gsm_subscriber_connection *conn, struct msgb *msg)
Sylvain Munaut30a15382009-12-24 00:27:26 +01001132{
Sylvain Munaut30a15382009-12-24 00:27:26 +01001133 gsm_cbfn *cb;
1134 int rc = 0;
1135
1136 DEBUGP(DRR, "CIPHERING MODE COMPLETE\n");
1137
1138 /* Safety check */
1139 if (!conn->sec_operation) {
1140 DEBUGP(DRR, "No authentication/cipher operation in progress !!!\n");
1141 return -EIO;
1142 }
1143
1144 /* FIXME: check for MI (if any) */
1145
1146 /* Call back whatever was in progress (if anything) ... */
1147 cb = conn->sec_operation->cb;
1148 if (cb) {
1149 rc = cb(GSM_HOOK_RR_SECURITY, GSM_SECURITY_SUCCEEDED,
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +08001150 NULL, conn, conn->sec_operation->cb_data);
Sylvain Munaut30a15382009-12-24 00:27:26 +01001151 }
1152
1153 /* Complete the operation */
1154 release_security_operation(conn);
1155
1156 return rc;
1157}
1158
Harald Welted011e8b2009-11-29 22:45:52 +01001159/* Chapter 9.1.16 Handover complete */
Harald Welte1e191c52009-12-14 17:51:15 +01001160static int gsm48_rx_rr_ho_compl(struct msgb *msg)
Harald Welted011e8b2009-11-29 22:45:52 +01001161{
1162 struct gsm48_hdr *gh = msgb_l3(msg);
1163
1164 DEBUGP(DRR, "HANDOVER COMPLETE cause = %s\n",
1165 rr_cause_name(gh->data[0]));
1166
1167 dispatch_signal(SS_LCHAN, S_LCHAN_HANDOVER_COMPL, msg->lchan);
1168 /* FIXME: release old channel */
1169
1170 return 0;
1171}
1172
1173/* Chapter 9.1.17 Handover Failure */
Harald Welte1e191c52009-12-14 17:51:15 +01001174static int gsm48_rx_rr_ho_fail(struct msgb *msg)
Harald Welted011e8b2009-11-29 22:45:52 +01001175{
1176 struct gsm48_hdr *gh = msgb_l3(msg);
1177
1178 DEBUGP(DRR, "HANDOVER FAILED cause = %s\n",
1179 rr_cause_name(gh->data[0]));
1180
1181 dispatch_signal(SS_LCHAN, S_LCHAN_HANDOVER_FAIL, msg->lchan);
1182 /* FIXME: release allocated new channel */
1183
1184 return 0;
1185}
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001186
Harald Weltebf5e8df2009-02-03 12:59:45 +00001187/* Receive a GSM 04.08 Radio Resource (RR) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001188static int gsm0408_rcv_rr(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001189{
1190 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001191 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001192
1193 switch (gh->msg_type) {
1194 case GSM48_MT_RR_CLSM_CHG:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001195 rc = gsm48_rx_rr_classmark(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001196 break;
Harald Weltefc977a82008-12-27 10:19:37 +00001197 case GSM48_MT_RR_GPRS_SUSP_REQ:
1198 DEBUGP(DRR, "GRPS SUSPEND REQUEST\n");
1199 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001200 case GSM48_MT_RR_PAG_RESP:
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001201 rc = gsm48_rx_rr_pag_resp(conn, msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001202 break;
Harald Welte7ccf7782009-02-17 01:43:01 +00001203 case GSM48_MT_RR_CHAN_MODE_MODIF_ACK:
Holger Hans Peter Freytherf520e642009-10-22 15:23:11 +02001204 rc = gsm48_rx_rr_modif_ack(msg);
Harald Welte7ccf7782009-02-17 01:43:01 +00001205 break;
Harald Weltecf5b3592009-05-01 18:28:42 +00001206 case GSM48_MT_RR_STATUS:
1207 rc = gsm48_rx_rr_status(msg);
1208 break;
Harald Weltef7c43522009-06-09 20:24:21 +00001209 case GSM48_MT_RR_MEAS_REP:
1210 rc = gsm48_rx_rr_meas_rep(msg);
1211 break;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001212 case GSM48_MT_RR_APP_INFO:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001213 rc = gsm48_rx_rr_app_info(conn, msg);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001214 break;
Harald Welte08d91a52009-08-30 15:37:11 +09001215 case GSM48_MT_RR_CIPH_M_COMPL:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001216 rc = gsm48_rx_rr_ciph_m_compl(conn, msg);
Harald Welte08d91a52009-08-30 15:37:11 +09001217 break;
Harald Welteccd5a882009-11-29 20:02:20 +01001218 case GSM48_MT_RR_HANDO_COMPL:
Harald Welted011e8b2009-11-29 22:45:52 +01001219 rc = gsm48_rx_rr_ho_compl(msg);
Harald Welteccd5a882009-11-29 20:02:20 +01001220 break;
1221 case GSM48_MT_RR_HANDO_FAIL:
Harald Welted011e8b2009-11-29 22:45:52 +01001222 rc = gsm48_rx_rr_ho_fail(msg);
Harald Welteccd5a882009-11-29 20:02:20 +01001223 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001224 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01001225 LOGP(DRR, LOGL_NOTICE, "Unimplemented "
1226 "GSM 04.08 RR msg type 0x%02x\n", gh->msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +00001227 break;
1228 }
1229
Harald Welte2d35ae62009-02-06 12:02:13 +00001230 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001231}
1232
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +08001233int gsm48_send_rr_app_info(struct gsm_subscriber_connection *conn, u_int8_t apdu_id,
Holger Hans Peter Freyther8b77a342009-10-22 15:42:19 +02001234 u_int8_t apdu_len, const u_int8_t *apdu)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001235{
1236 struct msgb *msg = gsm48_msgb_alloc();
1237 struct gsm48_hdr *gh;
1238
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +08001239 msg->lchan = conn->lchan;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001240
1241 DEBUGP(DRR, "TX APPLICATION INFO id=0x%02x, len=%u\n",
1242 apdu_id, apdu_len);
1243
1244 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2 + apdu_len);
1245 gh->proto_discr = GSM48_PDISC_RR;
1246 gh->msg_type = GSM48_MT_RR_APP_INFO;
1247 gh->data[0] = apdu_id;
1248 gh->data[1] = apdu_len;
1249 memcpy(gh->data+2, apdu, apdu_len);
1250
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +08001251 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001252}
1253
Harald Welte4bc90a12008-12-27 16:32:52 +00001254/* Call Control */
1255
Harald Welte7584aea2009-02-11 11:44:12 +00001256/* The entire call control code is written in accordance with Figure 7.10c
1257 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1258 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1259 * it for voice */
1260
Harald Welte4bfdfe72009-06-10 23:11:52 +08001261static void new_cc_state(struct gsm_trans *trans, int state)
1262{
1263 if (state > 31 || state < 0)
1264 return;
1265
1266 DEBUGP(DCC, "new state %s -> %s\n",
Harald Weltee95daf12010-03-25 12:13:02 +08001267 gsm48_cc_state_name(trans->cc.state),
1268 gsm48_cc_state_name(state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001269
Harald Weltedcaf5652009-07-23 18:56:43 +02001270 trans->cc.state = state;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001271}
1272
1273static int gsm48_cc_tx_status(struct gsm_trans *trans, void *arg)
Harald Welte4bc90a12008-12-27 16:32:52 +00001274{
1275 struct msgb *msg = gsm48_msgb_alloc();
1276 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1277 u_int8_t *cause, *call_state;
1278
Harald Welte4bc90a12008-12-27 16:32:52 +00001279 gh->msg_type = GSM48_MT_CC_STATUS;
1280
1281 cause = msgb_put(msg, 3);
1282 cause[0] = 2;
1283 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1284 cause[2] = 0x80 | 30; /* response to status inquiry */
1285
1286 call_state = msgb_put(msg, 1);
1287 call_state[0] = 0xc0 | 0x00;
1288
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001289 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bc90a12008-12-27 16:32:52 +00001290}
1291
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001292static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Harald Welte6f4b7532008-12-29 00:39:37 +00001293 u_int8_t pdisc, u_int8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001294{
1295 struct msgb *msg = gsm48_msgb_alloc();
1296 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1297
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001298 msg->lchan = conn->lchan;
Harald Welte4bc90a12008-12-27 16:32:52 +00001299
Harald Welte6f4b7532008-12-29 00:39:37 +00001300 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001301 gh->msg_type = msg_type;
1302
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001303 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte4bc90a12008-12-27 16:32:52 +00001304}
1305
Harald Welte4bfdfe72009-06-10 23:11:52 +08001306static void gsm48_stop_cc_timer(struct gsm_trans *trans)
1307{
Harald Weltedcaf5652009-07-23 18:56:43 +02001308 if (bsc_timer_pending(&trans->cc.timer)) {
1309 DEBUGP(DCC, "stopping pending timer T%x\n", trans->cc.Tcurrent);
1310 bsc_del_timer(&trans->cc.timer);
1311 trans->cc.Tcurrent = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001312 }
1313}
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001314
Harald Welte4bfdfe72009-06-10 23:11:52 +08001315static int mncc_recvmsg(struct gsm_network *net, struct gsm_trans *trans,
1316 int msg_type, struct gsm_mncc *mncc)
1317{
1318 struct msgb *msg;
1319
1320 if (trans)
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001321 if (trans->conn)
Harald Welte6f5aee02009-07-23 21:21:14 +02001322 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08001323 "Sending '%s' to MNCC.\n",
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001324 trans->conn->lchan->ts->trx->bts->nr,
1325 trans->conn->lchan->ts->trx->nr,
1326 trans->conn->lchan->ts->nr, trans->transaction_id,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001327 (trans->subscr)?(trans->subscr->extension):"-",
1328 get_mncc_name(msg_type));
1329 else
1330 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
1331 "Sending '%s' to MNCC.\n",
1332 (trans->subscr)?(trans->subscr->extension):"-",
1333 get_mncc_name(msg_type));
1334 else
1335 DEBUGP(DCC, "(bts - trx - ts - ti -- sub -) "
1336 "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
1337
1338 mncc->msg_type = msg_type;
1339
Harald Welte966636f2009-06-26 19:39:35 +02001340 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001341 if (!msg)
1342 return -ENOMEM;
1343 memcpy(msg->data, mncc, sizeof(struct gsm_mncc));
1344 msgb_enqueue(&net->upqueue, msg);
1345
1346 return 0;
1347}
1348
1349int mncc_release_ind(struct gsm_network *net, struct gsm_trans *trans,
1350 u_int32_t callref, int location, int value)
1351{
1352 struct gsm_mncc rel;
1353
Harald Welte92f70c52009-06-12 01:54:08 +08001354 memset(&rel, 0, sizeof(rel));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001355 rel.callref = callref;
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001356 mncc_set_cause(&rel, location, value);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001357 return mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
1358}
1359
Harald Weltedcaf5652009-07-23 18:56:43 +02001360/* Call Control Specific transaction release.
1361 * gets called by trans_free, DO NOT CALL YOURSELF! */
1362void _gsm48_cc_trans_free(struct gsm_trans *trans)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001363{
Harald Welte4bfdfe72009-06-10 23:11:52 +08001364 gsm48_stop_cc_timer(trans);
1365
1366 /* send release to L4, if callref still exists */
1367 if (trans->callref) {
1368 /* Ressource unavailable */
Harald Welte596fed42009-07-23 19:06:52 +02001369 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001370 GSM48_CAUSE_LOC_PRN_S_LU,
1371 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001372 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001373 if (trans->cc.state != GSM_CSTATE_NULL)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001374 new_cc_state(trans, GSM_CSTATE_NULL);
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001375 if (trans->conn)
1376 trau_mux_unmap(&trans->conn->lchan->ts->e1_link, trans->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001377}
1378
1379static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001380
Harald Welte09e38af2009-02-16 22:52:23 +00001381/* call-back from paging the B-end of the connection */
1382static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001383 struct msgb *msg, void *_conn, void *param)
Harald Welte09e38af2009-02-16 22:52:23 +00001384{
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001385 struct gsm_subscriber_connection *conn = _conn;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001386 struct gsm_subscriber *subscr = param;
1387 struct gsm_trans *transt, *tmp;
1388 struct gsm_network *net;
Harald Weltec05677b2009-06-26 20:17:06 +02001389
Harald Welte09e38af2009-02-16 22:52:23 +00001390 if (hooknum != GSM_HOOK_RR_PAGING)
1391 return -EINVAL;
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001392
Harald Welte4bfdfe72009-06-10 23:11:52 +08001393 if (!subscr)
1394 return -EINVAL;
1395 net = subscr->net;
1396 if (!net) {
1397 DEBUGP(DCC, "Error Network not set!\n");
1398 return -EINVAL;
Harald Welte5a065df2009-02-22 21:13:18 +00001399 }
Harald Welte7584aea2009-02-11 11:44:12 +00001400
Harald Welte4bfdfe72009-06-10 23:11:52 +08001401 /* check all tranactions (without lchan) for subscriber */
1402 llist_for_each_entry_safe(transt, tmp, &net->trans_list, entry) {
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001403 if (transt->subscr != subscr || transt->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001404 continue;
1405 switch (event) {
1406 case GSM_PAGING_SUCCEEDED:
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001407 if (!conn) // paranoid
Harald Welte4bfdfe72009-06-10 23:11:52 +08001408 break;
1409 DEBUGP(DCC, "Paging subscr %s succeeded!\n",
1410 subscr->extension);
1411 /* Assign lchan */
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001412 if (!transt->conn) {
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001413 transt->conn = conn;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001414 }
1415 /* send SETUP request to called party */
Harald Weltedcaf5652009-07-23 18:56:43 +02001416 gsm48_cc_tx_setup(transt, &transt->cc.msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001417 break;
1418 case GSM_PAGING_EXPIRED:
1419 DEBUGP(DCC, "Paging subscr %s expired!\n",
1420 subscr->extension);
1421 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02001422 mncc_release_ind(transt->subscr->net, transt,
1423 transt->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001424 GSM48_CAUSE_LOC_PRN_S_LU,
1425 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001426 transt->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001427 trans_free(transt);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001428 break;
1429 }
1430 }
Harald Welte09e38af2009-02-16 22:52:23 +00001431 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001432}
Harald Welte7584aea2009-02-11 11:44:12 +00001433
Harald Welteda7ab742009-12-19 22:23:05 +01001434static int tch_recv_mncc(struct gsm_network *net, u_int32_t callref, int enable);
1435
Harald Welte805f6442009-07-28 18:25:29 +02001436/* some other part of the code sends us a signal */
1437static int handle_abisip_signal(unsigned int subsys, unsigned int signal,
1438 void *handler_data, void *signal_data)
1439{
1440 struct gsm_lchan *lchan = signal_data;
Harald Welte805f6442009-07-28 18:25:29 +02001441 int rc;
Harald Welteda7ab742009-12-19 22:23:05 +01001442 struct gsm_network *net;
1443 struct gsm_trans *trans;
Harald Welte805f6442009-07-28 18:25:29 +02001444
1445 if (subsys != SS_ABISIP)
1446 return 0;
1447
1448 /* in case we use direct BTS-to-BTS RTP */
1449 if (ipacc_rtp_direct)
1450 return 0;
1451
Harald Welte805f6442009-07-28 18:25:29 +02001452 switch (signal) {
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001453 case S_ABISIP_CRCX_ACK:
Harald Welteda7ab742009-12-19 22:23:05 +01001454 /* check if any transactions on this lchan still have
1455 * a tch_recv_mncc request pending */
1456 net = lchan->ts->trx->bts->network;
1457 llist_for_each_entry(trans, &net->trans_list, entry) {
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001458 if (trans->conn && trans->conn->lchan == lchan && trans->tch_recv) {
Harald Welteda7ab742009-12-19 22:23:05 +01001459 DEBUGP(DCC, "pending tch_recv_mncc request\n");
1460 tch_recv_mncc(net, trans->callref, 1);
1461 }
1462 }
Harald Welte805f6442009-07-28 18:25:29 +02001463 break;
Harald Welte805f6442009-07-28 18:25:29 +02001464 }
1465
1466 return 0;
Harald Welte805f6442009-07-28 18:25:29 +02001467}
1468
Harald Welte49f48b82009-02-17 15:29:33 +00001469/* map two ipaccess RTP streams onto each other */
Harald Welte11fa29c2009-02-19 17:24:39 +00001470static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
Harald Welte49f48b82009-02-17 15:29:33 +00001471{
Harald Welte11fa29c2009-02-19 17:24:39 +00001472 struct gsm_bts *bts = lchan->ts->trx->bts;
1473 struct gsm_bts *remote_bts = remote_lchan->ts->trx->bts;
Harald Welte805f6442009-07-28 18:25:29 +02001474 int rc;
Harald Welte49f48b82009-02-17 15:29:33 +00001475
Harald Welte11fa29c2009-02-19 17:24:39 +00001476 DEBUGP(DCC, "Setting up TCH map between (bts=%u,trx=%u,ts=%u) and (bts=%u,trx=%u,ts=%u)\n",
1477 bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1478 remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr);
1479
1480 if (bts->type != remote_bts->type) {
1481 DEBUGP(DCC, "Cannot switch calls between different BTS types yet\n");
1482 return -EINVAL;
1483 }
Harald Welteda7ab742009-12-19 22:23:05 +01001484
1485 // todo: map between different bts types
Harald Welte11fa29c2009-02-19 17:24:39 +00001486 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +01001487 case GSM_BTS_TYPE_NANOBTS:
Harald Welte805f6442009-07-28 18:25:29 +02001488 if (!ipacc_rtp_direct) {
1489 /* connect the TCH's to our RTP proxy */
Harald Weltea72273e2009-12-20 16:51:09 +01001490 rc = rsl_ipacc_mdcx_to_rtpsock(lchan);
Harald Welte805f6442009-07-28 18:25:29 +02001491 if (rc < 0)
1492 return rc;
Harald Weltea72273e2009-12-20 16:51:09 +01001493 rc = rsl_ipacc_mdcx_to_rtpsock(remote_lchan);
Harald Welteda7ab742009-12-19 22:23:05 +01001494#warning do we need a check of rc here?
Harald Welte805f6442009-07-28 18:25:29 +02001495
1496 /* connect them with each other */
Harald Welte2c828992009-12-02 01:56:49 +05301497 rtp_socket_proxy(lchan->abis_ip.rtp_socket,
1498 remote_lchan->abis_ip.rtp_socket);
Harald Welte805f6442009-07-28 18:25:29 +02001499 } else {
1500 /* directly connect TCH RTP streams to each other */
Harald Welte2c828992009-12-02 01:56:49 +05301501 rc = rsl_ipacc_mdcx(lchan, remote_lchan->abis_ip.bound_ip,
1502 remote_lchan->abis_ip.bound_port,
Harald Welte2c828992009-12-02 01:56:49 +05301503 remote_lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001504 if (rc < 0)
1505 return rc;
Harald Welte2c828992009-12-02 01:56:49 +05301506 rc = rsl_ipacc_mdcx(remote_lchan, lchan->abis_ip.bound_ip,
1507 lchan->abis_ip.bound_port,
Harald Welte2c828992009-12-02 01:56:49 +05301508 lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001509 }
Harald Welte11fa29c2009-02-19 17:24:39 +00001510 break;
1511 case GSM_BTS_TYPE_BS11:
1512 trau_mux_map_lchan(lchan, remote_lchan);
1513 break;
1514 default:
1515 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
Harald Welteda7ab742009-12-19 22:23:05 +01001516 return -EINVAL;
Harald Welte11fa29c2009-02-19 17:24:39 +00001517 }
Harald Welte49f48b82009-02-17 15:29:33 +00001518
1519 return 0;
1520}
1521
Harald Welte4bfdfe72009-06-10 23:11:52 +08001522/* bridge channels of two transactions */
1523static int tch_bridge(struct gsm_network *net, u_int32_t *refs)
Harald Welte7ccf7782009-02-17 01:43:01 +00001524{
Harald Weltedcaf5652009-07-23 18:56:43 +02001525 struct gsm_trans *trans1 = trans_find_by_callref(net, refs[0]);
1526 struct gsm_trans *trans2 = trans_find_by_callref(net, refs[1]);
Harald Welte7ccf7782009-02-17 01:43:01 +00001527
Harald Welte4bfdfe72009-06-10 23:11:52 +08001528 if (!trans1 || !trans2)
Harald Welte7ccf7782009-02-17 01:43:01 +00001529 return -EIO;
1530
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001531 if (!trans1->conn || !trans2->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001532 return -EIO;
1533
1534 /* through-connect channel */
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001535 return tch_map(trans1->conn->lchan, trans2->conn->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00001536}
1537
Harald Welteda7ab742009-12-19 22:23:05 +01001538/* enable receive of channels to MNCC upqueue */
1539static int tch_recv_mncc(struct gsm_network *net, u_int32_t callref, int enable)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001540{
1541 struct gsm_trans *trans;
Harald Welteda7ab742009-12-19 22:23:05 +01001542 struct gsm_lchan *lchan;
1543 struct gsm_bts *bts;
1544 int rc;
Harald Welte7ccf7782009-02-17 01:43:01 +00001545
Harald Welte4bfdfe72009-06-10 23:11:52 +08001546 /* Find callref */
Harald Welteda7ab742009-12-19 22:23:05 +01001547 trans = trans_find_by_callref(net, callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001548 if (!trans)
1549 return -EIO;
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001550 if (!trans->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001551 return 0;
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001552 lchan = trans->conn->lchan;
Harald Welteda7ab742009-12-19 22:23:05 +01001553 bts = lchan->ts->trx->bts;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001554
Harald Welteda7ab742009-12-19 22:23:05 +01001555 switch (bts->type) {
1556 case GSM_BTS_TYPE_NANOBTS:
1557 if (ipacc_rtp_direct) {
1558 DEBUGP(DCC, "Error: RTP proxy is disabled\n");
1559 return -EINVAL;
1560 }
1561 /* in case, we don't have a RTP socket yet, we note this
1562 * in the transaction and try later */
1563 if (!lchan->abis_ip.rtp_socket) {
1564 trans->tch_recv = enable;
1565 DEBUGP(DCC, "queue tch_recv_mncc request (%d)\n", enable);
1566 return 0;
1567 }
1568 if (enable) {
1569 /* connect the TCH's to our RTP proxy */
Harald Weltea72273e2009-12-20 16:51:09 +01001570 rc = rsl_ipacc_mdcx_to_rtpsock(lchan);
Harald Welteda7ab742009-12-19 22:23:05 +01001571 if (rc < 0)
1572 return rc;
1573 /* assign socket to application interface */
1574 rtp_socket_upstream(lchan->abis_ip.rtp_socket,
1575 net, callref);
1576 } else
1577 rtp_socket_upstream(lchan->abis_ip.rtp_socket,
1578 net, 0);
1579 break;
1580 case GSM_BTS_TYPE_BS11:
1581 if (enable)
1582 return trau_recv_lchan(lchan, callref);
1583 return trau_mux_unmap(NULL, callref);
1584 break;
1585 default:
1586 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
1587 return -EINVAL;
1588 }
1589
1590 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001591}
1592
Harald Welte4bfdfe72009-06-10 23:11:52 +08001593static int gsm48_cc_rx_status_enq(struct gsm_trans *trans, struct msgb *msg)
1594{
1595 DEBUGP(DCC, "-> STATUS ENQ\n");
1596 return gsm48_cc_tx_status(trans, msg);
1597}
1598
1599static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg);
1600static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg);
1601
1602static void gsm48_cc_timeout(void *arg)
1603{
1604 struct gsm_trans *trans = arg;
1605 int disconnect = 0, release = 0;
Harald Weltec66b71c2009-06-11 14:23:20 +08001606 int mo_cause = GSM48_CC_CAUSE_RECOVERY_TIMER;
1607 int mo_location = GSM48_CAUSE_LOC_USER;
1608 int l4_cause = GSM48_CC_CAUSE_NORMAL_UNSPEC;
1609 int l4_location = GSM48_CAUSE_LOC_PRN_S_LU;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001610 struct gsm_mncc mo_rel, l4_rel;
1611
1612 memset(&mo_rel, 0, sizeof(struct gsm_mncc));
1613 mo_rel.callref = trans->callref;
1614 memset(&l4_rel, 0, sizeof(struct gsm_mncc));
1615 l4_rel.callref = trans->callref;
1616
Harald Weltedcaf5652009-07-23 18:56:43 +02001617 switch(trans->cc.Tcurrent) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001618 case 0x303:
1619 release = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001620 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001621 break;
1622 case 0x310:
1623 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001624 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001625 break;
1626 case 0x313:
1627 disconnect = 1;
1628 /* unknown, did not find it in the specs */
1629 break;
1630 case 0x301:
1631 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001632 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001633 break;
1634 case 0x308:
Harald Weltedcaf5652009-07-23 18:56:43 +02001635 if (!trans->cc.T308_second) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001636 /* restart T308 a second time */
Harald Weltedcaf5652009-07-23 18:56:43 +02001637 gsm48_cc_tx_release(trans, &trans->cc.msg);
1638 trans->cc.T308_second = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001639 break; /* stay in release state */
1640 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001641 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001642 return;
1643// release = 1;
1644// l4_cause = 14;
1645// break;
1646 case 0x306:
1647 release = 1;
Harald Weltedcaf5652009-07-23 18:56:43 +02001648 mo_cause = trans->cc.msg.cause.value;
1649 mo_location = trans->cc.msg.cause.location;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001650 break;
1651 case 0x323:
1652 disconnect = 1;
1653 break;
1654 default:
1655 release = 1;
1656 }
1657
1658 if (release && trans->callref) {
1659 /* process release towards layer 4 */
Harald Welte596fed42009-07-23 19:06:52 +02001660 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001661 l4_location, l4_cause);
1662 trans->callref = 0;
1663 }
1664
1665 if (disconnect && trans->callref) {
1666 /* process disconnect towards layer 4 */
1667 mncc_set_cause(&l4_rel, l4_location, l4_cause);
Harald Welte596fed42009-07-23 19:06:52 +02001668 mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &l4_rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001669 }
1670
1671 /* process disconnect towards mobile station */
1672 if (disconnect || release) {
1673 mncc_set_cause(&mo_rel, mo_location, mo_cause);
Harald Weltedcaf5652009-07-23 18:56:43 +02001674 mo_rel.cause.diag[0] = ((trans->cc.Tcurrent & 0xf00) >> 8) + '0';
1675 mo_rel.cause.diag[1] = ((trans->cc.Tcurrent & 0x0f0) >> 4) + '0';
1676 mo_rel.cause.diag[2] = (trans->cc.Tcurrent & 0x00f) + '0';
Harald Welte4bfdfe72009-06-10 23:11:52 +08001677 mo_rel.cause.diag_len = 3;
1678
1679 if (disconnect)
1680 gsm48_cc_tx_disconnect(trans, &mo_rel);
1681 if (release)
1682 gsm48_cc_tx_release(trans, &mo_rel);
1683 }
1684
1685}
1686
1687static void gsm48_start_cc_timer(struct gsm_trans *trans, int current,
1688 int sec, int micro)
1689{
1690 DEBUGP(DCC, "starting timer T%x with %d seconds\n", current, sec);
Harald Weltedcaf5652009-07-23 18:56:43 +02001691 trans->cc.timer.cb = gsm48_cc_timeout;
1692 trans->cc.timer.data = trans;
1693 bsc_schedule_timer(&trans->cc.timer, sec, micro);
1694 trans->cc.Tcurrent = current;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001695}
1696
1697static int gsm48_cc_rx_setup(struct gsm_trans *trans, struct msgb *msg)
1698{
1699 struct gsm48_hdr *gh = msgb_l3(msg);
1700 u_int8_t msg_type = gh->msg_type & 0xbf;
1701 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1702 struct tlv_parsed tp;
1703 struct gsm_mncc setup;
1704
1705 memset(&setup, 0, sizeof(struct gsm_mncc));
1706 setup.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01001707 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001708 /* emergency setup is identified by msg_type */
1709 if (msg_type == GSM48_MT_CC_EMERG_SETUP)
1710 setup.emergency = 1;
1711
1712 /* use subscriber as calling party number */
1713 if (trans->subscr) {
1714 setup.fields |= MNCC_F_CALLING;
1715 strncpy(setup.calling.number, trans->subscr->extension,
1716 sizeof(setup.calling.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02001717 strncpy(setup.imsi, trans->subscr->imsi,
1718 sizeof(setup.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001719 }
1720 /* bearer capability */
1721 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
1722 setup.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001723 gsm48_decode_bearer_cap(&setup.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001724 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
1725 }
1726 /* facility */
1727 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1728 setup.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001729 gsm48_decode_facility(&setup.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001730 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1731 }
1732 /* called party bcd number */
1733 if (TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD)) {
1734 setup.fields |= MNCC_F_CALLED;
Harald Welte55c8f352010-03-07 23:40:35 +01001735 gsm48_decode_called(&setup.called,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001736 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
1737 }
1738 /* user-user */
1739 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
1740 setup.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01001741 gsm48_decode_useruser(&setup.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001742 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
1743 }
1744 /* ss-version */
1745 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1746 setup.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001747 gsm48_decode_ssversion(&setup.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001748 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1749 }
1750 /* CLIR suppression */
1751 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_SUPP))
1752 setup.clir.sup = 1;
1753 /* CLIR invocation */
1754 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_INVOC))
1755 setup.clir.inv = 1;
1756 /* cc cap */
1757 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
1758 setup.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001759 gsm48_decode_cccap(&setup.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001760 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
1761 }
1762
Harald Welte4bfdfe72009-06-10 23:11:52 +08001763 new_cc_state(trans, GSM_CSTATE_INITIATED);
1764
Harald Welte (local)47df3992009-12-26 19:45:03 +01001765 LOGP(DCC, LOGL_INFO, "Subscriber %s (%s) sends SETUP to %s\n",
1766 subscr_name(trans->subscr), trans->subscr->extension,
1767 setup.called.number);
1768
Harald Welte4bfdfe72009-06-10 23:11:52 +08001769 /* indicate setup to MNCC */
Harald Welte596fed42009-07-23 19:06:52 +02001770 mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_IND, &setup);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001771
Harald Welte13cac662009-07-29 12:10:35 +02001772 /* MNCC code will modify the channel asynchronously, we should
1773 * ipaccess-bind only after the modification has been made to the
1774 * lchan->tch_mode */
Harald Welte4bfdfe72009-06-10 23:11:52 +08001775 return 0;
1776}
1777
1778static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg)
Harald Welte65e74cc2008-12-29 01:55:35 +00001779{
1780 struct msgb *msg = gsm48_msgb_alloc();
1781 struct gsm48_hdr *gh;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001782 struct gsm_mncc *setup = arg;
Harald Welte78283ef2009-07-23 21:36:44 +02001783 int rc, trans_id;
Harald Welte65e74cc2008-12-29 01:55:35 +00001784
Harald Welte7ccf7782009-02-17 01:43:01 +00001785 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00001786
Harald Welte4bfdfe72009-06-10 23:11:52 +08001787 /* transaction id must not be assigned */
1788 if (trans->transaction_id != 0xff) { /* unasssigned */
1789 DEBUGP(DCC, "TX Setup with assigned transaction. "
1790 "This is not allowed!\n");
1791 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02001792 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001793 GSM48_CAUSE_LOC_PRN_S_LU,
1794 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001795 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001796 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001797 return rc;
1798 }
1799
1800 /* Get free transaction_id */
Harald Welte78283ef2009-07-23 21:36:44 +02001801 trans_id = trans_assign_trans_id(trans->subscr, GSM48_PDISC_CC, 0);
1802 if (trans_id < 0) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001803 /* no free transaction ID */
Harald Welte596fed42009-07-23 19:06:52 +02001804 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001805 GSM48_CAUSE_LOC_PRN_S_LU,
1806 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001807 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001808 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001809 return rc;
1810 }
Harald Welte78283ef2009-07-23 21:36:44 +02001811 trans->transaction_id = trans_id;
Harald Welte49f48b82009-02-17 15:29:33 +00001812
Harald Welte65e74cc2008-12-29 01:55:35 +00001813 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00001814
Harald Welte4bfdfe72009-06-10 23:11:52 +08001815 gsm48_start_cc_timer(trans, 0x303, GSM48_T303);
Harald Welte65e74cc2008-12-29 01:55:35 +00001816
Harald Welte4bfdfe72009-06-10 23:11:52 +08001817 /* bearer capability */
1818 if (setup->fields & MNCC_F_BEARER_CAP)
Harald Welte55c8f352010-03-07 23:40:35 +01001819 gsm48_encode_bearer_cap(msg, 0, &setup->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001820 /* facility */
1821 if (setup->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001822 gsm48_encode_facility(msg, 0, &setup->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001823 /* progress */
1824 if (setup->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001825 gsm48_encode_progress(msg, 0, &setup->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001826 /* calling party BCD number */
1827 if (setup->fields & MNCC_F_CALLING)
Harald Welte55c8f352010-03-07 23:40:35 +01001828 gsm48_encode_calling(msg, &setup->calling);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001829 /* called party BCD number */
1830 if (setup->fields & MNCC_F_CALLED)
Harald Welte55c8f352010-03-07 23:40:35 +01001831 gsm48_encode_called(msg, &setup->called);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001832 /* user-user */
1833 if (setup->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001834 gsm48_encode_useruser(msg, 0, &setup->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001835 /* redirecting party BCD number */
1836 if (setup->fields & MNCC_F_REDIRECTING)
Harald Welte55c8f352010-03-07 23:40:35 +01001837 gsm48_encode_redirecting(msg, &setup->redirecting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001838 /* signal */
1839 if (setup->fields & MNCC_F_SIGNAL)
Harald Welte55c8f352010-03-07 23:40:35 +01001840 gsm48_encode_signal(msg, setup->signal);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001841
1842 new_cc_state(trans, GSM_CSTATE_CALL_PRESENT);
Harald Welte65e74cc2008-12-29 01:55:35 +00001843
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001844 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte65e74cc2008-12-29 01:55:35 +00001845}
1846
Harald Welte4bfdfe72009-06-10 23:11:52 +08001847static int gsm48_cc_rx_call_conf(struct gsm_trans *trans, struct msgb *msg)
1848{
1849 struct gsm48_hdr *gh = msgb_l3(msg);
1850 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1851 struct tlv_parsed tp;
1852 struct gsm_mncc call_conf;
1853
1854 gsm48_stop_cc_timer(trans);
1855 gsm48_start_cc_timer(trans, 0x310, GSM48_T310);
1856
1857 memset(&call_conf, 0, sizeof(struct gsm_mncc));
1858 call_conf.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01001859 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001860#if 0
1861 /* repeat */
1862 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_CIR))
1863 call_conf.repeat = 1;
1864 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_SEQ))
1865 call_conf.repeat = 2;
1866#endif
1867 /* bearer capability */
1868 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
1869 call_conf.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001870 gsm48_decode_bearer_cap(&call_conf.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001871 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
1872 }
1873 /* cause */
1874 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
1875 call_conf.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01001876 gsm48_decode_cause(&call_conf.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001877 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
1878 }
1879 /* cc cap */
1880 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
1881 call_conf.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001882 gsm48_decode_cccap(&call_conf.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001883 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
1884 }
1885
1886 new_cc_state(trans, GSM_CSTATE_MO_TERM_CALL_CONF);
1887
Harald Welte596fed42009-07-23 19:06:52 +02001888 return mncc_recvmsg(trans->subscr->net, trans, MNCC_CALL_CONF_IND,
1889 &call_conf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001890}
1891
1892static int gsm48_cc_tx_call_proc(struct gsm_trans *trans, void *arg)
1893{
1894 struct gsm_mncc *proceeding = arg;
1895 struct msgb *msg = gsm48_msgb_alloc();
1896 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1897
Harald Welte4bfdfe72009-06-10 23:11:52 +08001898 gh->msg_type = GSM48_MT_CC_CALL_PROC;
1899
1900 new_cc_state(trans, GSM_CSTATE_MO_CALL_PROC);
1901
1902 /* bearer capability */
1903 if (proceeding->fields & MNCC_F_BEARER_CAP)
Harald Welte55c8f352010-03-07 23:40:35 +01001904 gsm48_encode_bearer_cap(msg, 0, &proceeding->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001905 /* facility */
1906 if (proceeding->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001907 gsm48_encode_facility(msg, 0, &proceeding->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001908 /* progress */
1909 if (proceeding->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001910 gsm48_encode_progress(msg, 0, &proceeding->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001911
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001912 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001913}
1914
1915static int gsm48_cc_rx_alerting(struct gsm_trans *trans, struct msgb *msg)
1916{
1917 struct gsm48_hdr *gh = msgb_l3(msg);
1918 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1919 struct tlv_parsed tp;
1920 struct gsm_mncc alerting;
1921
1922 gsm48_stop_cc_timer(trans);
1923 gsm48_start_cc_timer(trans, 0x301, GSM48_T301);
1924
1925 memset(&alerting, 0, sizeof(struct gsm_mncc));
1926 alerting.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01001927 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001928 /* facility */
1929 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1930 alerting.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001931 gsm48_decode_facility(&alerting.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001932 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1933 }
1934
1935 /* progress */
1936 if (TLVP_PRESENT(&tp, GSM48_IE_PROGR_IND)) {
1937 alerting.fields |= MNCC_F_PROGRESS;
Harald Welte55c8f352010-03-07 23:40:35 +01001938 gsm48_decode_progress(&alerting.progress,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001939 TLVP_VAL(&tp, GSM48_IE_PROGR_IND)-1);
1940 }
1941 /* ss-version */
1942 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1943 alerting.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001944 gsm48_decode_ssversion(&alerting.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001945 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1946 }
1947
1948 new_cc_state(trans, GSM_CSTATE_CALL_RECEIVED);
1949
Harald Welte596fed42009-07-23 19:06:52 +02001950 return mncc_recvmsg(trans->subscr->net, trans, MNCC_ALERT_IND,
1951 &alerting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001952}
1953
1954static int gsm48_cc_tx_alerting(struct gsm_trans *trans, void *arg)
1955{
1956 struct gsm_mncc *alerting = arg;
1957 struct msgb *msg = gsm48_msgb_alloc();
1958 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1959
Harald Welte4bfdfe72009-06-10 23:11:52 +08001960 gh->msg_type = GSM48_MT_CC_ALERTING;
1961
1962 /* facility */
1963 if (alerting->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001964 gsm48_encode_facility(msg, 0, &alerting->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001965 /* progress */
1966 if (alerting->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001967 gsm48_encode_progress(msg, 0, &alerting->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001968 /* user-user */
1969 if (alerting->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001970 gsm48_encode_useruser(msg, 0, &alerting->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001971
1972 new_cc_state(trans, GSM_CSTATE_CALL_DELIVERED);
1973
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001974 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001975}
1976
1977static int gsm48_cc_tx_progress(struct gsm_trans *trans, void *arg)
1978{
1979 struct gsm_mncc *progress = arg;
1980 struct msgb *msg = gsm48_msgb_alloc();
1981 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1982
Harald Welte4bfdfe72009-06-10 23:11:52 +08001983 gh->msg_type = GSM48_MT_CC_PROGRESS;
1984
1985 /* progress */
Harald Welte55c8f352010-03-07 23:40:35 +01001986 gsm48_encode_progress(msg, 1, &progress->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001987 /* user-user */
1988 if (progress->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001989 gsm48_encode_useruser(msg, 0, &progress->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001990
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001991 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001992}
1993
1994static int gsm48_cc_tx_connect(struct gsm_trans *trans, void *arg)
1995{
1996 struct gsm_mncc *connect = arg;
1997 struct msgb *msg = gsm48_msgb_alloc();
1998 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1999
Harald Welte4bfdfe72009-06-10 23:11:52 +08002000 gh->msg_type = GSM48_MT_CC_CONNECT;
2001
2002 gsm48_stop_cc_timer(trans);
2003 gsm48_start_cc_timer(trans, 0x313, GSM48_T313);
2004
2005 /* facility */
2006 if (connect->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002007 gsm48_encode_facility(msg, 0, &connect->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002008 /* progress */
2009 if (connect->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002010 gsm48_encode_progress(msg, 0, &connect->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002011 /* connected number */
2012 if (connect->fields & MNCC_F_CONNECTED)
Harald Welte55c8f352010-03-07 23:40:35 +01002013 gsm48_encode_connected(msg, &connect->connected);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002014 /* user-user */
2015 if (connect->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002016 gsm48_encode_useruser(msg, 0, &connect->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002017
2018 new_cc_state(trans, GSM_CSTATE_CONNECT_IND);
2019
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_rx_connect(struct gsm_trans *trans, struct msgb *msg)
2024{
2025 struct gsm48_hdr *gh = msgb_l3(msg);
2026 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2027 struct tlv_parsed tp;
2028 struct gsm_mncc connect;
2029
2030 gsm48_stop_cc_timer(trans);
2031
2032 memset(&connect, 0, sizeof(struct gsm_mncc));
2033 connect.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002034 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002035 /* use subscriber as connected party number */
2036 if (trans->subscr) {
2037 connect.fields |= MNCC_F_CONNECTED;
2038 strncpy(connect.connected.number, trans->subscr->extension,
2039 sizeof(connect.connected.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002040 strncpy(connect.imsi, trans->subscr->imsi,
2041 sizeof(connect.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002042 }
2043 /* facility */
2044 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2045 connect.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002046 gsm48_decode_facility(&connect.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002047 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2048 }
2049 /* user-user */
2050 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2051 connect.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002052 gsm48_decode_useruser(&connect.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002053 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2054 }
2055 /* ss-version */
2056 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2057 connect.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002058 gsm48_decode_ssversion(&connect.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002059 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2060 }
2061
2062 new_cc_state(trans, GSM_CSTATE_CONNECT_REQUEST);
2063
Harald Welte596fed42009-07-23 19:06:52 +02002064 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_CNF, &connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002065}
2066
2067
2068static int gsm48_cc_rx_connect_ack(struct gsm_trans *trans, struct msgb *msg)
2069{
2070 struct gsm_mncc connect_ack;
2071
2072 gsm48_stop_cc_timer(trans);
2073
2074 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2075
2076 memset(&connect_ack, 0, sizeof(struct gsm_mncc));
2077 connect_ack.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002078 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_COMPL_IND,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002079 &connect_ack);
2080}
2081
2082static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg)
2083{
2084 struct msgb *msg = gsm48_msgb_alloc();
2085 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2086
Harald Welte4bfdfe72009-06-10 23:11:52 +08002087 gh->msg_type = GSM48_MT_CC_CONNECT_ACK;
2088
2089 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2090
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002091 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002092}
2093
2094static int gsm48_cc_rx_disconnect(struct gsm_trans *trans, struct msgb *msg)
2095{
2096 struct gsm48_hdr *gh = msgb_l3(msg);
2097 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2098 struct tlv_parsed tp;
2099 struct gsm_mncc disc;
2100
2101 gsm48_stop_cc_timer(trans);
2102
2103 new_cc_state(trans, GSM_CSTATE_DISCONNECT_REQ);
2104
2105 memset(&disc, 0, sizeof(struct gsm_mncc));
2106 disc.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002107 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_CAUSE, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002108 /* cause */
2109 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2110 disc.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002111 gsm48_decode_cause(&disc.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002112 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2113 }
2114 /* facility */
2115 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2116 disc.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002117 gsm48_decode_facility(&disc.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002118 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2119 }
2120 /* user-user */
2121 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2122 disc.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002123 gsm48_decode_useruser(&disc.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002124 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2125 }
2126 /* ss-version */
2127 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2128 disc.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002129 gsm48_decode_ssversion(&disc.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002130 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2131 }
2132
Harald Welte596fed42009-07-23 19:06:52 +02002133 return mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &disc);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002134
2135}
2136
Harald Weltec66b71c2009-06-11 14:23:20 +08002137static struct gsm_mncc_cause default_cause = {
2138 .location = GSM48_CAUSE_LOC_PRN_S_LU,
2139 .coding = 0,
2140 .rec = 0,
2141 .rec_val = 0,
2142 .value = GSM48_CC_CAUSE_NORMAL_UNSPEC,
2143 .diag_len = 0,
2144 .diag = { 0 },
2145};
Harald Welte4bfdfe72009-06-10 23:11:52 +08002146
2147static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg)
2148{
2149 struct gsm_mncc *disc = arg;
2150 struct msgb *msg = gsm48_msgb_alloc();
2151 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2152
Harald Welte4bfdfe72009-06-10 23:11:52 +08002153 gh->msg_type = GSM48_MT_CC_DISCONNECT;
2154
2155 gsm48_stop_cc_timer(trans);
2156 gsm48_start_cc_timer(trans, 0x306, GSM48_T306);
2157
2158 /* cause */
2159 if (disc->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002160 gsm48_encode_cause(msg, 1, &disc->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002161 else
Harald Welte55c8f352010-03-07 23:40:35 +01002162 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002163
2164 /* facility */
2165 if (disc->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002166 gsm48_encode_facility(msg, 0, &disc->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002167 /* progress */
2168 if (disc->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002169 gsm48_encode_progress(msg, 0, &disc->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002170 /* user-user */
2171 if (disc->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002172 gsm48_encode_useruser(msg, 0, &disc->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002173
2174 /* store disconnect cause for T306 expiry */
Harald Weltedcaf5652009-07-23 18:56:43 +02002175 memcpy(&trans->cc.msg, disc, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002176
2177 new_cc_state(trans, GSM_CSTATE_DISCONNECT_IND);
2178
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002179 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002180}
2181
2182static int gsm48_cc_rx_release(struct gsm_trans *trans, struct msgb *msg)
2183{
2184 struct gsm48_hdr *gh = msgb_l3(msg);
2185 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2186 struct tlv_parsed tp;
2187 struct gsm_mncc rel;
2188 int rc;
2189
2190 gsm48_stop_cc_timer(trans);
2191
2192 memset(&rel, 0, sizeof(struct gsm_mncc));
2193 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002194 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002195 /* cause */
2196 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2197 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002198 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002199 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2200 }
2201 /* facility */
2202 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2203 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002204 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002205 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2206 }
2207 /* user-user */
2208 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2209 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002210 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002211 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2212 }
2213 /* ss-version */
2214 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2215 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002216 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002217 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2218 }
2219
Harald Weltedcaf5652009-07-23 18:56:43 +02002220 if (trans->cc.state == GSM_CSTATE_RELEASE_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002221 /* release collision 5.4.5 */
Harald Welte596fed42009-07-23 19:06:52 +02002222 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002223 } else {
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08002224 rc = gsm48_tx_simple(trans->conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02002225 GSM48_PDISC_CC | (trans->transaction_id << 4),
Harald Welte596fed42009-07-23 19:06:52 +02002226 GSM48_MT_CC_RELEASE_COMPL);
2227 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_IND, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002228 }
2229
2230 new_cc_state(trans, GSM_CSTATE_NULL);
2231
2232 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002233 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002234
2235 return rc;
2236}
2237
2238static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg)
2239{
2240 struct gsm_mncc *rel = arg;
2241 struct msgb *msg = gsm48_msgb_alloc();
2242 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2243
Harald Welte4bfdfe72009-06-10 23:11:52 +08002244 gh->msg_type = GSM48_MT_CC_RELEASE;
2245
2246 trans->callref = 0;
2247
2248 gsm48_stop_cc_timer(trans);
2249 gsm48_start_cc_timer(trans, 0x308, GSM48_T308);
2250
2251 /* cause */
2252 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002253 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002254 /* facility */
2255 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002256 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002257 /* user-user */
2258 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002259 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002260
Harald Weltedcaf5652009-07-23 18:56:43 +02002261 trans->cc.T308_second = 0;
2262 memcpy(&trans->cc.msg, rel, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002263
Harald Weltedcaf5652009-07-23 18:56:43 +02002264 if (trans->cc.state != GSM_CSTATE_RELEASE_REQ)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002265 new_cc_state(trans, GSM_CSTATE_RELEASE_REQ);
2266
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002267 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002268}
2269
2270static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg)
2271{
2272 struct gsm48_hdr *gh = msgb_l3(msg);
2273 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2274 struct tlv_parsed tp;
2275 struct gsm_mncc rel;
2276 int rc = 0;
2277
2278 gsm48_stop_cc_timer(trans);
2279
2280 memset(&rel, 0, sizeof(struct gsm_mncc));
2281 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002282 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002283 /* cause */
2284 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2285 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002286 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002287 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2288 }
2289 /* facility */
2290 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2291 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002292 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002293 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2294 }
2295 /* user-user */
2296 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2297 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002298 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002299 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2300 }
2301 /* ss-version */
2302 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2303 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002304 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002305 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2306 }
2307
2308 if (trans->callref) {
Harald Weltedcaf5652009-07-23 18:56:43 +02002309 switch (trans->cc.state) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002310 case GSM_CSTATE_CALL_PRESENT:
Harald Welte596fed42009-07-23 19:06:52 +02002311 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002312 MNCC_REJ_IND, &rel);
2313 break;
2314 case GSM_CSTATE_RELEASE_REQ:
Harald Welte596fed42009-07-23 19:06:52 +02002315 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002316 MNCC_REL_CNF, &rel);
2317 break;
2318 default:
Harald Welte596fed42009-07-23 19:06:52 +02002319 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002320 MNCC_REL_IND, &rel);
2321 }
2322 }
2323
2324 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002325 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002326
2327 return rc;
2328}
2329
2330static int gsm48_cc_tx_release_compl(struct gsm_trans *trans, void *arg)
2331{
2332 struct gsm_mncc *rel = arg;
2333 struct msgb *msg = gsm48_msgb_alloc();
2334 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2335
Harald Welte4bfdfe72009-06-10 23:11:52 +08002336 gh->msg_type = GSM48_MT_CC_RELEASE_COMPL;
2337
2338 trans->callref = 0;
2339
2340 gsm48_stop_cc_timer(trans);
2341
2342 /* cause */
2343 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002344 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002345 /* facility */
2346 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002347 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002348 /* user-user */
2349 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002350 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002351
Harald Weltedcaf5652009-07-23 18:56:43 +02002352 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002353
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002354 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002355}
2356
2357static int gsm48_cc_rx_facility(struct gsm_trans *trans, struct msgb *msg)
2358{
2359 struct gsm48_hdr *gh = msgb_l3(msg);
2360 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2361 struct tlv_parsed tp;
2362 struct gsm_mncc fac;
2363
2364 memset(&fac, 0, sizeof(struct gsm_mncc));
2365 fac.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002366 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_FACILITY, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002367 /* facility */
2368 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2369 fac.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002370 gsm48_decode_facility(&fac.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002371 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2372 }
2373 /* ss-version */
2374 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2375 fac.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002376 gsm48_decode_ssversion(&fac.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002377 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2378 }
2379
Harald Welte596fed42009-07-23 19:06:52 +02002380 return mncc_recvmsg(trans->subscr->net, trans, MNCC_FACILITY_IND, &fac);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002381}
2382
2383static int gsm48_cc_tx_facility(struct gsm_trans *trans, void *arg)
2384{
2385 struct gsm_mncc *fac = arg;
2386 struct msgb *msg = gsm48_msgb_alloc();
2387 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2388
Harald Welte4bfdfe72009-06-10 23:11:52 +08002389 gh->msg_type = GSM48_MT_CC_FACILITY;
2390
2391 /* facility */
Harald Welte55c8f352010-03-07 23:40:35 +01002392 gsm48_encode_facility(msg, 1, &fac->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002393
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002394 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002395}
2396
2397static int gsm48_cc_rx_hold(struct gsm_trans *trans, struct msgb *msg)
2398{
2399 struct gsm_mncc hold;
2400
2401 memset(&hold, 0, sizeof(struct gsm_mncc));
2402 hold.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002403 return mncc_recvmsg(trans->subscr->net, trans, MNCC_HOLD_IND, &hold);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002404}
2405
2406static int gsm48_cc_tx_hold_ack(struct gsm_trans *trans, void *arg)
2407{
2408 struct msgb *msg = gsm48_msgb_alloc();
2409 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2410
Harald Welte4bfdfe72009-06-10 23:11:52 +08002411 gh->msg_type = GSM48_MT_CC_HOLD_ACK;
2412
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002413 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002414}
2415
2416static int gsm48_cc_tx_hold_rej(struct gsm_trans *trans, void *arg)
2417{
2418 struct gsm_mncc *hold_rej = arg;
2419 struct msgb *msg = gsm48_msgb_alloc();
2420 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2421
Harald Welte4bfdfe72009-06-10 23:11:52 +08002422 gh->msg_type = GSM48_MT_CC_HOLD_REJ;
2423
2424 /* cause */
2425 if (hold_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002426 gsm48_encode_cause(msg, 1, &hold_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002427 else
Harald Welte55c8f352010-03-07 23:40:35 +01002428 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002429
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002430 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002431}
2432
2433static int gsm48_cc_rx_retrieve(struct gsm_trans *trans, struct msgb *msg)
2434{
2435 struct gsm_mncc retrieve;
2436
2437 memset(&retrieve, 0, sizeof(struct gsm_mncc));
2438 retrieve.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002439 return mncc_recvmsg(trans->subscr->net, trans, MNCC_RETRIEVE_IND,
2440 &retrieve);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002441}
2442
2443static int gsm48_cc_tx_retrieve_ack(struct gsm_trans *trans, void *arg)
2444{
2445 struct msgb *msg = gsm48_msgb_alloc();
2446 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2447
Harald Welte4bfdfe72009-06-10 23:11:52 +08002448 gh->msg_type = GSM48_MT_CC_RETR_ACK;
2449
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002450 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002451}
2452
2453static int gsm48_cc_tx_retrieve_rej(struct gsm_trans *trans, void *arg)
2454{
2455 struct gsm_mncc *retrieve_rej = arg;
2456 struct msgb *msg = gsm48_msgb_alloc();
2457 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2458
Harald Welte4bfdfe72009-06-10 23:11:52 +08002459 gh->msg_type = GSM48_MT_CC_RETR_REJ;
2460
2461 /* cause */
2462 if (retrieve_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002463 gsm48_encode_cause(msg, 1, &retrieve_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002464 else
Harald Welte55c8f352010-03-07 23:40:35 +01002465 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002466
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002467 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002468}
2469
2470static int gsm48_cc_rx_start_dtmf(struct gsm_trans *trans, struct msgb *msg)
2471{
2472 struct gsm48_hdr *gh = msgb_l3(msg);
2473 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2474 struct tlv_parsed tp;
2475 struct gsm_mncc dtmf;
2476
2477 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2478 dtmf.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002479 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002480 /* keypad facility */
2481 if (TLVP_PRESENT(&tp, GSM48_IE_KPD_FACILITY)) {
2482 dtmf.fields |= MNCC_F_KEYPAD;
Harald Welte55c8f352010-03-07 23:40:35 +01002483 gsm48_decode_keypad(&dtmf.keypad,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002484 TLVP_VAL(&tp, GSM48_IE_KPD_FACILITY)-1);
2485 }
2486
Harald Welte596fed42009-07-23 19:06:52 +02002487 return mncc_recvmsg(trans->subscr->net, trans, MNCC_START_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002488}
2489
2490static int gsm48_cc_tx_start_dtmf_ack(struct gsm_trans *trans, void *arg)
2491{
2492 struct gsm_mncc *dtmf = arg;
2493 struct msgb *msg = gsm48_msgb_alloc();
2494 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2495
Harald Welte4bfdfe72009-06-10 23:11:52 +08002496 gh->msg_type = GSM48_MT_CC_START_DTMF_ACK;
2497
2498 /* keypad */
2499 if (dtmf->fields & MNCC_F_KEYPAD)
Harald Welte55c8f352010-03-07 23:40:35 +01002500 gsm48_encode_keypad(msg, dtmf->keypad);
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_tx_start_dtmf_rej(struct gsm_trans *trans, void *arg)
2506{
2507 struct gsm_mncc *dtmf = arg;
2508 struct msgb *msg = gsm48_msgb_alloc();
2509 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2510
Harald Welte4bfdfe72009-06-10 23:11:52 +08002511 gh->msg_type = GSM48_MT_CC_START_DTMF_REJ;
2512
2513 /* cause */
2514 if (dtmf->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002515 gsm48_encode_cause(msg, 1, &dtmf->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002516 else
Harald Welte55c8f352010-03-07 23:40:35 +01002517 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002518
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002519 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002520}
2521
2522static int gsm48_cc_tx_stop_dtmf_ack(struct gsm_trans *trans, void *arg)
2523{
2524 struct msgb *msg = gsm48_msgb_alloc();
2525 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2526
Harald Welte4bfdfe72009-06-10 23:11:52 +08002527 gh->msg_type = GSM48_MT_CC_STOP_DTMF_ACK;
2528
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002529 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002530}
2531
2532static int gsm48_cc_rx_stop_dtmf(struct gsm_trans *trans, struct msgb *msg)
2533{
2534 struct gsm_mncc dtmf;
2535
2536 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2537 dtmf.callref = trans->callref;
2538
Harald Welte596fed42009-07-23 19:06:52 +02002539 return mncc_recvmsg(trans->subscr->net, trans, MNCC_STOP_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002540}
2541
2542static int gsm48_cc_rx_modify(struct gsm_trans *trans, struct msgb *msg)
2543{
2544 struct gsm48_hdr *gh = msgb_l3(msg);
2545 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2546 struct tlv_parsed tp;
2547 struct gsm_mncc modify;
2548
2549 memset(&modify, 0, sizeof(struct gsm_mncc));
2550 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002551 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002552 /* bearer capability */
2553 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2554 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002555 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002556 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2557 }
2558
2559 new_cc_state(trans, GSM_CSTATE_MO_ORIG_MODIFY);
2560
Harald Welte596fed42009-07-23 19:06:52 +02002561 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_IND, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002562}
2563
2564static int gsm48_cc_tx_modify(struct gsm_trans *trans, void *arg)
2565{
2566 struct gsm_mncc *modify = arg;
2567 struct msgb *msg = gsm48_msgb_alloc();
2568 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2569
Harald Welte4bfdfe72009-06-10 23:11:52 +08002570 gh->msg_type = GSM48_MT_CC_MODIFY;
2571
2572 gsm48_start_cc_timer(trans, 0x323, GSM48_T323);
2573
2574 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002575 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002576
2577 new_cc_state(trans, GSM_CSTATE_MO_TERM_MODIFY);
2578
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002579 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002580}
2581
2582static int gsm48_cc_rx_modify_complete(struct gsm_trans *trans, struct msgb *msg)
2583{
2584 struct gsm48_hdr *gh = msgb_l3(msg);
2585 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2586 struct tlv_parsed tp;
2587 struct gsm_mncc modify;
2588
2589 gsm48_stop_cc_timer(trans);
2590
2591 memset(&modify, 0, sizeof(struct gsm_mncc));
2592 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002593 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002594 /* bearer capability */
2595 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2596 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002597 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002598 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2599 }
2600
2601 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2602
Harald Welte596fed42009-07-23 19:06:52 +02002603 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_CNF, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002604}
2605
2606static int gsm48_cc_tx_modify_complete(struct gsm_trans *trans, void *arg)
2607{
2608 struct gsm_mncc *modify = arg;
2609 struct msgb *msg = gsm48_msgb_alloc();
2610 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2611
Harald Welte4bfdfe72009-06-10 23:11:52 +08002612 gh->msg_type = GSM48_MT_CC_MODIFY_COMPL;
2613
2614 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002615 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002616
2617 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2618
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002619 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002620}
2621
2622static int gsm48_cc_rx_modify_reject(struct gsm_trans *trans, struct msgb *msg)
2623{
2624 struct gsm48_hdr *gh = msgb_l3(msg);
2625 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2626 struct tlv_parsed tp;
2627 struct gsm_mncc modify;
2628
2629 gsm48_stop_cc_timer(trans);
2630
2631 memset(&modify, 0, sizeof(struct gsm_mncc));
2632 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002633 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, GSM48_IE_CAUSE);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002634 /* bearer capability */
2635 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2636 modify.fields |= GSM48_IE_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002637 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002638 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2639 }
2640 /* cause */
2641 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2642 modify.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002643 gsm48_decode_cause(&modify.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002644 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2645 }
2646
2647 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2648
Harald Welte596fed42009-07-23 19:06:52 +02002649 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_REJ, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002650}
2651
2652static int gsm48_cc_tx_modify_reject(struct gsm_trans *trans, void *arg)
2653{
2654 struct gsm_mncc *modify = arg;
2655 struct msgb *msg = gsm48_msgb_alloc();
2656 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2657
Harald Welte4bfdfe72009-06-10 23:11:52 +08002658 gh->msg_type = GSM48_MT_CC_MODIFY_REJECT;
2659
2660 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002661 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002662 /* cause */
Harald Welte55c8f352010-03-07 23:40:35 +01002663 gsm48_encode_cause(msg, 1, &modify->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002664
2665 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2666
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002667 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002668}
2669
2670static int gsm48_cc_tx_notify(struct gsm_trans *trans, void *arg)
2671{
2672 struct gsm_mncc *notify = arg;
2673 struct msgb *msg = gsm48_msgb_alloc();
2674 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2675
Harald Welte4bfdfe72009-06-10 23:11:52 +08002676 gh->msg_type = GSM48_MT_CC_NOTIFY;
2677
2678 /* notify */
Harald Welte55c8f352010-03-07 23:40:35 +01002679 gsm48_encode_notify(msg, notify->notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002680
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002681 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002682}
2683
2684static int gsm48_cc_rx_notify(struct gsm_trans *trans, struct msgb *msg)
2685{
2686 struct gsm48_hdr *gh = msgb_l3(msg);
2687 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2688// struct tlv_parsed tp;
2689 struct gsm_mncc notify;
2690
2691 memset(&notify, 0, sizeof(struct gsm_mncc));
2692 notify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002693// tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002694 if (payload_len >= 1)
Harald Welte55c8f352010-03-07 23:40:35 +01002695 gsm48_decode_notify(&notify.notify, gh->data);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002696
Harald Welte596fed42009-07-23 19:06:52 +02002697 return mncc_recvmsg(trans->subscr->net, trans, MNCC_NOTIFY_IND, &notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002698}
2699
2700static int gsm48_cc_tx_userinfo(struct gsm_trans *trans, void *arg)
2701{
2702 struct gsm_mncc *user = arg;
2703 struct msgb *msg = gsm48_msgb_alloc();
2704 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2705
Harald Welte4bfdfe72009-06-10 23:11:52 +08002706 gh->msg_type = GSM48_MT_CC_USER_INFO;
2707
2708 /* user-user */
2709 if (user->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002710 gsm48_encode_useruser(msg, 1, &user->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002711 /* more data */
2712 if (user->more)
Harald Welte55c8f352010-03-07 23:40:35 +01002713 gsm48_encode_more(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002714
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002715 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002716}
2717
2718static int gsm48_cc_rx_userinfo(struct gsm_trans *trans, struct msgb *msg)
2719{
2720 struct gsm48_hdr *gh = msgb_l3(msg);
2721 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2722 struct tlv_parsed tp;
2723 struct gsm_mncc user;
2724
2725 memset(&user, 0, sizeof(struct gsm_mncc));
2726 user.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002727 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_USER_USER, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002728 /* user-user */
2729 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2730 user.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002731 gsm48_decode_useruser(&user.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002732 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2733 }
2734 /* more data */
2735 if (TLVP_PRESENT(&tp, GSM48_IE_MORE_DATA))
2736 user.more = 1;
2737
Harald Welte596fed42009-07-23 19:06:52 +02002738 return mncc_recvmsg(trans->subscr->net, trans, MNCC_USERINFO_IND, &user);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002739}
2740
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02002741static int _gsm48_lchan_modify(struct gsm_trans *trans, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002742{
2743 struct gsm_mncc *mode = arg;
2744
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002745 return gsm48_lchan_modify(trans->conn->lchan, mode->lchan_mode);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002746}
2747
2748static struct downstate {
2749 u_int32_t states;
2750 int type;
2751 int (*rout) (struct gsm_trans *trans, void *arg);
2752} downstatelist[] = {
2753 /* mobile originating call establishment */
2754 {SBIT(GSM_CSTATE_INITIATED), /* 5.2.1.2 */
2755 MNCC_CALL_PROC_REQ, gsm48_cc_tx_call_proc},
2756 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.2 | 5.2.1.5 */
2757 MNCC_ALERT_REQ, gsm48_cc_tx_alerting},
2758 {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 */
2759 MNCC_SETUP_RSP, gsm48_cc_tx_connect},
2760 {SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.4.2 */
2761 MNCC_PROGRESS_REQ, gsm48_cc_tx_progress},
2762 /* mobile terminating call establishment */
2763 {SBIT(GSM_CSTATE_NULL), /* 5.2.2.1 */
2764 MNCC_SETUP_REQ, gsm48_cc_tx_setup},
2765 {SBIT(GSM_CSTATE_CONNECT_REQUEST),
2766 MNCC_SETUP_COMPL_REQ, gsm48_cc_tx_connect_ack},
2767 /* signalling during call */
2768 {SBIT(GSM_CSTATE_ACTIVE),
2769 MNCC_NOTIFY_REQ, gsm48_cc_tx_notify},
2770 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ),
2771 MNCC_FACILITY_REQ, gsm48_cc_tx_facility},
2772 {ALL_STATES,
2773 MNCC_START_DTMF_RSP, gsm48_cc_tx_start_dtmf_ack},
2774 {ALL_STATES,
2775 MNCC_START_DTMF_REJ, gsm48_cc_tx_start_dtmf_rej},
2776 {ALL_STATES,
2777 MNCC_STOP_DTMF_RSP, gsm48_cc_tx_stop_dtmf_ack},
2778 {SBIT(GSM_CSTATE_ACTIVE),
2779 MNCC_HOLD_CNF, gsm48_cc_tx_hold_ack},
2780 {SBIT(GSM_CSTATE_ACTIVE),
2781 MNCC_HOLD_REJ, gsm48_cc_tx_hold_rej},
2782 {SBIT(GSM_CSTATE_ACTIVE),
2783 MNCC_RETRIEVE_CNF, gsm48_cc_tx_retrieve_ack},
2784 {SBIT(GSM_CSTATE_ACTIVE),
2785 MNCC_RETRIEVE_REJ, gsm48_cc_tx_retrieve_rej},
2786 {SBIT(GSM_CSTATE_ACTIVE),
2787 MNCC_MODIFY_REQ, gsm48_cc_tx_modify},
2788 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
2789 MNCC_MODIFY_RSP, gsm48_cc_tx_modify_complete},
2790 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
2791 MNCC_MODIFY_REJ, gsm48_cc_tx_modify_reject},
2792 {SBIT(GSM_CSTATE_ACTIVE),
2793 MNCC_USERINFO_REQ, gsm48_cc_tx_userinfo},
2794 /* clearing */
2795 {SBIT(GSM_CSTATE_INITIATED),
2796 MNCC_REJ_REQ, gsm48_cc_tx_release_compl},
2797 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_DISCONNECT_IND) - SBIT(GSM_CSTATE_RELEASE_REQ) - SBIT(GSM_CSTATE_DISCONNECT_REQ), /* 5.4.4 */
2798 MNCC_DISC_REQ, gsm48_cc_tx_disconnect},
2799 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
2800 MNCC_REL_REQ, gsm48_cc_tx_release},
2801 /* special */
2802 {ALL_STATES,
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02002803 MNCC_LCHAN_MODIFY, _gsm48_lchan_modify},
Harald Welte4bfdfe72009-06-10 23:11:52 +08002804};
2805
2806#define DOWNSLLEN \
2807 (sizeof(downstatelist) / sizeof(struct downstate))
2808
2809
2810int mncc_send(struct gsm_network *net, int msg_type, void *arg)
2811{
Harald Welte1a6f7982009-08-09 18:52:33 +02002812 int i, rc = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002813 struct gsm_trans *trans = NULL, *transt;
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002814 struct gsm_subscriber_connection *conn = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002815 struct gsm_bts *bts = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002816 struct gsm_mncc *data = arg, rel;
2817
2818 /* handle special messages */
2819 switch(msg_type) {
2820 case MNCC_BRIDGE:
2821 return tch_bridge(net, arg);
2822 case MNCC_FRAME_DROP:
Harald Welteda7ab742009-12-19 22:23:05 +01002823 return tch_recv_mncc(net, data->callref, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002824 case MNCC_FRAME_RECV:
Harald Welteda7ab742009-12-19 22:23:05 +01002825 return tch_recv_mncc(net, data->callref, 1);
2826 case GSM_TCHF_FRAME:
2827 /* Find callref */
2828 trans = trans_find_by_callref(net, data->callref);
2829 if (!trans)
2830 return -EIO;
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002831 if (!trans->conn)
Harald Welteda7ab742009-12-19 22:23:05 +01002832 return 0;
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002833 if (trans->conn->lchan->type != GSM_LCHAN_TCH_F)
Harald Welteda7ab742009-12-19 22:23:05 +01002834 return 0;
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002835 bts = trans->conn->lchan->ts->trx->bts;
Harald Welteda7ab742009-12-19 22:23:05 +01002836 switch (bts->type) {
2837 case GSM_BTS_TYPE_NANOBTS:
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002838 if (!trans->conn->lchan->abis_ip.rtp_socket)
Harald Welteda7ab742009-12-19 22:23:05 +01002839 return 0;
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002840 return rtp_send_frame(trans->conn->lchan->abis_ip.rtp_socket, arg);
Harald Welteda7ab742009-12-19 22:23:05 +01002841 case GSM_BTS_TYPE_BS11:
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002842 return trau_send_frame(trans->conn->lchan, arg);
Harald Welteda7ab742009-12-19 22:23:05 +01002843 default:
2844 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
2845 }
2846 return -EINVAL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002847 }
2848
2849 memset(&rel, 0, sizeof(struct gsm_mncc));
2850 rel.callref = data->callref;
2851
2852 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02002853 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002854
2855 /* Callref unknown */
2856 if (!trans) {
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01002857 struct gsm_subscriber *subscr;
2858
Harald Welte4a3464c2009-07-04 10:11:24 +02002859 if (msg_type != MNCC_SETUP_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002860 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
2861 "Received '%s' from MNCC with "
2862 "unknown callref %d\n", data->called.number,
2863 get_mncc_name(msg_type), data->callref);
2864 /* Invalid call reference */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002865 return mncc_release_ind(net, NULL, data->callref,
2866 GSM48_CAUSE_LOC_PRN_S_LU,
2867 GSM48_CC_CAUSE_INVAL_TRANS_ID);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002868 }
Andreas Eversbergc079be42009-06-15 23:22:09 +02002869 if (!data->called.number[0] && !data->imsi[0]) {
2870 DEBUGP(DCC, "(bts - trx - ts - ti) "
2871 "Received '%s' from MNCC with "
2872 "no number or IMSI\n", get_mncc_name(msg_type));
2873 /* Invalid number */
2874 return mncc_release_ind(net, NULL, data->callref,
2875 GSM48_CAUSE_LOC_PRN_S_LU,
2876 GSM48_CC_CAUSE_INV_NR_FORMAT);
2877 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08002878 /* New transaction due to setup, find subscriber */
Andreas Eversbergc079be42009-06-15 23:22:09 +02002879 if (data->called.number[0])
Harald Welte9176bd42009-07-23 18:46:00 +02002880 subscr = subscr_get_by_extension(net,
2881 data->called.number);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002882 else
Harald Welte9176bd42009-07-23 18:46:00 +02002883 subscr = subscr_get_by_imsi(net, data->imsi);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002884 /* If subscriber is not found */
2885 if (!subscr) {
2886 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
2887 "Received '%s' from MNCC with "
2888 "unknown subscriber %s\n", data->called.number,
2889 get_mncc_name(msg_type), data->called.number);
2890 /* Unknown subscriber */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002891 return mncc_release_ind(net, NULL, data->callref,
2892 GSM48_CAUSE_LOC_PRN_S_LU,
2893 GSM48_CC_CAUSE_UNASSIGNED_NR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002894 }
2895 /* If subscriber is not "attached" */
2896 if (!subscr->lac) {
2897 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
2898 "Received '%s' from MNCC with "
2899 "detached subscriber %s\n", data->called.number,
2900 get_mncc_name(msg_type), data->called.number);
2901 subscr_put(subscr);
2902 /* Temporarily out of order */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002903 return mncc_release_ind(net, NULL, data->callref,
2904 GSM48_CAUSE_LOC_PRN_S_LU,
2905 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002906 }
2907 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02002908 trans = trans_alloc(subscr, GSM48_PDISC_CC, 0xff, data->callref);
2909 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002910 DEBUGP(DCC, "No memory for trans.\n");
2911 subscr_put(subscr);
2912 /* Ressource unavailable */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002913 mncc_release_ind(net, NULL, data->callref,
2914 GSM48_CAUSE_LOC_PRN_S_LU,
2915 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002916 return -ENOMEM;
2917 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08002918 /* Find lchan */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002919 conn = connection_for_subscr(subscr);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01002920
Harald Welte4bfdfe72009-06-10 23:11:52 +08002921 /* If subscriber has no lchan */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002922 if (!conn) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002923 /* find transaction with this subscriber already paging */
2924 llist_for_each_entry(transt, &net->trans_list, entry) {
2925 /* Transaction of our lchan? */
2926 if (transt == trans ||
2927 transt->subscr != subscr)
2928 continue;
2929 DEBUGP(DCC, "(bts %d trx - ts - ti -- sub %s) "
2930 "Received '%s' from MNCC with "
2931 "unallocated channel, paging already "
2932 "started.\n", bts->nr,
2933 data->called.number,
2934 get_mncc_name(msg_type));
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01002935 subscr_put(subscr);
2936 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002937 return 0;
2938 }
2939 /* store setup informations until paging was successfull */
Harald Weltedcaf5652009-07-23 18:56:43 +02002940 memcpy(&trans->cc.msg, data, sizeof(struct gsm_mncc));
Harald Weltea1b28582009-08-01 19:31:47 +02002941 /* Trigger paging */
2942 paging_request(net, subscr, RSL_CHANNEED_TCH_F,
2943 setup_trig_pag_evt, subscr);
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01002944 subscr_put(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002945 return 0;
2946 }
2947 /* Assign lchan */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002948 trans->conn = conn;
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01002949 subscr_put(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002950 }
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002951
2952 if (trans->conn)
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002953 conn = trans->conn;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002954
2955 /* if paging did not respond yet */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002956 if (!conn) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002957 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02002958 "Received '%s' from MNCC in paging state\n",
Harald Welte4bfdfe72009-06-10 23:11:52 +08002959 (trans->subscr)?(trans->subscr->extension):"-",
2960 get_mncc_name(msg_type));
Harald Weltec66b71c2009-06-11 14:23:20 +08002961 mncc_set_cause(&rel, GSM48_CAUSE_LOC_PRN_S_LU,
2962 GSM48_CC_CAUSE_NORM_CALL_CLEAR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002963 if (msg_type == MNCC_REL_REQ)
2964 rc = mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
2965 else
2966 rc = mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
2967 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002968 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002969 return rc;
2970 }
2971
2972 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x sub %s) "
2973 "Received '%s' from MNCC in state %d (%s)\n",
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002974 conn->bts->nr, conn->lchan->ts->trx->nr, conn->lchan->ts->nr,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002975 trans->transaction_id,
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002976 (trans->conn->subscr)?(trans->conn->subscr->extension):"-",
Harald Weltedcaf5652009-07-23 18:56:43 +02002977 get_mncc_name(msg_type), trans->cc.state,
Harald Weltee95daf12010-03-25 12:13:02 +08002978 gsm48_cc_state_name(trans->cc.state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002979
2980 /* Find function for current state and message */
2981 for (i = 0; i < DOWNSLLEN; i++)
2982 if ((msg_type == downstatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02002983 && ((1 << trans->cc.state) & downstatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08002984 break;
2985 if (i == DOWNSLLEN) {
2986 DEBUGP(DCC, "Message unhandled at this state.\n");
2987 return 0;
2988 }
2989
2990 rc = downstatelist[i].rout(trans, arg);
2991
2992 return rc;
2993}
2994
2995
2996static struct datastate {
2997 u_int32_t states;
2998 int type;
2999 int (*rout) (struct gsm_trans *trans, struct msgb *msg);
3000} datastatelist[] = {
3001 /* mobile originating call establishment */
3002 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3003 GSM48_MT_CC_SETUP, gsm48_cc_rx_setup},
3004 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3005 GSM48_MT_CC_EMERG_SETUP, gsm48_cc_rx_setup},
3006 {SBIT(GSM_CSTATE_CONNECT_IND), /* 5.2.1.2 */
3007 GSM48_MT_CC_CONNECT_ACK, gsm48_cc_rx_connect_ack},
3008 /* mobile terminating call establishment */
3009 {SBIT(GSM_CSTATE_CALL_PRESENT), /* 5.2.2.3.2 */
3010 GSM48_MT_CC_CALL_CONF, gsm48_cc_rx_call_conf},
3011 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF), /* ???? | 5.2.2.3.2 */
3012 GSM48_MT_CC_ALERTING, gsm48_cc_rx_alerting},
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003013 {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 +08003014 GSM48_MT_CC_CONNECT, gsm48_cc_rx_connect},
3015 /* signalling during call */
3016 {ALL_STATES - SBIT(GSM_CSTATE_NULL),
3017 GSM48_MT_CC_FACILITY, gsm48_cc_rx_facility},
3018 {SBIT(GSM_CSTATE_ACTIVE),
3019 GSM48_MT_CC_NOTIFY, gsm48_cc_rx_notify},
3020 {ALL_STATES,
3021 GSM48_MT_CC_START_DTMF, gsm48_cc_rx_start_dtmf},
3022 {ALL_STATES,
3023 GSM48_MT_CC_STOP_DTMF, gsm48_cc_rx_stop_dtmf},
3024 {ALL_STATES,
3025 GSM48_MT_CC_STATUS_ENQ, gsm48_cc_rx_status_enq},
3026 {SBIT(GSM_CSTATE_ACTIVE),
3027 GSM48_MT_CC_HOLD, gsm48_cc_rx_hold},
3028 {SBIT(GSM_CSTATE_ACTIVE),
3029 GSM48_MT_CC_RETR, gsm48_cc_rx_retrieve},
3030 {SBIT(GSM_CSTATE_ACTIVE),
3031 GSM48_MT_CC_MODIFY, gsm48_cc_rx_modify},
3032 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3033 GSM48_MT_CC_MODIFY_COMPL, gsm48_cc_rx_modify_complete},
3034 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3035 GSM48_MT_CC_MODIFY_REJECT, gsm48_cc_rx_modify_reject},
3036 {SBIT(GSM_CSTATE_ACTIVE),
3037 GSM48_MT_CC_USER_INFO, gsm48_cc_rx_userinfo},
3038 /* clearing */
3039 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3040 GSM48_MT_CC_DISCONNECT, gsm48_cc_rx_disconnect},
3041 {ALL_STATES - SBIT(GSM_CSTATE_NULL), /* 5.4.4.1.2.2 */
3042 GSM48_MT_CC_RELEASE, gsm48_cc_rx_release},
3043 {ALL_STATES, /* 5.4.3.4 */
3044 GSM48_MT_CC_RELEASE_COMPL, gsm48_cc_rx_release_compl},
3045};
3046
3047#define DATASLLEN \
3048 (sizeof(datastatelist) / sizeof(struct datastate))
3049
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003050static int gsm0408_rcv_cc(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4bc90a12008-12-27 16:32:52 +00003051{
3052 struct gsm48_hdr *gh = msgb_l3(msg);
3053 u_int8_t msg_type = gh->msg_type & 0xbf;
Harald Welte6f5aee02009-07-23 21:21:14 +02003054 u_int8_t transaction_id = ((gh->proto_discr & 0xf0) ^ 0x80) >> 4; /* flip */
Harald Weltedcaf5652009-07-23 18:56:43 +02003055 struct gsm_trans *trans = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003056 int i, rc = 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00003057
Harald Welte4bfdfe72009-06-10 23:11:52 +08003058 if (msg_type & 0x80) {
3059 DEBUGP(DCC, "MSG 0x%2x not defined for PD error\n", msg_type);
3060 return -EINVAL;
Harald Welte4bc90a12008-12-27 16:32:52 +00003061 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003062
Harald Welte4bfdfe72009-06-10 23:11:52 +08003063 /* Find transaction */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003064 trans = trans_find_by_id(conn->subscr, GSM48_PDISC_CC, transaction_id);
Harald Weltedcaf5652009-07-23 18:56:43 +02003065
Harald Welte6f5aee02009-07-23 21:21:14 +02003066 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003067 "Received '%s' from MS in state %d (%s)\n",
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003068 conn->bts->nr, conn->lchan->ts->trx->nr, conn->lchan->ts->nr,
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003069 transaction_id, (conn->subscr)?(conn->subscr->extension):"-",
Harald Weltee95daf12010-03-25 12:13:02 +08003070 gsm48_cc_msg_name(msg_type), trans?(trans->cc.state):0,
3071 gsm48_cc_state_name(trans?(trans->cc.state):0));
Harald Welte4bfdfe72009-06-10 23:11:52 +08003072
3073 /* Create transaction */
3074 if (!trans) {
Harald Welte6f5aee02009-07-23 21:21:14 +02003075 DEBUGP(DCC, "Unknown transaction ID %x, "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003076 "creating new trans.\n", transaction_id);
3077 /* Create transaction */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003078 trans = trans_alloc(conn->subscr, GSM48_PDISC_CC,
Harald Weltedcaf5652009-07-23 18:56:43 +02003079 transaction_id, new_callref++);
3080 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003081 DEBUGP(DCC, "No memory for trans.\n");
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08003082 rc = gsm48_tx_simple(trans->conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02003083 GSM48_PDISC_CC | (transaction_id << 4),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003084 GSM48_MT_CC_RELEASE_COMPL);
3085 return -ENOMEM;
3086 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003087 /* Assign transaction */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003088 trans->conn = conn;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003089 }
3090
3091 /* find function for current state and message */
3092 for (i = 0; i < DATASLLEN; i++)
3093 if ((msg_type == datastatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003094 && ((1 << trans->cc.state) & datastatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003095 break;
3096 if (i == DATASLLEN) {
3097 DEBUGP(DCC, "Message unhandled at this state.\n");
3098 return 0;
3099 }
3100
3101 rc = datastatelist[i].rout(trans, msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00003102
3103 return rc;
3104}
3105
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003106/* Create a dummy to wait five seconds */
3107static void release_anchor(struct gsm_subscriber_connection *conn)
3108{
3109 if (!conn->anch_operation)
3110 return;
3111
3112 bsc_del_timer(&conn->anch_operation->timeout);
3113 talloc_free(conn->anch_operation);
3114 conn->anch_operation = NULL;
3115}
3116
3117static void anchor_timeout(void *_data)
3118{
3119 struct gsm_subscriber_connection *con = _data;
3120
3121 release_anchor(con);
3122 msc_release_connection(con);
3123}
3124
3125int gsm0408_new_conn(struct gsm_subscriber_connection *conn)
3126{
3127 conn->anch_operation = talloc_zero(conn, struct gsm_anchor_operation);
3128 if (!conn->anch_operation)
3129 return -1;
3130
3131 conn->anch_operation->timeout.data = conn;
3132 conn->anch_operation->timeout.cb = anchor_timeout;
3133 bsc_schedule_timer(&conn->anch_operation->timeout, 5, 0);
3134 return 0;
3135}
3136
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +08003137/* here we get data from the BSC level... */
3138int gsm0408_dispatch(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00003139{
3140 struct gsm48_hdr *gh = msgb_l3(msg);
3141 u_int8_t pdisc = gh->proto_discr & 0x0f;
Harald Welte8470bf22008-12-25 23:28:35 +00003142 int rc = 0;
Harald Welte51008772009-12-29 11:49:12 +01003143
Holger Hans Peter Freyther758f4df2010-06-21 10:34:03 +08003144 if (silent_call_reroute(conn, msg))
3145 return silent_call_rx(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003146
3147 switch (pdisc) {
3148 case GSM48_PDISC_CC:
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003149 release_anchor(conn);
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003150 rc = gsm0408_rcv_cc(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003151 break;
3152 case GSM48_PDISC_MM:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003153 rc = gsm0408_rcv_mm(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003154 break;
3155 case GSM48_PDISC_RR:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003156 rc = gsm0408_rcv_rr(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003157 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00003158 case GSM48_PDISC_SMS:
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003159 release_anchor(conn);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +08003160 rc = gsm0411_rcv_sms(conn, msg);
Harald Weltebcae43f2008-12-27 21:45:37 +00003161 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003162 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00003163 case GSM48_PDISC_SM_GPRS:
Harald Welte5d24ba12009-12-24 12:13:17 +01003164 LOGP(DRLL, LOGL_NOTICE, "Unimplemented "
3165 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Harald Welte52b1f982008-12-23 20:25:15 +00003166 break;
Harald Welte6eafe912009-10-16 08:32:58 +02003167 case GSM48_PDISC_NC_SS:
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003168 release_anchor(conn);
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +08003169 rc = handle_rcv_ussd(conn, msg);
Harald Welte6eafe912009-10-16 08:32:58 +02003170 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003171 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01003172 LOGP(DRLL, LOGL_NOTICE, "Unknown "
3173 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Harald Welte52b1f982008-12-23 20:25:15 +00003174 break;
3175 }
3176
3177 return rc;
3178}
Harald Welte8470bf22008-12-25 23:28:35 +00003179
Harald Welte805f6442009-07-28 18:25:29 +02003180/*
3181 * This will be ran by the linker when loading the DSO. We use it to
3182 * do system initialization, e.g. registration of signal handlers.
3183 */
3184static __attribute__((constructor)) void on_dso_load_0408(void)
3185{
Harald Welte805f6442009-07-28 18:25:29 +02003186 register_signal_handler(SS_ABISIP, handle_abisip_signal, NULL);
3187}