blob: 00bff2088be0eb1388f2f5276387c2e6f516af6c [file] [log] [blame]
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001/* Gb proxy peer handling */
2
3/* (C) 2010 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2010-2013 by On-Waves
5 * (C) 2013 by Holger Hans Peter Freyther
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * 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
11 * (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
16 * GNU Affero General Public License for more details.
17 *
18 * 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/>.
20 *
21 */
22
23#include <osmocom/sgsn/gb_proxy.h>
24
25#include <osmocom/sgsn/debug.h>
26
27#include <osmocom/gprs/protocol/gsm_08_18.h>
Daniel Willmann8f407b12020-12-02 19:33:50 +010028#include <osmocom/core/logging.h>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020029#include <osmocom/core/rate_ctr.h>
30#include <osmocom/core/stats.h>
31#include <osmocom/core/talloc.h>
32#include <osmocom/gsm/tlv.h>
33
34#include <string.h>
35
36extern void *tall_sgsn_ctx;
37
Harald Welte560bdb32020-12-04 22:24:47 +010038static const struct rate_ctr_desc bvc_ctr_description[] = {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020039 { "blocked", "BVC Block " },
40 { "unblocked", "BVC Unblock " },
41 { "dropped", "BVC blocked, dropped packet " },
42 { "inv-nsei", "NSEI mismatch " },
43 { "tx-err", "NS Transmission error " },
44 { "raid-mod:bss", "RAID patched (BSS )" },
45 { "raid-mod:sgsn", "RAID patched (SGSN)" },
46 { "apn-mod:sgsn", "APN patched " },
47 { "tlli-mod:bss", "TLLI patched (BSS )" },
48 { "tlli-mod:sgsn", "TLLI patched (SGSN)" },
49 { "ptmsi-mod:bss", "P-TMSI patched (BSS )" },
50 { "ptmsi-mod:sgsn","P-TMSI patched (SGSN)" },
51 { "mod-crypt-err", "Patch error: encrypted " },
52 { "mod-err", "Patch error: other " },
53 { "attach-reqs", "Attach Request count " },
54 { "attach-rejs", "Attach Reject count " },
55 { "attach-acks", "Attach Accept count " },
56 { "attach-cpls", "Attach Completed count " },
57 { "ra-upd-reqs", "RoutingArea Update Request count" },
58 { "ra-upd-rejs", "RoutingArea Update Reject count " },
59 { "ra-upd-acks", "RoutingArea Update Accept count " },
60 { "ra-upd-cpls", "RoutingArea Update Compltd count" },
61 { "gmm-status", "GMM Status count (BSS)" },
62 { "gmm-status", "GMM Status count (SGSN)" },
63 { "detach-reqs", "Detach Request count " },
64 { "detach-acks", "Detach Accept count " },
65 { "pdp-act-reqs", "PDP Activation Request count " },
66 { "pdp-act-rejs", "PDP Activation Reject count " },
67 { "pdp-act-acks", "PDP Activation Accept count " },
68 { "pdp-deact-reqs","PDP Deactivation Request count " },
69 { "pdp-deact-acks","PDP Deactivation Accept count " },
70 { "tlli-unknown", "TLLI from SGSN unknown " },
71 { "tlli-cache", "TLLI cache size " },
72};
73
Harald Welte560bdb32020-12-04 22:24:47 +010074osmo_static_assert(ARRAY_SIZE(bvc_ctr_description) == GBPROX_PEER_CTR_LAST, everything_described);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020075
Harald Welte560bdb32020-12-04 22:24:47 +010076static const struct rate_ctr_group_desc bvc_ctrg_desc = {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020077 .group_name_prefix = "gbproxy:peer",
78 .group_description = "GBProxy Peer Statistics",
Harald Welte560bdb32020-12-04 22:24:47 +010079 .num_ctr = ARRAY_SIZE(bvc_ctr_description),
80 .ctr_desc = bvc_ctr_description,
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020081 .class_id = OSMO_STATS_CLASS_PEER,
82};
83
84
Harald Welte560bdb32020-12-04 22:24:47 +010085/* Find the gbproxy_bvc by its BVCI. There can only be one match */
86struct gbproxy_bvc *gbproxy_bvc_by_bvci(struct gbproxy_config *cfg, uint16_t bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020087{
Daniel Willmanne50550e2020-11-26 18:19:21 +010088 struct gbproxy_nse *nse;
Harald Welted2fef952020-12-05 00:31:07 +010089 int i;
Daniel Willmanne50550e2020-11-26 18:19:21 +010090
Harald Welted2fef952020-12-05 00:31:07 +010091 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Welte560bdb32020-12-04 22:24:47 +010092 struct gbproxy_bvc *bvc;
93 llist_for_each_entry(bvc, &nse->bvcs, list) {
94 if (bvc->bvci == bvci)
95 return bvc;
Daniel Willmanne50550e2020-11-26 18:19:21 +010096 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020097 }
98 return NULL;
99}
100
Harald Welte560bdb32020-12-04 22:24:47 +0100101/* Find the gbproxy_bvc by its NSEI */
102/* FIXME: Only returns the first bvc, but we could have multiple on this nsei */
103struct gbproxy_bvc *gbproxy_bvc_by_nsei(struct gbproxy_config *cfg,
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200104 uint16_t nsei)
105{
Harald Welted2fef952020-12-05 00:31:07 +0100106 struct gbproxy_nse *nse = gbproxy_nse_by_nsei(cfg, nsei);
107
108 if (nse && !llist_empty(&nse->bvcs))
109 return llist_first_entry(&nse->bvcs, struct gbproxy_bvc, list);
110
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200111 return NULL;
112}
113
Harald Welte560bdb32020-12-04 22:24:47 +0100114/* look-up a bvc by its Routeing Area Identification (RAI) */
115/* FIXME: this doesn't make sense, as RA can span multiple bvcs! */
116struct gbproxy_bvc *gbproxy_bvc_by_rai(struct gbproxy_config *cfg,
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200117 const uint8_t *ra)
118{
Daniel Willmanne50550e2020-11-26 18:19:21 +0100119 struct gbproxy_nse *nse;
Harald Welted2fef952020-12-05 00:31:07 +0100120 int i;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100121
Harald Welted2fef952020-12-05 00:31:07 +0100122 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Welte560bdb32020-12-04 22:24:47 +0100123 struct gbproxy_bvc *bvc;
124 llist_for_each_entry(bvc, &nse->bvcs, list) {
125 if (!memcmp(bvc->ra, ra, 6))
126 return bvc;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100127 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200128 }
Daniel Willmanne50550e2020-11-26 18:19:21 +0100129
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200130 return NULL;
131}
132
Harald Welte560bdb32020-12-04 22:24:47 +0100133/* look-up a bvc by its Location Area Identification (LAI) */
134/* FIXME: this doesn't make sense, as LA can span multiple bvcs! */
135struct gbproxy_bvc *gbproxy_bvc_by_lai(struct gbproxy_config *cfg,
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200136 const uint8_t *la)
137{
Daniel Willmanne50550e2020-11-26 18:19:21 +0100138 struct gbproxy_nse *nse;
Harald Welted2fef952020-12-05 00:31:07 +0100139 int i;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100140
Harald Welted2fef952020-12-05 00:31:07 +0100141 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Welte560bdb32020-12-04 22:24:47 +0100142 struct gbproxy_bvc *bvc;
143 llist_for_each_entry(bvc, &nse->bvcs, list) {
144 if (!memcmp(bvc->ra, la, 5))
145 return bvc;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100146 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200147 }
148 return NULL;
149}
150
Harald Welte560bdb32020-12-04 22:24:47 +0100151/* look-up a bvc by its Location Area Code (LAC) */
152/* FIXME: this doesn't make sense, as LAC can span multiple bvcs! */
153struct gbproxy_bvc *gbproxy_bvc_by_lac(struct gbproxy_config *cfg,
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200154 const uint8_t *la)
155{
Daniel Willmanne50550e2020-11-26 18:19:21 +0100156 struct gbproxy_nse *nse;
Harald Welted2fef952020-12-05 00:31:07 +0100157 int i;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100158
Harald Welted2fef952020-12-05 00:31:07 +0100159 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Welte560bdb32020-12-04 22:24:47 +0100160 struct gbproxy_bvc *bvc;
161 llist_for_each_entry(bvc, &nse->bvcs, list) {
162 if (!memcmp(bvc->ra + 3, la + 3, 2))
163 return bvc;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100164 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200165 }
166 return NULL;
167}
168
Harald Welte560bdb32020-12-04 22:24:47 +0100169struct gbproxy_bvc *gbproxy_bvc_by_bssgp_tlv(struct gbproxy_config *cfg,
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200170 struct tlv_parsed *tp)
171{
Harald Welte173a1822020-12-03 15:36:59 +0100172 if (TLVP_PRES_LEN(tp, BSSGP_IE_BVCI, 2)) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200173 uint16_t bvci;
174
175 bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
176 if (bvci >= 2)
Harald Welte560bdb32020-12-04 22:24:47 +0100177 return gbproxy_bvc_by_bvci(cfg, bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200178 }
179
Harald Welte560bdb32020-12-04 22:24:47 +0100180 /* FIXME: this doesn't make sense, as RA can span multiple bvcs! */
Harald Welte173a1822020-12-03 15:36:59 +0100181 if (TLVP_PRES_LEN(tp, BSSGP_IE_ROUTEING_AREA, 6)) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200182 uint8_t *rai = (uint8_t *)TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA);
183 /* Only compare LAC part, since MCC/MNC are possibly patched.
184 * Since the LAC of different BSS must be different when
185 * MCC/MNC are patched, collisions shouldn't happen. */
Harald Welte560bdb32020-12-04 22:24:47 +0100186 return gbproxy_bvc_by_lac(cfg, rai);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200187 }
188
Harald Welte560bdb32020-12-04 22:24:47 +0100189 /* FIXME: this doesn't make sense, as LA can span multiple bvcs! */
Harald Welte173a1822020-12-03 15:36:59 +0100190 if (TLVP_PRES_LEN(tp, BSSGP_IE_LOCATION_AREA, 5)) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200191 uint8_t *lai = (uint8_t *)TLVP_VAL(tp, BSSGP_IE_LOCATION_AREA);
Harald Welte560bdb32020-12-04 22:24:47 +0100192 return gbproxy_bvc_by_lac(cfg, lai);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200193 }
194
195 return NULL;
196}
197
198static void clean_stale_timer_cb(void *data)
199{
200 time_t now;
201 struct timespec ts = {0,};
Harald Welte560bdb32020-12-04 22:24:47 +0100202 struct gbproxy_bvc *bvc = (struct gbproxy_bvc *) data;
203 OSMO_ASSERT(bvc);
204 OSMO_ASSERT(bvc->nse);
205 struct gbproxy_config *cfg = bvc->nse->cfg;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100206 OSMO_ASSERT(cfg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200207
208 osmo_clock_gettime(CLOCK_MONOTONIC, &ts);
209 now = ts.tv_sec;
Harald Welte560bdb32020-12-04 22:24:47 +0100210 gbproxy_remove_stale_link_infos(bvc, now);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100211 if (cfg->clean_stale_timer_freq != 0)
Harald Welte560bdb32020-12-04 22:24:47 +0100212 osmo_timer_schedule(&bvc->clean_stale_timer,
Daniel Willmanne50550e2020-11-26 18:19:21 +0100213 cfg->clean_stale_timer_freq, 0);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200214}
215
Harald Welte560bdb32020-12-04 22:24:47 +0100216struct gbproxy_bvc *gbproxy_bvc_alloc(struct gbproxy_nse *nse, uint16_t bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200217{
Harald Welte560bdb32020-12-04 22:24:47 +0100218 struct gbproxy_bvc *bvc;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100219 OSMO_ASSERT(nse);
220 struct gbproxy_config *cfg = nse->cfg;
221 OSMO_ASSERT(cfg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200222
Harald Welte560bdb32020-12-04 22:24:47 +0100223 bvc = talloc_zero(tall_sgsn_ctx, struct gbproxy_bvc);
224 if (!bvc)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200225 return NULL;
226
Harald Welte560bdb32020-12-04 22:24:47 +0100227 bvc->bvci = bvci;
228 bvc->ctrg = rate_ctr_group_alloc(bvc, &bvc_ctrg_desc, bvci);
229 if (!bvc->ctrg) {
230 talloc_free(bvc);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200231 return NULL;
232 }
Harald Welte560bdb32020-12-04 22:24:47 +0100233 bvc->nse = nse;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200234
Harald Welte560bdb32020-12-04 22:24:47 +0100235 llist_add(&bvc->list, &nse->bvcs);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200236
Harald Welte560bdb32020-12-04 22:24:47 +0100237 INIT_LLIST_HEAD(&bvc->patch_state.logical_links);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200238
Harald Welte560bdb32020-12-04 22:24:47 +0100239 osmo_timer_setup(&bvc->clean_stale_timer, clean_stale_timer_cb, bvc);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100240 if (cfg->clean_stale_timer_freq != 0)
Harald Welte560bdb32020-12-04 22:24:47 +0100241 osmo_timer_schedule(&bvc->clean_stale_timer,
Daniel Willmanne50550e2020-11-26 18:19:21 +0100242 cfg->clean_stale_timer_freq, 0);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200243
Harald Welte560bdb32020-12-04 22:24:47 +0100244 return bvc;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200245}
246
Harald Welte560bdb32020-12-04 22:24:47 +0100247void gbproxy_bvc_free(struct gbproxy_bvc *bvc)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200248{
Harald Welte560bdb32020-12-04 22:24:47 +0100249 if (!bvc)
Daniel Willmannf6a36cc2020-12-04 17:38:46 +0100250 return;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100251
Harald Welte560bdb32020-12-04 22:24:47 +0100252 llist_del(&bvc->list);
253 osmo_timer_del(&bvc->clean_stale_timer);
254 gbproxy_delete_link_infos(bvc);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200255
Harald Welte560bdb32020-12-04 22:24:47 +0100256 rate_ctr_group_free(bvc->ctrg);
257 bvc->ctrg = NULL;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200258
Harald Welte560bdb32020-12-04 22:24:47 +0100259 talloc_free(bvc);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200260}
261
Harald Welte560bdb32020-12-04 22:24:47 +0100262void gbproxy_bvc_move(struct gbproxy_bvc *bvc, struct gbproxy_nse *nse)
Daniel Willmann559edac2020-11-30 17:14:24 +0100263{
Harald Welte560bdb32020-12-04 22:24:47 +0100264 llist_del(&bvc->list);
265 llist_add(&bvc->list, &nse->bvcs);
266 bvc->nse = nse;
Daniel Willmann559edac2020-11-30 17:14:24 +0100267}
268
Harald Welte560bdb32020-12-04 22:24:47 +0100269/*! remove bvcs (BVCs) on NSE specified by NSEI.
270 * \param[in] cfg proxy in which we operate
271 * \param[in] nsei NS entity in which we should clean up
272 * \param[in] bvci if 0: remove all BVCs; if != 0: BVCI of the single BVC to clean up */
273int gbproxy_cleanup_bvcs(struct gbproxy_config *cfg, uint16_t nsei, uint16_t bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200274{
Harald Welted2fef952020-12-05 00:31:07 +0100275 int i, counter = 0;
276 struct gbproxy_nse *nse;
277 struct hlist_node *ntmp;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100278 OSMO_ASSERT(cfg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200279
Harald Welted2fef952020-12-05 00:31:07 +0100280 hash_for_each_safe(cfg->bss_nses, i, ntmp, nse, list) {
Harald Welte560bdb32020-12-04 22:24:47 +0100281 struct gbproxy_bvc *bvc, *tmp;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100282 if (nse->nsei != nsei)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200283 continue;
Harald Welte560bdb32020-12-04 22:24:47 +0100284 llist_for_each_entry_safe(bvc, tmp, &nse->bvcs, list) {
285 if (bvci && bvc->bvci != bvci)
Daniel Willmanne50550e2020-11-26 18:19:21 +0100286 continue;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200287
Harald Welte560bdb32020-12-04 22:24:47 +0100288 gbproxy_bvc_free(bvc);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100289 counter += 1;
290 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200291 }
292
293 return counter;
294}
Daniel Willmanne50550e2020-11-26 18:19:21 +0100295
296struct gbproxy_nse *gbproxy_nse_alloc(struct gbproxy_config *cfg, uint16_t nsei)
297{
298 struct gbproxy_nse *nse;
299 OSMO_ASSERT(cfg);
300
301 nse = talloc_zero(tall_sgsn_ctx, struct gbproxy_nse);
302 if (!nse)
303 return NULL;
304
305 nse->nsei = nsei;
306 nse->cfg = cfg;
307
Harald Welted2fef952020-12-05 00:31:07 +0100308 hash_add(cfg->bss_nses, &nse->list, nsei);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100309
Harald Welte560bdb32020-12-04 22:24:47 +0100310 INIT_LLIST_HEAD(&nse->bvcs);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100311
312 return nse;
313}
314
315void gbproxy_nse_free(struct gbproxy_nse *nse)
316{
Harald Welte560bdb32020-12-04 22:24:47 +0100317 struct gbproxy_bvc *bvc, *tmp;
Daniel Willmannf6a36cc2020-12-04 17:38:46 +0100318 if (!nse)
319 return;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100320
Harald Welted2fef952020-12-05 00:31:07 +0100321 hash_del(&nse->list);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100322
Harald Welte560bdb32020-12-04 22:24:47 +0100323 llist_for_each_entry_safe(bvc, tmp, &nse->bvcs, list)
324 gbproxy_bvc_free(bvc);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100325
326 talloc_free(nse);
327}
328
329struct gbproxy_nse *gbproxy_nse_by_nsei(struct gbproxy_config *cfg, uint16_t nsei)
330{
331 struct gbproxy_nse *nse;
332 OSMO_ASSERT(cfg);
333
Harald Welted2fef952020-12-05 00:31:07 +0100334 hash_for_each_possible(cfg->bss_nses, nse, list, nsei) {
Daniel Willmanne50550e2020-11-26 18:19:21 +0100335 if (nse->nsei == nsei)
336 return nse;
337 }
338
339 return NULL;
340}
341
342struct gbproxy_nse *gbproxy_nse_by_nsei_or_new(struct gbproxy_config *cfg, uint16_t nsei)
343{
344 struct gbproxy_nse *nse;
345 OSMO_ASSERT(cfg);
346
347 nse = gbproxy_nse_by_nsei(cfg, nsei);
348 if (!nse)
349 nse = gbproxy_nse_alloc(cfg, nsei);
350
351 return nse;
Harald Welte560bdb32020-12-04 22:24:47 +0100352}