blob: 982870ba1f9e4af40a0a030f95bda0f164d0c8eb [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001/* GSM Mobile Radio Interface Layer 3 messages on the A-bis interface
2 * 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>
Harald Welte498b0bb2009-01-09 21:27:43 +00005 * (C) 2008, 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte8470bf22008-12-25 23:28:35 +00006 *
Harald Welte52b1f982008-12-23 20:25:15 +00007 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29#include <errno.h>
Harald Weltedb253af2008-12-30 17:56:55 +000030#include <time.h>
Harald Welte4b634542008-12-27 01:55:51 +000031#include <netinet/in.h>
Harald Welte52b1f982008-12-23 20:25:15 +000032
Harald Welte75a983f2008-12-27 21:34:06 +000033#include <openbsc/db.h>
Harald Welte8470bf22008-12-25 23:28:35 +000034#include <openbsc/msgb.h>
Harald Weltef1dae192009-12-14 22:24:28 +010035#include <openbsc/bitvec.h>
Harald Welte7584aea2009-02-11 11:44:12 +000036#include <openbsc/tlv.h>
Harald Welte8470bf22008-12-25 23:28:35 +000037#include <openbsc/debug.h>
38#include <openbsc/gsm_data.h>
Daniel Willmanneea93372009-08-13 03:42:07 +020039#include <openbsc/gsm_utils.h>
Harald Welte8470bf22008-12-25 23:28:35 +000040#include <openbsc/gsm_subscriber.h>
Daniel Willmann8b3390e2008-12-28 00:31:09 +000041#include <openbsc/gsm_04_11.h>
Harald Welte8470bf22008-12-25 23:28:35 +000042#include <openbsc/gsm_04_08.h>
43#include <openbsc/abis_rsl.h>
Holger Freytherca362a62009-01-04 21:05:01 +000044#include <openbsc/chan_alloc.h>
Harald Welte0b4c34e2009-02-09 17:54:43 +000045#include <openbsc/paging.h>
Holger Freyther053e09d2009-02-14 22:51:06 +000046#include <openbsc/signal.h>
Harald Welte45b407a2009-05-23 15:51:12 +000047#include <openbsc/trau_frame.h>
Harald Welte11fa29c2009-02-19 17:24:39 +000048#include <openbsc/trau_mux.h>
Harald Welte805f6442009-07-28 18:25:29 +020049#include <openbsc/rtp_proxy.h>
Harald Welte2cf161b2009-06-20 22:36:41 +020050#include <openbsc/talloc.h>
Harald Weltedcaf5652009-07-23 18:56:43 +020051#include <openbsc/transaction.h>
Harald Welte6eafe912009-10-16 08:32:58 +020052#include <openbsc/ussd.h>
Harald Welte52b1f982008-12-23 20:25:15 +000053
Harald Welte0c389302009-06-10 12:08:54 +080054#define GSM_MAX_FACILITY 128
55#define GSM_MAX_SSVERSION 128
56#define GSM_MAX_USERUSER 128
57
Harald Welte (local)d19e58b2009-08-15 02:30:58 +020058void *tall_locop_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +020059
Harald Welte09e38af2009-02-16 22:52:23 +000060static const struct tlv_definition rsl_att_tlvdef = {
61 .def = {
62 [GSM48_IE_MOBILE_ID] = { TLV_TYPE_TLV },
63 [GSM48_IE_NAME_LONG] = { TLV_TYPE_TLV },
64 [GSM48_IE_NAME_SHORT] = { TLV_TYPE_TLV },
65 [GSM48_IE_UTC] = { TLV_TYPE_TV },
66 [GSM48_IE_NET_TIME_TZ] = { TLV_TYPE_FIXED, 7 },
67 [GSM48_IE_LSA_IDENT] = { TLV_TYPE_TLV },
68
69 [GSM48_IE_BEARER_CAP] = { TLV_TYPE_TLV },
70 [GSM48_IE_CAUSE] = { TLV_TYPE_TLV },
71 [GSM48_IE_CC_CAP] = { TLV_TYPE_TLV },
72 [GSM48_IE_ALERT] = { TLV_TYPE_TLV },
73 [GSM48_IE_FACILITY] = { TLV_TYPE_TLV },
74 [GSM48_IE_PROGR_IND] = { TLV_TYPE_TLV },
75 [GSM48_IE_AUX_STATUS] = { TLV_TYPE_TLV },
Harald Welte0c389302009-06-10 12:08:54 +080076 [GSM48_IE_NOTIFY] = { TLV_TYPE_TV },
Harald Welte09e38af2009-02-16 22:52:23 +000077 [GSM48_IE_KPD_FACILITY] = { TLV_TYPE_TV },
78 [GSM48_IE_SIGNAL] = { TLV_TYPE_TV },
Harald Welte0c389302009-06-10 12:08:54 +080079 [GSM48_IE_CONN_BCD] = { TLV_TYPE_TLV },
80 [GSM48_IE_CONN_SUB] = { TLV_TYPE_TLV },
Harald Welte09e38af2009-02-16 22:52:23 +000081 [GSM48_IE_CALLING_BCD] = { TLV_TYPE_TLV },
82 [GSM48_IE_CALLING_SUB] = { TLV_TYPE_TLV },
83 [GSM48_IE_CALLED_BCD] = { TLV_TYPE_TLV },
84 [GSM48_IE_CALLED_SUB] = { TLV_TYPE_TLV },
85 [GSM48_IE_REDIR_BCD] = { TLV_TYPE_TLV },
86 [GSM48_IE_REDIR_SUB] = { TLV_TYPE_TLV },
87 [GSM48_IE_LOWL_COMPAT] = { TLV_TYPE_TLV },
88 [GSM48_IE_HIGHL_COMPAT] = { TLV_TYPE_TLV },
89 [GSM48_IE_USER_USER] = { TLV_TYPE_TLV },
90 [GSM48_IE_SS_VERS] = { TLV_TYPE_TLV },
91 [GSM48_IE_MORE_DATA] = { TLV_TYPE_T },
92 [GSM48_IE_CLIR_SUPP] = { TLV_TYPE_T },
93 [GSM48_IE_CLIR_INVOC] = { TLV_TYPE_T },
94 [GSM48_IE_REV_C_SETUP] = { TLV_TYPE_T },
Harald Welte0c389302009-06-10 12:08:54 +080095 [GSM48_IE_REPEAT_CIR] = { TLV_TYPE_T },
96 [GSM48_IE_REPEAT_SEQ] = { TLV_TYPE_T },
Harald Welte09e38af2009-02-16 22:52:23 +000097 /* FIXME: more elements */
98 },
99};
Harald Weltecf5b3592009-05-01 18:28:42 +0000100
101static const char *rr_cause_names[] = {
102 [GSM48_RR_CAUSE_NORMAL] = "Normal event",
103 [GSM48_RR_CAUSE_ABNORMAL_UNSPEC] = "Abnormal release, unspecified",
104 [GSM48_RR_CAUSE_ABNORMAL_UNACCT] = "Abnormal release, channel unacceptable",
105 [GSM48_RR_CAUSE_ABNORMAL_TIMER] = "Abnormal release, timer expired",
106 [GSM48_RR_CAUSE_ABNORMAL_NOACT] = "Abnormal release, no activity on radio path",
107 [GSM48_RR_CAUSE_PREMPTIVE_REL] = "Preemptive release",
108 [GSM48_RR_CAUSE_HNDOVER_IMP] = "Handover impossible, timing advance out of range",
109 [GSM48_RR_CAUSE_CHAN_MODE_UNACCT] = "Channel mode unacceptable",
110 [GSM48_RR_CAUSE_FREQ_NOT_IMPL] = "Frequency not implemented",
111 [GSM48_RR_CAUSE_CALL_CLEARED] = "Call already cleared",
112 [GSM48_RR_CAUSE_SEMANT_INCORR] = "Semantically incorrect message",
113 [GSM48_RR_CAUSE_INVALID_MAND_INF] = "Invalid mandatory information",
114 [GSM48_RR_CAUSE_MSG_TYPE_N] = "Message type non-existant or not implemented",
115 [GSM48_RR_CAUSE_MSG_TYPE_N_COMPAT] = "Message type not compatible with protocol state",
116 [GSM48_RR_CAUSE_COND_IE_ERROR] = "Conditional IE error",
117 [GSM48_RR_CAUSE_NO_CELL_ALLOC_A] = "No cell allocation available",
118 [GSM48_RR_CAUSE_PROT_ERROR_UNSPC] = "Protocol error unspecified",
119};
120
Harald Welte4bfdfe72009-06-10 23:11:52 +0800121static const char *cc_state_names[] = {
122 "NULL",
123 "INITIATED",
124 "illegal state 2",
125 "MO_CALL_PROC",
126 "CALL_DELIVERED",
127 "illegal state 5",
128 "CALL_PRESENT",
129 "CALL_RECEIVED",
130 "CONNECT_REQUEST",
131 "MO_TERM_CALL_CONF",
132 "ACTIVE",
133 "DISCONNECT_REQ",
134 "DISCONNECT_IND",
135 "illegal state 13",
136 "illegal state 14",
137 "illegal state 15",
138 "illegal state 16",
139 "illegal state 17",
140 "illegal state 18",
141 "RELEASE_REQ",
142 "illegal state 20",
143 "illegal state 21",
144 "illegal state 22",
145 "illegal state 23",
146 "illegal state 24",
147 "illegal state 25",
148 "MO_ORIG_MODIFY",
149 "MO_TERM_MODIFY",
150 "CONNECT_IND",
151 "illegal state 29",
152 "illegal state 30",
153 "illegal state 31",
154};
155
Harald Weltecf5b3592009-05-01 18:28:42 +0000156static char strbuf[64];
157
158static const char *rr_cause_name(u_int8_t cause)
159{
160 if (cause < ARRAY_SIZE(rr_cause_names) &&
161 rr_cause_names[cause])
162 return rr_cause_names[cause];
163
164 snprintf(strbuf, sizeof(strbuf), "0x%02x", cause);
165 return strbuf;
166}
167
Holger Freytherd51524f2009-06-09 08:27:07 +0000168int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi);
Harald Welte65e74cc2008-12-29 01:55:35 +0000169static int gsm48_tx_simple(struct gsm_lchan *lchan,
170 u_int8_t pdisc, u_int8_t msg_type);
Holger Freytherb7193e42008-12-29 17:44:08 +0000171static void schedule_reject(struct gsm_lchan *lchan);
Harald Welte65e74cc2008-12-29 01:55:35 +0000172
Harald Welte52b1f982008-12-23 20:25:15 +0000173struct gsm_lai {
174 u_int16_t mcc;
175 u_int16_t mnc;
176 u_int16_t lac;
177};
178
Harald Welte4bfdfe72009-06-10 23:11:52 +0800179static u_int32_t new_callref = 0x80000001;
180
Holger Freyther73487a22008-12-31 18:53:57 +0000181static int authorize_subscriber(struct gsm_loc_updating_operation *loc,
182 struct gsm_subscriber *subscriber)
Holger Freyther89824fc2008-12-30 16:18:18 +0000183{
184 if (!subscriber)
185 return 0;
186
Holger Freyther73487a22008-12-31 18:53:57 +0000187 /*
188 * Do not send accept yet as more information should arrive. Some
189 * phones will not send us the information and we will have to check
190 * what we want to do with that.
191 */
192 if (loc && (loc->waiting_for_imsi || loc->waiting_for_imei))
193 return 0;
194
Jan Luebbe06513f22009-08-12 12:48:00 +0200195 switch (subscriber->net->auth_policy) {
196 case GSM_AUTH_POLICY_CLOSED:
197 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200198 case GSM_AUTH_POLICY_TOKEN:
Harald Welte (local)ee9afe32009-08-13 20:44:23 +0200199 if (subscriber->authorized)
200 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200201 return (subscriber->flags & GSM_SUBSCRIBER_FIRST_CONTACT);
Jan Luebbe06513f22009-08-12 12:48:00 +0200202 case GSM_AUTH_POLICY_ACCEPT_ALL:
Holger Freyther89824fc2008-12-30 16:18:18 +0000203 return 1;
Jan Luebbe06513f22009-08-12 12:48:00 +0200204 default:
205 return 0;
206 }
Holger Freyther89824fc2008-12-30 16:18:18 +0000207}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000208
Holger Freyther73487a22008-12-31 18:53:57 +0000209static void release_loc_updating_req(struct gsm_lchan *lchan)
210{
Harald Welte179f0642008-12-31 23:59:18 +0000211 if (!lchan->loc_operation)
Holger Freyther73487a22008-12-31 18:53:57 +0000212 return;
213
Harald Welteff117a82009-05-23 05:22:08 +0000214 bsc_del_timer(&lchan->loc_operation->updating_timer);
Harald Welte2cf161b2009-06-20 22:36:41 +0200215 talloc_free(lchan->loc_operation);
Holger Freyther73487a22008-12-31 18:53:57 +0000216 lchan->loc_operation = 0;
Holger Freyther3eaa7922009-01-01 02:59:03 +0000217 put_lchan(lchan);
Holger Freyther73487a22008-12-31 18:53:57 +0000218}
219
220static void allocate_loc_updating_req(struct gsm_lchan *lchan)
221{
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000222 use_lchan(lchan);
Holger Freyther73487a22008-12-31 18:53:57 +0000223 release_loc_updating_req(lchan);
224
Harald Welte470ec292009-06-26 20:25:23 +0200225 lchan->loc_operation = talloc_zero(tall_locop_ctx,
226 struct gsm_loc_updating_operation);
Holger Freyther73487a22008-12-31 18:53:57 +0000227}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000228
Holger Freytherd51524f2009-06-09 08:27:07 +0000229static int gsm0408_authorize(struct gsm_lchan *lchan, struct msgb *msg)
230{
Holger Freytherd51524f2009-06-09 08:27:07 +0000231 if (authorize_subscriber(lchan->loc_operation, lchan->subscr)) {
Harald Welteee5ad162009-08-09 19:07:00 +0200232 int rc;
233
Holger Freytherd51524f2009-06-09 08:27:07 +0000234 db_subscriber_alloc_tmsi(lchan->subscr);
Holger Freytherd51524f2009-06-09 08:27:07 +0000235 release_loc_updating_req(lchan);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200236 rc = gsm0408_loc_upd_acc(msg->lchan, lchan->subscr->tmsi);
Harald Welte648b6ce2009-12-14 09:00:24 +0100237 if (lchan->ts->trx->bts->network->send_mm_info) {
238 /* send MM INFO with network name */
239 rc = gsm48_tx_mm_info(msg->lchan);
240 }
Harald Welteb83d9382009-12-12 21:00:48 +0100241
Harald Welteee5ad162009-08-09 19:07:00 +0200242 /* call subscr_update after putting the loc_upd_acc
243 * in the transmit queue, since S_SUBSCR_ATTACHED might
244 * trigger further action like SMS delivery */
245 subscr_update(lchan->subscr, msg->trx->bts,
246 GSM_SUBSCRIBER_UPDATE_ATTACHED);
Harald Welteb83d9382009-12-12 21:00:48 +0100247 /* try to close channel ASAP */
248 lchan_auto_release(lchan);
Harald Welteee5ad162009-08-09 19:07:00 +0200249 return rc;
Holger Freytherd51524f2009-06-09 08:27:07 +0000250 }
251
252 return 0;
253}
254
Holger Freyther7c19f742009-06-06 13:54:35 +0000255static int gsm0408_handle_lchan_signal(unsigned int subsys, unsigned int signal,
256 void *handler_data, void *signal_data)
257{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800258 struct gsm_trans *trans, *temp;
259
Holger Freyther7c19f742009-06-06 13:54:35 +0000260 if (subsys != SS_LCHAN || signal != S_LCHAN_UNEXPECTED_RELEASE)
261 return 0;
262
263 /*
264 * Cancel any outstanding location updating request
265 * operation taking place on the lchan.
266 */
Harald Welte1a5c6bd2009-07-04 09:35:21 +0200267 struct gsm_lchan *lchan = (struct gsm_lchan *)signal_data;
Harald Weltec05677b2009-06-26 20:17:06 +0200268 if (!lchan)
269 return 0;
270
Holger Freyther7c19f742009-06-06 13:54:35 +0000271 release_loc_updating_req(lchan);
272
Harald Welte4bfdfe72009-06-10 23:11:52 +0800273 /* Free all transactions that are associated with the released lchan */
Harald Weltedcaf5652009-07-23 18:56:43 +0200274 /* FIXME: this is not neccessarily the right thing to do, we should
275 * only set trans->lchan to NULL and wait for another lchan to be
276 * established to the same MM entity (phone/subscriber) */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800277 llist_for_each_entry_safe(trans, temp, &lchan->ts->trx->bts->network->trans_list, entry) {
278 if (trans->lchan == lchan)
Harald Weltedcaf5652009-07-23 18:56:43 +0200279 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800280 }
281
Holger Freyther7c19f742009-06-06 13:54:35 +0000282 return 0;
283}
284
Harald Welte09e38af2009-02-16 22:52:23 +0000285static const char bcd_num_digits[] = {
286 '0', '1', '2', '3', '4', '5', '6', '7',
287 '8', '9', '*', '#', 'a', 'b', 'c', '\0'
288};
289
Harald Welte0c389302009-06-10 12:08:54 +0800290/* decode a 'called/calling/connect party BCD number' as in 10.5.4.7 */
291int decode_bcd_number(char *output, int output_len, const u_int8_t *bcd_lv,
292 int h_len)
Harald Welte09e38af2009-02-16 22:52:23 +0000293{
294 u_int8_t in_len = bcd_lv[0];
295 int i;
296
Harald Welte0c389302009-06-10 12:08:54 +0800297 for (i = 1 + h_len; i <= in_len; i++) {
Harald Welte09e38af2009-02-16 22:52:23 +0000298 /* lower nibble */
299 output_len--;
300 if (output_len <= 1)
301 break;
302 *output++ = bcd_num_digits[bcd_lv[i] & 0xf];
303
304 /* higher nibble */
305 output_len--;
306 if (output_len <= 1)
307 break;
308 *output++ = bcd_num_digits[bcd_lv[i] >> 4];
309 }
310 if (output_len >= 1)
311 *output++ = '\0';
312
Harald Welte0c389302009-06-10 12:08:54 +0800313 return 0;
Harald Welte09e38af2009-02-16 22:52:23 +0000314}
315
316/* convert a single ASCII character to call-control BCD */
317static int asc_to_bcd(const char asc)
318{
319 int i;
320
321 for (i = 0; i < ARRAY_SIZE(bcd_num_digits); i++) {
322 if (bcd_num_digits[i] == asc)
323 return i;
324 }
325 return -EINVAL;
326}
327
Harald Welte0c389302009-06-10 12:08:54 +0800328/* convert a ASCII phone number to 'called/calling/connect party BCD number' */
Harald Welte09e38af2009-02-16 22:52:23 +0000329int encode_bcd_number(u_int8_t *bcd_lv, u_int8_t max_len,
Harald Welte0c389302009-06-10 12:08:54 +0800330 int h_len, const char *input)
Harald Welte09e38af2009-02-16 22:52:23 +0000331{
332 int in_len = strlen(input);
333 int i;
Harald Welte0c389302009-06-10 12:08:54 +0800334 u_int8_t *bcd_cur = bcd_lv + 1 + h_len;
Harald Welte09e38af2009-02-16 22:52:23 +0000335
336 /* two digits per byte, plus type byte */
Harald Welte0c389302009-06-10 12:08:54 +0800337 bcd_lv[0] = in_len/2 + h_len;
Harald Welte09e38af2009-02-16 22:52:23 +0000338 if (in_len % 2)
339 bcd_lv[0]++;
340
Harald Welte0c389302009-06-10 12:08:54 +0800341 if (bcd_lv[0] > max_len)
342 return -EIO;
Harald Welte09e38af2009-02-16 22:52:23 +0000343
344 for (i = 0; i < in_len; i++) {
345 int rc = asc_to_bcd(input[i]);
346 if (rc < 0)
347 return rc;
348 if (i % 2 == 0)
349 *bcd_cur = rc;
350 else
351 *bcd_cur++ |= (rc << 4);
352 }
353 /* append padding nibble in case of odd length */
354 if (i % 2)
355 *bcd_cur++ |= 0xf0;
356
357 /* return how many bytes we used */
358 return (bcd_cur - bcd_lv);
359}
360
Harald Welte0c389302009-06-10 12:08:54 +0800361/* decode 'bearer capability' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800362static int decode_bearer_cap(struct gsm_mncc_bearer_cap *bcap,
Harald Welte0c389302009-06-10 12:08:54 +0800363 const u_int8_t *lv)
364{
365 u_int8_t in_len = lv[0];
366 int i, s;
367
368 if (in_len < 1)
369 return -EINVAL;
370
Harald Welte4bfdfe72009-06-10 23:11:52 +0800371 bcap->speech_ver[0] = -1; /* end of list, of maximum 7 values */
Harald Welte0c389302009-06-10 12:08:54 +0800372
373 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800374 bcap->transfer = lv[1] & 0x07;
375 bcap->mode = (lv[1] & 0x08) >> 3;
376 bcap->coding = (lv[1] & 0x10) >> 4;
377 bcap->radio = (lv[1] & 0x60) >> 5;
Harald Welte0c389302009-06-10 12:08:54 +0800378
Harald Welte09b7e7f2009-12-12 21:36:53 +0100379 if (bcap->transfer == GSM_MNCC_BCAP_SPEECH) {
380 i = 1;
381 s = 0;
382 while(!(lv[i] & 0x80)) {
383 i++; /* octet 3a etc */
384 if (in_len < i)
385 return 0;
386 bcap->speech_ver[s++] = lv[i] & 0x0f;
387 bcap->speech_ver[s] = -1; /* end of list */
388 if (i == 2) /* octet 3a */
389 bcap->speech_ctm = (lv[i] & 0x20) >> 5;
390 if (s == 7) /* maximum speech versions + end of list */
391 return 0;
392 }
393 } else {
394 i = 1;
395 while (!(lv[i] & 0x80)) {
396 i++; /* octet 3a etc */
397 if (in_len < i)
398 return 0;
399 /* ignore them */
400 }
401 /* FIXME: implement OCTET 4+ parsing */
Harald Welte0c389302009-06-10 12:08:54 +0800402 }
403
404 return 0;
405}
406
407/* encode 'bearer capability' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800408static int encode_bearer_cap(struct msgb *msg, int lv_only,
409 const struct gsm_mncc_bearer_cap *bcap)
Harald Welte0c389302009-06-10 12:08:54 +0800410{
411 u_int8_t lv[32 + 1];
Harald Welte09b7e7f2009-12-12 21:36:53 +0100412 int i = 1, s;
Harald Welte0c389302009-06-10 12:08:54 +0800413
Harald Welte4bfdfe72009-06-10 23:11:52 +0800414 lv[1] = bcap->transfer;
415 lv[1] |= bcap->mode << 3;
416 lv[1] |= bcap->coding << 4;
417 lv[1] |= bcap->radio << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800418
Harald Welte09b7e7f2009-12-12 21:36:53 +0100419 if (bcap->transfer == GSM_MNCC_BCAP_SPEECH) {
420 for (s = 0; bcap->speech_ver[s] >= 0; s++) {
421 i++; /* octet 3a etc */
422 lv[i] = bcap->speech_ver[s];
423 if (i == 2) /* octet 3a */
424 lv[i] |= bcap->speech_ctm << 5;
425 }
426 lv[i] |= 0x80; /* last IE of octet 3 etc */
427 } else {
428 /* FIXME: implement OCTET 4+ encoding */
Harald Welte0c389302009-06-10 12:08:54 +0800429 }
Harald Welte0c389302009-06-10 12:08:54 +0800430
431 lv[0] = i;
432 if (lv_only)
433 msgb_lv_put(msg, lv[0], lv+1);
434 else
435 msgb_tlv_put(msg, GSM48_IE_BEARER_CAP, lv[0], lv+1);
436
437 return 0;
438}
439
440/* decode 'call control cap' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800441static int decode_cccap(struct gsm_mncc_cccap *ccap, const u_int8_t *lv)
Harald Welte0c389302009-06-10 12:08:54 +0800442{
443 u_int8_t in_len = lv[0];
444
445 if (in_len < 1)
446 return -EINVAL;
447
448 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800449 ccap->dtmf = lv[1] & 0x01;
450 ccap->pcp = (lv[1] & 0x02) >> 1;
Harald Welte0c389302009-06-10 12:08:54 +0800451
452 return 0;
453}
454
455/* decode 'called party BCD number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800456static int decode_called(struct gsm_mncc_number *called,
457 const u_int8_t *lv)
Harald Welte0c389302009-06-10 12:08:54 +0800458{
459 u_int8_t in_len = lv[0];
460
461 if (in_len < 1)
462 return -EINVAL;
463
464 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800465 called->plan = lv[1] & 0x0f;
466 called->type = (lv[1] & 0x70) >> 4;
Harald Welte0c389302009-06-10 12:08:54 +0800467
468 /* octet 4..N */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800469 decode_bcd_number(called->number, sizeof(called->number), lv, 1);
Harald Welte0c389302009-06-10 12:08:54 +0800470
471 return 0;
472}
473
474/* encode 'called party BCD number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800475static int encode_called(struct msgb *msg,
476 const struct gsm_mncc_number *called)
Harald Welte0c389302009-06-10 12:08:54 +0800477{
478 u_int8_t lv[18];
479 int ret;
480
481 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800482 lv[1] = called->plan;
483 lv[1] |= called->type << 4;
Harald Welte0c389302009-06-10 12:08:54 +0800484
485 /* octet 4..N, octet 2 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800486 ret = encode_bcd_number(lv, sizeof(lv), 1, called->number);
Harald Welte0c389302009-06-10 12:08:54 +0800487 if (ret < 0)
488 return ret;
489
490 msgb_tlv_put(msg, GSM48_IE_CALLED_BCD, lv[0], lv+1);
491
492 return 0;
493}
494
495/* encode callerid of various IEs */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800496static int encode_callerid(struct msgb *msg, int ie,
497 const struct gsm_mncc_number *callerid)
Harald Welte0c389302009-06-10 12:08:54 +0800498{
499 u_int8_t lv[13];
500 int h_len = 1;
501 int ret;
502
503 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800504 lv[1] = callerid->plan;
505 lv[1] |= callerid->type << 4;
Harald Welte0c389302009-06-10 12:08:54 +0800506
Harald Welte4bfdfe72009-06-10 23:11:52 +0800507 if (callerid->present || callerid->screen) {
Harald Welte0c389302009-06-10 12:08:54 +0800508 /* octet 3a */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800509 lv[2] = callerid->screen;
510 lv[2] |= callerid->present << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800511 lv[2] |= 0x80;
512 h_len++;
513 } else
514 lv[1] |= 0x80;
515
516 /* octet 4..N, octet 2 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800517 ret = encode_bcd_number(lv, sizeof(lv), h_len, callerid->number);
Harald Welte0c389302009-06-10 12:08:54 +0800518 if (ret < 0)
519 return ret;
520
521 msgb_tlv_put(msg, ie, lv[0], lv+1);
522
523 return 0;
524}
525
526/* decode 'cause' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800527static int decode_cause(struct gsm_mncc_cause *cause,
Harald Welte0c389302009-06-10 12:08:54 +0800528 const u_int8_t *lv)
529{
530 u_int8_t in_len = lv[0];
531 int i;
532
533 if (in_len < 2)
534 return -EINVAL;
535
Harald Welte4bfdfe72009-06-10 23:11:52 +0800536 cause->diag_len = 0;
Harald Welte0c389302009-06-10 12:08:54 +0800537
538 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800539 cause->location = lv[1] & 0x0f;
540 cause->coding = (lv[1] & 0x60) >> 5;
Harald Welte0c389302009-06-10 12:08:54 +0800541
542 i = 1;
543 if (!(lv[i] & 0x80)) {
544 i++; /* octet 3a */
545 if (in_len < i+1)
546 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800547 cause->rec = 1;
548 cause->rec_val = lv[i] & 0x7f;
Harald Welte0c389302009-06-10 12:08:54 +0800549
550 }
551 i++;
552
553 /* octet 4 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800554 cause->value = lv[i] & 0x7f;
Harald Welte0c389302009-06-10 12:08:54 +0800555 i++;
556
557 if (in_len < i) /* no diag */
558 return 0;
559
560 if (in_len - (i-1) > 32) /* maximum 32 octets */
561 return 0;
562
563 /* octet 5-N */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800564 memcpy(cause->diag, lv + i, in_len - (i-1));
565 cause->diag_len = in_len - (i-1);
Harald Welte0c389302009-06-10 12:08:54 +0800566
567 return 0;
568}
569
570/* encode 'cause' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800571static int encode_cause(struct msgb *msg, int lv_only,
572 const struct gsm_mncc_cause *cause)
Harald Welte0c389302009-06-10 12:08:54 +0800573{
574 u_int8_t lv[32+4];
575 int i;
576
Harald Welte4bfdfe72009-06-10 23:11:52 +0800577 if (cause->diag_len > 32)
Harald Welte0c389302009-06-10 12:08:54 +0800578 return -EINVAL;
579
580 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800581 lv[1] = cause->location;
582 lv[1] |= cause->coding << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800583
584 i = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800585 if (cause->rec) {
Harald Welte0c389302009-06-10 12:08:54 +0800586 i++; /* octet 3a */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800587 lv[i] = cause->rec_val;
Harald Welte0c389302009-06-10 12:08:54 +0800588 }
589 lv[i] |= 0x80; /* end of octet 3 */
590
591 /* octet 4 */
592 i++;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800593 lv[i] = 0x80 | cause->value;
Harald Welte0c389302009-06-10 12:08:54 +0800594
595 /* octet 5-N */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800596 if (cause->diag_len) {
597 memcpy(lv + i, cause->diag, cause->diag_len);
598 i += cause->diag_len;
Harald Welte0c389302009-06-10 12:08:54 +0800599 }
600
601 lv[0] = i;
602 if (lv_only)
603 msgb_lv_put(msg, lv[0], lv+1);
604 else
605 msgb_tlv_put(msg, GSM48_IE_CAUSE, lv[0], lv+1);
606
607 return 0;
608}
609
610/* encode 'calling number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800611static int encode_calling(struct msgb *msg,
612 const struct gsm_mncc_number *calling)
Harald Welte0c389302009-06-10 12:08:54 +0800613{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800614 return encode_callerid(msg, GSM48_IE_CALLING_BCD, calling);
Harald Welte0c389302009-06-10 12:08:54 +0800615}
616
617/* encode 'connected number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800618static int encode_connected(struct msgb *msg,
619 const struct gsm_mncc_number *connected)
Harald Welte0c389302009-06-10 12:08:54 +0800620{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800621 return encode_callerid(msg, GSM48_IE_CONN_BCD, connected);
Harald Welte0c389302009-06-10 12:08:54 +0800622}
623
624/* encode 'redirecting number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800625static int encode_redirecting(struct msgb *msg,
626 const struct gsm_mncc_number *redirecting)
Harald Welte0c389302009-06-10 12:08:54 +0800627{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800628 return encode_callerid(msg, GSM48_IE_REDIR_BCD, redirecting);
Harald Welte0c389302009-06-10 12:08:54 +0800629}
630
631/* decode 'facility' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800632static int decode_facility(struct gsm_mncc_facility *facility,
Harald Welte0c389302009-06-10 12:08:54 +0800633 const u_int8_t *lv)
634{
635 u_int8_t in_len = lv[0];
636
637 if (in_len < 1)
638 return -EINVAL;
639
Harald Welte4bfdfe72009-06-10 23:11:52 +0800640 if (in_len > sizeof(facility->info))
Harald Welte0c389302009-06-10 12:08:54 +0800641 return -EINVAL;
642
Harald Welte4bfdfe72009-06-10 23:11:52 +0800643 memcpy(facility->info, lv+1, in_len);
644 facility->len = in_len;
Harald Welte0c389302009-06-10 12:08:54 +0800645
646 return 0;
647}
648
649/* encode 'facility' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800650static int encode_facility(struct msgb *msg, int lv_only,
651 const struct gsm_mncc_facility *facility)
Harald Welte0c389302009-06-10 12:08:54 +0800652{
653 u_int8_t lv[GSM_MAX_FACILITY + 1];
654
Harald Welte4bfdfe72009-06-10 23:11:52 +0800655 if (facility->len < 1 || facility->len > GSM_MAX_FACILITY)
Harald Welte0c389302009-06-10 12:08:54 +0800656 return -EINVAL;
657
Harald Welte4bfdfe72009-06-10 23:11:52 +0800658 memcpy(lv+1, facility->info, facility->len);
659 lv[0] = facility->len;
Harald Welte0c389302009-06-10 12:08:54 +0800660 if (lv_only)
661 msgb_lv_put(msg, lv[0], lv+1);
662 else
663 msgb_tlv_put(msg, GSM48_IE_FACILITY, lv[0], lv+1);
664
665 return 0;
666}
667
668/* decode 'notify' */
669static int decode_notify(int *notify, const u_int8_t *v)
670{
671 *notify = v[0] & 0x7f;
672
673 return 0;
674}
675
676/* encode 'notify' */
677static int encode_notify(struct msgb *msg, int notify)
678{
679 msgb_v_put(msg, notify | 0x80);
680
681 return 0;
682}
683
684/* encode 'signal' */
685static int encode_signal(struct msgb *msg, int signal)
686{
687 msgb_tv_put(msg, GSM48_IE_SIGNAL, signal);
688
689 return 0;
690}
691
692/* decode 'keypad' */
693static int decode_keypad(int *keypad, const u_int8_t *lv)
694{
695 u_int8_t in_len = lv[0];
696
697 if (in_len < 1)
698 return -EINVAL;
699
700 *keypad = lv[1] & 0x7f;
701
702 return 0;
703}
704
705/* encode 'keypad' */
706static int encode_keypad(struct msgb *msg, int keypad)
707{
708 msgb_tv_put(msg, GSM48_IE_KPD_FACILITY, keypad);
709
710 return 0;
711}
712
713/* decode 'progress' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800714static int decode_progress(struct gsm_mncc_progress *progress,
Harald Welte0c389302009-06-10 12:08:54 +0800715 const u_int8_t *lv)
716{
717 u_int8_t in_len = lv[0];
718
719 if (in_len < 2)
720 return -EINVAL;
721
Harald Welte4bfdfe72009-06-10 23:11:52 +0800722 progress->coding = (lv[1] & 0x60) >> 5;
723 progress->location = lv[1] & 0x0f;
724 progress->descr = lv[2] & 0x7f;
Harald Welte0c389302009-06-10 12:08:54 +0800725
726 return 0;
727}
728
729/* encode 'progress' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800730static int encode_progress(struct msgb *msg, int lv_only,
731 const struct gsm_mncc_progress *p)
Harald Welte0c389302009-06-10 12:08:54 +0800732{
733 u_int8_t lv[3];
734
735 lv[0] = 2;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800736 lv[1] = 0x80 | ((p->coding & 0x3) << 5) | (p->location & 0xf);
737 lv[2] = 0x80 | (p->descr & 0x7f);
Harald Welte0c389302009-06-10 12:08:54 +0800738 if (lv_only)
739 msgb_lv_put(msg, lv[0], lv+1);
740 else
741 msgb_tlv_put(msg, GSM48_IE_PROGR_IND, lv[0], lv+1);
742
743 return 0;
744}
745
746/* decode 'user-user' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800747static int decode_useruser(struct gsm_mncc_useruser *uu,
Harald Welte0c389302009-06-10 12:08:54 +0800748 const u_int8_t *lv)
749{
750 u_int8_t in_len = lv[0];
Harald Welte4bfdfe72009-06-10 23:11:52 +0800751 char *info = uu->info;
752 int info_len = sizeof(uu->info);
Harald Welte0c389302009-06-10 12:08:54 +0800753 int i;
754
755 if (in_len < 1)
756 return -EINVAL;
757
Harald Welte4bfdfe72009-06-10 23:11:52 +0800758 uu->proto = lv[1];
Harald Welte0c389302009-06-10 12:08:54 +0800759
760 for (i = 2; i <= in_len; i++) {
761 info_len--;
762 if (info_len <= 1)
763 break;
764 *info++ = lv[i];
765 }
766 if (info_len >= 1)
767 *info++ = '\0';
768
769 return 0;
770}
771
772/* encode 'useruser' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800773static int encode_useruser(struct msgb *msg, int lv_only,
774 const struct gsm_mncc_useruser *uu)
Harald Welte0c389302009-06-10 12:08:54 +0800775{
776 u_int8_t lv[GSM_MAX_USERUSER + 2];
777
Harald Welte4bfdfe72009-06-10 23:11:52 +0800778 if (strlen(uu->info) > GSM_MAX_USERUSER)
Harald Welte0c389302009-06-10 12:08:54 +0800779 return -EINVAL;
780
Harald Welte4bfdfe72009-06-10 23:11:52 +0800781 lv[0] = 1 + strlen(uu->info);
782 lv[1] = uu->proto;
783 memcpy(lv + 2, uu->info, strlen(uu->info));
Harald Welte0c389302009-06-10 12:08:54 +0800784 if (lv_only)
785 msgb_lv_put(msg, lv[0], lv+1);
786 else
787 msgb_tlv_put(msg, GSM48_IE_USER_USER, lv[0], lv+1);
788
789 return 0;
790}
791
792/* decode 'ss version' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800793static int decode_ssversion(struct gsm_mncc_ssversion *ssv,
Harald Welte0c389302009-06-10 12:08:54 +0800794 const u_int8_t *lv)
795{
796 u_int8_t in_len = lv[0];
797
Harald Welte4bfdfe72009-06-10 23:11:52 +0800798 if (in_len < 1 || in_len < sizeof(ssv->info))
Harald Welte0c389302009-06-10 12:08:54 +0800799 return -EINVAL;
800
Harald Welte4bfdfe72009-06-10 23:11:52 +0800801 memcpy(ssv->info, lv + 1, in_len);
802 ssv->len = in_len;
Harald Welte0c389302009-06-10 12:08:54 +0800803
804 return 0;
805}
806
807/* encode 'more data' */
808static int encode_more(struct msgb *msg)
809{
810 u_int8_t *ie;
811
812 ie = msgb_put(msg, 1);
813 ie[0] = GSM48_IE_MORE_DATA;
814
815 return 0;
816}
817
Holger Freyther429e7762008-12-30 13:28:30 +0000818/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Harald Welte8470bf22008-12-25 23:28:35 +0000819int gsm0408_loc_upd_rej(struct gsm_lchan *lchan, u_int8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000820{
Harald Welte24ff6ee2009-12-22 00:41:05 +0100821 struct gsm_bts *bts = lchan->ts->trx->bts;
Harald Welte8470bf22008-12-25 23:28:35 +0000822 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000823 struct gsm48_hdr *gh;
824
Harald Welte8470bf22008-12-25 23:28:35 +0000825 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000826
827 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
828 gh->proto_discr = GSM48_PDISC_MM;
Harald Welte10b487b2008-12-27 19:53:37 +0000829 gh->msg_type = GSM48_MT_MM_LOC_UPD_REJECT;
Harald Welte52b1f982008-12-23 20:25:15 +0000830 gh->data[0] = cause;
831
Harald Weltedb253af2008-12-30 17:56:55 +0000832 DEBUGP(DMM, "-> LOCATION UPDATING REJECT on channel: %d\n", lchan->nr);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100833
Harald Welteffa55a42009-12-22 19:07:32 +0100834 counter_inc(bts->network->stats.loc_upd_resp.reject);
Harald Weltedb253af2008-12-30 17:56:55 +0000835
Harald Welte39e2ead2009-07-23 21:13:03 +0200836 return gsm48_sendmsg(msg, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000837}
838
839/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Harald Welte75a983f2008-12-27 21:34:06 +0000840int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000841{
Harald Welte8470bf22008-12-25 23:28:35 +0000842 struct gsm_bts *bts = lchan->ts->trx->bts;
843 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000844 struct gsm48_hdr *gh;
845 struct gsm48_loc_area_id *lai;
846 u_int8_t *mid;
847
Harald Welte8470bf22008-12-25 23:28:35 +0000848 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000849
850 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
851 gh->proto_discr = GSM48_PDISC_MM;
852 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
853
854 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Holger Freyther17746612008-12-28 16:32:44 +0000855 gsm0408_generate_lai(lai, bts->network->country_code,
Harald Welte52b1f982008-12-23 20:25:15 +0000856 bts->network->network_code, bts->location_area_code);
857
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +0200858 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
Holger Hans Peter Freyther5d0e56f2009-08-20 08:41:24 +0200859 gsm48_generate_mid_from_tmsi(mid, tmsi);
Harald Welte52b1f982008-12-23 20:25:15 +0000860
861 DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n");
862
Harald Welteffa55a42009-12-22 19:07:32 +0100863 counter_inc(bts->network->stats.loc_upd_resp.accept);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100864
Harald Welteb83d9382009-12-12 21:00:48 +0100865 return gsm48_sendmsg(msg, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000866}
867
Harald Weltebf5e8df2009-02-03 12:59:45 +0000868/* Transmit Chapter 9.2.10 Identity Request */
Harald Welte231ad4f2008-12-27 11:15:38 +0000869static int mm_tx_identity_req(struct gsm_lchan *lchan, u_int8_t id_type)
870{
871 struct msgb *msg = gsm48_msgb_alloc();
872 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000873
Harald Welte231ad4f2008-12-27 11:15:38 +0000874 msg->lchan = lchan;
875
876 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
877 gh->proto_discr = GSM48_PDISC_MM;
878 gh->msg_type = GSM48_MT_MM_ID_REQ;
879 gh->data[0] = id_type;
880
Harald Welte39e2ead2009-07-23 21:13:03 +0200881 return gsm48_sendmsg(msg, NULL);
Harald Welte231ad4f2008-12-27 11:15:38 +0000882}
883
Harald Welte231ad4f2008-12-27 11:15:38 +0000884
Harald Weltebf5e8df2009-02-03 12:59:45 +0000885/* Parse Chapter 9.2.11 Identity Response */
Harald Welte231ad4f2008-12-27 11:15:38 +0000886static int mm_rx_id_resp(struct msgb *msg)
887{
888 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte75a983f2008-12-27 21:34:06 +0000889 struct gsm_lchan *lchan = msg->lchan;
Harald Welte9176bd42009-07-23 18:46:00 +0200890 struct gsm_bts *bts = lchan->ts->trx->bts;
891 struct gsm_network *net = bts->network;
Harald Welte231ad4f2008-12-27 11:15:38 +0000892 u_int8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200893 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000894
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200895 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte61253062008-12-27 11:25:50 +0000896 DEBUGP(DMM, "IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
Harald Welte231ad4f2008-12-27 11:15:38 +0000897 mi_type, mi_string);
898
Harald Welte7659de12009-12-13 12:39:18 +0100899 dispatch_signal(SS_SUBSCR, S_SUBSCR_IDENTITY, gh->data);
900
Harald Welte75a983f2008-12-27 21:34:06 +0000901 switch (mi_type) {
902 case GSM_MI_TYPE_IMSI:
Jan Luebbe370b41d2009-08-12 10:19:34 +0200903 /* look up subscriber based on IMSI, create if not found */
904 if (!lchan->subscr) {
905 lchan->subscr = subscr_get_by_imsi(net, mi_string);
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200906 if (!lchan->subscr)
907 lchan->subscr = db_create_subscriber(net, mi_string);
Jan Luebbeb0dfc312009-08-12 10:12:52 +0200908 }
Holger Freyther73487a22008-12-31 18:53:57 +0000909 if (lchan->loc_operation)
910 lchan->loc_operation->waiting_for_imsi = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000911 break;
912 case GSM_MI_TYPE_IMEI:
Harald Welte255539c2008-12-28 02:26:27 +0000913 case GSM_MI_TYPE_IMEISV:
Harald Welte75a983f2008-12-27 21:34:06 +0000914 /* update subscribe <-> IMEI mapping */
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200915 if (lchan->subscr) {
Harald Welte75a983f2008-12-27 21:34:06 +0000916 db_subscriber_assoc_imei(lchan->subscr, mi_string);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200917 db_sync_equipment(&lchan->subscr->equipment);
918 }
Holger Freyther73487a22008-12-31 18:53:57 +0000919 if (lchan->loc_operation)
920 lchan->loc_operation->waiting_for_imei = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000921 break;
922 }
Holger Freyther73487a22008-12-31 18:53:57 +0000923
924 /* Check if we can let the mobile station enter */
Holger Freytherd51524f2009-06-09 08:27:07 +0000925 return gsm0408_authorize(lchan, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000926}
927
Harald Welte255539c2008-12-28 02:26:27 +0000928
929static void loc_upd_rej_cb(void *data)
930{
931 struct gsm_lchan *lchan = data;
Harald Welte1085c092009-11-18 20:33:19 +0100932 struct gsm_bts *bts = lchan->ts->trx->bts;
Harald Welte255539c2008-12-28 02:26:27 +0000933
Holger Freyther73487a22008-12-31 18:53:57 +0000934 release_loc_updating_req(lchan);
Harald Welte1085c092009-11-18 20:33:19 +0100935 gsm0408_loc_upd_rej(lchan, bts->network->reject_cause);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000936 lchan_auto_release(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000937}
938
Holger Freytherb7193e42008-12-29 17:44:08 +0000939static void schedule_reject(struct gsm_lchan *lchan)
940{
Holger Freyther73487a22008-12-31 18:53:57 +0000941 lchan->loc_operation->updating_timer.cb = loc_upd_rej_cb;
942 lchan->loc_operation->updating_timer.data = lchan;
Harald Welteff117a82009-05-23 05:22:08 +0000943 bsc_schedule_timer(&lchan->loc_operation->updating_timer, 5, 0);
Holger Freytherb7193e42008-12-29 17:44:08 +0000944}
945
Harald Welte2a139372009-02-22 21:14:55 +0000946static const char *lupd_name(u_int8_t type)
947{
948 switch (type) {
949 case GSM48_LUPD_NORMAL:
950 return "NORMAL";
951 case GSM48_LUPD_PERIODIC:
952 return "PEROIDOC";
953 case GSM48_LUPD_IMSI_ATT:
954 return "IMSI ATTACH";
955 default:
956 return "UNKNOWN";
957 }
958}
959
Harald Weltebf5e8df2009-02-03 12:59:45 +0000960/* Chapter 9.2.15: Receive Location Updating Request */
Harald Welte231ad4f2008-12-27 11:15:38 +0000961static int mm_rx_loc_upd_req(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000962{
Harald Welte8470bf22008-12-25 23:28:35 +0000963 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000964 struct gsm48_loc_upd_req *lu;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800965 struct gsm_subscriber *subscr = NULL;
Harald Welte255539c2008-12-28 02:26:27 +0000966 struct gsm_lchan *lchan = msg->lchan;
Harald Welte9176bd42009-07-23 18:46:00 +0200967 struct gsm_bts *bts = lchan->ts->trx->bts;
Harald Welte8470bf22008-12-25 23:28:35 +0000968 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200969 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000970 int rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000971
Harald Welte8470bf22008-12-25 23:28:35 +0000972 lu = (struct gsm48_loc_upd_req *) gh->data;
973
974 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +0000975
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200976 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Harald Weltefc977a82008-12-27 10:19:37 +0000977
Harald Weltea0368542009-06-27 02:58:43 +0200978 DEBUGPC(DMM, "mi_type=0x%02x MI(%s) type=%s ", mi_type, mi_string,
Harald Welte2a139372009-02-22 21:14:55 +0000979 lupd_name(lu->type));
Holger Freyther73487a22008-12-31 18:53:57 +0000980
Harald Welte7659de12009-12-13 12:39:18 +0100981 dispatch_signal(SS_SUBSCR, S_SUBSCR_IDENTITY, &lu->mi_len);
982
Harald Welte24ff6ee2009-12-22 00:41:05 +0100983 switch (lu->type) {
984 case GSM48_LUPD_NORMAL:
Harald Welteffa55a42009-12-22 19:07:32 +0100985 counter_inc(bts->network->stats.loc_upd_type.normal);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100986 break;
987 case GSM48_LUPD_IMSI_ATT:
Harald Welteffa55a42009-12-22 19:07:32 +0100988 counter_inc(bts->network->stats.loc_upd_type.attach);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100989 break;
990 case GSM48_LUPD_PERIODIC:
Harald Welteffa55a42009-12-22 19:07:32 +0100991 counter_inc(bts->network->stats.loc_upd_type.periodic);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100992 break;
993 }
994
Holger Freythereaf04692009-06-06 13:54:44 +0000995 /*
996 * Pseudo Spoof detection: Just drop a second/concurrent
997 * location updating request.
998 */
999 if (lchan->loc_operation) {
Harald Weltea0368542009-06-27 02:58:43 +02001000 DEBUGPC(DMM, "ignoring request due an existing one: %p.\n",
Holger Freythereaf04692009-06-06 13:54:44 +00001001 lchan->loc_operation);
1002 gsm0408_loc_upd_rej(lchan, GSM48_REJECT_PROTOCOL_ERROR);
1003 return 0;
1004 }
1005
Holger Freyther73487a22008-12-31 18:53:57 +00001006 allocate_loc_updating_req(lchan);
1007
Harald Welte52b1f982008-12-23 20:25:15 +00001008 switch (mi_type) {
1009 case GSM_MI_TYPE_IMSI:
Harald Weltea0368542009-06-27 02:58:43 +02001010 DEBUGPC(DMM, "\n");
Harald Welte231ad4f2008-12-27 11:15:38 +00001011 /* we always want the IMEI, too */
Harald Welte015b9ad2009-02-28 18:22:03 +00001012 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
Holger Freyther73487a22008-12-31 18:53:57 +00001013 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +00001014
Jan Luebbe370b41d2009-08-12 10:19:34 +02001015 /* look up subscriber based on IMSI, create if not found */
1016 subscr = subscr_get_by_imsi(bts->network, mi_string);
1017 if (!subscr) {
1018 subscr = db_create_subscriber(bts->network, mi_string);
1019 }
Harald Welte4b634542008-12-27 01:55:51 +00001020 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001021 case GSM_MI_TYPE_TMSI:
Harald Weltea0368542009-06-27 02:58:43 +02001022 DEBUGPC(DMM, "\n");
Harald Welte231ad4f2008-12-27 11:15:38 +00001023 /* we always want the IMEI, too */
Harald Welte015b9ad2009-02-28 18:22:03 +00001024 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
Holger Freyther73487a22008-12-31 18:53:57 +00001025 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +00001026
Harald Welte52b1f982008-12-23 20:25:15 +00001027 /* look up the subscriber based on TMSI, request IMSI if it fails */
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001028 subscr = subscr_get_by_tmsi(bts->network,
1029 tmsi_from_string(mi_string));
Harald Welte52b1f982008-12-23 20:25:15 +00001030 if (!subscr) {
Harald Welte231ad4f2008-12-27 11:15:38 +00001031 /* send IDENTITY REQUEST message to get IMSI */
Harald Welte255539c2008-12-28 02:26:27 +00001032 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMSI);
Holger Freyther73487a22008-12-31 18:53:57 +00001033 lchan->loc_operation->waiting_for_imsi = 1;
Harald Welte52b1f982008-12-23 20:25:15 +00001034 }
1035 break;
1036 case GSM_MI_TYPE_IMEI:
1037 case GSM_MI_TYPE_IMEISV:
1038 /* no sim card... FIXME: what to do ? */
Harald Weltea0368542009-06-27 02:58:43 +02001039 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001040 break;
1041 default:
Harald Weltea0368542009-06-27 02:58:43 +02001042 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001043 break;
1044 }
1045
Harald Welte24516ea2009-07-04 10:18:00 +02001046 /* schedule the reject timer */
1047 schedule_reject(lchan);
1048
Harald Welte4bfdfe72009-06-10 23:11:52 +08001049 if (!subscr) {
Harald Weltea0368542009-06-27 02:58:43 +02001050 DEBUGPC(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001051 /* FIXME: request id? close channel? */
1052 return -EINVAL;
1053 }
1054
Harald Welte255539c2008-12-28 02:26:27 +00001055 lchan->subscr = subscr;
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001056 lchan->subscr->equipment.classmark1 = lu->classmark1;
Harald Welte255539c2008-12-28 02:26:27 +00001057
Harald Welte24516ea2009-07-04 10:18:00 +02001058 /* check if we can let the subscriber into our network immediately
1059 * or if we need to wait for identity responses. */
Holger Freytherd51524f2009-06-09 08:27:07 +00001060 return gsm0408_authorize(lchan, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001061}
1062
Harald Welte4bfdfe72009-06-10 23:11:52 +08001063#if 0
1064static u_int8_t to_bcd8(u_int8_t val)
1065{
1066 return ((val / 10) << 4) | (val % 10);
1067}
1068#endif
1069
Harald Weltedb253af2008-12-30 17:56:55 +00001070/* Section 9.2.15a */
1071int gsm48_tx_mm_info(struct gsm_lchan *lchan)
1072{
1073 struct msgb *msg = gsm48_msgb_alloc();
1074 struct gsm48_hdr *gh;
1075 struct gsm_network *net = lchan->ts->trx->bts->network;
Harald Weltedb253af2008-12-30 17:56:55 +00001076 u_int8_t *ptr8;
Daniel Willmanneea93372009-08-13 03:42:07 +02001077 int name_len, name_pad;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001078#if 0
1079 time_t cur_t;
1080 struct tm* cur_time;
1081 int tz15min;
1082#endif
Harald Weltedb253af2008-12-30 17:56:55 +00001083
1084 msg->lchan = lchan;
1085
1086 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1087 gh->proto_discr = GSM48_PDISC_MM;
1088 gh->msg_type = GSM48_MT_MM_INFO;
1089
1090 if (net->name_long) {
Daniel Willmanneea93372009-08-13 03:42:07 +02001091#if 0
Harald Weltedb253af2008-12-30 17:56:55 +00001092 name_len = strlen(net->name_long);
1093 /* 10.5.3.5a */
1094 ptr8 = msgb_put(msg, 3);
1095 ptr8[0] = GSM48_IE_NAME_LONG;
1096 ptr8[1] = name_len*2 +1;
1097 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
1098
1099 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
1100 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +00001101 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +00001102
1103 /* FIXME: Use Cell Broadcast, not UCS-2, since
1104 * UCS-2 is only supported by later revisions of the spec */
Daniel Willmanneea93372009-08-13 03:42:07 +02001105#endif
1106 name_len = (strlen(net->name_long)*7)/8;
1107 name_pad = (8 - strlen(net->name_long)*7)%8;
1108 if (name_pad > 0)
1109 name_len++;
1110 /* 10.5.3.5a */
1111 ptr8 = msgb_put(msg, 3);
1112 ptr8[0] = GSM48_IE_NAME_LONG;
1113 ptr8[1] = name_len +1;
1114 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
1115
1116 ptr8 = msgb_put(msg, name_len);
1117 gsm_7bit_encode(ptr8, net->name_long);
1118
Harald Weltedb253af2008-12-30 17:56:55 +00001119 }
1120
1121 if (net->name_short) {
Daniel Willmanneea93372009-08-13 03:42:07 +02001122#if 0
Harald Weltedb253af2008-12-30 17:56:55 +00001123 name_len = strlen(net->name_short);
1124 /* 10.5.3.5a */
1125 ptr8 = (u_int8_t *) msgb_put(msg, 3);
Harald Welte7543eb72009-07-19 17:51:36 +02001126 ptr8[0] = GSM48_IE_NAME_SHORT;
Harald Weltedb253af2008-12-30 17:56:55 +00001127 ptr8[1] = name_len*2 + 1;
1128 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
1129
Harald Weltee872cb12009-01-01 00:33:37 +00001130 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +00001131 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +00001132 ptr16[i] = htons(net->name_short[i]);
Daniel Willmanneea93372009-08-13 03:42:07 +02001133#endif
1134 name_len = (strlen(net->name_short)*7)/8;
1135 name_pad = (8 - strlen(net->name_short)*7)%8;
1136 if (name_pad > 0)
1137 name_len++;
1138 /* 10.5.3.5a */
1139 ptr8 = (u_int8_t *) msgb_put(msg, 3);
1140 ptr8[0] = GSM48_IE_NAME_SHORT;
1141 ptr8[1] = name_len +1;
1142 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
1143
1144 ptr8 = msgb_put(msg, name_len);
1145 gsm_7bit_encode(ptr8, net->name_short);
1146
Harald Weltedb253af2008-12-30 17:56:55 +00001147 }
1148
1149#if 0
1150 /* Section 10.5.3.9 */
1151 cur_t = time(NULL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001152 cur_time = gmtime(&cur_t);
Harald Weltedb253af2008-12-30 17:56:55 +00001153 ptr8 = msgb_put(msg, 8);
1154 ptr8[0] = GSM48_IE_NET_TIME_TZ;
1155 ptr8[1] = to_bcd8(cur_time->tm_year % 100);
1156 ptr8[2] = to_bcd8(cur_time->tm_mon);
1157 ptr8[3] = to_bcd8(cur_time->tm_mday);
1158 ptr8[4] = to_bcd8(cur_time->tm_hour);
1159 ptr8[5] = to_bcd8(cur_time->tm_min);
1160 ptr8[6] = to_bcd8(cur_time->tm_sec);
1161 /* 02.42: coded as BCD encoded signed value in units of 15 minutes */
1162 tz15min = (cur_time->tm_gmtoff)/(60*15);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001163 ptr8[7] = to_bcd8(tz15min);
Harald Weltedb253af2008-12-30 17:56:55 +00001164 if (tz15min < 0)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001165 ptr8[7] |= 0x80;
Harald Weltedb253af2008-12-30 17:56:55 +00001166#endif
1167
Daniel Willmanneea93372009-08-13 03:42:07 +02001168 DEBUGP(DMM, "-> MM INFO\n");
1169
Harald Welte39e2ead2009-07-23 21:13:03 +02001170 return gsm48_sendmsg(msg, NULL);
Harald Weltedb253af2008-12-30 17:56:55 +00001171}
1172
Harald Welte7984d5c2009-08-12 22:56:50 +02001173/* Section 9.2.2 */
1174int gsm48_tx_mm_auth_req(struct gsm_lchan *lchan, u_int8_t *rand)
1175{
1176 struct msgb *msg = gsm48_msgb_alloc();
1177 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Sylvain Munaut849f5542009-09-27 11:10:17 +02001178 struct gsm48_auth_req *ar = (struct gsm48_auth_req *) msgb_put(msg, sizeof(*ar));
Harald Welte7984d5c2009-08-12 22:56:50 +02001179
1180 DEBUGP(DMM, "-> AUTH REQ\n");
1181
1182 msg->lchan = lchan;
1183 gh->proto_discr = GSM48_PDISC_MM;
1184 gh->msg_type = GSM48_MT_MM_AUTH_REQ;
1185
Sylvain Munaut849f5542009-09-27 11:10:17 +02001186 /* Key Sequence: FIXME fixed to 0 */
1187 ar->key_seq = 0;
1188
Harald Welte7984d5c2009-08-12 22:56:50 +02001189 /* 16 bytes RAND parameters */
Harald Welte7984d5c2009-08-12 22:56:50 +02001190 if (rand)
Sylvain Munaut849f5542009-09-27 11:10:17 +02001191 memcpy(ar->rand, rand, 16);
Harald Welte7984d5c2009-08-12 22:56:50 +02001192
1193 return gsm48_sendmsg(msg, NULL);
1194}
1195
1196/* Section 9.2.1 */
1197int gsm48_tx_mm_auth_rej(struct gsm_lchan *lchan)
1198{
1199 DEBUGP(DMM, "-> AUTH REJECT\n");
1200 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_AUTH_REJ);
1201}
1202
Harald Welte4b634542008-12-27 01:55:51 +00001203static int gsm48_tx_mm_serv_ack(struct gsm_lchan *lchan)
1204{
Harald Welte4b634542008-12-27 01:55:51 +00001205 DEBUGP(DMM, "-> CM SERVICE ACK\n");
Harald Welte65e74cc2008-12-29 01:55:35 +00001206 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_ACC);
Harald Welte4b634542008-12-27 01:55:51 +00001207}
Harald Welteba4cf162009-01-10 01:49:35 +00001208
1209/* 9.2.6 CM service reject */
1210static int gsm48_tx_mm_serv_rej(struct gsm_lchan *lchan,
1211 enum gsm48_reject_value value)
1212{
1213 struct msgb *msg = gsm48_msgb_alloc();
1214 struct gsm48_hdr *gh;
1215
1216 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
1217
1218 msg->lchan = lchan;
1219 use_lchan(lchan);
1220
1221 gh->proto_discr = GSM48_PDISC_MM;
1222 gh->msg_type = GSM48_MT_MM_CM_SERV_REJ;
1223 gh->data[0] = value;
1224 DEBUGP(DMM, "-> CM SERVICE Reject cause: %d\n", value);
1225
Harald Welte39e2ead2009-07-23 21:13:03 +02001226 return gsm48_sendmsg(msg, NULL);
Harald Welteba4cf162009-01-10 01:49:35 +00001227}
1228
Harald Welte4ed0e922009-01-10 03:17:30 +00001229/*
1230 * Handle CM Service Requests
1231 * a) Verify that the packet is long enough to contain the information
1232 * we require otherwsie reject with INCORRECT_MESSAGE
1233 * b) Try to parse the TMSI. If we do not have one reject
1234 * c) Check that we know the subscriber with the TMSI otherwise reject
1235 * with a HLR cause
1236 * d) Set the subscriber on the gsm_lchan and accept
1237 */
Harald Welte4b634542008-12-27 01:55:51 +00001238static int gsm48_rx_mm_serv_req(struct msgb *msg)
1239{
Harald Welteba4cf162009-01-10 01:49:35 +00001240 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001241 char mi_string[GSM48_MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +00001242
Harald Welte9176bd42009-07-23 18:46:00 +02001243 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welteba4cf162009-01-10 01:49:35 +00001244 struct gsm_subscriber *subscr;
1245 struct gsm48_hdr *gh = msgb_l3(msg);
1246 struct gsm48_service_request *req =
1247 (struct gsm48_service_request *)gh->data;
Harald Weltec9e02182009-05-01 19:07:53 +00001248 /* unfortunately in Phase1 the classmar2 length is variable */
1249 u_int8_t classmark2_len = gh->data[1];
1250 u_int8_t *classmark2 = gh->data+2;
1251 u_int8_t mi_len = *(classmark2 + classmark2_len);
1252 u_int8_t *mi = (classmark2 + classmark2_len + 1);
Harald Welteba4cf162009-01-10 01:49:35 +00001253
Harald Weltec9e02182009-05-01 19:07:53 +00001254 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
Harald Welteba4cf162009-01-10 01:49:35 +00001255 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
Harald Weltec9e02182009-05-01 19:07:53 +00001256 DEBUGPC(DMM, "wrong sized message\n");
Harald Welteba4cf162009-01-10 01:49:35 +00001257 return gsm48_tx_mm_serv_rej(msg->lchan,
1258 GSM48_REJECT_INCORRECT_MESSAGE);
1259 }
1260
1261 if (msg->data_len < req->mi_len + 6) {
Harald Weltec9e02182009-05-01 19:07:53 +00001262 DEBUGPC(DMM, "does not fit in packet\n");
Harald Welteba4cf162009-01-10 01:49:35 +00001263 return gsm48_tx_mm_serv_rej(msg->lchan,
1264 GSM48_REJECT_INCORRECT_MESSAGE);
1265 }
1266
Harald Weltec9e02182009-05-01 19:07:53 +00001267 mi_type = mi[0] & GSM_MI_TYPE_MASK;
Harald Welteba4cf162009-01-10 01:49:35 +00001268 if (mi_type != GSM_MI_TYPE_TMSI) {
Harald Weltec9e02182009-05-01 19:07:53 +00001269 DEBUGPC(DMM, "mi_type is not TMSI: %d\n", mi_type);
Harald Welteba4cf162009-01-10 01:49:35 +00001270 return gsm48_tx_mm_serv_rej(msg->lchan,
1271 GSM48_REJECT_INCORRECT_MESSAGE);
1272 }
1273
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001274 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
Harald Weltec9e02182009-05-01 19:07:53 +00001275 DEBUGPC(DMM, "serv_type=0x%02x mi_type=0x%02x M(%s)\n",
Harald Welte4ed0e922009-01-10 03:17:30 +00001276 req->cm_service_type, mi_type, mi_string);
Harald Weltebcae43f2008-12-27 21:45:37 +00001277
Harald Welte7659de12009-12-13 12:39:18 +01001278 dispatch_signal(SS_SUBSCR, S_SUBSCR_IDENTITY, (classmark2 + classmark2_len));
1279
Harald Welte3ac7f102009-08-10 10:12:45 +02001280 if (is_siemens_bts(bts))
1281 send_siemens_mrpci(msg->lchan, classmark2-1);
1282
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001283 subscr = subscr_get_by_tmsi(bts->network,
1284 tmsi_from_string(mi_string));
Holger Freythereb443982009-06-04 13:58:42 +00001285
Harald Welte2a139372009-02-22 21:14:55 +00001286 /* FIXME: if we don't know the TMSI, inquire abit IMSI and allocate new TMSI */
Harald Welte4ed0e922009-01-10 03:17:30 +00001287 if (!subscr)
1288 return gsm48_tx_mm_serv_rej(msg->lchan,
1289 GSM48_REJECT_IMSI_UNKNOWN_IN_HLR);
1290
1291 if (!msg->lchan->subscr)
1292 msg->lchan->subscr = subscr;
Sylvain Munautea3f6742009-12-18 18:28:10 +01001293 else if (msg->lchan->subscr == subscr)
1294 subscr_put(subscr); /* lchan already has a ref, don't need another one */
1295 else {
Harald Welte9bb7c702009-01-10 03:21:41 +00001296 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
1297 subscr_put(subscr);
1298 }
1299
Harald Weltec2e302d2009-07-05 14:08:13 +02001300 subscr->equipment.classmark2_len = classmark2_len;
1301 memcpy(subscr->equipment.classmark2, classmark2, classmark2_len);
1302 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001303
Harald Welte4b634542008-12-27 01:55:51 +00001304 return gsm48_tx_mm_serv_ack(msg->lchan);
1305}
1306
Harald Welte2a139372009-02-22 21:14:55 +00001307static int gsm48_rx_mm_imsi_detach_ind(struct msgb *msg)
1308{
Harald Welte9176bd42009-07-23 18:46:00 +02001309 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2a139372009-02-22 21:14:55 +00001310 struct gsm48_hdr *gh = msgb_l3(msg);
1311 struct gsm48_imsi_detach_ind *idi =
1312 (struct gsm48_imsi_detach_ind *) gh->data;
1313 u_int8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001314 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001315 struct gsm_subscriber *subscr = NULL;
Harald Welte2a139372009-02-22 21:14:55 +00001316
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001317 gsm48_mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
Harald Welte2a139372009-02-22 21:14:55 +00001318 DEBUGP(DMM, "IMSI DETACH INDICATION: mi_type=0x%02x MI(%s): ",
1319 mi_type, mi_string);
1320
Harald Welteffa55a42009-12-22 19:07:32 +01001321 counter_inc(bts->network->stats.loc_upd_type.detach);
Harald Welte24ff6ee2009-12-22 00:41:05 +01001322
Harald Welte2a139372009-02-22 21:14:55 +00001323 switch (mi_type) {
1324 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001325 subscr = subscr_get_by_tmsi(bts->network,
1326 tmsi_from_string(mi_string));
Harald Welte2a139372009-02-22 21:14:55 +00001327 break;
1328 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001329 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +00001330 break;
1331 case GSM_MI_TYPE_IMEI:
1332 case GSM_MI_TYPE_IMEISV:
1333 /* no sim card... FIXME: what to do ? */
Holger Freyther79f4ae62009-06-02 03:25:04 +00001334 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001335 break;
1336 default:
Holger Freyther79f4ae62009-06-02 03:25:04 +00001337 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001338 break;
1339 }
1340
Holger Freyther4a49e772009-04-12 05:37:29 +00001341 if (subscr) {
1342 subscr_update(subscr, msg->trx->bts,
1343 GSM_SUBSCRIBER_UPDATE_DETACHED);
Harald Welte2e6d4682009-12-24 14:50:24 +01001344 DEBUGP(DMM, "Subscriber: %s\n", subscr_name(subscr));
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001345
1346 subscr->equipment.classmark1 = idi->classmark1;
1347 db_sync_equipment(&subscr->equipment);
1348
Holger Freytherc21cfbc2009-06-02 02:54:57 +00001349 subscr_put(subscr);
Holger Freyther4a49e772009-04-12 05:37:29 +00001350 } else
Harald Welte2a139372009-02-22 21:14:55 +00001351 DEBUGP(DMM, "Unknown Subscriber ?!?\n");
1352
Harald Welte31981a02009-12-20 09:58:40 +01001353 /* FIXME: iterate over all transactions and release them,
1354 * imagine an IMSI DETACH happening during an active call! */
1355
Harald Welteb83d9382009-12-12 21:00:48 +01001356 /* subscriber is detached: should we release lchan? */
Harald Weltef7c28b02009-12-21 13:30:17 +01001357 lchan_auto_release(msg->lchan);
Harald Welteb83d9382009-12-12 21:00:48 +01001358
Harald Welte2a139372009-02-22 21:14:55 +00001359 return 0;
1360}
1361
Harald Welted2a7f5a2009-06-05 20:08:20 +00001362static int gsm48_rx_mm_status(struct msgb *msg)
1363{
1364 struct gsm48_hdr *gh = msgb_l3(msg);
1365
1366 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
1367
1368 return 0;
1369}
1370
Harald Weltebf5e8df2009-02-03 12:59:45 +00001371/* Receive a GSM 04.08 Mobility Management (MM) message */
Harald Welte52b1f982008-12-23 20:25:15 +00001372static int gsm0408_rcv_mm(struct msgb *msg)
1373{
1374 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001375 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001376
1377 switch (gh->msg_type & 0xbf) {
1378 case GSM48_MT_MM_LOC_UPD_REQUEST:
Harald Weltea0368542009-06-27 02:58:43 +02001379 DEBUGP(DMM, "LOCATION UPDATING REQUEST: ");
Harald Welte231ad4f2008-12-27 11:15:38 +00001380 rc = mm_rx_loc_upd_req(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001381 break;
1382 case GSM48_MT_MM_ID_RESP:
Harald Welte231ad4f2008-12-27 11:15:38 +00001383 rc = mm_rx_id_resp(msg);
1384 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001385 case GSM48_MT_MM_CM_SERV_REQ:
Harald Welte4b634542008-12-27 01:55:51 +00001386 rc = gsm48_rx_mm_serv_req(msg);
1387 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001388 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +00001389 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001390 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001391 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte69b2af22009-01-06 19:47:00 +00001392 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
1393 msg->lchan->subscr ?
Harald Welte2e6d4682009-12-24 14:50:24 +01001394 subscr_name(msg->lchan->subscr) :
Harald Welte69b2af22009-01-06 19:47:00 +00001395 "unknown subscriber");
1396 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001397 case GSM48_MT_MM_IMSI_DETACH_IND:
Harald Welte2a139372009-02-22 21:14:55 +00001398 rc = gsm48_rx_mm_imsi_detach_ind(msg);
1399 break;
1400 case GSM48_MT_MM_CM_REEST_REQ:
1401 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
1402 break;
1403 case GSM48_MT_MM_AUTH_RESP:
1404 DEBUGP(DMM, "AUTHENTICATION RESPONSE: Not implemented\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001405 break;
1406 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01001407 LOGP(DMM, LOGL_NOTICE, "Unknown GSM 04.08 MM msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00001408 gh->msg_type);
1409 break;
1410 }
1411
1412 return rc;
1413}
Harald Weltebf5e8df2009-02-03 12:59:45 +00001414
Harald Welte2d35ae62009-02-06 12:02:13 +00001415/* Receive a PAGING RESPONSE message from the MS */
Holger Hans Peter Freytherca0fcbe2009-10-23 13:48:54 +02001416static int gsm48_rx_rr_pag_resp(struct msgb *msg)
Harald Welte2d35ae62009-02-06 12:02:13 +00001417{
Harald Welte9176bd42009-07-23 18:46:00 +02001418 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2d35ae62009-02-06 12:02:13 +00001419 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte61548982009-02-22 21:26:29 +00001420 u_int8_t *classmark2_lv = gh->data + 1;
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001421 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001422 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001423 struct gsm_subscriber *subscr = NULL;
Harald Welte2d35ae62009-02-06 12:02:13 +00001424 int rc = 0;
1425
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001426 gsm48_paging_extract_mi(msg, mi_string, &mi_type);
Harald Welte2d35ae62009-02-06 12:02:13 +00001427 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
1428 mi_type, mi_string);
Harald Welte3ac7f102009-08-10 10:12:45 +02001429
Harald Weltefe18d8f2009-02-22 21:14:24 +00001430 switch (mi_type) {
1431 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001432 subscr = subscr_get_by_tmsi(bts->network,
1433 tmsi_from_string(mi_string));
Harald Weltefe18d8f2009-02-22 21:14:24 +00001434 break;
1435 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001436 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +00001437 break;
1438 }
Harald Welte2d35ae62009-02-06 12:02:13 +00001439
1440 if (!subscr) {
1441 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte09e38af2009-02-16 22:52:23 +00001442 /* FIXME: request id? close channel? */
Harald Welte2d35ae62009-02-06 12:02:13 +00001443 return -EINVAL;
1444 }
1445 DEBUGP(DRR, "<- Channel was requested by %s\n",
Harald Welte76042182009-08-08 16:03:15 +02001446 subscr->name && strlen(subscr->name) ? subscr->name : subscr->imsi);
Holger Freyther053e09d2009-02-14 22:51:06 +00001447
Harald Weltec2e302d2009-07-05 14:08:13 +02001448 subscr->equipment.classmark2_len = *classmark2_lv;
1449 memcpy(subscr->equipment.classmark2, classmark2_lv+1, *classmark2_lv);
1450 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001451
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001452 rc = gsm48_handle_paging_resp(msg, subscr);
Harald Welte2d35ae62009-02-06 12:02:13 +00001453 return rc;
1454}
1455
Harald Weltef7c43522009-06-09 20:24:21 +00001456static int gsm48_rx_rr_classmark(struct msgb *msg)
1457{
1458 struct gsm48_hdr *gh = msgb_l3(msg);
1459 struct gsm_subscriber *subscr = msg->lchan->subscr;
1460 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1461 u_int8_t cm2_len, cm3_len = 0;
1462 u_int8_t *cm2, *cm3 = NULL;
1463
1464 DEBUGP(DRR, "CLASSMARK CHANGE ");
1465
1466 /* classmark 2 */
1467 cm2_len = gh->data[0];
1468 cm2 = &gh->data[1];
1469 DEBUGPC(DRR, "CM2(len=%u) ", cm2_len);
1470
1471 if (payload_len > cm2_len + 1) {
1472 /* we must have a classmark3 */
1473 if (gh->data[cm2_len+1] != 0x20) {
1474 DEBUGPC(DRR, "ERR CM3 TAG\n");
1475 return -EINVAL;
1476 }
1477 if (cm2_len > 3) {
1478 DEBUGPC(DRR, "CM2 too long!\n");
1479 return -EINVAL;
1480 }
1481
1482 cm3_len = gh->data[cm2_len+2];
1483 cm3 = &gh->data[cm2_len+3];
1484 if (cm3_len > 14) {
1485 DEBUGPC(DRR, "CM3 len %u too long!\n", cm3_len);
1486 return -EINVAL;
1487 }
1488 DEBUGPC(DRR, "CM3(len=%u)\n", cm3_len);
1489 }
1490 if (subscr) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001491 subscr->equipment.classmark2_len = cm2_len;
1492 memcpy(subscr->equipment.classmark2, cm2, cm2_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001493 if (cm3) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001494 subscr->equipment.classmark3_len = cm3_len;
1495 memcpy(subscr->equipment.classmark3, cm3, cm3_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001496 }
Harald Weltec2e302d2009-07-05 14:08:13 +02001497 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001498 }
1499
Harald Weltef7c43522009-06-09 20:24:21 +00001500 return 0;
1501}
1502
Harald Weltecf5b3592009-05-01 18:28:42 +00001503static int gsm48_rx_rr_status(struct msgb *msg)
1504{
1505 struct gsm48_hdr *gh = msgb_l3(msg);
1506
1507 DEBUGP(DRR, "STATUS rr_cause = %s\n",
1508 rr_cause_name(gh->data[0]));
1509
1510 return 0;
1511}
1512
Harald Weltef7c43522009-06-09 20:24:21 +00001513static int gsm48_rx_rr_meas_rep(struct msgb *msg)
1514{
Harald Welted12b0fd2009-12-15 21:36:05 +01001515 struct gsm_meas_rep *meas_rep = lchan_next_meas_rep(msg->lchan);
Harald Weltef7c43522009-06-09 20:24:21 +00001516
Harald Welte3c7dc6e2009-11-29 19:07:28 +01001517 /* This shouldn't actually end up here, as RSL treats
1518 * L3 Info of 08.58 MEASUREMENT REPORT different by calling
1519 * directly into gsm48_parse_meas_rep */
1520 DEBUGP(DMEAS, "DIRECT GSM48 MEASUREMENT REPORT ?!? ");
Harald Welted12b0fd2009-12-15 21:36:05 +01001521 gsm48_parse_meas_rep(meas_rep, msg);
Harald Weltef7c43522009-06-09 20:24:21 +00001522
1523 return 0;
1524}
1525
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001526static int gsm48_rx_rr_app_info(struct msgb *msg)
1527{
1528 struct gsm48_hdr *gh = msgb_l3(msg);
1529 u_int8_t apdu_id_flags;
1530 u_int8_t apdu_len;
1531 u_int8_t *apdu_data;
1532
1533 apdu_id_flags = gh->data[0];
1534 apdu_len = gh->data[1];
1535 apdu_data = gh->data+2;
1536
1537 DEBUGP(DNM, "RX APPLICATION INFO id/flags=0x%02x apdu_len=%u apdu=%s",
1538 apdu_id_flags, apdu_len, hexdump(apdu_data, apdu_len));
1539
Harald Welte (local)026531e2009-08-16 10:40:10 +02001540 return db_apdu_blob_store(msg->lchan->subscr, apdu_id_flags, apdu_len, apdu_data);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001541}
1542
Harald Welted011e8b2009-11-29 22:45:52 +01001543/* Chapter 9.1.16 Handover complete */
Harald Welte1e191c52009-12-14 17:51:15 +01001544static int gsm48_rx_rr_ho_compl(struct msgb *msg)
Harald Welted011e8b2009-11-29 22:45:52 +01001545{
1546 struct gsm48_hdr *gh = msgb_l3(msg);
1547
1548 DEBUGP(DRR, "HANDOVER COMPLETE cause = %s\n",
1549 rr_cause_name(gh->data[0]));
1550
1551 dispatch_signal(SS_LCHAN, S_LCHAN_HANDOVER_COMPL, msg->lchan);
1552 /* FIXME: release old channel */
1553
1554 return 0;
1555}
1556
1557/* Chapter 9.1.17 Handover Failure */
Harald Welte1e191c52009-12-14 17:51:15 +01001558static int gsm48_rx_rr_ho_fail(struct msgb *msg)
Harald Welted011e8b2009-11-29 22:45:52 +01001559{
1560 struct gsm48_hdr *gh = msgb_l3(msg);
1561
1562 DEBUGP(DRR, "HANDOVER FAILED cause = %s\n",
1563 rr_cause_name(gh->data[0]));
1564
1565 dispatch_signal(SS_LCHAN, S_LCHAN_HANDOVER_FAIL, msg->lchan);
1566 /* FIXME: release allocated new channel */
1567
1568 return 0;
1569}
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001570
Harald Weltebf5e8df2009-02-03 12:59:45 +00001571/* Receive a GSM 04.08 Radio Resource (RR) message */
Harald Welte52b1f982008-12-23 20:25:15 +00001572static int gsm0408_rcv_rr(struct msgb *msg)
1573{
1574 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001575 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001576
1577 switch (gh->msg_type) {
1578 case GSM48_MT_RR_CLSM_CHG:
Harald Weltef7c43522009-06-09 20:24:21 +00001579 rc = gsm48_rx_rr_classmark(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001580 break;
Harald Weltefc977a82008-12-27 10:19:37 +00001581 case GSM48_MT_RR_GPRS_SUSP_REQ:
1582 DEBUGP(DRR, "GRPS SUSPEND REQUEST\n");
1583 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001584 case GSM48_MT_RR_PAG_RESP:
Holger Hans Peter Freytherca0fcbe2009-10-23 13:48:54 +02001585 rc = gsm48_rx_rr_pag_resp(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001586 break;
Harald Welte7ccf7782009-02-17 01:43:01 +00001587 case GSM48_MT_RR_CHAN_MODE_MODIF_ACK:
Holger Hans Peter Freytherf520e642009-10-22 15:23:11 +02001588 rc = gsm48_rx_rr_modif_ack(msg);
Harald Welte7ccf7782009-02-17 01:43:01 +00001589 break;
Harald Weltecf5b3592009-05-01 18:28:42 +00001590 case GSM48_MT_RR_STATUS:
1591 rc = gsm48_rx_rr_status(msg);
1592 break;
Harald Weltef7c43522009-06-09 20:24:21 +00001593 case GSM48_MT_RR_MEAS_REP:
1594 rc = gsm48_rx_rr_meas_rep(msg);
1595 break;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001596 case GSM48_MT_RR_APP_INFO:
1597 rc = gsm48_rx_rr_app_info(msg);
1598 break;
Harald Welte08d91a52009-08-30 15:37:11 +09001599 case GSM48_MT_RR_CIPH_M_COMPL:
1600 DEBUGP(DRR, "CIPHERING MODE COMPLETE\n");
1601 /* FIXME: check for MI (if any) */
1602 break;
Harald Welteccd5a882009-11-29 20:02:20 +01001603 case GSM48_MT_RR_HANDO_COMPL:
Harald Welted011e8b2009-11-29 22:45:52 +01001604 rc = gsm48_rx_rr_ho_compl(msg);
Harald Welteccd5a882009-11-29 20:02:20 +01001605 break;
1606 case GSM48_MT_RR_HANDO_FAIL:
Harald Welted011e8b2009-11-29 22:45:52 +01001607 rc = gsm48_rx_rr_ho_fail(msg);
Harald Welteccd5a882009-11-29 20:02:20 +01001608 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001609 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01001610 LOGP(DRR, LOGL_NOTICE, "Unimplemented "
1611 "GSM 04.08 RR msg type 0x%02x\n", gh->msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +00001612 break;
1613 }
1614
Harald Welte2d35ae62009-02-06 12:02:13 +00001615 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001616}
1617
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001618int gsm48_send_rr_app_info(struct gsm_lchan *lchan, u_int8_t apdu_id,
Holger Hans Peter Freyther8b77a342009-10-22 15:42:19 +02001619 u_int8_t apdu_len, const u_int8_t *apdu)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001620{
1621 struct msgb *msg = gsm48_msgb_alloc();
1622 struct gsm48_hdr *gh;
1623
1624 msg->lchan = lchan;
1625
1626 DEBUGP(DRR, "TX APPLICATION INFO id=0x%02x, len=%u\n",
1627 apdu_id, apdu_len);
1628
1629 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2 + apdu_len);
1630 gh->proto_discr = GSM48_PDISC_RR;
1631 gh->msg_type = GSM48_MT_RR_APP_INFO;
1632 gh->data[0] = apdu_id;
1633 gh->data[1] = apdu_len;
1634 memcpy(gh->data+2, apdu, apdu_len);
1635
1636 return gsm48_sendmsg(msg, NULL);
1637}
1638
Harald Welte4bc90a12008-12-27 16:32:52 +00001639/* Call Control */
1640
Harald Welte7584aea2009-02-11 11:44:12 +00001641/* The entire call control code is written in accordance with Figure 7.10c
1642 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1643 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1644 * it for voice */
1645
Harald Welte4bfdfe72009-06-10 23:11:52 +08001646static void new_cc_state(struct gsm_trans *trans, int state)
1647{
1648 if (state > 31 || state < 0)
1649 return;
1650
1651 DEBUGP(DCC, "new state %s -> %s\n",
Harald Weltedcaf5652009-07-23 18:56:43 +02001652 cc_state_names[trans->cc.state], cc_state_names[state]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001653
Harald Weltedcaf5652009-07-23 18:56:43 +02001654 trans->cc.state = state;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001655}
1656
1657static int gsm48_cc_tx_status(struct gsm_trans *trans, void *arg)
Harald Welte4bc90a12008-12-27 16:32:52 +00001658{
1659 struct msgb *msg = gsm48_msgb_alloc();
1660 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1661 u_int8_t *cause, *call_state;
1662
Harald Welte4bc90a12008-12-27 16:32:52 +00001663 gh->msg_type = GSM48_MT_CC_STATUS;
1664
1665 cause = msgb_put(msg, 3);
1666 cause[0] = 2;
1667 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1668 cause[2] = 0x80 | 30; /* response to status inquiry */
1669
1670 call_state = msgb_put(msg, 1);
1671 call_state[0] = 0xc0 | 0x00;
1672
Harald Welte39e2ead2009-07-23 21:13:03 +02001673 return gsm48_sendmsg(msg, trans);
Harald Welte4bc90a12008-12-27 16:32:52 +00001674}
1675
Harald Welte6f4b7532008-12-29 00:39:37 +00001676static int gsm48_tx_simple(struct gsm_lchan *lchan,
1677 u_int8_t pdisc, u_int8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001678{
1679 struct msgb *msg = gsm48_msgb_alloc();
1680 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1681
1682 msg->lchan = lchan;
1683
Harald Welte6f4b7532008-12-29 00:39:37 +00001684 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001685 gh->msg_type = msg_type;
1686
Harald Welte39e2ead2009-07-23 21:13:03 +02001687 return gsm48_sendmsg(msg, NULL);
Harald Welte4bc90a12008-12-27 16:32:52 +00001688}
1689
Harald Welte4bfdfe72009-06-10 23:11:52 +08001690static void gsm48_stop_cc_timer(struct gsm_trans *trans)
1691{
Harald Weltedcaf5652009-07-23 18:56:43 +02001692 if (bsc_timer_pending(&trans->cc.timer)) {
1693 DEBUGP(DCC, "stopping pending timer T%x\n", trans->cc.Tcurrent);
1694 bsc_del_timer(&trans->cc.timer);
1695 trans->cc.Tcurrent = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001696 }
1697}
1698
1699static int mncc_recvmsg(struct gsm_network *net, struct gsm_trans *trans,
1700 int msg_type, struct gsm_mncc *mncc)
1701{
1702 struct msgb *msg;
1703
1704 if (trans)
1705 if (trans->lchan)
Harald Welte6f5aee02009-07-23 21:21:14 +02001706 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08001707 "Sending '%s' to MNCC.\n",
1708 trans->lchan->ts->trx->bts->nr,
1709 trans->lchan->ts->trx->nr,
1710 trans->lchan->ts->nr, trans->transaction_id,
1711 (trans->subscr)?(trans->subscr->extension):"-",
1712 get_mncc_name(msg_type));
1713 else
1714 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
1715 "Sending '%s' to MNCC.\n",
1716 (trans->subscr)?(trans->subscr->extension):"-",
1717 get_mncc_name(msg_type));
1718 else
1719 DEBUGP(DCC, "(bts - trx - ts - ti -- sub -) "
1720 "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
1721
1722 mncc->msg_type = msg_type;
1723
Harald Welte966636f2009-06-26 19:39:35 +02001724 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001725 if (!msg)
1726 return -ENOMEM;
1727 memcpy(msg->data, mncc, sizeof(struct gsm_mncc));
1728 msgb_enqueue(&net->upqueue, msg);
1729
1730 return 0;
1731}
1732
1733int mncc_release_ind(struct gsm_network *net, struct gsm_trans *trans,
1734 u_int32_t callref, int location, int value)
1735{
1736 struct gsm_mncc rel;
1737
Harald Welte92f70c52009-06-12 01:54:08 +08001738 memset(&rel, 0, sizeof(rel));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001739 rel.callref = callref;
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001740 mncc_set_cause(&rel, location, value);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001741 return mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
1742}
1743
Harald Weltedcaf5652009-07-23 18:56:43 +02001744/* Call Control Specific transaction release.
1745 * gets called by trans_free, DO NOT CALL YOURSELF! */
1746void _gsm48_cc_trans_free(struct gsm_trans *trans)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001747{
Harald Welte4bfdfe72009-06-10 23:11:52 +08001748 gsm48_stop_cc_timer(trans);
1749
1750 /* send release to L4, if callref still exists */
1751 if (trans->callref) {
1752 /* Ressource unavailable */
Harald Welte596fed42009-07-23 19:06:52 +02001753 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001754 GSM48_CAUSE_LOC_PRN_S_LU,
1755 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001756 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001757 if (trans->cc.state != GSM_CSTATE_NULL)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001758 new_cc_state(trans, GSM_CSTATE_NULL);
Harald Weltedcaf5652009-07-23 18:56:43 +02001759 if (trans->lchan)
1760 trau_mux_unmap(&trans->lchan->ts->e1_link, trans->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001761}
1762
1763static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg);
1764
Harald Welte09e38af2009-02-16 22:52:23 +00001765/* call-back from paging the B-end of the connection */
1766static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Harald Welte7ccf7782009-02-17 01:43:01 +00001767 struct msgb *msg, void *_lchan, void *param)
Harald Welte09e38af2009-02-16 22:52:23 +00001768{
Harald Welte7ccf7782009-02-17 01:43:01 +00001769 struct gsm_lchan *lchan = _lchan;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001770 struct gsm_subscriber *subscr = param;
1771 struct gsm_trans *transt, *tmp;
1772 struct gsm_network *net;
Harald Weltec05677b2009-06-26 20:17:06 +02001773
Harald Welte09e38af2009-02-16 22:52:23 +00001774 if (hooknum != GSM_HOOK_RR_PAGING)
1775 return -EINVAL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001776
1777 if (!subscr)
1778 return -EINVAL;
1779 net = subscr->net;
1780 if (!net) {
1781 DEBUGP(DCC, "Error Network not set!\n");
1782 return -EINVAL;
Harald Welte5a065df2009-02-22 21:13:18 +00001783 }
Harald Welte7584aea2009-02-11 11:44:12 +00001784
Harald Welte4bfdfe72009-06-10 23:11:52 +08001785 /* check all tranactions (without lchan) for subscriber */
1786 llist_for_each_entry_safe(transt, tmp, &net->trans_list, entry) {
1787 if (transt->subscr != subscr || transt->lchan)
1788 continue;
1789 switch (event) {
1790 case GSM_PAGING_SUCCEEDED:
1791 if (!lchan) // paranoid
1792 break;
1793 DEBUGP(DCC, "Paging subscr %s succeeded!\n",
1794 subscr->extension);
1795 /* Assign lchan */
1796 if (!transt->lchan) {
1797 transt->lchan = lchan;
1798 use_lchan(lchan);
1799 }
1800 /* send SETUP request to called party */
Harald Weltedcaf5652009-07-23 18:56:43 +02001801 gsm48_cc_tx_setup(transt, &transt->cc.msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001802 break;
1803 case GSM_PAGING_EXPIRED:
1804 DEBUGP(DCC, "Paging subscr %s expired!\n",
1805 subscr->extension);
1806 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02001807 mncc_release_ind(transt->subscr->net, transt,
1808 transt->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001809 GSM48_CAUSE_LOC_PRN_S_LU,
1810 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001811 transt->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001812 trans_free(transt);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001813 break;
1814 }
1815 }
Harald Welte09e38af2009-02-16 22:52:23 +00001816 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001817}
Harald Welte7584aea2009-02-11 11:44:12 +00001818
Harald Welteda7ab742009-12-19 22:23:05 +01001819static int tch_recv_mncc(struct gsm_network *net, u_int32_t callref, int enable);
1820
Harald Welte805f6442009-07-28 18:25:29 +02001821/* some other part of the code sends us a signal */
1822static int handle_abisip_signal(unsigned int subsys, unsigned int signal,
1823 void *handler_data, void *signal_data)
1824{
1825 struct gsm_lchan *lchan = signal_data;
Harald Welte805f6442009-07-28 18:25:29 +02001826 int rc;
Harald Welteda7ab742009-12-19 22:23:05 +01001827 struct gsm_network *net;
1828 struct gsm_trans *trans;
Harald Welte805f6442009-07-28 18:25:29 +02001829
1830 if (subsys != SS_ABISIP)
1831 return 0;
1832
1833 /* in case we use direct BTS-to-BTS RTP */
1834 if (ipacc_rtp_direct)
1835 return 0;
1836
Harald Welte805f6442009-07-28 18:25:29 +02001837 switch (signal) {
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001838 case S_ABISIP_CRCX_ACK:
Harald Welteda7ab742009-12-19 22:23:05 +01001839 /* check if any transactions on this lchan still have
1840 * a tch_recv_mncc request pending */
1841 net = lchan->ts->trx->bts->network;
1842 llist_for_each_entry(trans, &net->trans_list, entry) {
1843 if (trans->lchan == lchan && trans->tch_recv) {
1844 DEBUGP(DCC, "pending tch_recv_mncc request\n");
1845 tch_recv_mncc(net, trans->callref, 1);
1846 }
1847 }
Harald Welte805f6442009-07-28 18:25:29 +02001848 break;
Harald Welte805f6442009-07-28 18:25:29 +02001849 }
1850
1851 return 0;
Harald Welte805f6442009-07-28 18:25:29 +02001852}
1853
Harald Welte49f48b82009-02-17 15:29:33 +00001854/* map two ipaccess RTP streams onto each other */
Harald Welte11fa29c2009-02-19 17:24:39 +00001855static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
Harald Welte49f48b82009-02-17 15:29:33 +00001856{
Harald Welte11fa29c2009-02-19 17:24:39 +00001857 struct gsm_bts *bts = lchan->ts->trx->bts;
1858 struct gsm_bts *remote_bts = remote_lchan->ts->trx->bts;
Harald Welte805f6442009-07-28 18:25:29 +02001859 int rc;
Harald Welte49f48b82009-02-17 15:29:33 +00001860
Harald Welte11fa29c2009-02-19 17:24:39 +00001861 DEBUGP(DCC, "Setting up TCH map between (bts=%u,trx=%u,ts=%u) and (bts=%u,trx=%u,ts=%u)\n",
1862 bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1863 remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr);
1864
1865 if (bts->type != remote_bts->type) {
1866 DEBUGP(DCC, "Cannot switch calls between different BTS types yet\n");
1867 return -EINVAL;
1868 }
Harald Welteda7ab742009-12-19 22:23:05 +01001869
1870 // todo: map between different bts types
Harald Welte11fa29c2009-02-19 17:24:39 +00001871 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +01001872 case GSM_BTS_TYPE_NANOBTS:
Harald Welte805f6442009-07-28 18:25:29 +02001873 if (!ipacc_rtp_direct) {
1874 /* connect the TCH's to our RTP proxy */
Harald Weltea72273e2009-12-20 16:51:09 +01001875 rc = rsl_ipacc_mdcx_to_rtpsock(lchan);
Harald Welte805f6442009-07-28 18:25:29 +02001876 if (rc < 0)
1877 return rc;
Harald Weltea72273e2009-12-20 16:51:09 +01001878 rc = rsl_ipacc_mdcx_to_rtpsock(remote_lchan);
Harald Welteda7ab742009-12-19 22:23:05 +01001879#warning do we need a check of rc here?
Harald Welte805f6442009-07-28 18:25:29 +02001880
1881 /* connect them with each other */
Harald Welte2c828992009-12-02 01:56:49 +05301882 rtp_socket_proxy(lchan->abis_ip.rtp_socket,
1883 remote_lchan->abis_ip.rtp_socket);
Harald Welte805f6442009-07-28 18:25:29 +02001884 } else {
1885 /* directly connect TCH RTP streams to each other */
Harald Welte2c828992009-12-02 01:56:49 +05301886 rc = rsl_ipacc_mdcx(lchan, remote_lchan->abis_ip.bound_ip,
1887 remote_lchan->abis_ip.bound_port,
Harald Welte2c828992009-12-02 01:56:49 +05301888 remote_lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001889 if (rc < 0)
1890 return rc;
Harald Welte2c828992009-12-02 01:56:49 +05301891 rc = rsl_ipacc_mdcx(remote_lchan, lchan->abis_ip.bound_ip,
1892 lchan->abis_ip.bound_port,
Harald Welte2c828992009-12-02 01:56:49 +05301893 lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001894 }
Harald Welte11fa29c2009-02-19 17:24:39 +00001895 break;
1896 case GSM_BTS_TYPE_BS11:
1897 trau_mux_map_lchan(lchan, remote_lchan);
1898 break;
1899 default:
1900 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
Harald Welteda7ab742009-12-19 22:23:05 +01001901 return -EINVAL;
Harald Welte11fa29c2009-02-19 17:24:39 +00001902 }
Harald Welte49f48b82009-02-17 15:29:33 +00001903
1904 return 0;
1905}
1906
Harald Welte4bfdfe72009-06-10 23:11:52 +08001907/* bridge channels of two transactions */
1908static int tch_bridge(struct gsm_network *net, u_int32_t *refs)
Harald Welte7ccf7782009-02-17 01:43:01 +00001909{
Harald Weltedcaf5652009-07-23 18:56:43 +02001910 struct gsm_trans *trans1 = trans_find_by_callref(net, refs[0]);
1911 struct gsm_trans *trans2 = trans_find_by_callref(net, refs[1]);
Harald Welte7ccf7782009-02-17 01:43:01 +00001912
Harald Welte4bfdfe72009-06-10 23:11:52 +08001913 if (!trans1 || !trans2)
Harald Welte7ccf7782009-02-17 01:43:01 +00001914 return -EIO;
1915
Harald Welte4bfdfe72009-06-10 23:11:52 +08001916 if (!trans1->lchan || !trans2->lchan)
1917 return -EIO;
1918
1919 /* through-connect channel */
1920 return tch_map(trans1->lchan, trans2->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00001921}
1922
Harald Welteda7ab742009-12-19 22:23:05 +01001923/* enable receive of channels to MNCC upqueue */
1924static int tch_recv_mncc(struct gsm_network *net, u_int32_t callref, int enable)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001925{
1926 struct gsm_trans *trans;
Harald Welteda7ab742009-12-19 22:23:05 +01001927 struct gsm_lchan *lchan;
1928 struct gsm_bts *bts;
1929 int rc;
Harald Welte7ccf7782009-02-17 01:43:01 +00001930
Harald Welte4bfdfe72009-06-10 23:11:52 +08001931 /* Find callref */
Harald Welteda7ab742009-12-19 22:23:05 +01001932 trans = trans_find_by_callref(net, callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001933 if (!trans)
1934 return -EIO;
1935 if (!trans->lchan)
1936 return 0;
Harald Welteda7ab742009-12-19 22:23:05 +01001937 lchan = trans->lchan;
1938 bts = lchan->ts->trx->bts;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001939
Harald Welteda7ab742009-12-19 22:23:05 +01001940 switch (bts->type) {
1941 case GSM_BTS_TYPE_NANOBTS:
1942 if (ipacc_rtp_direct) {
1943 DEBUGP(DCC, "Error: RTP proxy is disabled\n");
1944 return -EINVAL;
1945 }
1946 /* in case, we don't have a RTP socket yet, we note this
1947 * in the transaction and try later */
1948 if (!lchan->abis_ip.rtp_socket) {
1949 trans->tch_recv = enable;
1950 DEBUGP(DCC, "queue tch_recv_mncc request (%d)\n", enable);
1951 return 0;
1952 }
1953 if (enable) {
1954 /* connect the TCH's to our RTP proxy */
Harald Weltea72273e2009-12-20 16:51:09 +01001955 rc = rsl_ipacc_mdcx_to_rtpsock(lchan);
Harald Welteda7ab742009-12-19 22:23:05 +01001956 if (rc < 0)
1957 return rc;
1958 /* assign socket to application interface */
1959 rtp_socket_upstream(lchan->abis_ip.rtp_socket,
1960 net, callref);
1961 } else
1962 rtp_socket_upstream(lchan->abis_ip.rtp_socket,
1963 net, 0);
1964 break;
1965 case GSM_BTS_TYPE_BS11:
1966 if (enable)
1967 return trau_recv_lchan(lchan, callref);
1968 return trau_mux_unmap(NULL, callref);
1969 break;
1970 default:
1971 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
1972 return -EINVAL;
1973 }
1974
1975 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001976}
1977
Harald Welte4bfdfe72009-06-10 23:11:52 +08001978static int gsm48_cc_rx_status_enq(struct gsm_trans *trans, struct msgb *msg)
1979{
1980 DEBUGP(DCC, "-> STATUS ENQ\n");
1981 return gsm48_cc_tx_status(trans, msg);
1982}
1983
1984static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg);
1985static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg);
1986
1987static void gsm48_cc_timeout(void *arg)
1988{
1989 struct gsm_trans *trans = arg;
1990 int disconnect = 0, release = 0;
Harald Weltec66b71c2009-06-11 14:23:20 +08001991 int mo_cause = GSM48_CC_CAUSE_RECOVERY_TIMER;
1992 int mo_location = GSM48_CAUSE_LOC_USER;
1993 int l4_cause = GSM48_CC_CAUSE_NORMAL_UNSPEC;
1994 int l4_location = GSM48_CAUSE_LOC_PRN_S_LU;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001995 struct gsm_mncc mo_rel, l4_rel;
1996
1997 memset(&mo_rel, 0, sizeof(struct gsm_mncc));
1998 mo_rel.callref = trans->callref;
1999 memset(&l4_rel, 0, sizeof(struct gsm_mncc));
2000 l4_rel.callref = trans->callref;
2001
Harald Weltedcaf5652009-07-23 18:56:43 +02002002 switch(trans->cc.Tcurrent) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002003 case 0x303:
2004 release = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002005 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002006 break;
2007 case 0x310:
2008 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002009 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002010 break;
2011 case 0x313:
2012 disconnect = 1;
2013 /* unknown, did not find it in the specs */
2014 break;
2015 case 0x301:
2016 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002017 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002018 break;
2019 case 0x308:
Harald Weltedcaf5652009-07-23 18:56:43 +02002020 if (!trans->cc.T308_second) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002021 /* restart T308 a second time */
Harald Weltedcaf5652009-07-23 18:56:43 +02002022 gsm48_cc_tx_release(trans, &trans->cc.msg);
2023 trans->cc.T308_second = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002024 break; /* stay in release state */
2025 }
Harald Weltedcaf5652009-07-23 18:56:43 +02002026 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002027 return;
2028// release = 1;
2029// l4_cause = 14;
2030// break;
2031 case 0x306:
2032 release = 1;
Harald Weltedcaf5652009-07-23 18:56:43 +02002033 mo_cause = trans->cc.msg.cause.value;
2034 mo_location = trans->cc.msg.cause.location;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002035 break;
2036 case 0x323:
2037 disconnect = 1;
2038 break;
2039 default:
2040 release = 1;
2041 }
2042
2043 if (release && trans->callref) {
2044 /* process release towards layer 4 */
Harald Welte596fed42009-07-23 19:06:52 +02002045 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002046 l4_location, l4_cause);
2047 trans->callref = 0;
2048 }
2049
2050 if (disconnect && trans->callref) {
2051 /* process disconnect towards layer 4 */
2052 mncc_set_cause(&l4_rel, l4_location, l4_cause);
Harald Welte596fed42009-07-23 19:06:52 +02002053 mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &l4_rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002054 }
2055
2056 /* process disconnect towards mobile station */
2057 if (disconnect || release) {
2058 mncc_set_cause(&mo_rel, mo_location, mo_cause);
Harald Weltedcaf5652009-07-23 18:56:43 +02002059 mo_rel.cause.diag[0] = ((trans->cc.Tcurrent & 0xf00) >> 8) + '0';
2060 mo_rel.cause.diag[1] = ((trans->cc.Tcurrent & 0x0f0) >> 4) + '0';
2061 mo_rel.cause.diag[2] = (trans->cc.Tcurrent & 0x00f) + '0';
Harald Welte4bfdfe72009-06-10 23:11:52 +08002062 mo_rel.cause.diag_len = 3;
2063
2064 if (disconnect)
2065 gsm48_cc_tx_disconnect(trans, &mo_rel);
2066 if (release)
2067 gsm48_cc_tx_release(trans, &mo_rel);
2068 }
2069
2070}
2071
2072static void gsm48_start_cc_timer(struct gsm_trans *trans, int current,
2073 int sec, int micro)
2074{
2075 DEBUGP(DCC, "starting timer T%x with %d seconds\n", current, sec);
Harald Weltedcaf5652009-07-23 18:56:43 +02002076 trans->cc.timer.cb = gsm48_cc_timeout;
2077 trans->cc.timer.data = trans;
2078 bsc_schedule_timer(&trans->cc.timer, sec, micro);
2079 trans->cc.Tcurrent = current;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002080}
2081
2082static int gsm48_cc_rx_setup(struct gsm_trans *trans, struct msgb *msg)
2083{
2084 struct gsm48_hdr *gh = msgb_l3(msg);
2085 u_int8_t msg_type = gh->msg_type & 0xbf;
2086 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2087 struct tlv_parsed tp;
2088 struct gsm_mncc setup;
2089
2090 memset(&setup, 0, sizeof(struct gsm_mncc));
2091 setup.callref = trans->callref;
2092 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2093 /* emergency setup is identified by msg_type */
2094 if (msg_type == GSM48_MT_CC_EMERG_SETUP)
2095 setup.emergency = 1;
2096
2097 /* use subscriber as calling party number */
2098 if (trans->subscr) {
2099 setup.fields |= MNCC_F_CALLING;
2100 strncpy(setup.calling.number, trans->subscr->extension,
2101 sizeof(setup.calling.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002102 strncpy(setup.imsi, trans->subscr->imsi,
2103 sizeof(setup.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002104 }
2105 /* bearer capability */
2106 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2107 setup.fields |= MNCC_F_BEARER_CAP;
2108 decode_bearer_cap(&setup.bearer_cap,
2109 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2110 }
2111 /* facility */
2112 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2113 setup.fields |= MNCC_F_FACILITY;
2114 decode_facility(&setup.facility,
2115 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2116 }
2117 /* called party bcd number */
2118 if (TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD)) {
2119 setup.fields |= MNCC_F_CALLED;
2120 decode_called(&setup.called,
2121 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
2122 }
2123 /* user-user */
2124 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2125 setup.fields |= MNCC_F_USERUSER;
2126 decode_useruser(&setup.useruser,
2127 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2128 }
2129 /* ss-version */
2130 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2131 setup.fields |= MNCC_F_SSVERSION;
2132 decode_ssversion(&setup.ssversion,
2133 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2134 }
2135 /* CLIR suppression */
2136 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_SUPP))
2137 setup.clir.sup = 1;
2138 /* CLIR invocation */
2139 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_INVOC))
2140 setup.clir.inv = 1;
2141 /* cc cap */
2142 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2143 setup.fields |= MNCC_F_CCCAP;
2144 decode_cccap(&setup.cccap,
2145 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2146 }
2147
Harald Welte4bfdfe72009-06-10 23:11:52 +08002148 new_cc_state(trans, GSM_CSTATE_INITIATED);
2149
2150 /* indicate setup to MNCC */
Harald Welte596fed42009-07-23 19:06:52 +02002151 mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_IND, &setup);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002152
Harald Welte13cac662009-07-29 12:10:35 +02002153 /* MNCC code will modify the channel asynchronously, we should
2154 * ipaccess-bind only after the modification has been made to the
2155 * lchan->tch_mode */
Harald Welte4bfdfe72009-06-10 23:11:52 +08002156 return 0;
2157}
2158
2159static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg)
Harald Welte65e74cc2008-12-29 01:55:35 +00002160{
2161 struct msgb *msg = gsm48_msgb_alloc();
2162 struct gsm48_hdr *gh;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002163 struct gsm_mncc *setup = arg;
Harald Welte78283ef2009-07-23 21:36:44 +02002164 int rc, trans_id;
Harald Welte65e74cc2008-12-29 01:55:35 +00002165
Harald Welte7ccf7782009-02-17 01:43:01 +00002166 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00002167
Harald Welte4bfdfe72009-06-10 23:11:52 +08002168 /* transaction id must not be assigned */
2169 if (trans->transaction_id != 0xff) { /* unasssigned */
2170 DEBUGP(DCC, "TX Setup with assigned transaction. "
2171 "This is not allowed!\n");
2172 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02002173 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002174 GSM48_CAUSE_LOC_PRN_S_LU,
2175 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002176 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002177 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002178 return rc;
2179 }
2180
2181 /* Get free transaction_id */
Harald Welte78283ef2009-07-23 21:36:44 +02002182 trans_id = trans_assign_trans_id(trans->subscr, GSM48_PDISC_CC, 0);
2183 if (trans_id < 0) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002184 /* no free transaction ID */
Harald Welte596fed42009-07-23 19:06:52 +02002185 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002186 GSM48_CAUSE_LOC_PRN_S_LU,
2187 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002188 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002189 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002190 return rc;
2191 }
Harald Welte78283ef2009-07-23 21:36:44 +02002192 trans->transaction_id = trans_id;
Harald Welte49f48b82009-02-17 15:29:33 +00002193
Harald Welte65e74cc2008-12-29 01:55:35 +00002194 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00002195
Harald Welte4bfdfe72009-06-10 23:11:52 +08002196 gsm48_start_cc_timer(trans, 0x303, GSM48_T303);
Harald Welte65e74cc2008-12-29 01:55:35 +00002197
Harald Welte4bfdfe72009-06-10 23:11:52 +08002198 /* bearer capability */
2199 if (setup->fields & MNCC_F_BEARER_CAP)
2200 encode_bearer_cap(msg, 0, &setup->bearer_cap);
2201 /* facility */
2202 if (setup->fields & MNCC_F_FACILITY)
2203 encode_facility(msg, 0, &setup->facility);
2204 /* progress */
2205 if (setup->fields & MNCC_F_PROGRESS)
2206 encode_progress(msg, 0, &setup->progress);
2207 /* calling party BCD number */
2208 if (setup->fields & MNCC_F_CALLING)
2209 encode_calling(msg, &setup->calling);
2210 /* called party BCD number */
2211 if (setup->fields & MNCC_F_CALLED)
2212 encode_called(msg, &setup->called);
2213 /* user-user */
2214 if (setup->fields & MNCC_F_USERUSER)
2215 encode_useruser(msg, 0, &setup->useruser);
2216 /* redirecting party BCD number */
2217 if (setup->fields & MNCC_F_REDIRECTING)
2218 encode_redirecting(msg, &setup->redirecting);
2219 /* signal */
2220 if (setup->fields & MNCC_F_SIGNAL)
2221 encode_signal(msg, setup->signal);
2222
2223 new_cc_state(trans, GSM_CSTATE_CALL_PRESENT);
Harald Welte65e74cc2008-12-29 01:55:35 +00002224
Harald Welte39e2ead2009-07-23 21:13:03 +02002225 return gsm48_sendmsg(msg, trans);
Harald Welte65e74cc2008-12-29 01:55:35 +00002226}
2227
Harald Welte4bfdfe72009-06-10 23:11:52 +08002228static int gsm48_cc_rx_call_conf(struct gsm_trans *trans, struct msgb *msg)
2229{
2230 struct gsm48_hdr *gh = msgb_l3(msg);
2231 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2232 struct tlv_parsed tp;
2233 struct gsm_mncc call_conf;
2234
2235 gsm48_stop_cc_timer(trans);
2236 gsm48_start_cc_timer(trans, 0x310, GSM48_T310);
2237
2238 memset(&call_conf, 0, sizeof(struct gsm_mncc));
2239 call_conf.callref = trans->callref;
2240 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2241#if 0
2242 /* repeat */
2243 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_CIR))
2244 call_conf.repeat = 1;
2245 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_SEQ))
2246 call_conf.repeat = 2;
2247#endif
2248 /* bearer capability */
2249 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2250 call_conf.fields |= MNCC_F_BEARER_CAP;
2251 decode_bearer_cap(&call_conf.bearer_cap,
2252 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2253 }
2254 /* cause */
2255 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2256 call_conf.fields |= MNCC_F_CAUSE;
2257 decode_cause(&call_conf.cause,
2258 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2259 }
2260 /* cc cap */
2261 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2262 call_conf.fields |= MNCC_F_CCCAP;
2263 decode_cccap(&call_conf.cccap,
2264 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2265 }
2266
2267 new_cc_state(trans, GSM_CSTATE_MO_TERM_CALL_CONF);
2268
Harald Welte596fed42009-07-23 19:06:52 +02002269 return mncc_recvmsg(trans->subscr->net, trans, MNCC_CALL_CONF_IND,
2270 &call_conf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002271}
2272
2273static int gsm48_cc_tx_call_proc(struct gsm_trans *trans, void *arg)
2274{
2275 struct gsm_mncc *proceeding = 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_CALL_PROC;
2280
2281 new_cc_state(trans, GSM_CSTATE_MO_CALL_PROC);
2282
2283 /* bearer capability */
2284 if (proceeding->fields & MNCC_F_BEARER_CAP)
2285 encode_bearer_cap(msg, 0, &proceeding->bearer_cap);
2286 /* facility */
2287 if (proceeding->fields & MNCC_F_FACILITY)
2288 encode_facility(msg, 0, &proceeding->facility);
2289 /* progress */
2290 if (proceeding->fields & MNCC_F_PROGRESS)
2291 encode_progress(msg, 0, &proceeding->progress);
2292
Harald Welte39e2ead2009-07-23 21:13:03 +02002293 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002294}
2295
2296static int gsm48_cc_rx_alerting(struct gsm_trans *trans, struct msgb *msg)
2297{
2298 struct gsm48_hdr *gh = msgb_l3(msg);
2299 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2300 struct tlv_parsed tp;
2301 struct gsm_mncc alerting;
2302
2303 gsm48_stop_cc_timer(trans);
2304 gsm48_start_cc_timer(trans, 0x301, GSM48_T301);
2305
2306 memset(&alerting, 0, sizeof(struct gsm_mncc));
2307 alerting.callref = trans->callref;
2308 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2309 /* facility */
2310 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2311 alerting.fields |= MNCC_F_FACILITY;
2312 decode_facility(&alerting.facility,
2313 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2314 }
2315
2316 /* progress */
2317 if (TLVP_PRESENT(&tp, GSM48_IE_PROGR_IND)) {
2318 alerting.fields |= MNCC_F_PROGRESS;
2319 decode_progress(&alerting.progress,
2320 TLVP_VAL(&tp, GSM48_IE_PROGR_IND)-1);
2321 }
2322 /* ss-version */
2323 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2324 alerting.fields |= MNCC_F_SSVERSION;
2325 decode_ssversion(&alerting.ssversion,
2326 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2327 }
2328
2329 new_cc_state(trans, GSM_CSTATE_CALL_RECEIVED);
2330
Harald Welte596fed42009-07-23 19:06:52 +02002331 return mncc_recvmsg(trans->subscr->net, trans, MNCC_ALERT_IND,
2332 &alerting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002333}
2334
2335static int gsm48_cc_tx_alerting(struct gsm_trans *trans, void *arg)
2336{
2337 struct gsm_mncc *alerting = arg;
2338 struct msgb *msg = gsm48_msgb_alloc();
2339 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2340
Harald Welte4bfdfe72009-06-10 23:11:52 +08002341 gh->msg_type = GSM48_MT_CC_ALERTING;
2342
2343 /* facility */
2344 if (alerting->fields & MNCC_F_FACILITY)
2345 encode_facility(msg, 0, &alerting->facility);
2346 /* progress */
2347 if (alerting->fields & MNCC_F_PROGRESS)
2348 encode_progress(msg, 0, &alerting->progress);
2349 /* user-user */
2350 if (alerting->fields & MNCC_F_USERUSER)
2351 encode_useruser(msg, 0, &alerting->useruser);
2352
2353 new_cc_state(trans, GSM_CSTATE_CALL_DELIVERED);
2354
Harald Welte39e2ead2009-07-23 21:13:03 +02002355 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002356}
2357
2358static int gsm48_cc_tx_progress(struct gsm_trans *trans, void *arg)
2359{
2360 struct gsm_mncc *progress = arg;
2361 struct msgb *msg = gsm48_msgb_alloc();
2362 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2363
Harald Welte4bfdfe72009-06-10 23:11:52 +08002364 gh->msg_type = GSM48_MT_CC_PROGRESS;
2365
2366 /* progress */
2367 encode_progress(msg, 1, &progress->progress);
2368 /* user-user */
2369 if (progress->fields & MNCC_F_USERUSER)
2370 encode_useruser(msg, 0, &progress->useruser);
2371
Harald Welte39e2ead2009-07-23 21:13:03 +02002372 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002373}
2374
2375static int gsm48_cc_tx_connect(struct gsm_trans *trans, void *arg)
2376{
2377 struct gsm_mncc *connect = arg;
2378 struct msgb *msg = gsm48_msgb_alloc();
2379 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2380
Harald Welte4bfdfe72009-06-10 23:11:52 +08002381 gh->msg_type = GSM48_MT_CC_CONNECT;
2382
2383 gsm48_stop_cc_timer(trans);
2384 gsm48_start_cc_timer(trans, 0x313, GSM48_T313);
2385
2386 /* facility */
2387 if (connect->fields & MNCC_F_FACILITY)
2388 encode_facility(msg, 0, &connect->facility);
2389 /* progress */
2390 if (connect->fields & MNCC_F_PROGRESS)
2391 encode_progress(msg, 0, &connect->progress);
2392 /* connected number */
2393 if (connect->fields & MNCC_F_CONNECTED)
2394 encode_connected(msg, &connect->connected);
2395 /* user-user */
2396 if (connect->fields & MNCC_F_USERUSER)
2397 encode_useruser(msg, 0, &connect->useruser);
2398
2399 new_cc_state(trans, GSM_CSTATE_CONNECT_IND);
2400
Harald Welte39e2ead2009-07-23 21:13:03 +02002401 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002402}
2403
2404static int gsm48_cc_rx_connect(struct gsm_trans *trans, struct msgb *msg)
2405{
2406 struct gsm48_hdr *gh = msgb_l3(msg);
2407 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2408 struct tlv_parsed tp;
2409 struct gsm_mncc connect;
2410
2411 gsm48_stop_cc_timer(trans);
2412
2413 memset(&connect, 0, sizeof(struct gsm_mncc));
2414 connect.callref = trans->callref;
2415 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2416 /* use subscriber as connected party number */
2417 if (trans->subscr) {
2418 connect.fields |= MNCC_F_CONNECTED;
2419 strncpy(connect.connected.number, trans->subscr->extension,
2420 sizeof(connect.connected.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002421 strncpy(connect.imsi, trans->subscr->imsi,
2422 sizeof(connect.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002423 }
2424 /* facility */
2425 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2426 connect.fields |= MNCC_F_FACILITY;
2427 decode_facility(&connect.facility,
2428 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2429 }
2430 /* user-user */
2431 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2432 connect.fields |= MNCC_F_USERUSER;
2433 decode_useruser(&connect.useruser,
2434 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2435 }
2436 /* ss-version */
2437 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2438 connect.fields |= MNCC_F_SSVERSION;
2439 decode_ssversion(&connect.ssversion,
2440 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2441 }
2442
2443 new_cc_state(trans, GSM_CSTATE_CONNECT_REQUEST);
2444
Harald Welte596fed42009-07-23 19:06:52 +02002445 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_CNF, &connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002446}
2447
2448
2449static int gsm48_cc_rx_connect_ack(struct gsm_trans *trans, struct msgb *msg)
2450{
2451 struct gsm_mncc connect_ack;
2452
2453 gsm48_stop_cc_timer(trans);
2454
2455 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2456
2457 memset(&connect_ack, 0, sizeof(struct gsm_mncc));
2458 connect_ack.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002459 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_COMPL_IND,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002460 &connect_ack);
2461}
2462
2463static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg)
2464{
2465 struct msgb *msg = gsm48_msgb_alloc();
2466 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2467
Harald Welte4bfdfe72009-06-10 23:11:52 +08002468 gh->msg_type = GSM48_MT_CC_CONNECT_ACK;
2469
2470 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2471
Harald Welte39e2ead2009-07-23 21:13:03 +02002472 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002473}
2474
2475static int gsm48_cc_rx_disconnect(struct gsm_trans *trans, struct msgb *msg)
2476{
2477 struct gsm48_hdr *gh = msgb_l3(msg);
2478 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2479 struct tlv_parsed tp;
2480 struct gsm_mncc disc;
2481
2482 gsm48_stop_cc_timer(trans);
2483
2484 new_cc_state(trans, GSM_CSTATE_DISCONNECT_REQ);
2485
2486 memset(&disc, 0, sizeof(struct gsm_mncc));
2487 disc.callref = trans->callref;
2488 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_CAUSE, 0);
2489 /* cause */
2490 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2491 disc.fields |= MNCC_F_CAUSE;
2492 decode_cause(&disc.cause,
2493 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2494 }
2495 /* facility */
2496 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2497 disc.fields |= MNCC_F_FACILITY;
2498 decode_facility(&disc.facility,
2499 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2500 }
2501 /* user-user */
2502 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2503 disc.fields |= MNCC_F_USERUSER;
2504 decode_useruser(&disc.useruser,
2505 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2506 }
2507 /* ss-version */
2508 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2509 disc.fields |= MNCC_F_SSVERSION;
2510 decode_ssversion(&disc.ssversion,
2511 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2512 }
2513
Harald Welte596fed42009-07-23 19:06:52 +02002514 return mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &disc);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002515
2516}
2517
Harald Weltec66b71c2009-06-11 14:23:20 +08002518static struct gsm_mncc_cause default_cause = {
2519 .location = GSM48_CAUSE_LOC_PRN_S_LU,
2520 .coding = 0,
2521 .rec = 0,
2522 .rec_val = 0,
2523 .value = GSM48_CC_CAUSE_NORMAL_UNSPEC,
2524 .diag_len = 0,
2525 .diag = { 0 },
2526};
Harald Welte4bfdfe72009-06-10 23:11:52 +08002527
2528static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg)
2529{
2530 struct gsm_mncc *disc = arg;
2531 struct msgb *msg = gsm48_msgb_alloc();
2532 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2533
Harald Welte4bfdfe72009-06-10 23:11:52 +08002534 gh->msg_type = GSM48_MT_CC_DISCONNECT;
2535
2536 gsm48_stop_cc_timer(trans);
2537 gsm48_start_cc_timer(trans, 0x306, GSM48_T306);
2538
2539 /* cause */
2540 if (disc->fields & MNCC_F_CAUSE)
2541 encode_cause(msg, 1, &disc->cause);
2542 else
2543 encode_cause(msg, 1, &default_cause);
2544
2545 /* facility */
2546 if (disc->fields & MNCC_F_FACILITY)
2547 encode_facility(msg, 0, &disc->facility);
2548 /* progress */
2549 if (disc->fields & MNCC_F_PROGRESS)
2550 encode_progress(msg, 0, &disc->progress);
2551 /* user-user */
2552 if (disc->fields & MNCC_F_USERUSER)
2553 encode_useruser(msg, 0, &disc->useruser);
2554
2555 /* store disconnect cause for T306 expiry */
Harald Weltedcaf5652009-07-23 18:56:43 +02002556 memcpy(&trans->cc.msg, disc, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002557
2558 new_cc_state(trans, GSM_CSTATE_DISCONNECT_IND);
2559
Harald Welte39e2ead2009-07-23 21:13:03 +02002560 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002561}
2562
2563static int gsm48_cc_rx_release(struct gsm_trans *trans, struct msgb *msg)
2564{
2565 struct gsm48_hdr *gh = msgb_l3(msg);
2566 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2567 struct tlv_parsed tp;
2568 struct gsm_mncc rel;
2569 int rc;
2570
2571 gsm48_stop_cc_timer(trans);
2572
2573 memset(&rel, 0, sizeof(struct gsm_mncc));
2574 rel.callref = trans->callref;
2575 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2576 /* cause */
2577 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2578 rel.fields |= MNCC_F_CAUSE;
2579 decode_cause(&rel.cause,
2580 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2581 }
2582 /* facility */
2583 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2584 rel.fields |= MNCC_F_FACILITY;
2585 decode_facility(&rel.facility,
2586 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2587 }
2588 /* user-user */
2589 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2590 rel.fields |= MNCC_F_USERUSER;
2591 decode_useruser(&rel.useruser,
2592 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2593 }
2594 /* ss-version */
2595 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2596 rel.fields |= MNCC_F_SSVERSION;
2597 decode_ssversion(&rel.ssversion,
2598 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2599 }
2600
Harald Weltedcaf5652009-07-23 18:56:43 +02002601 if (trans->cc.state == GSM_CSTATE_RELEASE_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002602 /* release collision 5.4.5 */
Harald Welte596fed42009-07-23 19:06:52 +02002603 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002604 } else {
Harald Welte596fed42009-07-23 19:06:52 +02002605 rc = gsm48_tx_simple(msg->lchan,
Harald Welte6f5aee02009-07-23 21:21:14 +02002606 GSM48_PDISC_CC | (trans->transaction_id << 4),
Harald Welte596fed42009-07-23 19:06:52 +02002607 GSM48_MT_CC_RELEASE_COMPL);
2608 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_IND, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002609 }
2610
2611 new_cc_state(trans, GSM_CSTATE_NULL);
2612
2613 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002614 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002615
2616 return rc;
2617}
2618
2619static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg)
2620{
2621 struct gsm_mncc *rel = 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_RELEASE;
2626
2627 trans->callref = 0;
2628
2629 gsm48_stop_cc_timer(trans);
2630 gsm48_start_cc_timer(trans, 0x308, GSM48_T308);
2631
2632 /* cause */
2633 if (rel->fields & MNCC_F_CAUSE)
2634 encode_cause(msg, 0, &rel->cause);
2635 /* facility */
2636 if (rel->fields & MNCC_F_FACILITY)
2637 encode_facility(msg, 0, &rel->facility);
2638 /* user-user */
2639 if (rel->fields & MNCC_F_USERUSER)
2640 encode_useruser(msg, 0, &rel->useruser);
2641
Harald Weltedcaf5652009-07-23 18:56:43 +02002642 trans->cc.T308_second = 0;
2643 memcpy(&trans->cc.msg, rel, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002644
Harald Weltedcaf5652009-07-23 18:56:43 +02002645 if (trans->cc.state != GSM_CSTATE_RELEASE_REQ)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002646 new_cc_state(trans, GSM_CSTATE_RELEASE_REQ);
2647
Harald Welte39e2ead2009-07-23 21:13:03 +02002648 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002649}
2650
2651static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg)
2652{
2653 struct gsm48_hdr *gh = msgb_l3(msg);
2654 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2655 struct tlv_parsed tp;
2656 struct gsm_mncc rel;
2657 int rc = 0;
2658
2659 gsm48_stop_cc_timer(trans);
2660
2661 memset(&rel, 0, sizeof(struct gsm_mncc));
2662 rel.callref = trans->callref;
2663 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2664 /* cause */
2665 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2666 rel.fields |= MNCC_F_CAUSE;
2667 decode_cause(&rel.cause,
2668 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2669 }
2670 /* facility */
2671 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2672 rel.fields |= MNCC_F_FACILITY;
2673 decode_facility(&rel.facility,
2674 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2675 }
2676 /* user-user */
2677 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2678 rel.fields |= MNCC_F_USERUSER;
2679 decode_useruser(&rel.useruser,
2680 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2681 }
2682 /* ss-version */
2683 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2684 rel.fields |= MNCC_F_SSVERSION;
2685 decode_ssversion(&rel.ssversion,
2686 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2687 }
2688
2689 if (trans->callref) {
Harald Weltedcaf5652009-07-23 18:56:43 +02002690 switch (trans->cc.state) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002691 case GSM_CSTATE_CALL_PRESENT:
Harald Welte596fed42009-07-23 19:06:52 +02002692 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002693 MNCC_REJ_IND, &rel);
2694 break;
2695 case GSM_CSTATE_RELEASE_REQ:
Harald Welte596fed42009-07-23 19:06:52 +02002696 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002697 MNCC_REL_CNF, &rel);
Harald Welteb83d9382009-12-12 21:00:48 +01002698 /* FIXME: in case of multiple calls, we can't simply
2699 * hang up here ! */
2700 lchan_auto_release(msg->lchan);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002701 break;
2702 default:
Harald Welte596fed42009-07-23 19:06:52 +02002703 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002704 MNCC_REL_IND, &rel);
2705 }
2706 }
2707
2708 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002709 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002710
2711 return rc;
2712}
2713
2714static int gsm48_cc_tx_release_compl(struct gsm_trans *trans, void *arg)
2715{
2716 struct gsm_mncc *rel = arg;
2717 struct msgb *msg = gsm48_msgb_alloc();
2718 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2719
Harald Welte4bfdfe72009-06-10 23:11:52 +08002720 gh->msg_type = GSM48_MT_CC_RELEASE_COMPL;
2721
2722 trans->callref = 0;
2723
2724 gsm48_stop_cc_timer(trans);
2725
2726 /* cause */
2727 if (rel->fields & MNCC_F_CAUSE)
2728 encode_cause(msg, 0, &rel->cause);
2729 /* facility */
2730 if (rel->fields & MNCC_F_FACILITY)
2731 encode_facility(msg, 0, &rel->facility);
2732 /* user-user */
2733 if (rel->fields & MNCC_F_USERUSER)
2734 encode_useruser(msg, 0, &rel->useruser);
2735
Harald Weltedcaf5652009-07-23 18:56:43 +02002736 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002737
Harald Welte39e2ead2009-07-23 21:13:03 +02002738 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002739}
2740
2741static int gsm48_cc_rx_facility(struct gsm_trans *trans, struct msgb *msg)
2742{
2743 struct gsm48_hdr *gh = msgb_l3(msg);
2744 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2745 struct tlv_parsed tp;
2746 struct gsm_mncc fac;
2747
2748 memset(&fac, 0, sizeof(struct gsm_mncc));
2749 fac.callref = trans->callref;
2750 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_FACILITY, 0);
2751 /* facility */
2752 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2753 fac.fields |= MNCC_F_FACILITY;
2754 decode_facility(&fac.facility,
2755 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2756 }
2757 /* ss-version */
2758 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2759 fac.fields |= MNCC_F_SSVERSION;
2760 decode_ssversion(&fac.ssversion,
2761 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2762 }
2763
Harald Welte596fed42009-07-23 19:06:52 +02002764 return mncc_recvmsg(trans->subscr->net, trans, MNCC_FACILITY_IND, &fac);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002765}
2766
2767static int gsm48_cc_tx_facility(struct gsm_trans *trans, void *arg)
2768{
2769 struct gsm_mncc *fac = arg;
2770 struct msgb *msg = gsm48_msgb_alloc();
2771 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2772
Harald Welte4bfdfe72009-06-10 23:11:52 +08002773 gh->msg_type = GSM48_MT_CC_FACILITY;
2774
2775 /* facility */
2776 encode_facility(msg, 1, &fac->facility);
2777
Harald Welte39e2ead2009-07-23 21:13:03 +02002778 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002779}
2780
2781static int gsm48_cc_rx_hold(struct gsm_trans *trans, struct msgb *msg)
2782{
2783 struct gsm_mncc hold;
2784
2785 memset(&hold, 0, sizeof(struct gsm_mncc));
2786 hold.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002787 return mncc_recvmsg(trans->subscr->net, trans, MNCC_HOLD_IND, &hold);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002788}
2789
2790static int gsm48_cc_tx_hold_ack(struct gsm_trans *trans, void *arg)
2791{
2792 struct msgb *msg = gsm48_msgb_alloc();
2793 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2794
Harald Welte4bfdfe72009-06-10 23:11:52 +08002795 gh->msg_type = GSM48_MT_CC_HOLD_ACK;
2796
Harald Welte39e2ead2009-07-23 21:13:03 +02002797 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002798}
2799
2800static int gsm48_cc_tx_hold_rej(struct gsm_trans *trans, void *arg)
2801{
2802 struct gsm_mncc *hold_rej = arg;
2803 struct msgb *msg = gsm48_msgb_alloc();
2804 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2805
Harald Welte4bfdfe72009-06-10 23:11:52 +08002806 gh->msg_type = GSM48_MT_CC_HOLD_REJ;
2807
2808 /* cause */
2809 if (hold_rej->fields & MNCC_F_CAUSE)
2810 encode_cause(msg, 1, &hold_rej->cause);
2811 else
2812 encode_cause(msg, 1, &default_cause);
2813
Harald Welte39e2ead2009-07-23 21:13:03 +02002814 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002815}
2816
2817static int gsm48_cc_rx_retrieve(struct gsm_trans *trans, struct msgb *msg)
2818{
2819 struct gsm_mncc retrieve;
2820
2821 memset(&retrieve, 0, sizeof(struct gsm_mncc));
2822 retrieve.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002823 return mncc_recvmsg(trans->subscr->net, trans, MNCC_RETRIEVE_IND,
2824 &retrieve);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002825}
2826
2827static int gsm48_cc_tx_retrieve_ack(struct gsm_trans *trans, void *arg)
2828{
2829 struct msgb *msg = gsm48_msgb_alloc();
2830 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2831
Harald Welte4bfdfe72009-06-10 23:11:52 +08002832 gh->msg_type = GSM48_MT_CC_RETR_ACK;
2833
Harald Welte39e2ead2009-07-23 21:13:03 +02002834 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002835}
2836
2837static int gsm48_cc_tx_retrieve_rej(struct gsm_trans *trans, void *arg)
2838{
2839 struct gsm_mncc *retrieve_rej = arg;
2840 struct msgb *msg = gsm48_msgb_alloc();
2841 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2842
Harald Welte4bfdfe72009-06-10 23:11:52 +08002843 gh->msg_type = GSM48_MT_CC_RETR_REJ;
2844
2845 /* cause */
2846 if (retrieve_rej->fields & MNCC_F_CAUSE)
2847 encode_cause(msg, 1, &retrieve_rej->cause);
2848 else
2849 encode_cause(msg, 1, &default_cause);
2850
Harald Welte39e2ead2009-07-23 21:13:03 +02002851 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002852}
2853
2854static int gsm48_cc_rx_start_dtmf(struct gsm_trans *trans, struct msgb *msg)
2855{
2856 struct gsm48_hdr *gh = msgb_l3(msg);
2857 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2858 struct tlv_parsed tp;
2859 struct gsm_mncc dtmf;
2860
2861 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2862 dtmf.callref = trans->callref;
2863 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2864 /* keypad facility */
2865 if (TLVP_PRESENT(&tp, GSM48_IE_KPD_FACILITY)) {
2866 dtmf.fields |= MNCC_F_KEYPAD;
2867 decode_keypad(&dtmf.keypad,
2868 TLVP_VAL(&tp, GSM48_IE_KPD_FACILITY)-1);
2869 }
2870
Harald Welte596fed42009-07-23 19:06:52 +02002871 return mncc_recvmsg(trans->subscr->net, trans, MNCC_START_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002872}
2873
2874static int gsm48_cc_tx_start_dtmf_ack(struct gsm_trans *trans, void *arg)
2875{
2876 struct gsm_mncc *dtmf = arg;
2877 struct msgb *msg = gsm48_msgb_alloc();
2878 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2879
Harald Welte4bfdfe72009-06-10 23:11:52 +08002880 gh->msg_type = GSM48_MT_CC_START_DTMF_ACK;
2881
2882 /* keypad */
2883 if (dtmf->fields & MNCC_F_KEYPAD)
2884 encode_keypad(msg, dtmf->keypad);
2885
Harald Welte39e2ead2009-07-23 21:13:03 +02002886 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002887}
2888
2889static int gsm48_cc_tx_start_dtmf_rej(struct gsm_trans *trans, void *arg)
2890{
2891 struct gsm_mncc *dtmf = arg;
2892 struct msgb *msg = gsm48_msgb_alloc();
2893 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2894
Harald Welte4bfdfe72009-06-10 23:11:52 +08002895 gh->msg_type = GSM48_MT_CC_START_DTMF_REJ;
2896
2897 /* cause */
2898 if (dtmf->fields & MNCC_F_CAUSE)
2899 encode_cause(msg, 1, &dtmf->cause);
2900 else
2901 encode_cause(msg, 1, &default_cause);
2902
Harald Welte39e2ead2009-07-23 21:13:03 +02002903 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002904}
2905
2906static int gsm48_cc_tx_stop_dtmf_ack(struct gsm_trans *trans, void *arg)
2907{
2908 struct msgb *msg = gsm48_msgb_alloc();
2909 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2910
Harald Welte4bfdfe72009-06-10 23:11:52 +08002911 gh->msg_type = GSM48_MT_CC_STOP_DTMF_ACK;
2912
Harald Welte39e2ead2009-07-23 21:13:03 +02002913 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002914}
2915
2916static int gsm48_cc_rx_stop_dtmf(struct gsm_trans *trans, struct msgb *msg)
2917{
2918 struct gsm_mncc dtmf;
2919
2920 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2921 dtmf.callref = trans->callref;
2922
Harald Welte596fed42009-07-23 19:06:52 +02002923 return mncc_recvmsg(trans->subscr->net, trans, MNCC_STOP_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002924}
2925
2926static int gsm48_cc_rx_modify(struct gsm_trans *trans, struct msgb *msg)
2927{
2928 struct gsm48_hdr *gh = msgb_l3(msg);
2929 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2930 struct tlv_parsed tp;
2931 struct gsm_mncc modify;
2932
2933 memset(&modify, 0, sizeof(struct gsm_mncc));
2934 modify.callref = trans->callref;
2935 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
2936 /* bearer capability */
2937 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2938 modify.fields |= MNCC_F_BEARER_CAP;
2939 decode_bearer_cap(&modify.bearer_cap,
2940 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2941 }
2942
2943 new_cc_state(trans, GSM_CSTATE_MO_ORIG_MODIFY);
2944
Harald Welte596fed42009-07-23 19:06:52 +02002945 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_IND, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002946}
2947
2948static int gsm48_cc_tx_modify(struct gsm_trans *trans, void *arg)
2949{
2950 struct gsm_mncc *modify = arg;
2951 struct msgb *msg = gsm48_msgb_alloc();
2952 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2953
Harald Welte4bfdfe72009-06-10 23:11:52 +08002954 gh->msg_type = GSM48_MT_CC_MODIFY;
2955
2956 gsm48_start_cc_timer(trans, 0x323, GSM48_T323);
2957
2958 /* bearer capability */
2959 encode_bearer_cap(msg, 1, &modify->bearer_cap);
2960
2961 new_cc_state(trans, GSM_CSTATE_MO_TERM_MODIFY);
2962
Harald Welte39e2ead2009-07-23 21:13:03 +02002963 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002964}
2965
2966static int gsm48_cc_rx_modify_complete(struct gsm_trans *trans, struct msgb *msg)
2967{
2968 struct gsm48_hdr *gh = msgb_l3(msg);
2969 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2970 struct tlv_parsed tp;
2971 struct gsm_mncc modify;
2972
2973 gsm48_stop_cc_timer(trans);
2974
2975 memset(&modify, 0, sizeof(struct gsm_mncc));
2976 modify.callref = trans->callref;
2977 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
2978 /* bearer capability */
2979 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2980 modify.fields |= MNCC_F_BEARER_CAP;
2981 decode_bearer_cap(&modify.bearer_cap,
2982 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2983 }
2984
2985 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2986
Harald Welte596fed42009-07-23 19:06:52 +02002987 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_CNF, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002988}
2989
2990static int gsm48_cc_tx_modify_complete(struct gsm_trans *trans, void *arg)
2991{
2992 struct gsm_mncc *modify = arg;
2993 struct msgb *msg = gsm48_msgb_alloc();
2994 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2995
Harald Welte4bfdfe72009-06-10 23:11:52 +08002996 gh->msg_type = GSM48_MT_CC_MODIFY_COMPL;
2997
2998 /* bearer capability */
2999 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3000
3001 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3002
Harald Welte39e2ead2009-07-23 21:13:03 +02003003 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003004}
3005
3006static int gsm48_cc_rx_modify_reject(struct gsm_trans *trans, struct msgb *msg)
3007{
3008 struct gsm48_hdr *gh = msgb_l3(msg);
3009 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3010 struct tlv_parsed tp;
3011 struct gsm_mncc modify;
3012
3013 gsm48_stop_cc_timer(trans);
3014
3015 memset(&modify, 0, sizeof(struct gsm_mncc));
3016 modify.callref = trans->callref;
3017 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, GSM48_IE_CAUSE);
3018 /* bearer capability */
3019 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
3020 modify.fields |= GSM48_IE_BEARER_CAP;
3021 decode_bearer_cap(&modify.bearer_cap,
3022 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3023 }
3024 /* cause */
3025 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
3026 modify.fields |= MNCC_F_CAUSE;
3027 decode_cause(&modify.cause,
3028 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
3029 }
3030
3031 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3032
Harald Welte596fed42009-07-23 19:06:52 +02003033 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_REJ, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003034}
3035
3036static int gsm48_cc_tx_modify_reject(struct gsm_trans *trans, void *arg)
3037{
3038 struct gsm_mncc *modify = arg;
3039 struct msgb *msg = gsm48_msgb_alloc();
3040 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3041
Harald Welte4bfdfe72009-06-10 23:11:52 +08003042 gh->msg_type = GSM48_MT_CC_MODIFY_REJECT;
3043
3044 /* bearer capability */
3045 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3046 /* cause */
3047 encode_cause(msg, 1, &modify->cause);
3048
3049 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3050
Harald Welte39e2ead2009-07-23 21:13:03 +02003051 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003052}
3053
3054static int gsm48_cc_tx_notify(struct gsm_trans *trans, void *arg)
3055{
3056 struct gsm_mncc *notify = arg;
3057 struct msgb *msg = gsm48_msgb_alloc();
3058 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3059
Harald Welte4bfdfe72009-06-10 23:11:52 +08003060 gh->msg_type = GSM48_MT_CC_NOTIFY;
3061
3062 /* notify */
3063 encode_notify(msg, notify->notify);
3064
Harald Welte39e2ead2009-07-23 21:13:03 +02003065 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003066}
3067
3068static int gsm48_cc_rx_notify(struct gsm_trans *trans, struct msgb *msg)
3069{
3070 struct gsm48_hdr *gh = msgb_l3(msg);
3071 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3072// struct tlv_parsed tp;
3073 struct gsm_mncc notify;
3074
3075 memset(&notify, 0, sizeof(struct gsm_mncc));
3076 notify.callref = trans->callref;
3077// tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len);
3078 if (payload_len >= 1)
3079 decode_notify(&notify.notify, gh->data);
3080
Harald Welte596fed42009-07-23 19:06:52 +02003081 return mncc_recvmsg(trans->subscr->net, trans, MNCC_NOTIFY_IND, &notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003082}
3083
3084static int gsm48_cc_tx_userinfo(struct gsm_trans *trans, void *arg)
3085{
3086 struct gsm_mncc *user = arg;
3087 struct msgb *msg = gsm48_msgb_alloc();
3088 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3089
Harald Welte4bfdfe72009-06-10 23:11:52 +08003090 gh->msg_type = GSM48_MT_CC_USER_INFO;
3091
3092 /* user-user */
3093 if (user->fields & MNCC_F_USERUSER)
3094 encode_useruser(msg, 1, &user->useruser);
3095 /* more data */
3096 if (user->more)
3097 encode_more(msg);
3098
Harald Welte39e2ead2009-07-23 21:13:03 +02003099 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003100}
3101
3102static int gsm48_cc_rx_userinfo(struct gsm_trans *trans, struct msgb *msg)
3103{
3104 struct gsm48_hdr *gh = msgb_l3(msg);
3105 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3106 struct tlv_parsed tp;
3107 struct gsm_mncc user;
3108
3109 memset(&user, 0, sizeof(struct gsm_mncc));
3110 user.callref = trans->callref;
3111 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_USER_USER, 0);
3112 /* user-user */
3113 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
3114 user.fields |= MNCC_F_USERUSER;
3115 decode_useruser(&user.useruser,
3116 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
3117 }
3118 /* more data */
3119 if (TLVP_PRESENT(&tp, GSM48_IE_MORE_DATA))
3120 user.more = 1;
3121
Harald Welte596fed42009-07-23 19:06:52 +02003122 return mncc_recvmsg(trans->subscr->net, trans, MNCC_USERINFO_IND, &user);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003123}
3124
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02003125static int _gsm48_lchan_modify(struct gsm_trans *trans, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08003126{
3127 struct gsm_mncc *mode = arg;
3128
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +01003129 return gsm48_lchan_modify(trans->lchan, mode->lchan_mode);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003130}
3131
3132static struct downstate {
3133 u_int32_t states;
3134 int type;
3135 int (*rout) (struct gsm_trans *trans, void *arg);
3136} downstatelist[] = {
3137 /* mobile originating call establishment */
3138 {SBIT(GSM_CSTATE_INITIATED), /* 5.2.1.2 */
3139 MNCC_CALL_PROC_REQ, gsm48_cc_tx_call_proc},
3140 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.2 | 5.2.1.5 */
3141 MNCC_ALERT_REQ, gsm48_cc_tx_alerting},
3142 {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 */
3143 MNCC_SETUP_RSP, gsm48_cc_tx_connect},
3144 {SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.4.2 */
3145 MNCC_PROGRESS_REQ, gsm48_cc_tx_progress},
3146 /* mobile terminating call establishment */
3147 {SBIT(GSM_CSTATE_NULL), /* 5.2.2.1 */
3148 MNCC_SETUP_REQ, gsm48_cc_tx_setup},
3149 {SBIT(GSM_CSTATE_CONNECT_REQUEST),
3150 MNCC_SETUP_COMPL_REQ, gsm48_cc_tx_connect_ack},
3151 /* signalling during call */
3152 {SBIT(GSM_CSTATE_ACTIVE),
3153 MNCC_NOTIFY_REQ, gsm48_cc_tx_notify},
3154 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ),
3155 MNCC_FACILITY_REQ, gsm48_cc_tx_facility},
3156 {ALL_STATES,
3157 MNCC_START_DTMF_RSP, gsm48_cc_tx_start_dtmf_ack},
3158 {ALL_STATES,
3159 MNCC_START_DTMF_REJ, gsm48_cc_tx_start_dtmf_rej},
3160 {ALL_STATES,
3161 MNCC_STOP_DTMF_RSP, gsm48_cc_tx_stop_dtmf_ack},
3162 {SBIT(GSM_CSTATE_ACTIVE),
3163 MNCC_HOLD_CNF, gsm48_cc_tx_hold_ack},
3164 {SBIT(GSM_CSTATE_ACTIVE),
3165 MNCC_HOLD_REJ, gsm48_cc_tx_hold_rej},
3166 {SBIT(GSM_CSTATE_ACTIVE),
3167 MNCC_RETRIEVE_CNF, gsm48_cc_tx_retrieve_ack},
3168 {SBIT(GSM_CSTATE_ACTIVE),
3169 MNCC_RETRIEVE_REJ, gsm48_cc_tx_retrieve_rej},
3170 {SBIT(GSM_CSTATE_ACTIVE),
3171 MNCC_MODIFY_REQ, gsm48_cc_tx_modify},
3172 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3173 MNCC_MODIFY_RSP, gsm48_cc_tx_modify_complete},
3174 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3175 MNCC_MODIFY_REJ, gsm48_cc_tx_modify_reject},
3176 {SBIT(GSM_CSTATE_ACTIVE),
3177 MNCC_USERINFO_REQ, gsm48_cc_tx_userinfo},
3178 /* clearing */
3179 {SBIT(GSM_CSTATE_INITIATED),
3180 MNCC_REJ_REQ, gsm48_cc_tx_release_compl},
3181 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_DISCONNECT_IND) - SBIT(GSM_CSTATE_RELEASE_REQ) - SBIT(GSM_CSTATE_DISCONNECT_REQ), /* 5.4.4 */
3182 MNCC_DISC_REQ, gsm48_cc_tx_disconnect},
3183 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3184 MNCC_REL_REQ, gsm48_cc_tx_release},
3185 /* special */
3186 {ALL_STATES,
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02003187 MNCC_LCHAN_MODIFY, _gsm48_lchan_modify},
Harald Welte4bfdfe72009-06-10 23:11:52 +08003188};
3189
3190#define DOWNSLLEN \
3191 (sizeof(downstatelist) / sizeof(struct downstate))
3192
3193
3194int mncc_send(struct gsm_network *net, int msg_type, void *arg)
3195{
Harald Welte1a6f7982009-08-09 18:52:33 +02003196 int i, rc = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003197 struct gsm_trans *trans = NULL, *transt;
Harald Welte1a6f7982009-08-09 18:52:33 +02003198 struct gsm_lchan *lchan = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003199 struct gsm_bts *bts = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003200 struct gsm_mncc *data = arg, rel;
3201
3202 /* handle special messages */
3203 switch(msg_type) {
3204 case MNCC_BRIDGE:
3205 return tch_bridge(net, arg);
3206 case MNCC_FRAME_DROP:
Harald Welteda7ab742009-12-19 22:23:05 +01003207 return tch_recv_mncc(net, data->callref, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003208 case MNCC_FRAME_RECV:
Harald Welteda7ab742009-12-19 22:23:05 +01003209 return tch_recv_mncc(net, data->callref, 1);
3210 case GSM_TCHF_FRAME:
3211 /* Find callref */
3212 trans = trans_find_by_callref(net, data->callref);
3213 if (!trans)
3214 return -EIO;
3215 if (!trans->lchan)
3216 return 0;
3217 if (trans->lchan->type != GSM_LCHAN_TCH_F)
3218 return 0;
3219 bts = trans->lchan->ts->trx->bts;
3220 switch (bts->type) {
3221 case GSM_BTS_TYPE_NANOBTS:
3222 if (!trans->lchan->abis_ip.rtp_socket)
3223 return 0;
3224 return rtp_send_frame(trans->lchan->abis_ip.rtp_socket, arg);
3225 case GSM_BTS_TYPE_BS11:
3226 return trau_send_frame(trans->lchan, arg);
3227 default:
3228 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
3229 }
3230 return -EINVAL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003231 }
3232
3233 memset(&rel, 0, sizeof(struct gsm_mncc));
3234 rel.callref = data->callref;
3235
3236 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02003237 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003238
3239 /* Callref unknown */
3240 if (!trans) {
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003241 struct gsm_subscriber *subscr;
3242
Harald Welte4a3464c2009-07-04 10:11:24 +02003243 if (msg_type != MNCC_SETUP_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003244 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3245 "Received '%s' from MNCC with "
3246 "unknown callref %d\n", data->called.number,
3247 get_mncc_name(msg_type), data->callref);
3248 /* Invalid call reference */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003249 return mncc_release_ind(net, NULL, data->callref,
3250 GSM48_CAUSE_LOC_PRN_S_LU,
3251 GSM48_CC_CAUSE_INVAL_TRANS_ID);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003252 }
Andreas Eversbergc079be42009-06-15 23:22:09 +02003253 if (!data->called.number[0] && !data->imsi[0]) {
3254 DEBUGP(DCC, "(bts - trx - ts - ti) "
3255 "Received '%s' from MNCC with "
3256 "no number or IMSI\n", get_mncc_name(msg_type));
3257 /* Invalid number */
3258 return mncc_release_ind(net, NULL, data->callref,
3259 GSM48_CAUSE_LOC_PRN_S_LU,
3260 GSM48_CC_CAUSE_INV_NR_FORMAT);
3261 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003262 /* New transaction due to setup, find subscriber */
Andreas Eversbergc079be42009-06-15 23:22:09 +02003263 if (data->called.number[0])
Harald Welte9176bd42009-07-23 18:46:00 +02003264 subscr = subscr_get_by_extension(net,
3265 data->called.number);
Andreas Eversbergc079be42009-06-15 23:22:09 +02003266 else
Harald Welte9176bd42009-07-23 18:46:00 +02003267 subscr = subscr_get_by_imsi(net, data->imsi);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003268 /* If subscriber is not found */
3269 if (!subscr) {
3270 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3271 "Received '%s' from MNCC with "
3272 "unknown subscriber %s\n", data->called.number,
3273 get_mncc_name(msg_type), data->called.number);
3274 /* Unknown subscriber */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003275 return mncc_release_ind(net, NULL, data->callref,
3276 GSM48_CAUSE_LOC_PRN_S_LU,
3277 GSM48_CC_CAUSE_UNASSIGNED_NR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003278 }
3279 /* If subscriber is not "attached" */
3280 if (!subscr->lac) {
3281 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3282 "Received '%s' from MNCC with "
3283 "detached subscriber %s\n", data->called.number,
3284 get_mncc_name(msg_type), data->called.number);
3285 subscr_put(subscr);
3286 /* Temporarily out of order */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003287 return mncc_release_ind(net, NULL, data->callref,
3288 GSM48_CAUSE_LOC_PRN_S_LU,
3289 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003290 }
3291 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02003292 trans = trans_alloc(subscr, GSM48_PDISC_CC, 0xff, data->callref);
3293 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003294 DEBUGP(DCC, "No memory for trans.\n");
3295 subscr_put(subscr);
3296 /* Ressource unavailable */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003297 mncc_release_ind(net, NULL, data->callref,
3298 GSM48_CAUSE_LOC_PRN_S_LU,
3299 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003300 return -ENOMEM;
3301 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003302 /* Find lchan */
Harald Welte1a6f7982009-08-09 18:52:33 +02003303 lchan = lchan_for_subscr(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003304 /* If subscriber has no lchan */
3305 if (!lchan) {
3306 /* find transaction with this subscriber already paging */
3307 llist_for_each_entry(transt, &net->trans_list, entry) {
3308 /* Transaction of our lchan? */
3309 if (transt == trans ||
3310 transt->subscr != subscr)
3311 continue;
3312 DEBUGP(DCC, "(bts %d trx - ts - ti -- sub %s) "
3313 "Received '%s' from MNCC with "
3314 "unallocated channel, paging already "
3315 "started.\n", bts->nr,
3316 data->called.number,
3317 get_mncc_name(msg_type));
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003318 subscr_put(subscr);
3319 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003320 return 0;
3321 }
3322 /* store setup informations until paging was successfull */
Harald Weltedcaf5652009-07-23 18:56:43 +02003323 memcpy(&trans->cc.msg, data, sizeof(struct gsm_mncc));
Harald Weltea1b28582009-08-01 19:31:47 +02003324 /* Trigger paging */
3325 paging_request(net, subscr, RSL_CHANNEED_TCH_F,
3326 setup_trig_pag_evt, subscr);
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003327 subscr_put(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003328 return 0;
3329 }
3330 /* Assign lchan */
3331 trans->lchan = lchan;
3332 use_lchan(lchan);
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003333 subscr_put(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003334 }
3335 lchan = trans->lchan;
3336
3337 /* if paging did not respond yet */
3338 if (!lchan) {
3339 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3340 "Received '%s' from MNCC in paging state\n",
3341 (trans->subscr)?(trans->subscr->extension):"-",
3342 get_mncc_name(msg_type));
Harald Weltec66b71c2009-06-11 14:23:20 +08003343 mncc_set_cause(&rel, GSM48_CAUSE_LOC_PRN_S_LU,
3344 GSM48_CC_CAUSE_NORM_CALL_CLEAR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003345 if (msg_type == MNCC_REL_REQ)
3346 rc = mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
3347 else
3348 rc = mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
3349 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02003350 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003351 return rc;
3352 }
3353
3354 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x sub %s) "
3355 "Received '%s' from MNCC in state %d (%s)\n",
3356 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
3357 trans->transaction_id,
3358 (lchan->subscr)?(lchan->subscr->extension):"-",
Harald Weltedcaf5652009-07-23 18:56:43 +02003359 get_mncc_name(msg_type), trans->cc.state,
3360 cc_state_names[trans->cc.state]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003361
3362 /* Find function for current state and message */
3363 for (i = 0; i < DOWNSLLEN; i++)
3364 if ((msg_type == downstatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003365 && ((1 << trans->cc.state) & downstatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003366 break;
3367 if (i == DOWNSLLEN) {
3368 DEBUGP(DCC, "Message unhandled at this state.\n");
3369 return 0;
3370 }
3371
3372 rc = downstatelist[i].rout(trans, arg);
3373
3374 return rc;
3375}
3376
3377
3378static struct datastate {
3379 u_int32_t states;
3380 int type;
3381 int (*rout) (struct gsm_trans *trans, struct msgb *msg);
3382} datastatelist[] = {
3383 /* mobile originating call establishment */
3384 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3385 GSM48_MT_CC_SETUP, gsm48_cc_rx_setup},
3386 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3387 GSM48_MT_CC_EMERG_SETUP, gsm48_cc_rx_setup},
3388 {SBIT(GSM_CSTATE_CONNECT_IND), /* 5.2.1.2 */
3389 GSM48_MT_CC_CONNECT_ACK, gsm48_cc_rx_connect_ack},
3390 /* mobile terminating call establishment */
3391 {SBIT(GSM_CSTATE_CALL_PRESENT), /* 5.2.2.3.2 */
3392 GSM48_MT_CC_CALL_CONF, gsm48_cc_rx_call_conf},
3393 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF), /* ???? | 5.2.2.3.2 */
3394 GSM48_MT_CC_ALERTING, gsm48_cc_rx_alerting},
3395 {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 */
3396 GSM48_MT_CC_CONNECT, gsm48_cc_rx_connect},
3397 /* signalling during call */
3398 {ALL_STATES - SBIT(GSM_CSTATE_NULL),
3399 GSM48_MT_CC_FACILITY, gsm48_cc_rx_facility},
3400 {SBIT(GSM_CSTATE_ACTIVE),
3401 GSM48_MT_CC_NOTIFY, gsm48_cc_rx_notify},
3402 {ALL_STATES,
3403 GSM48_MT_CC_START_DTMF, gsm48_cc_rx_start_dtmf},
3404 {ALL_STATES,
3405 GSM48_MT_CC_STOP_DTMF, gsm48_cc_rx_stop_dtmf},
3406 {ALL_STATES,
3407 GSM48_MT_CC_STATUS_ENQ, gsm48_cc_rx_status_enq},
3408 {SBIT(GSM_CSTATE_ACTIVE),
3409 GSM48_MT_CC_HOLD, gsm48_cc_rx_hold},
3410 {SBIT(GSM_CSTATE_ACTIVE),
3411 GSM48_MT_CC_RETR, gsm48_cc_rx_retrieve},
3412 {SBIT(GSM_CSTATE_ACTIVE),
3413 GSM48_MT_CC_MODIFY, gsm48_cc_rx_modify},
3414 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3415 GSM48_MT_CC_MODIFY_COMPL, gsm48_cc_rx_modify_complete},
3416 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3417 GSM48_MT_CC_MODIFY_REJECT, gsm48_cc_rx_modify_reject},
3418 {SBIT(GSM_CSTATE_ACTIVE),
3419 GSM48_MT_CC_USER_INFO, gsm48_cc_rx_userinfo},
3420 /* clearing */
3421 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3422 GSM48_MT_CC_DISCONNECT, gsm48_cc_rx_disconnect},
3423 {ALL_STATES - SBIT(GSM_CSTATE_NULL), /* 5.4.4.1.2.2 */
3424 GSM48_MT_CC_RELEASE, gsm48_cc_rx_release},
3425 {ALL_STATES, /* 5.4.3.4 */
3426 GSM48_MT_CC_RELEASE_COMPL, gsm48_cc_rx_release_compl},
3427};
3428
3429#define DATASLLEN \
3430 (sizeof(datastatelist) / sizeof(struct datastate))
3431
Harald Welte4bc90a12008-12-27 16:32:52 +00003432static int gsm0408_rcv_cc(struct msgb *msg)
3433{
3434 struct gsm48_hdr *gh = msgb_l3(msg);
3435 u_int8_t msg_type = gh->msg_type & 0xbf;
Harald Welte6f5aee02009-07-23 21:21:14 +02003436 u_int8_t transaction_id = ((gh->proto_discr & 0xf0) ^ 0x80) >> 4; /* flip */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003437 struct gsm_lchan *lchan = msg->lchan;
Harald Weltedcaf5652009-07-23 18:56:43 +02003438 struct gsm_trans *trans = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003439 int i, rc = 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00003440
Harald Welte4bfdfe72009-06-10 23:11:52 +08003441 if (msg_type & 0x80) {
3442 DEBUGP(DCC, "MSG 0x%2x not defined for PD error\n", msg_type);
3443 return -EINVAL;
Harald Welte4bc90a12008-12-27 16:32:52 +00003444 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003445
3446 /* Find transaction */
Harald Welteb8b40732009-07-23 21:58:40 +02003447 trans = trans_find_by_id(lchan->subscr, GSM48_PDISC_CC, transaction_id);
Harald Weltedcaf5652009-07-23 18:56:43 +02003448
Harald Welte6f5aee02009-07-23 21:21:14 +02003449 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003450 "Received '%s' from MS in state %d (%s)\n",
3451 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
3452 transaction_id, (lchan->subscr)?(lchan->subscr->extension):"-",
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +02003453 gsm0408_cc_msg_names[msg_type], trans?(trans->cc.state):0,
Harald Weltedcaf5652009-07-23 18:56:43 +02003454 cc_state_names[trans?(trans->cc.state):0]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003455
3456 /* Create transaction */
3457 if (!trans) {
Harald Welte6f5aee02009-07-23 21:21:14 +02003458 DEBUGP(DCC, "Unknown transaction ID %x, "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003459 "creating new trans.\n", transaction_id);
3460 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02003461 trans = trans_alloc(lchan->subscr, GSM48_PDISC_CC,
3462 transaction_id, new_callref++);
3463 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003464 DEBUGP(DCC, "No memory for trans.\n");
3465 rc = gsm48_tx_simple(msg->lchan,
Harald Welte6f5aee02009-07-23 21:21:14 +02003466 GSM48_PDISC_CC | (transaction_id << 4),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003467 GSM48_MT_CC_RELEASE_COMPL);
3468 return -ENOMEM;
3469 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003470 /* Assign transaction */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003471 trans->lchan = lchan;
3472 use_lchan(lchan);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003473 }
3474
3475 /* find function for current state and message */
3476 for (i = 0; i < DATASLLEN; i++)
3477 if ((msg_type == datastatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003478 && ((1 << trans->cc.state) & datastatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003479 break;
3480 if (i == DATASLLEN) {
3481 DEBUGP(DCC, "Message unhandled at this state.\n");
3482 return 0;
3483 }
3484
3485 rc = datastatelist[i].rout(trans, msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00003486
3487 return rc;
3488}
3489
Harald Welte52b1f982008-12-23 20:25:15 +00003490/* here we pass in a msgb from the RSL->RLL. We expect the l3 pointer to be set */
Harald Welte (local)daef6062009-08-14 11:41:12 +02003491int gsm0408_rcvmsg(struct msgb *msg, u_int8_t link_id)
Harald Welte52b1f982008-12-23 20:25:15 +00003492{
3493 struct gsm48_hdr *gh = msgb_l3(msg);
3494 u_int8_t pdisc = gh->proto_discr & 0x0f;
Harald Welte8470bf22008-12-25 23:28:35 +00003495 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00003496
3497 switch (pdisc) {
3498 case GSM48_PDISC_CC:
3499 rc = gsm0408_rcv_cc(msg);
3500 break;
3501 case GSM48_PDISC_MM:
3502 rc = gsm0408_rcv_mm(msg);
3503 break;
3504 case GSM48_PDISC_RR:
3505 rc = gsm0408_rcv_rr(msg);
3506 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00003507 case GSM48_PDISC_SMS:
Harald Welte (local)daef6062009-08-14 11:41:12 +02003508 rc = gsm0411_rcv_sms(msg, link_id);
Harald Weltebcae43f2008-12-27 21:45:37 +00003509 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003510 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00003511 case GSM48_PDISC_SM_GPRS:
Harald Welte5d24ba12009-12-24 12:13:17 +01003512 LOGP(DRLL, LOGL_NOTICE, "Unimplemented "
3513 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Harald Welte52b1f982008-12-23 20:25:15 +00003514 break;
Harald Welte6eafe912009-10-16 08:32:58 +02003515 case GSM48_PDISC_NC_SS:
3516 rc = handle_rcv_ussd(msg);
3517 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003518 default:
Harald Welte5d24ba12009-12-24 12:13:17 +01003519 LOGP(DRLL, LOGL_NOTICE, "Unknown "
3520 "GSM 04.08 discriminator 0x%02x\n", pdisc);
Harald Welte52b1f982008-12-23 20:25:15 +00003521 break;
3522 }
3523
3524 return rc;
3525}
Harald Welte8470bf22008-12-25 23:28:35 +00003526
Harald Welte4bfdfe72009-06-10 23:11:52 +08003527/* dequeue messages to layer 4 */
3528int bsc_upqueue(struct gsm_network *net)
3529{
3530 struct gsm_mncc *mncc;
3531 struct msgb *msg;
3532 int work = 0;
3533
3534 if (net)
3535 while ((msg = msgb_dequeue(&net->upqueue))) {
3536 mncc = (struct gsm_mncc *)msg->data;
3537 if (net->mncc_recv)
3538 net->mncc_recv(net, mncc->msg_type, mncc);
3539 work = 1; /* work done */
Harald Welte316c8252009-06-26 19:40:48 +02003540 talloc_free(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003541 }
3542
3543 return work;
3544}
Harald Weltedcaf5652009-07-23 18:56:43 +02003545
Harald Welte805f6442009-07-28 18:25:29 +02003546/*
3547 * This will be ran by the linker when loading the DSO. We use it to
3548 * do system initialization, e.g. registration of signal handlers.
3549 */
3550static __attribute__((constructor)) void on_dso_load_0408(void)
3551{
Harald Welte805f6442009-07-28 18:25:29 +02003552 register_signal_handler(SS_LCHAN, gsm0408_handle_lchan_signal, NULL);
3553 register_signal_handler(SS_ABISIP, handle_abisip_signal, NULL);
3554}