blob: 266cb17cf3ef19c3dd2f8d0ccbdca79fec086842 [file] [log] [blame]
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001/* GSM Radio Signalling Link messages on the A-bis interface
Harald Welte52b1f982008-12-23 20:25:15 +00002 * 3GPP TS 08.58 version 8.6.0 Release 1999 / ETSI TS 100 596 V8.6.0 */
3
Harald Welte3c9c5f92010-03-04 10:33:10 +01004/* (C) 2008-2010 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>
Harald Welte75099262009-02-16 21:12:08 +000028#include <netinet/in.h>
Harald Welte167df882009-02-17 14:35:45 +000029#include <arpa/inet.h>
Harald Welte52b1f982008-12-23 20:25:15 +000030
Harald Welte8470bf22008-12-25 23:28:35 +000031#include <openbsc/gsm_data.h>
32#include <openbsc/gsm_04_08.h>
Harald Weltedfe6c7d2010-02-20 16:24:02 +010033#include <osmocore/gsm_utils.h>
Harald Welte8470bf22008-12-25 23:28:35 +000034#include <openbsc/abis_rsl.h>
35#include <openbsc/chan_alloc.h>
Harald Welteedcc5272009-08-09 13:47:35 +020036#include <openbsc/bsc_rll.h>
Harald Welte8470bf22008-12-25 23:28:35 +000037#include <openbsc/debug.h>
Harald Weltedfe6c7d2010-02-20 16:24:02 +010038#include <osmocore/tlv.h>
Holger Freyther392209c2009-02-10 00:06:19 +000039#include <openbsc/paging.h>
Harald Welte167df882009-02-17 14:35:45 +000040#include <openbsc/signal.h>
Harald Welte3c7dc6e2009-11-29 19:07:28 +010041#include <openbsc/meas_rep.h>
Harald Welte17f5bf62009-12-20 15:42:44 +010042#include <openbsc/rtp_proxy.h>
Harald Welte2e411c72010-03-01 21:59:06 +010043#include <osmocore/rsl.h>
Harald Welte52b1f982008-12-23 20:25:15 +000044
Harald Welte8470bf22008-12-25 23:28:35 +000045#define RSL_ALLOC_SIZE 1024
46#define RSL_ALLOC_HEADROOM 128
Harald Welte52b1f982008-12-23 20:25:15 +000047
Holger Freyther3b72a892009-02-04 00:31:39 +000048#define MAX(a, b) (a) >= (b) ? (a) : (b)
49
Harald Welte52b1f982008-12-23 20:25:15 +000050static u_int8_t mdisc_by_msgtype(u_int8_t msg_type)
51{
52 /* mask off the transparent bit ? */
53 msg_type &= 0xfe;
54
Harald Welte8470bf22008-12-25 23:28:35 +000055 if ((msg_type & 0xf0) == 0x00)
Harald Welte52b1f982008-12-23 20:25:15 +000056 return ABIS_RSL_MDISC_RLL;
Harald Welte8470bf22008-12-25 23:28:35 +000057 if ((msg_type & 0xf0) == 0x10) {
Harald Welte52b1f982008-12-23 20:25:15 +000058 if (msg_type >= 0x19 && msg_type <= 0x22)
59 return ABIS_RSL_MDISC_TRX;
60 else
61 return ABIS_RSL_MDISC_COM_CHAN;
62 }
Harald Welte2d5b6382008-12-27 19:46:06 +000063 if ((msg_type & 0xe0) == 0x20)
Harald Welte52b1f982008-12-23 20:25:15 +000064 return ABIS_RSL_MDISC_DED_CHAN;
65
66 return ABIS_RSL_MDISC_LOC;
67}
68
69static inline void init_dchan_hdr(struct abis_rsl_dchan_hdr *dh,
70 u_int8_t msg_type)
71{
72 dh->c.msg_discr = mdisc_by_msgtype(msg_type);
73 dh->c.msg_type = msg_type;
74 dh->ie_chan = RSL_IE_CHAN_NR;
75}
76
Harald Welte8470bf22008-12-25 23:28:35 +000077/* determine logical channel based on TRX and channel number IE */
78struct gsm_lchan *lchan_lookup(struct gsm_bts_trx *trx, u_int8_t chan_nr)
79{
80 struct gsm_lchan *lchan;
81 u_int8_t ts_nr = chan_nr & 0x07;
82 u_int8_t cbits = chan_nr >> 3;
83 u_int8_t lch_idx;
84 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
85
86 if (cbits == 0x01) {
87 lch_idx = 0; /* TCH/F */
Harald Weltea1499d02009-10-24 10:25:50 +020088 if (ts->pchan != GSM_PCHAN_TCH_F &&
89 ts->pchan != GSM_PCHAN_PDCH &&
90 ts->pchan != GSM_PCHAN_TCH_F_PDCH)
Harald Welteb1d4c8e2009-12-17 23:10:46 +010091 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte8470bf22008-12-25 23:28:35 +000092 chan_nr, ts->pchan);
93 } else if ((cbits & 0x1e) == 0x02) {
94 lch_idx = cbits & 0x1; /* TCH/H */
95 if (ts->pchan != GSM_PCHAN_TCH_H)
Harald Welteb1d4c8e2009-12-17 23:10:46 +010096 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte8470bf22008-12-25 23:28:35 +000097 chan_nr, ts->pchan);
98 } else if ((cbits & 0x1c) == 0x04) {
99 lch_idx = cbits & 0x3; /* SDCCH/4 */
100 if (ts->pchan != GSM_PCHAN_CCCH_SDCCH4)
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100101 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte8470bf22008-12-25 23:28:35 +0000102 chan_nr, ts->pchan);
103 } else if ((cbits & 0x18) == 0x08) {
104 lch_idx = cbits & 0x7; /* SDCCH/8 */
105 if (ts->pchan != GSM_PCHAN_SDCCH8_SACCH8C)
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100106 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte8470bf22008-12-25 23:28:35 +0000107 chan_nr, ts->pchan);
108 } else if (cbits == 0x10 || cbits == 0x11 || cbits == 0x12) {
109 lch_idx = 0;
110 if (ts->pchan != GSM_PCHAN_CCCH &&
111 ts->pchan != GSM_PCHAN_CCCH_SDCCH4)
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100112 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte8470bf22008-12-25 23:28:35 +0000113 chan_nr, ts->pchan);
114 /* FIXME: we should not return first sdcch4 !!! */
115 } else {
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100116 LOGP(DRSL, LOGL_ERROR, "unknown chan_nr=0x%02x\n", chan_nr);
Harald Welte8470bf22008-12-25 23:28:35 +0000117 return NULL;
118 }
119
120 lchan = &ts->lchan[lch_idx];
Harald Weltedc5062b2010-03-26 21:28:59 +0800121 log_set_context(BSC_CTX_LCHAN, lchan);
Harald Welte8470bf22008-12-25 23:28:35 +0000122
123 return lchan;
124}
125
Holger Hans Peter Freythere81a6102009-10-22 11:47:45 +0200126/* See Table 10.5.25 of GSM04.08 */
Harald Welte24766092009-12-09 19:18:32 +0100127u_int8_t lchan2chan_nr(const struct gsm_lchan *lchan)
Harald Welte8470bf22008-12-25 23:28:35 +0000128{
129 struct gsm_bts_trx_ts *ts = lchan->ts;
130 u_int8_t cbits, chan_nr;
131
132 switch (ts->pchan) {
133 case GSM_PCHAN_TCH_F:
Harald Weltea1499d02009-10-24 10:25:50 +0200134 case GSM_PCHAN_PDCH:
135 case GSM_PCHAN_TCH_F_PDCH:
Harald Welte8470bf22008-12-25 23:28:35 +0000136 cbits = 0x01;
137 break;
138 case GSM_PCHAN_TCH_H:
139 cbits = 0x02;
140 cbits += lchan->nr;
141 break;
142 case GSM_PCHAN_CCCH_SDCCH4:
143 cbits = 0x04;
144 cbits += lchan->nr;
145 break;
146 case GSM_PCHAN_SDCCH8_SACCH8C:
147 cbits = 0x08;
148 cbits += lchan->nr;
149 break;
150 default:
151 case GSM_PCHAN_CCCH:
152 cbits = 0x10;
153 break;
154 }
155
156 chan_nr = (cbits << 3) | (ts->nr & 0x7);
157
158 return chan_nr;
159}
160
Harald Welte52b1f982008-12-23 20:25:15 +0000161/* As per TS 03.03 Section 2.2, the IMSI has 'not more than 15 digits' */
162u_int64_t str_to_imsi(const char *imsi_str)
163{
164 u_int64_t ret;
165
166 ret = strtoull(imsi_str, NULL, 10);
167
168 return ret;
169}
170
171/* Table 5 Clause 7 TS 05.02 */
172unsigned int n_pag_blocks(int bs_ccch_sdcch_comb, unsigned int bs_ag_blks_res)
173{
174 if (!bs_ccch_sdcch_comb)
175 return 9 - bs_ag_blks_res;
176 else
177 return 3 - bs_ag_blks_res;
178}
179
180/* Chapter 6.5.2 of TS 05.02 */
181unsigned int get_ccch_group(u_int64_t imsi, unsigned int bs_cc_chans,
182 unsigned int n_pag_blocks)
183{
184 return (imsi % 1000) % (bs_cc_chans * n_pag_blocks) / n_pag_blocks;
185}
186
187/* Chapter 6.5.2 of TS 05.02 */
188unsigned int get_paging_group(u_int64_t imsi, unsigned int bs_cc_chans,
189 int n_pag_blocks)
190{
191 return (imsi % 1000) % (bs_cc_chans * n_pag_blocks) % n_pag_blocks;
192}
193
Harald Welte8470bf22008-12-25 23:28:35 +0000194static struct msgb *rsl_msgb_alloc(void)
195{
Harald Welte966636f2009-06-26 19:39:35 +0200196 return msgb_alloc_headroom(RSL_ALLOC_SIZE, RSL_ALLOC_HEADROOM,
197 "RSL");
Harald Welte8470bf22008-12-25 23:28:35 +0000198}
199
Harald Welte362322e2009-02-15 14:36:38 +0000200#define MACBLOCK_SIZE 23
201static void pad_macblock(u_int8_t *out, const u_int8_t *in, int len)
202{
203 memcpy(out, in, len);
204
205 if (len < MACBLOCK_SIZE)
206 memset(out+len, 0x2b, MACBLOCK_SIZE-len);
207}
208
Harald Welte08d91a52009-08-30 15:37:11 +0900209/* Chapter 9.3.7: Encryption Information */
210static int build_encr_info(u_int8_t *out, struct gsm_lchan *lchan)
211{
212 *out++ = lchan->encr.alg_id & 0xff;
213 if (lchan->encr.key_len)
214 memcpy(out, lchan->encr.key, lchan->encr.key_len);
215 return lchan->encr.key_len + 1;
216}
217
Harald Welte5b8ed432009-12-24 12:20:20 +0100218static void print_rsl_cause(int lvl, const u_int8_t *cause_v, u_int8_t cause_len)
Harald Welte8830e072009-07-28 17:58:09 +0200219{
Harald Welte7f93cea2009-02-23 00:02:59 +0000220 int i;
221
Harald Welte5b8ed432009-12-24 12:20:20 +0100222 LOGPC(DRSL, lvl, "CAUSE=0x%02x(%s) ",
Harald Welte8830e072009-07-28 17:58:09 +0200223 cause_v[0], rsl_err_name(cause_v[0]));
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200224 for (i = 1; i < cause_len-1; i++)
Harald Welte5b8ed432009-12-24 12:20:20 +0100225 LOGPC(DRSL, lvl, "%02x ", cause_v[i]);
Harald Welte7f93cea2009-02-23 00:02:59 +0000226}
227
Harald Welte52b1f982008-12-23 20:25:15 +0000228/* Send a BCCH_INFO message as per Chapter 8.5.1 */
Harald Weltee79769b2009-02-07 00:48:17 +0000229int rsl_bcch_info(struct gsm_bts_trx *trx, u_int8_t type,
Harald Welte52b1f982008-12-23 20:25:15 +0000230 const u_int8_t *data, int len)
231{
232 struct abis_rsl_dchan_hdr *dh;
Harald Welte8470bf22008-12-25 23:28:35 +0000233 struct msgb *msg = rsl_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000234
235 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof*dh);
236 init_dchan_hdr(dh, RSL_MT_BCCH_INFO);
237 dh->chan_nr = RSL_CHAN_BCCH;
238
239 msgb_tv_put(msg, RSL_IE_SYSINFO_TYPE, type);
240 msgb_tlv_put(msg, RSL_IE_FULL_BCCH_INFO, len, data);
241
Harald Weltee79769b2009-02-07 00:48:17 +0000242 msg->trx = trx;
Harald Welte8470bf22008-12-25 23:28:35 +0000243
244 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000245}
246
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200247int rsl_sacch_filling(struct gsm_bts_trx *trx, u_int8_t type,
Harald Welte52b1f982008-12-23 20:25:15 +0000248 const u_int8_t *data, int len)
249{
250 struct abis_rsl_common_hdr *ch;
Harald Welte8470bf22008-12-25 23:28:35 +0000251 struct msgb *msg = rsl_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000252
253 ch = (struct abis_rsl_common_hdr *) msgb_put(msg, sizeof(*ch));
254 ch->msg_discr = ABIS_RSL_MDISC_TRX;
255 ch->msg_type = RSL_MT_SACCH_FILL;
256
257 msgb_tv_put(msg, RSL_IE_SYSINFO_TYPE, type);
Harald Welte702d8702008-12-26 20:25:35 +0000258 msgb_tl16v_put(msg, RSL_IE_L3_INFO, len, data);
Harald Welte52b1f982008-12-23 20:25:15 +0000259
Harald Weltee79769b2009-02-07 00:48:17 +0000260 msg->trx = trx;
Harald Welte8470bf22008-12-25 23:28:35 +0000261
262 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000263}
264
Harald Weltefcd24452009-06-20 18:15:19 +0200265int rsl_chan_bs_power_ctrl(struct gsm_lchan *lchan, unsigned int fpc, int db)
266{
267 struct abis_rsl_dchan_hdr *dh;
Harald Welteeab33352009-06-27 03:09:08 +0200268 struct msgb *msg;
Harald Weltefcd24452009-06-20 18:15:19 +0200269 u_int8_t chan_nr = lchan2chan_nr(lchan);
270
271 db = abs(db);
272 if (db > 30)
273 return -EINVAL;
274
Harald Welteeab33352009-06-27 03:09:08 +0200275 msg = rsl_msgb_alloc();
276
Harald Weltefcd24452009-06-20 18:15:19 +0200277 lchan->bs_power = db/2;
278 if (fpc)
279 lchan->bs_power |= 0x10;
280
281 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
282 init_dchan_hdr(dh, RSL_MT_BS_POWER_CONTROL);
283 dh->chan_nr = chan_nr;
284
285 msgb_tv_put(msg, RSL_IE_BS_POWER, lchan->bs_power);
286
287 msg->trx = lchan->ts->trx;
288
289 return abis_rsl_sendmsg(msg);
290}
291
Harald Weltefcd24452009-06-20 18:15:19 +0200292int rsl_chan_ms_power_ctrl(struct gsm_lchan *lchan, unsigned int fpc, int dbm)
293{
294 struct abis_rsl_dchan_hdr *dh;
Harald Welteeab33352009-06-27 03:09:08 +0200295 struct msgb *msg;
Harald Weltefcd24452009-06-20 18:15:19 +0200296 u_int8_t chan_nr = lchan2chan_nr(lchan);
297 int ctl_lvl;
298
Harald Welte66b6a8d2009-08-09 14:45:18 +0200299 ctl_lvl = ms_pwr_ctl_lvl(lchan->ts->trx->bts->band, dbm);
Harald Weltefcd24452009-06-20 18:15:19 +0200300 if (ctl_lvl < 0)
301 return ctl_lvl;
302
Harald Welteeab33352009-06-27 03:09:08 +0200303 msg = rsl_msgb_alloc();
304
Harald Weltefcd24452009-06-20 18:15:19 +0200305 lchan->ms_power = ctl_lvl;
306
307 if (fpc)
308 lchan->ms_power |= 0x20;
309
310 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
311 init_dchan_hdr(dh, RSL_MT_MS_POWER_CONTROL);
312 dh->chan_nr = chan_nr;
313
314 msgb_tv_put(msg, RSL_IE_MS_POWER, lchan->ms_power);
315
316 msg->trx = lchan->ts->trx;
317
318 return abis_rsl_sendmsg(msg);
319}
320
Harald Welte9943c5b2009-07-29 15:41:29 +0200321static int channel_mode_from_lchan(struct rsl_ie_chan_mode *cm,
322 struct gsm_lchan *lchan)
323{
324 memset(cm, 0, sizeof(cm));
325
326 /* FIXME: what to do with data calls ? */
327 cm->dtx_dtu = 0x00;
328
329 /* set TCH Speech/Data */
330 cm->spd_ind = lchan->rsl_cmode;
331
Harald Welte1a79d362009-11-27 08:55:16 +0100332 if (lchan->rsl_cmode == RSL_CMOD_SPD_SIGN &&
333 lchan->tch_mode != GSM48_CMODE_SIGN)
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100334 LOGP(DRSL, LOGL_ERROR, "unsupported: rsl_mode == signalling, "
Harald Welte1a79d362009-11-27 08:55:16 +0100335 "but tch_mode != signalling\n");
336
Harald Welte9943c5b2009-07-29 15:41:29 +0200337 switch (lchan->type) {
338 case GSM_LCHAN_SDCCH:
339 cm->chan_rt = RSL_CMOD_CRT_SDCCH;
340 break;
341 case GSM_LCHAN_TCH_F:
342 cm->chan_rt = RSL_CMOD_CRT_TCH_Bm;
343 break;
344 case GSM_LCHAN_TCH_H:
345 cm->chan_rt = RSL_CMOD_CRT_TCH_Lm;
346 break;
347 case GSM_LCHAN_NONE:
348 case GSM_LCHAN_UNKNOWN:
349 default:
350 return -EINVAL;
351 }
352
353 switch (lchan->tch_mode) {
354 case GSM48_CMODE_SIGN:
355 cm->chan_rate = 0;
356 break;
357 case GSM48_CMODE_SPEECH_V1:
358 cm->chan_rate = RSL_CMOD_SP_GSM1;
359 break;
360 case GSM48_CMODE_SPEECH_EFR:
361 cm->chan_rate = RSL_CMOD_SP_GSM2;
362 break;
363 case GSM48_CMODE_SPEECH_AMR:
364 cm->chan_rate = RSL_CMOD_SP_GSM3;
365 break;
366 case GSM48_CMODE_DATA_14k5:
367 cm->chan_rate = RSL_CMOD_SP_NT_14k5;
368 break;
369 case GSM48_CMODE_DATA_12k0:
370 cm->chan_rate = RSL_CMOD_SP_NT_12k0;
371 break;
372 case GSM48_CMODE_DATA_6k0:
373 cm->chan_rate = RSL_CMOD_SP_NT_6k0;
374 break;
375 default:
376 return -EINVAL;
377 }
378
379 return 0;
380}
381
Harald Welte52b1f982008-12-23 20:25:15 +0000382/* Chapter 8.4.1 */
Harald Welteddab3c72009-02-28 13:19:15 +0000383#if 0
Harald Weltee79769b2009-02-07 00:48:17 +0000384int rsl_chan_activate(struct gsm_bts_trx *trx, u_int8_t chan_nr,
Harald Welte52b1f982008-12-23 20:25:15 +0000385 u_int8_t act_type,
386 struct rsl_ie_chan_mode *chan_mode,
387 struct rsl_ie_chan_ident *chan_ident,
388 u_int8_t bs_power, u_int8_t ms_power,
389 u_int8_t ta)
390{
391 struct abis_rsl_dchan_hdr *dh;
Harald Welte8470bf22008-12-25 23:28:35 +0000392 struct msgb *msg = rsl_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000393
394 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
395 init_dchan_hdr(dh, RSL_MT_CHAN_ACTIV);
396 dh->chan_nr = chan_nr;
397
398 msgb_tv_put(msg, RSL_IE_ACT_TYPE, act_type);
399 /* For compatibility with Phase 1 */
400 msgb_tlv_put(msg, RSL_IE_CHAN_MODE, sizeof(*chan_mode),
401 (u_int8_t *) chan_mode);
402 msgb_tlv_put(msg, RSL_IE_CHAN_IDENT, 4,
Harald Welte702d8702008-12-26 20:25:35 +0000403 (u_int8_t *) chan_ident);
Harald Welte702d8702008-12-26 20:25:35 +0000404#if 0
Harald Welte52b1f982008-12-23 20:25:15 +0000405 msgb_tlv_put(msg, RSL_IE_ENCR_INFO, 1,
406 (u_int8_t *) &encr_info);
Harald Welte702d8702008-12-26 20:25:35 +0000407#endif
Harald Welted4c9bf32009-02-15 16:56:18 +0000408 msgb_tv_put(msg, RSL_IE_BS_POWER, bs_power);
Harald Welte52b1f982008-12-23 20:25:15 +0000409 msgb_tv_put(msg, RSL_IE_MS_POWER, ms_power);
410 msgb_tv_put(msg, RSL_IE_TIMING_ADVANCE, ta);
411
Harald Weltee79769b2009-02-07 00:48:17 +0000412 msg->trx = trx;
413
Harald Welte8470bf22008-12-25 23:28:35 +0000414 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000415}
Harald Welteddab3c72009-02-28 13:19:15 +0000416#endif
Harald Welte52b1f982008-12-23 20:25:15 +0000417
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200418int rsl_chan_activate_lchan(struct gsm_lchan *lchan, u_int8_t act_type,
Harald Welte8d77b952009-12-17 00:31:10 +0100419 u_int8_t ta, u_int8_t ho_ref)
Harald Welte4b634542008-12-27 01:55:51 +0000420{
421 struct abis_rsl_dchan_hdr *dh;
Harald Welteeab33352009-06-27 03:09:08 +0200422 struct msgb *msg;
Harald Welte9943c5b2009-07-29 15:41:29 +0200423 int rc;
Harald Welte4b634542008-12-27 01:55:51 +0000424
425 u_int8_t chan_nr = lchan2chan_nr(lchan);
Harald Welte4b634542008-12-27 01:55:51 +0000426 struct rsl_ie_chan_mode cm;
laforge694a5cf2010-06-20 21:38:19 +0200427 struct gsm48_chan_desc cd;
428 uint8_t *msgb_cd;
Harald Welte4b634542008-12-27 01:55:51 +0000429
Harald Welte9943c5b2009-07-29 15:41:29 +0200430 rc = channel_mode_from_lchan(&cm, lchan);
431 if (rc < 0)
432 return rc;
Harald Welte4b634542008-12-27 01:55:51 +0000433
laforge694a5cf2010-06-20 21:38:19 +0200434 gsm48_lchan2chan_desc(&cd, lchan);
Harald Welte4b634542008-12-27 01:55:51 +0000435
Harald Welteeab33352009-06-27 03:09:08 +0200436 msg = rsl_msgb_alloc();
Harald Welte4b634542008-12-27 01:55:51 +0000437 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
438 init_dchan_hdr(dh, RSL_MT_CHAN_ACTIV);
439 dh->chan_nr = chan_nr;
440
441 msgb_tv_put(msg, RSL_IE_ACT_TYPE, act_type);
Harald Welte4b634542008-12-27 01:55:51 +0000442 msgb_tlv_put(msg, RSL_IE_CHAN_MODE, sizeof(cm),
443 (u_int8_t *) &cm);
Harald Welte8d77b952009-12-17 00:31:10 +0100444 /* For compatibility with Phase 1 */
laforge694a5cf2010-06-20 21:38:19 +0200445 /* RSL IE TAG */
446 msgb_v_put(msg, RSL_IE_CHAN_IDENT);
447 /* RSL IE LEN: 04.08_cd_tag + CD + 04.08_ma_tag + 04.08_ma_len + ma_len */
448 msgb_v_put(msg, 1 + sizeof(struct gsm48_chan_desc) + 2 + lchan->ts->hopping.ma_len);
449 /* GSM 04.08 Chan Desc 2 (TAG + fixed 3 byte length V) */
450 msgb_v_put(msg, GSM48_IE_CHANDESC_2);
451 msgb_cd = msgb_put(msg, sizeof(cd));
452 memcpy(msgb_cd, &cd, sizeof(cd));
453 /* GSM 04.08 Mobile Allocation: TLV */
454 msgb_tlv_put(msg, GSM48_IE_MA_AFTER, lchan->ts->hopping.ma_len,
455 lchan->ts->hopping.ma_data);
456
Harald Welte08d91a52009-08-30 15:37:11 +0900457 if (lchan->encr.alg_id > RSL_ENC_ALG_A5(0)) {
458 u_int8_t encr_info[MAX_A5_KEY_LEN+2];
459 rc = build_encr_info(encr_info, lchan);
460 if (rc > 0)
461 msgb_tlv_put(msg, RSL_IE_ENCR_INFO, rc, encr_info);
462 }
463
Harald Welte8d77b952009-12-17 00:31:10 +0100464 switch (act_type) {
465 case RSL_ACT_INTER_ASYNC:
466 case RSL_ACT_INTER_SYNC:
467 msgb_tv_put(msg, RSL_IE_HANDO_REF, ho_ref);
468 break;
469 default:
470 break;
471 }
472
Harald Welted4c9bf32009-02-15 16:56:18 +0000473 msgb_tv_put(msg, RSL_IE_BS_POWER, lchan->bs_power);
474 msgb_tv_put(msg, RSL_IE_MS_POWER, lchan->ms_power);
Harald Welte4b634542008-12-27 01:55:51 +0000475 msgb_tv_put(msg, RSL_IE_TIMING_ADVANCE, ta);
476
Holger Hans Peter Freyther93b6c652010-01-28 04:45:05 +0100477 if (lchan->tch_mode == GSM48_CMODE_SPEECH_AMR)
478 msgb_tlv_put(msg, RSL_IE_MR_CONFIG, sizeof(lchan->mr_conf),
479 (u_int8_t *) &lchan->mr_conf);
480
Harald Weltee79769b2009-02-07 00:48:17 +0000481 msg->trx = lchan->ts->trx;
482
Harald Welte4b634542008-12-27 01:55:51 +0000483 return abis_rsl_sendmsg(msg);
484}
485
Harald Welte470abb72009-07-29 11:38:15 +0200486/* Chapter 8.4.9: Modify channel mode on BTS side */
Harald Welteda783762009-02-18 03:29:53 +0000487int rsl_chan_mode_modify_req(struct gsm_lchan *lchan)
488{
489 struct abis_rsl_dchan_hdr *dh;
Harald Welteeab33352009-06-27 03:09:08 +0200490 struct msgb *msg;
Harald Welte9943c5b2009-07-29 15:41:29 +0200491 int rc;
Harald Welteda783762009-02-18 03:29:53 +0000492
493 u_int8_t chan_nr = lchan2chan_nr(lchan);
494 struct rsl_ie_chan_mode cm;
495
Harald Welte9943c5b2009-07-29 15:41:29 +0200496 rc = channel_mode_from_lchan(&cm, lchan);
497 if (rc < 0)
498 return rc;
Harald Welteda783762009-02-18 03:29:53 +0000499
Harald Welteeab33352009-06-27 03:09:08 +0200500 msg = rsl_msgb_alloc();
Harald Welteda783762009-02-18 03:29:53 +0000501 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
502 init_dchan_hdr(dh, RSL_MT_MODE_MODIFY_REQ);
503 dh->chan_nr = chan_nr;
504
505 msgb_tlv_put(msg, RSL_IE_CHAN_MODE, sizeof(cm),
506 (u_int8_t *) &cm);
Harald Welte08d91a52009-08-30 15:37:11 +0900507
508 if (lchan->encr.alg_id > RSL_ENC_ALG_A5(0)) {
509 u_int8_t encr_info[MAX_A5_KEY_LEN+2];
510 rc = build_encr_info(encr_info, lchan);
511 if (rc > 0)
512 msgb_tlv_put(msg, RSL_IE_ENCR_INFO, rc, encr_info);
513 }
514
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +0100515 if (lchan->tch_mode == GSM48_CMODE_SPEECH_AMR) {
516 msgb_tlv_put(msg, RSL_IE_MR_CONFIG, sizeof(lchan->mr_conf),
517 (u_int8_t *) &lchan->mr_conf);
518 }
519
Harald Welte08d91a52009-08-30 15:37:11 +0900520 msg->trx = lchan->ts->trx;
521
522 return abis_rsl_sendmsg(msg);
523}
524
525/* Chapter 8.4.6: Send the encryption command with given L3 info */
526int rsl_encryption_cmd(struct msgb *msg)
527{
528 struct abis_rsl_dchan_hdr *dh;
529 struct gsm_lchan *lchan = msg->lchan;
530 u_int8_t chan_nr = lchan2chan_nr(lchan);
531 u_int8_t encr_info[MAX_A5_KEY_LEN+2];
Sylvain Munaut82aa6842009-09-27 11:13:18 +0200532 u_int8_t l3_len = msg->len;
Harald Welte08d91a52009-08-30 15:37:11 +0900533 int rc;
534
535 /* First push the L3 IE tag and length */
536 msgb_tv16_push(msg, RSL_IE_L3_INFO, l3_len);
537
538 /* then the link identifier (SAPI0, main sign link) */
539 msgb_tv_push(msg, RSL_IE_LINK_IDENT, 0);
540
541 /* then encryption information */
542 rc = build_encr_info(encr_info, lchan);
543 if (rc <= 0)
544 return rc;
545 msgb_tlv_push(msg, RSL_IE_ENCR_INFO, rc, encr_info);
546
547 /* and finally the DCHAN header */
548 dh = (struct abis_rsl_dchan_hdr *) msgb_push(msg, sizeof(*dh));
549 init_dchan_hdr(dh, RSL_MT_ENCR_CMD);
550 dh->chan_nr = chan_nr;
Harald Welteda783762009-02-18 03:29:53 +0000551
552 msg->trx = lchan->ts->trx;
553
554 return abis_rsl_sendmsg(msg);
555}
556
Harald Welte115d1032009-08-10 11:43:22 +0200557/* Chapter 8.4.5 / 4.6: Deactivate the SACCH after 04.08 RR CHAN RELEASE */
Harald Welteae0f2362009-07-19 18:36:49 +0200558int rsl_deact_sacch(struct gsm_lchan *lchan)
559{
560 struct abis_rsl_dchan_hdr *dh;
561 struct msgb *msg = rsl_msgb_alloc();
562
563 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
564 init_dchan_hdr(dh, RSL_MT_DEACTIVATE_SACCH);
565 dh->chan_nr = lchan2chan_nr(lchan);
566
567 msg->lchan = lchan;
568 msg->trx = lchan->ts->trx;
569
Harald Welte (local)19ef62a2009-12-27 18:16:36 +0100570 DEBUGP(DRSL, "%s DEACTivate SACCH CMD\n", gsm_lchan_name(lchan));
Harald Welteae0f2362009-07-19 18:36:49 +0200571
572 return abis_rsl_sendmsg(msg);
573}
574
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +0800575static void error_timeout_cb(void *data)
576{
577 struct gsm_lchan *lchan = data;
578 if (lchan->state != LCHAN_S_REL_ERR) {
579 LOGP(DRSL, LOGL_ERROR, "%s error timeout but not in error state: %d\n",
580 gsm_lchan_name(lchan), lchan->state);
581 return;
582 }
583
584 /* go back to the none state */
585 LOGP(DRSL, LOGL_NOTICE, "%s is back in operation.\n", gsm_lchan_name(lchan));
Holger Hans Peter Freyther44752d92010-06-08 11:53:33 +0800586 rsl_lchan_set_state(lchan, LCHAN_S_NONE);
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +0800587}
588
Harald Welte115d1032009-08-10 11:43:22 +0200589/* Chapter 8.4.14 / 4.7: Tell BTS to release the radio channel */
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +0800590static int rsl_rf_chan_release(struct gsm_lchan *lchan, int error)
Harald Welte52b1f982008-12-23 20:25:15 +0000591{
592 struct abis_rsl_dchan_hdr *dh;
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +0800593 struct msgb *msg;
Harald Welte52b1f982008-12-23 20:25:15 +0000594
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +0800595 if (lchan->state == LCHAN_S_REL_ERR) {
596 LOGP(DRSL, LOGL_NOTICE, "%s is in error state not sending release.\n",
597 gsm_lchan_name(lchan));
598 return -1;
599 }
600
601 msg = rsl_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000602 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
603 init_dchan_hdr(dh, RSL_MT_RF_CHAN_REL);
Harald Welte8470bf22008-12-25 23:28:35 +0000604 dh->chan_nr = lchan2chan_nr(lchan);
Harald Welte52b1f982008-12-23 20:25:15 +0000605
Harald Welte8470bf22008-12-25 23:28:35 +0000606 msg->lchan = lchan;
607 msg->trx = lchan->ts->trx;
608
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +0800609 DEBUGP(DRSL, "%s RF Channel Release CMD due error %d\n", gsm_lchan_name(lchan), error);
610
611 if (error) {
612 /*
613 * the nanoBTS sends RLL release indications after the channel release. This can
614 * be a problem when we have reassigned the channel to someone else and then can
615 * not figure out who used this channel.
616 */
Holger Hans Peter Freyther44752d92010-06-08 11:53:33 +0800617 rsl_lchan_set_state(lchan, LCHAN_S_REL_ERR);
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +0800618 lchan->error_timer.data = lchan;
619 lchan->error_timer.cb = error_timeout_cb;
620 bsc_schedule_timer(&lchan->error_timer,
621 msg->trx->bts->network->T3111 + 2, 0);
622 }
Harald Welte2d5b6382008-12-27 19:46:06 +0000623
Harald Welte115d1032009-08-10 11:43:22 +0200624 /* BTS will respond by RF CHAN REL ACK */
Harald Welte8470bf22008-12-25 23:28:35 +0000625 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000626}
627
628int rsl_paging_cmd(struct gsm_bts *bts, u_int8_t paging_group, u_int8_t len,
629 u_int8_t *ms_ident, u_int8_t chan_needed)
630{
631 struct abis_rsl_dchan_hdr *dh;
Harald Welte8470bf22008-12-25 23:28:35 +0000632 struct msgb *msg = rsl_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000633
634 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
635 init_dchan_hdr(dh, RSL_MT_PAGING_CMD);
636 dh->chan_nr = RSL_CHAN_PCH_AGCH;
637
638 msgb_tv_put(msg, RSL_IE_PAGING_GROUP, paging_group);
Harald Welte255539c2008-12-28 02:26:27 +0000639 msgb_tlv_put(msg, RSL_IE_MS_IDENTITY, len-2, ms_ident+2);
Harald Welte52b1f982008-12-23 20:25:15 +0000640 msgb_tv_put(msg, RSL_IE_CHAN_NEEDED, chan_needed);
641
Harald Welte8470bf22008-12-25 23:28:35 +0000642 msg->trx = bts->c0;
643
644 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000645}
646
Holger Freyther7448a532009-01-04 20:18:23 +0000647int rsl_paging_cmd_subscr(struct gsm_bts *bts, u_int8_t chan_need,
648 struct gsm_subscriber *subscr)
649{
Holger Freytherca362a62009-01-04 21:05:01 +0000650#if 0
Holger Freyther7448a532009-01-04 20:18:23 +0000651 u_int8_t mi[128];
652 unsigned int mi_len;
653 u_int8_t paging_group;
Holger Freytherca362a62009-01-04 21:05:01 +0000654#endif
Holger Freyther7448a532009-01-04 20:18:23 +0000655
656 return -1;
657}
658
Harald Welte52b1f982008-12-23 20:25:15 +0000659int imsi_str2bcd(u_int8_t *bcd_out, const char *str_in)
660{
661 int i, len = strlen(str_in);
662
663 for (i = 0; i < len; i++) {
664 int num = str_in[i] - 0x30;
665 if (num < 0 || num > 9)
666 return -1;
667 if (i % 2 == 0)
668 bcd_out[i/2] = num;
669 else
670 bcd_out[i/2] |= (num << 4);
671 }
672
673 return 0;
674}
675
Harald Welte702d8702008-12-26 20:25:35 +0000676/* Chapter 8.5.6 */
Harald Welte52b1f982008-12-23 20:25:15 +0000677int rsl_imm_assign_cmd(struct gsm_bts *bts, u_int8_t len, u_int8_t *val)
678{
Harald Welte8470bf22008-12-25 23:28:35 +0000679 struct msgb *msg = rsl_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000680 struct abis_rsl_dchan_hdr *dh;
Harald Welte362322e2009-02-15 14:36:38 +0000681 u_int8_t buf[MACBLOCK_SIZE];
Harald Welte52b1f982008-12-23 20:25:15 +0000682
683 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
684 init_dchan_hdr(dh, RSL_MT_IMMEDIATE_ASSIGN_CMD);
685 dh->chan_nr = RSL_CHAN_PCH_AGCH;
686
Harald Welte362322e2009-02-15 14:36:38 +0000687 switch (bts->type) {
688 case GSM_BTS_TYPE_BS11:
689 msgb_tlv_put(msg, RSL_IE_IMM_ASS_INFO, len, val);
690 break;
691 default:
692 /* If phase 2, construct a FULL_IMM_ASS_INFO */
693 pad_macblock(buf, val, len);
694 msgb_tlv_put(msg, RSL_IE_FULL_IMM_ASS_INFO, MACBLOCK_SIZE, buf);
695 break;
696 }
Harald Welte52b1f982008-12-23 20:25:15 +0000697
Harald Welte8470bf22008-12-25 23:28:35 +0000698 msg->trx = bts->c0;
699
700 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000701}
702
Harald Welte67fa91b2009-08-10 09:51:40 +0200703/* Send Siemens specific MS RF Power Capability Indication */
Harald Welte31c48932009-08-10 10:07:33 +0200704int rsl_siemens_mrpci(struct gsm_lchan *lchan, struct rsl_mrpci *mrpci)
Harald Welte67fa91b2009-08-10 09:51:40 +0200705{
706 struct msgb *msg = rsl_msgb_alloc();
707 struct abis_rsl_dchan_hdr *dh;
708
709 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
710 init_dchan_hdr(dh, RSL_MT_SIEMENS_MRPCI);
Harald Welte3c456d02009-08-10 11:26:14 +0200711 dh->c.msg_discr = ABIS_RSL_MDISC_DED_CHAN;
Harald Welte67fa91b2009-08-10 09:51:40 +0200712 dh->chan_nr = lchan2chan_nr(lchan);
Harald Welte31c48932009-08-10 10:07:33 +0200713 msgb_tv_put(msg, RSL_IE_SIEMENS_MRPCI, *(u_int8_t *)mrpci);
Harald Welte67fa91b2009-08-10 09:51:40 +0200714
Harald Welte5b8ed432009-12-24 12:20:20 +0100715 DEBUGP(DRSL, "%s TX Siemens MRPCI 0x%02x\n",
Harald Welte (local)19ef62a2009-12-27 18:16:36 +0100716 gsm_lchan_name(lchan), *(u_int8_t *)mrpci);
Harald Welte3c456d02009-08-10 11:26:14 +0200717
718 msg->trx = lchan->ts->trx;
719
Harald Welte67fa91b2009-08-10 09:51:40 +0200720 return abis_rsl_sendmsg(msg);
721}
722
723
Harald Welte8470bf22008-12-25 23:28:35 +0000724/* Send "DATA REQUEST" message with given L3 Info payload */
Harald Welte52b1f982008-12-23 20:25:15 +0000725/* Chapter 8.3.1 */
Harald Welte8470bf22008-12-25 23:28:35 +0000726int rsl_data_request(struct msgb *msg, u_int8_t link_id)
Harald Welte52b1f982008-12-23 20:25:15 +0000727{
Harald Welte8470bf22008-12-25 23:28:35 +0000728 if (msg->lchan == NULL) {
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100729 LOGP(DRSL, LOGL_ERROR, "cannot send DATA REQUEST to unknown lchan\n");
Harald Welte8470bf22008-12-25 23:28:35 +0000730 return -EINVAL;
731 }
Harald Welte52b1f982008-12-23 20:25:15 +0000732
Harald Welte3c9c5f92010-03-04 10:33:10 +0100733 rsl_rll_push_l3(msg, RSL_MT_DATA_REQ, lchan2chan_nr(msg->lchan),
734 link_id, 1);
Harald Welte52b1f982008-12-23 20:25:15 +0000735
Harald Welte8470bf22008-12-25 23:28:35 +0000736 msg->trx = msg->lchan->ts->trx;
737
738 return abis_rsl_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000739}
740
Harald Welteedcc5272009-08-09 13:47:35 +0200741/* Send "ESTABLISH REQUEST" message with given L3 Info payload */
742/* Chapter 8.3.1 */
743int rsl_establish_request(struct gsm_lchan *lchan, u_int8_t link_id)
744{
Harald Welte3c9c5f92010-03-04 10:33:10 +0100745 struct msgb *msg;
Harald Welteedcc5272009-08-09 13:47:35 +0200746
Harald Welte3c9c5f92010-03-04 10:33:10 +0100747 msg = rsl_rll_simple(RSL_MT_EST_REQ, lchan2chan_nr(lchan),
748 link_id, 0);
Harald Welteedcc5272009-08-09 13:47:35 +0200749 msg->trx = lchan->ts->trx;
750
751 return abis_rsl_sendmsg(msg);
752}
753
Harald Welted2dc1de2009-08-08 13:15:07 +0200754/* Chapter 8.3.7 Request the release of multiframe mode of RLL connection.
755 This is what higher layers should call. The BTS then responds with
756 RELEASE CONFIRM, which we in turn use to trigger RSL CHANNEL RELEASE,
757 which in turn is acknowledged by RSL CHANNEL RELEASE ACK, which calls
758 lchan_free() */
Holger Hans Peter Freyther4f5848d2010-06-08 11:57:45 +0800759int rsl_release_request(struct gsm_lchan *lchan, u_int8_t link_id, u_int8_t reason)
Harald Welted2dc1de2009-08-08 13:15:07 +0200760{
Harald Welted2dc1de2009-08-08 13:15:07 +0200761
Harald Welte3c9c5f92010-03-04 10:33:10 +0100762 struct msgb *msg;
763
764 msg = rsl_rll_simple(RSL_MT_REL_REQ, lchan2chan_nr(lchan),
765 link_id, 0);
Holger Hans Peter Freyther4f5848d2010-06-08 11:57:45 +0800766 /* 0 is normal release, 1 is local end */
767 msgb_tv_put(msg, RSL_IE_RELEASE_MODE, reason);
Harald Welted2dc1de2009-08-08 13:15:07 +0200768
Harald Welte8e93b792009-12-29 10:44:17 +0100769 /* FIXME: start some timer in case we don't receive a REL ACK ? */
770
Harald Welted2dc1de2009-08-08 13:15:07 +0200771 msg->trx = lchan->ts->trx;
772
773 return abis_rsl_sendmsg(msg);
774}
775
Holger Hans Peter Freyther74419492010-04-10 00:12:31 +0200776int rsl_lchan_set_state(struct gsm_lchan *lchan, int state)
777{
778 lchan->state = state;
779 return 0;
780}
781
Harald Welte702d8702008-12-26 20:25:35 +0000782/* Chapter 8.4.2: Channel Activate Acknowledge */
783static int rsl_rx_chan_act_ack(struct msgb *msg)
784{
785 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
786
787 /* BTS has confirmed channel activation, we now need
788 * to assign the activated channel to the MS */
Harald Welte4b634542008-12-27 01:55:51 +0000789 if (rslh->ie_chan != RSL_IE_CHAN_NR)
790 return -EINVAL;
Harald Welted011e8b2009-11-29 22:45:52 +0100791
Harald Welte8e93b792009-12-29 10:44:17 +0100792 if (msg->lchan->state != LCHAN_S_ACT_REQ)
Harald Welte1887f9d2009-12-29 10:52:38 +0100793 LOGP(DRSL, LOGL_NOTICE, "%s CHAN ACT ACK, but state %s\n",
794 gsm_lchan_name(msg->lchan),
795 gsm_lchans_name(msg->lchan->state));
Holger Hans Peter Freyther74419492010-04-10 00:12:31 +0200796 rsl_lchan_set_state(msg->lchan, LCHAN_S_ACTIVE);
Harald Welteb8bfc562009-12-21 13:27:11 +0100797
Harald Welted011e8b2009-11-29 22:45:52 +0100798 dispatch_signal(SS_LCHAN, S_LCHAN_ACTIVATE_ACK, msg->lchan);
799
Harald Welte4b634542008-12-27 01:55:51 +0000800 return 0;
801}
Harald Welte702d8702008-12-26 20:25:35 +0000802
Harald Welte4b634542008-12-27 01:55:51 +0000803/* Chapter 8.4.3: Channel Activate NACK */
804static int rsl_rx_chan_act_nack(struct msgb *msg)
805{
Harald Welte6dab0552009-05-01 17:21:37 +0000806 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
807 struct tlv_parsed tp;
Harald Welte4b634542008-12-27 01:55:51 +0000808
Harald Welte (local)91b603d2009-12-27 11:48:11 +0100809 LOGP(DRSL, LOGL_ERROR, "%s CHANNEL ACTIVATE NACK",
Harald Welte (local)19ef62a2009-12-27 18:16:36 +0100810 gsm_lchan_name(msg->lchan));
Harald Welte (local)91b603d2009-12-27 11:48:11 +0100811
Harald Welte6dab0552009-05-01 17:21:37 +0000812 /* BTS has rejected channel activation ?!? */
813 if (dh->ie_chan != RSL_IE_CHAN_NR)
Harald Welte4b634542008-12-27 01:55:51 +0000814 return -EINVAL;
Harald Welte6dab0552009-05-01 17:21:37 +0000815
816 rsl_tlv_parse(&tp, dh->data, msgb_l2len(msg)-sizeof(*dh));
Harald Welte (local)3e460312009-12-27 18:12:29 +0100817 if (TLVP_PRESENT(&tp, RSL_IE_CAUSE)) {
818 const u_int8_t *cause = TLVP_VAL(&tp, RSL_IE_CAUSE);
819 print_rsl_cause(LOGL_ERROR, cause,
Harald Welte8830e072009-07-28 17:58:09 +0200820 TLVP_LEN(&tp, RSL_IE_CAUSE));
Harald Welte (local)3e460312009-12-27 18:12:29 +0100821 if (*cause != RSL_ERR_RCH_ALR_ACTV_ALLOC)
Holger Hans Peter Freyther74419492010-04-10 00:12:31 +0200822 rsl_lchan_set_state(msg->lchan, LCHAN_S_NONE);
Harald Welte (local)3e460312009-12-27 18:12:29 +0100823 } else
Holger Hans Peter Freyther74419492010-04-10 00:12:31 +0200824 rsl_lchan_set_state(msg->lchan, LCHAN_S_NONE);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200825
Harald Welte (local)91b603d2009-12-27 11:48:11 +0100826 LOGPC(DRSL, LOGL_ERROR, "\n");
827
Harald Welted011e8b2009-11-29 22:45:52 +0100828 dispatch_signal(SS_LCHAN, S_LCHAN_ACTIVATE_NACK, msg->lchan);
829
Harald Welte3073a9f2009-08-09 19:50:08 +0200830 lchan_free(msg->lchan);
Harald Welte4b634542008-12-27 01:55:51 +0000831 return 0;
Harald Welte702d8702008-12-26 20:25:35 +0000832}
833
Harald Welte7f93cea2009-02-23 00:02:59 +0000834/* Chapter 8.4.4: Connection Failure Indication */
835static int rsl_rx_conn_fail(struct msgb *msg)
836{
837 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
838 struct tlv_parsed tp;
839
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100840 /* FIXME: print which channel */
Harald Welte (local)fc057502009-12-26 22:33:09 +0100841 LOGP(DRSL, LOGL_NOTICE, "%s CONNECTION FAIL: RELEASING ",
Harald Welte (local)19ef62a2009-12-27 18:16:36 +0100842 gsm_lchan_name(msg->lchan));
Harald Welte7f93cea2009-02-23 00:02:59 +0000843
844 rsl_tlv_parse(&tp, dh->data, msgb_l2len(msg)-sizeof(*dh));
845
Harald Welte8830e072009-07-28 17:58:09 +0200846 if (TLVP_PRESENT(&tp, RSL_IE_CAUSE))
Harald Welte5b8ed432009-12-24 12:20:20 +0100847 print_rsl_cause(LOGL_NOTICE, TLVP_VAL(&tp, RSL_IE_CAUSE),
Harald Welte8830e072009-07-28 17:58:09 +0200848 TLVP_LEN(&tp, RSL_IE_CAUSE));
849
Harald Welte (local)fc057502009-12-26 22:33:09 +0100850 LOGPC(DRSL, LOGL_NOTICE, "\n");
Harald Welte7f93cea2009-02-23 00:02:59 +0000851 /* FIXME: only free it after channel release ACK */
Holger Hans Peter Freyther3ba36d52010-04-17 06:48:29 +0200852 counter_inc(msg->lchan->ts->trx->bts->network->stats.chan.rf_fail);
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +0800853 return rsl_rf_chan_release(msg->lchan, 1);
Harald Welte7f93cea2009-02-23 00:02:59 +0000854}
855
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100856static void print_meas_rep_uni(struct gsm_meas_rep_unidir *mru,
857 const char *prefix)
858{
Harald Welte6739dfb2009-12-16 16:52:07 +0100859 DEBUGPC(DMEAS, "RXL-FULL-%s=%3ddBm RXL-SUB-%s=%3ddBm ",
860 prefix, rxlev2dbm(mru->full.rx_lev),
861 prefix, rxlev2dbm(mru->sub.rx_lev));
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100862 DEBUGPC(DMEAS, "RXQ-FULL-%s=%d RXQ-SUB-%s=%d ",
863 prefix, mru->full.rx_qual, prefix, mru->sub.rx_qual);
864}
865
866static void print_meas_rep(struct gsm_meas_rep *mr)
867{
Harald Welte6739dfb2009-12-16 16:52:07 +0100868 int i;
869
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100870 DEBUGP(DMEAS, "MEASUREMENT RESULT NR=%d ", mr->nr);
871
872 if (mr->flags & MEAS_REP_F_DL_DTX)
873 DEBUGPC(DMEAS, "DTXd ");
874
875 print_meas_rep_uni(&mr->ul, "ul");
876 DEBUGPC(DMEAS, "BS_POWER=%d ", mr->bs_power);
877 if (mr->flags & MEAS_REP_F_MS_TO)
878 DEBUGPC(DMEAS, "MS_TO=%d ", mr->ms_timing_offset);
879
880 if (mr->flags & MEAS_REP_F_MS_L1) {
Harald Welte6739dfb2009-12-16 16:52:07 +0100881 DEBUGPC(DMEAS, "L1_MS_PWR=%3ddBm ", mr->ms_l1.pwr);
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100882 DEBUGPC(DMEAS, "L1_FPC=%u ",
883 mr->flags & MEAS_REP_F_FPC ? 1 : 0);
884 DEBUGPC(DMEAS, "L1_TA=%u ", mr->ms_l1.ta);
885 }
886
887 if (mr->flags & MEAS_REP_F_UL_DTX)
888 DEBUGPC(DMEAS, "DTXu ");
889 if (mr->flags & MEAS_REP_F_BA1)
890 DEBUGPC(DMEAS, "BA1 ");
891 if (!(mr->flags & MEAS_REP_F_DL_VALID))
892 DEBUGPC(DMEAS, "NOT VALID ");
893 else
894 print_meas_rep_uni(&mr->dl, "dl");
895
896 DEBUGPC(DMEAS, "NUM_NEIGH=%u\n", mr->num_cell);
Harald Welte479015b2009-12-19 18:33:05 +0100897 if (mr->num_cell == 7)
898 return;
Harald Welte6739dfb2009-12-16 16:52:07 +0100899 for (i = 0; i < mr->num_cell; i++) {
900 struct gsm_meas_rep_cell *mrc = &mr->cell[i];
Harald Welte303e5e02009-12-25 23:02:22 +0100901 DEBUGP(DMEAS, "IDX=%u ARFCN=%u BSIC=%u => %d dBm\n",
902 mrc->neigh_idx, mrc->arfcn, mrc->bsic, rxlev2dbm(mrc->rxlev));
Harald Welte6739dfb2009-12-16 16:52:07 +0100903 }
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100904}
905
Harald Welte440fed02009-05-01 18:43:47 +0000906static int rsl_rx_meas_res(struct msgb *msg)
907{
908 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
909 struct tlv_parsed tp;
Harald Welted12b0fd2009-12-15 21:36:05 +0100910 struct gsm_meas_rep *mr = lchan_next_meas_rep(msg->lchan);
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100911 u_int8_t len;
912 const u_int8_t *val;
913 int rc;
Harald Welte440fed02009-05-01 18:43:47 +0000914
Harald Welteb8bfc562009-12-21 13:27:11 +0100915 /* check if this channel is actually active */
916 /* FIXME: maybe this check should be way more generic/centralized */
Harald Welte8e93b792009-12-29 10:44:17 +0100917 if (msg->lchan->state != LCHAN_S_ACTIVE) {
918 LOGP(DRSL, LOGL_NOTICE, "%s: MEAS RES for inactive channel\n",
919 gsm_lchan_name(msg->lchan));
Harald Welteb8bfc562009-12-21 13:27:11 +0100920 return 0;
Harald Welte8e93b792009-12-29 10:44:17 +0100921 }
Harald Welteb8bfc562009-12-21 13:27:11 +0100922
Harald Welted12b0fd2009-12-15 21:36:05 +0100923 memset(mr, 0, sizeof(*mr));
Harald Welte33e65972009-12-16 23:29:34 +0100924 mr->lchan = msg->lchan;
Harald Weltedbb1d882009-11-30 19:16:47 +0100925
Harald Welte440fed02009-05-01 18:43:47 +0000926 rsl_tlv_parse(&tp, dh->data, msgb_l2len(msg)-sizeof(*dh));
927
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100928 if (!TLVP_PRESENT(&tp, RSL_IE_MEAS_RES_NR) ||
929 !TLVP_PRESENT(&tp, RSL_IE_UPLINK_MEAS) ||
930 !TLVP_PRESENT(&tp, RSL_IE_BS_POWER))
931 return -EIO;
932
933 /* Mandatory Parts */
Harald Welted12b0fd2009-12-15 21:36:05 +0100934 mr->nr = *TLVP_VAL(&tp, RSL_IE_MEAS_RES_NR);
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100935
936 len = TLVP_LEN(&tp, RSL_IE_UPLINK_MEAS);
937 val = TLVP_VAL(&tp, RSL_IE_UPLINK_MEAS);
938 if (len >= 3) {
939 if (val[0] & 0x40)
Harald Welted12b0fd2009-12-15 21:36:05 +0100940 mr->flags |= MEAS_REP_F_DL_DTX;
941 mr->ul.full.rx_lev = val[0] & 0x3f;
942 mr->ul.sub.rx_lev = val[1] & 0x3f;
943 mr->ul.full.rx_qual = val[2]>>3 & 0x7;
944 mr->ul.sub.rx_qual = val[2] & 0x7;
Harald Welte440fed02009-05-01 18:43:47 +0000945 }
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100946
Harald Welted12b0fd2009-12-15 21:36:05 +0100947 mr->bs_power = *TLVP_VAL(&tp, RSL_IE_BS_POWER);
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100948
949 /* Optional Parts */
Harald Welte440fed02009-05-01 18:43:47 +0000950 if (TLVP_PRESENT(&tp, RSL_IE_MS_TIMING_OFFSET))
Harald Welted12b0fd2009-12-15 21:36:05 +0100951 mr->ms_timing_offset =
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100952 *TLVP_VAL(&tp, RSL_IE_MS_TIMING_OFFSET);
953
Harald Weltefe9af262009-06-20 18:44:35 +0200954 if (TLVP_PRESENT(&tp, RSL_IE_L1_INFO)) {
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100955 val = TLVP_VAL(&tp, RSL_IE_L1_INFO);
Harald Welted12b0fd2009-12-15 21:36:05 +0100956 mr->flags |= MEAS_REP_F_MS_L1;
957 mr->ms_l1.pwr = ms_pwr_dbm(msg->trx->bts->band, val[0] >> 3);
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100958 if (val[0] & 0x04)
Harald Welted12b0fd2009-12-15 21:36:05 +0100959 mr->flags |= MEAS_REP_F_FPC;
960 mr->ms_l1.ta = val[1];
Harald Weltefe9af262009-06-20 18:44:35 +0200961 }
Harald Weltef7c43522009-06-09 20:24:21 +0000962 if (TLVP_PRESENT(&tp, RSL_IE_L3_INFO)) {
Holger Hans Peter Freytherddd918f2009-10-22 15:43:55 +0200963 msg->l3h = (u_int8_t *) TLVP_VAL(&tp, RSL_IE_L3_INFO);
Harald Welted12b0fd2009-12-15 21:36:05 +0100964 rc = gsm48_parse_meas_rep(mr, msg);
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100965 if (rc < 0)
966 return rc;
967 }
968
Harald Welted12b0fd2009-12-15 21:36:05 +0100969 print_meas_rep(mr);
Harald Welte60d68f12009-06-05 20:07:43 +0000970
Harald Welted12b0fd2009-12-15 21:36:05 +0100971 dispatch_signal(SS_LCHAN, S_LCHAN_MEAS_REP, mr);
Harald Weltedbb1d882009-11-30 19:16:47 +0100972
Harald Welte75d34a82009-05-23 06:11:13 +0000973 return 0;
Harald Welte440fed02009-05-01 18:43:47 +0000974}
975
Harald Welted011e8b2009-11-29 22:45:52 +0100976/* Chapter 8.4.7 */
977static int rsl_rx_hando_det(struct msgb *msg)
978{
979 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
980 struct tlv_parsed tp;
981
Harald Welte (local)19ef62a2009-12-27 18:16:36 +0100982 DEBUGP(DRSL, "%s HANDOVER DETECT ", gsm_lchan_name(msg->lchan));
Harald Welted011e8b2009-11-29 22:45:52 +0100983
984 rsl_tlv_parse(&tp, dh->data, msgb_l2len(msg)-sizeof(*dh));
985
986 if (TLVP_PRESENT(&tp, RSL_IE_ACCESS_DELAY))
987 DEBUGPC(DRSL, "access delay = %u\n",
988 *TLVP_VAL(&tp, RSL_IE_ACCESS_DELAY));
989 else
990 DEBUGPC(DRSL, "\n");
991
992 dispatch_signal(SS_LCHAN, S_LCHAN_HANDOVER_DETECT, msg->lchan);
993
994 return 0;
995}
996
Harald Welte52b1f982008-12-23 20:25:15 +0000997static int abis_rsl_rx_dchan(struct msgb *msg)
998{
Harald Welte8470bf22008-12-25 23:28:35 +0000999 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
1000 int rc = 0;
Harald Weltef325eb42009-02-19 17:07:39 +00001001 char *ts_name;
Harald Welte52b1f982008-12-23 20:25:15 +00001002
Harald Welte8470bf22008-12-25 23:28:35 +00001003 msg->lchan = lchan_lookup(msg->trx, rslh->chan_nr);
Harald Welte (local)19ef62a2009-12-27 18:16:36 +01001004 ts_name = gsm_lchan_name(msg->lchan);
Harald Weltef325eb42009-02-19 17:07:39 +00001005
Harald Welte8470bf22008-12-25 23:28:35 +00001006 switch (rslh->c.msg_type) {
Harald Welte52b1f982008-12-23 20:25:15 +00001007 case RSL_MT_CHAN_ACTIV_ACK:
Harald Welte5b8ed432009-12-24 12:20:20 +01001008 DEBUGP(DRSL, "%s CHANNEL ACTIVATE ACK\n", ts_name);
Harald Welte4b634542008-12-27 01:55:51 +00001009 rc = rsl_rx_chan_act_ack(msg);
Harald Welte8470bf22008-12-25 23:28:35 +00001010 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001011 case RSL_MT_CHAN_ACTIV_NACK:
Harald Welte4b634542008-12-27 01:55:51 +00001012 rc = rsl_rx_chan_act_nack(msg);
Harald Welte8470bf22008-12-25 23:28:35 +00001013 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001014 case RSL_MT_CONN_FAIL:
Harald Welte7f93cea2009-02-23 00:02:59 +00001015 rc = rsl_rx_conn_fail(msg);
Harald Welte8470bf22008-12-25 23:28:35 +00001016 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001017 case RSL_MT_MEAS_RES:
Harald Welte440fed02009-05-01 18:43:47 +00001018 rc = rsl_rx_meas_res(msg);
Harald Welte2d5b6382008-12-27 19:46:06 +00001019 break;
Harald Welted011e8b2009-11-29 22:45:52 +01001020 case RSL_MT_HANDO_DET:
1021 rc = rsl_rx_hando_det(msg);
1022 break;
Harald Welte2d5b6382008-12-27 19:46:06 +00001023 case RSL_MT_RF_CHAN_REL_ACK:
Harald Welte5b8ed432009-12-24 12:20:20 +01001024 DEBUGP(DRSL, "%s RF CHANNEL RELEASE ACK\n", ts_name);
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +08001025 if (msg->lchan->state != LCHAN_S_REL_REQ && msg->lchan->state != LCHAN_S_REL_ERR)
Harald Welte1887f9d2009-12-29 10:52:38 +01001026 LOGP(DRSL, LOGL_NOTICE, "%s CHAN REL ACK but state %s\n",
1027 gsm_lchan_name(msg->lchan),
1028 gsm_lchans_name(msg->lchan->state));
Holger Hans Peter Freytherf30c0dc2010-05-31 21:33:15 +08001029 bsc_del_timer(&msg->lchan->T3111);
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +08001030 /* we have an error timer pending to release that */
1031 if (msg->lchan->state != LCHAN_S_REL_ERR)
1032 rsl_lchan_set_state(msg->lchan, LCHAN_S_NONE);
Harald Welte2d5b6382008-12-27 19:46:06 +00001033 lchan_free(msg->lchan);
Harald Welte8470bf22008-12-25 23:28:35 +00001034 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001035 case RSL_MT_MODE_MODIFY_ACK:
Harald Welte5b8ed432009-12-24 12:20:20 +01001036 DEBUGP(DRSL, "%s CHANNEL MODE MODIFY ACK\n", ts_name);
Harald Welteda783762009-02-18 03:29:53 +00001037 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001038 case RSL_MT_MODE_MODIFY_NACK:
Harald Welte5b8ed432009-12-24 12:20:20 +01001039 LOGP(DRSL, LOGL_ERROR, "%s CHANNEL MODE MODIFY NACK\n", ts_name);
Harald Welteda783762009-02-18 03:29:53 +00001040 break;
Harald Welte9c880c92009-10-24 10:29:22 +02001041 case RSL_MT_IPAC_PDCH_ACT_ACK:
Harald Welte5b8ed432009-12-24 12:20:20 +01001042 DEBUGPC(DRSL, "%s IPAC PDCH ACT ACK\n", ts_name);
Harald Welte4563eab2010-03-28 14:42:09 +08001043 msg->lchan->ts->flags |= TS_F_PDCH_MODE;
Harald Welte9c880c92009-10-24 10:29:22 +02001044 break;
1045 case RSL_MT_IPAC_PDCH_ACT_NACK:
Harald Welte5b8ed432009-12-24 12:20:20 +01001046 LOGP(DRSL, LOGL_ERROR, "%s IPAC PDCH ACT NACK\n", ts_name);
Harald Welte9c880c92009-10-24 10:29:22 +02001047 break;
1048 case RSL_MT_IPAC_PDCH_DEACT_ACK:
Harald Welte5b8ed432009-12-24 12:20:20 +01001049 DEBUGP(DRSL, "%s IPAC PDCH DEACT ACK\n", ts_name);
Harald Welte4563eab2010-03-28 14:42:09 +08001050 msg->lchan->ts->flags &= ~TS_F_PDCH_MODE;
Harald Welte9c880c92009-10-24 10:29:22 +02001051 break;
1052 case RSL_MT_IPAC_PDCH_DEACT_NACK:
Harald Welte5b8ed432009-12-24 12:20:20 +01001053 LOGP(DRSL, LOGL_ERROR, "%s IPAC PDCH DEACT NACK\n", ts_name);
Harald Welte9c880c92009-10-24 10:29:22 +02001054 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001055 case RSL_MT_PHY_CONTEXT_CONF:
1056 case RSL_MT_PREPROC_MEAS_RES:
Harald Welte52b1f982008-12-23 20:25:15 +00001057 case RSL_MT_TALKER_DET:
1058 case RSL_MT_LISTENER_DET:
1059 case RSL_MT_REMOTE_CODEC_CONF_REP:
1060 case RSL_MT_MR_CODEC_MOD_ACK:
1061 case RSL_MT_MR_CODEC_MOD_NACK:
1062 case RSL_MT_MR_CODEC_MOD_PER:
Harald Welte5b8ed432009-12-24 12:20:20 +01001063 LOGP(DRSL, LOGL_NOTICE, "%s Unimplemented Abis RSL DChan "
1064 "msg 0x%02x\n", ts_name, rslh->c.msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +00001065 break;
1066 default:
Harald Welte5b8ed432009-12-24 12:20:20 +01001067 LOGP(DRSL, LOGL_NOTICE, "%s unknown Abis RSL DChan msg 0x%02x\n",
1068 ts_name, rslh->c.msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +00001069 return -EINVAL;
1070 }
Harald Weltef325eb42009-02-19 17:07:39 +00001071
Harald Welte8470bf22008-12-25 23:28:35 +00001072 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001073}
1074
Harald Welte702d8702008-12-26 20:25:35 +00001075static int rsl_rx_error_rep(struct msgb *msg)
1076{
1077 struct abis_rsl_common_hdr *rslh = msgb_l2(msg);
Harald Welte8830e072009-07-28 17:58:09 +02001078 struct tlv_parsed tp;
Harald Welte702d8702008-12-26 20:25:35 +00001079
Harald Welte (local)d48f4eb2009-12-28 23:14:22 +01001080 LOGP(DRSL, LOGL_ERROR, "%s ERROR REPORT ", gsm_trx_name(msg->trx));
Harald Welte8830e072009-07-28 17:58:09 +02001081
1082 rsl_tlv_parse(&tp, rslh->data, msgb_l2len(msg)-sizeof(*rslh));
1083
1084 if (TLVP_PRESENT(&tp, RSL_IE_CAUSE))
Harald Welte5b8ed432009-12-24 12:20:20 +01001085 print_rsl_cause(LOGL_ERROR, TLVP_VAL(&tp, RSL_IE_CAUSE),
Harald Welte8830e072009-07-28 17:58:09 +02001086 TLVP_LEN(&tp, RSL_IE_CAUSE));
1087
Harald Welteb1d4c8e2009-12-17 23:10:46 +01001088 LOGPC(DRSL, LOGL_ERROR, "\n");
Harald Welte702d8702008-12-26 20:25:35 +00001089
1090 return 0;
1091}
1092
Harald Welte52b1f982008-12-23 20:25:15 +00001093static int abis_rsl_rx_trx(struct msgb *msg)
1094{
Harald Welte702d8702008-12-26 20:25:35 +00001095 struct abis_rsl_common_hdr *rslh = msgb_l2(msg);
Harald Welte8470bf22008-12-25 23:28:35 +00001096 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001097
1098 switch (rslh->msg_type) {
Harald Welte702d8702008-12-26 20:25:35 +00001099 case RSL_MT_ERROR_REPORT:
1100 rc = rsl_rx_error_rep(msg);
1101 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001102 case RSL_MT_RF_RES_IND:
1103 /* interference on idle channels of TRX */
Harald Welte (local)d48f4eb2009-12-28 23:14:22 +01001104 //DEBUGP(DRSL, "%s RF Resource Indication\n", gsm_trx_name(msg->trx));
Harald Welte8f5e2392009-02-03 12:57:37 +00001105 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001106 case RSL_MT_OVERLOAD:
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001107 /* indicate CCCH / ACCH / processor overload */
Harald Welte (local)d48f4eb2009-12-28 23:14:22 +01001108 LOGP(DRSL, LOGL_ERROR, "%s CCCH/ACCH/CPU Overload\n",
1109 gsm_trx_name(msg->trx));
Harald Welte52b1f982008-12-23 20:25:15 +00001110 break;
1111 default:
Harald Welte (local)d48f4eb2009-12-28 23:14:22 +01001112 LOGP(DRSL, LOGL_NOTICE, "%s Unknown Abis RSL TRX message "
1113 "type 0x%02x\n", gsm_trx_name(msg->trx), rslh->msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +00001114 return -EINVAL;
1115 }
Harald Welte8470bf22008-12-25 23:28:35 +00001116 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001117}
1118
Harald Welteb7e81162009-08-10 00:26:10 +02001119/* If T3101 expires, we never received a response to IMMEDIATE ASSIGN */
1120static void t3101_expired(void *data)
1121{
1122 struct gsm_lchan *lchan = data;
1123
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +08001124 rsl_rf_chan_release(lchan, 1);
Harald Welteb7e81162009-08-10 00:26:10 +02001125}
1126
Holger Hans Peter Freytherf30c0dc2010-05-31 21:33:15 +08001127/* If T3111 expires, we will send the RF Channel Request */
1128static void t3111_expired(void *data)
1129{
1130 struct gsm_lchan *lchan = data;
1131
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +08001132 rsl_rf_chan_release(lchan, 0);
Holger Hans Peter Freytherf30c0dc2010-05-31 21:33:15 +08001133}
1134
laforgecfa4a012010-06-21 12:08:52 +02001135#define GSM48_LEN2PLEN(a) (((a) << 2) | 1)
1136
Harald Welte8470bf22008-12-25 23:28:35 +00001137/* MS has requested a channel on the RACH */
Harald Welte52b1f982008-12-23 20:25:15 +00001138static int rsl_rx_chan_rqd(struct msgb *msg)
1139{
Harald Welte702d8702008-12-26 20:25:35 +00001140 struct gsm_bts *bts = msg->trx->bts;
Harald Welte8470bf22008-12-25 23:28:35 +00001141 struct abis_rsl_dchan_hdr *rqd_hdr = msgb_l2(msg);
laforge09108bf2010-06-20 15:18:46 +02001142 u_int8_t buf[GSM_MACBLOCK_LEN];
1143 struct gsm48_imm_ass *ia = (struct gsm48_imm_ass *) buf;
Harald Welte8470bf22008-12-25 23:28:35 +00001144 struct gsm48_req_ref *rqd_ref;
Harald Welte8470bf22008-12-25 23:28:35 +00001145 enum gsm_chan_t lctype;
Harald Welte2cbe0922008-12-29 04:09:31 +00001146 enum gsm_chreq_reason_t chreq_reason;
Harald Welte8470bf22008-12-25 23:28:35 +00001147 struct gsm_lchan *lchan;
1148 u_int8_t rqd_ta;
Holger Freyther3186bf22008-12-29 06:23:49 +00001149 int ret;
Harald Welte8470bf22008-12-25 23:28:35 +00001150
Harald Welte52b1f982008-12-23 20:25:15 +00001151 u_int16_t arfcn;
1152 u_int8_t ts_number, subch;
1153
Harald Welte8470bf22008-12-25 23:28:35 +00001154 /* parse request reference to be used in immediate assign */
1155 if (rqd_hdr->data[0] != RSL_IE_REQ_REFERENCE)
1156 return -EINVAL;
1157
1158 rqd_ref = (struct gsm48_req_ref *) &rqd_hdr->data[1];
1159
1160 /* parse access delay and use as TA */
1161 if (rqd_hdr->data[sizeof(struct gsm48_req_ref)+1] != RSL_IE_ACCESS_DELAY)
1162 return -EINVAL;
1163 rqd_ta = rqd_hdr->data[sizeof(struct gsm48_req_ref)+2];
1164
1165 /* determine channel type (SDCCH/TCH_F/TCH_H) based on
1166 * request reference RA */
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001167 lctype = get_ctype_by_chreq(bts, rqd_ref->ra, bts->network->neci);
1168 chreq_reason = get_reason_by_chreq(bts, rqd_ref->ra, bts->network->neci);
Harald Welte2cbe0922008-12-29 04:09:31 +00001169
Harald Welteffa55a42009-12-22 19:07:32 +01001170 counter_inc(bts->network->stats.chreq.total);
Harald Welte24ff6ee2009-12-22 00:41:05 +01001171
Harald Welte8470bf22008-12-25 23:28:35 +00001172 /* check availability / allocate channel */
1173 lchan = lchan_alloc(bts, lctype);
1174 if (!lchan) {
Harald Welte (local)2f5df852009-12-27 13:48:09 +01001175 LOGP(DRSL, LOGL_NOTICE, "BTS %d CHAN RQD: no resources for %s 0x%x\n",
Harald Welte (local)ccd88452009-12-27 18:05:25 +01001176 msg->lchan->ts->trx->bts->nr, gsm_lchant_name(lctype), rqd_ref->ra);
Harald Welteffa55a42009-12-22 19:07:32 +01001177 counter_inc(bts->network->stats.chreq.no_channel);
Harald Welte8470bf22008-12-25 23:28:35 +00001178 /* FIXME: send some kind of reject ?!? */
1179 return -ENOMEM;
1180 }
1181
Harald Welte8e93b792009-12-29 10:44:17 +01001182 if (lchan->state != LCHAN_S_NONE)
1183 LOGP(DRSL, LOGL_NOTICE, "%s lchan_alloc() returned channel "
Harald Welte1887f9d2009-12-29 10:52:38 +01001184 "in state %s\n", gsm_lchan_name(lchan),
1185 gsm_lchans_name(lchan->state));
Holger Hans Peter Freyther74419492010-04-10 00:12:31 +02001186 rsl_lchan_set_state(lchan, LCHAN_S_ACT_REQ);
Harald Welte (local)3e460312009-12-27 18:12:29 +01001187
Harald Welte8470bf22008-12-25 23:28:35 +00001188 ts_number = lchan->ts->nr;
1189 arfcn = lchan->ts->trx->arfcn;
1190 subch = lchan->nr;
Harald Welte52b1f982008-12-23 20:25:15 +00001191
Harald Welte08d91a52009-08-30 15:37:11 +09001192 lchan->encr.alg_id = RSL_ENC_ALG_A5(0); /* no encryption */
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001193 lchan->ms_power = ms_pwr_ctl_lvl(bts->band, bts->ms_max_power);
Harald Welte0b2124b2009-08-10 00:45:40 +02001194 lchan->bs_power = 0; /* 0dB reduction, output power = Pn */
Harald Welte9943c5b2009-07-29 15:41:29 +02001195 lchan->rsl_cmode = RSL_CMOD_SPD_SIGN;
Harald Welte196d0522009-08-28 23:28:28 +09001196 lchan->tch_mode = GSM48_CMODE_SIGN;
Harald Welte8d77b952009-12-17 00:31:10 +01001197 rsl_chan_activate_lchan(lchan, 0x00, rqd_ta, 0);
Harald Welte52b1f982008-12-23 20:25:15 +00001198
1199 /* create IMMEDIATE ASSIGN 04.08 messge */
laforge09108bf2010-06-20 15:18:46 +02001200 memset(ia, 0, sizeof(*ia));
laforgecfa4a012010-06-21 12:08:52 +02001201 /* we set ia->l2_plen once we know the length of the MA below */
laforge09108bf2010-06-20 15:18:46 +02001202 ia->proto_discr = GSM48_PDISC_RR;
1203 ia->msg_type = GSM48_MT_RR_IMM_ASS;
1204 ia->page_mode = GSM48_PM_SAME;
1205 gsm48_lchan2chan_desc(&ia->chan_desc, lchan);
Harald Weltea39b0f22010-06-14 22:26:10 +02001206
Harald Welte8470bf22008-12-25 23:28:35 +00001207 /* use request reference extracted from CHAN_RQD */
laforge09108bf2010-06-20 15:18:46 +02001208 memcpy(&ia->req_ref, rqd_ref, sizeof(ia->req_ref));
1209 ia->timing_advance = rqd_ta;
Harald Weltea39b0f22010-06-14 22:26:10 +02001210 if (!lchan->ts->hopping.enabled) {
laforge09108bf2010-06-20 15:18:46 +02001211 ia->mob_alloc_len = 0;
Harald Weltea39b0f22010-06-14 22:26:10 +02001212 } else {
laforge09108bf2010-06-20 15:18:46 +02001213 ia->mob_alloc_len = lchan->ts->hopping.ma_len;
1214 memcpy(ia->mob_alloc, lchan->ts->hopping.ma_data, ia->mob_alloc_len);
Harald Weltea39b0f22010-06-14 22:26:10 +02001215 }
laforgecfa4a012010-06-21 12:08:52 +02001216 ia->l2_plen = GSM48_LEN2PLEN(sizeof(*ia) + ia->mob_alloc_len);
Harald Welte52b1f982008-12-23 20:25:15 +00001217
Harald Welte5b8ed432009-12-24 12:20:20 +01001218 DEBUGP(DRSL, "%s Activating ARFCN(%u) SS(%u) lctype %s "
Harald Welte (local)19ef62a2009-12-27 18:16:36 +01001219 "r=%s ra=0x%02x\n", gsm_lchan_name(lchan), arfcn, subch,
Harald Welte (local)ccd88452009-12-27 18:05:25 +01001220 gsm_lchant_name(lchan->type), gsm_chreq_name(chreq_reason),
Harald Welte4a543e82009-02-28 13:17:55 +00001221 rqd_ref->ra);
Harald Welte75a983f2008-12-27 21:34:06 +00001222
Harald Welteb7e81162009-08-10 00:26:10 +02001223 /* Start timer T3101 to wait for GSM48_MT_RR_PAG_RESP */
1224 lchan->T3101.cb = t3101_expired;
1225 lchan->T3101.data = lchan;
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001226 bsc_schedule_timer(&lchan->T3101, bts->network->T3101, 0);
Holger Freyther3186bf22008-12-29 06:23:49 +00001227
Harald Welte52b1f982008-12-23 20:25:15 +00001228 /* send IMMEDIATE ASSIGN CMD on RSL to BTS (to send on CCCH to MS) */
laforge09108bf2010-06-20 15:18:46 +02001229 ret = rsl_imm_assign_cmd(bts, sizeof(*ia)+ia->mob_alloc_len, (u_int8_t *) ia);
Holger Freyther3186bf22008-12-29 06:23:49 +00001230
Harald Welte817f3c82008-12-30 14:57:59 +00001231 return ret;
Harald Welte52b1f982008-12-23 20:25:15 +00001232}
1233
Harald Welteea280442009-02-02 22:29:56 +00001234/* MS has requested a channel on the RACH */
1235static int rsl_rx_ccch_load(struct msgb *msg)
1236{
1237 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
1238 u_int16_t pg_buf_space;
Holger Freyther8c563cf2009-02-03 20:08:51 +00001239 u_int16_t rach_slot_count = -1;
1240 u_int16_t rach_busy_count = -1;
1241 u_int16_t rach_access_count = -1;
Harald Welteea280442009-02-02 22:29:56 +00001242
1243 switch (rslh->data[0]) {
1244 case RSL_IE_PAGING_LOAD:
1245 pg_buf_space = rslh->data[1] << 8 | rslh->data[2];
Harald Welte38e9c822010-04-19 10:24:07 +02001246 if (is_ipaccess_bts(msg->trx->bts) && pg_buf_space == 0xffff) {
1247 /* paging load below configured threshold, use 50 as default */
1248 pg_buf_space = 50;
1249 }
Holger Freyther392209c2009-02-10 00:06:19 +00001250 paging_update_buffer_space(msg->trx->bts, pg_buf_space);
Harald Welteea280442009-02-02 22:29:56 +00001251 break;
1252 case RSL_IE_RACH_LOAD:
Holger Freyther8c563cf2009-02-03 20:08:51 +00001253 if (msg->data_len >= 7) {
1254 rach_slot_count = rslh->data[2] << 8 | rslh->data[3];
1255 rach_busy_count = rslh->data[4] << 8 | rslh->data[5];
1256 rach_access_count = rslh->data[6] << 8 | rslh->data[7];
1257 }
Harald Welteea280442009-02-02 22:29:56 +00001258 break;
1259 default:
1260 break;
1261 }
1262
1263 return 0;
1264}
1265
Harald Welte52b1f982008-12-23 20:25:15 +00001266static int abis_rsl_rx_cchan(struct msgb *msg)
1267{
Harald Welteea280442009-02-02 22:29:56 +00001268 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
Harald Welte8470bf22008-12-25 23:28:35 +00001269 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001270
Harald Welte8470bf22008-12-25 23:28:35 +00001271 msg->lchan = lchan_lookup(msg->trx, rslh->chan_nr);
1272
1273 switch (rslh->c.msg_type) {
Harald Welte52b1f982008-12-23 20:25:15 +00001274 case RSL_MT_CHAN_RQD:
1275 /* MS has requested a channel on the RACH */
1276 rc = rsl_rx_chan_rqd(msg);
1277 break;
Harald Welteea280442009-02-02 22:29:56 +00001278 case RSL_MT_CCCH_LOAD_IND:
1279 /* current load on the CCCH */
1280 rc = rsl_rx_ccch_load(msg);
1281 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001282 case RSL_MT_DELETE_IND:
1283 /* CCCH overloaded, IMM_ASSIGN was dropped */
1284 case RSL_MT_CBCH_LOAD_IND:
1285 /* current load on the CBCH */
Harald Welteb1d4c8e2009-12-17 23:10:46 +01001286 LOGP(DRSL, LOGL_NOTICE, "Unimplemented Abis RSL TRX message "
1287 "type 0x%02x\n", rslh->c.msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +00001288 break;
1289 default:
Harald Welteb1d4c8e2009-12-17 23:10:46 +01001290 LOGP(DRSL, LOGL_NOTICE, "Unknown Abis RSL TRX message type "
1291 "0x%02x\n", rslh->c.msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +00001292 return -EINVAL;
1293 }
Harald Welte8470bf22008-12-25 23:28:35 +00001294
1295 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001296}
1297
Harald Welte4b634542008-12-27 01:55:51 +00001298static int rsl_rx_rll_err_ind(struct msgb *msg)
1299{
1300 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
1301 u_int8_t *rlm_cause = rllh->data;
1302
Harald Welte (local)9538efc2009-12-26 23:55:00 +01001303 LOGP(DRLL, LOGL_ERROR, "%s ERROR INDICATION cause=%s\n",
Harald Welte (local)19ef62a2009-12-27 18:16:36 +01001304 gsm_lchan_name(msg->lchan),
Harald Weltee95daf192010-03-25 12:13:02 +08001305 rsl_rlm_cause_name(rlm_cause[1]));
Harald Welteedcc5272009-08-09 13:47:35 +02001306
1307 rll_indication(msg->lchan, rllh->link_id, BSC_RLLR_IND_ERR_IND);
Harald Welte (local)9538efc2009-12-26 23:55:00 +01001308
Holger Hans Peter Freyther3ba36d52010-04-17 06:48:29 +02001309 if (rlm_cause[1] == RLL_CAUSE_T200_EXPIRED) {
1310 counter_inc(msg->lchan->ts->trx->bts->network->stats.chan.rll_err);
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +08001311 return rsl_rf_chan_release(msg->lchan, 1);
Holger Hans Peter Freyther3ba36d52010-04-17 06:48:29 +02001312 }
Harald Welte81543bc2009-07-04 09:40:05 +02001313
Harald Welte4b634542008-12-27 01:55:51 +00001314 return 0;
1315}
Harald Weltef325eb42009-02-19 17:07:39 +00001316
Holger Hans Peter Freytherdbc5fae2010-04-08 22:39:34 +02001317static void rsl_handle_release(struct gsm_lchan *lchan)
1318{
Holger Hans Peter Freytherf30c0dc2010-05-31 21:33:15 +08001319 struct gsm_bts *bts;
Holger Hans Peter Freytherd7fd3062010-04-08 22:47:44 +02001320 if (lchan->state != LCHAN_S_REL_REQ)
1321 LOGP(DRSL, LOGL_ERROR, "RF release on %s but state %s\n",
1322 gsm_lchan_name(lchan),
1323 gsm_lchans_name(lchan->state));
1324
1325
Holger Hans Peter Freytherf30c0dc2010-05-31 21:33:15 +08001326 /* wait a bit to send the RF Channel Release */
1327 lchan->T3111.cb = t3111_expired;
1328 lchan->T3111.data = lchan;
1329 bts = lchan->ts->trx->bts;
1330 bsc_schedule_timer(&lchan->T3111, bts->network->T3111, 0);
Holger Hans Peter Freytherdbc5fae2010-04-08 22:39:34 +02001331}
1332
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001333/* ESTABLISH INDICATION, LOCATION AREA UPDATE REQUEST
Harald Welte52b1f982008-12-23 20:25:15 +00001334 0x02, 0x06,
1335 0x01, 0x20,
1336 0x02, 0x00,
1337 0x0b, 0x00, 0x0f, 0x05, 0x08, ... */
1338
1339static int abis_rsl_rx_rll(struct msgb *msg)
1340{
1341 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
Harald Weltef325eb42009-02-19 17:07:39 +00001342 int rc = 0;
1343 char *ts_name;
Harald Welte (local)daef6062009-08-14 11:41:12 +02001344 u_int8_t sapi = rllh->link_id & 7;
Harald Welte8470bf22008-12-25 23:28:35 +00001345
1346 msg->lchan = lchan_lookup(msg->trx, rllh->chan_nr);
Harald Welte (local)19ef62a2009-12-27 18:16:36 +01001347 ts_name = gsm_lchan_name(msg->lchan);
Harald Welte5b8ed432009-12-24 12:20:20 +01001348 DEBUGP(DRLL, "%s SAPI=%u ", ts_name, sapi);
Harald Welte52b1f982008-12-23 20:25:15 +00001349
1350 switch (rllh->c.msg_type) {
1351 case RSL_MT_DATA_IND:
Harald Weltef325eb42009-02-19 17:07:39 +00001352 DEBUGPC(DRLL, "DATA INDICATION\n");
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001353 if (msgb_l2len(msg) >
Harald Welte4a543e82009-02-28 13:17:55 +00001354 sizeof(struct abis_rsl_common_hdr) + sizeof(*rllh) &&
1355 rllh->data[0] == RSL_IE_L3_INFO) {
1356 msg->l3h = &rllh->data[3];
Harald Welte (local)daef6062009-08-14 11:41:12 +02001357 return gsm0408_rcvmsg(msg, rllh->link_id);
Harald Welte4a543e82009-02-28 13:17:55 +00001358 }
Harald Welte52b1f982008-12-23 20:25:15 +00001359 break;
1360 case RSL_MT_EST_IND:
Harald Weltef325eb42009-02-19 17:07:39 +00001361 DEBUGPC(DRLL, "ESTABLISH INDICATION\n");
Harald Welteb7e81162009-08-10 00:26:10 +02001362 /* lchan is established, stop T3101 */
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +01001363 msg->lchan->sapis[rllh->link_id & 0x7] = LCHAN_SAPI_MS;
Harald Welteb7e81162009-08-10 00:26:10 +02001364 bsc_del_timer(&msg->lchan->T3101);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001365 if (msgb_l2len(msg) >
Harald Welte4a543e82009-02-28 13:17:55 +00001366 sizeof(struct abis_rsl_common_hdr) + sizeof(*rllh) &&
1367 rllh->data[0] == RSL_IE_L3_INFO) {
1368 msg->l3h = &rllh->data[3];
Harald Welte (local)daef6062009-08-14 11:41:12 +02001369 return gsm0408_rcvmsg(msg, rllh->link_id);
Harald Welte4a543e82009-02-28 13:17:55 +00001370 }
Harald Welte52b1f982008-12-23 20:25:15 +00001371 break;
Harald Welteedcc5272009-08-09 13:47:35 +02001372 case RSL_MT_EST_CONF:
Harald Welte1c409272009-08-09 14:13:58 +02001373 DEBUGPC(DRLL, "ESTABLISH CONFIRM\n");
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +01001374 msg->lchan->sapis[rllh->link_id & 0x7] = LCHAN_SAPI_NET;
Harald Welteedcc5272009-08-09 13:47:35 +02001375 rll_indication(msg->lchan, rllh->link_id,
1376 BSC_RLLR_IND_EST_CONF);
1377 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001378 case RSL_MT_REL_IND:
Harald Welted2dc1de2009-08-08 13:15:07 +02001379 /* BTS informs us of having received DISC from MS */
Harald Welte602f2b82009-08-04 02:50:21 +02001380 DEBUGPC(DRLL, "RELEASE INDICATION\n");
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +01001381 msg->lchan->sapis[rllh->link_id & 0x7] = LCHAN_SAPI_UNUSED;
Harald Welteedcc5272009-08-09 13:47:35 +02001382 rll_indication(msg->lchan, rllh->link_id,
1383 BSC_RLLR_IND_REL_IND);
Holger Hans Peter Freytherdbc5fae2010-04-08 22:39:34 +02001384 rsl_handle_release(msg->lchan);
Harald Welte2d5b6382008-12-27 19:46:06 +00001385 break;
1386 case RSL_MT_REL_CONF:
Harald Welted2dc1de2009-08-08 13:15:07 +02001387 /* BTS informs us of having received UA from MS,
1388 * in response to DISC that we've sent earlier */
Harald Welte602f2b82009-08-04 02:50:21 +02001389 DEBUGPC(DRLL, "RELEASE CONFIRMATION\n");
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +01001390 msg->lchan->sapis[rllh->link_id & 0x7] = LCHAN_SAPI_UNUSED;
Holger Hans Peter Freytherdbc5fae2010-04-08 22:39:34 +02001391 rsl_handle_release(msg->lchan);
Harald Welte4b634542008-12-27 01:55:51 +00001392 break;
1393 case RSL_MT_ERROR_IND:
1394 rc = rsl_rx_rll_err_ind(msg);
1395 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001396 case RSL_MT_UNIT_DATA_IND:
Harald Welteb1d4c8e2009-12-17 23:10:46 +01001397 LOGP(DRLL, LOGL_NOTICE, "unimplemented Abis RLL message "
1398 "type 0x%02x\n", rllh->c.msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +00001399 break;
1400 default:
Harald Welteb1d4c8e2009-12-17 23:10:46 +01001401 LOGP(DRLL, LOGL_NOTICE, "unknown Abis RLL message "
1402 "type 0x%02x\n", rllh->c.msg_type);
Harald Welte52b1f982008-12-23 20:25:15 +00001403 }
Harald Welte8470bf22008-12-25 23:28:35 +00001404 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001405}
1406
Harald Welte0603c9d2009-12-02 01:58:23 +05301407static u_int8_t ipa_smod_s_for_lchan(struct gsm_lchan *lchan)
Harald Weltef4e79f22009-07-28 18:11:56 +02001408{
Harald Welte0603c9d2009-12-02 01:58:23 +05301409 switch (lchan->tch_mode) {
Harald Weltef4e79f22009-07-28 18:11:56 +02001410 case GSM48_CMODE_SPEECH_V1:
Harald Welte0603c9d2009-12-02 01:58:23 +05301411 switch (lchan->type) {
1412 case GSM_LCHAN_TCH_F:
1413 return 0x00;
1414 case GSM_LCHAN_TCH_H:
1415 return 0x03;
1416 default:
1417 break;
1418 }
Harald Weltef4e79f22009-07-28 18:11:56 +02001419 case GSM48_CMODE_SPEECH_EFR:
Harald Welte0603c9d2009-12-02 01:58:23 +05301420 switch (lchan->type) {
1421 case GSM_LCHAN_TCH_F:
1422 return 0x01;
1423 /* there's no half-rate EFR */
1424 default:
1425 break;
1426 }
Harald Weltef4e79f22009-07-28 18:11:56 +02001427 case GSM48_CMODE_SPEECH_AMR:
Harald Welte0603c9d2009-12-02 01:58:23 +05301428 switch (lchan->type) {
1429 case GSM_LCHAN_TCH_F:
1430 return 0x02;
1431 case GSM_LCHAN_TCH_H:
1432 return 0x05;
1433 default:
1434 break;
1435 }
1436 default:
1437 break;
Harald Weltef4e79f22009-07-28 18:11:56 +02001438 }
Harald Welteb1d4c8e2009-12-17 23:10:46 +01001439 LOGP(DRSL, LOGL_ERROR, "Cannot determine ip.access speech mode for "
Harald Welte0603c9d2009-12-02 01:58:23 +05301440 "tch_mode == 0x%02x\n", lchan->tch_mode);
Harald Weltef4e79f22009-07-28 18:11:56 +02001441 return 0;
Harald Weltef4e79f22009-07-28 18:11:56 +02001442}
1443
Sylvain Munautb54dda42009-12-20 22:06:40 +01001444static u_int8_t ipa_rtp_pt_for_lchan(struct gsm_lchan *lchan)
1445{
1446 switch (lchan->tch_mode) {
1447 case GSM48_CMODE_SPEECH_V1:
1448 switch (lchan->type) {
1449 case GSM_LCHAN_TCH_F:
1450 return RTP_PT_GSM_FULL;
1451 case GSM_LCHAN_TCH_H:
1452 return RTP_PT_GSM_HALF;
1453 default:
1454 break;
1455 }
1456 case GSM48_CMODE_SPEECH_EFR:
1457 switch (lchan->type) {
1458 case GSM_LCHAN_TCH_F:
1459 return RTP_PT_GSM_EFR;
1460 /* there's no half-rate EFR */
1461 default:
1462 break;
1463 }
1464 case GSM48_CMODE_SPEECH_AMR:
1465 switch (lchan->type) {
1466 case GSM_LCHAN_TCH_F:
1467 return RTP_PT_AMR_FULL;
1468 case GSM_LCHAN_TCH_H:
1469 return RTP_PT_AMR_HALF;
1470 default:
1471 break;
1472 }
1473 default:
1474 break;
1475 }
1476 LOGP(DRSL, LOGL_ERROR, "Cannot determine ip.access rtp payload type for "
1477 "tch_mode == 0x%02x\n & lchan_type == %d",
1478 lchan->tch_mode, lchan->type);
1479 return 0;
1480}
1481
Harald Welte75099262009-02-16 21:12:08 +00001482/* ip.access specific RSL extensions */
Harald Welte5e3d91b2009-12-19 16:42:06 +01001483static void ipac_parse_rtp(struct gsm_lchan *lchan, struct tlv_parsed *tv)
1484{
1485 struct in_addr ip;
1486 u_int16_t port, conn_id;
1487
1488 if (TLVP_PRESENT(tv, RSL_IE_IPAC_LOCAL_IP)) {
1489 ip.s_addr = *((u_int32_t *) TLVP_VAL(tv, RSL_IE_IPAC_LOCAL_IP));
1490 DEBUGPC(DRSL, "LOCAL_IP=%s ", inet_ntoa(ip));
1491 lchan->abis_ip.bound_ip = ntohl(ip.s_addr);
1492 }
1493
1494 if (TLVP_PRESENT(tv, RSL_IE_IPAC_LOCAL_PORT)) {
1495 port = *((u_int16_t *) TLVP_VAL(tv, RSL_IE_IPAC_LOCAL_PORT));
1496 port = ntohs(port);
1497 DEBUGPC(DRSL, "LOCAL_PORT=%u ", port);
1498 lchan->abis_ip.bound_port = port;
1499 }
1500
1501 if (TLVP_PRESENT(tv, RSL_IE_IPAC_CONN_ID)) {
1502 conn_id = *((u_int16_t *) TLVP_VAL(tv, RSL_IE_IPAC_CONN_ID));
1503 conn_id = ntohs(conn_id);
1504 DEBUGPC(DRSL, "CON_ID=%u ", conn_id);
1505 lchan->abis_ip.conn_id = conn_id;
1506 }
1507
1508 if (TLVP_PRESENT(tv, RSL_IE_IPAC_RTP_PAYLOAD2)) {
1509 lchan->abis_ip.rtp_payload2 =
1510 *TLVP_VAL(tv, RSL_IE_IPAC_RTP_PAYLOAD2);
1511 DEBUGPC(DRSL, "RTP_PAYLOAD2=0x%02x ",
1512 lchan->abis_ip.rtp_payload2);
1513 }
1514
1515 if (TLVP_PRESENT(tv, RSL_IE_IPAC_SPEECH_MODE)) {
1516 lchan->abis_ip.speech_mode =
1517 *TLVP_VAL(tv, RSL_IE_IPAC_SPEECH_MODE);
1518 DEBUGPC(DRSL, "speech_mode=0x%02x ",
1519 lchan->abis_ip.speech_mode);
1520 }
1521
1522 if (TLVP_PRESENT(tv, RSL_IE_IPAC_REMOTE_IP)) {
1523 ip.s_addr = *((u_int32_t *) TLVP_VAL(tv, RSL_IE_IPAC_REMOTE_IP));
1524 DEBUGPC(DRSL, "REMOTE_IP=%s ", inet_ntoa(ip));
1525 lchan->abis_ip.connect_ip = ntohl(ip.s_addr);
1526 }
1527
1528 if (TLVP_PRESENT(tv, RSL_IE_IPAC_REMOTE_PORT)) {
1529 port = *((u_int16_t *) TLVP_VAL(tv, RSL_IE_IPAC_REMOTE_PORT));
1530 port = ntohs(port);
1531 DEBUGPC(DRSL, "REMOTE_PORT=%u ", port);
1532 lchan->abis_ip.connect_port = port;
1533 }
1534}
1535
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001536int rsl_ipacc_crcx(struct gsm_lchan *lchan)
Harald Welte75099262009-02-16 21:12:08 +00001537{
1538 struct msgb *msg = rsl_msgb_alloc();
1539 struct abis_rsl_dchan_hdr *dh;
1540
1541 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001542 init_dchan_hdr(dh, RSL_MT_IPAC_CRCX);
Harald Welte75099262009-02-16 21:12:08 +00001543 dh->c.msg_discr = ABIS_RSL_MDISC_IPACCESS;
1544 dh->chan_nr = lchan2chan_nr(lchan);
1545
Harald Weltef4e79f22009-07-28 18:11:56 +02001546 /* 0x1- == receive-only, 0x-1 == EFR codec */
Harald Welte5e3d91b2009-12-19 16:42:06 +01001547 lchan->abis_ip.speech_mode = 0x10 | ipa_smod_s_for_lchan(lchan);
Sylvain Munautb54dda42009-12-20 22:06:40 +01001548 lchan->abis_ip.rtp_payload = ipa_rtp_pt_for_lchan(lchan);
Harald Welte5e3d91b2009-12-19 16:42:06 +01001549 msgb_tv_put(msg, RSL_IE_IPAC_SPEECH_MODE, lchan->abis_ip.speech_mode);
Sylvain Munautb54dda42009-12-20 22:06:40 +01001550 msgb_tv_put(msg, RSL_IE_IPAC_RTP_PAYLOAD, lchan->abis_ip.rtp_payload);
Harald Weltef4e79f22009-07-28 18:11:56 +02001551
Sylvain Munautb54dda42009-12-20 22:06:40 +01001552 DEBUGP(DRSL, "%s IPAC_BIND speech_mode=0x%02x RTP_PAYLOAD=%d\n",
1553 gsm_lchan_name(lchan), lchan->abis_ip.speech_mode,
1554 lchan->abis_ip.rtp_payload);
Harald Weltef4e79f22009-07-28 18:11:56 +02001555
Harald Welte75099262009-02-16 21:12:08 +00001556 msg->trx = lchan->ts->trx;
1557
1558 return abis_rsl_sendmsg(msg);
1559}
1560
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001561int rsl_ipacc_mdcx(struct gsm_lchan *lchan, u_int32_t ip, u_int16_t port,
Harald Welte5e3d91b2009-12-19 16:42:06 +01001562 u_int8_t rtp_payload2)
Harald Welte75099262009-02-16 21:12:08 +00001563{
1564 struct msgb *msg = rsl_msgb_alloc();
1565 struct abis_rsl_dchan_hdr *dh;
Harald Welte5e3d91b2009-12-19 16:42:06 +01001566 u_int32_t *att_ip;
Harald Weltef4e79f22009-07-28 18:11:56 +02001567 struct in_addr ia;
Harald Welte75099262009-02-16 21:12:08 +00001568
1569 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001570 init_dchan_hdr(dh, RSL_MT_IPAC_MDCX);
Harald Welte75099262009-02-16 21:12:08 +00001571 dh->c.msg_discr = ABIS_RSL_MDISC_IPACCESS;
1572 dh->chan_nr = lchan2chan_nr(lchan);
1573
Harald Welte5e3d91b2009-12-19 16:42:06 +01001574 /* we need to store these now as MDCX_ACK does not return them :( */
1575 lchan->abis_ip.rtp_payload2 = rtp_payload2;
1576 lchan->abis_ip.connect_port = port;
1577 lchan->abis_ip.connect_ip = ip;
1578
Harald Welte58ca5b72009-07-29 12:12:18 +02001579 /* 0x0- == both directions, 0x-1 == EFR codec */
Harald Welte5e3d91b2009-12-19 16:42:06 +01001580 lchan->abis_ip.speech_mode = 0x00 | ipa_smod_s_for_lchan(lchan);
Sylvain Munautb54dda42009-12-20 22:06:40 +01001581 lchan->abis_ip.rtp_payload = ipa_rtp_pt_for_lchan(lchan);
Harald Welte58ca5b72009-07-29 12:12:18 +02001582
Harald Weltef4e79f22009-07-28 18:11:56 +02001583 ia.s_addr = htonl(ip);
Sylvain Munautb54dda42009-12-20 22:06:40 +01001584 DEBUGP(DRSL, "%s IPAC_MDCX IP=%s PORT=%d RTP_PAYLOAD=%d RTP_PAYLOAD2=%d "
1585 "CONN_ID=%d speech_mode=0x%02x\n", gsm_lchan_name(lchan),
1586 inet_ntoa(ia), port, lchan->abis_ip.rtp_payload, rtp_payload2,
1587 lchan->abis_ip.conn_id, lchan->abis_ip.speech_mode);
Harald Weltef4e79f22009-07-28 18:11:56 +02001588
Harald Welte5e3d91b2009-12-19 16:42:06 +01001589 msgb_tv16_put(msg, RSL_IE_IPAC_CONN_ID, lchan->abis_ip.conn_id);
1590 msgb_v_put(msg, RSL_IE_IPAC_REMOTE_IP);
1591 att_ip = (u_int32_t *) msgb_put(msg, sizeof(ip));
1592 *att_ip = ia.s_addr;
1593 msgb_tv16_put(msg, RSL_IE_IPAC_REMOTE_PORT, port);
1594 msgb_tv_put(msg, RSL_IE_IPAC_SPEECH_MODE, lchan->abis_ip.speech_mode);
Sylvain Munautb54dda42009-12-20 22:06:40 +01001595 msgb_tv_put(msg, RSL_IE_IPAC_RTP_PAYLOAD, lchan->abis_ip.rtp_payload);
Harald Weltef4e79f22009-07-28 18:11:56 +02001596 if (rtp_payload2)
1597 msgb_tv_put(msg, RSL_IE_IPAC_RTP_PAYLOAD2, rtp_payload2);
1598
Harald Welte75099262009-02-16 21:12:08 +00001599 msg->trx = lchan->ts->trx;
1600
1601 return abis_rsl_sendmsg(msg);
1602}
1603
Harald Weltea72273e2009-12-20 16:51:09 +01001604/* tell BTS to connect RTP stream to our local RTP socket */
1605int rsl_ipacc_mdcx_to_rtpsock(struct gsm_lchan *lchan)
1606{
1607 struct rtp_socket *rs = lchan->abis_ip.rtp_socket;
1608 int rc;
1609
1610 rc = rsl_ipacc_mdcx(lchan, ntohl(rs->rtp.sin_local.sin_addr.s_addr),
1611 ntohs(rs->rtp.sin_local.sin_port),
1612 /* FIXME: use RTP payload of bound socket, not BTS*/
1613 lchan->abis_ip.rtp_payload2);
1614
1615 return rc;
1616}
1617
Harald Welte4563eab2010-03-28 14:42:09 +08001618int rsl_ipacc_pdch_activate(struct gsm_lchan *lchan, int act)
Harald Welte9c880c92009-10-24 10:29:22 +02001619{
1620 struct msgb *msg = rsl_msgb_alloc();
1621 struct abis_rsl_dchan_hdr *dh;
Harald Welte4563eab2010-03-28 14:42:09 +08001622 u_int8_t msg_type;
1623
1624 if (act)
1625 msg_type = RSL_MT_IPAC_PDCH_ACT;
1626 else
1627 msg_type = RSL_MT_IPAC_PDCH_DEACT;
Harald Welte9c880c92009-10-24 10:29:22 +02001628
1629 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
Harald Welte4563eab2010-03-28 14:42:09 +08001630 init_dchan_hdr(dh, msg_type);
Harald Welte9c880c92009-10-24 10:29:22 +02001631 dh->c.msg_discr = ABIS_RSL_MDISC_DED_CHAN;
1632 dh->chan_nr = lchan2chan_nr(lchan);
1633
Harald Welte4563eab2010-03-28 14:42:09 +08001634 DEBUGP(DRSL, "%s IPAC_PDCH_%sACT\n", gsm_lchan_name(lchan),
1635 act ? "" : "DE");
Harald Welte9c880c92009-10-24 10:29:22 +02001636
1637 msg->trx = lchan->ts->trx;
1638
1639 return abis_rsl_sendmsg(msg);
1640}
1641
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001642static int abis_rsl_rx_ipacc_crcx_ack(struct msgb *msg)
Harald Welte75099262009-02-16 21:12:08 +00001643{
1644 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
1645 struct tlv_parsed tv;
Harald Welte2c828992009-12-02 01:56:49 +05301646 struct gsm_lchan *lchan = msg->lchan;
Harald Welte75099262009-02-16 21:12:08 +00001647
1648 /* the BTS has acknowledged a local bind, it now tells us the IP
1649 * address and port number to which it has bound the given logical
1650 * channel */
1651
1652 rsl_tlv_parse(&tv, dh->data, msgb_l2len(msg)-sizeof(*dh));
1653 if (!TLVP_PRESENT(&tv, RSL_IE_IPAC_LOCAL_PORT) ||
1654 !TLVP_PRESENT(&tv, RSL_IE_IPAC_LOCAL_IP) ||
Harald Welte86c162d2009-07-12 09:45:05 +02001655 !TLVP_PRESENT(&tv, RSL_IE_IPAC_CONN_ID)) {
Harald Welteb1d4c8e2009-12-17 23:10:46 +01001656 LOGP(DRSL, LOGL_NOTICE, "mandatory IE missing");
Harald Welte75099262009-02-16 21:12:08 +00001657 return -EINVAL;
1658 }
Harald Welte17f5bf62009-12-20 15:42:44 +01001659
Harald Welte5e3d91b2009-12-19 16:42:06 +01001660 ipac_parse_rtp(lchan, &tv);
Harald Welte17f5bf62009-12-20 15:42:44 +01001661
1662 /* in case we don't use direct BTS-to-BTS RTP */
1663 if (!ipacc_rtp_direct) {
1664 int rc;
1665 /* the BTS has successfully bound a TCH to a local ip/port,
1666 * which means we can connect our UDP socket to it */
1667 if (lchan->abis_ip.rtp_socket) {
1668 rtp_socket_free(lchan->abis_ip.rtp_socket);
1669 lchan->abis_ip.rtp_socket = NULL;
1670 }
1671
1672 lchan->abis_ip.rtp_socket = rtp_socket_create();
1673 if (!lchan->abis_ip.rtp_socket)
1674 goto out_err;
1675
1676 rc = rtp_socket_connect(lchan->abis_ip.rtp_socket,
1677 lchan->abis_ip.bound_ip,
1678 lchan->abis_ip.bound_port);
1679 if (rc < 0)
1680 goto out_err;
1681 }
1682
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001683 dispatch_signal(SS_ABISIP, S_ABISIP_CRCX_ACK, msg->lchan);
Harald Welte167df882009-02-17 14:35:45 +00001684
Harald Welte75099262009-02-16 21:12:08 +00001685 return 0;
Harald Welte17f5bf62009-12-20 15:42:44 +01001686out_err:
1687 return -EIO;
Harald Welte75099262009-02-16 21:12:08 +00001688}
1689
Harald Welte5e3d91b2009-12-19 16:42:06 +01001690static int abis_rsl_rx_ipacc_mdcx_ack(struct msgb *msg)
1691{
1692 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
1693 struct tlv_parsed tv;
1694 struct gsm_lchan *lchan = msg->lchan;
1695
1696 /* the BTS has acknowledged a remote connect request and
1697 * it now tells us the IP address and port number to which it has
1698 * connected the given logical channel */
1699
1700 rsl_tlv_parse(&tv, dh->data, msgb_l2len(msg)-sizeof(*dh));
1701 ipac_parse_rtp(lchan, &tv);
1702 dispatch_signal(SS_ABISIP, S_ABISIP_MDCX_ACK, msg->lchan);
1703
1704 return 0;
1705}
1706
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001707static int abis_rsl_rx_ipacc_dlcx_ind(struct msgb *msg)
Harald Welte75099262009-02-16 21:12:08 +00001708{
1709 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
1710 struct tlv_parsed tv;
Harald Welte17f5bf62009-12-20 15:42:44 +01001711 struct gsm_lchan *lchan = msg->lchan;
Harald Welte75099262009-02-16 21:12:08 +00001712
1713 rsl_tlv_parse(&tv, dh->data, msgb_l2len(msg)-sizeof(*dh));
Harald Welte75099262009-02-16 21:12:08 +00001714
Harald Welte8830e072009-07-28 17:58:09 +02001715 if (TLVP_PRESENT(&tv, RSL_IE_CAUSE))
Harald Welte5b8ed432009-12-24 12:20:20 +01001716 print_rsl_cause(LOGL_DEBUG, TLVP_VAL(&tv, RSL_IE_CAUSE),
Harald Welte8830e072009-07-28 17:58:09 +02001717 TLVP_LEN(&tv, RSL_IE_CAUSE));
Harald Welte75099262009-02-16 21:12:08 +00001718
Harald Welte17f5bf62009-12-20 15:42:44 +01001719 /* the BTS tells us a RTP stream has been disconnected */
1720 if (lchan->abis_ip.rtp_socket) {
1721 rtp_socket_free(lchan->abis_ip.rtp_socket);
1722 lchan->abis_ip.rtp_socket = NULL;
1723 }
1724
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001725 dispatch_signal(SS_ABISIP, S_ABISIP_DLCX_IND, msg->lchan);
Harald Welte888b1142009-07-28 18:02:05 +02001726
Harald Welte75099262009-02-16 21:12:08 +00001727 return 0;
1728}
1729
1730static int abis_rsl_rx_ipacc(struct msgb *msg)
1731{
1732 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
Harald Welte5b8ed432009-12-24 12:20:20 +01001733 char *ts_name;
Harald Welte75099262009-02-16 21:12:08 +00001734 int rc = 0;
1735
1736 msg->lchan = lchan_lookup(msg->trx, rllh->chan_nr);
Harald Welte (local)19ef62a2009-12-27 18:16:36 +01001737 ts_name = gsm_lchan_name(msg->lchan);
Harald Welte75099262009-02-16 21:12:08 +00001738
1739 switch (rllh->c.msg_type) {
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001740 case RSL_MT_IPAC_CRCX_ACK:
Harald Welte5b8ed432009-12-24 12:20:20 +01001741 DEBUGP(DRSL, "%s IPAC_CRCX_ACK ", ts_name);
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001742 rc = abis_rsl_rx_ipacc_crcx_ack(msg);
Harald Welte75099262009-02-16 21:12:08 +00001743 break;
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001744 case RSL_MT_IPAC_CRCX_NACK:
Harald Welte75099262009-02-16 21:12:08 +00001745 /* somehow the BTS was unable to bind the lchan to its local
1746 * port?!? */
Harald Welte5b8ed432009-12-24 12:20:20 +01001747 LOGP(DRSL, LOGL_ERROR, "%s IPAC_CRCX_NACK\n", ts_name);
Harald Welte75099262009-02-16 21:12:08 +00001748 break;
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001749 case RSL_MT_IPAC_MDCX_ACK:
Harald Welte75099262009-02-16 21:12:08 +00001750 /* the BTS tells us that a connect operation was successful */
Harald Welte5b8ed432009-12-24 12:20:20 +01001751 DEBUGP(DRSL, "%s IPAC_MDCX_ACK ", ts_name);
Harald Welte5e3d91b2009-12-19 16:42:06 +01001752 rc = abis_rsl_rx_ipacc_mdcx_ack(msg);
Harald Welte75099262009-02-16 21:12:08 +00001753 break;
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001754 case RSL_MT_IPAC_MDCX_NACK:
Harald Welte75099262009-02-16 21:12:08 +00001755 /* somehow the BTS was unable to connect the lchan to a remote
1756 * port */
Harald Welte5b8ed432009-12-24 12:20:20 +01001757 LOGP(DRSL, LOGL_ERROR, "%s IPAC_MDCX_NACK\n", ts_name);
Harald Welte75099262009-02-16 21:12:08 +00001758 break;
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001759 case RSL_MT_IPAC_DLCX_IND:
Harald Welte5b8ed432009-12-24 12:20:20 +01001760 DEBUGP(DRSL, "%s IPAC_DLCX_IND ", ts_name);
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001761 rc = abis_rsl_rx_ipacc_dlcx_ind(msg);
Harald Welte75099262009-02-16 21:12:08 +00001762 break;
1763 default:
Harald Welte5b8ed432009-12-24 12:20:20 +01001764 LOGP(DRSL, LOGL_NOTICE, "Unknown ip.access msg_type 0x%02x\n",
Harald Welteb1d4c8e2009-12-17 23:10:46 +01001765 rllh->c.msg_type);
Harald Welte75099262009-02-16 21:12:08 +00001766 break;
1767 }
Harald Welte6dab0552009-05-01 17:21:37 +00001768 DEBUGPC(DRSL, "\n");
Harald Welte75099262009-02-16 21:12:08 +00001769
1770 return rc;
1771}
1772
1773
Harald Welte52b1f982008-12-23 20:25:15 +00001774/* Entry-point where L2 RSL from BTS enters */
Harald Welte8470bf22008-12-25 23:28:35 +00001775int abis_rsl_rcvmsg(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001776{
Holger Hans Peter Freyther19bab732009-11-20 15:14:01 +01001777 struct abis_rsl_common_hdr *rslh;
Harald Welte8f5e2392009-02-03 12:57:37 +00001778 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001779
Holger Hans Peter Freyther19bab732009-11-20 15:14:01 +01001780 if (!msg) {
1781 DEBUGP(DRSL, "Empty RSL msg?..\n");
1782 return -1;
1783 }
1784
1785 if (msgb_l2len(msg) < sizeof(*rslh)) {
1786 DEBUGP(DRSL, "Truncated RSL message with l2len: %u\n", msgb_l2len(msg));
1787 return -1;
1788 }
1789
1790 rslh = msgb_l2(msg);
1791
Harald Welte52b1f982008-12-23 20:25:15 +00001792 switch (rslh->msg_discr & 0xfe) {
1793 case ABIS_RSL_MDISC_RLL:
1794 rc = abis_rsl_rx_rll(msg);
1795 break;
1796 case ABIS_RSL_MDISC_DED_CHAN:
1797 rc = abis_rsl_rx_dchan(msg);
1798 break;
1799 case ABIS_RSL_MDISC_COM_CHAN:
Harald Welte52b1f982008-12-23 20:25:15 +00001800 rc = abis_rsl_rx_cchan(msg);
1801 break;
Harald Welte8470bf22008-12-25 23:28:35 +00001802 case ABIS_RSL_MDISC_TRX:
1803 rc = abis_rsl_rx_trx(msg);
1804 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001805 case ABIS_RSL_MDISC_LOC:
Harald Welteb1d4c8e2009-12-17 23:10:46 +01001806 LOGP(DRSL, LOGL_NOTICE, "unimplemented RSL msg disc 0x%02x\n",
Harald Welte8f5e2392009-02-03 12:57:37 +00001807 rslh->msg_discr);
1808 break;
Harald Welte75099262009-02-16 21:12:08 +00001809 case ABIS_RSL_MDISC_IPACCESS:
1810 rc = abis_rsl_rx_ipacc(msg);
1811 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001812 default:
Harald Welteb1d4c8e2009-12-17 23:10:46 +01001813 LOGP(DRSL, LOGL_NOTICE, "unknown RSL message discriminator "
1814 "0x%02x\n", rslh->msg_discr);
Harald Welte52b1f982008-12-23 20:25:15 +00001815 return -EINVAL;
1816 }
Harald Welte4f4a3902008-12-26 00:04:49 +00001817 msgb_free(msg);
Harald Welte8470bf22008-12-25 23:28:35 +00001818 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001819}
Holger Freyther3b72a892009-02-04 00:31:39 +00001820
Holger Freyther3b72a892009-02-04 00:31:39 +00001821/* From Table 10.5.33 of GSM 04.08 */
1822int rsl_number_of_paging_subchannels(struct gsm_bts *bts)
1823{
Harald Weltea43f7892009-12-01 18:04:30 +05301824 if (bts->si_common.chan_desc.ccch_conf == RSL_BCCH_CCCH_CONF_1_C) {
1825 return MAX(1, (3 - bts->si_common.chan_desc.bs_ag_blks_res))
1826 * (bts->si_common.chan_desc.bs_pa_mfrms + 2);
Holger Freyther3b72a892009-02-04 00:31:39 +00001827 } else {
Harald Weltea43f7892009-12-01 18:04:30 +05301828 return (9 - bts->si_common.chan_desc.bs_ag_blks_res)
1829 * (bts->si_common.chan_desc.bs_pa_mfrms + 2);
Holger Freyther3b72a892009-02-04 00:31:39 +00001830 }
1831}