blob: d83af4a20c7d45e59d8c4053056222ab38725a94 [file] [log] [blame]
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001/* GSM Radio Signalling Link messages on the A-bis interface
Harald Welte59b04682009-06-10 05:40:52 +08002 * 3GPP TS 08.58 version 8.6.0 Release 1999 / ETSI TS 100 596 V8.6.0 */
3
Harald Weltea22d36b2010-03-04 10:33:10 +01004/* (C) 2008-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte59b04682009-06-10 05:40:52 +08005 *
6 * 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>
25#include <stdlib.h>
26#include <errno.h>
27#include <sys/types.h>
28#include <netinet/in.h>
29#include <arpa/inet.h>
30
31#include <openbsc/gsm_data.h>
32#include <openbsc/gsm_04_08.h>
Harald Weltef4625b12010-02-20 16:24:02 +010033#include <osmocore/gsm_utils.h>
Harald Welte59b04682009-06-10 05:40:52 +080034#include <openbsc/abis_rsl.h>
35#include <openbsc/chan_alloc.h>
Harald Welteed9a5ab2009-08-09 13:47:35 +020036#include <openbsc/bsc_rll.h>
Harald Welte59b04682009-06-10 05:40:52 +080037#include <openbsc/debug.h>
Harald Weltef4625b12010-02-20 16:24:02 +010038#include <osmocore/tlv.h>
Harald Welte59b04682009-06-10 05:40:52 +080039#include <openbsc/paging.h>
40#include <openbsc/signal.h>
Harald Weltec20bd1d2009-11-29 19:07:28 +010041#include <openbsc/meas_rep.h>
Harald Welte50517742009-12-20 15:42:44 +010042#include <openbsc/rtp_proxy.h>
Harald Welte1fa8bac2010-03-01 21:59:06 +010043#include <osmocore/rsl.h>
Harald Welte59b04682009-06-10 05:40:52 +080044
Holger Hans Peter Freytherc08f6f02010-06-22 12:11:59 +080045#include <osmocore/talloc.h>
46
Harald Welte59b04682009-06-10 05:40:52 +080047#define RSL_ALLOC_SIZE 1024
48#define RSL_ALLOC_HEADROOM 128
49
50#define MAX(a, b) (a) >= (b) ? (a) : (b)
51
Holger Hans Peter Freytherc08f6f02010-06-22 12:11:59 +080052static int rsl_send_imm_assignment(struct gsm_lchan *lchan);
53
Harald Welte59b04682009-06-10 05:40:52 +080054static u_int8_t mdisc_by_msgtype(u_int8_t msg_type)
55{
56 /* mask off the transparent bit ? */
57 msg_type &= 0xfe;
58
59 if ((msg_type & 0xf0) == 0x00)
60 return ABIS_RSL_MDISC_RLL;
61 if ((msg_type & 0xf0) == 0x10) {
62 if (msg_type >= 0x19 && msg_type <= 0x22)
63 return ABIS_RSL_MDISC_TRX;
64 else
65 return ABIS_RSL_MDISC_COM_CHAN;
66 }
67 if ((msg_type & 0xe0) == 0x20)
68 return ABIS_RSL_MDISC_DED_CHAN;
69
70 return ABIS_RSL_MDISC_LOC;
71}
72
73static inline void init_dchan_hdr(struct abis_rsl_dchan_hdr *dh,
74 u_int8_t msg_type)
75{
76 dh->c.msg_discr = mdisc_by_msgtype(msg_type);
77 dh->c.msg_type = msg_type;
78 dh->ie_chan = RSL_IE_CHAN_NR;
79}
80
Harald Welte59b04682009-06-10 05:40:52 +080081/* determine logical channel based on TRX and channel number IE */
82struct gsm_lchan *lchan_lookup(struct gsm_bts_trx *trx, u_int8_t chan_nr)
83{
84 struct gsm_lchan *lchan;
85 u_int8_t ts_nr = chan_nr & 0x07;
86 u_int8_t cbits = chan_nr >> 3;
87 u_int8_t lch_idx;
88 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
89
90 if (cbits == 0x01) {
91 lch_idx = 0; /* TCH/F */
Harald Welte37884ed2009-10-24 10:25:50 +020092 if (ts->pchan != GSM_PCHAN_TCH_F &&
93 ts->pchan != GSM_PCHAN_PDCH &&
94 ts->pchan != GSM_PCHAN_TCH_F_PDCH)
Harald Weltecf2ec4a2009-12-17 23:10:46 +010095 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte59b04682009-06-10 05:40:52 +080096 chan_nr, ts->pchan);
97 } else if ((cbits & 0x1e) == 0x02) {
98 lch_idx = cbits & 0x1; /* TCH/H */
99 if (ts->pchan != GSM_PCHAN_TCH_H)
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100100 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte59b04682009-06-10 05:40:52 +0800101 chan_nr, ts->pchan);
102 } else if ((cbits & 0x1c) == 0x04) {
103 lch_idx = cbits & 0x3; /* SDCCH/4 */
104 if (ts->pchan != GSM_PCHAN_CCCH_SDCCH4)
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100105 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte59b04682009-06-10 05:40:52 +0800106 chan_nr, ts->pchan);
107 } else if ((cbits & 0x18) == 0x08) {
108 lch_idx = cbits & 0x7; /* SDCCH/8 */
109 if (ts->pchan != GSM_PCHAN_SDCCH8_SACCH8C)
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100110 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte59b04682009-06-10 05:40:52 +0800111 chan_nr, ts->pchan);
112 } else if (cbits == 0x10 || cbits == 0x11 || cbits == 0x12) {
113 lch_idx = 0;
114 if (ts->pchan != GSM_PCHAN_CCCH &&
115 ts->pchan != GSM_PCHAN_CCCH_SDCCH4)
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100116 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte59b04682009-06-10 05:40:52 +0800117 chan_nr, ts->pchan);
118 /* FIXME: we should not return first sdcch4 !!! */
119 } else {
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100120 LOGP(DRSL, LOGL_ERROR, "unknown chan_nr=0x%02x\n", chan_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800121 return NULL;
122 }
123
124 lchan = &ts->lchan[lch_idx];
Harald Welte51d2a592010-03-26 21:28:59 +0800125 log_set_context(BSC_CTX_LCHAN, lchan);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800126 if (lchan->conn)
127 log_set_context(BSC_CTX_SUBSCR, lchan->conn->subscr);
Harald Welte59b04682009-06-10 05:40:52 +0800128
129 return lchan;
130}
131
Holger Hans Peter Freyther942ff172009-10-22 11:47:45 +0200132/* See Table 10.5.25 of GSM04.08 */
Harald Welteb5586242009-12-09 19:18:32 +0100133u_int8_t lchan2chan_nr(const struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +0800134{
135 struct gsm_bts_trx_ts *ts = lchan->ts;
136 u_int8_t cbits, chan_nr;
137
138 switch (ts->pchan) {
139 case GSM_PCHAN_TCH_F:
Harald Welte37884ed2009-10-24 10:25:50 +0200140 case GSM_PCHAN_PDCH:
141 case GSM_PCHAN_TCH_F_PDCH:
Harald Welte59b04682009-06-10 05:40:52 +0800142 cbits = 0x01;
143 break;
144 case GSM_PCHAN_TCH_H:
145 cbits = 0x02;
146 cbits += lchan->nr;
147 break;
148 case GSM_PCHAN_CCCH_SDCCH4:
149 cbits = 0x04;
150 cbits += lchan->nr;
151 break;
152 case GSM_PCHAN_SDCCH8_SACCH8C:
153 cbits = 0x08;
154 cbits += lchan->nr;
155 break;
156 default:
157 case GSM_PCHAN_CCCH:
158 cbits = 0x10;
159 break;
160 }
161
162 chan_nr = (cbits << 3) | (ts->nr & 0x7);
163
164 return chan_nr;
165}
166
167/* As per TS 03.03 Section 2.2, the IMSI has 'not more than 15 digits' */
168u_int64_t str_to_imsi(const char *imsi_str)
169{
170 u_int64_t ret;
171
172 ret = strtoull(imsi_str, NULL, 10);
173
174 return ret;
175}
176
177/* Table 5 Clause 7 TS 05.02 */
178unsigned int n_pag_blocks(int bs_ccch_sdcch_comb, unsigned int bs_ag_blks_res)
179{
180 if (!bs_ccch_sdcch_comb)
181 return 9 - bs_ag_blks_res;
182 else
183 return 3 - bs_ag_blks_res;
184}
185
186/* Chapter 6.5.2 of TS 05.02 */
187unsigned int get_ccch_group(u_int64_t imsi, unsigned int bs_cc_chans,
188 unsigned int n_pag_blocks)
189{
190 return (imsi % 1000) % (bs_cc_chans * n_pag_blocks) / n_pag_blocks;
191}
192
193/* Chapter 6.5.2 of TS 05.02 */
194unsigned int get_paging_group(u_int64_t imsi, unsigned int bs_cc_chans,
195 int n_pag_blocks)
196{
197 return (imsi % 1000) % (bs_cc_chans * n_pag_blocks) % n_pag_blocks;
198}
199
200static struct msgb *rsl_msgb_alloc(void)
201{
Harald Welte9cfc9352009-06-26 19:39:35 +0200202 return msgb_alloc_headroom(RSL_ALLOC_SIZE, RSL_ALLOC_HEADROOM,
203 "RSL");
Harald Welte59b04682009-06-10 05:40:52 +0800204}
205
206#define MACBLOCK_SIZE 23
207static void pad_macblock(u_int8_t *out, const u_int8_t *in, int len)
208{
209 memcpy(out, in, len);
210
211 if (len < MACBLOCK_SIZE)
212 memset(out+len, 0x2b, MACBLOCK_SIZE-len);
213}
214
Harald Welted2dd9de2009-08-30 15:37:11 +0900215/* Chapter 9.3.7: Encryption Information */
216static int build_encr_info(u_int8_t *out, struct gsm_lchan *lchan)
217{
218 *out++ = lchan->encr.alg_id & 0xff;
219 if (lchan->encr.key_len)
220 memcpy(out, lchan->encr.key, lchan->encr.key_len);
221 return lchan->encr.key_len + 1;
222}
223
Harald Weltede4477a2009-12-24 12:20:20 +0100224static void print_rsl_cause(int lvl, const u_int8_t *cause_v, u_int8_t cause_len)
Harald Weltef1a168d2009-07-28 17:58:09 +0200225{
Harald Welte59b04682009-06-10 05:40:52 +0800226 int i;
227
Harald Weltede4477a2009-12-24 12:20:20 +0100228 LOGPC(DRSL, lvl, "CAUSE=0x%02x(%s) ",
Harald Weltef1a168d2009-07-28 17:58:09 +0200229 cause_v[0], rsl_err_name(cause_v[0]));
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200230 for (i = 1; i < cause_len-1; i++)
Harald Weltede4477a2009-12-24 12:20:20 +0100231 LOGPC(DRSL, lvl, "%02x ", cause_v[i]);
Harald Welte59b04682009-06-10 05:40:52 +0800232}
233
234/* Send a BCCH_INFO message as per Chapter 8.5.1 */
235int rsl_bcch_info(struct gsm_bts_trx *trx, u_int8_t type,
236 const u_int8_t *data, int len)
237{
238 struct abis_rsl_dchan_hdr *dh;
239 struct msgb *msg = rsl_msgb_alloc();
240
241 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof*dh);
242 init_dchan_hdr(dh, RSL_MT_BCCH_INFO);
243 dh->chan_nr = RSL_CHAN_BCCH;
244
245 msgb_tv_put(msg, RSL_IE_SYSINFO_TYPE, type);
246 msgb_tlv_put(msg, RSL_IE_FULL_BCCH_INFO, len, data);
247
248 msg->trx = trx;
249
250 return abis_rsl_sendmsg(msg);
251}
252
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200253int rsl_sacch_filling(struct gsm_bts_trx *trx, u_int8_t type,
Harald Welte59b04682009-06-10 05:40:52 +0800254 const u_int8_t *data, int len)
255{
256 struct abis_rsl_common_hdr *ch;
257 struct msgb *msg = rsl_msgb_alloc();
258
259 ch = (struct abis_rsl_common_hdr *) msgb_put(msg, sizeof(*ch));
260 ch->msg_discr = ABIS_RSL_MDISC_TRX;
261 ch->msg_type = RSL_MT_SACCH_FILL;
262
263 msgb_tv_put(msg, RSL_IE_SYSINFO_TYPE, type);
264 msgb_tl16v_put(msg, RSL_IE_L3_INFO, len, data);
265
266 msg->trx = trx;
267
268 return abis_rsl_sendmsg(msg);
269}
270
Harald Welte91afe4c2009-06-20 18:15:19 +0200271int rsl_chan_bs_power_ctrl(struct gsm_lchan *lchan, unsigned int fpc, int db)
272{
273 struct abis_rsl_dchan_hdr *dh;
Harald Welteed831842009-06-27 03:09:08 +0200274 struct msgb *msg;
Harald Welte91afe4c2009-06-20 18:15:19 +0200275 u_int8_t chan_nr = lchan2chan_nr(lchan);
276
277 db = abs(db);
278 if (db > 30)
279 return -EINVAL;
280
Harald Welteed831842009-06-27 03:09:08 +0200281 msg = rsl_msgb_alloc();
282
Harald Welte91afe4c2009-06-20 18:15:19 +0200283 lchan->bs_power = db/2;
284 if (fpc)
285 lchan->bs_power |= 0x10;
286
287 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
288 init_dchan_hdr(dh, RSL_MT_BS_POWER_CONTROL);
289 dh->chan_nr = chan_nr;
290
291 msgb_tv_put(msg, RSL_IE_BS_POWER, lchan->bs_power);
292
293 msg->trx = lchan->ts->trx;
294
295 return abis_rsl_sendmsg(msg);
296}
297
Harald Welte91afe4c2009-06-20 18:15:19 +0200298int rsl_chan_ms_power_ctrl(struct gsm_lchan *lchan, unsigned int fpc, int dbm)
299{
300 struct abis_rsl_dchan_hdr *dh;
Harald Welteed831842009-06-27 03:09:08 +0200301 struct msgb *msg;
Harald Welte91afe4c2009-06-20 18:15:19 +0200302 u_int8_t chan_nr = lchan2chan_nr(lchan);
303 int ctl_lvl;
304
Harald Weltec4dcda02009-08-09 14:45:18 +0200305 ctl_lvl = ms_pwr_ctl_lvl(lchan->ts->trx->bts->band, dbm);
Harald Welte91afe4c2009-06-20 18:15:19 +0200306 if (ctl_lvl < 0)
307 return ctl_lvl;
308
Harald Welteed831842009-06-27 03:09:08 +0200309 msg = rsl_msgb_alloc();
310
Harald Welte91afe4c2009-06-20 18:15:19 +0200311 lchan->ms_power = ctl_lvl;
312
313 if (fpc)
314 lchan->ms_power |= 0x20;
315
316 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
317 init_dchan_hdr(dh, RSL_MT_MS_POWER_CONTROL);
318 dh->chan_nr = chan_nr;
319
320 msgb_tv_put(msg, RSL_IE_MS_POWER, lchan->ms_power);
321
322 msg->trx = lchan->ts->trx;
323
324 return abis_rsl_sendmsg(msg);
325}
326
Harald Welte39274f42009-07-29 15:41:29 +0200327static int channel_mode_from_lchan(struct rsl_ie_chan_mode *cm,
328 struct gsm_lchan *lchan)
329{
330 memset(cm, 0, sizeof(cm));
331
332 /* FIXME: what to do with data calls ? */
333 cm->dtx_dtu = 0x00;
334
335 /* set TCH Speech/Data */
336 cm->spd_ind = lchan->rsl_cmode;
337
Harald Welte951e3512009-11-27 08:55:16 +0100338 if (lchan->rsl_cmode == RSL_CMOD_SPD_SIGN &&
339 lchan->tch_mode != GSM48_CMODE_SIGN)
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100340 LOGP(DRSL, LOGL_ERROR, "unsupported: rsl_mode == signalling, "
Harald Welte951e3512009-11-27 08:55:16 +0100341 "but tch_mode != signalling\n");
342
Harald Welte39274f42009-07-29 15:41:29 +0200343 switch (lchan->type) {
344 case GSM_LCHAN_SDCCH:
345 cm->chan_rt = RSL_CMOD_CRT_SDCCH;
346 break;
347 case GSM_LCHAN_TCH_F:
348 cm->chan_rt = RSL_CMOD_CRT_TCH_Bm;
349 break;
350 case GSM_LCHAN_TCH_H:
351 cm->chan_rt = RSL_CMOD_CRT_TCH_Lm;
352 break;
353 case GSM_LCHAN_NONE:
354 case GSM_LCHAN_UNKNOWN:
355 default:
356 return -EINVAL;
357 }
358
359 switch (lchan->tch_mode) {
360 case GSM48_CMODE_SIGN:
361 cm->chan_rate = 0;
362 break;
363 case GSM48_CMODE_SPEECH_V1:
364 cm->chan_rate = RSL_CMOD_SP_GSM1;
365 break;
366 case GSM48_CMODE_SPEECH_EFR:
367 cm->chan_rate = RSL_CMOD_SP_GSM2;
368 break;
369 case GSM48_CMODE_SPEECH_AMR:
370 cm->chan_rate = RSL_CMOD_SP_GSM3;
371 break;
372 case GSM48_CMODE_DATA_14k5:
373 cm->chan_rate = RSL_CMOD_SP_NT_14k5;
374 break;
375 case GSM48_CMODE_DATA_12k0:
376 cm->chan_rate = RSL_CMOD_SP_NT_12k0;
377 break;
378 case GSM48_CMODE_DATA_6k0:
379 cm->chan_rate = RSL_CMOD_SP_NT_6k0;
380 break;
381 default:
382 return -EINVAL;
383 }
384
385 return 0;
386}
387
Harald Welte59b04682009-06-10 05:40:52 +0800388/* Chapter 8.4.1 */
389#if 0
390int rsl_chan_activate(struct gsm_bts_trx *trx, u_int8_t chan_nr,
391 u_int8_t act_type,
392 struct rsl_ie_chan_mode *chan_mode,
393 struct rsl_ie_chan_ident *chan_ident,
394 u_int8_t bs_power, u_int8_t ms_power,
395 u_int8_t ta)
396{
397 struct abis_rsl_dchan_hdr *dh;
398 struct msgb *msg = rsl_msgb_alloc();
399
400 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
401 init_dchan_hdr(dh, RSL_MT_CHAN_ACTIV);
402 dh->chan_nr = chan_nr;
403
404 msgb_tv_put(msg, RSL_IE_ACT_TYPE, act_type);
405 /* For compatibility with Phase 1 */
406 msgb_tlv_put(msg, RSL_IE_CHAN_MODE, sizeof(*chan_mode),
407 (u_int8_t *) chan_mode);
408 msgb_tlv_put(msg, RSL_IE_CHAN_IDENT, 4,
409 (u_int8_t *) chan_ident);
410#if 0
411 msgb_tlv_put(msg, RSL_IE_ENCR_INFO, 1,
412 (u_int8_t *) &encr_info);
413#endif
414 msgb_tv_put(msg, RSL_IE_BS_POWER, bs_power);
415 msgb_tv_put(msg, RSL_IE_MS_POWER, ms_power);
416 msgb_tv_put(msg, RSL_IE_TIMING_ADVANCE, ta);
417
418 msg->trx = trx;
419
420 return abis_rsl_sendmsg(msg);
421}
422#endif
423
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200424int rsl_chan_activate_lchan(struct gsm_lchan *lchan, u_int8_t act_type,
Harald Welteb90d7bd2009-12-17 00:31:10 +0100425 u_int8_t ta, u_int8_t ho_ref)
Harald Welte59b04682009-06-10 05:40:52 +0800426{
427 struct abis_rsl_dchan_hdr *dh;
Harald Welteed831842009-06-27 03:09:08 +0200428 struct msgb *msg;
Harald Welte39274f42009-07-29 15:41:29 +0200429 int rc;
Harald Weltedea24e92010-06-29 17:53:45 +0200430 uint8_t *len;
Harald Welte59b04682009-06-10 05:40:52 +0800431
432 u_int8_t chan_nr = lchan2chan_nr(lchan);
Harald Welte59b04682009-06-10 05:40:52 +0800433 struct rsl_ie_chan_mode cm;
laforgef723cf02010-06-20 21:38:19 +0200434 struct gsm48_chan_desc cd;
Harald Welte59b04682009-06-10 05:40:52 +0800435
Harald Welte39274f42009-07-29 15:41:29 +0200436 rc = channel_mode_from_lchan(&cm, lchan);
437 if (rc < 0)
438 return rc;
Harald Welte59b04682009-06-10 05:40:52 +0800439
Holger Hans Peter Freyther11b01402010-06-30 11:56:43 +0800440 memset(&cd, 0, sizeof(cd));
laforgef723cf02010-06-20 21:38:19 +0200441 gsm48_lchan2chan_desc(&cd, lchan);
Harald Welte59b04682009-06-10 05:40:52 +0800442
Harald Welteed831842009-06-27 03:09:08 +0200443 msg = rsl_msgb_alloc();
Harald Welte59b04682009-06-10 05:40:52 +0800444 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
445 init_dchan_hdr(dh, RSL_MT_CHAN_ACTIV);
446 dh->chan_nr = chan_nr;
447
448 msgb_tv_put(msg, RSL_IE_ACT_TYPE, act_type);
Harald Welte59b04682009-06-10 05:40:52 +0800449 msgb_tlv_put(msg, RSL_IE_CHAN_MODE, sizeof(cm),
450 (u_int8_t *) &cm);
Holger Hans Peter Freyther11b01402010-06-30 11:56:43 +0800451
452 /*
453 * The Channel Identification is needed for Phase1 phones
454 * and it contains the GSM48 Channel Description and the
455 * Mobile Allocation. The GSM 08.58 asks for the Mobile
456 * Allocation to have a length of zero. We are using the
457 * msgb_l3len to calculate the length of both messages.
458 */
laforgef723cf02010-06-20 21:38:19 +0200459 msgb_v_put(msg, RSL_IE_CHAN_IDENT);
Harald Weltedea24e92010-06-29 17:53:45 +0200460 len = msgb_put(msg, 1);
Holger Hans Peter Freyther11b01402010-06-30 11:56:43 +0800461 msgb_tlv_put(msg, GSM48_IE_CHANDESC_2, sizeof(cd), (const uint8_t *) &cd);
Holger Hans Peter Freyther4cab4422010-06-30 12:06:20 +0800462
463 if (lchan->ts->hopping.enabled)
464 msgb_tlv_put(msg, GSM48_IE_MA_AFTER, lchan->ts->hopping.ma_len,
465 lchan->ts->hopping.ma_data);
466 else
467 msgb_tlv_put(msg, GSM48_IE_MA_AFTER, 0, NULL);
Holger Hans Peter Freyther11b01402010-06-30 11:56:43 +0800468
469 /* update the calculated size */
470 msg->l3h = len + 1;
471 *len = msgb_l3len(msg);
472
Harald Welted2dd9de2009-08-30 15:37:11 +0900473 if (lchan->encr.alg_id > RSL_ENC_ALG_A5(0)) {
474 u_int8_t encr_info[MAX_A5_KEY_LEN+2];
475 rc = build_encr_info(encr_info, lchan);
476 if (rc > 0)
477 msgb_tlv_put(msg, RSL_IE_ENCR_INFO, rc, encr_info);
478 }
479
Harald Welteb90d7bd2009-12-17 00:31:10 +0100480 switch (act_type) {
481 case RSL_ACT_INTER_ASYNC:
482 case RSL_ACT_INTER_SYNC:
483 msgb_tv_put(msg, RSL_IE_HANDO_REF, ho_ref);
484 break;
485 default:
486 break;
487 }
488
Harald Welte59b04682009-06-10 05:40:52 +0800489 msgb_tv_put(msg, RSL_IE_BS_POWER, lchan->bs_power);
490 msgb_tv_put(msg, RSL_IE_MS_POWER, lchan->ms_power);
491 msgb_tv_put(msg, RSL_IE_TIMING_ADVANCE, ta);
492
Holger Hans Peter Freyther6fe8ab92010-01-28 04:45:05 +0100493 if (lchan->tch_mode == GSM48_CMODE_SPEECH_AMR)
494 msgb_tlv_put(msg, RSL_IE_MR_CONFIG, sizeof(lchan->mr_conf),
495 (u_int8_t *) &lchan->mr_conf);
496
Harald Welte59b04682009-06-10 05:40:52 +0800497 msg->trx = lchan->ts->trx;
498
499 return abis_rsl_sendmsg(msg);
500}
501
Harald Welte8e770492009-07-29 11:38:15 +0200502/* Chapter 8.4.9: Modify channel mode on BTS side */
Harald Welte59b04682009-06-10 05:40:52 +0800503int rsl_chan_mode_modify_req(struct gsm_lchan *lchan)
504{
505 struct abis_rsl_dchan_hdr *dh;
Harald Welteed831842009-06-27 03:09:08 +0200506 struct msgb *msg;
Harald Welte39274f42009-07-29 15:41:29 +0200507 int rc;
Harald Welte59b04682009-06-10 05:40:52 +0800508
509 u_int8_t chan_nr = lchan2chan_nr(lchan);
510 struct rsl_ie_chan_mode cm;
511
Harald Welte39274f42009-07-29 15:41:29 +0200512 rc = channel_mode_from_lchan(&cm, lchan);
513 if (rc < 0)
514 return rc;
Harald Welte59b04682009-06-10 05:40:52 +0800515
Harald Welteed831842009-06-27 03:09:08 +0200516 msg = rsl_msgb_alloc();
Harald Welte59b04682009-06-10 05:40:52 +0800517 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
518 init_dchan_hdr(dh, RSL_MT_MODE_MODIFY_REQ);
519 dh->chan_nr = chan_nr;
520
521 msgb_tlv_put(msg, RSL_IE_CHAN_MODE, sizeof(cm),
522 (u_int8_t *) &cm);
Harald Welted2dd9de2009-08-30 15:37:11 +0900523
524 if (lchan->encr.alg_id > RSL_ENC_ALG_A5(0)) {
525 u_int8_t encr_info[MAX_A5_KEY_LEN+2];
526 rc = build_encr_info(encr_info, lchan);
527 if (rc > 0)
528 msgb_tlv_put(msg, RSL_IE_ENCR_INFO, rc, encr_info);
529 }
530
Holger Hans Peter Freyther3cce58f2009-11-18 22:57:02 +0100531 if (lchan->tch_mode == GSM48_CMODE_SPEECH_AMR) {
532 msgb_tlv_put(msg, RSL_IE_MR_CONFIG, sizeof(lchan->mr_conf),
533 (u_int8_t *) &lchan->mr_conf);
534 }
535
Harald Welted2dd9de2009-08-30 15:37:11 +0900536 msg->trx = lchan->ts->trx;
537
538 return abis_rsl_sendmsg(msg);
539}
540
541/* Chapter 8.4.6: Send the encryption command with given L3 info */
542int rsl_encryption_cmd(struct msgb *msg)
543{
544 struct abis_rsl_dchan_hdr *dh;
545 struct gsm_lchan *lchan = msg->lchan;
546 u_int8_t chan_nr = lchan2chan_nr(lchan);
547 u_int8_t encr_info[MAX_A5_KEY_LEN+2];
Sylvain Munaut01f1caf2009-09-27 11:13:18 +0200548 u_int8_t l3_len = msg->len;
Harald Welted2dd9de2009-08-30 15:37:11 +0900549 int rc;
550
551 /* First push the L3 IE tag and length */
552 msgb_tv16_push(msg, RSL_IE_L3_INFO, l3_len);
553
554 /* then the link identifier (SAPI0, main sign link) */
555 msgb_tv_push(msg, RSL_IE_LINK_IDENT, 0);
556
557 /* then encryption information */
558 rc = build_encr_info(encr_info, lchan);
559 if (rc <= 0)
560 return rc;
561 msgb_tlv_push(msg, RSL_IE_ENCR_INFO, rc, encr_info);
562
563 /* and finally the DCHAN header */
564 dh = (struct abis_rsl_dchan_hdr *) msgb_push(msg, sizeof(*dh));
565 init_dchan_hdr(dh, RSL_MT_ENCR_CMD);
566 dh->chan_nr = chan_nr;
Harald Welte59b04682009-06-10 05:40:52 +0800567
568 msg->trx = lchan->ts->trx;
569
570 return abis_rsl_sendmsg(msg);
571}
572
Harald Welte85a163c2009-08-10 11:43:22 +0200573/* Chapter 8.4.5 / 4.6: Deactivate the SACCH after 04.08 RR CHAN RELEASE */
Harald Welteafe3c232009-07-19 18:36:49 +0200574int rsl_deact_sacch(struct gsm_lchan *lchan)
575{
576 struct abis_rsl_dchan_hdr *dh;
577 struct msgb *msg = rsl_msgb_alloc();
578
579 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
580 init_dchan_hdr(dh, RSL_MT_DEACTIVATE_SACCH);
581 dh->chan_nr = lchan2chan_nr(lchan);
582
583 msg->lchan = lchan;
584 msg->trx = lchan->ts->trx;
585
Harald Welte (local)c4e9c9c2009-12-27 18:16:36 +0100586 DEBUGP(DRSL, "%s DEACTivate SACCH CMD\n", gsm_lchan_name(lchan));
Harald Welteafe3c232009-07-19 18:36:49 +0200587
588 return abis_rsl_sendmsg(msg);
589}
590
Holger Hans Peter Freyther10ea12f2010-05-31 21:38:24 +0800591static void error_timeout_cb(void *data)
592{
593 struct gsm_lchan *lchan = data;
594 if (lchan->state != LCHAN_S_REL_ERR) {
595 LOGP(DRSL, LOGL_ERROR, "%s error timeout but not in error state: %d\n",
596 gsm_lchan_name(lchan), lchan->state);
597 return;
598 }
599
600 /* go back to the none state */
601 LOGP(DRSL, LOGL_NOTICE, "%s is back in operation.\n", gsm_lchan_name(lchan));
Holger Hans Peter Freyther456fb9d2010-06-08 11:53:33 +0800602 rsl_lchan_set_state(lchan, LCHAN_S_NONE);
Holger Hans Peter Freyther10ea12f2010-05-31 21:38:24 +0800603}
604
Harald Welte85a163c2009-08-10 11:43:22 +0200605/* Chapter 8.4.14 / 4.7: Tell BTS to release the radio channel */
Holger Hans Peter Freyther10ea12f2010-05-31 21:38:24 +0800606static int rsl_rf_chan_release(struct gsm_lchan *lchan, int error)
Harald Welte59b04682009-06-10 05:40:52 +0800607{
608 struct abis_rsl_dchan_hdr *dh;
Holger Hans Peter Freyther10ea12f2010-05-31 21:38:24 +0800609 struct msgb *msg;
Harald Welte59b04682009-06-10 05:40:52 +0800610
Holger Hans Peter Freyther10ea12f2010-05-31 21:38:24 +0800611 if (lchan->state == LCHAN_S_REL_ERR) {
612 LOGP(DRSL, LOGL_NOTICE, "%s is in error state not sending release.\n",
613 gsm_lchan_name(lchan));
614 return -1;
615 }
616
617 msg = rsl_msgb_alloc();
Harald Welte59b04682009-06-10 05:40:52 +0800618 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
619 init_dchan_hdr(dh, RSL_MT_RF_CHAN_REL);
620 dh->chan_nr = lchan2chan_nr(lchan);
621
622 msg->lchan = lchan;
623 msg->trx = lchan->ts->trx;
624
Holger Hans Peter Freyther10ea12f2010-05-31 21:38:24 +0800625 DEBUGP(DRSL, "%s RF Channel Release CMD due error %d\n", gsm_lchan_name(lchan), error);
626
627 if (error) {
628 /*
629 * the nanoBTS sends RLL release indications after the channel release. This can
630 * be a problem when we have reassigned the channel to someone else and then can
631 * not figure out who used this channel.
632 */
Holger Hans Peter Freyther456fb9d2010-06-08 11:53:33 +0800633 rsl_lchan_set_state(lchan, LCHAN_S_REL_ERR);
Holger Hans Peter Freyther10ea12f2010-05-31 21:38:24 +0800634 lchan->error_timer.data = lchan;
635 lchan->error_timer.cb = error_timeout_cb;
636 bsc_schedule_timer(&lchan->error_timer,
637 msg->trx->bts->network->T3111 + 2, 0);
638 }
Harald Welte59b04682009-06-10 05:40:52 +0800639
Harald Welte85a163c2009-08-10 11:43:22 +0200640 /* BTS will respond by RF CHAN REL ACK */
Harald Welte59b04682009-06-10 05:40:52 +0800641 return abis_rsl_sendmsg(msg);
642}
643
644int rsl_paging_cmd(struct gsm_bts *bts, u_int8_t paging_group, u_int8_t len,
645 u_int8_t *ms_ident, u_int8_t chan_needed)
646{
647 struct abis_rsl_dchan_hdr *dh;
648 struct msgb *msg = rsl_msgb_alloc();
649
650 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
651 init_dchan_hdr(dh, RSL_MT_PAGING_CMD);
652 dh->chan_nr = RSL_CHAN_PCH_AGCH;
653
654 msgb_tv_put(msg, RSL_IE_PAGING_GROUP, paging_group);
655 msgb_tlv_put(msg, RSL_IE_MS_IDENTITY, len-2, ms_ident+2);
656 msgb_tv_put(msg, RSL_IE_CHAN_NEEDED, chan_needed);
657
658 msg->trx = bts->c0;
659
660 return abis_rsl_sendmsg(msg);
661}
662
663int rsl_paging_cmd_subscr(struct gsm_bts *bts, u_int8_t chan_need,
664 struct gsm_subscriber *subscr)
665{
666#if 0
667 u_int8_t mi[128];
668 unsigned int mi_len;
669 u_int8_t paging_group;
670#endif
671
672 return -1;
673}
674
675int imsi_str2bcd(u_int8_t *bcd_out, const char *str_in)
676{
677 int i, len = strlen(str_in);
678
679 for (i = 0; i < len; i++) {
680 int num = str_in[i] - 0x30;
681 if (num < 0 || num > 9)
682 return -1;
683 if (i % 2 == 0)
684 bcd_out[i/2] = num;
685 else
686 bcd_out[i/2] |= (num << 4);
687 }
688
689 return 0;
690}
691
692/* Chapter 8.5.6 */
693int rsl_imm_assign_cmd(struct gsm_bts *bts, u_int8_t len, u_int8_t *val)
694{
695 struct msgb *msg = rsl_msgb_alloc();
696 struct abis_rsl_dchan_hdr *dh;
697 u_int8_t buf[MACBLOCK_SIZE];
698
699 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
700 init_dchan_hdr(dh, RSL_MT_IMMEDIATE_ASSIGN_CMD);
701 dh->chan_nr = RSL_CHAN_PCH_AGCH;
702
703 switch (bts->type) {
704 case GSM_BTS_TYPE_BS11:
705 msgb_tlv_put(msg, RSL_IE_IMM_ASS_INFO, len, val);
706 break;
707 default:
708 /* If phase 2, construct a FULL_IMM_ASS_INFO */
709 pad_macblock(buf, val, len);
710 msgb_tlv_put(msg, RSL_IE_FULL_IMM_ASS_INFO, MACBLOCK_SIZE, buf);
711 break;
712 }
713
714 msg->trx = bts->c0;
715
716 return abis_rsl_sendmsg(msg);
717}
718
Harald Welte4684e632009-08-10 09:51:40 +0200719/* Send Siemens specific MS RF Power Capability Indication */
Harald Welte12090752009-08-10 10:07:33 +0200720int rsl_siemens_mrpci(struct gsm_lchan *lchan, struct rsl_mrpci *mrpci)
Harald Welte4684e632009-08-10 09:51:40 +0200721{
722 struct msgb *msg = rsl_msgb_alloc();
723 struct abis_rsl_dchan_hdr *dh;
724
725 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
726 init_dchan_hdr(dh, RSL_MT_SIEMENS_MRPCI);
Harald Welte874a5b42009-08-10 11:26:14 +0200727 dh->c.msg_discr = ABIS_RSL_MDISC_DED_CHAN;
Harald Welte4684e632009-08-10 09:51:40 +0200728 dh->chan_nr = lchan2chan_nr(lchan);
Harald Welte12090752009-08-10 10:07:33 +0200729 msgb_tv_put(msg, RSL_IE_SIEMENS_MRPCI, *(u_int8_t *)mrpci);
Harald Welte4684e632009-08-10 09:51:40 +0200730
Harald Weltede4477a2009-12-24 12:20:20 +0100731 DEBUGP(DRSL, "%s TX Siemens MRPCI 0x%02x\n",
Harald Welte (local)c4e9c9c2009-12-27 18:16:36 +0100732 gsm_lchan_name(lchan), *(u_int8_t *)mrpci);
Harald Welte874a5b42009-08-10 11:26:14 +0200733
734 msg->trx = lchan->ts->trx;
735
Harald Welte4684e632009-08-10 09:51:40 +0200736 return abis_rsl_sendmsg(msg);
737}
738
739
Harald Welte59b04682009-06-10 05:40:52 +0800740/* Send "DATA REQUEST" message with given L3 Info payload */
741/* Chapter 8.3.1 */
742int rsl_data_request(struct msgb *msg, u_int8_t link_id)
743{
Harald Welte59b04682009-06-10 05:40:52 +0800744 if (msg->lchan == NULL) {
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100745 LOGP(DRSL, LOGL_ERROR, "cannot send DATA REQUEST to unknown lchan\n");
Harald Welte59b04682009-06-10 05:40:52 +0800746 return -EINVAL;
747 }
748
Harald Weltea22d36b2010-03-04 10:33:10 +0100749 rsl_rll_push_l3(msg, RSL_MT_DATA_REQ, lchan2chan_nr(msg->lchan),
750 link_id, 1);
Harald Welte59b04682009-06-10 05:40:52 +0800751
752 msg->trx = msg->lchan->ts->trx;
753
754 return abis_rsl_sendmsg(msg);
755}
756
Harald Welteed9a5ab2009-08-09 13:47:35 +0200757/* Send "ESTABLISH REQUEST" message with given L3 Info payload */
758/* Chapter 8.3.1 */
759int rsl_establish_request(struct gsm_lchan *lchan, u_int8_t link_id)
760{
Harald Weltea22d36b2010-03-04 10:33:10 +0100761 struct msgb *msg;
Harald Welteed9a5ab2009-08-09 13:47:35 +0200762
Harald Weltea22d36b2010-03-04 10:33:10 +0100763 msg = rsl_rll_simple(RSL_MT_EST_REQ, lchan2chan_nr(lchan),
764 link_id, 0);
Harald Welteed9a5ab2009-08-09 13:47:35 +0200765 msg->trx = lchan->ts->trx;
766
767 return abis_rsl_sendmsg(msg);
768}
769
Harald Welte0f2e3c12009-08-08 13:15:07 +0200770/* Chapter 8.3.7 Request the release of multiframe mode of RLL connection.
771 This is what higher layers should call. The BTS then responds with
772 RELEASE CONFIRM, which we in turn use to trigger RSL CHANNEL RELEASE,
773 which in turn is acknowledged by RSL CHANNEL RELEASE ACK, which calls
774 lchan_free() */
Holger Hans Peter Freytherbcea9a72010-06-08 11:57:45 +0800775int rsl_release_request(struct gsm_lchan *lchan, u_int8_t link_id, u_int8_t reason)
Harald Welte0f2e3c12009-08-08 13:15:07 +0200776{
Harald Welte0f2e3c12009-08-08 13:15:07 +0200777
Harald Weltea22d36b2010-03-04 10:33:10 +0100778 struct msgb *msg;
779
780 msg = rsl_rll_simple(RSL_MT_REL_REQ, lchan2chan_nr(lchan),
781 link_id, 0);
Holger Hans Peter Freytherbcea9a72010-06-08 11:57:45 +0800782 /* 0 is normal release, 1 is local end */
783 msgb_tv_put(msg, RSL_IE_RELEASE_MODE, reason);
Harald Welte0f2e3c12009-08-08 13:15:07 +0200784
Harald Weltec88a4432009-12-29 10:44:17 +0100785 /* FIXME: start some timer in case we don't receive a REL ACK ? */
786
Harald Welte0f2e3c12009-08-08 13:15:07 +0200787 msg->trx = lchan->ts->trx;
788
789 return abis_rsl_sendmsg(msg);
790}
791
Holger Hans Peter Freyther68914a02010-04-10 00:12:31 +0200792int rsl_lchan_set_state(struct gsm_lchan *lchan, int state)
793{
794 lchan->state = state;
795 return 0;
796}
797
Harald Welte59b04682009-06-10 05:40:52 +0800798/* Chapter 8.4.2: Channel Activate Acknowledge */
799static int rsl_rx_chan_act_ack(struct msgb *msg)
800{
801 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
802
803 /* BTS has confirmed channel activation, we now need
804 * to assign the activated channel to the MS */
805 if (rslh->ie_chan != RSL_IE_CHAN_NR)
806 return -EINVAL;
Harald Welte6720a432009-11-29 22:45:52 +0100807
Harald Weltec88a4432009-12-29 10:44:17 +0100808 if (msg->lchan->state != LCHAN_S_ACT_REQ)
Harald Welteab2534c2009-12-29 10:52:38 +0100809 LOGP(DRSL, LOGL_NOTICE, "%s CHAN ACT ACK, but state %s\n",
810 gsm_lchan_name(msg->lchan),
811 gsm_lchans_name(msg->lchan->state));
Holger Hans Peter Freyther68914a02010-04-10 00:12:31 +0200812 rsl_lchan_set_state(msg->lchan, LCHAN_S_ACTIVE);
Harald Welte4baa9c52009-12-21 13:27:11 +0100813
Holger Hans Peter Freytherc08f6f02010-06-22 12:11:59 +0800814 if (msg->lchan->rqd_ref) {
815 rsl_send_imm_assignment(msg->lchan);
816 talloc_free(msg->lchan->rqd_ref);
817 msg->lchan->rqd_ref = NULL;
818 msg->lchan->rqd_ta = 0;
819 }
820
Harald Welte6720a432009-11-29 22:45:52 +0100821 dispatch_signal(SS_LCHAN, S_LCHAN_ACTIVATE_ACK, msg->lchan);
822
Harald Welte59b04682009-06-10 05:40:52 +0800823 return 0;
824}
825
826/* Chapter 8.4.3: Channel Activate NACK */
827static int rsl_rx_chan_act_nack(struct msgb *msg)
828{
829 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
830 struct tlv_parsed tp;
831
Harald Welte (local)ed6d7622009-12-27 11:48:11 +0100832 LOGP(DRSL, LOGL_ERROR, "%s CHANNEL ACTIVATE NACK",
Harald Welte (local)c4e9c9c2009-12-27 18:16:36 +0100833 gsm_lchan_name(msg->lchan));
Harald Welte (local)ed6d7622009-12-27 11:48:11 +0100834
Harald Welte59b04682009-06-10 05:40:52 +0800835 /* BTS has rejected channel activation ?!? */
836 if (dh->ie_chan != RSL_IE_CHAN_NR)
837 return -EINVAL;
838
839 rsl_tlv_parse(&tp, dh->data, msgb_l2len(msg)-sizeof(*dh));
Harald Welte (local)c3be50c2009-12-27 18:12:29 +0100840 if (TLVP_PRESENT(&tp, RSL_IE_CAUSE)) {
841 const u_int8_t *cause = TLVP_VAL(&tp, RSL_IE_CAUSE);
842 print_rsl_cause(LOGL_ERROR, cause,
Harald Weltef1a168d2009-07-28 17:58:09 +0200843 TLVP_LEN(&tp, RSL_IE_CAUSE));
Harald Welte (local)c3be50c2009-12-27 18:12:29 +0100844 if (*cause != RSL_ERR_RCH_ALR_ACTV_ALLOC)
Holger Hans Peter Freyther68914a02010-04-10 00:12:31 +0200845 rsl_lchan_set_state(msg->lchan, LCHAN_S_NONE);
Harald Welte (local)c3be50c2009-12-27 18:12:29 +0100846 } else
Holger Hans Peter Freyther68914a02010-04-10 00:12:31 +0200847 rsl_lchan_set_state(msg->lchan, LCHAN_S_NONE);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200848
Harald Welte (local)ed6d7622009-12-27 11:48:11 +0100849 LOGPC(DRSL, LOGL_ERROR, "\n");
850
Harald Welte6720a432009-11-29 22:45:52 +0100851 dispatch_signal(SS_LCHAN, S_LCHAN_ACTIVATE_NACK, msg->lchan);
852
Harald Weltecddb9802009-08-09 19:50:08 +0200853 lchan_free(msg->lchan);
Harald Welte59b04682009-06-10 05:40:52 +0800854 return 0;
855}
856
857/* Chapter 8.4.4: Connection Failure Indication */
858static int rsl_rx_conn_fail(struct msgb *msg)
859{
860 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
861 struct tlv_parsed tp;
862
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100863 /* FIXME: print which channel */
Harald Welte (local)4bd76642009-12-26 22:33:09 +0100864 LOGP(DRSL, LOGL_NOTICE, "%s CONNECTION FAIL: RELEASING ",
Harald Welte (local)c4e9c9c2009-12-27 18:16:36 +0100865 gsm_lchan_name(msg->lchan));
Harald Welte59b04682009-06-10 05:40:52 +0800866
867 rsl_tlv_parse(&tp, dh->data, msgb_l2len(msg)-sizeof(*dh));
868
Harald Weltef1a168d2009-07-28 17:58:09 +0200869 if (TLVP_PRESENT(&tp, RSL_IE_CAUSE))
Harald Weltede4477a2009-12-24 12:20:20 +0100870 print_rsl_cause(LOGL_NOTICE, TLVP_VAL(&tp, RSL_IE_CAUSE),
Harald Weltef1a168d2009-07-28 17:58:09 +0200871 TLVP_LEN(&tp, RSL_IE_CAUSE));
872
Harald Welte (local)4bd76642009-12-26 22:33:09 +0100873 LOGPC(DRSL, LOGL_NOTICE, "\n");
Harald Welte59b04682009-06-10 05:40:52 +0800874 /* FIXME: only free it after channel release ACK */
Holger Hans Peter Freyther27942e92010-04-17 06:48:29 +0200875 counter_inc(msg->lchan->ts->trx->bts->network->stats.chan.rf_fail);
Holger Hans Peter Freyther10ea12f2010-05-31 21:38:24 +0800876 return rsl_rf_chan_release(msg->lchan, 1);
Harald Welte59b04682009-06-10 05:40:52 +0800877}
878
Harald Weltec20bd1d2009-11-29 19:07:28 +0100879static void print_meas_rep_uni(struct gsm_meas_rep_unidir *mru,
880 const char *prefix)
881{
Harald Welte0e4fa782009-12-16 16:52:07 +0100882 DEBUGPC(DMEAS, "RXL-FULL-%s=%3ddBm RXL-SUB-%s=%3ddBm ",
883 prefix, rxlev2dbm(mru->full.rx_lev),
884 prefix, rxlev2dbm(mru->sub.rx_lev));
Harald Weltec20bd1d2009-11-29 19:07:28 +0100885 DEBUGPC(DMEAS, "RXQ-FULL-%s=%d RXQ-SUB-%s=%d ",
886 prefix, mru->full.rx_qual, prefix, mru->sub.rx_qual);
887}
888
889static void print_meas_rep(struct gsm_meas_rep *mr)
890{
Harald Welte0e4fa782009-12-16 16:52:07 +0100891 int i;
892
Harald Weltec20bd1d2009-11-29 19:07:28 +0100893 DEBUGP(DMEAS, "MEASUREMENT RESULT NR=%d ", mr->nr);
894
895 if (mr->flags & MEAS_REP_F_DL_DTX)
896 DEBUGPC(DMEAS, "DTXd ");
897
898 print_meas_rep_uni(&mr->ul, "ul");
899 DEBUGPC(DMEAS, "BS_POWER=%d ", mr->bs_power);
900 if (mr->flags & MEAS_REP_F_MS_TO)
901 DEBUGPC(DMEAS, "MS_TO=%d ", mr->ms_timing_offset);
902
903 if (mr->flags & MEAS_REP_F_MS_L1) {
Harald Welte0e4fa782009-12-16 16:52:07 +0100904 DEBUGPC(DMEAS, "L1_MS_PWR=%3ddBm ", mr->ms_l1.pwr);
Harald Weltec20bd1d2009-11-29 19:07:28 +0100905 DEBUGPC(DMEAS, "L1_FPC=%u ",
906 mr->flags & MEAS_REP_F_FPC ? 1 : 0);
907 DEBUGPC(DMEAS, "L1_TA=%u ", mr->ms_l1.ta);
908 }
909
910 if (mr->flags & MEAS_REP_F_UL_DTX)
911 DEBUGPC(DMEAS, "DTXu ");
912 if (mr->flags & MEAS_REP_F_BA1)
913 DEBUGPC(DMEAS, "BA1 ");
914 if (!(mr->flags & MEAS_REP_F_DL_VALID))
915 DEBUGPC(DMEAS, "NOT VALID ");
916 else
917 print_meas_rep_uni(&mr->dl, "dl");
918
919 DEBUGPC(DMEAS, "NUM_NEIGH=%u\n", mr->num_cell);
Harald Welte0b833f82009-12-19 18:33:05 +0100920 if (mr->num_cell == 7)
921 return;
Harald Welte0e4fa782009-12-16 16:52:07 +0100922 for (i = 0; i < mr->num_cell; i++) {
923 struct gsm_meas_rep_cell *mrc = &mr->cell[i];
Harald Welte350c2d32009-12-25 23:02:22 +0100924 DEBUGP(DMEAS, "IDX=%u ARFCN=%u BSIC=%u => %d dBm\n",
925 mrc->neigh_idx, mrc->arfcn, mrc->bsic, rxlev2dbm(mrc->rxlev));
Harald Welte0e4fa782009-12-16 16:52:07 +0100926 }
Harald Weltec20bd1d2009-11-29 19:07:28 +0100927}
928
Harald Welte59b04682009-06-10 05:40:52 +0800929static int rsl_rx_meas_res(struct msgb *msg)
930{
931 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
932 struct tlv_parsed tp;
Harald Weltef9476812009-12-15 21:36:05 +0100933 struct gsm_meas_rep *mr = lchan_next_meas_rep(msg->lchan);
Harald Weltec20bd1d2009-11-29 19:07:28 +0100934 u_int8_t len;
935 const u_int8_t *val;
936 int rc;
Harald Welte59b04682009-06-10 05:40:52 +0800937
Harald Welte4baa9c52009-12-21 13:27:11 +0100938 /* check if this channel is actually active */
939 /* FIXME: maybe this check should be way more generic/centralized */
Harald Weltec88a4432009-12-29 10:44:17 +0100940 if (msg->lchan->state != LCHAN_S_ACTIVE) {
Holger Hans Peter Freyther67a2e292010-07-29 14:50:57 +0800941 LOGP(DRSL, LOGL_DEBUG, "%s: MEAS RES for inactive channel\n",
Harald Weltec88a4432009-12-29 10:44:17 +0100942 gsm_lchan_name(msg->lchan));
Harald Welte4baa9c52009-12-21 13:27:11 +0100943 return 0;
Harald Weltec88a4432009-12-29 10:44:17 +0100944 }
Harald Welte4baa9c52009-12-21 13:27:11 +0100945
Harald Weltef9476812009-12-15 21:36:05 +0100946 memset(mr, 0, sizeof(*mr));
Harald Welteaa0efa12009-12-16 23:29:34 +0100947 mr->lchan = msg->lchan;
Harald Welte4efcc542009-11-30 19:16:47 +0100948
Harald Welte59b04682009-06-10 05:40:52 +0800949 rsl_tlv_parse(&tp, dh->data, msgb_l2len(msg)-sizeof(*dh));
950
Harald Weltec20bd1d2009-11-29 19:07:28 +0100951 if (!TLVP_PRESENT(&tp, RSL_IE_MEAS_RES_NR) ||
952 !TLVP_PRESENT(&tp, RSL_IE_UPLINK_MEAS) ||
953 !TLVP_PRESENT(&tp, RSL_IE_BS_POWER))
954 return -EIO;
955
956 /* Mandatory Parts */
Harald Weltef9476812009-12-15 21:36:05 +0100957 mr->nr = *TLVP_VAL(&tp, RSL_IE_MEAS_RES_NR);
Harald Weltec20bd1d2009-11-29 19:07:28 +0100958
959 len = TLVP_LEN(&tp, RSL_IE_UPLINK_MEAS);
960 val = TLVP_VAL(&tp, RSL_IE_UPLINK_MEAS);
961 if (len >= 3) {
962 if (val[0] & 0x40)
Harald Weltef9476812009-12-15 21:36:05 +0100963 mr->flags |= MEAS_REP_F_DL_DTX;
964 mr->ul.full.rx_lev = val[0] & 0x3f;
965 mr->ul.sub.rx_lev = val[1] & 0x3f;
966 mr->ul.full.rx_qual = val[2]>>3 & 0x7;
967 mr->ul.sub.rx_qual = val[2] & 0x7;
Harald Welte59b04682009-06-10 05:40:52 +0800968 }
Harald Weltec20bd1d2009-11-29 19:07:28 +0100969
Harald Weltef9476812009-12-15 21:36:05 +0100970 mr->bs_power = *TLVP_VAL(&tp, RSL_IE_BS_POWER);
Harald Weltec20bd1d2009-11-29 19:07:28 +0100971
972 /* Optional Parts */
Harald Welte59b04682009-06-10 05:40:52 +0800973 if (TLVP_PRESENT(&tp, RSL_IE_MS_TIMING_OFFSET))
Harald Weltef9476812009-12-15 21:36:05 +0100974 mr->ms_timing_offset =
Harald Weltec20bd1d2009-11-29 19:07:28 +0100975 *TLVP_VAL(&tp, RSL_IE_MS_TIMING_OFFSET);
976
Harald Weltea1467eb2009-06-20 18:44:35 +0200977 if (TLVP_PRESENT(&tp, RSL_IE_L1_INFO)) {
Harald Weltec20bd1d2009-11-29 19:07:28 +0100978 val = TLVP_VAL(&tp, RSL_IE_L1_INFO);
Harald Weltef9476812009-12-15 21:36:05 +0100979 mr->flags |= MEAS_REP_F_MS_L1;
980 mr->ms_l1.pwr = ms_pwr_dbm(msg->trx->bts->band, val[0] >> 3);
Harald Weltec20bd1d2009-11-29 19:07:28 +0100981 if (val[0] & 0x04)
Harald Weltef9476812009-12-15 21:36:05 +0100982 mr->flags |= MEAS_REP_F_FPC;
983 mr->ms_l1.ta = val[1];
Harald Weltea1467eb2009-06-20 18:44:35 +0200984 }
Harald Welte59b04682009-06-10 05:40:52 +0800985 if (TLVP_PRESENT(&tp, RSL_IE_L3_INFO)) {
Holger Hans Peter Freyther6d0c8b42009-10-22 15:43:55 +0200986 msg->l3h = (u_int8_t *) TLVP_VAL(&tp, RSL_IE_L3_INFO);
Harald Weltef9476812009-12-15 21:36:05 +0100987 rc = gsm48_parse_meas_rep(mr, msg);
Harald Weltec20bd1d2009-11-29 19:07:28 +0100988 if (rc < 0)
989 return rc;
990 }
991
Harald Weltef9476812009-12-15 21:36:05 +0100992 print_meas_rep(mr);
Harald Welte59b04682009-06-10 05:40:52 +0800993
Harald Weltef9476812009-12-15 21:36:05 +0100994 dispatch_signal(SS_LCHAN, S_LCHAN_MEAS_REP, mr);
Harald Welte4efcc542009-11-30 19:16:47 +0100995
Harald Welte59b04682009-06-10 05:40:52 +0800996 return 0;
997}
998
Harald Welte6720a432009-11-29 22:45:52 +0100999/* Chapter 8.4.7 */
1000static int rsl_rx_hando_det(struct msgb *msg)
1001{
1002 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
1003 struct tlv_parsed tp;
1004
Harald Welte (local)c4e9c9c2009-12-27 18:16:36 +01001005 DEBUGP(DRSL, "%s HANDOVER DETECT ", gsm_lchan_name(msg->lchan));
Harald Welte6720a432009-11-29 22:45:52 +01001006
1007 rsl_tlv_parse(&tp, dh->data, msgb_l2len(msg)-sizeof(*dh));
1008
1009 if (TLVP_PRESENT(&tp, RSL_IE_ACCESS_DELAY))
1010 DEBUGPC(DRSL, "access delay = %u\n",
1011 *TLVP_VAL(&tp, RSL_IE_ACCESS_DELAY));
1012 else
1013 DEBUGPC(DRSL, "\n");
1014
1015 dispatch_signal(SS_LCHAN, S_LCHAN_HANDOVER_DETECT, msg->lchan);
1016
1017 return 0;
1018}
1019
Harald Welte59b04682009-06-10 05:40:52 +08001020static int abis_rsl_rx_dchan(struct msgb *msg)
1021{
1022 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
1023 int rc = 0;
1024 char *ts_name;
1025
1026 msg->lchan = lchan_lookup(msg->trx, rslh->chan_nr);
Harald Welte (local)c4e9c9c2009-12-27 18:16:36 +01001027 ts_name = gsm_lchan_name(msg->lchan);
Harald Welte59b04682009-06-10 05:40:52 +08001028
Harald Welte59b04682009-06-10 05:40:52 +08001029 switch (rslh->c.msg_type) {
1030 case RSL_MT_CHAN_ACTIV_ACK:
Harald Weltede4477a2009-12-24 12:20:20 +01001031 DEBUGP(DRSL, "%s CHANNEL ACTIVATE ACK\n", ts_name);
Harald Welte59b04682009-06-10 05:40:52 +08001032 rc = rsl_rx_chan_act_ack(msg);
1033 break;
1034 case RSL_MT_CHAN_ACTIV_NACK:
Harald Welte59b04682009-06-10 05:40:52 +08001035 rc = rsl_rx_chan_act_nack(msg);
1036 break;
1037 case RSL_MT_CONN_FAIL:
1038 rc = rsl_rx_conn_fail(msg);
1039 break;
1040 case RSL_MT_MEAS_RES:
1041 rc = rsl_rx_meas_res(msg);
1042 break;
Harald Welte6720a432009-11-29 22:45:52 +01001043 case RSL_MT_HANDO_DET:
1044 rc = rsl_rx_hando_det(msg);
1045 break;
Harald Welte59b04682009-06-10 05:40:52 +08001046 case RSL_MT_RF_CHAN_REL_ACK:
Harald Weltede4477a2009-12-24 12:20:20 +01001047 DEBUGP(DRSL, "%s RF CHANNEL RELEASE ACK\n", ts_name);
Holger Hans Peter Freyther10ea12f2010-05-31 21:38:24 +08001048 if (msg->lchan->state != LCHAN_S_REL_REQ && msg->lchan->state != LCHAN_S_REL_ERR)
Harald Welteab2534c2009-12-29 10:52:38 +01001049 LOGP(DRSL, LOGL_NOTICE, "%s CHAN REL ACK but state %s\n",
1050 gsm_lchan_name(msg->lchan),
1051 gsm_lchans_name(msg->lchan->state));
Holger Hans Peter Freyther4a00c062010-05-31 21:33:15 +08001052 bsc_del_timer(&msg->lchan->T3111);
Holger Hans Peter Freyther10ea12f2010-05-31 21:38:24 +08001053 /* we have an error timer pending to release that */
1054 if (msg->lchan->state != LCHAN_S_REL_ERR)
1055 rsl_lchan_set_state(msg->lchan, LCHAN_S_NONE);
Harald Welte59b04682009-06-10 05:40:52 +08001056 lchan_free(msg->lchan);
1057 break;
1058 case RSL_MT_MODE_MODIFY_ACK:
Harald Weltede4477a2009-12-24 12:20:20 +01001059 DEBUGP(DRSL, "%s CHANNEL MODE MODIFY ACK\n", ts_name);
Harald Welte59b04682009-06-10 05:40:52 +08001060 break;
1061 case RSL_MT_MODE_MODIFY_NACK:
Harald Weltede4477a2009-12-24 12:20:20 +01001062 LOGP(DRSL, LOGL_ERROR, "%s CHANNEL MODE MODIFY NACK\n", ts_name);
Harald Welte59b04682009-06-10 05:40:52 +08001063 break;
Harald Welteaed946e2009-10-24 10:29:22 +02001064 case RSL_MT_IPAC_PDCH_ACT_ACK:
Harald Weltede4477a2009-12-24 12:20:20 +01001065 DEBUGPC(DRSL, "%s IPAC PDCH ACT ACK\n", ts_name);
Harald Welte2b361522010-03-28 14:42:09 +08001066 msg->lchan->ts->flags |= TS_F_PDCH_MODE;
Harald Welteaed946e2009-10-24 10:29:22 +02001067 break;
1068 case RSL_MT_IPAC_PDCH_ACT_NACK:
Harald Weltede4477a2009-12-24 12:20:20 +01001069 LOGP(DRSL, LOGL_ERROR, "%s IPAC PDCH ACT NACK\n", ts_name);
Harald Welteaed946e2009-10-24 10:29:22 +02001070 break;
1071 case RSL_MT_IPAC_PDCH_DEACT_ACK:
Harald Weltede4477a2009-12-24 12:20:20 +01001072 DEBUGP(DRSL, "%s IPAC PDCH DEACT ACK\n", ts_name);
Harald Welte2b361522010-03-28 14:42:09 +08001073 msg->lchan->ts->flags &= ~TS_F_PDCH_MODE;
Harald Welteaed946e2009-10-24 10:29:22 +02001074 break;
1075 case RSL_MT_IPAC_PDCH_DEACT_NACK:
Harald Weltede4477a2009-12-24 12:20:20 +01001076 LOGP(DRSL, LOGL_ERROR, "%s IPAC PDCH DEACT NACK\n", ts_name);
Harald Welteaed946e2009-10-24 10:29:22 +02001077 break;
Harald Welte59b04682009-06-10 05:40:52 +08001078 case RSL_MT_PHY_CONTEXT_CONF:
1079 case RSL_MT_PREPROC_MEAS_RES:
1080 case RSL_MT_TALKER_DET:
1081 case RSL_MT_LISTENER_DET:
1082 case RSL_MT_REMOTE_CODEC_CONF_REP:
1083 case RSL_MT_MR_CODEC_MOD_ACK:
1084 case RSL_MT_MR_CODEC_MOD_NACK:
1085 case RSL_MT_MR_CODEC_MOD_PER:
Harald Weltede4477a2009-12-24 12:20:20 +01001086 LOGP(DRSL, LOGL_NOTICE, "%s Unimplemented Abis RSL DChan "
1087 "msg 0x%02x\n", ts_name, rslh->c.msg_type);
Harald Welte59b04682009-06-10 05:40:52 +08001088 break;
1089 default:
Harald Weltede4477a2009-12-24 12:20:20 +01001090 LOGP(DRSL, LOGL_NOTICE, "%s unknown Abis RSL DChan msg 0x%02x\n",
1091 ts_name, rslh->c.msg_type);
Harald Welte59b04682009-06-10 05:40:52 +08001092 return -EINVAL;
1093 }
1094
1095 return rc;
1096}
1097
1098static int rsl_rx_error_rep(struct msgb *msg)
1099{
1100 struct abis_rsl_common_hdr *rslh = msgb_l2(msg);
Harald Weltef1a168d2009-07-28 17:58:09 +02001101 struct tlv_parsed tp;
Harald Welte59b04682009-06-10 05:40:52 +08001102
Harald Welte (local)ab788cf2009-12-28 23:14:22 +01001103 LOGP(DRSL, LOGL_ERROR, "%s ERROR REPORT ", gsm_trx_name(msg->trx));
Harald Weltef1a168d2009-07-28 17:58:09 +02001104
1105 rsl_tlv_parse(&tp, rslh->data, msgb_l2len(msg)-sizeof(*rslh));
1106
1107 if (TLVP_PRESENT(&tp, RSL_IE_CAUSE))
Harald Weltede4477a2009-12-24 12:20:20 +01001108 print_rsl_cause(LOGL_ERROR, TLVP_VAL(&tp, RSL_IE_CAUSE),
Harald Weltef1a168d2009-07-28 17:58:09 +02001109 TLVP_LEN(&tp, RSL_IE_CAUSE));
1110
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001111 LOGPC(DRSL, LOGL_ERROR, "\n");
Harald Welte59b04682009-06-10 05:40:52 +08001112
1113 return 0;
1114}
1115
1116static int abis_rsl_rx_trx(struct msgb *msg)
1117{
1118 struct abis_rsl_common_hdr *rslh = msgb_l2(msg);
1119 int rc = 0;
1120
1121 switch (rslh->msg_type) {
1122 case RSL_MT_ERROR_REPORT:
1123 rc = rsl_rx_error_rep(msg);
1124 break;
1125 case RSL_MT_RF_RES_IND:
1126 /* interference on idle channels of TRX */
Harald Welte (local)ab788cf2009-12-28 23:14:22 +01001127 //DEBUGP(DRSL, "%s RF Resource Indication\n", gsm_trx_name(msg->trx));
Harald Welte59b04682009-06-10 05:40:52 +08001128 break;
1129 case RSL_MT_OVERLOAD:
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001130 /* indicate CCCH / ACCH / processor overload */
Harald Welte (local)ab788cf2009-12-28 23:14:22 +01001131 LOGP(DRSL, LOGL_ERROR, "%s CCCH/ACCH/CPU Overload\n",
1132 gsm_trx_name(msg->trx));
Harald Welte59b04682009-06-10 05:40:52 +08001133 break;
1134 default:
Harald Welte (local)ab788cf2009-12-28 23:14:22 +01001135 LOGP(DRSL, LOGL_NOTICE, "%s Unknown Abis RSL TRX message "
1136 "type 0x%02x\n", gsm_trx_name(msg->trx), rslh->msg_type);
Harald Welte59b04682009-06-10 05:40:52 +08001137 return -EINVAL;
1138 }
1139 return rc;
1140}
1141
Harald Welte427dbc42009-08-10 00:26:10 +02001142/* If T3101 expires, we never received a response to IMMEDIATE ASSIGN */
1143static void t3101_expired(void *data)
1144{
1145 struct gsm_lchan *lchan = data;
1146
Holger Hans Peter Freyther10ea12f2010-05-31 21:38:24 +08001147 rsl_rf_chan_release(lchan, 1);
Harald Welte427dbc42009-08-10 00:26:10 +02001148}
1149
Holger Hans Peter Freyther4a00c062010-05-31 21:33:15 +08001150/* If T3111 expires, we will send the RF Channel Request */
1151static void t3111_expired(void *data)
1152{
1153 struct gsm_lchan *lchan = data;
1154
Holger Hans Peter Freyther10ea12f2010-05-31 21:38:24 +08001155 rsl_rf_chan_release(lchan, 0);
Holger Hans Peter Freyther4a00c062010-05-31 21:33:15 +08001156}
1157
laforge50312e82010-06-21 12:08:52 +02001158#define GSM48_LEN2PLEN(a) (((a) << 2) | 1)
1159
Harald Welte59b04682009-06-10 05:40:52 +08001160/* MS has requested a channel on the RACH */
1161static int rsl_rx_chan_rqd(struct msgb *msg)
1162{
1163 struct gsm_bts *bts = msg->trx->bts;
1164 struct abis_rsl_dchan_hdr *rqd_hdr = msgb_l2(msg);
1165 struct gsm48_req_ref *rqd_ref;
Harald Welte59b04682009-06-10 05:40:52 +08001166 enum gsm_chan_t lctype;
1167 enum gsm_chreq_reason_t chreq_reason;
1168 struct gsm_lchan *lchan;
1169 u_int8_t rqd_ta;
Holger Hans Peter Freytherdb392032010-09-06 08:58:42 +08001170 int is_lu;
Harald Welte59b04682009-06-10 05:40:52 +08001171
1172 u_int16_t arfcn;
1173 u_int8_t ts_number, subch;
1174
1175 /* parse request reference to be used in immediate assign */
1176 if (rqd_hdr->data[0] != RSL_IE_REQ_REFERENCE)
1177 return -EINVAL;
1178
1179 rqd_ref = (struct gsm48_req_ref *) &rqd_hdr->data[1];
1180
1181 /* parse access delay and use as TA */
1182 if (rqd_hdr->data[sizeof(struct gsm48_req_ref)+1] != RSL_IE_ACCESS_DELAY)
1183 return -EINVAL;
1184 rqd_ta = rqd_hdr->data[sizeof(struct gsm48_req_ref)+2];
1185
1186 /* determine channel type (SDCCH/TCH_F/TCH_H) based on
1187 * request reference RA */
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001188 lctype = get_ctype_by_chreq(bts, rqd_ref->ra, bts->network->neci);
1189 chreq_reason = get_reason_by_chreq(bts, rqd_ref->ra, bts->network->neci);
Harald Welte59b04682009-06-10 05:40:52 +08001190
Harald Weltebdbb7442009-12-22 19:07:32 +01001191 counter_inc(bts->network->stats.chreq.total);
Harald Welte3edc5a92009-12-22 00:41:05 +01001192
Holger Hans Peter Freytherdb392032010-09-06 08:58:42 +08001193 /*
1194 * We want LOCATION UPDATES to succeed and will assign a TCH
1195 * if we have no SDCCH available.
1196 */
1197 is_lu = !!(chreq_reason == GSM_CHREQ_REASON_LOCATION_UPD);
1198
Harald Welte59b04682009-06-10 05:40:52 +08001199 /* check availability / allocate channel */
Holger Hans Peter Freytherdb392032010-09-06 08:58:42 +08001200 lchan = lchan_alloc(bts, lctype, is_lu);
Harald Welte59b04682009-06-10 05:40:52 +08001201 if (!lchan) {
Harald Welte (local)e0bb5fa2009-12-27 13:48:09 +01001202 LOGP(DRSL, LOGL_NOTICE, "BTS %d CHAN RQD: no resources for %s 0x%x\n",
Harald Welte (local)02204d02009-12-27 18:05:25 +01001203 msg->lchan->ts->trx->bts->nr, gsm_lchant_name(lctype), rqd_ref->ra);
Harald Weltebdbb7442009-12-22 19:07:32 +01001204 counter_inc(bts->network->stats.chreq.no_channel);
Harald Welte59b04682009-06-10 05:40:52 +08001205 /* FIXME: send some kind of reject ?!? */
1206 return -ENOMEM;
1207 }
1208
Harald Weltec88a4432009-12-29 10:44:17 +01001209 if (lchan->state != LCHAN_S_NONE)
1210 LOGP(DRSL, LOGL_NOTICE, "%s lchan_alloc() returned channel "
Harald Welteab2534c2009-12-29 10:52:38 +01001211 "in state %s\n", gsm_lchan_name(lchan),
1212 gsm_lchans_name(lchan->state));
Holger Hans Peter Freyther68914a02010-04-10 00:12:31 +02001213 rsl_lchan_set_state(lchan, LCHAN_S_ACT_REQ);
Harald Welte (local)c3be50c2009-12-27 18:12:29 +01001214
Holger Hans Peter Freytherc08f6f02010-06-22 12:11:59 +08001215 /* save the RACH data as we need it after the CHAN ACT ACK */
1216 lchan->rqd_ref = talloc_zero(bts, struct gsm48_req_ref);
1217 if (!lchan->rqd_ref) {
1218 LOGP(DRSL, LOGL_ERROR, "Failed to allocate gsm48_req_ref.\n");
1219 lchan_free(lchan);
1220 return -ENOMEM;
1221 }
1222
1223 memcpy(lchan->rqd_ref, rqd_ref, sizeof(*rqd_ref));
1224 lchan->rqd_ta = rqd_ta;
1225
Harald Welte59b04682009-06-10 05:40:52 +08001226 ts_number = lchan->ts->nr;
1227 arfcn = lchan->ts->trx->arfcn;
1228 subch = lchan->nr;
1229
Harald Welted2dd9de2009-08-30 15:37:11 +09001230 lchan->encr.alg_id = RSL_ENC_ALG_A5(0); /* no encryption */
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001231 lchan->ms_power = ms_pwr_ctl_lvl(bts->band, bts->ms_max_power);
Harald Welte9a229e12009-08-10 00:45:40 +02001232 lchan->bs_power = 0; /* 0dB reduction, output power = Pn */
Harald Welte39274f42009-07-29 15:41:29 +02001233 lchan->rsl_cmode = RSL_CMOD_SPD_SIGN;
Harald Welte77234e12009-08-28 23:28:28 +09001234 lchan->tch_mode = GSM48_CMODE_SIGN;
Holger Hans Peter Freytherc08f6f02010-06-22 12:11:59 +08001235
1236 /* FIXME: Start another timer or assume the BTS sends a ACK/NACK? */
Harald Welteb90d7bd2009-12-17 00:31:10 +01001237 rsl_chan_activate_lchan(lchan, 0x00, rqd_ta, 0);
Harald Welte59b04682009-06-10 05:40:52 +08001238
Holger Hans Peter Freytherc08f6f02010-06-22 12:11:59 +08001239 DEBUGP(DRSL, "%s Activating ARFCN(%u) SS(%u) lctype %s "
1240 "r=%s ra=0x%02x\n", gsm_lchan_name(lchan), arfcn, subch,
1241 gsm_lchant_name(lchan->type), gsm_chreq_name(chreq_reason),
1242 rqd_ref->ra);
1243 return 0;
1244}
1245
1246static int rsl_send_imm_assignment(struct gsm_lchan *lchan)
1247{
1248 struct gsm_bts *bts = lchan->ts->trx->bts;
1249 u_int8_t buf[GSM_MACBLOCK_LEN];
1250 struct gsm48_imm_ass *ia = (struct gsm48_imm_ass *) buf;
1251
Harald Welte59b04682009-06-10 05:40:52 +08001252 /* create IMMEDIATE ASSIGN 04.08 messge */
laforgee06d5982010-06-20 15:18:46 +02001253 memset(ia, 0, sizeof(*ia));
laforge50312e82010-06-21 12:08:52 +02001254 /* we set ia->l2_plen once we know the length of the MA below */
laforgee06d5982010-06-20 15:18:46 +02001255 ia->proto_discr = GSM48_PDISC_RR;
1256 ia->msg_type = GSM48_MT_RR_IMM_ASS;
1257 ia->page_mode = GSM48_PM_SAME;
1258 gsm48_lchan2chan_desc(&ia->chan_desc, lchan);
Harald Weltea42a93f2010-06-14 22:26:10 +02001259
Harald Welte59b04682009-06-10 05:40:52 +08001260 /* use request reference extracted from CHAN_RQD */
Holger Hans Peter Freytherc08f6f02010-06-22 12:11:59 +08001261 memcpy(&ia->req_ref, lchan->rqd_ref, sizeof(ia->req_ref));
1262 ia->timing_advance = lchan->rqd_ta;
Harald Weltea42a93f2010-06-14 22:26:10 +02001263 if (!lchan->ts->hopping.enabled) {
laforgee06d5982010-06-20 15:18:46 +02001264 ia->mob_alloc_len = 0;
Harald Weltea42a93f2010-06-14 22:26:10 +02001265 } else {
laforgee06d5982010-06-20 15:18:46 +02001266 ia->mob_alloc_len = lchan->ts->hopping.ma_len;
1267 memcpy(ia->mob_alloc, lchan->ts->hopping.ma_data, ia->mob_alloc_len);
Harald Weltea42a93f2010-06-14 22:26:10 +02001268 }
Harald Welte07f32182010-06-28 18:41:27 +02001269 /* we need to subtract 1 byte from sizeof(*ia) since ia includes the l2_plen field */
1270 ia->l2_plen = GSM48_LEN2PLEN((sizeof(*ia)-1) + ia->mob_alloc_len);
Harald Welte59b04682009-06-10 05:40:52 +08001271
Harald Welte427dbc42009-08-10 00:26:10 +02001272 /* Start timer T3101 to wait for GSM48_MT_RR_PAG_RESP */
1273 lchan->T3101.cb = t3101_expired;
1274 lchan->T3101.data = lchan;
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001275 bsc_schedule_timer(&lchan->T3101, bts->network->T3101, 0);
Harald Welte59b04682009-06-10 05:40:52 +08001276
1277 /* send IMMEDIATE ASSIGN CMD on RSL to BTS (to send on CCCH to MS) */
Holger Hans Peter Freytherc08f6f02010-06-22 12:11:59 +08001278 return rsl_imm_assign_cmd(bts, sizeof(*ia)+ia->mob_alloc_len, (u_int8_t *) ia);
Harald Welte59b04682009-06-10 05:40:52 +08001279}
1280
1281/* MS has requested a channel on the RACH */
1282static int rsl_rx_ccch_load(struct msgb *msg)
1283{
1284 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
1285 u_int16_t pg_buf_space;
1286 u_int16_t rach_slot_count = -1;
1287 u_int16_t rach_busy_count = -1;
1288 u_int16_t rach_access_count = -1;
1289
1290 switch (rslh->data[0]) {
1291 case RSL_IE_PAGING_LOAD:
1292 pg_buf_space = rslh->data[1] << 8 | rslh->data[2];
Harald Welte008a4922010-04-19 10:24:07 +02001293 if (is_ipaccess_bts(msg->trx->bts) && pg_buf_space == 0xffff) {
1294 /* paging load below configured threshold, use 50 as default */
1295 pg_buf_space = 50;
1296 }
Harald Welte59b04682009-06-10 05:40:52 +08001297 paging_update_buffer_space(msg->trx->bts, pg_buf_space);
1298 break;
1299 case RSL_IE_RACH_LOAD:
1300 if (msg->data_len >= 7) {
1301 rach_slot_count = rslh->data[2] << 8 | rslh->data[3];
1302 rach_busy_count = rslh->data[4] << 8 | rslh->data[5];
1303 rach_access_count = rslh->data[6] << 8 | rslh->data[7];
1304 }
1305 break;
1306 default:
1307 break;
1308 }
1309
1310 return 0;
1311}
1312
1313static int abis_rsl_rx_cchan(struct msgb *msg)
1314{
1315 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
1316 int rc = 0;
1317
1318 msg->lchan = lchan_lookup(msg->trx, rslh->chan_nr);
1319
1320 switch (rslh->c.msg_type) {
1321 case RSL_MT_CHAN_RQD:
1322 /* MS has requested a channel on the RACH */
1323 rc = rsl_rx_chan_rqd(msg);
1324 break;
1325 case RSL_MT_CCCH_LOAD_IND:
1326 /* current load on the CCCH */
1327 rc = rsl_rx_ccch_load(msg);
1328 break;
1329 case RSL_MT_DELETE_IND:
1330 /* CCCH overloaded, IMM_ASSIGN was dropped */
1331 case RSL_MT_CBCH_LOAD_IND:
1332 /* current load on the CBCH */
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001333 LOGP(DRSL, LOGL_NOTICE, "Unimplemented Abis RSL TRX message "
1334 "type 0x%02x\n", rslh->c.msg_type);
Harald Welte59b04682009-06-10 05:40:52 +08001335 break;
1336 default:
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001337 LOGP(DRSL, LOGL_NOTICE, "Unknown Abis RSL TRX message type "
1338 "0x%02x\n", rslh->c.msg_type);
Harald Welte59b04682009-06-10 05:40:52 +08001339 return -EINVAL;
1340 }
1341
1342 return rc;
1343}
1344
1345static int rsl_rx_rll_err_ind(struct msgb *msg)
1346{
1347 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
1348 u_int8_t *rlm_cause = rllh->data;
1349
Harald Welte (local)bd76cce2009-12-26 23:55:00 +01001350 LOGP(DRLL, LOGL_ERROR, "%s ERROR INDICATION cause=%s\n",
Harald Welte (local)c4e9c9c2009-12-27 18:16:36 +01001351 gsm_lchan_name(msg->lchan),
Harald Welteb30935e2010-03-25 12:13:02 +08001352 rsl_rlm_cause_name(rlm_cause[1]));
Harald Welteed9a5ab2009-08-09 13:47:35 +02001353
1354 rll_indication(msg->lchan, rllh->link_id, BSC_RLLR_IND_ERR_IND);
Harald Welte (local)bd76cce2009-12-26 23:55:00 +01001355
Holger Hans Peter Freyther27942e92010-04-17 06:48:29 +02001356 if (rlm_cause[1] == RLL_CAUSE_T200_EXPIRED) {
1357 counter_inc(msg->lchan->ts->trx->bts->network->stats.chan.rll_err);
Holger Hans Peter Freyther10ea12f2010-05-31 21:38:24 +08001358 return rsl_rf_chan_release(msg->lchan, 1);
Holger Hans Peter Freyther27942e92010-04-17 06:48:29 +02001359 }
Harald Welte692f5852009-07-04 09:40:05 +02001360
Harald Welte59b04682009-06-10 05:40:52 +08001361 return 0;
1362}
1363
Holger Hans Peter Freyther65f08522010-04-08 22:39:34 +02001364static void rsl_handle_release(struct gsm_lchan *lchan)
1365{
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +08001366 int sapi;
Holger Hans Peter Freyther4a00c062010-05-31 21:33:15 +08001367 struct gsm_bts *bts;
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +08001368
1369 /* maybe we have only brought down one RLL */
Holger Hans Peter Freytherd26cbc82010-04-08 22:47:44 +02001370 if (lchan->state != LCHAN_S_REL_REQ)
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +08001371 return;
1372
1373 for (sapi = 0; sapi < ARRAY_SIZE(lchan->sapis); ++sapi) {
1374 if (lchan->sapis[sapi] == LCHAN_SAPI_UNUSED)
1375 continue;
1376 LOGP(DRSL, LOGL_NOTICE, "%s waiting for SAPI=%d to be released.\n",
1377 gsm_lchan_name(lchan), sapi);
1378 return;
1379 }
1380
Holger Hans Peter Freytherd26cbc82010-04-08 22:47:44 +02001381
1382
Holger Hans Peter Freyther4a00c062010-05-31 21:33:15 +08001383 /* wait a bit to send the RF Channel Release */
1384 lchan->T3111.cb = t3111_expired;
1385 lchan->T3111.data = lchan;
1386 bts = lchan->ts->trx->bts;
1387 bsc_schedule_timer(&lchan->T3111, bts->network->T3111, 0);
Holger Hans Peter Freyther65f08522010-04-08 22:39:34 +02001388}
1389
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001390/* ESTABLISH INDICATION, LOCATION AREA UPDATE REQUEST
Harald Welte59b04682009-06-10 05:40:52 +08001391 0x02, 0x06,
1392 0x01, 0x20,
1393 0x02, 0x00,
1394 0x0b, 0x00, 0x0f, 0x05, 0x08, ... */
1395
1396static int abis_rsl_rx_rll(struct msgb *msg)
1397{
1398 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
1399 int rc = 0;
1400 char *ts_name;
Harald Welte (local)64994ce2009-08-14 11:41:12 +02001401 u_int8_t sapi = rllh->link_id & 7;
Harald Welte59b04682009-06-10 05:40:52 +08001402
1403 msg->lchan = lchan_lookup(msg->trx, rllh->chan_nr);
Harald Welte (local)c4e9c9c2009-12-27 18:16:36 +01001404 ts_name = gsm_lchan_name(msg->lchan);
Harald Weltede4477a2009-12-24 12:20:20 +01001405 DEBUGP(DRLL, "%s SAPI=%u ", ts_name, sapi);
Harald Welte59b04682009-06-10 05:40:52 +08001406
1407 switch (rllh->c.msg_type) {
1408 case RSL_MT_DATA_IND:
1409 DEBUGPC(DRLL, "DATA INDICATION\n");
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001410 if (msgb_l2len(msg) >
Harald Welte59b04682009-06-10 05:40:52 +08001411 sizeof(struct abis_rsl_common_hdr) + sizeof(*rllh) &&
1412 rllh->data[0] == RSL_IE_L3_INFO) {
1413 msg->l3h = &rllh->data[3];
Harald Welte (local)64994ce2009-08-14 11:41:12 +02001414 return gsm0408_rcvmsg(msg, rllh->link_id);
Harald Welte59b04682009-06-10 05:40:52 +08001415 }
1416 break;
1417 case RSL_MT_EST_IND:
1418 DEBUGPC(DRLL, "ESTABLISH INDICATION\n");
Harald Welte427dbc42009-08-10 00:26:10 +02001419 /* lchan is established, stop T3101 */
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +01001420 msg->lchan->sapis[rllh->link_id & 0x7] = LCHAN_SAPI_MS;
Harald Welte427dbc42009-08-10 00:26:10 +02001421 bsc_del_timer(&msg->lchan->T3101);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001422 if (msgb_l2len(msg) >
Harald Welte59b04682009-06-10 05:40:52 +08001423 sizeof(struct abis_rsl_common_hdr) + sizeof(*rllh) &&
1424 rllh->data[0] == RSL_IE_L3_INFO) {
1425 msg->l3h = &rllh->data[3];
Harald Welte (local)64994ce2009-08-14 11:41:12 +02001426 return gsm0408_rcvmsg(msg, rllh->link_id);
Harald Welte59b04682009-06-10 05:40:52 +08001427 }
1428 break;
Harald Welteed9a5ab2009-08-09 13:47:35 +02001429 case RSL_MT_EST_CONF:
Harald Welte61402172009-08-09 14:13:58 +02001430 DEBUGPC(DRLL, "ESTABLISH CONFIRM\n");
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +01001431 msg->lchan->sapis[rllh->link_id & 0x7] = LCHAN_SAPI_NET;
Harald Welteed9a5ab2009-08-09 13:47:35 +02001432 rll_indication(msg->lchan, rllh->link_id,
1433 BSC_RLLR_IND_EST_CONF);
1434 break;
Harald Welte59b04682009-06-10 05:40:52 +08001435 case RSL_MT_REL_IND:
Harald Welte0f2e3c12009-08-08 13:15:07 +02001436 /* BTS informs us of having received DISC from MS */
Harald Welteb6601442009-08-04 02:50:21 +02001437 DEBUGPC(DRLL, "RELEASE INDICATION\n");
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +01001438 msg->lchan->sapis[rllh->link_id & 0x7] = LCHAN_SAPI_UNUSED;
Harald Welteed9a5ab2009-08-09 13:47:35 +02001439 rll_indication(msg->lchan, rllh->link_id,
1440 BSC_RLLR_IND_REL_IND);
Holger Hans Peter Freyther65f08522010-04-08 22:39:34 +02001441 rsl_handle_release(msg->lchan);
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +08001442 rsl_lchan_rll_release(msg->lchan, rllh->link_id);
Harald Welte59b04682009-06-10 05:40:52 +08001443 break;
1444 case RSL_MT_REL_CONF:
Harald Welte0f2e3c12009-08-08 13:15:07 +02001445 /* BTS informs us of having received UA from MS,
1446 * in response to DISC that we've sent earlier */
Harald Welteb6601442009-08-04 02:50:21 +02001447 DEBUGPC(DRLL, "RELEASE CONFIRMATION\n");
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +01001448 msg->lchan->sapis[rllh->link_id & 0x7] = LCHAN_SAPI_UNUSED;
Holger Hans Peter Freyther65f08522010-04-08 22:39:34 +02001449 rsl_handle_release(msg->lchan);
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +08001450 rsl_lchan_rll_release(msg->lchan, rllh->link_id);
Harald Welte59b04682009-06-10 05:40:52 +08001451 break;
1452 case RSL_MT_ERROR_IND:
Harald Welte59b04682009-06-10 05:40:52 +08001453 rc = rsl_rx_rll_err_ind(msg);
1454 break;
1455 case RSL_MT_UNIT_DATA_IND:
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001456 LOGP(DRLL, LOGL_NOTICE, "unimplemented Abis RLL message "
1457 "type 0x%02x\n", rllh->c.msg_type);
Harald Welte59b04682009-06-10 05:40:52 +08001458 break;
1459 default:
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001460 LOGP(DRLL, LOGL_NOTICE, "unknown Abis RLL message "
1461 "type 0x%02x\n", rllh->c.msg_type);
Harald Welte59b04682009-06-10 05:40:52 +08001462 }
Harald Welte59b04682009-06-10 05:40:52 +08001463 return rc;
1464}
1465
Harald Welteb284b472009-12-02 01:58:23 +05301466static u_int8_t ipa_smod_s_for_lchan(struct gsm_lchan *lchan)
Harald Welte98d79f92009-07-28 18:11:56 +02001467{
Harald Welteb284b472009-12-02 01:58:23 +05301468 switch (lchan->tch_mode) {
Harald Welte98d79f92009-07-28 18:11:56 +02001469 case GSM48_CMODE_SPEECH_V1:
Harald Welteb284b472009-12-02 01:58:23 +05301470 switch (lchan->type) {
1471 case GSM_LCHAN_TCH_F:
1472 return 0x00;
1473 case GSM_LCHAN_TCH_H:
1474 return 0x03;
1475 default:
1476 break;
1477 }
Harald Welte98d79f92009-07-28 18:11:56 +02001478 case GSM48_CMODE_SPEECH_EFR:
Harald Welteb284b472009-12-02 01:58:23 +05301479 switch (lchan->type) {
1480 case GSM_LCHAN_TCH_F:
1481 return 0x01;
1482 /* there's no half-rate EFR */
1483 default:
1484 break;
1485 }
Harald Welte98d79f92009-07-28 18:11:56 +02001486 case GSM48_CMODE_SPEECH_AMR:
Harald Welteb284b472009-12-02 01:58:23 +05301487 switch (lchan->type) {
1488 case GSM_LCHAN_TCH_F:
1489 return 0x02;
1490 case GSM_LCHAN_TCH_H:
1491 return 0x05;
1492 default:
1493 break;
1494 }
1495 default:
1496 break;
Harald Welte98d79f92009-07-28 18:11:56 +02001497 }
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001498 LOGP(DRSL, LOGL_ERROR, "Cannot determine ip.access speech mode for "
Harald Welteb284b472009-12-02 01:58:23 +05301499 "tch_mode == 0x%02x\n", lchan->tch_mode);
Harald Welte98d79f92009-07-28 18:11:56 +02001500 return 0;
Harald Welte98d79f92009-07-28 18:11:56 +02001501}
1502
Sylvain Munaut1338a552009-12-20 22:06:40 +01001503static u_int8_t ipa_rtp_pt_for_lchan(struct gsm_lchan *lchan)
1504{
1505 switch (lchan->tch_mode) {
1506 case GSM48_CMODE_SPEECH_V1:
1507 switch (lchan->type) {
1508 case GSM_LCHAN_TCH_F:
1509 return RTP_PT_GSM_FULL;
1510 case GSM_LCHAN_TCH_H:
1511 return RTP_PT_GSM_HALF;
1512 default:
1513 break;
1514 }
1515 case GSM48_CMODE_SPEECH_EFR:
1516 switch (lchan->type) {
1517 case GSM_LCHAN_TCH_F:
1518 return RTP_PT_GSM_EFR;
1519 /* there's no half-rate EFR */
1520 default:
1521 break;
1522 }
1523 case GSM48_CMODE_SPEECH_AMR:
1524 switch (lchan->type) {
1525 case GSM_LCHAN_TCH_F:
1526 return RTP_PT_AMR_FULL;
1527 case GSM_LCHAN_TCH_H:
1528 return RTP_PT_AMR_HALF;
1529 default:
1530 break;
1531 }
1532 default:
1533 break;
1534 }
1535 LOGP(DRSL, LOGL_ERROR, "Cannot determine ip.access rtp payload type for "
1536 "tch_mode == 0x%02x\n & lchan_type == %d",
1537 lchan->tch_mode, lchan->type);
1538 return 0;
1539}
1540
Harald Welte59b04682009-06-10 05:40:52 +08001541/* ip.access specific RSL extensions */
Harald Weltebffa4992009-12-19 16:42:06 +01001542static void ipac_parse_rtp(struct gsm_lchan *lchan, struct tlv_parsed *tv)
1543{
1544 struct in_addr ip;
1545 u_int16_t port, conn_id;
1546
1547 if (TLVP_PRESENT(tv, RSL_IE_IPAC_LOCAL_IP)) {
1548 ip.s_addr = *((u_int32_t *) TLVP_VAL(tv, RSL_IE_IPAC_LOCAL_IP));
1549 DEBUGPC(DRSL, "LOCAL_IP=%s ", inet_ntoa(ip));
1550 lchan->abis_ip.bound_ip = ntohl(ip.s_addr);
1551 }
1552
1553 if (TLVP_PRESENT(tv, RSL_IE_IPAC_LOCAL_PORT)) {
1554 port = *((u_int16_t *) TLVP_VAL(tv, RSL_IE_IPAC_LOCAL_PORT));
1555 port = ntohs(port);
1556 DEBUGPC(DRSL, "LOCAL_PORT=%u ", port);
1557 lchan->abis_ip.bound_port = port;
1558 }
1559
1560 if (TLVP_PRESENT(tv, RSL_IE_IPAC_CONN_ID)) {
1561 conn_id = *((u_int16_t *) TLVP_VAL(tv, RSL_IE_IPAC_CONN_ID));
1562 conn_id = ntohs(conn_id);
1563 DEBUGPC(DRSL, "CON_ID=%u ", conn_id);
1564 lchan->abis_ip.conn_id = conn_id;
1565 }
1566
1567 if (TLVP_PRESENT(tv, RSL_IE_IPAC_RTP_PAYLOAD2)) {
1568 lchan->abis_ip.rtp_payload2 =
1569 *TLVP_VAL(tv, RSL_IE_IPAC_RTP_PAYLOAD2);
1570 DEBUGPC(DRSL, "RTP_PAYLOAD2=0x%02x ",
1571 lchan->abis_ip.rtp_payload2);
1572 }
1573
1574 if (TLVP_PRESENT(tv, RSL_IE_IPAC_SPEECH_MODE)) {
1575 lchan->abis_ip.speech_mode =
1576 *TLVP_VAL(tv, RSL_IE_IPAC_SPEECH_MODE);
1577 DEBUGPC(DRSL, "speech_mode=0x%02x ",
1578 lchan->abis_ip.speech_mode);
1579 }
1580
1581 if (TLVP_PRESENT(tv, RSL_IE_IPAC_REMOTE_IP)) {
1582 ip.s_addr = *((u_int32_t *) TLVP_VAL(tv, RSL_IE_IPAC_REMOTE_IP));
1583 DEBUGPC(DRSL, "REMOTE_IP=%s ", inet_ntoa(ip));
1584 lchan->abis_ip.connect_ip = ntohl(ip.s_addr);
1585 }
1586
1587 if (TLVP_PRESENT(tv, RSL_IE_IPAC_REMOTE_PORT)) {
1588 port = *((u_int16_t *) TLVP_VAL(tv, RSL_IE_IPAC_REMOTE_PORT));
1589 port = ntohs(port);
1590 DEBUGPC(DRSL, "REMOTE_PORT=%u ", port);
1591 lchan->abis_ip.connect_port = port;
1592 }
1593}
1594
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001595int rsl_ipacc_crcx(struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +08001596{
1597 struct msgb *msg = rsl_msgb_alloc();
1598 struct abis_rsl_dchan_hdr *dh;
1599
1600 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001601 init_dchan_hdr(dh, RSL_MT_IPAC_CRCX);
Harald Welte59b04682009-06-10 05:40:52 +08001602 dh->c.msg_discr = ABIS_RSL_MDISC_IPACCESS;
1603 dh->chan_nr = lchan2chan_nr(lchan);
1604
Harald Welte98d79f92009-07-28 18:11:56 +02001605 /* 0x1- == receive-only, 0x-1 == EFR codec */
Harald Weltebffa4992009-12-19 16:42:06 +01001606 lchan->abis_ip.speech_mode = 0x10 | ipa_smod_s_for_lchan(lchan);
Sylvain Munaut1338a552009-12-20 22:06:40 +01001607 lchan->abis_ip.rtp_payload = ipa_rtp_pt_for_lchan(lchan);
Harald Weltebffa4992009-12-19 16:42:06 +01001608 msgb_tv_put(msg, RSL_IE_IPAC_SPEECH_MODE, lchan->abis_ip.speech_mode);
Sylvain Munaut1338a552009-12-20 22:06:40 +01001609 msgb_tv_put(msg, RSL_IE_IPAC_RTP_PAYLOAD, lchan->abis_ip.rtp_payload);
Harald Welte98d79f92009-07-28 18:11:56 +02001610
Sylvain Munaut1338a552009-12-20 22:06:40 +01001611 DEBUGP(DRSL, "%s IPAC_BIND speech_mode=0x%02x RTP_PAYLOAD=%d\n",
1612 gsm_lchan_name(lchan), lchan->abis_ip.speech_mode,
1613 lchan->abis_ip.rtp_payload);
Harald Welte98d79f92009-07-28 18:11:56 +02001614
Harald Welte59b04682009-06-10 05:40:52 +08001615 msg->trx = lchan->ts->trx;
1616
1617 return abis_rsl_sendmsg(msg);
1618}
1619
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001620int rsl_ipacc_mdcx(struct gsm_lchan *lchan, u_int32_t ip, u_int16_t port,
Harald Weltebffa4992009-12-19 16:42:06 +01001621 u_int8_t rtp_payload2)
Harald Welte59b04682009-06-10 05:40:52 +08001622{
1623 struct msgb *msg = rsl_msgb_alloc();
1624 struct abis_rsl_dchan_hdr *dh;
Harald Weltebffa4992009-12-19 16:42:06 +01001625 u_int32_t *att_ip;
Harald Welte98d79f92009-07-28 18:11:56 +02001626 struct in_addr ia;
Harald Welte59b04682009-06-10 05:40:52 +08001627
1628 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001629 init_dchan_hdr(dh, RSL_MT_IPAC_MDCX);
Harald Welte59b04682009-06-10 05:40:52 +08001630 dh->c.msg_discr = ABIS_RSL_MDISC_IPACCESS;
1631 dh->chan_nr = lchan2chan_nr(lchan);
1632
Harald Weltebffa4992009-12-19 16:42:06 +01001633 /* we need to store these now as MDCX_ACK does not return them :( */
1634 lchan->abis_ip.rtp_payload2 = rtp_payload2;
1635 lchan->abis_ip.connect_port = port;
1636 lchan->abis_ip.connect_ip = ip;
1637
Harald Weltefb4a9e92009-07-29 12:12:18 +02001638 /* 0x0- == both directions, 0x-1 == EFR codec */
Harald Weltebffa4992009-12-19 16:42:06 +01001639 lchan->abis_ip.speech_mode = 0x00 | ipa_smod_s_for_lchan(lchan);
Sylvain Munaut1338a552009-12-20 22:06:40 +01001640 lchan->abis_ip.rtp_payload = ipa_rtp_pt_for_lchan(lchan);
Harald Weltefb4a9e92009-07-29 12:12:18 +02001641
Harald Welte98d79f92009-07-28 18:11:56 +02001642 ia.s_addr = htonl(ip);
Sylvain Munaut1338a552009-12-20 22:06:40 +01001643 DEBUGP(DRSL, "%s IPAC_MDCX IP=%s PORT=%d RTP_PAYLOAD=%d RTP_PAYLOAD2=%d "
1644 "CONN_ID=%d speech_mode=0x%02x\n", gsm_lchan_name(lchan),
1645 inet_ntoa(ia), port, lchan->abis_ip.rtp_payload, rtp_payload2,
1646 lchan->abis_ip.conn_id, lchan->abis_ip.speech_mode);
Harald Welte98d79f92009-07-28 18:11:56 +02001647
Harald Weltebffa4992009-12-19 16:42:06 +01001648 msgb_tv16_put(msg, RSL_IE_IPAC_CONN_ID, lchan->abis_ip.conn_id);
1649 msgb_v_put(msg, RSL_IE_IPAC_REMOTE_IP);
1650 att_ip = (u_int32_t *) msgb_put(msg, sizeof(ip));
1651 *att_ip = ia.s_addr;
1652 msgb_tv16_put(msg, RSL_IE_IPAC_REMOTE_PORT, port);
1653 msgb_tv_put(msg, RSL_IE_IPAC_SPEECH_MODE, lchan->abis_ip.speech_mode);
Sylvain Munaut1338a552009-12-20 22:06:40 +01001654 msgb_tv_put(msg, RSL_IE_IPAC_RTP_PAYLOAD, lchan->abis_ip.rtp_payload);
Harald Welte98d79f92009-07-28 18:11:56 +02001655 if (rtp_payload2)
1656 msgb_tv_put(msg, RSL_IE_IPAC_RTP_PAYLOAD2, rtp_payload2);
1657
Harald Welte59b04682009-06-10 05:40:52 +08001658 msg->trx = lchan->ts->trx;
1659
1660 return abis_rsl_sendmsg(msg);
1661}
1662
Harald Welte9947d9f2009-12-20 16:51:09 +01001663/* tell BTS to connect RTP stream to our local RTP socket */
1664int rsl_ipacc_mdcx_to_rtpsock(struct gsm_lchan *lchan)
1665{
1666 struct rtp_socket *rs = lchan->abis_ip.rtp_socket;
1667 int rc;
1668
1669 rc = rsl_ipacc_mdcx(lchan, ntohl(rs->rtp.sin_local.sin_addr.s_addr),
1670 ntohs(rs->rtp.sin_local.sin_port),
1671 /* FIXME: use RTP payload of bound socket, not BTS*/
1672 lchan->abis_ip.rtp_payload2);
1673
1674 return rc;
1675}
1676
Harald Welte2b361522010-03-28 14:42:09 +08001677int rsl_ipacc_pdch_activate(struct gsm_lchan *lchan, int act)
Harald Welteaed946e2009-10-24 10:29:22 +02001678{
1679 struct msgb *msg = rsl_msgb_alloc();
1680 struct abis_rsl_dchan_hdr *dh;
Harald Welte2b361522010-03-28 14:42:09 +08001681 u_int8_t msg_type;
1682
1683 if (act)
1684 msg_type = RSL_MT_IPAC_PDCH_ACT;
1685 else
1686 msg_type = RSL_MT_IPAC_PDCH_DEACT;
Harald Welteaed946e2009-10-24 10:29:22 +02001687
1688 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
Harald Welte2b361522010-03-28 14:42:09 +08001689 init_dchan_hdr(dh, msg_type);
Harald Welteaed946e2009-10-24 10:29:22 +02001690 dh->c.msg_discr = ABIS_RSL_MDISC_DED_CHAN;
1691 dh->chan_nr = lchan2chan_nr(lchan);
1692
Harald Welte2b361522010-03-28 14:42:09 +08001693 DEBUGP(DRSL, "%s IPAC_PDCH_%sACT\n", gsm_lchan_name(lchan),
1694 act ? "" : "DE");
Harald Welteaed946e2009-10-24 10:29:22 +02001695
1696 msg->trx = lchan->ts->trx;
1697
1698 return abis_rsl_sendmsg(msg);
1699}
1700
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001701static int abis_rsl_rx_ipacc_crcx_ack(struct msgb *msg)
Harald Welte59b04682009-06-10 05:40:52 +08001702{
1703 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
1704 struct tlv_parsed tv;
Harald Welte87504212009-12-02 01:56:49 +05301705 struct gsm_lchan *lchan = msg->lchan;
Harald Welte59b04682009-06-10 05:40:52 +08001706
1707 /* the BTS has acknowledged a local bind, it now tells us the IP
1708 * address and port number to which it has bound the given logical
1709 * channel */
1710
1711 rsl_tlv_parse(&tv, dh->data, msgb_l2len(msg)-sizeof(*dh));
1712 if (!TLVP_PRESENT(&tv, RSL_IE_IPAC_LOCAL_PORT) ||
1713 !TLVP_PRESENT(&tv, RSL_IE_IPAC_LOCAL_IP) ||
Harald Welteb9498952009-07-12 09:45:05 +02001714 !TLVP_PRESENT(&tv, RSL_IE_IPAC_CONN_ID)) {
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001715 LOGP(DRSL, LOGL_NOTICE, "mandatory IE missing");
Harald Welte59b04682009-06-10 05:40:52 +08001716 return -EINVAL;
1717 }
Harald Welte50517742009-12-20 15:42:44 +01001718
Harald Weltebffa4992009-12-19 16:42:06 +01001719 ipac_parse_rtp(lchan, &tv);
Harald Welte50517742009-12-20 15:42:44 +01001720
1721 /* in case we don't use direct BTS-to-BTS RTP */
1722 if (!ipacc_rtp_direct) {
1723 int rc;
1724 /* the BTS has successfully bound a TCH to a local ip/port,
1725 * which means we can connect our UDP socket to it */
1726 if (lchan->abis_ip.rtp_socket) {
1727 rtp_socket_free(lchan->abis_ip.rtp_socket);
1728 lchan->abis_ip.rtp_socket = NULL;
1729 }
1730
1731 lchan->abis_ip.rtp_socket = rtp_socket_create();
1732 if (!lchan->abis_ip.rtp_socket)
1733 goto out_err;
1734
1735 rc = rtp_socket_connect(lchan->abis_ip.rtp_socket,
1736 lchan->abis_ip.bound_ip,
1737 lchan->abis_ip.bound_port);
1738 if (rc < 0)
1739 goto out_err;
1740 }
1741
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001742 dispatch_signal(SS_ABISIP, S_ABISIP_CRCX_ACK, msg->lchan);
Harald Welte59b04682009-06-10 05:40:52 +08001743
1744 return 0;
Harald Welte50517742009-12-20 15:42:44 +01001745out_err:
1746 return -EIO;
Harald Welte59b04682009-06-10 05:40:52 +08001747}
1748
Harald Weltebffa4992009-12-19 16:42:06 +01001749static int abis_rsl_rx_ipacc_mdcx_ack(struct msgb *msg)
1750{
1751 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
1752 struct tlv_parsed tv;
1753 struct gsm_lchan *lchan = msg->lchan;
1754
1755 /* the BTS has acknowledged a remote connect request and
1756 * it now tells us the IP address and port number to which it has
1757 * connected the given logical channel */
1758
1759 rsl_tlv_parse(&tv, dh->data, msgb_l2len(msg)-sizeof(*dh));
1760 ipac_parse_rtp(lchan, &tv);
1761 dispatch_signal(SS_ABISIP, S_ABISIP_MDCX_ACK, msg->lchan);
1762
1763 return 0;
1764}
1765
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001766static int abis_rsl_rx_ipacc_dlcx_ind(struct msgb *msg)
Harald Welte59b04682009-06-10 05:40:52 +08001767{
1768 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
1769 struct tlv_parsed tv;
Harald Welte50517742009-12-20 15:42:44 +01001770 struct gsm_lchan *lchan = msg->lchan;
Harald Welte59b04682009-06-10 05:40:52 +08001771
1772 rsl_tlv_parse(&tv, dh->data, msgb_l2len(msg)-sizeof(*dh));
Harald Welte59b04682009-06-10 05:40:52 +08001773
Harald Weltef1a168d2009-07-28 17:58:09 +02001774 if (TLVP_PRESENT(&tv, RSL_IE_CAUSE))
Harald Weltede4477a2009-12-24 12:20:20 +01001775 print_rsl_cause(LOGL_DEBUG, TLVP_VAL(&tv, RSL_IE_CAUSE),
Harald Weltef1a168d2009-07-28 17:58:09 +02001776 TLVP_LEN(&tv, RSL_IE_CAUSE));
Harald Welte59b04682009-06-10 05:40:52 +08001777
Harald Welte50517742009-12-20 15:42:44 +01001778 /* the BTS tells us a RTP stream has been disconnected */
1779 if (lchan->abis_ip.rtp_socket) {
1780 rtp_socket_free(lchan->abis_ip.rtp_socket);
1781 lchan->abis_ip.rtp_socket = NULL;
1782 }
1783
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001784 dispatch_signal(SS_ABISIP, S_ABISIP_DLCX_IND, msg->lchan);
Harald Welteba4e58d2009-07-28 18:02:05 +02001785
Harald Welte59b04682009-06-10 05:40:52 +08001786 return 0;
1787}
1788
1789static int abis_rsl_rx_ipacc(struct msgb *msg)
1790{
1791 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
Harald Weltede4477a2009-12-24 12:20:20 +01001792 char *ts_name;
Harald Welte59b04682009-06-10 05:40:52 +08001793 int rc = 0;
1794
1795 msg->lchan = lchan_lookup(msg->trx, rllh->chan_nr);
Harald Welte (local)c4e9c9c2009-12-27 18:16:36 +01001796 ts_name = gsm_lchan_name(msg->lchan);
Harald Welte59b04682009-06-10 05:40:52 +08001797
1798 switch (rllh->c.msg_type) {
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001799 case RSL_MT_IPAC_CRCX_ACK:
Harald Weltede4477a2009-12-24 12:20:20 +01001800 DEBUGP(DRSL, "%s IPAC_CRCX_ACK ", ts_name);
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001801 rc = abis_rsl_rx_ipacc_crcx_ack(msg);
Harald Welte59b04682009-06-10 05:40:52 +08001802 break;
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001803 case RSL_MT_IPAC_CRCX_NACK:
Harald Welte59b04682009-06-10 05:40:52 +08001804 /* somehow the BTS was unable to bind the lchan to its local
1805 * port?!? */
Harald Weltede4477a2009-12-24 12:20:20 +01001806 LOGP(DRSL, LOGL_ERROR, "%s IPAC_CRCX_NACK\n", ts_name);
Harald Welte59b04682009-06-10 05:40:52 +08001807 break;
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001808 case RSL_MT_IPAC_MDCX_ACK:
Harald Welte59b04682009-06-10 05:40:52 +08001809 /* the BTS tells us that a connect operation was successful */
Harald Weltede4477a2009-12-24 12:20:20 +01001810 DEBUGP(DRSL, "%s IPAC_MDCX_ACK ", ts_name);
Harald Weltebffa4992009-12-19 16:42:06 +01001811 rc = abis_rsl_rx_ipacc_mdcx_ack(msg);
Harald Welte59b04682009-06-10 05:40:52 +08001812 break;
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001813 case RSL_MT_IPAC_MDCX_NACK:
Harald Welte59b04682009-06-10 05:40:52 +08001814 /* somehow the BTS was unable to connect the lchan to a remote
1815 * port */
Harald Weltede4477a2009-12-24 12:20:20 +01001816 LOGP(DRSL, LOGL_ERROR, "%s IPAC_MDCX_NACK\n", ts_name);
Harald Welte59b04682009-06-10 05:40:52 +08001817 break;
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001818 case RSL_MT_IPAC_DLCX_IND:
Harald Weltede4477a2009-12-24 12:20:20 +01001819 DEBUGP(DRSL, "%s IPAC_DLCX_IND ", ts_name);
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001820 rc = abis_rsl_rx_ipacc_dlcx_ind(msg);
Harald Welte59b04682009-06-10 05:40:52 +08001821 break;
1822 default:
Harald Weltede4477a2009-12-24 12:20:20 +01001823 LOGP(DRSL, LOGL_NOTICE, "Unknown ip.access msg_type 0x%02x\n",
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001824 rllh->c.msg_type);
Harald Welte59b04682009-06-10 05:40:52 +08001825 break;
1826 }
1827 DEBUGPC(DRSL, "\n");
1828
1829 return rc;
1830}
1831
1832
1833/* Entry-point where L2 RSL from BTS enters */
1834int abis_rsl_rcvmsg(struct msgb *msg)
1835{
Holger Hans Peter Freytherc7d94092009-11-20 15:14:01 +01001836 struct abis_rsl_common_hdr *rslh;
Harald Welte59b04682009-06-10 05:40:52 +08001837 int rc = 0;
1838
Holger Hans Peter Freytherc7d94092009-11-20 15:14:01 +01001839 if (!msg) {
1840 DEBUGP(DRSL, "Empty RSL msg?..\n");
1841 return -1;
1842 }
1843
1844 if (msgb_l2len(msg) < sizeof(*rslh)) {
1845 DEBUGP(DRSL, "Truncated RSL message with l2len: %u\n", msgb_l2len(msg));
1846 return -1;
1847 }
1848
1849 rslh = msgb_l2(msg);
1850
Harald Welte59b04682009-06-10 05:40:52 +08001851 switch (rslh->msg_discr & 0xfe) {
1852 case ABIS_RSL_MDISC_RLL:
1853 rc = abis_rsl_rx_rll(msg);
1854 break;
1855 case ABIS_RSL_MDISC_DED_CHAN:
1856 rc = abis_rsl_rx_dchan(msg);
1857 break;
1858 case ABIS_RSL_MDISC_COM_CHAN:
1859 rc = abis_rsl_rx_cchan(msg);
1860 break;
1861 case ABIS_RSL_MDISC_TRX:
1862 rc = abis_rsl_rx_trx(msg);
1863 break;
1864 case ABIS_RSL_MDISC_LOC:
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001865 LOGP(DRSL, LOGL_NOTICE, "unimplemented RSL msg disc 0x%02x\n",
Harald Welte59b04682009-06-10 05:40:52 +08001866 rslh->msg_discr);
1867 break;
1868 case ABIS_RSL_MDISC_IPACCESS:
1869 rc = abis_rsl_rx_ipacc(msg);
1870 break;
1871 default:
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001872 LOGP(DRSL, LOGL_NOTICE, "unknown RSL message discriminator "
1873 "0x%02x\n", rslh->msg_discr);
Harald Welte59b04682009-06-10 05:40:52 +08001874 return -EINVAL;
1875 }
1876 msgb_free(msg);
1877 return rc;
1878}
1879
Harald Welte59b04682009-06-10 05:40:52 +08001880/* From Table 10.5.33 of GSM 04.08 */
1881int rsl_number_of_paging_subchannels(struct gsm_bts *bts)
1882{
Harald Weltea54a2bb2009-12-01 18:04:30 +05301883 if (bts->si_common.chan_desc.ccch_conf == RSL_BCCH_CCCH_CONF_1_C) {
1884 return MAX(1, (3 - bts->si_common.chan_desc.bs_ag_blks_res))
1885 * (bts->si_common.chan_desc.bs_pa_mfrms + 2);
Harald Welte59b04682009-06-10 05:40:52 +08001886 } else {
Harald Weltea54a2bb2009-12-01 18:04:30 +05301887 return (9 - bts->si_common.chan_desc.bs_ag_blks_res)
1888 * (bts->si_common.chan_desc.bs_pa_mfrms + 2);
Harald Welte59b04682009-06-10 05:40:52 +08001889 }
1890}
Holger Hans Peter Freytherb67f4082010-07-21 15:54:32 +08001891
1892int rsl_sms_cb_command(struct gsm_bts *bts, uint8_t chan_number,
1893 uint8_t cb_command, const uint8_t *data, int len)
1894{
1895 struct abis_rsl_dchan_hdr *dh;
1896 struct msgb *cb_cmd;
1897
1898 cb_cmd = rsl_msgb_alloc();
1899 if (!cb_cmd)
1900 return -1;
1901
1902 dh = (struct abis_rsl_dchan_hdr *) msgb_put(cb_cmd, sizeof*dh);
1903 init_dchan_hdr(dh, RSL_MT_SMS_BC_CMD);
1904 dh->chan_nr = RSL_CHAN_SDCCH4_ACCH; /* TODO: check the chan config */
1905
1906 msgb_tv_put(cb_cmd, RSL_IE_CB_CMD_TYPE, cb_command);
1907 msgb_tlv_put(cb_cmd, RSL_IE_SMSCB_MSG, len, data);
1908
1909 cb_cmd->trx = bts->c0;
1910
1911 return abis_rsl_sendmsg(cb_cmd);
1912}