blob: f0375ee44d07c115d2864324f46398cf44da4094 [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>
Holger Hans Peter Freyther90267a92013-10-23 11:24:17 +02004 * (C) 2010-2013 by On-Waves
5 * (C) 2013 by Holger Hans Peter Freyther
Harald Welte9f75c352010-04-30 20:26:32 +02006 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01009 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
Harald Welte9f75c352010-04-30 20:26:32 +020011 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010016 * GNU Affero General Public License for more details.
Harald Welte9f75c352010-04-30 20:26:32 +020017 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010018 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte9f75c352010-04-30 20:26:32 +020020 *
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>
Harald Welte7fc98222010-05-11 10:15:42 +020031#include <arpa/inet.h>
Jacob Erlbeck7c101d92014-06-06 18:49:23 +020032#include <time.h>
Harald Welte9f75c352010-04-30 20:26:32 +020033
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010034#include <osmocom/core/talloc.h>
35#include <osmocom/core/select.h>
Jacob Erlbeckbc555742013-10-18 14:34:55 +020036#include <osmocom/core/rate_ctr.h>
37
Harald Welteea34a4e2012-06-16 14:59:56 +080038#include <osmocom/gprs/gprs_ns.h>
39#include <osmocom/gprs/gprs_bssgp.h>
40
Jacob Erlbeck7c101d92014-06-06 18:49:23 +020041#include <osmocom/gsm/gsm_utils.h>
42
Harald Welte9f75c352010-04-30 20:26:32 +020043#include <openbsc/signal.h>
44#include <openbsc/debug.h>
Jacob Erlbeck9114bee2014-08-19 12:21:01 +020045#include <openbsc/gprs_gb_parse.h>
Harald Welte672f5c42010-05-03 18:54:58 +020046#include <openbsc/gb_proxy.h>
Harald Welte9f75c352010-04-30 20:26:32 +020047
Jacob Erlbeck67a44452014-05-19 10:14:58 +020048#include <openbsc/gprs_llc.h>
49#include <openbsc/gsm_04_08.h>
50#include <openbsc/gsm_04_08_gprs.h>
Holger Hans Peter Freyther7127b022014-08-04 11:52:52 +020051#include <openbsc/gprs_utils.h>
Jacob Erlbeck67a44452014-05-19 10:14:58 +020052
Jacob Erlbeckbc555742013-10-18 14:34:55 +020053static const struct rate_ctr_desc global_ctr_description[] = {
54 { "inv-bvci", "Invalid BVC Identifier " },
Jacob Erlbeck8f503592014-06-02 10:49:00 +020055 { "inv-lai", "Invalid Location Area Identifier" },
56 { "inv-rai", "Invalid Routing Area Identifier " },
Jacob Erlbeckbc555742013-10-18 14:34:55 +020057 { "inv-nsei", "No BVC established for NSEI " },
58 { "proto-err.bss", "BSSGP protocol error (BSS )" },
59 { "proto-err.sgsn", "BSSGP protocol error (SGSN)" },
60 { "not-supp.bss", "Feature not supported (BSS )" },
61 { "not-supp.sgsn", "Feature not supported (SGSN)" },
62 { "restart.sgsn", "Restarted RESET procedure (SGSN)" },
63 { "tx-err.sgsn", "NS Transmission error (SGSN)" },
64 { "error", "Other error " },
Jacob Erlbeck006c0382014-05-27 13:49:04 +020065 { "mod-peer-err", "Patch error: no peer " },
Jacob Erlbeckbc555742013-10-18 14:34:55 +020066};
67
68static const struct rate_ctr_group_desc global_ctrg_desc = {
69 .group_name_prefix = "gbproxy.global",
70 .group_description = "GBProxy Global Statistics",
71 .num_ctr = ARRAY_SIZE(global_ctr_description),
72 .ctr_desc = global_ctr_description,
73};
74
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +020075static int gbprox_relay2peer(struct msgb *old_msg, struct gbproxy_peer *peer,
76 uint16_t ns_bvci);
77static int gbprox_relay2sgsn(struct gbproxy_config *cfg, struct msgb *old_msg,
78 uint16_t ns_bvci);
79
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +020080static int check_peer_nsei(struct gbproxy_peer *peer, uint16_t nsei)
Jacob Erlbeckbc555742013-10-18 14:34:55 +020081{
82 if (peer->nsei != nsei) {
83 LOGP(DGPRS, LOGL_NOTICE, "Peer entry doesn't match current NSEI "
84 "BVCI=%u via NSEI=%u (expected NSEI=%u)\n",
85 peer->bvci, nsei, peer->nsei);
86 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_INV_NSEI]);
Jacob Erlbeck64cb9242013-10-24 12:48:56 +020087 return 0;
Jacob Erlbeckbc555742013-10-18 14:34:55 +020088 }
89
Jacob Erlbeck64cb9242013-10-24 12:48:56 +020090 return 1;
Jacob Erlbeckbc555742013-10-18 14:34:55 +020091}
92
Harald Welte69619e32010-05-03 19:05:10 +020093/* strip off the NS header */
94static void strip_ns_hdr(struct msgb *msg)
95{
96 int strip_len = msgb_bssgph(msg) - msg->data;
97 msgb_pull(msg, strip_len);
98}
99
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200100/* Transmit Chapter 9.2.10 Identity Request */
101static void gprs_put_identity_req(struct msgb *msg, uint8_t id_type)
102{
103 struct gsm48_hdr *gh;
104
105 id_type &= GSM_MI_TYPE_MASK;
106
107 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
108 gh->proto_discr = GSM48_PDISC_MM_GPRS;
109 gh->msg_type = GSM48_MT_GMM_ID_REQ;
110 gh->data[0] = id_type;
111}
112
113static void gprs_push_llc_ui(struct msgb *msg,
114 int is_uplink, unsigned sapi, unsigned nu)
115{
116 const uint8_t e_bit = 0;
117 const uint8_t pm_bit = 1;
118 const uint8_t cr_bit = is_uplink ? 0 : 1;
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200119 uint8_t *llc;
120 uint8_t *fcs_field;
121 uint32_t fcs;
122
123 nu &= 0x01ff; /* 9 Bit */
124
125 llc = msgb_push(msg, 3);
126 llc[0] = (cr_bit << 6) | (sapi & 0x0f);
127 llc[1] = 0xc0 | (nu >> 6); /* UI frame */
128 llc[2] = (nu << 2) | ((e_bit & 1) << 1) | (pm_bit & 1);
129
130 fcs = gprs_llc_fcs(llc, msgb_length(msg));
131 fcs_field = msgb_put(msg, 3);
132 fcs_field[0] = (uint8_t)(fcs >> 0);
133 fcs_field[1] = (uint8_t)(fcs >> 8);
134 fcs_field[2] = (uint8_t)(fcs >> 16);
135}
136
137static void gprs_push_bssgp_dl_unitdata(struct msgb *msg,
138 uint32_t tlli)
139{
140 struct bssgp_ud_hdr *budh;
141 uint8_t *llc = msgb_data(msg);
142 size_t llc_size = msgb_length(msg);
143 const size_t llc_ie_hdr_size = 3;
144 const uint8_t qos_profile[] = {0x00, 0x50, 0x20}; /* hard-coded */
145 const uint8_t lifetime[] = {0x02, 0x58}; /* 6s hard-coded */
146
147 const size_t bssgp_overhead = sizeof(*budh) +
148 TVLV_GROSS_LEN(sizeof(lifetime)) + llc_ie_hdr_size;
149 uint8_t *ie;
150 uint32_t tlli_be = htonl(tlli);
151
152 budh = (struct bssgp_ud_hdr *)msgb_push(msg, bssgp_overhead);
153
154 budh->pdu_type = BSSGP_PDUT_DL_UNITDATA;
155 memcpy(&budh->tlli, &tlli_be, sizeof(budh->tlli));
156 memcpy(&budh->qos_profile, qos_profile, sizeof(budh->qos_profile));
157
158 ie = budh->data;
159 tvlv_put(ie, BSSGP_IE_PDU_LIFETIME, sizeof(lifetime), lifetime);
160 ie += TVLV_GROSS_LEN(sizeof(lifetime));
161
162 /* Note: Add alignment before the LLC IE if inserting other IE */
163
164 *(ie++) = BSSGP_IE_LLC_PDU;
165 *(ie++) = llc_size / 256;
166 *(ie++) = llc_size % 256;
167
168 OSMO_ASSERT(ie == llc);
169
170 msgb_bssgph(msg) = (uint8_t *)budh;
171 msgb_tlli(msg) = tlli;
172}
173
Jacob Erlbeck12496dd2014-08-18 15:41:41 +0200174/* update peer according to the BSS message */
175static void gbprox_update_current_raid(uint8_t *raid_enc,
176 struct gbproxy_peer *peer,
177 const char *log_text)
Jacob Erlbeck67a44452014-05-19 10:14:58 +0200178{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200179 struct gbproxy_patch_state *state = &peer->patch_state;
Jacob Erlbeck67a44452014-05-19 10:14:58 +0200180 const int old_local_mcc = state->local_mcc;
181 const int old_local_mnc = state->local_mnc;
Jacob Erlbeck12496dd2014-08-18 15:41:41 +0200182 struct gprs_ra_id raid;
183
184 if (!raid_enc)
185 return;
186
187 gsm48_parse_ra(&raid, raid_enc);
188
189 /* save source side MCC/MNC */
190 if (!peer->cfg->core_mcc || raid.mcc == peer->cfg->core_mcc) {
191 state->local_mcc = 0;
192 } else {
193 state->local_mcc = raid.mcc;
194 }
195
196 if (!peer->cfg->core_mnc || raid.mnc == peer->cfg->core_mnc) {
197 state->local_mnc = 0;
198 } else {
199 state->local_mnc = raid.mnc;
200 }
201
202 if (old_local_mcc != state->local_mcc ||
203 old_local_mnc != state->local_mnc)
204 LOGP(DGPRS, LOGL_NOTICE,
205 "Patching RAID %sactivated, msg: %s, "
206 "local: %d-%d, core: %d-%d\n",
207 state->local_mcc || state->local_mnc ?
208 "" : "de",
209 log_text,
210 state->local_mcc, state->local_mnc,
211 peer->cfg->core_mcc, peer->cfg->core_mnc);
212}
213
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200214uint32_t gbproxy_make_bss_ptmsi(struct gbproxy_peer *peer,
215 uint32_t sgsn_ptmsi)
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200216{
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200217 uint32_t bss_ptmsi;
218 if (!peer->cfg->patch_ptmsi) {
219 bss_ptmsi = sgsn_ptmsi;
220 } else {
221 do {
222 bss_ptmsi = rand_r(&peer->cfg->bss_ptmsi_state);
223 bss_ptmsi = bss_ptmsi | 0xC0000000;
224
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200225 if (gbproxy_find_tlli_by_ptmsi(peer, bss_ptmsi))
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200226 bss_ptmsi = GSM_RESERVED_TMSI;
227 } while (bss_ptmsi == GSM_RESERVED_TMSI);
228 }
229
230 return bss_ptmsi;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200231}
232
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200233uint32_t gbproxy_make_sgsn_tlli(struct gbproxy_peer *peer,
234 struct gbproxy_tlli_info *tlli_info,
235 uint32_t bss_tlli)
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200236{
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200237 uint32_t sgsn_tlli;
238 if (!peer->cfg->patch_ptmsi) {
239 sgsn_tlli = bss_tlli;
240 } else if (tlli_info->sgsn_tlli.ptmsi != GSM_RESERVED_TMSI) {
241 sgsn_tlli = gprs_tmsi2tlli(tlli_info->sgsn_tlli.ptmsi,
242 TLLI_FOREIGN);
243 } else {
244 do {
245 /* create random TLLI, 0b01111xxx... */
246 sgsn_tlli = rand_r(&peer->cfg->sgsn_tlli_state);
247 sgsn_tlli = (sgsn_tlli & 0x7fffffff) | 0x78000000;
248
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200249 if (gbproxy_find_tlli_by_sgsn_tlli(peer, sgsn_tlli))
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200250 sgsn_tlli = 0;
251 } while (!sgsn_tlli);
252 }
253 return sgsn_tlli;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200254}
255
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200256/* patch BSSGP message */
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200257static int gbprox_process_bssgp_ul(struct gbproxy_config *cfg,
258 struct msgb *msg,
259 struct gbproxy_peer *peer)
Jacob Erlbeckc8128822014-08-07 16:07:24 +0200260{
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200261 struct gprs_gb_parse_context parse_ctx = {0};
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200262 int rc;
Jacob Erlbeckc8128822014-08-07 16:07:24 +0200263 int len_change = 0;
Jacob Erlbeck7b821d02014-08-08 08:37:37 +0200264 time_t now;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200265 struct gbproxy_tlli_info *tlli_info = NULL;
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200266
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200267 if (!cfg->core_mcc && !cfg->core_mnc && !cfg->core_apn &&
268 !cfg->acquire_imsi)
269 return 1;
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200270
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200271 parse_ctx.to_bss = 0;
272
273 /* Parse BSSGP/LLC */
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200274 rc = gprs_gb_parse_bssgp(msgb_bssgph(msg), msgb_bssgp_len(msg),
275 &parse_ctx);
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200276
277 if (!rc) {
278 if (!parse_ctx.need_decryption) {
279 LOGP(DGPRS, LOGL_ERROR,
Jacob Erlbeck643d5222014-08-18 17:26:04 +0200280 "NSEI=%u(BSS) patching: "
281 "failed to parse BSSGP/GMM message\n",
282 msgb_nsei(msg));
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200283 return 0;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200284 }
285 }
286
287 /* Get peer */
288 if (!peer && msgb_bvci(msg) >= 2)
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200289 peer = gbproxy_peer_by_bvci(cfg, msgb_bvci(msg));
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200290
291 if (!peer)
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200292 peer = gbproxy_peer_by_nsei(cfg, msgb_nsei(msg));
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200293
294 if (!peer)
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200295 peer = gbproxy_peer_by_bssgp_tlv(cfg, &parse_ctx.bssgp_tp);
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200296
297 if (!peer) {
298 LOGP(DLLC, LOGL_INFO,
299 "NSEI=%d(BSS) patching: didn't find peer for message, "
300 "PDU %d\n",
301 msgb_nsei(msg), parse_ctx.pdu_type);
302 /* Increment counter */
303 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_PATCH_PEER_ERR]);
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200304 return 0;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200305 }
306
307 now = time(NULL);
308
Jacob Erlbeck12496dd2014-08-18 15:41:41 +0200309 if (parse_ctx.bssgp_raid_enc && parse_ctx.old_raid_enc &&
310 memcmp(parse_ctx.bssgp_raid_enc, parse_ctx.old_raid_enc, 6) == 0)
311 parse_ctx.old_raid_matches = 1;
312
313 gbprox_update_current_raid(parse_ctx.bssgp_raid_enc, peer,
314 parse_ctx.llc_msg_name);
315
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200316 if (parse_ctx.g48_hdr) {
317 switch (parse_ctx.g48_hdr->msg_type) {
318 case GSM48_MT_GMM_ATTACH_REQ:
319 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_ATTACH_REQS]);
320 break;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200321
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200322 default:
323 break;
324 }
325 }
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200326
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200327 gprs_gb_log_parse_context(&parse_ctx, "BSSGP");
328
329 tlli_info = gbproxy_update_tlli_state_ul(peer, now, &parse_ctx);
330
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200331 if (tlli_info && tlli_info->imsi_acq_pending && parse_ctx.g48_hdr &&
332 parse_ctx.g48_hdr->proto_discr == GSM48_PDISC_MM_GPRS &&
333 parse_ctx.g48_hdr->msg_type == GSM48_MT_GMM_ID_RESP &&
334 parse_ctx.imsi_len > 0) {
335 struct msgb *stored_msg;
336 /* Got identity response with IMSI, assuming the request had
337 * been generated by the gbproxy */
338
339 LOGP(DLLC, LOGL_DEBUG,
340 "NSEI=%d(BSS) IMSI acquisition succeeded, "
341 "flushing stored messages\n",
342 msgb_nsei(msg));
343
344 /* TODO: Patch and flush stored messages towards the SGSN */
345 while ((stored_msg = msgb_dequeue(&tlli_info->stored_msgs))) {
346 struct gprs_gb_parse_context tmp_parse_ctx = {0};
347 tmp_parse_ctx.to_bss = 0;
348 len_change = 0;
349
350 gprs_gb_parse_bssgp(msgb_bssgph(stored_msg),
351 msgb_bssgp_len(stored_msg),
352 &tmp_parse_ctx);
353 gbproxy_patch_bssgp(msg, msgb_bssgph(stored_msg),
354 msgb_bssgp_len(stored_msg),
355 peer, tlli_info, &len_change,
356 &tmp_parse_ctx);
357
358 gbproxy_update_tlli_state_after(peer, tlli_info, now,
359 &tmp_parse_ctx);
360
361 rc = gbprox_relay2sgsn(cfg, stored_msg, msgb_bvci(msg));
362
363 if (rc < 0)
364 LOGP(DLLC, LOGL_ERROR,
365 "NSEI=%d(BSS) failed to send stored message "
366 "(%s)\n",
367 msgb_nsei(msg),
368 parse_ctx.llc_msg_name ? parse_ctx.llc_msg_name : "BSSGP");
369 msgb_free(stored_msg);
370 }
371
372 tlli_info->imsi_acq_pending = 0;
373
374 return 0;
375 }
376
377 if (tlli_info && tlli_info->imsi_acq_pending) {
378 struct msgb *stored_msg;
379
380 LOGP(DLLC, LOGL_DEBUG,
381 "NSEI=%d(BSS) IMSI acquisition in progess, "
382 "storing message (%s)\n",
383 msgb_nsei(msg),
384 parse_ctx.llc_msg_name ? parse_ctx.llc_msg_name : "BSSGP");
385
386 /* Enqueue unpatched messages */
387 stored_msg = gprs_msgb_copy(msg, "process_bssgp_ul");
388 msgb_enqueue(&tlli_info->stored_msgs, stored_msg);
389
390 /* TODO: Timeout, retransmit IDENT REQ if expired */
391 return 0;
392 }
393
394 if (cfg->acquire_imsi && tlli_info && tlli_info->mi_data_len == 0) {
395 struct msgb *idreq_msg;
396 struct msgb *stored_msg = gprs_msgb_copy(msg, "process_bssgp_ul");
397
398 LOGP(DLLC, LOGL_DEBUG,
399 "NSEI=%d(BSS) IMSI is required but not available, "
400 "storing message (%s)\n",
401 msgb_nsei(msg),
402 parse_ctx.llc_msg_name ? parse_ctx.llc_msg_name : "BSSGP");
403
404 /* Enqueue message */
405 msgb_enqueue(&tlli_info->stored_msgs, stored_msg);
406
407 /* Send IDENT REQ */
408 idreq_msg = gsm48_msgb_alloc();
409 gprs_put_identity_req(idreq_msg, GSM_MI_TYPE_IMSI);
410 gprs_push_llc_ui(idreq_msg, 0, GPRS_SAPI_GMM,
411 /* TODO: use a real N(U) */0);
412 gprs_push_bssgp_dl_unitdata(idreq_msg, tlli_info->tlli.current);
413 gbprox_relay2peer(idreq_msg, peer, msgb_bvci(msg));
414 msgb_free(idreq_msg);
415
416 tlli_info->imsi_acq_pending = 1;
417
418 return 0;
419 }
420
421
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200422 gbproxy_patch_bssgp(msg, msgb_bssgph(msg), msgb_bssgp_len(msg),
423 peer, tlli_info, &len_change, &parse_ctx);
424
425 gbproxy_update_tlli_state_after(peer, tlli_info, now, &parse_ctx);
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200426
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200427 return 1;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200428}
429
430/* patch BSSGP message to use core_mcc/mnc on the SGSN side */
431static void gbprox_process_bssgp_dl(struct gbproxy_config *cfg,
432 struct msgb *msg,
433 struct gbproxy_peer *peer)
434{
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200435 struct gprs_gb_parse_context parse_ctx = {0};
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200436 int rc;
437 int len_change = 0;
438 time_t now;
439 struct gbproxy_tlli_info *tlli_info = NULL;
440
441 parse_ctx.to_bss = 1;
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200442
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200443 rc = gprs_gb_parse_bssgp(msgb_bssgph(msg), msgb_bssgp_len(msg),
444 &parse_ctx);
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200445
446 if (!rc) {
447 if (!parse_ctx.need_decryption) {
448 LOGP(DGPRS, LOGL_ERROR,
Jacob Erlbeck643d5222014-08-18 17:26:04 +0200449 "NSEI=%u(SGSN) patching: "
450 "failed to parse BSSGP/GMM message\n",
451 msgb_nsei(msg));
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200452 return;
453 }
454 }
Jacob Erlbeck67a44452014-05-19 10:14:58 +0200455
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200456 if (!peer && msgb_bvci(msg) >= 2)
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200457 peer = gbproxy_peer_by_bvci(cfg, msgb_bvci(msg));
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200458
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200459 if (!peer)
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200460 peer = gbproxy_peer_by_bssgp_tlv(cfg, &parse_ctx.bssgp_tp);
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200461
462 if (!peer) {
463 LOGP(DLLC, LOGL_INFO,
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200464 "NSEI=%d(SGSN) patching: didn't find peer for message, "
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200465 "PDU %d\n",
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200466 msgb_nsei(msg), parse_ctx.pdu_type);
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200467 /* Increment counter */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200468 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_PATCH_PEER_ERR]);
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200469 return;
470 }
471
Jacob Erlbeck7b821d02014-08-08 08:37:37 +0200472 now = time(NULL);
473
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200474 if (parse_ctx.g48_hdr) {
475 switch (parse_ctx.g48_hdr->msg_type) {
476 case GSM48_MT_GMM_ATTACH_REJ:
477 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_ATTACH_REJS]);
478 break;
Jacob Erlbeck91fb6802014-05-28 10:59:10 +0200479
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200480 default:
481 break;
482 }
483 }
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200484
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200485 gprs_gb_log_parse_context(&parse_ctx, "BSSGP");
486
487 tlli_info = gbproxy_update_tlli_state_dl(peer, now, &parse_ctx);
488
489 gbproxy_patch_bssgp(msg, msgb_bssgph(msg), msgb_bssgp_len(msg),
490 peer, tlli_info, &len_change, &parse_ctx);
491
492 gbproxy_update_tlli_state_after(peer, tlli_info, now, &parse_ctx);
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200493
Jacob Erlbeck03551e52014-06-27 19:56:05 +0200494 return;
Jacob Erlbeck67a44452014-05-19 10:14:58 +0200495}
496
Harald Welte9f75c352010-04-30 20:26:32 +0200497/* feed a message down the NS-VC associated with the specified peer */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200498static int gbprox_relay2sgsn(struct gbproxy_config *cfg, struct msgb *old_msg,
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200499 uint16_t ns_bvci)
Harald Welte672f5c42010-05-03 18:54:58 +0200500{
Harald Welte39d0bb52010-05-12 18:10:25 +0000501 /* create a copy of the message so the old one can
502 * be free()d safely when we return from gbprox_rcvmsg() */
Holger Hans Peter Freyther7127b022014-08-04 11:52:52 +0200503 struct msgb *msg = gprs_msgb_copy(old_msg, "msgb_relay2sgsn");
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200504 int rc;
Harald Welte39d0bb52010-05-12 18:10:25 +0000505
Harald Weltee9ea2692010-05-11 20:20:13 +0200506 DEBUGP(DGPRS, "NSEI=%u proxying BTS->SGSN (NS_BVCI=%u, NSEI=%u)\n",
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200507 msgb_nsei(msg), ns_bvci, cfg->nsip_sgsn_nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200508
Harald Welte672f5c42010-05-03 18:54:58 +0200509 msgb_bvci(msg) = ns_bvci;
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200510 msgb_nsei(msg) = cfg->nsip_sgsn_nsei;
Harald Welte672f5c42010-05-03 18:54:58 +0200511
Harald Welte69619e32010-05-03 19:05:10 +0200512 strip_ns_hdr(msg);
513
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200514 rc = gprs_ns_sendmsg(bssgp_nsi, msg);
515 if (rc < 0)
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200516 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_TX_ERR_SGSN]);
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200517
518 return rc;
Harald Welte672f5c42010-05-03 18:54:58 +0200519}
520
Harald Welte672f5c42010-05-03 18:54:58 +0200521/* feed a message down the NS-VC associated with the specified peer */
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200522static int gbprox_relay2peer(struct msgb *old_msg, struct gbproxy_peer *peer,
Harald Welte9f75c352010-04-30 20:26:32 +0200523 uint16_t ns_bvci)
524{
Harald Welte39d0bb52010-05-12 18:10:25 +0000525 /* create a copy of the message so the old one can
526 * be free()d safely when we return from gbprox_rcvmsg() */
Holger Hans Peter Freyther7127b022014-08-04 11:52:52 +0200527 struct msgb *msg = gprs_msgb_copy(old_msg, "msgb_relay2peer");
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200528 int rc;
Harald Welte39d0bb52010-05-12 18:10:25 +0000529
Harald Welte0ab535b2010-05-13 10:34:56 +0200530 DEBUGP(DGPRS, "NSEI=%u proxying SGSN->BSS (NS_BVCI=%u, NSEI=%u)\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200531 msgb_nsei(msg), ns_bvci, peer->nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200532
Harald Welte9f75c352010-04-30 20:26:32 +0200533 msgb_bvci(msg) = ns_bvci;
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200534 msgb_nsei(msg) = peer->nsei;
Harald Welte9f75c352010-04-30 20:26:32 +0200535
Harald Welte0ab535b2010-05-13 10:34:56 +0200536 /* Strip the old NS header, it will be replaced with a new one */
Harald Welte69619e32010-05-03 19:05:10 +0200537 strip_ns_hdr(msg);
538
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200539 rc = gprs_ns_sendmsg(bssgp_nsi, msg);
540 if (rc < 0)
541 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_TX_ERR]);
542
543 return rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200544}
545
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200546static int block_unblock_peer(struct gbproxy_config *cfg, uint16_t ptp_bvci, uint8_t pdu_type)
Harald Welte36f98d92011-02-06 13:09:29 +0100547{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200548 struct gbproxy_peer *peer;
Harald Welte36f98d92011-02-06 13:09:29 +0100549
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200550 peer = gbproxy_peer_by_bvci(cfg, ptp_bvci);
Harald Welte36f98d92011-02-06 13:09:29 +0100551 if (!peer) {
552 LOGP(DGPRS, LOGL_ERROR, "BVCI=%u: Cannot find BSS\n",
553 ptp_bvci);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200554 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_BVCI]);
Harald Welte36f98d92011-02-06 13:09:29 +0100555 return -ENOENT;
556 }
557
558 switch (pdu_type) {
559 case BSSGP_PDUT_BVC_BLOCK_ACK:
560 peer->blocked = 1;
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200561 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_BLOCKED]);
Harald Welte36f98d92011-02-06 13:09:29 +0100562 break;
563 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
564 peer->blocked = 0;
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200565 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_UNBLOCKED]);
Harald Welte36f98d92011-02-06 13:09:29 +0100566 break;
567 default:
568 break;
569 }
570 return 0;
571}
572
Harald Welte9f75c352010-04-30 20:26:32 +0200573/* Send a message to a peer identified by ptp_bvci but using ns_bvci
574 * in the NS hdr */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200575static int gbprox_relay2bvci(struct gbproxy_config *cfg, struct msgb *msg, uint16_t ptp_bvci,
Harald Welte9f75c352010-04-30 20:26:32 +0200576 uint16_t ns_bvci)
577{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200578 struct gbproxy_peer *peer;
Harald Welte9f75c352010-04-30 20:26:32 +0200579
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200580 peer = gbproxy_peer_by_bvci(cfg, ptp_bvci);
Harald Welte1c77c6e2010-05-03 21:37:11 +0200581 if (!peer) {
Harald Welte4cf12e92010-05-13 14:14:56 +0200582 LOGP(DGPRS, LOGL_ERROR, "BVCI=%u: Cannot find BSS\n",
Harald Welte1c77c6e2010-05-03 21:37:11 +0200583 ptp_bvci);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200584 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_BVCI]);
Harald Welte9f75c352010-04-30 20:26:32 +0200585 return -ENOENT;
Harald Welte1c77c6e2010-05-03 21:37:11 +0200586 }
Harald Welte9f75c352010-04-30 20:26:32 +0200587
Harald Welte69619e32010-05-03 19:05:10 +0200588 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200589}
590
Harald Welteb1fd9022012-06-17 12:16:31 +0800591int bssgp_prim_cb(struct osmo_prim_hdr *oph, void *ctx)
592{
593 return 0;
594}
595
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200596/* Receive an incoming PTP message from a BSS-side NS-VC */
597static int gbprox_rx_ptp_from_bss(struct gbproxy_config *cfg,
598 struct msgb *msg, uint16_t nsei,
599 uint16_t nsvci, uint16_t ns_bvci)
600{
601 struct gbproxy_peer *peer;
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200602 int rc;
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200603
604 peer = gbproxy_peer_by_bvci(cfg, ns_bvci);
605
606 if (peer)
607 check_peer_nsei(peer, nsei);
608
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200609 rc = gbprox_process_bssgp_ul(cfg, msg, peer);
610 if (!rc)
611 return 0;
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200612
613 return gbprox_relay2sgsn(cfg, msg, ns_bvci);
614}
615
616/* Receive an incoming PTP message from a SGSN-side NS-VC */
617static int gbprox_rx_ptp_from_sgsn(struct gbproxy_config *cfg,
618 struct msgb *msg, uint16_t nsei,
619 uint16_t nsvci, uint16_t ns_bvci)
620{
621 struct gbproxy_peer *peer;
622
623 peer = gbproxy_peer_by_bvci(cfg, ns_bvci);
624
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200625 /* Send status messages before patching */
626
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200627 if (!peer) {
628 LOGP(DGPRS, LOGL_INFO, "Didn't find peer for "
629 "BVCI=%u for message from NSVC=%u/NSEI=%u (SGSN)\n",
630 ns_bvci, nsvci, nsei);
631 rate_ctr_inc(&cfg->ctrg->
632 ctr[GBPROX_GLOB_CTR_INV_BVCI]);
633 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI,
634 &ns_bvci, msg);
635 }
636
637 if (peer->blocked) {
638 LOGP(DGPRS, LOGL_NOTICE, "Dropping PDU for "
639 "blocked BVCI=%u via NSVC=%u/NSEI=%u\n",
640 ns_bvci, nsvci, nsei);
641 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_DROPPED]);
642 return bssgp_tx_status(BSSGP_CAUSE_BVCI_BLOCKED, NULL, msg);
643 }
644
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200645 /* Optionally patch the message */
646 gbprox_process_bssgp_dl(cfg, msg, peer);
647
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200648 return gbprox_relay2peer(msg, peer, ns_bvci);
649}
650
Harald Welte9f75c352010-04-30 20:26:32 +0200651/* Receive an incoming signalling message from a BSS-side NS-VC */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200652static int gbprox_rx_sig_from_bss(struct gbproxy_config *cfg,
653 struct msgb *msg, uint16_t nsei,
Harald Welte9f75c352010-04-30 20:26:32 +0200654 uint16_t ns_bvci)
655{
Harald Welteca3620a2010-05-03 16:30:59 +0200656 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200657 struct tlv_parsed tp;
658 uint8_t pdu_type = bgph->pdu_type;
Harald Welteca3620a2010-05-03 16:30:59 +0200659 int data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200660 struct gbproxy_peer *from_peer = NULL;
Harald Welte70f38d22010-05-01 12:10:57 +0200661 struct gprs_ra_id raid;
Jacob Erlbeck59300642014-09-08 09:04:01 +0200662 int rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200663
Harald Weltec471d3d2011-02-06 17:13:12 +0100664 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Welte4cf12e92010-05-13 14:14:56 +0200665 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u BVCI=%u is not signalling\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200666 nsei, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200667 return -EINVAL;
668 }
669
670 /* we actually should never see those two for BVCI == 0, but double-check
671 * just to make sure */
672 if (pdu_type == BSSGP_PDUT_UL_UNITDATA ||
673 pdu_type == BSSGP_PDUT_DL_UNITDATA) {
Harald Welte44c48302010-05-03 19:22:32 +0200674 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u UNITDATA not allowed in "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200675 "signalling\n", nsei);
Harald Welte9f75c352010-04-30 20:26:32 +0200676 return -EINVAL;
677 }
678
679 bssgp_tlv_parse(&tp, bgph->data, data_len);
680
681 switch (pdu_type) {
682 case BSSGP_PDUT_SUSPEND:
683 case BSSGP_PDUT_RESUME:
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200684 /* We implement RAI snooping during SUSPEND/RESUME, since it
685 * establishes a relationsip between BVCI/peer and the routeing
686 * area identification. The snooped information is then used
687 * for routing the {SUSPEND,RESUME}_[N]ACK back to the correct
688 * BSSGP */
Harald Welte9f75c352010-04-30 20:26:32 +0200689 if (!TLVP_PRESENT(&tp, BSSGP_IE_ROUTEING_AREA))
690 goto err_mand_ie;
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200691 from_peer = gbproxy_peer_by_nsei(cfg, nsei);
Harald Welte9f75c352010-04-30 20:26:32 +0200692 if (!from_peer)
693 goto err_no_peer;
Harald Welte1174c082010-05-12 00:07:29 +0200694 memcpy(from_peer->ra, TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA),
695 sizeof(from_peer->ra));
Harald Welte7fc98222010-05-11 10:15:42 +0200696 gsm48_parse_ra(&raid, from_peer->ra);
Harald Welte4cf12e92010-05-13 14:14:56 +0200697 LOGP(DGPRS, LOGL_INFO, "NSEI=%u BSSGP SUSPEND/RESUME "
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200698 "RAI snooping: RAI %u-%u-%u-%u behind BVCI=%u\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200699 nsei, raid.mcc, raid.mnc, raid.lac,
700 raid.rac , from_peer->bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200701 /* FIXME: This only supports one BSS per RA */
702 break;
Harald Welte44c48302010-05-03 19:22:32 +0200703 case BSSGP_PDUT_BVC_RESET:
704 /* If we receive a BVC reset on the signalling endpoint, we
705 * don't want the SGSN to reset, as the signalling endpoint
706 * is common for all point-to-point BVCs (and thus all BTS) */
707 if (TLVP_PRESENT(&tp, BSSGP_IE_BVCI)) {
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +0200708 uint16_t bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Harald Welte72953b82010-05-12 00:20:41 +0200709 LOGP(DGPRS, LOGL_INFO, "NSEI=%u Rx BVC RESET (BVCI=%u)\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200710 nsei, bvci);
Harald Welte44c48302010-05-03 19:22:32 +0200711 if (bvci == 0) {
712 /* FIXME: only do this if SGSN is alive! */
Harald Weltee9ea2692010-05-11 20:20:13 +0200713 LOGP(DGPRS, LOGL_INFO, "NSEI=%u Tx fake "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200714 "BVC RESET ACK of BVCI=0\n", nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200715 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_RESET_ACK,
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200716 nsei, 0, ns_bvci);
Harald Welte1174c082010-05-12 00:07:29 +0200717 }
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200718 from_peer = gbproxy_peer_by_bvci(cfg, bvci);
Harald Welte1174c082010-05-12 00:07:29 +0200719 if (!from_peer) {
Harald Welte1c77c6e2010-05-03 21:37:11 +0200720 /* if a PTP-BVC is reset, and we don't know that
721 * PTP-BVCI yet, we should allocate a new peer */
722 LOGP(DGPRS, LOGL_INFO, "Allocationg new peer for "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200723 "BVCI=%u via NSEI=%u\n", bvci, nsei);
Holger Hans Peter Freyther0196c992014-08-04 17:10:08 +0200724 from_peer = gbproxy_peer_alloc(cfg, bvci);
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200725 from_peer->nsei = nsei;
Harald Welte44c48302010-05-03 19:22:32 +0200726 }
Jacob Erlbeck64cb9242013-10-24 12:48:56 +0200727
728 if (!check_peer_nsei(from_peer, nsei))
729 from_peer->nsei = nsei;
730
Harald Welte1174c082010-05-12 00:07:29 +0200731 if (TLVP_PRESENT(&tp, BSSGP_IE_CELL_ID)) {
732 struct gprs_ra_id raid;
733 /* We have a Cell Identifier present in this
734 * PDU, this means we can extend our local
735 * state information about this particular cell
736 * */
737 memcpy(from_peer->ra,
738 TLVP_VAL(&tp, BSSGP_IE_CELL_ID),
739 sizeof(from_peer->ra));
740 gsm48_parse_ra(&raid, from_peer->ra);
741 LOGP(DGPRS, LOGL_INFO, "NSEI=%u/BVCI=%u "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200742 "Cell ID %u-%u-%u-%u\n", nsei,
Harald Welte1174c082010-05-12 00:07:29 +0200743 bvci, raid.mcc, raid.mnc, raid.lac,
744 raid.rac);
745 }
Harald Welte44c48302010-05-03 19:22:32 +0200746 }
747 break;
Harald Welte9f75c352010-04-30 20:26:32 +0200748 }
749
Harald Weltee9ea2692010-05-11 20:20:13 +0200750 /* Normally, we can simply pass on all signalling messages from BSS to
751 * SGSN */
Jacob Erlbeck59300642014-09-08 09:04:01 +0200752 rc = gbprox_process_bssgp_ul(cfg, msg, from_peer);
753 if (!rc)
754 return 0;
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200755 return gbprox_relay2sgsn(cfg, msg, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200756err_no_peer:
Jacob Erlbeckc5085f92013-10-18 13:04:48 +0200757 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) cannot find peer based on NSEI\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200758 nsei);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200759 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_NSEI]);
Harald Welte0a4050c2010-05-11 10:01:17 +0200760 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200761err_mand_ie:
Harald Welte0a4050c2010-05-11 10:01:17 +0200762 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) missing mandatory RA IE\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200763 nsei);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200764 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_BSS]);
Harald Welte0a4050c2010-05-11 10:01:17 +0200765 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200766}
767
768/* Receive paging request from SGSN, we need to relay to proper BSS */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200769static int gbprox_rx_paging(struct gbproxy_config *cfg, struct msgb *msg, struct tlv_parsed *tp,
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200770 uint32_t nsei, uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +0200771{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200772 struct gbproxy_peer *peer = NULL;
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200773 int errctr = GBPROX_GLOB_CTR_PROTO_ERR_SGSN;
Harald Welte9f75c352010-04-30 20:26:32 +0200774
Harald Welte4cf12e92010-05-13 14:14:56 +0200775 LOGP(DGPRS, LOGL_INFO, "NSEI=%u(SGSN) BSSGP PAGING ",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200776 nsei);
Harald Welte9f75c352010-04-30 20:26:32 +0200777 if (TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +0200778 uint16_t bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
Harald Welte4cf12e92010-05-13 14:14:56 +0200779 LOGPC(DGPRS, LOGL_INFO, "routing by BVCI to peer BVCI=%u\n",
780 bvci);
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200781 errctr = GBPROX_GLOB_CTR_OTHER_ERR;
Harald Welte9f75c352010-04-30 20:26:32 +0200782 } else if (TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA)) {
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200783 peer = gbproxy_peer_by_rai(cfg, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200784 LOGPC(DGPRS, LOGL_INFO, "routing by RAI to peer BVCI=%u\n",
Holger Hans Peter Freyther62eaf542010-06-08 16:30:24 +0800785 peer ? peer->bvci : -1);
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200786 errctr = GBPROX_GLOB_CTR_INV_RAI;
Harald Welte9f75c352010-04-30 20:26:32 +0200787 } else if (TLVP_PRESENT(tp, BSSGP_IE_LOCATION_AREA)) {
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200788 peer = gbproxy_peer_by_lai(cfg, TLVP_VAL(tp, BSSGP_IE_LOCATION_AREA));
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200789 LOGPC(DGPRS, LOGL_INFO, "routing by LAI to peer BVCI=%u\n",
Holger Hans Peter Freyther62eaf542010-06-08 16:30:24 +0800790 peer ? peer->bvci : -1);
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200791 errctr = GBPROX_GLOB_CTR_INV_LAI;
Harald Welte9f75c352010-04-30 20:26:32 +0200792 } else
Harald Welte4cf12e92010-05-13 14:14:56 +0200793 LOGPC(DGPRS, LOGL_INFO, "\n");
794
795 if (!peer) {
796 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) BSSGP PAGING: "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200797 "unable to route, missing IE\n", nsei);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200798 rate_ctr_inc(&cfg->ctrg->ctr[errctr]);
Harald Welte9f75c352010-04-30 20:26:32 +0200799 return -EINVAL;
Harald Welte4cf12e92010-05-13 14:14:56 +0200800 }
801 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200802}
803
Harald Welte0a4050c2010-05-11 10:01:17 +0200804/* Receive an incoming BVC-RESET message from the SGSN */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200805static int rx_reset_from_sgsn(struct gbproxy_config *cfg,
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200806 struct msgb *orig_msg,
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200807 struct msgb *msg, struct tlv_parsed *tp,
808 uint32_t nsei, uint16_t ns_bvci)
Harald Welte0a4050c2010-05-11 10:01:17 +0200809{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200810 struct gbproxy_peer *peer;
Harald Welte0a4050c2010-05-11 10:01:17 +0200811 uint16_t ptp_bvci;
812
813 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200814 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200815 ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
Harald Welte0a4050c2010-05-11 10:01:17 +0200816 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE,
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200817 NULL, orig_msg);
Harald Welte0a4050c2010-05-11 10:01:17 +0200818 }
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +0200819 ptp_bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
Harald Welte0a4050c2010-05-11 10:01:17 +0200820
821 if (ptp_bvci >= 2) {
822 /* A reset for a PTP BVC was received, forward it to its
823 * respective peer */
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200824 peer = gbproxy_peer_by_bvci(cfg, ptp_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +0200825 if (!peer) {
Harald Welte4cf12e92010-05-13 14:14:56 +0200826 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u BVCI=%u: Cannot find BSS\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200827 nsei, ptp_bvci);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200828 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200829 ctr[GBPROX_GLOB_CTR_INV_BVCI]);
Harald Welte0a4050c2010-05-11 10:01:17 +0200830 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI,
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200831 NULL, orig_msg);
Harald Welte0a4050c2010-05-11 10:01:17 +0200832 }
833 return gbprox_relay2peer(msg, peer, ns_bvci);
834 }
835
836 /* A reset for the Signalling entity has been received
837 * from the SGSN. As the signalling BVCI is shared
838 * among all the BSS's that we multiplex, it needs to
839 * be relayed */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200840 llist_for_each_entry(peer, &cfg->bts_peers, list)
Harald Welte0a4050c2010-05-11 10:01:17 +0200841 gbprox_relay2peer(msg, peer, ns_bvci);
842
843 return 0;
844}
845
Harald Welte9f75c352010-04-30 20:26:32 +0200846/* Receive an incoming signalling message from the SGSN-side NS-VC */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200847static int gbprox_rx_sig_from_sgsn(struct gbproxy_config *cfg,
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200848 struct msgb *orig_msg, uint32_t nsei,
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200849 uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +0200850{
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200851 struct bssgp_normal_hdr *bgph =
852 (struct bssgp_normal_hdr *) msgb_bssgph(orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200853 struct tlv_parsed tp;
854 uint8_t pdu_type = bgph->pdu_type;
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200855 int data_len;
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200856 struct gbproxy_peer *peer;
Harald Welte9f75c352010-04-30 20:26:32 +0200857 uint16_t bvci;
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200858 struct msgb *msg;
Harald Welte9f75c352010-04-30 20:26:32 +0200859 int rc = 0;
860
Harald Weltec471d3d2011-02-06 17:13:12 +0100861 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Welte4cf12e92010-05-13 14:14:56 +0200862 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) BVCI=%u is not "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200863 "signalling\n", nsei, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +0200864 /* FIXME: Send proper error message */
Harald Welte9f75c352010-04-30 20:26:32 +0200865 return -EINVAL;
866 }
867
868 /* we actually should never see those two for BVCI == 0, but double-check
869 * just to make sure */
870 if (pdu_type == BSSGP_PDUT_UL_UNITDATA ||
871 pdu_type == BSSGP_PDUT_DL_UNITDATA) {
Harald Welte44c48302010-05-03 19:22:32 +0200872 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) UNITDATA not allowed in "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200873 "signalling\n", nsei);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200874 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200875 }
876
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200877 msg = gprs_msgb_copy(orig_msg, "rx_sig_from_sgsn");
878 gbprox_process_bssgp_dl(cfg, msg, NULL);
879 /* Update message info */
880 bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
881 data_len = msgb_bssgp_len(orig_msg) - sizeof(*bgph);
Harald Welte9f75c352010-04-30 20:26:32 +0200882 rc = bssgp_tlv_parse(&tp, bgph->data, data_len);
883
884 switch (pdu_type) {
Harald Welte0a4050c2010-05-11 10:01:17 +0200885 case BSSGP_PDUT_BVC_RESET:
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200886 rc = rx_reset_from_sgsn(cfg, msg, orig_msg, &tp, nsei, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +0200887 break;
Harald Welte9f75c352010-04-30 20:26:32 +0200888 case BSSGP_PDUT_FLUSH_LL:
Harald Welte9f75c352010-04-30 20:26:32 +0200889 case BSSGP_PDUT_BVC_RESET_ACK:
890 /* simple case: BVCI IE is mandatory */
891 if (!TLVP_PRESENT(&tp, BSSGP_IE_BVCI))
892 goto err_mand_ie;
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +0200893 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200894 rc = gbprox_relay2bvci(cfg, msg, bvci, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200895 break;
896 case BSSGP_PDUT_PAGING_PS:
897 case BSSGP_PDUT_PAGING_CS:
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200898 /* process the paging request (LAI/RAI lookup) */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200899 rc = gbprox_rx_paging(cfg, msg, &tp, nsei, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200900 break;
901 case BSSGP_PDUT_STATUS:
Harald Welte0a4050c2010-05-11 10:01:17 +0200902 /* Some exception has occurred */
Harald Welte44c48302010-05-03 19:22:32 +0200903 LOGP(DGPRS, LOGL_NOTICE,
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200904 "NSEI=%u(SGSN) BSSGP STATUS ", nsei);
Harald Welte0a4050c2010-05-11 10:01:17 +0200905 if (!TLVP_PRESENT(&tp, BSSGP_IE_CAUSE)) {
906 LOGPC(DGPRS, LOGL_NOTICE, "\n");
907 goto err_mand_ie;
908 }
909 LOGPC(DGPRS, LOGL_NOTICE,
910 "cause=0x%02x(%s) ", *TLVP_VAL(&tp, BSSGP_IE_CAUSE),
911 bssgp_cause_str(*TLVP_VAL(&tp, BSSGP_IE_CAUSE)));
912 if (TLVP_PRESENT(&tp, BSSGP_IE_BVCI)) {
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +0200913 uint16_t bvci = tlvp_val16_unal(&tp, BSSGP_IE_BVCI);
Harald Welte0a4050c2010-05-11 10:01:17 +0200914 LOGPC(DGPRS, LOGL_NOTICE,
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +0200915 "BVCI=%u\n", ntohs(bvci));
Harald Welte0a4050c2010-05-11 10:01:17 +0200916 } else
917 LOGPC(DGPRS, LOGL_NOTICE, "\n");
Harald Welte9f75c352010-04-30 20:26:32 +0200918 break;
919 /* those only exist in the SGSN -> BSS direction */
920 case BSSGP_PDUT_SUSPEND_ACK:
921 case BSSGP_PDUT_SUSPEND_NACK:
922 case BSSGP_PDUT_RESUME_ACK:
923 case BSSGP_PDUT_RESUME_NACK:
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200924 /* RAI IE is mandatory */
Harald Welte9f75c352010-04-30 20:26:32 +0200925 if (!TLVP_PRESENT(&tp, BSSGP_IE_ROUTEING_AREA))
926 goto err_mand_ie;
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200927 peer = gbproxy_peer_by_rai(cfg, TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA));
Harald Welte9f75c352010-04-30 20:26:32 +0200928 if (!peer)
929 goto err_no_peer;
Harald Welte69619e32010-05-03 19:05:10 +0200930 rc = gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200931 break;
Harald Welte36f98d92011-02-06 13:09:29 +0100932 case BSSGP_PDUT_BVC_BLOCK_ACK:
933 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
934 if (!TLVP_PRESENT(&tp, BSSGP_IE_BVCI))
935 goto err_mand_ie;
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +0200936 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Harald Welte36f98d92011-02-06 13:09:29 +0100937 if (bvci == 0) {
938 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) BSSGP "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200939 "%sBLOCK_ACK for signalling BVCI ?!?\n", nsei,
Harald Welte36f98d92011-02-06 13:09:29 +0100940 pdu_type == BSSGP_PDUT_BVC_UNBLOCK_ACK ? "UN":"");
941 /* should we send STATUS ? */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200942 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200943 ctr[GBPROX_GLOB_CTR_INV_BVCI]);
Harald Welte36f98d92011-02-06 13:09:29 +0100944 } else {
945 /* Mark BVC as (un)blocked */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200946 block_unblock_peer(cfg, bvci, pdu_type);
Harald Welte36f98d92011-02-06 13:09:29 +0100947 }
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200948 rc = gbprox_relay2bvci(cfg, msg, bvci, ns_bvci);
Harald Welte36f98d92011-02-06 13:09:29 +0100949 break;
Harald Welte9f75c352010-04-30 20:26:32 +0200950 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Welte44c48302010-05-03 19:22:32 +0200951 LOGP(DGPRS, LOGL_ERROR,
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200952 "NSEI=%u(SGSN) BSSGP INVOKE TRACE not supported\n",nsei);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200953 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200954 ctr[GBPROX_GLOB_CTR_NOT_SUPPORTED_SGSN]);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200955 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200956 break;
957 default:
Harald Welte72953b82010-05-12 00:20:41 +0200958 LOGP(DGPRS, LOGL_NOTICE, "BSSGP PDU type 0x%02x unknown\n",
959 pdu_type);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200960 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200961 ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200962 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200963 break;
964 }
965
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200966 msgb_free(msg);
967
Harald Welte9f75c352010-04-30 20:26:32 +0200968 return rc;
969err_mand_ie:
Harald Welte1c77c6e2010-05-03 21:37:11 +0200970 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) missing mandatory IE\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200971 nsei);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200972 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200973 ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200974 msgb_free(msg);
975 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200976err_no_peer:
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200977 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) cannot find peer based on RAI\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200978 nsei);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200979 rate_ctr_inc(&cfg->ctrg-> ctr[GBPROX_GLOB_CTR_INV_RAI]);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200980 msgb_free(msg);
981 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200982}
983
984/* Main input function for Gb proxy */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200985int gbprox_rcvmsg(struct gbproxy_config *cfg, struct msgb *msg, uint16_t nsei,
986 uint16_t ns_bvci, uint16_t nsvci)
Harald Welte9f75c352010-04-30 20:26:32 +0200987{
Harald Welte672f5c42010-05-03 18:54:58 +0200988 int rc;
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200989 int remote_end_is_sgsn = nsei == cfg->nsip_sgsn_nsei;
Harald Welte9f75c352010-04-30 20:26:32 +0200990
991 /* Only BVCI=0 messages need special treatment */
992 if (ns_bvci == 0 || ns_bvci == 1) {
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200993 if (remote_end_is_sgsn)
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200994 rc = gbprox_rx_sig_from_sgsn(cfg, msg, nsei, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200995 else
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200996 rc = gbprox_rx_sig_from_bss(cfg, msg, nsei, ns_bvci);
Harald Welte672f5c42010-05-03 18:54:58 +0200997 } else {
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200998 /* All other BVCI are PTP */
999 if (remote_end_is_sgsn)
1000 rc = gbprox_rx_ptp_from_sgsn(cfg, msg, nsei, nsvci,
1001 ns_bvci);
1002 else
1003 rc = gbprox_rx_ptp_from_bss(cfg, msg, nsei, nsvci,
1004 ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001005 }
1006
Harald Welte672f5c42010-05-03 18:54:58 +02001007 return rc;
Harald Welte9f75c352010-04-30 20:26:32 +02001008}
Harald Welte85801d02010-05-11 05:49:43 +02001009
Harald Welte1ccbf442010-05-14 11:53:08 +00001010int gbprox_reset_persistent_nsvcs(struct gprs_ns_inst *nsi)
1011{
1012 struct gprs_nsvc *nsvc;
1013
1014 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
1015 if (!nsvc->persistent)
1016 continue;
1017 gprs_nsvc_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
1018 }
1019 return 0;
1020}
1021
Harald Weltec1c1dd22010-05-11 06:34:24 +02001022/* Signal handler for signals from NS layer */
1023int gbprox_signal(unsigned int subsys, unsigned int signal,
1024 void *handler_data, void *signal_data)
1025{
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001026 struct gbproxy_config *cfg = handler_data;
Harald Weltec1c1dd22010-05-11 06:34:24 +02001027 struct ns_signal_data *nssd = signal_data;
1028 struct gprs_nsvc *nsvc = nssd->nsvc;
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +02001029 struct gbproxy_peer *peer;
Harald Weltec1c1dd22010-05-11 06:34:24 +02001030
Harald Weltea6a20b42012-06-16 16:40:42 +08001031 if (subsys != SS_L_NS)
Harald Weltec1c1dd22010-05-11 06:34:24 +02001032 return 0;
1033
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001034 if (signal == S_NS_RESET && nsvc->nsei == cfg->nsip_sgsn_nsei) {
Harald Weltef69c0592010-05-11 18:29:44 +02001035 /* We have received a NS-RESET from the NSEI and NSVC
1036 * of the SGSN. This might happen with SGSN that start
1037 * their own NS-RESET procedure without waiting for our
1038 * NS-RESET */
1039 nsvc->remote_end_is_sgsn = 1;
1040 }
1041
Harald Welteb778d2c2010-05-12 13:28:25 +00001042 if (signal == S_NS_ALIVE_EXP && nsvc->remote_end_is_sgsn) {
1043 LOGP(DGPRS, LOGL_NOTICE, "Tns alive expired too often, "
1044 "re-starting RESET procedure\n");
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001045 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001046 ctr[GBPROX_GLOB_CTR_RESTART_RESET_SGSN]);
Harald Weltee6599ee2012-06-17 12:25:53 +08001047 gprs_ns_nsip_connect(nsvc->nsi, &nsvc->ip.bts_addr,
1048 nsvc->nsei, nsvc->nsvci);
Harald Welteb778d2c2010-05-12 13:28:25 +00001049 }
1050
Harald Welte5e106d72011-02-06 16:33:29 +01001051 if (!nsvc->remote_end_is_sgsn) {
1052 /* from BSS to SGSN */
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +02001053 peer = gbproxy_peer_by_nsei(cfg, nsvc->nsei);
Harald Welte5e106d72011-02-06 16:33:29 +01001054 if (!peer) {
1055 LOGP(DGPRS, LOGL_NOTICE, "signal %u for unknown peer "
1056 "NSEI=%u/NSVCI=%u\n", signal, nsvc->nsei,
1057 nsvc->nsvci);
1058 return 0;
1059 }
Harald Weltec1c1dd22010-05-11 06:34:24 +02001060 switch (signal) {
1061 case S_NS_RESET:
Harald Weltec1c1dd22010-05-11 06:34:24 +02001062 case S_NS_BLOCK:
Harald Welte5e106d72011-02-06 16:33:29 +01001063 if (!peer->blocked)
1064 break;
1065 LOGP(DGPRS, LOGL_NOTICE, "Converting NS_RESET from "
1066 "NSEI=%u/NSVCI=%u into BSSGP_BVC_BLOCK to SGSN\n",
1067 nsvc->nsei, nsvc->nsvci);
1068 bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK, nsvc->nsei,
1069 peer->bvci, 0);
Harald Weltec1c1dd22010-05-11 06:34:24 +02001070 break;
Harald Welte5e106d72011-02-06 16:33:29 +01001071 }
1072 } else {
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001073 /* Forward this message to all NS-VC to BSS */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001074 struct gprs_ns_inst *nsi = cfg->nsi;
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001075 struct gprs_nsvc *next_nsvc;
1076
1077 llist_for_each_entry(next_nsvc, &nsi->gprs_nsvcs, list) {
1078 if (next_nsvc->remote_end_is_sgsn)
1079 continue;
1080
1081 /* Note that the following does not start the full
1082 * procedures including timer based retransmissions. */
Harald Welte5e106d72011-02-06 16:33:29 +01001083 switch (signal) {
1084 case S_NS_RESET:
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001085 gprs_ns_tx_reset(next_nsvc, nssd->cause);
Harald Welte5e106d72011-02-06 16:33:29 +01001086 break;
1087 case S_NS_BLOCK:
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001088 gprs_ns_tx_block(next_nsvc, nssd->cause);
Harald Welte5e106d72011-02-06 16:33:29 +01001089 break;
1090 case S_NS_UNBLOCK:
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001091 gprs_ns_tx_unblock(next_nsvc);
Harald Welte5e106d72011-02-06 16:33:29 +01001092 break;
1093 }
Harald Weltec1c1dd22010-05-11 06:34:24 +02001094 }
1095 }
1096 return 0;
1097}
1098
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001099void gbprox_reset(struct gbproxy_config *cfg)
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001100{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +02001101 struct gbproxy_peer *peer, *tmp;
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001102
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001103 llist_for_each_entry_safe(peer, tmp, &cfg->bts_peers, list)
Holger Hans Peter Freyther0196c992014-08-04 17:10:08 +02001104 gbproxy_peer_free(peer);
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001105
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001106 rate_ctr_group_free(cfg->ctrg);
1107 gbproxy_init_config(cfg);
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001108}
1109
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +02001110int gbproxy_init_config(struct gbproxy_config *cfg)
Jacob Erlbeck4211d792013-10-24 12:48:23 +02001111{
Jacob Erlbeck0d376712014-08-11 19:12:24 +02001112 struct timespec tp;
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +02001113 INIT_LLIST_HEAD(&cfg->bts_peers);
Holger Hans Peter Freythera7027a02014-08-04 11:19:56 +02001114 cfg->ctrg = rate_ctr_group_alloc(tall_bsc_ctx, &global_ctrg_desc, 0);
Jacob Erlbeck0d376712014-08-11 19:12:24 +02001115 clock_gettime(CLOCK_REALTIME, &tp);
1116 cfg->bss_ptmsi_state = tp.tv_sec + tp.tv_nsec;
1117 cfg->sgsn_tlli_state = tp.tv_sec - tp.tv_nsec;
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +02001118 return 0;
Jacob Erlbeck4211d792013-10-24 12:48:23 +02001119}