blob: 49c2a4bbbfa9ea0db7319ba0340edbcdc6cbe5ba [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file lapdm.c
2 * GSM LAPDm (TS 04.06) implementation. */
3/*
Harald Weltee08da972017-11-13 01:00:26 +09004 * (C) 2010-2017 by Harald Welte <laforge@gnumonks.org>
rootaf48bed2011-09-26 11:23:06 +02005 * (C) 2010-2011 by Andreas Eversberg <jolly@eversberg.eu>
Harald Weltee08da972017-11-13 01:00:26 +09006 * (C) 2014-2016 by sysmocom - s.f.m.c GmbH
Harald Welte1f0b8c22011-06-27 10:51:37 +02007 *
8 * All Rights Reserved
9 *
Harald Weltee08da972017-11-13 01:00:26 +090010 * SPDX-License-Identifier: GPL-2.0+
11 *
Harald Welte1f0b8c22011-06-27 10:51:37 +020012 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 *
26 */
27
Harald Welte6bdf0b12011-08-17 18:22:08 +020028/*! \addtogroup lapdm
29 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020030 * \file lapdm.c */
Harald Welte6bdf0b12011-08-17 18:22:08 +020031
Harald Welte1f0b8c22011-06-27 10:51:37 +020032#include <stdio.h>
33#include <stdint.h>
34#include <string.h>
35#include <errno.h>
Harald Welte1f0b8c22011-06-27 10:51:37 +020036
37#include <osmocom/core/logging.h>
38#include <osmocom/core/timer.h>
39#include <osmocom/core/msgb.h>
40#include <osmocom/core/utils.h>
41
42#include <osmocom/gsm/tlv.h>
43#include <osmocom/gsm/rsl.h>
44#include <osmocom/gsm/prim.h>
45#include <osmocom/gsm/gsm_utils.h>
46#include <osmocom/gsm/lapdm.h>
47
48#include <osmocom/gsm/protocol/gsm_04_08.h>
49#include <osmocom/gsm/protocol/gsm_08_58.h>
50
Harald Welte1284c3e2018-05-01 18:11:02 +020051#define LAPD_U_SABM 0x7
52
Harald Welte1f0b8c22011-06-27 10:51:37 +020053/* TS 04.06 Figure 4 / Section 3.2 */
54#define LAPDm_LPD_NORMAL 0
55#define LAPDm_LPD_SMSCB 1
56#define LAPDm_SAPI_NORMAL 0
57#define LAPDm_SAPI_SMS 3
58#define LAPDm_ADDR(lpd, sapi, cr) ((((lpd) & 0x3) << 5) | (((sapi) & 0x7) << 2) | (((cr) & 0x1) << 1) | 0x1)
59
rootaf48bed2011-09-26 11:23:06 +020060#define LAPDm_ADDR_LPD(addr) (((addr) >> 5) & 0x3)
Harald Welte1f0b8c22011-06-27 10:51:37 +020061#define LAPDm_ADDR_SAPI(addr) (((addr) >> 2) & 0x7)
62#define LAPDm_ADDR_CR(addr) (((addr) >> 1) & 0x1)
63#define LAPDm_ADDR_EA(addr) ((addr) & 0x1)
64
65/* TS 04.06 Table 3 / Section 3.4.3 */
66#define LAPDm_CTRL_I(nr, ns, p) ((((nr) & 0x7) << 5) | (((p) & 0x1) << 4) | (((ns) & 0x7) << 1))
67#define LAPDm_CTRL_S(nr, s, p) ((((nr) & 0x7) << 5) | (((p) & 0x1) << 4) | (((s) & 0x3) << 2) | 0x1)
68#define LAPDm_CTRL_U(u, p) ((((u) & 0x1c) << (5-2)) | (((p) & 0x1) << 4) | (((u) & 0x3) << 2) | 0x3)
69
70#define LAPDm_CTRL_is_I(ctrl) (((ctrl) & 0x1) == 0)
71#define LAPDm_CTRL_is_S(ctrl) (((ctrl) & 0x3) == 1)
72#define LAPDm_CTRL_is_U(ctrl) (((ctrl) & 0x3) == 3)
73
74#define LAPDm_CTRL_U_BITS(ctrl) ((((ctrl) & 0xC) >> 2) | ((ctrl) & 0xE0) >> 3)
75#define LAPDm_CTRL_PF_BIT(ctrl) (((ctrl) >> 4) & 0x1)
76
77#define LAPDm_CTRL_S_BITS(ctrl) (((ctrl) & 0xC) >> 2)
78
79#define LAPDm_CTRL_I_Ns(ctrl) (((ctrl) & 0xE) >> 1)
80#define LAPDm_CTRL_Nr(ctrl) (((ctrl) & 0xE0) >> 5)
81
Harald Welte1f0b8c22011-06-27 10:51:37 +020082#define LAPDm_LEN(len) ((len << 2) | 0x1)
83#define LAPDm_MORE 0x2
rootaf48bed2011-09-26 11:23:06 +020084#define LAPDm_EL 0x1
85
86#define LAPDm_U_UI 0x0
Harald Welte1f0b8c22011-06-27 10:51:37 +020087
88/* TS 04.06 Section 5.8.3 */
89#define N201_AB_SACCH 18
90#define N201_AB_SDCCH 20
91#define N201_AB_FACCH 20
92#define N201_Bbis 23
93#define N201_Bter_SACCH 21
94#define N201_Bter_SDCCH 23
95#define N201_Bter_FACCH 23
96#define N201_B4 19
97
98/* 5.8.2.1 N200 during establish and release */
99#define N200_EST_REL 5
100/* 5.8.2.1 N200 during timer recovery state */
101#define N200_TR_SACCH 5
102#define N200_TR_SDCCH 23
103#define N200_TR_FACCH_FR 34
104#define N200_TR_EFACCH_FR 48
105#define N200_TR_FACCH_HR 29
rootaf48bed2011-09-26 11:23:06 +0200106/* FIXME: set N200 depending on chan_nr */
107#define N200 N200_TR_SDCCH
Harald Welte1f0b8c22011-06-27 10:51:37 +0200108
109enum lapdm_format {
110 LAPDm_FMT_A,
111 LAPDm_FMT_B,
112 LAPDm_FMT_Bbis,
113 LAPDm_FMT_Bter,
114 LAPDm_FMT_B4,
115};
116
Maxadef12a2016-05-25 15:25:02 +0200117const struct value_string osmo_ph_prim_names[] = {
118 { PRIM_PH_DATA, "PH-DATA" },
119 { PRIM_PH_RACH, "PH-RANDOM_ACCESS" },
120 { PRIM_PH_CONN, "PH-CONNECT" },
121 { PRIM_PH_EMPTY_FRAME, "PH-EMPTY_FRAME" },
122 { PRIM_PH_RTS, "PH-RTS" },
123 { PRIM_MPH_INFO, "MPH-INFO" },
124 { PRIM_TCH, "TCH" },
125 { PRIM_TCH_RTS, "TCH-RTS" },
126 { 0, NULL }
127};
128
rootaf48bed2011-09-26 11:23:06 +0200129static int lapdm_send_ph_data_req(struct lapd_msg_ctx *lctx, struct msgb *msg);
130static int send_rslms_dlsap(struct osmo_dlsap_prim *dp,
131 struct lapd_msg_ctx *lctx);
Daniel Willmann3dc4e162014-03-20 19:24:48 +0100132static int update_pending_frames(struct lapd_msg_ctx *lctx);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200133
134static void lapdm_dl_init(struct lapdm_datalink *dl,
Andreas.Eversberg5ac44782011-11-06 20:35:48 +0100135 struct lapdm_entity *entity, int t200)
Harald Welte1f0b8c22011-06-27 10:51:37 +0200136{
137 memset(dl, 0, sizeof(*dl));
Harald Welte1f0b8c22011-06-27 10:51:37 +0200138 dl->entity = entity;
rootaf48bed2011-09-26 11:23:06 +0200139 lapd_dl_init(&dl->dl, 1, 8, 200);
140 dl->dl.reestablish = 0; /* GSM uses no reestablish */
141 dl->dl.send_ph_data_req = lapdm_send_ph_data_req;
142 dl->dl.send_dlsap = send_rslms_dlsap;
Daniel Willmann3dc4e162014-03-20 19:24:48 +0100143 dl->dl.update_pending_frames = update_pending_frames;
rootaf48bed2011-09-26 11:23:06 +0200144 dl->dl.n200_est_rel = N200_EST_REL;
145 dl->dl.n200 = N200;
146 dl->dl.t203_sec = 0; dl->dl.t203_usec = 0;
Andreas.Eversberg5ac44782011-11-06 20:35:48 +0100147 dl->dl.t200_sec = t200; dl->dl.t200_usec = 0;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200148}
149
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200150/*! initialize a LAPDm entity and all datalinks inside
Harald Welte6bdf0b12011-08-17 18:22:08 +0200151 * \param[in] le LAPDm entity
152 * \param[in] mode \ref lapdm_mode (BTS/MS)
153 */
Andreas.Eversberg5ac44782011-11-06 20:35:48 +0100154void lapdm_entity_init(struct lapdm_entity *le, enum lapdm_mode mode, int t200)
Harald Welte1f0b8c22011-06-27 10:51:37 +0200155{
156 unsigned int i;
157
158 for (i = 0; i < ARRAY_SIZE(le->datalink); i++)
Andreas.Eversberg5ac44782011-11-06 20:35:48 +0100159 lapdm_dl_init(&le->datalink[i], le, t200);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200160
161 lapdm_entity_set_mode(le, mode);
162}
163
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200164/*! initialize a LAPDm channel and all its channels
Harald Welte6bdf0b12011-08-17 18:22:08 +0200165 * \param[in] lc \ref lapdm_channel to be initialized
166 * \param[in] mode \ref lapdm_mode (BTS/MS)
167 *
168 * This really is a convenience wrapper around calling \ref
169 * lapdm_entity_init twice.
170 */
Harald Welte1f0b8c22011-06-27 10:51:37 +0200171void lapdm_channel_init(struct lapdm_channel *lc, enum lapdm_mode mode)
172{
Andreas.Eversberg5ac44782011-11-06 20:35:48 +0100173 lapdm_entity_init(&lc->lapdm_acch, mode, 2);
Harald Welte3e8c5202018-05-04 20:58:48 +0200174 lc->lapdm_acch.lapdm_ch = lc;
rootaf48bed2011-09-26 11:23:06 +0200175 /* FIXME: this depends on chan type */
Andreas.Eversberg5ac44782011-11-06 20:35:48 +0100176 lapdm_entity_init(&lc->lapdm_dcch, mode, 1);
Harald Welte3e8c5202018-05-04 20:58:48 +0200177 lc->lapdm_dcch.lapdm_ch = lc;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200178}
179
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200180/*! flush and release all resoures in LAPDm entity */
Harald Welte1f0b8c22011-06-27 10:51:37 +0200181void lapdm_entity_exit(struct lapdm_entity *le)
182{
183 unsigned int i;
184 struct lapdm_datalink *dl;
185
186 for (i = 0; i < ARRAY_SIZE(le->datalink); i++) {
187 dl = &le->datalink[i];
rootaf48bed2011-09-26 11:23:06 +0200188 lapd_dl_exit(&dl->dl);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200189 }
190}
191
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200192/* lfush and release all resources in LAPDm channel
Harald Welte6bdf0b12011-08-17 18:22:08 +0200193 *
194 * A convenience wrapper calling \ref lapdm_entity_exit on both
195 * entities inside the \ref lapdm_channel
196 */
Harald Welte1f0b8c22011-06-27 10:51:37 +0200197void lapdm_channel_exit(struct lapdm_channel *lc)
198{
199 lapdm_entity_exit(&lc->lapdm_acch);
200 lapdm_entity_exit(&lc->lapdm_dcch);
201}
202
Daniel Willmann55405fb2014-03-26 13:45:17 +0100203struct lapdm_datalink *lapdm_datalink_for_sapi(struct lapdm_entity *le, uint8_t sapi)
Harald Welte1f0b8c22011-06-27 10:51:37 +0200204{
205 switch (sapi) {
206 case LAPDm_SAPI_NORMAL:
207 return &le->datalink[0];
208 case LAPDm_SAPI_SMS:
209 return &le->datalink[1];
210 default:
211 return NULL;
212 }
213}
214
Harald Welte1f0b8c22011-06-27 10:51:37 +0200215/* Append padding (if required) */
216static void lapdm_pad_msgb(struct msgb *msg, uint8_t n201)
217{
218 int pad_len = n201 - msgb_l2len(msg);
219 uint8_t *data;
220
221 if (pad_len < 0) {
rootaf48bed2011-09-26 11:23:06 +0200222 LOGP(DLLAPD, LOGL_ERROR,
Harald Welte1f0b8c22011-06-27 10:51:37 +0200223 "cannot pad message that is already too big!\n");
224 return;
225 }
226
227 data = msgb_put(msg, pad_len);
228 memset(data, 0x2B, pad_len);
229}
230
231/* input function that L2 calls when sending messages up to L3 */
232static int rslms_sendmsg(struct msgb *msg, struct lapdm_entity *le)
233{
234 if (!le->l3_cb) {
235 msgb_free(msg);
236 return -EIO;
237 }
238
239 /* call the layer2 message handler that is registered */
240 return le->l3_cb(msg, le, le->l3_ctx);
241}
242
243/* write a frame into the tx queue */
244static int tx_ph_data_enqueue(struct lapdm_datalink *dl, struct msgb *msg,
rootaf48bed2011-09-26 11:23:06 +0200245 uint8_t chan_nr, uint8_t link_id, uint8_t pad)
Harald Welte1f0b8c22011-06-27 10:51:37 +0200246{
247 struct lapdm_entity *le = dl->entity;
248 struct osmo_phsap_prim pp;
249
250 /* if there is a pending message, queue it */
251 if (le->tx_pending || le->flags & LAPDM_ENT_F_POLLING_ONLY) {
rootaf48bed2011-09-26 11:23:06 +0200252 *msgb_push(msg, 1) = pad;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200253 *msgb_push(msg, 1) = link_id;
254 *msgb_push(msg, 1) = chan_nr;
rootaf48bed2011-09-26 11:23:06 +0200255 msgb_enqueue(&dl->dl.tx_queue, msg);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200256 return -EBUSY;
257 }
258
259 osmo_prim_init(&pp.oph, SAP_GSM_PH, PRIM_PH_DATA,
260 PRIM_OP_REQUEST, msg);
261 pp.u.data.chan_nr = chan_nr;
262 pp.u.data.link_id = link_id;
263
264 /* send the frame now */
265 le->tx_pending = 0; /* disabled flow control */
rootaf48bed2011-09-26 11:23:06 +0200266 lapdm_pad_msgb(msg, pad);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200267
268 return le->l1_prim_cb(&pp.oph, le->l1_ctx);
269}
270
271static struct msgb *tx_dequeue_msgb(struct lapdm_entity *le)
272{
273 struct lapdm_datalink *dl;
274 int last = le->last_tx_dequeue;
275 int i = last, n = ARRAY_SIZE(le->datalink);
276 struct msgb *msg = NULL;
277
278 /* round-robin dequeue */
279 do {
280 /* next */
281 i = (i + 1) % n;
282 dl = &le->datalink[i];
rootaf48bed2011-09-26 11:23:06 +0200283 if ((msg = msgb_dequeue(&dl->dl.tx_queue)))
Harald Welte1f0b8c22011-06-27 10:51:37 +0200284 break;
285 } while (i != last);
286
287 if (msg) {
288 /* Set last dequeue position */
289 le->last_tx_dequeue = i;
290 }
291
292 return msg;
293}
294
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200295/*! dequeue a msg that's pending transmission via L1 and wrap it into
Harald Welte1f0b8c22011-06-27 10:51:37 +0200296 * a osmo_phsap_prim */
297int lapdm_phsap_dequeue_prim(struct lapdm_entity *le, struct osmo_phsap_prim *pp)
298{
299 struct msgb *msg;
rootaf48bed2011-09-26 11:23:06 +0200300 uint8_t pad;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200301
302 msg = tx_dequeue_msgb(le);
303 if (!msg)
304 return -ENODEV;
305
306 /* if we have a message, send PH-DATA.req */
307 osmo_prim_init(&pp->oph, SAP_GSM_PH, PRIM_PH_DATA,
308 PRIM_OP_REQUEST, msg);
309
310 /* Pull chan_nr and link_id */
311 pp->u.data.chan_nr = *msg->data;
312 msgb_pull(msg, 1);
313 pp->u.data.link_id = *msg->data;
314 msgb_pull(msg, 1);
rootaf48bed2011-09-26 11:23:06 +0200315 pad = *msg->data;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200316 msgb_pull(msg, 1);
317
318 /* Pad the frame, we can transmit now */
rootaf48bed2011-09-26 11:23:06 +0200319 lapdm_pad_msgb(msg, pad);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200320
321 return 0;
322}
323
324/* get next frame from the tx queue. because the ms has multiple datalinks,
325 * each datalink's queue is read round-robin.
326 */
327static int l2_ph_data_conf(struct msgb *msg, struct lapdm_entity *le)
328{
329 struct osmo_phsap_prim pp;
330
331 /* we may send again */
332 le->tx_pending = 0;
333
334 /* free confirm message */
335 if (msg)
336 msgb_free(msg);
337
338 if (lapdm_phsap_dequeue_prim(le, &pp) < 0) {
339 /* no message in all queues */
340
341 /* If user didn't request PH-EMPTY_FRAME.req, abort */
342 if (!(le->flags & LAPDM_ENT_F_EMPTY_FRAME))
343 return 0;
344
345 /* otherwise, send PH-EMPTY_FRAME.req */
346 osmo_prim_init(&pp.oph, SAP_GSM_PH,
347 PRIM_PH_EMPTY_FRAME,
348 PRIM_OP_REQUEST, NULL);
349 } else {
350 le->tx_pending = 1;
351 }
352
353 return le->l1_prim_cb(&pp.oph, le->l1_ctx);
354}
355
Harald Welte542301b2018-04-19 16:11:14 +0200356/* Is a given msg_type "transparent" as per TS 48.058 Section 8.1 */
357static int rsl_is_transparent(uint8_t msg_type)
358{
359 switch (msg_type) {
360 case RSL_MT_DATA_IND:
361 case RSL_MT_UNIT_DATA_IND:
362 return 1;
363 case RSL_MT_DATA_REQ:
364 case RSL_MT_UNIT_DATA_REQ:
365 return 1;
366 default:
367 return 0;
368 }
369}
370
Harald Welte1f0b8c22011-06-27 10:51:37 +0200371/* Create RSLms various RSLms messages */
372static int send_rslms_rll_l3(uint8_t msg_type, struct lapdm_msg_ctx *mctx,
373 struct msgb *msg)
374{
Harald Welte542301b2018-04-19 16:11:14 +0200375 int transparent = rsl_is_transparent(msg_type);
376
Harald Welte1f0b8c22011-06-27 10:51:37 +0200377 /* Add the RSL + RLL header */
Harald Welte542301b2018-04-19 16:11:14 +0200378 rsl_rll_push_l3(msg, msg_type, mctx->chan_nr, mctx->link_id, transparent);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200379
380 /* send off the RSLms message to L3 */
381 return rslms_sendmsg(msg, mctx->dl->entity);
382}
383
384/* Take a B4 format message from L1 and create RSLms UNIT DATA IND */
385static int send_rslms_rll_l3_ui(struct lapdm_msg_ctx *mctx, struct msgb *msg)
386{
387 uint8_t l3_len = msg->tail - (uint8_t *)msgb_l3(msg);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200388
389 /* Add the RSL + RLL header */
390 msgb_tv16_push(msg, RSL_IE_L3_INFO, l3_len);
Harald Welted977f5f2018-05-08 21:53:28 +0200391
392 /* Add two IEs carrying MS power and TA values */
393 msgb_tv_push(msg, RSL_IE_MS_POWER, mctx->tx_power_ind);
394 msgb_tv_push(msg, RSL_IE_TIMING_ADVANCE, mctx->ta_ind);
395
Harald Welte1f0b8c22011-06-27 10:51:37 +0200396 rsl_rll_push_hdr(msg, RSL_MT_UNIT_DATA_IND, mctx->chan_nr,
397 mctx->link_id, 1);
Pau Espin Pedrola99e1102017-12-08 14:30:47 +0100398
Harald Welte1f0b8c22011-06-27 10:51:37 +0200399 return rslms_sendmsg(msg, mctx->dl->entity);
400}
401
402static int send_rll_simple(uint8_t msg_type, struct lapdm_msg_ctx *mctx)
403{
404 struct msgb *msg;
Harald Welte542301b2018-04-19 16:11:14 +0200405 int transparent = rsl_is_transparent(msg_type);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200406
Harald Welte542301b2018-04-19 16:11:14 +0200407 msg = rsl_rll_simple(msg_type, mctx->chan_nr, mctx->link_id, transparent);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200408
409 /* send off the RSLms message to L3 */
410 return rslms_sendmsg(msg, mctx->dl->entity);
411}
412
413static int rsl_rll_error(uint8_t cause, struct lapdm_msg_ctx *mctx)
414{
415 struct msgb *msg;
416
rootaf48bed2011-09-26 11:23:06 +0200417 LOGP(DLLAPD, LOGL_NOTICE, "sending MDL-ERROR-IND %d\n", cause);
Harald Welte542301b2018-04-19 16:11:14 +0200418 msg = rsl_rll_simple(RSL_MT_ERROR_IND, mctx->chan_nr, mctx->link_id, 0);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200419 msgb_tlv_put(msg, RSL_IE_RLM_CAUSE, 1, &cause);
420 return rslms_sendmsg(msg, mctx->dl->entity);
421}
422
rootaf48bed2011-09-26 11:23:06 +0200423/* DLSAP L2 -> L3 (RSLms) */
424static int send_rslms_dlsap(struct osmo_dlsap_prim *dp,
425 struct lapd_msg_ctx *lctx)
Harald Welte1f0b8c22011-06-27 10:51:37 +0200426{
rootaf48bed2011-09-26 11:23:06 +0200427 struct lapd_datalink *dl = lctx->dl;
428 struct lapdm_datalink *mdl =
429 container_of(dl, struct lapdm_datalink, dl);
430 struct lapdm_msg_ctx *mctx = &mdl->mctx;
431 uint8_t rll_msg = 0;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200432
Andreas Eversberg78122ab2011-09-27 12:06:55 +0200433 switch (OSMO_PRIM_HDR(&dp->oph)) {
434 case OSMO_PRIM(PRIM_DL_EST, PRIM_OP_INDICATION):
435 rll_msg = RSL_MT_EST_IND;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200436 break;
Andreas Eversberg78122ab2011-09-27 12:06:55 +0200437 case OSMO_PRIM(PRIM_DL_EST, PRIM_OP_CONFIRM):
438 rll_msg = RSL_MT_EST_CONF;
rootaf48bed2011-09-26 11:23:06 +0200439 break;
Andreas Eversberg78122ab2011-09-27 12:06:55 +0200440 case OSMO_PRIM(PRIM_DL_DATA, PRIM_OP_INDICATION):
441 rll_msg = RSL_MT_DATA_IND;
rootaf48bed2011-09-26 11:23:06 +0200442 break;
Andreas Eversberg78122ab2011-09-27 12:06:55 +0200443 case OSMO_PRIM(PRIM_DL_UNIT_DATA, PRIM_OP_INDICATION):
444 return send_rslms_rll_l3_ui(mctx, dp->oph.msg);
445 case OSMO_PRIM(PRIM_DL_REL, PRIM_OP_INDICATION):
446 rll_msg = RSL_MT_REL_IND;
rootaf48bed2011-09-26 11:23:06 +0200447 break;
Andreas Eversberg78122ab2011-09-27 12:06:55 +0200448 case OSMO_PRIM(PRIM_DL_REL, PRIM_OP_CONFIRM):
449 rll_msg = RSL_MT_REL_CONF;
rootaf48bed2011-09-26 11:23:06 +0200450 break;
Andreas Eversberg78122ab2011-09-27 12:06:55 +0200451 case OSMO_PRIM(PRIM_DL_SUSP, PRIM_OP_CONFIRM):
452 rll_msg = RSL_MT_SUSP_CONF;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200453 break;
Andreas Eversberg78122ab2011-09-27 12:06:55 +0200454 case OSMO_PRIM(PRIM_MDL_ERROR, PRIM_OP_INDICATION):
455 rsl_rll_error(dp->u.error_ind.cause, mctx);
456 if (dp->oph.msg)
457 msgb_free(dp->oph.msg);
458 return 0;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200459 }
rootaf48bed2011-09-26 11:23:06 +0200460
461 if (!rll_msg) {
462 LOGP(DLLAPD, LOGL_ERROR, "Unsupported op %d, prim %d. Please "
463 "fix!\n", dp->oph.primitive, dp->oph.operation);
464 return -EINVAL;
465 }
466
467 if (!dp->oph.msg)
468 return send_rll_simple(rll_msg, mctx);
469
470 return send_rslms_rll_l3(rll_msg, mctx, dp->oph.msg);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200471}
472
rootaf48bed2011-09-26 11:23:06 +0200473/* send a data frame to layer 1 */
474static int lapdm_send_ph_data_req(struct lapd_msg_ctx *lctx, struct msgb *msg)
Harald Welte1f0b8c22011-06-27 10:51:37 +0200475{
rootaf48bed2011-09-26 11:23:06 +0200476 uint8_t l3_len = msg->tail - msg->data;
477 struct lapd_datalink *dl = lctx->dl;
478 struct lapdm_datalink *mdl =
479 container_of(dl, struct lapdm_datalink, dl);
480 struct lapdm_msg_ctx *mctx = &mdl->mctx;
481 int format = lctx->format;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200482
rootaf48bed2011-09-26 11:23:06 +0200483 /* prepend l2 header */
484 msg->l2h = msgb_push(msg, 3);
485 msg->l2h[0] = LAPDm_ADDR(lctx->lpd, lctx->sapi, lctx->cr);
486 /* EA is set here too */
487 switch (format) {
488 case LAPD_FORM_I:
489 msg->l2h[1] = LAPDm_CTRL_I(lctx->n_recv, lctx->n_send,
490 lctx->p_f);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200491 break;
rootaf48bed2011-09-26 11:23:06 +0200492 case LAPD_FORM_S:
493 msg->l2h[1] = LAPDm_CTRL_S(lctx->n_recv, lctx->s_u, lctx->p_f);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200494 break;
rootaf48bed2011-09-26 11:23:06 +0200495 case LAPD_FORM_U:
496 msg->l2h[1] = LAPDm_CTRL_U(lctx->s_u, lctx->p_f);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200497 break;
498 default:
Harald Welte1f0b8c22011-06-27 10:51:37 +0200499 msgb_free(msg);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200500 return -EINVAL;
501 }
rootaf48bed2011-09-26 11:23:06 +0200502 msg->l2h[2] = LAPDm_LEN(l3_len); /* EL is set here too */
503 if (lctx->more)
504 msg->l2h[2] |= LAPDm_MORE;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200505
Andreas.Eversbergf1f80de2011-11-06 20:45:29 +0100506 /* add ACCH header with last indicated tx-power and TA */
507 if ((mctx->link_id & 0x40)) {
508 struct lapdm_entity *le = mdl->entity;
509
510 msg->l2h = msgb_push(msg, 2);
511 msg->l2h[0] = le->tx_power;
512 msg->l2h[1] = le->ta;
513 }
514
rootaf48bed2011-09-26 11:23:06 +0200515 return tx_ph_data_enqueue(mctx->dl, msg, mctx->chan_nr, mctx->link_id,
516 23);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200517}
518
Daniel Willmann3dc4e162014-03-20 19:24:48 +0100519static int update_pending_frames(struct lapd_msg_ctx *lctx)
520{
521 struct lapd_datalink *dl = lctx->dl;
522 struct msgb *msg;
523 int rc = -1;
524
525 llist_for_each_entry(msg, &dl->tx_queue, list) {
526 if (LAPDm_CTRL_is_I(msg->l2h[1])) {
527 msg->l2h[1] = LAPDm_CTRL_I(dl->v_recv, LAPDm_CTRL_I_Ns(msg->l2h[1]),
528 LAPDm_CTRL_PF_BIT(msg->l2h[1]));
529 rc = 0;
530 } else if (LAPDm_CTRL_is_S(msg->l2h[1])) {
531 LOGP(DLLAPD, LOGL_ERROR, "Supervisory frame in queue, this shouldn't happen\n");
532 }
533 }
534
535 return rc;
536}
537
Harald Welte1284c3e2018-05-01 18:11:02 +0200538/* determine if receiving a given LAPDm message is not permitted */
539static int lapdm_rx_not_permitted(const struct lapdm_entity *le,
540 const struct lapd_msg_ctx *lctx)
541{
542 /* we currently only implement SABM related checks here */
543 if (lctx->format != LAPD_FORM_U || lctx->s_u != LAPD_U_SABM)
544 return 0;
545
546 if (le->mode == LAPDM_MODE_BTS) {
547 if (le == &le->lapdm_ch->lapdm_acch) {
548 /* no contention resolution on SACCH */
549 if (lctx->length > 0)
550 return RLL_CAUSE_SABM_INFO_NOTALL;
551 } else {
552 switch (lctx->sapi) {
553 case 0:
554 /* SAPI0 must use contention resolution, i.e. L3 payload must exist */
555 if (lctx->length == 0)
556 return RLL_CAUSE_UFRM_INC_PARAM;
557 break;
558 case 3:
559 /* SAPI3 doesn't support contention resolution */
560 if (lctx->length > 0)
561 return RLL_CAUSE_SABM_INFO_NOTALL;
562 break;
563 }
564 }
565 } else if (le->mode == LAPDM_MODE_MS) {
566 /* contention resolution (L3 present) is only sent by MS, but
567 * never received by it */
568 if (lctx->length > 0)
569 return RLL_CAUSE_SABM_INFO_NOTALL;
570 }
571 return 0;
572}
573
Harald Welte1f0b8c22011-06-27 10:51:37 +0200574/* input into layer2 (from layer 1) */
rootaf48bed2011-09-26 11:23:06 +0200575static int l2_ph_data_ind(struct msgb *msg, struct lapdm_entity *le,
576 uint8_t chan_nr, uint8_t link_id)
Harald Welte1f0b8c22011-06-27 10:51:37 +0200577{
578 uint8_t cbits = chan_nr >> 3;
Harald Welte64207742011-06-27 23:32:14 +0200579 uint8_t sapi; /* we cannot take SAPI from link_id, as L1 has no clue */
Harald Welte1f0b8c22011-06-27 10:51:37 +0200580 struct lapdm_msg_ctx mctx;
rootaf48bed2011-09-26 11:23:06 +0200581 struct lapd_msg_ctx lctx;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200582 int rc = 0;
rootaf48bed2011-09-26 11:23:06 +0200583 int n201;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200584
585 /* when we reach here, we have a msgb with l2h pointing to the raw
586 * 23byte mac block. The l1h has already been purged. */
587
rootaf48bed2011-09-26 11:23:06 +0200588 memset(&mctx, 0, sizeof(mctx));
Harald Welte1f0b8c22011-06-27 10:51:37 +0200589 mctx.chan_nr = chan_nr;
590 mctx.link_id = link_id;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200591
Harald Welte1f0b8c22011-06-27 10:51:37 +0200592 /* check for L1 chan_nr/link_id and determine LAPDm hdr format */
593 if (cbits == 0x10 || cbits == 0x12) {
594 /* Format Bbis is used on BCCH and CCCH(PCH, NCH and AGCH) */
595 mctx.lapdm_fmt = LAPDm_FMT_Bbis;
rootaf48bed2011-09-26 11:23:06 +0200596 n201 = N201_Bbis;
Harald Welte64207742011-06-27 23:32:14 +0200597 sapi = 0;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200598 } else {
599 if (mctx.link_id & 0x40) {
Harald Welte7ca604b2011-06-29 12:13:51 +0200600 /* It was received from network on SACCH */
601
Andreas.Eversberg816e1782011-11-06 20:46:30 +0100602 /* If UI on SACCH sent by BTS, lapdm_fmt must be B4 */
603 if (le->mode == LAPDM_MODE_MS
604 && LAPDm_CTRL_is_U(msg->l2h[3])
605 && LAPDm_CTRL_U_BITS(msg->l2h[3]) == 0) {
Harald Welte7ca604b2011-06-29 12:13:51 +0200606 mctx.lapdm_fmt = LAPDm_FMT_B4;
rootaf48bed2011-09-26 11:23:06 +0200607 n201 = N201_B4;
608 LOGP(DLLAPD, LOGL_INFO, "fmt=B4\n");
Harald Welte7ca604b2011-06-29 12:13:51 +0200609 } else {
610 mctx.lapdm_fmt = LAPDm_FMT_B;
rootaf48bed2011-09-26 11:23:06 +0200611 n201 = N201_AB_SACCH;
612 LOGP(DLLAPD, LOGL_INFO, "fmt=B\n");
Harald Welte7ca604b2011-06-29 12:13:51 +0200613 }
Harald Welte1f0b8c22011-06-27 10:51:37 +0200614 /* SACCH frames have a two-byte L1 header that
615 * OsmocomBB L1 doesn't strip */
616 mctx.tx_power_ind = msg->l2h[0] & 0x1f;
617 mctx.ta_ind = msg->l2h[1];
618 msgb_pull(msg, 2);
619 msg->l2h += 2;
Harald Welte64207742011-06-27 23:32:14 +0200620 sapi = (msg->l2h[0] >> 2) & 7;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200621 } else {
622 mctx.lapdm_fmt = LAPDm_FMT_B;
rootaf48bed2011-09-26 11:23:06 +0200623 LOGP(DLLAPD, LOGL_INFO, "fmt=B\n");
Andreas.Eversbergcbed3272011-11-06 20:43:08 +0100624 n201 = N201_AB_SDCCH;
Harald Welte64207742011-06-27 23:32:14 +0200625 sapi = (msg->l2h[0] >> 2) & 7;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200626 }
627 }
628
Daniel Willmann55405fb2014-03-26 13:45:17 +0100629 mctx.dl = lapdm_datalink_for_sapi(le, sapi);
Harald Welte64207742011-06-27 23:32:14 +0200630 /* G.2.1 No action on frames containing an unallocated SAPI. */
631 if (!mctx.dl) {
rootaf48bed2011-09-26 11:23:06 +0200632 LOGP(DLLAPD, LOGL_NOTICE, "Received frame for unsupported "
Harald Welte64207742011-06-27 23:32:14 +0200633 "SAPI %d!\n", sapi);
Harald Welte64207742011-06-27 23:32:14 +0200634 msgb_free(msg);
635 return -EIO;
636 }
637
Harald Welte1f0b8c22011-06-27 10:51:37 +0200638 switch (mctx.lapdm_fmt) {
639 case LAPDm_FMT_A:
640 case LAPDm_FMT_B:
641 case LAPDm_FMT_B4:
rootaf48bed2011-09-26 11:23:06 +0200642 lctx.dl = &mctx.dl->dl;
643 /* obtain SAPI from address field */
644 mctx.link_id |= LAPDm_ADDR_SAPI(msg->l2h[0]);
645 /* G.2.3 EA bit set to "0" is not allowed in GSM */
646 if (!LAPDm_ADDR_EA(msg->l2h[0])) {
647 LOGP(DLLAPD, LOGL_NOTICE, "EA bit 0 is not allowed in "
648 "GSM\n");
Harald Welte1f0b8c22011-06-27 10:51:37 +0200649 msgb_free(msg);
rootaf48bed2011-09-26 11:23:06 +0200650 rsl_rll_error(RLL_CAUSE_FRM_UNIMPL, &mctx);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200651 return -EINVAL;
652 }
rootaf48bed2011-09-26 11:23:06 +0200653 /* adress field */
654 lctx.lpd = LAPDm_ADDR_LPD(msg->l2h[0]);
655 lctx.sapi = LAPDm_ADDR_SAPI(msg->l2h[0]);
656 lctx.cr = LAPDm_ADDR_CR(msg->l2h[0]);
657 /* command field */
658 if (LAPDm_CTRL_is_I(msg->l2h[1])) {
659 lctx.format = LAPD_FORM_I;
660 lctx.n_send = LAPDm_CTRL_I_Ns(msg->l2h[1]);
661 lctx.n_recv = LAPDm_CTRL_Nr(msg->l2h[1]);
662 } else if (LAPDm_CTRL_is_S(msg->l2h[1])) {
663 lctx.format = LAPD_FORM_S;
664 lctx.n_recv = LAPDm_CTRL_Nr(msg->l2h[1]);
665 lctx.s_u = LAPDm_CTRL_S_BITS(msg->l2h[1]);
666 } else if (LAPDm_CTRL_is_U(msg->l2h[1])) {
667 lctx.format = LAPD_FORM_U;
668 lctx.s_u = LAPDm_CTRL_U_BITS(msg->l2h[1]);
669 } else
670 lctx.format = LAPD_FORM_UKN;
671 lctx.p_f = LAPDm_CTRL_PF_BIT(msg->l2h[1]);
672 if (lctx.sapi != LAPDm_SAPI_NORMAL
673 && lctx.sapi != LAPDm_SAPI_SMS
674 && lctx.format == LAPD_FORM_U
675 && lctx.s_u == LAPDm_U_UI) {
676 /* 5.3.3 UI frames with invalid SAPI values shall be
677 * discarded
678 */
679 LOGP(DLLAPD, LOGL_INFO, "sapi=%u (discarding)\n",
680 lctx.sapi);
681 msgb_free(msg);
682 return 0;
683 }
684 if (mctx.lapdm_fmt == LAPDm_FMT_B4) {
685 lctx.n201 = n201;
686 lctx.length = n201;
687 lctx.more = 0;
688 msg->l3h = msg->l2h + 2;
Jacob Erlbeck8dac4152014-01-28 11:03:11 +0100689 msgb_pull_to_l3(msg);
rootaf48bed2011-09-26 11:23:06 +0200690 } else {
691 /* length field */
692 if (!(msg->l2h[2] & LAPDm_EL)) {
693 /* G.4.1 If the EL bit is set to "0", an
694 * MDL-ERROR-INDICATION primitive with cause
695 * "frame not implemented" is sent to the
696 * mobile management entity. */
697 LOGP(DLLAPD, LOGL_NOTICE, "we don't support "
698 "multi-octet length\n");
699 msgb_free(msg);
700 rsl_rll_error(RLL_CAUSE_FRM_UNIMPL, &mctx);
701 return -EINVAL;
702 }
703 lctx.n201 = n201;
704 lctx.length = msg->l2h[2] >> 2;
705 lctx.more = !!(msg->l2h[2] & LAPDm_MORE);
706 msg->l3h = msg->l2h + 3;
Jacob Erlbeck8dac4152014-01-28 11:03:11 +0100707 msgb_pull_to_l3(msg);
rootaf48bed2011-09-26 11:23:06 +0200708 }
709 /* store context for messages from lapd */
710 memcpy(&mctx.dl->mctx, &mctx, sizeof(mctx.dl->mctx));
Harald Welte1284c3e2018-05-01 18:11:02 +0200711 rc =lapdm_rx_not_permitted(le, &lctx);
712 if (rc > 0) {
713 LOGP(DLLAPD, LOGL_NOTICE, "received message not permitted");
714 msgb_free(msg);
715 rsl_rll_error(rc, &mctx);
716 return -EINVAL;
717 }
rootaf48bed2011-09-26 11:23:06 +0200718 /* send to LAPD */
719 rc = lapd_ph_data_ind(msg, &lctx);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200720 break;
721 case LAPDm_FMT_Bter:
722 /* FIXME */
723 msgb_free(msg);
724 break;
725 case LAPDm_FMT_Bbis:
726 /* directly pass up to layer3 */
rootaf48bed2011-09-26 11:23:06 +0200727 LOGP(DLLAPD, LOGL_INFO, "fmt=Bbis UI\n");
Harald Welte1f0b8c22011-06-27 10:51:37 +0200728 msg->l3h = msg->l2h;
Jacob Erlbeck8dac4152014-01-28 11:03:11 +0100729 msgb_pull_to_l3(msg);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200730 rc = send_rslms_rll_l3(RSL_MT_UNIT_DATA_IND, &mctx, msg);
731 break;
732 default:
733 msgb_free(msg);
734 }
735
736 return rc;
737}
738
739/* input into layer2 (from layer 1) */
740static int l2_ph_rach_ind(struct lapdm_entity *le, uint8_t ra, uint32_t fn, uint8_t acc_delay)
741{
742 struct abis_rsl_cchan_hdr *ch;
743 struct gsm48_req_ref req_ref;
744 struct gsm_time gt;
745 struct msgb *msg = msgb_alloc_headroom(512, 64, "RSL CHAN RQD");
746
Jacob Erlbeckd154f8b2015-04-09 14:22:21 +0200747 if (!msg)
748 return -ENOMEM;
749
Harald Welte1f0b8c22011-06-27 10:51:37 +0200750 msg->l2h = msgb_push(msg, sizeof(*ch));
751 ch = (struct abis_rsl_cchan_hdr *)msg->l2h;
752 rsl_init_cchan_hdr(ch, RSL_MT_CHAN_RQD);
753 ch->chan_nr = RSL_CHAN_RACH;
754
755 /* generate a RSL CHANNEL REQUIRED message */
756 gsm_fn2gsmtime(&gt, fn);
757 req_ref.ra = ra;
758 req_ref.t1 = gt.t1; /* FIXME: modulo? */
759 req_ref.t2 = gt.t2;
760 req_ref.t3_low = gt.t3 & 7;
761 req_ref.t3_high = gt.t3 >> 3;
762
763 msgb_tv_fixed_put(msg, RSL_IE_REQ_REFERENCE, 3, (uint8_t *) &req_ref);
764 msgb_tv_put(msg, RSL_IE_ACCESS_DELAY, acc_delay);
765
766 return rslms_sendmsg(msg, le);
767}
768
769static int l2_ph_chan_conf(struct msgb *msg, struct lapdm_entity *le, uint32_t frame_nr);
770
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200771/*! Receive a PH-SAP primitive from L1 */
Harald Welte1f0b8c22011-06-27 10:51:37 +0200772int lapdm_phsap_up(struct osmo_prim_hdr *oph, struct lapdm_entity *le)
773{
774 struct osmo_phsap_prim *pp = (struct osmo_phsap_prim *) oph;
775 int rc = 0;
776
777 if (oph->sap != SAP_GSM_PH) {
rootaf48bed2011-09-26 11:23:06 +0200778 LOGP(DLLAPD, LOGL_ERROR, "primitive for unknown SAP %u\n",
Harald Welte1f0b8c22011-06-27 10:51:37 +0200779 oph->sap);
Andreas Eversbergb36ad2d2013-02-05 12:01:32 +0100780 rc = -ENODEV;
781 goto free;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200782 }
783
784 switch (oph->primitive) {
785 case PRIM_PH_DATA:
786 if (oph->operation != PRIM_OP_INDICATION) {
rootaf48bed2011-09-26 11:23:06 +0200787 LOGP(DLLAPD, LOGL_ERROR, "PH_DATA is not INDICATION %u\n",
Harald Welte1f0b8c22011-06-27 10:51:37 +0200788 oph->operation);
Andreas Eversbergb36ad2d2013-02-05 12:01:32 +0100789 rc = -ENODEV;
790 goto free;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200791 }
792 rc = l2_ph_data_ind(oph->msg, le, pp->u.data.chan_nr,
793 pp->u.data.link_id);
794 break;
795 case PRIM_PH_RTS:
796 if (oph->operation != PRIM_OP_INDICATION) {
rootaf48bed2011-09-26 11:23:06 +0200797 LOGP(DLLAPD, LOGL_ERROR, "PH_RTS is not INDICATION %u\n",
Harald Welte1f0b8c22011-06-27 10:51:37 +0200798 oph->operation);
Andreas Eversbergb36ad2d2013-02-05 12:01:32 +0100799 rc = -ENODEV;
800 goto free;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200801 }
802 rc = l2_ph_data_conf(oph->msg, le);
803 break;
804 case PRIM_PH_RACH:
805 switch (oph->operation) {
806 case PRIM_OP_INDICATION:
807 rc = l2_ph_rach_ind(le, pp->u.rach_ind.ra, pp->u.rach_ind.fn,
808 pp->u.rach_ind.acc_delay);
809 break;
810 case PRIM_OP_CONFIRM:
811 rc = l2_ph_chan_conf(oph->msg, le, pp->u.rach_ind.fn);
812 break;
813 default:
Andreas Eversbergb36ad2d2013-02-05 12:01:32 +0100814 rc = -EIO;
815 goto free;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200816 }
817 break;
Andreas Eversbergb36ad2d2013-02-05 12:01:32 +0100818 default:
819 LOGP(DLLAPD, LOGL_ERROR, "Unknown primitive %u\n",
820 oph->primitive);
821 rc = -EINVAL;
822 goto free;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200823 }
824
825 return rc;
Andreas Eversbergb36ad2d2013-02-05 12:01:32 +0100826
827free:
828 msgb_free(oph->msg);
829 return rc;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200830}
831
832
833/* L3 -> L2 / RSLMS -> LAPDm */
834
rootaf48bed2011-09-26 11:23:06 +0200835/* Set LAPDm context for established connection */
836static int set_lapdm_context(struct lapdm_datalink *dl, uint8_t chan_nr,
837 uint8_t link_id, int n201, uint8_t sapi)
838{
839 memset(&dl->mctx, 0, sizeof(dl->mctx));
840 dl->mctx.dl = dl;
841 dl->mctx.chan_nr = chan_nr;
842 dl->mctx.link_id = link_id;
843 dl->dl.lctx.dl = &dl->dl;
844 dl->dl.lctx.n201 = n201;
845 dl->dl.lctx.sapi = sapi;
846
847 return 0;
848}
849
Harald Welte1f0b8c22011-06-27 10:51:37 +0200850/* L3 requests establishment of data link */
851static int rslms_rx_rll_est_req(struct msgb *msg, struct lapdm_datalink *dl)
852{
Harald Welte1f0b8c22011-06-27 10:51:37 +0200853 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
854 uint8_t chan_nr = rllh->chan_nr;
855 uint8_t link_id = rllh->link_id;
856 uint8_t sapi = rllh->link_id & 7;
857 struct tlv_parsed tv;
858 uint8_t length;
Andreas.Eversbergcbed3272011-11-06 20:43:08 +0100859 uint8_t n201 = (rllh->link_id & 0x40) ? N201_AB_SACCH : N201_AB_SDCCH;
rootaf48bed2011-09-26 11:23:06 +0200860 struct osmo_dlsap_prim dp;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200861
rootaf48bed2011-09-26 11:23:06 +0200862 /* Set LAPDm context for established connection */
863 set_lapdm_context(dl, chan_nr, link_id, n201, sapi);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200864
rootaf48bed2011-09-26 11:23:06 +0200865 rsl_tlv_parse(&tv, rllh->data, msgb_l2len(msg) - sizeof(*rllh));
Harald Welte1f0b8c22011-06-27 10:51:37 +0200866 if (TLVP_PRESENT(&tv, RSL_IE_L3_INFO)) {
rootaf48bed2011-09-26 11:23:06 +0200867 msg->l3h = (uint8_t *) TLVP_VAL(&tv, RSL_IE_L3_INFO);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200868 /* contention resolution establishment procedure */
869 if (sapi != 0) {
870 /* According to clause 6, the contention resolution
871 * procedure is only permitted with SAPI value 0 */
rootaf48bed2011-09-26 11:23:06 +0200872 LOGP(DLLAPD, LOGL_ERROR, "SAPI != 0 but contention"
Harald Welte1f0b8c22011-06-27 10:51:37 +0200873 "resolution (discarding)\n");
874 msgb_free(msg);
875 return send_rll_simple(RSL_MT_REL_IND, &dl->mctx);
876 }
877 /* transmit a SABM command with the P bit set to "1". The SABM
878 * command shall contain the layer 3 message unit */
879 length = TLVP_LEN(&tv, RSL_IE_L3_INFO);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200880 } else {
881 /* normal establishment procedure */
rootaf48bed2011-09-26 11:23:06 +0200882 msg->l3h = msg->l2h + sizeof(*rllh);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200883 length = 0;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200884 }
885
886 /* check if the layer3 message length exceeds N201 */
Andreas.Eversbergcbed3272011-11-06 20:43:08 +0100887 if (length > n201) {
rootaf48bed2011-09-26 11:23:06 +0200888 LOGP(DLLAPD, LOGL_ERROR, "frame too large: %d > N201(%d) "
Andreas.Eversbergcbed3272011-11-06 20:43:08 +0100889 "(discarding)\n", length, n201);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200890 msgb_free(msg);
891 return send_rll_simple(RSL_MT_REL_IND, &dl->mctx);
892 }
893
rootaf48bed2011-09-26 11:23:06 +0200894 /* Remove RLL header from msgb and set length to L3-info */
Jacob Erlbeck8dac4152014-01-28 11:03:11 +0100895 msgb_pull_to_l3(msg);
896 msgb_trim(msg, length);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200897
rootaf48bed2011-09-26 11:23:06 +0200898 /* prepare prim */
899 osmo_prim_init(&dp.oph, 0, PRIM_DL_EST, PRIM_OP_REQUEST, msg);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200900
rootaf48bed2011-09-26 11:23:06 +0200901 /* send to L2 */
902 return lapd_recv_dlsap(&dp, &dl->dl.lctx);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200903}
904
905/* L3 requests transfer of unnumbered information */
906static int rslms_rx_rll_udata_req(struct msgb *msg, struct lapdm_datalink *dl)
907{
Andreas.Eversberg816e1782011-11-06 20:46:30 +0100908 struct lapdm_entity *le = dl->entity;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200909 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
910 uint8_t chan_nr = rllh->chan_nr;
911 uint8_t link_id = rllh->link_id;
912 uint8_t sapi = link_id & 7;
913 struct tlv_parsed tv;
Max777be2e2017-03-01 18:16:44 +0100914 int length, ui_bts;
915
916 if (!le) {
917 LOGP(DLLAPD, LOGL_ERROR, "lapdm_datalink without entity error\n");
918 msgb_free(msg);
919 return -EMLINK;
920 }
921 ui_bts = (le->mode == LAPDM_MODE_BTS && (link_id & 0x40));
Harald Welte1f0b8c22011-06-27 10:51:37 +0200922
923 /* check if the layer3 message length exceeds N201 */
924
925 rsl_tlv_parse(&tv, rllh->data, msgb_l2len(msg)-sizeof(*rllh));
926
927 if (TLVP_PRESENT(&tv, RSL_IE_TIMING_ADVANCE)) {
Andreas.Eversbergf1f80de2011-11-06 20:45:29 +0100928 le->ta = *TLVP_VAL(&tv, RSL_IE_TIMING_ADVANCE);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200929 }
930 if (TLVP_PRESENT(&tv, RSL_IE_MS_POWER)) {
Andreas.Eversbergf1f80de2011-11-06 20:45:29 +0100931 le->tx_power = *TLVP_VAL(&tv, RSL_IE_MS_POWER);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200932 }
933 if (!TLVP_PRESENT(&tv, RSL_IE_L3_INFO)) {
rootaf48bed2011-09-26 11:23:06 +0200934 LOGP(DLLAPD, LOGL_ERROR, "unit data request without message "
Harald Welte1f0b8c22011-06-27 10:51:37 +0200935 "error\n");
936 msgb_free(msg);
937 return -EINVAL;
938 }
rootaf48bed2011-09-26 11:23:06 +0200939 msg->l3h = (uint8_t *) TLVP_VAL(&tv, RSL_IE_L3_INFO);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200940 length = TLVP_LEN(&tv, RSL_IE_L3_INFO);
941 /* check if the layer3 message length exceeds N201 */
Andreas Eversberg5977db02013-06-12 09:34:51 +0200942 if (length + ((link_id & 0x40) ? 4 : 2) + !ui_bts > 23) {
rootaf48bed2011-09-26 11:23:06 +0200943 LOGP(DLLAPD, LOGL_ERROR, "frame too large: %d > N201(%d) "
Andreas Eversberg5977db02013-06-12 09:34:51 +0200944 "(discarding)\n", length,
945 ((link_id & 0x40) ? 18 : 20) + ui_bts);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200946 msgb_free(msg);
947 return -EIO;
948 }
949
rootaf48bed2011-09-26 11:23:06 +0200950 LOGP(DLLAPD, LOGL_INFO, "sending unit data (tx_power=%d, ta=%d)\n",
Andreas.Eversbergf1f80de2011-11-06 20:45:29 +0100951 le->tx_power, le->ta);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200952
rootaf48bed2011-09-26 11:23:06 +0200953 /* Remove RLL header from msgb and set length to L3-info */
Jacob Erlbeck8dac4152014-01-28 11:03:11 +0100954 msgb_pull_to_l3(msg);
955 msgb_trim(msg, length);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200956
957 /* Push L1 + LAPDm header on msgb */
Andreas Eversberg5977db02013-06-12 09:34:51 +0200958 msg->l2h = msgb_push(msg, 2 + !ui_bts);
959 msg->l2h[0] = LAPDm_ADDR(LAPDm_LPD_NORMAL, sapi, dl->dl.cr.loc2rem.cmd);
960 msg->l2h[1] = LAPDm_CTRL_U(LAPDm_U_UI, 0);
Andreas.Eversberg816e1782011-11-06 20:46:30 +0100961 if (!ui_bts)
Andreas Eversberg5977db02013-06-12 09:34:51 +0200962 msg->l2h[2] = LAPDm_LEN(length);
963 if (link_id & 0x40) {
964 msg->l2h = msgb_push(msg, 2);
965 msg->l2h[0] = le->tx_power;
966 msg->l2h[1] = le->ta;
967 }
Harald Welte1f0b8c22011-06-27 10:51:37 +0200968
969 /* Tramsmit */
rootaf48bed2011-09-26 11:23:06 +0200970 return tx_ph_data_enqueue(dl, msg, chan_nr, link_id, 23);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200971}
972
973/* L3 requests transfer of acknowledged information */
974static int rslms_rx_rll_data_req(struct msgb *msg, struct lapdm_datalink *dl)
975{
976 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
977 struct tlv_parsed tv;
rootaf48bed2011-09-26 11:23:06 +0200978 int length;
979 struct osmo_dlsap_prim dp;
Harald Welte1f0b8c22011-06-27 10:51:37 +0200980
981 rsl_tlv_parse(&tv, rllh->data, msgb_l2len(msg)-sizeof(*rllh));
982 if (!TLVP_PRESENT(&tv, RSL_IE_L3_INFO)) {
rootaf48bed2011-09-26 11:23:06 +0200983 LOGP(DLLAPD, LOGL_ERROR, "data request without message "
Harald Welte1f0b8c22011-06-27 10:51:37 +0200984 "error\n");
985 msgb_free(msg);
986 return -EINVAL;
987 }
rootaf48bed2011-09-26 11:23:06 +0200988 msg->l3h = (uint8_t *) TLVP_VAL(&tv, RSL_IE_L3_INFO);
989 length = TLVP_LEN(&tv, RSL_IE_L3_INFO);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200990
rootaf48bed2011-09-26 11:23:06 +0200991 /* Remove RLL header from msgb and set length to L3-info */
Jacob Erlbeck8dac4152014-01-28 11:03:11 +0100992 msgb_pull_to_l3(msg);
993 msgb_trim(msg, length);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200994
rootaf48bed2011-09-26 11:23:06 +0200995 /* prepare prim */
996 osmo_prim_init(&dp.oph, 0, PRIM_DL_DATA, PRIM_OP_REQUEST, msg);
Harald Welte1f0b8c22011-06-27 10:51:37 +0200997
rootaf48bed2011-09-26 11:23:06 +0200998 /* send to L2 */
999 return lapd_recv_dlsap(&dp, &dl->dl.lctx);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001000}
1001
1002/* L3 requests suspension of data link */
1003static int rslms_rx_rll_susp_req(struct msgb *msg, struct lapdm_datalink *dl)
1004{
1005 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
1006 uint8_t sapi = rllh->link_id & 7;
rootaf48bed2011-09-26 11:23:06 +02001007 struct osmo_dlsap_prim dp;
Harald Welte1f0b8c22011-06-27 10:51:37 +02001008
1009 if (sapi != 0) {
rootaf48bed2011-09-26 11:23:06 +02001010 LOGP(DLLAPD, LOGL_ERROR, "SAPI != 0 while suspending\n");
Harald Welte1f0b8c22011-06-27 10:51:37 +02001011 msgb_free(msg);
1012 return -EINVAL;
1013 }
1014
rootaf48bed2011-09-26 11:23:06 +02001015 /* prepare prim */
1016 osmo_prim_init(&dp.oph, 0, PRIM_DL_SUSP, PRIM_OP_REQUEST, msg);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001017
rootaf48bed2011-09-26 11:23:06 +02001018 /* send to L2 */
1019 return lapd_recv_dlsap(&dp, &dl->dl.lctx);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001020}
1021
1022/* L3 requests resume of data link */
1023static int rslms_rx_rll_res_req(struct msgb *msg, struct lapdm_datalink *dl)
1024{
Harald Welte1f0b8c22011-06-27 10:51:37 +02001025 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
rootaf48bed2011-09-26 11:23:06 +02001026 int msg_type = rllh->c.msg_type;
Harald Welte1f0b8c22011-06-27 10:51:37 +02001027 uint8_t chan_nr = rllh->chan_nr;
1028 uint8_t link_id = rllh->link_id;
1029 uint8_t sapi = rllh->link_id & 7;
1030 struct tlv_parsed tv;
1031 uint8_t length;
Andreas.Eversbergcbed3272011-11-06 20:43:08 +01001032 uint8_t n201 = (rllh->link_id & 0x40) ? N201_AB_SACCH : N201_AB_SDCCH;
rootaf48bed2011-09-26 11:23:06 +02001033 struct osmo_dlsap_prim dp;
Harald Welte1f0b8c22011-06-27 10:51:37 +02001034
rootaf48bed2011-09-26 11:23:06 +02001035 /* Set LAPDm context for established connection */
1036 set_lapdm_context(dl, chan_nr, link_id, n201, sapi);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001037
1038 rsl_tlv_parse(&tv, rllh->data, msgb_l2len(msg)-sizeof(*rllh));
1039 if (!TLVP_PRESENT(&tv, RSL_IE_L3_INFO)) {
rootaf48bed2011-09-26 11:23:06 +02001040 LOGP(DLLAPD, LOGL_ERROR, "resume without message error\n");
Harald Welte1f0b8c22011-06-27 10:51:37 +02001041 msgb_free(msg);
1042 return send_rll_simple(RSL_MT_REL_IND, &dl->mctx);
1043 }
rootaf48bed2011-09-26 11:23:06 +02001044 msg->l3h = (uint8_t *) TLVP_VAL(&tv, RSL_IE_L3_INFO);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001045 length = TLVP_LEN(&tv, RSL_IE_L3_INFO);
1046
rootaf48bed2011-09-26 11:23:06 +02001047 /* Remove RLL header from msgb and set length to L3-info */
Jacob Erlbeck8dac4152014-01-28 11:03:11 +01001048 msgb_pull_to_l3(msg);
1049 msgb_trim(msg, length);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001050
rootaf48bed2011-09-26 11:23:06 +02001051 /* prepare prim */
1052 osmo_prim_init(&dp.oph, 0, (msg_type == RSL_MT_RES_REQ) ? PRIM_DL_RES
1053 : PRIM_DL_RECON, PRIM_OP_REQUEST, msg);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001054
rootaf48bed2011-09-26 11:23:06 +02001055 /* send to L2 */
1056 return lapd_recv_dlsap(&dp, &dl->dl.lctx);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001057}
1058
1059/* L3 requests release of data link */
1060static int rslms_rx_rll_rel_req(struct msgb *msg, struct lapdm_datalink *dl)
1061{
Harald Welte1f0b8c22011-06-27 10:51:37 +02001062 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001063 uint8_t mode = 0;
rootaf48bed2011-09-26 11:23:06 +02001064 struct osmo_dlsap_prim dp;
Harald Welte1f0b8c22011-06-27 10:51:37 +02001065
1066 /* get release mode */
1067 if (rllh->data[0] == RSL_IE_RELEASE_MODE)
1068 mode = rllh->data[1] & 1;
1069
Harald Welte1f0b8c22011-06-27 10:51:37 +02001070 /* Pull rllh */
Jacob Erlbeck8dac4152014-01-28 11:03:11 +01001071 msgb_pull_to_l3(msg);
Harald Welte973c3c32012-04-26 21:50:54 +02001072
1073 /* 04.06 3.8.3: No information field is permitted with the DISC
1074 * command. */
Jacob Erlbeck8dac4152014-01-28 11:03:11 +01001075 msgb_trim(msg, 0);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001076
rootaf48bed2011-09-26 11:23:06 +02001077 /* prepare prim */
1078 osmo_prim_init(&dp.oph, 0, PRIM_DL_REL, PRIM_OP_REQUEST, msg);
1079 dp.u.rel_req.mode = mode;
Harald Welte1f0b8c22011-06-27 10:51:37 +02001080
rootaf48bed2011-09-26 11:23:06 +02001081 /* send to L2 */
1082 return lapd_recv_dlsap(&dp, &dl->dl.lctx);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001083}
1084
1085/* L3 requests channel in idle state */
1086static int rslms_rx_chan_rqd(struct lapdm_channel *lc, struct msgb *msg)
1087{
1088 struct abis_rsl_cchan_hdr *cch = msgb_l2(msg);
1089 void *l1ctx = lc->lapdm_dcch.l1_ctx;
1090 struct osmo_phsap_prim pp;
1091
1092 osmo_prim_init(&pp.oph, SAP_GSM_PH, PRIM_PH_RACH,
1093 PRIM_OP_REQUEST, NULL);
1094
1095 if (msgb_l2len(msg) < sizeof(*cch) + 4 + 2 + 2) {
rootaf48bed2011-09-26 11:23:06 +02001096 LOGP(DLLAPD, LOGL_ERROR, "Message too short for CHAN RQD!\n");
Harald Welte1f0b8c22011-06-27 10:51:37 +02001097 return -EINVAL;
1098 }
1099 if (cch->data[0] != RSL_IE_REQ_REFERENCE) {
rootaf48bed2011-09-26 11:23:06 +02001100 LOGP(DLLAPD, LOGL_ERROR, "Missing REQ REFERENCE IE\n");
Harald Welte1f0b8c22011-06-27 10:51:37 +02001101 return -EINVAL;
1102 }
1103 pp.u.rach_req.ra = cch->data[1];
1104 pp.u.rach_req.offset = ((cch->data[2] & 0x7f) << 8) | cch->data[3];
1105 pp.u.rach_req.is_combined_ccch = cch->data[2] >> 7;
1106
1107 if (cch->data[4] != RSL_IE_ACCESS_DELAY) {
rootaf48bed2011-09-26 11:23:06 +02001108 LOGP(DLLAPD, LOGL_ERROR, "Missing ACCESS_DELAY IE\n");
Harald Welte1f0b8c22011-06-27 10:51:37 +02001109 return -EINVAL;
1110 }
1111 /* TA = 0 - delay */
1112 pp.u.rach_req.ta = 0 - cch->data[5];
1113
1114 if (cch->data[6] != RSL_IE_MS_POWER) {
rootaf48bed2011-09-26 11:23:06 +02001115 LOGP(DLLAPD, LOGL_ERROR, "Missing MS POWER IE\n");
Harald Welte1f0b8c22011-06-27 10:51:37 +02001116 return -EINVAL;
1117 }
1118 pp.u.rach_req.tx_power = cch->data[7];
1119
1120 msgb_free(msg);
1121
1122 return lc->lapdm_dcch.l1_prim_cb(&pp.oph, l1ctx);
1123}
1124
1125/* L1 confirms channel request */
1126static int l2_ph_chan_conf(struct msgb *msg, struct lapdm_entity *le, uint32_t frame_nr)
1127{
1128 struct abis_rsl_cchan_hdr *ch;
1129 struct gsm_time tm;
1130 struct gsm48_req_ref *ref;
1131
1132 gsm_fn2gsmtime(&tm, frame_nr);
1133
Jacob Erlbeck8dac4152014-01-28 11:03:11 +01001134 msgb_pull_to_l3(msg);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001135 msg->l2h = msgb_push(msg, sizeof(*ch) + sizeof(*ref));
1136 ch = (struct abis_rsl_cchan_hdr *)msg->l2h;
1137 rsl_init_cchan_hdr(ch, RSL_MT_CHAN_CONF);
1138 ch->chan_nr = RSL_CHAN_RACH;
1139 ch->data[0] = RSL_IE_REQ_REFERENCE;
1140 ref = (struct gsm48_req_ref *) (ch->data + 1);
1141 ref->t1 = tm.t1;
1142 ref->t2 = tm.t2;
1143 ref->t3_low = tm.t3 & 0x7;
1144 ref->t3_high = tm.t3 >> 3;
Pau Espin Pedrola99e1102017-12-08 14:30:47 +01001145
Harald Welte1f0b8c22011-06-27 10:51:37 +02001146 return rslms_sendmsg(msg, le);
1147}
1148
Harald Welte1f0b8c22011-06-27 10:51:37 +02001149/* incoming RSLms RLL message from L3 */
1150static int rslms_rx_rll(struct msgb *msg, struct lapdm_channel *lc)
1151{
1152 struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
1153 int msg_type = rllh->c.msg_type;
1154 uint8_t sapi = rllh->link_id & 7;
1155 struct lapdm_entity *le;
1156 struct lapdm_datalink *dl;
Harald Welte1f0b8c22011-06-27 10:51:37 +02001157 int rc = 0;
1158
1159 if (msgb_l2len(msg) < sizeof(*rllh)) {
rootaf48bed2011-09-26 11:23:06 +02001160 LOGP(DLLAPD, LOGL_ERROR, "Message too short for RLL hdr!\n");
Andreas.Eversberga42b6992011-11-06 20:31:47 +01001161 msgb_free(msg);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001162 return -EINVAL;
1163 }
1164
1165 if (rllh->link_id & 0x40)
1166 le = &lc->lapdm_acch;
1167 else
1168 le = &lc->lapdm_dcch;
1169
Harald Welte1a87c1b2015-12-14 15:26:07 +01001170 /* 4.1.1.5 / 4.1.1.6 / 4.1.1.7 all only exist on MS side, not
1171 * BTS side */
1172 if (le->mode == LAPDM_MODE_BTS) {
1173 switch (msg_type) {
1174 case RSL_MT_SUSP_REQ:
1175 case RSL_MT_RES_REQ:
1176 case RSL_MT_RECON_REQ:
1177 LOGP(DLLAPD, LOGL_NOTICE, "(%p) RLL Message '%s' unsupported in BTS side LAPDm\n",
1178 lc->name, rsl_msg_name(msg_type));
1179 msgb_free(msg);
1180 return -EINVAL;
1181 break;
1182 default:
1183 break;
1184 }
1185 }
1186
Holger Hans Peter Freytherc6206042014-01-23 15:00:55 +01001187 /* G.2.1 No action shall be taken on frames containing an unallocated
Harald Welte1f0b8c22011-06-27 10:51:37 +02001188 * SAPI.
1189 */
Daniel Willmann55405fb2014-03-26 13:45:17 +01001190 dl = lapdm_datalink_for_sapi(le, sapi);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001191 if (!dl) {
rootaf48bed2011-09-26 11:23:06 +02001192 LOGP(DLLAPD, LOGL_ERROR, "No instance for SAPI %d!\n", sapi);
Andreas.Eversberga42b6992011-11-06 20:31:47 +01001193 msgb_free(msg);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001194 return -EINVAL;
1195 }
1196
Daniel Willmanne5233922012-12-25 23:15:50 +01001197 switch (msg_type) {
Daniel Willmanne5233922012-12-25 23:15:50 +01001198 case RSL_MT_DATA_REQ:
1199 case RSL_MT_SUSP_REQ:
1200 case RSL_MT_REL_REQ:
1201 /* This is triggered in abnormal error conditions where
1202 * set_lapdm_context() was not called for the channel earlier. */
1203 if (!dl->dl.lctx.dl) {
1204 LOGP(DLLAPD, LOGL_NOTICE, "(%p) RLL Message '%s' received without LAPDm context. (sapi %d)\n",
1205 lc->name, rsl_msg_name(msg_type), sapi);
1206 msgb_free(msg);
1207 return -EINVAL;
1208 }
1209 break;
1210 default:
1211 LOGP(DLLAPD, LOGL_INFO, "(%p) RLL Message '%s' received. (sapi %d)\n",
1212 lc->name, rsl_msg_name(msg_type), sapi);
1213 }
Harald Welte1f0b8c22011-06-27 10:51:37 +02001214
rootaf48bed2011-09-26 11:23:06 +02001215 switch (msg_type) {
1216 case RSL_MT_UNIT_DATA_REQ:
1217 rc = rslms_rx_rll_udata_req(msg, dl);
1218 break;
1219 case RSL_MT_EST_REQ:
1220 rc = rslms_rx_rll_est_req(msg, dl);
1221 break;
1222 case RSL_MT_DATA_REQ:
1223 rc = rslms_rx_rll_data_req(msg, dl);
1224 break;
1225 case RSL_MT_SUSP_REQ:
1226 rc = rslms_rx_rll_susp_req(msg, dl);
1227 break;
1228 case RSL_MT_RES_REQ:
1229 rc = rslms_rx_rll_res_req(msg, dl);
1230 break;
1231 case RSL_MT_RECON_REQ:
1232 rc = rslms_rx_rll_res_req(msg, dl);
1233 break;
1234 case RSL_MT_REL_REQ:
1235 rc = rslms_rx_rll_rel_req(msg, dl);
1236 break;
1237 default:
1238 LOGP(DLLAPD, LOGL_NOTICE, "Message unsupported.\n");
Harald Welte1f0b8c22011-06-27 10:51:37 +02001239 msgb_free(msg);
rootaf48bed2011-09-26 11:23:06 +02001240 rc = -EINVAL;
Harald Welte1f0b8c22011-06-27 10:51:37 +02001241 }
Harald Welte1f0b8c22011-06-27 10:51:37 +02001242
1243 return rc;
1244}
1245
1246/* incoming RSLms COMMON CHANNEL message from L3 */
1247static int rslms_rx_com_chan(struct msgb *msg, struct lapdm_channel *lc)
1248{
1249 struct abis_rsl_cchan_hdr *cch = msgb_l2(msg);
1250 int msg_type = cch->c.msg_type;
1251 int rc = 0;
1252
1253 if (msgb_l2len(msg) < sizeof(*cch)) {
rootaf48bed2011-09-26 11:23:06 +02001254 LOGP(DLLAPD, LOGL_ERROR, "Message too short for COM CHAN hdr!\n");
Harald Welte1f0b8c22011-06-27 10:51:37 +02001255 return -EINVAL;
1256 }
1257
1258 switch (msg_type) {
1259 case RSL_MT_CHAN_RQD:
1260 /* create and send RACH request */
1261 rc = rslms_rx_chan_rqd(lc, msg);
1262 break;
1263 default:
rootaf48bed2011-09-26 11:23:06 +02001264 LOGP(DLLAPD, LOGL_NOTICE, "Unknown COMMON CHANNEL msg %d!\n",
Harald Welte1f0b8c22011-06-27 10:51:37 +02001265 msg_type);
1266 msgb_free(msg);
1267 return 0;
1268 }
1269
1270 return rc;
1271}
1272
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001273/*! Receive a RSLms \ref msgb from Layer 3 */
Harald Welte1f0b8c22011-06-27 10:51:37 +02001274int lapdm_rslms_recvmsg(struct msgb *msg, struct lapdm_channel *lc)
1275{
1276 struct abis_rsl_common_hdr *rslh = msgb_l2(msg);
1277 int rc = 0;
1278
1279 if (msgb_l2len(msg) < sizeof(*rslh)) {
rootaf48bed2011-09-26 11:23:06 +02001280 LOGP(DLLAPD, LOGL_ERROR, "Message too short RSL hdr!\n");
Harald Welte1f0b8c22011-06-27 10:51:37 +02001281 return -EINVAL;
1282 }
1283
1284 switch (rslh->msg_discr & 0xfe) {
1285 case ABIS_RSL_MDISC_RLL:
1286 rc = rslms_rx_rll(msg, lc);
1287 break;
1288 case ABIS_RSL_MDISC_COM_CHAN:
1289 rc = rslms_rx_com_chan(msg, lc);
1290 break;
1291 default:
rootaf48bed2011-09-26 11:23:06 +02001292 LOGP(DLLAPD, LOGL_ERROR, "unknown RSLms message "
Harald Welte1f0b8c22011-06-27 10:51:37 +02001293 "discriminator 0x%02x", rslh->msg_discr);
1294 msgb_free(msg);
1295 return -EINVAL;
1296 }
1297
1298 return rc;
1299}
1300
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001301/*! Set the \ref lapdm_mode of a LAPDm entity */
Harald Welte1f0b8c22011-06-27 10:51:37 +02001302int lapdm_entity_set_mode(struct lapdm_entity *le, enum lapdm_mode mode)
1303{
rootaf48bed2011-09-26 11:23:06 +02001304 int i;
1305 enum lapd_mode lm;
1306
Harald Welte1f0b8c22011-06-27 10:51:37 +02001307 switch (mode) {
1308 case LAPDM_MODE_MS:
rootaf48bed2011-09-26 11:23:06 +02001309 lm = LAPD_MODE_USER;
Harald Welte1f0b8c22011-06-27 10:51:37 +02001310 break;
1311 case LAPDM_MODE_BTS:
rootaf48bed2011-09-26 11:23:06 +02001312 lm = LAPD_MODE_NETWORK;
Harald Welte1f0b8c22011-06-27 10:51:37 +02001313 break;
1314 default:
1315 return -EINVAL;
1316 }
1317
rootaf48bed2011-09-26 11:23:06 +02001318 for (i = 0; i < ARRAY_SIZE(le->datalink); i++) {
1319 lapd_set_mode(&le->datalink[i].dl, lm);
1320 }
1321
Harald Welte1f0b8c22011-06-27 10:51:37 +02001322 le->mode = mode;
1323
1324 return 0;
1325}
1326
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001327/*! Set the \ref lapdm_mode of a LAPDm channel*/
Harald Welte1f0b8c22011-06-27 10:51:37 +02001328int lapdm_channel_set_mode(struct lapdm_channel *lc, enum lapdm_mode mode)
1329{
1330 int rc;
1331
1332 rc = lapdm_entity_set_mode(&lc->lapdm_dcch, mode);
1333 if (rc < 0)
1334 return rc;
1335
1336 return lapdm_entity_set_mode(&lc->lapdm_acch, mode);
1337}
1338
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001339/*! Set the L1 callback and context of a LAPDm channel */
Harald Welte1f0b8c22011-06-27 10:51:37 +02001340void lapdm_channel_set_l1(struct lapdm_channel *lc, osmo_prim_cb cb, void *ctx)
1341{
1342 lc->lapdm_dcch.l1_prim_cb = cb;
1343 lc->lapdm_acch.l1_prim_cb = cb;
1344 lc->lapdm_dcch.l1_ctx = ctx;
1345 lc->lapdm_acch.l1_ctx = ctx;
1346}
1347
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001348/*! Set the L3 callback and context of a LAPDm channel */
Harald Welte1f0b8c22011-06-27 10:51:37 +02001349void lapdm_channel_set_l3(struct lapdm_channel *lc, lapdm_cb_t cb, void *ctx)
1350{
1351 lc->lapdm_dcch.l3_cb = cb;
1352 lc->lapdm_acch.l3_cb = cb;
1353 lc->lapdm_dcch.l3_ctx = ctx;
1354 lc->lapdm_acch.l3_ctx = ctx;
1355}
1356
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001357/*! Reset an entire LAPDm entity and all its datalinks */
Harald Welte1f0b8c22011-06-27 10:51:37 +02001358void lapdm_entity_reset(struct lapdm_entity *le)
1359{
1360 struct lapdm_datalink *dl;
1361 int i;
1362
1363 for (i = 0; i < ARRAY_SIZE(le->datalink); i++) {
1364 dl = &le->datalink[i];
rootaf48bed2011-09-26 11:23:06 +02001365 lapd_dl_reset(&dl->dl);
Harald Welte1f0b8c22011-06-27 10:51:37 +02001366 }
1367}
1368
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001369/*! Reset a LAPDm channel with all its entities */
Harald Welte1f0b8c22011-06-27 10:51:37 +02001370void lapdm_channel_reset(struct lapdm_channel *lc)
1371{
1372 lapdm_entity_reset(&lc->lapdm_dcch);
1373 lapdm_entity_reset(&lc->lapdm_acch);
1374}
1375
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001376/*! Set the flags of a LAPDm entity */
Harald Welte1f0b8c22011-06-27 10:51:37 +02001377void lapdm_entity_set_flags(struct lapdm_entity *le, unsigned int flags)
1378{
1379 le->flags = flags;
1380}
1381
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001382/*! Set the flags of all LAPDm entities in a LAPDm channel */
Harald Welte1f0b8c22011-06-27 10:51:37 +02001383void lapdm_channel_set_flags(struct lapdm_channel *lc, unsigned int flags)
1384{
1385 lapdm_entity_set_flags(&lc->lapdm_dcch, flags);
1386 lapdm_entity_set_flags(&lc->lapdm_acch, flags);
1387}
Harald Welte6bdf0b12011-08-17 18:22:08 +02001388
Sylvain Munautdca7d2c2012-04-18 21:53:23 +02001389/*! @} */