blob: a50d7aa1cb2e31821d6b8b4efd4726931921d29c [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* GSM Radio Signalling Link messages on the A-bis interface
2 * 3GPP TS 08.58 version 8.6.0 Release 1999 / ETSI TS 100 596 V8.6.0 */
3
4/* (C) 2008-2009 by Harald Welte <laforge@gnumonks.org>
5 *
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 Weltec4dcda02009-08-09 14:45:18 +020033#include <openbsc/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>
38#include <openbsc/tlv.h>
39#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 Welte59b04682009-06-10 05:40:52 +080043
44#define RSL_ALLOC_SIZE 1024
45#define RSL_ALLOC_HEADROOM 128
46
47#define MAX(a, b) (a) >= (b) ? (a) : (b)
48
49static const struct tlv_definition rsl_att_tlvdef = {
50 .def = {
51 [RSL_IE_CHAN_NR] = { TLV_TYPE_TV },
52 [RSL_IE_LINK_IDENT] = { TLV_TYPE_TV },
53 [RSL_IE_ACT_TYPE] = { TLV_TYPE_TV },
54 [RSL_IE_BS_POWER] = { TLV_TYPE_TV },
55 [RSL_IE_CHAN_IDENT] = { TLV_TYPE_TLV },
56 [RSL_IE_CHAN_MODE] = { TLV_TYPE_TLV },
57 [RSL_IE_ENCR_INFO] = { TLV_TYPE_TLV },
58 [RSL_IE_FRAME_NUMBER] = { TLV_TYPE_FIXED, 2 },
59 [RSL_IE_HANDO_REF] = { TLV_TYPE_TV },
60 [RSL_IE_L1_INFO] = { TLV_TYPE_FIXED, 2 },
61 [RSL_IE_L3_INFO] = { TLV_TYPE_TL16V },
62 [RSL_IE_MS_IDENTITY] = { TLV_TYPE_TLV },
63 [RSL_IE_MS_POWER] = { TLV_TYPE_TV },
64 [RSL_IE_PAGING_GROUP] = { TLV_TYPE_TV },
65 [RSL_IE_PAGING_LOAD] = { TLV_TYPE_FIXED, 2 },
66 [RSL_IE_PYHS_CONTEXT] = { TLV_TYPE_TLV },
67 [RSL_IE_ACCESS_DELAY] = { TLV_TYPE_TV },
68 [RSL_IE_RACH_LOAD] = { TLV_TYPE_TLV },
69 [RSL_IE_REQ_REFERENCE] = { TLV_TYPE_FIXED, 3 },
70 [RSL_IE_RELEASE_MODE] = { TLV_TYPE_TV },
71 [RSL_IE_RESOURCE_INFO] = { TLV_TYPE_TLV },
72 [RSL_IE_RLM_CAUSE] = { TLV_TYPE_TLV },
73 [RSL_IE_STARTNG_TIME] = { TLV_TYPE_FIXED, 2 },
74 [RSL_IE_TIMING_ADVANCE] = { TLV_TYPE_TV },
75 [RSL_IE_UPLINK_MEAS] = { TLV_TYPE_TLV },
76 [RSL_IE_CAUSE] = { TLV_TYPE_TLV },
77 [RSL_IE_MEAS_RES_NR] = { TLV_TYPE_TV },
78 [RSL_IE_MSG_ID] = { TLV_TYPE_TV },
79 [RSL_IE_SYSINFO_TYPE] = { TLV_TYPE_TV },
80 [RSL_IE_MS_POWER_PARAM] = { TLV_TYPE_TLV },
81 [RSL_IE_BS_POWER_PARAM] = { TLV_TYPE_TLV },
82 [RSL_IE_PREPROC_PARAM] = { TLV_TYPE_TLV },
83 [RSL_IE_PREPROC_MEAS] = { TLV_TYPE_TLV },
84 [RSL_IE_IMM_ASS_INFO] = { TLV_TYPE_TLV },
85 [RSL_IE_SMSCB_INFO] = { TLV_TYPE_FIXED, 23 },
86 [RSL_IE_MS_TIMING_OFFSET] = { TLV_TYPE_TV },
87 [RSL_IE_ERR_MSG] = { TLV_TYPE_TLV },
88 [RSL_IE_FULL_BCCH_INFO] = { TLV_TYPE_TLV },
89 [RSL_IE_CHAN_NEEDED] = { TLV_TYPE_TV },
90 [RSL_IE_CB_CMD_TYPE] = { TLV_TYPE_TV },
91 [RSL_IE_SMSCB_MSG] = { TLV_TYPE_TLV },
92 [RSL_IE_FULL_IMM_ASS_INFO] = { TLV_TYPE_TLV },
93 [RSL_IE_SACCH_INFO] = { TLV_TYPE_TLV },
94 [RSL_IE_CBCH_LOAD_INFO] = { TLV_TYPE_TV },
95 [RSL_IE_SMSCB_CHAN_INDICATOR] = { TLV_TYPE_TV },
96 [RSL_IE_GROUP_CALL_REF] = { TLV_TYPE_TLV },
97 [RSL_IE_CHAN_DESC] = { TLV_TYPE_TLV },
98 [RSL_IE_NCH_DRX_INFO] = { TLV_TYPE_TLV },
99 [RSL_IE_CMD_INDICATOR] = { TLV_TYPE_TLV },
100 [RSL_IE_EMLPP_PRIO] = { TLV_TYPE_TV },
101 [RSL_IE_UIC] = { TLV_TYPE_TLV },
102 [RSL_IE_MAIN_CHAN_REF] = { TLV_TYPE_TV },
103 [RSL_IE_MR_CONFIG] = { TLV_TYPE_TLV },
104 [RSL_IE_MR_CONTROL] = { TLV_TYPE_TV },
105 [RSL_IE_SUP_CODEC_TYPES] = { TLV_TYPE_TLV },
106 [RSL_IE_CODEC_CONFIG] = { TLV_TYPE_TLV },
107 [RSL_IE_RTD] = { TLV_TYPE_TV },
108 [RSL_IE_TFO_STATUS] = { TLV_TYPE_TV },
109 [RSL_IE_LLP_APDU] = { TLV_TYPE_TLV },
Harald Welte4684e632009-08-10 09:51:40 +0200110 [RSL_IE_SIEMENS_MRPCI] = { TLV_TYPE_TV },
Harald Welte1610d302009-07-12 09:56:39 +0200111 [RSL_IE_IPAC_PROXY_UDP] = { TLV_TYPE_FIXED, 2 },
112 [RSL_IE_IPAC_BSCMPL_TOUT] = { TLV_TYPE_TV },
Harald Welte59b04682009-06-10 05:40:52 +0800113 [RSL_IE_IPAC_REMOTE_IP] = { TLV_TYPE_FIXED, 4 },
114 [RSL_IE_IPAC_REMOTE_PORT] = { TLV_TYPE_FIXED, 2 },
Harald Welte1610d302009-07-12 09:56:39 +0200115 [RSL_IE_IPAC_RTP_PAYLOAD] = { TLV_TYPE_TV },
Harald Welte59b04682009-06-10 05:40:52 +0800116 [RSL_IE_IPAC_LOCAL_PORT] = { TLV_TYPE_FIXED, 2 },
Harald Welteb9498952009-07-12 09:45:05 +0200117 [RSL_IE_IPAC_SPEECH_MODE] = { TLV_TYPE_TV },
Harald Welte1610d302009-07-12 09:56:39 +0200118 [RSL_IE_IPAC_LOCAL_IP] = { TLV_TYPE_FIXED, 4 },
Harald Welteb9498952009-07-12 09:45:05 +0200119 [RSL_IE_IPAC_CONN_ID] = { TLV_TYPE_FIXED, 2 },
Harald Welte1610d302009-07-12 09:56:39 +0200120 [RSL_IE_IPAC_RTP_CSD_FMT] = { TLV_TYPE_TV },
121 [RSL_IE_IPAC_RTP_JIT_BUF] = { TLV_TYPE_FIXED, 2 },
122 [RSL_IE_IPAC_RTP_COMPR] = { TLV_TYPE_TV },
Harald Welteb9498952009-07-12 09:45:05 +0200123 [RSL_IE_IPAC_RTP_PAYLOAD2] = { TLV_TYPE_TV },
Harald Welte1610d302009-07-12 09:56:39 +0200124 [RSL_IE_IPAC_RTP_MPLEX] = { TLV_TYPE_FIXED, 8 },
125 [RSL_IE_IPAC_RTP_MPLEX_ID] = { TLV_TYPE_TV },
Harald Welte59b04682009-06-10 05:40:52 +0800126 },
127};
128#define rsl_tlv_parse(dec, buf, len) \
129 tlv_parse(dec, &rsl_att_tlvdef, buf, len, 0, 0)
130
131static u_int8_t mdisc_by_msgtype(u_int8_t msg_type)
132{
133 /* mask off the transparent bit ? */
134 msg_type &= 0xfe;
135
136 if ((msg_type & 0xf0) == 0x00)
137 return ABIS_RSL_MDISC_RLL;
138 if ((msg_type & 0xf0) == 0x10) {
139 if (msg_type >= 0x19 && msg_type <= 0x22)
140 return ABIS_RSL_MDISC_TRX;
141 else
142 return ABIS_RSL_MDISC_COM_CHAN;
143 }
144 if ((msg_type & 0xe0) == 0x20)
145 return ABIS_RSL_MDISC_DED_CHAN;
146
147 return ABIS_RSL_MDISC_LOC;
148}
149
150static inline void init_dchan_hdr(struct abis_rsl_dchan_hdr *dh,
151 u_int8_t msg_type)
152{
153 dh->c.msg_discr = mdisc_by_msgtype(msg_type);
154 dh->c.msg_type = msg_type;
155 dh->ie_chan = RSL_IE_CHAN_NR;
156}
157
158static inline void init_llm_hdr(struct abis_rsl_rll_hdr *dh,
159 u_int8_t msg_type)
160{
161 /* dh->c.msg_discr = mdisc_by_msgtype(msg_type); */
162 dh->c.msg_discr = ABIS_RSL_MDISC_RLL;
163 dh->c.msg_type = msg_type;
164 dh->ie_chan = RSL_IE_CHAN_NR;
165 dh->ie_link_id = RSL_IE_LINK_IDENT;
166}
167
168
169/* encode channel number as per Section 9.3.1 */
170u_int8_t rsl_enc_chan_nr(u_int8_t type, u_int8_t subch, u_int8_t timeslot)
171{
172 u_int8_t ret;
173
174 ret = (timeslot & 0x07) | type;
175
176 switch (type) {
177 case RSL_CHAN_Lm_ACCHs:
178 subch &= 0x01;
179 break;
180 case RSL_CHAN_SDCCH4_ACCH:
181 subch &= 0x07;
182 break;
183 case RSL_CHAN_SDCCH8_ACCH:
184 subch &= 0x07;
185 break;
186 default:
187 /* no subchannels allowed */
188 subch = 0x00;
189 break;
190 }
191 ret |= (subch << 3);
192
193 return ret;
194}
195
196/* determine logical channel based on TRX and channel number IE */
197struct gsm_lchan *lchan_lookup(struct gsm_bts_trx *trx, u_int8_t chan_nr)
198{
199 struct gsm_lchan *lchan;
200 u_int8_t ts_nr = chan_nr & 0x07;
201 u_int8_t cbits = chan_nr >> 3;
202 u_int8_t lch_idx;
203 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
204
205 if (cbits == 0x01) {
206 lch_idx = 0; /* TCH/F */
Harald Welte37884ed2009-10-24 10:25:50 +0200207 if (ts->pchan != GSM_PCHAN_TCH_F &&
208 ts->pchan != GSM_PCHAN_PDCH &&
209 ts->pchan != GSM_PCHAN_TCH_F_PDCH)
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100210 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte59b04682009-06-10 05:40:52 +0800211 chan_nr, ts->pchan);
212 } else if ((cbits & 0x1e) == 0x02) {
213 lch_idx = cbits & 0x1; /* TCH/H */
214 if (ts->pchan != GSM_PCHAN_TCH_H)
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100215 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte59b04682009-06-10 05:40:52 +0800216 chan_nr, ts->pchan);
217 } else if ((cbits & 0x1c) == 0x04) {
218 lch_idx = cbits & 0x3; /* SDCCH/4 */
219 if (ts->pchan != GSM_PCHAN_CCCH_SDCCH4)
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100220 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte59b04682009-06-10 05:40:52 +0800221 chan_nr, ts->pchan);
222 } else if ((cbits & 0x18) == 0x08) {
223 lch_idx = cbits & 0x7; /* SDCCH/8 */
224 if (ts->pchan != GSM_PCHAN_SDCCH8_SACCH8C)
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100225 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte59b04682009-06-10 05:40:52 +0800226 chan_nr, ts->pchan);
227 } else if (cbits == 0x10 || cbits == 0x11 || cbits == 0x12) {
228 lch_idx = 0;
229 if (ts->pchan != GSM_PCHAN_CCCH &&
230 ts->pchan != GSM_PCHAN_CCCH_SDCCH4)
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100231 LOGP(DRSL, LOGL_ERROR, "chan_nr=0x%02x but pchan=%u\n",
Harald Welte59b04682009-06-10 05:40:52 +0800232 chan_nr, ts->pchan);
233 /* FIXME: we should not return first sdcch4 !!! */
234 } else {
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100235 LOGP(DRSL, LOGL_ERROR, "unknown chan_nr=0x%02x\n", chan_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800236 return NULL;
237 }
238
239 lchan = &ts->lchan[lch_idx];
240
241 return lchan;
242}
243
Holger Hans Peter Freyther942ff172009-10-22 11:47:45 +0200244/* See Table 10.5.25 of GSM04.08 */
Harald Welteb5586242009-12-09 19:18:32 +0100245u_int8_t lchan2chan_nr(const struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +0800246{
247 struct gsm_bts_trx_ts *ts = lchan->ts;
248 u_int8_t cbits, chan_nr;
249
250 switch (ts->pchan) {
251 case GSM_PCHAN_TCH_F:
Harald Welte37884ed2009-10-24 10:25:50 +0200252 case GSM_PCHAN_PDCH:
253 case GSM_PCHAN_TCH_F_PDCH:
Harald Welte59b04682009-06-10 05:40:52 +0800254 cbits = 0x01;
255 break;
256 case GSM_PCHAN_TCH_H:
257 cbits = 0x02;
258 cbits += lchan->nr;
259 break;
260 case GSM_PCHAN_CCCH_SDCCH4:
261 cbits = 0x04;
262 cbits += lchan->nr;
263 break;
264 case GSM_PCHAN_SDCCH8_SACCH8C:
265 cbits = 0x08;
266 cbits += lchan->nr;
267 break;
268 default:
269 case GSM_PCHAN_CCCH:
270 cbits = 0x10;
271 break;
272 }
273
274 chan_nr = (cbits << 3) | (ts->nr & 0x7);
275
276 return chan_nr;
277}
278
279/* As per TS 03.03 Section 2.2, the IMSI has 'not more than 15 digits' */
280u_int64_t str_to_imsi(const char *imsi_str)
281{
282 u_int64_t ret;
283
284 ret = strtoull(imsi_str, NULL, 10);
285
286 return ret;
287}
288
289/* Table 5 Clause 7 TS 05.02 */
290unsigned int n_pag_blocks(int bs_ccch_sdcch_comb, unsigned int bs_ag_blks_res)
291{
292 if (!bs_ccch_sdcch_comb)
293 return 9 - bs_ag_blks_res;
294 else
295 return 3 - bs_ag_blks_res;
296}
297
298/* Chapter 6.5.2 of TS 05.02 */
299unsigned int get_ccch_group(u_int64_t imsi, unsigned int bs_cc_chans,
300 unsigned int n_pag_blocks)
301{
302 return (imsi % 1000) % (bs_cc_chans * n_pag_blocks) / n_pag_blocks;
303}
304
305/* Chapter 6.5.2 of TS 05.02 */
306unsigned int get_paging_group(u_int64_t imsi, unsigned int bs_cc_chans,
307 int n_pag_blocks)
308{
309 return (imsi % 1000) % (bs_cc_chans * n_pag_blocks) % n_pag_blocks;
310}
311
312static struct msgb *rsl_msgb_alloc(void)
313{
Harald Welte9cfc9352009-06-26 19:39:35 +0200314 return msgb_alloc_headroom(RSL_ALLOC_SIZE, RSL_ALLOC_HEADROOM,
315 "RSL");
Harald Welte59b04682009-06-10 05:40:52 +0800316}
317
318#define MACBLOCK_SIZE 23
319static void pad_macblock(u_int8_t *out, const u_int8_t *in, int len)
320{
321 memcpy(out, in, len);
322
323 if (len < MACBLOCK_SIZE)
324 memset(out+len, 0x2b, MACBLOCK_SIZE-len);
325}
326
Harald Welted2dd9de2009-08-30 15:37:11 +0900327/* Chapter 9.3.7: Encryption Information */
328static int build_encr_info(u_int8_t *out, struct gsm_lchan *lchan)
329{
330 *out++ = lchan->encr.alg_id & 0xff;
331 if (lchan->encr.key_len)
332 memcpy(out, lchan->encr.key, lchan->encr.key_len);
333 return lchan->encr.key_len + 1;
334}
335
336
Harald Weltef1a168d2009-07-28 17:58:09 +0200337static const char *rsl_err_vals[0xff] = {
338 [RSL_ERR_RADIO_IF_FAIL] = "Radio Interface Failure",
339 [RSL_ERR_RADIO_LINK_FAIL] = "Radio Link Failure",
340 [RSL_ERR_HANDOVER_ACC_FAIL] = "Handover Access Failure",
341 [RSL_ERR_TALKER_ACC_FAIL] = "Talker Access Failure",
342 [RSL_ERR_OM_INTERVENTION] = "O&M Intervention",
343 [RSL_ERR_NORMAL_UNSPEC] = "Normal event, unspecified",
Harald Welteb1717e92009-08-04 02:31:05 +0200344 [RSL_ERR_T_MSRFPCI_EXP] = "Siemens: T_MSRFPCI Expired",
Harald Weltef1a168d2009-07-28 17:58:09 +0200345 [RSL_ERR_EQUIPMENT_FAIL] = "Equipment Failure",
346 [RSL_ERR_RR_UNAVAIL] = "Radio Resource not available",
347 [RSL_ERR_TERR_CH_FAIL] = "Terrestrial Channel Failure",
348 [RSL_ERR_CCCH_OVERLOAD] = "CCCH Overload",
349 [RSL_ERR_ACCH_OVERLOAD] = "ACCH Overload",
350 [RSL_ERR_PROCESSOR_OVERLOAD] = "Processor Overload",
351 [RSL_ERR_RES_UNAVAIL] = "Resource not available, unspecified",
352 [RSL_ERR_TRANSC_UNAVAIL] = "Transcoding not available",
353 [RSL_ERR_SERV_OPT_UNAVAIL] = "Service or Option not available",
354 [RSL_ERR_ENCR_UNIMPL] = "Encryption algorithm not implemented",
355 [RSL_ERR_SERV_OPT_UNIMPL] = "Service or Option not implemented",
356 [RSL_ERR_RCH_ALR_ACTV_ALLOC] = "Radio channel already activated",
357 [RSL_ERR_INVALID_MESSAGE] = "Invalid Message, unspecified",
358 [RSL_ERR_MSG_DISCR] = "Message Discriminator Error",
359 [RSL_ERR_MSG_TYPE] = "Message Type Error",
360 [RSL_ERR_MSG_SEQ] = "Message Sequence Error",
361 [RSL_ERR_IE_ERROR] = "General IE error",
362 [RSL_ERR_MAND_IE_ERROR] = "Mandatory IE error",
363 [RSL_ERR_OPT_IE_ERROR] = "Optional IE error",
364 [RSL_ERR_IE_NONEXIST] = "IE non-existent",
365 [RSL_ERR_IE_LENGTH] = "IE length error",
366 [RSL_ERR_IE_CONTENT] = "IE content error",
367 [RSL_ERR_PROTO] = "Protocol error, unspecified",
368 [RSL_ERR_INTERWORKING] = "Interworking error, unspecified",
369};
370
371static const char *rsl_err_name(u_int8_t err)
Harald Welte59b04682009-06-10 05:40:52 +0800372{
Harald Weltef1a168d2009-07-28 17:58:09 +0200373 if (rsl_err_vals[err])
374 return rsl_err_vals[err];
375 else
376 return "unknown";
377}
378
379static void print_rsl_cause(const u_int8_t *cause_v, u_int8_t cause_len)
380{
Harald Welte59b04682009-06-10 05:40:52 +0800381 int i;
382
Harald Weltef1a168d2009-07-28 17:58:09 +0200383 DEBUGPC(DRSL, "CAUSE=0x%02x(%s) ",
384 cause_v[0], rsl_err_name(cause_v[0]));
385 for (i = 1; i < cause_len-1; i++)
386 DEBUGPC(DRSL, "%02x ", cause_v[i]);
Harald Welte59b04682009-06-10 05:40:52 +0800387}
388
389/* Send a BCCH_INFO message as per Chapter 8.5.1 */
390int rsl_bcch_info(struct gsm_bts_trx *trx, u_int8_t type,
391 const u_int8_t *data, int len)
392{
393 struct abis_rsl_dchan_hdr *dh;
394 struct msgb *msg = rsl_msgb_alloc();
395
396 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof*dh);
397 init_dchan_hdr(dh, RSL_MT_BCCH_INFO);
398 dh->chan_nr = RSL_CHAN_BCCH;
399
400 msgb_tv_put(msg, RSL_IE_SYSINFO_TYPE, type);
401 msgb_tlv_put(msg, RSL_IE_FULL_BCCH_INFO, len, data);
402
403 msg->trx = trx;
404
405 return abis_rsl_sendmsg(msg);
406}
407
408int rsl_sacch_filling(struct gsm_bts_trx *trx, u_int8_t type,
409 const u_int8_t *data, int len)
410{
411 struct abis_rsl_common_hdr *ch;
412 struct msgb *msg = rsl_msgb_alloc();
413
414 ch = (struct abis_rsl_common_hdr *) msgb_put(msg, sizeof(*ch));
415 ch->msg_discr = ABIS_RSL_MDISC_TRX;
416 ch->msg_type = RSL_MT_SACCH_FILL;
417
418 msgb_tv_put(msg, RSL_IE_SYSINFO_TYPE, type);
419 msgb_tl16v_put(msg, RSL_IE_L3_INFO, len, data);
420
421 msg->trx = trx;
422
423 return abis_rsl_sendmsg(msg);
424}
425
Harald Welte91afe4c2009-06-20 18:15:19 +0200426int rsl_chan_bs_power_ctrl(struct gsm_lchan *lchan, unsigned int fpc, int db)
427{
428 struct abis_rsl_dchan_hdr *dh;
Harald Welteed831842009-06-27 03:09:08 +0200429 struct msgb *msg;
Harald Welte91afe4c2009-06-20 18:15:19 +0200430 u_int8_t chan_nr = lchan2chan_nr(lchan);
431
432 db = abs(db);
433 if (db > 30)
434 return -EINVAL;
435
Harald Welteed831842009-06-27 03:09:08 +0200436 msg = rsl_msgb_alloc();
437
Harald Welte91afe4c2009-06-20 18:15:19 +0200438 lchan->bs_power = db/2;
439 if (fpc)
440 lchan->bs_power |= 0x10;
441
442 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
443 init_dchan_hdr(dh, RSL_MT_BS_POWER_CONTROL);
444 dh->chan_nr = chan_nr;
445
446 msgb_tv_put(msg, RSL_IE_BS_POWER, lchan->bs_power);
447
448 msg->trx = lchan->ts->trx;
449
450 return abis_rsl_sendmsg(msg);
451}
452
Harald Welte91afe4c2009-06-20 18:15:19 +0200453int rsl_chan_ms_power_ctrl(struct gsm_lchan *lchan, unsigned int fpc, int dbm)
454{
455 struct abis_rsl_dchan_hdr *dh;
Harald Welteed831842009-06-27 03:09:08 +0200456 struct msgb *msg;
Harald Welte91afe4c2009-06-20 18:15:19 +0200457 u_int8_t chan_nr = lchan2chan_nr(lchan);
458 int ctl_lvl;
459
Harald Weltec4dcda02009-08-09 14:45:18 +0200460 ctl_lvl = ms_pwr_ctl_lvl(lchan->ts->trx->bts->band, dbm);
Harald Welte91afe4c2009-06-20 18:15:19 +0200461 if (ctl_lvl < 0)
462 return ctl_lvl;
463
Harald Welteed831842009-06-27 03:09:08 +0200464 msg = rsl_msgb_alloc();
465
Harald Welte91afe4c2009-06-20 18:15:19 +0200466 lchan->ms_power = ctl_lvl;
467
468 if (fpc)
469 lchan->ms_power |= 0x20;
470
471 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
472 init_dchan_hdr(dh, RSL_MT_MS_POWER_CONTROL);
473 dh->chan_nr = chan_nr;
474
475 msgb_tv_put(msg, RSL_IE_MS_POWER, lchan->ms_power);
476
477 msg->trx = lchan->ts->trx;
478
479 return abis_rsl_sendmsg(msg);
480}
481
Harald Welte39274f42009-07-29 15:41:29 +0200482static int channel_mode_from_lchan(struct rsl_ie_chan_mode *cm,
483 struct gsm_lchan *lchan)
484{
485 memset(cm, 0, sizeof(cm));
486
487 /* FIXME: what to do with data calls ? */
488 cm->dtx_dtu = 0x00;
489
490 /* set TCH Speech/Data */
491 cm->spd_ind = lchan->rsl_cmode;
492
Harald Welte951e3512009-11-27 08:55:16 +0100493 if (lchan->rsl_cmode == RSL_CMOD_SPD_SIGN &&
494 lchan->tch_mode != GSM48_CMODE_SIGN)
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100495 LOGP(DRSL, LOGL_ERROR, "unsupported: rsl_mode == signalling, "
Harald Welte951e3512009-11-27 08:55:16 +0100496 "but tch_mode != signalling\n");
497
Harald Welte39274f42009-07-29 15:41:29 +0200498 switch (lchan->type) {
499 case GSM_LCHAN_SDCCH:
500 cm->chan_rt = RSL_CMOD_CRT_SDCCH;
501 break;
502 case GSM_LCHAN_TCH_F:
503 cm->chan_rt = RSL_CMOD_CRT_TCH_Bm;
504 break;
505 case GSM_LCHAN_TCH_H:
506 cm->chan_rt = RSL_CMOD_CRT_TCH_Lm;
507 break;
508 case GSM_LCHAN_NONE:
509 case GSM_LCHAN_UNKNOWN:
510 default:
511 return -EINVAL;
512 }
513
514 switch (lchan->tch_mode) {
515 case GSM48_CMODE_SIGN:
516 cm->chan_rate = 0;
517 break;
518 case GSM48_CMODE_SPEECH_V1:
519 cm->chan_rate = RSL_CMOD_SP_GSM1;
520 break;
521 case GSM48_CMODE_SPEECH_EFR:
522 cm->chan_rate = RSL_CMOD_SP_GSM2;
523 break;
524 case GSM48_CMODE_SPEECH_AMR:
525 cm->chan_rate = RSL_CMOD_SP_GSM3;
526 break;
527 case GSM48_CMODE_DATA_14k5:
528 cm->chan_rate = RSL_CMOD_SP_NT_14k5;
529 break;
530 case GSM48_CMODE_DATA_12k0:
531 cm->chan_rate = RSL_CMOD_SP_NT_12k0;
532 break;
533 case GSM48_CMODE_DATA_6k0:
534 cm->chan_rate = RSL_CMOD_SP_NT_6k0;
535 break;
536 default:
537 return -EINVAL;
538 }
539
540 return 0;
541}
542
Harald Welte59b04682009-06-10 05:40:52 +0800543/* Chapter 8.4.1 */
544#if 0
545int rsl_chan_activate(struct gsm_bts_trx *trx, u_int8_t chan_nr,
546 u_int8_t act_type,
547 struct rsl_ie_chan_mode *chan_mode,
548 struct rsl_ie_chan_ident *chan_ident,
549 u_int8_t bs_power, u_int8_t ms_power,
550 u_int8_t ta)
551{
552 struct abis_rsl_dchan_hdr *dh;
553 struct msgb *msg = rsl_msgb_alloc();
554
555 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
556 init_dchan_hdr(dh, RSL_MT_CHAN_ACTIV);
557 dh->chan_nr = chan_nr;
558
559 msgb_tv_put(msg, RSL_IE_ACT_TYPE, act_type);
560 /* For compatibility with Phase 1 */
561 msgb_tlv_put(msg, RSL_IE_CHAN_MODE, sizeof(*chan_mode),
562 (u_int8_t *) chan_mode);
563 msgb_tlv_put(msg, RSL_IE_CHAN_IDENT, 4,
564 (u_int8_t *) chan_ident);
565#if 0
566 msgb_tlv_put(msg, RSL_IE_ENCR_INFO, 1,
567 (u_int8_t *) &encr_info);
568#endif
569 msgb_tv_put(msg, RSL_IE_BS_POWER, bs_power);
570 msgb_tv_put(msg, RSL_IE_MS_POWER, ms_power);
571 msgb_tv_put(msg, RSL_IE_TIMING_ADVANCE, ta);
572
573 msg->trx = trx;
574
575 return abis_rsl_sendmsg(msg);
576}
577#endif
578
579int rsl_chan_activate_lchan(struct gsm_lchan *lchan, u_int8_t act_type,
Harald Welteb90d7bd2009-12-17 00:31:10 +0100580 u_int8_t ta, u_int8_t ho_ref)
Harald Welte59b04682009-06-10 05:40:52 +0800581{
582 struct abis_rsl_dchan_hdr *dh;
Harald Welteed831842009-06-27 03:09:08 +0200583 struct msgb *msg;
Harald Welte39274f42009-07-29 15:41:29 +0200584 int rc;
Harald Welte59b04682009-06-10 05:40:52 +0800585
586 u_int8_t chan_nr = lchan2chan_nr(lchan);
587 u_int16_t arfcn = lchan->ts->trx->arfcn;
588 struct rsl_ie_chan_mode cm;
589 struct rsl_ie_chan_ident ci;
590
Harald Welte39274f42009-07-29 15:41:29 +0200591 rc = channel_mode_from_lchan(&cm, lchan);
592 if (rc < 0)
593 return rc;
Harald Welte59b04682009-06-10 05:40:52 +0800594
595 memset(&ci, 0, sizeof(ci));
596 ci.chan_desc.iei = 0x64;
597 ci.chan_desc.chan_nr = chan_nr;
598 ci.chan_desc.oct3 = (lchan->ts->trx->bts->tsc << 5) | ((arfcn & 0x3ff) >> 8);
599 ci.chan_desc.oct4 = arfcn & 0xff;
600
Harald Welteed831842009-06-27 03:09:08 +0200601 msg = rsl_msgb_alloc();
Harald Welte59b04682009-06-10 05:40:52 +0800602 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
603 init_dchan_hdr(dh, RSL_MT_CHAN_ACTIV);
604 dh->chan_nr = chan_nr;
605
606 msgb_tv_put(msg, RSL_IE_ACT_TYPE, act_type);
Harald Welte59b04682009-06-10 05:40:52 +0800607 msgb_tlv_put(msg, RSL_IE_CHAN_MODE, sizeof(cm),
608 (u_int8_t *) &cm);
Harald Welteb90d7bd2009-12-17 00:31:10 +0100609 /* For compatibility with Phase 1 */
Harald Welte59b04682009-06-10 05:40:52 +0800610 msgb_tlv_put(msg, RSL_IE_CHAN_IDENT, 4,
611 (u_int8_t *) &ci);
Harald Welted2dd9de2009-08-30 15:37:11 +0900612
613 if (lchan->encr.alg_id > RSL_ENC_ALG_A5(0)) {
614 u_int8_t encr_info[MAX_A5_KEY_LEN+2];
615 rc = build_encr_info(encr_info, lchan);
616 if (rc > 0)
617 msgb_tlv_put(msg, RSL_IE_ENCR_INFO, rc, encr_info);
618 }
619
Harald Welteb90d7bd2009-12-17 00:31:10 +0100620 switch (act_type) {
621 case RSL_ACT_INTER_ASYNC:
622 case RSL_ACT_INTER_SYNC:
623 msgb_tv_put(msg, RSL_IE_HANDO_REF, ho_ref);
624 break;
625 default:
626 break;
627 }
628
Harald Welte59b04682009-06-10 05:40:52 +0800629 msgb_tv_put(msg, RSL_IE_BS_POWER, lchan->bs_power);
630 msgb_tv_put(msg, RSL_IE_MS_POWER, lchan->ms_power);
631 msgb_tv_put(msg, RSL_IE_TIMING_ADVANCE, ta);
632
633 msg->trx = lchan->ts->trx;
634
635 return abis_rsl_sendmsg(msg);
636}
637
Harald Welte8e770492009-07-29 11:38:15 +0200638/* Chapter 8.4.9: Modify channel mode on BTS side */
Harald Welte59b04682009-06-10 05:40:52 +0800639int rsl_chan_mode_modify_req(struct gsm_lchan *lchan)
640{
641 struct abis_rsl_dchan_hdr *dh;
Harald Welteed831842009-06-27 03:09:08 +0200642 struct msgb *msg;
Harald Welte39274f42009-07-29 15:41:29 +0200643 int rc;
Harald Welte59b04682009-06-10 05:40:52 +0800644
645 u_int8_t chan_nr = lchan2chan_nr(lchan);
646 struct rsl_ie_chan_mode cm;
647
Harald Welte39274f42009-07-29 15:41:29 +0200648 rc = channel_mode_from_lchan(&cm, lchan);
649 if (rc < 0)
650 return rc;
Harald Welte59b04682009-06-10 05:40:52 +0800651
Harald Welteed831842009-06-27 03:09:08 +0200652 msg = rsl_msgb_alloc();
Harald Welte59b04682009-06-10 05:40:52 +0800653 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
654 init_dchan_hdr(dh, RSL_MT_MODE_MODIFY_REQ);
655 dh->chan_nr = chan_nr;
656
657 msgb_tlv_put(msg, RSL_IE_CHAN_MODE, sizeof(cm),
658 (u_int8_t *) &cm);
Harald Welted2dd9de2009-08-30 15:37:11 +0900659
660 if (lchan->encr.alg_id > RSL_ENC_ALG_A5(0)) {
661 u_int8_t encr_info[MAX_A5_KEY_LEN+2];
662 rc = build_encr_info(encr_info, lchan);
663 if (rc > 0)
664 msgb_tlv_put(msg, RSL_IE_ENCR_INFO, rc, encr_info);
665 }
666
Holger Hans Peter Freyther3cce58f2009-11-18 22:57:02 +0100667 if (lchan->tch_mode == GSM48_CMODE_SPEECH_AMR) {
668 msgb_tlv_put(msg, RSL_IE_MR_CONFIG, sizeof(lchan->mr_conf),
669 (u_int8_t *) &lchan->mr_conf);
670 }
671
Harald Welted2dd9de2009-08-30 15:37:11 +0900672 msg->trx = lchan->ts->trx;
673
674 return abis_rsl_sendmsg(msg);
675}
676
677/* Chapter 8.4.6: Send the encryption command with given L3 info */
678int rsl_encryption_cmd(struct msgb *msg)
679{
680 struct abis_rsl_dchan_hdr *dh;
681 struct gsm_lchan *lchan = msg->lchan;
682 u_int8_t chan_nr = lchan2chan_nr(lchan);
683 u_int8_t encr_info[MAX_A5_KEY_LEN+2];
Sylvain Munaut01f1caf2009-09-27 11:13:18 +0200684 u_int8_t l3_len = msg->len;
Harald Welted2dd9de2009-08-30 15:37:11 +0900685 int rc;
686
687 /* First push the L3 IE tag and length */
688 msgb_tv16_push(msg, RSL_IE_L3_INFO, l3_len);
689
690 /* then the link identifier (SAPI0, main sign link) */
691 msgb_tv_push(msg, RSL_IE_LINK_IDENT, 0);
692
693 /* then encryption information */
694 rc = build_encr_info(encr_info, lchan);
695 if (rc <= 0)
696 return rc;
697 msgb_tlv_push(msg, RSL_IE_ENCR_INFO, rc, encr_info);
698
699 /* and finally the DCHAN header */
700 dh = (struct abis_rsl_dchan_hdr *) msgb_push(msg, sizeof(*dh));
701 init_dchan_hdr(dh, RSL_MT_ENCR_CMD);
702 dh->chan_nr = chan_nr;
Harald Welte59b04682009-06-10 05:40:52 +0800703
704 msg->trx = lchan->ts->trx;
705
706 return abis_rsl_sendmsg(msg);
707}
708
Harald Welte85a163c2009-08-10 11:43:22 +0200709/* Chapter 8.4.5 / 4.6: Deactivate the SACCH after 04.08 RR CHAN RELEASE */
Harald Welteafe3c232009-07-19 18:36:49 +0200710int rsl_deact_sacch(struct gsm_lchan *lchan)
711{
712 struct abis_rsl_dchan_hdr *dh;
713 struct msgb *msg = rsl_msgb_alloc();
714
715 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
716 init_dchan_hdr(dh, RSL_MT_DEACTIVATE_SACCH);
717 dh->chan_nr = lchan2chan_nr(lchan);
718
719 msg->lchan = lchan;
720 msg->trx = lchan->ts->trx;
721
722 DEBUGP(DRSL, "DEACTivate SACCH CMD channel=%s chan_nr=0x%02x\n",
723 gsm_ts_name(lchan->ts), dh->chan_nr);
724
725 return abis_rsl_sendmsg(msg);
726}
727
Harald Welte85a163c2009-08-10 11:43:22 +0200728/* Chapter 8.4.14 / 4.7: Tell BTS to release the radio channel */
729int rsl_rf_chan_release(struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +0800730{
731 struct abis_rsl_dchan_hdr *dh;
732 struct msgb *msg = rsl_msgb_alloc();
733
734 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
735 init_dchan_hdr(dh, RSL_MT_RF_CHAN_REL);
736 dh->chan_nr = lchan2chan_nr(lchan);
737
738 msg->lchan = lchan;
739 msg->trx = lchan->ts->trx;
740
Harald Welte85a163c2009-08-10 11:43:22 +0200741 DEBUGP(DRSL, "RF Channel Release CMD channel=%s chan_nr=0x%02x\n",
Harald Welte59b04682009-06-10 05:40:52 +0800742 gsm_ts_name(lchan->ts), dh->chan_nr);
743
Harald Welte85a163c2009-08-10 11:43:22 +0200744 /* BTS will respond by RF CHAN REL ACK */
Harald Welte59b04682009-06-10 05:40:52 +0800745 return abis_rsl_sendmsg(msg);
746}
747
748int rsl_paging_cmd(struct gsm_bts *bts, u_int8_t paging_group, u_int8_t len,
749 u_int8_t *ms_ident, u_int8_t chan_needed)
750{
751 struct abis_rsl_dchan_hdr *dh;
752 struct msgb *msg = rsl_msgb_alloc();
753
754 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
755 init_dchan_hdr(dh, RSL_MT_PAGING_CMD);
756 dh->chan_nr = RSL_CHAN_PCH_AGCH;
757
758 msgb_tv_put(msg, RSL_IE_PAGING_GROUP, paging_group);
759 msgb_tlv_put(msg, RSL_IE_MS_IDENTITY, len-2, ms_ident+2);
760 msgb_tv_put(msg, RSL_IE_CHAN_NEEDED, chan_needed);
761
762 msg->trx = bts->c0;
763
764 return abis_rsl_sendmsg(msg);
765}
766
767int rsl_paging_cmd_subscr(struct gsm_bts *bts, u_int8_t chan_need,
768 struct gsm_subscriber *subscr)
769{
770#if 0
771 u_int8_t mi[128];
772 unsigned int mi_len;
773 u_int8_t paging_group;
774#endif
775
776 return -1;
777}
778
779int imsi_str2bcd(u_int8_t *bcd_out, const char *str_in)
780{
781 int i, len = strlen(str_in);
782
783 for (i = 0; i < len; i++) {
784 int num = str_in[i] - 0x30;
785 if (num < 0 || num > 9)
786 return -1;
787 if (i % 2 == 0)
788 bcd_out[i/2] = num;
789 else
790 bcd_out[i/2] |= (num << 4);
791 }
792
793 return 0;
794}
795
796/* Chapter 8.5.6 */
797int rsl_imm_assign_cmd(struct gsm_bts *bts, u_int8_t len, u_int8_t *val)
798{
799 struct msgb *msg = rsl_msgb_alloc();
800 struct abis_rsl_dchan_hdr *dh;
801 u_int8_t buf[MACBLOCK_SIZE];
802
803 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
804 init_dchan_hdr(dh, RSL_MT_IMMEDIATE_ASSIGN_CMD);
805 dh->chan_nr = RSL_CHAN_PCH_AGCH;
806
807 switch (bts->type) {
808 case GSM_BTS_TYPE_BS11:
809 msgb_tlv_put(msg, RSL_IE_IMM_ASS_INFO, len, val);
810 break;
811 default:
812 /* If phase 2, construct a FULL_IMM_ASS_INFO */
813 pad_macblock(buf, val, len);
814 msgb_tlv_put(msg, RSL_IE_FULL_IMM_ASS_INFO, MACBLOCK_SIZE, buf);
815 break;
816 }
817
818 msg->trx = bts->c0;
819
820 return abis_rsl_sendmsg(msg);
821}
822
Harald Welte4684e632009-08-10 09:51:40 +0200823/* Send Siemens specific MS RF Power Capability Indication */
Harald Welte12090752009-08-10 10:07:33 +0200824int rsl_siemens_mrpci(struct gsm_lchan *lchan, struct rsl_mrpci *mrpci)
Harald Welte4684e632009-08-10 09:51:40 +0200825{
826 struct msgb *msg = rsl_msgb_alloc();
827 struct abis_rsl_dchan_hdr *dh;
828
829 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
830 init_dchan_hdr(dh, RSL_MT_SIEMENS_MRPCI);
Harald Welte874a5b42009-08-10 11:26:14 +0200831 dh->c.msg_discr = ABIS_RSL_MDISC_DED_CHAN;
Harald Welte4684e632009-08-10 09:51:40 +0200832 dh->chan_nr = lchan2chan_nr(lchan);
Harald Welte12090752009-08-10 10:07:33 +0200833 msgb_tv_put(msg, RSL_IE_SIEMENS_MRPCI, *(u_int8_t *)mrpci);
Harald Welte4684e632009-08-10 09:51:40 +0200834
Harald Welte874a5b42009-08-10 11:26:14 +0200835 DEBUGP(DRSL, "channel=%s chan_nr=0x%02x TX Siemens MRPCI 0x%02x\n",
836 gsm_ts_name(lchan->ts), dh->chan_nr, *(u_int8_t *)mrpci);
837
838 msg->trx = lchan->ts->trx;
839
Harald Welte4684e632009-08-10 09:51:40 +0200840 return abis_rsl_sendmsg(msg);
841}
842
843
Harald Welte59b04682009-06-10 05:40:52 +0800844/* Send "DATA REQUEST" message with given L3 Info payload */
845/* Chapter 8.3.1 */
846int rsl_data_request(struct msgb *msg, u_int8_t link_id)
847{
848 u_int8_t l3_len = msg->tail - (u_int8_t *)msgb_l3(msg);
849 struct abis_rsl_rll_hdr *rh;
850
851 if (msg->lchan == NULL) {
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100852 LOGP(DRSL, LOGL_ERROR, "cannot send DATA REQUEST to unknown lchan\n");
Harald Welte59b04682009-06-10 05:40:52 +0800853 return -EINVAL;
854 }
855
856 /* First push the L3 IE tag and length */
857 msgb_tv16_push(msg, RSL_IE_L3_INFO, l3_len);
858
859 /* Then push the RSL header */
860 rh = (struct abis_rsl_rll_hdr *) msgb_push(msg, sizeof(*rh));
861 init_llm_hdr(rh, RSL_MT_DATA_REQ);
862 rh->c.msg_discr |= ABIS_RSL_MDISC_TRANSP;
863 rh->chan_nr = lchan2chan_nr(msg->lchan);
864 rh->link_id = link_id;
865
866 msg->trx = msg->lchan->ts->trx;
867
868 return abis_rsl_sendmsg(msg);
869}
870
Harald Welteed9a5ab2009-08-09 13:47:35 +0200871/* Send "ESTABLISH REQUEST" message with given L3 Info payload */
872/* Chapter 8.3.1 */
873int rsl_establish_request(struct gsm_lchan *lchan, u_int8_t link_id)
874{
875 struct msgb *msg = rsl_msgb_alloc();
876 struct abis_rsl_rll_hdr *rh;
877
878 rh = (struct abis_rsl_rll_hdr *) msgb_put(msg, sizeof(*rh));
Harald Welte61402172009-08-09 14:13:58 +0200879 init_llm_hdr(rh, RSL_MT_EST_REQ);
Harald Welteed9a5ab2009-08-09 13:47:35 +0200880 //rh->c.msg_discr |= ABIS_RSL_MDISC_TRANSP;
881 rh->chan_nr = lchan2chan_nr(lchan);
882 rh->link_id = link_id;
883
884 msg->trx = lchan->ts->trx;
885
886 return abis_rsl_sendmsg(msg);
887}
888
Harald Welte0f2e3c12009-08-08 13:15:07 +0200889/* Chapter 8.3.7 Request the release of multiframe mode of RLL connection.
890 This is what higher layers should call. The BTS then responds with
891 RELEASE CONFIRM, which we in turn use to trigger RSL CHANNEL RELEASE,
892 which in turn is acknowledged by RSL CHANNEL RELEASE ACK, which calls
893 lchan_free() */
894int rsl_release_request(struct gsm_lchan *lchan, u_int8_t link_id)
895{
896 struct msgb *msg = rsl_msgb_alloc();
897 struct abis_rsl_rll_hdr *rh;
898
899 rh = (struct abis_rsl_rll_hdr *) msgb_put(msg, sizeof(*rh));
900 init_llm_hdr(rh, RSL_MT_REL_REQ);
901 //rh->c.msg_discr |= ABIS_RSL_MDISC_TRANSP;
902 rh->chan_nr = lchan2chan_nr(lchan);
903 rh->link_id = link_id;
Harald Weltead738562009-08-10 00:19:36 +0200904 msgb_tv_put(msg, RSL_IE_RELEASE_MODE, 0); /* normal release */
Harald Welte0f2e3c12009-08-08 13:15:07 +0200905
906 msg->trx = lchan->ts->trx;
907
908 return abis_rsl_sendmsg(msg);
909}
910
Harald Welte59b04682009-06-10 05:40:52 +0800911/* Chapter 8.4.2: Channel Activate Acknowledge */
912static int rsl_rx_chan_act_ack(struct msgb *msg)
913{
914 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
915
916 /* BTS has confirmed channel activation, we now need
917 * to assign the activated channel to the MS */
918 if (rslh->ie_chan != RSL_IE_CHAN_NR)
919 return -EINVAL;
Harald Welte6720a432009-11-29 22:45:52 +0100920
921 dispatch_signal(SS_LCHAN, S_LCHAN_ACTIVATE_ACK, msg->lchan);
922
Harald Welte59b04682009-06-10 05:40:52 +0800923 return 0;
924}
925
926/* Chapter 8.4.3: Channel Activate NACK */
927static int rsl_rx_chan_act_nack(struct msgb *msg)
928{
929 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
930 struct tlv_parsed tp;
931
932 /* BTS has rejected channel activation ?!? */
933 if (dh->ie_chan != RSL_IE_CHAN_NR)
934 return -EINVAL;
935
936 rsl_tlv_parse(&tp, dh->data, msgb_l2len(msg)-sizeof(*dh));
937 if (TLVP_PRESENT(&tp, RSL_IE_CAUSE))
Harald Weltef1a168d2009-07-28 17:58:09 +0200938 print_rsl_cause(TLVP_VAL(&tp, RSL_IE_CAUSE),
939 TLVP_LEN(&tp, RSL_IE_CAUSE));
940
Harald Welte6720a432009-11-29 22:45:52 +0100941 dispatch_signal(SS_LCHAN, S_LCHAN_ACTIVATE_NACK, msg->lchan);
942
Harald Weltecddb9802009-08-09 19:50:08 +0200943 lchan_free(msg->lchan);
Harald Welte59b04682009-06-10 05:40:52 +0800944 return 0;
945}
946
947/* Chapter 8.4.4: Connection Failure Indication */
948static int rsl_rx_conn_fail(struct msgb *msg)
949{
950 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
951 struct tlv_parsed tp;
952
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100953 /* FIXME: print which channel */
954 LOGP(DRSL, LOGL_NOTICE, "CONNECTION FAIL: RELEASING\n");
Harald Welte59b04682009-06-10 05:40:52 +0800955
956 rsl_tlv_parse(&tp, dh->data, msgb_l2len(msg)-sizeof(*dh));
957
Harald Weltef1a168d2009-07-28 17:58:09 +0200958 if (TLVP_PRESENT(&tp, RSL_IE_CAUSE))
959 print_rsl_cause(TLVP_VAL(&tp, RSL_IE_CAUSE),
960 TLVP_LEN(&tp, RSL_IE_CAUSE));
961
Harald Welte59b04682009-06-10 05:40:52 +0800962 /* FIXME: only free it after channel release ACK */
Harald Welte85a163c2009-08-10 11:43:22 +0200963 return rsl_rf_chan_release(msg->lchan);
Harald Welte59b04682009-06-10 05:40:52 +0800964}
965
Harald Weltec20bd1d2009-11-29 19:07:28 +0100966static void print_meas_rep_uni(struct gsm_meas_rep_unidir *mru,
967 const char *prefix)
968{
Harald Welte0e4fa782009-12-16 16:52:07 +0100969 DEBUGPC(DMEAS, "RXL-FULL-%s=%3ddBm RXL-SUB-%s=%3ddBm ",
970 prefix, rxlev2dbm(mru->full.rx_lev),
971 prefix, rxlev2dbm(mru->sub.rx_lev));
Harald Weltec20bd1d2009-11-29 19:07:28 +0100972 DEBUGPC(DMEAS, "RXQ-FULL-%s=%d RXQ-SUB-%s=%d ",
973 prefix, mru->full.rx_qual, prefix, mru->sub.rx_qual);
974}
975
976static void print_meas_rep(struct gsm_meas_rep *mr)
977{
Harald Welte0e4fa782009-12-16 16:52:07 +0100978 int i;
979
Harald Weltec20bd1d2009-11-29 19:07:28 +0100980 DEBUGP(DMEAS, "MEASUREMENT RESULT NR=%d ", mr->nr);
981
982 if (mr->flags & MEAS_REP_F_DL_DTX)
983 DEBUGPC(DMEAS, "DTXd ");
984
985 print_meas_rep_uni(&mr->ul, "ul");
986 DEBUGPC(DMEAS, "BS_POWER=%d ", mr->bs_power);
987 if (mr->flags & MEAS_REP_F_MS_TO)
988 DEBUGPC(DMEAS, "MS_TO=%d ", mr->ms_timing_offset);
989
990 if (mr->flags & MEAS_REP_F_MS_L1) {
Harald Welte0e4fa782009-12-16 16:52:07 +0100991 DEBUGPC(DMEAS, "L1_MS_PWR=%3ddBm ", mr->ms_l1.pwr);
Harald Weltec20bd1d2009-11-29 19:07:28 +0100992 DEBUGPC(DMEAS, "L1_FPC=%u ",
993 mr->flags & MEAS_REP_F_FPC ? 1 : 0);
994 DEBUGPC(DMEAS, "L1_TA=%u ", mr->ms_l1.ta);
995 }
996
997 if (mr->flags & MEAS_REP_F_UL_DTX)
998 DEBUGPC(DMEAS, "DTXu ");
999 if (mr->flags & MEAS_REP_F_BA1)
1000 DEBUGPC(DMEAS, "BA1 ");
1001 if (!(mr->flags & MEAS_REP_F_DL_VALID))
1002 DEBUGPC(DMEAS, "NOT VALID ");
1003 else
1004 print_meas_rep_uni(&mr->dl, "dl");
1005
1006 DEBUGPC(DMEAS, "NUM_NEIGH=%u\n", mr->num_cell);
Harald Welte0b833f82009-12-19 18:33:05 +01001007 if (mr->num_cell == 7)
1008 return;
Harald Welte0e4fa782009-12-16 16:52:07 +01001009 for (i = 0; i < mr->num_cell; i++) {
1010 struct gsm_meas_rep_cell *mrc = &mr->cell[i];
1011 DEBUGP(DMEAS, "ARFCN=%u BSIC=%u => %d dBm\n", mrc->arfcn, mrc->bsic,
1012 rxlev2dbm(mrc->rxlev));
1013 }
Harald Weltec20bd1d2009-11-29 19:07:28 +01001014}
1015
Harald Welte59b04682009-06-10 05:40:52 +08001016static int rsl_rx_meas_res(struct msgb *msg)
1017{
1018 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
1019 struct tlv_parsed tp;
Harald Weltef9476812009-12-15 21:36:05 +01001020 struct gsm_meas_rep *mr = lchan_next_meas_rep(msg->lchan);
Harald Weltec20bd1d2009-11-29 19:07:28 +01001021 u_int8_t len;
1022 const u_int8_t *val;
1023 int rc;
Harald Welte59b04682009-06-10 05:40:52 +08001024
Harald Weltef9476812009-12-15 21:36:05 +01001025 memset(mr, 0, sizeof(*mr));
Harald Welteaa0efa12009-12-16 23:29:34 +01001026 mr->lchan = msg->lchan;
Harald Welte4efcc542009-11-30 19:16:47 +01001027
Harald Welte59b04682009-06-10 05:40:52 +08001028 rsl_tlv_parse(&tp, dh->data, msgb_l2len(msg)-sizeof(*dh));
1029
Harald Weltec20bd1d2009-11-29 19:07:28 +01001030 if (!TLVP_PRESENT(&tp, RSL_IE_MEAS_RES_NR) ||
1031 !TLVP_PRESENT(&tp, RSL_IE_UPLINK_MEAS) ||
1032 !TLVP_PRESENT(&tp, RSL_IE_BS_POWER))
1033 return -EIO;
1034
1035 /* Mandatory Parts */
Harald Weltef9476812009-12-15 21:36:05 +01001036 mr->nr = *TLVP_VAL(&tp, RSL_IE_MEAS_RES_NR);
Harald Weltec20bd1d2009-11-29 19:07:28 +01001037
1038 len = TLVP_LEN(&tp, RSL_IE_UPLINK_MEAS);
1039 val = TLVP_VAL(&tp, RSL_IE_UPLINK_MEAS);
1040 if (len >= 3) {
1041 if (val[0] & 0x40)
Harald Weltef9476812009-12-15 21:36:05 +01001042 mr->flags |= MEAS_REP_F_DL_DTX;
1043 mr->ul.full.rx_lev = val[0] & 0x3f;
1044 mr->ul.sub.rx_lev = val[1] & 0x3f;
1045 mr->ul.full.rx_qual = val[2]>>3 & 0x7;
1046 mr->ul.sub.rx_qual = val[2] & 0x7;
Harald Welte59b04682009-06-10 05:40:52 +08001047 }
Harald Weltec20bd1d2009-11-29 19:07:28 +01001048
Harald Weltef9476812009-12-15 21:36:05 +01001049 mr->bs_power = *TLVP_VAL(&tp, RSL_IE_BS_POWER);
Harald Weltec20bd1d2009-11-29 19:07:28 +01001050
1051 /* Optional Parts */
Harald Welte59b04682009-06-10 05:40:52 +08001052 if (TLVP_PRESENT(&tp, RSL_IE_MS_TIMING_OFFSET))
Harald Weltef9476812009-12-15 21:36:05 +01001053 mr->ms_timing_offset =
Harald Weltec20bd1d2009-11-29 19:07:28 +01001054 *TLVP_VAL(&tp, RSL_IE_MS_TIMING_OFFSET);
1055
Harald Weltea1467eb2009-06-20 18:44:35 +02001056 if (TLVP_PRESENT(&tp, RSL_IE_L1_INFO)) {
Harald Weltec20bd1d2009-11-29 19:07:28 +01001057 val = TLVP_VAL(&tp, RSL_IE_L1_INFO);
Harald Weltef9476812009-12-15 21:36:05 +01001058 mr->flags |= MEAS_REP_F_MS_L1;
1059 mr->ms_l1.pwr = ms_pwr_dbm(msg->trx->bts->band, val[0] >> 3);
Harald Weltec20bd1d2009-11-29 19:07:28 +01001060 if (val[0] & 0x04)
Harald Weltef9476812009-12-15 21:36:05 +01001061 mr->flags |= MEAS_REP_F_FPC;
1062 mr->ms_l1.ta = val[1];
Harald Weltea1467eb2009-06-20 18:44:35 +02001063 }
Harald Welte59b04682009-06-10 05:40:52 +08001064 if (TLVP_PRESENT(&tp, RSL_IE_L3_INFO)) {
Holger Hans Peter Freyther6d0c8b42009-10-22 15:43:55 +02001065 msg->l3h = (u_int8_t *) TLVP_VAL(&tp, RSL_IE_L3_INFO);
Harald Weltef9476812009-12-15 21:36:05 +01001066 rc = gsm48_parse_meas_rep(mr, msg);
Harald Weltec20bd1d2009-11-29 19:07:28 +01001067 if (rc < 0)
1068 return rc;
1069 }
1070
Harald Weltef9476812009-12-15 21:36:05 +01001071 print_meas_rep(mr);
Harald Welte59b04682009-06-10 05:40:52 +08001072
Harald Weltef9476812009-12-15 21:36:05 +01001073 dispatch_signal(SS_LCHAN, S_LCHAN_MEAS_REP, mr);
Harald Welte4efcc542009-11-30 19:16:47 +01001074
Harald Welte59b04682009-06-10 05:40:52 +08001075 return 0;
1076}
1077
Harald Welte6720a432009-11-29 22:45:52 +01001078/* Chapter 8.4.7 */
1079static int rsl_rx_hando_det(struct msgb *msg)
1080{
1081 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
1082 struct tlv_parsed tp;
1083
1084 DEBUGP(DRSL, "HANDOVER DETECT ");
1085
1086 rsl_tlv_parse(&tp, dh->data, msgb_l2len(msg)-sizeof(*dh));
1087
1088 if (TLVP_PRESENT(&tp, RSL_IE_ACCESS_DELAY))
1089 DEBUGPC(DRSL, "access delay = %u\n",
1090 *TLVP_VAL(&tp, RSL_IE_ACCESS_DELAY));
1091 else
1092 DEBUGPC(DRSL, "\n");
1093
1094 dispatch_signal(SS_LCHAN, S_LCHAN_HANDOVER_DETECT, msg->lchan);
1095
1096 return 0;
1097}
1098
Harald Welte59b04682009-06-10 05:40:52 +08001099static int abis_rsl_rx_dchan(struct msgb *msg)
1100{
1101 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
1102 int rc = 0;
1103 char *ts_name;
1104
1105 msg->lchan = lchan_lookup(msg->trx, rslh->chan_nr);
1106 ts_name = gsm_ts_name(msg->lchan->ts);
1107
Harald Welte02993682009-06-27 02:53:10 +02001108 if (rslh->c.msg_type != RSL_MT_MEAS_RES)
1109 DEBUGP(DRSL, "channel=%s chan_nr=0x%02x ", ts_name, rslh->chan_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001110
1111 switch (rslh->c.msg_type) {
1112 case RSL_MT_CHAN_ACTIV_ACK:
1113 DEBUGPC(DRSL, "CHANNEL ACTIVATE ACK\n");
1114 rc = rsl_rx_chan_act_ack(msg);
1115 break;
1116 case RSL_MT_CHAN_ACTIV_NACK:
1117 DEBUGPC(DRSL, "CHANNEL ACTIVATE NACK\n");
1118 rc = rsl_rx_chan_act_nack(msg);
1119 break;
1120 case RSL_MT_CONN_FAIL:
1121 rc = rsl_rx_conn_fail(msg);
1122 break;
1123 case RSL_MT_MEAS_RES:
1124 rc = rsl_rx_meas_res(msg);
1125 break;
Harald Welte6720a432009-11-29 22:45:52 +01001126 case RSL_MT_HANDO_DET:
1127 rc = rsl_rx_hando_det(msg);
1128 break;
Harald Welte59b04682009-06-10 05:40:52 +08001129 case RSL_MT_RF_CHAN_REL_ACK:
1130 DEBUGPC(DRSL, "RF CHANNEL RELEASE ACK\n");
1131 lchan_free(msg->lchan);
1132 break;
1133 case RSL_MT_MODE_MODIFY_ACK:
1134 DEBUGPC(DRSL, "CHANNEL MODE MODIFY ACK\n");
1135 break;
1136 case RSL_MT_MODE_MODIFY_NACK:
1137 DEBUGPC(DRSL, "CHANNEL MODE MODIFY NACK\n");
1138 break;
Harald Welteaed946e2009-10-24 10:29:22 +02001139 case RSL_MT_IPAC_PDCH_ACT_ACK:
1140 DEBUGPC(DRSL, "IPAC PDCH ACT ACK\n");
1141 break;
1142 case RSL_MT_IPAC_PDCH_ACT_NACK:
1143 DEBUGPC(DRSL, "IPAC PDCH ACT NACK\n");
1144 break;
1145 case RSL_MT_IPAC_PDCH_DEACT_ACK:
1146 DEBUGPC(DRSL, "IPAC PDCH DEACT ACK\n");
1147 break;
1148 case RSL_MT_IPAC_PDCH_DEACT_NACK:
1149 DEBUGPC(DRSL, "IPAC PDCH DEACT NACK\n");
1150 break;
Harald Welte59b04682009-06-10 05:40:52 +08001151 case RSL_MT_PHY_CONTEXT_CONF:
1152 case RSL_MT_PREPROC_MEAS_RES:
1153 case RSL_MT_TALKER_DET:
1154 case RSL_MT_LISTENER_DET:
1155 case RSL_MT_REMOTE_CODEC_CONF_REP:
1156 case RSL_MT_MR_CODEC_MOD_ACK:
1157 case RSL_MT_MR_CODEC_MOD_NACK:
1158 case RSL_MT_MR_CODEC_MOD_PER:
1159 DEBUGPC(DRSL, "Unimplemented Abis RSL DChan msg 0x%02x\n",
1160 rslh->c.msg_type);
1161 break;
1162 default:
1163 DEBUGPC(DRSL, "unknown Abis RSL DChan msg 0x%02x\n",
1164 rslh->c.msg_type);
1165 return -EINVAL;
1166 }
1167
1168 return rc;
1169}
1170
1171static int rsl_rx_error_rep(struct msgb *msg)
1172{
1173 struct abis_rsl_common_hdr *rslh = msgb_l2(msg);
Harald Weltef1a168d2009-07-28 17:58:09 +02001174 struct tlv_parsed tp;
Harald Welte59b04682009-06-10 05:40:52 +08001175
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001176 LOGP(DRSL, LOGL_ERROR, "ERROR REPORT ");
Harald Weltef1a168d2009-07-28 17:58:09 +02001177
1178 rsl_tlv_parse(&tp, rslh->data, msgb_l2len(msg)-sizeof(*rslh));
1179
1180 if (TLVP_PRESENT(&tp, RSL_IE_CAUSE))
1181 print_rsl_cause(TLVP_VAL(&tp, RSL_IE_CAUSE),
1182 TLVP_LEN(&tp, RSL_IE_CAUSE));
1183
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001184 LOGPC(DRSL, LOGL_ERROR, "\n");
Harald Welte59b04682009-06-10 05:40:52 +08001185
1186 return 0;
1187}
1188
1189static int abis_rsl_rx_trx(struct msgb *msg)
1190{
1191 struct abis_rsl_common_hdr *rslh = msgb_l2(msg);
1192 int rc = 0;
1193
1194 switch (rslh->msg_type) {
1195 case RSL_MT_ERROR_REPORT:
1196 rc = rsl_rx_error_rep(msg);
1197 break;
1198 case RSL_MT_RF_RES_IND:
1199 /* interference on idle channels of TRX */
1200 //DEBUGP(DRSL, "TRX: RF Interference Indication\n");
1201 break;
1202 case RSL_MT_OVERLOAD:
1203 /* indicate CCCH / ACCH / processor overload */
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001204 LOGP(DRSL, LOGL_ERROR, "TRX: CCCH/ACCH/CPU Overload\n");
Harald Welte59b04682009-06-10 05:40:52 +08001205 break;
1206 default:
1207 DEBUGP(DRSL, "Unknown Abis RSL TRX message type 0x%02x\n",
1208 rslh->msg_type);
1209 return -EINVAL;
1210 }
1211 return rc;
1212}
1213
Harald Welte427dbc42009-08-10 00:26:10 +02001214/* If T3101 expires, we never received a response to IMMEDIATE ASSIGN */
1215static void t3101_expired(void *data)
1216{
1217 struct gsm_lchan *lchan = data;
1218
Harald Welte85a163c2009-08-10 11:43:22 +02001219 rsl_rf_chan_release(lchan);
Harald Welte427dbc42009-08-10 00:26:10 +02001220}
1221
Harald Welte59b04682009-06-10 05:40:52 +08001222/* MS has requested a channel on the RACH */
1223static int rsl_rx_chan_rqd(struct msgb *msg)
1224{
1225 struct gsm_bts *bts = msg->trx->bts;
1226 struct abis_rsl_dchan_hdr *rqd_hdr = msgb_l2(msg);
1227 struct gsm48_req_ref *rqd_ref;
1228 struct gsm48_imm_ass ia;
1229 enum gsm_chan_t lctype;
1230 enum gsm_chreq_reason_t chreq_reason;
1231 struct gsm_lchan *lchan;
1232 u_int8_t rqd_ta;
1233 int ret;
1234
1235 u_int16_t arfcn;
1236 u_int8_t ts_number, subch;
1237
1238 /* parse request reference to be used in immediate assign */
1239 if (rqd_hdr->data[0] != RSL_IE_REQ_REFERENCE)
1240 return -EINVAL;
1241
1242 rqd_ref = (struct gsm48_req_ref *) &rqd_hdr->data[1];
1243
1244 /* parse access delay and use as TA */
1245 if (rqd_hdr->data[sizeof(struct gsm48_req_ref)+1] != RSL_IE_ACCESS_DELAY)
1246 return -EINVAL;
1247 rqd_ta = rqd_hdr->data[sizeof(struct gsm48_req_ref)+2];
1248
1249 /* determine channel type (SDCCH/TCH_F/TCH_H) based on
1250 * request reference RA */
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001251 lctype = get_ctype_by_chreq(bts, rqd_ref->ra, bts->network->neci);
1252 chreq_reason = get_reason_by_chreq(bts, rqd_ref->ra, bts->network->neci);
Harald Welte59b04682009-06-10 05:40:52 +08001253
1254 /* check availability / allocate channel */
1255 lchan = lchan_alloc(bts, lctype);
1256 if (!lchan) {
Harald Welte059b6a82009-12-12 20:53:23 +01001257 DEBUGP(DRSL, "CHAN RQD: no resources for %s 0x%x\n",
1258 gsm_lchan_name(lctype), rqd_ref->ra);
Harald Welte59b04682009-06-10 05:40:52 +08001259 /* FIXME: send some kind of reject ?!? */
1260 return -ENOMEM;
1261 }
1262
1263 ts_number = lchan->ts->nr;
1264 arfcn = lchan->ts->trx->arfcn;
1265 subch = lchan->nr;
1266
Harald Welted2dd9de2009-08-30 15:37:11 +09001267 lchan->encr.alg_id = RSL_ENC_ALG_A5(0); /* no encryption */
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001268 lchan->ms_power = ms_pwr_ctl_lvl(bts->band, bts->ms_max_power);
Harald Welte9a229e12009-08-10 00:45:40 +02001269 lchan->bs_power = 0; /* 0dB reduction, output power = Pn */
Harald Welte39274f42009-07-29 15:41:29 +02001270 lchan->rsl_cmode = RSL_CMOD_SPD_SIGN;
Harald Welte77234e12009-08-28 23:28:28 +09001271 lchan->tch_mode = GSM48_CMODE_SIGN;
Harald Welteb90d7bd2009-12-17 00:31:10 +01001272 rsl_chan_activate_lchan(lchan, 0x00, rqd_ta, 0);
Harald Welte59b04682009-06-10 05:40:52 +08001273
1274 /* create IMMEDIATE ASSIGN 04.08 messge */
1275 memset(&ia, 0, sizeof(ia));
1276 ia.l2_plen = 0x2d;
1277 ia.proto_discr = GSM48_PDISC_RR;
1278 ia.msg_type = GSM48_MT_RR_IMM_ASS;
1279 ia.page_mode = GSM48_PM_SAME;
1280 ia.chan_desc.chan_nr = lchan2chan_nr(lchan);
1281 ia.chan_desc.h0.h = 0;
1282 ia.chan_desc.h0.arfcn_high = arfcn >> 8;
1283 ia.chan_desc.h0.arfcn_low = arfcn & 0xff;
Harald Welte63d23c82009-07-21 20:55:56 +02001284 ia.chan_desc.h0.tsc = bts->tsc;
Harald Welte59b04682009-06-10 05:40:52 +08001285 /* use request reference extracted from CHAN_RQD */
1286 memcpy(&ia.req_ref, rqd_ref, sizeof(ia.req_ref));
1287 ia.timing_advance = rqd_ta;
1288 ia.mob_alloc_len = 0;
1289
1290 DEBUGP(DRSL, "Activating ARFCN(%u) TS(%u) SS(%u) lctype %s "
1291 "chan_nr=0x%02x r=%s ra=0x%02x\n",
1292 arfcn, ts_number, subch, gsm_lchan_name(lchan->type),
1293 ia.chan_desc.chan_nr, gsm_chreq_name(chreq_reason),
1294 rqd_ref->ra);
1295
Harald Welte427dbc42009-08-10 00:26:10 +02001296 /* Start timer T3101 to wait for GSM48_MT_RR_PAG_RESP */
1297 lchan->T3101.cb = t3101_expired;
1298 lchan->T3101.data = lchan;
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001299 bsc_schedule_timer(&lchan->T3101, bts->network->T3101, 0);
Harald Welte59b04682009-06-10 05:40:52 +08001300
1301 /* send IMMEDIATE ASSIGN CMD on RSL to BTS (to send on CCCH to MS) */
1302 ret = rsl_imm_assign_cmd(bts, sizeof(ia), (u_int8_t *) &ia);
1303
1304 return ret;
1305}
1306
1307/* MS has requested a channel on the RACH */
1308static int rsl_rx_ccch_load(struct msgb *msg)
1309{
1310 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
1311 u_int16_t pg_buf_space;
1312 u_int16_t rach_slot_count = -1;
1313 u_int16_t rach_busy_count = -1;
1314 u_int16_t rach_access_count = -1;
1315
1316 switch (rslh->data[0]) {
1317 case RSL_IE_PAGING_LOAD:
1318 pg_buf_space = rslh->data[1] << 8 | rslh->data[2];
1319 paging_update_buffer_space(msg->trx->bts, pg_buf_space);
1320 break;
1321 case RSL_IE_RACH_LOAD:
1322 if (msg->data_len >= 7) {
1323 rach_slot_count = rslh->data[2] << 8 | rslh->data[3];
1324 rach_busy_count = rslh->data[4] << 8 | rslh->data[5];
1325 rach_access_count = rslh->data[6] << 8 | rslh->data[7];
1326 }
1327 break;
1328 default:
1329 break;
1330 }
1331
1332 return 0;
1333}
1334
1335static int abis_rsl_rx_cchan(struct msgb *msg)
1336{
1337 struct abis_rsl_dchan_hdr *rslh = msgb_l2(msg);
1338 int rc = 0;
1339
1340 msg->lchan = lchan_lookup(msg->trx, rslh->chan_nr);
1341
1342 switch (rslh->c.msg_type) {
1343 case RSL_MT_CHAN_RQD:
1344 /* MS has requested a channel on the RACH */
1345 rc = rsl_rx_chan_rqd(msg);
1346 break;
1347 case RSL_MT_CCCH_LOAD_IND:
1348 /* current load on the CCCH */
1349 rc = rsl_rx_ccch_load(msg);
1350 break;
1351 case RSL_MT_DELETE_IND:
1352 /* CCCH overloaded, IMM_ASSIGN was dropped */
1353 case RSL_MT_CBCH_LOAD_IND:
1354 /* current load on the CBCH */
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001355 LOGP(DRSL, LOGL_NOTICE, "Unimplemented Abis RSL TRX message "
1356 "type 0x%02x\n", rslh->c.msg_type);
Harald Welte59b04682009-06-10 05:40:52 +08001357 break;
1358 default:
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001359 LOGP(DRSL, LOGL_NOTICE, "Unknown Abis RSL TRX message type "
1360 "0x%02x\n", rslh->c.msg_type);
Harald Welte59b04682009-06-10 05:40:52 +08001361 return -EINVAL;
1362 }
1363
1364 return rc;
1365}
1366
1367static int rsl_rx_rll_err_ind(struct msgb *msg)
1368{
1369 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
1370 u_int8_t *rlm_cause = rllh->data;
1371
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001372 LOGP(DRLL, LOGL_ERROR, "ERROR INDICATION cause=0x%02x\n", rlm_cause[1]);
Harald Welteed9a5ab2009-08-09 13:47:35 +02001373
1374 rll_indication(msg->lchan, rllh->link_id, BSC_RLLR_IND_ERR_IND);
Harald Welte59b04682009-06-10 05:40:52 +08001375
Harald Welte692f5852009-07-04 09:40:05 +02001376 if (rlm_cause[1] == RLL_CAUSE_T200_EXPIRED)
Harald Welte85a163c2009-08-10 11:43:22 +02001377 return rsl_rf_chan_release(msg->lchan);
Harald Welte692f5852009-07-04 09:40:05 +02001378
Harald Welte59b04682009-06-10 05:40:52 +08001379 return 0;
1380}
1381
1382/* ESTABLISH INDICATION, LOCATION AREA UPDATE REQUEST
1383 0x02, 0x06,
1384 0x01, 0x20,
1385 0x02, 0x00,
1386 0x0b, 0x00, 0x0f, 0x05, 0x08, ... */
1387
1388static int abis_rsl_rx_rll(struct msgb *msg)
1389{
1390 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
1391 int rc = 0;
1392 char *ts_name;
Harald Welte (local)64994ce2009-08-14 11:41:12 +02001393 u_int8_t sapi = rllh->link_id & 7;
Harald Welte59b04682009-06-10 05:40:52 +08001394
1395 msg->lchan = lchan_lookup(msg->trx, rllh->chan_nr);
1396 ts_name = gsm_ts_name(msg->lchan->ts);
Harald Welte (local)64994ce2009-08-14 11:41:12 +02001397 DEBUGP(DRLL, "channel=%s chan_nr=0x%02x sapi=%u ", ts_name,
1398 rllh->chan_nr, sapi);
Harald Welte59b04682009-06-10 05:40:52 +08001399
1400 switch (rllh->c.msg_type) {
1401 case RSL_MT_DATA_IND:
1402 DEBUGPC(DRLL, "DATA INDICATION\n");
1403 if (msgb_l2len(msg) >
1404 sizeof(struct abis_rsl_common_hdr) + sizeof(*rllh) &&
1405 rllh->data[0] == RSL_IE_L3_INFO) {
1406 msg->l3h = &rllh->data[3];
Harald Welte (local)64994ce2009-08-14 11:41:12 +02001407 return gsm0408_rcvmsg(msg, rllh->link_id);
Harald Welte59b04682009-06-10 05:40:52 +08001408 }
1409 break;
1410 case RSL_MT_EST_IND:
1411 DEBUGPC(DRLL, "ESTABLISH INDICATION\n");
Harald Welte427dbc42009-08-10 00:26:10 +02001412 /* lchan is established, stop T3101 */
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +01001413 msg->lchan->sapis[rllh->link_id & 0x7] = LCHAN_SAPI_MS;
Harald Welte427dbc42009-08-10 00:26:10 +02001414 bsc_del_timer(&msg->lchan->T3101);
Harald Welte59b04682009-06-10 05:40:52 +08001415 if (msgb_l2len(msg) >
1416 sizeof(struct abis_rsl_common_hdr) + sizeof(*rllh) &&
1417 rllh->data[0] == RSL_IE_L3_INFO) {
1418 msg->l3h = &rllh->data[3];
Harald Welte (local)64994ce2009-08-14 11:41:12 +02001419 return gsm0408_rcvmsg(msg, rllh->link_id);
Harald Welte59b04682009-06-10 05:40:52 +08001420 }
1421 break;
Harald Welteed9a5ab2009-08-09 13:47:35 +02001422 case RSL_MT_EST_CONF:
Harald Welte61402172009-08-09 14:13:58 +02001423 DEBUGPC(DRLL, "ESTABLISH CONFIRM\n");
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +01001424 msg->lchan->sapis[rllh->link_id & 0x7] = LCHAN_SAPI_NET;
Harald Welteed9a5ab2009-08-09 13:47:35 +02001425 rll_indication(msg->lchan, rllh->link_id,
1426 BSC_RLLR_IND_EST_CONF);
1427 break;
Harald Welte59b04682009-06-10 05:40:52 +08001428 case RSL_MT_REL_IND:
Harald Welte0f2e3c12009-08-08 13:15:07 +02001429 /* BTS informs us of having received DISC from MS */
Harald Welteb6601442009-08-04 02:50:21 +02001430 DEBUGPC(DRLL, "RELEASE INDICATION\n");
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +01001431 msg->lchan->sapis[rllh->link_id & 0x7] = LCHAN_SAPI_UNUSED;
Harald Welteed9a5ab2009-08-09 13:47:35 +02001432 rll_indication(msg->lchan, rllh->link_id,
1433 BSC_RLLR_IND_REL_IND);
Harald Welte0f2e3c12009-08-08 13:15:07 +02001434 /* we can now releae the channel on the BTS/Abis side */
Harald Welte85a163c2009-08-10 11:43:22 +02001435 /* FIXME: officially we need to start T3111 and wait for
1436 * some grace period */
1437 rsl_rf_chan_release(msg->lchan);
Harald Welte59b04682009-06-10 05:40:52 +08001438 break;
1439 case RSL_MT_REL_CONF:
Harald Welte0f2e3c12009-08-08 13:15:07 +02001440 /* BTS informs us of having received UA from MS,
1441 * in response to DISC that we've sent earlier */
Harald Welteb6601442009-08-04 02:50:21 +02001442 DEBUGPC(DRLL, "RELEASE CONFIRMATION\n");
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +01001443 msg->lchan->sapis[rllh->link_id & 0x7] = LCHAN_SAPI_UNUSED;
Harald Welte0f2e3c12009-08-08 13:15:07 +02001444 /* we can now releae the channel on the BTS/Abis side */
Harald Welte85a163c2009-08-10 11:43:22 +02001445 /* FIXME: officially we need to start T3111 and wait for
1446 * some grace period */
1447 rsl_rf_chan_release(msg->lchan);
Harald Welte59b04682009-06-10 05:40:52 +08001448 break;
1449 case RSL_MT_ERROR_IND:
Harald Welte59b04682009-06-10 05:40:52 +08001450 rc = rsl_rx_rll_err_ind(msg);
1451 break;
1452 case RSL_MT_UNIT_DATA_IND:
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001453 LOGP(DRLL, LOGL_NOTICE, "unimplemented Abis RLL message "
1454 "type 0x%02x\n", rllh->c.msg_type);
Harald Welte59b04682009-06-10 05:40:52 +08001455 break;
1456 default:
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001457 LOGP(DRLL, LOGL_NOTICE, "unknown Abis RLL message "
1458 "type 0x%02x\n", rllh->c.msg_type);
Harald Welte59b04682009-06-10 05:40:52 +08001459 }
Harald Welte59b04682009-06-10 05:40:52 +08001460 return rc;
1461}
1462
Harald Welteb284b472009-12-02 01:58:23 +05301463static u_int8_t ipa_smod_s_for_lchan(struct gsm_lchan *lchan)
Harald Welte98d79f92009-07-28 18:11:56 +02001464{
Harald Welteb284b472009-12-02 01:58:23 +05301465 switch (lchan->tch_mode) {
Harald Welte98d79f92009-07-28 18:11:56 +02001466 case GSM48_CMODE_SPEECH_V1:
Harald Welteb284b472009-12-02 01:58:23 +05301467 switch (lchan->type) {
1468 case GSM_LCHAN_TCH_F:
1469 return 0x00;
1470 case GSM_LCHAN_TCH_H:
1471 return 0x03;
1472 default:
1473 break;
1474 }
Harald Welte98d79f92009-07-28 18:11:56 +02001475 case GSM48_CMODE_SPEECH_EFR:
Harald Welteb284b472009-12-02 01:58:23 +05301476 switch (lchan->type) {
1477 case GSM_LCHAN_TCH_F:
1478 return 0x01;
1479 /* there's no half-rate EFR */
1480 default:
1481 break;
1482 }
Harald Welte98d79f92009-07-28 18:11:56 +02001483 case GSM48_CMODE_SPEECH_AMR:
Harald Welteb284b472009-12-02 01:58:23 +05301484 switch (lchan->type) {
1485 case GSM_LCHAN_TCH_F:
1486 return 0x02;
1487 case GSM_LCHAN_TCH_H:
1488 return 0x05;
1489 default:
1490 break;
1491 }
1492 default:
1493 break;
Harald Welte98d79f92009-07-28 18:11:56 +02001494 }
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001495 LOGP(DRSL, LOGL_ERROR, "Cannot determine ip.access speech mode for "
Harald Welteb284b472009-12-02 01:58:23 +05301496 "tch_mode == 0x%02x\n", lchan->tch_mode);
Harald Welte98d79f92009-07-28 18:11:56 +02001497 return 0;
Harald Welte98d79f92009-07-28 18:11:56 +02001498}
1499
Harald Welte59b04682009-06-10 05:40:52 +08001500/* ip.access specific RSL extensions */
Harald Weltebffa4992009-12-19 16:42:06 +01001501static void ipac_parse_rtp(struct gsm_lchan *lchan, struct tlv_parsed *tv)
1502{
1503 struct in_addr ip;
1504 u_int16_t port, conn_id;
1505
1506 if (TLVP_PRESENT(tv, RSL_IE_IPAC_LOCAL_IP)) {
1507 ip.s_addr = *((u_int32_t *) TLVP_VAL(tv, RSL_IE_IPAC_LOCAL_IP));
1508 DEBUGPC(DRSL, "LOCAL_IP=%s ", inet_ntoa(ip));
1509 lchan->abis_ip.bound_ip = ntohl(ip.s_addr);
1510 }
1511
1512 if (TLVP_PRESENT(tv, RSL_IE_IPAC_LOCAL_PORT)) {
1513 port = *((u_int16_t *) TLVP_VAL(tv, RSL_IE_IPAC_LOCAL_PORT));
1514 port = ntohs(port);
1515 DEBUGPC(DRSL, "LOCAL_PORT=%u ", port);
1516 lchan->abis_ip.bound_port = port;
1517 }
1518
1519 if (TLVP_PRESENT(tv, RSL_IE_IPAC_CONN_ID)) {
1520 conn_id = *((u_int16_t *) TLVP_VAL(tv, RSL_IE_IPAC_CONN_ID));
1521 conn_id = ntohs(conn_id);
1522 DEBUGPC(DRSL, "CON_ID=%u ", conn_id);
1523 lchan->abis_ip.conn_id = conn_id;
1524 }
1525
1526 if (TLVP_PRESENT(tv, RSL_IE_IPAC_RTP_PAYLOAD2)) {
1527 lchan->abis_ip.rtp_payload2 =
1528 *TLVP_VAL(tv, RSL_IE_IPAC_RTP_PAYLOAD2);
1529 DEBUGPC(DRSL, "RTP_PAYLOAD2=0x%02x ",
1530 lchan->abis_ip.rtp_payload2);
1531 }
1532
1533 if (TLVP_PRESENT(tv, RSL_IE_IPAC_SPEECH_MODE)) {
1534 lchan->abis_ip.speech_mode =
1535 *TLVP_VAL(tv, RSL_IE_IPAC_SPEECH_MODE);
1536 DEBUGPC(DRSL, "speech_mode=0x%02x ",
1537 lchan->abis_ip.speech_mode);
1538 }
1539
1540 if (TLVP_PRESENT(tv, RSL_IE_IPAC_REMOTE_IP)) {
1541 ip.s_addr = *((u_int32_t *) TLVP_VAL(tv, RSL_IE_IPAC_REMOTE_IP));
1542 DEBUGPC(DRSL, "REMOTE_IP=%s ", inet_ntoa(ip));
1543 lchan->abis_ip.connect_ip = ntohl(ip.s_addr);
1544 }
1545
1546 if (TLVP_PRESENT(tv, RSL_IE_IPAC_REMOTE_PORT)) {
1547 port = *((u_int16_t *) TLVP_VAL(tv, RSL_IE_IPAC_REMOTE_PORT));
1548 port = ntohs(port);
1549 DEBUGPC(DRSL, "REMOTE_PORT=%u ", port);
1550 lchan->abis_ip.connect_port = port;
1551 }
1552}
1553
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001554int rsl_ipacc_crcx(struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +08001555{
1556 struct msgb *msg = rsl_msgb_alloc();
1557 struct abis_rsl_dchan_hdr *dh;
1558
1559 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001560 init_dchan_hdr(dh, RSL_MT_IPAC_CRCX);
Harald Welte59b04682009-06-10 05:40:52 +08001561 dh->c.msg_discr = ABIS_RSL_MDISC_IPACCESS;
1562 dh->chan_nr = lchan2chan_nr(lchan);
1563
Harald Welte98d79f92009-07-28 18:11:56 +02001564 /* 0x1- == receive-only, 0x-1 == EFR codec */
Harald Weltebffa4992009-12-19 16:42:06 +01001565 lchan->abis_ip.speech_mode = 0x10 | ipa_smod_s_for_lchan(lchan);
1566 msgb_tv_put(msg, RSL_IE_IPAC_SPEECH_MODE, lchan->abis_ip.speech_mode);
Harald Welte98d79f92009-07-28 18:11:56 +02001567
Harald Weltefb4a9e92009-07-29 12:12:18 +02001568 DEBUGP(DRSL, "channel=%s chan_nr=0x%02x IPAC_BIND "
1569 "speech_mode=0x%02x\n", gsm_ts_name(lchan->ts),
Harald Weltebffa4992009-12-19 16:42:06 +01001570 dh->chan_nr, lchan->abis_ip.speech_mode);
Harald Welte98d79f92009-07-28 18:11:56 +02001571
Harald Welte59b04682009-06-10 05:40:52 +08001572 msg->trx = lchan->ts->trx;
1573
1574 return abis_rsl_sendmsg(msg);
1575}
1576
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001577int rsl_ipacc_mdcx(struct gsm_lchan *lchan, u_int32_t ip, u_int16_t port,
Harald Weltebffa4992009-12-19 16:42:06 +01001578 u_int8_t rtp_payload2)
Harald Welte59b04682009-06-10 05:40:52 +08001579{
1580 struct msgb *msg = rsl_msgb_alloc();
1581 struct abis_rsl_dchan_hdr *dh;
Harald Weltebffa4992009-12-19 16:42:06 +01001582 u_int32_t *att_ip;
Harald Welte98d79f92009-07-28 18:11:56 +02001583 struct in_addr ia;
Harald Welte59b04682009-06-10 05:40:52 +08001584
1585 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001586 init_dchan_hdr(dh, RSL_MT_IPAC_MDCX);
Harald Welte59b04682009-06-10 05:40:52 +08001587 dh->c.msg_discr = ABIS_RSL_MDISC_IPACCESS;
1588 dh->chan_nr = lchan2chan_nr(lchan);
1589
Harald Weltebffa4992009-12-19 16:42:06 +01001590 /* we need to store these now as MDCX_ACK does not return them :( */
1591 lchan->abis_ip.rtp_payload2 = rtp_payload2;
1592 lchan->abis_ip.connect_port = port;
1593 lchan->abis_ip.connect_ip = ip;
1594
Harald Weltefb4a9e92009-07-29 12:12:18 +02001595 /* 0x0- == both directions, 0x-1 == EFR codec */
Harald Weltebffa4992009-12-19 16:42:06 +01001596 lchan->abis_ip.speech_mode = 0x00 | ipa_smod_s_for_lchan(lchan);
Harald Weltefb4a9e92009-07-29 12:12:18 +02001597
Harald Welte98d79f92009-07-28 18:11:56 +02001598 ia.s_addr = htonl(ip);
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001599 DEBUGP(DRSL, "channel=%s chan_nr=0x%02x IPAC_MDCX "
Harald Weltefb4a9e92009-07-29 12:12:18 +02001600 "IP=%s PORT=%d RTP_PAYLOAD2=%d CONN_ID=%d speech_mode=0x%02x\n",
Harald Weltebffa4992009-12-19 16:42:06 +01001601 gsm_ts_name(lchan->ts), dh->chan_nr, inet_ntoa(ia), port,
1602 rtp_payload2, lchan->abis_ip.conn_id, lchan->abis_ip.speech_mode);
Harald Welte98d79f92009-07-28 18:11:56 +02001603
Harald Weltebffa4992009-12-19 16:42:06 +01001604 msgb_tv16_put(msg, RSL_IE_IPAC_CONN_ID, lchan->abis_ip.conn_id);
1605 msgb_v_put(msg, RSL_IE_IPAC_REMOTE_IP);
1606 att_ip = (u_int32_t *) msgb_put(msg, sizeof(ip));
1607 *att_ip = ia.s_addr;
1608 msgb_tv16_put(msg, RSL_IE_IPAC_REMOTE_PORT, port);
1609 msgb_tv_put(msg, RSL_IE_IPAC_SPEECH_MODE, lchan->abis_ip.speech_mode);
Harald Welte98d79f92009-07-28 18:11:56 +02001610 if (rtp_payload2)
1611 msgb_tv_put(msg, RSL_IE_IPAC_RTP_PAYLOAD2, rtp_payload2);
1612
Harald Welte59b04682009-06-10 05:40:52 +08001613 msg->trx = lchan->ts->trx;
1614
1615 return abis_rsl_sendmsg(msg);
1616}
1617
Harald Welte9947d9f2009-12-20 16:51:09 +01001618/* tell BTS to connect RTP stream to our local RTP socket */
1619int rsl_ipacc_mdcx_to_rtpsock(struct gsm_lchan *lchan)
1620{
1621 struct rtp_socket *rs = lchan->abis_ip.rtp_socket;
1622 int rc;
1623
1624 rc = rsl_ipacc_mdcx(lchan, ntohl(rs->rtp.sin_local.sin_addr.s_addr),
1625 ntohs(rs->rtp.sin_local.sin_port),
1626 /* FIXME: use RTP payload of bound socket, not BTS*/
1627 lchan->abis_ip.rtp_payload2);
1628
1629 return rc;
1630}
1631
Harald Welteaed946e2009-10-24 10:29:22 +02001632int rsl_ipacc_pdch_activate(struct gsm_lchan *lchan)
1633{
1634 struct msgb *msg = rsl_msgb_alloc();
1635 struct abis_rsl_dchan_hdr *dh;
1636
1637 dh = (struct abis_rsl_dchan_hdr *) msgb_put(msg, sizeof(*dh));
1638 init_dchan_hdr(dh, RSL_MT_IPAC_PDCH_ACT);
1639 dh->c.msg_discr = ABIS_RSL_MDISC_DED_CHAN;
1640 dh->chan_nr = lchan2chan_nr(lchan);
1641
1642 DEBUGP(DRSL, "channel=%s chan_nr=0x%02x IPAC_PDCH_ACT\n",
1643 gsm_ts_name(lchan->ts), dh->chan_nr);
1644
1645 msg->trx = lchan->ts->trx;
1646
1647 return abis_rsl_sendmsg(msg);
1648}
1649
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001650static int abis_rsl_rx_ipacc_crcx_ack(struct msgb *msg)
Harald Welte59b04682009-06-10 05:40:52 +08001651{
1652 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
1653 struct tlv_parsed tv;
Harald Welte87504212009-12-02 01:56:49 +05301654 struct gsm_lchan *lchan = msg->lchan;
Harald Welte59b04682009-06-10 05:40:52 +08001655
1656 /* the BTS has acknowledged a local bind, it now tells us the IP
1657 * address and port number to which it has bound the given logical
1658 * channel */
1659
1660 rsl_tlv_parse(&tv, dh->data, msgb_l2len(msg)-sizeof(*dh));
1661 if (!TLVP_PRESENT(&tv, RSL_IE_IPAC_LOCAL_PORT) ||
1662 !TLVP_PRESENT(&tv, RSL_IE_IPAC_LOCAL_IP) ||
Harald Welteb9498952009-07-12 09:45:05 +02001663 !TLVP_PRESENT(&tv, RSL_IE_IPAC_CONN_ID)) {
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001664 LOGP(DRSL, LOGL_NOTICE, "mandatory IE missing");
Harald Welte59b04682009-06-10 05:40:52 +08001665 return -EINVAL;
1666 }
Harald Welte50517742009-12-20 15:42:44 +01001667
Harald Weltebffa4992009-12-19 16:42:06 +01001668 ipac_parse_rtp(lchan, &tv);
Harald Welte50517742009-12-20 15:42:44 +01001669
1670 /* in case we don't use direct BTS-to-BTS RTP */
1671 if (!ipacc_rtp_direct) {
1672 int rc;
1673 /* the BTS has successfully bound a TCH to a local ip/port,
1674 * which means we can connect our UDP socket to it */
1675 if (lchan->abis_ip.rtp_socket) {
1676 rtp_socket_free(lchan->abis_ip.rtp_socket);
1677 lchan->abis_ip.rtp_socket = NULL;
1678 }
1679
1680 lchan->abis_ip.rtp_socket = rtp_socket_create();
1681 if (!lchan->abis_ip.rtp_socket)
1682 goto out_err;
1683
1684 rc = rtp_socket_connect(lchan->abis_ip.rtp_socket,
1685 lchan->abis_ip.bound_ip,
1686 lchan->abis_ip.bound_port);
1687 if (rc < 0)
1688 goto out_err;
1689 }
1690
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001691 dispatch_signal(SS_ABISIP, S_ABISIP_CRCX_ACK, msg->lchan);
Harald Welte59b04682009-06-10 05:40:52 +08001692
1693 return 0;
Harald Welte50517742009-12-20 15:42:44 +01001694out_err:
1695 return -EIO;
Harald Welte59b04682009-06-10 05:40:52 +08001696}
1697
Harald Weltebffa4992009-12-19 16:42:06 +01001698static int abis_rsl_rx_ipacc_mdcx_ack(struct msgb *msg)
1699{
1700 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
1701 struct tlv_parsed tv;
1702 struct gsm_lchan *lchan = msg->lchan;
1703
1704 /* the BTS has acknowledged a remote connect request and
1705 * it now tells us the IP address and port number to which it has
1706 * connected the given logical channel */
1707
1708 rsl_tlv_parse(&tv, dh->data, msgb_l2len(msg)-sizeof(*dh));
1709 ipac_parse_rtp(lchan, &tv);
1710 dispatch_signal(SS_ABISIP, S_ABISIP_MDCX_ACK, msg->lchan);
1711
1712 return 0;
1713}
1714
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001715static int abis_rsl_rx_ipacc_dlcx_ind(struct msgb *msg)
Harald Welte59b04682009-06-10 05:40:52 +08001716{
1717 struct abis_rsl_dchan_hdr *dh = msgb_l2(msg);
1718 struct tlv_parsed tv;
Harald Welte50517742009-12-20 15:42:44 +01001719 struct gsm_lchan *lchan = msg->lchan;
Harald Welte59b04682009-06-10 05:40:52 +08001720
1721 rsl_tlv_parse(&tv, dh->data, msgb_l2len(msg)-sizeof(*dh));
Harald Welte59b04682009-06-10 05:40:52 +08001722
Harald Weltef1a168d2009-07-28 17:58:09 +02001723 if (TLVP_PRESENT(&tv, RSL_IE_CAUSE))
1724 print_rsl_cause(TLVP_VAL(&tv, RSL_IE_CAUSE),
1725 TLVP_LEN(&tv, RSL_IE_CAUSE));
Harald Welte59b04682009-06-10 05:40:52 +08001726
Harald Welte50517742009-12-20 15:42:44 +01001727 /* the BTS tells us a RTP stream has been disconnected */
1728 if (lchan->abis_ip.rtp_socket) {
1729 rtp_socket_free(lchan->abis_ip.rtp_socket);
1730 lchan->abis_ip.rtp_socket = NULL;
1731 }
1732
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001733 dispatch_signal(SS_ABISIP, S_ABISIP_DLCX_IND, msg->lchan);
Harald Welteba4e58d2009-07-28 18:02:05 +02001734
Harald Welte59b04682009-06-10 05:40:52 +08001735 return 0;
1736}
1737
1738static int abis_rsl_rx_ipacc(struct msgb *msg)
1739{
1740 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
1741 int rc = 0;
1742
1743 msg->lchan = lchan_lookup(msg->trx, rllh->chan_nr);
1744 DEBUGP(DRSL, "channel=%s chan_nr=0x%02x ",
1745 gsm_ts_name(msg->lchan->ts), rllh->chan_nr);
1746
1747 switch (rllh->c.msg_type) {
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001748 case RSL_MT_IPAC_CRCX_ACK:
1749 DEBUGPC(DRSL, "IPAC_CRCX_ACK ");
1750 rc = abis_rsl_rx_ipacc_crcx_ack(msg);
Harald Welte59b04682009-06-10 05:40:52 +08001751 break;
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001752 case RSL_MT_IPAC_CRCX_NACK:
Harald Welte59b04682009-06-10 05:40:52 +08001753 /* somehow the BTS was unable to bind the lchan to its local
1754 * port?!? */
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001755 DEBUGPC(DRSL, "IPAC_CRCX_NACK ");
Harald Welte59b04682009-06-10 05:40:52 +08001756 break;
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001757 case RSL_MT_IPAC_MDCX_ACK:
Harald Welte59b04682009-06-10 05:40:52 +08001758 /* the BTS tells us that a connect operation was successful */
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001759 DEBUGPC(DRSL, "IPAC_MDCX_ACK ");
Harald Weltebffa4992009-12-19 16:42:06 +01001760 rc = abis_rsl_rx_ipacc_mdcx_ack(msg);
Harald Welte59b04682009-06-10 05:40:52 +08001761 break;
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001762 case RSL_MT_IPAC_MDCX_NACK:
Harald Welte59b04682009-06-10 05:40:52 +08001763 /* somehow the BTS was unable to connect the lchan to a remote
1764 * port */
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001765 DEBUGPC(DRSL, "IPAC_MDCX_NACK ");
Harald Welte59b04682009-06-10 05:40:52 +08001766 break;
Holger Hans Peter Freyther5ea7ea62009-11-18 21:06:12 +01001767 case RSL_MT_IPAC_DLCX_IND:
1768 DEBUGPC(DRSL, "IPAC_DLCX_IND ");
1769 rc = abis_rsl_rx_ipacc_dlcx_ind(msg);
Harald Welte59b04682009-06-10 05:40:52 +08001770 break;
1771 default:
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001772 LOGP(DRSL, LOGL_NOTICE, "Unknown ip.access msg_type 0x%02x",
1773 rllh->c.msg_type);
Harald Welte59b04682009-06-10 05:40:52 +08001774 break;
1775 }
1776 DEBUGPC(DRSL, "\n");
1777
1778 return rc;
1779}
1780
1781
1782/* Entry-point where L2 RSL from BTS enters */
1783int abis_rsl_rcvmsg(struct msgb *msg)
1784{
1785 struct abis_rsl_common_hdr *rslh = msgb_l2(msg) ;
1786 int rc = 0;
1787
1788 switch (rslh->msg_discr & 0xfe) {
1789 case ABIS_RSL_MDISC_RLL:
1790 rc = abis_rsl_rx_rll(msg);
1791 break;
1792 case ABIS_RSL_MDISC_DED_CHAN:
1793 rc = abis_rsl_rx_dchan(msg);
1794 break;
1795 case ABIS_RSL_MDISC_COM_CHAN:
1796 rc = abis_rsl_rx_cchan(msg);
1797 break;
1798 case ABIS_RSL_MDISC_TRX:
1799 rc = abis_rsl_rx_trx(msg);
1800 break;
1801 case ABIS_RSL_MDISC_LOC:
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001802 LOGP(DRSL, LOGL_NOTICE, "unimplemented RSL msg disc 0x%02x\n",
Harald Welte59b04682009-06-10 05:40:52 +08001803 rslh->msg_discr);
1804 break;
1805 case ABIS_RSL_MDISC_IPACCESS:
1806 rc = abis_rsl_rx_ipacc(msg);
1807 break;
1808 default:
Harald Weltecf2ec4a2009-12-17 23:10:46 +01001809 LOGP(DRSL, LOGL_NOTICE, "unknown RSL message discriminator "
1810 "0x%02x\n", rslh->msg_discr);
Harald Welte59b04682009-06-10 05:40:52 +08001811 return -EINVAL;
1812 }
1813 msgb_free(msg);
1814 return rc;
1815}
1816
1817
Holger Hans Peter Freyther4e0fdfd2009-07-09 20:43:16 +02001818/* Section 3.3.2.3 TS 05.02. I think this looks like a table */
Harald Welte59b04682009-06-10 05:40:52 +08001819int rsl_ccch_conf_to_bs_cc_chans(int ccch_conf)
1820{
1821 switch (ccch_conf) {
1822 case RSL_BCCH_CCCH_CONF_1_NC:
1823 return 1;
1824 case RSL_BCCH_CCCH_CONF_1_C:
1825 return 1;
1826 case RSL_BCCH_CCCH_CONF_2_NC:
1827 return 2;
1828 case RSL_BCCH_CCCH_CONF_3_NC:
1829 return 3;
1830 case RSL_BCCH_CCCH_CONF_4_NC:
1831 return 4;
1832 default:
1833 return -1;
1834 }
1835}
1836
Holger Hans Peter Freyther4e0fdfd2009-07-09 20:43:16 +02001837/* Section 3.3.2.3 TS 05.02 */
Harald Welte59b04682009-06-10 05:40:52 +08001838int rsl_ccch_conf_to_bs_ccch_sdcch_comb(int ccch_conf)
1839{
1840 switch (ccch_conf) {
1841 case RSL_BCCH_CCCH_CONF_1_NC:
1842 return 0;
1843 case RSL_BCCH_CCCH_CONF_1_C:
1844 return 1;
1845 case RSL_BCCH_CCCH_CONF_2_NC:
1846 return 0;
1847 case RSL_BCCH_CCCH_CONF_3_NC:
1848 return 0;
1849 case RSL_BCCH_CCCH_CONF_4_NC:
1850 return 0;
1851 default:
1852 return -1;
1853 }
1854}
1855
1856/* From Table 10.5.33 of GSM 04.08 */
1857int rsl_number_of_paging_subchannels(struct gsm_bts *bts)
1858{
Harald Weltea54a2bb2009-12-01 18:04:30 +05301859 if (bts->si_common.chan_desc.ccch_conf == RSL_BCCH_CCCH_CONF_1_C) {
1860 return MAX(1, (3 - bts->si_common.chan_desc.bs_ag_blks_res))
1861 * (bts->si_common.chan_desc.bs_pa_mfrms + 2);
Harald Welte59b04682009-06-10 05:40:52 +08001862 } else {
Harald Weltea54a2bb2009-12-01 18:04:30 +05301863 return (9 - bts->si_common.chan_desc.bs_ag_blks_res)
1864 * (bts->si_common.chan_desc.bs_pa_mfrms + 2);
Harald Welte59b04682009-06-10 05:40:52 +08001865 }
1866}