blob: 9d2c774ee87a6c871e1a4410f77a1602ecabb143 [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,
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +020078 uint16_t ns_bvci, uint16_t sgsn_nsei);
Jacob Erlbeckd211d1d2014-09-22 13:30:46 +020079static void gbproxy_reset_imsi_acquisition(struct gbproxy_link_info* link_info);
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +020080
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +020081static int check_peer_nsei(struct gbproxy_peer *peer, uint16_t nsei)
Jacob Erlbeckbc555742013-10-18 14:34:55 +020082{
83 if (peer->nsei != nsei) {
84 LOGP(DGPRS, LOGL_NOTICE, "Peer entry doesn't match current NSEI "
85 "BVCI=%u via NSEI=%u (expected NSEI=%u)\n",
86 peer->bvci, nsei, peer->nsei);
87 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_INV_NSEI]);
Jacob Erlbeck64cb9242013-10-24 12:48:56 +020088 return 0;
Jacob Erlbeckbc555742013-10-18 14:34:55 +020089 }
90
Jacob Erlbeck64cb9242013-10-24 12:48:56 +020091 return 1;
Jacob Erlbeckbc555742013-10-18 14:34:55 +020092}
93
Harald Welte69619e32010-05-03 19:05:10 +020094/* strip off the NS header */
95static void strip_ns_hdr(struct msgb *msg)
96{
97 int strip_len = msgb_bssgph(msg) - msg->data;
98 msgb_pull(msg, strip_len);
99}
100
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200101/* Transmit Chapter 9.2.10 Identity Request */
102static void gprs_put_identity_req(struct msgb *msg, uint8_t id_type)
103{
104 struct gsm48_hdr *gh;
105
106 id_type &= GSM_MI_TYPE_MASK;
107
108 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
109 gh->proto_discr = GSM48_PDISC_MM_GPRS;
110 gh->msg_type = GSM48_MT_GMM_ID_REQ;
111 gh->data[0] = id_type;
112}
113
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200114/* Transmit Chapter 9.4.6.2 Detach Accept (mobile originated detach) */
115static void gprs_put_mo_detach_acc(struct msgb *msg)
116{
117 struct gsm48_hdr *gh;
118
119 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
120 gh->proto_discr = GSM48_PDISC_MM_GPRS;
121 gh->msg_type = GSM48_MT_GMM_DETACH_ACK;
122 gh->data[0] = 0; /* no force to standby */
123}
124
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200125static void gprs_push_llc_ui(struct msgb *msg,
126 int is_uplink, unsigned sapi, unsigned nu)
127{
128 const uint8_t e_bit = 0;
129 const uint8_t pm_bit = 1;
130 const uint8_t cr_bit = is_uplink ? 0 : 1;
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200131 uint8_t *llc;
132 uint8_t *fcs_field;
133 uint32_t fcs;
134
135 nu &= 0x01ff; /* 9 Bit */
136
137 llc = msgb_push(msg, 3);
138 llc[0] = (cr_bit << 6) | (sapi & 0x0f);
139 llc[1] = 0xc0 | (nu >> 6); /* UI frame */
140 llc[2] = (nu << 2) | ((e_bit & 1) << 1) | (pm_bit & 1);
141
142 fcs = gprs_llc_fcs(llc, msgb_length(msg));
143 fcs_field = msgb_put(msg, 3);
144 fcs_field[0] = (uint8_t)(fcs >> 0);
145 fcs_field[1] = (uint8_t)(fcs >> 8);
146 fcs_field[2] = (uint8_t)(fcs >> 16);
147}
148
149static void gprs_push_bssgp_dl_unitdata(struct msgb *msg,
150 uint32_t tlli)
151{
152 struct bssgp_ud_hdr *budh;
153 uint8_t *llc = msgb_data(msg);
154 size_t llc_size = msgb_length(msg);
155 const size_t llc_ie_hdr_size = 3;
156 const uint8_t qos_profile[] = {0x00, 0x50, 0x20}; /* hard-coded */
157 const uint8_t lifetime[] = {0x02, 0x58}; /* 6s hard-coded */
158
159 const size_t bssgp_overhead = sizeof(*budh) +
160 TVLV_GROSS_LEN(sizeof(lifetime)) + llc_ie_hdr_size;
161 uint8_t *ie;
162 uint32_t tlli_be = htonl(tlli);
163
164 budh = (struct bssgp_ud_hdr *)msgb_push(msg, bssgp_overhead);
165
166 budh->pdu_type = BSSGP_PDUT_DL_UNITDATA;
167 memcpy(&budh->tlli, &tlli_be, sizeof(budh->tlli));
168 memcpy(&budh->qos_profile, qos_profile, sizeof(budh->qos_profile));
169
170 ie = budh->data;
171 tvlv_put(ie, BSSGP_IE_PDU_LIFETIME, sizeof(lifetime), lifetime);
172 ie += TVLV_GROSS_LEN(sizeof(lifetime));
173
174 /* Note: Add alignment before the LLC IE if inserting other IE */
175
176 *(ie++) = BSSGP_IE_LLC_PDU;
177 *(ie++) = llc_size / 256;
178 *(ie++) = llc_size % 256;
179
180 OSMO_ASSERT(ie == llc);
181
182 msgb_bssgph(msg) = (uint8_t *)budh;
183 msgb_tlli(msg) = tlli;
184}
185
Jacob Erlbeck12496dd2014-08-18 15:41:41 +0200186/* update peer according to the BSS message */
187static void gbprox_update_current_raid(uint8_t *raid_enc,
188 struct gbproxy_peer *peer,
189 const char *log_text)
Jacob Erlbeck67a44452014-05-19 10:14:58 +0200190{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200191 struct gbproxy_patch_state *state = &peer->patch_state;
Jacob Erlbeck67a44452014-05-19 10:14:58 +0200192 const int old_local_mcc = state->local_mcc;
193 const int old_local_mnc = state->local_mnc;
Jacob Erlbeck12496dd2014-08-18 15:41:41 +0200194 struct gprs_ra_id raid;
195
196 if (!raid_enc)
197 return;
198
199 gsm48_parse_ra(&raid, raid_enc);
200
201 /* save source side MCC/MNC */
202 if (!peer->cfg->core_mcc || raid.mcc == peer->cfg->core_mcc) {
203 state->local_mcc = 0;
204 } else {
205 state->local_mcc = raid.mcc;
206 }
207
208 if (!peer->cfg->core_mnc || raid.mnc == peer->cfg->core_mnc) {
209 state->local_mnc = 0;
210 } else {
211 state->local_mnc = raid.mnc;
212 }
213
214 if (old_local_mcc != state->local_mcc ||
215 old_local_mnc != state->local_mnc)
216 LOGP(DGPRS, LOGL_NOTICE,
217 "Patching RAID %sactivated, msg: %s, "
218 "local: %d-%d, core: %d-%d\n",
219 state->local_mcc || state->local_mnc ?
220 "" : "de",
221 log_text,
222 state->local_mcc, state->local_mnc,
223 peer->cfg->core_mcc, peer->cfg->core_mnc);
224}
225
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200226uint32_t gbproxy_make_bss_ptmsi(struct gbproxy_peer *peer,
227 uint32_t sgsn_ptmsi)
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200228{
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200229 uint32_t bss_ptmsi;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200230 int max_retries = 23;
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200231 if (!peer->cfg->patch_ptmsi) {
232 bss_ptmsi = sgsn_ptmsi;
233 } else {
234 do {
235 bss_ptmsi = rand_r(&peer->cfg->bss_ptmsi_state);
236 bss_ptmsi = bss_ptmsi | 0xC0000000;
237
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200238 if (gbproxy_link_info_by_ptmsi(peer, bss_ptmsi))
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200239 bss_ptmsi = GSM_RESERVED_TMSI;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200240 } while (bss_ptmsi == GSM_RESERVED_TMSI && max_retries--);
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200241 }
242
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200243 if (bss_ptmsi == GSM_RESERVED_TMSI)
244 LOGP(DGPRS, LOGL_ERROR, "Failed to allocate a BSS P-TMSI\n");
245
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200246 return bss_ptmsi;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200247}
248
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200249uint32_t gbproxy_make_sgsn_tlli(struct gbproxy_peer *peer,
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200250 struct gbproxy_link_info *link_info,
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200251 uint32_t bss_tlli)
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200252{
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200253 uint32_t sgsn_tlli;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200254 int max_retries = 23;
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200255 if (!peer->cfg->patch_ptmsi) {
256 sgsn_tlli = bss_tlli;
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200257 } else if (link_info->sgsn_tlli.ptmsi != GSM_RESERVED_TMSI) {
258 sgsn_tlli = gprs_tmsi2tlli(link_info->sgsn_tlli.ptmsi,
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200259 TLLI_FOREIGN);
260 } else {
261 do {
262 /* create random TLLI, 0b01111xxx... */
263 sgsn_tlli = rand_r(&peer->cfg->sgsn_tlli_state);
264 sgsn_tlli = (sgsn_tlli & 0x7fffffff) | 0x78000000;
265
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200266 if (gbproxy_link_info_by_any_sgsn_tlli(peer, sgsn_tlli))
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200267 sgsn_tlli = 0;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200268 } while (!sgsn_tlli && max_retries--);
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200269 }
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200270
271 if (!sgsn_tlli)
272 LOGP(DGPRS, LOGL_ERROR, "Failed to allocate an SGSN TLLI\n");
273
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200274 return sgsn_tlli;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200275}
276
Jacob Erlbeckd211d1d2014-09-22 13:30:46 +0200277void gbproxy_reset_link(struct gbproxy_link_info *link_info)
278{
279 gbproxy_reset_imsi_acquisition(link_info);
280}
281
Jacob Erlbeck31591142014-09-03 11:59:48 +0200282/* Returns != 0 iff IMSI acquisition was in progress */
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200283static int gbproxy_restart_imsi_acquisition(struct gbproxy_link_info* link_info)
Jacob Erlbeck31591142014-09-03 11:59:48 +0200284{
285 int in_progress = 0;
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200286 if (!link_info)
Jacob Erlbeck31591142014-09-03 11:59:48 +0200287 return 0;
288
Jacob Erlbeck65750282014-09-22 15:41:21 +0200289 if (link_info->imsi_acq_pending)
Jacob Erlbeck31591142014-09-03 11:59:48 +0200290 in_progress = 1;
291
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200292 gbproxy_link_info_discard_messages(link_info);
293 link_info->imsi_acq_pending = 0;
Jacob Erlbeck31591142014-09-03 11:59:48 +0200294
295 return in_progress;
296}
297
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200298static void gbproxy_reset_imsi_acquisition(struct gbproxy_link_info* link_info)
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200299{
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200300 gbproxy_restart_imsi_acquisition(link_info);
Jacob Erlbeck65750282014-09-22 15:41:21 +0200301 link_info->vu_gen_tx_bss = GBPROXY_INIT_VU_GEN_TX;
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200302}
303
304static void gbproxy_flush_stored_messages(struct gbproxy_peer *peer,
305 struct msgb *msg,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200306 time_t now,
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200307 struct gbproxy_link_info* link_info,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200308 struct gprs_gb_parse_context *parse_ctx)
309{
310 int rc;
311 struct msgb *stored_msg;
312 /* Got identity response with IMSI, assuming the request had
313 * been generated by the gbproxy */
314
315 LOGP(DLLC, LOGL_DEBUG,
316 "NSEI=%d(BSS) IMSI acquisition succeeded, "
317 "flushing stored messages\n",
318 msgb_nsei(msg));
319
320 /* Patch and flush stored messages towards the SGSN */
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200321 while ((stored_msg = msgb_dequeue(&link_info->stored_msgs))) {
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200322 struct gprs_gb_parse_context tmp_parse_ctx = {0};
323 tmp_parse_ctx.to_bss = 0;
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200324 tmp_parse_ctx.peer_nsei = msgb_nsei(stored_msg);
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200325 int len_change = 0;
326
327 gprs_gb_parse_bssgp(msgb_bssgph(stored_msg),
328 msgb_bssgp_len(stored_msg),
329 &tmp_parse_ctx);
330 gbproxy_patch_bssgp(msg, msgb_bssgph(stored_msg),
331 msgb_bssgp_len(stored_msg),
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200332 peer, link_info, &len_change,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200333 &tmp_parse_ctx);
334
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200335 gbproxy_update_link_state_after(peer, link_info, now,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200336 &tmp_parse_ctx);
337
338 rc = gbprox_relay2sgsn(peer->cfg, stored_msg,
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200339 msgb_bvci(msg), link_info->sgsn_nsei);
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200340
341 if (rc < 0)
342 LOGP(DLLC, LOGL_ERROR,
343 "NSEI=%d(BSS) failed to send stored message "
344 "(%s)\n",
345 msgb_nsei(msg),
346 parse_ctx->llc_msg_name ?
347 parse_ctx->llc_msg_name : "BSSGP");
348 msgb_free(stored_msg);
349 }
350}
351
Jacob Erlbeck65750282014-09-22 15:41:21 +0200352static int gbproxy_gsm48_to_peer(struct gbproxy_peer *peer,
353 struct gbproxy_link_info* link_info,
354 uint16_t bvci,
355 struct msgb *msg /* Takes msg ownership */)
356{
357 int rc;
358
359 /* Workaround to avoid N(U) collisions and to enable a restart
360 * of the IMSI acquisition procedure. This will work unless the
361 * SGSN has an initial V(UT) within [256-32, 256+n_retries]
362 * (see GSM 04.64, 8.4.2). */
363 gprs_push_llc_ui(msg, 0, GPRS_SAPI_GMM, link_info->vu_gen_tx_bss);
364 link_info->vu_gen_tx_bss = (link_info->vu_gen_tx_bss + 1) % 512;
365
366 gprs_push_bssgp_dl_unitdata(msg, link_info->tlli.current);
367 rc = gbprox_relay2peer(msg, peer, bvci);
368 msgb_free(msg);
369 return rc;
370}
371
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200372static void gbproxy_acquire_imsi(struct gbproxy_peer *peer,
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200373 struct gbproxy_link_info* link_info,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200374 uint16_t bvci)
375{
376 struct msgb *idreq_msg;
377
378 /* Send IDENT REQ */
379 idreq_msg = gsm48_msgb_alloc();
380 gprs_put_identity_req(idreq_msg, GSM_MI_TYPE_IMSI);
Jacob Erlbeck65750282014-09-22 15:41:21 +0200381 gbproxy_gsm48_to_peer(peer, link_info, bvci, idreq_msg);
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200382}
383
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200384static void gbproxy_tx_detach_acc(struct gbproxy_peer *peer,
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200385 struct gbproxy_link_info* link_info,
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200386 uint16_t bvci)
387{
388 struct msgb *detacc_msg;
389
390 /* Send DETACH ACC */
391 detacc_msg = gsm48_msgb_alloc();
392 gprs_put_mo_detach_acc(detacc_msg);
Jacob Erlbeck65750282014-09-22 15:41:21 +0200393 gbproxy_gsm48_to_peer(peer, link_info, bvci, detacc_msg);
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200394}
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200395
396/* Return != 0 iff msg still needs to be processed */
397static int gbproxy_imsi_acquisition(struct gbproxy_peer *peer,
398 struct msgb *msg,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200399 time_t now,
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200400 struct gbproxy_link_info* link_info,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200401 struct gprs_gb_parse_context *parse_ctx)
402{
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200403 struct msgb *stored_msg;
404
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200405 if (!link_info)
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200406 return 1;
407
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200408 if (!link_info->imsi_acq_pending && link_info->imsi_len > 0)
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200409 return 1;
410
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200411 if (parse_ctx->g48_hdr)
412 switch (parse_ctx->g48_hdr->msg_type)
413 {
Jacob Erlbecke27ab912014-09-18 10:08:27 +0200414 case GSM48_MT_GMM_RA_UPD_REQ:
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200415 case GSM48_MT_GMM_ATTACH_REQ:
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200416 if (gbproxy_restart_imsi_acquisition(link_info)) {
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200417 LOGP(DLLC, LOGL_INFO,
418 "NSEI=%d(BSS) IMSI acquisition was in progress "
Jacob Erlbecke27ab912014-09-18 10:08:27 +0200419 "when receiving an %s.\n",
420 msgb_nsei(msg), parse_ctx->llc_msg_name);
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200421 }
422 break;
423 case GSM48_MT_GMM_DETACH_REQ:
424 /* Nothing has been sent to the SGSN yet */
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200425 if (link_info->imsi_acq_pending) {
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200426 LOGP(DLLC, LOGL_INFO,
427 "NSEI=%d(BSS) IMSI acquisition was in progress "
428 "when receiving a DETACH_REQ.\n",
429 msgb_nsei(msg));
430 }
431 if (!parse_ctx->invalidate_tlli) {
432 LOGP(DLLC, LOGL_INFO,
433 "NSEI=%d(BSS) IMSI not yet acquired, "
434 "faking a DETACH_ACC.\n",
435 msgb_nsei(msg));
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200436 gbproxy_tx_detach_acc(peer, link_info, msgb_bvci(msg));
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200437 parse_ctx->invalidate_tlli = 1;
438 }
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200439 gbproxy_reset_imsi_acquisition(link_info);
440 gbproxy_update_link_state_after(peer, link_info, now,
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200441 parse_ctx);
442 return 0;
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200443 }
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200444
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200445 if (link_info->imsi_acq_pending && link_info->imsi_len > 0) {
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200446 int is_ident_resp =
447 parse_ctx->g48_hdr &&
448 parse_ctx->g48_hdr->proto_discr == GSM48_PDISC_MM_GPRS &&
449 parse_ctx->g48_hdr->msg_type == GSM48_MT_GMM_ID_RESP;
450
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200451 /* The IMSI is now available */
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200452 gbproxy_flush_stored_messages(peer, msg, now, link_info,
Jacob Erlbeck9a6b7632014-09-19 13:23:21 +0200453 parse_ctx);
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200454
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200455 gbproxy_reset_imsi_acquisition(link_info);
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200456
457 /* This message is most probably the response to the ident
458 * request sent by gbproxy_acquire_imsi(). Don't forward it to
459 * the SGSN. */
460 return !is_ident_resp;
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200461 }
462
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200463 /* The message cannot be processed since the IMSI is still missing */
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200464
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200465 /* Enqueue unpatched messages */
466 LOGP(DLLC, LOGL_INFO,
467 "NSEI=%d(BSS) IMSI acquisition in progress, "
468 "storing message (%s)\n",
469 msgb_nsei(msg),
470 parse_ctx->llc_msg_name ? parse_ctx->llc_msg_name : "BSSGP");
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200471
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200472 stored_msg = gprs_msgb_copy(msg, "process_bssgp_ul");
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200473 msgb_enqueue(&link_info->stored_msgs, stored_msg);
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200474
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200475 if (!link_info->imsi_acq_pending) {
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200476 LOGP(DLLC, LOGL_INFO,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200477 "NSEI=%d(BSS) IMSI is required but not available, "
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200478 "initiating identification procedure (%s)\n",
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200479 msgb_nsei(msg),
480 parse_ctx->llc_msg_name ? parse_ctx->llc_msg_name : "BSSGP");
481
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200482 gbproxy_acquire_imsi(peer, link_info, msgb_bvci(msg));
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200483
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200484 /* There is no explicit retransmission handling, the
485 * implementation relies on the MS doing proper retransmissions
486 * of the triggering message instead */
487
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200488 link_info->imsi_acq_pending = 1;
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200489 }
490
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200491 return 0;
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200492}
493
494struct gbproxy_peer *gbproxy_find_peer(struct gbproxy_config *cfg,
495 struct msgb *msg,
496 struct gprs_gb_parse_context *parse_ctx)
497{
498 struct gbproxy_peer *peer = NULL;
499
500 if (msgb_bvci(msg) >= 2)
501 peer = gbproxy_peer_by_bvci(cfg, msgb_bvci(msg));
502
503 if (!peer && !parse_ctx->to_bss)
504 peer = gbproxy_peer_by_nsei(cfg, msgb_nsei(msg));
505
506 if (!peer)
507 peer = gbproxy_peer_by_bssgp_tlv(cfg, &parse_ctx->bssgp_tp);
508
509 if (!peer) {
510 LOGP(DLLC, LOGL_INFO,
511 "NSEI=%d(%s) patching: didn't find peer for message, "
512 "PDU %d\n",
513 msgb_nsei(msg), parse_ctx->to_bss ? "BSS" : "SGSN",
514 parse_ctx->pdu_type);
515 /* Increment counter */
516 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_PATCH_PEER_ERR]);
517 }
518 return peer;
519}
520
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200521/* patch BSSGP message */
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200522static int gbprox_process_bssgp_ul(struct gbproxy_config *cfg,
523 struct msgb *msg,
524 struct gbproxy_peer *peer)
Jacob Erlbeckc8128822014-08-07 16:07:24 +0200525{
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200526 struct gprs_gb_parse_context parse_ctx = {0};
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200527 int rc;
Jacob Erlbeckc8128822014-08-07 16:07:24 +0200528 int len_change = 0;
Jacob Erlbeck7b821d02014-08-08 08:37:37 +0200529 time_t now;
Jacob Erlbeckc6807c42014-09-19 16:34:01 +0200530 struct timespec ts = {0,};
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200531 struct gbproxy_link_info *link_info = NULL;
Jacob Erlbeckcabd24b2014-08-27 12:51:07 +0200532 uint32_t sgsn_nsei = cfg->nsip_sgsn_nsei;
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200533
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200534 if (!cfg->core_mcc && !cfg->core_mnc && !cfg->core_apn &&
Jacob Erlbeck1abfdc22014-09-04 11:42:08 +0200535 !cfg->acquire_imsi && !cfg->patch_ptmsi && !cfg->route_to_sgsn2)
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200536 return 1;
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200537
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200538 parse_ctx.to_bss = 0;
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200539 parse_ctx.peer_nsei = msgb_nsei(msg);
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200540
541 /* Parse BSSGP/LLC */
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200542 rc = gprs_gb_parse_bssgp(msgb_bssgph(msg), msgb_bssgp_len(msg),
543 &parse_ctx);
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200544
Jacob Erlbeckb4f0e802014-10-09 12:28:15 +0200545 if (!rc && !parse_ctx.need_decryption) {
546 LOGP(DGPRS, LOGL_ERROR,
547 "NSEI=%u(BSS) patching: failed to parse invalid %s message\n",
548 msgb_nsei(msg), gprs_gb_message_name(&parse_ctx, "NS_UNITDATA"));
549 gprs_gb_log_parse_context(LOGL_NOTICE, &parse_ctx, "NS_UNITDATA");
550 LOGP(DGPRS, LOGL_NOTICE,
551 "NSEI=%u(BSS) invalid message was: %s\n",
552 msgb_nsei(msg), msgb_hexdump(msg));
553 return 0;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200554 }
555
556 /* Get peer */
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200557 if (!peer)
558 peer = gbproxy_find_peer(cfg, msg, &parse_ctx);
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200559
560 if (!peer)
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200561 return 0;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200562
Jacob Erlbeckc6807c42014-09-19 16:34:01 +0200563
564 clock_gettime(CLOCK_MONOTONIC, &ts);
565 now = ts.tv_sec;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200566
Jacob Erlbeck12496dd2014-08-18 15:41:41 +0200567 gbprox_update_current_raid(parse_ctx.bssgp_raid_enc, peer,
568 parse_ctx.llc_msg_name);
569
Jacob Erlbeck1c407aa2014-10-09 12:16:17 +0200570 gprs_gb_log_parse_context(LOGL_DEBUG, &parse_ctx, "NS_UNITDATA");
Jacob Erlbeck31591142014-09-03 11:59:48 +0200571
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200572 link_info = gbproxy_update_link_state_ul(peer, now, &parse_ctx);
Jacob Erlbeck31591142014-09-03 11:59:48 +0200573
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200574 if (parse_ctx.g48_hdr) {
575 switch (parse_ctx.g48_hdr->msg_type) {
576 case GSM48_MT_GMM_ATTACH_REQ:
577 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_ATTACH_REQS]);
578 break;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200579
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200580 default:
581 break;
582 }
583 }
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200584
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200585 if (link_info && cfg->route_to_sgsn2) {
586 if (cfg->acquire_imsi && link_info->imsi_len == 0)
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200587 sgsn_nsei = 0xffff;
Jacob Erlbeckb36032c2014-09-25 13:21:48 +0200588 else if (gbproxy_imsi_matches(cfg, GBPROX_MATCH_ROUTING,
Jacob Erlbeck9a83d7a2014-09-25 11:17:31 +0200589 link_info))
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200590 sgsn_nsei = cfg->nsip_sgsn2_nsei;
Jacob Erlbeckcabd24b2014-08-27 12:51:07 +0200591 }
592
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200593 if (link_info)
594 link_info->sgsn_nsei = sgsn_nsei;
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200595
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200596 /* Handle IMSI acquisition */
597 if (cfg->acquire_imsi) {
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200598 rc = gbproxy_imsi_acquisition(peer, msg, now, link_info,
Jacob Erlbeck9a6b7632014-09-19 13:23:21 +0200599 &parse_ctx);
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200600 if (rc <= 0)
601 return rc;
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200602 }
603
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200604 gbproxy_patch_bssgp(msg, msgb_bssgph(msg), msgb_bssgp_len(msg),
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200605 peer, link_info, &len_change, &parse_ctx);
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200606
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200607 gbproxy_update_link_state_after(peer, link_info, now, &parse_ctx);
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200608
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200609 if (sgsn_nsei != cfg->nsip_sgsn_nsei) {
Jacob Erlbeckcabd24b2014-08-27 12:51:07 +0200610 /* Send message directly to the selected SGSN */
611 rc = gbprox_relay2sgsn(cfg, msg, msgb_bvci(msg), sgsn_nsei);
612 /* Don't let the calling code handle the transmission */
613 return 0;
614 }
615
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200616 return 1;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200617}
618
619/* patch BSSGP message to use core_mcc/mnc on the SGSN side */
620static void gbprox_process_bssgp_dl(struct gbproxy_config *cfg,
621 struct msgb *msg,
622 struct gbproxy_peer *peer)
623{
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200624 struct gprs_gb_parse_context parse_ctx = {0};
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200625 int rc;
626 int len_change = 0;
627 time_t now;
Jacob Erlbeckc6807c42014-09-19 16:34:01 +0200628 struct timespec ts = {0,};
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200629 struct gbproxy_link_info *link_info = NULL;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200630
Jacob Erlbeck1abfdc22014-09-04 11:42:08 +0200631 if (!cfg->core_mcc && !cfg->core_mnc && !cfg->core_apn &&
632 !cfg->acquire_imsi && !cfg->patch_ptmsi && !cfg->route_to_sgsn2)
633 return;
634
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200635 parse_ctx.to_bss = 1;
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200636 parse_ctx.peer_nsei = msgb_nsei(msg);
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200637
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200638 rc = gprs_gb_parse_bssgp(msgb_bssgph(msg), msgb_bssgp_len(msg),
639 &parse_ctx);
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200640
Jacob Erlbeckb4f0e802014-10-09 12:28:15 +0200641 if (!rc && !parse_ctx.need_decryption) {
642 LOGP(DGPRS, LOGL_ERROR,
643 "NSEI=%u(SGSN) patching: failed to parse invalid %s message\n",
644 msgb_nsei(msg), gprs_gb_message_name(&parse_ctx, "NS_UNITDATA"));
645 gprs_gb_log_parse_context(LOGL_NOTICE, &parse_ctx, "NS_UNITDATA");
646 LOGP(DGPRS, LOGL_NOTICE,
647 "NSEI=%u(SGSN) invalid message was: %s\n",
648 msgb_nsei(msg), msgb_hexdump(msg));
649 return;
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200650 }
Jacob Erlbeck67a44452014-05-19 10:14:58 +0200651
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200652 /* Get peer */
653 if (!peer)
654 peer = gbproxy_find_peer(cfg, msg, &parse_ctx);
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200655
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200656 if (!peer)
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200657 return;
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200658
Jacob Erlbeckc6807c42014-09-19 16:34:01 +0200659 clock_gettime(CLOCK_MONOTONIC, &ts);
660 now = ts.tv_sec;
Jacob Erlbeck7b821d02014-08-08 08:37:37 +0200661
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200662 if (parse_ctx.g48_hdr) {
663 switch (parse_ctx.g48_hdr->msg_type) {
664 case GSM48_MT_GMM_ATTACH_REJ:
665 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_ATTACH_REJS]);
666 break;
Jacob Erlbeck91fb6802014-05-28 10:59:10 +0200667
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200668 default:
669 break;
670 }
671 }
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200672
Jacob Erlbeck1c407aa2014-10-09 12:16:17 +0200673 gprs_gb_log_parse_context(LOGL_DEBUG, &parse_ctx, "NS_UNITDATA");
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200674
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200675 link_info = gbproxy_update_link_state_dl(peer, now, &parse_ctx);
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200676
677 gbproxy_patch_bssgp(msg, msgb_bssgph(msg), msgb_bssgp_len(msg),
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200678 peer, link_info, &len_change, &parse_ctx);
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200679
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200680 gbproxy_update_link_state_after(peer, link_info, now, &parse_ctx);
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200681
Jacob Erlbeck03551e52014-06-27 19:56:05 +0200682 return;
Jacob Erlbeck67a44452014-05-19 10:14:58 +0200683}
684
Harald Welte9f75c352010-04-30 20:26:32 +0200685/* feed a message down the NS-VC associated with the specified peer */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200686static int gbprox_relay2sgsn(struct gbproxy_config *cfg, struct msgb *old_msg,
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200687 uint16_t ns_bvci, uint16_t sgsn_nsei)
Harald Welte672f5c42010-05-03 18:54:58 +0200688{
Harald Welte39d0bb52010-05-12 18:10:25 +0000689 /* create a copy of the message so the old one can
690 * be free()d safely when we return from gbprox_rcvmsg() */
Holger Hans Peter Freyther7127b022014-08-04 11:52:52 +0200691 struct msgb *msg = gprs_msgb_copy(old_msg, "msgb_relay2sgsn");
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200692 int rc;
Harald Welte39d0bb52010-05-12 18:10:25 +0000693
Harald Weltee9ea2692010-05-11 20:20:13 +0200694 DEBUGP(DGPRS, "NSEI=%u proxying BTS->SGSN (NS_BVCI=%u, NSEI=%u)\n",
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200695 msgb_nsei(msg), ns_bvci, sgsn_nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200696
Harald Welte672f5c42010-05-03 18:54:58 +0200697 msgb_bvci(msg) = ns_bvci;
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200698 msgb_nsei(msg) = sgsn_nsei;
Harald Welte672f5c42010-05-03 18:54:58 +0200699
Harald Welte69619e32010-05-03 19:05:10 +0200700 strip_ns_hdr(msg);
701
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200702 rc = gprs_ns_sendmsg(bssgp_nsi, msg);
703 if (rc < 0)
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200704 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_TX_ERR_SGSN]);
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200705
706 return rc;
Harald Welte672f5c42010-05-03 18:54:58 +0200707}
708
Harald Welte672f5c42010-05-03 18:54:58 +0200709/* feed a message down the NS-VC associated with the specified peer */
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200710static int gbprox_relay2peer(struct msgb *old_msg, struct gbproxy_peer *peer,
Harald Welte9f75c352010-04-30 20:26:32 +0200711 uint16_t ns_bvci)
712{
Harald Welte39d0bb52010-05-12 18:10:25 +0000713 /* create a copy of the message so the old one can
714 * be free()d safely when we return from gbprox_rcvmsg() */
Holger Hans Peter Freyther7127b022014-08-04 11:52:52 +0200715 struct msgb *msg = gprs_msgb_copy(old_msg, "msgb_relay2peer");
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200716 int rc;
Harald Welte39d0bb52010-05-12 18:10:25 +0000717
Harald Welte0ab535b2010-05-13 10:34:56 +0200718 DEBUGP(DGPRS, "NSEI=%u proxying SGSN->BSS (NS_BVCI=%u, NSEI=%u)\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200719 msgb_nsei(msg), ns_bvci, peer->nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200720
Harald Welte9f75c352010-04-30 20:26:32 +0200721 msgb_bvci(msg) = ns_bvci;
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200722 msgb_nsei(msg) = peer->nsei;
Harald Welte9f75c352010-04-30 20:26:32 +0200723
Harald Welte0ab535b2010-05-13 10:34:56 +0200724 /* Strip the old NS header, it will be replaced with a new one */
Harald Welte69619e32010-05-03 19:05:10 +0200725 strip_ns_hdr(msg);
726
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200727 rc = gprs_ns_sendmsg(bssgp_nsi, msg);
728 if (rc < 0)
729 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_TX_ERR]);
730
731 return rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200732}
733
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200734static int block_unblock_peer(struct gbproxy_config *cfg, uint16_t ptp_bvci, uint8_t pdu_type)
Harald Welte36f98d92011-02-06 13:09:29 +0100735{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200736 struct gbproxy_peer *peer;
Harald Welte36f98d92011-02-06 13:09:29 +0100737
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200738 peer = gbproxy_peer_by_bvci(cfg, ptp_bvci);
Harald Welte36f98d92011-02-06 13:09:29 +0100739 if (!peer) {
740 LOGP(DGPRS, LOGL_ERROR, "BVCI=%u: Cannot find BSS\n",
741 ptp_bvci);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200742 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_BVCI]);
Harald Welte36f98d92011-02-06 13:09:29 +0100743 return -ENOENT;
744 }
745
746 switch (pdu_type) {
747 case BSSGP_PDUT_BVC_BLOCK_ACK:
748 peer->blocked = 1;
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200749 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_BLOCKED]);
Harald Welte36f98d92011-02-06 13:09:29 +0100750 break;
751 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
752 peer->blocked = 0;
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200753 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_UNBLOCKED]);
Harald Welte36f98d92011-02-06 13:09:29 +0100754 break;
755 default:
756 break;
757 }
758 return 0;
759}
760
Harald Welte9f75c352010-04-30 20:26:32 +0200761/* Send a message to a peer identified by ptp_bvci but using ns_bvci
762 * in the NS hdr */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200763static int gbprox_relay2bvci(struct gbproxy_config *cfg, struct msgb *msg, uint16_t ptp_bvci,
Harald Welte9f75c352010-04-30 20:26:32 +0200764 uint16_t ns_bvci)
765{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200766 struct gbproxy_peer *peer;
Harald Welte9f75c352010-04-30 20:26:32 +0200767
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200768 peer = gbproxy_peer_by_bvci(cfg, ptp_bvci);
Harald Welte1c77c6e2010-05-03 21:37:11 +0200769 if (!peer) {
Harald Welte4cf12e92010-05-13 14:14:56 +0200770 LOGP(DGPRS, LOGL_ERROR, "BVCI=%u: Cannot find BSS\n",
Harald Welte1c77c6e2010-05-03 21:37:11 +0200771 ptp_bvci);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200772 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_BVCI]);
Harald Welte9f75c352010-04-30 20:26:32 +0200773 return -ENOENT;
Harald Welte1c77c6e2010-05-03 21:37:11 +0200774 }
Harald Welte9f75c352010-04-30 20:26:32 +0200775
Harald Welte69619e32010-05-03 19:05:10 +0200776 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200777}
778
Harald Welteb1fd9022012-06-17 12:16:31 +0800779int bssgp_prim_cb(struct osmo_prim_hdr *oph, void *ctx)
780{
781 return 0;
782}
783
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200784/* Receive an incoming PTP message from a BSS-side NS-VC */
785static int gbprox_rx_ptp_from_bss(struct gbproxy_config *cfg,
786 struct msgb *msg, uint16_t nsei,
787 uint16_t nsvci, uint16_t ns_bvci)
788{
789 struct gbproxy_peer *peer;
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200790 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
791 uint8_t pdu_type = bgph->pdu_type;
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200792 int rc;
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200793
794 peer = gbproxy_peer_by_bvci(cfg, ns_bvci);
795
Jacob Erlbeck43b8f9f2014-10-02 14:56:44 +0200796 check_peer_nsei(peer, nsei);
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200797 rc = gbprox_process_bssgp_ul(cfg, msg, peer);
Jacob Erlbeck43b8f9f2014-10-02 14:56:44 +0200798 if (!rc) {
799 if (!peer) {
800 LOGP(DGPRS, LOGL_NOTICE, "Didn't find peer for "
801 "BVCI=%u for PTP message from NSVC=%u/NSEI=%u (BSS)\n",
802 ns_bvci, nsvci, nsei);
803 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI,
804 &ns_bvci, msg);
805 }
806
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200807 return 0;
Jacob Erlbeck43b8f9f2014-10-02 14:56:44 +0200808 }
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200809
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200810 switch (pdu_type) {
811 case BSSGP_PDUT_FLOW_CONTROL_BVC:
812 if (!cfg->route_to_sgsn2)
813 break;
814
815 /* Send a copy to the secondary SGSN */
816 gbprox_relay2sgsn(cfg, msg, ns_bvci, cfg->nsip_sgsn2_nsei);
817 break;
818 default:
819 break;
820 }
821
822
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200823 return gbprox_relay2sgsn(cfg, msg, ns_bvci, cfg->nsip_sgsn_nsei);
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200824}
825
826/* Receive an incoming PTP message from a SGSN-side NS-VC */
827static int gbprox_rx_ptp_from_sgsn(struct gbproxy_config *cfg,
828 struct msgb *msg, uint16_t nsei,
829 uint16_t nsvci, uint16_t ns_bvci)
830{
831 struct gbproxy_peer *peer;
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200832 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
833 uint8_t pdu_type = bgph->pdu_type;
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200834
835 peer = gbproxy_peer_by_bvci(cfg, ns_bvci);
836
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200837 /* Send status messages before patching */
838
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200839 if (!peer) {
840 LOGP(DGPRS, LOGL_INFO, "Didn't find peer for "
841 "BVCI=%u for message from NSVC=%u/NSEI=%u (SGSN)\n",
842 ns_bvci, nsvci, nsei);
843 rate_ctr_inc(&cfg->ctrg->
844 ctr[GBPROX_GLOB_CTR_INV_BVCI]);
845 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI,
846 &ns_bvci, msg);
847 }
848
849 if (peer->blocked) {
850 LOGP(DGPRS, LOGL_NOTICE, "Dropping PDU for "
851 "blocked BVCI=%u via NSVC=%u/NSEI=%u\n",
852 ns_bvci, nsvci, nsei);
853 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_DROPPED]);
Jacob Erlbeck17b42b82014-08-29 12:20:15 +0200854 return bssgp_tx_status(BSSGP_CAUSE_BVCI_BLOCKED, &ns_bvci, msg);
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200855 }
856
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200857 switch (pdu_type) {
858 case BSSGP_PDUT_FLOW_CONTROL_BVC_ACK:
859 case BSSGP_PDUT_BVC_BLOCK_ACK:
860 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
861 if (cfg->route_to_sgsn2 && nsei == cfg->nsip_sgsn2_nsei)
862 /* Hide ACKs from the secondary SGSN, the primary SGSN
863 * is responsible to send them. */
864 return 0;
865 break;
866 default:
867 break;
868 }
869
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200870 /* Optionally patch the message */
871 gbprox_process_bssgp_dl(cfg, msg, peer);
872
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200873 return gbprox_relay2peer(msg, peer, ns_bvci);
874}
875
Harald Welte9f75c352010-04-30 20:26:32 +0200876/* Receive an incoming signalling message from a BSS-side NS-VC */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200877static int gbprox_rx_sig_from_bss(struct gbproxy_config *cfg,
878 struct msgb *msg, uint16_t nsei,
Harald Welte9f75c352010-04-30 20:26:32 +0200879 uint16_t ns_bvci)
880{
Harald Welteca3620a2010-05-03 16:30:59 +0200881 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200882 struct tlv_parsed tp;
883 uint8_t pdu_type = bgph->pdu_type;
Harald Welteca3620a2010-05-03 16:30:59 +0200884 int data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200885 struct gbproxy_peer *from_peer = NULL;
Harald Welte70f38d22010-05-01 12:10:57 +0200886 struct gprs_ra_id raid;
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200887 int copy_to_sgsn2 = 0;
Jacob Erlbeck59300642014-09-08 09:04:01 +0200888 int rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200889
Harald Weltec471d3d2011-02-06 17:13:12 +0100890 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Welte4cf12e92010-05-13 14:14:56 +0200891 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u BVCI=%u is not signalling\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200892 nsei, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200893 return -EINVAL;
894 }
895
896 /* we actually should never see those two for BVCI == 0, but double-check
897 * just to make sure */
898 if (pdu_type == BSSGP_PDUT_UL_UNITDATA ||
899 pdu_type == BSSGP_PDUT_DL_UNITDATA) {
Harald Welte44c48302010-05-03 19:22:32 +0200900 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u UNITDATA not allowed in "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200901 "signalling\n", nsei);
Harald Welte9f75c352010-04-30 20:26:32 +0200902 return -EINVAL;
903 }
904
905 bssgp_tlv_parse(&tp, bgph->data, data_len);
906
907 switch (pdu_type) {
908 case BSSGP_PDUT_SUSPEND:
909 case BSSGP_PDUT_RESUME:
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200910 /* We implement RAI snooping during SUSPEND/RESUME, since it
911 * establishes a relationsip between BVCI/peer and the routeing
912 * area identification. The snooped information is then used
913 * for routing the {SUSPEND,RESUME}_[N]ACK back to the correct
914 * BSSGP */
Harald Welte9f75c352010-04-30 20:26:32 +0200915 if (!TLVP_PRESENT(&tp, BSSGP_IE_ROUTEING_AREA))
916 goto err_mand_ie;
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200917 from_peer = gbproxy_peer_by_nsei(cfg, nsei);
Harald Welte9f75c352010-04-30 20:26:32 +0200918 if (!from_peer)
919 goto err_no_peer;
Harald Welte1174c082010-05-12 00:07:29 +0200920 memcpy(from_peer->ra, TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA),
921 sizeof(from_peer->ra));
Harald Welte7fc98222010-05-11 10:15:42 +0200922 gsm48_parse_ra(&raid, from_peer->ra);
Harald Welte4cf12e92010-05-13 14:14:56 +0200923 LOGP(DGPRS, LOGL_INFO, "NSEI=%u BSSGP SUSPEND/RESUME "
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200924 "RAI snooping: RAI %u-%u-%u-%u behind BVCI=%u\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200925 nsei, raid.mcc, raid.mnc, raid.lac,
926 raid.rac , from_peer->bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200927 /* FIXME: This only supports one BSS per RA */
928 break;
Harald Welte44c48302010-05-03 19:22:32 +0200929 case BSSGP_PDUT_BVC_RESET:
930 /* If we receive a BVC reset on the signalling endpoint, we
931 * don't want the SGSN to reset, as the signalling endpoint
932 * is common for all point-to-point BVCs (and thus all BTS) */
933 if (TLVP_PRESENT(&tp, BSSGP_IE_BVCI)) {
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +0200934 uint16_t bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Harald Welte72953b82010-05-12 00:20:41 +0200935 LOGP(DGPRS, LOGL_INFO, "NSEI=%u Rx BVC RESET (BVCI=%u)\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200936 nsei, bvci);
Harald Welte44c48302010-05-03 19:22:32 +0200937 if (bvci == 0) {
938 /* FIXME: only do this if SGSN is alive! */
Harald Weltee9ea2692010-05-11 20:20:13 +0200939 LOGP(DGPRS, LOGL_INFO, "NSEI=%u Tx fake "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200940 "BVC RESET ACK of BVCI=0\n", nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200941 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_RESET_ACK,
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200942 nsei, 0, ns_bvci);
Harald Welte1174c082010-05-12 00:07:29 +0200943 }
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200944 from_peer = gbproxy_peer_by_bvci(cfg, bvci);
Harald Welte1174c082010-05-12 00:07:29 +0200945 if (!from_peer) {
Harald Welte1c77c6e2010-05-03 21:37:11 +0200946 /* if a PTP-BVC is reset, and we don't know that
947 * PTP-BVCI yet, we should allocate a new peer */
948 LOGP(DGPRS, LOGL_INFO, "Allocationg new peer for "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200949 "BVCI=%u via NSEI=%u\n", bvci, nsei);
Holger Hans Peter Freyther0196c992014-08-04 17:10:08 +0200950 from_peer = gbproxy_peer_alloc(cfg, bvci);
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200951 from_peer->nsei = nsei;
Harald Welte44c48302010-05-03 19:22:32 +0200952 }
Jacob Erlbeck64cb9242013-10-24 12:48:56 +0200953
954 if (!check_peer_nsei(from_peer, nsei))
955 from_peer->nsei = nsei;
956
Harald Welte1174c082010-05-12 00:07:29 +0200957 if (TLVP_PRESENT(&tp, BSSGP_IE_CELL_ID)) {
958 struct gprs_ra_id raid;
959 /* We have a Cell Identifier present in this
960 * PDU, this means we can extend our local
961 * state information about this particular cell
962 * */
963 memcpy(from_peer->ra,
964 TLVP_VAL(&tp, BSSGP_IE_CELL_ID),
965 sizeof(from_peer->ra));
966 gsm48_parse_ra(&raid, from_peer->ra);
967 LOGP(DGPRS, LOGL_INFO, "NSEI=%u/BVCI=%u "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200968 "Cell ID %u-%u-%u-%u\n", nsei,
Harald Welte1174c082010-05-12 00:07:29 +0200969 bvci, raid.mcc, raid.mnc, raid.lac,
970 raid.rac);
971 }
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200972 if (cfg->route_to_sgsn2)
973 copy_to_sgsn2 = 1;
Harald Welte44c48302010-05-03 19:22:32 +0200974 }
975 break;
Harald Welte9f75c352010-04-30 20:26:32 +0200976 }
977
Harald Weltee9ea2692010-05-11 20:20:13 +0200978 /* Normally, we can simply pass on all signalling messages from BSS to
979 * SGSN */
Jacob Erlbeck59300642014-09-08 09:04:01 +0200980 rc = gbprox_process_bssgp_ul(cfg, msg, from_peer);
981 if (!rc)
982 return 0;
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200983
984 if (copy_to_sgsn2)
985 gbprox_relay2sgsn(cfg, msg, ns_bvci, cfg->nsip_sgsn2_nsei);
986
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200987 return gbprox_relay2sgsn(cfg, msg, ns_bvci, cfg->nsip_sgsn_nsei);
Harald Welte9f75c352010-04-30 20:26:32 +0200988err_no_peer:
Jacob Erlbeckc5085f92013-10-18 13:04:48 +0200989 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) cannot find peer based on NSEI\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200990 nsei);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200991 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_NSEI]);
Jacob Erlbeck17b42b82014-08-29 12:20:15 +0200992 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200993err_mand_ie:
Harald Welte0a4050c2010-05-11 10:01:17 +0200994 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) missing mandatory RA IE\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200995 nsei);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200996 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_BSS]);
Harald Welte0a4050c2010-05-11 10:01:17 +0200997 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200998}
999
1000/* Receive paging request from SGSN, we need to relay to proper BSS */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001001static int gbprox_rx_paging(struct gbproxy_config *cfg, struct msgb *msg, struct tlv_parsed *tp,
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001002 uint32_t nsei, uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +02001003{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +02001004 struct gbproxy_peer *peer = NULL;
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001005 int errctr = GBPROX_GLOB_CTR_PROTO_ERR_SGSN;
Harald Welte9f75c352010-04-30 20:26:32 +02001006
Harald Welte4cf12e92010-05-13 14:14:56 +02001007 LOGP(DGPRS, LOGL_INFO, "NSEI=%u(SGSN) BSSGP PAGING ",
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001008 nsei);
Harald Welte9f75c352010-04-30 20:26:32 +02001009 if (TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +02001010 uint16_t bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
Harald Welte4cf12e92010-05-13 14:14:56 +02001011 LOGPC(DGPRS, LOGL_INFO, "routing by BVCI to peer BVCI=%u\n",
1012 bvci);
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001013 errctr = GBPROX_GLOB_CTR_OTHER_ERR;
Harald Welte9f75c352010-04-30 20:26:32 +02001014 } else if (TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA)) {
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +02001015 peer = gbproxy_peer_by_rai(cfg, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001016 LOGPC(DGPRS, LOGL_INFO, "routing by RAI to peer BVCI=%u\n",
Holger Hans Peter Freyther62eaf542010-06-08 16:30:24 +08001017 peer ? peer->bvci : -1);
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001018 errctr = GBPROX_GLOB_CTR_INV_RAI;
Harald Welte9f75c352010-04-30 20:26:32 +02001019 } else if (TLVP_PRESENT(tp, BSSGP_IE_LOCATION_AREA)) {
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +02001020 peer = gbproxy_peer_by_lai(cfg, TLVP_VAL(tp, BSSGP_IE_LOCATION_AREA));
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001021 LOGPC(DGPRS, LOGL_INFO, "routing by LAI to peer BVCI=%u\n",
Holger Hans Peter Freyther62eaf542010-06-08 16:30:24 +08001022 peer ? peer->bvci : -1);
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001023 errctr = GBPROX_GLOB_CTR_INV_LAI;
Harald Welte9f75c352010-04-30 20:26:32 +02001024 } else
Harald Welte4cf12e92010-05-13 14:14:56 +02001025 LOGPC(DGPRS, LOGL_INFO, "\n");
1026
1027 if (!peer) {
1028 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) BSSGP PAGING: "
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001029 "unable to route, missing IE\n", nsei);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001030 rate_ctr_inc(&cfg->ctrg->ctr[errctr]);
Harald Welte9f75c352010-04-30 20:26:32 +02001031 return -EINVAL;
Harald Welte4cf12e92010-05-13 14:14:56 +02001032 }
1033 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001034}
1035
Harald Welte0a4050c2010-05-11 10:01:17 +02001036/* Receive an incoming BVC-RESET message from the SGSN */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001037static int rx_reset_from_sgsn(struct gbproxy_config *cfg,
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001038 struct msgb *orig_msg,
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001039 struct msgb *msg, struct tlv_parsed *tp,
1040 uint32_t nsei, uint16_t ns_bvci)
Harald Welte0a4050c2010-05-11 10:01:17 +02001041{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +02001042 struct gbproxy_peer *peer;
Harald Welte0a4050c2010-05-11 10:01:17 +02001043 uint16_t ptp_bvci;
1044
1045 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001046 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001047 ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
Harald Welte0a4050c2010-05-11 10:01:17 +02001048 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE,
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001049 NULL, orig_msg);
Harald Welte0a4050c2010-05-11 10:01:17 +02001050 }
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +02001051 ptp_bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
Harald Welte0a4050c2010-05-11 10:01:17 +02001052
1053 if (ptp_bvci >= 2) {
1054 /* A reset for a PTP BVC was received, forward it to its
1055 * respective peer */
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +02001056 peer = gbproxy_peer_by_bvci(cfg, ptp_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +02001057 if (!peer) {
Harald Welte4cf12e92010-05-13 14:14:56 +02001058 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u BVCI=%u: Cannot find BSS\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001059 nsei, ptp_bvci);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001060 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001061 ctr[GBPROX_GLOB_CTR_INV_BVCI]);
Harald Welte0a4050c2010-05-11 10:01:17 +02001062 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI,
Jacob Erlbeck17b42b82014-08-29 12:20:15 +02001063 &ptp_bvci, orig_msg);
Harald Welte0a4050c2010-05-11 10:01:17 +02001064 }
1065 return gbprox_relay2peer(msg, peer, ns_bvci);
1066 }
1067
1068 /* A reset for the Signalling entity has been received
1069 * from the SGSN. As the signalling BVCI is shared
1070 * among all the BSS's that we multiplex, it needs to
1071 * be relayed */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001072 llist_for_each_entry(peer, &cfg->bts_peers, list)
Harald Welte0a4050c2010-05-11 10:01:17 +02001073 gbprox_relay2peer(msg, peer, ns_bvci);
1074
1075 return 0;
1076}
1077
Harald Welte9f75c352010-04-30 20:26:32 +02001078/* Receive an incoming signalling message from the SGSN-side NS-VC */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001079static int gbprox_rx_sig_from_sgsn(struct gbproxy_config *cfg,
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001080 struct msgb *orig_msg, uint32_t nsei,
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001081 uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +02001082{
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001083 struct bssgp_normal_hdr *bgph =
1084 (struct bssgp_normal_hdr *) msgb_bssgph(orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001085 struct tlv_parsed tp;
1086 uint8_t pdu_type = bgph->pdu_type;
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001087 int data_len;
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +02001088 struct gbproxy_peer *peer;
Harald Welte9f75c352010-04-30 20:26:32 +02001089 uint16_t bvci;
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001090 struct msgb *msg;
Harald Welte9f75c352010-04-30 20:26:32 +02001091 int rc = 0;
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001092 int cause;
Harald Welte9f75c352010-04-30 20:26:32 +02001093
Harald Weltec471d3d2011-02-06 17:13:12 +01001094 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Welte4cf12e92010-05-13 14:14:56 +02001095 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) BVCI=%u is not "
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001096 "signalling\n", nsei, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +02001097 /* FIXME: Send proper error message */
Harald Welte9f75c352010-04-30 20:26:32 +02001098 return -EINVAL;
1099 }
1100
1101 /* we actually should never see those two for BVCI == 0, but double-check
1102 * just to make sure */
1103 if (pdu_type == BSSGP_PDUT_UL_UNITDATA ||
1104 pdu_type == BSSGP_PDUT_DL_UNITDATA) {
Harald Welte44c48302010-05-03 19:22:32 +02001105 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) UNITDATA not allowed in "
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001106 "signalling\n", nsei);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001107 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001108 }
1109
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001110 msg = gprs_msgb_copy(orig_msg, "rx_sig_from_sgsn");
1111 gbprox_process_bssgp_dl(cfg, msg, NULL);
1112 /* Update message info */
1113 bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
1114 data_len = msgb_bssgp_len(orig_msg) - sizeof(*bgph);
Harald Welte9f75c352010-04-30 20:26:32 +02001115 rc = bssgp_tlv_parse(&tp, bgph->data, data_len);
1116
1117 switch (pdu_type) {
Harald Welte0a4050c2010-05-11 10:01:17 +02001118 case BSSGP_PDUT_BVC_RESET:
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001119 rc = rx_reset_from_sgsn(cfg, msg, orig_msg, &tp, nsei, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +02001120 break;
Harald Welte9f75c352010-04-30 20:26:32 +02001121 case BSSGP_PDUT_BVC_RESET_ACK:
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +02001122 if (cfg->route_to_sgsn2 && nsei == cfg->nsip_sgsn2_nsei)
1123 break;
1124 /* fall through */
1125 case BSSGP_PDUT_FLUSH_LL:
Harald Welte9f75c352010-04-30 20:26:32 +02001126 /* simple case: BVCI IE is mandatory */
1127 if (!TLVP_PRESENT(&tp, BSSGP_IE_BVCI))
1128 goto err_mand_ie;
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +02001129 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001130 rc = gbprox_relay2bvci(cfg, msg, bvci, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001131 break;
1132 case BSSGP_PDUT_PAGING_PS:
1133 case BSSGP_PDUT_PAGING_CS:
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001134 /* process the paging request (LAI/RAI lookup) */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001135 rc = gbprox_rx_paging(cfg, msg, &tp, nsei, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001136 break;
1137 case BSSGP_PDUT_STATUS:
Harald Welte0a4050c2010-05-11 10:01:17 +02001138 /* Some exception has occurred */
Harald Welte44c48302010-05-03 19:22:32 +02001139 LOGP(DGPRS, LOGL_NOTICE,
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001140 "NSEI=%u(SGSN) BSSGP STATUS ", nsei);
Harald Welte0a4050c2010-05-11 10:01:17 +02001141 if (!TLVP_PRESENT(&tp, BSSGP_IE_CAUSE)) {
1142 LOGPC(DGPRS, LOGL_NOTICE, "\n");
1143 goto err_mand_ie;
1144 }
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001145 cause = *TLVP_VAL(&tp, BSSGP_IE_CAUSE);
Harald Welte0a4050c2010-05-11 10:01:17 +02001146 LOGPC(DGPRS, LOGL_NOTICE,
1147 "cause=0x%02x(%s) ", *TLVP_VAL(&tp, BSSGP_IE_CAUSE),
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001148 bssgp_cause_str(cause));
Harald Welte0a4050c2010-05-11 10:01:17 +02001149 if (TLVP_PRESENT(&tp, BSSGP_IE_BVCI)) {
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001150 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
1151 LOGPC(DGPRS, LOGL_NOTICE, "BVCI=%u\n", bvci);
1152
1153 if (cause == BSSGP_CAUSE_UNKNOWN_BVCI)
1154 rc = gbprox_relay2bvci(cfg, msg, bvci, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +02001155 } else
1156 LOGPC(DGPRS, LOGL_NOTICE, "\n");
Harald Welte9f75c352010-04-30 20:26:32 +02001157 break;
1158 /* those only exist in the SGSN -> BSS direction */
1159 case BSSGP_PDUT_SUSPEND_ACK:
1160 case BSSGP_PDUT_SUSPEND_NACK:
1161 case BSSGP_PDUT_RESUME_ACK:
1162 case BSSGP_PDUT_RESUME_NACK:
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001163 /* RAI IE is mandatory */
Harald Welte9f75c352010-04-30 20:26:32 +02001164 if (!TLVP_PRESENT(&tp, BSSGP_IE_ROUTEING_AREA))
1165 goto err_mand_ie;
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +02001166 peer = gbproxy_peer_by_rai(cfg, TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA));
Harald Welte9f75c352010-04-30 20:26:32 +02001167 if (!peer)
1168 goto err_no_peer;
Harald Welte69619e32010-05-03 19:05:10 +02001169 rc = gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001170 break;
Harald Welte36f98d92011-02-06 13:09:29 +01001171 case BSSGP_PDUT_BVC_BLOCK_ACK:
1172 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
1173 if (!TLVP_PRESENT(&tp, BSSGP_IE_BVCI))
1174 goto err_mand_ie;
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +02001175 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Harald Welte36f98d92011-02-06 13:09:29 +01001176 if (bvci == 0) {
1177 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) BSSGP "
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001178 "%sBLOCK_ACK for signalling BVCI ?!?\n", nsei,
Harald Welte36f98d92011-02-06 13:09:29 +01001179 pdu_type == BSSGP_PDUT_BVC_UNBLOCK_ACK ? "UN":"");
1180 /* should we send STATUS ? */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001181 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001182 ctr[GBPROX_GLOB_CTR_INV_BVCI]);
Harald Welte36f98d92011-02-06 13:09:29 +01001183 } else {
1184 /* Mark BVC as (un)blocked */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001185 block_unblock_peer(cfg, bvci, pdu_type);
Harald Welte36f98d92011-02-06 13:09:29 +01001186 }
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001187 rc = gbprox_relay2bvci(cfg, msg, bvci, ns_bvci);
Harald Welte36f98d92011-02-06 13:09:29 +01001188 break;
Harald Welte9f75c352010-04-30 20:26:32 +02001189 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Welte44c48302010-05-03 19:22:32 +02001190 LOGP(DGPRS, LOGL_ERROR,
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001191 "NSEI=%u(SGSN) BSSGP INVOKE TRACE not supported\n",nsei);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001192 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001193 ctr[GBPROX_GLOB_CTR_NOT_SUPPORTED_SGSN]);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001194 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001195 break;
1196 default:
Harald Welte72953b82010-05-12 00:20:41 +02001197 LOGP(DGPRS, LOGL_NOTICE, "BSSGP PDU type 0x%02x unknown\n",
1198 pdu_type);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001199 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001200 ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001201 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001202 break;
1203 }
1204
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001205 msgb_free(msg);
1206
Harald Welte9f75c352010-04-30 20:26:32 +02001207 return rc;
1208err_mand_ie:
Harald Welte1c77c6e2010-05-03 21:37:11 +02001209 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) missing mandatory IE\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001210 nsei);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001211 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001212 ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001213 msgb_free(msg);
1214 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001215err_no_peer:
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001216 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) cannot find peer based on RAI\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001217 nsei);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001218 rate_ctr_inc(&cfg->ctrg-> ctr[GBPROX_GLOB_CTR_INV_RAI]);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001219 msgb_free(msg);
Jacob Erlbeck17b42b82014-08-29 12:20:15 +02001220 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001221}
1222
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +02001223static int gbproxy_is_sgsn_nsei(struct gbproxy_config *cfg, uint16_t nsei)
1224{
1225 return nsei == cfg->nsip_sgsn_nsei ||
1226 (cfg->route_to_sgsn2 && nsei == cfg->nsip_sgsn2_nsei);
1227}
1228
Harald Welte9f75c352010-04-30 20:26:32 +02001229/* Main input function for Gb proxy */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001230int gbprox_rcvmsg(struct gbproxy_config *cfg, struct msgb *msg, uint16_t nsei,
1231 uint16_t ns_bvci, uint16_t nsvci)
Harald Welte9f75c352010-04-30 20:26:32 +02001232{
Harald Welte672f5c42010-05-03 18:54:58 +02001233 int rc;
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +02001234 int remote_end_is_sgsn = gbproxy_is_sgsn_nsei(cfg, nsei);
Harald Welte9f75c352010-04-30 20:26:32 +02001235
1236 /* Only BVCI=0 messages need special treatment */
1237 if (ns_bvci == 0 || ns_bvci == 1) {
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001238 if (remote_end_is_sgsn)
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001239 rc = gbprox_rx_sig_from_sgsn(cfg, msg, nsei, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001240 else
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001241 rc = gbprox_rx_sig_from_bss(cfg, msg, nsei, ns_bvci);
Harald Welte672f5c42010-05-03 18:54:58 +02001242 } else {
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +02001243 /* All other BVCI are PTP */
1244 if (remote_end_is_sgsn)
1245 rc = gbprox_rx_ptp_from_sgsn(cfg, msg, nsei, nsvci,
1246 ns_bvci);
1247 else
1248 rc = gbprox_rx_ptp_from_bss(cfg, msg, nsei, nsvci,
1249 ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001250 }
1251
Harald Welte672f5c42010-05-03 18:54:58 +02001252 return rc;
Harald Welte9f75c352010-04-30 20:26:32 +02001253}
Harald Welte85801d02010-05-11 05:49:43 +02001254
Harald Welte1ccbf442010-05-14 11:53:08 +00001255int gbprox_reset_persistent_nsvcs(struct gprs_ns_inst *nsi)
1256{
1257 struct gprs_nsvc *nsvc;
1258
1259 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
1260 if (!nsvc->persistent)
1261 continue;
1262 gprs_nsvc_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
1263 }
1264 return 0;
1265}
1266
Harald Weltec1c1dd22010-05-11 06:34:24 +02001267/* Signal handler for signals from NS layer */
1268int gbprox_signal(unsigned int subsys, unsigned int signal,
1269 void *handler_data, void *signal_data)
1270{
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001271 struct gbproxy_config *cfg = handler_data;
Harald Weltec1c1dd22010-05-11 06:34:24 +02001272 struct ns_signal_data *nssd = signal_data;
1273 struct gprs_nsvc *nsvc = nssd->nsvc;
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +02001274 struct gbproxy_peer *peer;
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +02001275 int remote_end_is_sgsn = gbproxy_is_sgsn_nsei(cfg, nsvc->nsei);
Harald Weltec1c1dd22010-05-11 06:34:24 +02001276
Harald Weltea6a20b42012-06-16 16:40:42 +08001277 if (subsys != SS_L_NS)
Harald Weltec1c1dd22010-05-11 06:34:24 +02001278 return 0;
1279
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +02001280 if (signal == S_NS_RESET && remote_end_is_sgsn) {
Harald Weltef69c0592010-05-11 18:29:44 +02001281 /* We have received a NS-RESET from the NSEI and NSVC
1282 * of the SGSN. This might happen with SGSN that start
1283 * their own NS-RESET procedure without waiting for our
1284 * NS-RESET */
1285 nsvc->remote_end_is_sgsn = 1;
1286 }
1287
Harald Welteb778d2c2010-05-12 13:28:25 +00001288 if (signal == S_NS_ALIVE_EXP && nsvc->remote_end_is_sgsn) {
1289 LOGP(DGPRS, LOGL_NOTICE, "Tns alive expired too often, "
1290 "re-starting RESET procedure\n");
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001291 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001292 ctr[GBPROX_GLOB_CTR_RESTART_RESET_SGSN]);
Harald Weltee6599ee2012-06-17 12:25:53 +08001293 gprs_ns_nsip_connect(nsvc->nsi, &nsvc->ip.bts_addr,
1294 nsvc->nsei, nsvc->nsvci);
Harald Welteb778d2c2010-05-12 13:28:25 +00001295 }
1296
Harald Welte5e106d72011-02-06 16:33:29 +01001297 if (!nsvc->remote_end_is_sgsn) {
1298 /* from BSS to SGSN */
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +02001299 peer = gbproxy_peer_by_nsei(cfg, nsvc->nsei);
Harald Welte5e106d72011-02-06 16:33:29 +01001300 if (!peer) {
1301 LOGP(DGPRS, LOGL_NOTICE, "signal %u for unknown peer "
1302 "NSEI=%u/NSVCI=%u\n", signal, nsvc->nsei,
1303 nsvc->nsvci);
1304 return 0;
1305 }
Harald Weltec1c1dd22010-05-11 06:34:24 +02001306 switch (signal) {
1307 case S_NS_RESET:
Harald Weltec1c1dd22010-05-11 06:34:24 +02001308 case S_NS_BLOCK:
Harald Welte5e106d72011-02-06 16:33:29 +01001309 if (!peer->blocked)
1310 break;
1311 LOGP(DGPRS, LOGL_NOTICE, "Converting NS_RESET from "
1312 "NSEI=%u/NSVCI=%u into BSSGP_BVC_BLOCK to SGSN\n",
1313 nsvc->nsei, nsvc->nsvci);
1314 bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK, nsvc->nsei,
1315 peer->bvci, 0);
Harald Weltec1c1dd22010-05-11 06:34:24 +02001316 break;
Harald Welte5e106d72011-02-06 16:33:29 +01001317 }
1318 } else {
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001319 /* Forward this message to all NS-VC to BSS */
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001320 struct gprs_ns_inst *nsi = cfg->nsi;
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001321 struct gprs_nsvc *next_nsvc;
1322
1323 llist_for_each_entry(next_nsvc, &nsi->gprs_nsvcs, list) {
1324 if (next_nsvc->remote_end_is_sgsn)
1325 continue;
1326
1327 /* Note that the following does not start the full
1328 * procedures including timer based retransmissions. */
Harald Welte5e106d72011-02-06 16:33:29 +01001329 switch (signal) {
1330 case S_NS_RESET:
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001331 gprs_ns_tx_reset(next_nsvc, nssd->cause);
Harald Welte5e106d72011-02-06 16:33:29 +01001332 break;
1333 case S_NS_BLOCK:
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001334 gprs_ns_tx_block(next_nsvc, nssd->cause);
Harald Welte5e106d72011-02-06 16:33:29 +01001335 break;
1336 case S_NS_UNBLOCK:
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001337 gprs_ns_tx_unblock(next_nsvc);
Harald Welte5e106d72011-02-06 16:33:29 +01001338 break;
1339 }
Harald Weltec1c1dd22010-05-11 06:34:24 +02001340 }
1341 }
1342 return 0;
1343}
1344
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001345void gbprox_reset(struct gbproxy_config *cfg)
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001346{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +02001347 struct gbproxy_peer *peer, *tmp;
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001348
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001349 llist_for_each_entry_safe(peer, tmp, &cfg->bts_peers, list)
Holger Hans Peter Freyther0196c992014-08-04 17:10:08 +02001350 gbproxy_peer_free(peer);
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001351
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +02001352 rate_ctr_group_free(cfg->ctrg);
1353 gbproxy_init_config(cfg);
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001354}
1355
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +02001356int gbproxy_init_config(struct gbproxy_config *cfg)
Jacob Erlbeck4211d792013-10-24 12:48:23 +02001357{
Jacob Erlbeck0d376712014-08-11 19:12:24 +02001358 struct timespec tp;
Jacob Erlbeck9a83d7a2014-09-25 11:17:31 +02001359
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +02001360 INIT_LLIST_HEAD(&cfg->bts_peers);
Holger Hans Peter Freythera7027a02014-08-04 11:19:56 +02001361 cfg->ctrg = rate_ctr_group_alloc(tall_bsc_ctx, &global_ctrg_desc, 0);
Jacob Erlbeck0d376712014-08-11 19:12:24 +02001362 clock_gettime(CLOCK_REALTIME, &tp);
1363 cfg->bss_ptmsi_state = tp.tv_sec + tp.tv_nsec;
1364 cfg->sgsn_tlli_state = tp.tv_sec - tp.tv_nsec;
Jacob Erlbeck9a83d7a2014-09-25 11:17:31 +02001365
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +02001366 return 0;
Jacob Erlbeck4211d792013-10-24 12:48:23 +02001367}