blob: 9580ea3a3947544d375ef9472f3e1c28ca5b4a73 [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 Welte39d0bb52010-05-12 18:10:25 +0000122/* FIXME: this needs to go to libosmocore/msgb.c */
123static struct msgb *msgb_copy(const struct msgb *msg, const char *name)
124{
125 struct msgb *new_msg;
126
127 new_msg = msgb_alloc(msg->data_len, name);
128 if (!new_msg)
129 return NULL;
130
131 /* copy header */
132 memcpy(new_msg, msg, sizeof(*new_msg));
133 /* copy data */
134 memcpy(new_msg->data, msg->data, new_msg->data_len);
135
136 return new_msg;
137}
138
Harald Welte69619e32010-05-03 19:05:10 +0200139/* strip off the NS header */
140static void strip_ns_hdr(struct msgb *msg)
141{
142 int strip_len = msgb_bssgph(msg) - msg->data;
143 msgb_pull(msg, strip_len);
144}
145
Harald Welte9f75c352010-04-30 20:26:32 +0200146/* feed a message down the NS-VC associated with the specified peer */
Harald Welte39d0bb52010-05-12 18:10:25 +0000147static int gbprox_relay2sgsn(struct msgb *old_msg, uint16_t ns_bvci)
Harald Welte672f5c42010-05-03 18:54:58 +0200148{
Harald Welte39d0bb52010-05-12 18:10:25 +0000149 /* create a copy of the message so the old one can
150 * be free()d safely when we return from gbprox_rcvmsg() */
151 struct msgb *msg = msgb_copy(old_msg, "msgb_relay2sgsn");
152
Harald Weltee9ea2692010-05-11 20:20:13 +0200153 DEBUGP(DGPRS, "NSEI=%u proxying BTS->SGSN (NS_BVCI=%u, NSEI=%u)\n",
Harald Welte96f71f22010-05-03 19:28:05 +0200154 msgb_nsei(msg), ns_bvci, gbcfg.nsip_sgsn_nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200155
Harald Welte672f5c42010-05-03 18:54:58 +0200156 msgb_bvci(msg) = ns_bvci;
157 msgb_nsei(msg) = gbcfg.nsip_sgsn_nsei;
158
Harald Welte69619e32010-05-03 19:05:10 +0200159 strip_ns_hdr(msg);
160
Harald Welte0a4050c2010-05-11 10:01:17 +0200161 return gprs_ns_sendmsg(bssgp_nsi, msg);
Harald Welte672f5c42010-05-03 18:54:58 +0200162}
163
Harald Welte672f5c42010-05-03 18:54:58 +0200164/* feed a message down the NS-VC associated with the specified peer */
Harald Welte39d0bb52010-05-12 18:10:25 +0000165static int gbprox_relay2peer(struct msgb *old_msg, struct gbprox_peer *peer,
Harald Welte9f75c352010-04-30 20:26:32 +0200166 uint16_t ns_bvci)
167{
Harald Welte39d0bb52010-05-12 18:10:25 +0000168 /* create a copy of the message so the old one can
169 * be free()d safely when we return from gbprox_rcvmsg() */
170 struct msgb *msg = msgb_copy(old_msg, "msgb_relay2peer");
171
Harald Welte0ab535b2010-05-13 10:34:56 +0200172 DEBUGP(DGPRS, "NSEI=%u proxying SGSN->BSS (NS_BVCI=%u, NSEI=%u)\n",
Harald Welte96f71f22010-05-03 19:28:05 +0200173 msgb_nsei(msg), ns_bvci, peer->nsvc->nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200174
Harald Welte9f75c352010-04-30 20:26:32 +0200175 msgb_bvci(msg) = ns_bvci;
176 msgb_nsei(msg) = peer->nsvc->nsei;
177
Harald Welte0ab535b2010-05-13 10:34:56 +0200178 /* Strip the old NS header, it will be replaced with a new one */
Harald Welte69619e32010-05-03 19:05:10 +0200179 strip_ns_hdr(msg);
180
Harald Welte0a4050c2010-05-11 10:01:17 +0200181 return gprs_ns_sendmsg(bssgp_nsi, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200182}
183
184/* Send a message to a peer identified by ptp_bvci but using ns_bvci
185 * in the NS hdr */
Harald Welte69619e32010-05-03 19:05:10 +0200186static int gbprox_relay2bvci(struct msgb *msg, uint16_t ptp_bvci,
Harald Welte9f75c352010-04-30 20:26:32 +0200187 uint16_t ns_bvci)
188{
189 struct gbprox_peer *peer;
190
191 peer = peer_by_bvci(ptp_bvci);
Harald Welte1c77c6e2010-05-03 21:37:11 +0200192 if (!peer) {
193 LOGP(DGPRS, LOGL_ERROR, "Cannot find BSS for BVCI %u\n",
194 ptp_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200195 return -ENOENT;
Harald Welte1c77c6e2010-05-03 21:37:11 +0200196 }
Harald Welte9f75c352010-04-30 20:26:32 +0200197
Harald Welte69619e32010-05-03 19:05:10 +0200198 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200199}
200
201/* Receive an incoming signalling message from a BSS-side NS-VC */
202static int gbprox_rx_sig_from_bss(struct msgb *msg, struct gprs_nsvc *nsvc,
203 uint16_t ns_bvci)
204{
Harald Welteca3620a2010-05-03 16:30:59 +0200205 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200206 struct tlv_parsed tp;
207 uint8_t pdu_type = bgph->pdu_type;
Harald Welteca3620a2010-05-03 16:30:59 +0200208 int data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welte9f75c352010-04-30 20:26:32 +0200209 struct gbprox_peer *from_peer;
Harald Welte70f38d22010-05-01 12:10:57 +0200210 struct gprs_ra_id raid;
Harald Welte9f75c352010-04-30 20:26:32 +0200211
212 if (ns_bvci != 0) {
Harald Welte44c48302010-05-03 19:22:32 +0200213 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u BVCI %u is not signalling\n",
214 nsvc->nsei, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200215 return -EINVAL;
216 }
217
218 /* we actually should never see those two for BVCI == 0, but double-check
219 * just to make sure */
220 if (pdu_type == BSSGP_PDUT_UL_UNITDATA ||
221 pdu_type == BSSGP_PDUT_DL_UNITDATA) {
Harald Welte44c48302010-05-03 19:22:32 +0200222 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u UNITDATA not allowed in "
223 "signalling\n", nsvc->nsei);
Harald Welte9f75c352010-04-30 20:26:32 +0200224 return -EINVAL;
225 }
226
227 bssgp_tlv_parse(&tp, bgph->data, data_len);
228
229 switch (pdu_type) {
230 case BSSGP_PDUT_SUSPEND:
231 case BSSGP_PDUT_RESUME:
Harald Welte70f38d22010-05-01 12:10:57 +0200232 /* We implement RAC snooping during SUSPEND/RESUME, since
233 * it establishes a relationsip between BVCI/peer and the
234 * routeing area code. The snooped information is then
235 * used for routing the {SUSPEND,RESUME}_[N]ACK back to
236 * the correct BSSGP */
Harald Welte9f75c352010-04-30 20:26:32 +0200237 if (!TLVP_PRESENT(&tp, BSSGP_IE_ROUTEING_AREA))
238 goto err_mand_ie;
239 from_peer = peer_by_nsvc(nsvc);
240 if (!from_peer)
241 goto err_no_peer;
Harald Welte1174c082010-05-12 00:07:29 +0200242 memcpy(from_peer->ra, TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA),
243 sizeof(from_peer->ra));
Harald Welte7fc98222010-05-11 10:15:42 +0200244 gsm48_parse_ra(&raid, from_peer->ra);
Harald Welte72953b82010-05-12 00:20:41 +0200245 LOGP(DGPRS, LOGL_INFO, "NSEI=%u RAC snooping: RAC %u-%u-%u-%u "
246 "behind BVCI=%u, NSVCI=%u\n", nsvc->nsei, raid.mcc,
247 raid.mnc, raid.lac, raid.rac , from_peer->bvci,
248 nsvc->nsvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200249 /* FIXME: This only supports one BSS per RA */
250 break;
Harald Welte44c48302010-05-03 19:22:32 +0200251 case BSSGP_PDUT_BVC_RESET:
252 /* If we receive a BVC reset on the signalling endpoint, we
253 * don't want the SGSN to reset, as the signalling endpoint
254 * is common for all point-to-point BVCs (and thus all BTS) */
255 if (TLVP_PRESENT(&tp, BSSGP_IE_BVCI)) {
256 uint16_t bvci = ntohs(*(uint16_t *)TLVP_VAL(&tp, BSSGP_IE_BVCI));
Harald Welte72953b82010-05-12 00:20:41 +0200257 LOGP(DGPRS, LOGL_INFO, "NSEI=%u Rx BVC RESET (BVCI=%u)\n",
Harald Weltee9ea2692010-05-11 20:20:13 +0200258 nsvc->nsei, bvci);
Harald Welte44c48302010-05-03 19:22:32 +0200259 if (bvci == 0) {
260 /* FIXME: only do this if SGSN is alive! */
Harald Weltee9ea2692010-05-11 20:20:13 +0200261 LOGP(DGPRS, LOGL_INFO, "NSEI=%u Tx fake "
Harald Welte44c48302010-05-03 19:22:32 +0200262 "BVC RESET ACK of BVCI=0\n", nsvc->nsei);
263 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_RESET_ACK,
264 nsvc->nsei, 0, ns_bvci);
Harald Welte1174c082010-05-12 00:07:29 +0200265 }
266 from_peer = peer_by_bvci(bvci);
267 if (!from_peer) {
Harald Welte1c77c6e2010-05-03 21:37:11 +0200268 /* if a PTP-BVC is reset, and we don't know that
269 * PTP-BVCI yet, we should allocate a new peer */
270 LOGP(DGPRS, LOGL_INFO, "Allocationg new peer for "
271 "BVCI=%u via NSVCI=%u/NSEI=%u\n", bvci,
272 nsvc->nsvci, nsvc->nsei);
273 from_peer = peer_alloc(bvci);
274 from_peer->nsvc = nsvc;
Harald Welte44c48302010-05-03 19:22:32 +0200275 }
Harald Welte1174c082010-05-12 00:07:29 +0200276 if (TLVP_PRESENT(&tp, BSSGP_IE_CELL_ID)) {
277 struct gprs_ra_id raid;
278 /* We have a Cell Identifier present in this
279 * PDU, this means we can extend our local
280 * state information about this particular cell
281 * */
282 memcpy(from_peer->ra,
283 TLVP_VAL(&tp, BSSGP_IE_CELL_ID),
284 sizeof(from_peer->ra));
285 gsm48_parse_ra(&raid, from_peer->ra);
286 LOGP(DGPRS, LOGL_INFO, "NSEI=%u/BVCI=%u "
Harald Welte72953b82010-05-12 00:20:41 +0200287 "Cell ID %u-%u-%u-%u\n", nsvc->nsei,
Harald Welte1174c082010-05-12 00:07:29 +0200288 bvci, raid.mcc, raid.mnc, raid.lac,
289 raid.rac);
290 }
Harald Welte44c48302010-05-03 19:22:32 +0200291 }
292 break;
Harald Welte9f75c352010-04-30 20:26:32 +0200293 }
294
Harald Weltee9ea2692010-05-11 20:20:13 +0200295 /* Normally, we can simply pass on all signalling messages from BSS to
296 * SGSN */
Harald Welte69619e32010-05-03 19:05:10 +0200297 return gbprox_relay2sgsn(msg, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200298err_no_peer:
Harald Welte0a4050c2010-05-11 10:01:17 +0200299 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) cannot find peer based on RAC\n",
300 nsvc->nsei);
301 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200302err_mand_ie:
Harald Welte0a4050c2010-05-11 10:01:17 +0200303 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) missing mandatory RA IE\n",
304 nsvc->nsei);
305 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200306}
307
308/* Receive paging request from SGSN, we need to relay to proper BSS */
309static int gbprox_rx_paging(struct msgb *msg, struct tlv_parsed *tp,
310 struct gprs_nsvc *nsvc, uint16_t ns_bvci)
311{
312 struct gbprox_peer *peer;
313
314 if (TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
315 uint16_t bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
Harald Welte69619e32010-05-03 19:05:10 +0200316 return gbprox_relay2bvci(msg, bvci, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200317 } else if (TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA)) {
318 peer = peer_by_rac(TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
Harald Welte69619e32010-05-03 19:05:10 +0200319 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200320 } else if (TLVP_PRESENT(tp, BSSGP_IE_LOCATION_AREA)) {
321 peer = peer_by_lac(TLVP_VAL(tp, BSSGP_IE_LOCATION_AREA));
Harald Welte69619e32010-05-03 19:05:10 +0200322 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200323 } else
324 return -EINVAL;
325}
326
Harald Welte0a4050c2010-05-11 10:01:17 +0200327/* Receive an incoming BVC-RESET message from the SGSN */
328static int rx_reset_from_sgsn(struct msgb *msg, struct tlv_parsed *tp,
329 struct gprs_nsvc *nsvc, uint16_t ns_bvci)
330{
331 struct gbprox_peer *peer;
332 uint16_t ptp_bvci;
333
334 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
335 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE,
336 NULL, msg);
337 }
338 ptp_bvci = ntohs(*(uint16_t *)TLVP_VAL(tp, BSSGP_IE_BVCI));
339
340 if (ptp_bvci >= 2) {
341 /* A reset for a PTP BVC was received, forward it to its
342 * respective peer */
343 peer = peer_by_bvci(ptp_bvci);
344 if (!peer) {
345 LOGP(DGPRS, LOGL_ERROR, "Cannot find BSS for BVCI %u\n",
346 ptp_bvci);
347 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI,
348 NULL, msg);
349 }
350 return gbprox_relay2peer(msg, peer, ns_bvci);
351 }
352
353 /* A reset for the Signalling entity has been received
354 * from the SGSN. As the signalling BVCI is shared
355 * among all the BSS's that we multiplex, it needs to
356 * be relayed */
357 llist_for_each_entry(peer, &gbprox_bts_peers, list)
358 gbprox_relay2peer(msg, peer, ns_bvci);
359
360 return 0;
361}
362
Harald Welte9f75c352010-04-30 20:26:32 +0200363/* Receive an incoming signalling message from the SGSN-side NS-VC */
364static int gbprox_rx_sig_from_sgsn(struct msgb *msg, struct gprs_nsvc *nsvc,
365 uint16_t ns_bvci)
366{
Harald Welteca3620a2010-05-03 16:30:59 +0200367 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200368 struct tlv_parsed tp;
369 uint8_t pdu_type = bgph->pdu_type;
Harald Welteca3620a2010-05-03 16:30:59 +0200370 int data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welte9f75c352010-04-30 20:26:32 +0200371 struct gbprox_peer *peer;
372 uint16_t bvci;
373 int rc = 0;
374
375 if (ns_bvci != 0) {
Harald Welte44c48302010-05-03 19:22:32 +0200376 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) BVCI %u is not "
377 "signalling\n", nsvc->nsei, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +0200378 /* FIXME: Send proper error message */
Harald Welte9f75c352010-04-30 20:26:32 +0200379 return -EINVAL;
380 }
381
382 /* we actually should never see those two for BVCI == 0, but double-check
383 * just to make sure */
384 if (pdu_type == BSSGP_PDUT_UL_UNITDATA ||
385 pdu_type == BSSGP_PDUT_DL_UNITDATA) {
Harald Welte44c48302010-05-03 19:22:32 +0200386 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) UNITDATA not allowed in "
387 "signalling\n", nsvc->nsei);
Harald Welte0a4050c2010-05-11 10:01:17 +0200388 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200389 }
390
391 rc = bssgp_tlv_parse(&tp, bgph->data, data_len);
392
393 switch (pdu_type) {
Harald Welte0a4050c2010-05-11 10:01:17 +0200394 case BSSGP_PDUT_BVC_RESET:
395 rc = rx_reset_from_sgsn(msg, &tp, nsvc, ns_bvci);
396 break;
Harald Welte9f75c352010-04-30 20:26:32 +0200397 case BSSGP_PDUT_FLUSH_LL:
398 case BSSGP_PDUT_BVC_BLOCK_ACK:
399 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
Harald Welte9f75c352010-04-30 20:26:32 +0200400 case BSSGP_PDUT_BVC_RESET_ACK:
401 /* simple case: BVCI IE is mandatory */
402 if (!TLVP_PRESENT(&tp, BSSGP_IE_BVCI))
403 goto err_mand_ie;
404 bvci = ntohs(*(uint16_t *)TLVP_VAL(&tp, BSSGP_IE_BVCI));
Harald Welte69619e32010-05-03 19:05:10 +0200405 rc = gbprox_relay2bvci(msg, bvci, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200406 break;
407 case BSSGP_PDUT_PAGING_PS:
408 case BSSGP_PDUT_PAGING_CS:
409 /* process the paging request (LAC/RAC lookup) */
410 rc = gbprox_rx_paging(msg, &tp, nsvc, ns_bvci);
411 break;
412 case BSSGP_PDUT_STATUS:
Harald Welte0a4050c2010-05-11 10:01:17 +0200413 /* Some exception has occurred */
Harald Welte44c48302010-05-03 19:22:32 +0200414 LOGP(DGPRS, LOGL_NOTICE,
Harald Welte0a4050c2010-05-11 10:01:17 +0200415 "NSEI=%u(SGSN) STATUS ", nsvc->nsei);
416 if (!TLVP_PRESENT(&tp, BSSGP_IE_CAUSE)) {
417 LOGPC(DGPRS, LOGL_NOTICE, "\n");
418 goto err_mand_ie;
419 }
420 LOGPC(DGPRS, LOGL_NOTICE,
421 "cause=0x%02x(%s) ", *TLVP_VAL(&tp, BSSGP_IE_CAUSE),
422 bssgp_cause_str(*TLVP_VAL(&tp, BSSGP_IE_CAUSE)));
423 if (TLVP_PRESENT(&tp, BSSGP_IE_BVCI)) {
Harald Welte7fc98222010-05-11 10:15:42 +0200424 uint16_t *bvci = (uint16_t *)
425 TLVP_VAL(&tp, BSSGP_IE_BVCI);
Harald Welte0a4050c2010-05-11 10:01:17 +0200426 LOGPC(DGPRS, LOGL_NOTICE,
427 "BVCI=%u\n", ntohs(*bvci));
428 } else
429 LOGPC(DGPRS, LOGL_NOTICE, "\n");
Harald Welte9f75c352010-04-30 20:26:32 +0200430 break;
431 /* those only exist in the SGSN -> BSS direction */
432 case BSSGP_PDUT_SUSPEND_ACK:
433 case BSSGP_PDUT_SUSPEND_NACK:
434 case BSSGP_PDUT_RESUME_ACK:
435 case BSSGP_PDUT_RESUME_NACK:
436 /* RAC IE is mandatory */
437 if (!TLVP_PRESENT(&tp, BSSGP_IE_ROUTEING_AREA))
438 goto err_mand_ie;
439 peer = peer_by_rac(TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA));
440 if (!peer)
441 goto err_no_peer;
Harald Welte69619e32010-05-03 19:05:10 +0200442 rc = gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200443 break;
444 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Welte44c48302010-05-03 19:22:32 +0200445 LOGP(DGPRS, LOGL_ERROR,
446 "NSEI=%u(SGSN) INVOKE TRACE not supported\n", nsvc->nsei);
Harald Welte0a4050c2010-05-11 10:01:17 +0200447 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200448 break;
449 default:
Harald Welte72953b82010-05-12 00:20:41 +0200450 LOGP(DGPRS, LOGL_NOTICE, "BSSGP PDU type 0x%02x unknown\n",
451 pdu_type);
Harald Welte0a4050c2010-05-11 10:01:17 +0200452 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200453 break;
454 }
455
456 return rc;
457err_mand_ie:
Harald Welte1c77c6e2010-05-03 21:37:11 +0200458 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) missing mandatory IE\n",
459 nsvc->nsei);
Harald Welte0a4050c2010-05-11 10:01:17 +0200460 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200461err_no_peer:
Harald Welte0a4050c2010-05-11 10:01:17 +0200462 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) cannot find peer based on RAC\n",
463 nsvc->nsei);
464 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200465}
466
467/* Main input function for Gb proxy */
468int gbprox_rcvmsg(struct msgb *msg, struct gprs_nsvc *nsvc, uint16_t ns_bvci)
469{
Harald Welte672f5c42010-05-03 18:54:58 +0200470 int rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200471
472 /* Only BVCI=0 messages need special treatment */
473 if (ns_bvci == 0 || ns_bvci == 1) {
474 if (nsvc->remote_end_is_sgsn)
Harald Welte672f5c42010-05-03 18:54:58 +0200475 rc = gbprox_rx_sig_from_sgsn(msg, nsvc, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200476 else
Harald Welte672f5c42010-05-03 18:54:58 +0200477 rc = gbprox_rx_sig_from_bss(msg, nsvc, ns_bvci);
478 } else {
479 /* All other BVCI are PTP and thus can be simply forwarded */
Harald Welte1c77c6e2010-05-03 21:37:11 +0200480 if (!nsvc->remote_end_is_sgsn) {
Harald Welte69619e32010-05-03 19:05:10 +0200481 rc = gbprox_relay2sgsn(msg, ns_bvci);
Harald Welte70f38d22010-05-01 12:10:57 +0200482 } else {
Harald Welte672f5c42010-05-03 18:54:58 +0200483 struct gbprox_peer *peer = peer_by_bvci(ns_bvci);
484 if (!peer) {
Harald Welte72953b82010-05-12 00:20:41 +0200485 LOGP(DGPRS, LOGL_INFO, "Allocationg new peer for "
Harald Welte672f5c42010-05-03 18:54:58 +0200486 "BVCI=%u via NSVC=%u/NSEI=%u\n", ns_bvci,
487 nsvc->nsvci, nsvc->nsei);
488 peer = peer_alloc(ns_bvci);
489 peer->nsvc = nsvc;
490 }
Harald Welte69619e32010-05-03 19:05:10 +0200491 rc = gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte70f38d22010-05-01 12:10:57 +0200492 }
Harald Welte9f75c352010-04-30 20:26:32 +0200493 }
494
Harald Welte672f5c42010-05-03 18:54:58 +0200495 return rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200496}
Harald Welte85801d02010-05-11 05:49:43 +0200497
Harald Weltec1c1dd22010-05-11 06:34:24 +0200498/* Signal handler for signals from NS layer */
499int gbprox_signal(unsigned int subsys, unsigned int signal,
500 void *handler_data, void *signal_data)
501{
502 struct ns_signal_data *nssd = signal_data;
503 struct gprs_nsvc *nsvc = nssd->nsvc;
504 struct gbprox_peer *peer;
505
506 if (subsys != SS_NS)
507 return 0;
508
Harald Weltef69c0592010-05-11 18:29:44 +0200509 if (signal == S_NS_RESET && nsvc->nsei == gbcfg.nsip_sgsn_nsei) {
510 /* We have received a NS-RESET from the NSEI and NSVC
511 * of the SGSN. This might happen with SGSN that start
512 * their own NS-RESET procedure without waiting for our
513 * NS-RESET */
514 nsvc->remote_end_is_sgsn = 1;
515 }
516
Harald Welteb778d2c2010-05-12 13:28:25 +0000517 if (signal == S_NS_ALIVE_EXP && nsvc->remote_end_is_sgsn) {
518 LOGP(DGPRS, LOGL_NOTICE, "Tns alive expired too often, "
519 "re-starting RESET procedure\n");
520 nsip_connect(nsvc->nsi, &nsvc->ip.bts_addr, nsvc->nsei,
521 nsvc->nsvci);
522 }
523
Harald Weltec1c1dd22010-05-11 06:34:24 +0200524 /* We currently only care about signals from the SGSN */
525 if (!nsvc->remote_end_is_sgsn)
526 return 0;
527
528 /* iterate over all BTS peers and send the respective PDU */
529 llist_for_each_entry(peer, &gbprox_bts_peers, list) {
530 switch (signal) {
531 case S_NS_RESET:
532 gprs_ns_tx_reset(peer->nsvc, nssd->cause);
533 break;
534 case S_NS_BLOCK:
535 gprs_ns_tx_block(peer->nsvc, nssd->cause);
536 break;
537 case S_NS_UNBLOCK:
538 gprs_ns_tx_unblock(peer->nsvc);
539 break;
540 }
541 }
542 return 0;
543}
544
Harald Welte85801d02010-05-11 05:49:43 +0200545
546#include <vty/command.h>
547
548gDEFUN(show_gbproxy, show_gbproxy_cmd, "show gbproxy",
549 SHOW_STR "Display information about the Gb proxy")
550{
551 struct gbprox_peer *peer;
552
553 llist_for_each_entry(peer, &gbprox_bts_peers, list) {
554 struct gprs_nsvc *nsvc = peer->nsvc;
555 struct gprs_ra_id raid;
Harald Welte7fc98222010-05-11 10:15:42 +0200556 gsm48_parse_ra(&raid, peer->ra);
Harald Welte85801d02010-05-11 05:49:43 +0200557
558 vty_out(vty, "NSEI %5u, NS-VC %5u, PTP-BVCI %u, "
559 "RAC %u-%u-%u-%u%s",
560 nsvc->nsei, nsvc->nsvci, peer->bvci,
561 raid.mcc, raid.mnc, raid.lac, raid.rac, VTY_NEWLINE);
562 if (nsvc->nsi->ll == GPRS_NS_LL_UDP)
563 vty_out(vty, " remote address %s:%u%s",
564 inet_ntoa(nsvc->ip.bts_addr.sin_addr),
565 ntohs(nsvc->ip.bts_addr.sin_port), VTY_NEWLINE);
566 }
567 return CMD_SUCCESS;
568}