blob: 21cd405f5d39a6a0758789d1d63bbbcdccf74efa [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 Erlbeck41108682014-10-31 10:47:29 +0100257 } else if (link_info->sgsn_tlli.ptmsi != GSM_RESERVED_TMSI &&
258 gprs_tlli_type(bss_tlli) == TLLI_FOREIGN) {
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200259 sgsn_tlli = gprs_tmsi2tlli(link_info->sgsn_tlli.ptmsi,
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200260 TLLI_FOREIGN);
Jacob Erlbeck41108682014-10-31 10:47:29 +0100261 } else if (link_info->sgsn_tlli.ptmsi != GSM_RESERVED_TMSI &&
262 gprs_tlli_type(bss_tlli) == TLLI_LOCAL) {
263 sgsn_tlli = gprs_tmsi2tlli(link_info->sgsn_tlli.ptmsi,
264 TLLI_LOCAL);
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200265 } else {
266 do {
267 /* create random TLLI, 0b01111xxx... */
268 sgsn_tlli = rand_r(&peer->cfg->sgsn_tlli_state);
269 sgsn_tlli = (sgsn_tlli & 0x7fffffff) | 0x78000000;
270
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200271 if (gbproxy_link_info_by_any_sgsn_tlli(peer, sgsn_tlli))
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200272 sgsn_tlli = 0;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200273 } while (!sgsn_tlli && max_retries--);
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200274 }
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200275
276 if (!sgsn_tlli)
277 LOGP(DGPRS, LOGL_ERROR, "Failed to allocate an SGSN TLLI\n");
278
Jacob Erlbeck0d376712014-08-11 19:12:24 +0200279 return sgsn_tlli;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200280}
281
Jacob Erlbeckd211d1d2014-09-22 13:30:46 +0200282void gbproxy_reset_link(struct gbproxy_link_info *link_info)
283{
284 gbproxy_reset_imsi_acquisition(link_info);
285}
286
Jacob Erlbeck31591142014-09-03 11:59:48 +0200287/* Returns != 0 iff IMSI acquisition was in progress */
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200288static int gbproxy_restart_imsi_acquisition(struct gbproxy_link_info* link_info)
Jacob Erlbeck31591142014-09-03 11:59:48 +0200289{
290 int in_progress = 0;
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200291 if (!link_info)
Jacob Erlbeck31591142014-09-03 11:59:48 +0200292 return 0;
293
Jacob Erlbeck65750282014-09-22 15:41:21 +0200294 if (link_info->imsi_acq_pending)
Jacob Erlbeck31591142014-09-03 11:59:48 +0200295 in_progress = 1;
296
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200297 gbproxy_link_info_discard_messages(link_info);
298 link_info->imsi_acq_pending = 0;
Jacob Erlbeck31591142014-09-03 11:59:48 +0200299
300 return in_progress;
301}
302
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200303static void gbproxy_reset_imsi_acquisition(struct gbproxy_link_info* link_info)
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200304{
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200305 gbproxy_restart_imsi_acquisition(link_info);
Jacob Erlbeck65750282014-09-22 15:41:21 +0200306 link_info->vu_gen_tx_bss = GBPROXY_INIT_VU_GEN_TX;
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200307}
308
309static void gbproxy_flush_stored_messages(struct gbproxy_peer *peer,
310 struct msgb *msg,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200311 time_t now,
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200312 struct gbproxy_link_info* link_info,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200313 struct gprs_gb_parse_context *parse_ctx)
314{
315 int rc;
316 struct msgb *stored_msg;
317 /* Got identity response with IMSI, assuming the request had
318 * been generated by the gbproxy */
319
320 LOGP(DLLC, LOGL_DEBUG,
321 "NSEI=%d(BSS) IMSI acquisition succeeded, "
322 "flushing stored messages\n",
323 msgb_nsei(msg));
324
325 /* Patch and flush stored messages towards the SGSN */
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200326 while ((stored_msg = msgb_dequeue(&link_info->stored_msgs))) {
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200327 struct gprs_gb_parse_context tmp_parse_ctx = {0};
328 tmp_parse_ctx.to_bss = 0;
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200329 tmp_parse_ctx.peer_nsei = msgb_nsei(stored_msg);
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200330 int len_change = 0;
331
332 gprs_gb_parse_bssgp(msgb_bssgph(stored_msg),
333 msgb_bssgp_len(stored_msg),
334 &tmp_parse_ctx);
335 gbproxy_patch_bssgp(msg, msgb_bssgph(stored_msg),
336 msgb_bssgp_len(stored_msg),
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200337 peer, link_info, &len_change,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200338 &tmp_parse_ctx);
339
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200340 gbproxy_update_link_state_after(peer, link_info, now,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200341 &tmp_parse_ctx);
342
343 rc = gbprox_relay2sgsn(peer->cfg, stored_msg,
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200344 msgb_bvci(msg), link_info->sgsn_nsei);
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200345
346 if (rc < 0)
347 LOGP(DLLC, LOGL_ERROR,
348 "NSEI=%d(BSS) failed to send stored message "
349 "(%s)\n",
350 msgb_nsei(msg),
351 parse_ctx->llc_msg_name ?
352 parse_ctx->llc_msg_name : "BSSGP");
353 msgb_free(stored_msg);
354 }
355}
356
Jacob Erlbeck65750282014-09-22 15:41:21 +0200357static int gbproxy_gsm48_to_peer(struct gbproxy_peer *peer,
358 struct gbproxy_link_info* link_info,
359 uint16_t bvci,
360 struct msgb *msg /* Takes msg ownership */)
361{
362 int rc;
363
364 /* Workaround to avoid N(U) collisions and to enable a restart
365 * of the IMSI acquisition procedure. This will work unless the
366 * SGSN has an initial V(UT) within [256-32, 256+n_retries]
367 * (see GSM 04.64, 8.4.2). */
368 gprs_push_llc_ui(msg, 0, GPRS_SAPI_GMM, link_info->vu_gen_tx_bss);
369 link_info->vu_gen_tx_bss = (link_info->vu_gen_tx_bss + 1) % 512;
370
371 gprs_push_bssgp_dl_unitdata(msg, link_info->tlli.current);
372 rc = gbprox_relay2peer(msg, peer, bvci);
373 msgb_free(msg);
374 return rc;
375}
376
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200377static void gbproxy_acquire_imsi(struct gbproxy_peer *peer,
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200378 struct gbproxy_link_info* link_info,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200379 uint16_t bvci)
380{
381 struct msgb *idreq_msg;
382
383 /* Send IDENT REQ */
384 idreq_msg = gsm48_msgb_alloc();
385 gprs_put_identity_req(idreq_msg, GSM_MI_TYPE_IMSI);
Jacob Erlbeck65750282014-09-22 15:41:21 +0200386 gbproxy_gsm48_to_peer(peer, link_info, bvci, idreq_msg);
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200387}
388
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200389static void gbproxy_tx_detach_acc(struct gbproxy_peer *peer,
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200390 struct gbproxy_link_info* link_info,
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200391 uint16_t bvci)
392{
393 struct msgb *detacc_msg;
394
395 /* Send DETACH ACC */
396 detacc_msg = gsm48_msgb_alloc();
397 gprs_put_mo_detach_acc(detacc_msg);
Jacob Erlbeck65750282014-09-22 15:41:21 +0200398 gbproxy_gsm48_to_peer(peer, link_info, bvci, detacc_msg);
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200399}
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200400
401/* Return != 0 iff msg still needs to be processed */
402static int gbproxy_imsi_acquisition(struct gbproxy_peer *peer,
403 struct msgb *msg,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200404 time_t now,
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200405 struct gbproxy_link_info* link_info,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200406 struct gprs_gb_parse_context *parse_ctx)
407{
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200408 struct msgb *stored_msg;
409
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200410 if (!link_info)
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200411 return 1;
412
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200413 if (!link_info->imsi_acq_pending && link_info->imsi_len > 0)
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200414 return 1;
415
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200416 if (parse_ctx->g48_hdr)
417 switch (parse_ctx->g48_hdr->msg_type)
418 {
Jacob Erlbecke27ab912014-09-18 10:08:27 +0200419 case GSM48_MT_GMM_RA_UPD_REQ:
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200420 case GSM48_MT_GMM_ATTACH_REQ:
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200421 if (gbproxy_restart_imsi_acquisition(link_info)) {
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200422 LOGP(DLLC, LOGL_INFO,
423 "NSEI=%d(BSS) IMSI acquisition was in progress "
Jacob Erlbecke27ab912014-09-18 10:08:27 +0200424 "when receiving an %s.\n",
425 msgb_nsei(msg), parse_ctx->llc_msg_name);
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200426 }
427 break;
428 case GSM48_MT_GMM_DETACH_REQ:
429 /* Nothing has been sent to the SGSN yet */
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200430 if (link_info->imsi_acq_pending) {
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200431 LOGP(DLLC, LOGL_INFO,
432 "NSEI=%d(BSS) IMSI acquisition was in progress "
433 "when receiving a DETACH_REQ.\n",
434 msgb_nsei(msg));
435 }
436 if (!parse_ctx->invalidate_tlli) {
437 LOGP(DLLC, LOGL_INFO,
438 "NSEI=%d(BSS) IMSI not yet acquired, "
439 "faking a DETACH_ACC.\n",
440 msgb_nsei(msg));
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200441 gbproxy_tx_detach_acc(peer, link_info, msgb_bvci(msg));
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200442 parse_ctx->invalidate_tlli = 1;
443 }
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200444 gbproxy_reset_imsi_acquisition(link_info);
445 gbproxy_update_link_state_after(peer, link_info, now,
Jacob Erlbeck2a5096d2014-09-12 12:12:31 +0200446 parse_ctx);
447 return 0;
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200448 }
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200449
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200450 if (link_info->imsi_acq_pending && link_info->imsi_len > 0) {
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200451 int is_ident_resp =
452 parse_ctx->g48_hdr &&
453 parse_ctx->g48_hdr->proto_discr == GSM48_PDISC_MM_GPRS &&
454 parse_ctx->g48_hdr->msg_type == GSM48_MT_GMM_ID_RESP;
455
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200456 /* The IMSI is now available */
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200457 gbproxy_flush_stored_messages(peer, msg, now, link_info,
Jacob Erlbeck9a6b7632014-09-19 13:23:21 +0200458 parse_ctx);
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200459
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200460 gbproxy_reset_imsi_acquisition(link_info);
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200461
462 /* This message is most probably the response to the ident
463 * request sent by gbproxy_acquire_imsi(). Don't forward it to
464 * the SGSN. */
465 return !is_ident_resp;
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200466 }
467
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200468 /* The message cannot be processed since the IMSI is still missing */
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200469
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200470 /* Enqueue unpatched messages */
471 LOGP(DLLC, LOGL_INFO,
472 "NSEI=%d(BSS) IMSI acquisition in progress, "
473 "storing message (%s)\n",
474 msgb_nsei(msg),
475 parse_ctx->llc_msg_name ? parse_ctx->llc_msg_name : "BSSGP");
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200476
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200477 stored_msg = gprs_msgb_copy(msg, "process_bssgp_ul");
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200478 msgb_enqueue(&link_info->stored_msgs, stored_msg);
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200479
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200480 if (!link_info->imsi_acq_pending) {
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200481 LOGP(DLLC, LOGL_INFO,
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200482 "NSEI=%d(BSS) IMSI is required but not available, "
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200483 "initiating identification procedure (%s)\n",
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200484 msgb_nsei(msg),
485 parse_ctx->llc_msg_name ? parse_ctx->llc_msg_name : "BSSGP");
486
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200487 gbproxy_acquire_imsi(peer, link_info, msgb_bvci(msg));
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200488
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200489 /* There is no explicit retransmission handling, the
490 * implementation relies on the MS doing proper retransmissions
491 * of the triggering message instead */
492
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200493 link_info->imsi_acq_pending = 1;
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200494 }
495
Jacob Erlbeck6bafa4c2014-09-11 11:35:17 +0200496 return 0;
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200497}
498
499struct gbproxy_peer *gbproxy_find_peer(struct gbproxy_config *cfg,
500 struct msgb *msg,
501 struct gprs_gb_parse_context *parse_ctx)
502{
503 struct gbproxy_peer *peer = NULL;
504
505 if (msgb_bvci(msg) >= 2)
506 peer = gbproxy_peer_by_bvci(cfg, msgb_bvci(msg));
507
508 if (!peer && !parse_ctx->to_bss)
509 peer = gbproxy_peer_by_nsei(cfg, msgb_nsei(msg));
510
511 if (!peer)
512 peer = gbproxy_peer_by_bssgp_tlv(cfg, &parse_ctx->bssgp_tp);
513
514 if (!peer) {
515 LOGP(DLLC, LOGL_INFO,
516 "NSEI=%d(%s) patching: didn't find peer for message, "
517 "PDU %d\n",
518 msgb_nsei(msg), parse_ctx->to_bss ? "BSS" : "SGSN",
519 parse_ctx->pdu_type);
520 /* Increment counter */
521 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_PATCH_PEER_ERR]);
522 }
523 return peer;
524}
525
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200526/* patch BSSGP message */
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200527static int gbprox_process_bssgp_ul(struct gbproxy_config *cfg,
528 struct msgb *msg,
529 struct gbproxy_peer *peer)
Jacob Erlbeckc8128822014-08-07 16:07:24 +0200530{
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200531 struct gprs_gb_parse_context parse_ctx = {0};
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200532 int rc;
Jacob Erlbeckc8128822014-08-07 16:07:24 +0200533 int len_change = 0;
Jacob Erlbeck7b821d02014-08-08 08:37:37 +0200534 time_t now;
Jacob Erlbeckc6807c42014-09-19 16:34:01 +0200535 struct timespec ts = {0,};
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200536 struct gbproxy_link_info *link_info = NULL;
Jacob Erlbeckcabd24b2014-08-27 12:51:07 +0200537 uint32_t sgsn_nsei = cfg->nsip_sgsn_nsei;
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200538
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200539 if (!cfg->core_mcc && !cfg->core_mnc && !cfg->core_apn &&
Jacob Erlbeck1abfdc22014-09-04 11:42:08 +0200540 !cfg->acquire_imsi && !cfg->patch_ptmsi && !cfg->route_to_sgsn2)
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200541 return 1;
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200542
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200543 parse_ctx.to_bss = 0;
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200544 parse_ctx.peer_nsei = msgb_nsei(msg);
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200545
546 /* Parse BSSGP/LLC */
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200547 rc = gprs_gb_parse_bssgp(msgb_bssgph(msg), msgb_bssgp_len(msg),
548 &parse_ctx);
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200549
Jacob Erlbeckb4f0e802014-10-09 12:28:15 +0200550 if (!rc && !parse_ctx.need_decryption) {
551 LOGP(DGPRS, LOGL_ERROR,
552 "NSEI=%u(BSS) patching: failed to parse invalid %s message\n",
553 msgb_nsei(msg), gprs_gb_message_name(&parse_ctx, "NS_UNITDATA"));
554 gprs_gb_log_parse_context(LOGL_NOTICE, &parse_ctx, "NS_UNITDATA");
555 LOGP(DGPRS, LOGL_NOTICE,
556 "NSEI=%u(BSS) invalid message was: %s\n",
557 msgb_nsei(msg), msgb_hexdump(msg));
558 return 0;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200559 }
560
561 /* Get peer */
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200562 if (!peer)
563 peer = gbproxy_find_peer(cfg, msg, &parse_ctx);
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200564
565 if (!peer)
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200566 return 0;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200567
Jacob Erlbeckc6807c42014-09-19 16:34:01 +0200568
569 clock_gettime(CLOCK_MONOTONIC, &ts);
570 now = ts.tv_sec;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200571
Jacob Erlbeck12496dd2014-08-18 15:41:41 +0200572 gbprox_update_current_raid(parse_ctx.bssgp_raid_enc, peer,
573 parse_ctx.llc_msg_name);
574
Jacob Erlbeck1c407aa2014-10-09 12:16:17 +0200575 gprs_gb_log_parse_context(LOGL_DEBUG, &parse_ctx, "NS_UNITDATA");
Jacob Erlbeck31591142014-09-03 11:59:48 +0200576
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200577 link_info = gbproxy_update_link_state_ul(peer, now, &parse_ctx);
Jacob Erlbeck31591142014-09-03 11:59:48 +0200578
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200579 if (parse_ctx.g48_hdr) {
580 switch (parse_ctx.g48_hdr->msg_type) {
581 case GSM48_MT_GMM_ATTACH_REQ:
582 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_ATTACH_REQS]);
583 break;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200584
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200585 default:
586 break;
587 }
588 }
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200589
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200590 if (link_info && cfg->route_to_sgsn2) {
591 if (cfg->acquire_imsi && link_info->imsi_len == 0)
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200592 sgsn_nsei = 0xffff;
Jacob Erlbeckb36032c2014-09-25 13:21:48 +0200593 else if (gbproxy_imsi_matches(cfg, GBPROX_MATCH_ROUTING,
Jacob Erlbeck9a83d7a2014-09-25 11:17:31 +0200594 link_info))
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200595 sgsn_nsei = cfg->nsip_sgsn2_nsei;
Jacob Erlbeckcabd24b2014-08-27 12:51:07 +0200596 }
597
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200598 if (link_info)
599 link_info->sgsn_nsei = sgsn_nsei;
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200600
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200601 /* Handle IMSI acquisition */
602 if (cfg->acquire_imsi) {
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200603 rc = gbproxy_imsi_acquisition(peer, msg, now, link_info,
Jacob Erlbeck9a6b7632014-09-19 13:23:21 +0200604 &parse_ctx);
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200605 if (rc <= 0)
606 return rc;
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200607 }
608
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200609 gbproxy_patch_bssgp(msg, msgb_bssgph(msg), msgb_bssgp_len(msg),
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200610 peer, link_info, &len_change, &parse_ctx);
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200611
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200612 gbproxy_update_link_state_after(peer, link_info, now, &parse_ctx);
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200613
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200614 if (sgsn_nsei != cfg->nsip_sgsn_nsei) {
Jacob Erlbeckcabd24b2014-08-27 12:51:07 +0200615 /* Send message directly to the selected SGSN */
616 rc = gbprox_relay2sgsn(cfg, msg, msgb_bvci(msg), sgsn_nsei);
617 /* Don't let the calling code handle the transmission */
618 return 0;
619 }
620
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200621 return 1;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200622}
623
624/* patch BSSGP message to use core_mcc/mnc on the SGSN side */
625static void gbprox_process_bssgp_dl(struct gbproxy_config *cfg,
626 struct msgb *msg,
627 struct gbproxy_peer *peer)
628{
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200629 struct gprs_gb_parse_context parse_ctx = {0};
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200630 int rc;
631 int len_change = 0;
632 time_t now;
Jacob Erlbeckc6807c42014-09-19 16:34:01 +0200633 struct timespec ts = {0,};
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200634 struct gbproxy_link_info *link_info = NULL;
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200635
Jacob Erlbeck1abfdc22014-09-04 11:42:08 +0200636 if (!cfg->core_mcc && !cfg->core_mnc && !cfg->core_apn &&
637 !cfg->acquire_imsi && !cfg->patch_ptmsi && !cfg->route_to_sgsn2)
638 return;
639
Jacob Erlbeck9057bc32014-08-12 16:30:30 +0200640 parse_ctx.to_bss = 1;
Jacob Erlbeck91a0e862014-09-17 10:56:38 +0200641 parse_ctx.peer_nsei = msgb_nsei(msg);
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200642
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200643 rc = gprs_gb_parse_bssgp(msgb_bssgph(msg), msgb_bssgp_len(msg),
644 &parse_ctx);
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200645
Jacob Erlbeckb4f0e802014-10-09 12:28:15 +0200646 if (!rc && !parse_ctx.need_decryption) {
647 LOGP(DGPRS, LOGL_ERROR,
648 "NSEI=%u(SGSN) patching: failed to parse invalid %s message\n",
649 msgb_nsei(msg), gprs_gb_message_name(&parse_ctx, "NS_UNITDATA"));
650 gprs_gb_log_parse_context(LOGL_NOTICE, &parse_ctx, "NS_UNITDATA");
651 LOGP(DGPRS, LOGL_NOTICE,
652 "NSEI=%u(SGSN) invalid message was: %s\n",
653 msgb_nsei(msg), msgb_hexdump(msg));
654 return;
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200655 }
Jacob Erlbeck67a44452014-05-19 10:14:58 +0200656
Jacob Erlbeck0b243a12014-09-11 10:30:21 +0200657 /* Get peer */
658 if (!peer)
659 peer = gbproxy_find_peer(cfg, msg, &parse_ctx);
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200660
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200661 if (!peer)
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200662 return;
Jacob Erlbeck006c0382014-05-27 13:49:04 +0200663
Jacob Erlbeckc6807c42014-09-19 16:34:01 +0200664 clock_gettime(CLOCK_MONOTONIC, &ts);
665 now = ts.tv_sec;
Jacob Erlbeck7b821d02014-08-08 08:37:37 +0200666
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200667 if (parse_ctx.g48_hdr) {
668 switch (parse_ctx.g48_hdr->msg_type) {
669 case GSM48_MT_GMM_ATTACH_REJ:
670 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_ATTACH_REJS]);
671 break;
Jacob Erlbeck91fb6802014-05-28 10:59:10 +0200672
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200673 default:
674 break;
675 }
676 }
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200677
Jacob Erlbeck1c407aa2014-10-09 12:16:17 +0200678 gprs_gb_log_parse_context(LOGL_DEBUG, &parse_ctx, "NS_UNITDATA");
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200679
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200680 link_info = gbproxy_update_link_state_dl(peer, now, &parse_ctx);
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200681
682 gbproxy_patch_bssgp(msg, msgb_bssgph(msg), msgb_bssgp_len(msg),
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200683 peer, link_info, &len_change, &parse_ctx);
Jacob Erlbeck9114bee2014-08-19 12:21:01 +0200684
Jacob Erlbeck91d2f8a2014-09-19 15:07:27 +0200685 gbproxy_update_link_state_after(peer, link_info, now, &parse_ctx);
Jacob Erlbeck2db25122014-08-06 12:41:31 +0200686
Jacob Erlbeck03551e52014-06-27 19:56:05 +0200687 return;
Jacob Erlbeck67a44452014-05-19 10:14:58 +0200688}
689
Harald Welte9f75c352010-04-30 20:26:32 +0200690/* feed a message down the NS-VC associated with the specified peer */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200691static int gbprox_relay2sgsn(struct gbproxy_config *cfg, struct msgb *old_msg,
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200692 uint16_t ns_bvci, uint16_t sgsn_nsei)
Harald Welte672f5c42010-05-03 18:54:58 +0200693{
Harald Welte39d0bb52010-05-12 18:10:25 +0000694 /* create a copy of the message so the old one can
695 * be free()d safely when we return from gbprox_rcvmsg() */
Holger Hans Peter Freyther7127b022014-08-04 11:52:52 +0200696 struct msgb *msg = gprs_msgb_copy(old_msg, "msgb_relay2sgsn");
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200697 int rc;
Harald Welte39d0bb52010-05-12 18:10:25 +0000698
Harald Weltee9ea2692010-05-11 20:20:13 +0200699 DEBUGP(DGPRS, "NSEI=%u proxying BTS->SGSN (NS_BVCI=%u, NSEI=%u)\n",
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200700 msgb_nsei(msg), ns_bvci, sgsn_nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200701
Harald Welte672f5c42010-05-03 18:54:58 +0200702 msgb_bvci(msg) = ns_bvci;
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200703 msgb_nsei(msg) = sgsn_nsei;
Harald Welte672f5c42010-05-03 18:54:58 +0200704
Harald Welte69619e32010-05-03 19:05:10 +0200705 strip_ns_hdr(msg);
706
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200707 rc = gprs_ns_sendmsg(bssgp_nsi, msg);
708 if (rc < 0)
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200709 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_TX_ERR_SGSN]);
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200710
711 return rc;
Harald Welte672f5c42010-05-03 18:54:58 +0200712}
713
Harald Welte672f5c42010-05-03 18:54:58 +0200714/* feed a message down the NS-VC associated with the specified peer */
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200715static int gbprox_relay2peer(struct msgb *old_msg, struct gbproxy_peer *peer,
Harald Welte9f75c352010-04-30 20:26:32 +0200716 uint16_t ns_bvci)
717{
Harald Welte39d0bb52010-05-12 18:10:25 +0000718 /* create a copy of the message so the old one can
719 * be free()d safely when we return from gbprox_rcvmsg() */
Holger Hans Peter Freyther7127b022014-08-04 11:52:52 +0200720 struct msgb *msg = gprs_msgb_copy(old_msg, "msgb_relay2peer");
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200721 int rc;
Harald Welte39d0bb52010-05-12 18:10:25 +0000722
Harald Welte0ab535b2010-05-13 10:34:56 +0200723 DEBUGP(DGPRS, "NSEI=%u proxying SGSN->BSS (NS_BVCI=%u, NSEI=%u)\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200724 msgb_nsei(msg), ns_bvci, peer->nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200725
Harald Welte9f75c352010-04-30 20:26:32 +0200726 msgb_bvci(msg) = ns_bvci;
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200727 msgb_nsei(msg) = peer->nsei;
Harald Welte9f75c352010-04-30 20:26:32 +0200728
Harald Welte0ab535b2010-05-13 10:34:56 +0200729 /* Strip the old NS header, it will be replaced with a new one */
Harald Welte69619e32010-05-03 19:05:10 +0200730 strip_ns_hdr(msg);
731
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200732 rc = gprs_ns_sendmsg(bssgp_nsi, msg);
733 if (rc < 0)
734 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_TX_ERR]);
735
736 return rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200737}
738
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200739static int block_unblock_peer(struct gbproxy_config *cfg, uint16_t ptp_bvci, uint8_t pdu_type)
Harald Welte36f98d92011-02-06 13:09:29 +0100740{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200741 struct gbproxy_peer *peer;
Harald Welte36f98d92011-02-06 13:09:29 +0100742
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200743 peer = gbproxy_peer_by_bvci(cfg, ptp_bvci);
Harald Welte36f98d92011-02-06 13:09:29 +0100744 if (!peer) {
745 LOGP(DGPRS, LOGL_ERROR, "BVCI=%u: Cannot find BSS\n",
746 ptp_bvci);
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200747 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_BVCI]);
Harald Welte36f98d92011-02-06 13:09:29 +0100748 return -ENOENT;
749 }
750
751 switch (pdu_type) {
752 case BSSGP_PDUT_BVC_BLOCK_ACK:
753 peer->blocked = 1;
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200754 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_BLOCKED]);
Harald Welte36f98d92011-02-06 13:09:29 +0100755 break;
756 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
757 peer->blocked = 0;
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200758 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_UNBLOCKED]);
Harald Welte36f98d92011-02-06 13:09:29 +0100759 break;
760 default:
761 break;
762 }
763 return 0;
764}
765
Harald Welte9f75c352010-04-30 20:26:32 +0200766/* Send a message to a peer identified by ptp_bvci but using ns_bvci
767 * in the NS hdr */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200768static int gbprox_relay2bvci(struct gbproxy_config *cfg, struct msgb *msg, uint16_t ptp_bvci,
Harald Welte9f75c352010-04-30 20:26:32 +0200769 uint16_t ns_bvci)
770{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200771 struct gbproxy_peer *peer;
Harald Welte9f75c352010-04-30 20:26:32 +0200772
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200773 peer = gbproxy_peer_by_bvci(cfg, ptp_bvci);
Harald Welte1c77c6e2010-05-03 21:37:11 +0200774 if (!peer) {
Harald Welte4cf12e92010-05-13 14:14:56 +0200775 LOGP(DGPRS, LOGL_ERROR, "BVCI=%u: Cannot find BSS\n",
Harald Welte1c77c6e2010-05-03 21:37:11 +0200776 ptp_bvci);
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200777 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_BVCI]);
Harald Welte9f75c352010-04-30 20:26:32 +0200778 return -ENOENT;
Harald Welte1c77c6e2010-05-03 21:37:11 +0200779 }
Harald Welte9f75c352010-04-30 20:26:32 +0200780
Harald Welte69619e32010-05-03 19:05:10 +0200781 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200782}
783
Harald Welteb1fd9022012-06-17 12:16:31 +0800784int bssgp_prim_cb(struct osmo_prim_hdr *oph, void *ctx)
785{
786 return 0;
787}
788
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200789/* Receive an incoming PTP message from a BSS-side NS-VC */
790static int gbprox_rx_ptp_from_bss(struct gbproxy_config *cfg,
791 struct msgb *msg, uint16_t nsei,
792 uint16_t nsvci, uint16_t ns_bvci)
793{
794 struct gbproxy_peer *peer;
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200795 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
796 uint8_t pdu_type = bgph->pdu_type;
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200797 int rc;
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200798
799 peer = gbproxy_peer_by_bvci(cfg, ns_bvci);
Jacob Erlbeck058ae122014-10-10 09:07:04 +0200800 if (!peer) {
801 LOGP(DGPRS, LOGL_NOTICE, "Didn't find peer for "
802 "BVCI=%u for PTP message from NSVC=%u/NSEI=%u (BSS), "
803 "discarding message\n",
804 ns_bvci, nsvci, nsei);
805 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI,
806 &ns_bvci, msg);
807 }
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200808
Jacob Erlbeck43b8f9f2014-10-02 14:56:44 +0200809 check_peer_nsei(peer, nsei);
Jacob Erlbeck43b8f9f2014-10-02 14:56:44 +0200810
Jacob Erlbeck058ae122014-10-10 09:07:04 +0200811 rc = gbprox_process_bssgp_ul(cfg, msg, peer);
812 if (!rc)
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +0200813 return 0;
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200814
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200815 switch (pdu_type) {
816 case BSSGP_PDUT_FLOW_CONTROL_BVC:
817 if (!cfg->route_to_sgsn2)
818 break;
819
820 /* Send a copy to the secondary SGSN */
821 gbprox_relay2sgsn(cfg, msg, ns_bvci, cfg->nsip_sgsn2_nsei);
822 break;
823 default:
824 break;
825 }
826
827
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200828 return gbprox_relay2sgsn(cfg, msg, ns_bvci, cfg->nsip_sgsn_nsei);
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200829}
830
831/* Receive an incoming PTP message from a SGSN-side NS-VC */
832static int gbprox_rx_ptp_from_sgsn(struct gbproxy_config *cfg,
833 struct msgb *msg, uint16_t nsei,
834 uint16_t nsvci, uint16_t ns_bvci)
835{
836 struct gbproxy_peer *peer;
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200837 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
838 uint8_t pdu_type = bgph->pdu_type;
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200839
840 peer = gbproxy_peer_by_bvci(cfg, ns_bvci);
841
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200842 /* Send status messages before patching */
843
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200844 if (!peer) {
845 LOGP(DGPRS, LOGL_INFO, "Didn't find peer for "
846 "BVCI=%u for message from NSVC=%u/NSEI=%u (SGSN)\n",
847 ns_bvci, nsvci, nsei);
848 rate_ctr_inc(&cfg->ctrg->
849 ctr[GBPROX_GLOB_CTR_INV_BVCI]);
850 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI,
851 &ns_bvci, msg);
852 }
853
854 if (peer->blocked) {
855 LOGP(DGPRS, LOGL_NOTICE, "Dropping PDU for "
856 "blocked BVCI=%u via NSVC=%u/NSEI=%u\n",
857 ns_bvci, nsvci, nsei);
858 rate_ctr_inc(&peer->ctrg->ctr[GBPROX_PEER_CTR_DROPPED]);
Jacob Erlbeck17b42b82014-08-29 12:20:15 +0200859 return bssgp_tx_status(BSSGP_CAUSE_BVCI_BLOCKED, &ns_bvci, msg);
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200860 }
861
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200862 switch (pdu_type) {
863 case BSSGP_PDUT_FLOW_CONTROL_BVC_ACK:
864 case BSSGP_PDUT_BVC_BLOCK_ACK:
865 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
866 if (cfg->route_to_sgsn2 && nsei == cfg->nsip_sgsn2_nsei)
867 /* Hide ACKs from the secondary SGSN, the primary SGSN
868 * is responsible to send them. */
869 return 0;
870 break;
871 default:
872 break;
873 }
874
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200875 /* Optionally patch the message */
876 gbprox_process_bssgp_dl(cfg, msg, peer);
877
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200878 return gbprox_relay2peer(msg, peer, ns_bvci);
879}
880
Harald Welte9f75c352010-04-30 20:26:32 +0200881/* Receive an incoming signalling message from a BSS-side NS-VC */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200882static int gbprox_rx_sig_from_bss(struct gbproxy_config *cfg,
883 struct msgb *msg, uint16_t nsei,
Harald Welte9f75c352010-04-30 20:26:32 +0200884 uint16_t ns_bvci)
885{
Harald Welteca3620a2010-05-03 16:30:59 +0200886 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200887 struct tlv_parsed tp;
888 uint8_t pdu_type = bgph->pdu_type;
Harald Welteca3620a2010-05-03 16:30:59 +0200889 int data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +0200890 struct gbproxy_peer *from_peer = NULL;
Harald Welte70f38d22010-05-01 12:10:57 +0200891 struct gprs_ra_id raid;
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200892 int copy_to_sgsn2 = 0;
Jacob Erlbeck59300642014-09-08 09:04:01 +0200893 int rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200894
Harald Weltec471d3d2011-02-06 17:13:12 +0100895 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Welte4cf12e92010-05-13 14:14:56 +0200896 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u BVCI=%u is not signalling\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200897 nsei, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200898 return -EINVAL;
899 }
900
901 /* we actually should never see those two for BVCI == 0, but double-check
902 * just to make sure */
903 if (pdu_type == BSSGP_PDUT_UL_UNITDATA ||
904 pdu_type == BSSGP_PDUT_DL_UNITDATA) {
Harald Welte44c48302010-05-03 19:22:32 +0200905 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u UNITDATA not allowed in "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200906 "signalling\n", nsei);
Harald Welte9f75c352010-04-30 20:26:32 +0200907 return -EINVAL;
908 }
909
910 bssgp_tlv_parse(&tp, bgph->data, data_len);
911
912 switch (pdu_type) {
913 case BSSGP_PDUT_SUSPEND:
914 case BSSGP_PDUT_RESUME:
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200915 /* We implement RAI snooping during SUSPEND/RESUME, since it
916 * establishes a relationsip between BVCI/peer and the routeing
917 * area identification. The snooped information is then used
918 * for routing the {SUSPEND,RESUME}_[N]ACK back to the correct
919 * BSSGP */
Harald Welte9f75c352010-04-30 20:26:32 +0200920 if (!TLVP_PRESENT(&tp, BSSGP_IE_ROUTEING_AREA))
921 goto err_mand_ie;
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200922 from_peer = gbproxy_peer_by_nsei(cfg, nsei);
Harald Welte9f75c352010-04-30 20:26:32 +0200923 if (!from_peer)
924 goto err_no_peer;
Harald Welte1174c082010-05-12 00:07:29 +0200925 memcpy(from_peer->ra, TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA),
926 sizeof(from_peer->ra));
Harald Welte7fc98222010-05-11 10:15:42 +0200927 gsm48_parse_ra(&raid, from_peer->ra);
Harald Welte4cf12e92010-05-13 14:14:56 +0200928 LOGP(DGPRS, LOGL_INFO, "NSEI=%u BSSGP SUSPEND/RESUME "
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200929 "RAI snooping: RAI %u-%u-%u-%u behind BVCI=%u\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200930 nsei, raid.mcc, raid.mnc, raid.lac,
931 raid.rac , from_peer->bvci);
Harald Welte9f75c352010-04-30 20:26:32 +0200932 /* FIXME: This only supports one BSS per RA */
933 break;
Harald Welte44c48302010-05-03 19:22:32 +0200934 case BSSGP_PDUT_BVC_RESET:
935 /* If we receive a BVC reset on the signalling endpoint, we
936 * don't want the SGSN to reset, as the signalling endpoint
937 * is common for all point-to-point BVCs (and thus all BTS) */
938 if (TLVP_PRESENT(&tp, BSSGP_IE_BVCI)) {
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +0200939 uint16_t bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Harald Welte72953b82010-05-12 00:20:41 +0200940 LOGP(DGPRS, LOGL_INFO, "NSEI=%u Rx BVC RESET (BVCI=%u)\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200941 nsei, bvci);
Harald Welte44c48302010-05-03 19:22:32 +0200942 if (bvci == 0) {
943 /* FIXME: only do this if SGSN is alive! */
Harald Weltee9ea2692010-05-11 20:20:13 +0200944 LOGP(DGPRS, LOGL_INFO, "NSEI=%u Tx fake "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200945 "BVC RESET ACK of BVCI=0\n", nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200946 return bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_RESET_ACK,
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200947 nsei, 0, ns_bvci);
Harald Welte1174c082010-05-12 00:07:29 +0200948 }
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +0200949 from_peer = gbproxy_peer_by_bvci(cfg, bvci);
Harald Welte1174c082010-05-12 00:07:29 +0200950 if (!from_peer) {
Harald Welte1c77c6e2010-05-03 21:37:11 +0200951 /* if a PTP-BVC is reset, and we don't know that
952 * PTP-BVCI yet, we should allocate a new peer */
953 LOGP(DGPRS, LOGL_INFO, "Allocationg new peer for "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200954 "BVCI=%u via NSEI=%u\n", bvci, nsei);
Holger Hans Peter Freyther0196c992014-08-04 17:10:08 +0200955 from_peer = gbproxy_peer_alloc(cfg, bvci);
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200956 from_peer->nsei = nsei;
Harald Welte44c48302010-05-03 19:22:32 +0200957 }
Jacob Erlbeck64cb9242013-10-24 12:48:56 +0200958
959 if (!check_peer_nsei(from_peer, nsei))
960 from_peer->nsei = nsei;
961
Harald Welte1174c082010-05-12 00:07:29 +0200962 if (TLVP_PRESENT(&tp, BSSGP_IE_CELL_ID)) {
963 struct gprs_ra_id raid;
964 /* We have a Cell Identifier present in this
965 * PDU, this means we can extend our local
966 * state information about this particular cell
967 * */
968 memcpy(from_peer->ra,
969 TLVP_VAL(&tp, BSSGP_IE_CELL_ID),
970 sizeof(from_peer->ra));
971 gsm48_parse_ra(&raid, from_peer->ra);
972 LOGP(DGPRS, LOGL_INFO, "NSEI=%u/BVCI=%u "
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200973 "Cell ID %u-%u-%u-%u\n", nsei,
Harald Welte1174c082010-05-12 00:07:29 +0200974 bvci, raid.mcc, raid.mnc, raid.lac,
975 raid.rac);
976 }
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200977 if (cfg->route_to_sgsn2)
978 copy_to_sgsn2 = 1;
Harald Welte44c48302010-05-03 19:22:32 +0200979 }
980 break;
Harald Welte9f75c352010-04-30 20:26:32 +0200981 }
982
Harald Weltee9ea2692010-05-11 20:20:13 +0200983 /* Normally, we can simply pass on all signalling messages from BSS to
984 * SGSN */
Jacob Erlbeck59300642014-09-08 09:04:01 +0200985 rc = gbprox_process_bssgp_ul(cfg, msg, from_peer);
986 if (!rc)
987 return 0;
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +0200988
989 if (copy_to_sgsn2)
990 gbprox_relay2sgsn(cfg, msg, ns_bvci, cfg->nsip_sgsn2_nsei);
991
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200992 return gbprox_relay2sgsn(cfg, msg, ns_bvci, cfg->nsip_sgsn_nsei);
Harald Welte9f75c352010-04-30 20:26:32 +0200993err_no_peer:
Jacob Erlbeckc5085f92013-10-18 13:04:48 +0200994 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) cannot find peer based on NSEI\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +0200995 nsei);
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200996 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_NSEI]);
Jacob Erlbeck17b42b82014-08-29 12:20:15 +0200997 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200998err_mand_ie:
Harald Welte0a4050c2010-05-11 10:01:17 +0200999 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) missing mandatory RA IE\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001000 nsei);
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001001 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_BSS]);
Harald Welte0a4050c2010-05-11 10:01:17 +02001002 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001003}
1004
1005/* Receive paging request from SGSN, we need to relay to proper BSS */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001006static int gbprox_rx_paging(struct gbproxy_config *cfg, struct msgb *msg, struct tlv_parsed *tp,
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001007 uint32_t nsei, uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +02001008{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +02001009 struct gbproxy_peer *peer = NULL;
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001010 int errctr = GBPROX_GLOB_CTR_PROTO_ERR_SGSN;
Harald Welte9f75c352010-04-30 20:26:32 +02001011
Harald Welte4cf12e92010-05-13 14:14:56 +02001012 LOGP(DGPRS, LOGL_INFO, "NSEI=%u(SGSN) BSSGP PAGING ",
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001013 nsei);
Harald Welte9f75c352010-04-30 20:26:32 +02001014 if (TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +02001015 uint16_t bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
Harald Welte4cf12e92010-05-13 14:14:56 +02001016 LOGPC(DGPRS, LOGL_INFO, "routing by BVCI to peer BVCI=%u\n",
1017 bvci);
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001018 errctr = GBPROX_GLOB_CTR_OTHER_ERR;
Harald Welte9f75c352010-04-30 20:26:32 +02001019 } else if (TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA)) {
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +02001020 peer = gbproxy_peer_by_rai(cfg, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001021 LOGPC(DGPRS, LOGL_INFO, "routing by RAI 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_RAI;
Harald Welte9f75c352010-04-30 20:26:32 +02001024 } else if (TLVP_PRESENT(tp, BSSGP_IE_LOCATION_AREA)) {
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +02001025 peer = gbproxy_peer_by_lai(cfg, TLVP_VAL(tp, BSSGP_IE_LOCATION_AREA));
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001026 LOGPC(DGPRS, LOGL_INFO, "routing by LAI to peer BVCI=%u\n",
Holger Hans Peter Freyther62eaf542010-06-08 16:30:24 +08001027 peer ? peer->bvci : -1);
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001028 errctr = GBPROX_GLOB_CTR_INV_LAI;
Harald Welte9f75c352010-04-30 20:26:32 +02001029 } else
Harald Welte4cf12e92010-05-13 14:14:56 +02001030 LOGPC(DGPRS, LOGL_INFO, "\n");
1031
1032 if (!peer) {
1033 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) BSSGP PAGING: "
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001034 "unable to route, missing IE\n", nsei);
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001035 rate_ctr_inc(&cfg->ctrg->ctr[errctr]);
Harald Welte9f75c352010-04-30 20:26:32 +02001036 return -EINVAL;
Harald Welte4cf12e92010-05-13 14:14:56 +02001037 }
1038 return gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001039}
1040
Harald Welte0a4050c2010-05-11 10:01:17 +02001041/* Receive an incoming BVC-RESET message from the SGSN */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001042static int rx_reset_from_sgsn(struct gbproxy_config *cfg,
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001043 struct msgb *orig_msg,
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001044 struct msgb *msg, struct tlv_parsed *tp,
1045 uint32_t nsei, uint16_t ns_bvci)
Harald Welte0a4050c2010-05-11 10:01:17 +02001046{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +02001047 struct gbproxy_peer *peer;
Harald Welte0a4050c2010-05-11 10:01:17 +02001048 uint16_t ptp_bvci;
1049
1050 if (!TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001051 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001052 ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
Harald Welte0a4050c2010-05-11 10:01:17 +02001053 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE,
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001054 NULL, orig_msg);
Harald Welte0a4050c2010-05-11 10:01:17 +02001055 }
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +02001056 ptp_bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
Harald Welte0a4050c2010-05-11 10:01:17 +02001057
1058 if (ptp_bvci >= 2) {
1059 /* A reset for a PTP BVC was received, forward it to its
1060 * respective peer */
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +02001061 peer = gbproxy_peer_by_bvci(cfg, ptp_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +02001062 if (!peer) {
Harald Welte4cf12e92010-05-13 14:14:56 +02001063 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u BVCI=%u: Cannot find BSS\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001064 nsei, ptp_bvci);
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001065 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001066 ctr[GBPROX_GLOB_CTR_INV_BVCI]);
Harald Welte0a4050c2010-05-11 10:01:17 +02001067 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI,
Jacob Erlbeck17b42b82014-08-29 12:20:15 +02001068 &ptp_bvci, orig_msg);
Harald Welte0a4050c2010-05-11 10:01:17 +02001069 }
1070 return gbprox_relay2peer(msg, peer, ns_bvci);
1071 }
1072
1073 /* A reset for the Signalling entity has been received
1074 * from the SGSN. As the signalling BVCI is shared
1075 * among all the BSS's that we multiplex, it needs to
1076 * be relayed */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001077 llist_for_each_entry(peer, &cfg->bts_peers, list)
Harald Welte0a4050c2010-05-11 10:01:17 +02001078 gbprox_relay2peer(msg, peer, ns_bvci);
1079
1080 return 0;
1081}
1082
Harald Welte9f75c352010-04-30 20:26:32 +02001083/* Receive an incoming signalling message from the SGSN-side NS-VC */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001084static int gbprox_rx_sig_from_sgsn(struct gbproxy_config *cfg,
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001085 struct msgb *orig_msg, uint32_t nsei,
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001086 uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +02001087{
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001088 struct bssgp_normal_hdr *bgph =
1089 (struct bssgp_normal_hdr *) msgb_bssgph(orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001090 struct tlv_parsed tp;
1091 uint8_t pdu_type = bgph->pdu_type;
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001092 int data_len;
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +02001093 struct gbproxy_peer *peer;
Harald Welte9f75c352010-04-30 20:26:32 +02001094 uint16_t bvci;
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001095 struct msgb *msg;
Harald Welte9f75c352010-04-30 20:26:32 +02001096 int rc = 0;
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001097 int cause;
Harald Welte9f75c352010-04-30 20:26:32 +02001098
Harald Weltec471d3d2011-02-06 17:13:12 +01001099 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Welte4cf12e92010-05-13 14:14:56 +02001100 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) BVCI=%u is not "
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001101 "signalling\n", nsei, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +02001102 /* FIXME: Send proper error message */
Harald Welte9f75c352010-04-30 20:26:32 +02001103 return -EINVAL;
1104 }
1105
1106 /* we actually should never see those two for BVCI == 0, but double-check
1107 * just to make sure */
1108 if (pdu_type == BSSGP_PDUT_UL_UNITDATA ||
1109 pdu_type == BSSGP_PDUT_DL_UNITDATA) {
Harald Welte44c48302010-05-03 19:22:32 +02001110 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) UNITDATA not allowed in "
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001111 "signalling\n", nsei);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001112 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001113 }
1114
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001115 msg = gprs_msgb_copy(orig_msg, "rx_sig_from_sgsn");
1116 gbprox_process_bssgp_dl(cfg, msg, NULL);
1117 /* Update message info */
1118 bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
1119 data_len = msgb_bssgp_len(orig_msg) - sizeof(*bgph);
Harald Welte9f75c352010-04-30 20:26:32 +02001120 rc = bssgp_tlv_parse(&tp, bgph->data, data_len);
1121
1122 switch (pdu_type) {
Harald Welte0a4050c2010-05-11 10:01:17 +02001123 case BSSGP_PDUT_BVC_RESET:
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001124 rc = rx_reset_from_sgsn(cfg, msg, orig_msg, &tp, nsei, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +02001125 break;
Harald Welte9f75c352010-04-30 20:26:32 +02001126 case BSSGP_PDUT_BVC_RESET_ACK:
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +02001127 if (cfg->route_to_sgsn2 && nsei == cfg->nsip_sgsn2_nsei)
1128 break;
1129 /* fall through */
1130 case BSSGP_PDUT_FLUSH_LL:
Harald Welte9f75c352010-04-30 20:26:32 +02001131 /* simple case: BVCI IE is mandatory */
1132 if (!TLVP_PRESENT(&tp, BSSGP_IE_BVCI))
1133 goto err_mand_ie;
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +02001134 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001135 rc = gbprox_relay2bvci(cfg, msg, bvci, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001136 break;
1137 case BSSGP_PDUT_PAGING_PS:
1138 case BSSGP_PDUT_PAGING_CS:
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001139 /* process the paging request (LAI/RAI lookup) */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001140 rc = gbprox_rx_paging(cfg, msg, &tp, nsei, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001141 break;
1142 case BSSGP_PDUT_STATUS:
Harald Welte0a4050c2010-05-11 10:01:17 +02001143 /* Some exception has occurred */
Harald Welte44c48302010-05-03 19:22:32 +02001144 LOGP(DGPRS, LOGL_NOTICE,
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001145 "NSEI=%u(SGSN) BSSGP STATUS ", nsei);
Harald Welte0a4050c2010-05-11 10:01:17 +02001146 if (!TLVP_PRESENT(&tp, BSSGP_IE_CAUSE)) {
1147 LOGPC(DGPRS, LOGL_NOTICE, "\n");
1148 goto err_mand_ie;
1149 }
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001150 cause = *TLVP_VAL(&tp, BSSGP_IE_CAUSE);
Harald Welte0a4050c2010-05-11 10:01:17 +02001151 LOGPC(DGPRS, LOGL_NOTICE,
1152 "cause=0x%02x(%s) ", *TLVP_VAL(&tp, BSSGP_IE_CAUSE),
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001153 bssgp_cause_str(cause));
Harald Welte0a4050c2010-05-11 10:01:17 +02001154 if (TLVP_PRESENT(&tp, BSSGP_IE_BVCI)) {
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001155 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
1156 LOGPC(DGPRS, LOGL_NOTICE, "BVCI=%u\n", bvci);
1157
1158 if (cause == BSSGP_CAUSE_UNKNOWN_BVCI)
1159 rc = gbprox_relay2bvci(cfg, msg, bvci, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +02001160 } else
1161 LOGPC(DGPRS, LOGL_NOTICE, "\n");
Harald Welte9f75c352010-04-30 20:26:32 +02001162 break;
1163 /* those only exist in the SGSN -> BSS direction */
1164 case BSSGP_PDUT_SUSPEND_ACK:
1165 case BSSGP_PDUT_SUSPEND_NACK:
1166 case BSSGP_PDUT_RESUME_ACK:
1167 case BSSGP_PDUT_RESUME_NACK:
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001168 /* RAI IE is mandatory */
Harald Welte9f75c352010-04-30 20:26:32 +02001169 if (!TLVP_PRESENT(&tp, BSSGP_IE_ROUTEING_AREA))
1170 goto err_mand_ie;
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +02001171 peer = gbproxy_peer_by_rai(cfg, TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA));
Harald Welte9f75c352010-04-30 20:26:32 +02001172 if (!peer)
1173 goto err_no_peer;
Harald Welte69619e32010-05-03 19:05:10 +02001174 rc = gbprox_relay2peer(msg, peer, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001175 break;
Harald Welte36f98d92011-02-06 13:09:29 +01001176 case BSSGP_PDUT_BVC_BLOCK_ACK:
1177 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
1178 if (!TLVP_PRESENT(&tp, BSSGP_IE_BVCI))
1179 goto err_mand_ie;
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +02001180 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Harald Welte36f98d92011-02-06 13:09:29 +01001181 if (bvci == 0) {
1182 LOGP(DGPRS, LOGL_NOTICE, "NSEI=%u(SGSN) BSSGP "
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001183 "%sBLOCK_ACK for signalling BVCI ?!?\n", nsei,
Harald Welte36f98d92011-02-06 13:09:29 +01001184 pdu_type == BSSGP_PDUT_BVC_UNBLOCK_ACK ? "UN":"");
1185 /* should we send STATUS ? */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001186 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001187 ctr[GBPROX_GLOB_CTR_INV_BVCI]);
Harald Welte36f98d92011-02-06 13:09:29 +01001188 } else {
1189 /* Mark BVC as (un)blocked */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001190 block_unblock_peer(cfg, bvci, pdu_type);
Harald Welte36f98d92011-02-06 13:09:29 +01001191 }
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001192 rc = gbprox_relay2bvci(cfg, msg, bvci, ns_bvci);
Harald Welte36f98d92011-02-06 13:09:29 +01001193 break;
Harald Welte9f75c352010-04-30 20:26:32 +02001194 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Welte44c48302010-05-03 19:22:32 +02001195 LOGP(DGPRS, LOGL_ERROR,
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001196 "NSEI=%u(SGSN) BSSGP INVOKE TRACE not supported\n",nsei);
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001197 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001198 ctr[GBPROX_GLOB_CTR_NOT_SUPPORTED_SGSN]);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001199 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001200 break;
1201 default:
Harald Welte72953b82010-05-12 00:20:41 +02001202 LOGP(DGPRS, LOGL_NOTICE, "BSSGP PDU type 0x%02x unknown\n",
1203 pdu_type);
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001204 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001205 ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001206 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001207 break;
1208 }
1209
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001210 msgb_free(msg);
1211
Harald Welte9f75c352010-04-30 20:26:32 +02001212 return rc;
1213err_mand_ie:
Harald Welte1c77c6e2010-05-03 21:37:11 +02001214 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) missing mandatory IE\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001215 nsei);
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001216 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001217 ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001218 msgb_free(msg);
1219 return bssgp_tx_status(BSSGP_CAUSE_MISSING_MAND_IE, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001220err_no_peer:
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001221 LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(SGSN) cannot find peer based on RAI\n",
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001222 nsei);
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001223 rate_ctr_inc(&cfg->ctrg-> ctr[GBPROX_GLOB_CTR_INV_RAI]);
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +02001224 msgb_free(msg);
Jacob Erlbeck17b42b82014-08-29 12:20:15 +02001225 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, orig_msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001226}
1227
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +02001228static int gbproxy_is_sgsn_nsei(struct gbproxy_config *cfg, uint16_t nsei)
1229{
1230 return nsei == cfg->nsip_sgsn_nsei ||
1231 (cfg->route_to_sgsn2 && nsei == cfg->nsip_sgsn2_nsei);
1232}
1233
Harald Welte9f75c352010-04-30 20:26:32 +02001234/* Main input function for Gb proxy */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001235int gbprox_rcvmsg(struct gbproxy_config *cfg, struct msgb *msg, uint16_t nsei,
1236 uint16_t ns_bvci, uint16_t nsvci)
Harald Welte9f75c352010-04-30 20:26:32 +02001237{
Harald Welte672f5c42010-05-03 18:54:58 +02001238 int rc;
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +02001239 int remote_end_is_sgsn = gbproxy_is_sgsn_nsei(cfg, nsei);
Harald Welte9f75c352010-04-30 20:26:32 +02001240
1241 /* Only BVCI=0 messages need special treatment */
1242 if (ns_bvci == 0 || ns_bvci == 1) {
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001243 if (remote_end_is_sgsn)
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001244 rc = gbprox_rx_sig_from_sgsn(cfg, msg, nsei, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001245 else
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001246 rc = gbprox_rx_sig_from_bss(cfg, msg, nsei, ns_bvci);
Harald Welte672f5c42010-05-03 18:54:58 +02001247 } else {
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +02001248 /* All other BVCI are PTP */
1249 if (remote_end_is_sgsn)
1250 rc = gbprox_rx_ptp_from_sgsn(cfg, msg, nsei, nsvci,
1251 ns_bvci);
1252 else
1253 rc = gbprox_rx_ptp_from_bss(cfg, msg, nsei, nsvci,
1254 ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001255 }
1256
Harald Welte672f5c42010-05-03 18:54:58 +02001257 return rc;
Harald Welte9f75c352010-04-30 20:26:32 +02001258}
Harald Welte85801d02010-05-11 05:49:43 +02001259
Harald Welte1ccbf442010-05-14 11:53:08 +00001260int gbprox_reset_persistent_nsvcs(struct gprs_ns_inst *nsi)
1261{
1262 struct gprs_nsvc *nsvc;
1263
1264 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
1265 if (!nsvc->persistent)
1266 continue;
1267 gprs_nsvc_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
1268 }
1269 return 0;
1270}
1271
Harald Weltec1c1dd22010-05-11 06:34:24 +02001272/* Signal handler for signals from NS layer */
1273int gbprox_signal(unsigned int subsys, unsigned int signal,
1274 void *handler_data, void *signal_data)
1275{
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001276 struct gbproxy_config *cfg = handler_data;
Harald Weltec1c1dd22010-05-11 06:34:24 +02001277 struct ns_signal_data *nssd = signal_data;
1278 struct gprs_nsvc *nsvc = nssd->nsvc;
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +02001279 struct gbproxy_peer *peer;
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +02001280 int remote_end_is_sgsn = gbproxy_is_sgsn_nsei(cfg, nsvc->nsei);
Harald Weltec1c1dd22010-05-11 06:34:24 +02001281
Harald Weltea6a20b42012-06-16 16:40:42 +08001282 if (subsys != SS_L_NS)
Harald Weltec1c1dd22010-05-11 06:34:24 +02001283 return 0;
1284
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +02001285 if (signal == S_NS_RESET && remote_end_is_sgsn) {
Harald Weltef69c0592010-05-11 18:29:44 +02001286 /* We have received a NS-RESET from the NSEI and NSVC
1287 * of the SGSN. This might happen with SGSN that start
1288 * their own NS-RESET procedure without waiting for our
1289 * NS-RESET */
1290 nsvc->remote_end_is_sgsn = 1;
1291 }
1292
Harald Welteb778d2c2010-05-12 13:28:25 +00001293 if (signal == S_NS_ALIVE_EXP && nsvc->remote_end_is_sgsn) {
1294 LOGP(DGPRS, LOGL_NOTICE, "Tns alive expired too often, "
1295 "re-starting RESET procedure\n");
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001296 rate_ctr_inc(&cfg->ctrg->
Jacob Erlbeckbc555742013-10-18 14:34:55 +02001297 ctr[GBPROX_GLOB_CTR_RESTART_RESET_SGSN]);
Harald Weltee6599ee2012-06-17 12:25:53 +08001298 gprs_ns_nsip_connect(nsvc->nsi, &nsvc->ip.bts_addr,
1299 nsvc->nsei, nsvc->nsvci);
Harald Welteb778d2c2010-05-12 13:28:25 +00001300 }
1301
Harald Welte5e106d72011-02-06 16:33:29 +01001302 if (!nsvc->remote_end_is_sgsn) {
1303 /* from BSS to SGSN */
Jacob Erlbeck5f1faa32014-08-21 10:01:30 +02001304 peer = gbproxy_peer_by_nsei(cfg, nsvc->nsei);
Harald Welte5e106d72011-02-06 16:33:29 +01001305 if (!peer) {
1306 LOGP(DGPRS, LOGL_NOTICE, "signal %u for unknown peer "
1307 "NSEI=%u/NSVCI=%u\n", signal, nsvc->nsei,
1308 nsvc->nsvci);
1309 return 0;
1310 }
Harald Weltec1c1dd22010-05-11 06:34:24 +02001311 switch (signal) {
1312 case S_NS_RESET:
Harald Weltec1c1dd22010-05-11 06:34:24 +02001313 case S_NS_BLOCK:
Harald Welte5e106d72011-02-06 16:33:29 +01001314 if (!peer->blocked)
1315 break;
1316 LOGP(DGPRS, LOGL_NOTICE, "Converting NS_RESET from "
1317 "NSEI=%u/NSVCI=%u into BSSGP_BVC_BLOCK to SGSN\n",
1318 nsvc->nsei, nsvc->nsvci);
1319 bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK, nsvc->nsei,
1320 peer->bvci, 0);
Harald Weltec1c1dd22010-05-11 06:34:24 +02001321 break;
Harald Welte5e106d72011-02-06 16:33:29 +01001322 }
1323 } else {
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001324 /* Forward this message to all NS-VC to BSS */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001325 struct gprs_ns_inst *nsi = cfg->nsi;
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001326 struct gprs_nsvc *next_nsvc;
1327
1328 llist_for_each_entry(next_nsvc, &nsi->gprs_nsvcs, list) {
1329 if (next_nsvc->remote_end_is_sgsn)
1330 continue;
1331
1332 /* Note that the following does not start the full
1333 * procedures including timer based retransmissions. */
Harald Welte5e106d72011-02-06 16:33:29 +01001334 switch (signal) {
1335 case S_NS_RESET:
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001336 gprs_ns_tx_reset(next_nsvc, nssd->cause);
Harald Welte5e106d72011-02-06 16:33:29 +01001337 break;
1338 case S_NS_BLOCK:
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001339 gprs_ns_tx_block(next_nsvc, nssd->cause);
Harald Welte5e106d72011-02-06 16:33:29 +01001340 break;
1341 case S_NS_UNBLOCK:
Jacob Erlbecke75fec62013-10-15 12:00:27 +02001342 gprs_ns_tx_unblock(next_nsvc);
Harald Welte5e106d72011-02-06 16:33:29 +01001343 break;
1344 }
Harald Weltec1c1dd22010-05-11 06:34:24 +02001345 }
1346 }
1347 return 0;
1348}
1349
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001350void gbprox_reset(struct gbproxy_config *cfg)
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001351{
Holger Hans Peter Freyther1ddd9e52014-08-04 11:35:32 +02001352 struct gbproxy_peer *peer, *tmp;
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001353
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001354 llist_for_each_entry_safe(peer, tmp, &cfg->bts_peers, list)
Holger Hans Peter Freyther0196c992014-08-04 17:10:08 +02001355 gbproxy_peer_free(peer);
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001356
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001357 rate_ctr_group_free(cfg->ctrg);
1358 gbproxy_init_config(cfg);
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001359}
1360
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +02001361int gbproxy_init_config(struct gbproxy_config *cfg)
Jacob Erlbeck4211d792013-10-24 12:48:23 +02001362{
Jacob Erlbeck0d376712014-08-11 19:12:24 +02001363 struct timespec tp;
Jacob Erlbeck9a83d7a2014-09-25 11:17:31 +02001364
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +02001365 INIT_LLIST_HEAD(&cfg->bts_peers);
Holger Hans Peter Freythera7027a02014-08-04 11:19:56 +02001366 cfg->ctrg = rate_ctr_group_alloc(tall_bsc_ctx, &global_ctrg_desc, 0);
Jacob Erlbeck0d376712014-08-11 19:12:24 +02001367 clock_gettime(CLOCK_REALTIME, &tp);
1368 cfg->bss_ptmsi_state = tp.tv_sec + tp.tv_nsec;
1369 cfg->sgsn_tlli_state = tp.tv_sec - tp.tv_nsec;
Jacob Erlbeck9a83d7a2014-09-25 11:17:31 +02001370
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +02001371 return 0;
Jacob Erlbeck4211d792013-10-24 12:48:23 +02001372}