blob: d9639a445cff59c549a38fc0d7b31182c21bdeca [file] [log] [blame]
Harald Welte9f75c352010-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 Welte7fc98222010-05-11 10:15:42 +020032#include <arpa/inet.h>
Harald Welte9f75c352010-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 Welte672f5c42010-05-03 18:54:58 +020041#include <openbsc/gb_proxy.h>
Harald Welte9f75c352010-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 Welte9f75c352010-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 Welte70f38d22010-05-01 12:10:57 +020081static struct gbprox_peer *peer_by_rac(const uint8_t *ra)
Harald Welte9f75c352010-04-30 20:26:32 +020082{
83 struct gbprox_peer *peer;
84 llist_for_each_entry(peer, &gbprox_bts_peers, list) {
Harald Welte1174c082010-05-12 00:07:29 +020085 if (!memcmp(peer->ra, ra, 6))
Harald Welte9f75c352010-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 Welte70f38d22010-05-01 12:10:57 +020092static struct gbprox_peer *peer_by_lac(const uint8_t *la)
Harald Welte9f75c352010-04-30 20:26:32 +020093{
94 struct gbprox_peer *peer;
95 llist_for_each_entry(peer, &gbprox_bts_peers, list) {
Harald Welte1174c082010-05-12 00:07:29 +020096 if (!memcmp(peer->ra, la, 5))
Harald Welte9f75c352010-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 Welte69619e32010-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 Welte9f75c352010-04-30 20:26:32 +0200129/* feed a message down the NS-VC associated with the specified peer */
Harald Welte69619e32010-05-03 19:05:10 +0200130static int gbprox_relay2sgsn(struct msgb *msg, uint16_t ns_bvci)
Harald Welte672f5c42010-05-03 18:54:58 +0200131{
Harald Weltee9ea2692010-05-11 20:20:13 +0200132 DEBUGP(DGPRS, "NSEI=%u proxying BTS->SGSN (NS_BVCI=%u, NSEI=%u)\n",
Harald Welte96f71f22010-05-03 19:28:05 +0200133 msgb_nsei(msg), ns_bvci, gbcfg.nsip_sgsn_nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200134
Harald Welte672f5c42010-05-03 18:54:58 +0200135 msgb_bvci(msg) = ns_bvci;
136 msgb_nsei(msg) = gbcfg.nsip_sgsn_nsei;
137
Harald Welte69619e32010-05-03 19:05:10 +0200138 strip_ns_hdr(msg);
139
Harald Welte0a4050c2010-05-11 10:01:17 +0200140 return gprs_ns_sendmsg(bssgp_nsi, msg);
Harald Welte672f5c42010-05-03 18:54:58 +0200141}
142
Harald Welte672f5c42010-05-03 18:54:58 +0200143/* feed a message down the NS-VC associated with the specified peer */
Harald Welte69619e32010-05-03 19:05:10 +0200144static int gbprox_relay2peer(struct msgb *msg, struct gbprox_peer *peer,
Harald Welte9f75c352010-04-30 20:26:32 +0200145 uint16_t ns_bvci)
146{
Harald Weltee9ea2692010-05-11 20:20:13 +0200147 DEBUGP(DGPRS, "NSEI=%u proxying to SGSN->BSS (NS_BVCI=%u, NSEI=%u)\n",
Harald Welte96f71f22010-05-03 19:28:05 +0200148 msgb_nsei(msg), ns_bvci, peer->nsvc->nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200149
Harald Welte9f75c352010-04-30 20:26:32 +0200150 msgb_bvci(msg) = ns_bvci;
151 msgb_nsei(msg) = peer->nsvc->nsei;
152
Harald Welte69619e32010-05-03 19:05:10 +0200153 strip_ns_hdr(msg);
154
Harald Welte0a4050c2010-05-11 10:01:17 +0200155 return gprs_ns_sendmsg(bssgp_nsi, msg);
Harald Welte9f75c352010-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 Welte69619e32010-05-03 19:05:10 +0200160static int gbprox_relay2bvci(struct msgb *msg, uint16_t ptp_bvci,
Harald Welte9f75c352010-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 Welte1c77c6e2010-05-03 21:37:11 +0200166 if (!peer) {
167 LOGP(DGPRS, LOGL_ERROR, "Cannot find BSS for BVCI %u\n",
168 ptp_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200169 return -ENOENT;
Harald Welte1c77c6e2010-05-03 21:37:11 +0200170 }
Harald Welte9f75c352010-04-30 20:26:32 +0200171
Harald Welte69619e32010-05-03 19:05:10 +0200172 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-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 Welteca3620a2010-05-03 16:30:59 +0200179 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200180 struct tlv_parsed tp;
181 uint8_t pdu_type = bgph->pdu_type;
Harald Welteca3620a2010-05-03 16:30:59 +0200182 int data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welte9f75c352010-04-30 20:26:32 +0200183 struct gbprox_peer *from_peer;
Harald Welte70f38d22010-05-01 12:10:57 +0200184 struct gprs_ra_id raid;
Harald Welte9f75c352010-04-30 20:26:32 +0200185
186 if (ns_bvci != 0) {
Harald Welte44c48302010-05-03 19:22:32 +0200187 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u BVCI %u is not signalling\n",
188 nsvc->nsei, ns_bvci);
Harald Welte9f75c352010-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 Welte44c48302010-05-03 19:22:32 +0200196 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u UNITDATA not allowed in "
197 "signalling\n", nsvc->nsei);
Harald Welte9f75c352010-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 Welte70f38d22010-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 Welte9f75c352010-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 Welte1174c082010-05-12 00:07:29 +0200216 memcpy(from_peer->ra, TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA),
217 sizeof(from_peer->ra));
Harald Welte7fc98222010-05-11 10:15:42 +0200218 gsm48_parse_ra(&raid, from_peer->ra);
Harald Welte72953b82010-05-12 00:20:41 +0200219 LOGP(DGPRS, LOGL_INFO, "NSEI=%u RAC snooping: RAC %u-%u-%u-%u "
220 "behind BVCI=%u, NSVCI=%u\n", nsvc->nsei, raid.mcc,
221 raid.mnc, raid.lac, raid.rac , from_peer->bvci,
222 nsvc->nsvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200223 /* FIXME: This only supports one BSS per RA */
224 break;
Harald Welte44c48302010-05-03 19:22:32 +0200225 case BSSGP_PDUT_BVC_RESET:
226 /* If we receive a BVC reset on the signalling endpoint, we
227 * don't want the SGSN to reset, as the signalling endpoint
228 * is common for all point-to-point BVCs (and thus all BTS) */
229 if (TLVP_PRESENT(&tp, BSSGP_IE_BVCI)) {
230 uint16_t bvci = ntohs(*(uint16_t *)TLVP_VAL(&tp, BSSGP_IE_BVCI));
Harald Welte72953b82010-05-12 00:20:41 +0200231 LOGP(DGPRS, LOGL_INFO, "NSEI=%u Rx BVC RESET (BVCI=%u)\n",
Harald Weltee9ea2692010-05-11 20:20:13 +0200232 nsvc->nsei, bvci);
Harald Welte44c48302010-05-03 19:22:32 +0200233 if (bvci == 0) {
234 /* FIXME: only do this if SGSN is alive! */
Harald Weltee9ea2692010-05-11 20:20:13 +0200235 LOGP(DGPRS, LOGL_INFO, "NSEI=%u Tx fake "
Harald Welte44c48302010-05-03 19:22:32 +0200236 "BVC RESET ACK of BVCI=0\n", nsvc->nsei);
237 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_RESET_ACK,
238 nsvc->nsei, 0, ns_bvci);
Harald Welte1174c082010-05-12 00:07:29 +0200239 }
240 from_peer = peer_by_bvci(bvci);
241 if (!from_peer) {
Harald Welte1c77c6e2010-05-03 21:37:11 +0200242 /* if a PTP-BVC is reset, and we don't know that
243 * PTP-BVCI yet, we should allocate a new peer */
244 LOGP(DGPRS, LOGL_INFO, "Allocationg new peer for "
245 "BVCI=%u via NSVCI=%u/NSEI=%u\n", bvci,
246 nsvc->nsvci, nsvc->nsei);
247 from_peer = peer_alloc(bvci);
248 from_peer->nsvc = nsvc;
Harald Welte44c48302010-05-03 19:22:32 +0200249 }
Harald Welte1174c082010-05-12 00:07:29 +0200250 if (TLVP_PRESENT(&tp, BSSGP_IE_CELL_ID)) {
251 struct gprs_ra_id raid;
252 /* We have a Cell Identifier present in this
253 * PDU, this means we can extend our local
254 * state information about this particular cell
255 * */
256 memcpy(from_peer->ra,
257 TLVP_VAL(&tp, BSSGP_IE_CELL_ID),
258 sizeof(from_peer->ra));
259 gsm48_parse_ra(&raid, from_peer->ra);
260 LOGP(DGPRS, LOGL_INFO, "NSEI=%u/BVCI=%u "
Harald Welte72953b82010-05-12 00:20:41 +0200261 "Cell ID %u-%u-%u-%u\n", nsvc->nsei,
Harald Welte1174c082010-05-12 00:07:29 +0200262 bvci, raid.mcc, raid.mnc, raid.lac,
263 raid.rac);
264 }
Harald Welte44c48302010-05-03 19:22:32 +0200265 }
266 break;
Harald Welte9f75c352010-04-30 20:26:32 +0200267 }
268
Harald Weltee9ea2692010-05-11 20:20:13 +0200269 /* Normally, we can simply pass on all signalling messages from BSS to
270 * SGSN */
Harald Welte69619e32010-05-03 19:05:10 +0200271 return gbprox_relay2sgsn(msg, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200272err_no_peer:
Harald Welte0a4050c2010-05-11 10:01:17 +0200273 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) cannot find peer based on RAC\n",
274 nsvc->nsei);
275 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200276err_mand_ie:
Harald Welte0a4050c2010-05-11 10:01:17 +0200277 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) missing mandatory RA IE\n",
278 nsvc->nsei);
279 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200280}
281
282/* Receive paging request from SGSN, we need to relay to proper BSS */
283static int gbprox_rx_paging(struct msgb *msg, struct tlv_parsed *tp,
284 struct gprs_nsvc *nsvc, uint16_t ns_bvci)
285{
286 struct gbprox_peer *peer;
287
288 if (TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
289 uint16_t bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Welte69619e32010-05-03 19:05:10 +0200290 return gbprox_relay2bvci(msg, bvci, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200291 } else if (TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA)) {
292 peer = peer_by_rac(TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
Harald Welte69619e32010-05-03 19:05:10 +0200293 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200294 } else if (TLVP_PRESENT(tp, BSSGP_IE_LOCATION_AREA)) {
295 peer = peer_by_lac(TLVP_VAL(tp, BSSGP_IE_LOCATION_AREA));
Harald Welte69619e32010-05-03 19:05:10 +0200296 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200297 } else
298 return -EINVAL;
299}
300
Harald Welte0a4050c2010-05-11 10:01:17 +0200301/* Receive an incoming BVC-RESET message from the SGSN */
302static int rx_reset_from_sgsn(struct msgb *msg, struct tlv_parsed *tp,
303 struct gprs_nsvc *nsvc, uint16_t ns_bvci)
304{
305 struct gbprox_peer *peer;
306 uint16_t ptp_bvci;
307
308 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
309 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE,
310 NULL, msg);
311 }
312 ptp_bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
313
314 if (ptp_bvci >= 2) {
315 /* A reset for a PTP BVC was received, forward it to its
316 * respective peer */
317 peer = peer_by_bvci(ptp_bvci);
318 if (!peer) {
319 LOGP(DGPRS, LOGL_ERROR, "Cannot find BSS for BVCI %u\n",
320 ptp_bvci);
321 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI,
322 NULL, msg);
323 }
324 return gbprox_relay2peer(msg, peer, ns_bvci);
325 }
326
327 /* A reset for the Signalling entity has been received
328 * from the SGSN. As the signalling BVCI is shared
329 * among all the BSS's that we multiplex, it needs to
330 * be relayed */
331 llist_for_each_entry(peer, &gbprox_bts_peers, list)
332 gbprox_relay2peer(msg, peer, ns_bvci);
333
334 return 0;
335}
336
Harald Welte9f75c352010-04-30 20:26:32 +0200337/* Receive an incoming signalling message from the SGSN-side NS-VC */
338static int gbprox_rx_sig_from_sgsn(struct msgb *msg, struct gprs_nsvc *nsvc,
339 uint16_t ns_bvci)
340{
Harald Welteca3620a2010-05-03 16:30:59 +0200341 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200342 struct tlv_parsed tp;
343 uint8_t pdu_type = bgph->pdu_type;
Harald Welteca3620a2010-05-03 16:30:59 +0200344 int data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welte9f75c352010-04-30 20:26:32 +0200345 struct gbprox_peer *peer;
346 uint16_t bvci;
347 int rc = 0;
348
349 if (ns_bvci != 0) {
Harald Welte44c48302010-05-03 19:22:32 +0200350 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) BVCI %u is not "
351 "signalling\n", nsvc->nsei, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +0200352 /* FIXME: Send proper error message */
Harald Welte9f75c352010-04-30 20:26:32 +0200353 return -EINVAL;
354 }
355
356 /* we actually should never see those two for BVCI == 0, but double-check
357 * just to make sure */
358 if (pdu_type == BSSGP_PDUT_UL_UNITDATA ||
359 pdu_type == BSSGP_PDUT_DL_UNITDATA) {
Harald Welte44c48302010-05-03 19:22:32 +0200360 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) UNITDATA not allowed in "
361 "signalling\n", nsvc->nsei);
Harald Welte0a4050c2010-05-11 10:01:17 +0200362 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200363 }
364
365 rc = bssgp_tlv_parse(&tp, bgph->data, data_len);
366
367 switch (pdu_type) {
Harald Welte0a4050c2010-05-11 10:01:17 +0200368 case BSSGP_PDUT_BVC_RESET:
369 rc = rx_reset_from_sgsn(msg, &tp, nsvc, ns_bvci);
370 break;
Harald Welte9f75c352010-04-30 20:26:32 +0200371 case BSSGP_PDUT_FLUSH_LL:
372 case BSSGP_PDUT_BVC_BLOCK_ACK:
373 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
Harald Welte9f75c352010-04-30 20:26:32 +0200374 case BSSGP_PDUT_BVC_RESET_ACK:
375 /* simple case: BVCI IE is mandatory */
376 if (!TLVP_PRESENT(&tp, BSSGP_IE_BVCI))
377 goto err_mand_ie;
378 bvci = ntohs(*(uint16_t *)TLVP_VAL(&tp, BSSGP_IE_BVCI));
Harald Welte69619e32010-05-03 19:05:10 +0200379 rc = gbprox_relay2bvci(msg, bvci, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200380 break;
381 case BSSGP_PDUT_PAGING_PS:
382 case BSSGP_PDUT_PAGING_CS:
383 /* process the paging request (LAC/RAC lookup) */
384 rc = gbprox_rx_paging(msg, &tp, nsvc, ns_bvci);
385 break;
386 case BSSGP_PDUT_STATUS:
Harald Welte0a4050c2010-05-11 10:01:17 +0200387 /* Some exception has occurred */
Harald Welte44c48302010-05-03 19:22:32 +0200388 LOGP(DGPRS, LOGL_NOTICE,
Harald Welte0a4050c2010-05-11 10:01:17 +0200389 "NSEI=%u(SGSN) STATUS ", nsvc->nsei);
390 if (!TLVP_PRESENT(&tp, BSSGP_IE_CAUSE)) {
391 LOGPC(DGPRS, LOGL_NOTICE, "\n");
392 goto err_mand_ie;
393 }
394 LOGPC(DGPRS, LOGL_NOTICE,
395 "cause=0x%02x(%s) ", *TLVP_VAL(&tp, BSSGP_IE_CAUSE),
396 bssgp_cause_str(*TLVP_VAL(&tp, BSSGP_IE_CAUSE)));
397 if (TLVP_PRESENT(&tp, BSSGP_IE_BVCI)) {
Harald Welte7fc98222010-05-11 10:15:42 +0200398 uint16_t *bvci = (uint16_t *)
399 TLVP_VAL(&tp, BSSGP_IE_BVCI);
Harald Welte0a4050c2010-05-11 10:01:17 +0200400 LOGPC(DGPRS, LOGL_NOTICE,
401 "BVCI=%u\n", ntohs(*bvci));
402 } else
403 LOGPC(DGPRS, LOGL_NOTICE, "\n");
Harald Welte9f75c352010-04-30 20:26:32 +0200404 break;
405 /* those only exist in the SGSN -> BSS direction */
406 case BSSGP_PDUT_SUSPEND_ACK:
407 case BSSGP_PDUT_SUSPEND_NACK:
408 case BSSGP_PDUT_RESUME_ACK:
409 case BSSGP_PDUT_RESUME_NACK:
410 /* RAC IE is mandatory */
411 if (!TLVP_PRESENT(&tp, BSSGP_IE_ROUTEING_AREA))
412 goto err_mand_ie;
413 peer = peer_by_rac(TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA));
414 if (!peer)
415 goto err_no_peer;
Harald Welte69619e32010-05-03 19:05:10 +0200416 rc = gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200417 break;
418 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Welte44c48302010-05-03 19:22:32 +0200419 LOGP(DGPRS, LOGL_ERROR,
420 "NSEI=%u(SGSN) INVOKE TRACE not supported\n", nsvc->nsei);
Harald Welte0a4050c2010-05-11 10:01:17 +0200421 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200422 break;
423 default:
Harald Welte72953b82010-05-12 00:20:41 +0200424 LOGP(DGPRS, LOGL_NOTICE, "BSSGP PDU type 0x%02x unknown\n",
425 pdu_type);
Harald Welte0a4050c2010-05-11 10:01:17 +0200426 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200427 break;
428 }
429
430 return rc;
431err_mand_ie:
Harald Welte1c77c6e2010-05-03 21:37:11 +0200432 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) missing mandatory IE\n",
433 nsvc->nsei);
Harald Welte0a4050c2010-05-11 10:01:17 +0200434 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200435err_no_peer:
Harald Welte0a4050c2010-05-11 10:01:17 +0200436 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) cannot find peer based on RAC\n",
437 nsvc->nsei);
438 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200439}
440
441/* Main input function for Gb proxy */
442int gbprox_rcvmsg(struct msgb *msg, struct gprs_nsvc *nsvc, uint16_t ns_bvci)
443{
Harald Welte672f5c42010-05-03 18:54:58 +0200444 int rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200445
446 /* Only BVCI=0 messages need special treatment */
447 if (ns_bvci == 0 || ns_bvci == 1) {
448 if (nsvc->remote_end_is_sgsn)
Harald Welte672f5c42010-05-03 18:54:58 +0200449 rc = gbprox_rx_sig_from_sgsn(msg, nsvc, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200450 else
Harald Welte672f5c42010-05-03 18:54:58 +0200451 rc = gbprox_rx_sig_from_bss(msg, nsvc, ns_bvci);
452 } else {
453 /* All other BVCI are PTP and thus can be simply forwarded */
Harald Welte1c77c6e2010-05-03 21:37:11 +0200454 if (!nsvc->remote_end_is_sgsn) {
Harald Welte69619e32010-05-03 19:05:10 +0200455 rc = gbprox_relay2sgsn(msg, ns_bvci);
Harald Welte70f38d22010-05-01 12:10:57 +0200456 } else {
Harald Welte672f5c42010-05-03 18:54:58 +0200457 struct gbprox_peer *peer = peer_by_bvci(ns_bvci);
458 if (!peer) {
Harald Welte72953b82010-05-12 00:20:41 +0200459 LOGP(DGPRS, LOGL_INFO, "Allocationg new peer for "
Harald Welte672f5c42010-05-03 18:54:58 +0200460 "BVCI=%u via NSVC=%u/NSEI=%u\n", ns_bvci,
461 nsvc->nsvci, nsvc->nsei);
462 peer = peer_alloc(ns_bvci);
463 peer->nsvc = nsvc;
464 }
Harald Welte69619e32010-05-03 19:05:10 +0200465 rc = gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte70f38d22010-05-01 12:10:57 +0200466 }
Harald Welte9f75c352010-04-30 20:26:32 +0200467 }
468
Harald Welte672f5c42010-05-03 18:54:58 +0200469 return rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200470}
Harald Welte85801d02010-05-11 05:49:43 +0200471
Harald Weltec1c1dd22010-05-11 06:34:24 +0200472/* Signal handler for signals from NS layer */
473int gbprox_signal(unsigned int subsys, unsigned int signal,
474 void *handler_data, void *signal_data)
475{
476 struct ns_signal_data *nssd = signal_data;
477 struct gprs_nsvc *nsvc = nssd->nsvc;
478 struct gbprox_peer *peer;
479
480 if (subsys != SS_NS)
481 return 0;
482
Harald Weltef69c0592010-05-11 18:29:44 +0200483 if (signal == S_NS_RESET && nsvc->nsei == gbcfg.nsip_sgsn_nsei) {
484 /* We have received a NS-RESET from the NSEI and NSVC
485 * of the SGSN. This might happen with SGSN that start
486 * their own NS-RESET procedure without waiting for our
487 * NS-RESET */
488 nsvc->remote_end_is_sgsn = 1;
489 }
490
Harald Welteb778d2c2010-05-12 13:28:25 +0000491 if (signal == S_NS_ALIVE_EXP && nsvc->remote_end_is_sgsn) {
492 LOGP(DGPRS, LOGL_NOTICE, "Tns alive expired too often, "
493 "re-starting RESET procedure\n");
494 nsip_connect(nsvc->nsi, &nsvc->ip.bts_addr, nsvc->nsei,
495 nsvc->nsvci);
496 }
497
Harald Weltec1c1dd22010-05-11 06:34:24 +0200498 /* We currently only care about signals from the SGSN */
499 if (!nsvc->remote_end_is_sgsn)
500 return 0;
501
502 /* iterate over all BTS peers and send the respective PDU */
503 llist_for_each_entry(peer, &gbprox_bts_peers, list) {
504 switch (signal) {
505 case S_NS_RESET:
506 gprs_ns_tx_reset(peer->nsvc, nssd->cause);
507 break;
508 case S_NS_BLOCK:
509 gprs_ns_tx_block(peer->nsvc, nssd->cause);
510 break;
511 case S_NS_UNBLOCK:
512 gprs_ns_tx_unblock(peer->nsvc);
513 break;
514 }
515 }
516 return 0;
517}
518
Harald Welte85801d02010-05-11 05:49:43 +0200519
520#include <vty/command.h>
521
522gDEFUN(show_gbproxy, show_gbproxy_cmd, "show gbproxy",
523 SHOW_STR "Display information about the Gb proxy")
524{
525 struct gbprox_peer *peer;
526
527 llist_for_each_entry(peer, &gbprox_bts_peers, list) {
528 struct gprs_nsvc *nsvc = peer->nsvc;
529 struct gprs_ra_id raid;
Harald Welte7fc98222010-05-11 10:15:42 +0200530 gsm48_parse_ra(&raid, peer->ra);
Harald Welte85801d02010-05-11 05:49:43 +0200531
532 vty_out(vty, "NSEI %5u, NS-VC %5u, PTP-BVCI %u, "
533 "RAC %u-%u-%u-%u%s",
534 nsvc->nsei, nsvc->nsvci, peer->bvci,
535 raid.mcc, raid.mnc, raid.lac, raid.rac, VTY_NEWLINE);
536 if (nsvc->nsi->ll == GPRS_NS_LL_UDP)
537 vty_out(vty, " remote address %s:%u%s",
538 inet_ntoa(nsvc->ip.bts_addr.sin_addr),
539 ntohs(nsvc->ip.bts_addr.sin_port), VTY_NEWLINE);
540 }
541 return CMD_SUCCESS;
542}