blob: 83f38dd8b07b6ec85d681e29f8200934a07bccf8 [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001/* GSM Mobile Radio Interface Layer 3 messages on the A-bis interface
2 * 3GPP TS 04.08 version 7.21.0 Release 1998 / ETSI TS 100 940 V7.21.0 */
3
Harald Weltebf5e8df2009-02-03 12:59:45 +00004/* (C) 2008-2009 by Harald Welte <laforge@gnumonks.org>
Harald Welte498b0bb2009-01-09 21:27:43 +00005 * (C) 2008, 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte8470bf22008-12-25 23:28:35 +00006 *
Harald Welte52b1f982008-12-23 20:25:15 +00007 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29#include <errno.h>
Harald Weltedb253af2008-12-30 17:56:55 +000030#include <time.h>
Harald Welte4b634542008-12-27 01:55:51 +000031#include <netinet/in.h>
Harald Welte52b1f982008-12-23 20:25:15 +000032
Harald Welte75a983f2008-12-27 21:34:06 +000033#include <openbsc/db.h>
Harald Welte8470bf22008-12-25 23:28:35 +000034#include <openbsc/msgb.h>
Harald Welte7584aea2009-02-11 11:44:12 +000035#include <openbsc/tlv.h>
Harald Welte8470bf22008-12-25 23:28:35 +000036#include <openbsc/debug.h>
37#include <openbsc/gsm_data.h>
38#include <openbsc/gsm_subscriber.h>
Daniel Willmann8b3390e2008-12-28 00:31:09 +000039#include <openbsc/gsm_04_11.h>
Harald Welte8470bf22008-12-25 23:28:35 +000040#include <openbsc/gsm_04_08.h>
41#include <openbsc/abis_rsl.h>
Holger Freytherca362a62009-01-04 21:05:01 +000042#include <openbsc/chan_alloc.h>
Harald Welte0b4c34e2009-02-09 17:54:43 +000043#include <openbsc/paging.h>
Holger Freyther053e09d2009-02-14 22:51:06 +000044#include <openbsc/signal.h>
Harald Welte45b407a2009-05-23 15:51:12 +000045#include <openbsc/trau_frame.h>
Harald Welte11fa29c2009-02-19 17:24:39 +000046#include <openbsc/trau_mux.h>
Harald Welte52b1f982008-12-23 20:25:15 +000047
Harald Welte8470bf22008-12-25 23:28:35 +000048#define GSM48_ALLOC_SIZE 1024
49#define GSM48_ALLOC_HEADROOM 128
Harald Welte52b1f982008-12-23 20:25:15 +000050
Harald Welte09e38af2009-02-16 22:52:23 +000051static 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};
Harald Weltecf5b3592009-05-01 18:28:42 +000088
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
Harald Welte65e74cc2008-12-29 01:55:35 +0000121static int gsm48_tx_simple(struct gsm_lchan *lchan,
122 u_int8_t pdisc, u_int8_t msg_type);
Holger Freytherb7193e42008-12-29 17:44:08 +0000123static void schedule_reject(struct gsm_lchan *lchan);
Harald Welte65e74cc2008-12-29 01:55:35 +0000124
Harald Welte52b1f982008-12-23 20:25:15 +0000125struct gsm_lai {
126 u_int16_t mcc;
127 u_int16_t mnc;
128 u_int16_t lac;
129};
130
Holger Freyther89824fc2008-12-30 16:18:18 +0000131static int authorize_everonye = 0;
132void gsm0408_allow_everyone(int everyone)
133{
134 printf("Allowing everyone?\n");
135 authorize_everonye = everyone;
136}
137
Holger Freythere97f7fb2008-12-31 18:52:11 +0000138static int reject_cause = 0;
139void gsm0408_set_reject_cause(int cause)
140{
141 reject_cause = cause;
142}
143
Holger Freyther73487a22008-12-31 18:53:57 +0000144static int authorize_subscriber(struct gsm_loc_updating_operation *loc,
145 struct gsm_subscriber *subscriber)
Holger Freyther89824fc2008-12-30 16:18:18 +0000146{
147 if (!subscriber)
148 return 0;
149
Holger Freyther73487a22008-12-31 18:53:57 +0000150 /*
151 * Do not send accept yet as more information should arrive. Some
152 * phones will not send us the information and we will have to check
153 * what we want to do with that.
154 */
155 if (loc && (loc->waiting_for_imsi || loc->waiting_for_imei))
156 return 0;
157
Holger Freyther89824fc2008-12-30 16:18:18 +0000158 if (authorize_everonye)
159 return 1;
160
161 return subscriber->authorized;
162}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000163
Holger Freyther73487a22008-12-31 18:53:57 +0000164static void release_loc_updating_req(struct gsm_lchan *lchan)
165{
Harald Welte179f0642008-12-31 23:59:18 +0000166 if (!lchan->loc_operation)
Holger Freyther73487a22008-12-31 18:53:57 +0000167 return;
168
Harald Welteff117a82009-05-23 05:22:08 +0000169 bsc_del_timer(&lchan->loc_operation->updating_timer);
Holger Freyther73487a22008-12-31 18:53:57 +0000170 free(lchan->loc_operation);
171 lchan->loc_operation = 0;
Holger Freyther3eaa7922009-01-01 02:59:03 +0000172 put_lchan(lchan);
Holger Freyther73487a22008-12-31 18:53:57 +0000173}
174
175static void allocate_loc_updating_req(struct gsm_lchan *lchan)
176{
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000177 use_lchan(lchan);
Holger Freyther73487a22008-12-31 18:53:57 +0000178 release_loc_updating_req(lchan);
179
180 lchan->loc_operation = (struct gsm_loc_updating_operation *)
181 malloc(sizeof(*lchan->loc_operation));
182 memset(lchan->loc_operation, 0, sizeof(*lchan->loc_operation));
183}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000184
Holger Freyther7c19f742009-06-06 13:54:35 +0000185static int gsm0408_handle_lchan_signal(unsigned int subsys, unsigned int signal,
186 void *handler_data, void *signal_data)
187{
188 if (subsys != SS_LCHAN || signal != S_LCHAN_UNEXPECTED_RELEASE)
189 return 0;
190
191 /*
192 * Cancel any outstanding location updating request
193 * operation taking place on the lchan.
194 */
195 struct gsm_lchan *lchan = (struct gsm_lchan *)handler_data;
196 release_loc_updating_req(lchan);
197
198 return 0;
199}
200
201/*
202 * This will be ran by the linker when loading the DSO. We use it to
203 * do system initialization, e.g. registration of signal handlers.
204 */
205static __attribute__((constructor)) void on_dso_load_0408(void)
206{
207 register_signal_handler(SS_LCHAN, gsm0408_handle_lchan_signal, NULL);
208}
209
Harald Welte52b1f982008-12-23 20:25:15 +0000210static void to_bcd(u_int8_t *bcd, u_int16_t val)
211{
Harald Welte4b634542008-12-27 01:55:51 +0000212 bcd[2] = val % 10;
Harald Welte52b1f982008-12-23 20:25:15 +0000213 val = val / 10;
214 bcd[1] = val % 10;
215 val = val / 10;
Harald Welte4b634542008-12-27 01:55:51 +0000216 bcd[0] = val % 10;
Harald Welte52b1f982008-12-23 20:25:15 +0000217 val = val / 10;
218}
219
Holger Freyther17746612008-12-28 16:32:44 +0000220void gsm0408_generate_lai(struct gsm48_loc_area_id *lai48, u_int16_t mcc,
Harald Welte52b1f982008-12-23 20:25:15 +0000221 u_int16_t mnc, u_int16_t lac)
222{
223 u_int8_t bcd[3];
224
225 to_bcd(bcd, mcc);
226 lai48->digits[0] = bcd[0] | (bcd[1] << 4);
227 lai48->digits[1] = bcd[2];
228
229 to_bcd(bcd, mnc);
Harald Welte4b634542008-12-27 01:55:51 +0000230 /* FIXME: do we need three-digit MNC? See Table 10.5.3 */
231#if 0
Harald Welte8470bf22008-12-25 23:28:35 +0000232 lai48->digits[1] |= bcd[2] << 4;
233 lai48->digits[2] = bcd[0] | (bcd[1] << 4);
Harald Welte4b634542008-12-27 01:55:51 +0000234#else
235 lai48->digits[1] |= 0xf << 4;
236 lai48->digits[2] = bcd[1] | (bcd[2] << 4);
237#endif
Harald Welte52b1f982008-12-23 20:25:15 +0000238
Harald Welte4b634542008-12-27 01:55:51 +0000239 lai48->lac = htons(lac);
Harald Welte52b1f982008-12-23 20:25:15 +0000240}
241
Harald Welte255539c2008-12-28 02:26:27 +0000242#define TMSI_LEN 5
Harald Welte52b1f982008-12-23 20:25:15 +0000243#define MID_TMSI_LEN (TMSI_LEN + 2)
244
Harald Welte255539c2008-12-28 02:26:27 +0000245int generate_mid_from_tmsi(u_int8_t *buf, u_int32_t tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000246{
Harald Welte65e74cc2008-12-29 01:55:35 +0000247 u_int32_t *tptr = (u_int32_t *) &buf[3];
Harald Welte255539c2008-12-28 02:26:27 +0000248
Harald Welte4b634542008-12-27 01:55:51 +0000249 buf[0] = GSM48_IE_MOBILE_ID;
Harald Welte1a412182008-12-27 22:13:43 +0000250 buf[1] = TMSI_LEN;
Harald Welte4b634542008-12-27 01:55:51 +0000251 buf[2] = 0xf0 | GSM_MI_TYPE_TMSI;
Harald Welte255539c2008-12-28 02:26:27 +0000252 *tptr = htonl(tmsi);
253
254 return 7;
Harald Welte52b1f982008-12-23 20:25:15 +0000255}
256
Harald Welte09e38af2009-02-16 22:52:23 +0000257static const char bcd_num_digits[] = {
258 '0', '1', '2', '3', '4', '5', '6', '7',
259 '8', '9', '*', '#', 'a', 'b', 'c', '\0'
260};
261
262/* decode a 'called party BCD number' as in 10.5.4.7 */
263u_int8_t decode_bcd_number(char *output, int output_len, const u_int8_t *bcd_lv)
264{
265 u_int8_t in_len = bcd_lv[0];
266 int i;
267
268 if (in_len < 1)
269 return 0;
270
271 for (i = 2; i <= in_len; i++) {
272 /* lower nibble */
273 output_len--;
274 if (output_len <= 1)
275 break;
276 *output++ = bcd_num_digits[bcd_lv[i] & 0xf];
277
278 /* higher nibble */
279 output_len--;
280 if (output_len <= 1)
281 break;
282 *output++ = bcd_num_digits[bcd_lv[i] >> 4];
283 }
284 if (output_len >= 1)
285 *output++ = '\0';
286
287 /* return number type / calling plan */
288 return bcd_lv[1] & 0x3f;
289}
290
291/* convert a single ASCII character to call-control BCD */
292static int asc_to_bcd(const char asc)
293{
294 int i;
295
296 for (i = 0; i < ARRAY_SIZE(bcd_num_digits); i++) {
297 if (bcd_num_digits[i] == asc)
298 return i;
299 }
300 return -EINVAL;
301}
302
303/* convert a ASCII phone number to 'called party BCD number' */
304int encode_bcd_number(u_int8_t *bcd_lv, u_int8_t max_len,
305 u_int8_t type, const char *input)
306{
307 int in_len = strlen(input);
308 int i;
309 u_int8_t *bcd_cur = bcd_lv + 2;
310
311 if (in_len/2 + 1 > max_len)
312 return -EIO;
313
314 /* two digits per byte, plus type byte */
315 bcd_lv[0] = in_len/2 + 1;
316 if (in_len % 2)
317 bcd_lv[0]++;
318
319 /* if the caller wants to create a valid 'calling party BCD
320 * number', then the extension bit MUST NOT be set. For the
321 * 'called party BCD number' it MUST be set. *sigh */
322 bcd_lv[1] = type;
323
324 for (i = 0; i < in_len; i++) {
325 int rc = asc_to_bcd(input[i]);
326 if (rc < 0)
327 return rc;
328 if (i % 2 == 0)
329 *bcd_cur = rc;
330 else
331 *bcd_cur++ |= (rc << 4);
332 }
333 /* append padding nibble in case of odd length */
334 if (i % 2)
335 *bcd_cur++ |= 0xf0;
336
337 /* return how many bytes we used */
338 return (bcd_cur - bcd_lv);
339}
340
Holger Freyther819dd202009-01-04 03:52:50 +0000341struct msgb *gsm48_msgb_alloc(void)
Harald Welte8470bf22008-12-25 23:28:35 +0000342{
343 return msgb_alloc_headroom(GSM48_ALLOC_SIZE, GSM48_ALLOC_HEADROOM);
344}
345
Holger Freyther3e2c3232009-01-04 03:55:31 +0000346int gsm48_sendmsg(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000347{
Harald Welte65e74cc2008-12-29 01:55:35 +0000348 struct gsm48_hdr *gh = (struct gsm48_hdr *) msg->data;
349
350 if (msg->lchan) {
Harald Welte8470bf22008-12-25 23:28:35 +0000351 msg->trx = msg->lchan->ts->trx;
Harald Welte52b1f982008-12-23 20:25:15 +0000352
Harald Welte65e74cc2008-12-29 01:55:35 +0000353 if ((gh->proto_discr & GSM48_PDISC_MASK) == GSM48_PDISC_CC) {
354 /* Send a 04.08 call control message, add transaction
355 * ID and TI flag */
356 gh->proto_discr |= msg->lchan->call.transaction_id;
357
358 /* GSM 04.07 Section 11.2.3.1.3 */
359 switch (msg->lchan->call.type) {
360 case GSM_CT_MO:
361 gh->proto_discr |= 0x80;
362 break;
363 case GSM_CT_MT:
364 break;
Holger Freytherca362a62009-01-04 21:05:01 +0000365 case GSM_CT_NONE:
366 break;
Harald Welte65e74cc2008-12-29 01:55:35 +0000367 }
368 }
369 }
370
Harald Welte4b634542008-12-27 01:55:51 +0000371 msg->l3h = msg->data;
372
Harald Welte8470bf22008-12-25 23:28:35 +0000373 return rsl_data_request(msg, 0);
Harald Welte52b1f982008-12-23 20:25:15 +0000374}
375
Harald Welte52b1f982008-12-23 20:25:15 +0000376
Holger Freyther429e7762008-12-30 13:28:30 +0000377/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Harald Welte8470bf22008-12-25 23:28:35 +0000378int gsm0408_loc_upd_rej(struct gsm_lchan *lchan, u_int8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000379{
Harald Welte8470bf22008-12-25 23:28:35 +0000380 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000381 struct gsm48_hdr *gh;
382
Harald Welte8470bf22008-12-25 23:28:35 +0000383 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000384
385 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
386 gh->proto_discr = GSM48_PDISC_MM;
Harald Welte10b487b2008-12-27 19:53:37 +0000387 gh->msg_type = GSM48_MT_MM_LOC_UPD_REJECT;
Harald Welte52b1f982008-12-23 20:25:15 +0000388 gh->data[0] = cause;
389
Harald Weltedb253af2008-12-30 17:56:55 +0000390 DEBUGP(DMM, "-> LOCATION UPDATING REJECT on channel: %d\n", lchan->nr);
391
Harald Welte65e74cc2008-12-29 01:55:35 +0000392 return gsm48_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000393}
394
395/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Harald Welte75a983f2008-12-27 21:34:06 +0000396int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000397{
Harald Welte8470bf22008-12-25 23:28:35 +0000398 struct gsm_bts *bts = lchan->ts->trx->bts;
399 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000400 struct gsm48_hdr *gh;
401 struct gsm48_loc_area_id *lai;
402 u_int8_t *mid;
Holger Freyther07cc8d82008-12-29 06:23:46 +0000403 int ret;
Harald Welte52b1f982008-12-23 20:25:15 +0000404
Harald Welte8470bf22008-12-25 23:28:35 +0000405 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000406
407 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
408 gh->proto_discr = GSM48_PDISC_MM;
409 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
410
411 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Holger Freyther17746612008-12-28 16:32:44 +0000412 gsm0408_generate_lai(lai, bts->network->country_code,
Harald Welte52b1f982008-12-23 20:25:15 +0000413 bts->network->network_code, bts->location_area_code);
414
415 mid = msgb_put(msg, MID_TMSI_LEN);
416 generate_mid_from_tmsi(mid, tmsi);
417
418 DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n");
419
Harald Weltedb253af2008-12-30 17:56:55 +0000420 ret = gsm48_sendmsg(msg);
421
Harald Weltedb253af2008-12-30 17:56:55 +0000422 ret = gsm48_tx_mm_info(lchan);
Harald Weltedb253af2008-12-30 17:56:55 +0000423
Holger Freyther07cc8d82008-12-29 06:23:46 +0000424 return ret;
Harald Welte52b1f982008-12-23 20:25:15 +0000425}
426
Harald Weltefc977a82008-12-27 10:19:37 +0000427static char bcd2char(u_int8_t bcd)
428{
429 if (bcd < 0xa)
430 return '0' + bcd;
431 else
432 return 'A' + (bcd - 0xa);
433}
434
Harald Weltebf5e8df2009-02-03 12:59:45 +0000435/* Convert Mobile Identity (10.5.1.4) to string */
Harald Weltefc977a82008-12-27 10:19:37 +0000436static int mi_to_string(char *string, int str_len, u_int8_t *mi, int mi_len)
437{
438 int i;
439 u_int8_t mi_type;
440 char *str_cur = string;
Harald Welte4ed0e922009-01-10 03:17:30 +0000441 u_int32_t tmsi;
Harald Weltefc977a82008-12-27 10:19:37 +0000442
443 mi_type = mi[0] & GSM_MI_TYPE_MASK;
444
445 switch (mi_type) {
446 case GSM_MI_TYPE_NONE:
447 break;
448 case GSM_MI_TYPE_TMSI:
Harald Welte4ed0e922009-01-10 03:17:30 +0000449 /* Table 10.5.4.3, reverse generate_mid_from_tmsi */
450 if (mi_len == TMSI_LEN && mi[0] == (0xf0 | GSM_MI_TYPE_TMSI)) {
451 memcpy(&tmsi, &mi[1], 4);
452 tmsi = ntohl(tmsi);
453 return snprintf(string, str_len, "%u", tmsi);
Harald Weltefc977a82008-12-27 10:19:37 +0000454 }
455 break;
456 case GSM_MI_TYPE_IMSI:
457 case GSM_MI_TYPE_IMEI:
458 case GSM_MI_TYPE_IMEISV:
Harald Weltedb253af2008-12-30 17:56:55 +0000459 *str_cur++ = bcd2char(mi[0] >> 4);
460
461 for (i = 1; i < mi_len; i++) {
Harald Weltefc977a82008-12-27 10:19:37 +0000462 if (str_cur + 2 >= string + str_len)
463 return str_cur - string;
464 *str_cur++ = bcd2char(mi[i] & 0xf);
Harald Weltedb253af2008-12-30 17:56:55 +0000465 /* skip last nibble in last input byte when GSM_EVEN */
466 if( (i != mi_len-1) || (mi[0] & GSM_MI_ODD))
467 *str_cur++ = bcd2char(mi[i] >> 4);
Harald Weltefc977a82008-12-27 10:19:37 +0000468 }
469 break;
470 default:
471 break;
472 }
Harald Weltefc977a82008-12-27 10:19:37 +0000473 *str_cur++ = '\0';
Harald Weltedb253af2008-12-30 17:56:55 +0000474
Harald Weltefc977a82008-12-27 10:19:37 +0000475 return str_cur - string;
476}
477
Harald Weltebf5e8df2009-02-03 12:59:45 +0000478/* Transmit Chapter 9.2.10 Identity Request */
Harald Welte231ad4f2008-12-27 11:15:38 +0000479static int mm_tx_identity_req(struct gsm_lchan *lchan, u_int8_t id_type)
480{
481 struct msgb *msg = gsm48_msgb_alloc();
482 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000483
Harald Welte231ad4f2008-12-27 11:15:38 +0000484 msg->lchan = lchan;
485
486 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
487 gh->proto_discr = GSM48_PDISC_MM;
488 gh->msg_type = GSM48_MT_MM_ID_REQ;
489 gh->data[0] = id_type;
490
Harald Welte65e74cc2008-12-29 01:55:35 +0000491 return gsm48_sendmsg(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000492}
493
494#define MI_SIZE 32
495
Harald Weltebf5e8df2009-02-03 12:59:45 +0000496/* Parse Chapter 9.2.11 Identity Response */
Harald Welte231ad4f2008-12-27 11:15:38 +0000497static int mm_rx_id_resp(struct msgb *msg)
498{
499 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte75a983f2008-12-27 21:34:06 +0000500 struct gsm_lchan *lchan = msg->lchan;
Harald Welte231ad4f2008-12-27 11:15:38 +0000501 u_int8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
502 char mi_string[MI_SIZE];
Harald Welte75a983f2008-12-27 21:34:06 +0000503 u_int32_t tmsi;
Harald Welte231ad4f2008-12-27 11:15:38 +0000504
505 mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte61253062008-12-27 11:25:50 +0000506 DEBUGP(DMM, "IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
Harald Welte231ad4f2008-12-27 11:15:38 +0000507 mi_type, mi_string);
508
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000509 /*
510 * Rogue messages could trick us but so is life
511 */
512 put_lchan(lchan);
513
Harald Welte75a983f2008-12-27 21:34:06 +0000514 switch (mi_type) {
515 case GSM_MI_TYPE_IMSI:
516 if (!lchan->subscr)
517 lchan->subscr = db_create_subscriber(mi_string);
Holger Freyther73487a22008-12-31 18:53:57 +0000518 if (lchan->loc_operation)
519 lchan->loc_operation->waiting_for_imsi = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000520 break;
521 case GSM_MI_TYPE_IMEI:
Harald Welte255539c2008-12-28 02:26:27 +0000522 case GSM_MI_TYPE_IMEISV:
Harald Welte75a983f2008-12-27 21:34:06 +0000523 /* update subscribe <-> IMEI mapping */
524 if (lchan->subscr)
525 db_subscriber_assoc_imei(lchan->subscr, mi_string);
Holger Freyther73487a22008-12-31 18:53:57 +0000526 if (lchan->loc_operation)
527 lchan->loc_operation->waiting_for_imei = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000528 break;
529 }
Holger Freyther73487a22008-12-31 18:53:57 +0000530
531 /* Check if we can let the mobile station enter */
532 if (authorize_subscriber(lchan->loc_operation, lchan->subscr)) {
533 db_subscriber_alloc_tmsi(lchan->subscr);
534 tmsi = strtoul(lchan->subscr->tmsi, NULL, 10);
535 release_loc_updating_req(lchan);
536 return gsm0408_loc_upd_acc(msg->lchan, tmsi);
537 }
538
Harald Welte75a983f2008-12-27 21:34:06 +0000539 return 0;
Harald Welte231ad4f2008-12-27 11:15:38 +0000540}
541
Harald Welte255539c2008-12-28 02:26:27 +0000542
543static void loc_upd_rej_cb(void *data)
544{
545 struct gsm_lchan *lchan = data;
546
Holger Freyther73487a22008-12-31 18:53:57 +0000547 release_loc_updating_req(lchan);
Holger Freythere97f7fb2008-12-31 18:52:11 +0000548 gsm0408_loc_upd_rej(lchan, reject_cause);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000549 lchan_auto_release(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000550}
551
Holger Freytherb7193e42008-12-29 17:44:08 +0000552static void schedule_reject(struct gsm_lchan *lchan)
553{
Holger Freyther73487a22008-12-31 18:53:57 +0000554 lchan->loc_operation->updating_timer.cb = loc_upd_rej_cb;
555 lchan->loc_operation->updating_timer.data = lchan;
Harald Welteff117a82009-05-23 05:22:08 +0000556 bsc_schedule_timer(&lchan->loc_operation->updating_timer, 5, 0);
Holger Freytherb7193e42008-12-29 17:44:08 +0000557}
558
Harald Welte2a139372009-02-22 21:14:55 +0000559static const char *lupd_name(u_int8_t type)
560{
561 switch (type) {
562 case GSM48_LUPD_NORMAL:
563 return "NORMAL";
564 case GSM48_LUPD_PERIODIC:
565 return "PEROIDOC";
566 case GSM48_LUPD_IMSI_ATT:
567 return "IMSI ATTACH";
568 default:
569 return "UNKNOWN";
570 }
571}
572
Harald Welte231ad4f2008-12-27 11:15:38 +0000573#define MI_SIZE 32
Harald Weltebf5e8df2009-02-03 12:59:45 +0000574/* Chapter 9.2.15: Receive Location Updating Request */
Harald Welte231ad4f2008-12-27 11:15:38 +0000575static int mm_rx_loc_upd_req(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000576{
Harald Welte8470bf22008-12-25 23:28:35 +0000577 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte702d8702008-12-26 20:25:35 +0000578 struct gsm_bts *bts = msg->trx->bts;
Harald Welte52b1f982008-12-23 20:25:15 +0000579 struct gsm48_loc_upd_req *lu;
580 struct gsm_subscriber *subscr;
Harald Welte255539c2008-12-28 02:26:27 +0000581 struct gsm_lchan *lchan = msg->lchan;
Harald Welte8470bf22008-12-25 23:28:35 +0000582 u_int8_t mi_type;
Harald Welte75a983f2008-12-27 21:34:06 +0000583 u_int32_t tmsi;
Harald Welte231ad4f2008-12-27 11:15:38 +0000584 char mi_string[MI_SIZE];
585 int rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000586
Harald Welte8470bf22008-12-25 23:28:35 +0000587 lu = (struct gsm48_loc_upd_req *) gh->data;
588
589 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +0000590
Harald Weltefc977a82008-12-27 10:19:37 +0000591 mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
592
Holger Freyther79f4ae62009-06-02 03:25:04 +0000593 DEBUGP(DMM, "LUPDREQ: mi_type=0x%02x MI(%s) type=%s\n", mi_type, mi_string,
Harald Welte2a139372009-02-22 21:14:55 +0000594 lupd_name(lu->type));
Holger Freyther73487a22008-12-31 18:53:57 +0000595
Holger Freythereaf04692009-06-06 13:54:44 +0000596 /*
597 * Pseudo Spoof detection: Just drop a second/concurrent
598 * location updating request.
599 */
600 if (lchan->loc_operation) {
601 DEBUGP(DMM, "LUPDREQ: ignoring request due an existing one: %p.\n",
602 lchan->loc_operation);
603 gsm0408_loc_upd_rej(lchan, GSM48_REJECT_PROTOCOL_ERROR);
604 return 0;
605 }
606
Holger Freyther73487a22008-12-31 18:53:57 +0000607 allocate_loc_updating_req(lchan);
608
Harald Welte52b1f982008-12-23 20:25:15 +0000609 switch (mi_type) {
610 case GSM_MI_TYPE_IMSI:
Harald Welte231ad4f2008-12-27 11:15:38 +0000611 /* we always want the IMEI, too */
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000612 use_lchan(lchan);
Harald Welte015b9ad2009-02-28 18:22:03 +0000613 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
Holger Freyther73487a22008-12-31 18:53:57 +0000614 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000615
Harald Welte52b1f982008-12-23 20:25:15 +0000616 /* look up subscriber based on IMSI */
Harald Welte75a983f2008-12-27 21:34:06 +0000617 subscr = db_create_subscriber(mi_string);
Harald Welte4b634542008-12-27 01:55:51 +0000618 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000619 case GSM_MI_TYPE_TMSI:
Harald Welte231ad4f2008-12-27 11:15:38 +0000620 /* we always want the IMEI, too */
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000621 use_lchan(lchan);
Harald Welte015b9ad2009-02-28 18:22:03 +0000622 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
Holger Freyther73487a22008-12-31 18:53:57 +0000623 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000624
Harald Welte52b1f982008-12-23 20:25:15 +0000625 /* look up the subscriber based on TMSI, request IMSI if it fails */
Harald Welteba4cf162009-01-10 01:49:35 +0000626 subscr = subscr_get_by_tmsi(mi_string);
Harald Welte52b1f982008-12-23 20:25:15 +0000627 if (!subscr) {
Harald Welte231ad4f2008-12-27 11:15:38 +0000628 /* send IDENTITY REQUEST message to get IMSI */
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000629 use_lchan(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000630 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMSI);
Holger Freyther73487a22008-12-31 18:53:57 +0000631 lchan->loc_operation->waiting_for_imsi = 1;
Harald Welte52b1f982008-12-23 20:25:15 +0000632 }
633 break;
634 case GSM_MI_TYPE_IMEI:
635 case GSM_MI_TYPE_IMEISV:
636 /* no sim card... FIXME: what to do ? */
Harald Welte2a139372009-02-22 21:14:55 +0000637 DEBUGP(DMM, "unimplemented mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000638 break;
639 default:
Harald Welte2a139372009-02-22 21:14:55 +0000640 DEBUGP(DMM, "unknown mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000641 break;
642 }
643
Harald Welte255539c2008-12-28 02:26:27 +0000644 lchan->subscr = subscr;
645
Holger Freyther73487a22008-12-31 18:53:57 +0000646 /*
647 * Schedule the reject timer and check if we can let the
648 * subscriber into our network immediately or if we need to wait
649 * for identity responses.
650 */
651 schedule_reject(lchan);
652 if (!authorize_subscriber(lchan->loc_operation, subscr))
Harald Weltee872cb12009-01-01 00:33:37 +0000653 return 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000654
Harald Welte75a983f2008-12-27 21:34:06 +0000655 db_subscriber_alloc_tmsi(subscr);
Holger Freyther4a49e772009-04-12 05:37:29 +0000656 subscr_update(subscr, bts, GSM_SUBSCRIBER_UPDATE_ATTACHED);
Harald Welte8470bf22008-12-25 23:28:35 +0000657
Harald Welte255539c2008-12-28 02:26:27 +0000658 tmsi = strtoul(subscr->tmsi, NULL, 10);
659
Holger Freyther73487a22008-12-31 18:53:57 +0000660 release_loc_updating_req(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000661 return gsm0408_loc_upd_acc(lchan, tmsi);
Harald Welte52b1f982008-12-23 20:25:15 +0000662}
663
Harald Welte7584aea2009-02-11 11:44:12 +0000664/* 9.1.5 Channel mode modify */
665int gsm48_tx_chan_mode_modify(struct gsm_lchan *lchan, u_int8_t mode)
666{
667 struct msgb *msg = gsm48_msgb_alloc();
668 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
669 struct gsm48_chan_mode_modify *cmm =
670 (struct gsm48_chan_mode_modify *) msgb_put(msg, sizeof(*cmm));
Harald Welte4a543e82009-02-28 13:17:55 +0000671 u_int16_t arfcn = lchan->ts->trx->arfcn & 0x3ff;
Harald Welte7584aea2009-02-11 11:44:12 +0000672
Harald Welte4a543e82009-02-28 13:17:55 +0000673 DEBUGP(DRR, "-> CHANNEL MODE MODIFY mode=0x%02x\n", mode);
Harald Welte7ccf7782009-02-17 01:43:01 +0000674
Harald Welte45b407a2009-05-23 15:51:12 +0000675 lchan->tch_mode = mode;
Harald Welte7584aea2009-02-11 11:44:12 +0000676 msg->lchan = lchan;
677 gh->proto_discr = GSM48_PDISC_RR;
678 gh->msg_type = GSM48_MT_RR_CHAN_MODE_MODIF;
679
680 /* fill the channel information element, this code
681 * should probably be shared with rsl_rx_chan_rqd() */
682 cmm->chan_desc.chan_nr = lchan2chan_nr(lchan);
Harald Welte02b0e092009-02-28 13:11:07 +0000683 cmm->chan_desc.h0.tsc = lchan->ts->trx->bts->tsc;
Harald Welte7584aea2009-02-11 11:44:12 +0000684 cmm->chan_desc.h0.h = 0;
685 cmm->chan_desc.h0.arfcn_high = arfcn >> 8;
686 cmm->chan_desc.h0.arfcn_low = arfcn & 0xff;
687 cmm->mode = mode;
688
689 return gsm48_sendmsg(msg);
690}
691
Harald Weltedb253af2008-12-30 17:56:55 +0000692/* Section 9.2.15a */
693int gsm48_tx_mm_info(struct gsm_lchan *lchan)
694{
695 struct msgb *msg = gsm48_msgb_alloc();
696 struct gsm48_hdr *gh;
697 struct gsm_network *net = lchan->ts->trx->bts->network;
Harald Weltedb253af2008-12-30 17:56:55 +0000698 u_int8_t *ptr8;
699 u_int16_t *ptr16;
700 int name_len;
Harald Weltedb253af2008-12-30 17:56:55 +0000701 int i;
702
703 msg->lchan = lchan;
704
705 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
706 gh->proto_discr = GSM48_PDISC_MM;
707 gh->msg_type = GSM48_MT_MM_INFO;
708
709 if (net->name_long) {
710 name_len = strlen(net->name_long);
711 /* 10.5.3.5a */
712 ptr8 = msgb_put(msg, 3);
713 ptr8[0] = GSM48_IE_NAME_LONG;
714 ptr8[1] = name_len*2 +1;
715 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
716
717 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
718 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000719 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +0000720
721 /* FIXME: Use Cell Broadcast, not UCS-2, since
722 * UCS-2 is only supported by later revisions of the spec */
723 }
724
725 if (net->name_short) {
726 name_len = strlen(net->name_short);
727 /* 10.5.3.5a */
728 ptr8 = (u_int8_t *) msgb_put(msg, 3);
729 ptr8[0] = GSM48_IE_NAME_LONG;
730 ptr8[1] = name_len*2 + 1;
731 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
732
Harald Weltee872cb12009-01-01 00:33:37 +0000733 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +0000734 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +0000735 ptr16[i] = htons(net->name_short[i]);
Harald Weltedb253af2008-12-30 17:56:55 +0000736 }
737
738#if 0
Holger Freytherca362a62009-01-04 21:05:01 +0000739 /* move back to the top */
740 time_t cur_t;
741 struct tm* cur_time;
742 int tz15min;
Harald Weltedb253af2008-12-30 17:56:55 +0000743 /* Section 10.5.3.9 */
744 cur_t = time(NULL);
745 cur_time = gmtime(cur_t);
746 ptr8 = msgb_put(msg, 8);
747 ptr8[0] = GSM48_IE_NET_TIME_TZ;
748 ptr8[1] = to_bcd8(cur_time->tm_year % 100);
749 ptr8[2] = to_bcd8(cur_time->tm_mon);
750 ptr8[3] = to_bcd8(cur_time->tm_mday);
751 ptr8[4] = to_bcd8(cur_time->tm_hour);
752 ptr8[5] = to_bcd8(cur_time->tm_min);
753 ptr8[6] = to_bcd8(cur_time->tm_sec);
754 /* 02.42: coded as BCD encoded signed value in units of 15 minutes */
755 tz15min = (cur_time->tm_gmtoff)/(60*15);
756 ptr8[6] = to_bcd8(tz15min);
757 if (tz15min < 0)
758 ptr8[6] |= 0x80;
759#endif
760
761 return gsm48_sendmsg(msg);
762}
763
Harald Welte4b634542008-12-27 01:55:51 +0000764static int gsm48_tx_mm_serv_ack(struct gsm_lchan *lchan)
765{
Harald Welte4b634542008-12-27 01:55:51 +0000766 DEBUGP(DMM, "-> CM SERVICE ACK\n");
Harald Welte65e74cc2008-12-29 01:55:35 +0000767 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_ACC);
Harald Welte4b634542008-12-27 01:55:51 +0000768}
Harald Welteba4cf162009-01-10 01:49:35 +0000769
770/* 9.2.6 CM service reject */
771static int gsm48_tx_mm_serv_rej(struct gsm_lchan *lchan,
772 enum gsm48_reject_value value)
773{
774 struct msgb *msg = gsm48_msgb_alloc();
775 struct gsm48_hdr *gh;
776
777 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
778
779 msg->lchan = lchan;
780 use_lchan(lchan);
781
782 gh->proto_discr = GSM48_PDISC_MM;
783 gh->msg_type = GSM48_MT_MM_CM_SERV_REJ;
784 gh->data[0] = value;
785 DEBUGP(DMM, "-> CM SERVICE Reject cause: %d\n", value);
786
787 return gsm48_sendmsg(msg);
788}
789
Harald Welte4ed0e922009-01-10 03:17:30 +0000790
791/*
792 * Handle CM Service Requests
793 * a) Verify that the packet is long enough to contain the information
794 * we require otherwsie reject with INCORRECT_MESSAGE
795 * b) Try to parse the TMSI. If we do not have one reject
796 * c) Check that we know the subscriber with the TMSI otherwise reject
797 * with a HLR cause
798 * d) Set the subscriber on the gsm_lchan and accept
799 */
Harald Welte4b634542008-12-27 01:55:51 +0000800static int gsm48_rx_mm_serv_req(struct msgb *msg)
801{
Harald Welteba4cf162009-01-10 01:49:35 +0000802 u_int8_t mi_type;
Harald Welte4ed0e922009-01-10 03:17:30 +0000803 char mi_string[MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +0000804
Harald Welteba4cf162009-01-10 01:49:35 +0000805 struct gsm_subscriber *subscr;
806 struct gsm48_hdr *gh = msgb_l3(msg);
807 struct gsm48_service_request *req =
808 (struct gsm48_service_request *)gh->data;
Harald Weltec9e02182009-05-01 19:07:53 +0000809 /* unfortunately in Phase1 the classmar2 length is variable */
810 u_int8_t classmark2_len = gh->data[1];
811 u_int8_t *classmark2 = gh->data+2;
812 u_int8_t mi_len = *(classmark2 + classmark2_len);
813 u_int8_t *mi = (classmark2 + classmark2_len + 1);
Harald Welteba4cf162009-01-10 01:49:35 +0000814
Harald Weltec9e02182009-05-01 19:07:53 +0000815 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
Harald Welteba4cf162009-01-10 01:49:35 +0000816 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
Harald Weltec9e02182009-05-01 19:07:53 +0000817 DEBUGPC(DMM, "wrong sized message\n");
Harald Welteba4cf162009-01-10 01:49:35 +0000818 return gsm48_tx_mm_serv_rej(msg->lchan,
819 GSM48_REJECT_INCORRECT_MESSAGE);
820 }
821
822 if (msg->data_len < req->mi_len + 6) {
Harald Weltec9e02182009-05-01 19:07:53 +0000823 DEBUGPC(DMM, "does not fit in packet\n");
Harald Welteba4cf162009-01-10 01:49:35 +0000824 return gsm48_tx_mm_serv_rej(msg->lchan,
825 GSM48_REJECT_INCORRECT_MESSAGE);
826 }
827
Harald Weltec9e02182009-05-01 19:07:53 +0000828 mi_type = mi[0] & GSM_MI_TYPE_MASK;
Harald Welteba4cf162009-01-10 01:49:35 +0000829 if (mi_type != GSM_MI_TYPE_TMSI) {
Harald Weltec9e02182009-05-01 19:07:53 +0000830 DEBUGPC(DMM, "mi_type is not TMSI: %d\n", mi_type);
Harald Welteba4cf162009-01-10 01:49:35 +0000831 return gsm48_tx_mm_serv_rej(msg->lchan,
832 GSM48_REJECT_INCORRECT_MESSAGE);
833 }
834
Harald Weltec9e02182009-05-01 19:07:53 +0000835 mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
Harald Weltec9e02182009-05-01 19:07:53 +0000836 DEBUGPC(DMM, "serv_type=0x%02x mi_type=0x%02x M(%s)\n",
Harald Welte4ed0e922009-01-10 03:17:30 +0000837 req->cm_service_type, mi_type, mi_string);
Harald Weltebcae43f2008-12-27 21:45:37 +0000838
Holger Freythereb443982009-06-04 13:58:42 +0000839 subscr = subscr_get_by_tmsi(mi_string);
840
Harald Welte2a139372009-02-22 21:14:55 +0000841 /* FIXME: if we don't know the TMSI, inquire abit IMSI and allocate new TMSI */
Harald Welte4ed0e922009-01-10 03:17:30 +0000842 if (!subscr)
843 return gsm48_tx_mm_serv_rej(msg->lchan,
844 GSM48_REJECT_IMSI_UNKNOWN_IN_HLR);
845
846 if (!msg->lchan->subscr)
847 msg->lchan->subscr = subscr;
Harald Welte9bb7c702009-01-10 03:21:41 +0000848 else if (msg->lchan->subscr != subscr) {
849 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
850 subscr_put(subscr);
851 }
852
Harald Welte4b634542008-12-27 01:55:51 +0000853 return gsm48_tx_mm_serv_ack(msg->lchan);
854}
855
Harald Welte2a139372009-02-22 21:14:55 +0000856static int gsm48_rx_mm_imsi_detach_ind(struct msgb *msg)
857{
858 struct gsm48_hdr *gh = msgb_l3(msg);
859 struct gsm48_imsi_detach_ind *idi =
860 (struct gsm48_imsi_detach_ind *) gh->data;
861 u_int8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
862 char mi_string[MI_SIZE];
863 struct gsm_subscriber *subscr;
864
865 mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
866 DEBUGP(DMM, "IMSI DETACH INDICATION: mi_type=0x%02x MI(%s): ",
867 mi_type, mi_string);
868
869 switch (mi_type) {
870 case GSM_MI_TYPE_TMSI:
871 subscr = subscr_get_by_tmsi(mi_string);
872 break;
873 case GSM_MI_TYPE_IMSI:
874 subscr = subscr_get_by_imsi(mi_string);
875 break;
876 case GSM_MI_TYPE_IMEI:
877 case GSM_MI_TYPE_IMEISV:
878 /* no sim card... FIXME: what to do ? */
Holger Freyther79f4ae62009-06-02 03:25:04 +0000879 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +0000880 break;
881 default:
Holger Freyther79f4ae62009-06-02 03:25:04 +0000882 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +0000883 break;
884 }
885
Holger Freyther4a49e772009-04-12 05:37:29 +0000886 if (subscr) {
887 subscr_update(subscr, msg->trx->bts,
888 GSM_SUBSCRIBER_UPDATE_DETACHED);
Harald Welte2a139372009-02-22 21:14:55 +0000889 DEBUGP(DMM, "Subscriber: %s\n",
890 subscr->name ? subscr->name : subscr->imsi);
Holger Freytherc21cfbc2009-06-02 02:54:57 +0000891 subscr_put(subscr);
Holger Freyther4a49e772009-04-12 05:37:29 +0000892 } else
Harald Welte2a139372009-02-22 21:14:55 +0000893 DEBUGP(DMM, "Unknown Subscriber ?!?\n");
894
895 put_lchan(msg->lchan);
896
897 return 0;
898}
899
Harald Welted2a7f5a2009-06-05 20:08:20 +0000900static int gsm48_rx_mm_status(struct msgb *msg)
901{
902 struct gsm48_hdr *gh = msgb_l3(msg);
903
904 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
905
906 return 0;
907}
908
Harald Weltebf5e8df2009-02-03 12:59:45 +0000909/* Receive a GSM 04.08 Mobility Management (MM) message */
Harald Welte52b1f982008-12-23 20:25:15 +0000910static int gsm0408_rcv_mm(struct msgb *msg)
911{
912 struct gsm48_hdr *gh = msgb_l3(msg);
913 int rc;
914
915 switch (gh->msg_type & 0xbf) {
916 case GSM48_MT_MM_LOC_UPD_REQUEST:
Holger Freyther429e7762008-12-30 13:28:30 +0000917 DEBUGP(DMM, "LOCATION UPDATING REQUEST\n");
Harald Welte231ad4f2008-12-27 11:15:38 +0000918 rc = mm_rx_loc_upd_req(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000919 break;
920 case GSM48_MT_MM_ID_RESP:
Harald Welte231ad4f2008-12-27 11:15:38 +0000921 rc = mm_rx_id_resp(msg);
922 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000923 case GSM48_MT_MM_CM_SERV_REQ:
Harald Welte4b634542008-12-27 01:55:51 +0000924 rc = gsm48_rx_mm_serv_req(msg);
925 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000926 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +0000927 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000928 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000929 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte69b2af22009-01-06 19:47:00 +0000930 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
931 msg->lchan->subscr ?
932 msg->lchan->subscr->imsi :
933 "unknown subscriber");
934 break;
Harald Welte231ad4f2008-12-27 11:15:38 +0000935 case GSM48_MT_MM_IMSI_DETACH_IND:
Harald Welte2a139372009-02-22 21:14:55 +0000936 rc = gsm48_rx_mm_imsi_detach_ind(msg);
937 break;
938 case GSM48_MT_MM_CM_REEST_REQ:
939 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
940 break;
941 case GSM48_MT_MM_AUTH_RESP:
942 DEBUGP(DMM, "AUTHENTICATION RESPONSE: Not implemented\n");
Harald Welte52b1f982008-12-23 20:25:15 +0000943 break;
944 default:
945 fprintf(stderr, "Unknown GSM 04.08 MM msg type 0x%02x\n",
946 gh->msg_type);
947 break;
948 }
949
950 return rc;
951}
Harald Weltebf5e8df2009-02-03 12:59:45 +0000952
Harald Welte2d35ae62009-02-06 12:02:13 +0000953/* Receive a PAGING RESPONSE message from the MS */
954static int gsm48_rr_rx_pag_resp(struct msgb *msg)
955{
956 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte61548982009-02-22 21:26:29 +0000957 u_int8_t *classmark2_lv = gh->data + 1;
958 u_int8_t *mi_lv = gh->data + 2 + *classmark2_lv;
959 u_int8_t mi_type = mi_lv[1] & GSM_MI_TYPE_MASK;
Harald Welte2d35ae62009-02-06 12:02:13 +0000960 char mi_string[MI_SIZE];
961 struct gsm_subscriber *subscr;
Harald Welte595ad7b2009-02-16 22:05:44 +0000962 struct paging_signal_data sig_data;
Harald Welte2d35ae62009-02-06 12:02:13 +0000963 int rc = 0;
964
Harald Welte61548982009-02-22 21:26:29 +0000965 mi_to_string(mi_string, sizeof(mi_string), mi_lv+1, *mi_lv);
Harald Welte2d35ae62009-02-06 12:02:13 +0000966 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
967 mi_type, mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +0000968 switch (mi_type) {
969 case GSM_MI_TYPE_TMSI:
970 subscr = subscr_get_by_tmsi(mi_string);
971 break;
972 case GSM_MI_TYPE_IMSI:
973 subscr = subscr_get_by_imsi(mi_string);
974 break;
975 }
Harald Welte2d35ae62009-02-06 12:02:13 +0000976
977 if (!subscr) {
978 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte09e38af2009-02-16 22:52:23 +0000979 /* FIXME: request id? close channel? */
Harald Welte2d35ae62009-02-06 12:02:13 +0000980 return -EINVAL;
981 }
982 DEBUGP(DRR, "<- Channel was requested by %s\n",
983 subscr->name ? subscr->name : subscr->imsi);
Holger Freyther053e09d2009-02-14 22:51:06 +0000984
Holger Freytherc21cfbc2009-06-02 02:54:57 +0000985 if (!msg->lchan->subscr) {
Holger Freyther2fa4cb52009-02-14 23:53:15 +0000986 msg->lchan->subscr = subscr;
Holger Freytherc21cfbc2009-06-02 02:54:57 +0000987 } else if (msg->lchan->subscr != subscr) {
Holger Freyther2fa4cb52009-02-14 23:53:15 +0000988 DEBUGP(DRR, "<- Channel already owned by someone else?\n");
989 subscr_put(subscr);
Holger Freytherc21cfbc2009-06-02 02:54:57 +0000990 return -EINVAL;
991 } else {
992 DEBUGP(DRR, "<- Channel already owned by us\n");
993 subscr_put(subscr);
994 subscr = msg->lchan->subscr;
Holger Freyther2fa4cb52009-02-14 23:53:15 +0000995 }
996
Harald Welte595ad7b2009-02-16 22:05:44 +0000997 sig_data.subscr = subscr;
998 sig_data.bts = msg->lchan->ts->trx->bts;
999 sig_data.lchan = msg->lchan;
1000
1001 dispatch_signal(SS_PAGING, S_PAGING_COMPLETED, &sig_data);
Harald Welte7ccf7782009-02-17 01:43:01 +00001002 paging_request_stop(msg->trx->bts, subscr, msg->lchan);
Harald Welte2d35ae62009-02-06 12:02:13 +00001003
Harald Welte7584aea2009-02-11 11:44:12 +00001004 /* FIXME: somehow signal the completion of the PAGING to
1005 * the entity that requested the paging */
1006
Harald Welte2d35ae62009-02-06 12:02:13 +00001007 return rc;
1008}
1009
Harald Weltecf5b3592009-05-01 18:28:42 +00001010static int gsm48_rx_rr_status(struct msgb *msg)
1011{
1012 struct gsm48_hdr *gh = msgb_l3(msg);
1013
1014 DEBUGP(DRR, "STATUS rr_cause = %s\n",
1015 rr_cause_name(gh->data[0]));
1016
1017 return 0;
1018}
1019
Harald Weltebf5e8df2009-02-03 12:59:45 +00001020/* Receive a GSM 04.08 Radio Resource (RR) message */
Harald Welte52b1f982008-12-23 20:25:15 +00001021static int gsm0408_rcv_rr(struct msgb *msg)
1022{
1023 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001024 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001025
1026 switch (gh->msg_type) {
1027 case GSM48_MT_RR_CLSM_CHG:
1028 DEBUGP(DRR, "CLASSMARK CHANGE\n");
1029 /* FIXME: what to do ?!? */
1030 break;
Harald Weltefc977a82008-12-27 10:19:37 +00001031 case GSM48_MT_RR_GPRS_SUSP_REQ:
1032 DEBUGP(DRR, "GRPS SUSPEND REQUEST\n");
1033 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001034 case GSM48_MT_RR_PAG_RESP:
Harald Welte2d35ae62009-02-06 12:02:13 +00001035 rc = gsm48_rr_rx_pag_resp(msg);
1036 break;
Harald Welte7ccf7782009-02-17 01:43:01 +00001037 case GSM48_MT_RR_CHAN_MODE_MODIF_ACK:
1038 DEBUGP(DRR, "CHANNEL MODE MODIFY ACK\n");
Harald Welte2c38aa82009-02-18 03:44:24 +00001039 rc = rsl_chan_mode_modify_req(msg->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00001040 break;
Harald Weltecf5b3592009-05-01 18:28:42 +00001041 case GSM48_MT_RR_STATUS:
1042 rc = gsm48_rx_rr_status(msg);
1043 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001044 default:
Harald Welte2d35ae62009-02-06 12:02:13 +00001045 fprintf(stderr, "Unimplemented GSM 04.08 RR msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00001046 gh->msg_type);
1047 break;
1048 }
1049
Harald Welte2d35ae62009-02-06 12:02:13 +00001050 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001051}
1052
Holger Freythere64a7a32009-02-06 21:55:37 +00001053/* 7.1.7 and 9.1.7 Channel release*/
1054int gsm48_send_rr_release(struct gsm_lchan *lchan)
1055{
1056 struct msgb *msg = gsm48_msgb_alloc();
1057 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1058 u_int8_t *cause;
1059
1060 msg->lchan = lchan;
1061 gh->proto_discr = GSM48_PDISC_RR;
1062 gh->msg_type = GSM48_MT_RR_CHAN_REL;
1063
1064 cause = msgb_put(msg, 1);
1065 cause[0] = GSM48_RR_CAUSE_NORMAL;
1066
1067 DEBUGP(DRR, "Sending Channel Release: Chan: Number: %d Type: %d\n",
1068 lchan->nr, lchan->type);
1069
1070 return gsm48_sendmsg(msg);
1071}
1072
Harald Welte4bc90a12008-12-27 16:32:52 +00001073/* Call Control */
1074
Harald Welte7584aea2009-02-11 11:44:12 +00001075/* The entire call control code is written in accordance with Figure 7.10c
1076 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1077 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1078 * it for voice */
1079
Harald Welte4bc90a12008-12-27 16:32:52 +00001080static int gsm48_cc_tx_status(struct gsm_lchan *lchan)
1081{
1082 struct msgb *msg = gsm48_msgb_alloc();
1083 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1084 u_int8_t *cause, *call_state;
1085
Harald Welte65e74cc2008-12-29 01:55:35 +00001086 gh->proto_discr = GSM48_PDISC_CC;
1087
Harald Welte4bc90a12008-12-27 16:32:52 +00001088 msg->lchan = lchan;
1089
Harald Welte4bc90a12008-12-27 16:32:52 +00001090 gh->msg_type = GSM48_MT_CC_STATUS;
1091
1092 cause = msgb_put(msg, 3);
1093 cause[0] = 2;
1094 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1095 cause[2] = 0x80 | 30; /* response to status inquiry */
1096
1097 call_state = msgb_put(msg, 1);
1098 call_state[0] = 0xc0 | 0x00;
1099
Harald Welte65e74cc2008-12-29 01:55:35 +00001100 return gsm48_sendmsg(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00001101}
1102
Harald Welte6f4b7532008-12-29 00:39:37 +00001103static int gsm48_tx_simple(struct gsm_lchan *lchan,
1104 u_int8_t pdisc, u_int8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001105{
1106 struct msgb *msg = gsm48_msgb_alloc();
1107 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1108
1109 msg->lchan = lchan;
1110
Harald Welte6f4b7532008-12-29 00:39:37 +00001111 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001112 gh->msg_type = msg_type;
1113
Harald Welte65e74cc2008-12-29 01:55:35 +00001114 return gsm48_sendmsg(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00001115}
1116
Harald Welte09e38af2009-02-16 22:52:23 +00001117/* call-back from paging the B-end of the connection */
1118static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Harald Welte7ccf7782009-02-17 01:43:01 +00001119 struct msgb *msg, void *_lchan, void *param)
Harald Welte09e38af2009-02-16 22:52:23 +00001120{
Harald Welte7ccf7782009-02-17 01:43:01 +00001121 struct gsm_lchan *lchan = _lchan;
Harald Welte49f48b82009-02-17 15:29:33 +00001122 struct gsm_call *remote_call = param;
1123 struct gsm_call *call = &lchan->call;
Harald Welte7ccf7782009-02-17 01:43:01 +00001124 int rc = 0;
Harald Welte09e38af2009-02-16 22:52:23 +00001125
1126 if (hooknum != GSM_HOOK_RR_PAGING)
1127 return -EINVAL;
1128
1129 switch (event) {
1130 case GSM_PAGING_SUCCEEDED:
Harald Welte7ccf7782009-02-17 01:43:01 +00001131 DEBUGP(DCC, "paging succeeded!\n");
Harald Welte49f48b82009-02-17 15:29:33 +00001132 remote_call->remote_lchan = lchan;
1133 call->remote_lchan = remote_call->local_lchan;
Harald Welte09e38af2009-02-16 22:52:23 +00001134 /* send SETUP request to called party */
Harald Welte49f48b82009-02-17 15:29:33 +00001135 rc = gsm48_cc_tx_setup(lchan, call->remote_lchan->subscr);
1136 if (is_ipaccess_bts(lchan->ts->trx->bts))
1137 rsl_ipacc_bind(lchan);
Harald Welte09e38af2009-02-16 22:52:23 +00001138 break;
1139 case GSM_PAGING_EXPIRED:
Harald Welte7ccf7782009-02-17 01:43:01 +00001140 DEBUGP(DCC, "paging expired!\n");
Harald Welte09e38af2009-02-16 22:52:23 +00001141 /* notify caller that we cannot reach called party */
Harald Welte7ccf7782009-02-17 01:43:01 +00001142 /* FIXME: correct cause, etc */
Harald Weltebfaf0972009-02-17 17:43:33 +00001143 rc = gsm48_tx_simple(remote_call->local_lchan, GSM48_PDISC_CC,
Harald Welte7ccf7782009-02-17 01:43:01 +00001144 GSM48_MT_CC_RELEASE_COMPL);
Harald Welte09e38af2009-02-16 22:52:23 +00001145 break;
1146 }
Harald Welte7ccf7782009-02-17 01:43:01 +00001147 return rc;
Harald Welte09e38af2009-02-16 22:52:23 +00001148}
1149
Harald Welte4bc90a12008-12-27 16:32:52 +00001150static int gsm48_cc_rx_status_enq(struct msgb *msg)
1151{
Harald Welte4a543e82009-02-28 13:17:55 +00001152 DEBUGP(DCC, "-> STATUS ENQ\n");
Harald Welte4bc90a12008-12-27 16:32:52 +00001153 return gsm48_cc_tx_status(msg->lchan);
1154}
1155
1156static int gsm48_cc_rx_setup(struct msgb *msg)
1157{
Harald Welte7584aea2009-02-11 11:44:12 +00001158 struct gsm_call *call = &msg->lchan->call;
1159 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte09e38af2009-02-16 22:52:23 +00001160 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
Harald Welte7584aea2009-02-11 11:44:12 +00001161 struct gsm_subscriber *called_subscr;
Harald Welte09e38af2009-02-16 22:52:23 +00001162 char called_number[(43-2)*2 + 1] = "\0";
1163 struct tlv_parsed tp;
1164 u_int8_t num_type;
Harald Welte7584aea2009-02-11 11:44:12 +00001165 int ret;
1166
1167 if (call->state == GSM_CSTATE_NULL ||
1168 call->state == GSM_CSTATE_RELEASE_REQ)
1169 use_lchan(msg->lchan);
1170
1171 call->type = GSM_CT_MO;
1172 call->state = GSM_CSTATE_INITIATED;
Harald Welte49f48b82009-02-17 15:29:33 +00001173 call->local_lchan = msg->lchan;
Harald Welte7584aea2009-02-11 11:44:12 +00001174 call->transaction_id = gh->proto_discr & 0xf0;
1175
Harald Weltea4d49e92009-05-23 06:39:58 +00001176 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
Harald Welte09e38af2009-02-16 22:52:23 +00001177 if (!TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD))
1178 goto err;
Harald Welte7584aea2009-02-11 11:44:12 +00001179
Harald Welte09e38af2009-02-16 22:52:23 +00001180 /* Parse the number that was dialed and lookup subscriber */
1181 num_type = decode_bcd_number(called_number, sizeof(called_number),
1182 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
Harald Welte7ccf7782009-02-17 01:43:01 +00001183
Harald Welte4b458152009-02-17 13:23:06 +00001184 DEBUGP(DCC, "A -> SETUP(tid=0x%02x,number='%s')\n", call->transaction_id,
Harald Welte7ccf7782009-02-17 01:43:01 +00001185 called_number);
1186
Harald Welte09e38af2009-02-16 22:52:23 +00001187 called_subscr = subscr_get_by_extension(called_number);
Harald Welte7584aea2009-02-11 11:44:12 +00001188 if (!called_subscr) {
1189 DEBUGP(DCC, "could not find subscriber, RELEASE\n");
1190 put_lchan(msg->lchan);
1191 return gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
Harald Welte4b458152009-02-17 13:23:06 +00001192 GSM48_MT_CC_RELEASE_COMPL);
Harald Welte7584aea2009-02-11 11:44:12 +00001193 }
Harald Welte5a065df2009-02-22 21:13:18 +00001194 if (called_subscr == msg->lchan->subscr) {
1195 DEBUGP(DCC, "subscriber calling himself ?!?\n");
1196 put_lchan(msg->lchan);
1197 subscr_put(called_subscr);
1198 return gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1199 GSM48_MT_CC_RELEASE_COMPL);
1200 }
Harald Welte7584aea2009-02-11 11:44:12 +00001201
Harald Welte09e38af2009-02-16 22:52:23 +00001202 subscr_get(msg->lchan->subscr);
Harald Welte09e38af2009-02-16 22:52:23 +00001203 call->called_subscr = called_subscr;
1204
Harald Welte7584aea2009-02-11 11:44:12 +00001205 /* start paging of the receiving end of the call */
Harald Weltee7b452a2009-05-23 06:34:37 +00001206 /* FIXME: we're assuming that the receiver is at the same BTS
1207 * than we are, which is obviously a wrong assumption in multi-BTS
1208 * case */
Harald Welte09e38af2009-02-16 22:52:23 +00001209 paging_request(msg->trx->bts, called_subscr, RSL_CHANNEED_TCH_F,
1210 setup_trig_pag_evt, call);
Harald Welte7584aea2009-02-11 11:44:12 +00001211
1212 /* send a CALL PROCEEDING message to the MO */
1213 ret = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1214 GSM48_MT_CC_CALL_PROC);
1215
Harald Welte49f48b82009-02-17 15:29:33 +00001216 if (is_ipaccess_bts(msg->trx->bts))
1217 rsl_ipacc_bind(msg->lchan);
1218
Harald Welte7584aea2009-02-11 11:44:12 +00001219 /* change TCH/F mode to voice */
Harald Welte2c38aa82009-02-18 03:44:24 +00001220 return gsm48_tx_chan_mode_modify(msg->lchan, GSM48_CMODE_SPEECH_EFR);
Harald Welte09e38af2009-02-16 22:52:23 +00001221
1222err:
1223 /* FIXME: send some kind of RELEASE */
1224 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001225}
Harald Welte7584aea2009-02-11 11:44:12 +00001226
Harald Welte7ccf7782009-02-17 01:43:01 +00001227static int gsm48_cc_rx_alerting(struct msgb *msg)
1228{
1229 struct gsm_call *call = &msg->lchan->call;
Harald Welte4bc90a12008-12-27 16:32:52 +00001230
Harald Welte4b458152009-02-17 13:23:06 +00001231 DEBUGP(DCC, "A -> ALERTING\n");
Harald Welte7ccf7782009-02-17 01:43:01 +00001232
1233 /* forward ALERTING to other party */
Harald Welte49f48b82009-02-17 15:29:33 +00001234 if (!call->remote_lchan)
Harald Welte7ccf7782009-02-17 01:43:01 +00001235 return -EIO;
1236
Harald Welte4b458152009-02-17 13:23:06 +00001237 DEBUGP(DCC, "B <- ALERTING\n");
Harald Welte49f48b82009-02-17 15:29:33 +00001238 return gsm48_tx_simple(call->remote_lchan, GSM48_PDISC_CC,
Harald Welte7ccf7782009-02-17 01:43:01 +00001239 GSM48_MT_CC_ALERTING);
1240}
1241
Harald Welte49f48b82009-02-17 15:29:33 +00001242/* map two ipaccess RTP streams onto each other */
Harald Welte11fa29c2009-02-19 17:24:39 +00001243static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
Harald Welte49f48b82009-02-17 15:29:33 +00001244{
Harald Welte11fa29c2009-02-19 17:24:39 +00001245 struct gsm_bts *bts = lchan->ts->trx->bts;
1246 struct gsm_bts *remote_bts = remote_lchan->ts->trx->bts;
Harald Welte49f48b82009-02-17 15:29:33 +00001247 struct gsm_bts_trx_ts *ts;
1248
Harald Welte11fa29c2009-02-19 17:24:39 +00001249 DEBUGP(DCC, "Setting up TCH map between (bts=%u,trx=%u,ts=%u) and (bts=%u,trx=%u,ts=%u)\n",
1250 bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1251 remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr);
1252
1253 if (bts->type != remote_bts->type) {
1254 DEBUGP(DCC, "Cannot switch calls between different BTS types yet\n");
1255 return -EINVAL;
1256 }
Harald Welte49f48b82009-02-17 15:29:33 +00001257
Harald Welte11fa29c2009-02-19 17:24:39 +00001258 switch (bts->type) {
1259 case GSM_BTS_TYPE_NANOBTS_900:
1260 case GSM_BTS_TYPE_NANOBTS_1800:
1261 ts = remote_lchan->ts;
1262 rsl_ipacc_connect(lchan, ts->abis_ip.bound_ip, ts->abis_ip.bound_port,
1263 lchan->ts->abis_ip.attr_f8, ts->abis_ip.attr_fc);
1264
1265 ts = lchan->ts;
1266 rsl_ipacc_connect(remote_lchan, ts->abis_ip.bound_ip, ts->abis_ip.bound_port,
1267 remote_lchan->ts->abis_ip.attr_f8, ts->abis_ip.attr_fc);
1268 break;
1269 case GSM_BTS_TYPE_BS11:
1270 trau_mux_map_lchan(lchan, remote_lchan);
1271 break;
1272 default:
1273 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
1274 break;
1275 }
Harald Welte49f48b82009-02-17 15:29:33 +00001276
1277 return 0;
1278}
1279
Harald Welte7ccf7782009-02-17 01:43:01 +00001280static int gsm48_cc_rx_connect(struct msgb *msg)
1281{
1282 struct gsm_call *call = &msg->lchan->call;
Harald Welte7ccf7782009-02-17 01:43:01 +00001283 int rc;
1284
Harald Welte4b458152009-02-17 13:23:06 +00001285 DEBUGP(DCC, "A -> CONNECT\n");
Harald Welte11fa29c2009-02-19 17:24:39 +00001286
1287 rc = tch_map(msg->lchan, call->remote_lchan);
1288 if (rc)
1289 return -EIO;
1290
1291 if (!call->remote_lchan)
1292 return -EIO;
1293
Harald Welte4b458152009-02-17 13:23:06 +00001294 DEBUGP(DCC, "A <- CONNECT ACK\n");
Harald Welte7ccf7782009-02-17 01:43:01 +00001295 /* MT+MO: need to respond with CONNECT_ACK and pass on */
1296 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
Harald Welte4b458152009-02-17 13:23:06 +00001297 GSM48_MT_CC_CONNECT_ACK);
Harald Welte7ccf7782009-02-17 01:43:01 +00001298
Harald Welte49f48b82009-02-17 15:29:33 +00001299
1300 /* forward CONNECT to other party */
Harald Welte4b458152009-02-17 13:23:06 +00001301 DEBUGP(DCC, "B <- CONNECT\n");
Harald Welte49f48b82009-02-17 15:29:33 +00001302 return gsm48_tx_simple(call->remote_lchan, GSM48_PDISC_CC,
Harald Welte4b458152009-02-17 13:23:06 +00001303 GSM48_MT_CC_CONNECT);
Harald Welte7ccf7782009-02-17 01:43:01 +00001304}
1305
1306static int gsm48_cc_rx_disconnect(struct msgb *msg)
1307{
1308 struct gsm_call *call = &msg->lchan->call;
Harald Welte7ccf7782009-02-17 01:43:01 +00001309 int rc;
1310
1311
1312 /* Section 5.4.3.2 */
Harald Welte4b458152009-02-17 13:23:06 +00001313 DEBUGP(DCC, "A -> DISCONNECT (state->RELEASE_REQ)\n");
Harald Welte7ccf7782009-02-17 01:43:01 +00001314 call->state = GSM_CSTATE_RELEASE_REQ;
Harald Welte7ccf7782009-02-17 01:43:01 +00001315 /* FIXME: clear the network connection */
Harald Welte4b458152009-02-17 13:23:06 +00001316 DEBUGP(DCC, "A <- RELEASE\n");
Harald Welte7ccf7782009-02-17 01:43:01 +00001317 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1318 GSM48_MT_CC_RELEASE);
Holger Freythera1f92f02009-04-12 05:37:52 +00001319
1320 /*
1321 * FIXME: This looks wrong! We should have a single
1322 * place to do MMCC-REL-CNF/-REQ/-IND and then switch
1323 * to the NULL state and relase the call
1324 */
1325 subscr_put_channel(msg->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00001326
1327 /* forward DISCONNECT to other party */
Harald Welte49f48b82009-02-17 15:29:33 +00001328 if (!call->remote_lchan)
Harald Welte7ccf7782009-02-17 01:43:01 +00001329 return -EIO;
1330
Harald Welte4b458152009-02-17 13:23:06 +00001331 DEBUGP(DCC, "B <- DISCONNECT\n");
Harald Welte49f48b82009-02-17 15:29:33 +00001332 return gsm48_tx_simple(call->remote_lchan, GSM48_PDISC_CC,
Harald Welte7ccf7782009-02-17 01:43:01 +00001333 GSM48_MT_CC_DISCONNECT);
1334}
1335
1336static const u_int8_t calling_bcd[] = { 0xb9, 0x32, 0x24 };
1337
Harald Welte49f48b82009-02-17 15:29:33 +00001338int gsm48_cc_tx_setup(struct gsm_lchan *lchan,
1339 struct gsm_subscriber *calling_subscr)
Harald Welte65e74cc2008-12-29 01:55:35 +00001340{
1341 struct msgb *msg = gsm48_msgb_alloc();
1342 struct gsm48_hdr *gh;
1343 struct gsm_call *call = &lchan->call;
Harald Welte7ccf7782009-02-17 01:43:01 +00001344 u_int8_t bcd_lv[19];
Harald Welte65e74cc2008-12-29 01:55:35 +00001345
Harald Welte7ccf7782009-02-17 01:43:01 +00001346 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00001347
1348 call->type = GSM_CT_MT;
Harald Welte49f48b82009-02-17 15:29:33 +00001349
1350 call->local_lchan = msg->lchan = lchan;
Harald Welte498b0bb2009-01-09 21:27:43 +00001351 use_lchan(lchan);
Harald Welte65e74cc2008-12-29 01:55:35 +00001352
1353 gh->proto_discr = GSM48_PDISC_CC;
1354 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00001355
Harald Welte7584aea2009-02-11 11:44:12 +00001356 msgb_tv_put(msg, GSM48_IE_SIGNAL, GSM48_SIGNAL_DIALTONE);
Harald Welte49f48b82009-02-17 15:29:33 +00001357 if (calling_subscr) {
Harald Welte7ccf7782009-02-17 01:43:01 +00001358 encode_bcd_number(bcd_lv, sizeof(bcd_lv), 0xb9,
Harald Welte49f48b82009-02-17 15:29:33 +00001359 calling_subscr->extension);
Harald Welte7ccf7782009-02-17 01:43:01 +00001360 msgb_tlv_put(msg, GSM48_IE_CALLING_BCD,
1361 bcd_lv[0], bcd_lv+1);
1362 }
Harald Welte49f48b82009-02-17 15:29:33 +00001363 if (lchan->subscr) {
Harald Welte7ccf7782009-02-17 01:43:01 +00001364 encode_bcd_number(bcd_lv, sizeof(bcd_lv), 0xb9,
Harald Welte49f48b82009-02-17 15:29:33 +00001365 lchan->subscr->extension);
Harald Welte7ccf7782009-02-17 01:43:01 +00001366 msgb_tlv_put(msg, GSM48_IE_CALLED_BCD,
1367 bcd_lv[0], bcd_lv+1);
1368 }
Harald Welte65e74cc2008-12-29 01:55:35 +00001369
Harald Welte4b458152009-02-17 13:23:06 +00001370 DEBUGP(DCC, "B <- SETUP\n");
Harald Welte65e74cc2008-12-29 01:55:35 +00001371
1372 return gsm48_sendmsg(msg);
1373}
1374
Harald Welte4bc90a12008-12-27 16:32:52 +00001375static int gsm0408_rcv_cc(struct msgb *msg)
1376{
1377 struct gsm48_hdr *gh = msgb_l3(msg);
1378 u_int8_t msg_type = gh->msg_type & 0xbf;
1379 struct gsm_call *call = &msg->lchan->call;
1380 int rc = 0;
1381
1382 switch (msg_type) {
1383 case GSM48_MT_CC_CALL_CONF:
1384 /* Response to SETUP */
Harald Welte7ccf7782009-02-17 01:43:01 +00001385 DEBUGP(DCC, "-> CALL CONFIRM\n");
Harald Welte4b458152009-02-17 13:23:06 +00001386 /* we now need to MODIFY the channel */
Harald Welte2c38aa82009-02-18 03:44:24 +00001387 rc = gsm48_tx_chan_mode_modify(msg->lchan, GSM48_CMODE_SPEECH_EFR);
Harald Welte4bc90a12008-12-27 16:32:52 +00001388 break;
1389 case GSM48_MT_CC_RELEASE_COMPL:
1390 /* Answer from MS to RELEASE */
Harald Welte7ccf7782009-02-17 01:43:01 +00001391 DEBUGP(DCC, "-> RELEASE COMPLETE (state->NULL)\n");
Harald Welte4bc90a12008-12-27 16:32:52 +00001392 call->state = GSM_CSTATE_NULL;
1393 break;
1394 case GSM48_MT_CC_ALERTING:
Harald Welte7ccf7782009-02-17 01:43:01 +00001395 rc = gsm48_cc_rx_alerting(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00001396 break;
1397 case GSM48_MT_CC_CONNECT:
Harald Welte7ccf7782009-02-17 01:43:01 +00001398 rc = gsm48_cc_rx_connect(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00001399 break;
1400 case GSM48_MT_CC_CONNECT_ACK:
1401 /* MO: Answer to CONNECT */
1402 call->state = GSM_CSTATE_ACTIVE;
Harald Welte7ccf7782009-02-17 01:43:01 +00001403 DEBUGP(DCC, "-> CONNECT_ACK (state->ACTIVE)\n");
Harald Welte4bc90a12008-12-27 16:32:52 +00001404 break;
1405 case GSM48_MT_CC_RELEASE:
Harald Welte7ccf7782009-02-17 01:43:01 +00001406 DEBUGP(DCC, "-> RELEASE\n");
Harald Welte49f48b82009-02-17 15:29:33 +00001407 DEBUGP(DCC, "<- RELEASE_COMPLETE\n");
Harald Welte4bc90a12008-12-27 16:32:52 +00001408 /* need to respond with RELEASE_COMPLETE */
Harald Welte7ccf7782009-02-17 01:43:01 +00001409 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1410 GSM48_MT_CC_RELEASE_COMPL);
Holger Freythera1f92f02009-04-12 05:37:52 +00001411 subscr_put_channel(msg->lchan);
Harald Welte49f48b82009-02-17 15:29:33 +00001412 call->state = GSM_CSTATE_NULL;
Harald Welte4bc90a12008-12-27 16:32:52 +00001413 break;
1414 case GSM48_MT_CC_STATUS_ENQ:
1415 rc = gsm48_cc_rx_status_enq(msg);
1416 break;
1417 case GSM48_MT_CC_DISCONNECT:
Harald Welte7ccf7782009-02-17 01:43:01 +00001418 rc = gsm48_cc_rx_disconnect(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00001419 break;
1420 case GSM48_MT_CC_SETUP:
Harald Welte4a543e82009-02-28 13:17:55 +00001421 /* MO: wants to establish a call */
Harald Welte7584aea2009-02-11 11:44:12 +00001422 rc = gsm48_cc_rx_setup(msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00001423 break;
1424 case GSM48_MT_CC_EMERG_SETUP:
Harald Welte7ccf7782009-02-17 01:43:01 +00001425 DEBUGP(DCC, "-> EMERGENCY SETUP\n");
Harald Welte4bc90a12008-12-27 16:32:52 +00001426 /* FIXME: continue with CALL_PROCEEDING, ALERTING, CONNECT, RELEASE_COMPLETE */
1427 break;
Harald Welte4a543e82009-02-28 13:17:55 +00001428 case GSM48_MT_CC_HOLD:
1429 DEBUGP(DCC, "-> HOLD (rejecting)\n");
1430 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1431 GSM48_MT_CC_HOLD_REJ);
1432 break;
1433 case GSM48_MT_CC_RETR:
1434 DEBUGP(DCC, "-> RETR (rejecting)\n");
1435 rc = gsm48_tx_simple(msg->lchan, GSM48_PDISC_CC,
1436 GSM48_MT_CC_RETR_REJ);
1437 break;
Harald Welte4bc90a12008-12-27 16:32:52 +00001438 default:
Harald Welte2d35ae62009-02-06 12:02:13 +00001439 fprintf(stderr, "Unimplemented GSM 04.08 CC msg type 0x%02x\n",
Harald Welte4bc90a12008-12-27 16:32:52 +00001440 msg_type);
1441 break;
1442 }
1443
1444 return rc;
1445}
1446
Harald Welte52b1f982008-12-23 20:25:15 +00001447/* here we pass in a msgb from the RSL->RLL. We expect the l3 pointer to be set */
1448int gsm0408_rcvmsg(struct msgb *msg)
1449{
1450 struct gsm48_hdr *gh = msgb_l3(msg);
1451 u_int8_t pdisc = gh->proto_discr & 0x0f;
Harald Welte8470bf22008-12-25 23:28:35 +00001452 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001453
1454 switch (pdisc) {
1455 case GSM48_PDISC_CC:
1456 rc = gsm0408_rcv_cc(msg);
1457 break;
1458 case GSM48_PDISC_MM:
1459 rc = gsm0408_rcv_mm(msg);
1460 break;
1461 case GSM48_PDISC_RR:
1462 rc = gsm0408_rcv_rr(msg);
1463 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00001464 case GSM48_PDISC_SMS:
Daniel Willmann8b3390e2008-12-28 00:31:09 +00001465 rc = gsm0411_rcv_sms(msg);
Harald Weltebcae43f2008-12-27 21:45:37 +00001466 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001467 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00001468 case GSM48_PDISC_SM_GPRS:
Harald Welte52b1f982008-12-23 20:25:15 +00001469 fprintf(stderr, "Unimplemented GSM 04.08 discriminator 0x%02d\n",
1470 pdisc);
1471 break;
1472 default:
1473 fprintf(stderr, "Unknown GSM 04.08 discriminator 0x%02d\n",
1474 pdisc);
1475 break;
1476 }
1477
1478 return rc;
1479}
Harald Welte8470bf22008-12-25 23:28:35 +00001480
1481enum chreq_type {
1482 CHREQ_T_EMERG_CALL,
1483 CHREQ_T_CALL_REEST_TCH_F,
1484 CHREQ_T_CALL_REEST_TCH_H,
1485 CHREQ_T_CALL_REEST_TCH_H_DBL,
1486 CHREQ_T_SDCCH,
1487 CHREQ_T_TCH_F,
1488 CHREQ_T_VOICE_CALL_TCH_H,
1489 CHREQ_T_DATA_CALL_TCH_H,
1490 CHREQ_T_LOCATION_UPD,
1491 CHREQ_T_PAG_R_ANY,
1492 CHREQ_T_PAG_R_TCH_F,
1493 CHREQ_T_PAG_R_TCH_FH,
1494};
1495
1496/* Section 9.1.8 / Table 9.9 */
1497struct chreq {
1498 u_int8_t val;
1499 u_int8_t mask;
1500 enum chreq_type type;
1501};
1502
1503/* If SYSTEM INFORMATION TYPE 4 NECI bit == 1 */
1504static const struct chreq chreq_type_neci1[] = {
1505 { 0xa0, 0xe0, CHREQ_T_EMERG_CALL },
1506 { 0xc0, 0xe0, CHREQ_T_CALL_REEST_TCH_F },
1507 { 0x68, 0xfc, CHREQ_T_CALL_REEST_TCH_H },
1508 { 0x6c, 0xfc, CHREQ_T_CALL_REEST_TCH_H_DBL },
1509 { 0xe0, 0xe0, CHREQ_T_SDCCH },
1510 { 0x40, 0xf0, CHREQ_T_VOICE_CALL_TCH_H },
1511 { 0x50, 0xf0, CHREQ_T_DATA_CALL_TCH_H },
1512 { 0x00, 0xf0, CHREQ_T_LOCATION_UPD },
1513 { 0x10, 0xf0, CHREQ_T_SDCCH },
1514 { 0x80, 0xe0, CHREQ_T_PAG_R_ANY },
1515 { 0x20, 0xf0, CHREQ_T_PAG_R_TCH_F },
1516 { 0x30, 0xf0, CHREQ_T_PAG_R_TCH_FH },
1517};
1518
1519/* If SYSTEM INFORMATION TYPE 4 NECI bit == 0 */
1520static const struct chreq chreq_type_neci0[] = {
1521 { 0xa0, 0xe0, CHREQ_T_EMERG_CALL },
1522 { 0xc0, 0xe0, CHREQ_T_CALL_REEST_TCH_H },
1523 { 0xe0, 0xe0, CHREQ_T_TCH_F },
1524 { 0x50, 0xf0, CHREQ_T_DATA_CALL_TCH_H },
1525 { 0x00, 0xe0, CHREQ_T_LOCATION_UPD },
1526 { 0x80, 0xe0, CHREQ_T_PAG_R_ANY },
1527 { 0x20, 0xf0, CHREQ_T_PAG_R_TCH_F },
1528 { 0x30, 0xf0, CHREQ_T_PAG_R_TCH_FH },
1529};
1530
1531static const enum gsm_chan_t ctype_by_chreq[] = {
1532 [CHREQ_T_EMERG_CALL] = GSM_LCHAN_TCH_F,
1533 [CHREQ_T_CALL_REEST_TCH_F] = GSM_LCHAN_TCH_F,
1534 [CHREQ_T_CALL_REEST_TCH_H] = GSM_LCHAN_TCH_H,
1535 [CHREQ_T_CALL_REEST_TCH_H_DBL] = GSM_LCHAN_TCH_H,
1536 [CHREQ_T_SDCCH] = GSM_LCHAN_SDCCH,
1537 [CHREQ_T_TCH_F] = GSM_LCHAN_TCH_F,
1538 [CHREQ_T_VOICE_CALL_TCH_H] = GSM_LCHAN_TCH_H,
1539 [CHREQ_T_DATA_CALL_TCH_H] = GSM_LCHAN_TCH_H,
1540 [CHREQ_T_LOCATION_UPD] = GSM_LCHAN_SDCCH,
1541 [CHREQ_T_PAG_R_ANY] = GSM_LCHAN_SDCCH,
1542 [CHREQ_T_PAG_R_TCH_F] = GSM_LCHAN_TCH_F,
1543 [CHREQ_T_PAG_R_TCH_FH] = GSM_LCHAN_TCH_F,
1544};
1545
Harald Weltee14a57c2008-12-29 04:08:28 +00001546static const enum gsm_chreq_reason_t reason_by_chreq[] = {
1547 [CHREQ_T_EMERG_CALL] = GSM_CHREQ_REASON_EMERG,
1548 [CHREQ_T_CALL_REEST_TCH_F] = GSM_CHREQ_REASON_CALL,
1549 [CHREQ_T_CALL_REEST_TCH_H] = GSM_CHREQ_REASON_CALL,
1550 [CHREQ_T_CALL_REEST_TCH_H_DBL] = GSM_CHREQ_REASON_CALL,
1551 [CHREQ_T_SDCCH] = GSM_CHREQ_REASON_OTHER,
1552 [CHREQ_T_TCH_F] = GSM_CHREQ_REASON_OTHER,
1553 [CHREQ_T_VOICE_CALL_TCH_H] = GSM_CHREQ_REASON_OTHER,
1554 [CHREQ_T_DATA_CALL_TCH_H] = GSM_CHREQ_REASON_OTHER,
1555 [CHREQ_T_LOCATION_UPD] = GSM_CHREQ_REASON_LOCATION_UPD,
1556 [CHREQ_T_PAG_R_ANY] = GSM_CHREQ_REASON_PAG,
1557 [CHREQ_T_PAG_R_TCH_F] = GSM_CHREQ_REASON_PAG,
1558 [CHREQ_T_PAG_R_TCH_FH] = GSM_CHREQ_REASON_PAG,
1559};
1560
Harald Welte8470bf22008-12-25 23:28:35 +00001561enum gsm_chan_t get_ctype_by_chreq(struct gsm_bts *bts, u_int8_t ra)
1562{
1563 int i;
1564 /* FIXME: determine if we set NECI = 0 in the BTS SI4 */
1565
1566 for (i = 0; i < ARRAY_SIZE(chreq_type_neci0); i++) {
1567 const struct chreq *chr = &chreq_type_neci0[i];
1568 if ((ra & chr->mask) == chr->val)
1569 return ctype_by_chreq[chr->type];
1570 }
1571 fprintf(stderr, "Unknown CHANNEL REQUEST RQD 0x%02x\n", ra);
1572 return GSM_LCHAN_SDCCH;
1573}
Harald Weltee14a57c2008-12-29 04:08:28 +00001574
1575enum gsm_chreq_reason_t get_reason_by_chreq(struct gsm_bts *bts, u_int8_t ra)
1576{
1577 int i;
1578 /* FIXME: determine if we set NECI = 0 in the BTS SI4 */
1579
1580 for (i = 0; i < ARRAY_SIZE(chreq_type_neci0); i++) {
1581 const struct chreq *chr = &chreq_type_neci0[i];
1582 if ((ra & chr->mask) == chr->val)
1583 return reason_by_chreq[chr->type];
1584 }
1585 fprintf(stderr, "Unknown CHANNEL REQUEST REASON 0x%02x\n", ra);
1586 return GSM_CHREQ_REASON_OTHER;
1587}