blob: fa994514f28a5dfa2e5729751e19cebfafe02f3f [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 Weltea2ca4ed2010-05-02 11:54:55 +0200132uint16_t bssgp_parse_cell_id(struct gprs_ra_id *raid, const uint8_t *buf)
Harald Welte6752fa42010-05-02 09:23:16 +0200133{
134 /* 6 octets RAC */
135 gsm48_parse_ra(raid, buf);
136 /* 2 octets CID */
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200137 return ntohs(*(uint16_t *) (buf+6));
Harald Welte6752fa42010-05-02 09:23:16 +0200138}
139
Harald Welte3fddf3c2010-05-01 16:48:27 +0200140/* Chapter 8.4 BVC-Reset Procedure */
141static int bssgp_rx_bvc_reset(struct msgb *msg, struct tlv_parsed *tp,
142 uint16_t ns_bvci)
143{
Harald Welte8a521132010-05-17 22:59:29 +0200144 struct bssgp_bvc_ctx *bctx;
Harald Welte6752fa42010-05-02 09:23:16 +0200145 uint16_t nsei = msgb_nsei(msg);
146 uint16_t bvci;
Harald Welte3fddf3c2010-05-01 16:48:27 +0200147 int rc;
148
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200149 bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Welte25de8112010-05-13 21:26:28 +0200150 DEBUGPC(DBSSGP, "BVCI=%u RESET cause=%s\n", bvci,
Harald Welte3fddf3c2010-05-01 16:48:27 +0200151 bssgp_cause_str(*TLVP_VAL(tp, BSSGP_IE_CAUSE)));
152
Harald Welte6752fa42010-05-02 09:23:16 +0200153 /* look-up or create the BTS context for this BVC */
154 bctx = btsctx_by_bvci_nsei(bvci, nsei);
155 if (!bctx)
156 bctx = btsctx_alloc(bvci, nsei);
157
Harald Welte25de8112010-05-13 21:26:28 +0200158 /* As opposed to NS-VCs, BVCs are NOT blocked after RESET */
159 bctx->state &= ~BVC_S_BLOCKED;
160
Harald Welte3fddf3c2010-05-01 16:48:27 +0200161 /* When we receive a BVC-RESET PDU (at least of a PTP BVCI), the BSS
162 * informs us about its RAC + Cell ID, so we can create a mapping */
Harald Welte6752fa42010-05-02 09:23:16 +0200163 if (bvci != 0 && bvci != 1) {
164 if (!TLVP_PRESENT(tp, BSSGP_IE_CELL_ID)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200165 LOGP(DBSSGP, LOGL_ERROR, "BSSGP RESET BVCI=%u "
Harald Welte6752fa42010-05-02 09:23:16 +0200166 "missing mandatory IE\n", bvci);
167 return -EINVAL;
168 }
169 /* actually extract RAC / CID */
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200170 bctx->cell_id = bssgp_parse_cell_id(&bctx->ra_id,
171 TLVP_VAL(tp, BSSGP_IE_CELL_ID));
Harald Welteb8a6a832010-05-11 05:54:22 +0200172 LOGP(DBSSGP, LOGL_NOTICE, "Cell %u-%u-%u-%u CI %u on BVCI %u\n",
Harald Welte6752fa42010-05-02 09:23:16 +0200173 bctx->ra_id.mcc, bctx->ra_id.mnc, bctx->ra_id.lac,
174 bctx->ra_id.rac, bctx->cell_id, bvci);
175 }
Harald Welte3fddf3c2010-05-01 16:48:27 +0200176
Harald Welte6752fa42010-05-02 09:23:16 +0200177 /* Acknowledge the RESET to the BTS */
Harald Welte3fddf3c2010-05-01 16:48:27 +0200178 rc = bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_RESET_ACK,
Harald Welte6752fa42010-05-02 09:23:16 +0200179 nsei, bvci, ns_bvci);
Harald Welte3fddf3c2010-05-01 16:48:27 +0200180 return 0;
181}
182
Harald Welte25de8112010-05-13 21:26:28 +0200183static int bssgp_rx_bvc_block(struct msgb *msg, struct tlv_parsed *tp)
184{
185 uint16_t bvci;
Harald Welte8a521132010-05-17 22:59:29 +0200186 struct bssgp_bvc_ctx *ptp_ctx;
Harald Welte25de8112010-05-13 21:26:28 +0200187
188 bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Welte61c07842010-05-18 11:57:08 +0200189 if (bvci == BVCI_SIGNALLING) {
Harald Welte58e65c92010-05-13 21:45:23 +0200190 /* 8.3.2: Signalling BVC shall never be blocked */
191 LOGP(DBSSGP, LOGL_ERROR, "NSEI=%u/BVCI=%u "
192 "received block for signalling BVC!?!\n",
193 msgb_nsei(msg), msgb_bvci(msg));
194 return 0;
195 }
Harald Welte25de8112010-05-13 21:26:28 +0200196
197 LOGP(DBSSGP, LOGL_INFO, "BVCI=%u BVC-BLOCK\n", bvci);
198
199 ptp_ctx = btsctx_by_bvci_nsei(bvci, msgb_nsei(msg));
200 if (!ptp_ctx)
201 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &bvci, msg);
202
203 ptp_ctx->state |= BVC_S_BLOCKED;
204 rate_ctr_inc(&ptp_ctx->ctrg->ctr[BSSGP_CTR_BLOCKED]);
205
206 /* FIXME: Send NM_BVC_BLOCK.ind to NM */
207
208 /* We always acknowledge the BLOCKing */
209 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK_ACK, msgb_nsei(msg),
210 bvci, msgb_bvci(msg));
211};
212
213static int bssgp_rx_bvc_unblock(struct msgb *msg, struct tlv_parsed *tp)
214{
215 uint16_t bvci;
Harald Welte8a521132010-05-17 22:59:29 +0200216 struct bssgp_bvc_ctx *ptp_ctx;
Harald Welte25de8112010-05-13 21:26:28 +0200217
218 bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Welte61c07842010-05-18 11:57:08 +0200219 if (bvci == BVCI_SIGNALLING) {
Harald Welte58e65c92010-05-13 21:45:23 +0200220 /* 8.3.2: Signalling BVC shall never be blocked */
221 LOGP(DBSSGP, LOGL_ERROR, "NSEI=%u/BVCI=%u "
222 "received unblock for signalling BVC!?!\n",
223 msgb_nsei(msg), msgb_bvci(msg));
224 return 0;
225 }
Harald Welte25de8112010-05-13 21:26:28 +0200226
227 DEBUGP(DBSSGP, "BVCI=%u BVC-UNBLOCK\n", bvci);
228
229 ptp_ctx = btsctx_by_bvci_nsei(bvci, msgb_nsei(msg));
230 if (!ptp_ctx)
231 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &bvci, msg);
232
233 ptp_ctx->state &= ~BVC_S_BLOCKED;
234
235 /* FIXME: Send NM_BVC_UNBLOCK.ind to NM */
236
237 /* We always acknowledge the unBLOCKing */
238 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_UNBLOCK_ACK, msgb_nsei(msg),
239 bvci, msgb_bvci(msg));
240};
241
Harald Welte9ba50052010-03-14 15:45:01 +0800242/* Uplink unit-data */
Harald Welte25de8112010-05-13 21:26:28 +0200243static int bssgp_rx_ul_ud(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200244 struct bssgp_bvc_ctx *ctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800245{
Harald Welteec19c102010-05-02 09:50:42 +0200246 struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800247
Harald Welteb8a6a832010-05-11 05:54:22 +0200248 DEBUGP(DBSSGP, "BSSGP UL-UD\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800249
Harald Welte6752fa42010-05-02 09:23:16 +0200250 /* extract TLLI and parse TLV IEs */
Harald Welte510c3922010-04-30 16:33:12 +0200251 msgb_tlli(msg) = ntohl(budh->tlli);
Harald Welte9ba50052010-03-14 15:45:01 +0800252
253 /* Cell ID and LLC_PDU are the only mandatory IE */
Harald Welte25de8112010-05-13 21:26:28 +0200254 if (!TLVP_PRESENT(tp, BSSGP_IE_CELL_ID) ||
255 !TLVP_PRESENT(tp, BSSGP_IE_LLC_PDU))
256 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welte30bc19a2010-05-02 11:19:37 +0200257
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200258 /* store pointer to LLC header and CELL ID in msgb->cb */
Holger Hans Peter Freytherb6eded82010-05-23 21:11:19 +0800259 msgb_llch(msg) = (uint8_t *) TLVP_VAL(tp, BSSGP_IE_LLC_PDU);
260 msgb_bcid(msg) = (uint8_t *) TLVP_VAL(tp, BSSGP_IE_CELL_ID);
Harald Welte9ba50052010-03-14 15:45:01 +0800261
Harald Welte25de8112010-05-13 21:26:28 +0200262 return gprs_llc_rcvmsg(msg, tp);
Harald Welte9ba50052010-03-14 15:45:01 +0800263}
264
Harald Welte25de8112010-05-13 21:26:28 +0200265static int bssgp_rx_suspend(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200266 struct bssgp_bvc_ctx *ctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800267{
Harald Welteec19c102010-05-02 09:50:42 +0200268 struct bssgp_normal_hdr *bgph =
269 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800270
Harald Welteb8a6a832010-05-11 05:54:22 +0200271 DEBUGP(DBSSGP, "BSSGP SUSPEND\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800272
Harald Welte25de8112010-05-13 21:26:28 +0200273 if (!TLVP_PRESENT(tp, BSSGP_IE_TLLI) ||
274 !TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA))
275 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800276
Harald Welte30bc19a2010-05-02 11:19:37 +0200277 /* FIXME: pass the SUSPEND request to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800278 /* SEND SUSPEND_ACK or SUSPEND_NACK */
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800279 return 0;
Harald Welte9ba50052010-03-14 15:45:01 +0800280}
281
Harald Welte25de8112010-05-13 21:26:28 +0200282static int bssgp_rx_resume(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200283 struct bssgp_bvc_ctx *ctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800284{
Harald Welteec19c102010-05-02 09:50:42 +0200285 struct bssgp_normal_hdr *bgph =
286 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800287
Harald Welteb8a6a832010-05-11 05:54:22 +0200288 DEBUGP(DBSSGP, "BSSGP RESUME\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800289
Harald Welte25de8112010-05-13 21:26:28 +0200290 if (!TLVP_PRESENT(tp, BSSGP_IE_TLLI) ||
291 !TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA) ||
292 !TLVP_PRESENT(tp, BSSGP_IE_SUSPEND_REF_NR))
293 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800294
Harald Welte30bc19a2010-05-02 11:19:37 +0200295 /* FIXME: pass the RESUME request to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800296 /* SEND RESUME_ACK or RESUME_NACK */
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800297 return 0;
Harald Welte9ba50052010-03-14 15:45:01 +0800298}
299
Harald Welte25de8112010-05-13 21:26:28 +0200300static int bssgp_rx_fc_bvc(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200301 struct bssgp_bvc_ctx *bctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800302{
303
Harald Welteb8a6a832010-05-11 05:54:22 +0200304 DEBUGP(DBSSGP, "BSSGP FC BVC\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800305
306 if (!TLVP_PRESENT(tp, BSSGP_IE_TAG) ||
307 !TLVP_PRESENT(tp, BSSGP_IE_BVC_BUCKET_SIZE) ||
308 !TLVP_PRESENT(tp, BSSGP_IE_BUCKET_LEAK_RATE) ||
309 !TLVP_PRESENT(tp, BSSGP_IE_BMAX_DEFAULT_MS) ||
310 !TLVP_PRESENT(tp, BSSGP_IE_R_DEFAULT_MS))
311 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
312
Harald Welte30bc19a2010-05-02 11:19:37 +0200313 /* FIXME: actually implement flow control */
314
Harald Welte9ba50052010-03-14 15:45:01 +0800315 /* Send FLOW_CONTROL_BVC_ACK */
Harald Welte24a655f2010-04-30 19:54:29 +0200316 return bssgp_tx_fc_bvc_ack(msgb_nsei(msg), *TLVP_VAL(tp, BSSGP_IE_TAG),
Harald Welte30bc19a2010-05-02 11:19:37 +0200317 msgb_bvci(msg));
Harald Welte9ba50052010-03-14 15:45:01 +0800318}
Harald Welte3fddf3c2010-05-01 16:48:27 +0200319
Harald Welte25de8112010-05-13 21:26:28 +0200320/* Receive a BSSGP PDU from a BSS on a PTP BVCI */
321static int gprs_bssgp_rx_ptp(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200322 struct bssgp_bvc_ctx *bctx)
Harald Welte9ba50052010-03-14 15:45:01 +0800323{
Harald Welteec19c102010-05-02 09:50:42 +0200324 struct bssgp_normal_hdr *bgph =
325 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte30bc19a2010-05-02 11:19:37 +0200326 uint8_t pdu_type = bgph->pdu_type;
Harald Welte9ba50052010-03-14 15:45:01 +0800327 int rc = 0;
328
Harald Welte58e65c92010-05-13 21:45:23 +0200329 /* If traffic is received on a BVC that is marked as blocked, the
330 * received PDU shall not be accepted and a STATUS PDU (Cause value:
331 * BVC Blocked) shall be sent to the peer entity on the signalling BVC */
332 if (bctx->state & BVC_S_BLOCKED && pdu_type != BSSGP_PDUT_STATUS) {
333 uint16_t bvci = msgb_bvci(msg);
334 return bssgp_tx_status(BSSGP_CAUSE_BVCI_BLOCKED, &bvci, msg);
335 }
336
Harald Welte9ba50052010-03-14 15:45:01 +0800337 switch (pdu_type) {
338 case BSSGP_PDUT_UL_UNITDATA:
339 /* some LLC data from the MS */
Harald Welte25de8112010-05-13 21:26:28 +0200340 rc = bssgp_rx_ul_ud(msg, tp, bctx);
Harald Welte9ba50052010-03-14 15:45:01 +0800341 break;
342 case BSSGP_PDUT_RA_CAPABILITY:
343 /* BSS requests RA capability or IMSI */
Harald Welteb8a6a832010-05-11 05:54:22 +0200344 DEBUGP(DBSSGP, "BSSGP RA CAPABILITY UPDATE\n");
Harald Welte6b7cf252010-05-13 19:41:31 +0200345 /* FIXME: send GMM_RA_CAPABILITY_UPDATE.ind to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800346 /* FIXME: send RA_CAPA_UPDATE_ACK */
347 break;
348 case BSSGP_PDUT_RADIO_STATUS:
Harald Welteb8a6a832010-05-11 05:54:22 +0200349 DEBUGP(DBSSGP, "BSSGP RADIO STATUS\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800350 /* BSS informs us of some exception */
Harald Welte6b7cf252010-05-13 19:41:31 +0200351 /* FIXME: send GMM_RADIO_STATUS.ind to GMM */
Harald Welte9ba50052010-03-14 15:45:01 +0800352 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800353 case BSSGP_PDUT_FLOW_CONTROL_BVC:
354 /* BSS informs us of available bandwidth in Gb interface */
Harald Welte25de8112010-05-13 21:26:28 +0200355 rc = bssgp_rx_fc_bvc(msg, tp, bctx);
Harald Welte9ba50052010-03-14 15:45:01 +0800356 break;
357 case BSSGP_PDUT_FLOW_CONTROL_MS:
358 /* BSS informs us of available bandwidth to one MS */
Harald Welteb8a6a832010-05-11 05:54:22 +0200359 DEBUGP(DBSSGP, "BSSGP FC MS\n");
Harald Welte30bc19a2010-05-02 11:19:37 +0200360 /* FIXME: actually implement flow control */
361 /* FIXME: Send FLOW_CONTROL_MS_ACK */
Harald Welte9ba50052010-03-14 15:45:01 +0800362 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800363 case BSSGP_PDUT_STATUS:
364 /* Some exception has occurred */
Harald Welte6b7cf252010-05-13 19:41:31 +0200365 /* FIXME: send NM_STATUS.ind to NM */
Harald Welte9ba50052010-03-14 15:45:01 +0800366 case BSSGP_PDUT_DOWNLOAD_BSS_PFC:
367 case BSSGP_PDUT_CREATE_BSS_PFC_ACK:
368 case BSSGP_PDUT_CREATE_BSS_PFC_NACK:
369 case BSSGP_PDUT_MODIFY_BSS_PFC:
370 case BSSGP_PDUT_DELETE_BSS_PFC_ACK:
Harald Welteb8a6a832010-05-11 05:54:22 +0200371 DEBUGP(DBSSGP, "BSSGP PDU type 0x%02x not [yet] implemented\n",
Harald Welte9ba50052010-03-14 15:45:01 +0800372 pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200373 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800374 break;
375 /* those only exist in the SGSN -> BSS direction */
376 case BSSGP_PDUT_DL_UNITDATA:
377 case BSSGP_PDUT_PAGING_PS:
378 case BSSGP_PDUT_PAGING_CS:
379 case BSSGP_PDUT_RA_CAPA_UPDATE_ACK:
Harald Welte25de8112010-05-13 21:26:28 +0200380 case BSSGP_PDUT_FLOW_CONTROL_BVC_ACK:
381 case BSSGP_PDUT_FLOW_CONTROL_MS_ACK:
382 DEBUGP(DBSSGP, "BSSGP PDU type 0x%02x only exists in DL\n",
383 pdu_type);
384 bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
385 rc = -EINVAL;
386 break;
387 default:
388 DEBUGP(DBSSGP, "BSSGP PDU type 0x%02x unknown\n", pdu_type);
389 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
390 break;
391 }
392
Holger Hans Peter Freytherd30cefa2010-05-23 21:12:15 +0800393 return rc;
Harald Welte25de8112010-05-13 21:26:28 +0200394}
395
396/* Receive a BSSGP PDU from a BSS on a SIGNALLING BVCI */
397static int gprs_bssgp_rx_sign(struct msgb *msg, struct tlv_parsed *tp,
Harald Welte8a521132010-05-17 22:59:29 +0200398 struct bssgp_bvc_ctx *bctx)
Harald Welte25de8112010-05-13 21:26:28 +0200399{
400 struct bssgp_normal_hdr *bgph =
401 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
402 uint8_t pdu_type = bgph->pdu_type;
403 int rc = 0;
404 uint16_t ns_bvci = msgb_bvci(msg);
405 uint16_t bvci;
406
407 switch (bgph->pdu_type) {
408 case BSSGP_PDUT_SUSPEND:
409 /* MS wants to suspend */
410 rc = bssgp_rx_suspend(msg, tp, bctx);
411 break;
412 case BSSGP_PDUT_RESUME:
413 /* MS wants to resume */
414 rc = bssgp_rx_resume(msg, tp, bctx);
415 break;
416 case BSSGP_PDUT_FLUSH_LL_ACK:
417 /* BSS informs us it has performed LL FLUSH */
418 DEBUGP(DBSSGP, "BSSGP FLUSH LL\n");
419 /* FIXME: send NM_FLUSH_LL.res to NM */
420 break;
421 case BSSGP_PDUT_LLC_DISCARD:
422 /* BSS informs that some LLC PDU's have been discarded */
423 rate_ctr_inc(&bctx->ctrg->ctr[BSSGP_CTR_DISCARDED]);
424 DEBUGP(DBSSGP, "BSSGP LLC DISCARDED\n");
425 /* FIXME: send NM_LLC_DISCARDED to NM */
426 break;
427 case BSSGP_PDUT_BVC_BLOCK:
428 /* BSS tells us that BVC shall be blocked */
429 DEBUGP(DBSSGP, "BSSGP BVC BLOCK ");
430 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI) ||
431 !TLVP_PRESENT(tp, BSSGP_IE_CAUSE))
432 goto err_mand_ie;
433 rc = bssgp_rx_bvc_unblock(msg, tp);
434 break;
435 case BSSGP_PDUT_BVC_UNBLOCK:
436 /* BSS tells us that BVC shall be unblocked */
437 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI))
438 goto err_mand_ie;
439 rc = bssgp_rx_bvc_unblock(msg, tp);
440 break;
441 case BSSGP_PDUT_BVC_RESET:
442 /* BSS tells us that BVC init is required */
443 DEBUGP(DBSSGP, "BSSGP BVC RESET ");
444 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI) ||
445 !TLVP_PRESENT(tp, BSSGP_IE_CAUSE))
446 goto err_mand_ie;
447 rc = bssgp_rx_bvc_reset(msg, tp, ns_bvci);
448 break;
449 case BSSGP_PDUT_STATUS:
450 /* Some exception has occurred */
451 /* FIXME: send NM_STATUS.ind to NM */
452 break;
453 /* those only exist in the SGSN -> BSS direction */
454 case BSSGP_PDUT_PAGING_PS:
455 case BSSGP_PDUT_PAGING_CS:
Harald Welte9ba50052010-03-14 15:45:01 +0800456 case BSSGP_PDUT_SUSPEND_ACK:
457 case BSSGP_PDUT_SUSPEND_NACK:
458 case BSSGP_PDUT_RESUME_ACK:
459 case BSSGP_PDUT_RESUME_NACK:
Harald Welte6b7cf252010-05-13 19:41:31 +0200460 case BSSGP_PDUT_FLUSH_LL:
Harald Welte9ba50052010-03-14 15:45:01 +0800461 case BSSGP_PDUT_BVC_BLOCK_ACK:
462 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
463 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Welteb8a6a832010-05-11 05:54:22 +0200464 DEBUGP(DBSSGP, "BSSGP PDU type 0x%02x only exists in DL\n",
Harald Welte9ba50052010-03-14 15:45:01 +0800465 pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200466 bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800467 rc = -EINVAL;
468 break;
469 default:
Harald Welteb8a6a832010-05-11 05:54:22 +0200470 DEBUGP(DBSSGP, "BSSGP PDU type 0x%02x unknown\n", pdu_type);
Harald Welte25de8112010-05-13 21:26:28 +0200471 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800472 break;
473 }
474
475 return rc;
476err_mand_ie:
477 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
478}
479
Harald Welte25de8112010-05-13 21:26:28 +0200480/* We expect msgb_bssgph() to point to the BSSGP header */
481int gprs_bssgp_rcvmsg(struct msgb *msg)
482{
483 struct bssgp_normal_hdr *bgph =
484 (struct bssgp_normal_hdr *) msgb_bssgph(msg);
485 struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
486 struct tlv_parsed tp;
Harald Welte8a521132010-05-17 22:59:29 +0200487 struct bssgp_bvc_ctx *bctx;
Harald Welte25de8112010-05-13 21:26:28 +0200488 uint8_t pdu_type = bgph->pdu_type;
489 uint16_t ns_bvci = msgb_bvci(msg);
490 int data_len;
491 int rc = 0;
492
493 /* Identifiers from DOWN: NSEI, BVCI (both in msg->cb) */
494
495 /* UNITDATA BSSGP headers have TLLI in front */
496 if (pdu_type != BSSGP_PDUT_UL_UNITDATA &&
497 pdu_type != BSSGP_PDUT_DL_UNITDATA) {
498 data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
499 rc = bssgp_tlv_parse(&tp, bgph->data, data_len);
500 } else {
501 data_len = msgb_bssgp_len(msg) - sizeof(*budh);
502 rc = bssgp_tlv_parse(&tp, budh->data, data_len);
503 }
504
505 /* look-up or create the BTS context for this BVC */
506 bctx = btsctx_by_bvci_nsei(ns_bvci, msgb_nsei(msg));
507 /* Only a RESET PDU can create a new BVC context */
508 if (!bctx && pdu_type != BSSGP_PDUT_BVC_RESET) {
509 LOGP(DBSSGP, LOGL_NOTICE, "NSEI=%u/BVCI=%u Rejecting PDU "
510 "type %u for unknown BVCI\n", msgb_nsei(msg), ns_bvci,
511 pdu_type);
512 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, NULL, msg);
513 }
514
Harald Welte16c8dbb2010-05-17 23:30:01 +0200515 if (bctx) {
Harald Welte4e5721d2010-05-17 23:41:43 +0200516 log_set_context(BSC_CTX_BVC, bctx);
Harald Welte16c8dbb2010-05-17 23:30:01 +0200517 rate_ctr_inc(&bctx->ctrg->ctr[BSSGP_CTR_PKTS_IN]);
518 rate_ctr_add(&bctx->ctrg->ctr[BSSGP_CTR_BYTES_IN],
519 msgb_bssgp_len(msg));
520 }
521
Harald Welte61c07842010-05-18 11:57:08 +0200522 if (ns_bvci == BVCI_SIGNALLING)
Harald Welte25de8112010-05-13 21:26:28 +0200523 rc = gprs_bssgp_rx_sign(msg, &tp, bctx);
Harald Welte61c07842010-05-18 11:57:08 +0200524 else if (ns_bvci == BVCI_PTM)
Harald Welte25de8112010-05-13 21:26:28 +0200525 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
526 else
527 rc = gprs_bssgp_rx_ptp(msg, &tp, bctx);
528
529 return rc;
530}
531
Harald Welte6752fa42010-05-02 09:23:16 +0200532/* Entry function from upper level (LLC), asking us to transmit a BSSGP PDU
Harald Welte30bc19a2010-05-02 11:19:37 +0200533 * to a remote MS (identified by TLLI) at a BTS identified by its BVCI and NSEI */
534int gprs_bssgp_tx_dl_ud(struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800535{
Harald Welte8a521132010-05-17 22:59:29 +0200536 struct bssgp_bvc_ctx *bctx;
Harald Welte9ba50052010-03-14 15:45:01 +0800537 struct bssgp_ud_hdr *budh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200538 uint8_t llc_pdu_tlv_hdr_len = 2;
539 uint8_t *llc_pdu_tlv, *qos_profile;
540 uint16_t pdu_lifetime = 1000; /* centi-seconds */
541 uint8_t qos_profile_default[3] = { 0x00, 0x00, 0x21 };
542 uint16_t msg_len = msg->len;
Harald Welte30bc19a2010-05-02 11:19:37 +0200543 uint16_t bvci = msgb_bvci(msg);
544 uint16_t nsei = msgb_nsei(msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800545
Harald Welte30bc19a2010-05-02 11:19:37 +0200546 /* Identifiers from UP: TLLI, BVCI, NSEI (all in msgb->cb) */
Harald Welte61c07842010-05-18 11:57:08 +0200547 if (bvci <= BVCI_PTM ) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200548 LOGP(DBSSGP, LOGL_ERROR, "Cannot send DL-UD to BVCI %u\n",
Harald Welte30bc19a2010-05-02 11:19:37 +0200549 bvci);
550 return -EINVAL;
551 }
552
553 bctx = btsctx_by_bvci_nsei(bvci, nsei);
Harald Welte25de8112010-05-13 21:26:28 +0200554 if (!bctx) {
555 /* FIXME: don't simply create missing context, but reject message */
Harald Welte30bc19a2010-05-02 11:19:37 +0200556 bctx = btsctx_alloc(bvci, nsei);
Harald Welte25de8112010-05-13 21:26:28 +0200557 }
Harald Welte9ba50052010-03-14 15:45:01 +0800558
559 if (msg->len > TVLV_MAX_ONEBYTE)
560 llc_pdu_tlv_hdr_len += 1;
561
562 /* prepend the tag and length of the LLC-PDU TLV */
563 llc_pdu_tlv = msgb_push(msg, llc_pdu_tlv_hdr_len);
564 llc_pdu_tlv[0] = BSSGP_IE_LLC_PDU;
565 if (llc_pdu_tlv_hdr_len > 2) {
566 llc_pdu_tlv[1] = msg_len >> 8;
567 llc_pdu_tlv[2] = msg_len & 0xff;
568 } else {
569 llc_pdu_tlv[1] = msg_len & 0x3f;
570 llc_pdu_tlv[1] |= 0x80;
571 }
572
573 /* FIXME: optional elements */
574
575 /* prepend the pdu lifetime */
576 pdu_lifetime = htons(pdu_lifetime);
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200577 msgb_tvlv_push(msg, BSSGP_IE_PDU_LIFETIME, 2, (uint8_t *)&pdu_lifetime);
Harald Welte9ba50052010-03-14 15:45:01 +0800578
579 /* prepend the QoS profile, TLLI and pdu type */
580 budh = (struct bssgp_ud_hdr *) msgb_push(msg, sizeof(*budh));
581 memcpy(budh->qos_profile, qos_profile_default, sizeof(qos_profile_default));
Harald Welte510c3922010-04-30 16:33:12 +0200582 budh->tlli = htonl(msgb_tlli(msg));
Harald Welte9ba50052010-03-14 15:45:01 +0800583 budh->pdu_type = BSSGP_PDUT_DL_UNITDATA;
584
Harald Welte16c8dbb2010-05-17 23:30:01 +0200585 rate_ctr_inc(&bctx->ctrg->ctr[BSSGP_CTR_PKTS_OUT]);
586 rate_ctr_add(&bctx->ctrg->ctr[BSSGP_CTR_BYTES_OUT], msg->len);
587
Harald Welte30bc19a2010-05-02 11:19:37 +0200588 /* Identifiers down: BVCI, NSEI (in msgb->cb) */
Harald Welte24a655f2010-04-30 19:54:29 +0200589
590 return gprs_ns_sendmsg(bssgp_nsi, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800591}