blob: 668b8e04e948c7fb3409b94d9df19aa12abb78e0 [file] [log] [blame]
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001/* GSM Mobile Radio Interface Layer 3 messages on the A-bis interface
Harald Welte52b1f982008-12-23 20:25:15 +00002 * 3GPP TS 04.08 version 7.21.0 Release 1998 / ETSI TS 100 940 V7.21.0 */
3
Harald Weltebf5e8df2009-02-03 12:59:45 +00004/* (C) 2008-2009 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freythere0009f12010-08-12 01:41:57 +08005 * (C) 2008-2010 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte8470bf22008-12-25 23:28:35 +00006 *
Harald Welte52b1f982008-12-23 20:25:15 +00007 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010010 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
Harald Welte52b1f982008-12-23 20:25:15 +000012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Harald Welte52b1f982008-12-23 20:25:15 +000018 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010019 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte52b1f982008-12-23 20:25:15 +000021 *
22 */
23
24
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
28#include <errno.h>
Harald Weltedb253af2008-12-30 17:56:55 +000029#include <time.h>
Harald Welte4b634542008-12-27 01:55:51 +000030#include <netinet/in.h>
Harald Welte52b1f982008-12-23 20:25:15 +000031
Sylvain Munaut30a15382009-12-24 00:27:26 +010032#include <openbsc/auth.h>
Harald Welte75a983f2008-12-27 21:34:06 +000033#include <openbsc/db.h>
Harald Welte8470bf22008-12-25 23:28:35 +000034#include <openbsc/debug.h>
35#include <openbsc/gsm_data.h>
36#include <openbsc/gsm_subscriber.h>
Daniel Willmann8b3390e2008-12-28 00:31:09 +000037#include <openbsc/gsm_04_11.h>
Harald Welte8470bf22008-12-25 23:28:35 +000038#include <openbsc/gsm_04_08.h>
Holger Hans Peter Freythere0009f12010-08-12 01:41:57 +080039#include <openbsc/gsm_04_80.h>
Harald Welte8470bf22008-12-25 23:28:35 +000040#include <openbsc/abis_rsl.h>
Holger Freytherca362a62009-01-04 21:05:01 +000041#include <openbsc/chan_alloc.h>
Harald Welte0b4c34e2009-02-09 17:54:43 +000042#include <openbsc/paging.h>
Holger Freyther053e09d2009-02-14 22:51:06 +000043#include <openbsc/signal.h>
Harald Welte45b407a2009-05-23 15:51:12 +000044#include <openbsc/trau_frame.h>
Harald Welte11fa29c2009-02-19 17:24:39 +000045#include <openbsc/trau_mux.h>
Harald Welte805f6442009-07-28 18:25:29 +020046#include <openbsc/rtp_proxy.h>
Harald Weltedcaf5652009-07-23 18:56:43 +020047#include <openbsc/transaction.h>
Harald Welte6eafe912009-10-16 08:32:58 +020048#include <openbsc/ussd.h>
Harald Welte51008772009-12-29 11:49:12 +010049#include <openbsc/silent_call.h>
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +080050#include <openbsc/bsc_api.h>
Holger Hans Peter Freyther88519ea2010-06-30 12:44:07 +080051#include <openbsc/osmo_msc.h>
Holger Hans Peter Freyther841c2002010-09-30 18:52:23 +080052#include <osmocore/bitvec.h>
53
54#include <osmocore/gsm48.h>
Holger Hans Peter Freyther12eb9b72010-09-30 18:53:47 +080055#include <osmocore/gsm0480.h>
Holger Hans Peter Freyther841c2002010-09-30 18:52:23 +080056#include <osmocore/gsm_utils.h>
57#include <osmocore/msgb.h>
58#include <osmocore/talloc.h>
59#include <osmocore/tlv.h>
Harald Welte52b1f982008-12-23 20:25:15 +000060
Harald Welte (local)d19e58b2009-08-15 02:30:58 +020061void *tall_locop_ctx;
Sylvain Munaut30a15382009-12-24 00:27:26 +010062void *tall_authciphop_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +020063
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +080064int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn, u_int32_t tmsi);
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +080065static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Harald Welte65e74cc2008-12-29 01:55:35 +000066 u_int8_t pdisc, u_int8_t msg_type);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +010067static void schedule_reject(struct gsm_subscriber_connection *conn);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +080068static void release_anchor(struct gsm_subscriber_connection *conn);
Harald Welte65e74cc2008-12-29 01:55:35 +000069
Harald Welte52b1f982008-12-23 20:25:15 +000070struct gsm_lai {
71 u_int16_t mcc;
72 u_int16_t mnc;
73 u_int16_t lac;
74};
75
Harald Welte4bfdfe72009-06-10 23:11:52 +080076static u_int32_t new_callref = 0x80000001;
77
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +080078static int gsm48_conn_sendmsg(struct msgb *msg, struct gsm_subscriber_connection *conn,
79 struct gsm_trans *trans)
80{
81 struct gsm48_hdr *gh = (struct gsm48_hdr *) msg->data;
82
83 /* if we get passed a transaction reference, do some common
84 * work that the caller no longer has to do */
85 if (trans) {
86 gh->proto_discr = trans->protocol | (trans->transaction_id << 4);
87 msg->lchan = trans->conn->lchan;
88 }
89
90
91 if (msg->lchan) {
92 msg->trx = msg->lchan->ts->trx;
93 if ((gh->proto_discr & GSM48_PDISC_MASK) == GSM48_PDISC_CC)
94 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x) "
95 "Sending '%s' to MS.\n", msg->trx->bts->nr,
96 msg->trx->nr, msg->lchan->ts->nr,
97 gh->proto_discr & 0xf0,
98 gsm48_cc_msg_name(gh->msg_type));
99 else
100 DEBUGP(DCC, "(bts %d trx %d ts %d pd %02x) "
101 "Sending 0x%02x to MS.\n", msg->trx->bts->nr,
102 msg->trx->nr, msg->lchan->ts->nr,
103 gh->proto_discr, gh->msg_type);
104 }
105
Holger Hans Peter Freyther8d380dc2010-11-10 10:16:02 +0100106 return gsm0808_submit_dtap(conn, msg, 0, 0);
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800107}
Sylvain Munaut30a15382009-12-24 00:27:26 +0100108
Holger Hans Peter Freythere0009f12010-08-12 01:41:57 +0800109int gsm48_cc_tx_notify_ss(struct gsm_trans *trans, const char *message)
110{
111 struct gsm48_hdr *gh;
112 struct msgb *ss_notify;
113
114 ss_notify = gsm0480_create_notifySS(message);
115 if (!ss_notify)
116 return -1;
117
118 gsm0480_wrap_invoke(ss_notify, GSM0480_OP_CODE_NOTIFY_SS, 0);
119 uint8_t *data = msgb_push(ss_notify, 1);
120 data[0] = ss_notify->len - 1;
121 gh = (struct gsm48_hdr *) msgb_push(ss_notify, sizeof(*gh));
122 gh->msg_type = GSM48_MT_CC_FACILITY;
123 return gsm48_conn_sendmsg(ss_notify, trans->conn, trans);
124}
125
Sylvain Munaut30a15382009-12-24 00:27:26 +0100126static void release_security_operation(struct gsm_subscriber_connection *conn)
127{
128 if (!conn->sec_operation)
129 return;
130
131 talloc_free(conn->sec_operation);
132 conn->sec_operation = NULL;
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800133 msc_release_connection(conn);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100134}
135
136static void allocate_security_operation(struct gsm_subscriber_connection *conn)
137{
Sylvain Munaut30a15382009-12-24 00:27:26 +0100138 conn->sec_operation = talloc_zero(tall_authciphop_ctx,
139 struct gsm_security_operation);
140}
141
Sylvain Munaut0fbfd1b2010-12-01 22:37:05 +0100142int gsm48_secure_channel(struct gsm_subscriber_connection *conn, int key_seq,
143 gsm_cbfn *cb, void *cb_data)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100144{
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800145 struct gsm_network *net = conn->bts->network;
146 struct gsm_subscriber *subscr = conn->subscr;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100147 struct gsm_security_operation *op;
148 struct gsm_auth_tuple atuple;
149 int status = -1, rc;
150
151 /* Check if we _can_ enable encryption. Cases where we can't:
152 * - Encryption disabled in config
153 * - Channel already secured (nothing to do)
154 * - Subscriber equipment doesn't support configured encryption
155 */
156 if (!net->a5_encryption) {
157 status = GSM_SECURITY_NOAVAIL;
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800158 } else if (conn->lchan->encr.alg_id > RSL_ENC_ALG_A5(0)) {
Sylvain Munaut30a15382009-12-24 00:27:26 +0100159 DEBUGP(DMM, "Requesting to secure an already secure channel");
160 status = GSM_SECURITY_SUCCEEDED;
161 } else if (!ms_cm2_a5n_support(subscr->equipment.classmark2,
162 net->a5_encryption)) {
163 DEBUGP(DMM, "Subscriber equipment doesn't support requested encryption");
164 status = GSM_SECURITY_NOAVAIL;
165 }
166
167 /* If not done yet, try to get info for this user */
168 if (status < 0) {
169 rc = auth_get_tuple_for_subscr(&atuple, subscr, key_seq);
170 if (rc <= 0)
171 status = GSM_SECURITY_NOAVAIL;
172 }
173
174 /* Are we done yet ? */
175 if (status >= 0)
176 return cb ?
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800177 cb(GSM_HOOK_RR_SECURITY, status, NULL, conn, cb_data) :
Sylvain Munaut30a15382009-12-24 00:27:26 +0100178 0;
179
180 /* Start an operation (can't have more than one pending !!!) */
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800181 if (conn->sec_operation)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100182 return -EBUSY;
183
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800184 allocate_security_operation(conn);
185 op = conn->sec_operation;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100186 op->cb = cb;
187 op->cb_data = cb_data;
188 memcpy(&op->atuple, &atuple, sizeof(struct gsm_auth_tuple));
189
190 /* FIXME: Should start a timer for completion ... */
191
192 /* Then do whatever is needed ... */
Harald Welte86dda082010-12-23 18:07:49 +0100193 if (rc == AUTH_DO_AUTH_THAN_CIPH) {
Sylvain Munaut30a15382009-12-24 00:27:26 +0100194 /* Start authentication */
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800195 return gsm48_tx_mm_auth_req(conn, op->atuple.rand, op->atuple.key_seq);
Harald Welte86dda082010-12-23 18:07:49 +0100196 } else if (rc == AUTH_DO_CIPH) {
Sylvain Munaut30a15382009-12-24 00:27:26 +0100197 /* Start ciphering directly */
Sylvain Munaut67706df2010-11-29 08:19:04 +0100198 return gsm0808_cipher_mode(conn, net->a5_encryption,
199 op->atuple.kc, 8, 0);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100200 }
201
202 return -EINVAL; /* not reached */
203}
204
Holger Freyther73487a22008-12-31 18:53:57 +0000205static int authorize_subscriber(struct gsm_loc_updating_operation *loc,
206 struct gsm_subscriber *subscriber)
Holger Freyther89824fc2008-12-30 16:18:18 +0000207{
208 if (!subscriber)
209 return 0;
210
Holger Freyther73487a22008-12-31 18:53:57 +0000211 /*
212 * Do not send accept yet as more information should arrive. Some
213 * phones will not send us the information and we will have to check
214 * what we want to do with that.
215 */
216 if (loc && (loc->waiting_for_imsi || loc->waiting_for_imei))
217 return 0;
218
Jan Luebbe06513f22009-08-12 12:48:00 +0200219 switch (subscriber->net->auth_policy) {
220 case GSM_AUTH_POLICY_CLOSED:
221 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200222 case GSM_AUTH_POLICY_TOKEN:
Harald Welte (local)ee9afe32009-08-13 20:44:23 +0200223 if (subscriber->authorized)
224 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200225 return (subscriber->flags & GSM_SUBSCRIBER_FIRST_CONTACT);
Jan Luebbe06513f22009-08-12 12:48:00 +0200226 case GSM_AUTH_POLICY_ACCEPT_ALL:
Holger Freyther89824fc2008-12-30 16:18:18 +0000227 return 1;
Jan Luebbe06513f22009-08-12 12:48:00 +0200228 default:
229 return 0;
230 }
Holger Freyther89824fc2008-12-30 16:18:18 +0000231}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000232
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100233static void release_loc_updating_req(struct gsm_subscriber_connection *conn)
Holger Freyther73487a22008-12-31 18:53:57 +0000234{
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100235 if (!conn->loc_operation)
Holger Freyther73487a22008-12-31 18:53:57 +0000236 return;
237
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +0800238 /* No need to keep the connection up */
239 release_anchor(conn);
240
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100241 bsc_del_timer(&conn->loc_operation->updating_timer);
242 talloc_free(conn->loc_operation);
Holger Hans Peter Freytherf93e8fa2010-12-22 08:53:28 +0100243 conn->loc_operation = NULL;
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800244 msc_release_connection(conn);
Holger Freyther73487a22008-12-31 18:53:57 +0000245}
246
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100247static void allocate_loc_updating_req(struct gsm_subscriber_connection *conn)
Holger Freyther73487a22008-12-31 18:53:57 +0000248{
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800249 if (conn->loc_operation)
250 LOGP(DMM, LOGL_ERROR, "Connection already had operation.\n");
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100251 release_loc_updating_req(conn);
Holger Freyther73487a22008-12-31 18:53:57 +0000252
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100253 conn->loc_operation = talloc_zero(tall_locop_ctx,
Harald Welte470ec292009-06-26 20:25:23 +0200254 struct gsm_loc_updating_operation);
Holger Freyther73487a22008-12-31 18:53:57 +0000255}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000256
Sylvain Munaut267fba02009-12-24 00:28:01 +0100257static int _gsm0408_authorize_sec_cb(unsigned int hooknum, unsigned int event,
258 struct msgb *msg, void *data, void *param)
259{
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800260 struct gsm_subscriber_connection *conn = data;
Sylvain Munaut267fba02009-12-24 00:28:01 +0100261 int rc = 0;
262
263 switch (event) {
264 case GSM_SECURITY_AUTH_FAILED:
265 release_loc_updating_req(conn);
266 break;
267
268 case GSM_SECURITY_NOAVAIL:
269 case GSM_SECURITY_SUCCEEDED:
270 /* We're all good */
271 db_subscriber_alloc_tmsi(conn->subscr);
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800272 rc = gsm0408_loc_upd_acc(conn, conn->subscr->tmsi);
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800273 if (conn->bts->network->send_mm_info) {
Sylvain Munaut267fba02009-12-24 00:28:01 +0100274 /* send MM INFO with network name */
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800275 rc = gsm48_tx_mm_info(conn);
Sylvain Munaut267fba02009-12-24 00:28:01 +0100276 }
277
278 /* call subscr_update after putting the loc_upd_acc
279 * in the transmit queue, since S_SUBSCR_ATTACHED might
280 * trigger further action like SMS delivery */
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800281 subscr_update(conn->subscr, conn->bts,
Sylvain Munaut267fba02009-12-24 00:28:01 +0100282 GSM_SUBSCRIBER_UPDATE_ATTACHED);
283
Holger Hans Peter Freytherd4e68722010-12-22 12:11:01 +0100284 /*
285 * The gsm0408_loc_upd_acc sends a MI with the TMSI. The
286 * MS needs to respond with a TMSI REALLOCATION COMPLETE
287 * (even if the TMSI is the same).
288 */
Sylvain Munaut267fba02009-12-24 00:28:01 +0100289 break;
290
291 default:
292 rc = -EINVAL;
293 };
294
295 return rc;
296}
297
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100298static int gsm0408_authorize(struct gsm_subscriber_connection *conn, struct msgb *msg)
Holger Freytherd51524f2009-06-09 08:27:07 +0000299{
Sylvain Munaut267fba02009-12-24 00:28:01 +0100300 if (authorize_subscriber(conn->loc_operation, conn->subscr))
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800301 return gsm48_secure_channel(conn,
Sylvain Munaut267fba02009-12-24 00:28:01 +0100302 conn->loc_operation->key_seq,
303 _gsm0408_authorize_sec_cb, NULL);
Holger Freytherd51524f2009-06-09 08:27:07 +0000304 return 0;
305}
306
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +0800307void gsm0408_clear_request(struct gsm_subscriber_connection *conn, uint32_t cause)
Holger Freyther7c19f742009-06-06 13:54:35 +0000308{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800309 struct gsm_trans *trans, *temp;
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800310
311 /* avoid someone issuing a clear */
312 conn->in_release = 1;
313
Holger Freyther7c19f742009-06-06 13:54:35 +0000314 /*
315 * Cancel any outstanding location updating request
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800316 * operation taking place on the subscriber connection.
Holger Freyther7c19f742009-06-06 13:54:35 +0000317 */
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800318 release_loc_updating_req(conn);
Holger Hans Peter Freytherc29043e2010-12-28 14:57:20 +0100319
320 /* We might need to cancel the paging response or such. */
321 if (conn->sec_operation && conn->sec_operation->cb) {
322 conn->sec_operation->cb(GSM_HOOK_RR_SECURITY, GSM_SECURITY_AUTH_FAILED,
323 NULL, conn, conn->sec_operation->cb_data);
324 }
325
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800326 release_security_operation(conn);
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +0800327 release_anchor(conn);
Holger Freyther7c19f742009-06-06 13:54:35 +0000328
Harald Welte4bfdfe72009-06-10 23:11:52 +0800329 /* Free all transactions that are associated with the released lchan */
Harald Weltedcaf5652009-07-23 18:56:43 +0200330 /* FIXME: this is not neccessarily the right thing to do, we should
331 * only set trans->lchan to NULL and wait for another lchan to be
332 * established to the same MM entity (phone/subscriber) */
Holger Hans Peter Freytherf6fb3ef2010-06-15 13:16:52 +0800333 llist_for_each_entry_safe(trans, temp, &conn->bts->network->trans_list, entry) {
334 if (trans->conn == conn)
Harald Weltedcaf5652009-07-23 18:56:43 +0200335 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800336 }
Holger Freyther7c19f742009-06-06 13:54:35 +0000337}
338
Harald Welte371efe52010-12-22 23:17:50 +0100339void gsm0408_clear_all_trans(struct gsm_network *net, int protocol)
340{
341 struct gsm_trans *trans, *temp;
342
343 LOGP(DCC, LOGL_NOTICE, "Clearing all currently active transactions!!!\n");
344
345 llist_for_each_entry_safe(trans, temp, &net->trans_list, entry) {
Harald Welteeb76c7a2010-12-23 02:47:53 +0100346 if (trans->protocol == protocol) {
347 trans->callref = 0;
Harald Welte371efe52010-12-22 23:17:50 +0100348 trans_free(trans);
Harald Welteeb76c7a2010-12-23 02:47:53 +0100349 }
Harald Welte371efe52010-12-22 23:17:50 +0100350 }
351}
352
Holger Freyther429e7762008-12-30 13:28:30 +0000353/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800354int gsm0408_loc_upd_rej(struct gsm_subscriber_connection *conn, u_int8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000355{
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800356 struct gsm_bts *bts = conn->bts;
Holger Hans Peter Freyther230a4d82010-06-15 19:40:05 +0800357 struct msgb *msg;
358
359 counter_inc(bts->network->stats.loc_upd_resp.reject);
360
361 msg = gsm48_create_loc_upd_rej(cause);
362 if (!msg) {
363 LOGP(DMM, LOGL_ERROR, "Failed to create msg for LOCATION UPDATING REJECT.\n");
364 return -1;
365 }
Harald Welte52b1f982008-12-23 20:25:15 +0000366
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800367 msg->lchan = conn->lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000368
Harald Welte (local)198d5ad2009-12-26 22:15:28 +0100369 LOGP(DMM, LOGL_INFO, "Subscriber %s: LOCATION UPDATING REJECT "
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100370 "LAC=%u BTS=%u\n", conn->subscr ?
371 subscr_name(conn->subscr) : "unknown",
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800372 bts->location_area_code, bts->nr);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100373
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800374 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000375}
376
377/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800378int gsm0408_loc_upd_acc(struct gsm_subscriber_connection *conn, u_int32_t tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000379{
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800380 struct gsm_bts *bts = conn->bts;
Harald Welte8470bf22008-12-25 23:28:35 +0000381 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000382 struct gsm48_hdr *gh;
383 struct gsm48_loc_area_id *lai;
384 u_int8_t *mid;
385
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800386 msg->lchan = conn->lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000387
388 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
389 gh->proto_discr = GSM48_PDISC_MM;
390 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
391
392 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Harald Welteafedeab2010-03-04 10:55:40 +0100393 gsm48_generate_lai(lai, bts->network->country_code,
Harald Welte52b1f982008-12-23 20:25:15 +0000394 bts->network->network_code, bts->location_area_code);
395
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +0200396 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
Holger Hans Peter Freyther5d0e56f2009-08-20 08:41:24 +0200397 gsm48_generate_mid_from_tmsi(mid, tmsi);
Harald Welte52b1f982008-12-23 20:25:15 +0000398
399 DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n");
400
Harald Welteffa55a42009-12-22 19:07:32 +0100401 counter_inc(bts->network->stats.loc_upd_resp.accept);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100402
Holger Hans Peter Freytherdc5db242010-06-15 14:07:27 +0800403 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000404}
405
Harald Weltebf5e8df2009-02-03 12:59:45 +0000406/* Transmit Chapter 9.2.10 Identity Request */
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800407static int mm_tx_identity_req(struct gsm_subscriber_connection *conn, u_int8_t id_type)
Harald Welte231ad4f2008-12-27 11:15:38 +0000408{
409 struct msgb *msg = gsm48_msgb_alloc();
410 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000411
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800412 msg->lchan = conn->lchan;
Harald Welte231ad4f2008-12-27 11:15:38 +0000413
414 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
415 gh->proto_discr = GSM48_PDISC_MM;
416 gh->msg_type = GSM48_MT_MM_ID_REQ;
417 gh->data[0] = id_type;
418
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800419 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte231ad4f2008-12-27 11:15:38 +0000420}
421
Harald Welte231ad4f2008-12-27 11:15:38 +0000422
Harald Weltebf5e8df2009-02-03 12:59:45 +0000423/* Parse Chapter 9.2.11 Identity Response */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800424static int mm_rx_id_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte231ad4f2008-12-27 11:15:38 +0000425{
426 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte75a983f2008-12-27 21:34:06 +0000427 struct gsm_lchan *lchan = msg->lchan;
Harald Welte9176bd42009-07-23 18:46:00 +0200428 struct gsm_bts *bts = lchan->ts->trx->bts;
429 struct gsm_network *net = bts->network;
Harald Welte231ad4f2008-12-27 11:15:38 +0000430 u_int8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200431 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000432
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200433 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte61253062008-12-27 11:25:50 +0000434 DEBUGP(DMM, "IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
Harald Welte231ad4f2008-12-27 11:15:38 +0000435 mi_type, mi_string);
436
Harald Welte7659de12009-12-13 12:39:18 +0100437 dispatch_signal(SS_SUBSCR, S_SUBSCR_IDENTITY, gh->data);
438
Harald Welte75a983f2008-12-27 21:34:06 +0000439 switch (mi_type) {
440 case GSM_MI_TYPE_IMSI:
Jan Luebbe370b41d2009-08-12 10:19:34 +0200441 /* look up subscriber based on IMSI, create if not found */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100442 if (!conn->subscr) {
443 conn->subscr = subscr_get_by_imsi(net, mi_string);
444 if (!conn->subscr)
445 conn->subscr = db_create_subscriber(net, mi_string);
Jan Luebbeb0dfc312009-08-12 10:12:52 +0200446 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100447 if (conn->loc_operation)
448 conn->loc_operation->waiting_for_imsi = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000449 break;
450 case GSM_MI_TYPE_IMEI:
Harald Welte255539c2008-12-28 02:26:27 +0000451 case GSM_MI_TYPE_IMEISV:
Harald Welte75a983f2008-12-27 21:34:06 +0000452 /* update subscribe <-> IMEI mapping */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100453 if (conn->subscr) {
454 db_subscriber_assoc_imei(conn->subscr, mi_string);
455 db_sync_equipment(&conn->subscr->equipment);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200456 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100457 if (conn->loc_operation)
458 conn->loc_operation->waiting_for_imei = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000459 break;
460 }
Holger Freyther73487a22008-12-31 18:53:57 +0000461
462 /* Check if we can let the mobile station enter */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100463 return gsm0408_authorize(conn, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000464}
465
Harald Welte255539c2008-12-28 02:26:27 +0000466
467static void loc_upd_rej_cb(void *data)
468{
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100469 struct gsm_subscriber_connection *conn = data;
470 struct gsm_lchan *lchan = conn->lchan;
Harald Welte1085c092009-11-18 20:33:19 +0100471 struct gsm_bts *bts = lchan->ts->trx->bts;
Harald Welte255539c2008-12-28 02:26:27 +0000472
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800473 gsm0408_loc_upd_rej(conn, bts->network->reject_cause);
Holger Hans Peter Freyther01288432010-06-16 12:52:28 +0800474 release_loc_updating_req(conn);
Harald Welte255539c2008-12-28 02:26:27 +0000475}
476
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100477static void schedule_reject(struct gsm_subscriber_connection *conn)
Holger Freytherb7193e42008-12-29 17:44:08 +0000478{
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100479 conn->loc_operation->updating_timer.cb = loc_upd_rej_cb;
480 conn->loc_operation->updating_timer.data = conn;
481 bsc_schedule_timer(&conn->loc_operation->updating_timer, 5, 0);
Holger Freytherb7193e42008-12-29 17:44:08 +0000482}
483
Harald Welte2a139372009-02-22 21:14:55 +0000484static const char *lupd_name(u_int8_t type)
485{
486 switch (type) {
487 case GSM48_LUPD_NORMAL:
488 return "NORMAL";
489 case GSM48_LUPD_PERIODIC:
490 return "PEROIDOC";
491 case GSM48_LUPD_IMSI_ATT:
492 return "IMSI ATTACH";
493 default:
494 return "UNKNOWN";
495 }
496}
497
Harald Weltebf5e8df2009-02-03 12:59:45 +0000498/* Chapter 9.2.15: Receive Location Updating Request */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800499static int mm_rx_loc_upd_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000500{
Harald Welte8470bf22008-12-25 23:28:35 +0000501 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000502 struct gsm48_loc_upd_req *lu;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800503 struct gsm_subscriber *subscr = NULL;
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800504 struct gsm_bts *bts = conn->bts;
Harald Welte8470bf22008-12-25 23:28:35 +0000505 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200506 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000507 int rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000508
Harald Welte8470bf22008-12-25 23:28:35 +0000509 lu = (struct gsm48_loc_upd_req *) gh->data;
510
511 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +0000512
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200513 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Harald Weltefc977a82008-12-27 10:19:37 +0000514
Harald Weltea0368542009-06-27 02:58:43 +0200515 DEBUGPC(DMM, "mi_type=0x%02x MI(%s) type=%s ", mi_type, mi_string,
Harald Welte2a139372009-02-22 21:14:55 +0000516 lupd_name(lu->type));
Holger Freyther73487a22008-12-31 18:53:57 +0000517
Harald Welte7659de12009-12-13 12:39:18 +0100518 dispatch_signal(SS_SUBSCR, S_SUBSCR_IDENTITY, &lu->mi_len);
519
Harald Welte24ff6ee2009-12-22 00:41:05 +0100520 switch (lu->type) {
521 case GSM48_LUPD_NORMAL:
Harald Welteffa55a42009-12-22 19:07:32 +0100522 counter_inc(bts->network->stats.loc_upd_type.normal);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100523 break;
524 case GSM48_LUPD_IMSI_ATT:
Harald Welteffa55a42009-12-22 19:07:32 +0100525 counter_inc(bts->network->stats.loc_upd_type.attach);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100526 break;
527 case GSM48_LUPD_PERIODIC:
Harald Welteffa55a42009-12-22 19:07:32 +0100528 counter_inc(bts->network->stats.loc_upd_type.periodic);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100529 break;
530 }
531
Holger Freythereaf04692009-06-06 13:54:44 +0000532 /*
533 * Pseudo Spoof detection: Just drop a second/concurrent
534 * location updating request.
535 */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100536 if (conn->loc_operation) {
Harald Weltea0368542009-06-27 02:58:43 +0200537 DEBUGPC(DMM, "ignoring request due an existing one: %p.\n",
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100538 conn->loc_operation);
Holger Hans Peter Freyther7bc5ba32010-06-15 14:09:34 +0800539 gsm0408_loc_upd_rej(conn, GSM48_REJECT_PROTOCOL_ERROR);
Holger Freythereaf04692009-06-06 13:54:44 +0000540 return 0;
541 }
542
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800543 allocate_loc_updating_req(conn);
Holger Freyther73487a22008-12-31 18:53:57 +0000544
Sylvain Munaut2030a2a2010-06-10 13:36:59 +0200545 conn->loc_operation->key_seq = lu->key_seq;
546
Harald Welte52b1f982008-12-23 20:25:15 +0000547 switch (mi_type) {
548 case GSM_MI_TYPE_IMSI:
Harald Weltea0368542009-06-27 02:58:43 +0200549 DEBUGPC(DMM, "\n");
Harald Welte231ad4f2008-12-27 11:15:38 +0000550 /* we always want the IMEI, too */
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800551 rc = mm_tx_identity_req(conn, GSM_MI_TYPE_IMEI);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100552 conn->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000553
Jan Luebbe370b41d2009-08-12 10:19:34 +0200554 /* look up subscriber based on IMSI, create if not found */
555 subscr = subscr_get_by_imsi(bts->network, mi_string);
556 if (!subscr) {
557 subscr = db_create_subscriber(bts->network, mi_string);
558 }
Harald Welte4b634542008-12-27 01:55:51 +0000559 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000560 case GSM_MI_TYPE_TMSI:
Harald Weltea0368542009-06-27 02:58:43 +0200561 DEBUGPC(DMM, "\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000562 /* look up the subscriber based on TMSI, request IMSI if it fails */
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200563 subscr = subscr_get_by_tmsi(bts->network,
564 tmsi_from_string(mi_string));
Harald Welte52b1f982008-12-23 20:25:15 +0000565 if (!subscr) {
Harald Welte231ad4f2008-12-27 11:15:38 +0000566 /* send IDENTITY REQUEST message to get IMSI */
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800567 rc = mm_tx_identity_req(conn, GSM_MI_TYPE_IMSI);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100568 conn->loc_operation->waiting_for_imsi = 1;
Harald Welte52b1f982008-12-23 20:25:15 +0000569 }
Harald Weltef5f512c2010-06-07 17:56:32 +0200570 /* we always want the IMEI, too */
Holger Hans Peter Freytherd521d972010-06-15 14:11:01 +0800571 rc = mm_tx_identity_req(conn, GSM_MI_TYPE_IMEI);
Harald Weltef5f512c2010-06-07 17:56:32 +0200572 conn->loc_operation->waiting_for_imei = 1;
Harald Welte52b1f982008-12-23 20:25:15 +0000573 break;
574 case GSM_MI_TYPE_IMEI:
575 case GSM_MI_TYPE_IMEISV:
576 /* no sim card... FIXME: what to do ? */
Harald Weltea0368542009-06-27 02:58:43 +0200577 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000578 break;
579 default:
Harald Weltea0368542009-06-27 02:58:43 +0200580 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000581 break;
582 }
583
Harald Welte24516ea2009-07-04 10:18:00 +0200584 /* schedule the reject timer */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100585 schedule_reject(conn);
Harald Welte24516ea2009-07-04 10:18:00 +0200586
Harald Welte4bfdfe72009-06-10 23:11:52 +0800587 if (!subscr) {
Harald Weltea0368542009-06-27 02:58:43 +0200588 DEBUGPC(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte4bfdfe72009-06-10 23:11:52 +0800589 /* FIXME: request id? close channel? */
590 return -EINVAL;
591 }
592
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100593 conn->subscr = subscr;
594 conn->subscr->equipment.classmark1 = lu->classmark1;
Harald Welte255539c2008-12-28 02:26:27 +0000595
Harald Welte24516ea2009-07-04 10:18:00 +0200596 /* check if we can let the subscriber into our network immediately
597 * or if we need to wait for identity responses. */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100598 return gsm0408_authorize(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000599}
600
Harald Welte4bfdfe72009-06-10 23:11:52 +0800601#if 0
602static u_int8_t to_bcd8(u_int8_t val)
603{
604 return ((val / 10) << 4) | (val % 10);
605}
606#endif
607
Harald Weltedb253af2008-12-30 17:56:55 +0000608/* Section 9.2.15a */
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800609int gsm48_tx_mm_info(struct gsm_subscriber_connection *conn)
Harald Weltedb253af2008-12-30 17:56:55 +0000610{
611 struct msgb *msg = gsm48_msgb_alloc();
612 struct gsm48_hdr *gh;
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800613 struct gsm_network *net = conn->bts->network;
Harald Weltedb253af2008-12-30 17:56:55 +0000614 u_int8_t *ptr8;
Daniel Willmanneea93372009-08-13 03:42:07 +0200615 int name_len, name_pad;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800616#if 0
617 time_t cur_t;
618 struct tm* cur_time;
619 int tz15min;
620#endif
Harald Weltedb253af2008-12-30 17:56:55 +0000621
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800622 msg->lchan = conn->lchan;
Harald Weltedb253af2008-12-30 17:56:55 +0000623
624 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
625 gh->proto_discr = GSM48_PDISC_MM;
626 gh->msg_type = GSM48_MT_MM_INFO;
627
628 if (net->name_long) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200629#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000630 name_len = strlen(net->name_long);
631 /* 10.5.3.5a */
632 ptr8 = msgb_put(msg, 3);
633 ptr8[0] = GSM48_IE_NAME_LONG;
634 ptr8[1] = name_len*2 +1;
635 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
636
637 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
638 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000639 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +0000640
641 /* FIXME: Use Cell Broadcast, not UCS-2, since
642 * UCS-2 is only supported by later revisions of the spec */
Daniel Willmanneea93372009-08-13 03:42:07 +0200643#endif
644 name_len = (strlen(net->name_long)*7)/8;
645 name_pad = (8 - strlen(net->name_long)*7)%8;
646 if (name_pad > 0)
647 name_len++;
648 /* 10.5.3.5a */
649 ptr8 = msgb_put(msg, 3);
650 ptr8[0] = GSM48_IE_NAME_LONG;
651 ptr8[1] = name_len +1;
652 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
653
654 ptr8 = msgb_put(msg, name_len);
655 gsm_7bit_encode(ptr8, net->name_long);
656
Harald Weltedb253af2008-12-30 17:56:55 +0000657 }
658
659 if (net->name_short) {
Daniel Willmanneea93372009-08-13 03:42:07 +0200660#if 0
Harald Weltedb253af2008-12-30 17:56:55 +0000661 name_len = strlen(net->name_short);
662 /* 10.5.3.5a */
663 ptr8 = (u_int8_t *) msgb_put(msg, 3);
Harald Welte7543eb72009-07-19 17:51:36 +0200664 ptr8[0] = GSM48_IE_NAME_SHORT;
Harald Weltedb253af2008-12-30 17:56:55 +0000665 ptr8[1] = name_len*2 + 1;
666 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
667
Harald Weltee872cb12009-01-01 00:33:37 +0000668 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000669 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000670 ptr16[i] = htons(net->name_short[i]);
Daniel Willmanneea93372009-08-13 03:42:07 +0200671#endif
672 name_len = (strlen(net->name_short)*7)/8;
673 name_pad = (8 - strlen(net->name_short)*7)%8;
674 if (name_pad > 0)
675 name_len++;
676 /* 10.5.3.5a */
677 ptr8 = (u_int8_t *) msgb_put(msg, 3);
678 ptr8[0] = GSM48_IE_NAME_SHORT;
679 ptr8[1] = name_len +1;
680 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
681
682 ptr8 = msgb_put(msg, name_len);
683 gsm_7bit_encode(ptr8, net->name_short);
684
Harald Weltedb253af2008-12-30 17:56:55 +0000685 }
686
687#if 0
688 /* Section 10.5.3.9 */
689 cur_t = time(NULL);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800690 cur_time = gmtime(&cur_t);
Harald Weltedb253af2008-12-30 17:56:55 +0000691 ptr8 = msgb_put(msg, 8);
692 ptr8[0] = GSM48_IE_NET_TIME_TZ;
693 ptr8[1] = to_bcd8(cur_time->tm_year % 100);
694 ptr8[2] = to_bcd8(cur_time->tm_mon);
695 ptr8[3] = to_bcd8(cur_time->tm_mday);
696 ptr8[4] = to_bcd8(cur_time->tm_hour);
697 ptr8[5] = to_bcd8(cur_time->tm_min);
698 ptr8[6] = to_bcd8(cur_time->tm_sec);
699 /* 02.42: coded as BCD encoded signed value in units of 15 minutes */
700 tz15min = (cur_time->tm_gmtoff)/(60*15);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800701 ptr8[7] = to_bcd8(tz15min);
Harald Weltedb253af2008-12-30 17:56:55 +0000702 if (tz15min < 0)
Harald Welte4bfdfe72009-06-10 23:11:52 +0800703 ptr8[7] |= 0x80;
Harald Weltedb253af2008-12-30 17:56:55 +0000704#endif
705
Daniel Willmanneea93372009-08-13 03:42:07 +0200706 DEBUGP(DMM, "-> MM INFO\n");
707
Holger Hans Peter Freyther91401742010-06-15 14:16:02 +0800708 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Weltedb253af2008-12-30 17:56:55 +0000709}
710
Harald Welte7984d5c2009-08-12 22:56:50 +0200711/* Section 9.2.2 */
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800712int gsm48_tx_mm_auth_req(struct gsm_subscriber_connection *conn, u_int8_t *rand, int key_seq)
Harald Welte7984d5c2009-08-12 22:56:50 +0200713{
714 struct msgb *msg = gsm48_msgb_alloc();
715 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Sylvain Munaut849f5542009-09-27 11:10:17 +0200716 struct gsm48_auth_req *ar = (struct gsm48_auth_req *) msgb_put(msg, sizeof(*ar));
Harald Welte7984d5c2009-08-12 22:56:50 +0200717
Sylvain Munaut8608e7c2009-12-24 00:24:29 +0100718 DEBUGP(DMM, "-> AUTH REQ (rand = %s)\n", hexdump(rand, 16));
Harald Welte7984d5c2009-08-12 22:56:50 +0200719
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800720 msg->lchan = conn->lchan;
Harald Welte7984d5c2009-08-12 22:56:50 +0200721 gh->proto_discr = GSM48_PDISC_MM;
722 gh->msg_type = GSM48_MT_MM_AUTH_REQ;
723
Sylvain Munautbd55a6d2009-12-24 00:23:46 +0100724 ar->key_seq = key_seq;
Sylvain Munaut849f5542009-09-27 11:10:17 +0200725
Harald Welte7984d5c2009-08-12 22:56:50 +0200726 /* 16 bytes RAND parameters */
Harald Welte7984d5c2009-08-12 22:56:50 +0200727 if (rand)
Sylvain Munaut849f5542009-09-27 11:10:17 +0200728 memcpy(ar->rand, rand, 16);
Harald Welte7984d5c2009-08-12 22:56:50 +0200729
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800730 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte7984d5c2009-08-12 22:56:50 +0200731}
732
733/* Section 9.2.1 */
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800734int gsm48_tx_mm_auth_rej(struct gsm_subscriber_connection *conn)
Harald Welte7984d5c2009-08-12 22:56:50 +0200735{
736 DEBUGP(DMM, "-> AUTH REJECT\n");
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800737 return gsm48_tx_simple(conn, GSM48_PDISC_MM, GSM48_MT_MM_AUTH_REJ);
Harald Welte7984d5c2009-08-12 22:56:50 +0200738}
739
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800740static int gsm48_tx_mm_serv_ack(struct gsm_subscriber_connection *conn)
Harald Welte4b634542008-12-27 01:55:51 +0000741{
Harald Welte4b634542008-12-27 01:55:51 +0000742 DEBUGP(DMM, "-> CM SERVICE ACK\n");
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +0800743 return gsm48_tx_simple(conn, GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_ACC);
Harald Welte4b634542008-12-27 01:55:51 +0000744}
Harald Welteba4cf162009-01-10 01:49:35 +0000745
746/* 9.2.6 CM service reject */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100747static int gsm48_tx_mm_serv_rej(struct gsm_subscriber_connection *conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000748 enum gsm48_reject_value value)
749{
Holger Hans Peter Freyther2c0f1662010-06-15 19:39:27 +0800750 struct msgb *msg;
Harald Welteba4cf162009-01-10 01:49:35 +0000751
Holger Hans Peter Freyther2c0f1662010-06-15 19:39:27 +0800752 msg = gsm48_create_mm_serv_rej(value);
753 if (!msg) {
754 LOGP(DMM, LOGL_ERROR, "Failed to allocate CM Service Reject.\n");
755 return -1;
756 }
Harald Welteba4cf162009-01-10 01:49:35 +0000757
Holger Hans Peter Freyther2c0f1662010-06-15 19:39:27 +0800758 DEBUGP(DMM, "-> CM SERVICE Reject cause: %d\n", value);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100759 msg->lchan = conn->lchan;
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +0800760 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welteba4cf162009-01-10 01:49:35 +0000761}
762
Sylvain Munautba87f452009-12-24 00:28:46 +0100763static int _gsm48_rx_mm_serv_req_sec_cb(
764 unsigned int hooknum, unsigned int event,
765 struct msgb *msg, void *data, void *param)
766{
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800767 struct gsm_subscriber_connection *conn = data;
Sylvain Munautba87f452009-12-24 00:28:46 +0100768 int rc = 0;
769
770 switch (event) {
771 case GSM_SECURITY_AUTH_FAILED:
772 /* Nothing to do */
773 break;
774
775 case GSM_SECURITY_NOAVAIL:
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800776 rc = gsm48_tx_mm_serv_ack(conn);
Sylvain Munautba87f452009-12-24 00:28:46 +0100777 break;
778
779 case GSM_SECURITY_SUCCEEDED:
780 /* nothing to do. CIPHER MODE COMMAND is
781 * implicit CM SERV ACK */
782 break;
783
784 default:
785 rc = -EINVAL;
786 };
787
788 return rc;
789}
790
Harald Welte4ed0e922009-01-10 03:17:30 +0000791/*
792 * Handle CM Service Requests
793 * a) Verify that the packet is long enough to contain the information
794 * we require otherwsie reject with INCORRECT_MESSAGE
795 * b) Try to parse the TMSI. If we do not have one reject
796 * c) Check that we know the subscriber with the TMSI otherwise reject
797 * with a HLR cause
798 * d) Set the subscriber on the gsm_lchan and accept
799 */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800800static int gsm48_rx_mm_serv_req(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4b634542008-12-27 01:55:51 +0000801{
Harald Welteba4cf162009-01-10 01:49:35 +0000802 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200803 char mi_string[GSM48_MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +0000804
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800805 struct gsm_bts *bts = conn->bts;
Harald Welteba4cf162009-01-10 01:49:35 +0000806 struct gsm_subscriber *subscr;
807 struct gsm48_hdr *gh = msgb_l3(msg);
808 struct gsm48_service_request *req =
809 (struct gsm48_service_request *)gh->data;
Holger Hans Peter Freyther5d658062010-05-14 08:02:08 +0800810 /* unfortunately in Phase1 the classmark2 length is variable */
Harald Weltec9e02182009-05-01 19:07:53 +0000811 u_int8_t classmark2_len = gh->data[1];
812 u_int8_t *classmark2 = gh->data+2;
813 u_int8_t mi_len = *(classmark2 + classmark2_len);
814 u_int8_t *mi = (classmark2 + classmark2_len + 1);
Harald Welteba4cf162009-01-10 01:49:35 +0000815
Harald Weltec9e02182009-05-01 19:07:53 +0000816 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
Harald Welteba4cf162009-01-10 01:49:35 +0000817 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
Harald Weltec9e02182009-05-01 19:07:53 +0000818 DEBUGPC(DMM, "wrong sized message\n");
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800819 return gsm48_tx_mm_serv_rej(conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000820 GSM48_REJECT_INCORRECT_MESSAGE);
821 }
822
823 if (msg->data_len < req->mi_len + 6) {
Harald Weltec9e02182009-05-01 19:07:53 +0000824 DEBUGPC(DMM, "does not fit in packet\n");
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800825 return gsm48_tx_mm_serv_rej(conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000826 GSM48_REJECT_INCORRECT_MESSAGE);
827 }
828
Harald Weltec9e02182009-05-01 19:07:53 +0000829 mi_type = mi[0] & GSM_MI_TYPE_MASK;
Harald Welteba4cf162009-01-10 01:49:35 +0000830 if (mi_type != GSM_MI_TYPE_TMSI) {
Harald Weltec9e02182009-05-01 19:07:53 +0000831 DEBUGPC(DMM, "mi_type is not TMSI: %d\n", mi_type);
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800832 return gsm48_tx_mm_serv_rej(conn,
Harald Welteba4cf162009-01-10 01:49:35 +0000833 GSM48_REJECT_INCORRECT_MESSAGE);
834 }
835
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200836 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
Harald Weltec9e02182009-05-01 19:07:53 +0000837 DEBUGPC(DMM, "serv_type=0x%02x mi_type=0x%02x M(%s)\n",
Harald Welte4ed0e922009-01-10 03:17:30 +0000838 req->cm_service_type, mi_type, mi_string);
Harald Weltebcae43f2008-12-27 21:45:37 +0000839
Harald Welte7659de12009-12-13 12:39:18 +0100840 dispatch_signal(SS_SUBSCR, S_SUBSCR_IDENTITY, (classmark2 + classmark2_len));
841
Harald Welte3ac7f102009-08-10 10:12:45 +0200842 if (is_siemens_bts(bts))
843 send_siemens_mrpci(msg->lchan, classmark2-1);
844
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200845 subscr = subscr_get_by_tmsi(bts->network,
846 tmsi_from_string(mi_string));
Holger Freythereb443982009-06-04 13:58:42 +0000847
Harald Welte2a139372009-02-22 21:14:55 +0000848 /* FIXME: if we don't know the TMSI, inquire abit IMSI and allocate new TMSI */
Harald Welte4ed0e922009-01-10 03:17:30 +0000849 if (!subscr)
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800850 return gsm48_tx_mm_serv_rej(conn,
Harald Welte4ed0e922009-01-10 03:17:30 +0000851 GSM48_REJECT_IMSI_UNKNOWN_IN_HLR);
852
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800853 if (!conn->subscr)
854 conn->subscr = subscr;
855 else if (conn->subscr == subscr)
Sylvain Munautea3f6742009-12-18 18:28:10 +0100856 subscr_put(subscr); /* lchan already has a ref, don't need another one */
857 else {
Harald Welte9bb7c702009-01-10 03:21:41 +0000858 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
859 subscr_put(subscr);
860 }
861
Harald Weltec2e302d2009-07-05 14:08:13 +0200862 subscr->equipment.classmark2_len = classmark2_len;
863 memcpy(subscr->equipment.classmark2, classmark2, classmark2_len);
864 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +0000865
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800866 return gsm48_secure_channel(conn, req->cipher_key_seq,
Sylvain Munautba87f452009-12-24 00:28:46 +0100867 _gsm48_rx_mm_serv_req_sec_cb, NULL);
Harald Welte4b634542008-12-27 01:55:51 +0000868}
869
Harald Welte2a139372009-02-22 21:14:55 +0000870static int gsm48_rx_mm_imsi_detach_ind(struct msgb *msg)
871{
Harald Welte9176bd42009-07-23 18:46:00 +0200872 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2a139372009-02-22 21:14:55 +0000873 struct gsm48_hdr *gh = msgb_l3(msg);
874 struct gsm48_imsi_detach_ind *idi =
875 (struct gsm48_imsi_detach_ind *) gh->data;
876 u_int8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200877 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +0800878 struct gsm_subscriber *subscr = NULL;
Harald Welte2a139372009-02-22 21:14:55 +0000879
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200880 gsm48_mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
Harald Welte2a139372009-02-22 21:14:55 +0000881 DEBUGP(DMM, "IMSI DETACH INDICATION: mi_type=0x%02x MI(%s): ",
882 mi_type, mi_string);
883
Harald Welteffa55a42009-12-22 19:07:32 +0100884 counter_inc(bts->network->stats.loc_upd_type.detach);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100885
Harald Welte2a139372009-02-22 21:14:55 +0000886 switch (mi_type) {
887 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200888 subscr = subscr_get_by_tmsi(bts->network,
889 tmsi_from_string(mi_string));
Harald Welte2a139372009-02-22 21:14:55 +0000890 break;
891 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +0200892 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +0000893 break;
894 case GSM_MI_TYPE_IMEI:
895 case GSM_MI_TYPE_IMEISV:
896 /* no sim card... FIXME: what to do ? */
Holger Freyther79f4ae62009-06-02 03:25:04 +0000897 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +0000898 break;
899 default:
Holger Freyther79f4ae62009-06-02 03:25:04 +0000900 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +0000901 break;
902 }
903
Holger Freyther4a49e772009-04-12 05:37:29 +0000904 if (subscr) {
905 subscr_update(subscr, msg->trx->bts,
906 GSM_SUBSCRIBER_UPDATE_DETACHED);
Harald Welte2e6d4682009-12-24 14:50:24 +0100907 DEBUGP(DMM, "Subscriber: %s\n", subscr_name(subscr));
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200908
909 subscr->equipment.classmark1 = idi->classmark1;
910 db_sync_equipment(&subscr->equipment);
911
Holger Freytherc21cfbc2009-06-02 02:54:57 +0000912 subscr_put(subscr);
Holger Freyther4a49e772009-04-12 05:37:29 +0000913 } else
Harald Welte2a139372009-02-22 21:14:55 +0000914 DEBUGP(DMM, "Unknown Subscriber ?!?\n");
915
Harald Welte31981a02009-12-20 09:58:40 +0100916 /* FIXME: iterate over all transactions and release them,
917 * imagine an IMSI DETACH happening during an active call! */
918
Harald Welteb83d9382009-12-12 21:00:48 +0100919 /* subscriber is detached: should we release lchan? */
Harald Welte2a139372009-02-22 21:14:55 +0000920 return 0;
921}
922
Harald Welted2a7f5a2009-06-05 20:08:20 +0000923static int gsm48_rx_mm_status(struct msgb *msg)
924{
925 struct gsm48_hdr *gh = msgb_l3(msg);
926
927 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
928
929 return 0;
930}
931
Sylvain Munaut30a15382009-12-24 00:27:26 +0100932/* Chapter 9.2.3: Authentication Response */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800933static int gsm48_rx_mm_auth_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Sylvain Munaut30a15382009-12-24 00:27:26 +0100934{
935 struct gsm48_hdr *gh = msgb_l3(msg);
936 struct gsm48_auth_resp *ar = (struct gsm48_auth_resp*) gh->data;
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800937 struct gsm_network *net = conn->bts->network;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100938
Sylvain Munautc593cf12010-06-10 23:51:41 +0200939 DEBUGP(DMM, "MM AUTHENTICATION RESPONSE (sres = %s): ",
Sylvain Munaut30a15382009-12-24 00:27:26 +0100940 hexdump(ar->sres, 4));
941
942 /* Safety check */
943 if (!conn->sec_operation) {
944 DEBUGP(DMM, "No authentication/cipher operation in progress !!!\n");
945 return -EIO;
946 }
947
948 /* Validate SRES */
949 if (memcmp(conn->sec_operation->atuple.sres, ar->sres,4)) {
Holger Hans Peter Freyther59f787a2010-12-27 10:57:56 +0100950 int rc;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100951 gsm_cbfn *cb = conn->sec_operation->cb;
Sylvain Munautc593cf12010-06-10 23:51:41 +0200952
953 DEBUGPC(DMM, "Invalid (expected %s)\n",
954 hexdump(conn->sec_operation->atuple.sres, 4));
955
Sylvain Munaut30a15382009-12-24 00:27:26 +0100956 if (cb)
957 cb(GSM_HOOK_RR_SECURITY, GSM_SECURITY_AUTH_FAILED,
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +0800958 NULL, conn, conn->sec_operation->cb_data);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100959
Holger Hans Peter Freyther59f787a2010-12-27 10:57:56 +0100960 rc = gsm48_tx_mm_auth_rej(conn);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100961 release_security_operation(conn);
Holger Hans Peter Freyther59f787a2010-12-27 10:57:56 +0100962 return rc;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100963 }
964
Sylvain Munautc593cf12010-06-10 23:51:41 +0200965 DEBUGPC(DMM, "OK\n");
966
Sylvain Munaut30a15382009-12-24 00:27:26 +0100967 /* Start ciphering */
Sylvain Munaut67706df2010-11-29 08:19:04 +0100968 return gsm0808_cipher_mode(conn, net->a5_encryption,
969 conn->sec_operation->atuple.kc, 8, 0);
Sylvain Munaut30a15382009-12-24 00:27:26 +0100970}
971
Harald Weltebf5e8df2009-02-03 12:59:45 +0000972/* Receive a GSM 04.08 Mobility Management (MM) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800973static int gsm0408_rcv_mm(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000974{
975 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800976 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000977
978 switch (gh->msg_type & 0xbf) {
979 case GSM48_MT_MM_LOC_UPD_REQUEST:
Harald Weltea0368542009-06-27 02:58:43 +0200980 DEBUGP(DMM, "LOCATION UPDATING REQUEST: ");
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800981 rc = mm_rx_loc_upd_req(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000982 break;
983 case GSM48_MT_MM_ID_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800984 rc = mm_rx_id_resp(conn, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000985 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000986 case GSM48_MT_MM_CM_SERV_REQ:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800987 rc = gsm48_rx_mm_serv_req(conn, msg);
Harald Welte4b634542008-12-27 01:55:51 +0000988 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000989 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +0000990 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000991 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000992 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte69b2af22009-01-06 19:47:00 +0000993 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +0800994 conn->subscr ?
995 subscr_name(conn->subscr) :
Harald Welte69b2af22009-01-06 19:47:00 +0000996 "unknown subscriber");
Holger Hans Peter Freytherd4e68722010-12-22 12:11:01 +0100997 release_loc_updating_req(conn);
Harald Welte69b2af22009-01-06 19:47:00 +0000998 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000999 case GSM48_MT_MM_IMSI_DETACH_IND:
Harald Welte2a139372009-02-22 21:14:55 +00001000 rc = gsm48_rx_mm_imsi_detach_ind(msg);
1001 break;
1002 case GSM48_MT_MM_CM_REEST_REQ:
1003 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
1004 break;
1005 case GSM48_MT_MM_AUTH_RESP:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001006 rc = gsm48_rx_mm_auth_resp(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001007 break;
1008 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01001009 LOGP(DMM, LOGL_NOTICE, "Unknown GSM 04.08 MM msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00001010 gh->msg_type);
1011 break;
1012 }
1013
1014 return rc;
1015}
Harald Weltebf5e8df2009-02-03 12:59:45 +00001016
Harald Welte2d35ae62009-02-06 12:02:13 +00001017/* Receive a PAGING RESPONSE message from the MS */
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001018static int gsm48_rx_rr_pag_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte2d35ae62009-02-06 12:02:13 +00001019{
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001020 struct gsm_bts *bts = conn->bts;
Harald Welte2d35ae62009-02-06 12:02:13 +00001021 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001022 struct gsm48_pag_resp *resp;
Harald Welte61548982009-02-22 21:26:29 +00001023 u_int8_t *classmark2_lv = gh->data + 1;
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001024 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001025 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001026 struct gsm_subscriber *subscr = NULL;
Harald Welte2d35ae62009-02-06 12:02:13 +00001027 int rc = 0;
1028
Holger Hans Peter Freytherf6903de2010-05-16 01:51:14 +08001029 resp = (struct gsm48_pag_resp *) &gh->data[0];
1030 gsm48_paging_extract_mi(resp, msgb_l3len(msg) - sizeof(*gh),
1031 mi_string, &mi_type);
Harald Welte2d35ae62009-02-06 12:02:13 +00001032 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
1033 mi_type, mi_string);
Harald Welte3ac7f102009-08-10 10:12:45 +02001034
Harald Weltefe18d8f2009-02-22 21:14:24 +00001035 switch (mi_type) {
1036 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001037 subscr = subscr_get_by_tmsi(bts->network,
1038 tmsi_from_string(mi_string));
Harald Weltefe18d8f2009-02-22 21:14:24 +00001039 break;
1040 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001041 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +00001042 break;
1043 }
Harald Welte2d35ae62009-02-06 12:02:13 +00001044
1045 if (!subscr) {
1046 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte09e38af2009-02-16 22:52:23 +00001047 /* FIXME: request id? close channel? */
Harald Welte2d35ae62009-02-06 12:02:13 +00001048 return -EINVAL;
1049 }
1050 DEBUGP(DRR, "<- Channel was requested by %s\n",
Harald Welte76042182009-08-08 16:03:15 +02001051 subscr->name && strlen(subscr->name) ? subscr->name : subscr->imsi);
Holger Freyther053e09d2009-02-14 22:51:06 +00001052
Harald Weltec2e302d2009-07-05 14:08:13 +02001053 subscr->equipment.classmark2_len = *classmark2_lv;
1054 memcpy(subscr->equipment.classmark2, classmark2_lv+1, *classmark2_lv);
1055 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001056
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001057 rc = gsm48_handle_paging_resp(conn, msg, subscr);
Harald Welte2d35ae62009-02-06 12:02:13 +00001058 return rc;
1059}
1060
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001061static int gsm48_rx_rr_classmark(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Weltef7c43522009-06-09 20:24:21 +00001062{
1063 struct gsm48_hdr *gh = msgb_l3(msg);
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001064 struct gsm_subscriber *subscr = conn->subscr;
Harald Weltef7c43522009-06-09 20:24:21 +00001065 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1066 u_int8_t cm2_len, cm3_len = 0;
1067 u_int8_t *cm2, *cm3 = NULL;
1068
1069 DEBUGP(DRR, "CLASSMARK CHANGE ");
1070
1071 /* classmark 2 */
1072 cm2_len = gh->data[0];
1073 cm2 = &gh->data[1];
1074 DEBUGPC(DRR, "CM2(len=%u) ", cm2_len);
1075
1076 if (payload_len > cm2_len + 1) {
1077 /* we must have a classmark3 */
1078 if (gh->data[cm2_len+1] != 0x20) {
1079 DEBUGPC(DRR, "ERR CM3 TAG\n");
1080 return -EINVAL;
1081 }
1082 if (cm2_len > 3) {
1083 DEBUGPC(DRR, "CM2 too long!\n");
1084 return -EINVAL;
1085 }
1086
1087 cm3_len = gh->data[cm2_len+2];
1088 cm3 = &gh->data[cm2_len+3];
1089 if (cm3_len > 14) {
1090 DEBUGPC(DRR, "CM3 len %u too long!\n", cm3_len);
1091 return -EINVAL;
1092 }
1093 DEBUGPC(DRR, "CM3(len=%u)\n", cm3_len);
1094 }
1095 if (subscr) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001096 subscr->equipment.classmark2_len = cm2_len;
1097 memcpy(subscr->equipment.classmark2, cm2, cm2_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001098 if (cm3) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001099 subscr->equipment.classmark3_len = cm3_len;
1100 memcpy(subscr->equipment.classmark3, cm3, cm3_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001101 }
Harald Weltec2e302d2009-07-05 14:08:13 +02001102 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001103 }
1104
Harald Weltef7c43522009-06-09 20:24:21 +00001105 return 0;
1106}
1107
Harald Weltecf5b3592009-05-01 18:28:42 +00001108static int gsm48_rx_rr_status(struct msgb *msg)
1109{
1110 struct gsm48_hdr *gh = msgb_l3(msg);
1111
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001112 DEBUGP(DRR, "STATUS rr_cause = %s\n",
Harald Weltecf5b3592009-05-01 18:28:42 +00001113 rr_cause_name(gh->data[0]));
1114
1115 return 0;
1116}
1117
Harald Weltef7c43522009-06-09 20:24:21 +00001118static int gsm48_rx_rr_meas_rep(struct msgb *msg)
1119{
Harald Welted12b0fd2009-12-15 21:36:05 +01001120 struct gsm_meas_rep *meas_rep = lchan_next_meas_rep(msg->lchan);
Harald Weltef7c43522009-06-09 20:24:21 +00001121
Harald Welte3c7dc6e2009-11-29 19:07:28 +01001122 /* This shouldn't actually end up here, as RSL treats
1123 * L3 Info of 08.58 MEASUREMENT REPORT different by calling
1124 * directly into gsm48_parse_meas_rep */
1125 DEBUGP(DMEAS, "DIRECT GSM48 MEASUREMENT REPORT ?!? ");
Harald Welted12b0fd2009-12-15 21:36:05 +01001126 gsm48_parse_meas_rep(meas_rep, msg);
Harald Weltef7c43522009-06-09 20:24:21 +00001127
1128 return 0;
1129}
1130
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001131static int gsm48_rx_rr_app_info(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001132{
1133 struct gsm48_hdr *gh = msgb_l3(msg);
1134 u_int8_t apdu_id_flags;
1135 u_int8_t apdu_len;
1136 u_int8_t *apdu_data;
1137
1138 apdu_id_flags = gh->data[0];
1139 apdu_len = gh->data[1];
1140 apdu_data = gh->data+2;
1141
1142 DEBUGP(DNM, "RX APPLICATION INFO id/flags=0x%02x apdu_len=%u apdu=%s",
1143 apdu_id_flags, apdu_len, hexdump(apdu_data, apdu_len));
1144
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001145 return db_apdu_blob_store(conn->subscr, apdu_id_flags, apdu_len, apdu_data);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001146}
1147
Sylvain Munaut30a15382009-12-24 00:27:26 +01001148/* Chapter 9.1.10 Ciphering Mode Complete */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001149static int gsm48_rx_rr_ciph_m_compl(struct gsm_subscriber_connection *conn, struct msgb *msg)
Sylvain Munaut30a15382009-12-24 00:27:26 +01001150{
Sylvain Munaut30a15382009-12-24 00:27:26 +01001151 gsm_cbfn *cb;
1152 int rc = 0;
1153
1154 DEBUGP(DRR, "CIPHERING MODE COMPLETE\n");
1155
1156 /* Safety check */
1157 if (!conn->sec_operation) {
1158 DEBUGP(DRR, "No authentication/cipher operation in progress !!!\n");
1159 return -EIO;
1160 }
1161
1162 /* FIXME: check for MI (if any) */
1163
1164 /* Call back whatever was in progress (if anything) ... */
1165 cb = conn->sec_operation->cb;
1166 if (cb) {
1167 rc = cb(GSM_HOOK_RR_SECURITY, GSM_SECURITY_SUCCEEDED,
Holger Hans Peter Freyther228c1052010-06-16 12:47:59 +08001168 NULL, conn, conn->sec_operation->cb_data);
Sylvain Munaut30a15382009-12-24 00:27:26 +01001169 }
1170
1171 /* Complete the operation */
1172 release_security_operation(conn);
1173
1174 return rc;
1175}
1176
Harald Welted011e8b2009-11-29 22:45:52 +01001177/* Chapter 9.1.16 Handover complete */
Harald Welte1e191c52009-12-14 17:51:15 +01001178static int gsm48_rx_rr_ho_compl(struct msgb *msg)
Harald Welted011e8b2009-11-29 22:45:52 +01001179{
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +01001180 struct lchan_signal_data sig;
Harald Welted011e8b2009-11-29 22:45:52 +01001181 struct gsm48_hdr *gh = msgb_l3(msg);
1182
1183 DEBUGP(DRR, "HANDOVER COMPLETE cause = %s\n",
1184 rr_cause_name(gh->data[0]));
1185
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +01001186 sig.lchan = msg->lchan;
1187 sig.mr = NULL;
1188 dispatch_signal(SS_LCHAN, S_LCHAN_HANDOVER_COMPL, &sig);
Harald Welted011e8b2009-11-29 22:45:52 +01001189 /* FIXME: release old channel */
1190
1191 return 0;
1192}
1193
1194/* Chapter 9.1.17 Handover Failure */
Harald Welte1e191c52009-12-14 17:51:15 +01001195static int gsm48_rx_rr_ho_fail(struct msgb *msg)
Harald Welted011e8b2009-11-29 22:45:52 +01001196{
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +01001197 struct lchan_signal_data sig;
Harald Welted011e8b2009-11-29 22:45:52 +01001198 struct gsm48_hdr *gh = msgb_l3(msg);
1199
1200 DEBUGP(DRR, "HANDOVER FAILED cause = %s\n",
1201 rr_cause_name(gh->data[0]));
1202
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +01001203 sig.lchan = msg->lchan;
1204 sig.mr = NULL;
1205 dispatch_signal(SS_LCHAN, S_LCHAN_HANDOVER_FAIL, &sig);
Harald Welted011e8b2009-11-29 22:45:52 +01001206 /* FIXME: release allocated new channel */
1207
1208 return 0;
1209}
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001210
Harald Weltebf5e8df2009-02-03 12:59:45 +00001211/* Receive a GSM 04.08 Radio Resource (RR) message */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001212static int gsm0408_rcv_rr(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001213{
1214 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001215 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001216
1217 switch (gh->msg_type) {
1218 case GSM48_MT_RR_CLSM_CHG:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001219 rc = gsm48_rx_rr_classmark(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001220 break;
Harald Weltefc977a82008-12-27 10:19:37 +00001221 case GSM48_MT_RR_GPRS_SUSP_REQ:
1222 DEBUGP(DRR, "GRPS SUSPEND REQUEST\n");
1223 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001224 case GSM48_MT_RR_PAG_RESP:
Holger Hans Peter Freytherdb4ef0d2010-06-21 10:46:44 +08001225 rc = gsm48_rx_rr_pag_resp(conn, msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001226 break;
Harald Weltecf5b3592009-05-01 18:28:42 +00001227 case GSM48_MT_RR_STATUS:
1228 rc = gsm48_rx_rr_status(msg);
1229 break;
Harald Weltef7c43522009-06-09 20:24:21 +00001230 case GSM48_MT_RR_MEAS_REP:
1231 rc = gsm48_rx_rr_meas_rep(msg);
1232 break;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001233 case GSM48_MT_RR_APP_INFO:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001234 rc = gsm48_rx_rr_app_info(conn, msg);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001235 break;
Harald Welte08d91a52009-08-30 15:37:11 +09001236 case GSM48_MT_RR_CIPH_M_COMPL:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08001237 rc = gsm48_rx_rr_ciph_m_compl(conn, msg);
Harald Welte08d91a52009-08-30 15:37:11 +09001238 break;
Harald Welteccd5a882009-11-29 20:02:20 +01001239 case GSM48_MT_RR_HANDO_COMPL:
Harald Welted011e8b2009-11-29 22:45:52 +01001240 rc = gsm48_rx_rr_ho_compl(msg);
Harald Welteccd5a882009-11-29 20:02:20 +01001241 break;
1242 case GSM48_MT_RR_HANDO_FAIL:
Harald Welted011e8b2009-11-29 22:45:52 +01001243 rc = gsm48_rx_rr_ho_fail(msg);
Harald Welteccd5a882009-11-29 20:02:20 +01001244 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001245 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01001246 LOGP(DRR, LOGL_NOTICE, "Unimplemented "
1247 "GSM 04.08 RR msg type 0x%02x\n", gh->msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +00001248 break;
1249 }
1250
Harald Welte2d35ae62009-02-06 12:02:13 +00001251 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001252}
1253
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +08001254int gsm48_send_rr_app_info(struct gsm_subscriber_connection *conn, u_int8_t apdu_id,
Holger Hans Peter Freyther8b77a342009-10-22 15:42:19 +02001255 u_int8_t apdu_len, const u_int8_t *apdu)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001256{
1257 struct msgb *msg = gsm48_msgb_alloc();
1258 struct gsm48_hdr *gh;
1259
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +08001260 msg->lchan = conn->lchan;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001261
1262 DEBUGP(DRR, "TX APPLICATION INFO id=0x%02x, len=%u\n",
1263 apdu_id, apdu_len);
1264
1265 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2 + apdu_len);
1266 gh->proto_discr = GSM48_PDISC_RR;
1267 gh->msg_type = GSM48_MT_RR_APP_INFO;
1268 gh->data[0] = apdu_id;
1269 gh->data[1] = apdu_len;
1270 memcpy(gh->data+2, apdu, apdu_len);
1271
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +08001272 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001273}
1274
Harald Welte4bc90a12008-12-27 16:32:52 +00001275/* Call Control */
1276
Harald Welte7584aea2009-02-11 11:44:12 +00001277/* The entire call control code is written in accordance with Figure 7.10c
1278 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1279 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1280 * it for voice */
1281
Harald Welte4bfdfe72009-06-10 23:11:52 +08001282static void new_cc_state(struct gsm_trans *trans, int state)
1283{
1284 if (state > 31 || state < 0)
1285 return;
1286
1287 DEBUGP(DCC, "new state %s -> %s\n",
Harald Weltee95daf192010-03-25 12:13:02 +08001288 gsm48_cc_state_name(trans->cc.state),
1289 gsm48_cc_state_name(state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001290
Harald Weltedcaf5652009-07-23 18:56:43 +02001291 trans->cc.state = state;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001292}
1293
1294static int gsm48_cc_tx_status(struct gsm_trans *trans, void *arg)
Harald Welte4bc90a12008-12-27 16:32:52 +00001295{
1296 struct msgb *msg = gsm48_msgb_alloc();
1297 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1298 u_int8_t *cause, *call_state;
1299
Harald Welte4bc90a12008-12-27 16:32:52 +00001300 gh->msg_type = GSM48_MT_CC_STATUS;
1301
1302 cause = msgb_put(msg, 3);
1303 cause[0] = 2;
1304 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1305 cause[2] = 0x80 | 30; /* response to status inquiry */
1306
1307 call_state = msgb_put(msg, 1);
1308 call_state[0] = 0xc0 | 0x00;
1309
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001310 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bc90a12008-12-27 16:32:52 +00001311}
1312
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001313static int gsm48_tx_simple(struct gsm_subscriber_connection *conn,
Harald Welte6f4b7532008-12-29 00:39:37 +00001314 u_int8_t pdisc, u_int8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001315{
1316 struct msgb *msg = gsm48_msgb_alloc();
1317 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1318
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001319 msg->lchan = conn->lchan;
Harald Welte4bc90a12008-12-27 16:32:52 +00001320
Harald Welte6f4b7532008-12-29 00:39:37 +00001321 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001322 gh->msg_type = msg_type;
1323
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08001324 return gsm48_conn_sendmsg(msg, conn, NULL);
Harald Welte4bc90a12008-12-27 16:32:52 +00001325}
1326
Harald Welte4bfdfe72009-06-10 23:11:52 +08001327static void gsm48_stop_cc_timer(struct gsm_trans *trans)
1328{
Harald Weltedcaf5652009-07-23 18:56:43 +02001329 if (bsc_timer_pending(&trans->cc.timer)) {
1330 DEBUGP(DCC, "stopping pending timer T%x\n", trans->cc.Tcurrent);
1331 bsc_del_timer(&trans->cc.timer);
1332 trans->cc.Tcurrent = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001333 }
1334}
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001335
Harald Welte4bfdfe72009-06-10 23:11:52 +08001336static int mncc_recvmsg(struct gsm_network *net, struct gsm_trans *trans,
1337 int msg_type, struct gsm_mncc *mncc)
1338{
1339 struct msgb *msg;
Harald Welte04dc88f2010-12-22 21:45:05 +01001340 unsigned char *data;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001341
1342 if (trans)
Harald Welteb854b292010-12-26 19:06:37 +01001343 if (trans->conn && trans->conn->lchan)
Harald Welte6f5aee02009-07-23 21:21:14 +02001344 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08001345 "Sending '%s' to MNCC.\n",
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001346 trans->conn->lchan->ts->trx->bts->nr,
1347 trans->conn->lchan->ts->trx->nr,
1348 trans->conn->lchan->ts->nr, trans->transaction_id,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001349 (trans->subscr)?(trans->subscr->extension):"-",
1350 get_mncc_name(msg_type));
1351 else
1352 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
1353 "Sending '%s' to MNCC.\n",
1354 (trans->subscr)?(trans->subscr->extension):"-",
1355 get_mncc_name(msg_type));
1356 else
1357 DEBUGP(DCC, "(bts - trx - ts - ti -- sub -) "
1358 "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
1359
1360 mncc->msg_type = msg_type;
1361
Harald Welte966636f2009-06-26 19:39:35 +02001362 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001363 if (!msg)
1364 return -ENOMEM;
Harald Welte04dc88f2010-12-22 21:45:05 +01001365
1366 data = msgb_put(msg, sizeof(struct gsm_mncc));
1367 memcpy(data, mncc, sizeof(struct gsm_mncc));
1368
Harald Welte54209c22010-12-22 23:43:29 +01001369 cc_tx_to_mncc(net, msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001370
1371 return 0;
1372}
1373
1374int mncc_release_ind(struct gsm_network *net, struct gsm_trans *trans,
1375 u_int32_t callref, int location, int value)
1376{
1377 struct gsm_mncc rel;
1378
Harald Welte92f70c52009-06-12 01:54:08 +08001379 memset(&rel, 0, sizeof(rel));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001380 rel.callref = callref;
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001381 mncc_set_cause(&rel, location, value);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001382 return mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
1383}
1384
Harald Weltedcaf5652009-07-23 18:56:43 +02001385/* Call Control Specific transaction release.
1386 * gets called by trans_free, DO NOT CALL YOURSELF! */
1387void _gsm48_cc_trans_free(struct gsm_trans *trans)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001388{
Harald Welte4bfdfe72009-06-10 23:11:52 +08001389 gsm48_stop_cc_timer(trans);
1390
1391 /* send release to L4, if callref still exists */
1392 if (trans->callref) {
1393 /* Ressource unavailable */
Harald Welte596fed42009-07-23 19:06:52 +02001394 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001395 GSM48_CAUSE_LOC_PRN_S_LU,
1396 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001397 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001398 if (trans->cc.state != GSM_CSTATE_NULL)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001399 new_cc_state(trans, GSM_CSTATE_NULL);
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001400 if (trans->conn)
1401 trau_mux_unmap(&trans->conn->lchan->ts->e1_link, trans->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001402}
1403
1404static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001405
Harald Welte09e38af2009-02-16 22:52:23 +00001406/* call-back from paging the B-end of the connection */
1407static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001408 struct msgb *msg, void *_conn, void *param)
Harald Welte09e38af2009-02-16 22:52:23 +00001409{
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001410 int found = 0;
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001411 struct gsm_subscriber_connection *conn = _conn;
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001412 struct gsm_network **paging_request = param, *net;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001413 struct gsm_trans *transt, *tmp;
Harald Weltec05677b2009-06-26 20:17:06 +02001414
Harald Welte09e38af2009-02-16 22:52:23 +00001415 if (hooknum != GSM_HOOK_RR_PAGING)
1416 return -EINVAL;
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001417
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001418 net = *paging_request;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001419 if (!net) {
1420 DEBUGP(DCC, "Error Network not set!\n");
1421 return -EINVAL;
Harald Welte5a065df2009-02-22 21:13:18 +00001422 }
Harald Welte7584aea2009-02-11 11:44:12 +00001423
Harald Welte4bfdfe72009-06-10 23:11:52 +08001424 /* check all tranactions (without lchan) for subscriber */
1425 llist_for_each_entry_safe(transt, tmp, &net->trans_list, entry) {
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001426 if (transt->paging_request != paging_request || transt->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001427 continue;
1428 switch (event) {
1429 case GSM_PAGING_SUCCEEDED:
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001430 if (!conn) // paranoid
Harald Welte4bfdfe72009-06-10 23:11:52 +08001431 break;
1432 DEBUGP(DCC, "Paging subscr %s succeeded!\n",
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001433 transt->subscr->extension);
1434 found = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001435 /* Assign lchan */
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001436 if (!transt->conn) {
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001437 transt->paging_request = NULL;
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +08001438 transt->conn = conn;
Holger Hans Peter Freyther182c81f2010-12-29 16:28:33 +01001439 conn->put_channel = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001440 }
1441 /* send SETUP request to called party */
Harald Weltedcaf5652009-07-23 18:56:43 +02001442 gsm48_cc_tx_setup(transt, &transt->cc.msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001443 break;
1444 case GSM_PAGING_EXPIRED:
Holger Hans Peter Freytherd3baf412010-12-23 18:19:17 +01001445 case GSM_PAGING_BUSY:
Harald Welte4bfdfe72009-06-10 23:11:52 +08001446 DEBUGP(DCC, "Paging subscr %s expired!\n",
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001447 transt->subscr->extension);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001448 /* Temporarily out of order */
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001449 found = 1;
Harald Welte596fed42009-07-23 19:06:52 +02001450 mncc_release_ind(transt->subscr->net, transt,
1451 transt->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001452 GSM48_CAUSE_LOC_PRN_S_LU,
1453 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001454 transt->callref = 0;
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001455 transt->paging_request = NULL;
Harald Weltedcaf5652009-07-23 18:56:43 +02001456 trans_free(transt);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001457 break;
1458 }
1459 }
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01001460
1461 talloc_free(paging_request);
1462
1463 /*
1464 * FIXME: The queue needs to be kicked. This is likely to go through a RF
1465 * failure and then the subscr will be poke again. This needs a lot of fixing
1466 * in the subscriber queue code.
1467 */
1468 if (!found && conn)
1469 conn->put_channel = 1;
Harald Welte09e38af2009-02-16 22:52:23 +00001470 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001471}
Harald Welte7584aea2009-02-11 11:44:12 +00001472
Harald Welteda7ab742009-12-19 22:23:05 +01001473static int tch_recv_mncc(struct gsm_network *net, u_int32_t callref, int enable);
1474
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001475/* handle audio path for handover */
1476static int handle_ho_signal(unsigned int subsys, unsigned int signal,
1477 void *handler_data, void *signal_data)
1478{
1479 struct rtp_socket *old_rs, *new_rs, *other_rs;
1480 struct ho_signal_data *sig = signal_data;
1481
1482 if (subsys != SS_HO || signal != S_HANDOVER_ACK)
1483 return 0;
1484
1485 if (ipacc_rtp_direct) {
1486 LOGP(DHO, LOGL_ERROR, "unable to handover in direct RTP mode\n");
1487 return 0;
1488 }
1489
1490 /* RTP Proxy mode */
1491 new_rs = sig->new_lchan->abis_ip.rtp_socket;
1492 old_rs = sig->old_lchan->abis_ip.rtp_socket;
1493
1494 if (!new_rs) {
1495 LOGP(DHO, LOGL_ERROR, "no RTP socket for new_lchan\n");
1496 return -EIO;
1497 }
1498
1499 rsl_ipacc_mdcx_to_rtpsock(sig->new_lchan);
1500
1501 if (!old_rs) {
1502 LOGP(DHO, LOGL_ERROR, "no RTP socket for old_lchan\n");
1503 return -EIO;
1504 }
1505
1506 /* copy rx_action and reference to other sock */
1507 new_rs->rx_action = old_rs->rx_action;
1508 new_rs->tx_action = old_rs->tx_action;
1509 new_rs->transmit = old_rs->transmit;
1510
1511 switch (sig->old_lchan->abis_ip.rtp_socket->rx_action) {
1512 case RTP_PROXY:
1513 other_rs = old_rs->proxy.other_sock;
1514 rtp_socket_proxy(new_rs, other_rs);
1515 /* delete reference to other end socket to prevent
1516 * rtp_socket_free() from removing the inverse reference */
1517 old_rs->proxy.other_sock = NULL;
1518 break;
1519 case RTP_RECV_UPSTREAM:
1520 new_rs->receive = old_rs->receive;
1521 break;
1522 case RTP_NONE:
1523 break;
1524 }
1525
1526 return 0;
1527}
1528
Harald Welte805f6442009-07-28 18:25:29 +02001529/* some other part of the code sends us a signal */
1530static int handle_abisip_signal(unsigned int subsys, unsigned int signal,
1531 void *handler_data, void *signal_data)
1532{
1533 struct gsm_lchan *lchan = signal_data;
Harald Welte805f6442009-07-28 18:25:29 +02001534 int rc;
Harald Welteda7ab742009-12-19 22:23:05 +01001535 struct gsm_network *net;
1536 struct gsm_trans *trans;
Harald Welte805f6442009-07-28 18:25:29 +02001537
1538 if (subsys != SS_ABISIP)
1539 return 0;
1540
1541 /* in case we use direct BTS-to-BTS RTP */
1542 if (ipacc_rtp_direct)
1543 return 0;
1544
Harald Welte805f6442009-07-28 18:25:29 +02001545 switch (signal) {
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001546 case S_ABISIP_CRCX_ACK:
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001547 /* in case we don't use direct BTS-to-BTS RTP */
1548 /* the BTS has successfully bound a TCH to a local ip/port,
1549 * which means we can connect our UDP socket to it */
1550 if (lchan->abis_ip.rtp_socket) {
1551 rtp_socket_free(lchan->abis_ip.rtp_socket);
1552 lchan->abis_ip.rtp_socket = NULL;
1553 }
1554
1555 lchan->abis_ip.rtp_socket = rtp_socket_create();
1556 if (!lchan->abis_ip.rtp_socket)
1557 return -EIO;
1558
1559 rc = rtp_socket_connect(lchan->abis_ip.rtp_socket,
1560 lchan->abis_ip.bound_ip,
1561 lchan->abis_ip.bound_port);
1562 if (rc < 0)
1563 return -EIO;
1564
Harald Welteda7ab742009-12-19 22:23:05 +01001565 /* check if any transactions on this lchan still have
1566 * a tch_recv_mncc request pending */
1567 net = lchan->ts->trx->bts->network;
1568 llist_for_each_entry(trans, &net->trans_list, entry) {
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001569 if (trans->conn && trans->conn->lchan == lchan && trans->tch_recv) {
Harald Welteda7ab742009-12-19 22:23:05 +01001570 DEBUGP(DCC, "pending tch_recv_mncc request\n");
1571 tch_recv_mncc(net, trans->callref, 1);
1572 }
1573 }
Harald Welte805f6442009-07-28 18:25:29 +02001574 break;
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01001575 case S_ABISIP_DLCX_IND:
1576 /* the BTS tells us a RTP stream has been disconnected */
1577 if (lchan->abis_ip.rtp_socket) {
1578 rtp_socket_free(lchan->abis_ip.rtp_socket);
1579 lchan->abis_ip.rtp_socket = NULL;
1580 }
1581
1582 break;
Harald Welte805f6442009-07-28 18:25:29 +02001583 }
1584
1585 return 0;
Harald Welte805f6442009-07-28 18:25:29 +02001586}
1587
Harald Welte49f48b82009-02-17 15:29:33 +00001588/* map two ipaccess RTP streams onto each other */
Harald Welte11fa29c2009-02-19 17:24:39 +00001589static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
Harald Welte49f48b82009-02-17 15:29:33 +00001590{
Harald Welte11fa29c2009-02-19 17:24:39 +00001591 struct gsm_bts *bts = lchan->ts->trx->bts;
1592 struct gsm_bts *remote_bts = remote_lchan->ts->trx->bts;
Harald Welte805f6442009-07-28 18:25:29 +02001593 int rc;
Harald Welte49f48b82009-02-17 15:29:33 +00001594
Harald Welte11fa29c2009-02-19 17:24:39 +00001595 DEBUGP(DCC, "Setting up TCH map between (bts=%u,trx=%u,ts=%u) and (bts=%u,trx=%u,ts=%u)\n",
1596 bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1597 remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr);
1598
1599 if (bts->type != remote_bts->type) {
1600 DEBUGP(DCC, "Cannot switch calls between different BTS types yet\n");
1601 return -EINVAL;
1602 }
Harald Welteda7ab742009-12-19 22:23:05 +01001603
1604 // todo: map between different bts types
Harald Welte11fa29c2009-02-19 17:24:39 +00001605 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +01001606 case GSM_BTS_TYPE_NANOBTS:
Harald Welte805f6442009-07-28 18:25:29 +02001607 if (!ipacc_rtp_direct) {
1608 /* connect the TCH's to our RTP proxy */
Harald Weltea72273e2009-12-20 16:51:09 +01001609 rc = rsl_ipacc_mdcx_to_rtpsock(lchan);
Harald Welte805f6442009-07-28 18:25:29 +02001610 if (rc < 0)
1611 return rc;
Harald Weltea72273e2009-12-20 16:51:09 +01001612 rc = rsl_ipacc_mdcx_to_rtpsock(remote_lchan);
Harald Welteda7ab742009-12-19 22:23:05 +01001613#warning do we need a check of rc here?
Harald Welte805f6442009-07-28 18:25:29 +02001614
1615 /* connect them with each other */
Harald Welte2c828992009-12-02 01:56:49 +05301616 rtp_socket_proxy(lchan->abis_ip.rtp_socket,
1617 remote_lchan->abis_ip.rtp_socket);
Harald Welte805f6442009-07-28 18:25:29 +02001618 } else {
1619 /* directly connect TCH RTP streams to each other */
Harald Welte2c828992009-12-02 01:56:49 +05301620 rc = rsl_ipacc_mdcx(lchan, remote_lchan->abis_ip.bound_ip,
1621 remote_lchan->abis_ip.bound_port,
Harald Welte2c828992009-12-02 01:56:49 +05301622 remote_lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001623 if (rc < 0)
1624 return rc;
Harald Welte2c828992009-12-02 01:56:49 +05301625 rc = rsl_ipacc_mdcx(remote_lchan, lchan->abis_ip.bound_ip,
1626 lchan->abis_ip.bound_port,
Harald Welte2c828992009-12-02 01:56:49 +05301627 lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001628 }
Harald Welte11fa29c2009-02-19 17:24:39 +00001629 break;
1630 case GSM_BTS_TYPE_BS11:
1631 trau_mux_map_lchan(lchan, remote_lchan);
1632 break;
1633 default:
1634 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
Harald Welteda7ab742009-12-19 22:23:05 +01001635 return -EINVAL;
Harald Welte11fa29c2009-02-19 17:24:39 +00001636 }
Harald Welte49f48b82009-02-17 15:29:33 +00001637
1638 return 0;
1639}
1640
Harald Welte4bfdfe72009-06-10 23:11:52 +08001641/* bridge channels of two transactions */
1642static int tch_bridge(struct gsm_network *net, u_int32_t *refs)
Harald Welte7ccf7782009-02-17 01:43:01 +00001643{
Harald Weltedcaf5652009-07-23 18:56:43 +02001644 struct gsm_trans *trans1 = trans_find_by_callref(net, refs[0]);
1645 struct gsm_trans *trans2 = trans_find_by_callref(net, refs[1]);
Harald Welte7ccf7782009-02-17 01:43:01 +00001646
Harald Welte4bfdfe72009-06-10 23:11:52 +08001647 if (!trans1 || !trans2)
Harald Welte7ccf7782009-02-17 01:43:01 +00001648 return -EIO;
1649
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001650 if (!trans1->conn || !trans2->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001651 return -EIO;
1652
1653 /* through-connect channel */
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001654 return tch_map(trans1->conn->lchan, trans2->conn->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00001655}
1656
Harald Welteda7ab742009-12-19 22:23:05 +01001657/* enable receive of channels to MNCC upqueue */
1658static int tch_recv_mncc(struct gsm_network *net, u_int32_t callref, int enable)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001659{
1660 struct gsm_trans *trans;
Harald Welteda7ab742009-12-19 22:23:05 +01001661 struct gsm_lchan *lchan;
1662 struct gsm_bts *bts;
1663 int rc;
Harald Welte7ccf7782009-02-17 01:43:01 +00001664
Harald Welte4bfdfe72009-06-10 23:11:52 +08001665 /* Find callref */
Harald Welteda7ab742009-12-19 22:23:05 +01001666 trans = trans_find_by_callref(net, callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001667 if (!trans)
1668 return -EIO;
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001669 if (!trans->conn)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001670 return 0;
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01001671 lchan = trans->conn->lchan;
Harald Welteda7ab742009-12-19 22:23:05 +01001672 bts = lchan->ts->trx->bts;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001673
Harald Welteda7ab742009-12-19 22:23:05 +01001674 switch (bts->type) {
1675 case GSM_BTS_TYPE_NANOBTS:
1676 if (ipacc_rtp_direct) {
1677 DEBUGP(DCC, "Error: RTP proxy is disabled\n");
1678 return -EINVAL;
1679 }
1680 /* in case, we don't have a RTP socket yet, we note this
1681 * in the transaction and try later */
1682 if (!lchan->abis_ip.rtp_socket) {
1683 trans->tch_recv = enable;
1684 DEBUGP(DCC, "queue tch_recv_mncc request (%d)\n", enable);
1685 return 0;
1686 }
1687 if (enable) {
1688 /* connect the TCH's to our RTP proxy */
Harald Weltea72273e2009-12-20 16:51:09 +01001689 rc = rsl_ipacc_mdcx_to_rtpsock(lchan);
Harald Welteda7ab742009-12-19 22:23:05 +01001690 if (rc < 0)
1691 return rc;
1692 /* assign socket to application interface */
1693 rtp_socket_upstream(lchan->abis_ip.rtp_socket,
1694 net, callref);
1695 } else
1696 rtp_socket_upstream(lchan->abis_ip.rtp_socket,
1697 net, 0);
1698 break;
1699 case GSM_BTS_TYPE_BS11:
1700 if (enable)
1701 return trau_recv_lchan(lchan, callref);
1702 return trau_mux_unmap(NULL, callref);
1703 break;
1704 default:
1705 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
1706 return -EINVAL;
1707 }
1708
1709 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001710}
1711
Harald Welte4bfdfe72009-06-10 23:11:52 +08001712static int gsm48_cc_rx_status_enq(struct gsm_trans *trans, struct msgb *msg)
1713{
1714 DEBUGP(DCC, "-> STATUS ENQ\n");
1715 return gsm48_cc_tx_status(trans, msg);
1716}
1717
1718static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg);
1719static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg);
1720
1721static void gsm48_cc_timeout(void *arg)
1722{
1723 struct gsm_trans *trans = arg;
1724 int disconnect = 0, release = 0;
Harald Weltec66b71c2009-06-11 14:23:20 +08001725 int mo_cause = GSM48_CC_CAUSE_RECOVERY_TIMER;
1726 int mo_location = GSM48_CAUSE_LOC_USER;
1727 int l4_cause = GSM48_CC_CAUSE_NORMAL_UNSPEC;
1728 int l4_location = GSM48_CAUSE_LOC_PRN_S_LU;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001729 struct gsm_mncc mo_rel, l4_rel;
1730
1731 memset(&mo_rel, 0, sizeof(struct gsm_mncc));
1732 mo_rel.callref = trans->callref;
1733 memset(&l4_rel, 0, sizeof(struct gsm_mncc));
1734 l4_rel.callref = trans->callref;
1735
Harald Weltedcaf5652009-07-23 18:56:43 +02001736 switch(trans->cc.Tcurrent) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001737 case 0x303:
1738 release = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001739 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001740 break;
1741 case 0x310:
1742 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001743 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001744 break;
1745 case 0x313:
1746 disconnect = 1;
1747 /* unknown, did not find it in the specs */
1748 break;
1749 case 0x301:
1750 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08001751 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001752 break;
1753 case 0x308:
Harald Weltedcaf5652009-07-23 18:56:43 +02001754 if (!trans->cc.T308_second) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001755 /* restart T308 a second time */
Harald Weltedcaf5652009-07-23 18:56:43 +02001756 gsm48_cc_tx_release(trans, &trans->cc.msg);
1757 trans->cc.T308_second = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001758 break; /* stay in release state */
1759 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001760 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001761 return;
1762// release = 1;
1763// l4_cause = 14;
1764// break;
1765 case 0x306:
1766 release = 1;
Harald Weltedcaf5652009-07-23 18:56:43 +02001767 mo_cause = trans->cc.msg.cause.value;
1768 mo_location = trans->cc.msg.cause.location;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001769 break;
1770 case 0x323:
1771 disconnect = 1;
1772 break;
1773 default:
1774 release = 1;
1775 }
1776
1777 if (release && trans->callref) {
1778 /* process release towards layer 4 */
Harald Welte596fed42009-07-23 19:06:52 +02001779 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001780 l4_location, l4_cause);
1781 trans->callref = 0;
1782 }
1783
1784 if (disconnect && trans->callref) {
1785 /* process disconnect towards layer 4 */
1786 mncc_set_cause(&l4_rel, l4_location, l4_cause);
Harald Welte596fed42009-07-23 19:06:52 +02001787 mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &l4_rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001788 }
1789
1790 /* process disconnect towards mobile station */
1791 if (disconnect || release) {
1792 mncc_set_cause(&mo_rel, mo_location, mo_cause);
Harald Weltedcaf5652009-07-23 18:56:43 +02001793 mo_rel.cause.diag[0] = ((trans->cc.Tcurrent & 0xf00) >> 8) + '0';
1794 mo_rel.cause.diag[1] = ((trans->cc.Tcurrent & 0x0f0) >> 4) + '0';
1795 mo_rel.cause.diag[2] = (trans->cc.Tcurrent & 0x00f) + '0';
Harald Welte4bfdfe72009-06-10 23:11:52 +08001796 mo_rel.cause.diag_len = 3;
1797
1798 if (disconnect)
1799 gsm48_cc_tx_disconnect(trans, &mo_rel);
1800 if (release)
1801 gsm48_cc_tx_release(trans, &mo_rel);
1802 }
1803
1804}
1805
1806static void gsm48_start_cc_timer(struct gsm_trans *trans, int current,
1807 int sec, int micro)
1808{
1809 DEBUGP(DCC, "starting timer T%x with %d seconds\n", current, sec);
Harald Weltedcaf5652009-07-23 18:56:43 +02001810 trans->cc.timer.cb = gsm48_cc_timeout;
1811 trans->cc.timer.data = trans;
1812 bsc_schedule_timer(&trans->cc.timer, sec, micro);
1813 trans->cc.Tcurrent = current;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001814}
1815
1816static int gsm48_cc_rx_setup(struct gsm_trans *trans, struct msgb *msg)
1817{
1818 struct gsm48_hdr *gh = msgb_l3(msg);
1819 u_int8_t msg_type = gh->msg_type & 0xbf;
1820 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1821 struct tlv_parsed tp;
1822 struct gsm_mncc setup;
1823
1824 memset(&setup, 0, sizeof(struct gsm_mncc));
1825 setup.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01001826 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001827 /* emergency setup is identified by msg_type */
1828 if (msg_type == GSM48_MT_CC_EMERG_SETUP)
1829 setup.emergency = 1;
1830
1831 /* use subscriber as calling party number */
1832 if (trans->subscr) {
1833 setup.fields |= MNCC_F_CALLING;
1834 strncpy(setup.calling.number, trans->subscr->extension,
1835 sizeof(setup.calling.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02001836 strncpy(setup.imsi, trans->subscr->imsi,
1837 sizeof(setup.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001838 }
1839 /* bearer capability */
1840 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
1841 setup.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001842 gsm48_decode_bearer_cap(&setup.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001843 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
1844 }
1845 /* facility */
1846 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
1847 setup.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01001848 gsm48_decode_facility(&setup.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001849 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
1850 }
1851 /* called party bcd number */
1852 if (TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD)) {
1853 setup.fields |= MNCC_F_CALLED;
Harald Welte55c8f352010-03-07 23:40:35 +01001854 gsm48_decode_called(&setup.called,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001855 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
1856 }
1857 /* user-user */
1858 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
1859 setup.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01001860 gsm48_decode_useruser(&setup.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001861 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
1862 }
1863 /* ss-version */
1864 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
1865 setup.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01001866 gsm48_decode_ssversion(&setup.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001867 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
1868 }
1869 /* CLIR suppression */
1870 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_SUPP))
1871 setup.clir.sup = 1;
1872 /* CLIR invocation */
1873 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_INVOC))
1874 setup.clir.inv = 1;
1875 /* cc cap */
1876 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
1877 setup.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001878 gsm48_decode_cccap(&setup.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001879 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
1880 }
1881
Harald Welte4bfdfe72009-06-10 23:11:52 +08001882 new_cc_state(trans, GSM_CSTATE_INITIATED);
1883
Harald Welte (local)47df3992009-12-26 19:45:03 +01001884 LOGP(DCC, LOGL_INFO, "Subscriber %s (%s) sends SETUP to %s\n",
1885 subscr_name(trans->subscr), trans->subscr->extension,
1886 setup.called.number);
1887
Harald Weltea29e43a2010-12-24 16:06:33 +01001888 counter_inc(trans->subscr->net->stats.call.mo_setup);
1889
Harald Welte4bfdfe72009-06-10 23:11:52 +08001890 /* indicate setup to MNCC */
Harald Welte596fed42009-07-23 19:06:52 +02001891 mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_IND, &setup);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001892
Harald Welte13cac662009-07-29 12:10:35 +02001893 /* MNCC code will modify the channel asynchronously, we should
1894 * ipaccess-bind only after the modification has been made to the
1895 * lchan->tch_mode */
Harald Welte4bfdfe72009-06-10 23:11:52 +08001896 return 0;
1897}
1898
1899static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg)
Harald Welte65e74cc2008-12-29 01:55:35 +00001900{
1901 struct msgb *msg = gsm48_msgb_alloc();
1902 struct gsm48_hdr *gh;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001903 struct gsm_mncc *setup = arg;
Harald Welte78283ef2009-07-23 21:36:44 +02001904 int rc, trans_id;
Harald Welte65e74cc2008-12-29 01:55:35 +00001905
Harald Welte7ccf7782009-02-17 01:43:01 +00001906 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00001907
Harald Welte4bfdfe72009-06-10 23:11:52 +08001908 /* transaction id must not be assigned */
1909 if (trans->transaction_id != 0xff) { /* unasssigned */
1910 DEBUGP(DCC, "TX Setup with assigned transaction. "
1911 "This is not allowed!\n");
1912 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02001913 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001914 GSM48_CAUSE_LOC_PRN_S_LU,
1915 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001916 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001917 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001918 return rc;
1919 }
1920
1921 /* Get free transaction_id */
Harald Welte78283ef2009-07-23 21:36:44 +02001922 trans_id = trans_assign_trans_id(trans->subscr, GSM48_PDISC_CC, 0);
1923 if (trans_id < 0) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08001924 /* no free transaction ID */
Harald Welte596fed42009-07-23 19:06:52 +02001925 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001926 GSM48_CAUSE_LOC_PRN_S_LU,
1927 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001928 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001929 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001930 return rc;
1931 }
Harald Welte78283ef2009-07-23 21:36:44 +02001932 trans->transaction_id = trans_id;
Harald Welte49f48b82009-02-17 15:29:33 +00001933
Harald Welte65e74cc2008-12-29 01:55:35 +00001934 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00001935
Harald Welte4bfdfe72009-06-10 23:11:52 +08001936 gsm48_start_cc_timer(trans, 0x303, GSM48_T303);
Harald Welte65e74cc2008-12-29 01:55:35 +00001937
Harald Welte4bfdfe72009-06-10 23:11:52 +08001938 /* bearer capability */
1939 if (setup->fields & MNCC_F_BEARER_CAP)
Harald Welte55c8f352010-03-07 23:40:35 +01001940 gsm48_encode_bearer_cap(msg, 0, &setup->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001941 /* facility */
1942 if (setup->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01001943 gsm48_encode_facility(msg, 0, &setup->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001944 /* progress */
1945 if (setup->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01001946 gsm48_encode_progress(msg, 0, &setup->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001947 /* calling party BCD number */
1948 if (setup->fields & MNCC_F_CALLING)
Harald Welte55c8f352010-03-07 23:40:35 +01001949 gsm48_encode_calling(msg, &setup->calling);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001950 /* called party BCD number */
1951 if (setup->fields & MNCC_F_CALLED)
Harald Welte55c8f352010-03-07 23:40:35 +01001952 gsm48_encode_called(msg, &setup->called);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001953 /* user-user */
1954 if (setup->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01001955 gsm48_encode_useruser(msg, 0, &setup->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001956 /* redirecting party BCD number */
1957 if (setup->fields & MNCC_F_REDIRECTING)
Harald Welte55c8f352010-03-07 23:40:35 +01001958 gsm48_encode_redirecting(msg, &setup->redirecting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001959 /* signal */
1960 if (setup->fields & MNCC_F_SIGNAL)
Harald Welte55c8f352010-03-07 23:40:35 +01001961 gsm48_encode_signal(msg, setup->signal);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001962
1963 new_cc_state(trans, GSM_CSTATE_CALL_PRESENT);
Harald Welte65e74cc2008-12-29 01:55:35 +00001964
Harald Weltea29e43a2010-12-24 16:06:33 +01001965 counter_inc(trans->subscr->net->stats.call.mt_setup);
1966
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08001967 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte65e74cc2008-12-29 01:55:35 +00001968}
1969
Harald Welte4bfdfe72009-06-10 23:11:52 +08001970static int gsm48_cc_rx_call_conf(struct gsm_trans *trans, struct msgb *msg)
1971{
1972 struct gsm48_hdr *gh = msgb_l3(msg);
1973 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1974 struct tlv_parsed tp;
1975 struct gsm_mncc call_conf;
1976
1977 gsm48_stop_cc_timer(trans);
1978 gsm48_start_cc_timer(trans, 0x310, GSM48_T310);
1979
1980 memset(&call_conf, 0, sizeof(struct gsm_mncc));
1981 call_conf.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01001982 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001983#if 0
1984 /* repeat */
1985 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_CIR))
1986 call_conf.repeat = 1;
1987 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_SEQ))
1988 call_conf.repeat = 2;
1989#endif
1990 /* bearer capability */
1991 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
1992 call_conf.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01001993 gsm48_decode_bearer_cap(&call_conf.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08001994 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
1995 }
1996 /* cause */
1997 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
1998 call_conf.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01001999 gsm48_decode_cause(&call_conf.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002000 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2001 }
2002 /* cc cap */
2003 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2004 call_conf.fields |= MNCC_F_CCCAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002005 gsm48_decode_cccap(&call_conf.cccap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002006 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2007 }
2008
2009 new_cc_state(trans, GSM_CSTATE_MO_TERM_CALL_CONF);
2010
Harald Welte596fed42009-07-23 19:06:52 +02002011 return mncc_recvmsg(trans->subscr->net, trans, MNCC_CALL_CONF_IND,
2012 &call_conf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002013}
2014
2015static int gsm48_cc_tx_call_proc(struct gsm_trans *trans, void *arg)
2016{
2017 struct gsm_mncc *proceeding = arg;
2018 struct msgb *msg = gsm48_msgb_alloc();
2019 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2020
Harald Welte4bfdfe72009-06-10 23:11:52 +08002021 gh->msg_type = GSM48_MT_CC_CALL_PROC;
2022
2023 new_cc_state(trans, GSM_CSTATE_MO_CALL_PROC);
2024
2025 /* bearer capability */
2026 if (proceeding->fields & MNCC_F_BEARER_CAP)
Harald Welte55c8f352010-03-07 23:40:35 +01002027 gsm48_encode_bearer_cap(msg, 0, &proceeding->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002028 /* facility */
2029 if (proceeding->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002030 gsm48_encode_facility(msg, 0, &proceeding->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002031 /* progress */
2032 if (proceeding->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002033 gsm48_encode_progress(msg, 0, &proceeding->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002034
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002035 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002036}
2037
2038static int gsm48_cc_rx_alerting(struct gsm_trans *trans, struct msgb *msg)
2039{
2040 struct gsm48_hdr *gh = msgb_l3(msg);
2041 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2042 struct tlv_parsed tp;
2043 struct gsm_mncc alerting;
2044
2045 gsm48_stop_cc_timer(trans);
2046 gsm48_start_cc_timer(trans, 0x301, GSM48_T301);
2047
2048 memset(&alerting, 0, sizeof(struct gsm_mncc));
2049 alerting.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002050 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002051 /* facility */
2052 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2053 alerting.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002054 gsm48_decode_facility(&alerting.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002055 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2056 }
2057
2058 /* progress */
2059 if (TLVP_PRESENT(&tp, GSM48_IE_PROGR_IND)) {
2060 alerting.fields |= MNCC_F_PROGRESS;
Harald Welte55c8f352010-03-07 23:40:35 +01002061 gsm48_decode_progress(&alerting.progress,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002062 TLVP_VAL(&tp, GSM48_IE_PROGR_IND)-1);
2063 }
2064 /* ss-version */
2065 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2066 alerting.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002067 gsm48_decode_ssversion(&alerting.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002068 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2069 }
2070
2071 new_cc_state(trans, GSM_CSTATE_CALL_RECEIVED);
2072
Harald Welte596fed42009-07-23 19:06:52 +02002073 return mncc_recvmsg(trans->subscr->net, trans, MNCC_ALERT_IND,
2074 &alerting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002075}
2076
2077static int gsm48_cc_tx_alerting(struct gsm_trans *trans, void *arg)
2078{
2079 struct gsm_mncc *alerting = arg;
2080 struct msgb *msg = gsm48_msgb_alloc();
2081 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2082
Harald Welte4bfdfe72009-06-10 23:11:52 +08002083 gh->msg_type = GSM48_MT_CC_ALERTING;
2084
2085 /* facility */
2086 if (alerting->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002087 gsm48_encode_facility(msg, 0, &alerting->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002088 /* progress */
2089 if (alerting->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002090 gsm48_encode_progress(msg, 0, &alerting->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002091 /* user-user */
2092 if (alerting->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002093 gsm48_encode_useruser(msg, 0, &alerting->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002094
2095 new_cc_state(trans, GSM_CSTATE_CALL_DELIVERED);
2096
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002097 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002098}
2099
2100static int gsm48_cc_tx_progress(struct gsm_trans *trans, void *arg)
2101{
2102 struct gsm_mncc *progress = arg;
2103 struct msgb *msg = gsm48_msgb_alloc();
2104 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2105
Harald Welte4bfdfe72009-06-10 23:11:52 +08002106 gh->msg_type = GSM48_MT_CC_PROGRESS;
2107
2108 /* progress */
Harald Welte55c8f352010-03-07 23:40:35 +01002109 gsm48_encode_progress(msg, 1, &progress->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002110 /* user-user */
2111 if (progress->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002112 gsm48_encode_useruser(msg, 0, &progress->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002113
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002114 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002115}
2116
2117static int gsm48_cc_tx_connect(struct gsm_trans *trans, void *arg)
2118{
2119 struct gsm_mncc *connect = arg;
2120 struct msgb *msg = gsm48_msgb_alloc();
2121 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2122
Harald Welte4bfdfe72009-06-10 23:11:52 +08002123 gh->msg_type = GSM48_MT_CC_CONNECT;
2124
2125 gsm48_stop_cc_timer(trans);
2126 gsm48_start_cc_timer(trans, 0x313, GSM48_T313);
2127
2128 /* facility */
2129 if (connect->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002130 gsm48_encode_facility(msg, 0, &connect->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002131 /* progress */
2132 if (connect->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002133 gsm48_encode_progress(msg, 0, &connect->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002134 /* connected number */
2135 if (connect->fields & MNCC_F_CONNECTED)
Harald Welte55c8f352010-03-07 23:40:35 +01002136 gsm48_encode_connected(msg, &connect->connected);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002137 /* user-user */
2138 if (connect->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002139 gsm48_encode_useruser(msg, 0, &connect->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002140
2141 new_cc_state(trans, GSM_CSTATE_CONNECT_IND);
2142
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002143 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002144}
2145
2146static int gsm48_cc_rx_connect(struct gsm_trans *trans, struct msgb *msg)
2147{
2148 struct gsm48_hdr *gh = msgb_l3(msg);
2149 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2150 struct tlv_parsed tp;
2151 struct gsm_mncc connect;
2152
2153 gsm48_stop_cc_timer(trans);
2154
2155 memset(&connect, 0, sizeof(struct gsm_mncc));
2156 connect.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002157 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002158 /* use subscriber as connected party number */
2159 if (trans->subscr) {
2160 connect.fields |= MNCC_F_CONNECTED;
2161 strncpy(connect.connected.number, trans->subscr->extension,
2162 sizeof(connect.connected.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002163 strncpy(connect.imsi, trans->subscr->imsi,
2164 sizeof(connect.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002165 }
2166 /* facility */
2167 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2168 connect.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002169 gsm48_decode_facility(&connect.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002170 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2171 }
2172 /* user-user */
2173 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2174 connect.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002175 gsm48_decode_useruser(&connect.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002176 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2177 }
2178 /* ss-version */
2179 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2180 connect.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002181 gsm48_decode_ssversion(&connect.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002182 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2183 }
2184
2185 new_cc_state(trans, GSM_CSTATE_CONNECT_REQUEST);
Harald Weltea29e43a2010-12-24 16:06:33 +01002186 counter_inc(trans->subscr->net->stats.call.mt_connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002187
Harald Welte596fed42009-07-23 19:06:52 +02002188 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_CNF, &connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002189}
2190
2191
2192static int gsm48_cc_rx_connect_ack(struct gsm_trans *trans, struct msgb *msg)
2193{
2194 struct gsm_mncc connect_ack;
2195
2196 gsm48_stop_cc_timer(trans);
2197
2198 new_cc_state(trans, GSM_CSTATE_ACTIVE);
Harald Weltea29e43a2010-12-24 16:06:33 +01002199 counter_inc(trans->subscr->net->stats.call.mo_connect_ack);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002200
2201 memset(&connect_ack, 0, sizeof(struct gsm_mncc));
2202 connect_ack.callref = trans->callref;
Harald Weltea29e43a2010-12-24 16:06:33 +01002203
Harald Welte596fed42009-07-23 19:06:52 +02002204 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_COMPL_IND,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002205 &connect_ack);
2206}
2207
2208static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg)
2209{
2210 struct msgb *msg = gsm48_msgb_alloc();
2211 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2212
Harald Welte4bfdfe72009-06-10 23:11:52 +08002213 gh->msg_type = GSM48_MT_CC_CONNECT_ACK;
2214
2215 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2216
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002217 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002218}
2219
2220static int gsm48_cc_rx_disconnect(struct gsm_trans *trans, struct msgb *msg)
2221{
2222 struct gsm48_hdr *gh = msgb_l3(msg);
2223 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2224 struct tlv_parsed tp;
2225 struct gsm_mncc disc;
2226
2227 gsm48_stop_cc_timer(trans);
2228
2229 new_cc_state(trans, GSM_CSTATE_DISCONNECT_REQ);
2230
2231 memset(&disc, 0, sizeof(struct gsm_mncc));
2232 disc.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002233 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_CAUSE, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002234 /* cause */
2235 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2236 disc.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002237 gsm48_decode_cause(&disc.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002238 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2239 }
2240 /* facility */
2241 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2242 disc.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002243 gsm48_decode_facility(&disc.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002244 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2245 }
2246 /* user-user */
2247 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2248 disc.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002249 gsm48_decode_useruser(&disc.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002250 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2251 }
2252 /* ss-version */
2253 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2254 disc.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002255 gsm48_decode_ssversion(&disc.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002256 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2257 }
2258
Harald Welte596fed42009-07-23 19:06:52 +02002259 return mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &disc);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002260
2261}
2262
Harald Weltec66b71c2009-06-11 14:23:20 +08002263static struct gsm_mncc_cause default_cause = {
2264 .location = GSM48_CAUSE_LOC_PRN_S_LU,
2265 .coding = 0,
2266 .rec = 0,
2267 .rec_val = 0,
2268 .value = GSM48_CC_CAUSE_NORMAL_UNSPEC,
2269 .diag_len = 0,
2270 .diag = { 0 },
2271};
Harald Welte4bfdfe72009-06-10 23:11:52 +08002272
2273static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg)
2274{
2275 struct gsm_mncc *disc = arg;
2276 struct msgb *msg = gsm48_msgb_alloc();
2277 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2278
Harald Welte4bfdfe72009-06-10 23:11:52 +08002279 gh->msg_type = GSM48_MT_CC_DISCONNECT;
2280
2281 gsm48_stop_cc_timer(trans);
2282 gsm48_start_cc_timer(trans, 0x306, GSM48_T306);
2283
2284 /* cause */
2285 if (disc->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002286 gsm48_encode_cause(msg, 1, &disc->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002287 else
Harald Welte55c8f352010-03-07 23:40:35 +01002288 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002289
2290 /* facility */
2291 if (disc->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002292 gsm48_encode_facility(msg, 0, &disc->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002293 /* progress */
2294 if (disc->fields & MNCC_F_PROGRESS)
Harald Welte55c8f352010-03-07 23:40:35 +01002295 gsm48_encode_progress(msg, 0, &disc->progress);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002296 /* user-user */
2297 if (disc->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002298 gsm48_encode_useruser(msg, 0, &disc->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002299
2300 /* store disconnect cause for T306 expiry */
Harald Weltedcaf5652009-07-23 18:56:43 +02002301 memcpy(&trans->cc.msg, disc, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002302
2303 new_cc_state(trans, GSM_CSTATE_DISCONNECT_IND);
2304
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002305 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002306}
2307
2308static int gsm48_cc_rx_release(struct gsm_trans *trans, struct msgb *msg)
2309{
2310 struct gsm48_hdr *gh = msgb_l3(msg);
2311 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2312 struct tlv_parsed tp;
2313 struct gsm_mncc rel;
2314 int rc;
2315
2316 gsm48_stop_cc_timer(trans);
2317
2318 memset(&rel, 0, sizeof(struct gsm_mncc));
2319 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002320 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002321 /* cause */
2322 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2323 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002324 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002325 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2326 }
2327 /* facility */
2328 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2329 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002330 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002331 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2332 }
2333 /* user-user */
2334 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2335 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002336 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002337 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2338 }
2339 /* ss-version */
2340 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2341 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002342 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002343 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2344 }
2345
Harald Weltedcaf5652009-07-23 18:56:43 +02002346 if (trans->cc.state == GSM_CSTATE_RELEASE_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002347 /* release collision 5.4.5 */
Harald Welte596fed42009-07-23 19:06:52 +02002348 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002349 } else {
Holger Hans Peter Freythere9ed3402010-06-16 12:30:50 +08002350 rc = gsm48_tx_simple(trans->conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02002351 GSM48_PDISC_CC | (trans->transaction_id << 4),
Harald Welte596fed42009-07-23 19:06:52 +02002352 GSM48_MT_CC_RELEASE_COMPL);
2353 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_IND, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002354 }
2355
2356 new_cc_state(trans, GSM_CSTATE_NULL);
2357
2358 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002359 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002360
2361 return rc;
2362}
2363
2364static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg)
2365{
2366 struct gsm_mncc *rel = arg;
2367 struct msgb *msg = gsm48_msgb_alloc();
2368 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2369
Harald Welte4bfdfe72009-06-10 23:11:52 +08002370 gh->msg_type = GSM48_MT_CC_RELEASE;
2371
2372 trans->callref = 0;
2373
2374 gsm48_stop_cc_timer(trans);
2375 gsm48_start_cc_timer(trans, 0x308, GSM48_T308);
2376
2377 /* cause */
2378 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002379 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002380 /* facility */
2381 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002382 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002383 /* user-user */
2384 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002385 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002386
Harald Weltedcaf5652009-07-23 18:56:43 +02002387 trans->cc.T308_second = 0;
2388 memcpy(&trans->cc.msg, rel, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002389
Harald Weltedcaf5652009-07-23 18:56:43 +02002390 if (trans->cc.state != GSM_CSTATE_RELEASE_REQ)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002391 new_cc_state(trans, GSM_CSTATE_RELEASE_REQ);
2392
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002393 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002394}
2395
2396static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg)
2397{
2398 struct gsm48_hdr *gh = msgb_l3(msg);
2399 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2400 struct tlv_parsed tp;
2401 struct gsm_mncc rel;
2402 int rc = 0;
2403
2404 gsm48_stop_cc_timer(trans);
2405
2406 memset(&rel, 0, sizeof(struct gsm_mncc));
2407 rel.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002408 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002409 /* cause */
2410 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2411 rel.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002412 gsm48_decode_cause(&rel.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002413 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2414 }
2415 /* facility */
2416 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2417 rel.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002418 gsm48_decode_facility(&rel.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002419 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2420 }
2421 /* user-user */
2422 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2423 rel.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002424 gsm48_decode_useruser(&rel.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002425 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2426 }
2427 /* ss-version */
2428 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2429 rel.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002430 gsm48_decode_ssversion(&rel.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002431 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2432 }
2433
2434 if (trans->callref) {
Harald Weltedcaf5652009-07-23 18:56:43 +02002435 switch (trans->cc.state) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002436 case GSM_CSTATE_CALL_PRESENT:
Harald Welte596fed42009-07-23 19:06:52 +02002437 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002438 MNCC_REJ_IND, &rel);
2439 break;
2440 case GSM_CSTATE_RELEASE_REQ:
Harald Welte596fed42009-07-23 19:06:52 +02002441 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002442 MNCC_REL_CNF, &rel);
2443 break;
2444 default:
Harald Welte596fed42009-07-23 19:06:52 +02002445 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002446 MNCC_REL_IND, &rel);
2447 }
2448 }
2449
2450 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002451 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002452
2453 return rc;
2454}
2455
2456static int gsm48_cc_tx_release_compl(struct gsm_trans *trans, void *arg)
2457{
2458 struct gsm_mncc *rel = arg;
2459 struct msgb *msg = gsm48_msgb_alloc();
2460 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Weltec7782de2010-12-21 19:31:41 +01002461 int ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002462
Harald Welte4bfdfe72009-06-10 23:11:52 +08002463 gh->msg_type = GSM48_MT_CC_RELEASE_COMPL;
2464
2465 trans->callref = 0;
2466
2467 gsm48_stop_cc_timer(trans);
2468
2469 /* cause */
2470 if (rel->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002471 gsm48_encode_cause(msg, 0, &rel->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002472 /* facility */
2473 if (rel->fields & MNCC_F_FACILITY)
Harald Welte55c8f352010-03-07 23:40:35 +01002474 gsm48_encode_facility(msg, 0, &rel->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002475 /* user-user */
2476 if (rel->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002477 gsm48_encode_useruser(msg, 0, &rel->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002478
Harald Weltec7782de2010-12-21 19:31:41 +01002479 ret = gsm48_conn_sendmsg(msg, trans->conn, trans);
2480
Harald Weltedcaf5652009-07-23 18:56:43 +02002481 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002482
Harald Weltec7782de2010-12-21 19:31:41 +01002483 return ret;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002484}
2485
2486static int gsm48_cc_rx_facility(struct gsm_trans *trans, struct msgb *msg)
2487{
2488 struct gsm48_hdr *gh = msgb_l3(msg);
2489 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2490 struct tlv_parsed tp;
2491 struct gsm_mncc fac;
2492
2493 memset(&fac, 0, sizeof(struct gsm_mncc));
2494 fac.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002495 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_FACILITY, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002496 /* facility */
2497 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2498 fac.fields |= MNCC_F_FACILITY;
Harald Welte55c8f352010-03-07 23:40:35 +01002499 gsm48_decode_facility(&fac.facility,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002500 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2501 }
2502 /* ss-version */
2503 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2504 fac.fields |= MNCC_F_SSVERSION;
Harald Welte55c8f352010-03-07 23:40:35 +01002505 gsm48_decode_ssversion(&fac.ssversion,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002506 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2507 }
2508
Harald Welte596fed42009-07-23 19:06:52 +02002509 return mncc_recvmsg(trans->subscr->net, trans, MNCC_FACILITY_IND, &fac);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002510}
2511
2512static int gsm48_cc_tx_facility(struct gsm_trans *trans, void *arg)
2513{
2514 struct gsm_mncc *fac = arg;
2515 struct msgb *msg = gsm48_msgb_alloc();
2516 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2517
Harald Welte4bfdfe72009-06-10 23:11:52 +08002518 gh->msg_type = GSM48_MT_CC_FACILITY;
2519
2520 /* facility */
Harald Welte55c8f352010-03-07 23:40:35 +01002521 gsm48_encode_facility(msg, 1, &fac->facility);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002522
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002523 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002524}
2525
2526static int gsm48_cc_rx_hold(struct gsm_trans *trans, struct msgb *msg)
2527{
2528 struct gsm_mncc hold;
2529
2530 memset(&hold, 0, sizeof(struct gsm_mncc));
2531 hold.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002532 return mncc_recvmsg(trans->subscr->net, trans, MNCC_HOLD_IND, &hold);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002533}
2534
2535static int gsm48_cc_tx_hold_ack(struct gsm_trans *trans, void *arg)
2536{
2537 struct msgb *msg = gsm48_msgb_alloc();
2538 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2539
Harald Welte4bfdfe72009-06-10 23:11:52 +08002540 gh->msg_type = GSM48_MT_CC_HOLD_ACK;
2541
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002542 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002543}
2544
2545static int gsm48_cc_tx_hold_rej(struct gsm_trans *trans, void *arg)
2546{
2547 struct gsm_mncc *hold_rej = arg;
2548 struct msgb *msg = gsm48_msgb_alloc();
2549 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2550
Harald Welte4bfdfe72009-06-10 23:11:52 +08002551 gh->msg_type = GSM48_MT_CC_HOLD_REJ;
2552
2553 /* cause */
2554 if (hold_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002555 gsm48_encode_cause(msg, 1, &hold_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002556 else
Harald Welte55c8f352010-03-07 23:40:35 +01002557 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002558
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002559 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002560}
2561
2562static int gsm48_cc_rx_retrieve(struct gsm_trans *trans, struct msgb *msg)
2563{
2564 struct gsm_mncc retrieve;
2565
2566 memset(&retrieve, 0, sizeof(struct gsm_mncc));
2567 retrieve.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002568 return mncc_recvmsg(trans->subscr->net, trans, MNCC_RETRIEVE_IND,
2569 &retrieve);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002570}
2571
2572static int gsm48_cc_tx_retrieve_ack(struct gsm_trans *trans, void *arg)
2573{
2574 struct msgb *msg = gsm48_msgb_alloc();
2575 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2576
Harald Welte4bfdfe72009-06-10 23:11:52 +08002577 gh->msg_type = GSM48_MT_CC_RETR_ACK;
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_tx_retrieve_rej(struct gsm_trans *trans, void *arg)
2583{
2584 struct gsm_mncc *retrieve_rej = arg;
2585 struct msgb *msg = gsm48_msgb_alloc();
2586 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2587
Harald Welte4bfdfe72009-06-10 23:11:52 +08002588 gh->msg_type = GSM48_MT_CC_RETR_REJ;
2589
2590 /* cause */
2591 if (retrieve_rej->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002592 gsm48_encode_cause(msg, 1, &retrieve_rej->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002593 else
Harald Welte55c8f352010-03-07 23:40:35 +01002594 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002595
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002596 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002597}
2598
2599static int gsm48_cc_rx_start_dtmf(struct gsm_trans *trans, struct msgb *msg)
2600{
2601 struct gsm48_hdr *gh = msgb_l3(msg);
2602 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2603 struct tlv_parsed tp;
2604 struct gsm_mncc dtmf;
2605
2606 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2607 dtmf.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002608 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002609 /* keypad facility */
2610 if (TLVP_PRESENT(&tp, GSM48_IE_KPD_FACILITY)) {
2611 dtmf.fields |= MNCC_F_KEYPAD;
Harald Welte55c8f352010-03-07 23:40:35 +01002612 gsm48_decode_keypad(&dtmf.keypad,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002613 TLVP_VAL(&tp, GSM48_IE_KPD_FACILITY)-1);
2614 }
2615
Harald Welte596fed42009-07-23 19:06:52 +02002616 return mncc_recvmsg(trans->subscr->net, trans, MNCC_START_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002617}
2618
2619static int gsm48_cc_tx_start_dtmf_ack(struct gsm_trans *trans, void *arg)
2620{
2621 struct gsm_mncc *dtmf = arg;
2622 struct msgb *msg = gsm48_msgb_alloc();
2623 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2624
Harald Welte4bfdfe72009-06-10 23:11:52 +08002625 gh->msg_type = GSM48_MT_CC_START_DTMF_ACK;
2626
2627 /* keypad */
2628 if (dtmf->fields & MNCC_F_KEYPAD)
Harald Welte55c8f352010-03-07 23:40:35 +01002629 gsm48_encode_keypad(msg, dtmf->keypad);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002630
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002631 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002632}
2633
2634static int gsm48_cc_tx_start_dtmf_rej(struct gsm_trans *trans, void *arg)
2635{
2636 struct gsm_mncc *dtmf = arg;
2637 struct msgb *msg = gsm48_msgb_alloc();
2638 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2639
Harald Welte4bfdfe72009-06-10 23:11:52 +08002640 gh->msg_type = GSM48_MT_CC_START_DTMF_REJ;
2641
2642 /* cause */
2643 if (dtmf->fields & MNCC_F_CAUSE)
Harald Welte55c8f352010-03-07 23:40:35 +01002644 gsm48_encode_cause(msg, 1, &dtmf->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002645 else
Harald Welte55c8f352010-03-07 23:40:35 +01002646 gsm48_encode_cause(msg, 1, &default_cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002647
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002648 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002649}
2650
2651static int gsm48_cc_tx_stop_dtmf_ack(struct gsm_trans *trans, void *arg)
2652{
2653 struct msgb *msg = gsm48_msgb_alloc();
2654 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2655
Harald Welte4bfdfe72009-06-10 23:11:52 +08002656 gh->msg_type = GSM48_MT_CC_STOP_DTMF_ACK;
2657
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002658 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002659}
2660
2661static int gsm48_cc_rx_stop_dtmf(struct gsm_trans *trans, struct msgb *msg)
2662{
2663 struct gsm_mncc dtmf;
2664
2665 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2666 dtmf.callref = trans->callref;
2667
Harald Welte596fed42009-07-23 19:06:52 +02002668 return mncc_recvmsg(trans->subscr->net, trans, MNCC_STOP_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002669}
2670
2671static int gsm48_cc_rx_modify(struct gsm_trans *trans, struct msgb *msg)
2672{
2673 struct gsm48_hdr *gh = msgb_l3(msg);
2674 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2675 struct tlv_parsed tp;
2676 struct gsm_mncc modify;
2677
2678 memset(&modify, 0, sizeof(struct gsm_mncc));
2679 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002680 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002681 /* bearer capability */
2682 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2683 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002684 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002685 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2686 }
2687
2688 new_cc_state(trans, GSM_CSTATE_MO_ORIG_MODIFY);
2689
Harald Welte596fed42009-07-23 19:06:52 +02002690 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_IND, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002691}
2692
2693static int gsm48_cc_tx_modify(struct gsm_trans *trans, void *arg)
2694{
2695 struct gsm_mncc *modify = arg;
2696 struct msgb *msg = gsm48_msgb_alloc();
2697 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2698
Harald Welte4bfdfe72009-06-10 23:11:52 +08002699 gh->msg_type = GSM48_MT_CC_MODIFY;
2700
2701 gsm48_start_cc_timer(trans, 0x323, GSM48_T323);
2702
2703 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002704 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002705
2706 new_cc_state(trans, GSM_CSTATE_MO_TERM_MODIFY);
2707
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002708 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002709}
2710
2711static int gsm48_cc_rx_modify_complete(struct gsm_trans *trans, struct msgb *msg)
2712{
2713 struct gsm48_hdr *gh = msgb_l3(msg);
2714 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2715 struct tlv_parsed tp;
2716 struct gsm_mncc modify;
2717
2718 gsm48_stop_cc_timer(trans);
2719
2720 memset(&modify, 0, sizeof(struct gsm_mncc));
2721 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002722 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002723 /* bearer capability */
2724 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2725 modify.fields |= MNCC_F_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002726 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002727 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2728 }
2729
2730 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2731
Harald Welte596fed42009-07-23 19:06:52 +02002732 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_CNF, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002733}
2734
2735static int gsm48_cc_tx_modify_complete(struct gsm_trans *trans, void *arg)
2736{
2737 struct gsm_mncc *modify = arg;
2738 struct msgb *msg = gsm48_msgb_alloc();
2739 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2740
Harald Welte4bfdfe72009-06-10 23:11:52 +08002741 gh->msg_type = GSM48_MT_CC_MODIFY_COMPL;
2742
2743 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002744 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002745
2746 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2747
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002748 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002749}
2750
2751static int gsm48_cc_rx_modify_reject(struct gsm_trans *trans, struct msgb *msg)
2752{
2753 struct gsm48_hdr *gh = msgb_l3(msg);
2754 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2755 struct tlv_parsed tp;
2756 struct gsm_mncc modify;
2757
2758 gsm48_stop_cc_timer(trans);
2759
2760 memset(&modify, 0, sizeof(struct gsm_mncc));
2761 modify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002762 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, GSM48_IE_CAUSE);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002763 /* bearer capability */
2764 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2765 modify.fields |= GSM48_IE_BEARER_CAP;
Harald Welte55c8f352010-03-07 23:40:35 +01002766 gsm48_decode_bearer_cap(&modify.bearer_cap,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002767 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2768 }
2769 /* cause */
2770 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2771 modify.fields |= MNCC_F_CAUSE;
Harald Welte55c8f352010-03-07 23:40:35 +01002772 gsm48_decode_cause(&modify.cause,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002773 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2774 }
2775
2776 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2777
Harald Welte596fed42009-07-23 19:06:52 +02002778 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_REJ, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002779}
2780
2781static int gsm48_cc_tx_modify_reject(struct gsm_trans *trans, void *arg)
2782{
2783 struct gsm_mncc *modify = arg;
2784 struct msgb *msg = gsm48_msgb_alloc();
2785 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2786
Harald Welte4bfdfe72009-06-10 23:11:52 +08002787 gh->msg_type = GSM48_MT_CC_MODIFY_REJECT;
2788
2789 /* bearer capability */
Harald Welte55c8f352010-03-07 23:40:35 +01002790 gsm48_encode_bearer_cap(msg, 1, &modify->bearer_cap);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002791 /* cause */
Harald Welte55c8f352010-03-07 23:40:35 +01002792 gsm48_encode_cause(msg, 1, &modify->cause);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002793
2794 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2795
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002796 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002797}
2798
2799static int gsm48_cc_tx_notify(struct gsm_trans *trans, void *arg)
2800{
2801 struct gsm_mncc *notify = arg;
2802 struct msgb *msg = gsm48_msgb_alloc();
2803 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2804
Harald Welte4bfdfe72009-06-10 23:11:52 +08002805 gh->msg_type = GSM48_MT_CC_NOTIFY;
2806
2807 /* notify */
Harald Welte55c8f352010-03-07 23:40:35 +01002808 gsm48_encode_notify(msg, notify->notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002809
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002810 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002811}
2812
2813static int gsm48_cc_rx_notify(struct gsm_trans *trans, struct msgb *msg)
2814{
2815 struct gsm48_hdr *gh = msgb_l3(msg);
2816 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2817// struct tlv_parsed tp;
2818 struct gsm_mncc notify;
2819
2820 memset(&notify, 0, sizeof(struct gsm_mncc));
2821 notify.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002822// tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002823 if (payload_len >= 1)
Harald Welte55c8f352010-03-07 23:40:35 +01002824 gsm48_decode_notify(&notify.notify, gh->data);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002825
Harald Welte596fed42009-07-23 19:06:52 +02002826 return mncc_recvmsg(trans->subscr->net, trans, MNCC_NOTIFY_IND, &notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002827}
2828
2829static int gsm48_cc_tx_userinfo(struct gsm_trans *trans, void *arg)
2830{
2831 struct gsm_mncc *user = arg;
2832 struct msgb *msg = gsm48_msgb_alloc();
2833 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2834
Harald Welte4bfdfe72009-06-10 23:11:52 +08002835 gh->msg_type = GSM48_MT_CC_USER_INFO;
2836
2837 /* user-user */
2838 if (user->fields & MNCC_F_USERUSER)
Harald Welte55c8f352010-03-07 23:40:35 +01002839 gsm48_encode_useruser(msg, 1, &user->useruser);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002840 /* more data */
2841 if (user->more)
Harald Welte55c8f352010-03-07 23:40:35 +01002842 gsm48_encode_more(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002843
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +08002844 return gsm48_conn_sendmsg(msg, trans->conn, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002845}
2846
2847static int gsm48_cc_rx_userinfo(struct gsm_trans *trans, struct msgb *msg)
2848{
2849 struct gsm48_hdr *gh = msgb_l3(msg);
2850 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2851 struct tlv_parsed tp;
2852 struct gsm_mncc user;
2853
2854 memset(&user, 0, sizeof(struct gsm_mncc));
2855 user.callref = trans->callref;
Harald Welte474d19f2010-03-02 23:18:30 +01002856 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, GSM48_IE_USER_USER, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002857 /* user-user */
2858 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2859 user.fields |= MNCC_F_USERUSER;
Harald Welte55c8f352010-03-07 23:40:35 +01002860 gsm48_decode_useruser(&user.useruser,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002861 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2862 }
2863 /* more data */
2864 if (TLVP_PRESENT(&tp, GSM48_IE_MORE_DATA))
2865 user.more = 1;
2866
Harald Welte596fed42009-07-23 19:06:52 +02002867 return mncc_recvmsg(trans->subscr->net, trans, MNCC_USERINFO_IND, &user);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002868}
2869
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02002870static int _gsm48_lchan_modify(struct gsm_trans *trans, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002871{
2872 struct gsm_mncc *mode = arg;
2873
Holger Hans Peter Freytherb549ddf2011-01-16 18:17:04 +01002874 return gsm0808_assign_req(trans->conn, mode->lchan_mode, 1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002875}
2876
2877static struct downstate {
2878 u_int32_t states;
2879 int type;
2880 int (*rout) (struct gsm_trans *trans, void *arg);
2881} downstatelist[] = {
2882 /* mobile originating call establishment */
2883 {SBIT(GSM_CSTATE_INITIATED), /* 5.2.1.2 */
2884 MNCC_CALL_PROC_REQ, gsm48_cc_tx_call_proc},
2885 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.2 | 5.2.1.5 */
2886 MNCC_ALERT_REQ, gsm48_cc_tx_alerting},
2887 {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 */
2888 MNCC_SETUP_RSP, gsm48_cc_tx_connect},
2889 {SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.4.2 */
2890 MNCC_PROGRESS_REQ, gsm48_cc_tx_progress},
2891 /* mobile terminating call establishment */
2892 {SBIT(GSM_CSTATE_NULL), /* 5.2.2.1 */
2893 MNCC_SETUP_REQ, gsm48_cc_tx_setup},
2894 {SBIT(GSM_CSTATE_CONNECT_REQUEST),
2895 MNCC_SETUP_COMPL_REQ, gsm48_cc_tx_connect_ack},
2896 /* signalling during call */
2897 {SBIT(GSM_CSTATE_ACTIVE),
2898 MNCC_NOTIFY_REQ, gsm48_cc_tx_notify},
2899 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ),
2900 MNCC_FACILITY_REQ, gsm48_cc_tx_facility},
2901 {ALL_STATES,
2902 MNCC_START_DTMF_RSP, gsm48_cc_tx_start_dtmf_ack},
2903 {ALL_STATES,
2904 MNCC_START_DTMF_REJ, gsm48_cc_tx_start_dtmf_rej},
2905 {ALL_STATES,
2906 MNCC_STOP_DTMF_RSP, gsm48_cc_tx_stop_dtmf_ack},
2907 {SBIT(GSM_CSTATE_ACTIVE),
2908 MNCC_HOLD_CNF, gsm48_cc_tx_hold_ack},
2909 {SBIT(GSM_CSTATE_ACTIVE),
2910 MNCC_HOLD_REJ, gsm48_cc_tx_hold_rej},
2911 {SBIT(GSM_CSTATE_ACTIVE),
2912 MNCC_RETRIEVE_CNF, gsm48_cc_tx_retrieve_ack},
2913 {SBIT(GSM_CSTATE_ACTIVE),
2914 MNCC_RETRIEVE_REJ, gsm48_cc_tx_retrieve_rej},
2915 {SBIT(GSM_CSTATE_ACTIVE),
2916 MNCC_MODIFY_REQ, gsm48_cc_tx_modify},
2917 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
2918 MNCC_MODIFY_RSP, gsm48_cc_tx_modify_complete},
2919 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
2920 MNCC_MODIFY_REJ, gsm48_cc_tx_modify_reject},
2921 {SBIT(GSM_CSTATE_ACTIVE),
2922 MNCC_USERINFO_REQ, gsm48_cc_tx_userinfo},
2923 /* clearing */
2924 {SBIT(GSM_CSTATE_INITIATED),
2925 MNCC_REJ_REQ, gsm48_cc_tx_release_compl},
2926 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_DISCONNECT_IND) - SBIT(GSM_CSTATE_RELEASE_REQ) - SBIT(GSM_CSTATE_DISCONNECT_REQ), /* 5.4.4 */
2927 MNCC_DISC_REQ, gsm48_cc_tx_disconnect},
2928 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
2929 MNCC_REL_REQ, gsm48_cc_tx_release},
2930 /* special */
2931 {ALL_STATES,
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02002932 MNCC_LCHAN_MODIFY, _gsm48_lchan_modify},
Harald Welte4bfdfe72009-06-10 23:11:52 +08002933};
2934
2935#define DOWNSLLEN \
2936 (sizeof(downstatelist) / sizeof(struct downstate))
2937
2938
Harald Welte76556372010-12-22 23:57:45 +01002939int mncc_tx_to_cc(struct gsm_network *net, int msg_type, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002940{
Harald Welte1a6f7982009-08-09 18:52:33 +02002941 int i, rc = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002942 struct gsm_trans *trans = NULL, *transt;
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08002943 struct gsm_subscriber_connection *conn = NULL;
Holger Hans Peter Freytherb56a6bb2010-12-27 16:02:25 +01002944 struct gsm_bts *bts = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002945 struct gsm_mncc *data = arg, rel;
2946
Harald Welte04dc88f2010-12-22 21:45:05 +01002947 DEBUGP(DMNCC, "receive message %s\n", get_mncc_name(msg_type));
2948
Harald Welte4bfdfe72009-06-10 23:11:52 +08002949 /* handle special messages */
2950 switch(msg_type) {
2951 case MNCC_BRIDGE:
2952 return tch_bridge(net, arg);
2953 case MNCC_FRAME_DROP:
Harald Welteda7ab742009-12-19 22:23:05 +01002954 return tch_recv_mncc(net, data->callref, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002955 case MNCC_FRAME_RECV:
Harald Welteda7ab742009-12-19 22:23:05 +01002956 return tch_recv_mncc(net, data->callref, 1);
2957 case GSM_TCHF_FRAME:
2958 /* Find callref */
2959 trans = trans_find_by_callref(net, data->callref);
Harald Welte04dc88f2010-12-22 21:45:05 +01002960 if (!trans) {
2961 LOGP(DMNCC, LOGL_ERROR, "TCH frame for non-existing trans\n");
Harald Welteda7ab742009-12-19 22:23:05 +01002962 return -EIO;
Harald Welte04dc88f2010-12-22 21:45:05 +01002963 }
2964 if (!trans->conn) {
2965 LOGP(DMNCC, LOGL_NOTICE, "TCH frame for trans without conn\n");
Harald Welteda7ab742009-12-19 22:23:05 +01002966 return 0;
Harald Welte04dc88f2010-12-22 21:45:05 +01002967 }
2968 if (trans->conn->lchan->type != GSM_LCHAN_TCH_F) {
2969 /* This should be LOGL_ERROR or NOTICE, but
2970 * unfortuantely it happens for a couple of frames at
2971 * the beginning of every RTP connection */
2972 LOGP(DMNCC, LOGL_DEBUG, "TCH frame for lchan != TCH_F\n");
Harald Welteda7ab742009-12-19 22:23:05 +01002973 return 0;
Harald Welte04dc88f2010-12-22 21:45:05 +01002974 }
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002975 bts = trans->conn->lchan->ts->trx->bts;
Harald Welteda7ab742009-12-19 22:23:05 +01002976 switch (bts->type) {
2977 case GSM_BTS_TYPE_NANOBTS:
Harald Welte04dc88f2010-12-22 21:45:05 +01002978 if (!trans->conn->lchan->abis_ip.rtp_socket) {
Harald Welte91c59c82010-12-24 12:40:21 +01002979 DEBUGP(DMNCC, "TCH frame to lchan without RTP connection\n");
Harald Welteda7ab742009-12-19 22:23:05 +01002980 return 0;
Harald Welte04dc88f2010-12-22 21:45:05 +01002981 }
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002982 return rtp_send_frame(trans->conn->lchan->abis_ip.rtp_socket, arg);
Harald Welteda7ab742009-12-19 22:23:05 +01002983 case GSM_BTS_TYPE_BS11:
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01002984 return trau_send_frame(trans->conn->lchan, arg);
Harald Welteda7ab742009-12-19 22:23:05 +01002985 default:
2986 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
2987 }
2988 return -EINVAL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002989 }
2990
2991 memset(&rel, 0, sizeof(struct gsm_mncc));
2992 rel.callref = data->callref;
2993
2994 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02002995 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002996
2997 /* Callref unknown */
2998 if (!trans) {
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01002999 struct gsm_subscriber *subscr;
3000
Harald Welte4a3464c2009-07-04 10:11:24 +02003001 if (msg_type != MNCC_SETUP_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003002 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3003 "Received '%s' from MNCC with "
3004 "unknown callref %d\n", data->called.number,
3005 get_mncc_name(msg_type), data->callref);
3006 /* Invalid call reference */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003007 return mncc_release_ind(net, NULL, data->callref,
3008 GSM48_CAUSE_LOC_PRN_S_LU,
3009 GSM48_CC_CAUSE_INVAL_TRANS_ID);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003010 }
Andreas Eversbergc079be42009-06-15 23:22:09 +02003011 if (!data->called.number[0] && !data->imsi[0]) {
3012 DEBUGP(DCC, "(bts - trx - ts - ti) "
3013 "Received '%s' from MNCC with "
3014 "no number or IMSI\n", get_mncc_name(msg_type));
3015 /* Invalid number */
3016 return mncc_release_ind(net, NULL, data->callref,
3017 GSM48_CAUSE_LOC_PRN_S_LU,
3018 GSM48_CC_CAUSE_INV_NR_FORMAT);
3019 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003020 /* New transaction due to setup, find subscriber */
Andreas Eversbergc079be42009-06-15 23:22:09 +02003021 if (data->called.number[0])
Harald Welte9176bd42009-07-23 18:46:00 +02003022 subscr = subscr_get_by_extension(net,
3023 data->called.number);
Andreas Eversbergc079be42009-06-15 23:22:09 +02003024 else
Harald Welte9176bd42009-07-23 18:46:00 +02003025 subscr = subscr_get_by_imsi(net, data->imsi);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003026 /* If subscriber is not found */
3027 if (!subscr) {
3028 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3029 "Received '%s' from MNCC with "
3030 "unknown subscriber %s\n", data->called.number,
3031 get_mncc_name(msg_type), data->called.number);
3032 /* Unknown subscriber */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003033 return mncc_release_ind(net, NULL, data->callref,
3034 GSM48_CAUSE_LOC_PRN_S_LU,
3035 GSM48_CC_CAUSE_UNASSIGNED_NR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003036 }
3037 /* If subscriber is not "attached" */
3038 if (!subscr->lac) {
3039 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3040 "Received '%s' from MNCC with "
3041 "detached subscriber %s\n", data->called.number,
3042 get_mncc_name(msg_type), data->called.number);
3043 subscr_put(subscr);
3044 /* Temporarily out of order */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003045 return mncc_release_ind(net, NULL, data->callref,
3046 GSM48_CAUSE_LOC_PRN_S_LU,
3047 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003048 }
3049 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02003050 trans = trans_alloc(subscr, GSM48_PDISC_CC, 0xff, data->callref);
3051 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003052 DEBUGP(DCC, "No memory for trans.\n");
3053 subscr_put(subscr);
3054 /* Ressource unavailable */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003055 mncc_release_ind(net, NULL, data->callref,
3056 GSM48_CAUSE_LOC_PRN_S_LU,
3057 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003058 return -ENOMEM;
3059 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003060 /* Find lchan */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003061 conn = connection_for_subscr(subscr);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003062
Harald Welte4bfdfe72009-06-10 23:11:52 +08003063 /* If subscriber has no lchan */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003064 if (!conn) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003065 /* find transaction with this subscriber already paging */
3066 llist_for_each_entry(transt, &net->trans_list, entry) {
3067 /* Transaction of our lchan? */
3068 if (transt == trans ||
3069 transt->subscr != subscr)
3070 continue;
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01003071 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003072 "Received '%s' from MNCC with "
3073 "unallocated channel, paging already "
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01003074 "started for lac %d.\n",
Harald Welte4bfdfe72009-06-10 23:11:52 +08003075 data->called.number,
Holger Hans Peter Freyther8e3eb582010-12-27 16:08:34 +01003076 get_mncc_name(msg_type), subscr->lac);
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003077 subscr_put(subscr);
3078 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003079 return 0;
3080 }
3081 /* store setup informations until paging was successfull */
Harald Weltedcaf5652009-07-23 18:56:43 +02003082 memcpy(&trans->cc.msg, data, sizeof(struct gsm_mncc));
Sylvain Munaut567c8dc2010-12-01 22:17:36 +01003083
3084 /* Get a channel */
Holger Hans Peter Freyther49b3ed22010-12-29 17:09:07 +01003085 trans->paging_request = talloc_zero(subscr->net, struct gsm_network*);
3086 if (!trans->paging_request) {
3087 LOGP(DCC, LOGL_ERROR, "Failed to allocate paging token.\n");
3088 subscr_put(subscr);
3089 trans_free(trans);
3090 return 0;
3091 }
3092
3093 *trans->paging_request = subscr->net;
3094 subscr_get_channel(subscr, RSL_CHANNEED_TCH_F, setup_trig_pag_evt, trans->paging_request);
Sylvain Munaut567c8dc2010-12-01 22:17:36 +01003095
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003096 subscr_put(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003097 return 0;
3098 }
3099 /* Assign lchan */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003100 trans->conn = conn;
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003101 subscr_put(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003102 }
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01003103
3104 if (trans->conn)
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003105 conn = trans->conn;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003106
3107 /* if paging did not respond yet */
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003108 if (!conn) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003109 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003110 "Received '%s' from MNCC in paging state\n",
Harald Welte4bfdfe72009-06-10 23:11:52 +08003111 (trans->subscr)?(trans->subscr->extension):"-",
3112 get_mncc_name(msg_type));
Harald Weltec66b71c2009-06-11 14:23:20 +08003113 mncc_set_cause(&rel, GSM48_CAUSE_LOC_PRN_S_LU,
3114 GSM48_CC_CAUSE_NORM_CALL_CLEAR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003115 if (msg_type == MNCC_REL_REQ)
3116 rc = mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
3117 else
3118 rc = mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
3119 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02003120 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003121 return rc;
3122 }
3123
3124 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x sub %s) "
3125 "Received '%s' from MNCC in state %d (%s)\n",
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +08003126 conn->bts->nr, conn->lchan->ts->trx->nr, conn->lchan->ts->nr,
Harald Welte4bfdfe72009-06-10 23:11:52 +08003127 trans->transaction_id,
Holger Hans Peter Freythere95d4822010-03-23 07:00:22 +01003128 (trans->conn->subscr)?(trans->conn->subscr->extension):"-",
Harald Weltedcaf5652009-07-23 18:56:43 +02003129 get_mncc_name(msg_type), trans->cc.state,
Harald Weltee95daf192010-03-25 12:13:02 +08003130 gsm48_cc_state_name(trans->cc.state));
Harald Welte4bfdfe72009-06-10 23:11:52 +08003131
3132 /* Find function for current state and message */
3133 for (i = 0; i < DOWNSLLEN; i++)
3134 if ((msg_type == downstatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003135 && ((1 << trans->cc.state) & downstatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003136 break;
3137 if (i == DOWNSLLEN) {
3138 DEBUGP(DCC, "Message unhandled at this state.\n");
3139 return 0;
3140 }
3141
3142 rc = downstatelist[i].rout(trans, arg);
3143
3144 return rc;
3145}
3146
3147
3148static struct datastate {
3149 u_int32_t states;
3150 int type;
3151 int (*rout) (struct gsm_trans *trans, struct msgb *msg);
3152} datastatelist[] = {
3153 /* mobile originating call establishment */
3154 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3155 GSM48_MT_CC_SETUP, gsm48_cc_rx_setup},
3156 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3157 GSM48_MT_CC_EMERG_SETUP, gsm48_cc_rx_setup},
3158 {SBIT(GSM_CSTATE_CONNECT_IND), /* 5.2.1.2 */
3159 GSM48_MT_CC_CONNECT_ACK, gsm48_cc_rx_connect_ack},
3160 /* mobile terminating call establishment */
3161 {SBIT(GSM_CSTATE_CALL_PRESENT), /* 5.2.2.3.2 */
3162 GSM48_MT_CC_CALL_CONF, gsm48_cc_rx_call_conf},
3163 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF), /* ???? | 5.2.2.3.2 */
3164 GSM48_MT_CC_ALERTING, gsm48_cc_rx_alerting},
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003165 {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 +08003166 GSM48_MT_CC_CONNECT, gsm48_cc_rx_connect},
3167 /* signalling during call */
3168 {ALL_STATES - SBIT(GSM_CSTATE_NULL),
3169 GSM48_MT_CC_FACILITY, gsm48_cc_rx_facility},
3170 {SBIT(GSM_CSTATE_ACTIVE),
3171 GSM48_MT_CC_NOTIFY, gsm48_cc_rx_notify},
3172 {ALL_STATES,
3173 GSM48_MT_CC_START_DTMF, gsm48_cc_rx_start_dtmf},
3174 {ALL_STATES,
3175 GSM48_MT_CC_STOP_DTMF, gsm48_cc_rx_stop_dtmf},
3176 {ALL_STATES,
3177 GSM48_MT_CC_STATUS_ENQ, gsm48_cc_rx_status_enq},
3178 {SBIT(GSM_CSTATE_ACTIVE),
3179 GSM48_MT_CC_HOLD, gsm48_cc_rx_hold},
3180 {SBIT(GSM_CSTATE_ACTIVE),
3181 GSM48_MT_CC_RETR, gsm48_cc_rx_retrieve},
3182 {SBIT(GSM_CSTATE_ACTIVE),
3183 GSM48_MT_CC_MODIFY, gsm48_cc_rx_modify},
3184 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3185 GSM48_MT_CC_MODIFY_COMPL, gsm48_cc_rx_modify_complete},
3186 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3187 GSM48_MT_CC_MODIFY_REJECT, gsm48_cc_rx_modify_reject},
3188 {SBIT(GSM_CSTATE_ACTIVE),
3189 GSM48_MT_CC_USER_INFO, gsm48_cc_rx_userinfo},
3190 /* clearing */
3191 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3192 GSM48_MT_CC_DISCONNECT, gsm48_cc_rx_disconnect},
3193 {ALL_STATES - SBIT(GSM_CSTATE_NULL), /* 5.4.4.1.2.2 */
3194 GSM48_MT_CC_RELEASE, gsm48_cc_rx_release},
3195 {ALL_STATES, /* 5.4.3.4 */
3196 GSM48_MT_CC_RELEASE_COMPL, gsm48_cc_rx_release_compl},
3197};
3198
3199#define DATASLLEN \
3200 (sizeof(datastatelist) / sizeof(struct datastate))
3201
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003202static int gsm0408_rcv_cc(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte4bc90a12008-12-27 16:32:52 +00003203{
3204 struct gsm48_hdr *gh = msgb_l3(msg);
3205 u_int8_t msg_type = gh->msg_type & 0xbf;
Harald Welte6f5aee02009-07-23 21:21:14 +02003206 u_int8_t transaction_id = ((gh->proto_discr & 0xf0) ^ 0x80) >> 4; /* flip */
Harald Weltedcaf5652009-07-23 18:56:43 +02003207 struct gsm_trans *trans = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003208 int i, rc = 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00003209
Harald Welte4bfdfe72009-06-10 23:11:52 +08003210 if (msg_type & 0x80) {
3211 DEBUGP(DCC, "MSG 0x%2x not defined for PD error\n", msg_type);
3212 return -EINVAL;
Harald Welte4bc90a12008-12-27 16:32:52 +00003213 }
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003214
Harald Welte4bfdfe72009-06-10 23:11:52 +08003215 /* Find transaction */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003216 trans = trans_find_by_id(conn->subscr, GSM48_PDISC_CC, transaction_id);
Harald Weltedcaf5652009-07-23 18:56:43 +02003217
Harald Welte6f5aee02009-07-23 21:21:14 +02003218 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003219 "Received '%s' from MS in state %d (%s)\n",
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003220 conn->bts->nr, conn->lchan->ts->trx->nr, conn->lchan->ts->nr,
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003221 transaction_id, (conn->subscr)?(conn->subscr->extension):"-",
Harald Weltee95daf192010-03-25 12:13:02 +08003222 gsm48_cc_msg_name(msg_type), trans?(trans->cc.state):0,
3223 gsm48_cc_state_name(trans?(trans->cc.state):0));
Harald Welte4bfdfe72009-06-10 23:11:52 +08003224
3225 /* Create transaction */
3226 if (!trans) {
Harald Welte6f5aee02009-07-23 21:21:14 +02003227 DEBUGP(DCC, "Unknown transaction ID %x, "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003228 "creating new trans.\n", transaction_id);
3229 /* Create transaction */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01003230 trans = trans_alloc(conn->subscr, GSM48_PDISC_CC,
Harald Weltedcaf5652009-07-23 18:56:43 +02003231 transaction_id, new_callref++);
3232 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003233 DEBUGP(DCC, "No memory for trans.\n");
Holger Hans Peter Freytherb549ddf2011-01-16 18:17:04 +01003234 rc = gsm48_tx_simple(conn,
Harald Welte6f5aee02009-07-23 21:21:14 +02003235 GSM48_PDISC_CC | (transaction_id << 4),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003236 GSM48_MT_CC_RELEASE_COMPL);
3237 return -ENOMEM;
3238 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003239 /* Assign transaction */
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003240 trans->conn = conn;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003241 }
3242
3243 /* find function for current state and message */
3244 for (i = 0; i < DATASLLEN; i++)
3245 if ((msg_type == datastatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003246 && ((1 << trans->cc.state) & datastatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003247 break;
3248 if (i == DATASLLEN) {
3249 DEBUGP(DCC, "Message unhandled at this state.\n");
3250 return 0;
3251 }
3252
3253 rc = datastatelist[i].rout(trans, msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00003254
3255 return rc;
3256}
3257
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003258/* Create a dummy to wait five seconds */
3259static void release_anchor(struct gsm_subscriber_connection *conn)
3260{
3261 if (!conn->anch_operation)
3262 return;
3263
3264 bsc_del_timer(&conn->anch_operation->timeout);
3265 talloc_free(conn->anch_operation);
3266 conn->anch_operation = NULL;
3267}
3268
3269static void anchor_timeout(void *_data)
3270{
3271 struct gsm_subscriber_connection *con = _data;
3272
3273 release_anchor(con);
3274 msc_release_connection(con);
3275}
3276
3277int gsm0408_new_conn(struct gsm_subscriber_connection *conn)
3278{
3279 conn->anch_operation = talloc_zero(conn, struct gsm_anchor_operation);
3280 if (!conn->anch_operation)
3281 return -1;
3282
3283 conn->anch_operation->timeout.data = conn;
3284 conn->anch_operation->timeout.cb = anchor_timeout;
3285 bsc_schedule_timer(&conn->anch_operation->timeout, 5, 0);
3286 return 0;
3287}
3288
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +08003289/* here we get data from the BSC level... */
3290int gsm0408_dispatch(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00003291{
3292 struct gsm48_hdr *gh = msgb_l3(msg);
3293 u_int8_t pdisc = gh->proto_discr & 0x0f;
Harald Welte8470bf22008-12-25 23:28:35 +00003294 int rc = 0;
Harald Welte51008772009-12-29 11:49:12 +01003295
Holger Hans Peter Freyther758f4df2010-06-21 10:34:03 +08003296 if (silent_call_reroute(conn, msg))
3297 return silent_call_rx(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003298
3299 switch (pdisc) {
3300 case GSM48_PDISC_CC:
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003301 release_anchor(conn);
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003302 rc = gsm0408_rcv_cc(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003303 break;
3304 case GSM48_PDISC_MM:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003305 rc = gsm0408_rcv_mm(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003306 break;
3307 case GSM48_PDISC_RR:
Holger Hans Peter Freyther3f122be2010-06-17 17:14:35 +08003308 rc = gsm0408_rcv_rr(conn, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00003309 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00003310 case GSM48_PDISC_SMS:
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003311 release_anchor(conn);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +08003312 rc = gsm0411_rcv_sms(conn, msg);
Harald Weltebcae43f2008-12-27 21:45:37 +00003313 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003314 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00003315 case GSM48_PDISC_SM_GPRS:
Harald Welte5d24ba12009-12-24 12:13:17 +01003316 LOGP(DRLL, LOGL_NOTICE, "Unimplemented "
3317 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Harald Welte52b1f982008-12-23 20:25:15 +00003318 break;
Harald Welte6eafe912009-10-16 08:32:58 +02003319 case GSM48_PDISC_NC_SS:
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +08003320 release_anchor(conn);
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +08003321 rc = handle_rcv_ussd(conn, msg);
Harald Welte6eafe912009-10-16 08:32:58 +02003322 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003323 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01003324 LOGP(DRLL, LOGL_NOTICE, "Unknown "
3325 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Harald Welte52b1f982008-12-23 20:25:15 +00003326 break;
3327 }
3328
3329 return rc;
3330}
Harald Welte8470bf22008-12-25 23:28:35 +00003331
Harald Welte805f6442009-07-28 18:25:29 +02003332/*
3333 * This will be ran by the linker when loading the DSO. We use it to
3334 * do system initialization, e.g. registration of signal handlers.
3335 */
3336static __attribute__((constructor)) void on_dso_load_0408(void)
3337{
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +01003338 register_signal_handler(SS_HO, handle_ho_signal, NULL);
Harald Welte805f6442009-07-28 18:25:29 +02003339 register_signal_handler(SS_ABISIP, handle_abisip_signal, NULL);
3340}