blob: 4c0bb8a931cf6119a9301470236166d3f6aaf064 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file gprs_bssgp.c
2 * GPRS BSSGP protocol implementation as per 3GPP TS 08.18. */
3/*
4 * (C) 2009-2017 by Harald Welte <laforge@gnumonks.org>
Harald Welte9ba50052010-03-14 15:45:01 +08005 *
6 * All Rights Reserved
7 *
Harald Weltee08da972017-11-13 01:00:26 +09008 * SPDX-License-Identifier: GPL-2.0+
9 *
Harald Welte9ba50052010-03-14 15:45:01 +080010 * This program is free software; you can redistribute it and/or modify
Harald Welte7fa89c22014-10-26 20:33:09 +010011 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
Harald Welte9ba50052010-03-14 15:45:01 +080013 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte7fa89c22014-10-26 20:33:09 +010018 * GNU General Public License for more details.
Harald Welte9ba50052010-03-14 15:45:01 +080019 *
Harald Welte7fa89c22014-10-26 20:33:09 +010020 * You should have received a copy of the GNU General Public License
Harald Weltee4cbb3f2011-01-01 15:25:50 +010021 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte9ba50052010-03-14 15:45:01 +080022 *
Harald Welte4e5721d2010-05-17 23:41:43 +020023 * TODO:
24 * o properly count incoming BVC-RESET packets in counter group
25 * o set log context as early as possible for outgoing packets
Harald Welte9ba50052010-03-14 15:45:01 +080026 */
27
28#include <errno.h>
Harald Welte8f9a3ee2010-05-02 11:26:34 +020029#include <stdint.h>
Harald Welte9ba50052010-03-14 15:45:01 +080030
Pablo Neira Ayusoff663232011-03-22 16:47:59 +010031#include <osmocom/core/msgb.h>
Harald Weltebfe62e52017-05-15 12:48:30 +020032#include <osmocom/core/byteswap.h>
33#include <osmocom/core/bit16gen.h>
Pablo Neira Ayusoff663232011-03-22 16:47:59 +010034#include <osmocom/gsm/tlv.h>
35#include <osmocom/core/talloc.h>
36#include <osmocom/core/rate_ctr.h>
Jacob Erlbeckbc9d9ac2015-11-02 14:49:35 +010037#include <osmocom/core/stats.h>
Harald Welte6752fa42010-05-02 09:23:16 +020038
Harald Welte73952e32012-06-16 14:59:56 +080039#include <osmocom/gprs/gprs_bssgp.h>
Max8b8938f2017-06-29 19:48:29 +020040#include <osmocom/gprs/gprs_bssgp_bss.h>
Harald Welte73952e32012-06-16 14:59:56 +080041#include <osmocom/gprs/gprs_ns.h>
42
Harald Weltecca49632012-06-16 17:45:59 +080043#include "common_vty.h"
44
Harald Welte6752fa42010-05-02 09:23:16 +020045void *bssgp_tall_ctx = NULL;
46
Harald Welte25de8112010-05-13 21:26:28 +020047static const struct rate_ctr_desc bssgp_ctr_description[] = {
Harald Weltea7a50652017-10-03 17:49:21 +080048 { "packets:in", "Packets at BSSGP Level ( In)" },
49 { "packets:out","Packets at BSSGP Level (Out)" },
50 { "bytes:in", "Bytes at BSSGP Level ( In)" },
51 { "bytes:out", "Bytes at BSSGP Level (Out)" },
Harald Welte25de8112010-05-13 21:26:28 +020052 { "blocked", "BVC Blocking count" },
53 { "discarded", "BVC LLC Discarded count" },
Jacob Erlbeck36153dc2015-03-17 10:21:17 +010054 { "status", "BVC Status count" },
Harald Welte25de8112010-05-13 21:26:28 +020055};
56
57static const struct rate_ctr_group_desc bssgp_ctrg_desc = {
Harald Weltea7a50652017-10-03 17:49:21 +080058 .group_name_prefix = "bssgp:bss_ctx",
Harald Welte25de8112010-05-13 21:26:28 +020059 .group_description = "BSSGP Peer Statistics",
60 .num_ctr = ARRAY_SIZE(bssgp_ctr_description),
61 .ctr_desc = bssgp_ctr_description,
Jacob Erlbeckbc9d9ac2015-11-02 14:49:35 +010062 .class_id = OSMO_STATS_CLASS_PEER,
Harald Welte25de8112010-05-13 21:26:28 +020063};
64
Harald Weltea78b9c22010-05-17 23:02:42 +020065LLIST_HEAD(bssgp_bvc_ctxts);
Harald Welte6752fa42010-05-02 09:23:16 +020066
Harald Welted11c0592012-09-06 21:57:11 +020067static int _bssgp_tx_dl_ud(struct bssgp_flow_control *fc, struct msgb *msg,
68 uint32_t llc_pdu_len, void *priv);
69
Harald Welte6752fa42010-05-02 09:23:16 +020070/* Find a BTS Context based on parsed RA ID and Cell ID */
Harald Welte8a521132010-05-17 22:59:29 +020071struct bssgp_bvc_ctx *btsctx_by_raid_cid(const struct gprs_ra_id *raid, uint16_t cid)
Harald Welte6752fa42010-05-02 09:23:16 +020072{
Harald Welte8a521132010-05-17 22:59:29 +020073 struct bssgp_bvc_ctx *bctx;
Harald Welte6752fa42010-05-02 09:23:16 +020074
Harald Weltea78b9c22010-05-17 23:02:42 +020075 llist_for_each_entry(bctx, &bssgp_bvc_ctxts, list) {
Harald Welte6752fa42010-05-02 09:23:16 +020076 if (!memcmp(&bctx->ra_id, raid, sizeof(bctx->ra_id)) &&
77 bctx->cell_id == cid)
78 return bctx;
79 }
80 return NULL;
81}
82
Max8b8938f2017-06-29 19:48:29 +020083/*! Initiate reset procedure for all PTP BVC on a given NSEI.
84 *
85 * This function initiates reset procedure for all PTP BVC with a given cause.
86 * \param[in] nsei NSEI to which PTP BVC should belong to
87 * \param[in] cause Cause of BVC RESET
88 * \returns 0 on success, negative error code otherwise
89 */
90int bssgp_tx_bvc_ptp_reset(uint16_t nsei, enum gprs_bssgp_cause cause)
91{
92 int rc;
93 struct bssgp_bvc_ctx *bctx;
94
95 llist_for_each_entry(bctx, &bssgp_bvc_ctxts, list) {
96 if (bctx->nsei == nsei && bctx->bvci != BVCI_SIGNALLING) {
97 LOGP(DBSSGP, LOGL_DEBUG, "NSEI=%u/BVCI=%u RESET due to %s\n",
98 nsei, bctx->bvci, bssgp_cause_str(cause));
99 rc = bssgp_tx_bvc_reset(bctx, bctx->bvci, cause);
100 if (rc < 0)
101 return rc;
102 }
103 }
104
105 return 0;
106}
107
Harald Welte6752fa42010-05-02 09:23:16 +0200108/* Find a BTS context based on BVCI+NSEI tuple */
Harald Welte8a521132010-05-17 22:59:29 +0200109struct bssgp_bvc_ctx *btsctx_by_bvci_nsei(uint16_t bvci, uint16_t nsei)
Harald Welte6752fa42010-05-02 09:23:16 +0200110{
Harald Welte8a521132010-05-17 22:59:29 +0200111 struct bssgp_bvc_ctx *bctx;
Harald Welte6752fa42010-05-02 09:23:16 +0200112
Harald Weltea78b9c22010-05-17 23:02:42 +0200113 llist_for_each_entry(bctx, &bssgp_bvc_ctxts, list) {
Harald Welte6752fa42010-05-02 09:23:16 +0200114 if (bctx->nsei == nsei && bctx->bvci == bvci)
115 return bctx;
116 }
117 return NULL;
118}
119
Harald Welte8a521132010-05-17 22:59:29 +0200120struct bssgp_bvc_ctx *btsctx_alloc(uint16_t bvci, uint16_t nsei)
Harald Welte6752fa42010-05-02 09:23:16 +0200121{
Harald Welte8a521132010-05-17 22:59:29 +0200122 struct bssgp_bvc_ctx *ctx;
Harald Welte6752fa42010-05-02 09:23:16 +0200123
Harald Welte8a521132010-05-17 22:59:29 +0200124 ctx = talloc_zero(bssgp_tall_ctx, struct bssgp_bvc_ctx);
Harald Welte6752fa42010-05-02 09:23:16 +0200125 if (!ctx)
126 return NULL;
127 ctx->bvci = bvci;
128 ctx->nsei = nsei;
Harald Welte25de8112010-05-13 21:26:28 +0200129 /* FIXME: BVCI is not unique, only BVCI+NSEI ?!? */
130 ctx->ctrg = rate_ctr_group_alloc(ctx, &bssgp_ctrg_desc, bvci);
Harald Welted8b47692012-09-07 11:29:32 +0200131 ctx->fc = talloc_zero(ctx, struct bssgp_flow_control);
132 /* cofigure for 2Mbit, 30 packets in queue */
133 bssgp_fc_init(ctx->fc, 100000, 2*1024*1024/8, 30, &_bssgp_tx_dl_ud);
Harald Welte25de8112010-05-13 21:26:28 +0200134
Harald Weltea78b9c22010-05-17 23:02:42 +0200135 llist_add(&ctx->list, &bssgp_bvc_ctxts);
Harald Welte6752fa42010-05-02 09:23:16 +0200136
137 return ctx;
138}
139
Harald Welte9ba50052010-03-14 15:45:01 +0800140/* Chapter 10.4.5: Flow Control BVC ACK */
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200141static int bssgp_tx_fc_bvc_ack(uint16_t nsei, uint8_t tag, uint16_t ns_bvci)
Harald Welte9ba50052010-03-14 15:45:01 +0800142{
143 struct msgb *msg = bssgp_msgb_alloc();
144 struct bssgp_normal_hdr *bgph =
145 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
146
Harald Welte24a655f2010-04-30 19:54:29 +0200147 msgb_nsei(msg) = nsei;
148 msgb_bvci(msg) = ns_bvci;
149
Harald Welte9ba50052010-03-14 15:45:01 +0800150 bgph->pdu_type = BSSGP_PDUT_FLOW_CONTROL_BVC_ACK;
151 msgb_tvlv_put(msg, BSSGP_IE_TAG, 1, &tag);
152
Harald Welte24a655f2010-04-30 19:54:29 +0200153 return gprs_ns_sendmsg(bssgp_nsi, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800154}
155
Harald Weltea8aa4df2010-05-30 22:00:53 +0200156/* 10.3.7 SUSPEND-ACK PDU */
157int bssgp_tx_suspend_ack(uint16_t nsei, uint32_t tlli,
158 const struct gprs_ra_id *ra_id, uint8_t suspend_ref)
159{
160 struct msgb *msg = bssgp_msgb_alloc();
161 struct bssgp_normal_hdr *bgph =
162 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
Harald Weltea8aa4df2010-05-30 22:00:53 +0200163
164 msgb_nsei(msg) = nsei;
165 msgb_bvci(msg) = 0; /* Signalling */
166 bgph->pdu_type = BSSGP_PDUT_SUSPEND_ACK;
167
Maxe29ec852018-01-05 14:30:22 +0100168 bssgp_msgb_tlli_put(msg, tlli);
Maxf1ad60e2018-01-05 14:19:33 +0100169 bssgp_msgb_ra_put(msg, ra_id);
Harald Weltea8aa4df2010-05-30 22:00:53 +0200170 msgb_tvlv_put(msg, BSSGP_IE_SUSPEND_REF_NR, 1, &suspend_ref);
171
172 return gprs_ns_sendmsg(bssgp_nsi, msg);
173}
174
175/* 10.3.8 SUSPEND-NACK PDU */
176int bssgp_tx_suspend_nack(uint16_t nsei, uint32_t tlli,
Dieter Spaard2b13fc2010-12-12 12:45:08 +0100177 const struct gprs_ra_id *ra_id,
Harald Weltea8aa4df2010-05-30 22:00:53 +0200178 uint8_t *cause)
179{
180 struct msgb *msg = bssgp_msgb_alloc();
181 struct bssgp_normal_hdr *bgph =
182 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
Harald Weltea8aa4df2010-05-30 22:00:53 +0200183
184 msgb_nsei(msg) = nsei;
185 msgb_bvci(msg) = 0; /* Signalling */
186 bgph->pdu_type = BSSGP_PDUT_SUSPEND_NACK;
187
Maxe29ec852018-01-05 14:30:22 +0100188 bssgp_msgb_tlli_put(msg, tlli);
Maxf1ad60e2018-01-05 14:19:33 +0100189 bssgp_msgb_ra_put(msg, ra_id);
190
Harald Weltea8aa4df2010-05-30 22:00:53 +0200191 if (cause)
192 msgb_tvlv_put(msg, BSSGP_IE_CAUSE, 1, cause);
193
194 return gprs_ns_sendmsg(bssgp_nsi, msg);
195}
196
197/* 10.3.10 RESUME-ACK PDU */
198int bssgp_tx_resume_ack(uint16_t nsei, uint32_t tlli,
199 const struct gprs_ra_id *ra_id)
200{
201 struct msgb *msg = bssgp_msgb_alloc();
202 struct bssgp_normal_hdr *bgph =
203 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
Harald Weltea8aa4df2010-05-30 22:00:53 +0200204
205 msgb_nsei(msg) = nsei;
206 msgb_bvci(msg) = 0; /* Signalling */
207 bgph->pdu_type = BSSGP_PDUT_RESUME_ACK;
208
Maxe29ec852018-01-05 14:30:22 +0100209 bssgp_msgb_tlli_put(msg, tlli);
Maxf1ad60e2018-01-05 14:19:33 +0100210 bssgp_msgb_ra_put(msg, ra_id);
Harald Weltea8aa4df2010-05-30 22:00:53 +0200211
212 return gprs_ns_sendmsg(bssgp_nsi, msg);
213}
214
215/* 10.3.11 RESUME-NACK PDU */
216int bssgp_tx_resume_nack(uint16_t nsei, uint32_t tlli,
217 const struct gprs_ra_id *ra_id, uint8_t *cause)
218{
219 struct msgb *msg = bssgp_msgb_alloc();
220 struct bssgp_normal_hdr *bgph =
221 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
Harald Weltea8aa4df2010-05-30 22:00:53 +0200222
223 msgb_nsei(msg) = nsei;
224 msgb_bvci(msg) = 0; /* Signalling */
225 bgph->pdu_type = BSSGP_PDUT_SUSPEND_NACK;
226
Maxe29ec852018-01-05 14:30:22 +0100227 bssgp_msgb_tlli_put(msg, tlli);
Maxf1ad60e2018-01-05 14:19:33 +0100228 bssgp_msgb_ra_put(msg, ra_id);
229
Harald Weltea8aa4df2010-05-30 22:00:53 +0200230 if (cause)
231 msgb_tvlv_put(msg, BSSGP_IE_CAUSE, 1, cause);
232
233 return gprs_ns_sendmsg(bssgp_nsi, msg);
234}
235
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200236uint16_t bssgp_parse_cell_id(struct gprs_ra_id *raid, const uint8_t *buf)
Harald Welte6752fa42010-05-02 09:23:16 +0200237{
238 /* 6 octets RAC */
239 gsm48_parse_ra(raid, buf);
240 /* 2 octets CID */
Harald Weltebfe62e52017-05-15 12:48:30 +0200241 return osmo_load16be(buf+6);
Harald Welte6752fa42010-05-02 09:23:16 +0200242}
243
Harald Welte28610072011-11-24 21:32:07 +0100244int bssgp_create_cell_id(uint8_t *buf, const struct gprs_ra_id *raid,
245 uint16_t cid)
246{
Harald Welte28610072011-11-24 21:32:07 +0100247 /* 6 octets RAC */
Maxf1ad60e2018-01-05 14:19:33 +0100248 gsm48_encode_ra((struct gsm48_ra_id *)buf, raid);
Harald Welte28610072011-11-24 21:32:07 +0100249 /* 2 octets CID */
Harald Weltebfe62e52017-05-15 12:48:30 +0200250 osmo_store16be(cid, buf+6);
Harald Welte28610072011-11-24 21:32:07 +0100251
252 return 8;
253}
254
Harald Welte3fddf3c2010-05-01 16:48:27 +0200255/* Chapter 8.4 BVC-Reset Procedure */
256static int bssgp_rx_bvc_reset(struct msgb *msg, struct tlv_parsed *tp,
257 uint16_t ns_bvci)
258{
Harald Welte15a36432012-06-17 12:16:31 +0800259 struct osmo_bssgp_prim nmp;
Harald Welte8a521132010-05-17 22:59:29 +0200260 struct bssgp_bvc_ctx *bctx;
Harald Welte6752fa42010-05-02 09:23:16 +0200261 uint16_t nsei = msgb_nsei(msg);
262 uint16_t bvci;
Harald Welte3fddf3c2010-05-01 16:48:27 +0200263
Harald Weltebfe62e52017-05-15 12:48:30 +0200264 bvci = tlvp_val16be(tp, BSSGP_IE_BVCI);
Harald Weltee9686b62010-05-31 18:07:17 +0200265 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx RESET cause=%s\n", bvci,
Harald Welte3fddf3c2010-05-01 16:48:27 +0200266 bssgp_cause_str(*TLVP_VAL(tp, BSSGP_IE_CAUSE)));
267
Harald Welte6752fa42010-05-02 09:23:16 +0200268 /* look-up or create the BTS context for this BVC */
269 bctx = btsctx_by_bvci_nsei(bvci, nsei);
270 if (!bctx)
271 bctx = btsctx_alloc(bvci, nsei);
272
Harald Welte25de8112010-05-13 21:26:28 +0200273 /* As opposed to NS-VCs, BVCs are NOT blocked after RESET */
274 bctx->state &= ~BVC_S_BLOCKED;
275
Harald Welte3fddf3c2010-05-01 16:48:27 +0200276 /* When we receive a BVC-RESET PDU (at least of a PTP BVCI), the BSS
277 * informs us about its RAC + Cell ID, so we can create a mapping */
Harald Welte6752fa42010-05-02 09:23:16 +0200278 if (bvci != 0 && bvci != 1) {
279 if (!TLVP_PRESENT(tp, BSSGP_IE_CELL_ID)) {
Harald Welte086fe322011-08-19 16:45:19 +0200280 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx RESET "
Harald Welte6752fa42010-05-02 09:23:16 +0200281 "missing mandatory IE\n", bvci);
282 return -EINVAL;
283 }
284 /* actually extract RAC / CID */
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200285 bctx->cell_id = bssgp_parse_cell_id(&bctx->ra_id,
286 TLVP_VAL(tp, BSSGP_IE_CELL_ID));
Harald Welteb8a6a832010-05-11 05:54:22 +0200287 LOGP(DBSSGP, LOGL_NOTICE, "Cell %u-%u-%u-%u CI %u on BVCI %u\n",
Harald Welte6752fa42010-05-02 09:23:16 +0200288 bctx->ra_id.mcc, bctx->ra_id.mnc, bctx->ra_id.lac,
289 bctx->ra_id.rac, bctx->cell_id, bvci);
290 }
Harald Welte3fddf3c2010-05-01 16:48:27 +0200291
Harald Welte15a36432012-06-17 12:16:31 +0800292 /* Send NM_BVC_RESET.ind to NM */
293 memset(&nmp, 0, sizeof(nmp));
294 nmp.nsei = nsei;
295 nmp.bvci = bvci;
296 nmp.tp = tp;
297 nmp.ra_id = &bctx->ra_id;
298 osmo_prim_init(&nmp.oph, SAP_BSSGP_NM, PRIM_NM_BVC_RESET,
299 PRIM_OP_INDICATION, msg);
300 bssgp_prim_cb(&nmp.oph, NULL);
301
Harald Welte6752fa42010-05-02 09:23:16 +0200302 /* Acknowledge the RESET to the BTS */
Harald Welte5b3bffb2012-09-07 12:03:40 +0200303 bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_RESET_ACK,
304 nsei, bvci, ns_bvci);
Harald Welte3fddf3c2010-05-01 16:48:27 +0200305 return 0;
306}
307
Harald Welte25de8112010-05-13 21:26:28 +0200308static int bssgp_rx_bvc_block(struct msgb *msg, struct tlv_parsed *tp)
309{
Harald Welte15a36432012-06-17 12:16:31 +0800310 struct osmo_bssgp_prim nmp;
Harald Welte25de8112010-05-13 21:26:28 +0200311 uint16_t bvci;
Harald Welte8a521132010-05-17 22:59:29 +0200312 struct bssgp_bvc_ctx *ptp_ctx;
Harald Welte25de8112010-05-13 21:26:28 +0200313
Harald Weltebfe62e52017-05-15 12:48:30 +0200314 bvci = tlvp_val16be(tp, BSSGP_IE_BVCI);
Harald Welte61c07842010-05-18 11:57:08 +0200315 if (bvci == BVCI_SIGNALLING) {
Harald Welte58e65c92010-05-13 21:45:23 +0200316 /* 8.3.2: Signalling BVC shall never be blocked */
317 LOGP(DBSSGP, LOGL_ERROR, "NSEI=%u/BVCI=%u "
318 "received block for signalling BVC!?!\n",
319 msgb_nsei(msg), msgb_bvci(msg));
320 return 0;
321 }
Harald Welte25de8112010-05-13 21:26:28 +0200322
Harald Welte086fe322011-08-19 16:45:19 +0200323 LOGP(DBSSGP, LOGL_INFO, "BSSGP Rx BVCI=%u BVC-BLOCK\n", bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200324
325 ptp_ctx = btsctx_by_bvci_nsei(bvci, msgb_nsei(msg));
326 if (!ptp_ctx)
327 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &bvci, msg);
328
329 ptp_ctx->state |= BVC_S_BLOCKED;
330 rate_ctr_inc(&ptp_ctx->ctrg->ctr[BSSGP_CTR_BLOCKED]);
331
Harald Welte15a36432012-06-17 12:16:31 +0800332 /* Send NM_BVC_BLOCK.ind to NM */
333 memset(&nmp, 0, sizeof(nmp));
334 nmp.nsei = msgb_nsei(msg);
335 nmp.bvci = bvci;
336 nmp.tp = tp;
337 osmo_prim_init(&nmp.oph, SAP_BSSGP_NM, PRIM_NM_BVC_BLOCK,
338 PRIM_OP_INDICATION, msg);
339 bssgp_prim_cb(&nmp.oph, NULL);
Harald Welte25de8112010-05-13 21:26:28 +0200340
341 /* We always acknowledge the BLOCKing */
342 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK_ACK, msgb_nsei(msg),
343 bvci, msgb_bvci(msg));
344};
345
346static int bssgp_rx_bvc_unblock(struct msgb *msg, struct tlv_parsed *tp)
347{
Harald Welte15a36432012-06-17 12:16:31 +0800348 struct osmo_bssgp_prim nmp;
Harald Welte25de8112010-05-13 21:26:28 +0200349 uint16_t bvci;
Harald Welte8a521132010-05-17 22:59:29 +0200350 struct bssgp_bvc_ctx *ptp_ctx;
Harald Welte25de8112010-05-13 21:26:28 +0200351
Harald Weltebfe62e52017-05-15 12:48:30 +0200352 bvci = tlvp_val16be(tp, BSSGP_IE_BVCI);
Harald Welte61c07842010-05-18 11:57:08 +0200353 if (bvci == BVCI_SIGNALLING) {
Harald Welte58e65c92010-05-13 21:45:23 +0200354 /* 8.3.2: Signalling BVC shall never be blocked */
355 LOGP(DBSSGP, LOGL_ERROR, "NSEI=%u/BVCI=%u "
356 "received unblock for signalling BVC!?!\n",
357 msgb_nsei(msg), msgb_bvci(msg));
358 return 0;
359 }
Harald Welte25de8112010-05-13 21:26:28 +0200360
Harald Weltee9686b62010-05-31 18:07:17 +0200361 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx BVC-UNBLOCK\n", bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200362
363 ptp_ctx = btsctx_by_bvci_nsei(bvci, msgb_nsei(msg));
364 if (!ptp_ctx)
365 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &bvci, msg);
366
367 ptp_ctx->state &= ~BVC_S_BLOCKED;
368
Harald Welte15a36432012-06-17 12:16:31 +0800369 /* Send NM_BVC_UNBLOCK.ind to NM */
370 memset(&nmp, 0, sizeof(nmp));
371 nmp.nsei = msgb_nsei(msg);
372 nmp.bvci = bvci;
373 nmp.tp = tp;
374 osmo_prim_init(&nmp.oph, SAP_BSSGP_NM, PRIM_NM_BVC_UNBLOCK,
375 PRIM_OP_INDICATION, msg);
376 bssgp_prim_cb(&nmp.oph, NULL);
Harald Welte25de8112010-05-13 21:26:28 +0200377
378 /* We always acknowledge the unBLOCKing */
379 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_UNBLOCK_ACK, msgb_nsei(msg),
380 bvci, msgb_bvci(msg));
381};
382
Harald Welte9ba50052010-03-14 15:45:01 +0800383/* Uplink unit-data */
Harald Welte25de8112010-05-13 21:26:28 +0200384static int bssgp_rx_ul_ud(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200385 struct bssgp_bvc_ctx *ctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800386{
Harald Welte15a36432012-06-17 12:16:31 +0800387 struct osmo_bssgp_prim gbp;
Harald Welteec19c102010-05-02 09:50:42 +0200388 struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800389
Harald Welte6752fa42010-05-02 09:23:16 +0200390 /* extract TLLI and parse TLV IEs */
Harald Weltebfe62e52017-05-15 12:48:30 +0200391 msgb_tlli(msg) = osmo_ntohl(budh->tlli);
Harald Welte9ba50052010-03-14 15:45:01 +0800392
Harald Welte086fe322011-08-19 16:45:19 +0200393 DEBUGP(DBSSGP, "BSSGP TLLI=0x%08x Rx UPLINK-UNITDATA\n", msgb_tlli(msg));
Harald Weltee9686b62010-05-31 18:07:17 +0200394
Harald Welte9ba50052010-03-14 15:45:01 +0800395 /* Cell ID and LLC_PDU are the only mandatory IE */
Harald Welte25de8112010-05-13 21:26:28 +0200396 if (!TLVP_PRESENT(tp, BSSGP_IE_CELL_ID) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200397 !TLVP_PRESENT(tp, BSSGP_IE_LLC_PDU)) {
398 LOGP(DBSSGP, LOGL_ERROR, "BSSGP TLLI=0x%08x Rx UL-UD "
399 "missing mandatory IE\n", msgb_tlli(msg));
Harald Welte25de8112010-05-13 21:26:28 +0200400 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Weltee9686b62010-05-31 18:07:17 +0200401 }
Harald Welte30bc19a2010-05-02 11:19:37 +0200402
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200403 /* store pointer to LLC header and CELL ID in msgb->cb */
Holger Hans Peter Freytherb6eded82010-05-23 21:11:19 +0800404 msgb_llch(msg) = (uint8_t *) TLVP_VAL(tp, BSSGP_IE_LLC_PDU);
405 msgb_bcid(msg) = (uint8_t *) TLVP_VAL(tp, BSSGP_IE_CELL_ID);
Harald Welte9ba50052010-03-14 15:45:01 +0800406
Harald Welte15a36432012-06-17 12:16:31 +0800407 /* Send BSSGP_UL_UD.ind to NM */
408 memset(&gbp, 0, sizeof(gbp));
409 gbp.nsei = ctx->nsei;
410 gbp.bvci = ctx->bvci;
411 gbp.tlli = msgb_tlli(msg);
412 gbp.tp = tp;
413 osmo_prim_init(&gbp.oph, SAP_BSSGP_LL, PRIM_BSSGP_UL_UD,
414 PRIM_OP_INDICATION, msg);
415 return bssgp_prim_cb(&gbp.oph, NULL);
Harald Welte9ba50052010-03-14 15:45:01 +0800416}
417
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200418static int bssgp_rx_suspend(struct msgb *msg, struct tlv_parsed *tp)
Harald Welte9ba50052010-03-14 15:45:01 +0800419{
Harald Welte15a36432012-06-17 12:16:31 +0800420 struct osmo_bssgp_prim gbp;
Harald Weltea8aa4df2010-05-30 22:00:53 +0200421 struct gprs_ra_id raid;
422 uint32_t tlli;
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200423 uint16_t ns_bvci = msgb_bvci(msg);
Harald Welte313cccf2010-06-09 11:22:47 +0200424 int rc;
Harald Welte9ba50052010-03-14 15:45:01 +0800425
Harald Welte25de8112010-05-13 21:26:28 +0200426 if (!TLVP_PRESENT(tp, BSSGP_IE_TLLI) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200427 !TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA)) {
428 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx SUSPEND "
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200429 "missing mandatory IE\n", ns_bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200430 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Weltee9686b62010-05-31 18:07:17 +0200431 }
Harald Welte9ba50052010-03-14 15:45:01 +0800432
Harald Weltebfe62e52017-05-15 12:48:30 +0200433 tlli = tlvp_val32be(tp, BSSGP_IE_TLLI);
Harald Weltee9686b62010-05-31 18:07:17 +0200434
Harald Welte17925322010-05-31 20:18:35 +0200435 DEBUGP(DBSSGP, "BSSGP BVCI=%u TLLI=0x%08x Rx SUSPEND\n",
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200436 ns_bvci, tlli);
Harald Weltee9686b62010-05-31 18:07:17 +0200437
Harald Weltea8aa4df2010-05-30 22:00:53 +0200438 gsm48_parse_ra(&raid, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
439
Harald Welte313cccf2010-06-09 11:22:47 +0200440 /* Inform GMM about the SUSPEND request */
Harald Welte15a36432012-06-17 12:16:31 +0800441 memset(&gbp, 0, sizeof(gbp));
442 gbp.nsei = msgb_nsei(msg);
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200443 gbp.bvci = ns_bvci;
Harald Welte15a36432012-06-17 12:16:31 +0800444 gbp.tlli = tlli;
445 gbp.ra_id = &raid;
446 osmo_prim_init(&gbp.oph, SAP_BSSGP_GMM, PRIM_BSSGP_GMM_SUSPEND,
447 PRIM_OP_REQUEST, msg);
448
449 rc = bssgp_prim_cb(&gbp.oph, NULL);
Harald Welte313cccf2010-06-09 11:22:47 +0200450 if (rc < 0)
Dieter Spaard2b13fc2010-12-12 12:45:08 +0100451 return bssgp_tx_suspend_nack(msgb_nsei(msg), tlli, &raid, NULL);
Harald Welte313cccf2010-06-09 11:22:47 +0200452
Harald Weltea8aa4df2010-05-30 22:00:53 +0200453 bssgp_tx_suspend_ack(msgb_nsei(msg), tlli, &raid, 0);
454
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800455 return 0;
Harald Welte9ba50052010-03-14 15:45:01 +0800456}
457
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200458static int bssgp_rx_resume(struct msgb *msg, struct tlv_parsed *tp)
Harald Welte9ba50052010-03-14 15:45:01 +0800459{
Harald Welte15a36432012-06-17 12:16:31 +0800460 struct osmo_bssgp_prim gbp;
Harald Weltea8aa4df2010-05-30 22:00:53 +0200461 struct gprs_ra_id raid;
462 uint32_t tlli;
Harald Welte313cccf2010-06-09 11:22:47 +0200463 uint8_t suspend_ref;
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200464 uint16_t ns_bvci = msgb_bvci(msg);
Harald Welte313cccf2010-06-09 11:22:47 +0200465 int rc;
Harald Welte9ba50052010-03-14 15:45:01 +0800466
Harald Welte25de8112010-05-13 21:26:28 +0200467 if (!TLVP_PRESENT(tp, BSSGP_IE_TLLI) ||
468 !TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200469 !TLVP_PRESENT(tp, BSSGP_IE_SUSPEND_REF_NR)) {
470 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx RESUME "
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200471 "missing mandatory IE\n", ns_bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200472 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Weltee9686b62010-05-31 18:07:17 +0200473 }
Harald Welte9ba50052010-03-14 15:45:01 +0800474
Harald Weltebfe62e52017-05-15 12:48:30 +0200475 tlli = tlvp_val32be(tp, BSSGP_IE_TLLI);
Harald Welte313cccf2010-06-09 11:22:47 +0200476 suspend_ref = *TLVP_VAL(tp, BSSGP_IE_SUSPEND_REF_NR);
Harald Weltee9686b62010-05-31 18:07:17 +0200477
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200478 DEBUGP(DBSSGP, "BSSGP BVCI=%u TLLI=0x%08x Rx RESUME\n", ns_bvci, tlli);
Harald Weltee9686b62010-05-31 18:07:17 +0200479
Harald Weltea8aa4df2010-05-30 22:00:53 +0200480 gsm48_parse_ra(&raid, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
481
Harald Welte313cccf2010-06-09 11:22:47 +0200482 /* Inform GMM about the RESUME request */
Harald Welte15a36432012-06-17 12:16:31 +0800483 memset(&gbp, 0, sizeof(gbp));
484 gbp.nsei = msgb_nsei(msg);
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200485 gbp.bvci = ns_bvci;
Harald Welte15a36432012-06-17 12:16:31 +0800486 gbp.tlli = tlli;
487 gbp.ra_id = &raid;
488 gbp.u.resume.suspend_ref = suspend_ref;
489 osmo_prim_init(&gbp.oph, SAP_BSSGP_GMM, PRIM_BSSGP_GMM_RESUME,
490 PRIM_OP_REQUEST, msg);
491
492 rc = bssgp_prim_cb(&gbp.oph, NULL);
Harald Welte313cccf2010-06-09 11:22:47 +0200493 if (rc < 0)
494 return bssgp_tx_resume_nack(msgb_nsei(msg), tlli, &raid,
495 NULL);
496
Harald Weltea8aa4df2010-05-30 22:00:53 +0200497 bssgp_tx_resume_ack(msgb_nsei(msg), tlli, &raid);
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800498 return 0;
Harald Welte9ba50052010-03-14 15:45:01 +0800499}
500
Harald Weltee9686b62010-05-31 18:07:17 +0200501
502static int bssgp_rx_llc_disc(struct msgb *msg, struct tlv_parsed *tp,
503 struct bssgp_bvc_ctx *ctx)
504{
Harald Welte15a36432012-06-17 12:16:31 +0800505 struct osmo_bssgp_prim nmp;
Harald Welteb7363142010-07-23 21:59:29 +0200506 uint32_t tlli = 0;
Harald Weltee9686b62010-05-31 18:07:17 +0200507
508 if (!TLVP_PRESENT(tp, BSSGP_IE_TLLI) ||
509 !TLVP_PRESENT(tp, BSSGP_IE_LLC_FRAMES_DISCARDED) ||
510 !TLVP_PRESENT(tp, BSSGP_IE_BVCI) ||
511 !TLVP_PRESENT(tp, BSSGP_IE_NUM_OCT_AFF)) {
512 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx LLC DISCARDED "
513 "missing mandatory IE\n", ctx->bvci);
514 }
515
Harald Welteb7363142010-07-23 21:59:29 +0200516 if (TLVP_PRESENT(tp, BSSGP_IE_TLLI))
Harald Weltebfe62e52017-05-15 12:48:30 +0200517 tlli = tlvp_val32be(tp, BSSGP_IE_TLLI);
Harald Weltee9686b62010-05-31 18:07:17 +0200518
Harald Welte086fe322011-08-19 16:45:19 +0200519 DEBUGP(DBSSGP, "BSSGP BVCI=%u TLLI=%08x Rx LLC DISCARDED\n",
Harald Weltee9686b62010-05-31 18:07:17 +0200520 ctx->bvci, tlli);
521
522 rate_ctr_inc(&ctx->ctrg->ctr[BSSGP_CTR_DISCARDED]);
523
Harald Welte15a36432012-06-17 12:16:31 +0800524 /* send NM_LLC_DISCARDED to NM */
525 memset(&nmp, 0, sizeof(nmp));
526 nmp.nsei = msgb_nsei(msg);
527 nmp.bvci = ctx->bvci;
528 nmp.tlli = tlli;
529 nmp.tp = tp;
530 osmo_prim_init(&nmp.oph, SAP_BSSGP_NM, PRIM_NM_LLC_DISCARDED,
531 PRIM_OP_INDICATION, msg);
532
533 return bssgp_prim_cb(&nmp.oph, NULL);
Harald Weltee9686b62010-05-31 18:07:17 +0200534}
535
Jacob Erlbeck36153dc2015-03-17 10:21:17 +0100536int bssgp_rx_status(struct msgb *msg, struct tlv_parsed *tp,
537 uint16_t bvci, struct bssgp_bvc_ctx *bctx)
538{
539 struct osmo_bssgp_prim nmp;
540 enum gprs_bssgp_cause cause;
541
542 if (!TLVP_PRESENT(tp, BSSGP_IE_CAUSE)) {
543 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx STATUS "
544 "missing mandatory IE\n", bvci);
545 cause = BSSGP_CAUSE_PROTO_ERR_UNSPEC;
546 } else {
547 cause = *TLVP_VAL(tp, BSSGP_IE_CAUSE);
548 }
549
550 LOGP(DBSSGP, LOGL_NOTICE, "BSSGP BVCI=%u Rx BVC STATUS, cause=%s\n",
551 bvci, bssgp_cause_str(cause));
552
553 if (cause == BSSGP_CAUSE_BVCI_BLOCKED || cause == BSSGP_CAUSE_UNKNOWN_BVCI) {
554 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI))
555 LOGP(DBSSGP, LOGL_ERROR,
556 "BSSGP BVCI=%u Rx STATUS cause=%s "
557 "missing conditional BVCI IE\n",
558 bvci, bssgp_cause_str(cause));
559 }
560
561 if (bctx)
562 rate_ctr_inc(&bctx->ctrg->ctr[BSSGP_CTR_STATUS]);
563
564 /* send NM_STATUS to NM */
565 memset(&nmp, 0, sizeof(nmp));
566 nmp.nsei = msgb_nsei(msg);
567 nmp.bvci = bvci;
568 nmp.tp = tp;
569 osmo_prim_init(&nmp.oph, SAP_BSSGP_NM, PRIM_NM_STATUS,
570 PRIM_OP_INDICATION, msg);
571
572 return bssgp_prim_cb(&nmp.oph, NULL);
573}
574
575
Harald Welted11c0592012-09-06 21:57:11 +0200576/* One element (msgb) in a BSSGP Flow Control queue */
577struct bssgp_fc_queue_element {
578 /* linked list of queue elements */
579 struct llist_head list;
580 /* The message that we have enqueued */
581 struct msgb *msg;
582 /* Length of the LLC PDU part of the contained message */
583 uint32_t llc_pdu_len;
584 /* private pointer passed to the flow control out_cb function */
585 void *priv;
586};
587
588static int fc_queue_timer_cfg(struct bssgp_flow_control *fc);
589static int bssgp_fc_needs_queueing(struct bssgp_flow_control *fc, uint32_t pdu_len);
590
591static void fc_timer_cb(void *data)
592{
593 struct bssgp_flow_control *fc = data;
594 struct bssgp_fc_queue_element *fcqe;
595 struct timeval time_now;
596
597 /* if the queue is empty, we return without sending something
598 * and without re-starting the timer */
599 if (llist_empty(&fc->queue))
600 return;
601
602 /* get the first entry from the queue */
603 fcqe = llist_entry(fc->queue.next, struct bssgp_fc_queue_element,
604 list);
605
606 if (bssgp_fc_needs_queueing(fc, fcqe->llc_pdu_len)) {
607 LOGP(DBSSGP, LOGL_NOTICE, "BSSGP-FC: fc_timer_cb() but still "
608 "not able to send PDU of %u bytes\n", fcqe->llc_pdu_len);
609 /* make sure we re-start the timer */
610 fc_queue_timer_cfg(fc);
611 return;
612 }
613
614 /* remove from the queue */
615 llist_del(&fcqe->list);
616
617 fc->queue_depth--;
618
619 /* record the time we transmitted this PDU */
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200620 osmo_gettimeofday(&time_now, NULL);
Harald Welted11c0592012-09-06 21:57:11 +0200621 fc->time_last_pdu = time_now;
622
623 /* call the output callback for this FC instance */
624 fc->out_cb(fcqe->priv, fcqe->msg, fcqe->llc_pdu_len, NULL);
625
626 /* we expect that out_cb will in the end free the msgb once
627 * it is no longer needed */
628
629 /* but we have to free the queue element ourselves */
630 talloc_free(fcqe);
631
632 /* re-configure the timer for the next PDU */
633 fc_queue_timer_cfg(fc);
634}
635
636/* configure/schedule the flow control timer to expire once the bucket
637 * will have leaked a sufficient number of bytes to transmit the next
638 * PDU in the queue */
639static int fc_queue_timer_cfg(struct bssgp_flow_control *fc)
640{
641 struct bssgp_fc_queue_element *fcqe;
642 uint32_t msecs;
643
644 if (llist_empty(&fc->queue))
645 return 0;
646
Jacob Erlbeck97319352015-04-30 19:28:03 +0200647 fcqe = llist_entry(fc->queue.next, struct bssgp_fc_queue_element,
Harald Welted11c0592012-09-06 21:57:11 +0200648 list);
649
Harald Welte27b2bb72013-06-22 09:44:00 +0200650 if (fc->bucket_leak_rate != 0) {
651 /* Calculate the point in time at which we will have leaked
652 * a sufficient number of bytes from the bucket to transmit
653 * the first PDU in the queue */
654 msecs = (fcqe->llc_pdu_len * 1000) / fc->bucket_leak_rate;
655 /* FIXME: add that time to fc->time_last_pdu and subtract it from
656 * current time */
Pablo Neira Ayuso44f423f2017-05-08 18:00:28 +0200657 osmo_timer_setup(&fc->timer, fc_timer_cb, fc);
Harald Welte27b2bb72013-06-22 09:44:00 +0200658 osmo_timer_schedule(&fc->timer, msecs / 1000, (msecs % 1000) * 1000);
659 } else {
660 /* If the PCU is telling us to not send any more data at all,
661 * there's no point starting a timer. */
662 }
Harald Welted11c0592012-09-06 21:57:11 +0200663
664 return 0;
665}
666
667/* Enqueue a PDU in the flow control queue for delayed transmission */
668static int fc_enqueue(struct bssgp_flow_control *fc, struct msgb *msg,
669 uint32_t llc_pdu_len, void *priv)
670{
671 struct bssgp_fc_queue_element *fcqe;
672
673 if (fc->queue_depth >= fc->max_queue_depth)
674 return -ENOSPC;
675
676 fcqe = talloc_zero(fc, struct bssgp_fc_queue_element);
677 if (!fcqe)
678 return -ENOMEM;
679 fcqe->msg = msg;
680 fcqe->llc_pdu_len = llc_pdu_len;
681 fcqe->priv = priv;
682
683 llist_add_tail(&fcqe->list, &fc->queue);
684
685 fc->queue_depth++;
686
687 /* re-configure the timer for dequeueing the pdu */
688 fc_queue_timer_cfg(fc);
689
690 return 0;
691}
692
693/* According to Section 8.2 */
694static int bssgp_fc_needs_queueing(struct bssgp_flow_control *fc, uint32_t pdu_len)
695{
696 struct timeval time_now, time_diff;
697 int64_t bucket_predicted;
698 uint32_t csecs_elapsed, leaked;
699
700 /* B' = B + L(p) - (Tc - Tp)*R */
701
702 /* compute number of centi-seconds that have elapsed since transmitting
703 * the last PDU (Tc - Tp) */
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200704 osmo_gettimeofday(&time_now, NULL);
Harald Welted11c0592012-09-06 21:57:11 +0200705 timersub(&time_now, &fc->time_last_pdu, &time_diff);
706 csecs_elapsed = time_diff.tv_sec*100 + time_diff.tv_usec/10000;
707
708 /* compute number of bytes that have leaked in the elapsed number
709 * of centi-seconds */
710 leaked = csecs_elapsed * (fc->bucket_leak_rate / 100);
711 /* add the current PDU length to the last bucket level */
712 bucket_predicted = fc->bucket_counter + pdu_len;
713 /* ... and subtract the number of leaked bytes */
714 bucket_predicted -= leaked;
715
Vadim Yanitskiyf1786952017-06-12 03:41:35 +0700716 if (bucket_predicted < pdu_len)
717 return 0;
Harald Welted11c0592012-09-06 21:57:11 +0200718
719 if (bucket_predicted <= fc->bucket_size_max) {
720 /* the bucket is not full yet, we can pass the packet */
721 fc->bucket_counter = bucket_predicted;
Vadim Yanitskiyf1786952017-06-12 03:41:35 +0700722 return 0;
Harald Welted11c0592012-09-06 21:57:11 +0200723 }
724
725 /* bucket is full, PDU needs to be delayed */
726 return 1;
Harald Welted11c0592012-09-06 21:57:11 +0200727}
728
729/* output callback for BVC flow control */
730static int _bssgp_tx_dl_ud(struct bssgp_flow_control *fc, struct msgb *msg,
731 uint32_t llc_pdu_len, void *priv)
732{
733 return gprs_ns_sendmsg(bssgp_nsi, msg);
734}
735
736/* input function of the flow control implementation, called first
737 * for the MM flow control, and then as the MM flow control output
738 * callback in order to perform BVC flow control */
739int bssgp_fc_in(struct bssgp_flow_control *fc, struct msgb *msg,
740 uint32_t llc_pdu_len, void *priv)
741{
742 struct timeval time_now;
743
Harald Weltebb826222012-09-07 10:22:01 +0200744 if (llc_pdu_len > fc->bucket_size_max) {
745 LOGP(DBSSGP, LOGL_NOTICE, "Single PDU (size=%u) is larger "
746 "than maximum bucket size (%u)!\n", llc_pdu_len,
747 fc->bucket_size_max);
Holger Hans Peter Freyther10dd73c2014-10-10 17:24:34 +0200748 msgb_free(msg);
Harald Weltebb826222012-09-07 10:22:01 +0200749 return -EIO;
750 }
751
Harald Welted11c0592012-09-06 21:57:11 +0200752 if (bssgp_fc_needs_queueing(fc, llc_pdu_len)) {
Neels Hofmeyrcd325ef2017-11-16 22:32:36 +0100753 int rc;
754 rc = fc_enqueue(fc, msg, llc_pdu_len, priv);
755 if (rc)
756 msgb_free(msg);
757 return rc;
Harald Welted11c0592012-09-06 21:57:11 +0200758 } else {
759 /* record the time we transmitted this PDU */
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200760 osmo_gettimeofday(&time_now, NULL);
Harald Welted11c0592012-09-06 21:57:11 +0200761 fc->time_last_pdu = time_now;
762 return fc->out_cb(priv, msg, llc_pdu_len, NULL);
763 }
764}
765
Harald Weltebb826222012-09-07 10:22:01 +0200766
767/* Initialize the Flow Control structure */
768void bssgp_fc_init(struct bssgp_flow_control *fc,
769 uint32_t bucket_size_max, uint32_t bucket_leak_rate,
770 uint32_t max_queue_depth,
771 int (*out_cb)(struct bssgp_flow_control *fc, struct msgb *msg,
772 uint32_t llc_pdu_len, void *priv))
773{
774 fc->out_cb = out_cb;
775 fc->bucket_size_max = bucket_size_max;
776 fc->bucket_leak_rate = bucket_leak_rate;
777 fc->max_queue_depth = max_queue_depth;
778 INIT_LLIST_HEAD(&fc->queue);
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200779 osmo_gettimeofday(&fc->time_last_pdu, NULL);
Harald Weltebb826222012-09-07 10:22:01 +0200780}
781
Harald Welted11c0592012-09-06 21:57:11 +0200782/* Initialize the Flow Control parameters for a new MS according to
783 * default values for the BVC specified by BVCI and NSEI */
784int bssgp_fc_ms_init(struct bssgp_flow_control *fc_ms, uint16_t bvci,
Harald Weltebb826222012-09-07 10:22:01 +0200785 uint16_t nsei, uint32_t max_queue_depth)
Harald Welted11c0592012-09-06 21:57:11 +0200786{
787 struct bssgp_bvc_ctx *ctx;
788
789 ctx = btsctx_by_bvci_nsei(bvci, nsei);
790 if (!ctx)
791 return -ENODEV;
Harald Weltebb826222012-09-07 10:22:01 +0200792
793 /* output call-back of per-MS FC is per-CTX FC */
794 bssgp_fc_init(fc_ms, ctx->bmax_default_ms, ctx->r_default_ms,
795 max_queue_depth, bssgp_fc_in);
Harald Welted11c0592012-09-06 21:57:11 +0200796
797 return 0;
798}
799
Harald Welte25de8112010-05-13 21:26:28 +0200800static int bssgp_rx_fc_bvc(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200801 struct bssgp_bvc_ctx *bctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800802{
Harald Welte27b2bb72013-06-22 09:44:00 +0200803 uint32_t old_leak_rate = bctx->fc->bucket_leak_rate;
804 uint32_t old_r_def_ms = bctx->r_default_ms;
Harald Welte9ba50052010-03-14 15:45:01 +0800805
Harald Weltee9686b62010-05-31 18:07:17 +0200806 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx Flow Control BVC\n",
807 bctx->bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800808
809 if (!TLVP_PRESENT(tp, BSSGP_IE_TAG) ||
810 !TLVP_PRESENT(tp, BSSGP_IE_BVC_BUCKET_SIZE) ||
811 !TLVP_PRESENT(tp, BSSGP_IE_BUCKET_LEAK_RATE) ||
812 !TLVP_PRESENT(tp, BSSGP_IE_BMAX_DEFAULT_MS) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200813 !TLVP_PRESENT(tp, BSSGP_IE_R_DEFAULT_MS)) {
814 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx FC BVC "
815 "missing mandatory IE\n", bctx->bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800816 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Weltee9686b62010-05-31 18:07:17 +0200817 }
Harald Welte9ba50052010-03-14 15:45:01 +0800818
Harald Weltebb826222012-09-07 10:22:01 +0200819 /* 11.3.5 Bucket Size in 100 octets unit */
Harald Weltebfe62e52017-05-15 12:48:30 +0200820 bctx->fc->bucket_size_max = 100 * tlvp_val16be(tp, BSSGP_IE_BVC_BUCKET_SIZE);
Harald Weltebb826222012-09-07 10:22:01 +0200821 /* 11.3.4 Bucket Leak Rate in 100 bits/sec unit */
Harald Weltebfe62e52017-05-15 12:48:30 +0200822 bctx->fc->bucket_leak_rate = 100 * tlvp_val16be(tp, BSSGP_IE_BUCKET_LEAK_RATE) / 8;
Harald Weltebb826222012-09-07 10:22:01 +0200823 /* 11.3.2 in octets */
Harald Weltebfe62e52017-05-15 12:48:30 +0200824 bctx->bmax_default_ms = tlvp_val16be(tp, BSSGP_IE_BMAX_DEFAULT_MS);
Harald Weltebb826222012-09-07 10:22:01 +0200825 /* 11.3.32 Bucket Leak rate in 100bits/sec unit */
Harald Weltebfe62e52017-05-15 12:48:30 +0200826 bctx->r_default_ms = 100 * tlvp_val16be(tp, BSSGP_IE_R_DEFAULT_MS) / 8;
Harald Welte30bc19a2010-05-02 11:19:37 +0200827
Harald Welte27b2bb72013-06-22 09:44:00 +0200828 if (old_leak_rate != 0 && bctx->fc->bucket_leak_rate == 0)
829 LOGP(DBSSGP, LOGL_NOTICE, "BSS instructs us to bucket leak "
830 "rate of 0, stopping all DL GPRS!\n");
831 else if (old_leak_rate == 0 && bctx->fc->bucket_leak_rate != 0)
832 LOGP(DBSSGP, LOGL_NOTICE, "BSS instructs us to bucket leak "
833 "rate of != 0, restarting all DL GPRS!\n");
834
835 if (old_r_def_ms != 0 && bctx->r_default_ms == 0)
836 LOGP(DBSSGP, LOGL_NOTICE, "BSS instructs us to MS default "
837 "bucket leak rate of 0, stopping DL GPRS!\n");
838 else if (old_r_def_ms == 0 && bctx->r_default_ms != 0)
839 LOGP(DBSSGP, LOGL_NOTICE, "BSS instructs us to MS default "
840 "bucket leak rate != 0, restarting DL GPRS!\n");
841
842 /* reconfigure the timer for flow control based on new values */
843 fc_queue_timer_cfg(bctx->fc);
844
Harald Welte9ba50052010-03-14 15:45:01 +0800845 /* Send FLOW_CONTROL_BVC_ACK */
Harald Welte24a655f2010-04-30 19:54:29 +0200846 return bssgp_tx_fc_bvc_ack(msgb_nsei(msg), *TLVP_VAL(tp, BSSGP_IE_TAG),
Harald Welte30bc19a2010-05-02 11:19:37 +0200847 msgb_bvci(msg));
Harald Welte9ba50052010-03-14 15:45:01 +0800848}
Harald Welte3fddf3c2010-05-01 16:48:27 +0200849
Harald Welte25de8112010-05-13 21:26:28 +0200850/* Receive a BSSGP PDU from a BSS on a PTP BVCI */
Harald Weltede4599c2012-06-17 13:04:02 +0800851static int bssgp_rx_ptp(struct msgb *msg, struct tlv_parsed *tp,
852 struct bssgp_bvc_ctx *bctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800853{
Harald Welteec19c102010-05-02 09:50:42 +0200854 struct bssgp_normal_hdr *bgph =
855 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte30bc19a2010-05-02 11:19:37 +0200856 uint8_t pdu_type = bgph->pdu_type;
Harald Welte9ba50052010-03-14 15:45:01 +0800857 int rc = 0;
858
Jacob Erlbeck36153dc2015-03-17 10:21:17 +0100859 OSMO_ASSERT(pdu_type != BSSGP_PDUT_STATUS);
860
Harald Welte58e65c92010-05-13 21:45:23 +0200861 /* If traffic is received on a BVC that is marked as blocked, the
862 * received PDU shall not be accepted and a STATUS PDU (Cause value:
863 * BVC Blocked) shall be sent to the peer entity on the signalling BVC */
Jacob Erlbeck36153dc2015-03-17 10:21:17 +0100864 if (bctx->state & BVC_S_BLOCKED) {
Harald Welte58e65c92010-05-13 21:45:23 +0200865 uint16_t bvci = msgb_bvci(msg);
866 return bssgp_tx_status(BSSGP_CAUSE_BVCI_BLOCKED, &bvci, msg);
867 }
868
Harald Welte9ba50052010-03-14 15:45:01 +0800869 switch (pdu_type) {
870 case BSSGP_PDUT_UL_UNITDATA:
871 /* some LLC data from the MS */
Harald Welte25de8112010-05-13 21:26:28 +0200872 rc = bssgp_rx_ul_ud(msg, tp, bctx);
Harald Welte9ba50052010-03-14 15:45:01 +0800873 break;
874 case BSSGP_PDUT_RA_CAPABILITY:
875 /* BSS requests RA capability or IMSI */
Harald Weltee9686b62010-05-31 18:07:17 +0200876 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx RA CAPABILITY UPDATE\n",
877 bctx->bvci);
Harald Welte6b7cf252010-05-13 19:41:31 +0200878 /* FIXME: send GMM_RA_CAPABILITY_UPDATE.ind to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800879 /* FIXME: send RA_CAPA_UPDATE_ACK */
880 break;
881 case BSSGP_PDUT_RADIO_STATUS:
Harald Weltee9686b62010-05-31 18:07:17 +0200882 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx RADIO STATUS\n", bctx->bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800883 /* BSS informs us of some exception */
Harald Welte6b7cf252010-05-13 19:41:31 +0200884 /* FIXME: send GMM_RADIO_STATUS.ind to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800885 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800886 case BSSGP_PDUT_FLOW_CONTROL_BVC:
887 /* BSS informs us of available bandwidth in Gb interface */
Harald Welte25de8112010-05-13 21:26:28 +0200888 rc = bssgp_rx_fc_bvc(msg, tp, bctx);
Harald Welte9ba50052010-03-14 15:45:01 +0800889 break;
890 case BSSGP_PDUT_FLOW_CONTROL_MS:
891 /* BSS informs us of available bandwidth to one MS */
Harald Weltee9686b62010-05-31 18:07:17 +0200892 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx Flow Control MS\n",
893 bctx->bvci);
Harald Welte30bc19a2010-05-02 11:19:37 +0200894 /* FIXME: actually implement flow control */
895 /* FIXME: Send FLOW_CONTROL_MS_ACK */
Harald Welte9ba50052010-03-14 15:45:01 +0800896 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800897 case BSSGP_PDUT_STATUS:
Jacob Erlbeck36153dc2015-03-17 10:21:17 +0100898 /* This is already handled in bssgp_rcvmsg() */
Jacob Erlbeck49ed9be2015-03-17 10:21:16 +0100899 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800900 case BSSGP_PDUT_DOWNLOAD_BSS_PFC:
901 case BSSGP_PDUT_CREATE_BSS_PFC_ACK:
902 case BSSGP_PDUT_CREATE_BSS_PFC_NACK:
903 case BSSGP_PDUT_MODIFY_BSS_PFC:
904 case BSSGP_PDUT_DELETE_BSS_PFC_ACK:
Max2c34ab42016-03-17 15:42:26 +0100905 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx PDU type %s not [yet] "
906 "implemented\n", bctx->bvci, bssgp_pdu_str(pdu_type));
Harald Welte25de8112010-05-13 21:26:28 +0200907 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800908 break;
909 /* those only exist in the SGSN -> BSS direction */
910 case BSSGP_PDUT_DL_UNITDATA:
911 case BSSGP_PDUT_PAGING_PS:
912 case BSSGP_PDUT_PAGING_CS:
913 case BSSGP_PDUT_RA_CAPA_UPDATE_ACK:
Harald Welte25de8112010-05-13 21:26:28 +0200914 case BSSGP_PDUT_FLOW_CONTROL_BVC_ACK:
915 case BSSGP_PDUT_FLOW_CONTROL_MS_ACK:
Max2c34ab42016-03-17 15:42:26 +0100916 DEBUGP(DBSSGP, "BSSGP BVCI=%u PDU type %s only exists in DL\n",
917 bctx->bvci, bssgp_pdu_str(pdu_type));
Harald Welte25de8112010-05-13 21:26:28 +0200918 bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
919 rc = -EINVAL;
920 break;
921 default:
Max2c34ab42016-03-17 15:42:26 +0100922 DEBUGP(DBSSGP, "BSSGP BVCI=%u PDU type %s unknown\n",
923 bctx->bvci, bssgp_pdu_str(pdu_type));
Harald Welte25de8112010-05-13 21:26:28 +0200924 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
925 break;
926 }
927
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800928 return rc;
Harald Welte25de8112010-05-13 21:26:28 +0200929}
930
931/* Receive a BSSGP PDU from a BSS on a SIGNALLING BVCI */
Harald Weltede4599c2012-06-17 13:04:02 +0800932static int bssgp_rx_sign(struct msgb *msg, struct tlv_parsed *tp,
933 struct bssgp_bvc_ctx *bctx)
Harald Welte25de8112010-05-13 21:26:28 +0200934{
935 struct bssgp_normal_hdr *bgph =
936 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
937 uint8_t pdu_type = bgph->pdu_type;
938 int rc = 0;
939 uint16_t ns_bvci = msgb_bvci(msg);
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200940 uint16_t bvci = bctx ? bctx->bvci : ns_bvci;
Harald Welte25de8112010-05-13 21:26:28 +0200941
942 switch (bgph->pdu_type) {
943 case BSSGP_PDUT_SUSPEND:
944 /* MS wants to suspend */
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200945 rc = bssgp_rx_suspend(msg, tp);
Harald Welte25de8112010-05-13 21:26:28 +0200946 break;
947 case BSSGP_PDUT_RESUME:
948 /* MS wants to resume */
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200949 rc = bssgp_rx_resume(msg, tp);
Harald Welte25de8112010-05-13 21:26:28 +0200950 break;
951 case BSSGP_PDUT_FLUSH_LL_ACK:
952 /* BSS informs us it has performed LL FLUSH */
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200953 DEBUGP(DBSSGP, "BSSGP Rx BVCI=%u FLUSH LL ACK\n", bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200954 /* FIXME: send NM_FLUSH_LL.res to NM */
955 break;
956 case BSSGP_PDUT_LLC_DISCARD:
957 /* BSS informs that some LLC PDU's have been discarded */
Jacob Erlbeckb43baf22014-09-10 12:43:28 +0200958 if (!bctx) {
959 LOGP(DBSSGP, LOGL_ERROR,
960 "BSSGP Rx LLC-DISCARD missing mandatory BVCI\n");
961 goto err_mand_ie;
962 }
Harald Weltee9686b62010-05-31 18:07:17 +0200963 rc = bssgp_rx_llc_disc(msg, tp, bctx);
Harald Welte25de8112010-05-13 21:26:28 +0200964 break;
965 case BSSGP_PDUT_BVC_BLOCK:
966 /* BSS tells us that BVC shall be blocked */
Harald Welte25de8112010-05-13 21:26:28 +0200967 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200968 !TLVP_PRESENT(tp, BSSGP_IE_CAUSE)) {
969 LOGP(DBSSGP, LOGL_ERROR, "BSSGP Rx BVC-BLOCK "
970 "missing mandatory IE\n");
Harald Welte25de8112010-05-13 21:26:28 +0200971 goto err_mand_ie;
Harald Weltee9686b62010-05-31 18:07:17 +0200972 }
Harald Welte2677ea52010-05-31 17:16:36 +0200973 rc = bssgp_rx_bvc_block(msg, tp);
Harald Welte25de8112010-05-13 21:26:28 +0200974 break;
975 case BSSGP_PDUT_BVC_UNBLOCK:
976 /* BSS tells us that BVC shall be unblocked */
Harald Weltee9686b62010-05-31 18:07:17 +0200977 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
978 LOGP(DBSSGP, LOGL_ERROR, "BSSGP Rx BVC-UNBLOCK "
979 "missing mandatory IE\n");
Harald Welte25de8112010-05-13 21:26:28 +0200980 goto err_mand_ie;
Harald Weltee9686b62010-05-31 18:07:17 +0200981 }
Harald Welte25de8112010-05-13 21:26:28 +0200982 rc = bssgp_rx_bvc_unblock(msg, tp);
983 break;
Max590c4022017-06-28 14:29:24 +0200984 case BSSGP_PDUT_BVC_RESET_ACK:
985 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx BVC-RESET-ACK\n", bvci);
986 break;
Harald Welte25de8112010-05-13 21:26:28 +0200987 case BSSGP_PDUT_BVC_RESET:
988 /* BSS tells us that BVC init is required */
Harald Welte25de8112010-05-13 21:26:28 +0200989 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200990 !TLVP_PRESENT(tp, BSSGP_IE_CAUSE)) {
991 LOGP(DBSSGP, LOGL_ERROR, "BSSGP Rx BVC-RESET "
992 "missing mandatory IE\n");
Harald Welte25de8112010-05-13 21:26:28 +0200993 goto err_mand_ie;
Harald Weltee9686b62010-05-31 18:07:17 +0200994 }
Harald Welte25de8112010-05-13 21:26:28 +0200995 rc = bssgp_rx_bvc_reset(msg, tp, ns_bvci);
996 break;
997 case BSSGP_PDUT_STATUS:
Jacob Erlbeck36153dc2015-03-17 10:21:17 +0100998 /* This is already handled in bssgp_rcvmsg() */
Harald Welte25de8112010-05-13 21:26:28 +0200999 break;
1000 /* those only exist in the SGSN -> BSS direction */
1001 case BSSGP_PDUT_PAGING_PS:
1002 case BSSGP_PDUT_PAGING_CS:
Harald Welte9ba50052010-03-14 15:45:01 +08001003 case BSSGP_PDUT_SUSPEND_ACK:
1004 case BSSGP_PDUT_SUSPEND_NACK:
1005 case BSSGP_PDUT_RESUME_ACK:
1006 case BSSGP_PDUT_RESUME_NACK:
Harald Welte6b7cf252010-05-13 19:41:31 +02001007 case BSSGP_PDUT_FLUSH_LL:
Harald Welte9ba50052010-03-14 15:45:01 +08001008 case BSSGP_PDUT_BVC_BLOCK_ACK:
1009 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
1010 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Max2c34ab42016-03-17 15:42:26 +01001011 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx PDU type %s only exists in DL\n",
1012 bvci, bssgp_pdu_str(pdu_type));
Harald Welte25de8112010-05-13 21:26:28 +02001013 bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +08001014 rc = -EINVAL;
1015 break;
1016 default:
Max2c34ab42016-03-17 15:42:26 +01001017 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx PDU type %s unknown\n",
1018 bvci, bssgp_pdu_str(pdu_type));
Harald Welte25de8112010-05-13 21:26:28 +02001019 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +08001020 break;
1021 }
1022
1023 return rc;
1024err_mand_ie:
1025 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
1026}
1027
Harald Welte25de8112010-05-13 21:26:28 +02001028/* We expect msgb_bssgph() to point to the BSSGP header */
Harald Weltede4599c2012-06-17 13:04:02 +08001029int bssgp_rcvmsg(struct msgb *msg)
Harald Welte25de8112010-05-13 21:26:28 +02001030{
1031 struct bssgp_normal_hdr *bgph =
1032 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
1033 struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
1034 struct tlv_parsed tp;
Harald Welte8a521132010-05-17 22:59:29 +02001035 struct bssgp_bvc_ctx *bctx;
Harald Welte25de8112010-05-13 21:26:28 +02001036 uint8_t pdu_type = bgph->pdu_type;
1037 uint16_t ns_bvci = msgb_bvci(msg);
Jacob Erlbeckb83b8382014-09-23 13:28:22 +02001038 uint16_t bvci = ns_bvci;
Harald Welte25de8112010-05-13 21:26:28 +02001039 int data_len;
1040 int rc = 0;
1041
1042 /* Identifiers from DOWN: NSEI, BVCI (both in msg->cb) */
1043
1044 /* UNITDATA BSSGP headers have TLLI in front */
1045 if (pdu_type != BSSGP_PDUT_UL_UNITDATA &&
1046 pdu_type != BSSGP_PDUT_DL_UNITDATA) {
1047 data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
1048 rc = bssgp_tlv_parse(&tp, bgph->data, data_len);
1049 } else {
1050 data_len = msgb_bssgp_len(msg) - sizeof(*budh);
1051 rc = bssgp_tlv_parse(&tp, budh->data, data_len);
1052 }
1053
Jacob Erlbeckb83b8382014-09-23 13:28:22 +02001054 if (bvci == BVCI_SIGNALLING && TLVP_PRESENT(&tp, BSSGP_IE_BVCI))
Harald Weltebfe62e52017-05-15 12:48:30 +02001055 bvci = tlvp_val16be(&tp, BSSGP_IE_BVCI);
Jacob Erlbeckb83b8382014-09-23 13:28:22 +02001056
Harald Welte25de8112010-05-13 21:26:28 +02001057 /* look-up or create the BTS context for this BVC */
Jacob Erlbeckb83b8382014-09-23 13:28:22 +02001058 bctx = btsctx_by_bvci_nsei(bvci, msgb_nsei(msg));
Harald Welte25de8112010-05-13 21:26:28 +02001059
Harald Welte16c8dbb2010-05-17 23:30:01 +02001060 if (bctx) {
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +01001061 log_set_context(LOG_CTX_GB_BVC, bctx);
Harald Welte16c8dbb2010-05-17 23:30:01 +02001062 rate_ctr_inc(&bctx->ctrg->ctr[BSSGP_CTR_PKTS_IN]);
1063 rate_ctr_add(&bctx->ctrg->ctr[BSSGP_CTR_BYTES_IN],
1064 msgb_bssgp_len(msg));
1065 }
1066
Jacob Erlbeck36153dc2015-03-17 10:21:17 +01001067 /* Always handle STATUS PDUs, even if they contain an invalid BVCI or
1068 * are otherwise unexpected */
1069 if (pdu_type == BSSGP_PDUT_STATUS)
1070 /* Some exception has occurred */
1071 return bssgp_rx_status(msg, &tp, bvci, bctx);
1072
1073 /* Only a RESET PDU can create a new BVC context, otherwise it must be
1074 * registered if a BVCI is given. */
1075 if (!bctx && bvci != BVCI_SIGNALLING &&
1076 pdu_type != BSSGP_PDUT_BVC_RESET) {
1077 LOGP(DBSSGP, LOGL_NOTICE, "NSEI=%u/BVCI=%u Rejecting PDU "
Max2c34ab42016-03-17 15:42:26 +01001078 "type %s for unknown BVCI\n", msgb_nsei(msg), bvci,
1079 bssgp_pdu_str(pdu_type));
Jacob Erlbeck36153dc2015-03-17 10:21:17 +01001080 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &bvci, msg);
1081 }
1082
Harald Welte61c07842010-05-18 11:57:08 +02001083 if (ns_bvci == BVCI_SIGNALLING)
Harald Weltede4599c2012-06-17 13:04:02 +08001084 rc = bssgp_rx_sign(msg, &tp, bctx);
Harald Welte61c07842010-05-18 11:57:08 +02001085 else if (ns_bvci == BVCI_PTM)
Harald Welte25de8112010-05-13 21:26:28 +02001086 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
Jacob Erlbeckb535e392015-04-07 17:52:44 +02001087 else if (bctx)
Harald Weltede4599c2012-06-17 13:04:02 +08001088 rc = bssgp_rx_ptp(msg, &tp, bctx);
Jacob Erlbeckb535e392015-04-07 17:52:44 +02001089 else
1090 LOGP(DBSSGP, LOGL_NOTICE,
Max2c34ab42016-03-17 15:42:26 +01001091 "NSEI=%u/BVCI=%u Cannot handle PDU type %s for "
Jacob Erlbeckb535e392015-04-07 17:52:44 +02001092 "unknown BVCI, NS BVCI %u\n",
Max2c34ab42016-03-17 15:42:26 +01001093 msgb_nsei(msg), bvci, bssgp_pdu_str(pdu_type), ns_bvci);
Harald Welte25de8112010-05-13 21:26:28 +02001094
1095 return rc;
1096}
1097
Harald Weltede4599c2012-06-17 13:04:02 +08001098int bssgp_tx_dl_ud(struct msgb *msg, uint16_t pdu_lifetime,
1099 struct bssgp_dl_ud_par *dup)
Harald Welte9ba50052010-03-14 15:45:01 +08001100{
Harald Welte8a521132010-05-17 22:59:29 +02001101 struct bssgp_bvc_ctx *bctx;
Harald Welte9ba50052010-03-14 15:45:01 +08001102 struct bssgp_ud_hdr *budh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +02001103 uint8_t llc_pdu_tlv_hdr_len = 2;
Harald Welte8ef54d12012-06-17 09:31:16 +08001104 uint8_t *llc_pdu_tlv;
Harald Welte8f9a3ee2010-05-02 11:26:34 +02001105 uint16_t msg_len = msg->len;
Harald Welte30bc19a2010-05-02 11:19:37 +02001106 uint16_t bvci = msgb_bvci(msg);
1107 uint16_t nsei = msgb_nsei(msg);
Harald Weltebfe62e52017-05-15 12:48:30 +02001108 uint16_t _pdu_lifetime = osmo_htons(pdu_lifetime); /* centi-seconds */
Harald Welte2f946832010-05-31 22:12:30 +02001109 uint16_t drx_params;
Harald Welte9ba50052010-03-14 15:45:01 +08001110
Jacob Erlbeckc6415912015-04-07 17:52:43 +02001111 OSMO_ASSERT(dup != NULL);
1112
Harald Welte30bc19a2010-05-02 11:19:37 +02001113 /* Identifiers from UP: TLLI, BVCI, NSEI (all in msgb->cb) */
Harald Welte61c07842010-05-18 11:57:08 +02001114 if (bvci <= BVCI_PTM ) {
Harald Welteb8a6a832010-05-11 05:54:22 +02001115 LOGP(DBSSGP, LOGL_ERROR, "Cannot send DL-UD to BVCI %u\n",
Harald Welte30bc19a2010-05-02 11:19:37 +02001116 bvci);
Holger Hans Peter Freyther10dd73c2014-10-10 17:24:34 +02001117 msgb_free(msg);
Harald Welte30bc19a2010-05-02 11:19:37 +02001118 return -EINVAL;
1119 }
1120
1121 bctx = btsctx_by_bvci_nsei(bvci, nsei);
Harald Welte25de8112010-05-13 21:26:28 +02001122 if (!bctx) {
Harald Welted11c0592012-09-06 21:57:11 +02001123 LOGP(DBSSGP, LOGL_ERROR, "Cannot send DL-UD to unknown BVCI %u\n",
1124 bvci);
Holger Hans Peter Freyther10dd73c2014-10-10 17:24:34 +02001125 msgb_free(msg);
Harald Welted11c0592012-09-06 21:57:11 +02001126 return -ENODEV;
Harald Welte25de8112010-05-13 21:26:28 +02001127 }
Harald Welte9ba50052010-03-14 15:45:01 +08001128
1129 if (msg->len > TVLV_MAX_ONEBYTE)
1130 llc_pdu_tlv_hdr_len += 1;
1131
1132 /* prepend the tag and length of the LLC-PDU TLV */
1133 llc_pdu_tlv = msgb_push(msg, llc_pdu_tlv_hdr_len);
1134 llc_pdu_tlv[0] = BSSGP_IE_LLC_PDU;
1135 if (llc_pdu_tlv_hdr_len > 2) {
1136 llc_pdu_tlv[1] = msg_len >> 8;
1137 llc_pdu_tlv[2] = msg_len & 0xff;
1138 } else {
Sylvain Munautb00d1ad2010-06-09 21:13:13 +02001139 llc_pdu_tlv[1] = msg_len & 0x7f;
Harald Welte9ba50052010-03-14 15:45:01 +08001140 llc_pdu_tlv[1] |= 0x80;
1141 }
1142
Harald Welte2f946832010-05-31 22:12:30 +02001143 /* FIXME: optional elements: Alignment, UTRAN CCO, LSA, PFI */
1144
Jacob Erlbeckc6415912015-04-07 17:52:43 +02001145 /* Old TLLI to help BSS map from old->new */
1146 if (dup->tlli) {
Harald Weltebfe62e52017-05-15 12:48:30 +02001147 uint32_t tlli = osmo_htonl(*dup->tlli);
Jacob Erlbeckc6415912015-04-07 17:52:43 +02001148 msgb_tvlv_push(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &tlli);
Harald Welte2f946832010-05-31 22:12:30 +02001149 }
Harald Welte9ba50052010-03-14 15:45:01 +08001150
Jacob Erlbeckc6415912015-04-07 17:52:43 +02001151 /* IMSI */
1152 if (dup->imsi && strlen(dup->imsi)) {
1153 uint8_t mi[10];
1154 int imsi_len = gsm48_generate_mid_from_imsi(mi, dup->imsi);
1155 if (imsi_len > 2)
1156 msgb_tvlv_push(msg, BSSGP_IE_IMSI,
1157 imsi_len-2, mi+2);
1158 }
1159
1160 /* DRX parameters */
Harald Weltebfe62e52017-05-15 12:48:30 +02001161 drx_params = osmo_htons(dup->drx_parms);
Jacob Erlbeckc6415912015-04-07 17:52:43 +02001162 msgb_tvlv_push(msg, BSSGP_IE_DRX_PARAMS, 2,
1163 (uint8_t *) &drx_params);
1164
1165 /* FIXME: Priority */
1166
1167 /* MS Radio Access Capability */
1168 if (dup->ms_ra_cap.len)
1169 msgb_tvlv_push(msg, BSSGP_IE_MS_RADIO_ACCESS_CAP,
1170 dup->ms_ra_cap.len, dup->ms_ra_cap.v);
1171
Harald Welte9ba50052010-03-14 15:45:01 +08001172 /* prepend the pdu lifetime */
Harald Welte8ef54d12012-06-17 09:31:16 +08001173 msgb_tvlv_push(msg, BSSGP_IE_PDU_LIFETIME, 2, (uint8_t *)&_pdu_lifetime);
Harald Welte9ba50052010-03-14 15:45:01 +08001174
1175 /* prepend the QoS profile, TLLI and pdu type */
1176 budh = (struct bssgp_ud_hdr *) msgb_push(msg, sizeof(*budh));
Harald Welte8ef54d12012-06-17 09:31:16 +08001177 memcpy(budh->qos_profile, dup->qos_profile, sizeof(budh->qos_profile));
Harald Weltebfe62e52017-05-15 12:48:30 +02001178 budh->tlli = osmo_htonl(msgb_tlli(msg));
Harald Welte9ba50052010-03-14 15:45:01 +08001179 budh->pdu_type = BSSGP_PDUT_DL_UNITDATA;
1180
Harald Welte16c8dbb2010-05-17 23:30:01 +02001181 rate_ctr_inc(&bctx->ctrg->ctr[BSSGP_CTR_PKTS_OUT]);
1182 rate_ctr_add(&bctx->ctrg->ctr[BSSGP_CTR_BYTES_OUT], msg->len);
1183
Harald Welte30bc19a2010-05-02 11:19:37 +02001184 /* Identifiers down: BVCI, NSEI (in msgb->cb) */
Harald Welte24a655f2010-04-30 19:54:29 +02001185
Harald Welted11c0592012-09-06 21:57:11 +02001186 /* check if we have to go through per-ms flow control or can go
1187 * directly to the per-BSS flow control */
1188 if (dup->fc)
Harald Welted8b47692012-09-07 11:29:32 +02001189 return bssgp_fc_in(dup->fc, msg, msg_len, bctx->fc);
Harald Welted11c0592012-09-06 21:57:11 +02001190 else
Harald Welted8b47692012-09-07 11:29:32 +02001191 return bssgp_fc_in(bctx->fc, msg, msg_len, NULL);
Harald Welte9ba50052010-03-14 15:45:01 +08001192}
Harald Welte68b4f032010-06-09 16:22:28 +02001193
1194/* Send a single GMM-PAGING.req to a given NSEI/NS-BVCI */
Harald Weltede4599c2012-06-17 13:04:02 +08001195int bssgp_tx_paging(uint16_t nsei, uint16_t ns_bvci,
1196 struct bssgp_paging_info *pinfo)
Harald Welte68b4f032010-06-09 16:22:28 +02001197{
1198 struct msgb *msg = bssgp_msgb_alloc();
1199 struct bssgp_normal_hdr *bgph =
1200 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
Harald Weltebfe62e52017-05-15 12:48:30 +02001201 uint16_t drx_params = osmo_htons(pinfo->drx_params);
Harald Welte68b4f032010-06-09 16:22:28 +02001202 uint8_t mi[10];
1203 int imsi_len = gsm48_generate_mid_from_imsi(mi, pinfo->imsi);
Maxf1ad60e2018-01-05 14:19:33 +01001204 struct gsm48_ra_id ra;
Harald Welte68b4f032010-06-09 16:22:28 +02001205
1206 if (imsi_len < 2)
1207 return -EINVAL;
1208
1209 msgb_nsei(msg) = nsei;
1210 msgb_bvci(msg) = ns_bvci;
1211
1212 if (pinfo->mode == BSSGP_PAGING_PS)
1213 bgph->pdu_type = BSSGP_PDUT_PAGING_PS;
1214 else
1215 bgph->pdu_type = BSSGP_PDUT_PAGING_CS;
1216 /* IMSI */
1217 msgb_tvlv_put(msg, BSSGP_IE_IMSI, imsi_len-2, mi+2);
1218 /* DRX Parameters */
1219 msgb_tvlv_put(msg, BSSGP_IE_DRX_PARAMS, 2,
1220 (uint8_t *) &drx_params);
1221 /* Scope */
1222 switch (pinfo->scope) {
1223 case BSSGP_PAGING_BSS_AREA:
1224 {
1225 uint8_t null = 0;
1226 msgb_tvlv_put(msg, BSSGP_IE_BSS_AREA_ID, 1, &null);
1227 }
1228 break;
1229 case BSSGP_PAGING_LOCATION_AREA:
Maxf1ad60e2018-01-05 14:19:33 +01001230 gsm48_encode_ra(&ra, &pinfo->raid);
1231 msgb_tvlv_put(msg, BSSGP_IE_LOCATION_AREA, 4, (const uint8_t *)&ra);
Harald Welte68b4f032010-06-09 16:22:28 +02001232 break;
1233 case BSSGP_PAGING_ROUTEING_AREA:
Maxf1ad60e2018-01-05 14:19:33 +01001234 bssgp_msgb_ra_put(msg, &pinfo->raid);
Harald Welte68b4f032010-06-09 16:22:28 +02001235 break;
1236 case BSSGP_PAGING_BVCI:
1237 {
Harald Weltebfe62e52017-05-15 12:48:30 +02001238 uint16_t bvci = osmo_htons(pinfo->bvci);
Harald Welte68b4f032010-06-09 16:22:28 +02001239 msgb_tvlv_put(msg, BSSGP_IE_BVCI, 2, (uint8_t *)&bvci);
1240 }
1241 break;
1242 }
1243 /* QoS profile mandatory for PS */
1244 if (pinfo->mode == BSSGP_PAGING_PS)
1245 msgb_tvlv_put(msg, BSSGP_IE_QOS_PROFILE, 3, pinfo->qos);
1246
1247 /* Optional (P-)TMSI */
1248 if (pinfo->ptmsi) {
Harald Weltebfe62e52017-05-15 12:48:30 +02001249 uint32_t ptmsi = osmo_htonl(*pinfo->ptmsi);
Harald Welte68b4f032010-06-09 16:22:28 +02001250 msgb_tvlv_put(msg, BSSGP_IE_TMSI, 4, (uint8_t *) &ptmsi);
1251 }
1252
1253 return gprs_ns_sendmsg(bssgp_nsi, msg);
1254}
Harald Weltecca49632012-06-16 17:45:59 +08001255
Harald Weltede4599c2012-06-17 13:04:02 +08001256void bssgp_set_log_ss(int ss)
Harald Weltecca49632012-06-16 17:45:59 +08001257{
1258 DBSSGP = ss;
1259}