blob: fd4be2fb83d62a20e86d09c1a0b5cc9b4eac9d3f [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* 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
4/* (C) 2008-2009 by Harald Welte <laforge@gnumonks.org>
5 * (C) 2008, 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
6 *
7 * 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>
30#include <time.h>
31#include <netinet/in.h>
32
33#include <openbsc/db.h>
34#include <openbsc/msgb.h>
35#include <openbsc/tlv.h>
36#include <openbsc/debug.h>
37#include <openbsc/gsm_data.h>
38#include <openbsc/gsm_subscriber.h>
39#include <openbsc/gsm_04_11.h>
40#include <openbsc/gsm_04_08.h>
41#include <openbsc/abis_rsl.h>
42#include <openbsc/chan_alloc.h>
43#include <openbsc/paging.h>
44#include <openbsc/signal.h>
45#include <openbsc/trau_frame.h>
46#include <openbsc/trau_mux.h>
47
48#define GSM48_ALLOC_SIZE 1024
49#define GSM48_ALLOC_HEADROOM 128
50
51static const struct tlv_definition rsl_att_tlvdef = {
52 .def = {
53 [GSM48_IE_MOBILE_ID] = { TLV_TYPE_TLV },
54 [GSM48_IE_NAME_LONG] = { TLV_TYPE_TLV },
55 [GSM48_IE_NAME_SHORT] = { TLV_TYPE_TLV },
56 [GSM48_IE_UTC] = { TLV_TYPE_TV },
57 [GSM48_IE_NET_TIME_TZ] = { TLV_TYPE_FIXED, 7 },
58 [GSM48_IE_LSA_IDENT] = { TLV_TYPE_TLV },
59
60 [GSM48_IE_BEARER_CAP] = { TLV_TYPE_TLV },
61 [GSM48_IE_CAUSE] = { TLV_TYPE_TLV },
62 [GSM48_IE_CC_CAP] = { TLV_TYPE_TLV },
63 [GSM48_IE_ALERT] = { TLV_TYPE_TLV },
64 [GSM48_IE_FACILITY] = { TLV_TYPE_TLV },
65 [GSM48_IE_PROGR_IND] = { TLV_TYPE_TLV },
66 [GSM48_IE_AUX_STATUS] = { TLV_TYPE_TLV },
67 [GSM48_IE_KPD_FACILITY] = { TLV_TYPE_TV },
68 [GSM48_IE_SIGNAL] = { TLV_TYPE_TV },
69 [GSM48_IE_CONN_NUM] = { TLV_TYPE_TLV },
70 [GSM48_IE_CONN_SUBADDR] = { TLV_TYPE_TLV },
71 [GSM48_IE_CALLING_BCD] = { TLV_TYPE_TLV },
72 [GSM48_IE_CALLING_SUB] = { TLV_TYPE_TLV },
73 [GSM48_IE_CALLED_BCD] = { TLV_TYPE_TLV },
74 [GSM48_IE_CALLED_SUB] = { TLV_TYPE_TLV },
75 [GSM48_IE_REDIR_BCD] = { TLV_TYPE_TLV },
76 [GSM48_IE_REDIR_SUB] = { TLV_TYPE_TLV },
77 [GSM48_IE_LOWL_COMPAT] = { TLV_TYPE_TLV },
78 [GSM48_IE_HIGHL_COMPAT] = { TLV_TYPE_TLV },
79 [GSM48_IE_USER_USER] = { TLV_TYPE_TLV },
80 [GSM48_IE_SS_VERS] = { TLV_TYPE_TLV },
81 [GSM48_IE_MORE_DATA] = { TLV_TYPE_T },
82 [GSM48_IE_CLIR_SUPP] = { TLV_TYPE_T },
83 [GSM48_IE_CLIR_INVOC] = { TLV_TYPE_T },
84 [GSM48_IE_REV_C_SETUP] = { TLV_TYPE_T },
85 /* FIXME: more elements */
86 },
87};
88
89static const char *rr_cause_names[] = {
90 [GSM48_RR_CAUSE_NORMAL] = "Normal event",
91 [GSM48_RR_CAUSE_ABNORMAL_UNSPEC] = "Abnormal release, unspecified",
92 [GSM48_RR_CAUSE_ABNORMAL_UNACCT] = "Abnormal release, channel unacceptable",
93 [GSM48_RR_CAUSE_ABNORMAL_TIMER] = "Abnormal release, timer expired",
94 [GSM48_RR_CAUSE_ABNORMAL_NOACT] = "Abnormal release, no activity on radio path",
95 [GSM48_RR_CAUSE_PREMPTIVE_REL] = "Preemptive release",
96 [GSM48_RR_CAUSE_HNDOVER_IMP] = "Handover impossible, timing advance out of range",
97 [GSM48_RR_CAUSE_CHAN_MODE_UNACCT] = "Channel mode unacceptable",
98 [GSM48_RR_CAUSE_FREQ_NOT_IMPL] = "Frequency not implemented",
99 [GSM48_RR_CAUSE_CALL_CLEARED] = "Call already cleared",
100 [GSM48_RR_CAUSE_SEMANT_INCORR] = "Semantically incorrect message",
101 [GSM48_RR_CAUSE_INVALID_MAND_INF] = "Invalid mandatory information",
102 [GSM48_RR_CAUSE_MSG_TYPE_N] = "Message type non-existant or not implemented",
103 [GSM48_RR_CAUSE_MSG_TYPE_N_COMPAT] = "Message type not compatible with protocol state",
104 [GSM48_RR_CAUSE_COND_IE_ERROR] = "Conditional IE error",
105 [GSM48_RR_CAUSE_NO_CELL_ALLOC_A] = "No cell allocation available",
106 [GSM48_RR_CAUSE_PROT_ERROR_UNSPC] = "Protocol error unspecified",
107};
108
109static char strbuf[64];
110
111static const char *rr_cause_name(u_int8_t cause)
112{
113 if (cause < ARRAY_SIZE(rr_cause_names) &&
114 rr_cause_names[cause])
115 return rr_cause_names[cause];
116
117 snprintf(strbuf, sizeof(strbuf), "0x%02x", cause);
118 return strbuf;
119}
120
121static void parse_meas_rep(struct gsm_meas_rep *rep, const u_int8_t *data,
122 int len)
123{
124 memset(rep, 0, sizeof(*rep));
125
126 if (data[0] & 0x80)
127 rep->flags |= MEAS_REP_F_BA1;
128 if (data[0] & 0x40)
129 rep->flags |= MEAS_REP_F_DTX;
130 if (data[1] & 0x40)
131 rep->flags |= MEAS_REP_F_VALID;
132
133 rep->rxlev_full = data[0] & 0x3f;
134 rep->rxlev_sub = data[1] & 0x3f;
135 rep->rxqual_full = (data[3] >> 4) & 0x7;
136 rep->rxqual_sub = (data[3] >> 1) & 0x7;
137 rep->num_cell = data[4] >> 6 | ((data[3] & 0x01) << 2);
138 if (rep->num_cell < 1)
139 return;
140
141 /* an encoding nightmare in perfection */
142
143 rep->cell[0].rxlev = data[4] & 0x3f;
144 rep->cell[0].bcch_freq = data[5] >> 2;
145 rep->cell[0].bsic = ((data[5] & 0x03) << 3) | (data[6] >> 5);
146 if (rep->num_cell < 2)
147 return;
148
149 rep->cell[1].rxlev = ((data[6] & 0x1f) << 1) | (data[7] >> 7);
150 rep->cell[1].bcch_freq = (data[7] >> 2) & 0x1f;
151 rep->cell[1].bsic = ((data[7] & 0x03) << 4) | (data[8] >> 4);
152 if (rep->num_cell < 3)
153 return;
154
155 rep->cell[2].rxlev = ((data[8] & 0x0f) << 2) | (data[9] >> 6);
156 rep->cell[2].bcch_freq = (data[9] >> 1) & 0x1f;
157 rep->cell[2].bsic = ((data[9] & 0x01) << 6) | (data[10] >> 3);
158 if (rep->num_cell < 4)
159 return;
160
161 rep->cell[3].rxlev = ((data[10] & 0x07) << 3) | (data[11] >> 5);
162 rep->cell[3].bcch_freq = data[11] & 0x1f;
163 rep->cell[3].bsic = data[12] >> 2;
164 if (rep->num_cell < 5)
165 return;
166
167 rep->cell[4].rxlev = ((data[12] & 0x03) << 4) | (data[13] >> 4);
168 rep->cell[4].bcch_freq = ((data[13] & 0xf) << 1) | (data[14] >> 7);
169 rep->cell[4].bsic = (data[14] >> 1) & 0x3f;
170 if (rep->num_cell < 6)
171 return;
172
173 rep->cell[5].rxlev = ((data[14] & 0x01) << 5) | (data[15] >> 3);
174 rep->cell[5].bcch_freq = ((data[15] & 0x07) << 2) | (data[16] >> 6);
175 rep->cell[5].bsic = data[16] & 0x3f;
176}
177
178int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi);
179static int gsm48_tx_simple(struct gsm_lchan *lchan,
180 u_int8_t pdisc, u_int8_t msg_type);
181static void schedule_reject(struct gsm_lchan *lchan);
182
183struct gsm_lai {
184 u_int16_t mcc;
185 u_int16_t mnc;
186 u_int16_t lac;
187};
188
189static int authorize_everonye = 0;
190void gsm0408_allow_everyone(int everyone)
191{
192 printf("Allowing everyone?\n");
193 authorize_everonye = everyone;
194}
195
196static int reject_cause = 0;
197void gsm0408_set_reject_cause(int cause)
198{
199 reject_cause = cause;
200}
201
202static int authorize_subscriber(struct gsm_loc_updating_operation *loc,
203 struct gsm_subscriber *subscriber)
204{
205 if (!subscriber)
206 return 0;
207
208 /*
209 * Do not send accept yet as more information should arrive. Some
210 * phones will not send us the information and we will have to check
211 * what we want to do with that.
212 */
213 if (loc && (loc->waiting_for_imsi || loc->waiting_for_imei))
214 return 0;
215
216 if (authorize_everonye)
217 return 1;
218
219 return subscriber->authorized;
220}
221
222static void release_loc_updating_req(struct gsm_lchan *lchan)
223{
224 if (!lchan->loc_operation)
225 return;
226
227 bsc_del_timer(&lchan->loc_operation->updating_timer);
228 free(lchan->loc_operation);
229 lchan->loc_operation = 0;
230 put_lchan(lchan);
231}
232
233static void allocate_loc_updating_req(struct gsm_lchan *lchan)
234{
235 use_lchan(lchan);
236 release_loc_updating_req(lchan);
237
238 lchan->loc_operation = (struct gsm_loc_updating_operation *)
239 malloc(sizeof(*lchan->loc_operation));
240 memset(lchan->loc_operation, 0, sizeof(*lchan->loc_operation));
241}
242
243static int gsm0408_authorize(struct gsm_lchan *lchan, struct msgb *msg)
244{
245 u_int32_t tmsi;
246
247 if (authorize_subscriber(lchan->loc_operation, lchan->subscr)) {
248 db_subscriber_alloc_tmsi(lchan->subscr);
249 subscr_update(lchan->subscr, msg->trx->bts, GSM_SUBSCRIBER_UPDATE_ATTACHED);
250 tmsi = strtoul(lchan->subscr->tmsi, NULL, 10);
251 release_loc_updating_req(lchan);
252 return gsm0408_loc_upd_acc(msg->lchan, tmsi);
253 }
254
255 return 0;
256}
257
258static int gsm0408_handle_lchan_signal(unsigned int subsys, unsigned int signal,
259 void *handler_data, void *signal_data)
260{
261 if (subsys != SS_LCHAN || signal != S_LCHAN_UNEXPECTED_RELEASE)
262 return 0;
263
264 /*
265 * Cancel any outstanding location updating request
266 * operation taking place on the lchan.
267 */
268 struct gsm_lchan *lchan = (struct gsm_lchan *)handler_data;
269 release_loc_updating_req(lchan);
270
271 return 0;
272}
273
274/*
275 * This will be ran by the linker when loading the DSO. We use it to
276 * do system initialization, e.g. registration of signal handlers.
277 */
278static __attribute__((constructor)) void on_dso_load_0408(void)
279{
280 register_signal_handler(SS_LCHAN, gsm0408_handle_lchan_signal, NULL);
281}
282
283static void to_bcd(u_int8_t *bcd, u_int16_t val)
284{
285 bcd[2] = val % 10;
286 val = val / 10;
287 bcd[1] = val % 10;
288 val = val / 10;
289 bcd[0] = val % 10;
290 val = val / 10;
291}
292
293void gsm0408_generate_lai(struct gsm48_loc_area_id *lai48, u_int16_t mcc,
294 u_int16_t mnc, u_int16_t lac)
295{
296 u_int8_t bcd[3];
297
298 to_bcd(bcd, mcc);
299 lai48->digits[0] = bcd[0] | (bcd[1] << 4);
300 lai48->digits[1] = bcd[2];
301
302 to_bcd(bcd, mnc);
303 /* FIXME: do we need three-digit MNC? See Table 10.5.3 */
304#if 0
305 lai48->digits[1] |= bcd[2] << 4;
306 lai48->digits[2] = bcd[0] | (bcd[1] << 4);
307#else
308 lai48->digits[1] |= 0xf << 4;
309 lai48->digits[2] = bcd[1] | (bcd[2] << 4);
310#endif
311
312 lai48->lac = htons(lac);
313}
314
315#define TMSI_LEN 5
316#define MID_TMSI_LEN (TMSI_LEN + 2)
317
318int generate_mid_from_tmsi(u_int8_t *buf, u_int32_t tmsi)
319{
320 u_int32_t *tptr = (u_int32_t *) &buf[3];
321
322 buf[0] = GSM48_IE_MOBILE_ID;
323 buf[1] = TMSI_LEN;
324 buf[2] = 0xf0 | GSM_MI_TYPE_TMSI;
325 *tptr = htonl(tmsi);
326
327 return 7;
328}
329
330static const char bcd_num_digits[] = {
331 '0', '1', '2', '3', '4', '5', '6', '7',
332 '8', '9', '*', '#', 'a', 'b', 'c', '\0'
333};
334
335/* decode a 'called party BCD number' as in 10.5.4.7 */
336u_int8_t decode_bcd_number(char *output, int output_len, const u_int8_t *bcd_lv)
337{
338 u_int8_t in_len = bcd_lv[0];
339 int i;
340
341 if (in_len < 1)
342 return 0;
343
344 for (i = 2; i <= in_len; i++) {
345 /* lower nibble */
346 output_len--;
347 if (output_len <= 1)
348 break;
349 *output++ = bcd_num_digits[bcd_lv[i] & 0xf];
350
351 /* higher nibble */
352 output_len--;
353 if (output_len <= 1)
354 break;
355 *output++ = bcd_num_digits[bcd_lv[i] >> 4];
356 }
357 if (output_len >= 1)
358 *output++ = '\0';
359
360 /* return number type / calling plan */
361 return bcd_lv[1] & 0x3f;
362}
363
364/* convert a single ASCII character to call-control BCD */
365static int asc_to_bcd(const char asc)
366{
367 int i;
368
369 for (i = 0; i < ARRAY_SIZE(bcd_num_digits); i++) {
370 if (bcd_num_digits[i] == asc)
371 return i;
372 }
373 return -EINVAL;
374}
375
376/* convert a ASCII phone number to 'called party BCD number' */
377int encode_bcd_number(u_int8_t *bcd_lv, u_int8_t max_len,
378 u_int8_t type, const char *input)
379{
380 int in_len = strlen(input);
381 int i;
382 u_int8_t *bcd_cur = bcd_lv + 2;
383
384 if (in_len/2 + 1 > max_len)
385 return -EIO;
386
387 /* two digits per byte, plus type byte */
388 bcd_lv[0] = in_len/2 + 1;
389 if (in_len % 2)
390 bcd_lv[0]++;
391
392 /* if the caller wants to create a valid 'calling party BCD
393 * number', then the extension bit MUST NOT be set. For the
394 * 'called party BCD number' it MUST be set. *sigh */
395 bcd_lv[1] = type;
396
397 for (i = 0; i < in_len; i++) {
398 int rc = asc_to_bcd(input[i]);
399 if (rc < 0)
400 return rc;
401 if (i % 2 == 0)
402 *bcd_cur = rc;
403 else
404 *bcd_cur++ |= (rc << 4);
405 }
406 /* append padding nibble in case of odd length */
407 if (i % 2)
408 *bcd_cur++ |= 0xf0;
409
410 /* return how many bytes we used */
411 return (bcd_cur - bcd_lv);
412}
413
414struct msgb *gsm48_msgb_alloc(void)
415{
416 return msgb_alloc_headroom(GSM48_ALLOC_SIZE, GSM48_ALLOC_HEADROOM);
417}
418
419int gsm48_sendmsg(struct msgb *msg)
420{
421 struct gsm48_hdr *gh = (struct gsm48_hdr *) msg->data;
422
423 if (msg->lchan) {
424 msg->trx = msg->lchan->ts->trx;
425
426 if ((gh->proto_discr & GSM48_PDISC_MASK) == GSM48_PDISC_CC) {
427 /* Send a 04.08 call control message, add transaction
428 * ID and TI flag */
429 gh->proto_discr |= msg->lchan->call.transaction_id;
430
431 /* GSM 04.07 Section 11.2.3.1.3 */
432 switch (msg->lchan->call.type) {
433 case GSM_CT_MO:
434 gh->proto_discr |= 0x80;
435 break;
436 case GSM_CT_MT:
437 break;
438 case GSM_CT_NONE:
439 break;
440 }
441 }
442 }
443
444 msg->l3h = msg->data;
445
446 return rsl_data_request(msg, 0);
447}
448
449
450/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
451int gsm0408_loc_upd_rej(struct gsm_lchan *lchan, u_int8_t cause)
452{
453 struct msgb *msg = gsm48_msgb_alloc();
454 struct gsm48_hdr *gh;
455
456 msg->lchan = lchan;
457
458 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
459 gh->proto_discr = GSM48_PDISC_MM;
460 gh->msg_type = GSM48_MT_MM_LOC_UPD_REJECT;
461 gh->data[0] = cause;
462
463 DEBUGP(DMM, "-> LOCATION UPDATING REJECT on channel: %d\n", lchan->nr);
464
465 return gsm48_sendmsg(msg);
466}
467
468/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
469int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi)
470{
471 struct gsm_bts *bts = lchan->ts->trx->bts;
472 struct msgb *msg = gsm48_msgb_alloc();
473 struct gsm48_hdr *gh;
474 struct gsm48_loc_area_id *lai;
475 u_int8_t *mid;
476 int ret;
477
478 msg->lchan = lchan;
479
480 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
481 gh->proto_discr = GSM48_PDISC_MM;
482 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
483
484 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
485 gsm0408_generate_lai(lai, bts->network->country_code,
486 bts->network->network_code, bts->location_area_code);
487
488 mid = msgb_put(msg, MID_TMSI_LEN);
489 generate_mid_from_tmsi(mid, tmsi);
490
491 DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n");
492
493 ret = gsm48_sendmsg(msg);
494
495 ret = gsm48_tx_mm_info(lchan);
496
497 return ret;
498}
499
500static char bcd2char(u_int8_t bcd)
501{
502 if (bcd < 0xa)
503 return '0' + bcd;
504 else
505 return 'A' + (bcd - 0xa);
506}
507
508/* Convert Mobile Identity (10.5.1.4) to string */
509static int mi_to_string(char *string, int str_len, u_int8_t *mi, int mi_len)
510{
511 int i;
512 u_int8_t mi_type;
513 char *str_cur = string;
514 u_int32_t tmsi;
515
516 mi_type = mi[0] & GSM_MI_TYPE_MASK;
517
518 switch (mi_type) {
519 case GSM_MI_TYPE_NONE:
520 break;
521 case GSM_MI_TYPE_TMSI:
522 /* Table 10.5.4.3, reverse generate_mid_from_tmsi */
523 if (mi_len == TMSI_LEN && mi[0] == (0xf0 | GSM_MI_TYPE_TMSI)) {
524 memcpy(&tmsi, &mi[1], 4);
525 tmsi = ntohl(tmsi);
526 return snprintf(string, str_len, "%u", tmsi);
527 }
528 break;
529 case GSM_MI_TYPE_IMSI:
530 case GSM_MI_TYPE_IMEI:
531 case GSM_MI_TYPE_IMEISV:
532 *str_cur++ = bcd2char(mi[0] >> 4);
533
534 for (i = 1; i < mi_len; i++) {
535 if (str_cur + 2 >= string + str_len)
536 return str_cur - string;
537 *str_cur++ = bcd2char(mi[i] & 0xf);
538 /* skip last nibble in last input byte when GSM_EVEN */
539 if( (i != mi_len-1) || (mi[0] & GSM_MI_ODD))
540 *str_cur++ = bcd2char(mi[i] >> 4);
541 }
542 break;
543 default:
544 break;
545 }
546 *str_cur++ = '\0';
547
548 return str_cur - string;
549}
550
551/* Transmit Chapter 9.2.10 Identity Request */
552static int mm_tx_identity_req(struct gsm_lchan *lchan, u_int8_t id_type)
553{
554 struct msgb *msg = gsm48_msgb_alloc();
555 struct gsm48_hdr *gh;
556
557 msg->lchan = lchan;
558
559 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
560 gh->proto_discr = GSM48_PDISC_MM;
561 gh->msg_type = GSM48_MT_MM_ID_REQ;
562 gh->data[0] = id_type;
563
564 return gsm48_sendmsg(msg);
565}
566
567#define MI_SIZE 32
568
569/* Parse Chapter 9.2.11 Identity Response */
570static int mm_rx_id_resp(struct msgb *msg)
571{
572 struct gsm48_hdr *gh = msgb_l3(msg);
573 struct gsm_lchan *lchan = msg->lchan;
574 u_int8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
575 char mi_string[MI_SIZE];
576
577 mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
578 DEBUGP(DMM, "IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
579 mi_type, mi_string);
580
Harald Welte59b04682009-06-10 05:40:52 +0800581 switch (mi_type) {
582 case GSM_MI_TYPE_IMSI:
583 if (!lchan->subscr)
584 lchan->subscr = db_create_subscriber(mi_string);
585 if (lchan->loc_operation)
586 lchan->loc_operation->waiting_for_imsi = 0;
587 break;
588 case GSM_MI_TYPE_IMEI:
589 case GSM_MI_TYPE_IMEISV:
590 /* update subscribe <-> IMEI mapping */
591 if (lchan->subscr)
592 db_subscriber_assoc_imei(lchan->subscr, mi_string);
593 if (lchan->loc_operation)
594 lchan->loc_operation->waiting_for_imei = 0;
595 break;
596 }
597
598 /* Check if we can let the mobile station enter */
599 return gsm0408_authorize(lchan, msg);
600}
601
602
603static void loc_upd_rej_cb(void *data)
604{
605 struct gsm_lchan *lchan = data;
606
607 release_loc_updating_req(lchan);
608 gsm0408_loc_upd_rej(lchan, reject_cause);
609 lchan_auto_release(lchan);
610}
611
612static void schedule_reject(struct gsm_lchan *lchan)
613{
614 lchan->loc_operation->updating_timer.cb = loc_upd_rej_cb;
615 lchan->loc_operation->updating_timer.data = lchan;
616 bsc_schedule_timer(&lchan->loc_operation->updating_timer, 5, 0);
617}
618
619static const char *lupd_name(u_int8_t type)
620{
621 switch (type) {
622 case GSM48_LUPD_NORMAL:
623 return "NORMAL";
624 case GSM48_LUPD_PERIODIC:
625 return "PEROIDOC";
626 case GSM48_LUPD_IMSI_ATT:
627 return "IMSI ATTACH";
628 default:
629 return "UNKNOWN";
630 }
631}
632
633#define MI_SIZE 32
634/* Chapter 9.2.15: Receive Location Updating Request */
635static int mm_rx_loc_upd_req(struct msgb *msg)
636{
637 struct gsm48_hdr *gh = msgb_l3(msg);
638 struct gsm48_loc_upd_req *lu;
639 struct gsm_subscriber *subscr;
640 struct gsm_lchan *lchan = msg->lchan;
641 u_int8_t mi_type;
642 char mi_string[MI_SIZE];
643 int rc;
644
645 lu = (struct gsm48_loc_upd_req *) gh->data;
646
647 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
648
649 mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
650
651 DEBUGP(DMM, "LUPDREQ: mi_type=0x%02x MI(%s) type=%s\n", mi_type, mi_string,
652 lupd_name(lu->type));
653
654 /*
655 * Pseudo Spoof detection: Just drop a second/concurrent
656 * location updating request.
657 */
658 if (lchan->loc_operation) {
659 DEBUGP(DMM, "LUPDREQ: ignoring request due an existing one: %p.\n",
660 lchan->loc_operation);
661 gsm0408_loc_upd_rej(lchan, GSM48_REJECT_PROTOCOL_ERROR);
662 return 0;
663 }
664
665 allocate_loc_updating_req(lchan);
666
667 switch (mi_type) {
668 case GSM_MI_TYPE_IMSI:
669 /* we always want the IMEI, too */
Harald Welte59b04682009-06-10 05:40:52 +0800670 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
671 lchan->loc_operation->waiting_for_imei = 1;
672
673 /* look up subscriber based on IMSI */
674 subscr = db_create_subscriber(mi_string);
675 break;
676 case GSM_MI_TYPE_TMSI:
677 /* we always want the IMEI, too */
Harald Welte59b04682009-06-10 05:40:52 +0800678 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
679 lchan->loc_operation->waiting_for_imei = 1;
680
681 /* look up the subscriber based on TMSI, request IMSI if it fails */
682 subscr = subscr_get_by_tmsi(mi_string);
683 if (!subscr) {
684 /* send IDENTITY REQUEST message to get IMSI */
Harald Welte59b04682009-06-10 05:40:52 +0800685 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMSI);
686 lchan->loc_operation->waiting_for_imsi = 1;
687 }
688 break;
689 case GSM_MI_TYPE_IMEI:
690 case GSM_MI_TYPE_IMEISV:
691 /* no sim card... FIXME: what to do ? */
692 DEBUGP(DMM, "unimplemented mobile identity type\n");
693 break;
694 default:
695 DEBUGP(DMM, "unknown mobile identity type\n");
696 break;
697 }
698
699 lchan->subscr = subscr;
700
701 /*
702 * Schedule the reject timer and check if we can let the
703 * subscriber into our network immediately or if we need to wait
704 * for identity responses.
705 */
706 schedule_reject(lchan);
707 return gsm0408_authorize(lchan, msg);
708}
709
710/* 9.1.5 Channel mode modify */
711int gsm48_tx_chan_mode_modify(struct gsm_lchan *lchan, u_int8_t mode)
712{
713 struct msgb *msg = gsm48_msgb_alloc();
714 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
715 struct gsm48_chan_mode_modify *cmm =
716 (struct gsm48_chan_mode_modify *) msgb_put(msg, sizeof(*cmm));
717 u_int16_t arfcn = lchan->ts->trx->arfcn & 0x3ff;
718
719 DEBUGP(DRR, "-> CHANNEL MODE MODIFY mode=0x%02x\n", mode);
720
721 lchan->tch_mode = mode;
722 msg->lchan = lchan;
723 gh->proto_discr = GSM48_PDISC_RR;
724 gh->msg_type = GSM48_MT_RR_CHAN_MODE_MODIF;
725
726 /* fill the channel information element, this code
727 * should probably be shared with rsl_rx_chan_rqd() */
728 cmm->chan_desc.chan_nr = lchan2chan_nr(lchan);
729 cmm->chan_desc.h0.tsc = lchan->ts->trx->bts->tsc;
730 cmm->chan_desc.h0.h = 0;
731 cmm->chan_desc.h0.arfcn_high = arfcn >> 8;
732 cmm->chan_desc.h0.arfcn_low = arfcn & 0xff;
733 cmm->mode = mode;
734
735 return gsm48_sendmsg(msg);
736}
737
738/* Section 9.2.15a */
739int gsm48_tx_mm_info(struct gsm_lchan *lchan)
740{
741 struct msgb *msg = gsm48_msgb_alloc();
742 struct gsm48_hdr *gh;
743 struct gsm_network *net = lchan->ts->trx->bts->network;
744 u_int8_t *ptr8;
745 u_int16_t *ptr16;
746 int name_len;
747 int i;
748
749 msg->lchan = lchan;
750
751 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
752 gh->proto_discr = GSM48_PDISC_MM;
753 gh->msg_type = GSM48_MT_MM_INFO;
754
755 if (net->name_long) {
756 name_len = strlen(net->name_long);
757 /* 10.5.3.5a */
758 ptr8 = msgb_put(msg, 3);
759 ptr8[0] = GSM48_IE_NAME_LONG;
760 ptr8[1] = name_len*2 +1;
761 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
762
763 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
764 for (i = 0; i < name_len; i++)
765 ptr16[i] = htons(net->name_long[i]);
766
767 /* FIXME: Use Cell Broadcast, not UCS-2, since
768 * UCS-2 is only supported by later revisions of the spec */
769 }
770
771 if (net->name_short) {
772 name_len = strlen(net->name_short);
773 /* 10.5.3.5a */
774 ptr8 = (u_int8_t *) msgb_put(msg, 3);
775 ptr8[0] = GSM48_IE_NAME_LONG;
776 ptr8[1] = name_len*2 + 1;
777 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
778
779 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
780 for (i = 0; i < name_len; i++)
781 ptr16[i] = htons(net->name_short[i]);
782 }
783
784#if 0
785 /* move back to the top */
786 time_t cur_t;
787 struct tm* cur_time;
788 int tz15min;
789 /* Section 10.5.3.9 */
790 cur_t = time(NULL);
791 cur_time = gmtime(cur_t);
792 ptr8 = msgb_put(msg, 8);
793 ptr8[0] = GSM48_IE_NET_TIME_TZ;
794 ptr8[1] = to_bcd8(cur_time->tm_year % 100);
795 ptr8[2] = to_bcd8(cur_time->tm_mon);
796 ptr8[3] = to_bcd8(cur_time->tm_mday);
797 ptr8[4] = to_bcd8(cur_time->tm_hour);
798 ptr8[5] = to_bcd8(cur_time->tm_min);
799 ptr8[6] = to_bcd8(cur_time->tm_sec);
800 /* 02.42: coded as BCD encoded signed value in units of 15 minutes */
801 tz15min = (cur_time->tm_gmtoff)/(60*15);
802 ptr8[6] = to_bcd8(tz15min);
803 if (tz15min < 0)
804 ptr8[6] |= 0x80;
805#endif
806
807 return gsm48_sendmsg(msg);
808}
809
810static int gsm48_tx_mm_serv_ack(struct gsm_lchan *lchan)
811{
812 DEBUGP(DMM, "-> CM SERVICE ACK\n");
813 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_ACC);
814}
815
816/* 9.2.6 CM service reject */
817static int gsm48_tx_mm_serv_rej(struct gsm_lchan *lchan,
818 enum gsm48_reject_value value)
819{
820 struct msgb *msg = gsm48_msgb_alloc();
821 struct gsm48_hdr *gh;
822
823 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
824
825 msg->lchan = lchan;
826 use_lchan(lchan);
827
828 gh->proto_discr = GSM48_PDISC_MM;
829 gh->msg_type = GSM48_MT_MM_CM_SERV_REJ;
830 gh->data[0] = value;
831 DEBUGP(DMM, "-> CM SERVICE Reject cause: %d\n", value);
832
833 return gsm48_sendmsg(msg);
834}
835
836
837/*
838 * Handle CM Service Requests
839 * a) Verify that the packet is long enough to contain the information
840 * we require otherwsie reject with INCORRECT_MESSAGE
841 * b) Try to parse the TMSI. If we do not have one reject
842 * c) Check that we know the subscriber with the TMSI otherwise reject
843 * with a HLR cause
844 * d) Set the subscriber on the gsm_lchan and accept
845 */
846static int gsm48_rx_mm_serv_req(struct msgb *msg)
847{
848 u_int8_t mi_type;
849 char mi_string[MI_SIZE];
850
851 struct gsm_subscriber *subscr;
852 struct gsm48_hdr *gh = msgb_l3(msg);
853 struct gsm48_service_request *req =
854 (struct gsm48_service_request *)gh->data;
855 /* unfortunately in Phase1 the classmar2 length is variable */
856 u_int8_t classmark2_len = gh->data[1];
857 u_int8_t *classmark2 = gh->data+2;
858 u_int8_t mi_len = *(classmark2 + classmark2_len);
859 u_int8_t *mi = (classmark2 + classmark2_len + 1);
860
861 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
862 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
863 DEBUGPC(DMM, "wrong sized message\n");
864 return gsm48_tx_mm_serv_rej(msg->lchan,
865 GSM48_REJECT_INCORRECT_MESSAGE);
866 }
867
868 if (msg->data_len < req->mi_len + 6) {
869 DEBUGPC(DMM, "does not fit in packet\n");
870 return gsm48_tx_mm_serv_rej(msg->lchan,
871 GSM48_REJECT_INCORRECT_MESSAGE);
872 }
873
874 mi_type = mi[0] & GSM_MI_TYPE_MASK;
875 if (mi_type != GSM_MI_TYPE_TMSI) {
876 DEBUGPC(DMM, "mi_type is not TMSI: %d\n", mi_type);
877 return gsm48_tx_mm_serv_rej(msg->lchan,
878 GSM48_REJECT_INCORRECT_MESSAGE);
879 }
880
881 mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
882 DEBUGPC(DMM, "serv_type=0x%02x mi_type=0x%02x M(%s)\n",
883 req->cm_service_type, mi_type, mi_string);
884
885 subscr = subscr_get_by_tmsi(mi_string);
886
887 /* FIXME: if we don't know the TMSI, inquire abit IMSI and allocate new TMSI */
888 if (!subscr)
889 return gsm48_tx_mm_serv_rej(msg->lchan,
890 GSM48_REJECT_IMSI_UNKNOWN_IN_HLR);
891
892 if (!msg->lchan->subscr)
893 msg->lchan->subscr = subscr;
894 else if (msg->lchan->subscr != subscr) {
895 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
896 subscr_put(subscr);
897 }
898
899 subscr->classmark2_len = classmark2_len;
900 memcpy(subscr->classmark2, classmark2, classmark2_len);
901
902 return gsm48_tx_mm_serv_ack(msg->lchan);
903}
904
905static int gsm48_rx_mm_imsi_detach_ind(struct msgb *msg)
906{
907 struct gsm48_hdr *gh = msgb_l3(msg);
908 struct gsm48_imsi_detach_ind *idi =
909 (struct gsm48_imsi_detach_ind *) gh->data;
910 u_int8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
911 char mi_string[MI_SIZE];
912 struct gsm_subscriber *subscr;
913
914 mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
915 DEBUGP(DMM, "IMSI DETACH INDICATION: mi_type=0x%02x MI(%s): ",
916 mi_type, mi_string);
917
918 switch (mi_type) {
919 case GSM_MI_TYPE_TMSI:
920 subscr = subscr_get_by_tmsi(mi_string);
921 break;
922 case GSM_MI_TYPE_IMSI:
923 subscr = subscr_get_by_imsi(mi_string);
924 break;
925 case GSM_MI_TYPE_IMEI:
926 case GSM_MI_TYPE_IMEISV:
927 /* no sim card... FIXME: what to do ? */
928 DEBUGPC(DMM, "unimplemented mobile identity type\n");
929 break;
930 default:
931 DEBUGPC(DMM, "unknown mobile identity type\n");
932 break;
933 }
934
935 if (subscr) {
936 subscr_update(subscr, msg->trx->bts,
937 GSM_SUBSCRIBER_UPDATE_DETACHED);
938 DEBUGP(DMM, "Subscriber: %s\n",
939 subscr->name ? subscr->name : subscr->imsi);
940 subscr_put(subscr);
941 } else
942 DEBUGP(DMM, "Unknown Subscriber ?!?\n");
943
944 put_lchan(msg->lchan);
945
946 return 0;
947}
948
949static int gsm48_rx_mm_status(struct msgb *msg)
950{
951 struct gsm48_hdr *gh = msgb_l3(msg);
952
953 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
954
955 return 0;
956}
957
958/* Receive a GSM 04.08 Mobility Management (MM) message */
959static int gsm0408_rcv_mm(struct msgb *msg)
960{
961 struct gsm48_hdr *gh = msgb_l3(msg);
962 int rc;
963
964 switch (gh->msg_type & 0xbf) {
965 case GSM48_MT_MM_LOC_UPD_REQUEST:
966 DEBUGP(DMM, "LOCATION UPDATING REQUEST\n");
967 rc = mm_rx_loc_upd_req(msg);
968 break;
969 case GSM48_MT_MM_ID_RESP:
970 rc = mm_rx_id_resp(msg);
971 break;
972 case GSM48_MT_MM_CM_SERV_REQ:
973 rc = gsm48_rx_mm_serv_req(msg);
974 break;
975 case GSM48_MT_MM_STATUS:
976 rc = gsm48_rx_mm_status(msg);
977 break;
978 case GSM48_MT_MM_TMSI_REALL_COMPL:
979 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
980 msg->lchan->subscr ?
981 msg->lchan->subscr->imsi :
982 "unknown subscriber");
983 break;
984 case GSM48_MT_MM_IMSI_DETACH_IND:
985 rc = gsm48_rx_mm_imsi_detach_ind(msg);
986 break;
987 case GSM48_MT_MM_CM_REEST_REQ:
988 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
989 break;
990 case GSM48_MT_MM_AUTH_RESP:
991 DEBUGP(DMM, "AUTHENTICATION RESPONSE: Not implemented\n");
992 break;
993 default:
994 fprintf(stderr, "Unknown GSM 04.08 MM msg type 0x%02x\n",
995 gh->msg_type);
996 break;
997 }
998
999 return rc;
1000}
1001
1002/* Receive a PAGING RESPONSE message from the MS */
1003static int gsm48_rr_rx_pag_resp(struct msgb *msg)
1004{
1005 struct gsm48_hdr *gh = msgb_l3(msg);
1006 u_int8_t *classmark2_lv = gh->data + 1;
1007 u_int8_t *mi_lv = gh->data + 2 + *classmark2_lv;
1008 u_int8_t mi_type = mi_lv[1] & GSM_MI_TYPE_MASK;
1009 char mi_string[MI_SIZE];
1010 struct gsm_subscriber *subscr;
1011 struct paging_signal_data sig_data;
1012 int rc = 0;
1013
1014 mi_to_string(mi_string, sizeof(mi_string), mi_lv+1, *mi_lv);
1015 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
1016 mi_type, mi_string);
1017 switch (mi_type) {
1018 case GSM_MI_TYPE_TMSI:
1019 subscr = subscr_get_by_tmsi(mi_string);
1020 break;
1021 case GSM_MI_TYPE_IMSI:
1022 subscr = subscr_get_by_imsi(mi_string);
1023 break;
1024 }
1025
1026 if (!subscr) {
1027 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
1028 /* FIXME: request id? close channel? */
1029 return -EINVAL;
1030 }
1031 DEBUGP(DRR, "<- Channel was requested by %s\n",
1032 subscr->name ? subscr->name : subscr->imsi);
1033
1034 subscr->classmark2_len = *classmark2_lv;
1035 memcpy(subscr->classmark2, classmark2_lv+1, *classmark2_lv);
1036
1037 if (!msg->lchan->subscr) {
1038 msg->lchan->subscr = subscr;
1039 } else if (msg->lchan->subscr != subscr) {
1040 DEBUGP(DRR, "<- Channel already owned by someone else?\n");
1041 subscr_put(subscr);
1042 return -EINVAL;
1043 } else {
1044 DEBUGP(DRR, "<- Channel already owned by us\n");
1045 subscr_put(subscr);
1046 subscr = msg->lchan->subscr;
1047 }
1048
1049 sig_data.subscr = subscr;
1050 sig_data.bts = msg->lchan->ts->trx->bts;
1051 sig_data.lchan = msg->lchan;
1052
1053 dispatch_signal(SS_PAGING, S_PAGING_COMPLETED, &sig_data);
Harald Welte876312f2009-06-10 11:21:55 +08001054
1055 /* Stop paging on the bts we received the paging response */
Harald Welte59b04682009-06-10 05:40:52 +08001056 paging_request_stop(msg->trx->bts, subscr, msg->lchan);
1057
1058 /* FIXME: somehow signal the completion of the PAGING to
1059 * the entity that requested the paging */
1060
1061 return rc;
1062}
1063
1064static int gsm48_rx_rr_classmark(struct msgb *msg)
1065{
1066 struct gsm48_hdr *gh = msgb_l3(msg);
1067 struct gsm_subscriber *subscr = msg->lchan->subscr;
1068 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1069 u_int8_t cm2_len, cm3_len = 0;
1070 u_int8_t *cm2, *cm3 = NULL;
1071
1072 DEBUGP(DRR, "CLASSMARK CHANGE ");
1073
1074 /* classmark 2 */
1075 cm2_len = gh->data[0];
1076 cm2 = &gh->data[1];
1077 DEBUGPC(DRR, "CM2(len=%u) ", cm2_len);
1078
1079 if (payload_len > cm2_len + 1) {
1080 /* we must have a classmark3 */
1081 if (gh->data[cm2_len+1] != 0x20) {
1082 DEBUGPC(DRR, "ERR CM3 TAG\n");
1083 return -EINVAL;
1084 }
1085 if (cm2_len > 3) {
1086 DEBUGPC(DRR, "CM2 too long!\n");
1087 return -EINVAL;
1088 }
1089
1090 cm3_len = gh->data[cm2_len+2];
1091 cm3 = &gh->data[cm2_len+3];
1092 if (cm3_len > 14) {
1093 DEBUGPC(DRR, "CM3 len %u too long!\n", cm3_len);
1094 return -EINVAL;
1095 }
1096 DEBUGPC(DRR, "CM3(len=%u)\n", cm3_len);
1097 }
1098 if (subscr) {
1099 subscr->classmark2_len = cm2_len;
1100 memcpy(subscr->classmark2, cm2, cm2_len);
1101 if (cm3) {
1102 subscr->classmark3_len = cm3_len;
1103 memcpy(subscr->classmark3, cm3, cm3_len);
1104 }
1105 }
1106
1107 /* FIXME: store the classmark2/3 values with the equipment register */
1108
1109 return 0;
1110}
1111
1112static int gsm48_rx_rr_status(struct msgb *msg)
1113{
1114 struct gsm48_hdr *gh = msgb_l3(msg);
1115
1116 DEBUGP(DRR, "STATUS rr_cause = %s\n",
1117 rr_cause_name(gh->data[0]));
1118
1119 return 0;
1120}
1121
1122static int gsm48_rx_rr_meas_rep(struct msgb *msg)
1123{
1124 struct gsm48_hdr *gh = msgb_l3(msg);
1125 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1126 static struct gsm_meas_rep meas_rep;
1127
1128 DEBUGP(DRR, "MEASUREMENT REPORT ");
1129 parse_meas_rep(&meas_rep, gh->data, payload_len);
1130 if (meas_rep.flags & MEAS_REP_F_DTX)
1131 DEBUGPC(DRR, "DTX ");
1132 if (meas_rep.flags & MEAS_REP_F_BA1)
1133 DEBUGPC(DRR, "BA1 ");
1134 if (!(meas_rep.flags & MEAS_REP_F_VALID))
1135 DEBUGPC(DRR, "NOT VALID ");
1136 else
1137 DEBUGPC(DRR, "FULL(lev=%u, qual=%u) SUB(lev=%u, qual=%u) ",
1138 meas_rep.rxlev_full, meas_rep.rxqual_full, meas_rep.rxlev_sub,
1139 meas_rep.rxqual_sub);
1140
1141 DEBUGPC(DRR, "NUM_NEIGH=%u\n", meas_rep.num_cell);
1142
1143 /* FIXME: put the results somwhere */
1144
1145 return 0;
1146}
1147
1148/* Receive a GSM 04.08 Radio Resource (RR) message */
1149static int gsm0408_rcv_rr(struct msgb *msg)
1150{
1151 struct gsm48_hdr *gh = msgb_l3(msg);
1152 int rc = 0;
1153
1154 switch (gh->msg_type) {
1155 case GSM48_MT_RR_CLSM_CHG:
1156 rc = gsm48_rx_rr_classmark(msg);
1157 break;
1158 case GSM48_MT_RR_GPRS_SUSP_REQ:
1159 DEBUGP(DRR, "GRPS SUSPEND REQUEST\n");
1160 break;
1161 case GSM48_MT_RR_PAG_RESP:
1162 rc = gsm48_rr_rx_pag_resp(msg);
1163 break;
1164 case GSM48_MT_RR_CHAN_MODE_MODIF_ACK:
1165 DEBUGP(DRR, "CHANNEL MODE MODIFY ACK\n");
1166 rc = rsl_chan_mode_modify_req(msg->lchan);
1167 break;
1168 case GSM48_MT_RR_STATUS:
1169 rc = gsm48_rx_rr_status(msg);
1170 break;
1171 case GSM48_MT_RR_MEAS_REP:
1172 rc = gsm48_rx_rr_meas_rep(msg);
1173 break;
1174 default:
1175 fprintf(stderr, "Unimplemented GSM 04.08 RR msg type 0x%02x\n",
1176 gh->msg_type);
1177 break;
1178 }
1179
1180 return rc;
1181}
1182
1183/* 7.1.7 and 9.1.7 Channel release*/
1184int gsm48_send_rr_release(struct gsm_lchan *lchan)
1185{
1186 struct msgb *msg = gsm48_msgb_alloc();
1187 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1188 u_int8_t *cause;
1189
1190 msg->lchan = lchan;
1191 gh->proto_discr = GSM48_PDISC_RR;
1192 gh->msg_type = GSM48_MT_RR_CHAN_REL;
1193
1194 cause = msgb_put(msg, 1);
1195 cause[0] = GSM48_RR_CAUSE_NORMAL;
1196
1197 DEBUGP(DRR, "Sending Channel Release: Chan: Number: %d Type: %d\n",
1198 lchan->nr, lchan->type);
1199
1200 return gsm48_sendmsg(msg);
1201}
1202
1203/* Call Control */
1204
1205/* The entire call control code is written in accordance with Figure 7.10c
1206 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1207 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1208 * it for voice */
1209
1210static int gsm48_cc_tx_status(struct gsm_lchan *lchan)
1211{
1212 struct msgb *msg = gsm48_msgb_alloc();
1213 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1214 u_int8_t *cause, *call_state;
1215
1216 gh->proto_discr = GSM48_PDISC_CC;
1217
1218 msg->lchan = lchan;
1219
1220 gh->msg_type = GSM48_MT_CC_STATUS;
1221
1222 cause = msgb_put(msg, 3);
1223 cause[0] = 2;
1224 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1225 cause[2] = 0x80 | 30; /* response to status inquiry */
1226
1227 call_state = msgb_put(msg, 1);
1228 call_state[0] = 0xc0 | 0x00;
1229
1230 return gsm48_sendmsg(msg);
1231}
1232
1233static int gsm48_tx_simple(struct gsm_lchan *lchan,
1234 u_int8_t pdisc, u_int8_t msg_type)
1235{
1236 struct msgb *msg = gsm48_msgb_alloc();
1237 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1238
1239 msg->lchan = lchan;
1240
1241 gh->proto_discr = pdisc;
1242 gh->msg_type = msg_type;
1243
1244 return gsm48_sendmsg(msg);
1245}
1246
1247/* call-back from paging the B-end of the connection */
1248static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
1249 struct msgb *msg, void *_lchan, void *param)
1250{
1251 struct gsm_lchan *lchan = _lchan;
1252 struct gsm_call *remote_call = param;
1253 struct gsm_call *call = &lchan->call;
1254 int rc = 0;
1255
1256 if (hooknum != GSM_HOOK_RR_PAGING)
1257 return -EINVAL;
1258
1259 switch (event) {
1260 case GSM_PAGING_SUCCEEDED:
1261 DEBUGP(DCC, "paging succeeded!\n");
1262 remote_call->remote_lchan = lchan;
1263 call->remote_lchan = remote_call->local_lchan;
1264 /* send SETUP request to called party */
1265 rc = gsm48_cc_tx_setup(lchan, call->remote_lchan->subscr);
1266 if (is_ipaccess_bts(lchan->ts->trx->bts))
1267 rsl_ipacc_bind(lchan);
1268 break;
1269 case GSM_PAGING_EXPIRED:
1270 DEBUGP(DCC, "paging expired!\n");
1271 /* notify caller that we cannot reach called party */
1272 /* FIXME: correct cause, etc */
1273 rc = gsm48_tx_simple(remote_call->local_lchan, GSM48_PDISC_CC,
1274 GSM48_MT_CC_RELEASE_COMPL);
1275 break;
1276 }
1277 return rc;
1278}
1279
1280static int gsm48_cc_rx_status_enq(struct msgb *msg)
1281{
1282 DEBUGP(DCC, "-> STATUS ENQ\n");
1283 return gsm48_cc_tx_status(msg->lchan);
1284}
1285
1286static int gsm48_cc_rx_setup(struct msgb *msg)
1287{
1288 struct gsm_call *call = &msg->lchan->call;
1289 struct gsm48_hdr *gh = msgb_l3(msg);
1290 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1291 struct gsm_subscriber *called_subscr;
1292 char called_number[(43-2)*2 + 1] = "\0";
1293 struct tlv_parsed tp;
1294 u_int8_t num_type;
1295 int ret;
1296
1297 if (call->state == GSM_CSTATE_NULL ||
1298 call->state == GSM_CSTATE_RELEASE_REQ)
1299 use_lchan(msg->lchan);
1300
1301 call->type = GSM_CT_MO;
1302 call->state = GSM_CSTATE_INITIATED;
1303 call->local_lchan = msg->lchan;
1304 call->transaction_id = gh->proto_discr & 0xf0;
1305
1306 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
1307 if (!TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD))
1308 goto err;
1309
1310 /* Parse the number that was dialed and lookup subscriber */
1311 num_type = decode_bcd_number(called_number, sizeof(called_number),
1312 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
1313
1314 DEBUGP(DCC, "A -> SETUP(tid=0x%02x,number='%s')\n", call->transaction_id,
1315 called_number);
1316
1317 called_subscr = subscr_get_by_extension(called_number);
1318 if (!called_subscr) {
1319 DEBUGP(DCC, "could not find subscriber, RELEASE\n");
1320 put_lchan(msg->lchan);
1321 return gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1322 GSM48_MT_CC_RELEASE_COMPL);
1323 }
1324 if (called_subscr == msg->lchan->subscr) {
1325 DEBUGP(DCC, "subscriber calling himself ?!?\n");
1326 put_lchan(msg->lchan);
1327 subscr_put(called_subscr);
1328 return gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1329 GSM48_MT_CC_RELEASE_COMPL);
1330 }
1331
1332 subscr_get(msg->lchan->subscr);
1333 call->called_subscr = called_subscr;
1334
Harald Welte876312f2009-06-10 11:21:55 +08001335 /* Start paging subscriber on all BTS in LAC of subscriber */
Holger Freyther93795ac2009-03-31 04:35:19 +02001336 subscr_get_channel(called_subscr, msg->trx->bts->network, RSL_CHANNEED_TCH_F,
Holger Hans Peter Freyther13d472d2009-06-10 02:45:42 +02001337 setup_trig_pag_evt, call);
Harald Welte59b04682009-06-10 05:40:52 +08001338
1339 /* send a CALL PROCEEDING message to the MO */
1340 ret = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1341 GSM48_MT_CC_CALL_PROC);
1342
1343 if (is_ipaccess_bts(msg->trx->bts))
1344 rsl_ipacc_bind(msg->lchan);
1345
1346 /* change TCH/F mode to voice */
1347 return gsm48_tx_chan_mode_modify(msg->lchan, GSM48_CMODE_SPEECH_EFR);
1348
1349err:
1350 /* FIXME: send some kind of RELEASE */
1351 return 0;
1352}
1353
1354static int gsm48_cc_rx_alerting(struct msgb *msg)
1355{
1356 struct gsm_call *call = &msg->lchan->call;
1357
1358 DEBUGP(DCC, "A -> ALERTING\n");
1359
1360 /* forward ALERTING to other party */
1361 if (!call->remote_lchan)
1362 return -EIO;
1363
1364 DEBUGP(DCC, "B <- ALERTING\n");
1365 return gsm48_tx_simple(call->remote_lchan, GSM48_PDISC_CC,
1366 GSM48_MT_CC_ALERTING);
1367}
1368
1369/* map two ipaccess RTP streams onto each other */
1370static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
1371{
1372 struct gsm_bts *bts = lchan->ts->trx->bts;
1373 struct gsm_bts *remote_bts = remote_lchan->ts->trx->bts;
1374 struct gsm_bts_trx_ts *ts;
1375
1376 DEBUGP(DCC, "Setting up TCH map between (bts=%u,trx=%u,ts=%u) and (bts=%u,trx=%u,ts=%u)\n",
1377 bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1378 remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr);
1379
1380 if (bts->type != remote_bts->type) {
1381 DEBUGP(DCC, "Cannot switch calls between different BTS types yet\n");
1382 return -EINVAL;
1383 }
1384
1385 switch (bts->type) {
1386 case GSM_BTS_TYPE_NANOBTS_900:
1387 case GSM_BTS_TYPE_NANOBTS_1800:
1388 ts = remote_lchan->ts;
1389 rsl_ipacc_connect(lchan, ts->abis_ip.bound_ip, ts->abis_ip.bound_port,
1390 lchan->ts->abis_ip.attr_f8, ts->abis_ip.attr_fc);
1391
1392 ts = lchan->ts;
1393 rsl_ipacc_connect(remote_lchan, ts->abis_ip.bound_ip, ts->abis_ip.bound_port,
1394 remote_lchan->ts->abis_ip.attr_f8, ts->abis_ip.attr_fc);
1395 break;
1396 case GSM_BTS_TYPE_BS11:
1397 trau_mux_map_lchan(lchan, remote_lchan);
1398 break;
1399 default:
1400 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
1401 break;
1402 }
1403
1404 return 0;
1405}
1406
1407static int gsm48_cc_rx_connect(struct msgb *msg)
1408{
1409 struct gsm_call *call = &msg->lchan->call;
1410 int rc;
1411
1412 DEBUGP(DCC, "A -> CONNECT\n");
1413
1414 rc = tch_map(msg->lchan, call->remote_lchan);
1415 if (rc)
1416 return -EIO;
1417
1418 if (!call->remote_lchan)
1419 return -EIO;
1420
1421 DEBUGP(DCC, "A <- CONNECT ACK\n");
1422 /* MT+MO: need to respond with CONNECT_ACK and pass on */
1423 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1424 GSM48_MT_CC_CONNECT_ACK);
1425
1426
1427 /* forward CONNECT to other party */
1428 DEBUGP(DCC, "B <- CONNECT\n");
1429 return gsm48_tx_simple(call->remote_lchan, GSM48_PDISC_CC,
1430 GSM48_MT_CC_CONNECT);
1431}
1432
1433static int gsm48_cc_rx_disconnect(struct msgb *msg)
1434{
1435 struct gsm_call *call = &msg->lchan->call;
1436 int rc;
1437
1438
1439 /* Section 5.4.3.2 */
1440 DEBUGP(DCC, "A -> DISCONNECT (state->RELEASE_REQ)\n");
1441 call->state = GSM_CSTATE_RELEASE_REQ;
1442 /* FIXME: clear the network connection */
1443 DEBUGP(DCC, "A <- RELEASE\n");
1444 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1445 GSM48_MT_CC_RELEASE);
1446
1447 /*
1448 * FIXME: This looks wrong! We should have a single
1449 * place to do MMCC-REL-CNF/-REQ/-IND and then switch
1450 * to the NULL state and relase the call
1451 */
1452 subscr_put_channel(msg->lchan);
1453
1454 /* forward DISCONNECT to other party */
1455 if (!call->remote_lchan)
1456 return -EIO;
1457
1458 DEBUGP(DCC, "B <- DISCONNECT\n");
1459 return gsm48_tx_simple(call->remote_lchan, GSM48_PDISC_CC,
1460 GSM48_MT_CC_DISCONNECT);
1461}
1462
1463static const u_int8_t calling_bcd[] = { 0xb9, 0x32, 0x24 };
1464
1465int gsm48_cc_tx_setup(struct gsm_lchan *lchan,
1466 struct gsm_subscriber *calling_subscr)
1467{
1468 struct msgb *msg = gsm48_msgb_alloc();
1469 struct gsm48_hdr *gh;
1470 struct gsm_call *call = &lchan->call;
1471 u_int8_t bcd_lv[19];
1472
1473 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1474
1475 call->type = GSM_CT_MT;
1476
1477 call->local_lchan = msg->lchan = lchan;
1478 use_lchan(lchan);
1479
1480 gh->proto_discr = GSM48_PDISC_CC;
1481 gh->msg_type = GSM48_MT_CC_SETUP;
1482
1483 msgb_tv_put(msg, GSM48_IE_SIGNAL, GSM48_SIGNAL_DIALTONE);
1484 if (calling_subscr) {
1485 encode_bcd_number(bcd_lv, sizeof(bcd_lv), 0xb9,
1486 calling_subscr->extension);
1487 msgb_tlv_put(msg, GSM48_IE_CALLING_BCD,
1488 bcd_lv[0], bcd_lv+1);
1489 }
1490 if (lchan->subscr) {
1491 encode_bcd_number(bcd_lv, sizeof(bcd_lv), 0xb9,
1492 lchan->subscr->extension);
1493 msgb_tlv_put(msg, GSM48_IE_CALLED_BCD,
1494 bcd_lv[0], bcd_lv+1);
1495 }
1496
1497 DEBUGP(DCC, "B <- SETUP\n");
1498
1499 return gsm48_sendmsg(msg);
1500}
1501
1502static int gsm0408_rcv_cc(struct msgb *msg)
1503{
1504 struct gsm48_hdr *gh = msgb_l3(msg);
1505 u_int8_t msg_type = gh->msg_type & 0xbf;
1506 struct gsm_call *call = &msg->lchan->call;
1507 int rc = 0;
1508
1509 switch (msg_type) {
1510 case GSM48_MT_CC_CALL_CONF:
1511 /* Response to SETUP */
1512 DEBUGP(DCC, "-> CALL CONFIRM\n");
1513 /* we now need to MODIFY the channel */
1514 rc = gsm48_tx_chan_mode_modify(msg->lchan, GSM48_CMODE_SPEECH_EFR);
1515 break;
1516 case GSM48_MT_CC_RELEASE_COMPL:
1517 /* Answer from MS to RELEASE */
1518 DEBUGP(DCC, "-> RELEASE COMPLETE (state->NULL)\n");
1519 call->state = GSM_CSTATE_NULL;
1520 break;
1521 case GSM48_MT_CC_ALERTING:
1522 rc = gsm48_cc_rx_alerting(msg);
1523 break;
1524 case GSM48_MT_CC_CONNECT:
1525 rc = gsm48_cc_rx_connect(msg);
1526 break;
1527 case GSM48_MT_CC_CONNECT_ACK:
1528 /* MO: Answer to CONNECT */
1529 call->state = GSM_CSTATE_ACTIVE;
1530 DEBUGP(DCC, "-> CONNECT_ACK (state->ACTIVE)\n");
1531 break;
1532 case GSM48_MT_CC_RELEASE:
1533 DEBUGP(DCC, "-> RELEASE\n");
1534 DEBUGP(DCC, "<- RELEASE_COMPLETE\n");
1535 /* need to respond with RELEASE_COMPLETE */
1536 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1537 GSM48_MT_CC_RELEASE_COMPL);
1538 subscr_put_channel(msg->lchan);
1539 call->state = GSM_CSTATE_NULL;
1540 break;
1541 case GSM48_MT_CC_STATUS_ENQ:
1542 rc = gsm48_cc_rx_status_enq(msg);
1543 break;
1544 case GSM48_MT_CC_DISCONNECT:
1545 rc = gsm48_cc_rx_disconnect(msg);
1546 break;
1547 case GSM48_MT_CC_SETUP:
1548 /* MO: wants to establish a call */
1549 rc = gsm48_cc_rx_setup(msg);
1550 break;
1551 case GSM48_MT_CC_EMERG_SETUP:
1552 DEBUGP(DCC, "-> EMERGENCY SETUP\n");
1553 /* FIXME: continue with CALL_PROCEEDING, ALERTING, CONNECT, RELEASE_COMPLETE */
1554 break;
1555 case GSM48_MT_CC_HOLD:
1556 DEBUGP(DCC, "-> HOLD (rejecting)\n");
1557 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1558 GSM48_MT_CC_HOLD_REJ);
1559 break;
1560 case GSM48_MT_CC_RETR:
1561 DEBUGP(DCC, "-> RETR (rejecting)\n");
1562 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1563 GSM48_MT_CC_RETR_REJ);
1564 break;
1565 default:
1566 fprintf(stderr, "Unimplemented GSM 04.08 CC msg type 0x%02x\n",
1567 msg_type);
1568 break;
1569 }
1570
1571 return rc;
1572}
1573
1574/* here we pass in a msgb from the RSL->RLL. We expect the l3 pointer to be set */
1575int gsm0408_rcvmsg(struct msgb *msg)
1576{
1577 struct gsm48_hdr *gh = msgb_l3(msg);
1578 u_int8_t pdisc = gh->proto_discr & 0x0f;
1579 int rc = 0;
1580
1581 switch (pdisc) {
1582 case GSM48_PDISC_CC:
1583 rc = gsm0408_rcv_cc(msg);
1584 break;
1585 case GSM48_PDISC_MM:
1586 rc = gsm0408_rcv_mm(msg);
1587 break;
1588 case GSM48_PDISC_RR:
1589 rc = gsm0408_rcv_rr(msg);
1590 break;
1591 case GSM48_PDISC_SMS:
1592 rc = gsm0411_rcv_sms(msg);
1593 break;
1594 case GSM48_PDISC_MM_GPRS:
1595 case GSM48_PDISC_SM_GPRS:
1596 fprintf(stderr, "Unimplemented GSM 04.08 discriminator 0x%02d\n",
1597 pdisc);
1598 break;
1599 default:
1600 fprintf(stderr, "Unknown GSM 04.08 discriminator 0x%02d\n",
1601 pdisc);
1602 break;
1603 }
1604
1605 return rc;
1606}
1607
1608enum chreq_type {
1609 CHREQ_T_EMERG_CALL,
1610 CHREQ_T_CALL_REEST_TCH_F,
1611 CHREQ_T_CALL_REEST_TCH_H,
1612 CHREQ_T_CALL_REEST_TCH_H_DBL,
1613 CHREQ_T_SDCCH,
1614 CHREQ_T_TCH_F,
1615 CHREQ_T_VOICE_CALL_TCH_H,
1616 CHREQ_T_DATA_CALL_TCH_H,
1617 CHREQ_T_LOCATION_UPD,
1618 CHREQ_T_PAG_R_ANY,
1619 CHREQ_T_PAG_R_TCH_F,
1620 CHREQ_T_PAG_R_TCH_FH,
1621};
1622
1623/* Section 9.1.8 / Table 9.9 */
1624struct chreq {
1625 u_int8_t val;
1626 u_int8_t mask;
1627 enum chreq_type type;
1628};
1629
1630/* If SYSTEM INFORMATION TYPE 4 NECI bit == 1 */
1631static const struct chreq chreq_type_neci1[] = {
1632 { 0xa0, 0xe0, CHREQ_T_EMERG_CALL },
1633 { 0xc0, 0xe0, CHREQ_T_CALL_REEST_TCH_F },
1634 { 0x68, 0xfc, CHREQ_T_CALL_REEST_TCH_H },
1635 { 0x6c, 0xfc, CHREQ_T_CALL_REEST_TCH_H_DBL },
1636 { 0xe0, 0xe0, CHREQ_T_SDCCH },
1637 { 0x40, 0xf0, CHREQ_T_VOICE_CALL_TCH_H },
1638 { 0x50, 0xf0, CHREQ_T_DATA_CALL_TCH_H },
1639 { 0x00, 0xf0, CHREQ_T_LOCATION_UPD },
1640 { 0x10, 0xf0, CHREQ_T_SDCCH },
1641 { 0x80, 0xe0, CHREQ_T_PAG_R_ANY },
1642 { 0x20, 0xf0, CHREQ_T_PAG_R_TCH_F },
1643 { 0x30, 0xf0, CHREQ_T_PAG_R_TCH_FH },
1644};
1645
1646/* If SYSTEM INFORMATION TYPE 4 NECI bit == 0 */
1647static const struct chreq chreq_type_neci0[] = {
1648 { 0xa0, 0xe0, CHREQ_T_EMERG_CALL },
1649 { 0xc0, 0xe0, CHREQ_T_CALL_REEST_TCH_H },
1650 { 0xe0, 0xe0, CHREQ_T_TCH_F },
1651 { 0x50, 0xf0, CHREQ_T_DATA_CALL_TCH_H },
1652 { 0x00, 0xe0, CHREQ_T_LOCATION_UPD },
1653 { 0x80, 0xe0, CHREQ_T_PAG_R_ANY },
1654 { 0x20, 0xf0, CHREQ_T_PAG_R_TCH_F },
1655 { 0x30, 0xf0, CHREQ_T_PAG_R_TCH_FH },
1656};
1657
1658static const enum gsm_chan_t ctype_by_chreq[] = {
1659 [CHREQ_T_EMERG_CALL] = GSM_LCHAN_TCH_F,
1660 [CHREQ_T_CALL_REEST_TCH_F] = GSM_LCHAN_TCH_F,
1661 [CHREQ_T_CALL_REEST_TCH_H] = GSM_LCHAN_TCH_H,
1662 [CHREQ_T_CALL_REEST_TCH_H_DBL] = GSM_LCHAN_TCH_H,
1663 [CHREQ_T_SDCCH] = GSM_LCHAN_SDCCH,
1664 [CHREQ_T_TCH_F] = GSM_LCHAN_TCH_F,
1665 [CHREQ_T_VOICE_CALL_TCH_H] = GSM_LCHAN_TCH_H,
1666 [CHREQ_T_DATA_CALL_TCH_H] = GSM_LCHAN_TCH_H,
1667 [CHREQ_T_LOCATION_UPD] = GSM_LCHAN_SDCCH,
1668 [CHREQ_T_PAG_R_ANY] = GSM_LCHAN_SDCCH,
1669 [CHREQ_T_PAG_R_TCH_F] = GSM_LCHAN_TCH_F,
1670 [CHREQ_T_PAG_R_TCH_FH] = GSM_LCHAN_TCH_F,
1671};
1672
1673static const enum gsm_chreq_reason_t reason_by_chreq[] = {
1674 [CHREQ_T_EMERG_CALL] = GSM_CHREQ_REASON_EMERG,
1675 [CHREQ_T_CALL_REEST_TCH_F] = GSM_CHREQ_REASON_CALL,
1676 [CHREQ_T_CALL_REEST_TCH_H] = GSM_CHREQ_REASON_CALL,
1677 [CHREQ_T_CALL_REEST_TCH_H_DBL] = GSM_CHREQ_REASON_CALL,
1678 [CHREQ_T_SDCCH] = GSM_CHREQ_REASON_OTHER,
1679 [CHREQ_T_TCH_F] = GSM_CHREQ_REASON_OTHER,
1680 [CHREQ_T_VOICE_CALL_TCH_H] = GSM_CHREQ_REASON_OTHER,
1681 [CHREQ_T_DATA_CALL_TCH_H] = GSM_CHREQ_REASON_OTHER,
1682 [CHREQ_T_LOCATION_UPD] = GSM_CHREQ_REASON_LOCATION_UPD,
1683 [CHREQ_T_PAG_R_ANY] = GSM_CHREQ_REASON_PAG,
1684 [CHREQ_T_PAG_R_TCH_F] = GSM_CHREQ_REASON_PAG,
1685 [CHREQ_T_PAG_R_TCH_FH] = GSM_CHREQ_REASON_PAG,
1686};
1687
1688enum gsm_chan_t get_ctype_by_chreq(struct gsm_bts *bts, u_int8_t ra)
1689{
1690 int i;
1691 /* FIXME: determine if we set NECI = 0 in the BTS SI4 */
1692
1693 for (i = 0; i < ARRAY_SIZE(chreq_type_neci0); i++) {
1694 const struct chreq *chr = &chreq_type_neci0[i];
1695 if ((ra & chr->mask) == chr->val)
1696 return ctype_by_chreq[chr->type];
1697 }
1698 fprintf(stderr, "Unknown CHANNEL REQUEST RQD 0x%02x\n", ra);
1699 return GSM_LCHAN_SDCCH;
1700}
1701
1702enum gsm_chreq_reason_t get_reason_by_chreq(struct gsm_bts *bts, u_int8_t ra)
1703{
1704 int i;
1705 /* FIXME: determine if we set NECI = 0 in the BTS SI4 */
1706
1707 for (i = 0; i < ARRAY_SIZE(chreq_type_neci0); i++) {
1708 const struct chreq *chr = &chreq_type_neci0[i];
1709 if ((ra & chr->mask) == chr->val)
1710 return reason_by_chreq[chr->type];
1711 }
1712 fprintf(stderr, "Unknown CHANNEL REQUEST REASON 0x%02x\n", ra);
1713 return GSM_CHREQ_REASON_OTHER;
1714}