blob: 2739b0b0fd72e26c2f2e4f9b4ef94c98560a1991 [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>
35#include <openbsc/debug.h>
36#include <openbsc/gsm_data.h>
37#include <openbsc/gsm_subscriber.h>
Daniel Willmann8b3390e2008-12-28 00:31:09 +000038#include <openbsc/gsm_04_11.h>
Harald Welte8470bf22008-12-25 23:28:35 +000039#include <openbsc/gsm_04_08.h>
40#include <openbsc/abis_rsl.h>
Holger Freytherca362a62009-01-04 21:05:01 +000041#include <openbsc/chan_alloc.h>
Harald Welte52b1f982008-12-23 20:25:15 +000042
Harald Welte8470bf22008-12-25 23:28:35 +000043#define GSM48_ALLOC_SIZE 1024
44#define GSM48_ALLOC_HEADROOM 128
Harald Welte52b1f982008-12-23 20:25:15 +000045
Harald Welte65e74cc2008-12-29 01:55:35 +000046static int gsm48_tx_simple(struct gsm_lchan *lchan,
47 u_int8_t pdisc, u_int8_t msg_type);
Holger Freytherb7193e42008-12-29 17:44:08 +000048static void schedule_reject(struct gsm_lchan *lchan);
Harald Welte65e74cc2008-12-29 01:55:35 +000049
Harald Welte52b1f982008-12-23 20:25:15 +000050struct gsm_lai {
51 u_int16_t mcc;
52 u_int16_t mnc;
53 u_int16_t lac;
54};
55
Holger Freyther89824fc2008-12-30 16:18:18 +000056static int authorize_everonye = 0;
57void gsm0408_allow_everyone(int everyone)
58{
59 printf("Allowing everyone?\n");
60 authorize_everonye = everyone;
61}
62
Holger Freythere97f7fb2008-12-31 18:52:11 +000063static int reject_cause = 0;
64void gsm0408_set_reject_cause(int cause)
65{
66 reject_cause = cause;
67}
68
Holger Freyther73487a22008-12-31 18:53:57 +000069static int authorize_subscriber(struct gsm_loc_updating_operation *loc,
70 struct gsm_subscriber *subscriber)
Holger Freyther89824fc2008-12-30 16:18:18 +000071{
72 if (!subscriber)
73 return 0;
74
Holger Freyther73487a22008-12-31 18:53:57 +000075 /*
76 * Do not send accept yet as more information should arrive. Some
77 * phones will not send us the information and we will have to check
78 * what we want to do with that.
79 */
80 if (loc && (loc->waiting_for_imsi || loc->waiting_for_imei))
81 return 0;
82
Holger Freyther89824fc2008-12-30 16:18:18 +000083 if (authorize_everonye)
84 return 1;
85
86 return subscriber->authorized;
87}
Holger Freyther07cc8d82008-12-29 06:23:46 +000088
Holger Freyther73487a22008-12-31 18:53:57 +000089static void release_loc_updating_req(struct gsm_lchan *lchan)
90{
Harald Welte179f0642008-12-31 23:59:18 +000091 if (!lchan->loc_operation)
Holger Freyther73487a22008-12-31 18:53:57 +000092 return;
93
94 del_timer(&lchan->loc_operation->updating_timer);
95 free(lchan->loc_operation);
96 lchan->loc_operation = 0;
Holger Freyther3eaa7922009-01-01 02:59:03 +000097 put_lchan(lchan);
Holger Freyther73487a22008-12-31 18:53:57 +000098}
99
100static void allocate_loc_updating_req(struct gsm_lchan *lchan)
101{
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000102 use_lchan(lchan);
Holger Freyther73487a22008-12-31 18:53:57 +0000103 release_loc_updating_req(lchan);
104
105 lchan->loc_operation = (struct gsm_loc_updating_operation *)
106 malloc(sizeof(*lchan->loc_operation));
107 memset(lchan->loc_operation, 0, sizeof(*lchan->loc_operation));
108}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000109
Harald Welte52b1f982008-12-23 20:25:15 +0000110static void to_bcd(u_int8_t *bcd, u_int16_t val)
111{
Harald Welte4b634542008-12-27 01:55:51 +0000112 bcd[2] = val % 10;
Harald Welte52b1f982008-12-23 20:25:15 +0000113 val = val / 10;
114 bcd[1] = val % 10;
115 val = val / 10;
Harald Welte4b634542008-12-27 01:55:51 +0000116 bcd[0] = val % 10;
Harald Welte52b1f982008-12-23 20:25:15 +0000117 val = val / 10;
118}
119
Holger Freyther17746612008-12-28 16:32:44 +0000120void gsm0408_generate_lai(struct gsm48_loc_area_id *lai48, u_int16_t mcc,
Harald Welte52b1f982008-12-23 20:25:15 +0000121 u_int16_t mnc, u_int16_t lac)
122{
123 u_int8_t bcd[3];
124
125 to_bcd(bcd, mcc);
126 lai48->digits[0] = bcd[0] | (bcd[1] << 4);
127 lai48->digits[1] = bcd[2];
128
129 to_bcd(bcd, mnc);
Harald Welte4b634542008-12-27 01:55:51 +0000130 /* FIXME: do we need three-digit MNC? See Table 10.5.3 */
131#if 0
Harald Welte8470bf22008-12-25 23:28:35 +0000132 lai48->digits[1] |= bcd[2] << 4;
133 lai48->digits[2] = bcd[0] | (bcd[1] << 4);
Harald Welte4b634542008-12-27 01:55:51 +0000134#else
135 lai48->digits[1] |= 0xf << 4;
136 lai48->digits[2] = bcd[1] | (bcd[2] << 4);
137#endif
Harald Welte52b1f982008-12-23 20:25:15 +0000138
Harald Welte4b634542008-12-27 01:55:51 +0000139 lai48->lac = htons(lac);
Harald Welte52b1f982008-12-23 20:25:15 +0000140}
141
Harald Welte255539c2008-12-28 02:26:27 +0000142#define TMSI_LEN 5
Harald Welte52b1f982008-12-23 20:25:15 +0000143#define MID_TMSI_LEN (TMSI_LEN + 2)
144
Harald Welte255539c2008-12-28 02:26:27 +0000145int generate_mid_from_tmsi(u_int8_t *buf, u_int32_t tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000146{
Harald Welte65e74cc2008-12-29 01:55:35 +0000147 u_int32_t *tptr = (u_int32_t *) &buf[3];
Harald Welte255539c2008-12-28 02:26:27 +0000148
Harald Welte4b634542008-12-27 01:55:51 +0000149 buf[0] = GSM48_IE_MOBILE_ID;
Harald Welte1a412182008-12-27 22:13:43 +0000150 buf[1] = TMSI_LEN;
Harald Welte4b634542008-12-27 01:55:51 +0000151 buf[2] = 0xf0 | GSM_MI_TYPE_TMSI;
Harald Welte255539c2008-12-28 02:26:27 +0000152 *tptr = htonl(tmsi);
153
154 return 7;
Harald Welte52b1f982008-12-23 20:25:15 +0000155}
156
Holger Freyther819dd202009-01-04 03:52:50 +0000157struct msgb *gsm48_msgb_alloc(void)
Harald Welte8470bf22008-12-25 23:28:35 +0000158{
159 return msgb_alloc_headroom(GSM48_ALLOC_SIZE, GSM48_ALLOC_HEADROOM);
160}
161
Holger Freyther3e2c3232009-01-04 03:55:31 +0000162int gsm48_sendmsg(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000163{
Harald Welte65e74cc2008-12-29 01:55:35 +0000164 struct gsm48_hdr *gh = (struct gsm48_hdr *) msg->data;
165
166 if (msg->lchan) {
Harald Welte8470bf22008-12-25 23:28:35 +0000167 msg->trx = msg->lchan->ts->trx;
Harald Welte52b1f982008-12-23 20:25:15 +0000168
Harald Welte65e74cc2008-12-29 01:55:35 +0000169 if ((gh->proto_discr & GSM48_PDISC_MASK) == GSM48_PDISC_CC) {
170 /* Send a 04.08 call control message, add transaction
171 * ID and TI flag */
172 gh->proto_discr |= msg->lchan->call.transaction_id;
173
174 /* GSM 04.07 Section 11.2.3.1.3 */
175 switch (msg->lchan->call.type) {
176 case GSM_CT_MO:
177 gh->proto_discr |= 0x80;
178 break;
179 case GSM_CT_MT:
180 break;
Holger Freytherca362a62009-01-04 21:05:01 +0000181 case GSM_CT_NONE:
182 break;
Harald Welte65e74cc2008-12-29 01:55:35 +0000183 }
184 }
185 }
186
Harald Welte4b634542008-12-27 01:55:51 +0000187 msg->l3h = msg->data;
188
Harald Welte8470bf22008-12-25 23:28:35 +0000189 return rsl_data_request(msg, 0);
Harald Welte52b1f982008-12-23 20:25:15 +0000190}
191
Harald Welte52b1f982008-12-23 20:25:15 +0000192
Holger Freyther429e7762008-12-30 13:28:30 +0000193/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Harald Welte8470bf22008-12-25 23:28:35 +0000194int gsm0408_loc_upd_rej(struct gsm_lchan *lchan, u_int8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000195{
Harald Welte8470bf22008-12-25 23:28:35 +0000196 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000197 struct gsm48_hdr *gh;
198
Harald Welte8470bf22008-12-25 23:28:35 +0000199 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000200
201 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
202 gh->proto_discr = GSM48_PDISC_MM;
Harald Welte10b487b2008-12-27 19:53:37 +0000203 gh->msg_type = GSM48_MT_MM_LOC_UPD_REJECT;
Harald Welte52b1f982008-12-23 20:25:15 +0000204 gh->data[0] = cause;
205
Harald Weltedb253af2008-12-30 17:56:55 +0000206 DEBUGP(DMM, "-> LOCATION UPDATING REJECT on channel: %d\n", lchan->nr);
207
Harald Welte65e74cc2008-12-29 01:55:35 +0000208 return gsm48_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000209}
210
211/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Harald Welte75a983f2008-12-27 21:34:06 +0000212int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000213{
Harald Welte8470bf22008-12-25 23:28:35 +0000214 struct gsm_bts *bts = lchan->ts->trx->bts;
215 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000216 struct gsm48_hdr *gh;
217 struct gsm48_loc_area_id *lai;
218 u_int8_t *mid;
Holger Freyther07cc8d82008-12-29 06:23:46 +0000219 int ret;
Harald Welte52b1f982008-12-23 20:25:15 +0000220
Harald Welte8470bf22008-12-25 23:28:35 +0000221 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000222
223 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
224 gh->proto_discr = GSM48_PDISC_MM;
225 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
226
227 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Holger Freyther17746612008-12-28 16:32:44 +0000228 gsm0408_generate_lai(lai, bts->network->country_code,
Harald Welte52b1f982008-12-23 20:25:15 +0000229 bts->network->network_code, bts->location_area_code);
230
231 mid = msgb_put(msg, MID_TMSI_LEN);
232 generate_mid_from_tmsi(mid, tmsi);
233
234 DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n");
235
Harald Weltedb253af2008-12-30 17:56:55 +0000236 ret = gsm48_sendmsg(msg);
237
Harald Welteba4cf162009-01-10 01:49:35 +0000238 ret = gsm48_cc_tx_setup(lchan);
Harald Weltedb253af2008-12-30 17:56:55 +0000239 ret = gsm48_tx_mm_info(lchan);
Harald Weltedb253af2008-12-30 17:56:55 +0000240
Holger Freyther07cc8d82008-12-29 06:23:46 +0000241 return ret;
Harald Welte52b1f982008-12-23 20:25:15 +0000242}
243
Harald Weltefc977a82008-12-27 10:19:37 +0000244static char bcd2char(u_int8_t bcd)
245{
246 if (bcd < 0xa)
247 return '0' + bcd;
248 else
249 return 'A' + (bcd - 0xa);
250}
251
Harald Weltebf5e8df2009-02-03 12:59:45 +0000252/* Convert Mobile Identity (10.5.1.4) to string */
Harald Weltefc977a82008-12-27 10:19:37 +0000253static int mi_to_string(char *string, int str_len, u_int8_t *mi, int mi_len)
254{
255 int i;
256 u_int8_t mi_type;
257 char *str_cur = string;
Harald Welte4ed0e922009-01-10 03:17:30 +0000258 u_int32_t tmsi;
Harald Weltefc977a82008-12-27 10:19:37 +0000259
260 mi_type = mi[0] & GSM_MI_TYPE_MASK;
261
262 switch (mi_type) {
263 case GSM_MI_TYPE_NONE:
264 break;
265 case GSM_MI_TYPE_TMSI:
Harald Welte4ed0e922009-01-10 03:17:30 +0000266 /* Table 10.5.4.3, reverse generate_mid_from_tmsi */
267 if (mi_len == TMSI_LEN && mi[0] == (0xf0 | GSM_MI_TYPE_TMSI)) {
268 memcpy(&tmsi, &mi[1], 4);
269 tmsi = ntohl(tmsi);
270 return snprintf(string, str_len, "%u", tmsi);
Harald Weltefc977a82008-12-27 10:19:37 +0000271 }
272 break;
273 case GSM_MI_TYPE_IMSI:
274 case GSM_MI_TYPE_IMEI:
275 case GSM_MI_TYPE_IMEISV:
Harald Weltedb253af2008-12-30 17:56:55 +0000276 *str_cur++ = bcd2char(mi[0] >> 4);
277
278 for (i = 1; i < mi_len; i++) {
Harald Weltefc977a82008-12-27 10:19:37 +0000279 if (str_cur + 2 >= string + str_len)
280 return str_cur - string;
281 *str_cur++ = bcd2char(mi[i] & 0xf);
Harald Weltedb253af2008-12-30 17:56:55 +0000282 /* skip last nibble in last input byte when GSM_EVEN */
283 if( (i != mi_len-1) || (mi[0] & GSM_MI_ODD))
284 *str_cur++ = bcd2char(mi[i] >> 4);
Harald Weltefc977a82008-12-27 10:19:37 +0000285 }
286 break;
287 default:
288 break;
289 }
Harald Weltefc977a82008-12-27 10:19:37 +0000290 *str_cur++ = '\0';
Harald Weltedb253af2008-12-30 17:56:55 +0000291
Harald Weltefc977a82008-12-27 10:19:37 +0000292 return str_cur - string;
293}
294
Harald Weltebf5e8df2009-02-03 12:59:45 +0000295/* Transmit Chapter 9.2.10 Identity Request */
Harald Welte231ad4f2008-12-27 11:15:38 +0000296static int mm_tx_identity_req(struct gsm_lchan *lchan, u_int8_t id_type)
297{
298 struct msgb *msg = gsm48_msgb_alloc();
299 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000300
Harald Welte231ad4f2008-12-27 11:15:38 +0000301 msg->lchan = lchan;
302
303 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
304 gh->proto_discr = GSM48_PDISC_MM;
305 gh->msg_type = GSM48_MT_MM_ID_REQ;
306 gh->data[0] = id_type;
307
Harald Welte65e74cc2008-12-29 01:55:35 +0000308 return gsm48_sendmsg(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000309}
310
311#define MI_SIZE 32
312
Harald Weltebf5e8df2009-02-03 12:59:45 +0000313/* Parse Chapter 9.2.11 Identity Response */
Harald Welte231ad4f2008-12-27 11:15:38 +0000314static int mm_rx_id_resp(struct msgb *msg)
315{
316 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte75a983f2008-12-27 21:34:06 +0000317 struct gsm_lchan *lchan = msg->lchan;
Harald Welte231ad4f2008-12-27 11:15:38 +0000318 u_int8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
319 char mi_string[MI_SIZE];
Harald Welte75a983f2008-12-27 21:34:06 +0000320 u_int32_t tmsi;
Harald Welte231ad4f2008-12-27 11:15:38 +0000321
322 mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte61253062008-12-27 11:25:50 +0000323 DEBUGP(DMM, "IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
Harald Welte231ad4f2008-12-27 11:15:38 +0000324 mi_type, mi_string);
325
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000326 /*
327 * Rogue messages could trick us but so is life
328 */
329 put_lchan(lchan);
330
Harald Welte75a983f2008-12-27 21:34:06 +0000331 switch (mi_type) {
332 case GSM_MI_TYPE_IMSI:
333 if (!lchan->subscr)
334 lchan->subscr = db_create_subscriber(mi_string);
Holger Freyther73487a22008-12-31 18:53:57 +0000335 if (lchan->loc_operation)
336 lchan->loc_operation->waiting_for_imsi = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000337 break;
338 case GSM_MI_TYPE_IMEI:
Harald Welte255539c2008-12-28 02:26:27 +0000339 case GSM_MI_TYPE_IMEISV:
Harald Welte75a983f2008-12-27 21:34:06 +0000340 /* update subscribe <-> IMEI mapping */
341 if (lchan->subscr)
342 db_subscriber_assoc_imei(lchan->subscr, mi_string);
Holger Freyther73487a22008-12-31 18:53:57 +0000343 if (lchan->loc_operation)
344 lchan->loc_operation->waiting_for_imei = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000345 break;
346 }
Holger Freyther73487a22008-12-31 18:53:57 +0000347
348 /* Check if we can let the mobile station enter */
349 if (authorize_subscriber(lchan->loc_operation, lchan->subscr)) {
350 db_subscriber_alloc_tmsi(lchan->subscr);
351 tmsi = strtoul(lchan->subscr->tmsi, NULL, 10);
352 release_loc_updating_req(lchan);
353 return gsm0408_loc_upd_acc(msg->lchan, tmsi);
354 }
355
Harald Welte75a983f2008-12-27 21:34:06 +0000356 return 0;
Harald Welte231ad4f2008-12-27 11:15:38 +0000357}
358
Harald Welte255539c2008-12-28 02:26:27 +0000359
360static void loc_upd_rej_cb(void *data)
361{
362 struct gsm_lchan *lchan = data;
363
Holger Freyther73487a22008-12-31 18:53:57 +0000364 release_loc_updating_req(lchan);
Holger Freythere97f7fb2008-12-31 18:52:11 +0000365 gsm0408_loc_upd_rej(lchan, reject_cause);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000366 lchan_auto_release(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000367}
368
Holger Freytherb7193e42008-12-29 17:44:08 +0000369static void schedule_reject(struct gsm_lchan *lchan)
370{
Holger Freyther73487a22008-12-31 18:53:57 +0000371 lchan->loc_operation->updating_timer.cb = loc_upd_rej_cb;
372 lchan->loc_operation->updating_timer.data = lchan;
373 schedule_timer(&lchan->loc_operation->updating_timer, 5, 0);
Holger Freytherb7193e42008-12-29 17:44:08 +0000374}
375
Harald Welte231ad4f2008-12-27 11:15:38 +0000376#define MI_SIZE 32
Harald Weltebf5e8df2009-02-03 12:59:45 +0000377/* Chapter 9.2.15: Receive Location Updating Request */
Harald Welte231ad4f2008-12-27 11:15:38 +0000378static int mm_rx_loc_upd_req(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000379{
Harald Welte8470bf22008-12-25 23:28:35 +0000380 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte702d8702008-12-26 20:25:35 +0000381 struct gsm_bts *bts = msg->trx->bts;
Harald Welte52b1f982008-12-23 20:25:15 +0000382 struct gsm48_loc_upd_req *lu;
383 struct gsm_subscriber *subscr;
Harald Welte255539c2008-12-28 02:26:27 +0000384 struct gsm_lchan *lchan = msg->lchan;
Harald Welte8470bf22008-12-25 23:28:35 +0000385 u_int8_t mi_type;
Harald Welte75a983f2008-12-27 21:34:06 +0000386 u_int32_t tmsi;
Harald Welte231ad4f2008-12-27 11:15:38 +0000387 char mi_string[MI_SIZE];
388 int rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000389
Harald Welte8470bf22008-12-25 23:28:35 +0000390 lu = (struct gsm48_loc_upd_req *) gh->data;
391
392 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +0000393
Harald Weltefc977a82008-12-27 10:19:37 +0000394 mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
395
Harald Welte231ad4f2008-12-27 11:15:38 +0000396 DEBUGP(DMM, "LUPDREQ: mi_type=0x%02x MI(%s)\n", mi_type, mi_string);
Holger Freyther73487a22008-12-31 18:53:57 +0000397
398 allocate_loc_updating_req(lchan);
399
Harald Welte52b1f982008-12-23 20:25:15 +0000400 switch (mi_type) {
401 case GSM_MI_TYPE_IMSI:
Harald Welte231ad4f2008-12-27 11:15:38 +0000402 /* we always want the IMEI, too */
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000403 use_lchan(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000404 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEISV);
Holger Freyther73487a22008-12-31 18:53:57 +0000405 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000406
Harald Welte52b1f982008-12-23 20:25:15 +0000407 /* look up subscriber based on IMSI */
Harald Welte75a983f2008-12-27 21:34:06 +0000408 subscr = db_create_subscriber(mi_string);
Harald Welte4b634542008-12-27 01:55:51 +0000409 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000410 case GSM_MI_TYPE_TMSI:
Harald Welte231ad4f2008-12-27 11:15:38 +0000411 /* we always want the IMEI, too */
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000412 use_lchan(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000413 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEISV);
Holger Freyther73487a22008-12-31 18:53:57 +0000414 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000415
Harald Welte52b1f982008-12-23 20:25:15 +0000416 /* look up the subscriber based on TMSI, request IMSI if it fails */
Harald Welteba4cf162009-01-10 01:49:35 +0000417 subscr = subscr_get_by_tmsi(mi_string);
Harald Welte52b1f982008-12-23 20:25:15 +0000418 if (!subscr) {
Harald Welte231ad4f2008-12-27 11:15:38 +0000419 /* send IDENTITY REQUEST message to get IMSI */
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000420 use_lchan(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000421 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMSI);
Holger Freyther73487a22008-12-31 18:53:57 +0000422 lchan->loc_operation->waiting_for_imsi = 1;
Harald Welte52b1f982008-12-23 20:25:15 +0000423 }
424 break;
425 case GSM_MI_TYPE_IMEI:
426 case GSM_MI_TYPE_IMEISV:
427 /* no sim card... FIXME: what to do ? */
428 fprintf(stderr, "Unimplemented mobile identity type\n");
429 break;
430 default:
431 fprintf(stderr, "Unknown mobile identity type\n");
432 break;
433 }
434
Harald Welte255539c2008-12-28 02:26:27 +0000435 lchan->subscr = subscr;
436
Holger Freyther73487a22008-12-31 18:53:57 +0000437 /*
438 * Schedule the reject timer and check if we can let the
439 * subscriber into our network immediately or if we need to wait
440 * for identity responses.
441 */
442 schedule_reject(lchan);
443 if (!authorize_subscriber(lchan->loc_operation, subscr))
Harald Weltee872cb12009-01-01 00:33:37 +0000444 return 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000445
Harald Welte75a983f2008-12-27 21:34:06 +0000446 db_subscriber_alloc_tmsi(subscr);
Harald Welte52b1f982008-12-23 20:25:15 +0000447 subscr_update(subscr, bts);
Harald Welte8470bf22008-12-25 23:28:35 +0000448
Harald Welte255539c2008-12-28 02:26:27 +0000449 tmsi = strtoul(subscr->tmsi, NULL, 10);
450
Holger Freyther73487a22008-12-31 18:53:57 +0000451 release_loc_updating_req(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000452 return gsm0408_loc_upd_acc(lchan, tmsi);
Harald Welte52b1f982008-12-23 20:25:15 +0000453}
454
Harald Weltedb253af2008-12-30 17:56:55 +0000455/* Section 9.2.15a */
456int gsm48_tx_mm_info(struct gsm_lchan *lchan)
457{
458 struct msgb *msg = gsm48_msgb_alloc();
459 struct gsm48_hdr *gh;
460 struct gsm_network *net = lchan->ts->trx->bts->network;
Harald Weltedb253af2008-12-30 17:56:55 +0000461 u_int8_t *ptr8;
462 u_int16_t *ptr16;
463 int name_len;
Harald Weltedb253af2008-12-30 17:56:55 +0000464 int i;
465
466 msg->lchan = lchan;
467
468 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
469 gh->proto_discr = GSM48_PDISC_MM;
470 gh->msg_type = GSM48_MT_MM_INFO;
471
472 if (net->name_long) {
473 name_len = strlen(net->name_long);
474 /* 10.5.3.5a */
475 ptr8 = msgb_put(msg, 3);
476 ptr8[0] = GSM48_IE_NAME_LONG;
477 ptr8[1] = name_len*2 +1;
478 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
479
480 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
481 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000482 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +0000483
484 /* FIXME: Use Cell Broadcast, not UCS-2, since
485 * UCS-2 is only supported by later revisions of the spec */
486 }
487
488 if (net->name_short) {
489 name_len = strlen(net->name_short);
490 /* 10.5.3.5a */
491 ptr8 = (u_int8_t *) msgb_put(msg, 3);
492 ptr8[0] = GSM48_IE_NAME_LONG;
493 ptr8[1] = name_len*2 + 1;
494 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
495
Harald Weltee872cb12009-01-01 00:33:37 +0000496 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000497 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000498 ptr16[i] = htons(net->name_short[i]);
Harald Weltedb253af2008-12-30 17:56:55 +0000499 }
500
501#if 0
Holger Freytherca362a62009-01-04 21:05:01 +0000502 /* move back to the top */
503 time_t cur_t;
504 struct tm* cur_time;
505 int tz15min;
Harald Weltedb253af2008-12-30 17:56:55 +0000506 /* Section 10.5.3.9 */
507 cur_t = time(NULL);
508 cur_time = gmtime(cur_t);
509 ptr8 = msgb_put(msg, 8);
510 ptr8[0] = GSM48_IE_NET_TIME_TZ;
511 ptr8[1] = to_bcd8(cur_time->tm_year % 100);
512 ptr8[2] = to_bcd8(cur_time->tm_mon);
513 ptr8[3] = to_bcd8(cur_time->tm_mday);
514 ptr8[4] = to_bcd8(cur_time->tm_hour);
515 ptr8[5] = to_bcd8(cur_time->tm_min);
516 ptr8[6] = to_bcd8(cur_time->tm_sec);
517 /* 02.42: coded as BCD encoded signed value in units of 15 minutes */
518 tz15min = (cur_time->tm_gmtoff)/(60*15);
519 ptr8[6] = to_bcd8(tz15min);
520 if (tz15min < 0)
521 ptr8[6] |= 0x80;
522#endif
523
524 return gsm48_sendmsg(msg);
525}
526
Harald Welte4b634542008-12-27 01:55:51 +0000527static int gsm48_tx_mm_serv_ack(struct gsm_lchan *lchan)
528{
Harald Welte4b634542008-12-27 01:55:51 +0000529 DEBUGP(DMM, "-> CM SERVICE ACK\n");
Harald Welte65e74cc2008-12-29 01:55:35 +0000530 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_ACC);
Harald Welte4b634542008-12-27 01:55:51 +0000531}
Harald Welteba4cf162009-01-10 01:49:35 +0000532
533/* 9.2.6 CM service reject */
534static int gsm48_tx_mm_serv_rej(struct gsm_lchan *lchan,
535 enum gsm48_reject_value value)
536{
537 struct msgb *msg = gsm48_msgb_alloc();
538 struct gsm48_hdr *gh;
539
540 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
541
542 msg->lchan = lchan;
543 use_lchan(lchan);
544
545 gh->proto_discr = GSM48_PDISC_MM;
546 gh->msg_type = GSM48_MT_MM_CM_SERV_REJ;
547 gh->data[0] = value;
548 DEBUGP(DMM, "-> CM SERVICE Reject cause: %d\n", value);
549
550 return gsm48_sendmsg(msg);
551}
552
Harald Welte4ed0e922009-01-10 03:17:30 +0000553
554/*
555 * Handle CM Service Requests
556 * a) Verify that the packet is long enough to contain the information
557 * we require otherwsie reject with INCORRECT_MESSAGE
558 * b) Try to parse the TMSI. If we do not have one reject
559 * c) Check that we know the subscriber with the TMSI otherwise reject
560 * with a HLR cause
561 * d) Set the subscriber on the gsm_lchan and accept
562 */
Harald Welte4b634542008-12-27 01:55:51 +0000563static int gsm48_rx_mm_serv_req(struct msgb *msg)
564{
Harald Welteba4cf162009-01-10 01:49:35 +0000565 u_int8_t mi_type;
Harald Welte4ed0e922009-01-10 03:17:30 +0000566 char mi_string[MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +0000567
Harald Welteba4cf162009-01-10 01:49:35 +0000568 struct gsm_subscriber *subscr;
569 struct gsm48_hdr *gh = msgb_l3(msg);
570 struct gsm48_service_request *req =
571 (struct gsm48_service_request *)gh->data;
572
573 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
574 DEBUGP(DMM, "<- CM SERVICE REQUEST wrong sized message\n");
575 return gsm48_tx_mm_serv_rej(msg->lchan,
576 GSM48_REJECT_INCORRECT_MESSAGE);
577 }
578
579 if (msg->data_len < req->mi_len + 6) {
580 DEBUGP(DMM, "<- CM SERVICE REQUEST MI does not fit in package\n");
581 return gsm48_tx_mm_serv_rej(msg->lchan,
582 GSM48_REJECT_INCORRECT_MESSAGE);
583 }
584
585 mi_type = req->mi[0] & GSM_MI_TYPE_MASK;
586 if (mi_type != GSM_MI_TYPE_TMSI) {
587 DEBUGP(DMM, "<- CM SERVICE REQUEST mi type is not TMSI: %d\n", mi_type);
588 return gsm48_tx_mm_serv_rej(msg->lchan,
589 GSM48_REJECT_INCORRECT_MESSAGE);
590 }
591
Harald Welte4ed0e922009-01-10 03:17:30 +0000592 mi_to_string(mi_string, sizeof(mi_string), req->mi, req->mi_len);
593 subscr = subscr_get_by_tmsi(mi_string);
594 DEBUGP(DMM, "<- CM SERVICE REQUEST serv_type=0x%02x mi_type=0x%02x M(%s)\n",
595 req->cm_service_type, mi_type, mi_string);
Harald Weltebcae43f2008-12-27 21:45:37 +0000596
Harald Welte4ed0e922009-01-10 03:17:30 +0000597 if (!subscr)
598 return gsm48_tx_mm_serv_rej(msg->lchan,
599 GSM48_REJECT_IMSI_UNKNOWN_IN_HLR);
600
601 if (!msg->lchan->subscr)
602 msg->lchan->subscr = subscr;
Harald Welte9bb7c702009-01-10 03:21:41 +0000603 else if (msg->lchan->subscr != subscr) {
604 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
605 subscr_put(subscr);
606 }
607
Harald Welte4b634542008-12-27 01:55:51 +0000608 return gsm48_tx_mm_serv_ack(msg->lchan);
609}
610
Harald Weltebf5e8df2009-02-03 12:59:45 +0000611/* Receive a GSM 04.08 Mobility Management (MM) message */
Harald Welte52b1f982008-12-23 20:25:15 +0000612static int gsm0408_rcv_mm(struct msgb *msg)
613{
614 struct gsm48_hdr *gh = msgb_l3(msg);
615 int rc;
616
617 switch (gh->msg_type & 0xbf) {
618 case GSM48_MT_MM_LOC_UPD_REQUEST:
Holger Freyther429e7762008-12-30 13:28:30 +0000619 DEBUGP(DMM, "LOCATION UPDATING REQUEST\n");
Harald Welte231ad4f2008-12-27 11:15:38 +0000620 rc = mm_rx_loc_upd_req(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000621 break;
622 case GSM48_MT_MM_ID_RESP:
Harald Welte231ad4f2008-12-27 11:15:38 +0000623 rc = mm_rx_id_resp(msg);
624 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000625 case GSM48_MT_MM_CM_SERV_REQ:
Harald Welte4b634542008-12-27 01:55:51 +0000626 rc = gsm48_rx_mm_serv_req(msg);
627 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000628 case GSM48_MT_MM_STATUS:
629 DEBUGP(DMM, "MM STATUS: FIXME parse error cond.\n");
630 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000631 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte69b2af22009-01-06 19:47:00 +0000632 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
633 msg->lchan->subscr ?
634 msg->lchan->subscr->imsi :
635 "unknown subscriber");
636 break;
637 case GSM48_MT_MM_CM_REEST_REQ:
Harald Welte231ad4f2008-12-27 11:15:38 +0000638 case GSM48_MT_MM_AUTH_RESP:
639 case GSM48_MT_MM_IMSI_DETACH_IND:
Harald Welte52b1f982008-12-23 20:25:15 +0000640 fprintf(stderr, "Unimplemented GSM 04.08 MM msg type 0x%02x\n",
641 gh->msg_type);
642 break;
643 default:
644 fprintf(stderr, "Unknown GSM 04.08 MM msg type 0x%02x\n",
645 gh->msg_type);
646 break;
647 }
648
649 return rc;
650}
Harald Weltebf5e8df2009-02-03 12:59:45 +0000651
Harald Welte2d35ae62009-02-06 12:02:13 +0000652/* Receive a PAGING RESPONSE message from the MS */
653static int gsm48_rr_rx_pag_resp(struct msgb *msg)
654{
655 struct gsm48_hdr *gh = msgb_l3(msg);
656 struct gsm48_paging_response *pr =
657 (struct gsm48_paging_response *) gh->data;
658 u_int8_t mi_type = pr->mi[0] & GSM_MI_TYPE_MASK;
659 char mi_string[MI_SIZE];
660 struct gsm_subscriber *subscr;
661 int rc = 0;
662
663 mi_to_string(mi_string, sizeof(mi_string), &pr->mi[0], pr->mi_len);
664 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
665 mi_type, mi_string);
666 subscr = subscr_get_by_tmsi(mi_string);
667
668 if (!subscr) {
669 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
670 /* FIXME: close channel? */
671 return -EINVAL;
672 }
673 DEBUGP(DRR, "<- Channel was requested by %s\n",
674 subscr->name ? subscr->name : subscr->imsi);
Harald Welte47150fb2009-02-06 12:52:47 +0000675 page_request_stop(msg->trx->bts, subscr);
Harald Welte2d35ae62009-02-06 12:02:13 +0000676
677 if (!msg->lchan->subscr)
678 msg->lchan->subscr = subscr;
679 else if (msg->lchan->subscr != subscr) {
680 DEBUGP(DRR, "<- Channel already owned by someone else?\n");
681 subscr_put(subscr);
682 }
683
684 return rc;
685}
686
Harald Weltebf5e8df2009-02-03 12:59:45 +0000687/* Receive a GSM 04.08 Radio Resource (RR) message */
Harald Welte52b1f982008-12-23 20:25:15 +0000688static int gsm0408_rcv_rr(struct msgb *msg)
689{
690 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +0000691 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000692
693 switch (gh->msg_type) {
694 case GSM48_MT_RR_CLSM_CHG:
695 DEBUGP(DRR, "CLASSMARK CHANGE\n");
696 /* FIXME: what to do ?!? */
697 break;
Harald Weltefc977a82008-12-27 10:19:37 +0000698 case GSM48_MT_RR_GPRS_SUSP_REQ:
699 DEBUGP(DRR, "GRPS SUSPEND REQUEST\n");
700 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000701 case GSM48_MT_RR_PAG_RESP:
Harald Welte2d35ae62009-02-06 12:02:13 +0000702 rc = gsm48_rr_rx_pag_resp(msg);
703 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000704 default:
Harald Welte2d35ae62009-02-06 12:02:13 +0000705 fprintf(stderr, "Unimplemented GSM 04.08 RR msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +0000706 gh->msg_type);
707 break;
708 }
709
Harald Welte2d35ae62009-02-06 12:02:13 +0000710 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000711}
712
Harald Welte4bc90a12008-12-27 16:32:52 +0000713/* Call Control */
714
Harald Welte4bc90a12008-12-27 16:32:52 +0000715static int gsm48_cc_tx_status(struct gsm_lchan *lchan)
716{
717 struct msgb *msg = gsm48_msgb_alloc();
718 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
719 u_int8_t *cause, *call_state;
720
Harald Welte65e74cc2008-12-29 01:55:35 +0000721 gh->proto_discr = GSM48_PDISC_CC;
722
Harald Welte4bc90a12008-12-27 16:32:52 +0000723 msg->lchan = lchan;
724
Harald Welte4bc90a12008-12-27 16:32:52 +0000725 gh->msg_type = GSM48_MT_CC_STATUS;
726
727 cause = msgb_put(msg, 3);
728 cause[0] = 2;
729 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
730 cause[2] = 0x80 | 30; /* response to status inquiry */
731
732 call_state = msgb_put(msg, 1);
733 call_state[0] = 0xc0 | 0x00;
734
Harald Welte65e74cc2008-12-29 01:55:35 +0000735 return gsm48_sendmsg(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +0000736}
737
Harald Welte6f4b7532008-12-29 00:39:37 +0000738static int gsm48_tx_simple(struct gsm_lchan *lchan,
739 u_int8_t pdisc, u_int8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +0000740{
741 struct msgb *msg = gsm48_msgb_alloc();
742 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
743
744 msg->lchan = lchan;
745
Harald Welte6f4b7532008-12-29 00:39:37 +0000746 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +0000747 gh->msg_type = msg_type;
748
Harald Welte65e74cc2008-12-29 01:55:35 +0000749 return gsm48_sendmsg(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +0000750}
751
752static int gsm48_cc_rx_status_enq(struct msgb *msg)
753{
754 return gsm48_cc_tx_status(msg->lchan);
755}
756
Holger Freytherca362a62009-01-04 21:05:01 +0000757#if 0
Harald Welte4bc90a12008-12-27 16:32:52 +0000758static int gsm48_cc_rx_setup(struct msgb *msg)
759{
Harald Welte6f4b7532008-12-29 00:39:37 +0000760 return gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
761 GSM48_MT_CC_CALL_CONF);
Harald Welte4bc90a12008-12-27 16:32:52 +0000762}
Holger Freytherca362a62009-01-04 21:05:01 +0000763#endif
Harald Welte4bc90a12008-12-27 16:32:52 +0000764
Harald Welte65e74cc2008-12-29 01:55:35 +0000765int gsm48_cc_tx_setup(struct gsm_lchan *lchan)
766{
767 struct msgb *msg = gsm48_msgb_alloc();
768 struct gsm48_hdr *gh;
769 struct gsm_call *call = &lchan->call;
770
771 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 8);
772
773 call->type = GSM_CT_MT;
774 msg->lchan = lchan;
Harald Welte498b0bb2009-01-09 21:27:43 +0000775 use_lchan(lchan);
Harald Welte65e74cc2008-12-29 01:55:35 +0000776
777 gh->proto_discr = GSM48_PDISC_CC;
778 gh->msg_type = GSM48_MT_CC_SETUP;
779 gh->data[0] = 0x34;
780 gh->data[1] = 0x00;
781 gh->data[2] = 0x5c;
782 gh->data[3] = 0x04;
783 gh->data[4] = 0xb9;
784 gh->data[5] = 0x83;
785 gh->data[6] = 0x32;
786 gh->data[7] = 0x24;
787
788 DEBUGP(DCC, "Sending SETUP\n");
789
790 return gsm48_sendmsg(msg);
791}
792
Harald Welte4bc90a12008-12-27 16:32:52 +0000793static int gsm0408_rcv_cc(struct msgb *msg)
794{
795 struct gsm48_hdr *gh = msgb_l3(msg);
796 u_int8_t msg_type = gh->msg_type & 0xbf;
797 struct gsm_call *call = &msg->lchan->call;
798 int rc = 0;
799
800 switch (msg_type) {
801 case GSM48_MT_CC_CALL_CONF:
802 /* Response to SETUP */
803 DEBUGP(DCC, "CALL CONFIRM\n");
804 break;
805 case GSM48_MT_CC_RELEASE_COMPL:
806 /* Answer from MS to RELEASE */
807 DEBUGP(DCC, "RELEASE COMPLETE (state->NULL)\n");
808 call->state = GSM_CSTATE_NULL;
809 break;
810 case GSM48_MT_CC_ALERTING:
811 DEBUGP(DCC, "ALERTING\n");
812 break;
813 case GSM48_MT_CC_CONNECT:
814 DEBUGP(DCC, "CONNECT\n");
815 /* MT: need to respond with CONNECT_ACK */
Harald Welte6f4b7532008-12-29 00:39:37 +0000816 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
817 GSM48_MT_CC_CONNECT_ACK);
Harald Welte4bc90a12008-12-27 16:32:52 +0000818 break;
819 case GSM48_MT_CC_CONNECT_ACK:
820 /* MO: Answer to CONNECT */
821 call->state = GSM_CSTATE_ACTIVE;
822 DEBUGP(DCC, "CONNECT_ACK (state->ACTIVE)\n");
823 break;
824 case GSM48_MT_CC_RELEASE:
825 DEBUGP(DCC, "RELEASE\n");
826 /* need to respond with RELEASE_COMPLETE */
827 break;
828 case GSM48_MT_CC_STATUS_ENQ:
829 rc = gsm48_cc_rx_status_enq(msg);
830 break;
831 case GSM48_MT_CC_DISCONNECT:
832 /* Section 5.4.3.2 */
833 DEBUGP(DCC, "DISCONNECT (state->RELEASE_REQ)\n");
834 call->state = GSM_CSTATE_RELEASE_REQ;
Harald Welte498b0bb2009-01-09 21:27:43 +0000835 if (call->state != GSM_CSTATE_NULL)
836 put_lchan(msg->lchan);
Harald Welte4bc90a12008-12-27 16:32:52 +0000837 /* FIXME: clear the network connection */
Harald Welte6f4b7532008-12-29 00:39:37 +0000838 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
839 GSM48_MT_CC_RELEASE);
Harald Welte4bc90a12008-12-27 16:32:52 +0000840 break;
841 case GSM48_MT_CC_SETUP:
Harald Welte498b0bb2009-01-09 21:27:43 +0000842 if (call->state == GSM_CSTATE_NULL || call->state == GSM_CSTATE_RELEASE_REQ)
843 use_lchan(msg->lchan);
Harald Welte4bc90a12008-12-27 16:32:52 +0000844 call->type = GSM_CT_MO;
845 call->state = GSM_CSTATE_INITIATED;
846 call->transaction_id = gh->proto_discr & 0xf0;
847 DEBUGP(DCC, "SETUP(tid=0x%02x)\n", call->transaction_id);
Harald Welte6f4b7532008-12-29 00:39:37 +0000848 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
849 GSM48_MT_CC_CONNECT);
Harald Welte4bc90a12008-12-27 16:32:52 +0000850 /* FIXME: continue with CALL_PROCEEDING, ALERTING, CONNECT, RELEASE_COMPLETE */
851 break;
852 case GSM48_MT_CC_EMERG_SETUP:
853 DEBUGP(DCC, "EMERGENCY SETUP\n");
854 /* FIXME: continue with CALL_PROCEEDING, ALERTING, CONNECT, RELEASE_COMPLETE */
855 break;
856 default:
Harald Welte2d35ae62009-02-06 12:02:13 +0000857 fprintf(stderr, "Unimplemented GSM 04.08 CC msg type 0x%02x\n",
Harald Welte4bc90a12008-12-27 16:32:52 +0000858 msg_type);
859 break;
860 }
861
862 return rc;
863}
864
Harald Welte52b1f982008-12-23 20:25:15 +0000865/* here we pass in a msgb from the RSL->RLL. We expect the l3 pointer to be set */
866int gsm0408_rcvmsg(struct msgb *msg)
867{
868 struct gsm48_hdr *gh = msgb_l3(msg);
869 u_int8_t pdisc = gh->proto_discr & 0x0f;
Harald Welte8470bf22008-12-25 23:28:35 +0000870 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000871
872 switch (pdisc) {
873 case GSM48_PDISC_CC:
874 rc = gsm0408_rcv_cc(msg);
875 break;
876 case GSM48_PDISC_MM:
877 rc = gsm0408_rcv_mm(msg);
878 break;
879 case GSM48_PDISC_RR:
880 rc = gsm0408_rcv_rr(msg);
881 break;
Harald Weltebcae43f2008-12-27 21:45:37 +0000882 case GSM48_PDISC_SMS:
Daniel Willmann8b3390e2008-12-28 00:31:09 +0000883 rc = gsm0411_rcv_sms(msg);
Harald Weltebcae43f2008-12-27 21:45:37 +0000884 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000885 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +0000886 case GSM48_PDISC_SM_GPRS:
Harald Welte52b1f982008-12-23 20:25:15 +0000887 fprintf(stderr, "Unimplemented GSM 04.08 discriminator 0x%02d\n",
888 pdisc);
889 break;
890 default:
891 fprintf(stderr, "Unknown GSM 04.08 discriminator 0x%02d\n",
892 pdisc);
893 break;
894 }
895
896 return rc;
897}
Harald Welte8470bf22008-12-25 23:28:35 +0000898
899enum chreq_type {
900 CHREQ_T_EMERG_CALL,
901 CHREQ_T_CALL_REEST_TCH_F,
902 CHREQ_T_CALL_REEST_TCH_H,
903 CHREQ_T_CALL_REEST_TCH_H_DBL,
904 CHREQ_T_SDCCH,
905 CHREQ_T_TCH_F,
906 CHREQ_T_VOICE_CALL_TCH_H,
907 CHREQ_T_DATA_CALL_TCH_H,
908 CHREQ_T_LOCATION_UPD,
909 CHREQ_T_PAG_R_ANY,
910 CHREQ_T_PAG_R_TCH_F,
911 CHREQ_T_PAG_R_TCH_FH,
912};
913
914/* Section 9.1.8 / Table 9.9 */
915struct chreq {
916 u_int8_t val;
917 u_int8_t mask;
918 enum chreq_type type;
919};
920
921/* If SYSTEM INFORMATION TYPE 4 NECI bit == 1 */
922static const struct chreq chreq_type_neci1[] = {
923 { 0xa0, 0xe0, CHREQ_T_EMERG_CALL },
924 { 0xc0, 0xe0, CHREQ_T_CALL_REEST_TCH_F },
925 { 0x68, 0xfc, CHREQ_T_CALL_REEST_TCH_H },
926 { 0x6c, 0xfc, CHREQ_T_CALL_REEST_TCH_H_DBL },
927 { 0xe0, 0xe0, CHREQ_T_SDCCH },
928 { 0x40, 0xf0, CHREQ_T_VOICE_CALL_TCH_H },
929 { 0x50, 0xf0, CHREQ_T_DATA_CALL_TCH_H },
930 { 0x00, 0xf0, CHREQ_T_LOCATION_UPD },
931 { 0x10, 0xf0, CHREQ_T_SDCCH },
932 { 0x80, 0xe0, CHREQ_T_PAG_R_ANY },
933 { 0x20, 0xf0, CHREQ_T_PAG_R_TCH_F },
934 { 0x30, 0xf0, CHREQ_T_PAG_R_TCH_FH },
935};
936
937/* If SYSTEM INFORMATION TYPE 4 NECI bit == 0 */
938static const struct chreq chreq_type_neci0[] = {
939 { 0xa0, 0xe0, CHREQ_T_EMERG_CALL },
940 { 0xc0, 0xe0, CHREQ_T_CALL_REEST_TCH_H },
941 { 0xe0, 0xe0, CHREQ_T_TCH_F },
942 { 0x50, 0xf0, CHREQ_T_DATA_CALL_TCH_H },
943 { 0x00, 0xe0, CHREQ_T_LOCATION_UPD },
944 { 0x80, 0xe0, CHREQ_T_PAG_R_ANY },
945 { 0x20, 0xf0, CHREQ_T_PAG_R_TCH_F },
946 { 0x30, 0xf0, CHREQ_T_PAG_R_TCH_FH },
947};
948
949static const enum gsm_chan_t ctype_by_chreq[] = {
950 [CHREQ_T_EMERG_CALL] = GSM_LCHAN_TCH_F,
951 [CHREQ_T_CALL_REEST_TCH_F] = GSM_LCHAN_TCH_F,
952 [CHREQ_T_CALL_REEST_TCH_H] = GSM_LCHAN_TCH_H,
953 [CHREQ_T_CALL_REEST_TCH_H_DBL] = GSM_LCHAN_TCH_H,
954 [CHREQ_T_SDCCH] = GSM_LCHAN_SDCCH,
955 [CHREQ_T_TCH_F] = GSM_LCHAN_TCH_F,
956 [CHREQ_T_VOICE_CALL_TCH_H] = GSM_LCHAN_TCH_H,
957 [CHREQ_T_DATA_CALL_TCH_H] = GSM_LCHAN_TCH_H,
958 [CHREQ_T_LOCATION_UPD] = GSM_LCHAN_SDCCH,
959 [CHREQ_T_PAG_R_ANY] = GSM_LCHAN_SDCCH,
960 [CHREQ_T_PAG_R_TCH_F] = GSM_LCHAN_TCH_F,
961 [CHREQ_T_PAG_R_TCH_FH] = GSM_LCHAN_TCH_F,
962};
963
Harald Weltee14a57c2008-12-29 04:08:28 +0000964static const enum gsm_chreq_reason_t reason_by_chreq[] = {
965 [CHREQ_T_EMERG_CALL] = GSM_CHREQ_REASON_EMERG,
966 [CHREQ_T_CALL_REEST_TCH_F] = GSM_CHREQ_REASON_CALL,
967 [CHREQ_T_CALL_REEST_TCH_H] = GSM_CHREQ_REASON_CALL,
968 [CHREQ_T_CALL_REEST_TCH_H_DBL] = GSM_CHREQ_REASON_CALL,
969 [CHREQ_T_SDCCH] = GSM_CHREQ_REASON_OTHER,
970 [CHREQ_T_TCH_F] = GSM_CHREQ_REASON_OTHER,
971 [CHREQ_T_VOICE_CALL_TCH_H] = GSM_CHREQ_REASON_OTHER,
972 [CHREQ_T_DATA_CALL_TCH_H] = GSM_CHREQ_REASON_OTHER,
973 [CHREQ_T_LOCATION_UPD] = GSM_CHREQ_REASON_LOCATION_UPD,
974 [CHREQ_T_PAG_R_ANY] = GSM_CHREQ_REASON_PAG,
975 [CHREQ_T_PAG_R_TCH_F] = GSM_CHREQ_REASON_PAG,
976 [CHREQ_T_PAG_R_TCH_FH] = GSM_CHREQ_REASON_PAG,
977};
978
Harald Welte8470bf22008-12-25 23:28:35 +0000979enum gsm_chan_t get_ctype_by_chreq(struct gsm_bts *bts, u_int8_t ra)
980{
981 int i;
982 /* FIXME: determine if we set NECI = 0 in the BTS SI4 */
983
984 for (i = 0; i < ARRAY_SIZE(chreq_type_neci0); i++) {
985 const struct chreq *chr = &chreq_type_neci0[i];
986 if ((ra & chr->mask) == chr->val)
987 return ctype_by_chreq[chr->type];
988 }
989 fprintf(stderr, "Unknown CHANNEL REQUEST RQD 0x%02x\n", ra);
990 return GSM_LCHAN_SDCCH;
991}
Harald Weltee14a57c2008-12-29 04:08:28 +0000992
993enum gsm_chreq_reason_t get_reason_by_chreq(struct gsm_bts *bts, u_int8_t ra)
994{
995 int i;
996 /* FIXME: determine if we set NECI = 0 in the BTS SI4 */
997
998 for (i = 0; i < ARRAY_SIZE(chreq_type_neci0); i++) {
999 const struct chreq *chr = &chreq_type_neci0[i];
1000 if ((ra & chr->mask) == chr->val)
1001 return reason_by_chreq[chr->type];
1002 }
1003 fprintf(stderr, "Unknown CHANNEL REQUEST REASON 0x%02x\n", ra);
1004 return GSM_CHREQ_REASON_OTHER;
1005}