blob: fe299c51258b9f6a369d87a048b1f6dcefbdf5ef [file] [log] [blame]
Harald Welted1991e72010-04-30 20:26:32 +02001/* NS-over-IP proxy */
2
3/* (C) 2010 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2010 by On Waves
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 *
21 */
22
23#include <unistd.h>
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <getopt.h>
28#include <errno.h>
29#include <sys/fcntl.h>
30#include <sys/stat.h>
31#include <sys/types.h>
Harald Weltef2fdefe2010-05-11 10:15:42 +020032#include <arpa/inet.h>
Harald Welted1991e72010-04-30 20:26:32 +020033
34#include <osmocore/talloc.h>
35#include <osmocore/select.h>
36
37#include <openbsc/signal.h>
38#include <openbsc/debug.h>
39#include <openbsc/gprs_ns.h>
40#include <openbsc/gprs_bssgp.h>
Harald Weltef01709d2010-05-03 18:54:58 +020041#include <openbsc/gb_proxy.h>
Harald Welted1991e72010-04-30 20:26:32 +020042
43struct gbprox_peer {
44 struct llist_head list;
45
46 /* NS-VC over which we send/receive data to this BVC */
47 struct gprs_nsvc *nsvc;
48
49 /* BVCI used for Point-to-Point to this peer */
50 uint16_t bvci;
51
52 /* Routeing Area that this peer is part of (raw 04.08 encoding) */
53 uint8_t ra[6];
54};
55
56/* Linked list of all Gb peers (except SGSN) */
57static LLIST_HEAD(gbprox_bts_peers);
58
Harald Welted1991e72010-04-30 20:26:32 +020059/* Find the gbprox_peer by its BVCI */
60static struct gbprox_peer *peer_by_bvci(uint16_t bvci)
61{
62 struct gbprox_peer *peer;
63 llist_for_each_entry(peer, &gbprox_bts_peers, list) {
64 if (peer->bvci == bvci)
65 return peer;
66 }
67 return NULL;
68}
69
70static struct gbprox_peer *peer_by_nsvc(struct gprs_nsvc *nsvc)
71{
72 struct gbprox_peer *peer;
73 llist_for_each_entry(peer, &gbprox_bts_peers, list) {
74 if (peer->nsvc == nsvc)
75 return peer;
76 }
77 return NULL;
78}
79
80/* look-up a peer by its Routeing Area Code (RAC) */
Harald Weltee49c8292010-05-01 12:10:57 +020081static struct gbprox_peer *peer_by_rac(const uint8_t *ra)
Harald Welted1991e72010-04-30 20:26:32 +020082{
83 struct gbprox_peer *peer;
84 llist_for_each_entry(peer, &gbprox_bts_peers, list) {
Harald Welte8ba9d2d2010-05-12 00:07:29 +020085 if (!memcmp(peer->ra, ra, 6))
Harald Welted1991e72010-04-30 20:26:32 +020086 return peer;
87 }
88 return NULL;
89}
90
91/* look-up a peer by its Location Area Code (LAC) */
Harald Weltee49c8292010-05-01 12:10:57 +020092static struct gbprox_peer *peer_by_lac(const uint8_t *la)
Harald Welted1991e72010-04-30 20:26:32 +020093{
94 struct gbprox_peer *peer;
95 llist_for_each_entry(peer, &gbprox_bts_peers, list) {
Harald Welte8ba9d2d2010-05-12 00:07:29 +020096 if (!memcmp(peer->ra, la, 5))
Harald Welted1991e72010-04-30 20:26:32 +020097 return peer;
98 }
99 return NULL;
100}
101
102static struct gbprox_peer *peer_alloc(uint16_t bvci)
103{
104 struct gbprox_peer *peer;
105
106 peer = talloc_zero(tall_bsc_ctx, struct gbprox_peer);
107 if (!peer)
108 return NULL;
109
110 peer->bvci = bvci;
111 llist_add(&peer->list, &gbprox_bts_peers);
112
113 return peer;
114}
115
116static void peer_free(struct gbprox_peer *peer)
117{
118 llist_del(&peer->list);
119 talloc_free(peer);
120}
121
Harald Welte3ad32432010-05-03 19:05:10 +0200122/* strip off the NS header */
123static void strip_ns_hdr(struct msgb *msg)
124{
125 int strip_len = msgb_bssgph(msg) - msg->data;
126 msgb_pull(msg, strip_len);
127}
128
Harald Welted1991e72010-04-30 20:26:32 +0200129/* feed a message down the NS-VC associated with the specified peer */
Harald Welte3ad32432010-05-03 19:05:10 +0200130static int gbprox_relay2sgsn(struct msgb *msg, uint16_t ns_bvci)
Harald Weltef01709d2010-05-03 18:54:58 +0200131{
Harald Welteb8da0612010-05-11 20:20:13 +0200132 DEBUGP(DGPRS, "NSEI=%u proxying BTS->SGSN (NS_BVCI=%u, NSEI=%u)\n",
Harald Weltee661b272010-05-03 19:28:05 +0200133 msgb_nsei(msg), ns_bvci, gbcfg.nsip_sgsn_nsei);
Harald Welte6aa24d12010-05-03 19:22:32 +0200134
Harald Weltef01709d2010-05-03 18:54:58 +0200135 msgb_bvci(msg) = ns_bvci;
136 msgb_nsei(msg) = gbcfg.nsip_sgsn_nsei;
137
Harald Welte3ad32432010-05-03 19:05:10 +0200138 strip_ns_hdr(msg);
139
Harald Welte874acec2010-05-11 10:01:17 +0200140 return gprs_ns_sendmsg(bssgp_nsi, msg);
Harald Weltef01709d2010-05-03 18:54:58 +0200141}
142
Harald Weltef01709d2010-05-03 18:54:58 +0200143/* feed a message down the NS-VC associated with the specified peer */
Harald Welte3ad32432010-05-03 19:05:10 +0200144static int gbprox_relay2peer(struct msgb *msg, struct gbprox_peer *peer,
Harald Welted1991e72010-04-30 20:26:32 +0200145 uint16_t ns_bvci)
146{
Harald Welteb8da0612010-05-11 20:20:13 +0200147 DEBUGP(DGPRS, "NSEI=%u proxying to SGSN->BSS (NS_BVCI=%u, NSEI=%u)\n",
Harald Weltee661b272010-05-03 19:28:05 +0200148 msgb_nsei(msg), ns_bvci, peer->nsvc->nsei);
Harald Welte6aa24d12010-05-03 19:22:32 +0200149
Harald Welted1991e72010-04-30 20:26:32 +0200150 msgb_bvci(msg) = ns_bvci;
151 msgb_nsei(msg) = peer->nsvc->nsei;
152
Harald Welte3ad32432010-05-03 19:05:10 +0200153 strip_ns_hdr(msg);
154
Harald Welte874acec2010-05-11 10:01:17 +0200155 return gprs_ns_sendmsg(bssgp_nsi, msg);
Harald Welted1991e72010-04-30 20:26:32 +0200156}
157
158/* Send a message to a peer identified by ptp_bvci but using ns_bvci
159 * in the NS hdr */
Harald Welte3ad32432010-05-03 19:05:10 +0200160static int gbprox_relay2bvci(struct msgb *msg, uint16_t ptp_bvci,
Harald Welted1991e72010-04-30 20:26:32 +0200161 uint16_t ns_bvci)
162{
163 struct gbprox_peer *peer;
164
165 peer = peer_by_bvci(ptp_bvci);
Harald Welte0358aae2010-05-03 21:37:11 +0200166 if (!peer) {
167 LOGP(DGPRS, LOGL_ERROR, "Cannot find BSS for BVCI %u\n",
168 ptp_bvci);
Harald Welted1991e72010-04-30 20:26:32 +0200169 return -ENOENT;
Harald Welte0358aae2010-05-03 21:37:11 +0200170 }
Harald Welted1991e72010-04-30 20:26:32 +0200171
Harald Welte3ad32432010-05-03 19:05:10 +0200172 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welted1991e72010-04-30 20:26:32 +0200173}
174
175/* Receive an incoming signalling message from a BSS-side NS-VC */
176static int gbprox_rx_sig_from_bss(struct msgb *msg, struct gprs_nsvc *nsvc,
177 uint16_t ns_bvci)
178{
Harald Welte2ac2e912010-05-03 16:30:59 +0200179 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welted1991e72010-04-30 20:26:32 +0200180 struct tlv_parsed tp;
181 uint8_t pdu_type = bgph->pdu_type;
Harald Welte2ac2e912010-05-03 16:30:59 +0200182 int data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welted1991e72010-04-30 20:26:32 +0200183 struct gbprox_peer *from_peer;
Harald Weltee49c8292010-05-01 12:10:57 +0200184 struct gprs_ra_id raid;
Harald Welted1991e72010-04-30 20:26:32 +0200185
186 if (ns_bvci != 0) {
Harald Welte6aa24d12010-05-03 19:22:32 +0200187 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u BVCI %u is not signalling\n",
188 nsvc->nsei, ns_bvci);
Harald Welted1991e72010-04-30 20:26:32 +0200189 return -EINVAL;
190 }
191
192 /* we actually should never see those two for BVCI == 0, but double-check
193 * just to make sure */
194 if (pdu_type == BSSGP_PDUT_UL_UNITDATA ||
195 pdu_type == BSSGP_PDUT_DL_UNITDATA) {
Harald Welte6aa24d12010-05-03 19:22:32 +0200196 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u UNITDATA not allowed in "
197 "signalling\n", nsvc->nsei);
Harald Welted1991e72010-04-30 20:26:32 +0200198 return -EINVAL;
199 }
200
201 bssgp_tlv_parse(&tp, bgph->data, data_len);
202
203 switch (pdu_type) {
204 case BSSGP_PDUT_SUSPEND:
205 case BSSGP_PDUT_RESUME:
Harald Weltee49c8292010-05-01 12:10:57 +0200206 /* We implement RAC snooping during SUSPEND/RESUME, since
207 * it establishes a relationsip between BVCI/peer and the
208 * routeing area code. The snooped information is then
209 * used for routing the {SUSPEND,RESUME}_[N]ACK back to
210 * the correct BSSGP */
Harald Welted1991e72010-04-30 20:26:32 +0200211 if (!TLVP_PRESENT(&tp, BSSGP_IE_ROUTEING_AREA))
212 goto err_mand_ie;
213 from_peer = peer_by_nsvc(nsvc);
214 if (!from_peer)
215 goto err_no_peer;
Harald Welte8ba9d2d2010-05-12 00:07:29 +0200216 memcpy(from_peer->ra, TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA),
217 sizeof(from_peer->ra));
Harald Weltef2fdefe2010-05-11 10:15:42 +0200218 gsm48_parse_ra(&raid, from_peer->ra);
Harald Welte6aa24d12010-05-03 19:22:32 +0200219 DEBUGP(DGPRS, "NSEI=%u RAC snooping: RAC %u/%u/%u/%u behind BVCI=%u, "
220 "NSVCI=%u\n", nsvc->nsei, raid.mcc, raid.mnc, raid.lac,
221 raid.rac , from_peer->bvci, nsvc->nsvci);
Harald Welted1991e72010-04-30 20:26:32 +0200222 /* FIXME: This only supports one BSS per RA */
223 break;
Harald Welte6aa24d12010-05-03 19:22:32 +0200224 case BSSGP_PDUT_BVC_RESET:
225 /* If we receive a BVC reset on the signalling endpoint, we
226 * don't want the SGSN to reset, as the signalling endpoint
227 * is common for all point-to-point BVCs (and thus all BTS) */
228 if (TLVP_PRESENT(&tp, BSSGP_IE_BVCI)) {
229 uint16_t bvci = ntohs(*(uint16_t *)TLVP_VAL(&tp, BSSGP_IE_BVCI));
Harald Welteb8da0612010-05-11 20:20:13 +0200230 LOGP(DGPRS, LOGL_DEBUG, "NSEI=%u Rx BVC RESET (BVCI=%u)\n",
231 nsvc->nsei, bvci);
Harald Welte6aa24d12010-05-03 19:22:32 +0200232 if (bvci == 0) {
233 /* FIXME: only do this if SGSN is alive! */
Harald Welteb8da0612010-05-11 20:20:13 +0200234 LOGP(DGPRS, LOGL_INFO, "NSEI=%u Tx fake "
Harald Welte6aa24d12010-05-03 19:22:32 +0200235 "BVC RESET ACK of BVCI=0\n", nsvc->nsei);
236 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_RESET_ACK,
237 nsvc->nsei, 0, ns_bvci);
Harald Welte8ba9d2d2010-05-12 00:07:29 +0200238 }
239 from_peer = peer_by_bvci(bvci);
240 if (!from_peer) {
Harald Welte0358aae2010-05-03 21:37:11 +0200241 /* if a PTP-BVC is reset, and we don't know that
242 * PTP-BVCI yet, we should allocate a new peer */
243 LOGP(DGPRS, LOGL_INFO, "Allocationg new peer for "
244 "BVCI=%u via NSVCI=%u/NSEI=%u\n", bvci,
245 nsvc->nsvci, nsvc->nsei);
246 from_peer = peer_alloc(bvci);
247 from_peer->nsvc = nsvc;
Harald Welte6aa24d12010-05-03 19:22:32 +0200248 }
Harald Welte8ba9d2d2010-05-12 00:07:29 +0200249 if (TLVP_PRESENT(&tp, BSSGP_IE_CELL_ID)) {
250 struct gprs_ra_id raid;
251 /* We have a Cell Identifier present in this
252 * PDU, this means we can extend our local
253 * state information about this particular cell
254 * */
255 memcpy(from_peer->ra,
256 TLVP_VAL(&tp, BSSGP_IE_CELL_ID),
257 sizeof(from_peer->ra));
258 gsm48_parse_ra(&raid, from_peer->ra);
259 LOGP(DGPRS, LOGL_INFO, "NSEI=%u/BVCI=%u "
260 "Cell ID " "%u-%u-%u-%u\n", nsvc->nsei,
261 bvci, raid.mcc, raid.mnc, raid.lac,
262 raid.rac);
263 }
Harald Welte6aa24d12010-05-03 19:22:32 +0200264 }
265 break;
Harald Welted1991e72010-04-30 20:26:32 +0200266 }
267
Harald Welteb8da0612010-05-11 20:20:13 +0200268 /* Normally, we can simply pass on all signalling messages from BSS to
269 * SGSN */
Harald Welte3ad32432010-05-03 19:05:10 +0200270 return gbprox_relay2sgsn(msg, ns_bvci);
Harald Welted1991e72010-04-30 20:26:32 +0200271err_no_peer:
Harald Welte874acec2010-05-11 10:01:17 +0200272 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) cannot find peer based on RAC\n",
273 nsvc->nsei);
274 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, NULL, msg);
Harald Welted1991e72010-04-30 20:26:32 +0200275err_mand_ie:
Harald Welte874acec2010-05-11 10:01:17 +0200276 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) missing mandatory RA IE\n",
277 nsvc->nsei);
278 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welted1991e72010-04-30 20:26:32 +0200279}
280
281/* Receive paging request from SGSN, we need to relay to proper BSS */
282static int gbprox_rx_paging(struct msgb *msg, struct tlv_parsed *tp,
283 struct gprs_nsvc *nsvc, uint16_t ns_bvci)
284{
285 struct gbprox_peer *peer;
286
287 if (TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
288 uint16_t bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Welte3ad32432010-05-03 19:05:10 +0200289 return gbprox_relay2bvci(msg, bvci, ns_bvci);
Harald Welted1991e72010-04-30 20:26:32 +0200290 } else if (TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA)) {
291 peer = peer_by_rac(TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
Harald Welte3ad32432010-05-03 19:05:10 +0200292 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welted1991e72010-04-30 20:26:32 +0200293 } else if (TLVP_PRESENT(tp, BSSGP_IE_LOCATION_AREA)) {
294 peer = peer_by_lac(TLVP_VAL(tp, BSSGP_IE_LOCATION_AREA));
Harald Welte3ad32432010-05-03 19:05:10 +0200295 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welted1991e72010-04-30 20:26:32 +0200296 } else
297 return -EINVAL;
298}
299
Harald Welte874acec2010-05-11 10:01:17 +0200300/* Receive an incoming BVC-RESET message from the SGSN */
301static int rx_reset_from_sgsn(struct msgb *msg, struct tlv_parsed *tp,
302 struct gprs_nsvc *nsvc, uint16_t ns_bvci)
303{
304 struct gbprox_peer *peer;
305 uint16_t ptp_bvci;
306
307 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
308 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE,
309 NULL, msg);
310 }
311 ptp_bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
312
313 if (ptp_bvci >= 2) {
314 /* A reset for a PTP BVC was received, forward it to its
315 * respective peer */
316 peer = peer_by_bvci(ptp_bvci);
317 if (!peer) {
318 LOGP(DGPRS, LOGL_ERROR, "Cannot find BSS for BVCI %u\n",
319 ptp_bvci);
320 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI,
321 NULL, msg);
322 }
323 return gbprox_relay2peer(msg, peer, ns_bvci);
324 }
325
326 /* A reset for the Signalling entity has been received
327 * from the SGSN. As the signalling BVCI is shared
328 * among all the BSS's that we multiplex, it needs to
329 * be relayed */
330 llist_for_each_entry(peer, &gbprox_bts_peers, list)
331 gbprox_relay2peer(msg, peer, ns_bvci);
332
333 return 0;
334}
335
Harald Welted1991e72010-04-30 20:26:32 +0200336/* Receive an incoming signalling message from the SGSN-side NS-VC */
337static int gbprox_rx_sig_from_sgsn(struct msgb *msg, struct gprs_nsvc *nsvc,
338 uint16_t ns_bvci)
339{
Harald Welte2ac2e912010-05-03 16:30:59 +0200340 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welted1991e72010-04-30 20:26:32 +0200341 struct tlv_parsed tp;
342 uint8_t pdu_type = bgph->pdu_type;
Harald Welte2ac2e912010-05-03 16:30:59 +0200343 int data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welted1991e72010-04-30 20:26:32 +0200344 struct gbprox_peer *peer;
345 uint16_t bvci;
346 int rc = 0;
347
348 if (ns_bvci != 0) {
Harald Welte6aa24d12010-05-03 19:22:32 +0200349 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) BVCI %u is not "
350 "signalling\n", nsvc->nsei, ns_bvci);
Harald Welte874acec2010-05-11 10:01:17 +0200351 /* FIXME: Send proper error message */
Harald Welted1991e72010-04-30 20:26:32 +0200352 return -EINVAL;
353 }
354
355 /* we actually should never see those two for BVCI == 0, but double-check
356 * just to make sure */
357 if (pdu_type == BSSGP_PDUT_UL_UNITDATA ||
358 pdu_type == BSSGP_PDUT_DL_UNITDATA) {
Harald Welte6aa24d12010-05-03 19:22:32 +0200359 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) UNITDATA not allowed in "
360 "signalling\n", nsvc->nsei);
Harald Welte874acec2010-05-11 10:01:17 +0200361 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welted1991e72010-04-30 20:26:32 +0200362 }
363
364 rc = bssgp_tlv_parse(&tp, bgph->data, data_len);
365
366 switch (pdu_type) {
Harald Welte874acec2010-05-11 10:01:17 +0200367 case BSSGP_PDUT_BVC_RESET:
368 rc = rx_reset_from_sgsn(msg, &tp, nsvc, ns_bvci);
369 break;
Harald Welted1991e72010-04-30 20:26:32 +0200370 case BSSGP_PDUT_FLUSH_LL:
371 case BSSGP_PDUT_BVC_BLOCK_ACK:
372 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
Harald Welted1991e72010-04-30 20:26:32 +0200373 case BSSGP_PDUT_BVC_RESET_ACK:
374 /* simple case: BVCI IE is mandatory */
375 if (!TLVP_PRESENT(&tp, BSSGP_IE_BVCI))
376 goto err_mand_ie;
377 bvci = ntohs(*(uint16_t *)TLVP_VAL(&tp, BSSGP_IE_BVCI));
Harald Welte3ad32432010-05-03 19:05:10 +0200378 rc = gbprox_relay2bvci(msg, bvci, ns_bvci);
Harald Welted1991e72010-04-30 20:26:32 +0200379 break;
380 case BSSGP_PDUT_PAGING_PS:
381 case BSSGP_PDUT_PAGING_CS:
382 /* process the paging request (LAC/RAC lookup) */
383 rc = gbprox_rx_paging(msg, &tp, nsvc, ns_bvci);
384 break;
385 case BSSGP_PDUT_STATUS:
Harald Welte874acec2010-05-11 10:01:17 +0200386 /* Some exception has occurred */
Harald Welte6aa24d12010-05-03 19:22:32 +0200387 LOGP(DGPRS, LOGL_NOTICE,
Harald Welte874acec2010-05-11 10:01:17 +0200388 "NSEI=%u(SGSN) STATUS ", nsvc->nsei);
389 if (!TLVP_PRESENT(&tp, BSSGP_IE_CAUSE)) {
390 LOGPC(DGPRS, LOGL_NOTICE, "\n");
391 goto err_mand_ie;
392 }
393 LOGPC(DGPRS, LOGL_NOTICE,
394 "cause=0x%02x(%s) ", *TLVP_VAL(&tp, BSSGP_IE_CAUSE),
395 bssgp_cause_str(*TLVP_VAL(&tp, BSSGP_IE_CAUSE)));
396 if (TLVP_PRESENT(&tp, BSSGP_IE_BVCI)) {
Harald Weltef2fdefe2010-05-11 10:15:42 +0200397 uint16_t *bvci = (uint16_t *)
398 TLVP_VAL(&tp, BSSGP_IE_BVCI);
Harald Welte874acec2010-05-11 10:01:17 +0200399 LOGPC(DGPRS, LOGL_NOTICE,
400 "BVCI=%u\n", ntohs(*bvci));
401 } else
402 LOGPC(DGPRS, LOGL_NOTICE, "\n");
Harald Welted1991e72010-04-30 20:26:32 +0200403 break;
404 /* those only exist in the SGSN -> BSS direction */
405 case BSSGP_PDUT_SUSPEND_ACK:
406 case BSSGP_PDUT_SUSPEND_NACK:
407 case BSSGP_PDUT_RESUME_ACK:
408 case BSSGP_PDUT_RESUME_NACK:
409 /* RAC IE is mandatory */
410 if (!TLVP_PRESENT(&tp, BSSGP_IE_ROUTEING_AREA))
411 goto err_mand_ie;
412 peer = peer_by_rac(TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA));
413 if (!peer)
414 goto err_no_peer;
Harald Welte3ad32432010-05-03 19:05:10 +0200415 rc = gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welted1991e72010-04-30 20:26:32 +0200416 break;
417 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Welte6aa24d12010-05-03 19:22:32 +0200418 LOGP(DGPRS, LOGL_ERROR,
419 "NSEI=%u(SGSN) INVOKE TRACE not supported\n", nsvc->nsei);
Harald Welte874acec2010-05-11 10:01:17 +0200420 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
Harald Welted1991e72010-04-30 20:26:32 +0200421 break;
422 default:
423 DEBUGP(DGPRS, "BSSGP PDU type 0x%02x unknown\n", pdu_type);
Harald Welte874acec2010-05-11 10:01:17 +0200424 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welted1991e72010-04-30 20:26:32 +0200425 break;
426 }
427
428 return rc;
429err_mand_ie:
Harald Welte0358aae2010-05-03 21:37:11 +0200430 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) missing mandatory IE\n",
431 nsvc->nsei);
Harald Welte874acec2010-05-11 10:01:17 +0200432 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welted1991e72010-04-30 20:26:32 +0200433err_no_peer:
Harald Welte874acec2010-05-11 10:01:17 +0200434 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) cannot find peer based on RAC\n",
435 nsvc->nsei);
436 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, NULL, msg);
Harald Welted1991e72010-04-30 20:26:32 +0200437}
438
439/* Main input function for Gb proxy */
440int gbprox_rcvmsg(struct msgb *msg, struct gprs_nsvc *nsvc, uint16_t ns_bvci)
441{
Harald Weltef01709d2010-05-03 18:54:58 +0200442 int rc;
Harald Welted1991e72010-04-30 20:26:32 +0200443
444 /* Only BVCI=0 messages need special treatment */
445 if (ns_bvci == 0 || ns_bvci == 1) {
446 if (nsvc->remote_end_is_sgsn)
Harald Weltef01709d2010-05-03 18:54:58 +0200447 rc = gbprox_rx_sig_from_sgsn(msg, nsvc, ns_bvci);
Harald Welted1991e72010-04-30 20:26:32 +0200448 else
Harald Weltef01709d2010-05-03 18:54:58 +0200449 rc = gbprox_rx_sig_from_bss(msg, nsvc, ns_bvci);
450 } else {
451 /* All other BVCI are PTP and thus can be simply forwarded */
Harald Welte0358aae2010-05-03 21:37:11 +0200452 if (!nsvc->remote_end_is_sgsn) {
Harald Welte3ad32432010-05-03 19:05:10 +0200453 rc = gbprox_relay2sgsn(msg, ns_bvci);
Harald Weltee49c8292010-05-01 12:10:57 +0200454 } else {
Harald Weltef01709d2010-05-03 18:54:58 +0200455 struct gbprox_peer *peer = peer_by_bvci(ns_bvci);
456 if (!peer) {
457 LOGP(DGPRS, LOGL_NOTICE, "Allocationg new peer for "
458 "BVCI=%u via NSVC=%u/NSEI=%u\n", ns_bvci,
459 nsvc->nsvci, nsvc->nsei);
460 peer = peer_alloc(ns_bvci);
461 peer->nsvc = nsvc;
462 }
Harald Welte3ad32432010-05-03 19:05:10 +0200463 rc = gbprox_relay2peer(msg, peer, ns_bvci);
Harald Weltee49c8292010-05-01 12:10:57 +0200464 }
Harald Welted1991e72010-04-30 20:26:32 +0200465 }
466
Harald Weltef01709d2010-05-03 18:54:58 +0200467 return rc;
Harald Welted1991e72010-04-30 20:26:32 +0200468}
Harald Welteb34e2c12010-05-11 05:49:43 +0200469
Harald Welte5bb0d362010-05-11 06:34:24 +0200470/* Signal handler for signals from NS layer */
471int gbprox_signal(unsigned int subsys, unsigned int signal,
472 void *handler_data, void *signal_data)
473{
474 struct ns_signal_data *nssd = signal_data;
475 struct gprs_nsvc *nsvc = nssd->nsvc;
476 struct gbprox_peer *peer;
477
478 if (subsys != SS_NS)
479 return 0;
480
Harald Welte15cbb0e2010-05-11 18:29:44 +0200481 if (signal == S_NS_RESET && nsvc->nsei == gbcfg.nsip_sgsn_nsei) {
482 /* We have received a NS-RESET from the NSEI and NSVC
483 * of the SGSN. This might happen with SGSN that start
484 * their own NS-RESET procedure without waiting for our
485 * NS-RESET */
486 nsvc->remote_end_is_sgsn = 1;
487 }
488
Harald Welte5bb0d362010-05-11 06:34:24 +0200489 /* We currently only care about signals from the SGSN */
490 if (!nsvc->remote_end_is_sgsn)
491 return 0;
492
493 /* iterate over all BTS peers and send the respective PDU */
494 llist_for_each_entry(peer, &gbprox_bts_peers, list) {
495 switch (signal) {
496 case S_NS_RESET:
497 gprs_ns_tx_reset(peer->nsvc, nssd->cause);
498 break;
499 case S_NS_BLOCK:
500 gprs_ns_tx_block(peer->nsvc, nssd->cause);
501 break;
502 case S_NS_UNBLOCK:
503 gprs_ns_tx_unblock(peer->nsvc);
504 break;
505 }
506 }
507 return 0;
508}
509
Harald Welteb34e2c12010-05-11 05:49:43 +0200510
511#include <vty/command.h>
512
513gDEFUN(show_gbproxy, show_gbproxy_cmd, "show gbproxy",
514 SHOW_STR "Display information about the Gb proxy")
515{
516 struct gbprox_peer *peer;
517
518 llist_for_each_entry(peer, &gbprox_bts_peers, list) {
519 struct gprs_nsvc *nsvc = peer->nsvc;
520 struct gprs_ra_id raid;
Harald Weltef2fdefe2010-05-11 10:15:42 +0200521 gsm48_parse_ra(&raid, peer->ra);
Harald Welteb34e2c12010-05-11 05:49:43 +0200522
523 vty_out(vty, "NSEI %5u, NS-VC %5u, PTP-BVCI %u, "
524 "RAC %u-%u-%u-%u%s",
525 nsvc->nsei, nsvc->nsvci, peer->bvci,
526 raid.mcc, raid.mnc, raid.lac, raid.rac, VTY_NEWLINE);
527 if (nsvc->nsi->ll == GPRS_NS_LL_UDP)
528 vty_out(vty, " remote address %s:%u%s",
529 inet_ntoa(nsvc->ip.bts_addr.sin_addr),
530 ntohs(nsvc->ip.bts_addr.sin_port), VTY_NEWLINE);
531 }
532 return CMD_SUCCESS;
533}