blob: 5ef18872e90bcc5ba46c0249971e8a30338ed248 [file] [log] [blame]
Harald Welte9ba50052010-03-14 15:45:01 +08001/* GPRS BSSGP protocol implementation as per 3GPP TS 08.18 */
2
Harald Welte605ac5d2012-06-16 16:09:52 +08003/* (C) 2009-2012 by Harald Welte <laforge@gnumonks.org>
Harald Welte9ba50052010-03-14 15:45:01 +08004 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
Harald Weltee4cbb3f2011-01-01 15:25:50 +01008 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
Harald Welte9ba50052010-03-14 15:45:01 +080010 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Weltee4cbb3f2011-01-01 15:25:50 +010015 * GNU Affero General Public License for more details.
Harald Welte9ba50052010-03-14 15:45:01 +080016 *
Harald Weltee4cbb3f2011-01-01 15:25:50 +010017 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte9ba50052010-03-14 15:45:01 +080019 *
Harald Welte4e5721d2010-05-17 23:41:43 +020020 * TODO:
21 * o properly count incoming BVC-RESET packets in counter group
22 * o set log context as early as possible for outgoing packets
Harald Welte9ba50052010-03-14 15:45:01 +080023 */
24
25#include <errno.h>
Harald Welte8f9a3ee2010-05-02 11:26:34 +020026#include <stdint.h>
Harald Welte9ba50052010-03-14 15:45:01 +080027
28#include <netinet/in.h>
29
Pablo Neira Ayusoff663232011-03-22 16:47:59 +010030#include <osmocom/core/msgb.h>
31#include <osmocom/gsm/tlv.h>
32#include <osmocom/core/talloc.h>
33#include <osmocom/core/rate_ctr.h>
Harald Welte6752fa42010-05-02 09:23:16 +020034
Harald Welte73952e32012-06-16 14:59:56 +080035#include <osmocom/gprs/gprs_bssgp.h>
36#include <osmocom/gprs/gprs_ns.h>
37
Harald Weltecca49632012-06-16 17:45:59 +080038#include "common_vty.h"
39
Harald Welte6752fa42010-05-02 09:23:16 +020040void *bssgp_tall_ctx = NULL;
41
Harald Welte25de8112010-05-13 21:26:28 +020042static const struct rate_ctr_desc bssgp_ctr_description[] = {
Harald Welte16c8dbb2010-05-17 23:30:01 +020043 { "packets.in", "Packets at BSSGP Level ( In)" },
44 { "packets.out","Packets at BSSGP Level (Out)" },
45 { "bytes.in", "Bytes at BSSGP Level ( In)" },
46 { "bytes.out", "Bytes at BSSGP Level (Out)" },
Harald Welte25de8112010-05-13 21:26:28 +020047 { "blocked", "BVC Blocking count" },
48 { "discarded", "BVC LLC Discarded count" },
49};
50
51static const struct rate_ctr_group_desc bssgp_ctrg_desc = {
52 .group_name_prefix = "bssgp.bss_ctx",
53 .group_description = "BSSGP Peer Statistics",
54 .num_ctr = ARRAY_SIZE(bssgp_ctr_description),
55 .ctr_desc = bssgp_ctr_description,
56};
57
Harald Weltea78b9c22010-05-17 23:02:42 +020058LLIST_HEAD(bssgp_bvc_ctxts);
Harald Welte6752fa42010-05-02 09:23:16 +020059
Harald Welted11c0592012-09-06 21:57:11 +020060static int _bssgp_tx_dl_ud(struct bssgp_flow_control *fc, struct msgb *msg,
61 uint32_t llc_pdu_len, void *priv);
62
Harald Welte6752fa42010-05-02 09:23:16 +020063/* Find a BTS Context based on parsed RA ID and Cell ID */
Harald Welte8a521132010-05-17 22:59:29 +020064struct bssgp_bvc_ctx *btsctx_by_raid_cid(const struct gprs_ra_id *raid, uint16_t cid)
Harald Welte6752fa42010-05-02 09:23:16 +020065{
Harald Welte8a521132010-05-17 22:59:29 +020066 struct bssgp_bvc_ctx *bctx;
Harald Welte6752fa42010-05-02 09:23:16 +020067
Harald Weltea78b9c22010-05-17 23:02:42 +020068 llist_for_each_entry(bctx, &bssgp_bvc_ctxts, list) {
Harald Welte6752fa42010-05-02 09:23:16 +020069 if (!memcmp(&bctx->ra_id, raid, sizeof(bctx->ra_id)) &&
70 bctx->cell_id == cid)
71 return bctx;
72 }
73 return NULL;
74}
75
76/* Find a BTS context based on BVCI+NSEI tuple */
Harald Welte8a521132010-05-17 22:59:29 +020077struct bssgp_bvc_ctx *btsctx_by_bvci_nsei(uint16_t bvci, uint16_t nsei)
Harald Welte6752fa42010-05-02 09:23:16 +020078{
Harald Welte8a521132010-05-17 22:59:29 +020079 struct bssgp_bvc_ctx *bctx;
Harald Welte6752fa42010-05-02 09:23:16 +020080
Harald Weltea78b9c22010-05-17 23:02:42 +020081 llist_for_each_entry(bctx, &bssgp_bvc_ctxts, list) {
Harald Welte6752fa42010-05-02 09:23:16 +020082 if (bctx->nsei == nsei && bctx->bvci == bvci)
83 return bctx;
84 }
85 return NULL;
86}
87
Harald Welte8a521132010-05-17 22:59:29 +020088struct bssgp_bvc_ctx *btsctx_alloc(uint16_t bvci, uint16_t nsei)
Harald Welte6752fa42010-05-02 09:23:16 +020089{
Harald Welte8a521132010-05-17 22:59:29 +020090 struct bssgp_bvc_ctx *ctx;
Harald Welte6752fa42010-05-02 09:23:16 +020091
Harald Welte8a521132010-05-17 22:59:29 +020092 ctx = talloc_zero(bssgp_tall_ctx, struct bssgp_bvc_ctx);
Harald Welte6752fa42010-05-02 09:23:16 +020093 if (!ctx)
94 return NULL;
95 ctx->bvci = bvci;
96 ctx->nsei = nsei;
Harald Welte25de8112010-05-13 21:26:28 +020097 /* FIXME: BVCI is not unique, only BVCI+NSEI ?!? */
98 ctx->ctrg = rate_ctr_group_alloc(ctx, &bssgp_ctrg_desc, bvci);
Harald Welted8b47692012-09-07 11:29:32 +020099 ctx->fc = talloc_zero(ctx, struct bssgp_flow_control);
100 /* cofigure for 2Mbit, 30 packets in queue */
101 bssgp_fc_init(ctx->fc, 100000, 2*1024*1024/8, 30, &_bssgp_tx_dl_ud);
Harald Welte25de8112010-05-13 21:26:28 +0200102
Harald Weltea78b9c22010-05-17 23:02:42 +0200103 llist_add(&ctx->list, &bssgp_bvc_ctxts);
Harald Welte6752fa42010-05-02 09:23:16 +0200104
105 return ctx;
106}
107
Harald Welte9ba50052010-03-14 15:45:01 +0800108/* Chapter 10.4.5: Flow Control BVC ACK */
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200109static int bssgp_tx_fc_bvc_ack(uint16_t nsei, uint8_t tag, uint16_t ns_bvci)
Harald Welte9ba50052010-03-14 15:45:01 +0800110{
111 struct msgb *msg = bssgp_msgb_alloc();
112 struct bssgp_normal_hdr *bgph =
113 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
114
Harald Welte24a655f2010-04-30 19:54:29 +0200115 msgb_nsei(msg) = nsei;
116 msgb_bvci(msg) = ns_bvci;
117
Harald Welte9ba50052010-03-14 15:45:01 +0800118 bgph->pdu_type = BSSGP_PDUT_FLOW_CONTROL_BVC_ACK;
119 msgb_tvlv_put(msg, BSSGP_IE_TAG, 1, &tag);
120
Harald Welte24a655f2010-04-30 19:54:29 +0200121 return gprs_ns_sendmsg(bssgp_nsi, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800122}
123
Harald Weltea8aa4df2010-05-30 22:00:53 +0200124/* 10.3.7 SUSPEND-ACK PDU */
125int bssgp_tx_suspend_ack(uint16_t nsei, uint32_t tlli,
126 const struct gprs_ra_id *ra_id, uint8_t suspend_ref)
127{
128 struct msgb *msg = bssgp_msgb_alloc();
129 struct bssgp_normal_hdr *bgph =
130 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
131 uint32_t _tlli;
132 uint8_t ra[6];
133
134 msgb_nsei(msg) = nsei;
135 msgb_bvci(msg) = 0; /* Signalling */
136 bgph->pdu_type = BSSGP_PDUT_SUSPEND_ACK;
137
138 _tlli = htonl(tlli);
139 msgb_tvlv_put(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &_tlli);
140 gsm48_construct_ra(ra, ra_id);
141 msgb_tvlv_put(msg, BSSGP_IE_ROUTEING_AREA, 6, ra);
142 msgb_tvlv_put(msg, BSSGP_IE_SUSPEND_REF_NR, 1, &suspend_ref);
143
144 return gprs_ns_sendmsg(bssgp_nsi, msg);
145}
146
147/* 10.3.8 SUSPEND-NACK PDU */
148int bssgp_tx_suspend_nack(uint16_t nsei, uint32_t tlli,
Dieter Spaard2b13fc2010-12-12 12:45:08 +0100149 const struct gprs_ra_id *ra_id,
Harald Weltea8aa4df2010-05-30 22:00:53 +0200150 uint8_t *cause)
151{
152 struct msgb *msg = bssgp_msgb_alloc();
153 struct bssgp_normal_hdr *bgph =
154 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
155 uint32_t _tlli;
Dieter Spaard2b13fc2010-12-12 12:45:08 +0100156 uint8_t ra[6];
Harald Weltea8aa4df2010-05-30 22:00:53 +0200157
158 msgb_nsei(msg) = nsei;
159 msgb_bvci(msg) = 0; /* Signalling */
160 bgph->pdu_type = BSSGP_PDUT_SUSPEND_NACK;
161
162 _tlli = htonl(tlli);
163 msgb_tvlv_put(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &_tlli);
Dieter Spaard2b13fc2010-12-12 12:45:08 +0100164 gsm48_construct_ra(ra, ra_id);
165 msgb_tvlv_put(msg, BSSGP_IE_ROUTEING_AREA, 6, ra);
Harald Weltea8aa4df2010-05-30 22:00:53 +0200166 if (cause)
167 msgb_tvlv_put(msg, BSSGP_IE_CAUSE, 1, cause);
168
169 return gprs_ns_sendmsg(bssgp_nsi, msg);
170}
171
172/* 10.3.10 RESUME-ACK PDU */
173int bssgp_tx_resume_ack(uint16_t nsei, uint32_t tlli,
174 const struct gprs_ra_id *ra_id)
175{
176 struct msgb *msg = bssgp_msgb_alloc();
177 struct bssgp_normal_hdr *bgph =
178 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
179 uint32_t _tlli;
180 uint8_t ra[6];
181
182 msgb_nsei(msg) = nsei;
183 msgb_bvci(msg) = 0; /* Signalling */
184 bgph->pdu_type = BSSGP_PDUT_RESUME_ACK;
185
186 _tlli = htonl(tlli);
187 msgb_tvlv_put(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &_tlli);
188 gsm48_construct_ra(ra, ra_id);
189 msgb_tvlv_put(msg, BSSGP_IE_ROUTEING_AREA, 6, ra);
190
191 return gprs_ns_sendmsg(bssgp_nsi, msg);
192}
193
194/* 10.3.11 RESUME-NACK PDU */
195int bssgp_tx_resume_nack(uint16_t nsei, uint32_t tlli,
196 const struct gprs_ra_id *ra_id, uint8_t *cause)
197{
198 struct msgb *msg = bssgp_msgb_alloc();
199 struct bssgp_normal_hdr *bgph =
200 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
201 uint32_t _tlli;
202 uint8_t ra[6];
203
204 msgb_nsei(msg) = nsei;
205 msgb_bvci(msg) = 0; /* Signalling */
206 bgph->pdu_type = BSSGP_PDUT_SUSPEND_NACK;
207
208 _tlli = htonl(tlli);
209 msgb_tvlv_put(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &_tlli);
210 gsm48_construct_ra(ra, ra_id);
211 msgb_tvlv_put(msg, BSSGP_IE_ROUTEING_AREA, 6, ra);
212 if (cause)
213 msgb_tvlv_put(msg, BSSGP_IE_CAUSE, 1, cause);
214
215 return gprs_ns_sendmsg(bssgp_nsi, msg);
216}
217
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200218uint16_t bssgp_parse_cell_id(struct gprs_ra_id *raid, const uint8_t *buf)
Harald Welte6752fa42010-05-02 09:23:16 +0200219{
220 /* 6 octets RAC */
221 gsm48_parse_ra(raid, buf);
222 /* 2 octets CID */
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200223 return ntohs(*(uint16_t *) (buf+6));
Harald Welte6752fa42010-05-02 09:23:16 +0200224}
225
Harald Welte28610072011-11-24 21:32:07 +0100226int bssgp_create_cell_id(uint8_t *buf, const struct gprs_ra_id *raid,
227 uint16_t cid)
228{
229 uint16_t *out_cid = (uint16_t *) (buf + 6);
230 /* 6 octets RAC */
231 gsm48_construct_ra(buf, raid);
232 /* 2 octets CID */
233 *out_cid = htons(cid);
234
235 return 8;
236}
237
Harald Welte3fddf3c2010-05-01 16:48:27 +0200238/* Chapter 8.4 BVC-Reset Procedure */
239static int bssgp_rx_bvc_reset(struct msgb *msg, struct tlv_parsed *tp,
240 uint16_t ns_bvci)
241{
Harald Welte15a36432012-06-17 12:16:31 +0800242 struct osmo_bssgp_prim nmp;
Harald Welte8a521132010-05-17 22:59:29 +0200243 struct bssgp_bvc_ctx *bctx;
Harald Welte6752fa42010-05-02 09:23:16 +0200244 uint16_t nsei = msgb_nsei(msg);
245 uint16_t bvci;
Harald Welte3fddf3c2010-05-01 16:48:27 +0200246
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200247 bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Weltee9686b62010-05-31 18:07:17 +0200248 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx RESET cause=%s\n", bvci,
Harald Welte3fddf3c2010-05-01 16:48:27 +0200249 bssgp_cause_str(*TLVP_VAL(tp, BSSGP_IE_CAUSE)));
250
Harald Welte6752fa42010-05-02 09:23:16 +0200251 /* look-up or create the BTS context for this BVC */
252 bctx = btsctx_by_bvci_nsei(bvci, nsei);
253 if (!bctx)
254 bctx = btsctx_alloc(bvci, nsei);
255
Harald Welte25de8112010-05-13 21:26:28 +0200256 /* As opposed to NS-VCs, BVCs are NOT blocked after RESET */
257 bctx->state &= ~BVC_S_BLOCKED;
258
Harald Welte3fddf3c2010-05-01 16:48:27 +0200259 /* When we receive a BVC-RESET PDU (at least of a PTP BVCI), the BSS
260 * informs us about its RAC + Cell ID, so we can create a mapping */
Harald Welte6752fa42010-05-02 09:23:16 +0200261 if (bvci != 0 && bvci != 1) {
262 if (!TLVP_PRESENT(tp, BSSGP_IE_CELL_ID)) {
Harald Welte086fe322011-08-19 16:45:19 +0200263 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx RESET "
Harald Welte6752fa42010-05-02 09:23:16 +0200264 "missing mandatory IE\n", bvci);
265 return -EINVAL;
266 }
267 /* actually extract RAC / CID */
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200268 bctx->cell_id = bssgp_parse_cell_id(&bctx->ra_id,
269 TLVP_VAL(tp, BSSGP_IE_CELL_ID));
Harald Welteb8a6a832010-05-11 05:54:22 +0200270 LOGP(DBSSGP, LOGL_NOTICE, "Cell %u-%u-%u-%u CI %u on BVCI %u\n",
Harald Welte6752fa42010-05-02 09:23:16 +0200271 bctx->ra_id.mcc, bctx->ra_id.mnc, bctx->ra_id.lac,
272 bctx->ra_id.rac, bctx->cell_id, bvci);
273 }
Harald Welte3fddf3c2010-05-01 16:48:27 +0200274
Harald Welte15a36432012-06-17 12:16:31 +0800275 /* Send NM_BVC_RESET.ind to NM */
276 memset(&nmp, 0, sizeof(nmp));
277 nmp.nsei = nsei;
278 nmp.bvci = bvci;
279 nmp.tp = tp;
280 nmp.ra_id = &bctx->ra_id;
281 osmo_prim_init(&nmp.oph, SAP_BSSGP_NM, PRIM_NM_BVC_RESET,
282 PRIM_OP_INDICATION, msg);
283 bssgp_prim_cb(&nmp.oph, NULL);
284
Harald Welte6752fa42010-05-02 09:23:16 +0200285 /* Acknowledge the RESET to the BTS */
Harald Welte5b3bffb2012-09-07 12:03:40 +0200286 bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_RESET_ACK,
287 nsei, bvci, ns_bvci);
Harald Welte3fddf3c2010-05-01 16:48:27 +0200288 return 0;
289}
290
Harald Welte25de8112010-05-13 21:26:28 +0200291static int bssgp_rx_bvc_block(struct msgb *msg, struct tlv_parsed *tp)
292{
Harald Welte15a36432012-06-17 12:16:31 +0800293 struct osmo_bssgp_prim nmp;
Harald Welte25de8112010-05-13 21:26:28 +0200294 uint16_t bvci;
Harald Welte8a521132010-05-17 22:59:29 +0200295 struct bssgp_bvc_ctx *ptp_ctx;
Harald Welte25de8112010-05-13 21:26:28 +0200296
297 bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Welte61c07842010-05-18 11:57:08 +0200298 if (bvci == BVCI_SIGNALLING) {
Harald Welte58e65c92010-05-13 21:45:23 +0200299 /* 8.3.2: Signalling BVC shall never be blocked */
300 LOGP(DBSSGP, LOGL_ERROR, "NSEI=%u/BVCI=%u "
301 "received block for signalling BVC!?!\n",
302 msgb_nsei(msg), msgb_bvci(msg));
303 return 0;
304 }
Harald Welte25de8112010-05-13 21:26:28 +0200305
Harald Welte086fe322011-08-19 16:45:19 +0200306 LOGP(DBSSGP, LOGL_INFO, "BSSGP Rx BVCI=%u BVC-BLOCK\n", bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200307
308 ptp_ctx = btsctx_by_bvci_nsei(bvci, msgb_nsei(msg));
309 if (!ptp_ctx)
310 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &bvci, msg);
311
312 ptp_ctx->state |= BVC_S_BLOCKED;
313 rate_ctr_inc(&ptp_ctx->ctrg->ctr[BSSGP_CTR_BLOCKED]);
314
Harald Welte15a36432012-06-17 12:16:31 +0800315 /* Send NM_BVC_BLOCK.ind to NM */
316 memset(&nmp, 0, sizeof(nmp));
317 nmp.nsei = msgb_nsei(msg);
318 nmp.bvci = bvci;
319 nmp.tp = tp;
320 osmo_prim_init(&nmp.oph, SAP_BSSGP_NM, PRIM_NM_BVC_BLOCK,
321 PRIM_OP_INDICATION, msg);
322 bssgp_prim_cb(&nmp.oph, NULL);
Harald Welte25de8112010-05-13 21:26:28 +0200323
324 /* We always acknowledge the BLOCKing */
325 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK_ACK, msgb_nsei(msg),
326 bvci, msgb_bvci(msg));
327};
328
329static int bssgp_rx_bvc_unblock(struct msgb *msg, struct tlv_parsed *tp)
330{
Harald Welte15a36432012-06-17 12:16:31 +0800331 struct osmo_bssgp_prim nmp;
Harald Welte25de8112010-05-13 21:26:28 +0200332 uint16_t bvci;
Harald Welte8a521132010-05-17 22:59:29 +0200333 struct bssgp_bvc_ctx *ptp_ctx;
Harald Welte25de8112010-05-13 21:26:28 +0200334
335 bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Welte61c07842010-05-18 11:57:08 +0200336 if (bvci == BVCI_SIGNALLING) {
Harald Welte58e65c92010-05-13 21:45:23 +0200337 /* 8.3.2: Signalling BVC shall never be blocked */
338 LOGP(DBSSGP, LOGL_ERROR, "NSEI=%u/BVCI=%u "
339 "received unblock for signalling BVC!?!\n",
340 msgb_nsei(msg), msgb_bvci(msg));
341 return 0;
342 }
Harald Welte25de8112010-05-13 21:26:28 +0200343
Harald Weltee9686b62010-05-31 18:07:17 +0200344 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx BVC-UNBLOCK\n", bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200345
346 ptp_ctx = btsctx_by_bvci_nsei(bvci, msgb_nsei(msg));
347 if (!ptp_ctx)
348 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &bvci, msg);
349
350 ptp_ctx->state &= ~BVC_S_BLOCKED;
351
Harald Welte15a36432012-06-17 12:16:31 +0800352 /* Send NM_BVC_UNBLOCK.ind to NM */
353 memset(&nmp, 0, sizeof(nmp));
354 nmp.nsei = msgb_nsei(msg);
355 nmp.bvci = bvci;
356 nmp.tp = tp;
357 osmo_prim_init(&nmp.oph, SAP_BSSGP_NM, PRIM_NM_BVC_UNBLOCK,
358 PRIM_OP_INDICATION, msg);
359 bssgp_prim_cb(&nmp.oph, NULL);
Harald Welte25de8112010-05-13 21:26:28 +0200360
361 /* We always acknowledge the unBLOCKing */
362 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_UNBLOCK_ACK, msgb_nsei(msg),
363 bvci, msgb_bvci(msg));
364};
365
Harald Welte9ba50052010-03-14 15:45:01 +0800366/* Uplink unit-data */
Harald Welte25de8112010-05-13 21:26:28 +0200367static int bssgp_rx_ul_ud(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200368 struct bssgp_bvc_ctx *ctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800369{
Harald Welte15a36432012-06-17 12:16:31 +0800370 struct osmo_bssgp_prim gbp;
Harald Welteec19c102010-05-02 09:50:42 +0200371 struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800372
Harald Welte6752fa42010-05-02 09:23:16 +0200373 /* extract TLLI and parse TLV IEs */
Harald Welte510c3922010-04-30 16:33:12 +0200374 msgb_tlli(msg) = ntohl(budh->tlli);
Harald Welte9ba50052010-03-14 15:45:01 +0800375
Harald Welte086fe322011-08-19 16:45:19 +0200376 DEBUGP(DBSSGP, "BSSGP TLLI=0x%08x Rx UPLINK-UNITDATA\n", msgb_tlli(msg));
Harald Weltee9686b62010-05-31 18:07:17 +0200377
Harald Welte9ba50052010-03-14 15:45:01 +0800378 /* Cell ID and LLC_PDU are the only mandatory IE */
Harald Welte25de8112010-05-13 21:26:28 +0200379 if (!TLVP_PRESENT(tp, BSSGP_IE_CELL_ID) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200380 !TLVP_PRESENT(tp, BSSGP_IE_LLC_PDU)) {
381 LOGP(DBSSGP, LOGL_ERROR, "BSSGP TLLI=0x%08x Rx UL-UD "
382 "missing mandatory IE\n", msgb_tlli(msg));
Harald Welte25de8112010-05-13 21:26:28 +0200383 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Weltee9686b62010-05-31 18:07:17 +0200384 }
Harald Welte30bc19a2010-05-02 11:19:37 +0200385
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200386 /* store pointer to LLC header and CELL ID in msgb->cb */
Holger Hans Peter Freytherb6eded82010-05-23 21:11:19 +0800387 msgb_llch(msg) = (uint8_t *) TLVP_VAL(tp, BSSGP_IE_LLC_PDU);
388 msgb_bcid(msg) = (uint8_t *) TLVP_VAL(tp, BSSGP_IE_CELL_ID);
Harald Welte9ba50052010-03-14 15:45:01 +0800389
Harald Welte15a36432012-06-17 12:16:31 +0800390 /* Send BSSGP_UL_UD.ind to NM */
391 memset(&gbp, 0, sizeof(gbp));
392 gbp.nsei = ctx->nsei;
393 gbp.bvci = ctx->bvci;
394 gbp.tlli = msgb_tlli(msg);
395 gbp.tp = tp;
396 osmo_prim_init(&gbp.oph, SAP_BSSGP_LL, PRIM_BSSGP_UL_UD,
397 PRIM_OP_INDICATION, msg);
398 return bssgp_prim_cb(&gbp.oph, NULL);
Harald Welte9ba50052010-03-14 15:45:01 +0800399}
400
Harald Welte25de8112010-05-13 21:26:28 +0200401static int bssgp_rx_suspend(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200402 struct bssgp_bvc_ctx *ctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800403{
Harald Welte15a36432012-06-17 12:16:31 +0800404 struct osmo_bssgp_prim gbp;
Harald Weltea8aa4df2010-05-30 22:00:53 +0200405 struct gprs_ra_id raid;
406 uint32_t tlli;
Harald Welte313cccf2010-06-09 11:22:47 +0200407 int rc;
Harald Welte9ba50052010-03-14 15:45:01 +0800408
Harald Welte25de8112010-05-13 21:26:28 +0200409 if (!TLVP_PRESENT(tp, BSSGP_IE_TLLI) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200410 !TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA)) {
411 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx SUSPEND "
412 "missing mandatory IE\n", ctx->bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200413 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Weltee9686b62010-05-31 18:07:17 +0200414 }
Harald Welte9ba50052010-03-14 15:45:01 +0800415
Harald Weltea8aa4df2010-05-30 22:00:53 +0200416 tlli = ntohl(*(uint32_t *)TLVP_VAL(tp, BSSGP_IE_TLLI));
Harald Weltee9686b62010-05-31 18:07:17 +0200417
Harald Welte17925322010-05-31 20:18:35 +0200418 DEBUGP(DBSSGP, "BSSGP BVCI=%u TLLI=0x%08x Rx SUSPEND\n",
Harald Weltee9686b62010-05-31 18:07:17 +0200419 ctx->bvci, tlli);
420
Harald Weltea8aa4df2010-05-30 22:00:53 +0200421 gsm48_parse_ra(&raid, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
422
Harald Welte313cccf2010-06-09 11:22:47 +0200423 /* Inform GMM about the SUSPEND request */
Harald Welte15a36432012-06-17 12:16:31 +0800424 memset(&gbp, 0, sizeof(gbp));
425 gbp.nsei = msgb_nsei(msg);
426 gbp.bvci = ctx->bvci;
427 gbp.tlli = tlli;
428 gbp.ra_id = &raid;
429 osmo_prim_init(&gbp.oph, SAP_BSSGP_GMM, PRIM_BSSGP_GMM_SUSPEND,
430 PRIM_OP_REQUEST, msg);
431
432 rc = bssgp_prim_cb(&gbp.oph, NULL);
Harald Welte313cccf2010-06-09 11:22:47 +0200433 if (rc < 0)
Dieter Spaard2b13fc2010-12-12 12:45:08 +0100434 return bssgp_tx_suspend_nack(msgb_nsei(msg), tlli, &raid, NULL);
Harald Welte313cccf2010-06-09 11:22:47 +0200435
Harald Weltea8aa4df2010-05-30 22:00:53 +0200436 bssgp_tx_suspend_ack(msgb_nsei(msg), tlli, &raid, 0);
437
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800438 return 0;
Harald Welte9ba50052010-03-14 15:45:01 +0800439}
440
Harald Welte25de8112010-05-13 21:26:28 +0200441static int bssgp_rx_resume(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200442 struct bssgp_bvc_ctx *ctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800443{
Harald Welte15a36432012-06-17 12:16:31 +0800444 struct osmo_bssgp_prim gbp;
Harald Weltea8aa4df2010-05-30 22:00:53 +0200445 struct gprs_ra_id raid;
446 uint32_t tlli;
Harald Welte313cccf2010-06-09 11:22:47 +0200447 uint8_t suspend_ref;
448 int rc;
Harald Welte9ba50052010-03-14 15:45:01 +0800449
Harald Welte25de8112010-05-13 21:26:28 +0200450 if (!TLVP_PRESENT(tp, BSSGP_IE_TLLI) ||
451 !TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200452 !TLVP_PRESENT(tp, BSSGP_IE_SUSPEND_REF_NR)) {
453 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx RESUME "
454 "missing mandatory IE\n", ctx->bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200455 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Weltee9686b62010-05-31 18:07:17 +0200456 }
Harald Welte9ba50052010-03-14 15:45:01 +0800457
Harald Weltea8aa4df2010-05-30 22:00:53 +0200458 tlli = ntohl(*(uint32_t *)TLVP_VAL(tp, BSSGP_IE_TLLI));
Harald Welte313cccf2010-06-09 11:22:47 +0200459 suspend_ref = *TLVP_VAL(tp, BSSGP_IE_SUSPEND_REF_NR);
Harald Weltee9686b62010-05-31 18:07:17 +0200460
Harald Welte086fe322011-08-19 16:45:19 +0200461 DEBUGP(DBSSGP, "BSSGP BVCI=%u TLLI=0x%08x Rx RESUME\n", ctx->bvci, tlli);
Harald Weltee9686b62010-05-31 18:07:17 +0200462
Harald Weltea8aa4df2010-05-30 22:00:53 +0200463 gsm48_parse_ra(&raid, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
464
Harald Welte313cccf2010-06-09 11:22:47 +0200465 /* Inform GMM about the RESUME request */
Harald Welte15a36432012-06-17 12:16:31 +0800466 memset(&gbp, 0, sizeof(gbp));
467 gbp.nsei = msgb_nsei(msg);
468 gbp.bvci = ctx->bvci;
469 gbp.tlli = tlli;
470 gbp.ra_id = &raid;
471 gbp.u.resume.suspend_ref = suspend_ref;
472 osmo_prim_init(&gbp.oph, SAP_BSSGP_GMM, PRIM_BSSGP_GMM_RESUME,
473 PRIM_OP_REQUEST, msg);
474
475 rc = bssgp_prim_cb(&gbp.oph, NULL);
Harald Welte313cccf2010-06-09 11:22:47 +0200476 if (rc < 0)
477 return bssgp_tx_resume_nack(msgb_nsei(msg), tlli, &raid,
478 NULL);
479
Harald Weltea8aa4df2010-05-30 22:00:53 +0200480 bssgp_tx_resume_ack(msgb_nsei(msg), tlli, &raid);
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800481 return 0;
Harald Welte9ba50052010-03-14 15:45:01 +0800482}
483
Harald Weltee9686b62010-05-31 18:07:17 +0200484
485static int bssgp_rx_llc_disc(struct msgb *msg, struct tlv_parsed *tp,
486 struct bssgp_bvc_ctx *ctx)
487{
Harald Welte15a36432012-06-17 12:16:31 +0800488 struct osmo_bssgp_prim nmp;
Harald Welteb7363142010-07-23 21:59:29 +0200489 uint32_t tlli = 0;
Harald Weltee9686b62010-05-31 18:07:17 +0200490
491 if (!TLVP_PRESENT(tp, BSSGP_IE_TLLI) ||
492 !TLVP_PRESENT(tp, BSSGP_IE_LLC_FRAMES_DISCARDED) ||
493 !TLVP_PRESENT(tp, BSSGP_IE_BVCI) ||
494 !TLVP_PRESENT(tp, BSSGP_IE_NUM_OCT_AFF)) {
495 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx LLC DISCARDED "
496 "missing mandatory IE\n", ctx->bvci);
497 }
498
Harald Welteb7363142010-07-23 21:59:29 +0200499 if (TLVP_PRESENT(tp, BSSGP_IE_TLLI))
500 tlli = ntohl(*(uint32_t *)TLVP_VAL(tp, BSSGP_IE_TLLI));
Harald Weltee9686b62010-05-31 18:07:17 +0200501
Harald Welte086fe322011-08-19 16:45:19 +0200502 DEBUGP(DBSSGP, "BSSGP BVCI=%u TLLI=%08x Rx LLC DISCARDED\n",
Harald Weltee9686b62010-05-31 18:07:17 +0200503 ctx->bvci, tlli);
504
505 rate_ctr_inc(&ctx->ctrg->ctr[BSSGP_CTR_DISCARDED]);
506
Harald Welte15a36432012-06-17 12:16:31 +0800507 /* send NM_LLC_DISCARDED to NM */
508 memset(&nmp, 0, sizeof(nmp));
509 nmp.nsei = msgb_nsei(msg);
510 nmp.bvci = ctx->bvci;
511 nmp.tlli = tlli;
512 nmp.tp = tp;
513 osmo_prim_init(&nmp.oph, SAP_BSSGP_NM, PRIM_NM_LLC_DISCARDED,
514 PRIM_OP_INDICATION, msg);
515
516 return bssgp_prim_cb(&nmp.oph, NULL);
Harald Weltee9686b62010-05-31 18:07:17 +0200517}
518
Harald Welted11c0592012-09-06 21:57:11 +0200519/* One element (msgb) in a BSSGP Flow Control queue */
520struct bssgp_fc_queue_element {
521 /* linked list of queue elements */
522 struct llist_head list;
523 /* The message that we have enqueued */
524 struct msgb *msg;
525 /* Length of the LLC PDU part of the contained message */
526 uint32_t llc_pdu_len;
527 /* private pointer passed to the flow control out_cb function */
528 void *priv;
529};
530
531static int fc_queue_timer_cfg(struct bssgp_flow_control *fc);
532static int bssgp_fc_needs_queueing(struct bssgp_flow_control *fc, uint32_t pdu_len);
533
534static void fc_timer_cb(void *data)
535{
536 struct bssgp_flow_control *fc = data;
537 struct bssgp_fc_queue_element *fcqe;
538 struct timeval time_now;
539
540 /* if the queue is empty, we return without sending something
541 * and without re-starting the timer */
542 if (llist_empty(&fc->queue))
543 return;
544
545 /* get the first entry from the queue */
546 fcqe = llist_entry(fc->queue.next, struct bssgp_fc_queue_element,
547 list);
548
549 if (bssgp_fc_needs_queueing(fc, fcqe->llc_pdu_len)) {
550 LOGP(DBSSGP, LOGL_NOTICE, "BSSGP-FC: fc_timer_cb() but still "
551 "not able to send PDU of %u bytes\n", fcqe->llc_pdu_len);
552 /* make sure we re-start the timer */
553 fc_queue_timer_cfg(fc);
554 return;
555 }
556
557 /* remove from the queue */
558 llist_del(&fcqe->list);
559
560 fc->queue_depth--;
561
562 /* record the time we transmitted this PDU */
563 gettimeofday(&time_now, NULL);
564 fc->time_last_pdu = time_now;
565
566 /* call the output callback for this FC instance */
567 fc->out_cb(fcqe->priv, fcqe->msg, fcqe->llc_pdu_len, NULL);
568
569 /* we expect that out_cb will in the end free the msgb once
570 * it is no longer needed */
571
572 /* but we have to free the queue element ourselves */
573 talloc_free(fcqe);
574
575 /* re-configure the timer for the next PDU */
576 fc_queue_timer_cfg(fc);
577}
578
579/* configure/schedule the flow control timer to expire once the bucket
580 * will have leaked a sufficient number of bytes to transmit the next
581 * PDU in the queue */
582static int fc_queue_timer_cfg(struct bssgp_flow_control *fc)
583{
584 struct bssgp_fc_queue_element *fcqe;
585 uint32_t msecs;
586
587 if (llist_empty(&fc->queue))
588 return 0;
589
590 fcqe = llist_entry(&fc->queue.next, struct bssgp_fc_queue_element,
591 list);
592
Harald Welte27b2bb72013-06-22 09:44:00 +0200593 if (fc->bucket_leak_rate != 0) {
594 /* Calculate the point in time at which we will have leaked
595 * a sufficient number of bytes from the bucket to transmit
596 * the first PDU in the queue */
597 msecs = (fcqe->llc_pdu_len * 1000) / fc->bucket_leak_rate;
598 /* FIXME: add that time to fc->time_last_pdu and subtract it from
599 * current time */
600 fc->timer.data = fc;
601 fc->timer.cb = &fc_timer_cb;
602 osmo_timer_schedule(&fc->timer, msecs / 1000, (msecs % 1000) * 1000);
603 } else {
604 /* If the PCU is telling us to not send any more data at all,
605 * there's no point starting a timer. */
606 }
Harald Welted11c0592012-09-06 21:57:11 +0200607
608 return 0;
609}
610
611/* Enqueue a PDU in the flow control queue for delayed transmission */
612static int fc_enqueue(struct bssgp_flow_control *fc, struct msgb *msg,
613 uint32_t llc_pdu_len, void *priv)
614{
615 struct bssgp_fc_queue_element *fcqe;
616
617 if (fc->queue_depth >= fc->max_queue_depth)
618 return -ENOSPC;
619
620 fcqe = talloc_zero(fc, struct bssgp_fc_queue_element);
621 if (!fcqe)
622 return -ENOMEM;
623 fcqe->msg = msg;
624 fcqe->llc_pdu_len = llc_pdu_len;
625 fcqe->priv = priv;
626
627 llist_add_tail(&fcqe->list, &fc->queue);
628
629 fc->queue_depth++;
630
631 /* re-configure the timer for dequeueing the pdu */
632 fc_queue_timer_cfg(fc);
633
634 return 0;
635}
636
637/* According to Section 8.2 */
638static int bssgp_fc_needs_queueing(struct bssgp_flow_control *fc, uint32_t pdu_len)
639{
640 struct timeval time_now, time_diff;
641 int64_t bucket_predicted;
642 uint32_t csecs_elapsed, leaked;
643
644 /* B' = B + L(p) - (Tc - Tp)*R */
645
646 /* compute number of centi-seconds that have elapsed since transmitting
647 * the last PDU (Tc - Tp) */
648 gettimeofday(&time_now, NULL);
649 timersub(&time_now, &fc->time_last_pdu, &time_diff);
650 csecs_elapsed = time_diff.tv_sec*100 + time_diff.tv_usec/10000;
651
652 /* compute number of bytes that have leaked in the elapsed number
653 * of centi-seconds */
654 leaked = csecs_elapsed * (fc->bucket_leak_rate / 100);
655 /* add the current PDU length to the last bucket level */
656 bucket_predicted = fc->bucket_counter + pdu_len;
657 /* ... and subtract the number of leaked bytes */
658 bucket_predicted -= leaked;
659
660 if (bucket_predicted < pdu_len) {
661 /* this is just to make sure the bucket doesn't underflow */
662 bucket_predicted = pdu_len;
663 goto pass;
664 }
665
666 if (bucket_predicted <= fc->bucket_size_max) {
667 /* the bucket is not full yet, we can pass the packet */
668 fc->bucket_counter = bucket_predicted;
669 goto pass;
670 }
671
672 /* bucket is full, PDU needs to be delayed */
673 return 1;
674
675pass:
676 /* if we reach here, the PDU can pass */
677 return 0;
678}
679
680/* output callback for BVC flow control */
681static int _bssgp_tx_dl_ud(struct bssgp_flow_control *fc, struct msgb *msg,
682 uint32_t llc_pdu_len, void *priv)
683{
684 return gprs_ns_sendmsg(bssgp_nsi, msg);
685}
686
687/* input function of the flow control implementation, called first
688 * for the MM flow control, and then as the MM flow control output
689 * callback in order to perform BVC flow control */
690int bssgp_fc_in(struct bssgp_flow_control *fc, struct msgb *msg,
691 uint32_t llc_pdu_len, void *priv)
692{
693 struct timeval time_now;
694
Harald Weltebb826222012-09-07 10:22:01 +0200695 if (llc_pdu_len > fc->bucket_size_max) {
696 LOGP(DBSSGP, LOGL_NOTICE, "Single PDU (size=%u) is larger "
697 "than maximum bucket size (%u)!\n", llc_pdu_len,
698 fc->bucket_size_max);
699 return -EIO;
700 }
701
Harald Welted11c0592012-09-06 21:57:11 +0200702 if (bssgp_fc_needs_queueing(fc, llc_pdu_len)) {
703 return fc_enqueue(fc, msg, llc_pdu_len, priv);
704 } else {
705 /* record the time we transmitted this PDU */
706 gettimeofday(&time_now, NULL);
707 fc->time_last_pdu = time_now;
708 return fc->out_cb(priv, msg, llc_pdu_len, NULL);
709 }
710}
711
Harald Weltebb826222012-09-07 10:22:01 +0200712
713/* Initialize the Flow Control structure */
714void bssgp_fc_init(struct bssgp_flow_control *fc,
715 uint32_t bucket_size_max, uint32_t bucket_leak_rate,
716 uint32_t max_queue_depth,
717 int (*out_cb)(struct bssgp_flow_control *fc, struct msgb *msg,
718 uint32_t llc_pdu_len, void *priv))
719{
720 fc->out_cb = out_cb;
721 fc->bucket_size_max = bucket_size_max;
722 fc->bucket_leak_rate = bucket_leak_rate;
723 fc->max_queue_depth = max_queue_depth;
724 INIT_LLIST_HEAD(&fc->queue);
725 gettimeofday(&fc->time_last_pdu, NULL);
726}
727
Harald Welted11c0592012-09-06 21:57:11 +0200728/* Initialize the Flow Control parameters for a new MS according to
729 * default values for the BVC specified by BVCI and NSEI */
730int bssgp_fc_ms_init(struct bssgp_flow_control *fc_ms, uint16_t bvci,
Harald Weltebb826222012-09-07 10:22:01 +0200731 uint16_t nsei, uint32_t max_queue_depth)
Harald Welted11c0592012-09-06 21:57:11 +0200732{
733 struct bssgp_bvc_ctx *ctx;
734
735 ctx = btsctx_by_bvci_nsei(bvci, nsei);
736 if (!ctx)
737 return -ENODEV;
Harald Weltebb826222012-09-07 10:22:01 +0200738
739 /* output call-back of per-MS FC is per-CTX FC */
740 bssgp_fc_init(fc_ms, ctx->bmax_default_ms, ctx->r_default_ms,
741 max_queue_depth, bssgp_fc_in);
Harald Welted11c0592012-09-06 21:57:11 +0200742
743 return 0;
744}
745
Harald Welte25de8112010-05-13 21:26:28 +0200746static int bssgp_rx_fc_bvc(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200747 struct bssgp_bvc_ctx *bctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800748{
Harald Welte27b2bb72013-06-22 09:44:00 +0200749 uint32_t old_leak_rate = bctx->fc->bucket_leak_rate;
750 uint32_t old_r_def_ms = bctx->r_default_ms;
Harald Welte9ba50052010-03-14 15:45:01 +0800751
Harald Weltee9686b62010-05-31 18:07:17 +0200752 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx Flow Control BVC\n",
753 bctx->bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800754
755 if (!TLVP_PRESENT(tp, BSSGP_IE_TAG) ||
756 !TLVP_PRESENT(tp, BSSGP_IE_BVC_BUCKET_SIZE) ||
757 !TLVP_PRESENT(tp, BSSGP_IE_BUCKET_LEAK_RATE) ||
758 !TLVP_PRESENT(tp, BSSGP_IE_BMAX_DEFAULT_MS) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200759 !TLVP_PRESENT(tp, BSSGP_IE_R_DEFAULT_MS)) {
760 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx FC BVC "
761 "missing mandatory IE\n", bctx->bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800762 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Weltee9686b62010-05-31 18:07:17 +0200763 }
Harald Welte9ba50052010-03-14 15:45:01 +0800764
Harald Weltebb826222012-09-07 10:22:01 +0200765 /* 11.3.5 Bucket Size in 100 octets unit */
Harald Welted8b47692012-09-07 11:29:32 +0200766 bctx->fc->bucket_size_max = 100 *
Harald Welted11c0592012-09-06 21:57:11 +0200767 ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVC_BUCKET_SIZE));
Harald Weltebb826222012-09-07 10:22:01 +0200768 /* 11.3.4 Bucket Leak Rate in 100 bits/sec unit */
Harald Welted8b47692012-09-07 11:29:32 +0200769 bctx->fc->bucket_leak_rate = 100 *
Harald Weltebb826222012-09-07 10:22:01 +0200770 ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BUCKET_LEAK_RATE)) / 8;
771 /* 11.3.2 in octets */
772 bctx->bmax_default_ms =
Harald Welted11c0592012-09-06 21:57:11 +0200773 ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BMAX_DEFAULT_MS));
Harald Weltebb826222012-09-07 10:22:01 +0200774 /* 11.3.32 Bucket Leak rate in 100bits/sec unit */
Harald Welted11c0592012-09-06 21:57:11 +0200775 bctx->r_default_ms = 100 *
Harald Weltebb826222012-09-07 10:22:01 +0200776 ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_R_DEFAULT_MS)) / 8;
Harald Welte30bc19a2010-05-02 11:19:37 +0200777
Harald Welte27b2bb72013-06-22 09:44:00 +0200778 if (old_leak_rate != 0 && bctx->fc->bucket_leak_rate == 0)
779 LOGP(DBSSGP, LOGL_NOTICE, "BSS instructs us to bucket leak "
780 "rate of 0, stopping all DL GPRS!\n");
781 else if (old_leak_rate == 0 && bctx->fc->bucket_leak_rate != 0)
782 LOGP(DBSSGP, LOGL_NOTICE, "BSS instructs us to bucket leak "
783 "rate of != 0, restarting all DL GPRS!\n");
784
785 if (old_r_def_ms != 0 && bctx->r_default_ms == 0)
786 LOGP(DBSSGP, LOGL_NOTICE, "BSS instructs us to MS default "
787 "bucket leak rate of 0, stopping DL GPRS!\n");
788 else if (old_r_def_ms == 0 && bctx->r_default_ms != 0)
789 LOGP(DBSSGP, LOGL_NOTICE, "BSS instructs us to MS default "
790 "bucket leak rate != 0, restarting DL GPRS!\n");
791
792 /* reconfigure the timer for flow control based on new values */
793 fc_queue_timer_cfg(bctx->fc);
794
Harald Welte9ba50052010-03-14 15:45:01 +0800795 /* Send FLOW_CONTROL_BVC_ACK */
Harald Welte24a655f2010-04-30 19:54:29 +0200796 return bssgp_tx_fc_bvc_ack(msgb_nsei(msg), *TLVP_VAL(tp, BSSGP_IE_TAG),
Harald Welte30bc19a2010-05-02 11:19:37 +0200797 msgb_bvci(msg));
Harald Welte9ba50052010-03-14 15:45:01 +0800798}
Harald Welte3fddf3c2010-05-01 16:48:27 +0200799
Harald Welte25de8112010-05-13 21:26:28 +0200800/* Receive a BSSGP PDU from a BSS on a PTP BVCI */
Harald Weltede4599c2012-06-17 13:04:02 +0800801static int bssgp_rx_ptp(struct msgb *msg, struct tlv_parsed *tp,
802 struct bssgp_bvc_ctx *bctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800803{
Harald Welteec19c102010-05-02 09:50:42 +0200804 struct bssgp_normal_hdr *bgph =
805 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte30bc19a2010-05-02 11:19:37 +0200806 uint8_t pdu_type = bgph->pdu_type;
Harald Welte9ba50052010-03-14 15:45:01 +0800807 int rc = 0;
808
Harald Welte58e65c92010-05-13 21:45:23 +0200809 /* If traffic is received on a BVC that is marked as blocked, the
810 * received PDU shall not be accepted and a STATUS PDU (Cause value:
811 * BVC Blocked) shall be sent to the peer entity on the signalling BVC */
812 if (bctx->state & BVC_S_BLOCKED && pdu_type != BSSGP_PDUT_STATUS) {
813 uint16_t bvci = msgb_bvci(msg);
814 return bssgp_tx_status(BSSGP_CAUSE_BVCI_BLOCKED, &bvci, msg);
815 }
816
Harald Welte9ba50052010-03-14 15:45:01 +0800817 switch (pdu_type) {
818 case BSSGP_PDUT_UL_UNITDATA:
819 /* some LLC data from the MS */
Harald Welte25de8112010-05-13 21:26:28 +0200820 rc = bssgp_rx_ul_ud(msg, tp, bctx);
Harald Welte9ba50052010-03-14 15:45:01 +0800821 break;
822 case BSSGP_PDUT_RA_CAPABILITY:
823 /* BSS requests RA capability or IMSI */
Harald Weltee9686b62010-05-31 18:07:17 +0200824 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx RA CAPABILITY UPDATE\n",
825 bctx->bvci);
Harald Welte6b7cf252010-05-13 19:41:31 +0200826 /* FIXME: send GMM_RA_CAPABILITY_UPDATE.ind to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800827 /* FIXME: send RA_CAPA_UPDATE_ACK */
828 break;
829 case BSSGP_PDUT_RADIO_STATUS:
Harald Weltee9686b62010-05-31 18:07:17 +0200830 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx RADIO STATUS\n", bctx->bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800831 /* BSS informs us of some exception */
Harald Welte6b7cf252010-05-13 19:41:31 +0200832 /* FIXME: send GMM_RADIO_STATUS.ind to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800833 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800834 case BSSGP_PDUT_FLOW_CONTROL_BVC:
835 /* BSS informs us of available bandwidth in Gb interface */
Harald Welte25de8112010-05-13 21:26:28 +0200836 rc = bssgp_rx_fc_bvc(msg, tp, bctx);
Harald Welte9ba50052010-03-14 15:45:01 +0800837 break;
838 case BSSGP_PDUT_FLOW_CONTROL_MS:
839 /* BSS informs us of available bandwidth to one MS */
Harald Weltee9686b62010-05-31 18:07:17 +0200840 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx Flow Control MS\n",
841 bctx->bvci);
Harald Welte30bc19a2010-05-02 11:19:37 +0200842 /* FIXME: actually implement flow control */
843 /* FIXME: Send FLOW_CONTROL_MS_ACK */
Harald Welte9ba50052010-03-14 15:45:01 +0800844 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800845 case BSSGP_PDUT_STATUS:
846 /* Some exception has occurred */
Harald Welte6b7cf252010-05-13 19:41:31 +0200847 /* FIXME: send NM_STATUS.ind to NM */
Harald Welte9ba50052010-03-14 15:45:01 +0800848 case BSSGP_PDUT_DOWNLOAD_BSS_PFC:
849 case BSSGP_PDUT_CREATE_BSS_PFC_ACK:
850 case BSSGP_PDUT_CREATE_BSS_PFC_NACK:
851 case BSSGP_PDUT_MODIFY_BSS_PFC:
852 case BSSGP_PDUT_DELETE_BSS_PFC_ACK:
Harald Weltee9686b62010-05-31 18:07:17 +0200853 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx PDU type 0x%02x not [yet] "
854 "implemented\n", bctx->bvci, pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200855 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800856 break;
857 /* those only exist in the SGSN -> BSS direction */
858 case BSSGP_PDUT_DL_UNITDATA:
859 case BSSGP_PDUT_PAGING_PS:
860 case BSSGP_PDUT_PAGING_CS:
861 case BSSGP_PDUT_RA_CAPA_UPDATE_ACK:
Harald Welte25de8112010-05-13 21:26:28 +0200862 case BSSGP_PDUT_FLOW_CONTROL_BVC_ACK:
863 case BSSGP_PDUT_FLOW_CONTROL_MS_ACK:
Harald Weltee9686b62010-05-31 18:07:17 +0200864 DEBUGP(DBSSGP, "BSSGP BVCI=%u PDU type 0x%02x only exists "
865 "in DL\n", bctx->bvci, pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200866 bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
867 rc = -EINVAL;
868 break;
869 default:
Harald Weltee9686b62010-05-31 18:07:17 +0200870 DEBUGP(DBSSGP, "BSSGP BVCI=%u PDU type 0x%02x unknown\n",
871 bctx->bvci, pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200872 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
873 break;
874 }
875
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800876 return rc;
Harald Welte25de8112010-05-13 21:26:28 +0200877}
878
879/* Receive a BSSGP PDU from a BSS on a SIGNALLING BVCI */
Harald Weltede4599c2012-06-17 13:04:02 +0800880static int bssgp_rx_sign(struct msgb *msg, struct tlv_parsed *tp,
881 struct bssgp_bvc_ctx *bctx)
Harald Welte25de8112010-05-13 21:26:28 +0200882{
883 struct bssgp_normal_hdr *bgph =
884 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
885 uint8_t pdu_type = bgph->pdu_type;
886 int rc = 0;
887 uint16_t ns_bvci = msgb_bvci(msg);
Harald Welte25de8112010-05-13 21:26:28 +0200888
889 switch (bgph->pdu_type) {
890 case BSSGP_PDUT_SUSPEND:
891 /* MS wants to suspend */
892 rc = bssgp_rx_suspend(msg, tp, bctx);
893 break;
894 case BSSGP_PDUT_RESUME:
895 /* MS wants to resume */
896 rc = bssgp_rx_resume(msg, tp, bctx);
897 break;
898 case BSSGP_PDUT_FLUSH_LL_ACK:
899 /* BSS informs us it has performed LL FLUSH */
Harald Welte086fe322011-08-19 16:45:19 +0200900 DEBUGP(DBSSGP, "BSSGP Rx BVCI=%u FLUSH LL ACK\n", bctx->bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200901 /* FIXME: send NM_FLUSH_LL.res to NM */
902 break;
903 case BSSGP_PDUT_LLC_DISCARD:
904 /* BSS informs that some LLC PDU's have been discarded */
Harald Weltee9686b62010-05-31 18:07:17 +0200905 rc = bssgp_rx_llc_disc(msg, tp, bctx);
Harald Welte25de8112010-05-13 21:26:28 +0200906 break;
907 case BSSGP_PDUT_BVC_BLOCK:
908 /* BSS tells us that BVC shall be blocked */
Harald Welte25de8112010-05-13 21:26:28 +0200909 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200910 !TLVP_PRESENT(tp, BSSGP_IE_CAUSE)) {
911 LOGP(DBSSGP, LOGL_ERROR, "BSSGP Rx BVC-BLOCK "
912 "missing mandatory IE\n");
Harald Welte25de8112010-05-13 21:26:28 +0200913 goto err_mand_ie;
Harald Weltee9686b62010-05-31 18:07:17 +0200914 }
Harald Welte2677ea52010-05-31 17:16:36 +0200915 rc = bssgp_rx_bvc_block(msg, tp);
Harald Welte25de8112010-05-13 21:26:28 +0200916 break;
917 case BSSGP_PDUT_BVC_UNBLOCK:
918 /* BSS tells us that BVC shall be unblocked */
Harald Weltee9686b62010-05-31 18:07:17 +0200919 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
920 LOGP(DBSSGP, LOGL_ERROR, "BSSGP Rx BVC-UNBLOCK "
921 "missing mandatory IE\n");
Harald Welte25de8112010-05-13 21:26:28 +0200922 goto err_mand_ie;
Harald Weltee9686b62010-05-31 18:07:17 +0200923 }
Harald Welte25de8112010-05-13 21:26:28 +0200924 rc = bssgp_rx_bvc_unblock(msg, tp);
925 break;
926 case BSSGP_PDUT_BVC_RESET:
927 /* BSS tells us that BVC init is required */
Harald Welte25de8112010-05-13 21:26:28 +0200928 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200929 !TLVP_PRESENT(tp, BSSGP_IE_CAUSE)) {
930 LOGP(DBSSGP, LOGL_ERROR, "BSSGP Rx BVC-RESET "
931 "missing mandatory IE\n");
Harald Welte25de8112010-05-13 21:26:28 +0200932 goto err_mand_ie;
Harald Weltee9686b62010-05-31 18:07:17 +0200933 }
Harald Welte25de8112010-05-13 21:26:28 +0200934 rc = bssgp_rx_bvc_reset(msg, tp, ns_bvci);
935 break;
936 case BSSGP_PDUT_STATUS:
937 /* Some exception has occurred */
Harald Weltee9686b62010-05-31 18:07:17 +0200938 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx BVC STATUS\n", bctx->bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200939 /* FIXME: send NM_STATUS.ind to NM */
940 break;
941 /* those only exist in the SGSN -> BSS direction */
942 case BSSGP_PDUT_PAGING_PS:
943 case BSSGP_PDUT_PAGING_CS:
Harald Welte9ba50052010-03-14 15:45:01 +0800944 case BSSGP_PDUT_SUSPEND_ACK:
945 case BSSGP_PDUT_SUSPEND_NACK:
946 case BSSGP_PDUT_RESUME_ACK:
947 case BSSGP_PDUT_RESUME_NACK:
Harald Welte6b7cf252010-05-13 19:41:31 +0200948 case BSSGP_PDUT_FLUSH_LL:
Harald Welte9ba50052010-03-14 15:45:01 +0800949 case BSSGP_PDUT_BVC_BLOCK_ACK:
950 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
951 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Weltee9686b62010-05-31 18:07:17 +0200952 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx PDU type 0x%02x only exists "
953 "in DL\n", bctx->bvci, pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200954 bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800955 rc = -EINVAL;
956 break;
957 default:
Harald Weltee9686b62010-05-31 18:07:17 +0200958 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx PDU type 0x%02x unknown\n",
959 bctx->bvci, pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200960 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800961 break;
962 }
963
964 return rc;
965err_mand_ie:
966 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
967}
968
Harald Welte25de8112010-05-13 21:26:28 +0200969/* We expect msgb_bssgph() to point to the BSSGP header */
Harald Weltede4599c2012-06-17 13:04:02 +0800970int bssgp_rcvmsg(struct msgb *msg)
Harald Welte25de8112010-05-13 21:26:28 +0200971{
972 struct bssgp_normal_hdr *bgph =
973 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
974 struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
975 struct tlv_parsed tp;
Harald Welte8a521132010-05-17 22:59:29 +0200976 struct bssgp_bvc_ctx *bctx;
Harald Welte25de8112010-05-13 21:26:28 +0200977 uint8_t pdu_type = bgph->pdu_type;
978 uint16_t ns_bvci = msgb_bvci(msg);
979 int data_len;
980 int rc = 0;
981
982 /* Identifiers from DOWN: NSEI, BVCI (both in msg->cb) */
983
984 /* UNITDATA BSSGP headers have TLLI in front */
985 if (pdu_type != BSSGP_PDUT_UL_UNITDATA &&
986 pdu_type != BSSGP_PDUT_DL_UNITDATA) {
987 data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
988 rc = bssgp_tlv_parse(&tp, bgph->data, data_len);
989 } else {
990 data_len = msgb_bssgp_len(msg) - sizeof(*budh);
991 rc = bssgp_tlv_parse(&tp, budh->data, data_len);
992 }
993
994 /* look-up or create the BTS context for this BVC */
995 bctx = btsctx_by_bvci_nsei(ns_bvci, msgb_nsei(msg));
996 /* Only a RESET PDU can create a new BVC context */
997 if (!bctx && pdu_type != BSSGP_PDUT_BVC_RESET) {
998 LOGP(DBSSGP, LOGL_NOTICE, "NSEI=%u/BVCI=%u Rejecting PDU "
999 "type %u for unknown BVCI\n", msgb_nsei(msg), ns_bvci,
1000 pdu_type);
1001 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, NULL, msg);
1002 }
1003
Harald Welte16c8dbb2010-05-17 23:30:01 +02001004 if (bctx) {
Harald Weltecca49632012-06-16 17:45:59 +08001005 log_set_context(GPRS_CTX_BVC, bctx);
Harald Welte16c8dbb2010-05-17 23:30:01 +02001006 rate_ctr_inc(&bctx->ctrg->ctr[BSSGP_CTR_PKTS_IN]);
1007 rate_ctr_add(&bctx->ctrg->ctr[BSSGP_CTR_BYTES_IN],
1008 msgb_bssgp_len(msg));
1009 }
1010
Harald Welte61c07842010-05-18 11:57:08 +02001011 if (ns_bvci == BVCI_SIGNALLING)
Harald Weltede4599c2012-06-17 13:04:02 +08001012 rc = bssgp_rx_sign(msg, &tp, bctx);
Harald Welte61c07842010-05-18 11:57:08 +02001013 else if (ns_bvci == BVCI_PTM)
Harald Welte25de8112010-05-13 21:26:28 +02001014 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
1015 else
Harald Weltede4599c2012-06-17 13:04:02 +08001016 rc = bssgp_rx_ptp(msg, &tp, bctx);
Harald Welte25de8112010-05-13 21:26:28 +02001017
1018 return rc;
1019}
1020
Harald Weltede4599c2012-06-17 13:04:02 +08001021int bssgp_tx_dl_ud(struct msgb *msg, uint16_t pdu_lifetime,
1022 struct bssgp_dl_ud_par *dup)
Harald Welte9ba50052010-03-14 15:45:01 +08001023{
Harald Welte8a521132010-05-17 22:59:29 +02001024 struct bssgp_bvc_ctx *bctx;
Harald Welte9ba50052010-03-14 15:45:01 +08001025 struct bssgp_ud_hdr *budh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +02001026 uint8_t llc_pdu_tlv_hdr_len = 2;
Harald Welte8ef54d12012-06-17 09:31:16 +08001027 uint8_t *llc_pdu_tlv;
Harald Welte8f9a3ee2010-05-02 11:26:34 +02001028 uint16_t msg_len = msg->len;
Harald Welte30bc19a2010-05-02 11:19:37 +02001029 uint16_t bvci = msgb_bvci(msg);
1030 uint16_t nsei = msgb_nsei(msg);
Harald Welte8ef54d12012-06-17 09:31:16 +08001031 uint16_t _pdu_lifetime = htons(pdu_lifetime); /* centi-seconds */
Harald Welte2f946832010-05-31 22:12:30 +02001032 uint16_t drx_params;
Harald Welte9ba50052010-03-14 15:45:01 +08001033
Harald Welte30bc19a2010-05-02 11:19:37 +02001034 /* Identifiers from UP: TLLI, BVCI, NSEI (all in msgb->cb) */
Harald Welte61c07842010-05-18 11:57:08 +02001035 if (bvci <= BVCI_PTM ) {
Harald Welteb8a6a832010-05-11 05:54:22 +02001036 LOGP(DBSSGP, LOGL_ERROR, "Cannot send DL-UD to BVCI %u\n",
Harald Welte30bc19a2010-05-02 11:19:37 +02001037 bvci);
1038 return -EINVAL;
1039 }
1040
1041 bctx = btsctx_by_bvci_nsei(bvci, nsei);
Harald Welte25de8112010-05-13 21:26:28 +02001042 if (!bctx) {
Harald Welted11c0592012-09-06 21:57:11 +02001043 LOGP(DBSSGP, LOGL_ERROR, "Cannot send DL-UD to unknown BVCI %u\n",
1044 bvci);
1045 return -ENODEV;
Harald Welte25de8112010-05-13 21:26:28 +02001046 }
Harald Welte9ba50052010-03-14 15:45:01 +08001047
1048 if (msg->len > TVLV_MAX_ONEBYTE)
1049 llc_pdu_tlv_hdr_len += 1;
1050
1051 /* prepend the tag and length of the LLC-PDU TLV */
1052 llc_pdu_tlv = msgb_push(msg, llc_pdu_tlv_hdr_len);
1053 llc_pdu_tlv[0] = BSSGP_IE_LLC_PDU;
1054 if (llc_pdu_tlv_hdr_len > 2) {
1055 llc_pdu_tlv[1] = msg_len >> 8;
1056 llc_pdu_tlv[2] = msg_len & 0xff;
1057 } else {
Sylvain Munautb00d1ad2010-06-09 21:13:13 +02001058 llc_pdu_tlv[1] = msg_len & 0x7f;
Harald Welte9ba50052010-03-14 15:45:01 +08001059 llc_pdu_tlv[1] |= 0x80;
1060 }
1061
Harald Welte2f946832010-05-31 22:12:30 +02001062 /* FIXME: optional elements: Alignment, UTRAN CCO, LSA, PFI */
1063
Harald Welte8ef54d12012-06-17 09:31:16 +08001064 if (dup) {
Harald Welte2f946832010-05-31 22:12:30 +02001065 /* Old TLLI to help BSS map from old->new */
Harald Welte8ef54d12012-06-17 09:31:16 +08001066 if (dup->tlli) {
1067 uint32_t tlli = htonl(*dup->tlli);
1068 msgb_tvlv_push(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &tlli);
1069 }
Harald Welte2f946832010-05-31 22:12:30 +02001070
1071 /* IMSI */
Harald Welte2d956a82012-07-04 21:55:23 +02001072 if (dup->imsi && strlen(dup->imsi)) {
Harald Welte2f946832010-05-31 22:12:30 +02001073 uint8_t mi[10];
Harald Welte8ef54d12012-06-17 09:31:16 +08001074 int imsi_len = gsm48_generate_mid_from_imsi(mi, dup->imsi);
Harald Welte2f946832010-05-31 22:12:30 +02001075 if (imsi_len > 2)
1076 msgb_tvlv_push(msg, BSSGP_IE_IMSI,
Harald Welte8ef54d12012-06-17 09:31:16 +08001077 imsi_len-2, mi+2);
Harald Welte2f946832010-05-31 22:12:30 +02001078 }
1079
1080 /* DRX parameters */
Harald Welte8ef54d12012-06-17 09:31:16 +08001081 drx_params = htons(dup->drx_parms);
Harald Welte2f946832010-05-31 22:12:30 +02001082 msgb_tvlv_push(msg, BSSGP_IE_DRX_PARAMS, 2,
1083 (uint8_t *) &drx_params);
1084
1085 /* FIXME: Priority */
1086
1087 /* MS Radio Access Capability */
Harald Welte8ef54d12012-06-17 09:31:16 +08001088 if (dup->ms_ra_cap.len)
Harald Welte2f946832010-05-31 22:12:30 +02001089 msgb_tvlv_push(msg, BSSGP_IE_MS_RADIO_ACCESS_CAP,
Harald Welte8ef54d12012-06-17 09:31:16 +08001090 dup->ms_ra_cap.len, dup->ms_ra_cap.v);
1091
Harald Welte2f946832010-05-31 22:12:30 +02001092 }
Harald Welte9ba50052010-03-14 15:45:01 +08001093
1094 /* prepend the pdu lifetime */
Harald Welte8ef54d12012-06-17 09:31:16 +08001095 msgb_tvlv_push(msg, BSSGP_IE_PDU_LIFETIME, 2, (uint8_t *)&_pdu_lifetime);
Harald Welte9ba50052010-03-14 15:45:01 +08001096
1097 /* prepend the QoS profile, TLLI and pdu type */
1098 budh = (struct bssgp_ud_hdr *) msgb_push(msg, sizeof(*budh));
Harald Welte8ef54d12012-06-17 09:31:16 +08001099 memcpy(budh->qos_profile, dup->qos_profile, sizeof(budh->qos_profile));
Harald Welte510c3922010-04-30 16:33:12 +02001100 budh->tlli = htonl(msgb_tlli(msg));
Harald Welte9ba50052010-03-14 15:45:01 +08001101 budh->pdu_type = BSSGP_PDUT_DL_UNITDATA;
1102
Harald Welte16c8dbb2010-05-17 23:30:01 +02001103 rate_ctr_inc(&bctx->ctrg->ctr[BSSGP_CTR_PKTS_OUT]);
1104 rate_ctr_add(&bctx->ctrg->ctr[BSSGP_CTR_BYTES_OUT], msg->len);
1105
Harald Welte30bc19a2010-05-02 11:19:37 +02001106 /* Identifiers down: BVCI, NSEI (in msgb->cb) */
Harald Welte24a655f2010-04-30 19:54:29 +02001107
Harald Welted11c0592012-09-06 21:57:11 +02001108 /* check if we have to go through per-ms flow control or can go
1109 * directly to the per-BSS flow control */
1110 if (dup->fc)
Harald Welted8b47692012-09-07 11:29:32 +02001111 return bssgp_fc_in(dup->fc, msg, msg_len, bctx->fc);
Harald Welted11c0592012-09-06 21:57:11 +02001112 else
Harald Welted8b47692012-09-07 11:29:32 +02001113 return bssgp_fc_in(bctx->fc, msg, msg_len, NULL);
Harald Welte9ba50052010-03-14 15:45:01 +08001114}
Harald Welte68b4f032010-06-09 16:22:28 +02001115
1116/* Send a single GMM-PAGING.req to a given NSEI/NS-BVCI */
Harald Weltede4599c2012-06-17 13:04:02 +08001117int bssgp_tx_paging(uint16_t nsei, uint16_t ns_bvci,
1118 struct bssgp_paging_info *pinfo)
Harald Welte68b4f032010-06-09 16:22:28 +02001119{
1120 struct msgb *msg = bssgp_msgb_alloc();
1121 struct bssgp_normal_hdr *bgph =
1122 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
1123 uint16_t drx_params = htons(pinfo->drx_params);
1124 uint8_t mi[10];
1125 int imsi_len = gsm48_generate_mid_from_imsi(mi, pinfo->imsi);
1126 uint8_t ra[6];
1127
1128 if (imsi_len < 2)
1129 return -EINVAL;
1130
1131 msgb_nsei(msg) = nsei;
1132 msgb_bvci(msg) = ns_bvci;
1133
1134 if (pinfo->mode == BSSGP_PAGING_PS)
1135 bgph->pdu_type = BSSGP_PDUT_PAGING_PS;
1136 else
1137 bgph->pdu_type = BSSGP_PDUT_PAGING_CS;
1138 /* IMSI */
1139 msgb_tvlv_put(msg, BSSGP_IE_IMSI, imsi_len-2, mi+2);
1140 /* DRX Parameters */
1141 msgb_tvlv_put(msg, BSSGP_IE_DRX_PARAMS, 2,
1142 (uint8_t *) &drx_params);
1143 /* Scope */
1144 switch (pinfo->scope) {
1145 case BSSGP_PAGING_BSS_AREA:
1146 {
1147 uint8_t null = 0;
1148 msgb_tvlv_put(msg, BSSGP_IE_BSS_AREA_ID, 1, &null);
1149 }
1150 break;
1151 case BSSGP_PAGING_LOCATION_AREA:
1152 gsm48_construct_ra(ra, &pinfo->raid);
1153 msgb_tvlv_put(msg, BSSGP_IE_LOCATION_AREA, 4, ra);
1154 break;
1155 case BSSGP_PAGING_ROUTEING_AREA:
1156 gsm48_construct_ra(ra, &pinfo->raid);
1157 msgb_tvlv_put(msg, BSSGP_IE_ROUTEING_AREA, 6, ra);
1158 break;
1159 case BSSGP_PAGING_BVCI:
1160 {
1161 uint16_t bvci = htons(pinfo->bvci);
1162 msgb_tvlv_put(msg, BSSGP_IE_BVCI, 2, (uint8_t *)&bvci);
1163 }
1164 break;
1165 }
1166 /* QoS profile mandatory for PS */
1167 if (pinfo->mode == BSSGP_PAGING_PS)
1168 msgb_tvlv_put(msg, BSSGP_IE_QOS_PROFILE, 3, pinfo->qos);
1169
1170 /* Optional (P-)TMSI */
1171 if (pinfo->ptmsi) {
1172 uint32_t ptmsi = htonl(*pinfo->ptmsi);
1173 msgb_tvlv_put(msg, BSSGP_IE_TMSI, 4, (uint8_t *) &ptmsi);
1174 }
1175
1176 return gprs_ns_sendmsg(bssgp_nsi, msg);
1177}
Harald Weltecca49632012-06-16 17:45:59 +08001178
Harald Weltede4599c2012-06-17 13:04:02 +08001179void bssgp_set_log_ss(int ss)
Harald Weltecca49632012-06-16 17:45:59 +08001180{
1181 DBSSGP = ss;
1182}