blob: df34929ac29b5b6b9fd88ab6c2fe1a48ee05ac78 [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001/* GSM Radio Signalling Link messages on the A-bis interface
2 * 3GPP TS 08.58 version 8.6.0 Release 1999 / ETSI TS 100 596 V8.6.0 */
3
4/* (C) 2008 by Harald Welte <laforge@gnumonks.org>
Harald Welte8470bf22008-12-25 23:28:35 +00005 *
Harald Welte52b1f982008-12-23 20:25:15 +00006 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
23
24#include <stdio.h>
Harald Welte8470bf22008-12-25 23:28:35 +000025#include <stdlib.h>
Harald Welte52b1f982008-12-23 20:25:15 +000026#include <errno.h>
27#include <sys/types.h>
28
Harald Welte8470bf22008-12-25 23:28:35 +000029#include <openbsc/gsm_data.h>
30#include <openbsc/gsm_04_08.h>
31#include <openbsc/abis_rsl.h>
32#include <openbsc/chan_alloc.h>
33#include <openbsc/debug.h>
34#include <openbsc/tlv.h>
Harald Welte52b1f982008-12-23 20:25:15 +000035
Harald Welte8470bf22008-12-25 23:28:35 +000036#define RSL_ALLOC_SIZE 1024
37#define RSL_ALLOC_HEADROOM 128
Harald Welte52b1f982008-12-23 20:25:15 +000038
39static u_int8_t mdisc_by_msgtype(u_int8_t msg_type)
40{
41 /* mask off the transparent bit ? */
42 msg_type &= 0xfe;
43
Harald Welte8470bf22008-12-25 23:28:35 +000044 if ((msg_type & 0xf0) == 0x00)
Harald Welte52b1f982008-12-23 20:25:15 +000045 return ABIS_RSL_MDISC_RLL;
Harald Welte8470bf22008-12-25 23:28:35 +000046 if ((msg_type & 0xf0) == 0x10) {
Harald Welte52b1f982008-12-23 20:25:15 +000047 if (msg_type >= 0x19 && msg_type <= 0x22)
48 return ABIS_RSL_MDISC_TRX;
49 else
50 return ABIS_RSL_MDISC_COM_CHAN;
51 }
Harald Welte8470bf22008-12-25 23:28:35 +000052 if ((msg_type & 0xc) == 0x00)
Harald Welte52b1f982008-12-23 20:25:15 +000053 return ABIS_RSL_MDISC_DED_CHAN;
54
55 return ABIS_RSL_MDISC_LOC;
56}
57
58static inline void init_dchan_hdr(struct abis_rsl_dchan_hdr *dh,
59 u_int8_t msg_type)
60{
61 dh->c.msg_discr = mdisc_by_msgtype(msg_type);
62 dh->c.msg_type = msg_type;
63 dh->ie_chan = RSL_IE_CHAN_NR;
64}
65
66static inline void init_llm_hdr(struct abis_rsl_rll_hdr *dh,
67 u_int8_t msg_type)
68{
69 /* dh->c.msg_discr = mdisc_by_msgtype(msg_type); */
70 dh->c.msg_discr = ABIS_RSL_MDISC_RLL;
71 dh->c.msg_type = msg_type;
72 dh->ie_chan = RSL_IE_CHAN_NR;
73 dh->ie_link_id = RSL_IE_LINK_IDENT;
74}
75
76
77/* encode channel number as per Section 9.3.1 */
78u_int8_t rsl_enc_chan_nr(u_int8_t type, u_int8_t subch, u_int8_t timeslot)
79{
80 u_int8_t ret;
81
82 ret = (timeslot & 0x07) | type;
83
84 switch (type) {
85 case RSL_CHAN_Lm_ACCHs:
86 subch &= 0x01;
87 break;
88 case RSL_CHAN_SDCCH4_ACCH:
89 subch &= 0x07;
90 break;
91 case RSL_CHAN_SDCCH8_ACCH:
92 subch &= 0x07;
93 break;
94 default:
95 /* no subchannels allowed */
96 subch = 0x00;
97 break;
98 }
99 ret |= (subch << 3);
100
101 return ret;
102}
103
Harald Welte8470bf22008-12-25 23:28:35 +0000104/* determine logical channel based on TRX and channel number IE */
105struct gsm_lchan *lchan_lookup(struct gsm_bts_trx *trx, u_int8_t chan_nr)
106{
107 struct gsm_lchan *lchan;
108 u_int8_t ts_nr = chan_nr & 0x07;
109 u_int8_t cbits = chan_nr >> 3;
110 u_int8_t lch_idx;
111 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
112
113 if (cbits == 0x01) {
114 lch_idx = 0; /* TCH/F */
115 if (ts->pchan != GSM_PCHAN_TCH_F)
116 fprintf(stderr, "chan_nr=0x%02x but pchan=%u\n",
117 chan_nr, ts->pchan);
118 } else if ((cbits & 0x1e) == 0x02) {
119 lch_idx = cbits & 0x1; /* TCH/H */
120 if (ts->pchan != GSM_PCHAN_TCH_H)
121 fprintf(stderr, "chan_nr=0x%02x but pchan=%u\n",
122 chan_nr, ts->pchan);
123 } else if ((cbits & 0x1c) == 0x04) {
124 lch_idx = cbits & 0x3; /* SDCCH/4 */
125 if (ts->pchan != GSM_PCHAN_CCCH_SDCCH4)
126 fprintf(stderr, "chan_nr=0x%02x but pchan=%u\n",
127 chan_nr, ts->pchan);
128 } else if ((cbits & 0x18) == 0x08) {
129 lch_idx = cbits & 0x7; /* SDCCH/8 */
130 if (ts->pchan != GSM_PCHAN_SDCCH8_SACCH8C)
131 fprintf(stderr, "chan_nr=0x%02x but pchan=%u\n",
132 chan_nr, ts->pchan);
133 } else if (cbits == 0x10 || cbits == 0x11 || cbits == 0x12) {
134 lch_idx = 0;
135 if (ts->pchan != GSM_PCHAN_CCCH &&
136 ts->pchan != GSM_PCHAN_CCCH_SDCCH4)
137 fprintf(stderr, "chan_nr=0x%02x but pchan=%u\n",
138 chan_nr, ts->pchan);
139 /* FIXME: we should not return first sdcch4 !!! */
140 } else {
141 fprintf(stderr, "unknown chan_nr=0x%02x\n", chan_nr);
142 return NULL;
143 }
144
145 lchan = &ts->lchan[lch_idx];
146
147 return lchan;
148}
149
150u_int8_t lchan2chan_nr(struct gsm_lchan *lchan)
151{
152 struct gsm_bts_trx_ts *ts = lchan->ts;
153 u_int8_t cbits, chan_nr;
154
155 switch (ts->pchan) {
156 case GSM_PCHAN_TCH_F:
157 cbits = 0x01;
158 break;
159 case GSM_PCHAN_TCH_H:
160 cbits = 0x02;
161 cbits += lchan->nr;
162 break;
163 case GSM_PCHAN_CCCH_SDCCH4:
164 cbits = 0x04;
165 cbits += lchan->nr;
166 break;
167 case GSM_PCHAN_SDCCH8_SACCH8C:
168 cbits = 0x08;
169 cbits += lchan->nr;
170 break;
171 default:
172 case GSM_PCHAN_CCCH:
173 cbits = 0x10;
174 break;
175 }
176
177 chan_nr = (cbits << 3) | (ts->nr & 0x7);
178
179 return chan_nr;
180}
181
Harald Welte52b1f982008-12-23 20:25:15 +0000182/* As per TS 03.03 Section 2.2, the IMSI has 'not more than 15 digits' */
183u_int64_t str_to_imsi(const char *imsi_str)
184{
185 u_int64_t ret;
186
187 ret = strtoull(imsi_str, NULL, 10);
188
189 return ret;
190}
191
192/* Table 5 Clause 7 TS 05.02 */
193unsigned int n_pag_blocks(int bs_ccch_sdcch_comb, unsigned int bs_ag_blks_res)
194{
195 if (!bs_ccch_sdcch_comb)
196 return 9 - bs_ag_blks_res;
197 else
198 return 3 - bs_ag_blks_res;
199}
200
201/* Chapter 6.5.2 of TS 05.02 */
202unsigned int get_ccch_group(u_int64_t imsi, unsigned int bs_cc_chans,
203 unsigned int n_pag_blocks)
204{
205 return (imsi % 1000) % (bs_cc_chans * n_pag_blocks) / n_pag_blocks;
206}
207
208/* Chapter 6.5.2 of TS 05.02 */
209unsigned int get_paging_group(u_int64_t imsi, unsigned int bs_cc_chans,
210 int n_pag_blocks)
211{
212 return (imsi % 1000) % (bs_cc_chans * n_pag_blocks) % n_pag_blocks;
213}
214
Harald Welte8470bf22008-12-25 23:28:35 +0000215static struct msgb *rsl_msgb_alloc(void)
216{
217 return msgb_alloc_headroom(RSL_ALLOC_SIZE, RSL_ALLOC_HEADROOM);
218}
219
Harald Welte52b1f982008-12-23 20:25:15 +0000220/* Send a BCCH_INFO message as per Chapter 8.5.1 */
221int rsl_bcch_info(struct gsm_bts *bts, u_int8_t type,
222 const u_int8_t *data, int len)
223{
224 struct abis_rsl_dchan_hdr *dh;
Harald Welte8470bf22008-12-25 23:28:35 +0000225 struct msgb *msg = rsl_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000226
227 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof*dh);
228 init_dchan_hdr(dh, RSL_MT_BCCH_INFO);
229 dh->chan_nr = RSL_CHAN_BCCH;
230
231 msgb_tv_put(msg, RSL_IE_SYSINFO_TYPE, type);
232 msgb_tlv_put(msg, RSL_IE_FULL_BCCH_INFO, len, data);
233
Harald Welte8470bf22008-12-25 23:28:35 +0000234 msg->trx = bts->c0;
235
236 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000237}
238
239int rsl_sacch_filling(struct gsm_bts *bts, u_int8_t type,
240 const u_int8_t *data, int len)
241{
242 struct abis_rsl_common_hdr *ch;
Harald Welte8470bf22008-12-25 23:28:35 +0000243 struct msgb *msg = rsl_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000244
245 ch = (struct abis_rsl_common_hdr *) msgb_put(msg, sizeof(*ch));
246 ch->msg_discr = ABIS_RSL_MDISC_TRX;
247 ch->msg_type = RSL_MT_SACCH_FILL;
248
249 msgb_tv_put(msg, RSL_IE_SYSINFO_TYPE, type);
Harald Welte702d8702008-12-26 20:25:35 +0000250 msgb_tl16v_put(msg, RSL_IE_L3_INFO, len, data);
Harald Welte52b1f982008-12-23 20:25:15 +0000251
Harald Welte8470bf22008-12-25 23:28:35 +0000252 msg->trx = bts->c0;
253
254 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000255}
256
257/* Chapter 8.4.1 */
258int rsl_chan_activate(struct gsm_bts *bts, u_int8_t chan_nr,
259 u_int8_t act_type,
260 struct rsl_ie_chan_mode *chan_mode,
261 struct rsl_ie_chan_ident *chan_ident,
262 u_int8_t bs_power, u_int8_t ms_power,
263 u_int8_t ta)
264{
265 struct abis_rsl_dchan_hdr *dh;
Harald Welte8470bf22008-12-25 23:28:35 +0000266 struct msgb *msg = rsl_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000267 u_int8_t encr_info = 0x01;
268
269 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
270 init_dchan_hdr(dh, RSL_MT_CHAN_ACTIV);
271 dh->chan_nr = chan_nr;
272
273 msgb_tv_put(msg, RSL_IE_ACT_TYPE, act_type);
274 /* For compatibility with Phase 1 */
275 msgb_tlv_put(msg, RSL_IE_CHAN_MODE, sizeof(*chan_mode),
276 (u_int8_t *) chan_mode);
277 msgb_tlv_put(msg, RSL_IE_CHAN_IDENT, 4,
Harald Welte702d8702008-12-26 20:25:35 +0000278 (u_int8_t *) chan_ident);
Harald Welte52b1f982008-12-23 20:25:15 +0000279 /* FIXME: this shoould be optional */
Harald Welte702d8702008-12-26 20:25:35 +0000280#if 0
Harald Welte52b1f982008-12-23 20:25:15 +0000281 msgb_tlv_put(msg, RSL_IE_ENCR_INFO, 1,
282 (u_int8_t *) &encr_info);
283 msgb_tv_put(msg, RSL_IE_BS_POWER, bs_power);
Harald Welte702d8702008-12-26 20:25:35 +0000284#endif
Harald Welte52b1f982008-12-23 20:25:15 +0000285 msgb_tv_put(msg, RSL_IE_MS_POWER, ms_power);
286 msgb_tv_put(msg, RSL_IE_TIMING_ADVANCE, ta);
287
Harald Welte8470bf22008-12-25 23:28:35 +0000288 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000289}
290
291#define TSC 7
292
293int rsl_chan_activate_tch_f(struct gsm_bts_trx_ts *ts)
294{
295 u_int8_t chan_nr = rsl_enc_chan_nr(RSL_CHAN_Bm_ACCHs, 0, ts->nr);
296 u_int16_t arfcn = ts->trx->arfcn;
297 struct rsl_ie_chan_mode cm;
298 struct rsl_ie_chan_ident ci;
299
300 cm.dtx_dtu = 0;
301 cm.spd_ind = RSL_CMOD_SPD_SPEECH;
302 cm.chan_rt = RSL_CMOD_CRT_TCH_Bm;
303 cm.chan_rate = RSL_CMOD_SP_GSM1;
304
305 ci.chan_desc.iei = 0x64;
306 ci.chan_desc.chan_nr = chan_nr;
307 /* FIXME: this doesn't support hopping */
308 ci.chan_desc.oct3 = (TSC << 5) | ((arfcn & 0x3ff) >> 8);
309 ci.chan_desc.oct4 = arfcn & 0xff;
310#if 0
311 ci.mobile_alloc.tag = 0x72;
312 ci.mobile_alloc.len = 0; /* as per Section 9.3.5 */
313#endif
314
315 return rsl_chan_activate(ts->trx->bts, chan_nr, 0x01, &cm, &ci, 0x01, 0x0f, 0x00);
316}
317
Harald Welte702d8702008-12-26 20:25:35 +0000318int rsl_chan_activate_sdcch4(struct gsm_bts_trx_ts *ts, int subslot)
Harald Welte52b1f982008-12-23 20:25:15 +0000319{
Harald Welte702d8702008-12-26 20:25:35 +0000320 u_int8_t chan_nr = rsl_enc_chan_nr(RSL_CHAN_SDCCH4_ACCH, subslot, ts->nr);
Harald Welte52b1f982008-12-23 20:25:15 +0000321 u_int16_t arfcn = ts->trx->arfcn;
322 struct rsl_ie_chan_mode cm;
323 struct rsl_ie_chan_ident ci;
324
325 cm.dtx_dtu = 0x00;
326 cm.spd_ind = RSL_CMOD_SPD_SIGN;
327 cm.chan_rt = RSL_CMOD_CRT_SDCCH;
328 cm.chan_rate = 0x00;
329
330 ci.chan_desc.iei = 0x64;
331 ci.chan_desc.chan_nr = chan_nr;
332 ci.chan_desc.oct3 = (TSC << 5) | ((arfcn & 0x3ff) >> 8);
333 ci.chan_desc.oct4 = arfcn & 0xff;
334
335 /* FIXME: we're sending BS power IE, whcih Abissim doesn't */
336 return rsl_chan_activate(ts->trx->bts, chan_nr, 0x00, &cm, &ci, 0x01, 0x0f, 0x00);
337}
338
Harald Welte8470bf22008-12-25 23:28:35 +0000339int rsl_chan_release(struct gsm_lchan *lchan)
Harald Welte52b1f982008-12-23 20:25:15 +0000340{
341 struct abis_rsl_dchan_hdr *dh;
Harald Welte8470bf22008-12-25 23:28:35 +0000342 struct msgb *msg = rsl_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000343
344 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
345 init_dchan_hdr(dh, RSL_MT_RF_CHAN_REL);
Harald Welte8470bf22008-12-25 23:28:35 +0000346 dh->chan_nr = lchan2chan_nr(lchan);
Harald Welte52b1f982008-12-23 20:25:15 +0000347
Harald Welte8470bf22008-12-25 23:28:35 +0000348 msg->lchan = lchan;
349 msg->trx = lchan->ts->trx;
350
351 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000352}
353
354int rsl_paging_cmd(struct gsm_bts *bts, u_int8_t paging_group, u_int8_t len,
355 u_int8_t *ms_ident, u_int8_t chan_needed)
356{
357 struct abis_rsl_dchan_hdr *dh;
Harald Welte8470bf22008-12-25 23:28:35 +0000358 struct msgb *msg = rsl_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000359
360 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
361 init_dchan_hdr(dh, RSL_MT_PAGING_CMD);
362 dh->chan_nr = RSL_CHAN_PCH_AGCH;
363
364 msgb_tv_put(msg, RSL_IE_PAGING_GROUP, paging_group);
365 msgb_tlv_put(msg, RSL_IE_MS_IDENTITY, len, ms_ident);
366 msgb_tv_put(msg, RSL_IE_CHAN_NEEDED, chan_needed);
367
Harald Welte8470bf22008-12-25 23:28:35 +0000368 msg->trx = bts->c0;
369
370 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000371}
372
373int imsi_str2bcd(u_int8_t *bcd_out, const char *str_in)
374{
375 int i, len = strlen(str_in);
376
377 for (i = 0; i < len; i++) {
378 int num = str_in[i] - 0x30;
379 if (num < 0 || num > 9)
380 return -1;
381 if (i % 2 == 0)
382 bcd_out[i/2] = num;
383 else
384 bcd_out[i/2] |= (num << 4);
385 }
386
387 return 0;
388}
389
390# if 0
391int rsl_paging_cmd_imsi(struct gsm_bts *bts, u_int8_t chan_needed, const char *imsi_str)
392{
393 /* FIXME: derive the MS Identity */
394 return rsl_paging_cmd(bts, paging_group, x, y, chan_needed);
395}
396#endif
397
Harald Welte702d8702008-12-26 20:25:35 +0000398/* Chapter 8.5.6 */
Harald Welte52b1f982008-12-23 20:25:15 +0000399int rsl_imm_assign_cmd(struct gsm_bts *bts, u_int8_t len, u_int8_t *val)
400{
Harald Welte8470bf22008-12-25 23:28:35 +0000401 struct msgb *msg = rsl_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000402 struct abis_rsl_dchan_hdr *dh;
403
404 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
405 init_dchan_hdr(dh, RSL_MT_IMMEDIATE_ASSIGN_CMD);
406 dh->chan_nr = RSL_CHAN_PCH_AGCH;
407
408 /* If phase 2, FULL_IMM_ASS_INFO */
409
410 msgb_tlv_put(msg, RSL_IE_IMM_ASS_INFO, len, val);
411
Harald Welte8470bf22008-12-25 23:28:35 +0000412 msg->trx = bts->c0;
413
414 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000415}
416
Harald Welte8470bf22008-12-25 23:28:35 +0000417/* Send "DATA REQUEST" message with given L3 Info payload */
Harald Welte52b1f982008-12-23 20:25:15 +0000418/* Chapter 8.3.1 */
Harald Welte8470bf22008-12-25 23:28:35 +0000419int rsl_data_request(struct msgb *msg, u_int8_t link_id)
Harald Welte52b1f982008-12-23 20:25:15 +0000420{
Harald Welte8470bf22008-12-25 23:28:35 +0000421 u_int8_t l3_len = msg->tail - (u_int8_t *)msgb_l3(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000422 struct abis_rsl_rll_hdr *rh;
423
Harald Welte8470bf22008-12-25 23:28:35 +0000424 if (msg->lchan == NULL) {
425 fprintf(stderr, "cannot send DATA REQUEST to unknown lchan\n");
426 return -EINVAL;
427 }
Harald Welte52b1f982008-12-23 20:25:15 +0000428
Harald Welte8470bf22008-12-25 23:28:35 +0000429 /* First push the L3 IE tag and length */
430 msgb_tv_push(msg, RSL_IE_L3_INFO, l3_len);
431
432 /* Then push the RSL header */
Harald Welte52b1f982008-12-23 20:25:15 +0000433 rh = (struct abis_rsl_rll_hdr *) msgb_push(msg, sizeof(*rh));
434 init_llm_hdr(rh, RSL_MT_DATA_REQ);
Harald Welte8470bf22008-12-25 23:28:35 +0000435 rh->chan_nr = lchan2chan_nr(msg->lchan);
436 rh->link_id = link_id;
Harald Welte52b1f982008-12-23 20:25:15 +0000437
Harald Welte8470bf22008-12-25 23:28:35 +0000438 msg->trx = msg->lchan->ts->trx;
439
440 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000441}
442
Harald Welte702d8702008-12-26 20:25:35 +0000443/* Chapter 8.4.2: Channel Activate Acknowledge */
444static int rsl_rx_chan_act_ack(struct msgb *msg)
445{
446 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
447
448 /* BTS has confirmed channel activation, we now need
449 * to assign the activated channel to the MS */
450
451
452}
453
Harald Welte52b1f982008-12-23 20:25:15 +0000454static int abis_rsl_rx_dchan(struct msgb *msg)
455{
Harald Welte8470bf22008-12-25 23:28:35 +0000456 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
457 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000458
Harald Welte8470bf22008-12-25 23:28:35 +0000459 msg->lchan = lchan_lookup(msg->trx, rslh->chan_nr);
460
461 switch (rslh->c.msg_type) {
Harald Welte52b1f982008-12-23 20:25:15 +0000462 case RSL_MT_CHAN_ACTIV_ACK:
Harald Welte8470bf22008-12-25 23:28:35 +0000463 DEBUGP(DRSL, "rsl_rx_dchan: Channel Activate ACK\n");
Harald Welte702d8702008-12-26 20:25:35 +0000464 rc = rsl_rx_chan_act_ack(msg);
Harald Welte8470bf22008-12-25 23:28:35 +0000465 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000466 case RSL_MT_CHAN_ACTIV_NACK:
Harald Welte8470bf22008-12-25 23:28:35 +0000467 DEBUGP(DRSL, "rsl_rx_dchan: Channel Activate NACK\n");
468 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000469 case RSL_MT_CONN_FAIL:
Harald Welte8470bf22008-12-25 23:28:35 +0000470 DEBUGP(DRSL, "rsl_rx_dchan: Connection Fail\n");
471 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000472 case RSL_MT_MEAS_RES:
Harald Welte8470bf22008-12-25 23:28:35 +0000473 DEBUGP(DRSL, "rsl_rx_dchan: Measurement Result\n");
474 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000475 case RSL_MT_MODE_MODIFY_ACK:
476 case RSL_MT_MODE_MODIFY_NACK:
477 case RSL_MT_PHY_CONTEXT_CONF:
478 case RSL_MT_PREPROC_MEAS_RES:
479 case RSL_MT_RF_CHAN_REL_ACK:
480 case RSL_MT_TALKER_DET:
481 case RSL_MT_LISTENER_DET:
482 case RSL_MT_REMOTE_CODEC_CONF_REP:
483 case RSL_MT_MR_CODEC_MOD_ACK:
484 case RSL_MT_MR_CODEC_MOD_NACK:
485 case RSL_MT_MR_CODEC_MOD_PER:
486 fprintf(stderr, "Unimplemented Abis RSL DChan msg 0x%02x\n",
Harald Welte8470bf22008-12-25 23:28:35 +0000487 rslh->c.msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +0000488 break;
489 default:
490 fprintf(stderr, "unknown Abis RSL DChan msg 0x%02x\n",
Harald Welte8470bf22008-12-25 23:28:35 +0000491 rslh->c.msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +0000492 return -EINVAL;
493 }
Harald Welte8470bf22008-12-25 23:28:35 +0000494 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000495}
496
Harald Welte702d8702008-12-26 20:25:35 +0000497static int rsl_rx_error_rep(struct msgb *msg)
498{
499 struct abis_rsl_common_hdr *rslh = msgb_l2(msg);
500 u_int8_t cause_len;
501
502 if (rslh->data[0] != RSL_IE_CAUSE)
503 return -EINVAL;
504
505 cause_len = rslh->data[1];
506 printf(stdout, "RSL ERROR REPORT, Cause ");
507 hexdump(&rslh->data[2], cause_len);
508
509 return 0;
510}
511
Harald Welte52b1f982008-12-23 20:25:15 +0000512static int abis_rsl_rx_trx(struct msgb *msg)
513{
Harald Welte702d8702008-12-26 20:25:35 +0000514 struct abis_rsl_common_hdr *rslh = msgb_l2(msg);
Harald Welte8470bf22008-12-25 23:28:35 +0000515 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000516
517 switch (rslh->msg_type) {
Harald Welte702d8702008-12-26 20:25:35 +0000518 case RSL_MT_ERROR_REPORT:
519 rc = rsl_rx_error_rep(msg);
520 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000521 case RSL_MT_RF_RES_IND:
522 /* interference on idle channels of TRX */
523 case RSL_MT_OVERLOAD:
524 /* indicate CCCH / ACCH / processor overload */
Harald Welte52b1f982008-12-23 20:25:15 +0000525 fprintf(stderr, "Unimplemented Abis RSL TRX message type 0x%02x\n",
526 rslh->msg_type);
527 break;
528 default:
529 fprintf(stderr, "Unknown Abis RSL TRX message type 0x%02x\n",
530 rslh->msg_type);
531 return -EINVAL;
532 }
Harald Welte8470bf22008-12-25 23:28:35 +0000533 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000534}
535
Harald Welte8470bf22008-12-25 23:28:35 +0000536/* MS has requested a channel on the RACH */
Harald Welte52b1f982008-12-23 20:25:15 +0000537static int rsl_rx_chan_rqd(struct msgb *msg)
538{
Harald Welte702d8702008-12-26 20:25:35 +0000539 struct gsm_bts *bts = msg->trx->bts;
Harald Welte8470bf22008-12-25 23:28:35 +0000540 struct abis_rsl_dchan_hdr *rqd_hdr = msgb_l2(msg);
541 struct gsm48_req_ref *rqd_ref;
Harald Welte52b1f982008-12-23 20:25:15 +0000542 struct gsm48_imm_ass ia;
Harald Welte8470bf22008-12-25 23:28:35 +0000543 enum gsm_chan_t lctype;
544 struct gsm_lchan *lchan;
545 u_int8_t rqd_ta;
546
Harald Welte52b1f982008-12-23 20:25:15 +0000547 u_int16_t arfcn;
548 u_int8_t ts_number, subch;
549
Harald Welte8470bf22008-12-25 23:28:35 +0000550 /* parse request reference to be used in immediate assign */
551 if (rqd_hdr->data[0] != RSL_IE_REQ_REFERENCE)
552 return -EINVAL;
553
554 rqd_ref = (struct gsm48_req_ref *) &rqd_hdr->data[1];
555
556 /* parse access delay and use as TA */
557 if (rqd_hdr->data[sizeof(struct gsm48_req_ref)+1] != RSL_IE_ACCESS_DELAY)
558 return -EINVAL;
559 rqd_ta = rqd_hdr->data[sizeof(struct gsm48_req_ref)+2];
560
561 /* determine channel type (SDCCH/TCH_F/TCH_H) based on
562 * request reference RA */
563 lctype = get_ctype_by_chreq(bts, rqd_ref->ra);
564
565 /* check availability / allocate channel */
566 lchan = lchan_alloc(bts, lctype);
567 if (!lchan) {
568 fprintf(stderr, "CHAN RQD: no resources\n");
569 /* FIXME: send some kind of reject ?!? */
570 return -ENOMEM;
571 }
572
573 ts_number = lchan->ts->nr;
574 arfcn = lchan->ts->trx->arfcn;
575 subch = lchan->nr;
Harald Welte52b1f982008-12-23 20:25:15 +0000576
Harald Welte8470bf22008-12-25 23:28:35 +0000577 DEBUGP(DRSL, "Activating ARFCN(%u) TS(%u) SS(%u) lctype %u\n",
578 arfcn, ts_number, subch, lchan->type);
579
Harald Welte52b1f982008-12-23 20:25:15 +0000580 /* send CHANNEL ACTIVATION on RSL to BTS */
Harald Welte702d8702008-12-26 20:25:35 +0000581 if (lchan->ts->pchan == GSM_PCHAN_CCCH_SDCCH4)
582 rsl_chan_activate_sdcch4(lchan->ts, subch);
Harald Welte8470bf22008-12-25 23:28:35 +0000583 else
584 rsl_chan_activate_tch_f(lchan->ts);
Harald Welte52b1f982008-12-23 20:25:15 +0000585
586 /* create IMMEDIATE ASSIGN 04.08 messge */
587 memset(&ia, 0, sizeof(ia));
588 ia.l2_plen = 0x2d;
589 ia.proto_discr = GSM48_PDISC_RR;
590 ia.msg_type = GSM48_MT_RR_IMM_ASS;
591 ia.page_mode = GSM48_PM_NORMAL;
Harald Welte702d8702008-12-26 20:25:35 +0000592 ia.chan_desc.chan_nr = rsl_enc_chan_nr(RSL_CHAN_SDCCH4_ACCH, subch, ts_number);
Harald Welte52b1f982008-12-23 20:25:15 +0000593 ia.chan_desc.h0.h = 0;
594 ia.chan_desc.h0.arfcn_high = arfcn >> 8;
595 ia.chan_desc.h0.arfcn_low = arfcn & 0xff;
596 ia.chan_desc.h0.tsc = 7;
Harald Welte8470bf22008-12-25 23:28:35 +0000597 /* use request reference extracted from CHAN_RQD */
598 memcpy(&ia.req_ref, rqd_ref, sizeof(ia.req_ref));
599 ia.timing_advance = rqd_ta;
Harald Welte52b1f982008-12-23 20:25:15 +0000600 ia.mob_alloc_len = 0;
601
602 /* send IMMEDIATE ASSIGN CMD on RSL to BTS (to send on CCCH to MS) */
603 return rsl_imm_assign_cmd(bts, sizeof(ia), (u_int8_t *) &ia);
604}
605
606static int abis_rsl_rx_cchan(struct msgb *msg)
607{
Harald Welte8470bf22008-12-25 23:28:35 +0000608 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg) ;
609 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000610
Harald Welte8470bf22008-12-25 23:28:35 +0000611 msg->lchan = lchan_lookup(msg->trx, rslh->chan_nr);
612
613 switch (rslh->c.msg_type) {
Harald Welte52b1f982008-12-23 20:25:15 +0000614 case RSL_MT_CHAN_RQD:
615 /* MS has requested a channel on the RACH */
616 rc = rsl_rx_chan_rqd(msg);
617 break;
618 case RSL_MT_DELETE_IND:
619 /* CCCH overloaded, IMM_ASSIGN was dropped */
620 case RSL_MT_CBCH_LOAD_IND:
621 /* current load on the CBCH */
622 case RSL_MT_CCCH_LOAD_IND:
623 /* current load on the CCCH */
624 fprintf(stderr, "Unimplemented Abis RSL TRX message type 0x%02x\n",
Harald Welte8470bf22008-12-25 23:28:35 +0000625 rslh->c.msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +0000626 break;
627 default:
628 fprintf(stderr, "Unknown Abis RSL TRX message type 0x%02x\n",
Harald Welte8470bf22008-12-25 23:28:35 +0000629 rslh->c.msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +0000630 return -EINVAL;
631 }
Harald Welte8470bf22008-12-25 23:28:35 +0000632
633 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000634}
635
636/* ESTABLISH INDICATION, LOCATION AREA UPDATE REQUEST
637 0x02, 0x06,
638 0x01, 0x20,
639 0x02, 0x00,
640 0x0b, 0x00, 0x0f, 0x05, 0x08, ... */
641
642static int abis_rsl_rx_rll(struct msgb *msg)
643{
644 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
645 int rc;
Harald Welte8470bf22008-12-25 23:28:35 +0000646
647 msg->lchan = lchan_lookup(msg->trx, rllh->chan_nr);
Harald Welte52b1f982008-12-23 20:25:15 +0000648
649 switch (rllh->c.msg_type) {
650 case RSL_MT_DATA_IND:
651 DEBUGP(DRLL, "DATA INDICATION\n");
Harald Welte8470bf22008-12-25 23:28:35 +0000652 /* FIXME: Verify L3 info element */
Harald Welte702d8702008-12-26 20:25:35 +0000653 msg->l3h = &rllh->data[3];
Harald Welte52b1f982008-12-23 20:25:15 +0000654 rc = gsm0408_rcvmsg(msg);
655 break;
656 case RSL_MT_EST_IND:
657 DEBUGP(DRLL, "ESTABLISH INDICATION\n");
Harald Welte8470bf22008-12-25 23:28:35 +0000658 /* FIXME: Verify L3 info element */
Harald Welte702d8702008-12-26 20:25:35 +0000659 msg->l3h = &rllh->data[3];
Harald Welte52b1f982008-12-23 20:25:15 +0000660 rc = gsm0408_rcvmsg(msg);
661 break;
662 case RSL_MT_ERROR_IND:
663 case RSL_MT_REL_IND:
664 case RSL_MT_UNIT_DATA_IND:
665 fprintf(stderr, "unimplemented Abis RLL message type 0x%02x\n",
666 rllh->c.msg_type);
667 break;
668 default:
669 fprintf(stderr, "unknown Abis RLL message type 0x%02x\n",
670 rllh->c.msg_type);
671 }
Harald Welte8470bf22008-12-25 23:28:35 +0000672 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000673}
674
675/* Entry-point where L2 RSL from BTS enters */
Harald Welte8470bf22008-12-25 23:28:35 +0000676int abis_rsl_rcvmsg(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000677{
678 struct abis_rsl_common_hdr *rslh = msgb_l2(msg) ;
679 unsigned int l2_len = (void *)msg->tail - msgb_l2(msg);
680 int rc;
681
682 switch (rslh->msg_discr & 0xfe) {
683 case ABIS_RSL_MDISC_RLL:
684 rc = abis_rsl_rx_rll(msg);
685 break;
686 case ABIS_RSL_MDISC_DED_CHAN:
687 rc = abis_rsl_rx_dchan(msg);
688 break;
689 case ABIS_RSL_MDISC_COM_CHAN:
Harald Welte52b1f982008-12-23 20:25:15 +0000690 rc = abis_rsl_rx_cchan(msg);
691 break;
Harald Welte8470bf22008-12-25 23:28:35 +0000692 case ABIS_RSL_MDISC_TRX:
693 rc = abis_rsl_rx_trx(msg);
694 break;
Harald Welte52b1f982008-12-23 20:25:15 +0000695 case ABIS_RSL_MDISC_LOC:
696 default:
697 fprintf(stderr, "unknown RSL message discriminator 0x%02x\n",
698 rslh->msg_discr);
699 return -EINVAL;
700 }
Harald Welte4f4a3902008-12-26 00:04:49 +0000701 msgb_free(msg);
Harald Welte8470bf22008-12-25 23:28:35 +0000702 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +0000703}