blob: ea1f9f88cf055fcf661895df9bfd048b51c44b8d [file] [log] [blame]
Harald Welte9ba50052010-03-14 15:45:01 +08001/* GPRS BSSGP protocol implementation as per 3GPP TS 08.18 */
2
Harald Welte6752fa42010-05-02 09:23:16 +02003/* (C) 2009-2010 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
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (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
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
Harald Welte4e5721d2010-05-17 23:41:43 +020021 * TODO:
22 * o properly count incoming BVC-RESET packets in counter group
23 * o set log context as early as possible for outgoing packets
Harald Welte9ba50052010-03-14 15:45:01 +080024 */
25
26#include <errno.h>
Harald Welte8f9a3ee2010-05-02 11:26:34 +020027#include <stdint.h>
Harald Welte9ba50052010-03-14 15:45:01 +080028
29#include <netinet/in.h>
30
31#include <osmocore/msgb.h>
32#include <osmocore/tlv.h>
Harald Welte6752fa42010-05-02 09:23:16 +020033#include <osmocore/talloc.h>
Harald Welte25de8112010-05-13 21:26:28 +020034#include <osmocore/rate_ctr.h>
Harald Welte6752fa42010-05-02 09:23:16 +020035
Harald Welte9ba50052010-03-14 15:45:01 +080036#include <openbsc/debug.h>
37#include <openbsc/gsm_data.h>
38#include <openbsc/gsm_04_08_gprs.h>
39#include <openbsc/gprs_bssgp.h>
40#include <openbsc/gprs_llc.h>
41#include <openbsc/gprs_ns.h>
42
Harald Welte6752fa42010-05-02 09:23:16 +020043void *bssgp_tall_ctx = NULL;
44
Harald Welte6752fa42010-05-02 09:23:16 +020045#define BVC_F_BLOCKED 0x0001
46
Harald Welte25de8112010-05-13 21:26:28 +020047enum bssgp_ctr {
Harald Welte16c8dbb2010-05-17 23:30:01 +020048 BSSGP_CTR_PKTS_IN,
49 BSSGP_CTR_PKTS_OUT,
50 BSSGP_CTR_BYTES_IN,
51 BSSGP_CTR_BYTES_OUT,
Harald Welte25de8112010-05-13 21:26:28 +020052 BSSGP_CTR_BLOCKED,
53 BSSGP_CTR_DISCARDED,
54};
55
56static const struct rate_ctr_desc bssgp_ctr_description[] = {
Harald Welte16c8dbb2010-05-17 23:30:01 +020057 { "packets.in", "Packets at BSSGP Level ( In)" },
58 { "packets.out","Packets at BSSGP Level (Out)" },
59 { "bytes.in", "Bytes at BSSGP Level ( In)" },
60 { "bytes.out", "Bytes at BSSGP Level (Out)" },
Harald Welte25de8112010-05-13 21:26:28 +020061 { "blocked", "BVC Blocking count" },
62 { "discarded", "BVC LLC Discarded count" },
63};
64
65static const struct rate_ctr_group_desc bssgp_ctrg_desc = {
66 .group_name_prefix = "bssgp.bss_ctx",
67 .group_description = "BSSGP Peer Statistics",
68 .num_ctr = ARRAY_SIZE(bssgp_ctr_description),
69 .ctr_desc = bssgp_ctr_description,
70};
71
Harald Weltea78b9c22010-05-17 23:02:42 +020072LLIST_HEAD(bssgp_bvc_ctxts);
Harald Welte6752fa42010-05-02 09:23:16 +020073
74/* Find a BTS Context based on parsed RA ID and Cell ID */
Harald Welte8a521132010-05-17 22:59:29 +020075struct bssgp_bvc_ctx *btsctx_by_raid_cid(const struct gprs_ra_id *raid, uint16_t cid)
Harald Welte6752fa42010-05-02 09:23:16 +020076{
Harald Welte8a521132010-05-17 22:59:29 +020077 struct bssgp_bvc_ctx *bctx;
Harald Welte6752fa42010-05-02 09:23:16 +020078
Harald Weltea78b9c22010-05-17 23:02:42 +020079 llist_for_each_entry(bctx, &bssgp_bvc_ctxts, list) {
Harald Welte6752fa42010-05-02 09:23:16 +020080 if (!memcmp(&bctx->ra_id, raid, sizeof(bctx->ra_id)) &&
81 bctx->cell_id == cid)
82 return bctx;
83 }
84 return NULL;
85}
86
87/* Find a BTS context based on BVCI+NSEI tuple */
Harald Welte8a521132010-05-17 22:59:29 +020088struct bssgp_bvc_ctx *btsctx_by_bvci_nsei(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 *bctx;
Harald Welte6752fa42010-05-02 09:23:16 +020091
Harald Weltea78b9c22010-05-17 23:02:42 +020092 llist_for_each_entry(bctx, &bssgp_bvc_ctxts, list) {
Harald Welte6752fa42010-05-02 09:23:16 +020093 if (bctx->nsei == nsei && bctx->bvci == bvci)
94 return bctx;
95 }
96 return NULL;
97}
98
Harald Welte8a521132010-05-17 22:59:29 +020099struct bssgp_bvc_ctx *btsctx_alloc(uint16_t bvci, uint16_t nsei)
Harald Welte6752fa42010-05-02 09:23:16 +0200100{
Harald Welte8a521132010-05-17 22:59:29 +0200101 struct bssgp_bvc_ctx *ctx;
Harald Welte6752fa42010-05-02 09:23:16 +0200102
Harald Welte8a521132010-05-17 22:59:29 +0200103 ctx = talloc_zero(bssgp_tall_ctx, struct bssgp_bvc_ctx);
Harald Welte6752fa42010-05-02 09:23:16 +0200104 if (!ctx)
105 return NULL;
106 ctx->bvci = bvci;
107 ctx->nsei = nsei;
Harald Welte25de8112010-05-13 21:26:28 +0200108 /* FIXME: BVCI is not unique, only BVCI+NSEI ?!? */
109 ctx->ctrg = rate_ctr_group_alloc(ctx, &bssgp_ctrg_desc, bvci);
110
Harald Weltea78b9c22010-05-17 23:02:42 +0200111 llist_add(&ctx->list, &bssgp_bvc_ctxts);
Harald Welte6752fa42010-05-02 09:23:16 +0200112
113 return ctx;
114}
115
Harald Welte9ba50052010-03-14 15:45:01 +0800116/* Chapter 10.4.5: Flow Control BVC ACK */
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200117static int bssgp_tx_fc_bvc_ack(uint16_t nsei, uint8_t tag, uint16_t ns_bvci)
Harald Welte9ba50052010-03-14 15:45:01 +0800118{
119 struct msgb *msg = bssgp_msgb_alloc();
120 struct bssgp_normal_hdr *bgph =
121 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
122
Harald Welte24a655f2010-04-30 19:54:29 +0200123 msgb_nsei(msg) = nsei;
124 msgb_bvci(msg) = ns_bvci;
125
Harald Welte9ba50052010-03-14 15:45:01 +0800126 bgph->pdu_type = BSSGP_PDUT_FLOW_CONTROL_BVC_ACK;
127 msgb_tvlv_put(msg, BSSGP_IE_TAG, 1, &tag);
128
Harald Welte24a655f2010-04-30 19:54:29 +0200129 return gprs_ns_sendmsg(bssgp_nsi, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800130}
131
Harald Weltea8aa4df2010-05-30 22:00:53 +0200132/* 10.3.7 SUSPEND-ACK PDU */
133int bssgp_tx_suspend_ack(uint16_t nsei, uint32_t tlli,
134 const struct gprs_ra_id *ra_id, uint8_t suspend_ref)
135{
136 struct msgb *msg = bssgp_msgb_alloc();
137 struct bssgp_normal_hdr *bgph =
138 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
139 uint32_t _tlli;
140 uint8_t ra[6];
141
142 msgb_nsei(msg) = nsei;
143 msgb_bvci(msg) = 0; /* Signalling */
144 bgph->pdu_type = BSSGP_PDUT_SUSPEND_ACK;
145
146 _tlli = htonl(tlli);
147 msgb_tvlv_put(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &_tlli);
148 gsm48_construct_ra(ra, ra_id);
149 msgb_tvlv_put(msg, BSSGP_IE_ROUTEING_AREA, 6, ra);
150 msgb_tvlv_put(msg, BSSGP_IE_SUSPEND_REF_NR, 1, &suspend_ref);
151
152 return gprs_ns_sendmsg(bssgp_nsi, msg);
153}
154
155/* 10.3.8 SUSPEND-NACK PDU */
156int bssgp_tx_suspend_nack(uint16_t nsei, uint32_t tlli,
157 uint8_t *cause)
158{
159 struct msgb *msg = bssgp_msgb_alloc();
160 struct bssgp_normal_hdr *bgph =
161 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
162 uint32_t _tlli;
163
164 msgb_nsei(msg) = nsei;
165 msgb_bvci(msg) = 0; /* Signalling */
166 bgph->pdu_type = BSSGP_PDUT_SUSPEND_NACK;
167
168 _tlli = htonl(tlli);
169 msgb_tvlv_put(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &_tlli);
170 if (cause)
171 msgb_tvlv_put(msg, BSSGP_IE_CAUSE, 1, cause);
172
173 return gprs_ns_sendmsg(bssgp_nsi, msg);
174}
175
176/* 10.3.10 RESUME-ACK PDU */
177int bssgp_tx_resume_ack(uint16_t nsei, uint32_t tlli,
178 const struct gprs_ra_id *ra_id)
179{
180 struct msgb *msg = bssgp_msgb_alloc();
181 struct bssgp_normal_hdr *bgph =
182 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
183 uint32_t _tlli;
184 uint8_t ra[6];
185
186 msgb_nsei(msg) = nsei;
187 msgb_bvci(msg) = 0; /* Signalling */
188 bgph->pdu_type = BSSGP_PDUT_RESUME_ACK;
189
190 _tlli = htonl(tlli);
191 msgb_tvlv_put(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &_tlli);
192 gsm48_construct_ra(ra, ra_id);
193 msgb_tvlv_put(msg, BSSGP_IE_ROUTEING_AREA, 6, ra);
194
195 return gprs_ns_sendmsg(bssgp_nsi, msg);
196}
197
198/* 10.3.11 RESUME-NACK PDU */
199int bssgp_tx_resume_nack(uint16_t nsei, uint32_t tlli,
200 const struct gprs_ra_id *ra_id, uint8_t *cause)
201{
202 struct msgb *msg = bssgp_msgb_alloc();
203 struct bssgp_normal_hdr *bgph =
204 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
205 uint32_t _tlli;
206 uint8_t ra[6];
207
208 msgb_nsei(msg) = nsei;
209 msgb_bvci(msg) = 0; /* Signalling */
210 bgph->pdu_type = BSSGP_PDUT_SUSPEND_NACK;
211
212 _tlli = htonl(tlli);
213 msgb_tvlv_put(msg, BSSGP_IE_TLLI, 4, (uint8_t *) &_tlli);
214 gsm48_construct_ra(ra, ra_id);
215 msgb_tvlv_put(msg, BSSGP_IE_ROUTEING_AREA, 6, ra);
216 if (cause)
217 msgb_tvlv_put(msg, BSSGP_IE_CAUSE, 1, cause);
218
219 return gprs_ns_sendmsg(bssgp_nsi, msg);
220}
221
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200222uint16_t bssgp_parse_cell_id(struct gprs_ra_id *raid, const uint8_t *buf)
Harald Welte6752fa42010-05-02 09:23:16 +0200223{
224 /* 6 octets RAC */
225 gsm48_parse_ra(raid, buf);
226 /* 2 octets CID */
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200227 return ntohs(*(uint16_t *) (buf+6));
Harald Welte6752fa42010-05-02 09:23:16 +0200228}
229
Harald Welte3fddf3c2010-05-01 16:48:27 +0200230/* Chapter 8.4 BVC-Reset Procedure */
231static int bssgp_rx_bvc_reset(struct msgb *msg, struct tlv_parsed *tp,
232 uint16_t ns_bvci)
233{
Harald Welte8a521132010-05-17 22:59:29 +0200234 struct bssgp_bvc_ctx *bctx;
Harald Welte6752fa42010-05-02 09:23:16 +0200235 uint16_t nsei = msgb_nsei(msg);
236 uint16_t bvci;
Harald Welte3fddf3c2010-05-01 16:48:27 +0200237 int rc;
238
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200239 bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Welte25de8112010-05-13 21:26:28 +0200240 DEBUGPC(DBSSGP, "BVCI=%u RESET cause=%s\n", bvci,
Harald Welte3fddf3c2010-05-01 16:48:27 +0200241 bssgp_cause_str(*TLVP_VAL(tp, BSSGP_IE_CAUSE)));
242
Harald Welte6752fa42010-05-02 09:23:16 +0200243 /* look-up or create the BTS context for this BVC */
244 bctx = btsctx_by_bvci_nsei(bvci, nsei);
245 if (!bctx)
246 bctx = btsctx_alloc(bvci, nsei);
247
Harald Welte25de8112010-05-13 21:26:28 +0200248 /* As opposed to NS-VCs, BVCs are NOT blocked after RESET */
249 bctx->state &= ~BVC_S_BLOCKED;
250
Harald Welte3fddf3c2010-05-01 16:48:27 +0200251 /* When we receive a BVC-RESET PDU (at least of a PTP BVCI), the BSS
252 * informs us about its RAC + Cell ID, so we can create a mapping */
Harald Welte6752fa42010-05-02 09:23:16 +0200253 if (bvci != 0 && bvci != 1) {
254 if (!TLVP_PRESENT(tp, BSSGP_IE_CELL_ID)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200255 LOGP(DBSSGP, LOGL_ERROR, "BSSGP RESET BVCI=%u "
Harald Welte6752fa42010-05-02 09:23:16 +0200256 "missing mandatory IE\n", bvci);
257 return -EINVAL;
258 }
259 /* actually extract RAC / CID */
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200260 bctx->cell_id = bssgp_parse_cell_id(&bctx->ra_id,
261 TLVP_VAL(tp, BSSGP_IE_CELL_ID));
Harald Welteb8a6a832010-05-11 05:54:22 +0200262 LOGP(DBSSGP, LOGL_NOTICE, "Cell %u-%u-%u-%u CI %u on BVCI %u\n",
Harald Welte6752fa42010-05-02 09:23:16 +0200263 bctx->ra_id.mcc, bctx->ra_id.mnc, bctx->ra_id.lac,
264 bctx->ra_id.rac, bctx->cell_id, bvci);
265 }
Harald Welte3fddf3c2010-05-01 16:48:27 +0200266
Harald Welte6752fa42010-05-02 09:23:16 +0200267 /* Acknowledge the RESET to the BTS */
Harald Welte3fddf3c2010-05-01 16:48:27 +0200268 rc = bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_RESET_ACK,
Harald Welte6752fa42010-05-02 09:23:16 +0200269 nsei, bvci, ns_bvci);
Harald Welte3fddf3c2010-05-01 16:48:27 +0200270 return 0;
271}
272
Harald Welte25de8112010-05-13 21:26:28 +0200273static int bssgp_rx_bvc_block(struct msgb *msg, struct tlv_parsed *tp)
274{
275 uint16_t bvci;
Harald Welte8a521132010-05-17 22:59:29 +0200276 struct bssgp_bvc_ctx *ptp_ctx;
Harald Welte25de8112010-05-13 21:26:28 +0200277
278 bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Welte61c07842010-05-18 11:57:08 +0200279 if (bvci == BVCI_SIGNALLING) {
Harald Welte58e65c92010-05-13 21:45:23 +0200280 /* 8.3.2: Signalling BVC shall never be blocked */
281 LOGP(DBSSGP, LOGL_ERROR, "NSEI=%u/BVCI=%u "
282 "received block for signalling BVC!?!\n",
283 msgb_nsei(msg), msgb_bvci(msg));
284 return 0;
285 }
Harald Welte25de8112010-05-13 21:26:28 +0200286
287 LOGP(DBSSGP, LOGL_INFO, "BVCI=%u BVC-BLOCK\n", bvci);
288
289 ptp_ctx = btsctx_by_bvci_nsei(bvci, msgb_nsei(msg));
290 if (!ptp_ctx)
291 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &bvci, msg);
292
293 ptp_ctx->state |= BVC_S_BLOCKED;
294 rate_ctr_inc(&ptp_ctx->ctrg->ctr[BSSGP_CTR_BLOCKED]);
295
296 /* FIXME: Send NM_BVC_BLOCK.ind to NM */
297
298 /* We always acknowledge the BLOCKing */
299 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK_ACK, msgb_nsei(msg),
300 bvci, msgb_bvci(msg));
301};
302
303static int bssgp_rx_bvc_unblock(struct msgb *msg, struct tlv_parsed *tp)
304{
305 uint16_t bvci;
Harald Welte8a521132010-05-17 22:59:29 +0200306 struct bssgp_bvc_ctx *ptp_ctx;
Harald Welte25de8112010-05-13 21:26:28 +0200307
308 bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Welte61c07842010-05-18 11:57:08 +0200309 if (bvci == BVCI_SIGNALLING) {
Harald Welte58e65c92010-05-13 21:45:23 +0200310 /* 8.3.2: Signalling BVC shall never be blocked */
311 LOGP(DBSSGP, LOGL_ERROR, "NSEI=%u/BVCI=%u "
312 "received unblock for signalling BVC!?!\n",
313 msgb_nsei(msg), msgb_bvci(msg));
314 return 0;
315 }
Harald Welte25de8112010-05-13 21:26:28 +0200316
317 DEBUGP(DBSSGP, "BVCI=%u BVC-UNBLOCK\n", bvci);
318
319 ptp_ctx = btsctx_by_bvci_nsei(bvci, msgb_nsei(msg));
320 if (!ptp_ctx)
321 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &bvci, msg);
322
323 ptp_ctx->state &= ~BVC_S_BLOCKED;
324
325 /* FIXME: Send NM_BVC_UNBLOCK.ind to NM */
326
327 /* We always acknowledge the unBLOCKing */
328 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_UNBLOCK_ACK, msgb_nsei(msg),
329 bvci, msgb_bvci(msg));
330};
331
Harald Welte9ba50052010-03-14 15:45:01 +0800332/* Uplink unit-data */
Harald Welte25de8112010-05-13 21:26:28 +0200333static int bssgp_rx_ul_ud(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200334 struct bssgp_bvc_ctx *ctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800335{
Harald Welteec19c102010-05-02 09:50:42 +0200336 struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800337
Harald Welteb8a6a832010-05-11 05:54:22 +0200338 DEBUGP(DBSSGP, "BSSGP UL-UD\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800339
Harald Welte6752fa42010-05-02 09:23:16 +0200340 /* extract TLLI and parse TLV IEs */
Harald Welte510c3922010-04-30 16:33:12 +0200341 msgb_tlli(msg) = ntohl(budh->tlli);
Harald Welte9ba50052010-03-14 15:45:01 +0800342
343 /* Cell ID and LLC_PDU are the only mandatory IE */
Harald Welte25de8112010-05-13 21:26:28 +0200344 if (!TLVP_PRESENT(tp, BSSGP_IE_CELL_ID) ||
345 !TLVP_PRESENT(tp, BSSGP_IE_LLC_PDU))
346 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welte30bc19a2010-05-02 11:19:37 +0200347
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200348 /* store pointer to LLC header and CELL ID in msgb->cb */
Holger Hans Peter Freytherb6eded82010-05-23 21:11:19 +0800349 msgb_llch(msg) = (uint8_t *) TLVP_VAL(tp, BSSGP_IE_LLC_PDU);
350 msgb_bcid(msg) = (uint8_t *) TLVP_VAL(tp, BSSGP_IE_CELL_ID);
Harald Welte9ba50052010-03-14 15:45:01 +0800351
Harald Welte25de8112010-05-13 21:26:28 +0200352 return gprs_llc_rcvmsg(msg, tp);
Harald Welte9ba50052010-03-14 15:45:01 +0800353}
354
Harald Welte25de8112010-05-13 21:26:28 +0200355static int bssgp_rx_suspend(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200356 struct bssgp_bvc_ctx *ctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800357{
Harald Welteec19c102010-05-02 09:50:42 +0200358 struct bssgp_normal_hdr *bgph =
359 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Weltea8aa4df2010-05-30 22:00:53 +0200360 struct gprs_ra_id raid;
361 uint32_t tlli;
Harald Welte9ba50052010-03-14 15:45:01 +0800362
Harald Welteb8a6a832010-05-11 05:54:22 +0200363 DEBUGP(DBSSGP, "BSSGP SUSPEND\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800364
Harald Welte25de8112010-05-13 21:26:28 +0200365 if (!TLVP_PRESENT(tp, BSSGP_IE_TLLI) ||
366 !TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA))
367 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800368
Harald Weltea8aa4df2010-05-30 22:00:53 +0200369 tlli = ntohl(*(uint32_t *)TLVP_VAL(tp, BSSGP_IE_TLLI));
370 gsm48_parse_ra(&raid, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
371
Harald Welte30bc19a2010-05-02 11:19:37 +0200372 /* FIXME: pass the SUSPEND request to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800373 /* SEND SUSPEND_ACK or SUSPEND_NACK */
Harald Weltea8aa4df2010-05-30 22:00:53 +0200374 bssgp_tx_suspend_ack(msgb_nsei(msg), tlli, &raid, 0);
375
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800376 return 0;
Harald Welte9ba50052010-03-14 15:45:01 +0800377}
378
Harald Welte25de8112010-05-13 21:26:28 +0200379static int bssgp_rx_resume(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200380 struct bssgp_bvc_ctx *ctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800381{
Harald Welteec19c102010-05-02 09:50:42 +0200382 struct bssgp_normal_hdr *bgph =
383 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Weltea8aa4df2010-05-30 22:00:53 +0200384 struct gprs_ra_id raid;
385 uint32_t tlli;
Harald Welte9ba50052010-03-14 15:45:01 +0800386
Harald Welteb8a6a832010-05-11 05:54:22 +0200387 DEBUGP(DBSSGP, "BSSGP RESUME\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800388
Harald Welte25de8112010-05-13 21:26:28 +0200389 if (!TLVP_PRESENT(tp, BSSGP_IE_TLLI) ||
390 !TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA) ||
391 !TLVP_PRESENT(tp, BSSGP_IE_SUSPEND_REF_NR))
392 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800393
Harald Weltea8aa4df2010-05-30 22:00:53 +0200394 tlli = ntohl(*(uint32_t *)TLVP_VAL(tp, BSSGP_IE_TLLI));
395 gsm48_parse_ra(&raid, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
396
Harald Welte30bc19a2010-05-02 11:19:37 +0200397 /* FIXME: pass the RESUME request to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800398 /* SEND RESUME_ACK or RESUME_NACK */
Harald Weltea8aa4df2010-05-30 22:00:53 +0200399 bssgp_tx_resume_ack(msgb_nsei(msg), tlli, &raid);
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800400 return 0;
Harald Welte9ba50052010-03-14 15:45:01 +0800401}
402
Harald Welte25de8112010-05-13 21:26:28 +0200403static int bssgp_rx_fc_bvc(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200404 struct bssgp_bvc_ctx *bctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800405{
406
Harald Welteb8a6a832010-05-11 05:54:22 +0200407 DEBUGP(DBSSGP, "BSSGP FC BVC\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800408
409 if (!TLVP_PRESENT(tp, BSSGP_IE_TAG) ||
410 !TLVP_PRESENT(tp, BSSGP_IE_BVC_BUCKET_SIZE) ||
411 !TLVP_PRESENT(tp, BSSGP_IE_BUCKET_LEAK_RATE) ||
412 !TLVP_PRESENT(tp, BSSGP_IE_BMAX_DEFAULT_MS) ||
413 !TLVP_PRESENT(tp, BSSGP_IE_R_DEFAULT_MS))
414 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
415
Harald Welte30bc19a2010-05-02 11:19:37 +0200416 /* FIXME: actually implement flow control */
417
Harald Welte9ba50052010-03-14 15:45:01 +0800418 /* Send FLOW_CONTROL_BVC_ACK */
Harald Welte24a655f2010-04-30 19:54:29 +0200419 return bssgp_tx_fc_bvc_ack(msgb_nsei(msg), *TLVP_VAL(tp, BSSGP_IE_TAG),
Harald Welte30bc19a2010-05-02 11:19:37 +0200420 msgb_bvci(msg));
Harald Welte9ba50052010-03-14 15:45:01 +0800421}
Harald Welte3fddf3c2010-05-01 16:48:27 +0200422
Harald Welte25de8112010-05-13 21:26:28 +0200423/* Receive a BSSGP PDU from a BSS on a PTP BVCI */
424static int gprs_bssgp_rx_ptp(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200425 struct bssgp_bvc_ctx *bctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800426{
Harald Welteec19c102010-05-02 09:50:42 +0200427 struct bssgp_normal_hdr *bgph =
428 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte30bc19a2010-05-02 11:19:37 +0200429 uint8_t pdu_type = bgph->pdu_type;
Harald Welte9ba50052010-03-14 15:45:01 +0800430 int rc = 0;
431
Harald Welte58e65c92010-05-13 21:45:23 +0200432 /* If traffic is received on a BVC that is marked as blocked, the
433 * received PDU shall not be accepted and a STATUS PDU (Cause value:
434 * BVC Blocked) shall be sent to the peer entity on the signalling BVC */
435 if (bctx->state & BVC_S_BLOCKED && pdu_type != BSSGP_PDUT_STATUS) {
436 uint16_t bvci = msgb_bvci(msg);
437 return bssgp_tx_status(BSSGP_CAUSE_BVCI_BLOCKED, &bvci, msg);
438 }
439
Harald Welte9ba50052010-03-14 15:45:01 +0800440 switch (pdu_type) {
441 case BSSGP_PDUT_UL_UNITDATA:
442 /* some LLC data from the MS */
Harald Welte25de8112010-05-13 21:26:28 +0200443 rc = bssgp_rx_ul_ud(msg, tp, bctx);
Harald Welte9ba50052010-03-14 15:45:01 +0800444 break;
445 case BSSGP_PDUT_RA_CAPABILITY:
446 /* BSS requests RA capability or IMSI */
Harald Welteb8a6a832010-05-11 05:54:22 +0200447 DEBUGP(DBSSGP, "BSSGP RA CAPABILITY UPDATE\n");
Harald Welte6b7cf252010-05-13 19:41:31 +0200448 /* FIXME: send GMM_RA_CAPABILITY_UPDATE.ind to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800449 /* FIXME: send RA_CAPA_UPDATE_ACK */
450 break;
451 case BSSGP_PDUT_RADIO_STATUS:
Harald Welteb8a6a832010-05-11 05:54:22 +0200452 DEBUGP(DBSSGP, "BSSGP RADIO STATUS\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800453 /* BSS informs us of some exception */
Harald Welte6b7cf252010-05-13 19:41:31 +0200454 /* FIXME: send GMM_RADIO_STATUS.ind to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800455 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800456 case BSSGP_PDUT_FLOW_CONTROL_BVC:
457 /* BSS informs us of available bandwidth in Gb interface */
Harald Welte25de8112010-05-13 21:26:28 +0200458 rc = bssgp_rx_fc_bvc(msg, tp, bctx);
Harald Welte9ba50052010-03-14 15:45:01 +0800459 break;
460 case BSSGP_PDUT_FLOW_CONTROL_MS:
461 /* BSS informs us of available bandwidth to one MS */
Harald Welteb8a6a832010-05-11 05:54:22 +0200462 DEBUGP(DBSSGP, "BSSGP FC MS\n");
Harald Welte30bc19a2010-05-02 11:19:37 +0200463 /* FIXME: actually implement flow control */
464 /* FIXME: Send FLOW_CONTROL_MS_ACK */
Harald Welte9ba50052010-03-14 15:45:01 +0800465 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800466 case BSSGP_PDUT_STATUS:
467 /* Some exception has occurred */
Harald Welte6b7cf252010-05-13 19:41:31 +0200468 /* FIXME: send NM_STATUS.ind to NM */
Harald Welte9ba50052010-03-14 15:45:01 +0800469 case BSSGP_PDUT_DOWNLOAD_BSS_PFC:
470 case BSSGP_PDUT_CREATE_BSS_PFC_ACK:
471 case BSSGP_PDUT_CREATE_BSS_PFC_NACK:
472 case BSSGP_PDUT_MODIFY_BSS_PFC:
473 case BSSGP_PDUT_DELETE_BSS_PFC_ACK:
Harald Welteb8a6a832010-05-11 05:54:22 +0200474 DEBUGP(DBSSGP, "BSSGP PDU type 0x%02x not [yet] implemented\n",
Harald Welte9ba50052010-03-14 15:45:01 +0800475 pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200476 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800477 break;
478 /* those only exist in the SGSN -> BSS direction */
479 case BSSGP_PDUT_DL_UNITDATA:
480 case BSSGP_PDUT_PAGING_PS:
481 case BSSGP_PDUT_PAGING_CS:
482 case BSSGP_PDUT_RA_CAPA_UPDATE_ACK:
Harald Welte25de8112010-05-13 21:26:28 +0200483 case BSSGP_PDUT_FLOW_CONTROL_BVC_ACK:
484 case BSSGP_PDUT_FLOW_CONTROL_MS_ACK:
485 DEBUGP(DBSSGP, "BSSGP PDU type 0x%02x only exists in DL\n",
486 pdu_type);
487 bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
488 rc = -EINVAL;
489 break;
490 default:
491 DEBUGP(DBSSGP, "BSSGP PDU type 0x%02x unknown\n", pdu_type);
492 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
493 break;
494 }
495
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800496 return rc;
Harald Welte25de8112010-05-13 21:26:28 +0200497}
498
499/* Receive a BSSGP PDU from a BSS on a SIGNALLING BVCI */
500static int gprs_bssgp_rx_sign(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200501 struct bssgp_bvc_ctx *bctx)
Harald Welte25de8112010-05-13 21:26:28 +0200502{
503 struct bssgp_normal_hdr *bgph =
504 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
505 uint8_t pdu_type = bgph->pdu_type;
506 int rc = 0;
507 uint16_t ns_bvci = msgb_bvci(msg);
508 uint16_t bvci;
509
510 switch (bgph->pdu_type) {
511 case BSSGP_PDUT_SUSPEND:
512 /* MS wants to suspend */
513 rc = bssgp_rx_suspend(msg, tp, bctx);
514 break;
515 case BSSGP_PDUT_RESUME:
516 /* MS wants to resume */
517 rc = bssgp_rx_resume(msg, tp, bctx);
518 break;
519 case BSSGP_PDUT_FLUSH_LL_ACK:
520 /* BSS informs us it has performed LL FLUSH */
521 DEBUGP(DBSSGP, "BSSGP FLUSH LL\n");
522 /* FIXME: send NM_FLUSH_LL.res to NM */
523 break;
524 case BSSGP_PDUT_LLC_DISCARD:
525 /* BSS informs that some LLC PDU's have been discarded */
526 rate_ctr_inc(&bctx->ctrg->ctr[BSSGP_CTR_DISCARDED]);
527 DEBUGP(DBSSGP, "BSSGP LLC DISCARDED\n");
528 /* FIXME: send NM_LLC_DISCARDED to NM */
529 break;
530 case BSSGP_PDUT_BVC_BLOCK:
531 /* BSS tells us that BVC shall be blocked */
532 DEBUGP(DBSSGP, "BSSGP BVC BLOCK ");
533 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI) ||
534 !TLVP_PRESENT(tp, BSSGP_IE_CAUSE))
535 goto err_mand_ie;
536 rc = bssgp_rx_bvc_unblock(msg, tp);
537 break;
538 case BSSGP_PDUT_BVC_UNBLOCK:
539 /* BSS tells us that BVC shall be unblocked */
540 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI))
541 goto err_mand_ie;
542 rc = bssgp_rx_bvc_unblock(msg, tp);
543 break;
544 case BSSGP_PDUT_BVC_RESET:
545 /* BSS tells us that BVC init is required */
546 DEBUGP(DBSSGP, "BSSGP BVC RESET ");
547 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI) ||
548 !TLVP_PRESENT(tp, BSSGP_IE_CAUSE))
549 goto err_mand_ie;
550 rc = bssgp_rx_bvc_reset(msg, tp, ns_bvci);
551 break;
552 case BSSGP_PDUT_STATUS:
553 /* Some exception has occurred */
554 /* FIXME: send NM_STATUS.ind to NM */
555 break;
556 /* those only exist in the SGSN -> BSS direction */
557 case BSSGP_PDUT_PAGING_PS:
558 case BSSGP_PDUT_PAGING_CS:
Harald Welte9ba50052010-03-14 15:45:01 +0800559 case BSSGP_PDUT_SUSPEND_ACK:
560 case BSSGP_PDUT_SUSPEND_NACK:
561 case BSSGP_PDUT_RESUME_ACK:
562 case BSSGP_PDUT_RESUME_NACK:
Harald Welte6b7cf252010-05-13 19:41:31 +0200563 case BSSGP_PDUT_FLUSH_LL:
Harald Welte9ba50052010-03-14 15:45:01 +0800564 case BSSGP_PDUT_BVC_BLOCK_ACK:
565 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
566 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Welteb8a6a832010-05-11 05:54:22 +0200567 DEBUGP(DBSSGP, "BSSGP PDU type 0x%02x only exists in DL\n",
Harald Welte9ba50052010-03-14 15:45:01 +0800568 pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200569 bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800570 rc = -EINVAL;
571 break;
572 default:
Harald Welteb8a6a832010-05-11 05:54:22 +0200573 DEBUGP(DBSSGP, "BSSGP PDU type 0x%02x unknown\n", pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200574 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800575 break;
576 }
577
578 return rc;
579err_mand_ie:
580 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
581}
582
Harald Welte25de8112010-05-13 21:26:28 +0200583/* We expect msgb_bssgph() to point to the BSSGP header */
584int gprs_bssgp_rcvmsg(struct msgb *msg)
585{
586 struct bssgp_normal_hdr *bgph =
587 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
588 struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
589 struct tlv_parsed tp;
Harald Welte8a521132010-05-17 22:59:29 +0200590 struct bssgp_bvc_ctx *bctx;
Harald Welte25de8112010-05-13 21:26:28 +0200591 uint8_t pdu_type = bgph->pdu_type;
592 uint16_t ns_bvci = msgb_bvci(msg);
593 int data_len;
594 int rc = 0;
595
596 /* Identifiers from DOWN: NSEI, BVCI (both in msg->cb) */
597
598 /* UNITDATA BSSGP headers have TLLI in front */
599 if (pdu_type != BSSGP_PDUT_UL_UNITDATA &&
600 pdu_type != BSSGP_PDUT_DL_UNITDATA) {
601 data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
602 rc = bssgp_tlv_parse(&tp, bgph->data, data_len);
603 } else {
604 data_len = msgb_bssgp_len(msg) - sizeof(*budh);
605 rc = bssgp_tlv_parse(&tp, budh->data, data_len);
606 }
607
608 /* look-up or create the BTS context for this BVC */
609 bctx = btsctx_by_bvci_nsei(ns_bvci, msgb_nsei(msg));
610 /* Only a RESET PDU can create a new BVC context */
611 if (!bctx && pdu_type != BSSGP_PDUT_BVC_RESET) {
612 LOGP(DBSSGP, LOGL_NOTICE, "NSEI=%u/BVCI=%u Rejecting PDU "
613 "type %u for unknown BVCI\n", msgb_nsei(msg), ns_bvci,
614 pdu_type);
615 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, NULL, msg);
616 }
617
Harald Welte16c8dbb2010-05-17 23:30:01 +0200618 if (bctx) {
Harald Welte4e5721d2010-05-17 23:41:43 +0200619 log_set_context(BSC_CTX_BVC, bctx);
Harald Welte16c8dbb2010-05-17 23:30:01 +0200620 rate_ctr_inc(&bctx->ctrg->ctr[BSSGP_CTR_PKTS_IN]);
621 rate_ctr_add(&bctx->ctrg->ctr[BSSGP_CTR_BYTES_IN],
622 msgb_bssgp_len(msg));
623 }
624
Harald Welte61c07842010-05-18 11:57:08 +0200625 if (ns_bvci == BVCI_SIGNALLING)
Harald Welte25de8112010-05-13 21:26:28 +0200626 rc = gprs_bssgp_rx_sign(msg, &tp, bctx);
Harald Welte61c07842010-05-18 11:57:08 +0200627 else if (ns_bvci == BVCI_PTM)
Harald Welte25de8112010-05-13 21:26:28 +0200628 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
629 else
630 rc = gprs_bssgp_rx_ptp(msg, &tp, bctx);
631
632 return rc;
633}
634
Harald Welte6752fa42010-05-02 09:23:16 +0200635/* Entry function from upper level (LLC), asking us to transmit a BSSGP PDU
Harald Welte30bc19a2010-05-02 11:19:37 +0200636 * to a remote MS (identified by TLLI) at a BTS identified by its BVCI and NSEI */
637int gprs_bssgp_tx_dl_ud(struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800638{
Harald Welte8a521132010-05-17 22:59:29 +0200639 struct bssgp_bvc_ctx *bctx;
Harald Welte9ba50052010-03-14 15:45:01 +0800640 struct bssgp_ud_hdr *budh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200641 uint8_t llc_pdu_tlv_hdr_len = 2;
642 uint8_t *llc_pdu_tlv, *qos_profile;
643 uint16_t pdu_lifetime = 1000; /* centi-seconds */
644 uint8_t qos_profile_default[3] = { 0x00, 0x00, 0x21 };
645 uint16_t msg_len = msg->len;
Harald Welte30bc19a2010-05-02 11:19:37 +0200646 uint16_t bvci = msgb_bvci(msg);
647 uint16_t nsei = msgb_nsei(msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800648
Harald Welte30bc19a2010-05-02 11:19:37 +0200649 /* Identifiers from UP: TLLI, BVCI, NSEI (all in msgb->cb) */
Harald Welte61c07842010-05-18 11:57:08 +0200650 if (bvci <= BVCI_PTM ) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200651 LOGP(DBSSGP, LOGL_ERROR, "Cannot send DL-UD to BVCI %u\n",
Harald Welte30bc19a2010-05-02 11:19:37 +0200652 bvci);
653 return -EINVAL;
654 }
655
656 bctx = btsctx_by_bvci_nsei(bvci, nsei);
Harald Welte25de8112010-05-13 21:26:28 +0200657 if (!bctx) {
658 /* FIXME: don't simply create missing context, but reject message */
Harald Welte30bc19a2010-05-02 11:19:37 +0200659 bctx = btsctx_alloc(bvci, nsei);
Harald Welte25de8112010-05-13 21:26:28 +0200660 }
Harald Welte9ba50052010-03-14 15:45:01 +0800661
662 if (msg->len > TVLV_MAX_ONEBYTE)
663 llc_pdu_tlv_hdr_len += 1;
664
665 /* prepend the tag and length of the LLC-PDU TLV */
666 llc_pdu_tlv = msgb_push(msg, llc_pdu_tlv_hdr_len);
667 llc_pdu_tlv[0] = BSSGP_IE_LLC_PDU;
668 if (llc_pdu_tlv_hdr_len > 2) {
669 llc_pdu_tlv[1] = msg_len >> 8;
670 llc_pdu_tlv[2] = msg_len & 0xff;
671 } else {
672 llc_pdu_tlv[1] = msg_len & 0x3f;
673 llc_pdu_tlv[1] |= 0x80;
674 }
675
676 /* FIXME: optional elements */
677
678 /* prepend the pdu lifetime */
679 pdu_lifetime = htons(pdu_lifetime);
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200680 msgb_tvlv_push(msg, BSSGP_IE_PDU_LIFETIME, 2, (uint8_t *)&pdu_lifetime);
Harald Welte9ba50052010-03-14 15:45:01 +0800681
682 /* prepend the QoS profile, TLLI and pdu type */
683 budh = (struct bssgp_ud_hdr *) msgb_push(msg, sizeof(*budh));
684 memcpy(budh->qos_profile, qos_profile_default, sizeof(qos_profile_default));
Harald Welte510c3922010-04-30 16:33:12 +0200685 budh->tlli = htonl(msgb_tlli(msg));
Harald Welte9ba50052010-03-14 15:45:01 +0800686 budh->pdu_type = BSSGP_PDUT_DL_UNITDATA;
687
Harald Welte16c8dbb2010-05-17 23:30:01 +0200688 rate_ctr_inc(&bctx->ctrg->ctr[BSSGP_CTR_PKTS_OUT]);
689 rate_ctr_add(&bctx->ctrg->ctr[BSSGP_CTR_BYTES_OUT], msg->len);
690
Harald Welte30bc19a2010-05-02 11:19:37 +0200691 /* Identifiers down: BVCI, NSEI (in msgb->cb) */
Harald Welte24a655f2010-04-30 19:54:29 +0200692
693 return gprs_ns_sendmsg(bssgp_nsi, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800694}