blob: a64973645c18abd1dd3d139d8d1c375b4adb81e9 [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 Welte313cccf2010-06-09 11:22:47 +020038#include <openbsc/gprs_gmm.h>
Harald Welte9ba50052010-03-14 15:45:01 +080039
Harald Weltecca49632012-06-16 17:45:59 +080040#include "common_vty.h"
41
Harald Welte6752fa42010-05-02 09:23:16 +020042void *bssgp_tall_ctx = NULL;
43
Harald Welte25de8112010-05-13 21:26:28 +020044static const struct rate_ctr_desc bssgp_ctr_description[] = {
Harald Welte16c8dbb2010-05-17 23:30:01 +020045 { "packets.in", "Packets at BSSGP Level ( In)" },
46 { "packets.out","Packets at BSSGP Level (Out)" },
47 { "bytes.in", "Bytes at BSSGP Level ( In)" },
48 { "bytes.out", "Bytes at BSSGP Level (Out)" },
Harald Welte25de8112010-05-13 21:26:28 +020049 { "blocked", "BVC Blocking count" },
50 { "discarded", "BVC LLC Discarded count" },
51};
52
53static const struct rate_ctr_group_desc bssgp_ctrg_desc = {
54 .group_name_prefix = "bssgp.bss_ctx",
55 .group_description = "BSSGP Peer Statistics",
56 .num_ctr = ARRAY_SIZE(bssgp_ctr_description),
57 .ctr_desc = bssgp_ctr_description,
58};
59
Harald Weltea78b9c22010-05-17 23:02:42 +020060LLIST_HEAD(bssgp_bvc_ctxts);
Harald Welte6752fa42010-05-02 09:23:16 +020061
62/* Find a BTS Context based on parsed RA ID and Cell ID */
Harald Welte8a521132010-05-17 22:59:29 +020063struct bssgp_bvc_ctx *btsctx_by_raid_cid(const struct gprs_ra_id *raid, uint16_t cid)
Harald Welte6752fa42010-05-02 09:23:16 +020064{
Harald Welte8a521132010-05-17 22:59:29 +020065 struct bssgp_bvc_ctx *bctx;
Harald Welte6752fa42010-05-02 09:23:16 +020066
Harald Weltea78b9c22010-05-17 23:02:42 +020067 llist_for_each_entry(bctx, &bssgp_bvc_ctxts, list) {
Harald Welte6752fa42010-05-02 09:23:16 +020068 if (!memcmp(&bctx->ra_id, raid, sizeof(bctx->ra_id)) &&
69 bctx->cell_id == cid)
70 return bctx;
71 }
72 return NULL;
73}
74
75/* Find a BTS context based on BVCI+NSEI tuple */
Harald Welte8a521132010-05-17 22:59:29 +020076struct bssgp_bvc_ctx *btsctx_by_bvci_nsei(uint16_t bvci, uint16_t nsei)
Harald Welte6752fa42010-05-02 09:23:16 +020077{
Harald Welte8a521132010-05-17 22:59:29 +020078 struct bssgp_bvc_ctx *bctx;
Harald Welte6752fa42010-05-02 09:23:16 +020079
Harald Weltea78b9c22010-05-17 23:02:42 +020080 llist_for_each_entry(bctx, &bssgp_bvc_ctxts, list) {
Harald Welte6752fa42010-05-02 09:23:16 +020081 if (bctx->nsei == nsei && bctx->bvci == bvci)
82 return bctx;
83 }
84 return NULL;
85}
86
Harald Welte8a521132010-05-17 22:59:29 +020087struct bssgp_bvc_ctx *btsctx_alloc(uint16_t bvci, uint16_t nsei)
Harald Welte6752fa42010-05-02 09:23:16 +020088{
Harald Welte8a521132010-05-17 22:59:29 +020089 struct bssgp_bvc_ctx *ctx;
Harald Welte6752fa42010-05-02 09:23:16 +020090
Harald Welte8a521132010-05-17 22:59:29 +020091 ctx = talloc_zero(bssgp_tall_ctx, struct bssgp_bvc_ctx);
Harald Welte6752fa42010-05-02 09:23:16 +020092 if (!ctx)
93 return NULL;
94 ctx->bvci = bvci;
95 ctx->nsei = nsei;
Harald Welte25de8112010-05-13 21:26:28 +020096 /* FIXME: BVCI is not unique, only BVCI+NSEI ?!? */
97 ctx->ctrg = rate_ctr_group_alloc(ctx, &bssgp_ctrg_desc, bvci);
98
Harald Weltea78b9c22010-05-17 23:02:42 +020099 llist_add(&ctx->list, &bssgp_bvc_ctxts);
Harald Welte6752fa42010-05-02 09:23:16 +0200100
101 return ctx;
102}
103
Harald Welte9ba50052010-03-14 15:45:01 +0800104/* Chapter 10.4.5: Flow Control BVC ACK */
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200105static int bssgp_tx_fc_bvc_ack(uint16_t nsei, uint8_t tag, uint16_t ns_bvci)
Harald Welte9ba50052010-03-14 15:45:01 +0800106{
107 struct msgb *msg = bssgp_msgb_alloc();
108 struct bssgp_normal_hdr *bgph =
109 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
110
Harald Welte24a655f2010-04-30 19:54:29 +0200111 msgb_nsei(msg) = nsei;
112 msgb_bvci(msg) = ns_bvci;
113
Harald Welte9ba50052010-03-14 15:45:01 +0800114 bgph->pdu_type = BSSGP_PDUT_FLOW_CONTROL_BVC_ACK;
115 msgb_tvlv_put(msg, BSSGP_IE_TAG, 1, &tag);
116
Harald Welte24a655f2010-04-30 19:54:29 +0200117 return gprs_ns_sendmsg(bssgp_nsi, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800118}
119
Harald Weltea8aa4df2010-05-30 22:00:53 +0200120/* 10.3.7 SUSPEND-ACK PDU */
121int bssgp_tx_suspend_ack(uint16_t nsei, uint32_t tlli,
122 const struct gprs_ra_id *ra_id, uint8_t suspend_ref)
123{
124 struct msgb *msg = bssgp_msgb_alloc();
125 struct bssgp_normal_hdr *bgph =
126 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
127 uint32_t _tlli;
128 uint8_t ra[6];
129
130 msgb_nsei(msg) = nsei;
131 msgb_bvci(msg) = 0; /* Signalling */
132 bgph->pdu_type = BSSGP_PDUT_SUSPEND_ACK;
133
134 _tlli = htonl(tlli);
135 msgb_tvlv_put(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &_tlli);
136 gsm48_construct_ra(ra, ra_id);
137 msgb_tvlv_put(msg, BSSGP_IE_ROUTEING_AREA, 6, ra);
138 msgb_tvlv_put(msg, BSSGP_IE_SUSPEND_REF_NR, 1, &suspend_ref);
139
140 return gprs_ns_sendmsg(bssgp_nsi, msg);
141}
142
143/* 10.3.8 SUSPEND-NACK PDU */
144int bssgp_tx_suspend_nack(uint16_t nsei, uint32_t tlli,
Dieter Spaard2b13fc2010-12-12 12:45:08 +0100145 const struct gprs_ra_id *ra_id,
Harald Weltea8aa4df2010-05-30 22:00:53 +0200146 uint8_t *cause)
147{
148 struct msgb *msg = bssgp_msgb_alloc();
149 struct bssgp_normal_hdr *bgph =
150 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
151 uint32_t _tlli;
Dieter Spaard2b13fc2010-12-12 12:45:08 +0100152 uint8_t ra[6];
Harald Weltea8aa4df2010-05-30 22:00:53 +0200153
154 msgb_nsei(msg) = nsei;
155 msgb_bvci(msg) = 0; /* Signalling */
156 bgph->pdu_type = BSSGP_PDUT_SUSPEND_NACK;
157
158 _tlli = htonl(tlli);
159 msgb_tvlv_put(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &_tlli);
Dieter Spaard2b13fc2010-12-12 12:45:08 +0100160 gsm48_construct_ra(ra, ra_id);
161 msgb_tvlv_put(msg, BSSGP_IE_ROUTEING_AREA, 6, ra);
Harald Weltea8aa4df2010-05-30 22:00:53 +0200162 if (cause)
163 msgb_tvlv_put(msg, BSSGP_IE_CAUSE, 1, cause);
164
165 return gprs_ns_sendmsg(bssgp_nsi, msg);
166}
167
168/* 10.3.10 RESUME-ACK PDU */
169int bssgp_tx_resume_ack(uint16_t nsei, uint32_t tlli,
170 const struct gprs_ra_id *ra_id)
171{
172 struct msgb *msg = bssgp_msgb_alloc();
173 struct bssgp_normal_hdr *bgph =
174 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
175 uint32_t _tlli;
176 uint8_t ra[6];
177
178 msgb_nsei(msg) = nsei;
179 msgb_bvci(msg) = 0; /* Signalling */
180 bgph->pdu_type = BSSGP_PDUT_RESUME_ACK;
181
182 _tlli = htonl(tlli);
183 msgb_tvlv_put(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &_tlli);
184 gsm48_construct_ra(ra, ra_id);
185 msgb_tvlv_put(msg, BSSGP_IE_ROUTEING_AREA, 6, ra);
186
187 return gprs_ns_sendmsg(bssgp_nsi, msg);
188}
189
190/* 10.3.11 RESUME-NACK PDU */
191int bssgp_tx_resume_nack(uint16_t nsei, uint32_t tlli,
192 const struct gprs_ra_id *ra_id, uint8_t *cause)
193{
194 struct msgb *msg = bssgp_msgb_alloc();
195 struct bssgp_normal_hdr *bgph =
196 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
197 uint32_t _tlli;
198 uint8_t ra[6];
199
200 msgb_nsei(msg) = nsei;
201 msgb_bvci(msg) = 0; /* Signalling */
202 bgph->pdu_type = BSSGP_PDUT_SUSPEND_NACK;
203
204 _tlli = htonl(tlli);
205 msgb_tvlv_put(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &_tlli);
206 gsm48_construct_ra(ra, ra_id);
207 msgb_tvlv_put(msg, BSSGP_IE_ROUTEING_AREA, 6, ra);
208 if (cause)
209 msgb_tvlv_put(msg, BSSGP_IE_CAUSE, 1, cause);
210
211 return gprs_ns_sendmsg(bssgp_nsi, msg);
212}
213
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200214uint16_t bssgp_parse_cell_id(struct gprs_ra_id *raid, const uint8_t *buf)
Harald Welte6752fa42010-05-02 09:23:16 +0200215{
216 /* 6 octets RAC */
217 gsm48_parse_ra(raid, buf);
218 /* 2 octets CID */
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200219 return ntohs(*(uint16_t *) (buf+6));
Harald Welte6752fa42010-05-02 09:23:16 +0200220}
221
Harald Welte28610072011-11-24 21:32:07 +0100222int bssgp_create_cell_id(uint8_t *buf, const struct gprs_ra_id *raid,
223 uint16_t cid)
224{
225 uint16_t *out_cid = (uint16_t *) (buf + 6);
226 /* 6 octets RAC */
227 gsm48_construct_ra(buf, raid);
228 /* 2 octets CID */
229 *out_cid = htons(cid);
230
231 return 8;
232}
233
Harald Welte3fddf3c2010-05-01 16:48:27 +0200234/* Chapter 8.4 BVC-Reset Procedure */
235static int bssgp_rx_bvc_reset(struct msgb *msg, struct tlv_parsed *tp,
236 uint16_t ns_bvci)
237{
Harald Welte8a521132010-05-17 22:59:29 +0200238 struct bssgp_bvc_ctx *bctx;
Harald Welte6752fa42010-05-02 09:23:16 +0200239 uint16_t nsei = msgb_nsei(msg);
240 uint16_t bvci;
Harald Welte3fddf3c2010-05-01 16:48:27 +0200241 int rc;
242
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200243 bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Weltee9686b62010-05-31 18:07:17 +0200244 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx RESET cause=%s\n", bvci,
Harald Welte3fddf3c2010-05-01 16:48:27 +0200245 bssgp_cause_str(*TLVP_VAL(tp, BSSGP_IE_CAUSE)));
246
Harald Welte6752fa42010-05-02 09:23:16 +0200247 /* look-up or create the BTS context for this BVC */
248 bctx = btsctx_by_bvci_nsei(bvci, nsei);
249 if (!bctx)
250 bctx = btsctx_alloc(bvci, nsei);
251
Harald Welte25de8112010-05-13 21:26:28 +0200252 /* As opposed to NS-VCs, BVCs are NOT blocked after RESET */
253 bctx->state &= ~BVC_S_BLOCKED;
254
Harald Welte3fddf3c2010-05-01 16:48:27 +0200255 /* When we receive a BVC-RESET PDU (at least of a PTP BVCI), the BSS
256 * informs us about its RAC + Cell ID, so we can create a mapping */
Harald Welte6752fa42010-05-02 09:23:16 +0200257 if (bvci != 0 && bvci != 1) {
258 if (!TLVP_PRESENT(tp, BSSGP_IE_CELL_ID)) {
Harald Welte086fe322011-08-19 16:45:19 +0200259 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx RESET "
Harald Welte6752fa42010-05-02 09:23:16 +0200260 "missing mandatory IE\n", bvci);
261 return -EINVAL;
262 }
263 /* actually extract RAC / CID */
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200264 bctx->cell_id = bssgp_parse_cell_id(&bctx->ra_id,
265 TLVP_VAL(tp, BSSGP_IE_CELL_ID));
Harald Welteb8a6a832010-05-11 05:54:22 +0200266 LOGP(DBSSGP, LOGL_NOTICE, "Cell %u-%u-%u-%u CI %u on BVCI %u\n",
Harald Welte6752fa42010-05-02 09:23:16 +0200267 bctx->ra_id.mcc, bctx->ra_id.mnc, bctx->ra_id.lac,
268 bctx->ra_id.rac, bctx->cell_id, bvci);
269 }
Harald Welte3fddf3c2010-05-01 16:48:27 +0200270
Harald Welte6752fa42010-05-02 09:23:16 +0200271 /* Acknowledge the RESET to the BTS */
Harald Welte3fddf3c2010-05-01 16:48:27 +0200272 rc = bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_RESET_ACK,
Harald Welte6752fa42010-05-02 09:23:16 +0200273 nsei, bvci, ns_bvci);
Harald Welte3fddf3c2010-05-01 16:48:27 +0200274 return 0;
275}
276
Harald Welte25de8112010-05-13 21:26:28 +0200277static int bssgp_rx_bvc_block(struct msgb *msg, struct tlv_parsed *tp)
278{
279 uint16_t bvci;
Harald Welte8a521132010-05-17 22:59:29 +0200280 struct bssgp_bvc_ctx *ptp_ctx;
Harald Welte25de8112010-05-13 21:26:28 +0200281
282 bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Welte61c07842010-05-18 11:57:08 +0200283 if (bvci == BVCI_SIGNALLING) {
Harald Welte58e65c92010-05-13 21:45:23 +0200284 /* 8.3.2: Signalling BVC shall never be blocked */
285 LOGP(DBSSGP, LOGL_ERROR, "NSEI=%u/BVCI=%u "
286 "received block for signalling BVC!?!\n",
287 msgb_nsei(msg), msgb_bvci(msg));
288 return 0;
289 }
Harald Welte25de8112010-05-13 21:26:28 +0200290
Harald Welte086fe322011-08-19 16:45:19 +0200291 LOGP(DBSSGP, LOGL_INFO, "BSSGP Rx BVCI=%u BVC-BLOCK\n", bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200292
293 ptp_ctx = btsctx_by_bvci_nsei(bvci, msgb_nsei(msg));
294 if (!ptp_ctx)
295 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &bvci, msg);
296
297 ptp_ctx->state |= BVC_S_BLOCKED;
298 rate_ctr_inc(&ptp_ctx->ctrg->ctr[BSSGP_CTR_BLOCKED]);
299
300 /* FIXME: Send NM_BVC_BLOCK.ind to NM */
301
302 /* We always acknowledge the BLOCKing */
303 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK_ACK, msgb_nsei(msg),
304 bvci, msgb_bvci(msg));
305};
306
307static int bssgp_rx_bvc_unblock(struct msgb *msg, struct tlv_parsed *tp)
308{
309 uint16_t bvci;
Harald Welte8a521132010-05-17 22:59:29 +0200310 struct bssgp_bvc_ctx *ptp_ctx;
Harald Welte25de8112010-05-13 21:26:28 +0200311
312 bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Welte61c07842010-05-18 11:57:08 +0200313 if (bvci == BVCI_SIGNALLING) {
Harald Welte58e65c92010-05-13 21:45:23 +0200314 /* 8.3.2: Signalling BVC shall never be blocked */
315 LOGP(DBSSGP, LOGL_ERROR, "NSEI=%u/BVCI=%u "
316 "received unblock for signalling BVC!?!\n",
317 msgb_nsei(msg), msgb_bvci(msg));
318 return 0;
319 }
Harald Welte25de8112010-05-13 21:26:28 +0200320
Harald Weltee9686b62010-05-31 18:07:17 +0200321 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx BVC-UNBLOCK\n", bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200322
323 ptp_ctx = btsctx_by_bvci_nsei(bvci, msgb_nsei(msg));
324 if (!ptp_ctx)
325 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &bvci, msg);
326
327 ptp_ctx->state &= ~BVC_S_BLOCKED;
328
329 /* FIXME: Send NM_BVC_UNBLOCK.ind to NM */
330
331 /* We always acknowledge the unBLOCKing */
332 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_UNBLOCK_ACK, msgb_nsei(msg),
333 bvci, msgb_bvci(msg));
334};
335
Harald Welte9ba50052010-03-14 15:45:01 +0800336/* Uplink unit-data */
Harald Welte25de8112010-05-13 21:26:28 +0200337static int bssgp_rx_ul_ud(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200338 struct bssgp_bvc_ctx *ctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800339{
Harald Welteec19c102010-05-02 09:50:42 +0200340 struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800341
Harald Welte6752fa42010-05-02 09:23:16 +0200342 /* extract TLLI and parse TLV IEs */
Harald Welte510c3922010-04-30 16:33:12 +0200343 msgb_tlli(msg) = ntohl(budh->tlli);
Harald Welte9ba50052010-03-14 15:45:01 +0800344
Harald Welte086fe322011-08-19 16:45:19 +0200345 DEBUGP(DBSSGP, "BSSGP TLLI=0x%08x Rx UPLINK-UNITDATA\n", msgb_tlli(msg));
Harald Weltee9686b62010-05-31 18:07:17 +0200346
Harald Welte9ba50052010-03-14 15:45:01 +0800347 /* Cell ID and LLC_PDU are the only mandatory IE */
Harald Welte25de8112010-05-13 21:26:28 +0200348 if (!TLVP_PRESENT(tp, BSSGP_IE_CELL_ID) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200349 !TLVP_PRESENT(tp, BSSGP_IE_LLC_PDU)) {
350 LOGP(DBSSGP, LOGL_ERROR, "BSSGP TLLI=0x%08x Rx UL-UD "
351 "missing mandatory IE\n", msgb_tlli(msg));
Harald Welte25de8112010-05-13 21:26:28 +0200352 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Weltee9686b62010-05-31 18:07:17 +0200353 }
Harald Welte30bc19a2010-05-02 11:19:37 +0200354
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200355 /* store pointer to LLC header and CELL ID in msgb->cb */
Holger Hans Peter Freytherb6eded82010-05-23 21:11:19 +0800356 msgb_llch(msg) = (uint8_t *) TLVP_VAL(tp, BSSGP_IE_LLC_PDU);
357 msgb_bcid(msg) = (uint8_t *) TLVP_VAL(tp, BSSGP_IE_CELL_ID);
Harald Welte9ba50052010-03-14 15:45:01 +0800358
Harald Welte25de8112010-05-13 21:26:28 +0200359 return gprs_llc_rcvmsg(msg, tp);
Harald Welte9ba50052010-03-14 15:45:01 +0800360}
361
Harald Welte25de8112010-05-13 21:26:28 +0200362static int bssgp_rx_suspend(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200363 struct bssgp_bvc_ctx *ctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800364{
Harald Welteec19c102010-05-02 09:50:42 +0200365 struct bssgp_normal_hdr *bgph =
366 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Weltea8aa4df2010-05-30 22:00:53 +0200367 struct gprs_ra_id raid;
368 uint32_t tlli;
Harald Welte313cccf2010-06-09 11:22:47 +0200369 int rc;
Harald Welte9ba50052010-03-14 15:45:01 +0800370
Harald Welte25de8112010-05-13 21:26:28 +0200371 if (!TLVP_PRESENT(tp, BSSGP_IE_TLLI) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200372 !TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA)) {
373 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx SUSPEND "
374 "missing mandatory IE\n", ctx->bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200375 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Weltee9686b62010-05-31 18:07:17 +0200376 }
Harald Welte9ba50052010-03-14 15:45:01 +0800377
Harald Weltea8aa4df2010-05-30 22:00:53 +0200378 tlli = ntohl(*(uint32_t *)TLVP_VAL(tp, BSSGP_IE_TLLI));
Harald Weltee9686b62010-05-31 18:07:17 +0200379
Harald Welte17925322010-05-31 20:18:35 +0200380 DEBUGP(DBSSGP, "BSSGP BVCI=%u TLLI=0x%08x Rx SUSPEND\n",
Harald Weltee9686b62010-05-31 18:07:17 +0200381 ctx->bvci, tlli);
382
Harald Weltea8aa4df2010-05-30 22:00:53 +0200383 gsm48_parse_ra(&raid, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
384
Harald Welte313cccf2010-06-09 11:22:47 +0200385 /* Inform GMM about the SUSPEND request */
386 rc = gprs_gmm_rx_suspend(&raid, tlli);
387 if (rc < 0)
Dieter Spaard2b13fc2010-12-12 12:45:08 +0100388 return bssgp_tx_suspend_nack(msgb_nsei(msg), tlli, &raid, NULL);
Harald Welte313cccf2010-06-09 11:22:47 +0200389
Harald Weltea8aa4df2010-05-30 22:00:53 +0200390 bssgp_tx_suspend_ack(msgb_nsei(msg), tlli, &raid, 0);
391
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800392 return 0;
Harald Welte9ba50052010-03-14 15:45:01 +0800393}
394
Harald Welte25de8112010-05-13 21:26:28 +0200395static int bssgp_rx_resume(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200396 struct bssgp_bvc_ctx *ctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800397{
Harald Welteec19c102010-05-02 09:50:42 +0200398 struct bssgp_normal_hdr *bgph =
399 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Weltea8aa4df2010-05-30 22:00:53 +0200400 struct gprs_ra_id raid;
401 uint32_t tlli;
Harald Welte313cccf2010-06-09 11:22:47 +0200402 uint8_t suspend_ref;
403 int rc;
Harald Welte9ba50052010-03-14 15:45:01 +0800404
Harald Welte25de8112010-05-13 21:26:28 +0200405 if (!TLVP_PRESENT(tp, BSSGP_IE_TLLI) ||
406 !TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200407 !TLVP_PRESENT(tp, BSSGP_IE_SUSPEND_REF_NR)) {
408 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx RESUME "
409 "missing mandatory IE\n", ctx->bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200410 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Weltee9686b62010-05-31 18:07:17 +0200411 }
Harald Welte9ba50052010-03-14 15:45:01 +0800412
Harald Weltea8aa4df2010-05-30 22:00:53 +0200413 tlli = ntohl(*(uint32_t *)TLVP_VAL(tp, BSSGP_IE_TLLI));
Harald Welte313cccf2010-06-09 11:22:47 +0200414 suspend_ref = *TLVP_VAL(tp, BSSGP_IE_SUSPEND_REF_NR);
Harald Weltee9686b62010-05-31 18:07:17 +0200415
Harald Welte086fe322011-08-19 16:45:19 +0200416 DEBUGP(DBSSGP, "BSSGP BVCI=%u TLLI=0x%08x Rx RESUME\n", ctx->bvci, tlli);
Harald Weltee9686b62010-05-31 18:07:17 +0200417
Harald Weltea8aa4df2010-05-30 22:00:53 +0200418 gsm48_parse_ra(&raid, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
419
Harald Welte313cccf2010-06-09 11:22:47 +0200420 /* Inform GMM about the RESUME request */
421 rc = gprs_gmm_rx_resume(&raid, tlli, suspend_ref);
422 if (rc < 0)
423 return bssgp_tx_resume_nack(msgb_nsei(msg), tlli, &raid,
424 NULL);
425
Harald Weltea8aa4df2010-05-30 22:00:53 +0200426 bssgp_tx_resume_ack(msgb_nsei(msg), tlli, &raid);
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800427 return 0;
Harald Welte9ba50052010-03-14 15:45:01 +0800428}
429
Harald Weltee9686b62010-05-31 18:07:17 +0200430
431static int bssgp_rx_llc_disc(struct msgb *msg, struct tlv_parsed *tp,
432 struct bssgp_bvc_ctx *ctx)
433{
Harald Welteb7363142010-07-23 21:59:29 +0200434 uint32_t tlli = 0;
Harald Weltee9686b62010-05-31 18:07:17 +0200435
436 if (!TLVP_PRESENT(tp, BSSGP_IE_TLLI) ||
437 !TLVP_PRESENT(tp, BSSGP_IE_LLC_FRAMES_DISCARDED) ||
438 !TLVP_PRESENT(tp, BSSGP_IE_BVCI) ||
439 !TLVP_PRESENT(tp, BSSGP_IE_NUM_OCT_AFF)) {
440 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx LLC DISCARDED "
441 "missing mandatory IE\n", ctx->bvci);
442 }
443
Harald Welteb7363142010-07-23 21:59:29 +0200444 if (TLVP_PRESENT(tp, BSSGP_IE_TLLI))
445 tlli = ntohl(*(uint32_t *)TLVP_VAL(tp, BSSGP_IE_TLLI));
Harald Weltee9686b62010-05-31 18:07:17 +0200446
Harald Welte086fe322011-08-19 16:45:19 +0200447 DEBUGP(DBSSGP, "BSSGP BVCI=%u TLLI=%08x Rx LLC DISCARDED\n",
Harald Weltee9686b62010-05-31 18:07:17 +0200448 ctx->bvci, tlli);
449
450 rate_ctr_inc(&ctx->ctrg->ctr[BSSGP_CTR_DISCARDED]);
451
452 /* FIXME: send NM_LLC_DISCARDED to NM */
453 return 0;
454}
455
Harald Welte25de8112010-05-13 21:26:28 +0200456static int bssgp_rx_fc_bvc(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200457 struct bssgp_bvc_ctx *bctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800458{
459
Harald Weltee9686b62010-05-31 18:07:17 +0200460 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx Flow Control BVC\n",
461 bctx->bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800462
463 if (!TLVP_PRESENT(tp, BSSGP_IE_TAG) ||
464 !TLVP_PRESENT(tp, BSSGP_IE_BVC_BUCKET_SIZE) ||
465 !TLVP_PRESENT(tp, BSSGP_IE_BUCKET_LEAK_RATE) ||
466 !TLVP_PRESENT(tp, BSSGP_IE_BMAX_DEFAULT_MS) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200467 !TLVP_PRESENT(tp, BSSGP_IE_R_DEFAULT_MS)) {
468 LOGP(DBSSGP, LOGL_ERROR, "BSSGP BVCI=%u Rx FC BVC "
469 "missing mandatory IE\n", bctx->bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800470 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Weltee9686b62010-05-31 18:07:17 +0200471 }
Harald Welte9ba50052010-03-14 15:45:01 +0800472
Harald Welte30bc19a2010-05-02 11:19:37 +0200473 /* FIXME: actually implement flow control */
474
Harald Welte9ba50052010-03-14 15:45:01 +0800475 /* Send FLOW_CONTROL_BVC_ACK */
Harald Welte24a655f2010-04-30 19:54:29 +0200476 return bssgp_tx_fc_bvc_ack(msgb_nsei(msg), *TLVP_VAL(tp, BSSGP_IE_TAG),
Harald Welte30bc19a2010-05-02 11:19:37 +0200477 msgb_bvci(msg));
Harald Welte9ba50052010-03-14 15:45:01 +0800478}
Harald Welte3fddf3c2010-05-01 16:48:27 +0200479
Harald Welte25de8112010-05-13 21:26:28 +0200480/* Receive a BSSGP PDU from a BSS on a PTP BVCI */
481static int gprs_bssgp_rx_ptp(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200482 struct bssgp_bvc_ctx *bctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800483{
Harald Welteec19c102010-05-02 09:50:42 +0200484 struct bssgp_normal_hdr *bgph =
485 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte30bc19a2010-05-02 11:19:37 +0200486 uint8_t pdu_type = bgph->pdu_type;
Harald Welte9ba50052010-03-14 15:45:01 +0800487 int rc = 0;
488
Harald Welte58e65c92010-05-13 21:45:23 +0200489 /* If traffic is received on a BVC that is marked as blocked, the
490 * received PDU shall not be accepted and a STATUS PDU (Cause value:
491 * BVC Blocked) shall be sent to the peer entity on the signalling BVC */
492 if (bctx->state & BVC_S_BLOCKED && pdu_type != BSSGP_PDUT_STATUS) {
493 uint16_t bvci = msgb_bvci(msg);
494 return bssgp_tx_status(BSSGP_CAUSE_BVCI_BLOCKED, &bvci, msg);
495 }
496
Harald Welte9ba50052010-03-14 15:45:01 +0800497 switch (pdu_type) {
498 case BSSGP_PDUT_UL_UNITDATA:
499 /* some LLC data from the MS */
Harald Welte25de8112010-05-13 21:26:28 +0200500 rc = bssgp_rx_ul_ud(msg, tp, bctx);
Harald Welte9ba50052010-03-14 15:45:01 +0800501 break;
502 case BSSGP_PDUT_RA_CAPABILITY:
503 /* BSS requests RA capability or IMSI */
Harald Weltee9686b62010-05-31 18:07:17 +0200504 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx RA CAPABILITY UPDATE\n",
505 bctx->bvci);
Harald Welte6b7cf252010-05-13 19:41:31 +0200506 /* FIXME: send GMM_RA_CAPABILITY_UPDATE.ind to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800507 /* FIXME: send RA_CAPA_UPDATE_ACK */
508 break;
509 case BSSGP_PDUT_RADIO_STATUS:
Harald Weltee9686b62010-05-31 18:07:17 +0200510 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx RADIO STATUS\n", bctx->bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800511 /* BSS informs us of some exception */
Harald Welte6b7cf252010-05-13 19:41:31 +0200512 /* FIXME: send GMM_RADIO_STATUS.ind to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800513 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800514 case BSSGP_PDUT_FLOW_CONTROL_BVC:
515 /* BSS informs us of available bandwidth in Gb interface */
Harald Welte25de8112010-05-13 21:26:28 +0200516 rc = bssgp_rx_fc_bvc(msg, tp, bctx);
Harald Welte9ba50052010-03-14 15:45:01 +0800517 break;
518 case BSSGP_PDUT_FLOW_CONTROL_MS:
519 /* BSS informs us of available bandwidth to one MS */
Harald Weltee9686b62010-05-31 18:07:17 +0200520 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx Flow Control MS\n",
521 bctx->bvci);
Harald Welte30bc19a2010-05-02 11:19:37 +0200522 /* FIXME: actually implement flow control */
523 /* FIXME: Send FLOW_CONTROL_MS_ACK */
Harald Welte9ba50052010-03-14 15:45:01 +0800524 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800525 case BSSGP_PDUT_STATUS:
526 /* Some exception has occurred */
Harald Welte6b7cf252010-05-13 19:41:31 +0200527 /* FIXME: send NM_STATUS.ind to NM */
Harald Welte9ba50052010-03-14 15:45:01 +0800528 case BSSGP_PDUT_DOWNLOAD_BSS_PFC:
529 case BSSGP_PDUT_CREATE_BSS_PFC_ACK:
530 case BSSGP_PDUT_CREATE_BSS_PFC_NACK:
531 case BSSGP_PDUT_MODIFY_BSS_PFC:
532 case BSSGP_PDUT_DELETE_BSS_PFC_ACK:
Harald Weltee9686b62010-05-31 18:07:17 +0200533 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx PDU type 0x%02x not [yet] "
534 "implemented\n", bctx->bvci, pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200535 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800536 break;
537 /* those only exist in the SGSN -> BSS direction */
538 case BSSGP_PDUT_DL_UNITDATA:
539 case BSSGP_PDUT_PAGING_PS:
540 case BSSGP_PDUT_PAGING_CS:
541 case BSSGP_PDUT_RA_CAPA_UPDATE_ACK:
Harald Welte25de8112010-05-13 21:26:28 +0200542 case BSSGP_PDUT_FLOW_CONTROL_BVC_ACK:
543 case BSSGP_PDUT_FLOW_CONTROL_MS_ACK:
Harald Weltee9686b62010-05-31 18:07:17 +0200544 DEBUGP(DBSSGP, "BSSGP BVCI=%u PDU type 0x%02x only exists "
545 "in DL\n", bctx->bvci, pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200546 bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
547 rc = -EINVAL;
548 break;
549 default:
Harald Weltee9686b62010-05-31 18:07:17 +0200550 DEBUGP(DBSSGP, "BSSGP BVCI=%u PDU type 0x%02x unknown\n",
551 bctx->bvci, pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200552 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
553 break;
554 }
555
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800556 return rc;
Harald Welte25de8112010-05-13 21:26:28 +0200557}
558
559/* Receive a BSSGP PDU from a BSS on a SIGNALLING BVCI */
560static int gprs_bssgp_rx_sign(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200561 struct bssgp_bvc_ctx *bctx)
Harald Welte25de8112010-05-13 21:26:28 +0200562{
563 struct bssgp_normal_hdr *bgph =
564 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
565 uint8_t pdu_type = bgph->pdu_type;
566 int rc = 0;
567 uint16_t ns_bvci = msgb_bvci(msg);
568 uint16_t bvci;
569
570 switch (bgph->pdu_type) {
571 case BSSGP_PDUT_SUSPEND:
572 /* MS wants to suspend */
573 rc = bssgp_rx_suspend(msg, tp, bctx);
574 break;
575 case BSSGP_PDUT_RESUME:
576 /* MS wants to resume */
577 rc = bssgp_rx_resume(msg, tp, bctx);
578 break;
579 case BSSGP_PDUT_FLUSH_LL_ACK:
580 /* BSS informs us it has performed LL FLUSH */
Harald Welte086fe322011-08-19 16:45:19 +0200581 DEBUGP(DBSSGP, "BSSGP Rx BVCI=%u FLUSH LL ACK\n", bctx->bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200582 /* FIXME: send NM_FLUSH_LL.res to NM */
583 break;
584 case BSSGP_PDUT_LLC_DISCARD:
585 /* BSS informs that some LLC PDU's have been discarded */
Harald Weltee9686b62010-05-31 18:07:17 +0200586 rc = bssgp_rx_llc_disc(msg, tp, bctx);
Harald Welte25de8112010-05-13 21:26:28 +0200587 break;
588 case BSSGP_PDUT_BVC_BLOCK:
589 /* BSS tells us that BVC shall be blocked */
Harald Welte25de8112010-05-13 21:26:28 +0200590 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200591 !TLVP_PRESENT(tp, BSSGP_IE_CAUSE)) {
592 LOGP(DBSSGP, LOGL_ERROR, "BSSGP Rx BVC-BLOCK "
593 "missing mandatory IE\n");
Harald Welte25de8112010-05-13 21:26:28 +0200594 goto err_mand_ie;
Harald Weltee9686b62010-05-31 18:07:17 +0200595 }
Harald Welte2677ea52010-05-31 17:16:36 +0200596 rc = bssgp_rx_bvc_block(msg, tp);
Harald Welte25de8112010-05-13 21:26:28 +0200597 break;
598 case BSSGP_PDUT_BVC_UNBLOCK:
599 /* BSS tells us that BVC shall be unblocked */
Harald Weltee9686b62010-05-31 18:07:17 +0200600 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
601 LOGP(DBSSGP, LOGL_ERROR, "BSSGP Rx BVC-UNBLOCK "
602 "missing mandatory IE\n");
Harald Welte25de8112010-05-13 21:26:28 +0200603 goto err_mand_ie;
Harald Weltee9686b62010-05-31 18:07:17 +0200604 }
Harald Welte25de8112010-05-13 21:26:28 +0200605 rc = bssgp_rx_bvc_unblock(msg, tp);
606 break;
607 case BSSGP_PDUT_BVC_RESET:
608 /* BSS tells us that BVC init is required */
Harald Welte25de8112010-05-13 21:26:28 +0200609 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI) ||
Harald Weltee9686b62010-05-31 18:07:17 +0200610 !TLVP_PRESENT(tp, BSSGP_IE_CAUSE)) {
611 LOGP(DBSSGP, LOGL_ERROR, "BSSGP Rx BVC-RESET "
612 "missing mandatory IE\n");
Harald Welte25de8112010-05-13 21:26:28 +0200613 goto err_mand_ie;
Harald Weltee9686b62010-05-31 18:07:17 +0200614 }
Harald Welte25de8112010-05-13 21:26:28 +0200615 rc = bssgp_rx_bvc_reset(msg, tp, ns_bvci);
616 break;
617 case BSSGP_PDUT_STATUS:
618 /* Some exception has occurred */
Harald Weltee9686b62010-05-31 18:07:17 +0200619 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx BVC STATUS\n", bctx->bvci);
Harald Welte25de8112010-05-13 21:26:28 +0200620 /* FIXME: send NM_STATUS.ind to NM */
621 break;
622 /* those only exist in the SGSN -> BSS direction */
623 case BSSGP_PDUT_PAGING_PS:
624 case BSSGP_PDUT_PAGING_CS:
Harald Welte9ba50052010-03-14 15:45:01 +0800625 case BSSGP_PDUT_SUSPEND_ACK:
626 case BSSGP_PDUT_SUSPEND_NACK:
627 case BSSGP_PDUT_RESUME_ACK:
628 case BSSGP_PDUT_RESUME_NACK:
Harald Welte6b7cf252010-05-13 19:41:31 +0200629 case BSSGP_PDUT_FLUSH_LL:
Harald Welte9ba50052010-03-14 15:45:01 +0800630 case BSSGP_PDUT_BVC_BLOCK_ACK:
631 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
632 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Weltee9686b62010-05-31 18:07:17 +0200633 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx PDU type 0x%02x only exists "
634 "in DL\n", bctx->bvci, pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200635 bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800636 rc = -EINVAL;
637 break;
638 default:
Harald Weltee9686b62010-05-31 18:07:17 +0200639 DEBUGP(DBSSGP, "BSSGP BVCI=%u Rx PDU type 0x%02x unknown\n",
640 bctx->bvci, pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200641 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800642 break;
643 }
644
645 return rc;
646err_mand_ie:
647 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
648}
649
Harald Welte25de8112010-05-13 21:26:28 +0200650/* We expect msgb_bssgph() to point to the BSSGP header */
651int gprs_bssgp_rcvmsg(struct msgb *msg)
652{
653 struct bssgp_normal_hdr *bgph =
654 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
655 struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
656 struct tlv_parsed tp;
Harald Welte8a521132010-05-17 22:59:29 +0200657 struct bssgp_bvc_ctx *bctx;
Harald Welte25de8112010-05-13 21:26:28 +0200658 uint8_t pdu_type = bgph->pdu_type;
659 uint16_t ns_bvci = msgb_bvci(msg);
660 int data_len;
661 int rc = 0;
662
663 /* Identifiers from DOWN: NSEI, BVCI (both in msg->cb) */
664
665 /* UNITDATA BSSGP headers have TLLI in front */
666 if (pdu_type != BSSGP_PDUT_UL_UNITDATA &&
667 pdu_type != BSSGP_PDUT_DL_UNITDATA) {
668 data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
669 rc = bssgp_tlv_parse(&tp, bgph->data, data_len);
670 } else {
671 data_len = msgb_bssgp_len(msg) - sizeof(*budh);
672 rc = bssgp_tlv_parse(&tp, budh->data, data_len);
673 }
674
675 /* look-up or create the BTS context for this BVC */
676 bctx = btsctx_by_bvci_nsei(ns_bvci, msgb_nsei(msg));
677 /* Only a RESET PDU can create a new BVC context */
678 if (!bctx && pdu_type != BSSGP_PDUT_BVC_RESET) {
679 LOGP(DBSSGP, LOGL_NOTICE, "NSEI=%u/BVCI=%u Rejecting PDU "
680 "type %u for unknown BVCI\n", msgb_nsei(msg), ns_bvci,
681 pdu_type);
682 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, NULL, msg);
683 }
684
Harald Welte16c8dbb2010-05-17 23:30:01 +0200685 if (bctx) {
Harald Weltecca49632012-06-16 17:45:59 +0800686 log_set_context(GPRS_CTX_BVC, bctx);
Harald Welte16c8dbb2010-05-17 23:30:01 +0200687 rate_ctr_inc(&bctx->ctrg->ctr[BSSGP_CTR_PKTS_IN]);
688 rate_ctr_add(&bctx->ctrg->ctr[BSSGP_CTR_BYTES_IN],
689 msgb_bssgp_len(msg));
690 }
691
Harald Welte61c07842010-05-18 11:57:08 +0200692 if (ns_bvci == BVCI_SIGNALLING)
Harald Welte25de8112010-05-13 21:26:28 +0200693 rc = gprs_bssgp_rx_sign(msg, &tp, bctx);
Harald Welte61c07842010-05-18 11:57:08 +0200694 else if (ns_bvci == BVCI_PTM)
Harald Welte25de8112010-05-13 21:26:28 +0200695 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
696 else
697 rc = gprs_bssgp_rx_ptp(msg, &tp, bctx);
698
699 return rc;
700}
701
Harald Welte6752fa42010-05-02 09:23:16 +0200702/* Entry function from upper level (LLC), asking us to transmit a BSSGP PDU
Harald Welte30bc19a2010-05-02 11:19:37 +0200703 * to a remote MS (identified by TLLI) at a BTS identified by its BVCI and NSEI */
Harald Welte2f946832010-05-31 22:12:30 +0200704int gprs_bssgp_tx_dl_ud(struct msgb *msg, struct sgsn_mm_ctx *mmctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800705{
Harald Welte8a521132010-05-17 22:59:29 +0200706 struct bssgp_bvc_ctx *bctx;
Harald Welte9ba50052010-03-14 15:45:01 +0800707 struct bssgp_ud_hdr *budh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200708 uint8_t llc_pdu_tlv_hdr_len = 2;
709 uint8_t *llc_pdu_tlv, *qos_profile;
710 uint16_t pdu_lifetime = 1000; /* centi-seconds */
Harald Welte02f73252010-06-01 11:53:01 +0200711 uint8_t qos_profile_default[3] = { 0x00, 0x00, 0x20 };
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200712 uint16_t msg_len = msg->len;
Harald Welte30bc19a2010-05-02 11:19:37 +0200713 uint16_t bvci = msgb_bvci(msg);
714 uint16_t nsei = msgb_nsei(msg);
Harald Welte2f946832010-05-31 22:12:30 +0200715 uint16_t drx_params;
Harald Welte9ba50052010-03-14 15:45:01 +0800716
Harald Welte30bc19a2010-05-02 11:19:37 +0200717 /* Identifiers from UP: TLLI, BVCI, NSEI (all in msgb->cb) */
Harald Welte61c07842010-05-18 11:57:08 +0200718 if (bvci <= BVCI_PTM ) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200719 LOGP(DBSSGP, LOGL_ERROR, "Cannot send DL-UD to BVCI %u\n",
Harald Welte30bc19a2010-05-02 11:19:37 +0200720 bvci);
721 return -EINVAL;
722 }
723
724 bctx = btsctx_by_bvci_nsei(bvci, nsei);
Harald Welte25de8112010-05-13 21:26:28 +0200725 if (!bctx) {
726 /* FIXME: don't simply create missing context, but reject message */
Harald Welte30bc19a2010-05-02 11:19:37 +0200727 bctx = btsctx_alloc(bvci, nsei);
Harald Welte25de8112010-05-13 21:26:28 +0200728 }
Harald Welte9ba50052010-03-14 15:45:01 +0800729
730 if (msg->len > TVLV_MAX_ONEBYTE)
731 llc_pdu_tlv_hdr_len += 1;
732
733 /* prepend the tag and length of the LLC-PDU TLV */
734 llc_pdu_tlv = msgb_push(msg, llc_pdu_tlv_hdr_len);
735 llc_pdu_tlv[0] = BSSGP_IE_LLC_PDU;
736 if (llc_pdu_tlv_hdr_len > 2) {
737 llc_pdu_tlv[1] = msg_len >> 8;
738 llc_pdu_tlv[2] = msg_len & 0xff;
739 } else {
Sylvain Munautb00d1ad2010-06-09 21:13:13 +0200740 llc_pdu_tlv[1] = msg_len & 0x7f;
Harald Welte9ba50052010-03-14 15:45:01 +0800741 llc_pdu_tlv[1] |= 0x80;
742 }
743
Harald Welte2f946832010-05-31 22:12:30 +0200744 /* FIXME: optional elements: Alignment, UTRAN CCO, LSA, PFI */
745
746 if (mmctx) {
747 /* Old TLLI to help BSS map from old->new */
748#if 0
749 if (mmctx->tlli_old)
750 msgb_tvlv_push(msg, BSSGP_IE_TLLI, 4, htonl(*tlli_old));
751#endif
752
753 /* IMSI */
754 if (strlen(mmctx->imsi)) {
755 uint8_t mi[10];
756 int imsi_len = gsm48_generate_mid_from_imsi(mi, mmctx->imsi);
757 if (imsi_len > 2)
758 msgb_tvlv_push(msg, BSSGP_IE_IMSI,
759 imsi_len-2, mi+2);
760 }
761
762 /* DRX parameters */
763 drx_params = htons(mmctx->drx_parms);
764 msgb_tvlv_push(msg, BSSGP_IE_DRX_PARAMS, 2,
765 (uint8_t *) &drx_params);
766
767 /* FIXME: Priority */
768
769 /* MS Radio Access Capability */
770 if (mmctx->ms_radio_access_capa.len)
771 msgb_tvlv_push(msg, BSSGP_IE_MS_RADIO_ACCESS_CAP,
772 mmctx->ms_radio_access_capa.len,
773 mmctx->ms_radio_access_capa.buf);
774 }
Harald Welte9ba50052010-03-14 15:45:01 +0800775
776 /* prepend the pdu lifetime */
777 pdu_lifetime = htons(pdu_lifetime);
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200778 msgb_tvlv_push(msg, BSSGP_IE_PDU_LIFETIME, 2, (uint8_t *)&pdu_lifetime);
Harald Welte9ba50052010-03-14 15:45:01 +0800779
780 /* prepend the QoS profile, TLLI and pdu type */
781 budh = (struct bssgp_ud_hdr *) msgb_push(msg, sizeof(*budh));
782 memcpy(budh->qos_profile, qos_profile_default, sizeof(qos_profile_default));
Harald Welte510c3922010-04-30 16:33:12 +0200783 budh->tlli = htonl(msgb_tlli(msg));
Harald Welte9ba50052010-03-14 15:45:01 +0800784 budh->pdu_type = BSSGP_PDUT_DL_UNITDATA;
785
Harald Welte16c8dbb2010-05-17 23:30:01 +0200786 rate_ctr_inc(&bctx->ctrg->ctr[BSSGP_CTR_PKTS_OUT]);
787 rate_ctr_add(&bctx->ctrg->ctr[BSSGP_CTR_BYTES_OUT], msg->len);
788
Harald Welte30bc19a2010-05-02 11:19:37 +0200789 /* Identifiers down: BVCI, NSEI (in msgb->cb) */
Harald Welte24a655f2010-04-30 19:54:29 +0200790
791 return gprs_ns_sendmsg(bssgp_nsi, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800792}
Harald Welte68b4f032010-06-09 16:22:28 +0200793
794/* Send a single GMM-PAGING.req to a given NSEI/NS-BVCI */
795int gprs_bssgp_tx_paging(uint16_t nsei, uint16_t ns_bvci,
796 struct bssgp_paging_info *pinfo)
797{
798 struct msgb *msg = bssgp_msgb_alloc();
799 struct bssgp_normal_hdr *bgph =
800 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
801 uint16_t drx_params = htons(pinfo->drx_params);
802 uint8_t mi[10];
803 int imsi_len = gsm48_generate_mid_from_imsi(mi, pinfo->imsi);
804 uint8_t ra[6];
805
806 if (imsi_len < 2)
807 return -EINVAL;
808
809 msgb_nsei(msg) = nsei;
810 msgb_bvci(msg) = ns_bvci;
811
812 if (pinfo->mode == BSSGP_PAGING_PS)
813 bgph->pdu_type = BSSGP_PDUT_PAGING_PS;
814 else
815 bgph->pdu_type = BSSGP_PDUT_PAGING_CS;
816 /* IMSI */
817 msgb_tvlv_put(msg, BSSGP_IE_IMSI, imsi_len-2, mi+2);
818 /* DRX Parameters */
819 msgb_tvlv_put(msg, BSSGP_IE_DRX_PARAMS, 2,
820 (uint8_t *) &drx_params);
821 /* Scope */
822 switch (pinfo->scope) {
823 case BSSGP_PAGING_BSS_AREA:
824 {
825 uint8_t null = 0;
826 msgb_tvlv_put(msg, BSSGP_IE_BSS_AREA_ID, 1, &null);
827 }
828 break;
829 case BSSGP_PAGING_LOCATION_AREA:
830 gsm48_construct_ra(ra, &pinfo->raid);
831 msgb_tvlv_put(msg, BSSGP_IE_LOCATION_AREA, 4, ra);
832 break;
833 case BSSGP_PAGING_ROUTEING_AREA:
834 gsm48_construct_ra(ra, &pinfo->raid);
835 msgb_tvlv_put(msg, BSSGP_IE_ROUTEING_AREA, 6, ra);
836 break;
837 case BSSGP_PAGING_BVCI:
838 {
839 uint16_t bvci = htons(pinfo->bvci);
840 msgb_tvlv_put(msg, BSSGP_IE_BVCI, 2, (uint8_t *)&bvci);
841 }
842 break;
843 }
844 /* QoS profile mandatory for PS */
845 if (pinfo->mode == BSSGP_PAGING_PS)
846 msgb_tvlv_put(msg, BSSGP_IE_QOS_PROFILE, 3, pinfo->qos);
847
848 /* Optional (P-)TMSI */
849 if (pinfo->ptmsi) {
850 uint32_t ptmsi = htonl(*pinfo->ptmsi);
851 msgb_tvlv_put(msg, BSSGP_IE_TMSI, 4, (uint8_t *) &ptmsi);
852 }
853
854 return gprs_ns_sendmsg(bssgp_nsi, msg);
855}
Harald Weltecca49632012-06-16 17:45:59 +0800856
857void gprs_bssgp_set_log_ss(int ss)
858{
859 DBSSGP = ss;
860}