blob: 574e6c15c1a13eb5614279d8119094f5a4d0be62 [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 Welte7584aea2009-02-11 11:44:12 +000035#include <openbsc/tlv.h>
Harald Welte8470bf22008-12-25 23:28:35 +000036#include <openbsc/debug.h>
37#include <openbsc/gsm_data.h>
38#include <openbsc/gsm_subscriber.h>
Daniel Willmann8b3390e2008-12-28 00:31:09 +000039#include <openbsc/gsm_04_11.h>
Harald Welte8470bf22008-12-25 23:28:35 +000040#include <openbsc/gsm_04_08.h>
41#include <openbsc/abis_rsl.h>
Holger Freytherca362a62009-01-04 21:05:01 +000042#include <openbsc/chan_alloc.h>
Harald Welte0b4c34e2009-02-09 17:54:43 +000043#include <openbsc/paging.h>
Holger Freyther053e09d2009-02-14 22:51:06 +000044#include <openbsc/signal.h>
Harald Welte11fa29c2009-02-19 17:24:39 +000045#include <openbsc/trau_mux.h>
Harald Welte52b1f982008-12-23 20:25:15 +000046
Harald Welte8470bf22008-12-25 23:28:35 +000047#define GSM48_ALLOC_SIZE 1024
48#define GSM48_ALLOC_HEADROOM 128
Harald Welte52b1f982008-12-23 20:25:15 +000049
Harald Welte09e38af2009-02-16 22:52:23 +000050static const struct tlv_definition rsl_att_tlvdef = {
51 .def = {
52 [GSM48_IE_MOBILE_ID] = { TLV_TYPE_TLV },
53 [GSM48_IE_NAME_LONG] = { TLV_TYPE_TLV },
54 [GSM48_IE_NAME_SHORT] = { TLV_TYPE_TLV },
55 [GSM48_IE_UTC] = { TLV_TYPE_TV },
56 [GSM48_IE_NET_TIME_TZ] = { TLV_TYPE_FIXED, 7 },
57 [GSM48_IE_LSA_IDENT] = { TLV_TYPE_TLV },
58
59 [GSM48_IE_BEARER_CAP] = { TLV_TYPE_TLV },
60 [GSM48_IE_CAUSE] = { TLV_TYPE_TLV },
61 [GSM48_IE_CC_CAP] = { TLV_TYPE_TLV },
62 [GSM48_IE_ALERT] = { TLV_TYPE_TLV },
63 [GSM48_IE_FACILITY] = { TLV_TYPE_TLV },
64 [GSM48_IE_PROGR_IND] = { TLV_TYPE_TLV },
65 [GSM48_IE_AUX_STATUS] = { TLV_TYPE_TLV },
66 [GSM48_IE_KPD_FACILITY] = { TLV_TYPE_TV },
67 [GSM48_IE_SIGNAL] = { TLV_TYPE_TV },
68 [GSM48_IE_CONN_NUM] = { TLV_TYPE_TLV },
69 [GSM48_IE_CONN_SUBADDR] = { TLV_TYPE_TLV },
70 [GSM48_IE_CALLING_BCD] = { TLV_TYPE_TLV },
71 [GSM48_IE_CALLING_SUB] = { TLV_TYPE_TLV },
72 [GSM48_IE_CALLED_BCD] = { TLV_TYPE_TLV },
73 [GSM48_IE_CALLED_SUB] = { TLV_TYPE_TLV },
74 [GSM48_IE_REDIR_BCD] = { TLV_TYPE_TLV },
75 [GSM48_IE_REDIR_SUB] = { TLV_TYPE_TLV },
76 [GSM48_IE_LOWL_COMPAT] = { TLV_TYPE_TLV },
77 [GSM48_IE_HIGHL_COMPAT] = { TLV_TYPE_TLV },
78 [GSM48_IE_USER_USER] = { TLV_TYPE_TLV },
79 [GSM48_IE_SS_VERS] = { TLV_TYPE_TLV },
80 [GSM48_IE_MORE_DATA] = { TLV_TYPE_T },
81 [GSM48_IE_CLIR_SUPP] = { TLV_TYPE_T },
82 [GSM48_IE_CLIR_INVOC] = { TLV_TYPE_T },
83 [GSM48_IE_REV_C_SETUP] = { TLV_TYPE_T },
84 /* FIXME: more elements */
85 },
86};
87
Harald Welte49f48b82009-02-17 15:29:33 +000088static inline int is_ipaccess_bts(struct gsm_bts *bts)
89{
90 switch (bts->type) {
91 case GSM_BTS_TYPE_NANOBTS_900:
92 case GSM_BTS_TYPE_NANOBTS_1800:
93 return 1;
94 default:
95 break;
96 }
97 return 0;
98}
Harald Welte09e38af2009-02-16 22:52:23 +000099
Harald Welte65e74cc2008-12-29 01:55:35 +0000100static int gsm48_tx_simple(struct gsm_lchan *lchan,
101 u_int8_t pdisc, u_int8_t msg_type);
Holger Freytherb7193e42008-12-29 17:44:08 +0000102static void schedule_reject(struct gsm_lchan *lchan);
Harald Welte65e74cc2008-12-29 01:55:35 +0000103
Harald Welte52b1f982008-12-23 20:25:15 +0000104struct gsm_lai {
105 u_int16_t mcc;
106 u_int16_t mnc;
107 u_int16_t lac;
108};
109
Holger Freyther89824fc2008-12-30 16:18:18 +0000110static int authorize_everonye = 0;
111void gsm0408_allow_everyone(int everyone)
112{
113 printf("Allowing everyone?\n");
114 authorize_everonye = everyone;
115}
116
Holger Freythere97f7fb2008-12-31 18:52:11 +0000117static int reject_cause = 0;
118void gsm0408_set_reject_cause(int cause)
119{
120 reject_cause = cause;
121}
122
Holger Freyther73487a22008-12-31 18:53:57 +0000123static int authorize_subscriber(struct gsm_loc_updating_operation *loc,
124 struct gsm_subscriber *subscriber)
Holger Freyther89824fc2008-12-30 16:18:18 +0000125{
126 if (!subscriber)
127 return 0;
128
Holger Freyther73487a22008-12-31 18:53:57 +0000129 /*
130 * Do not send accept yet as more information should arrive. Some
131 * phones will not send us the information and we will have to check
132 * what we want to do with that.
133 */
134 if (loc && (loc->waiting_for_imsi || loc->waiting_for_imei))
135 return 0;
136
Holger Freyther89824fc2008-12-30 16:18:18 +0000137 if (authorize_everonye)
138 return 1;
139
140 return subscriber->authorized;
141}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000142
Holger Freyther73487a22008-12-31 18:53:57 +0000143static void release_loc_updating_req(struct gsm_lchan *lchan)
144{
Harald Welte179f0642008-12-31 23:59:18 +0000145 if (!lchan->loc_operation)
Holger Freyther73487a22008-12-31 18:53:57 +0000146 return;
147
148 del_timer(&lchan->loc_operation->updating_timer);
149 free(lchan->loc_operation);
150 lchan->loc_operation = 0;
Holger Freyther3eaa7922009-01-01 02:59:03 +0000151 put_lchan(lchan);
Holger Freyther73487a22008-12-31 18:53:57 +0000152}
153
154static void allocate_loc_updating_req(struct gsm_lchan *lchan)
155{
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000156 use_lchan(lchan);
Holger Freyther73487a22008-12-31 18:53:57 +0000157 release_loc_updating_req(lchan);
158
159 lchan->loc_operation = (struct gsm_loc_updating_operation *)
160 malloc(sizeof(*lchan->loc_operation));
161 memset(lchan->loc_operation, 0, sizeof(*lchan->loc_operation));
162}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000163
Harald Welte52b1f982008-12-23 20:25:15 +0000164static void to_bcd(u_int8_t *bcd, u_int16_t val)
165{
Harald Welte4b634542008-12-27 01:55:51 +0000166 bcd[2] = val % 10;
Harald Welte52b1f982008-12-23 20:25:15 +0000167 val = val / 10;
168 bcd[1] = val % 10;
169 val = val / 10;
Harald Welte4b634542008-12-27 01:55:51 +0000170 bcd[0] = val % 10;
Harald Welte52b1f982008-12-23 20:25:15 +0000171 val = val / 10;
172}
173
Holger Freyther17746612008-12-28 16:32:44 +0000174void gsm0408_generate_lai(struct gsm48_loc_area_id *lai48, u_int16_t mcc,
Harald Welte52b1f982008-12-23 20:25:15 +0000175 u_int16_t mnc, u_int16_t lac)
176{
177 u_int8_t bcd[3];
178
179 to_bcd(bcd, mcc);
180 lai48->digits[0] = bcd[0] | (bcd[1] << 4);
181 lai48->digits[1] = bcd[2];
182
183 to_bcd(bcd, mnc);
Harald Welte4b634542008-12-27 01:55:51 +0000184 /* FIXME: do we need three-digit MNC? See Table 10.5.3 */
185#if 0
Harald Welte8470bf22008-12-25 23:28:35 +0000186 lai48->digits[1] |= bcd[2] << 4;
187 lai48->digits[2] = bcd[0] | (bcd[1] << 4);
Harald Welte4b634542008-12-27 01:55:51 +0000188#else
189 lai48->digits[1] |= 0xf << 4;
190 lai48->digits[2] = bcd[1] | (bcd[2] << 4);
191#endif
Harald Welte52b1f982008-12-23 20:25:15 +0000192
Harald Welte4b634542008-12-27 01:55:51 +0000193 lai48->lac = htons(lac);
Harald Welte52b1f982008-12-23 20:25:15 +0000194}
195
Harald Welte255539c2008-12-28 02:26:27 +0000196#define TMSI_LEN 5
Harald Welte52b1f982008-12-23 20:25:15 +0000197#define MID_TMSI_LEN (TMSI_LEN + 2)
198
Harald Welte255539c2008-12-28 02:26:27 +0000199int generate_mid_from_tmsi(u_int8_t *buf, u_int32_t tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000200{
Harald Welte65e74cc2008-12-29 01:55:35 +0000201 u_int32_t *tptr = (u_int32_t *) &buf[3];
Harald Welte255539c2008-12-28 02:26:27 +0000202
Harald Welte4b634542008-12-27 01:55:51 +0000203 buf[0] = GSM48_IE_MOBILE_ID;
Harald Welte1a412182008-12-27 22:13:43 +0000204 buf[1] = TMSI_LEN;
Harald Welte4b634542008-12-27 01:55:51 +0000205 buf[2] = 0xf0 | GSM_MI_TYPE_TMSI;
Harald Welte255539c2008-12-28 02:26:27 +0000206 *tptr = htonl(tmsi);
207
208 return 7;
Harald Welte52b1f982008-12-23 20:25:15 +0000209}
210
Harald Welte09e38af2009-02-16 22:52:23 +0000211static const char bcd_num_digits[] = {
212 '0', '1', '2', '3', '4', '5', '6', '7',
213 '8', '9', '*', '#', 'a', 'b', 'c', '\0'
214};
215
216/* decode a 'called party BCD number' as in 10.5.4.7 */
217u_int8_t decode_bcd_number(char *output, int output_len, const u_int8_t *bcd_lv)
218{
219 u_int8_t in_len = bcd_lv[0];
220 int i;
221
222 if (in_len < 1)
223 return 0;
224
225 for (i = 2; i <= in_len; i++) {
226 /* lower nibble */
227 output_len--;
228 if (output_len <= 1)
229 break;
230 *output++ = bcd_num_digits[bcd_lv[i] & 0xf];
231
232 /* higher nibble */
233 output_len--;
234 if (output_len <= 1)
235 break;
236 *output++ = bcd_num_digits[bcd_lv[i] >> 4];
237 }
238 if (output_len >= 1)
239 *output++ = '\0';
240
241 /* return number type / calling plan */
242 return bcd_lv[1] & 0x3f;
243}
244
245/* convert a single ASCII character to call-control BCD */
246static int asc_to_bcd(const char asc)
247{
248 int i;
249
250 for (i = 0; i < ARRAY_SIZE(bcd_num_digits); i++) {
251 if (bcd_num_digits[i] == asc)
252 return i;
253 }
254 return -EINVAL;
255}
256
257/* convert a ASCII phone number to 'called party BCD number' */
258int encode_bcd_number(u_int8_t *bcd_lv, u_int8_t max_len,
259 u_int8_t type, const char *input)
260{
261 int in_len = strlen(input);
262 int i;
263 u_int8_t *bcd_cur = bcd_lv + 2;
264
265 if (in_len/2 + 1 > max_len)
266 return -EIO;
267
268 /* two digits per byte, plus type byte */
269 bcd_lv[0] = in_len/2 + 1;
270 if (in_len % 2)
271 bcd_lv[0]++;
272
273 /* if the caller wants to create a valid 'calling party BCD
274 * number', then the extension bit MUST NOT be set. For the
275 * 'called party BCD number' it MUST be set. *sigh */
276 bcd_lv[1] = type;
277
278 for (i = 0; i < in_len; i++) {
279 int rc = asc_to_bcd(input[i]);
280 if (rc < 0)
281 return rc;
282 if (i % 2 == 0)
283 *bcd_cur = rc;
284 else
285 *bcd_cur++ |= (rc << 4);
286 }
287 /* append padding nibble in case of odd length */
288 if (i % 2)
289 *bcd_cur++ |= 0xf0;
290
291 /* return how many bytes we used */
292 return (bcd_cur - bcd_lv);
293}
294
Holger Freyther819dd202009-01-04 03:52:50 +0000295struct msgb *gsm48_msgb_alloc(void)
Harald Welte8470bf22008-12-25 23:28:35 +0000296{
297 return msgb_alloc_headroom(GSM48_ALLOC_SIZE, GSM48_ALLOC_HEADROOM);
298}
299
Holger Freyther3e2c3232009-01-04 03:55:31 +0000300int gsm48_sendmsg(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000301{
Harald Welte65e74cc2008-12-29 01:55:35 +0000302 struct gsm48_hdr *gh = (struct gsm48_hdr *) msg->data;
303
304 if (msg->lchan) {
Harald Welte8470bf22008-12-25 23:28:35 +0000305 msg->trx = msg->lchan->ts->trx;
Harald Welte52b1f982008-12-23 20:25:15 +0000306
Harald Welte65e74cc2008-12-29 01:55:35 +0000307 if ((gh->proto_discr & GSM48_PDISC_MASK) == GSM48_PDISC_CC) {
308 /* Send a 04.08 call control message, add transaction
309 * ID and TI flag */
310 gh->proto_discr |= msg->lchan->call.transaction_id;
311
312 /* GSM 04.07 Section 11.2.3.1.3 */
313 switch (msg->lchan->call.type) {
314 case GSM_CT_MO:
315 gh->proto_discr |= 0x80;
316 break;
317 case GSM_CT_MT:
318 break;
Holger Freytherca362a62009-01-04 21:05:01 +0000319 case GSM_CT_NONE:
320 break;
Harald Welte65e74cc2008-12-29 01:55:35 +0000321 }
322 }
323 }
324
Harald Welte4b634542008-12-27 01:55:51 +0000325 msg->l3h = msg->data;
326
Harald Welte8470bf22008-12-25 23:28:35 +0000327 return rsl_data_request(msg, 0);
Harald Welte52b1f982008-12-23 20:25:15 +0000328}
329
Harald Welte52b1f982008-12-23 20:25:15 +0000330
Holger Freyther429e7762008-12-30 13:28:30 +0000331/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Harald Welte8470bf22008-12-25 23:28:35 +0000332int gsm0408_loc_upd_rej(struct gsm_lchan *lchan, u_int8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000333{
Harald Welte8470bf22008-12-25 23:28:35 +0000334 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000335 struct gsm48_hdr *gh;
336
Harald Welte8470bf22008-12-25 23:28:35 +0000337 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000338
339 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
340 gh->proto_discr = GSM48_PDISC_MM;
Harald Welte10b487b2008-12-27 19:53:37 +0000341 gh->msg_type = GSM48_MT_MM_LOC_UPD_REJECT;
Harald Welte52b1f982008-12-23 20:25:15 +0000342 gh->data[0] = cause;
343
Harald Weltedb253af2008-12-30 17:56:55 +0000344 DEBUGP(DMM, "-> LOCATION UPDATING REJECT on channel: %d\n", lchan->nr);
345
Harald Welte65e74cc2008-12-29 01:55:35 +0000346 return gsm48_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000347}
348
349/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Harald Welte75a983f2008-12-27 21:34:06 +0000350int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000351{
Harald Welte8470bf22008-12-25 23:28:35 +0000352 struct gsm_bts *bts = lchan->ts->trx->bts;
353 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000354 struct gsm48_hdr *gh;
355 struct gsm48_loc_area_id *lai;
356 u_int8_t *mid;
Holger Freyther07cc8d82008-12-29 06:23:46 +0000357 int ret;
Harald Welte52b1f982008-12-23 20:25:15 +0000358
Harald Welte8470bf22008-12-25 23:28:35 +0000359 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000360
361 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
362 gh->proto_discr = GSM48_PDISC_MM;
363 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
364
365 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Holger Freyther17746612008-12-28 16:32:44 +0000366 gsm0408_generate_lai(lai, bts->network->country_code,
Harald Welte52b1f982008-12-23 20:25:15 +0000367 bts->network->network_code, bts->location_area_code);
368
369 mid = msgb_put(msg, MID_TMSI_LEN);
370 generate_mid_from_tmsi(mid, tmsi);
371
372 DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n");
373
Harald Weltedb253af2008-12-30 17:56:55 +0000374 ret = gsm48_sendmsg(msg);
375
Harald Weltedb253af2008-12-30 17:56:55 +0000376 ret = gsm48_tx_mm_info(lchan);
Harald Weltedb253af2008-12-30 17:56:55 +0000377
Holger Freyther07cc8d82008-12-29 06:23:46 +0000378 return ret;
Harald Welte52b1f982008-12-23 20:25:15 +0000379}
380
Harald Weltefc977a82008-12-27 10:19:37 +0000381static char bcd2char(u_int8_t bcd)
382{
383 if (bcd < 0xa)
384 return '0' + bcd;
385 else
386 return 'A' + (bcd - 0xa);
387}
388
Harald Weltebf5e8df2009-02-03 12:59:45 +0000389/* Convert Mobile Identity (10.5.1.4) to string */
Harald Weltefc977a82008-12-27 10:19:37 +0000390static int mi_to_string(char *string, int str_len, u_int8_t *mi, int mi_len)
391{
392 int i;
393 u_int8_t mi_type;
394 char *str_cur = string;
Harald Welte4ed0e922009-01-10 03:17:30 +0000395 u_int32_t tmsi;
Harald Weltefc977a82008-12-27 10:19:37 +0000396
397 mi_type = mi[0] & GSM_MI_TYPE_MASK;
398
399 switch (mi_type) {
400 case GSM_MI_TYPE_NONE:
401 break;
402 case GSM_MI_TYPE_TMSI:
Harald Welte4ed0e922009-01-10 03:17:30 +0000403 /* Table 10.5.4.3, reverse generate_mid_from_tmsi */
404 if (mi_len == TMSI_LEN && mi[0] == (0xf0 | GSM_MI_TYPE_TMSI)) {
405 memcpy(&tmsi, &mi[1], 4);
406 tmsi = ntohl(tmsi);
407 return snprintf(string, str_len, "%u", tmsi);
Harald Weltefc977a82008-12-27 10:19:37 +0000408 }
409 break;
410 case GSM_MI_TYPE_IMSI:
411 case GSM_MI_TYPE_IMEI:
412 case GSM_MI_TYPE_IMEISV:
Harald Weltedb253af2008-12-30 17:56:55 +0000413 *str_cur++ = bcd2char(mi[0] >> 4);
414
415 for (i = 1; i < mi_len; i++) {
Harald Weltefc977a82008-12-27 10:19:37 +0000416 if (str_cur + 2 >= string + str_len)
417 return str_cur - string;
418 *str_cur++ = bcd2char(mi[i] & 0xf);
Harald Weltedb253af2008-12-30 17:56:55 +0000419 /* skip last nibble in last input byte when GSM_EVEN */
420 if( (i != mi_len-1) || (mi[0] & GSM_MI_ODD))
421 *str_cur++ = bcd2char(mi[i] >> 4);
Harald Weltefc977a82008-12-27 10:19:37 +0000422 }
423 break;
424 default:
425 break;
426 }
Harald Weltefc977a82008-12-27 10:19:37 +0000427 *str_cur++ = '\0';
Harald Weltedb253af2008-12-30 17:56:55 +0000428
Harald Weltefc977a82008-12-27 10:19:37 +0000429 return str_cur - string;
430}
431
Harald Weltebf5e8df2009-02-03 12:59:45 +0000432/* Transmit Chapter 9.2.10 Identity Request */
Harald Welte231ad4f2008-12-27 11:15:38 +0000433static int mm_tx_identity_req(struct gsm_lchan *lchan, u_int8_t id_type)
434{
435 struct msgb *msg = gsm48_msgb_alloc();
436 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000437
Harald Welte231ad4f2008-12-27 11:15:38 +0000438 msg->lchan = lchan;
439
440 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
441 gh->proto_discr = GSM48_PDISC_MM;
442 gh->msg_type = GSM48_MT_MM_ID_REQ;
443 gh->data[0] = id_type;
444
Harald Welte65e74cc2008-12-29 01:55:35 +0000445 return gsm48_sendmsg(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000446}
447
448#define MI_SIZE 32
449
Harald Weltebf5e8df2009-02-03 12:59:45 +0000450/* Parse Chapter 9.2.11 Identity Response */
Harald Welte231ad4f2008-12-27 11:15:38 +0000451static int mm_rx_id_resp(struct msgb *msg)
452{
453 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte75a983f2008-12-27 21:34:06 +0000454 struct gsm_lchan *lchan = msg->lchan;
Harald Welte231ad4f2008-12-27 11:15:38 +0000455 u_int8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
456 char mi_string[MI_SIZE];
Harald Welte75a983f2008-12-27 21:34:06 +0000457 u_int32_t tmsi;
Harald Welte231ad4f2008-12-27 11:15:38 +0000458
459 mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte61253062008-12-27 11:25:50 +0000460 DEBUGP(DMM, "IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
Harald Welte231ad4f2008-12-27 11:15:38 +0000461 mi_type, mi_string);
462
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000463 /*
464 * Rogue messages could trick us but so is life
465 */
466 put_lchan(lchan);
467
Harald Welte75a983f2008-12-27 21:34:06 +0000468 switch (mi_type) {
469 case GSM_MI_TYPE_IMSI:
470 if (!lchan->subscr)
471 lchan->subscr = db_create_subscriber(mi_string);
Holger Freyther73487a22008-12-31 18:53:57 +0000472 if (lchan->loc_operation)
473 lchan->loc_operation->waiting_for_imsi = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000474 break;
475 case GSM_MI_TYPE_IMEI:
Harald Welte255539c2008-12-28 02:26:27 +0000476 case GSM_MI_TYPE_IMEISV:
Harald Welte75a983f2008-12-27 21:34:06 +0000477 /* update subscribe <-> IMEI mapping */
478 if (lchan->subscr)
479 db_subscriber_assoc_imei(lchan->subscr, mi_string);
Holger Freyther73487a22008-12-31 18:53:57 +0000480 if (lchan->loc_operation)
481 lchan->loc_operation->waiting_for_imei = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000482 break;
483 }
Holger Freyther73487a22008-12-31 18:53:57 +0000484
485 /* Check if we can let the mobile station enter */
486 if (authorize_subscriber(lchan->loc_operation, lchan->subscr)) {
487 db_subscriber_alloc_tmsi(lchan->subscr);
488 tmsi = strtoul(lchan->subscr->tmsi, NULL, 10);
489 release_loc_updating_req(lchan);
490 return gsm0408_loc_upd_acc(msg->lchan, tmsi);
491 }
492
Harald Welte75a983f2008-12-27 21:34:06 +0000493 return 0;
Harald Welte231ad4f2008-12-27 11:15:38 +0000494}
495
Harald Welte255539c2008-12-28 02:26:27 +0000496
497static void loc_upd_rej_cb(void *data)
498{
499 struct gsm_lchan *lchan = data;
500
Holger Freyther73487a22008-12-31 18:53:57 +0000501 release_loc_updating_req(lchan);
Holger Freythere97f7fb2008-12-31 18:52:11 +0000502 gsm0408_loc_upd_rej(lchan, reject_cause);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000503 lchan_auto_release(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000504}
505
Holger Freytherb7193e42008-12-29 17:44:08 +0000506static void schedule_reject(struct gsm_lchan *lchan)
507{
Holger Freyther73487a22008-12-31 18:53:57 +0000508 lchan->loc_operation->updating_timer.cb = loc_upd_rej_cb;
509 lchan->loc_operation->updating_timer.data = lchan;
510 schedule_timer(&lchan->loc_operation->updating_timer, 5, 0);
Holger Freytherb7193e42008-12-29 17:44:08 +0000511}
512
Harald Welte2a139372009-02-22 21:14:55 +0000513static const char *lupd_name(u_int8_t type)
514{
515 switch (type) {
516 case GSM48_LUPD_NORMAL:
517 return "NORMAL";
518 case GSM48_LUPD_PERIODIC:
519 return "PEROIDOC";
520 case GSM48_LUPD_IMSI_ATT:
521 return "IMSI ATTACH";
522 default:
523 return "UNKNOWN";
524 }
525}
526
Harald Welte231ad4f2008-12-27 11:15:38 +0000527#define MI_SIZE 32
Harald Weltebf5e8df2009-02-03 12:59:45 +0000528/* Chapter 9.2.15: Receive Location Updating Request */
Harald Welte231ad4f2008-12-27 11:15:38 +0000529static int mm_rx_loc_upd_req(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000530{
Harald Welte8470bf22008-12-25 23:28:35 +0000531 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte702d8702008-12-26 20:25:35 +0000532 struct gsm_bts *bts = msg->trx->bts;
Harald Welte52b1f982008-12-23 20:25:15 +0000533 struct gsm48_loc_upd_req *lu;
534 struct gsm_subscriber *subscr;
Harald Welte255539c2008-12-28 02:26:27 +0000535 struct gsm_lchan *lchan = msg->lchan;
Harald Welte8470bf22008-12-25 23:28:35 +0000536 u_int8_t mi_type;
Harald Welte75a983f2008-12-27 21:34:06 +0000537 u_int32_t tmsi;
Harald Welte231ad4f2008-12-27 11:15:38 +0000538 char mi_string[MI_SIZE];
539 int rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000540
Harald Welte8470bf22008-12-25 23:28:35 +0000541 lu = (struct gsm48_loc_upd_req *) gh->data;
542
543 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +0000544
Harald Weltefc977a82008-12-27 10:19:37 +0000545 mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
546
Harald Welte2a139372009-02-22 21:14:55 +0000547 DEBUGP(DMM, "LUPDREQ: mi_type=0x%02x MI(%s) type=%s ", mi_type, mi_string,
548 lupd_name(lu->type));
Holger Freyther73487a22008-12-31 18:53:57 +0000549
550 allocate_loc_updating_req(lchan);
551
Harald Welte52b1f982008-12-23 20:25:15 +0000552 switch (mi_type) {
553 case GSM_MI_TYPE_IMSI:
Harald Welte231ad4f2008-12-27 11:15:38 +0000554 /* we always want the IMEI, too */
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000555 use_lchan(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000556 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEISV);
Holger Freyther73487a22008-12-31 18:53:57 +0000557 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000558
Harald Welte52b1f982008-12-23 20:25:15 +0000559 /* look up subscriber based on IMSI */
Harald Welte75a983f2008-12-27 21:34:06 +0000560 subscr = db_create_subscriber(mi_string);
Harald Welte4b634542008-12-27 01:55:51 +0000561 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000562 case GSM_MI_TYPE_TMSI:
Harald Welte231ad4f2008-12-27 11:15:38 +0000563 /* we always want the IMEI, too */
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000564 use_lchan(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000565 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEISV);
Holger Freyther73487a22008-12-31 18:53:57 +0000566 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000567
Harald Welte52b1f982008-12-23 20:25:15 +0000568 /* look up the subscriber based on TMSI, request IMSI if it fails */
Harald Welteba4cf162009-01-10 01:49:35 +0000569 subscr = subscr_get_by_tmsi(mi_string);
Harald Welte52b1f982008-12-23 20:25:15 +0000570 if (!subscr) {
Harald Welte231ad4f2008-12-27 11:15:38 +0000571 /* send IDENTITY REQUEST message to get IMSI */
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000572 use_lchan(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000573 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMSI);
Holger Freyther73487a22008-12-31 18:53:57 +0000574 lchan->loc_operation->waiting_for_imsi = 1;
Harald Welte52b1f982008-12-23 20:25:15 +0000575 }
576 break;
577 case GSM_MI_TYPE_IMEI:
578 case GSM_MI_TYPE_IMEISV:
579 /* no sim card... FIXME: what to do ? */
Harald Welte2a139372009-02-22 21:14:55 +0000580 DEBUGP(DMM, "unimplemented mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000581 break;
582 default:
Harald Welte2a139372009-02-22 21:14:55 +0000583 DEBUGP(DMM, "unknown mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000584 break;
585 }
586
Harald Welte255539c2008-12-28 02:26:27 +0000587 lchan->subscr = subscr;
588
Holger Freyther73487a22008-12-31 18:53:57 +0000589 /*
590 * Schedule the reject timer and check if we can let the
591 * subscriber into our network immediately or if we need to wait
592 * for identity responses.
593 */
594 schedule_reject(lchan);
595 if (!authorize_subscriber(lchan->loc_operation, subscr))
Harald Weltee872cb12009-01-01 00:33:37 +0000596 return 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000597
Harald Welte75a983f2008-12-27 21:34:06 +0000598 db_subscriber_alloc_tmsi(subscr);
Harald Welte52b1f982008-12-23 20:25:15 +0000599 subscr_update(subscr, bts);
Harald Welte8470bf22008-12-25 23:28:35 +0000600
Harald Welte255539c2008-12-28 02:26:27 +0000601 tmsi = strtoul(subscr->tmsi, NULL, 10);
602
Holger Freyther73487a22008-12-31 18:53:57 +0000603 release_loc_updating_req(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000604 return gsm0408_loc_upd_acc(lchan, tmsi);
Harald Welte52b1f982008-12-23 20:25:15 +0000605}
606
Harald Welte7584aea2009-02-11 11:44:12 +0000607/* 9.1.5 Channel mode modify */
608int gsm48_tx_chan_mode_modify(struct gsm_lchan *lchan, u_int8_t mode)
609{
610 struct msgb *msg = gsm48_msgb_alloc();
611 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
612 struct gsm48_chan_mode_modify *cmm =
613 (struct gsm48_chan_mode_modify *) msgb_put(msg, sizeof(*cmm));
614 u_int16_t arfcn = lchan->ts->trx->arfcn;
615
Harald Welte7ccf7782009-02-17 01:43:01 +0000616 DEBUGP(DRR, "-> CHANNEL MODE MODIFY\n");
617
Harald Welte7584aea2009-02-11 11:44:12 +0000618 msg->lchan = lchan;
619 gh->proto_discr = GSM48_PDISC_RR;
620 gh->msg_type = GSM48_MT_RR_CHAN_MODE_MODIF;
621
622 /* fill the channel information element, this code
623 * should probably be shared with rsl_rx_chan_rqd() */
624 cmm->chan_desc.chan_nr = lchan2chan_nr(lchan);
Harald Welte02b0e092009-02-28 13:11:07 +0000625 cmm->chan_desc.h0.tsc = lchan->ts->trx->bts->tsc;
Harald Welte7584aea2009-02-11 11:44:12 +0000626 cmm->chan_desc.h0.h = 0;
627 cmm->chan_desc.h0.arfcn_high = arfcn >> 8;
628 cmm->chan_desc.h0.arfcn_low = arfcn & 0xff;
629 cmm->mode = mode;
630
631 return gsm48_sendmsg(msg);
632}
633
Harald Weltedb253af2008-12-30 17:56:55 +0000634/* Section 9.2.15a */
635int gsm48_tx_mm_info(struct gsm_lchan *lchan)
636{
637 struct msgb *msg = gsm48_msgb_alloc();
638 struct gsm48_hdr *gh;
639 struct gsm_network *net = lchan->ts->trx->bts->network;
Harald Weltedb253af2008-12-30 17:56:55 +0000640 u_int8_t *ptr8;
641 u_int16_t *ptr16;
642 int name_len;
Harald Weltedb253af2008-12-30 17:56:55 +0000643 int i;
644
645 msg->lchan = lchan;
646
647 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
648 gh->proto_discr = GSM48_PDISC_MM;
649 gh->msg_type = GSM48_MT_MM_INFO;
650
651 if (net->name_long) {
652 name_len = strlen(net->name_long);
653 /* 10.5.3.5a */
654 ptr8 = msgb_put(msg, 3);
655 ptr8[0] = GSM48_IE_NAME_LONG;
656 ptr8[1] = name_len*2 +1;
657 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
658
659 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
660 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000661 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +0000662
663 /* FIXME: Use Cell Broadcast, not UCS-2, since
664 * UCS-2 is only supported by later revisions of the spec */
665 }
666
667 if (net->name_short) {
668 name_len = strlen(net->name_short);
669 /* 10.5.3.5a */
670 ptr8 = (u_int8_t *) msgb_put(msg, 3);
671 ptr8[0] = GSM48_IE_NAME_LONG;
672 ptr8[1] = name_len*2 + 1;
673 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
674
Harald Weltee872cb12009-01-01 00:33:37 +0000675 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000676 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000677 ptr16[i] = htons(net->name_short[i]);
Harald Weltedb253af2008-12-30 17:56:55 +0000678 }
679
680#if 0
Holger Freytherca362a62009-01-04 21:05:01 +0000681 /* move back to the top */
682 time_t cur_t;
683 struct tm* cur_time;
684 int tz15min;
Harald Weltedb253af2008-12-30 17:56:55 +0000685 /* Section 10.5.3.9 */
686 cur_t = time(NULL);
687 cur_time = gmtime(cur_t);
688 ptr8 = msgb_put(msg, 8);
689 ptr8[0] = GSM48_IE_NET_TIME_TZ;
690 ptr8[1] = to_bcd8(cur_time->tm_year % 100);
691 ptr8[2] = to_bcd8(cur_time->tm_mon);
692 ptr8[3] = to_bcd8(cur_time->tm_mday);
693 ptr8[4] = to_bcd8(cur_time->tm_hour);
694 ptr8[5] = to_bcd8(cur_time->tm_min);
695 ptr8[6] = to_bcd8(cur_time->tm_sec);
696 /* 02.42: coded as BCD encoded signed value in units of 15 minutes */
697 tz15min = (cur_time->tm_gmtoff)/(60*15);
698 ptr8[6] = to_bcd8(tz15min);
699 if (tz15min < 0)
700 ptr8[6] |= 0x80;
701#endif
702
703 return gsm48_sendmsg(msg);
704}
705
Harald Welte4b634542008-12-27 01:55:51 +0000706static int gsm48_tx_mm_serv_ack(struct gsm_lchan *lchan)
707{
Harald Welte4b634542008-12-27 01:55:51 +0000708 DEBUGP(DMM, "-> CM SERVICE ACK\n");
Harald Welte65e74cc2008-12-29 01:55:35 +0000709 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_ACC);
Harald Welte4b634542008-12-27 01:55:51 +0000710}
Harald Welteba4cf162009-01-10 01:49:35 +0000711
712/* 9.2.6 CM service reject */
713static int gsm48_tx_mm_serv_rej(struct gsm_lchan *lchan,
714 enum gsm48_reject_value value)
715{
716 struct msgb *msg = gsm48_msgb_alloc();
717 struct gsm48_hdr *gh;
718
719 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
720
721 msg->lchan = lchan;
722 use_lchan(lchan);
723
724 gh->proto_discr = GSM48_PDISC_MM;
725 gh->msg_type = GSM48_MT_MM_CM_SERV_REJ;
726 gh->data[0] = value;
727 DEBUGP(DMM, "-> CM SERVICE Reject cause: %d\n", value);
728
729 return gsm48_sendmsg(msg);
730}
731
Harald Welte4ed0e922009-01-10 03:17:30 +0000732
733/*
734 * Handle CM Service Requests
735 * a) Verify that the packet is long enough to contain the information
736 * we require otherwsie reject with INCORRECT_MESSAGE
737 * b) Try to parse the TMSI. If we do not have one reject
738 * c) Check that we know the subscriber with the TMSI otherwise reject
739 * with a HLR cause
740 * d) Set the subscriber on the gsm_lchan and accept
741 */
Harald Welte4b634542008-12-27 01:55:51 +0000742static int gsm48_rx_mm_serv_req(struct msgb *msg)
743{
Harald Welteba4cf162009-01-10 01:49:35 +0000744 u_int8_t mi_type;
Harald Welte4ed0e922009-01-10 03:17:30 +0000745 char mi_string[MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +0000746
Harald Welteba4cf162009-01-10 01:49:35 +0000747 struct gsm_subscriber *subscr;
748 struct gsm48_hdr *gh = msgb_l3(msg);
749 struct gsm48_service_request *req =
750 (struct gsm48_service_request *)gh->data;
751
752 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
753 DEBUGP(DMM, "<- CM SERVICE REQUEST wrong sized message\n");
754 return gsm48_tx_mm_serv_rej(msg->lchan,
755 GSM48_REJECT_INCORRECT_MESSAGE);
756 }
757
758 if (msg->data_len < req->mi_len + 6) {
759 DEBUGP(DMM, "<- CM SERVICE REQUEST MI does not fit in package\n");
760 return gsm48_tx_mm_serv_rej(msg->lchan,
761 GSM48_REJECT_INCORRECT_MESSAGE);
762 }
763
764 mi_type = req->mi[0] & GSM_MI_TYPE_MASK;
765 if (mi_type != GSM_MI_TYPE_TMSI) {
766 DEBUGP(DMM, "<- CM SERVICE REQUEST mi type is not TMSI: %d\n", mi_type);
767 return gsm48_tx_mm_serv_rej(msg->lchan,
768 GSM48_REJECT_INCORRECT_MESSAGE);
769 }
770
Harald Welte4ed0e922009-01-10 03:17:30 +0000771 mi_to_string(mi_string, sizeof(mi_string), req->mi, req->mi_len);
772 subscr = subscr_get_by_tmsi(mi_string);
773 DEBUGP(DMM, "<- CM SERVICE REQUEST serv_type=0x%02x mi_type=0x%02x M(%s)\n",
774 req->cm_service_type, mi_type, mi_string);
Harald Weltebcae43f2008-12-27 21:45:37 +0000775
Harald Welte2a139372009-02-22 21:14:55 +0000776 /* FIXME: if we don't know the TMSI, inquire abit IMSI and allocate new TMSI */
Harald Welte4ed0e922009-01-10 03:17:30 +0000777 if (!subscr)
778 return gsm48_tx_mm_serv_rej(msg->lchan,
779 GSM48_REJECT_IMSI_UNKNOWN_IN_HLR);
780
781 if (!msg->lchan->subscr)
782 msg->lchan->subscr = subscr;
Harald Welte9bb7c702009-01-10 03:21:41 +0000783 else if (msg->lchan->subscr != subscr) {
784 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
785 subscr_put(subscr);
786 }
787
Harald Welte4b634542008-12-27 01:55:51 +0000788 return gsm48_tx_mm_serv_ack(msg->lchan);
789}
790
Harald Welte2a139372009-02-22 21:14:55 +0000791static int gsm48_rx_mm_imsi_detach_ind(struct msgb *msg)
792{
793 struct gsm48_hdr *gh = msgb_l3(msg);
794 struct gsm48_imsi_detach_ind *idi =
795 (struct gsm48_imsi_detach_ind *) gh->data;
796 u_int8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
797 char mi_string[MI_SIZE];
798 struct gsm_subscriber *subscr;
799
800 mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
801 DEBUGP(DMM, "IMSI DETACH INDICATION: mi_type=0x%02x MI(%s): ",
802 mi_type, mi_string);
803
804 switch (mi_type) {
805 case GSM_MI_TYPE_TMSI:
806 subscr = subscr_get_by_tmsi(mi_string);
807 break;
808 case GSM_MI_TYPE_IMSI:
809 subscr = subscr_get_by_imsi(mi_string);
810 break;
811 case GSM_MI_TYPE_IMEI:
812 case GSM_MI_TYPE_IMEISV:
813 /* no sim card... FIXME: what to do ? */
814 fprintf(stderr, "Unimplemented mobile identity type\n");
815 break;
816 default:
817 fprintf(stderr, "Unknown mobile identity type\n");
818 break;
819 }
820
821 if (subscr)
822 DEBUGP(DMM, "Subscriber: %s\n",
823 subscr->name ? subscr->name : subscr->imsi);
824 else
825 DEBUGP(DMM, "Unknown Subscriber ?!?\n");
826
827 put_lchan(msg->lchan);
828
829 return 0;
830}
831
Harald Weltebf5e8df2009-02-03 12:59:45 +0000832/* Receive a GSM 04.08 Mobility Management (MM) message */
Harald Welte52b1f982008-12-23 20:25:15 +0000833static int gsm0408_rcv_mm(struct msgb *msg)
834{
835 struct gsm48_hdr *gh = msgb_l3(msg);
836 int rc;
837
838 switch (gh->msg_type & 0xbf) {
839 case GSM48_MT_MM_LOC_UPD_REQUEST:
Holger Freyther429e7762008-12-30 13:28:30 +0000840 DEBUGP(DMM, "LOCATION UPDATING REQUEST\n");
Harald Welte231ad4f2008-12-27 11:15:38 +0000841 rc = mm_rx_loc_upd_req(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000842 break;
843 case GSM48_MT_MM_ID_RESP:
Harald Welte231ad4f2008-12-27 11:15:38 +0000844 rc = mm_rx_id_resp(msg);
845 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000846 case GSM48_MT_MM_CM_SERV_REQ:
Harald Welte4b634542008-12-27 01:55:51 +0000847 rc = gsm48_rx_mm_serv_req(msg);
848 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000849 case GSM48_MT_MM_STATUS:
Harald Welte2a139372009-02-22 21:14:55 +0000850 DEBUGP(DMM, "STATUS: FIXME parse error cond.\n");
Harald Welte231ad4f2008-12-27 11:15:38 +0000851 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000852 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte69b2af22009-01-06 19:47:00 +0000853 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
854 msg->lchan->subscr ?
855 msg->lchan->subscr->imsi :
856 "unknown subscriber");
857 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000858 case GSM48_MT_MM_IMSI_DETACH_IND:
Harald Welte2a139372009-02-22 21:14:55 +0000859 rc = gsm48_rx_mm_imsi_detach_ind(msg);
860 break;
861 case GSM48_MT_MM_CM_REEST_REQ:
862 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
863 break;
864 case GSM48_MT_MM_AUTH_RESP:
865 DEBUGP(DMM, "AUTHENTICATION RESPONSE: Not implemented\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000866 break;
867 default:
868 fprintf(stderr, "Unknown GSM 04.08 MM msg type 0x%02x\n",
869 gh->msg_type);
870 break;
871 }
872
873 return rc;
874}
Harald Weltebf5e8df2009-02-03 12:59:45 +0000875
Harald Welte2d35ae62009-02-06 12:02:13 +0000876/* Receive a PAGING RESPONSE message from the MS */
877static int gsm48_rr_rx_pag_resp(struct msgb *msg)
878{
879 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte61548982009-02-22 21:26:29 +0000880 u_int8_t *classmark2_lv = gh->data + 1;
881 u_int8_t *mi_lv = gh->data + 2 + *classmark2_lv;
882 u_int8_t mi_type = mi_lv[1] & GSM_MI_TYPE_MASK;
Harald Welte2d35ae62009-02-06 12:02:13 +0000883 char mi_string[MI_SIZE];
884 struct gsm_subscriber *subscr;
Harald Welte595ad7b2009-02-16 22:05:44 +0000885 struct paging_signal_data sig_data;
Harald Welte2d35ae62009-02-06 12:02:13 +0000886 int rc = 0;
887
Harald Welte61548982009-02-22 21:26:29 +0000888 mi_to_string(mi_string, sizeof(mi_string), mi_lv+1, *mi_lv);
Harald Welte2d35ae62009-02-06 12:02:13 +0000889 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
890 mi_type, mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +0000891 switch (mi_type) {
892 case GSM_MI_TYPE_TMSI:
893 subscr = subscr_get_by_tmsi(mi_string);
894 break;
895 case GSM_MI_TYPE_IMSI:
896 subscr = subscr_get_by_imsi(mi_string);
897 break;
898 }
Harald Welte2d35ae62009-02-06 12:02:13 +0000899
900 if (!subscr) {
901 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte09e38af2009-02-16 22:52:23 +0000902 /* FIXME: request id? close channel? */
Harald Welte2d35ae62009-02-06 12:02:13 +0000903 return -EINVAL;
904 }
905 DEBUGP(DRR, "<- Channel was requested by %s\n",
906 subscr->name ? subscr->name : subscr->imsi);
Holger Freyther053e09d2009-02-14 22:51:06 +0000907
Holger Freyther2fa4cb52009-02-14 23:53:15 +0000908 if (!msg->lchan->subscr)
909 msg->lchan->subscr = subscr;
910 else if (msg->lchan->subscr != subscr) {
911 DEBUGP(DRR, "<- Channel already owned by someone else?\n");
912 subscr_put(subscr);
913 }
914
Harald Welte595ad7b2009-02-16 22:05:44 +0000915 sig_data.subscr = subscr;
916 sig_data.bts = msg->lchan->ts->trx->bts;
917 sig_data.lchan = msg->lchan;
918
919 dispatch_signal(SS_PAGING, S_PAGING_COMPLETED, &sig_data);
Harald Welte7ccf7782009-02-17 01:43:01 +0000920 paging_request_stop(msg->trx->bts, subscr, msg->lchan);
Harald Welte2d35ae62009-02-06 12:02:13 +0000921
Harald Welte7584aea2009-02-11 11:44:12 +0000922 /* FIXME: somehow signal the completion of the PAGING to
923 * the entity that requested the paging */
924
Harald Welte2d35ae62009-02-06 12:02:13 +0000925 return rc;
926}
927
Harald Weltebf5e8df2009-02-03 12:59:45 +0000928/* Receive a GSM 04.08 Radio Resource (RR) message */
Harald Welte52b1f982008-12-23 20:25:15 +0000929static int gsm0408_rcv_rr(struct msgb *msg)
930{
931 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +0000932 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000933
934 switch (gh->msg_type) {
935 case GSM48_MT_RR_CLSM_CHG:
936 DEBUGP(DRR, "CLASSMARK CHANGE\n");
937 /* FIXME: what to do ?!? */
938 break;
Harald Weltefc977a82008-12-27 10:19:37 +0000939 case GSM48_MT_RR_GPRS_SUSP_REQ:
940 DEBUGP(DRR, "GRPS SUSPEND REQUEST\n");
941 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000942 case GSM48_MT_RR_PAG_RESP:
Harald Welte2d35ae62009-02-06 12:02:13 +0000943 rc = gsm48_rr_rx_pag_resp(msg);
944 break;
Harald Welte7ccf7782009-02-17 01:43:01 +0000945 case GSM48_MT_RR_CHAN_MODE_MODIF_ACK:
946 DEBUGP(DRR, "CHANNEL MODE MODIFY ACK\n");
Harald Welte2c38aa82009-02-18 03:44:24 +0000947 rc = rsl_chan_mode_modify_req(msg->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +0000948 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000949 default:
Harald Welte2d35ae62009-02-06 12:02:13 +0000950 fprintf(stderr, "Unimplemented GSM 04.08 RR msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +0000951 gh->msg_type);
952 break;
953 }
954
Harald Welte2d35ae62009-02-06 12:02:13 +0000955 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000956}
957
Holger Freythere64a7a32009-02-06 21:55:37 +0000958/* 7.1.7 and 9.1.7 Channel release*/
959int gsm48_send_rr_release(struct gsm_lchan *lchan)
960{
961 struct msgb *msg = gsm48_msgb_alloc();
962 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
963 u_int8_t *cause;
964
965 msg->lchan = lchan;
966 gh->proto_discr = GSM48_PDISC_RR;
967 gh->msg_type = GSM48_MT_RR_CHAN_REL;
968
969 cause = msgb_put(msg, 1);
970 cause[0] = GSM48_RR_CAUSE_NORMAL;
971
972 DEBUGP(DRR, "Sending Channel Release: Chan: Number: %d Type: %d\n",
973 lchan->nr, lchan->type);
974
975 return gsm48_sendmsg(msg);
976}
977
Harald Welte4bc90a12008-12-27 16:32:52 +0000978/* Call Control */
979
Harald Welte7584aea2009-02-11 11:44:12 +0000980/* The entire call control code is written in accordance with Figure 7.10c
981 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
982 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
983 * it for voice */
984
Harald Welte4bc90a12008-12-27 16:32:52 +0000985static int gsm48_cc_tx_status(struct gsm_lchan *lchan)
986{
987 struct msgb *msg = gsm48_msgb_alloc();
988 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
989 u_int8_t *cause, *call_state;
990
Harald Welte65e74cc2008-12-29 01:55:35 +0000991 gh->proto_discr = GSM48_PDISC_CC;
992
Harald Welte4bc90a12008-12-27 16:32:52 +0000993 msg->lchan = lchan;
994
Harald Welte4bc90a12008-12-27 16:32:52 +0000995 gh->msg_type = GSM48_MT_CC_STATUS;
996
997 cause = msgb_put(msg, 3);
998 cause[0] = 2;
999 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1000 cause[2] = 0x80 | 30; /* response to status inquiry */
1001
1002 call_state = msgb_put(msg, 1);
1003 call_state[0] = 0xc0 | 0x00;
1004
Harald Welte65e74cc2008-12-29 01:55:35 +00001005 return gsm48_sendmsg(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00001006}
1007
Harald Welte6f4b7532008-12-29 00:39:37 +00001008static int gsm48_tx_simple(struct gsm_lchan *lchan,
1009 u_int8_t pdisc, u_int8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001010{
1011 struct msgb *msg = gsm48_msgb_alloc();
1012 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1013
1014 msg->lchan = lchan;
1015
Harald Welte6f4b7532008-12-29 00:39:37 +00001016 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001017 gh->msg_type = msg_type;
1018
Harald Welte65e74cc2008-12-29 01:55:35 +00001019 return gsm48_sendmsg(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00001020}
1021
Harald Welte09e38af2009-02-16 22:52:23 +00001022/* call-back from paging the B-end of the connection */
1023static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Harald Welte7ccf7782009-02-17 01:43:01 +00001024 struct msgb *msg, void *_lchan, void *param)
Harald Welte09e38af2009-02-16 22:52:23 +00001025{
Harald Welte7ccf7782009-02-17 01:43:01 +00001026 struct gsm_lchan *lchan = _lchan;
Harald Welte49f48b82009-02-17 15:29:33 +00001027 struct gsm_call *remote_call = param;
1028 struct gsm_call *call = &lchan->call;
Harald Welte7ccf7782009-02-17 01:43:01 +00001029 int rc = 0;
Harald Welte09e38af2009-02-16 22:52:23 +00001030
1031 if (hooknum != GSM_HOOK_RR_PAGING)
1032 return -EINVAL;
1033
1034 switch (event) {
1035 case GSM_PAGING_SUCCEEDED:
Harald Welte7ccf7782009-02-17 01:43:01 +00001036 DEBUGP(DCC, "paging succeeded!\n");
Harald Welte49f48b82009-02-17 15:29:33 +00001037 remote_call->remote_lchan = lchan;
1038 call->remote_lchan = remote_call->local_lchan;
Harald Welte09e38af2009-02-16 22:52:23 +00001039 /* send SETUP request to called party */
Harald Welte49f48b82009-02-17 15:29:33 +00001040 rc = gsm48_cc_tx_setup(lchan, call->remote_lchan->subscr);
1041 if (is_ipaccess_bts(lchan->ts->trx->bts))
1042 rsl_ipacc_bind(lchan);
Harald Welte09e38af2009-02-16 22:52:23 +00001043 break;
1044 case GSM_PAGING_EXPIRED:
Harald Welte7ccf7782009-02-17 01:43:01 +00001045 DEBUGP(DCC, "paging expired!\n");
Harald Welte09e38af2009-02-16 22:52:23 +00001046 /* notify caller that we cannot reach called party */
Harald Welte7ccf7782009-02-17 01:43:01 +00001047 /* FIXME: correct cause, etc */
Harald Weltebfaf0972009-02-17 17:43:33 +00001048 rc = gsm48_tx_simple(remote_call->local_lchan, GSM48_PDISC_CC,
Harald Welte7ccf7782009-02-17 01:43:01 +00001049 GSM48_MT_CC_RELEASE_COMPL);
Harald Welte09e38af2009-02-16 22:52:23 +00001050 break;
1051 }
Harald Welte7ccf7782009-02-17 01:43:01 +00001052 return rc;
Harald Welte09e38af2009-02-16 22:52:23 +00001053}
1054
Harald Welte4bc90a12008-12-27 16:32:52 +00001055static int gsm48_cc_rx_status_enq(struct msgb *msg)
1056{
1057 return gsm48_cc_tx_status(msg->lchan);
1058}
1059
1060static int gsm48_cc_rx_setup(struct msgb *msg)
1061{
Harald Welte7584aea2009-02-11 11:44:12 +00001062 struct gsm_call *call = &msg->lchan->call;
1063 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte09e38af2009-02-16 22:52:23 +00001064 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
Harald Welte7584aea2009-02-11 11:44:12 +00001065 struct gsm_subscriber *called_subscr;
Harald Welte09e38af2009-02-16 22:52:23 +00001066 char called_number[(43-2)*2 + 1] = "\0";
1067 struct tlv_parsed tp;
1068 u_int8_t num_type;
Harald Welte7584aea2009-02-11 11:44:12 +00001069 int ret;
1070
1071 if (call->state == GSM_CSTATE_NULL ||
1072 call->state == GSM_CSTATE_RELEASE_REQ)
1073 use_lchan(msg->lchan);
1074
1075 call->type = GSM_CT_MO;
1076 call->state = GSM_CSTATE_INITIATED;
Harald Welte49f48b82009-02-17 15:29:33 +00001077 call->local_lchan = msg->lchan;
Harald Welte7584aea2009-02-11 11:44:12 +00001078 call->transaction_id = gh->proto_discr & 0xf0;
1079
Harald Welte09e38af2009-02-16 22:52:23 +00001080 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len);
1081 if (!TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD))
1082 goto err;
Harald Welte7584aea2009-02-11 11:44:12 +00001083
Harald Welte09e38af2009-02-16 22:52:23 +00001084 /* Parse the number that was dialed and lookup subscriber */
1085 num_type = decode_bcd_number(called_number, sizeof(called_number),
1086 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
Harald Welte7ccf7782009-02-17 01:43:01 +00001087
Harald Welte4b458152009-02-17 13:23:06 +00001088 DEBUGP(DCC, "A -> SETUP(tid=0x%02x,number='%s')\n", call->transaction_id,
Harald Welte7ccf7782009-02-17 01:43:01 +00001089 called_number);
1090
Harald Welte09e38af2009-02-16 22:52:23 +00001091 called_subscr = subscr_get_by_extension(called_number);
Harald Welte7584aea2009-02-11 11:44:12 +00001092 if (!called_subscr) {
1093 DEBUGP(DCC, "could not find subscriber, RELEASE\n");
1094 put_lchan(msg->lchan);
1095 return gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
Harald Welte4b458152009-02-17 13:23:06 +00001096 GSM48_MT_CC_RELEASE_COMPL);
Harald Welte7584aea2009-02-11 11:44:12 +00001097 }
Harald Welte5a065df2009-02-22 21:13:18 +00001098 if (called_subscr == msg->lchan->subscr) {
1099 DEBUGP(DCC, "subscriber calling himself ?!?\n");
1100 put_lchan(msg->lchan);
1101 subscr_put(called_subscr);
1102 return gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1103 GSM48_MT_CC_RELEASE_COMPL);
1104 }
Harald Welte7584aea2009-02-11 11:44:12 +00001105
Harald Welte09e38af2009-02-16 22:52:23 +00001106 subscr_get(msg->lchan->subscr);
Harald Welte09e38af2009-02-16 22:52:23 +00001107 call->called_subscr = called_subscr;
1108
Harald Welte7584aea2009-02-11 11:44:12 +00001109 /* start paging of the receiving end of the call */
Harald Welte09e38af2009-02-16 22:52:23 +00001110 paging_request(msg->trx->bts, called_subscr, RSL_CHANNEED_TCH_F,
1111 setup_trig_pag_evt, call);
Harald Welte7584aea2009-02-11 11:44:12 +00001112
1113 /* send a CALL PROCEEDING message to the MO */
1114 ret = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1115 GSM48_MT_CC_CALL_PROC);
1116
Harald Welte49f48b82009-02-17 15:29:33 +00001117 if (is_ipaccess_bts(msg->trx->bts))
1118 rsl_ipacc_bind(msg->lchan);
1119
Harald Welte7584aea2009-02-11 11:44:12 +00001120 /* change TCH/F mode to voice */
Harald Welte2c38aa82009-02-18 03:44:24 +00001121 return gsm48_tx_chan_mode_modify(msg->lchan, GSM48_CMODE_SPEECH_EFR);
Harald Welte09e38af2009-02-16 22:52:23 +00001122
1123err:
1124 /* FIXME: send some kind of RELEASE */
1125 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001126}
Harald Welte7584aea2009-02-11 11:44:12 +00001127
Harald Welte7ccf7782009-02-17 01:43:01 +00001128static int gsm48_cc_rx_alerting(struct msgb *msg)
1129{
1130 struct gsm_call *call = &msg->lchan->call;
Harald Welte4bc90a12008-12-27 16:32:52 +00001131
Harald Welte4b458152009-02-17 13:23:06 +00001132 DEBUGP(DCC, "A -> ALERTING\n");
Harald Welte7ccf7782009-02-17 01:43:01 +00001133
1134 /* forward ALERTING to other party */
Harald Welte49f48b82009-02-17 15:29:33 +00001135 if (!call->remote_lchan)
Harald Welte7ccf7782009-02-17 01:43:01 +00001136 return -EIO;
1137
Harald Welte4b458152009-02-17 13:23:06 +00001138 DEBUGP(DCC, "B <- ALERTING\n");
Harald Welte49f48b82009-02-17 15:29:33 +00001139 return gsm48_tx_simple(call->remote_lchan, GSM48_PDISC_CC,
Harald Welte7ccf7782009-02-17 01:43:01 +00001140 GSM48_MT_CC_ALERTING);
1141}
1142
Harald Welte49f48b82009-02-17 15:29:33 +00001143/* map two ipaccess RTP streams onto each other */
Harald Welte11fa29c2009-02-19 17:24:39 +00001144static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
Harald Welte49f48b82009-02-17 15:29:33 +00001145{
Harald Welte11fa29c2009-02-19 17:24:39 +00001146 struct gsm_bts *bts = lchan->ts->trx->bts;
1147 struct gsm_bts *remote_bts = remote_lchan->ts->trx->bts;
Harald Welte49f48b82009-02-17 15:29:33 +00001148 struct gsm_bts_trx_ts *ts;
1149
Harald Welte11fa29c2009-02-19 17:24:39 +00001150 DEBUGP(DCC, "Setting up TCH map between (bts=%u,trx=%u,ts=%u) and (bts=%u,trx=%u,ts=%u)\n",
1151 bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1152 remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr);
1153
1154 if (bts->type != remote_bts->type) {
1155 DEBUGP(DCC, "Cannot switch calls between different BTS types yet\n");
1156 return -EINVAL;
1157 }
Harald Welte49f48b82009-02-17 15:29:33 +00001158
Harald Welte11fa29c2009-02-19 17:24:39 +00001159 switch (bts->type) {
1160 case GSM_BTS_TYPE_NANOBTS_900:
1161 case GSM_BTS_TYPE_NANOBTS_1800:
1162 ts = remote_lchan->ts;
1163 rsl_ipacc_connect(lchan, ts->abis_ip.bound_ip, ts->abis_ip.bound_port,
1164 lchan->ts->abis_ip.attr_f8, ts->abis_ip.attr_fc);
1165
1166 ts = lchan->ts;
1167 rsl_ipacc_connect(remote_lchan, ts->abis_ip.bound_ip, ts->abis_ip.bound_port,
1168 remote_lchan->ts->abis_ip.attr_f8, ts->abis_ip.attr_fc);
1169 break;
1170 case GSM_BTS_TYPE_BS11:
1171 trau_mux_map_lchan(lchan, remote_lchan);
1172 break;
1173 default:
1174 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
1175 break;
1176 }
Harald Welte49f48b82009-02-17 15:29:33 +00001177
1178 return 0;
1179}
1180
Harald Welte7ccf7782009-02-17 01:43:01 +00001181static int gsm48_cc_rx_connect(struct msgb *msg)
1182{
1183 struct gsm_call *call = &msg->lchan->call;
Harald Welte7ccf7782009-02-17 01:43:01 +00001184 int rc;
1185
Harald Welte4b458152009-02-17 13:23:06 +00001186 DEBUGP(DCC, "A -> CONNECT\n");
Harald Welte11fa29c2009-02-19 17:24:39 +00001187
1188 rc = tch_map(msg->lchan, call->remote_lchan);
1189 if (rc)
1190 return -EIO;
1191
1192 if (!call->remote_lchan)
1193 return -EIO;
1194
Harald Welte4b458152009-02-17 13:23:06 +00001195 DEBUGP(DCC, "A <- CONNECT ACK\n");
Harald Welte7ccf7782009-02-17 01:43:01 +00001196 /* MT+MO: need to respond with CONNECT_ACK and pass on */
1197 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
Harald Welte4b458152009-02-17 13:23:06 +00001198 GSM48_MT_CC_CONNECT_ACK);
Harald Welte7ccf7782009-02-17 01:43:01 +00001199
Harald Welte49f48b82009-02-17 15:29:33 +00001200
1201 /* forward CONNECT to other party */
Harald Welte4b458152009-02-17 13:23:06 +00001202 DEBUGP(DCC, "B <- CONNECT\n");
Harald Welte49f48b82009-02-17 15:29:33 +00001203 return gsm48_tx_simple(call->remote_lchan, GSM48_PDISC_CC,
Harald Welte4b458152009-02-17 13:23:06 +00001204 GSM48_MT_CC_CONNECT);
Harald Welte7ccf7782009-02-17 01:43:01 +00001205}
1206
1207static int gsm48_cc_rx_disconnect(struct msgb *msg)
1208{
1209 struct gsm_call *call = &msg->lchan->call;
Harald Welte7ccf7782009-02-17 01:43:01 +00001210 int rc;
1211
1212
1213 /* Section 5.4.3.2 */
Harald Welte4b458152009-02-17 13:23:06 +00001214 DEBUGP(DCC, "A -> DISCONNECT (state->RELEASE_REQ)\n");
Harald Welte7ccf7782009-02-17 01:43:01 +00001215 call->state = GSM_CSTATE_RELEASE_REQ;
1216 if (call->state != GSM_CSTATE_NULL)
1217 put_lchan(msg->lchan);
1218 /* FIXME: clear the network connection */
Harald Welte4b458152009-02-17 13:23:06 +00001219 DEBUGP(DCC, "A <- RELEASE\n");
Harald Welte7ccf7782009-02-17 01:43:01 +00001220 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1221 GSM48_MT_CC_RELEASE);
1222
1223 /* forward DISCONNECT to other party */
Harald Welte49f48b82009-02-17 15:29:33 +00001224 if (!call->remote_lchan)
Harald Welte7ccf7782009-02-17 01:43:01 +00001225 return -EIO;
1226
Harald Welte4b458152009-02-17 13:23:06 +00001227 DEBUGP(DCC, "B <- DISCONNECT\n");
Harald Welte49f48b82009-02-17 15:29:33 +00001228 return gsm48_tx_simple(call->remote_lchan, GSM48_PDISC_CC,
Harald Welte7ccf7782009-02-17 01:43:01 +00001229 GSM48_MT_CC_DISCONNECT);
1230}
1231
1232static const u_int8_t calling_bcd[] = { 0xb9, 0x32, 0x24 };
1233
Harald Welte49f48b82009-02-17 15:29:33 +00001234int gsm48_cc_tx_setup(struct gsm_lchan *lchan,
1235 struct gsm_subscriber *calling_subscr)
Harald Welte65e74cc2008-12-29 01:55:35 +00001236{
1237 struct msgb *msg = gsm48_msgb_alloc();
1238 struct gsm48_hdr *gh;
1239 struct gsm_call *call = &lchan->call;
Harald Welte7ccf7782009-02-17 01:43:01 +00001240 u_int8_t bcd_lv[19];
Harald Welte65e74cc2008-12-29 01:55:35 +00001241
Harald Welte7ccf7782009-02-17 01:43:01 +00001242 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00001243
1244 call->type = GSM_CT_MT;
Harald Welte49f48b82009-02-17 15:29:33 +00001245
1246 call->local_lchan = msg->lchan = lchan;
Harald Welte498b0bb2009-01-09 21:27:43 +00001247 use_lchan(lchan);
Harald Welte65e74cc2008-12-29 01:55:35 +00001248
1249 gh->proto_discr = GSM48_PDISC_CC;
1250 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00001251
Harald Welte7584aea2009-02-11 11:44:12 +00001252 msgb_tv_put(msg, GSM48_IE_SIGNAL, GSM48_SIGNAL_DIALTONE);
Harald Welte49f48b82009-02-17 15:29:33 +00001253 if (calling_subscr) {
Harald Welte7ccf7782009-02-17 01:43:01 +00001254 encode_bcd_number(bcd_lv, sizeof(bcd_lv), 0xb9,
Harald Welte49f48b82009-02-17 15:29:33 +00001255 calling_subscr->extension);
Harald Welte7ccf7782009-02-17 01:43:01 +00001256 msgb_tlv_put(msg, GSM48_IE_CALLING_BCD,
1257 bcd_lv[0], bcd_lv+1);
1258 }
Harald Welte49f48b82009-02-17 15:29:33 +00001259 if (lchan->subscr) {
Harald Welte7ccf7782009-02-17 01:43:01 +00001260 encode_bcd_number(bcd_lv, sizeof(bcd_lv), 0xb9,
Harald Welte49f48b82009-02-17 15:29:33 +00001261 lchan->subscr->extension);
Harald Welte7ccf7782009-02-17 01:43:01 +00001262 msgb_tlv_put(msg, GSM48_IE_CALLED_BCD,
1263 bcd_lv[0], bcd_lv+1);
1264 }
Harald Welte65e74cc2008-12-29 01:55:35 +00001265
Harald Welte4b458152009-02-17 13:23:06 +00001266 DEBUGP(DCC, "B <- SETUP\n");
Harald Welte65e74cc2008-12-29 01:55:35 +00001267
1268 return gsm48_sendmsg(msg);
1269}
1270
Harald Welte4bc90a12008-12-27 16:32:52 +00001271static int gsm0408_rcv_cc(struct msgb *msg)
1272{
1273 struct gsm48_hdr *gh = msgb_l3(msg);
1274 u_int8_t msg_type = gh->msg_type & 0xbf;
1275 struct gsm_call *call = &msg->lchan->call;
1276 int rc = 0;
1277
1278 switch (msg_type) {
1279 case GSM48_MT_CC_CALL_CONF:
1280 /* Response to SETUP */
Harald Welte7ccf7782009-02-17 01:43:01 +00001281 DEBUGP(DCC, "-> CALL CONFIRM\n");
Harald Welte4b458152009-02-17 13:23:06 +00001282 /* we now need to MODIFY the channel */
Harald Welte2c38aa82009-02-18 03:44:24 +00001283 rc = gsm48_tx_chan_mode_modify(msg->lchan, GSM48_CMODE_SPEECH_EFR);
Harald Welte4bc90a12008-12-27 16:32:52 +00001284 break;
1285 case GSM48_MT_CC_RELEASE_COMPL:
1286 /* Answer from MS to RELEASE */
Harald Welte7ccf7782009-02-17 01:43:01 +00001287 DEBUGP(DCC, "-> RELEASE COMPLETE (state->NULL)\n");
Harald Welte4bc90a12008-12-27 16:32:52 +00001288 call->state = GSM_CSTATE_NULL;
1289 break;
1290 case GSM48_MT_CC_ALERTING:
Harald Welte7ccf7782009-02-17 01:43:01 +00001291 rc = gsm48_cc_rx_alerting(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00001292 break;
1293 case GSM48_MT_CC_CONNECT:
Harald Welte7ccf7782009-02-17 01:43:01 +00001294 rc = gsm48_cc_rx_connect(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00001295 break;
1296 case GSM48_MT_CC_CONNECT_ACK:
1297 /* MO: Answer to CONNECT */
1298 call->state = GSM_CSTATE_ACTIVE;
Harald Welte7ccf7782009-02-17 01:43:01 +00001299 DEBUGP(DCC, "-> CONNECT_ACK (state->ACTIVE)\n");
Harald Welte4bc90a12008-12-27 16:32:52 +00001300 break;
1301 case GSM48_MT_CC_RELEASE:
Harald Welte7ccf7782009-02-17 01:43:01 +00001302 DEBUGP(DCC, "-> RELEASE\n");
Harald Welte49f48b82009-02-17 15:29:33 +00001303 DEBUGP(DCC, "<- RELEASE_COMPLETE\n");
Harald Welte4bc90a12008-12-27 16:32:52 +00001304 /* need to respond with RELEASE_COMPLETE */
Harald Welte7ccf7782009-02-17 01:43:01 +00001305 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1306 GSM48_MT_CC_RELEASE_COMPL);
Harald Welte49f48b82009-02-17 15:29:33 +00001307 put_lchan(msg->lchan);
1308 call->state = GSM_CSTATE_NULL;
Harald Welte4bc90a12008-12-27 16:32:52 +00001309 break;
1310 case GSM48_MT_CC_STATUS_ENQ:
1311 rc = gsm48_cc_rx_status_enq(msg);
1312 break;
1313 case GSM48_MT_CC_DISCONNECT:
Harald Welte7ccf7782009-02-17 01:43:01 +00001314 rc = gsm48_cc_rx_disconnect(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00001315 break;
1316 case GSM48_MT_CC_SETUP:
Harald Welte7584aea2009-02-11 11:44:12 +00001317 rc = gsm48_cc_rx_setup(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00001318 break;
1319 case GSM48_MT_CC_EMERG_SETUP:
Harald Welte7ccf7782009-02-17 01:43:01 +00001320 DEBUGP(DCC, "-> EMERGENCY SETUP\n");
Harald Welte4bc90a12008-12-27 16:32:52 +00001321 /* FIXME: continue with CALL_PROCEEDING, ALERTING, CONNECT, RELEASE_COMPLETE */
1322 break;
1323 default:
Harald Welte2d35ae62009-02-06 12:02:13 +00001324 fprintf(stderr, "Unimplemented GSM 04.08 CC msg type 0x%02x\n",
Harald Welte4bc90a12008-12-27 16:32:52 +00001325 msg_type);
1326 break;
1327 }
1328
1329 return rc;
1330}
1331
Harald Welte52b1f982008-12-23 20:25:15 +00001332/* here we pass in a msgb from the RSL->RLL. We expect the l3 pointer to be set */
1333int gsm0408_rcvmsg(struct msgb *msg)
1334{
1335 struct gsm48_hdr *gh = msgb_l3(msg);
1336 u_int8_t pdisc = gh->proto_discr & 0x0f;
Harald Welte8470bf22008-12-25 23:28:35 +00001337 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001338
1339 switch (pdisc) {
1340 case GSM48_PDISC_CC:
1341 rc = gsm0408_rcv_cc(msg);
1342 break;
1343 case GSM48_PDISC_MM:
1344 rc = gsm0408_rcv_mm(msg);
1345 break;
1346 case GSM48_PDISC_RR:
1347 rc = gsm0408_rcv_rr(msg);
1348 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00001349 case GSM48_PDISC_SMS:
Daniel Willmann8b3390e2008-12-28 00:31:09 +00001350 rc = gsm0411_rcv_sms(msg);
Harald Weltebcae43f2008-12-27 21:45:37 +00001351 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001352 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00001353 case GSM48_PDISC_SM_GPRS:
Harald Welte52b1f982008-12-23 20:25:15 +00001354 fprintf(stderr, "Unimplemented GSM 04.08 discriminator 0x%02d\n",
1355 pdisc);
1356 break;
1357 default:
1358 fprintf(stderr, "Unknown GSM 04.08 discriminator 0x%02d\n",
1359 pdisc);
1360 break;
1361 }
1362
1363 return rc;
1364}
Harald Welte8470bf22008-12-25 23:28:35 +00001365
1366enum chreq_type {
1367 CHREQ_T_EMERG_CALL,
1368 CHREQ_T_CALL_REEST_TCH_F,
1369 CHREQ_T_CALL_REEST_TCH_H,
1370 CHREQ_T_CALL_REEST_TCH_H_DBL,
1371 CHREQ_T_SDCCH,
1372 CHREQ_T_TCH_F,
1373 CHREQ_T_VOICE_CALL_TCH_H,
1374 CHREQ_T_DATA_CALL_TCH_H,
1375 CHREQ_T_LOCATION_UPD,
1376 CHREQ_T_PAG_R_ANY,
1377 CHREQ_T_PAG_R_TCH_F,
1378 CHREQ_T_PAG_R_TCH_FH,
1379};
1380
1381/* Section 9.1.8 / Table 9.9 */
1382struct chreq {
1383 u_int8_t val;
1384 u_int8_t mask;
1385 enum chreq_type type;
1386};
1387
1388/* If SYSTEM INFORMATION TYPE 4 NECI bit == 1 */
1389static const struct chreq chreq_type_neci1[] = {
1390 { 0xa0, 0xe0, CHREQ_T_EMERG_CALL },
1391 { 0xc0, 0xe0, CHREQ_T_CALL_REEST_TCH_F },
1392 { 0x68, 0xfc, CHREQ_T_CALL_REEST_TCH_H },
1393 { 0x6c, 0xfc, CHREQ_T_CALL_REEST_TCH_H_DBL },
1394 { 0xe0, 0xe0, CHREQ_T_SDCCH },
1395 { 0x40, 0xf0, CHREQ_T_VOICE_CALL_TCH_H },
1396 { 0x50, 0xf0, CHREQ_T_DATA_CALL_TCH_H },
1397 { 0x00, 0xf0, CHREQ_T_LOCATION_UPD },
1398 { 0x10, 0xf0, CHREQ_T_SDCCH },
1399 { 0x80, 0xe0, CHREQ_T_PAG_R_ANY },
1400 { 0x20, 0xf0, CHREQ_T_PAG_R_TCH_F },
1401 { 0x30, 0xf0, CHREQ_T_PAG_R_TCH_FH },
1402};
1403
1404/* If SYSTEM INFORMATION TYPE 4 NECI bit == 0 */
1405static const struct chreq chreq_type_neci0[] = {
1406 { 0xa0, 0xe0, CHREQ_T_EMERG_CALL },
1407 { 0xc0, 0xe0, CHREQ_T_CALL_REEST_TCH_H },
1408 { 0xe0, 0xe0, CHREQ_T_TCH_F },
1409 { 0x50, 0xf0, CHREQ_T_DATA_CALL_TCH_H },
1410 { 0x00, 0xe0, CHREQ_T_LOCATION_UPD },
1411 { 0x80, 0xe0, CHREQ_T_PAG_R_ANY },
1412 { 0x20, 0xf0, CHREQ_T_PAG_R_TCH_F },
1413 { 0x30, 0xf0, CHREQ_T_PAG_R_TCH_FH },
1414};
1415
1416static const enum gsm_chan_t ctype_by_chreq[] = {
1417 [CHREQ_T_EMERG_CALL] = GSM_LCHAN_TCH_F,
1418 [CHREQ_T_CALL_REEST_TCH_F] = GSM_LCHAN_TCH_F,
1419 [CHREQ_T_CALL_REEST_TCH_H] = GSM_LCHAN_TCH_H,
1420 [CHREQ_T_CALL_REEST_TCH_H_DBL] = GSM_LCHAN_TCH_H,
1421 [CHREQ_T_SDCCH] = GSM_LCHAN_SDCCH,
1422 [CHREQ_T_TCH_F] = GSM_LCHAN_TCH_F,
1423 [CHREQ_T_VOICE_CALL_TCH_H] = GSM_LCHAN_TCH_H,
1424 [CHREQ_T_DATA_CALL_TCH_H] = GSM_LCHAN_TCH_H,
1425 [CHREQ_T_LOCATION_UPD] = GSM_LCHAN_SDCCH,
1426 [CHREQ_T_PAG_R_ANY] = GSM_LCHAN_SDCCH,
1427 [CHREQ_T_PAG_R_TCH_F] = GSM_LCHAN_TCH_F,
1428 [CHREQ_T_PAG_R_TCH_FH] = GSM_LCHAN_TCH_F,
1429};
1430
Harald Weltee14a57c2008-12-29 04:08:28 +00001431static const enum gsm_chreq_reason_t reason_by_chreq[] = {
1432 [CHREQ_T_EMERG_CALL] = GSM_CHREQ_REASON_EMERG,
1433 [CHREQ_T_CALL_REEST_TCH_F] = GSM_CHREQ_REASON_CALL,
1434 [CHREQ_T_CALL_REEST_TCH_H] = GSM_CHREQ_REASON_CALL,
1435 [CHREQ_T_CALL_REEST_TCH_H_DBL] = GSM_CHREQ_REASON_CALL,
1436 [CHREQ_T_SDCCH] = GSM_CHREQ_REASON_OTHER,
1437 [CHREQ_T_TCH_F] = GSM_CHREQ_REASON_OTHER,
1438 [CHREQ_T_VOICE_CALL_TCH_H] = GSM_CHREQ_REASON_OTHER,
1439 [CHREQ_T_DATA_CALL_TCH_H] = GSM_CHREQ_REASON_OTHER,
1440 [CHREQ_T_LOCATION_UPD] = GSM_CHREQ_REASON_LOCATION_UPD,
1441 [CHREQ_T_PAG_R_ANY] = GSM_CHREQ_REASON_PAG,
1442 [CHREQ_T_PAG_R_TCH_F] = GSM_CHREQ_REASON_PAG,
1443 [CHREQ_T_PAG_R_TCH_FH] = GSM_CHREQ_REASON_PAG,
1444};
1445
Harald Welte8470bf22008-12-25 23:28:35 +00001446enum gsm_chan_t get_ctype_by_chreq(struct gsm_bts *bts, u_int8_t ra)
1447{
1448 int i;
1449 /* FIXME: determine if we set NECI = 0 in the BTS SI4 */
1450
1451 for (i = 0; i < ARRAY_SIZE(chreq_type_neci0); i++) {
1452 const struct chreq *chr = &chreq_type_neci0[i];
1453 if ((ra & chr->mask) == chr->val)
1454 return ctype_by_chreq[chr->type];
1455 }
1456 fprintf(stderr, "Unknown CHANNEL REQUEST RQD 0x%02x\n", ra);
1457 return GSM_LCHAN_SDCCH;
1458}
Harald Weltee14a57c2008-12-29 04:08:28 +00001459
1460enum gsm_chreq_reason_t get_reason_by_chreq(struct gsm_bts *bts, u_int8_t ra)
1461{
1462 int i;
1463 /* FIXME: determine if we set NECI = 0 in the BTS SI4 */
1464
1465 for (i = 0; i < ARRAY_SIZE(chreq_type_neci0); i++) {
1466 const struct chreq *chr = &chreq_type_neci0[i];
1467 if ((ra & chr->mask) == chr->val)
1468 return reason_by_chreq[chr->type];
1469 }
1470 fprintf(stderr, "Unknown CHANNEL REQUEST REASON 0x%02x\n", ra);
1471 return GSM_CHREQ_REASON_OTHER;
1472}