blob: a5b93eea56bed251d0ebe0952f3ad8340e417bc6 [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;
89
Harald Welte560bdb32020-12-04 22:24:47 +010090 llist_for_each_entry(nse, &cfg->nses, list) {
91 struct gbproxy_bvc *bvc;
92 llist_for_each_entry(bvc, &nse->bvcs, list) {
93 if (bvc->bvci == bvci)
94 return bvc;
Daniel Willmanne50550e2020-11-26 18:19:21 +010095 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020096 }
97 return NULL;
98}
99
Harald Welte560bdb32020-12-04 22:24:47 +0100100/* Find the gbproxy_bvc by its NSEI */
101/* FIXME: Only returns the first bvc, but we could have multiple on this nsei */
102struct gbproxy_bvc *gbproxy_bvc_by_nsei(struct gbproxy_config *cfg,
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200103 uint16_t nsei)
104{
Daniel Willmanne50550e2020-11-26 18:19:21 +0100105 struct gbproxy_nse *nse;
Harald Welte560bdb32020-12-04 22:24:47 +0100106 llist_for_each_entry(nse, &cfg->nses, list) {
107 if (nse->nsei == nsei && !llist_empty(&nse->bvcs))
108 return llist_first_entry(&nse->bvcs, struct gbproxy_bvc, list);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200109 }
110 return NULL;
111}
112
Harald Welte560bdb32020-12-04 22:24:47 +0100113/* look-up a bvc by its Routeing Area Identification (RAI) */
114/* FIXME: this doesn't make sense, as RA can span multiple bvcs! */
115struct gbproxy_bvc *gbproxy_bvc_by_rai(struct gbproxy_config *cfg,
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200116 const uint8_t *ra)
117{
Daniel Willmanne50550e2020-11-26 18:19:21 +0100118 struct gbproxy_nse *nse;
119
Harald Welte560bdb32020-12-04 22:24:47 +0100120 llist_for_each_entry(nse, &cfg->nses, list) {
121 struct gbproxy_bvc *bvc;
122 llist_for_each_entry(bvc, &nse->bvcs, list) {
123 if (!memcmp(bvc->ra, ra, 6))
124 return bvc;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100125 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200126 }
Daniel Willmanne50550e2020-11-26 18:19:21 +0100127
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200128 return NULL;
129}
130
Harald Welte560bdb32020-12-04 22:24:47 +0100131/* look-up a bvc by its Location Area Identification (LAI) */
132/* FIXME: this doesn't make sense, as LA can span multiple bvcs! */
133struct gbproxy_bvc *gbproxy_bvc_by_lai(struct gbproxy_config *cfg,
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200134 const uint8_t *la)
135{
Daniel Willmanne50550e2020-11-26 18:19:21 +0100136 struct gbproxy_nse *nse;
137
Harald Welte560bdb32020-12-04 22:24:47 +0100138 llist_for_each_entry(nse, &cfg->nses, list) {
139 struct gbproxy_bvc *bvc;
140 llist_for_each_entry(bvc, &nse->bvcs, list) {
141 if (!memcmp(bvc->ra, la, 5))
142 return bvc;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100143 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200144 }
145 return NULL;
146}
147
Harald Welte560bdb32020-12-04 22:24:47 +0100148/* look-up a bvc by its Location Area Code (LAC) */
149/* FIXME: this doesn't make sense, as LAC can span multiple bvcs! */
150struct gbproxy_bvc *gbproxy_bvc_by_lac(struct gbproxy_config *cfg,
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200151 const uint8_t *la)
152{
Daniel Willmanne50550e2020-11-26 18:19:21 +0100153 struct gbproxy_nse *nse;
154
Harald Welte560bdb32020-12-04 22:24:47 +0100155 llist_for_each_entry(nse, &cfg->nses, list) {
156 struct gbproxy_bvc *bvc;
157 llist_for_each_entry(bvc, &nse->bvcs, list) {
158 if (!memcmp(bvc->ra + 3, la + 3, 2))
159 return bvc;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100160 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200161 }
162 return NULL;
163}
164
Harald Welte560bdb32020-12-04 22:24:47 +0100165struct gbproxy_bvc *gbproxy_bvc_by_bssgp_tlv(struct gbproxy_config *cfg,
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200166 struct tlv_parsed *tp)
167{
Harald Welte173a1822020-12-03 15:36:59 +0100168 if (TLVP_PRES_LEN(tp, BSSGP_IE_BVCI, 2)) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200169 uint16_t bvci;
170
171 bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
172 if (bvci >= 2)
Harald Welte560bdb32020-12-04 22:24:47 +0100173 return gbproxy_bvc_by_bvci(cfg, bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200174 }
175
Harald Welte560bdb32020-12-04 22:24:47 +0100176 /* FIXME: this doesn't make sense, as RA can span multiple bvcs! */
Harald Welte173a1822020-12-03 15:36:59 +0100177 if (TLVP_PRES_LEN(tp, BSSGP_IE_ROUTEING_AREA, 6)) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200178 uint8_t *rai = (uint8_t *)TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA);
179 /* Only compare LAC part, since MCC/MNC are possibly patched.
180 * Since the LAC of different BSS must be different when
181 * MCC/MNC are patched, collisions shouldn't happen. */
Harald Welte560bdb32020-12-04 22:24:47 +0100182 return gbproxy_bvc_by_lac(cfg, rai);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200183 }
184
Harald Welte560bdb32020-12-04 22:24:47 +0100185 /* FIXME: this doesn't make sense, as LA can span multiple bvcs! */
Harald Welte173a1822020-12-03 15:36:59 +0100186 if (TLVP_PRES_LEN(tp, BSSGP_IE_LOCATION_AREA, 5)) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200187 uint8_t *lai = (uint8_t *)TLVP_VAL(tp, BSSGP_IE_LOCATION_AREA);
Harald Welte560bdb32020-12-04 22:24:47 +0100188 return gbproxy_bvc_by_lac(cfg, lai);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200189 }
190
191 return NULL;
192}
193
194static void clean_stale_timer_cb(void *data)
195{
196 time_t now;
197 struct timespec ts = {0,};
Harald Welte560bdb32020-12-04 22:24:47 +0100198 struct gbproxy_bvc *bvc = (struct gbproxy_bvc *) data;
199 OSMO_ASSERT(bvc);
200 OSMO_ASSERT(bvc->nse);
201 struct gbproxy_config *cfg = bvc->nse->cfg;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100202 OSMO_ASSERT(cfg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200203
204 osmo_clock_gettime(CLOCK_MONOTONIC, &ts);
205 now = ts.tv_sec;
Harald Welte560bdb32020-12-04 22:24:47 +0100206 gbproxy_remove_stale_link_infos(bvc, now);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100207 if (cfg->clean_stale_timer_freq != 0)
Harald Welte560bdb32020-12-04 22:24:47 +0100208 osmo_timer_schedule(&bvc->clean_stale_timer,
Daniel Willmanne50550e2020-11-26 18:19:21 +0100209 cfg->clean_stale_timer_freq, 0);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200210}
211
Harald Welte560bdb32020-12-04 22:24:47 +0100212struct gbproxy_bvc *gbproxy_bvc_alloc(struct gbproxy_nse *nse, uint16_t bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200213{
Harald Welte560bdb32020-12-04 22:24:47 +0100214 struct gbproxy_bvc *bvc;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100215 OSMO_ASSERT(nse);
216 struct gbproxy_config *cfg = nse->cfg;
217 OSMO_ASSERT(cfg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200218
Harald Welte560bdb32020-12-04 22:24:47 +0100219 bvc = talloc_zero(tall_sgsn_ctx, struct gbproxy_bvc);
220 if (!bvc)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200221 return NULL;
222
Harald Welte560bdb32020-12-04 22:24:47 +0100223 bvc->bvci = bvci;
224 bvc->ctrg = rate_ctr_group_alloc(bvc, &bvc_ctrg_desc, bvci);
225 if (!bvc->ctrg) {
226 talloc_free(bvc);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200227 return NULL;
228 }
Harald Welte560bdb32020-12-04 22:24:47 +0100229 bvc->nse = nse;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200230
Harald Welte560bdb32020-12-04 22:24:47 +0100231 llist_add(&bvc->list, &nse->bvcs);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200232
Harald Welte560bdb32020-12-04 22:24:47 +0100233 INIT_LLIST_HEAD(&bvc->patch_state.logical_links);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200234
Harald Welte560bdb32020-12-04 22:24:47 +0100235 osmo_timer_setup(&bvc->clean_stale_timer, clean_stale_timer_cb, bvc);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100236 if (cfg->clean_stale_timer_freq != 0)
Harald Welte560bdb32020-12-04 22:24:47 +0100237 osmo_timer_schedule(&bvc->clean_stale_timer,
Daniel Willmanne50550e2020-11-26 18:19:21 +0100238 cfg->clean_stale_timer_freq, 0);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200239
Harald Welte560bdb32020-12-04 22:24:47 +0100240 return bvc;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200241}
242
Harald Welte560bdb32020-12-04 22:24:47 +0100243void gbproxy_bvc_free(struct gbproxy_bvc *bvc)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200244{
Harald Welte560bdb32020-12-04 22:24:47 +0100245 if (!bvc)
Daniel Willmannf6a36cc2020-12-04 17:38:46 +0100246 return;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100247
Harald Welte560bdb32020-12-04 22:24:47 +0100248 llist_del(&bvc->list);
249 osmo_timer_del(&bvc->clean_stale_timer);
250 gbproxy_delete_link_infos(bvc);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200251
Harald Welte560bdb32020-12-04 22:24:47 +0100252 rate_ctr_group_free(bvc->ctrg);
253 bvc->ctrg = NULL;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200254
Harald Welte560bdb32020-12-04 22:24:47 +0100255 talloc_free(bvc);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200256}
257
Harald Welte560bdb32020-12-04 22:24:47 +0100258void gbproxy_bvc_move(struct gbproxy_bvc *bvc, struct gbproxy_nse *nse)
Daniel Willmann559edac2020-11-30 17:14:24 +0100259{
Harald Welte560bdb32020-12-04 22:24:47 +0100260 llist_del(&bvc->list);
261 llist_add(&bvc->list, &nse->bvcs);
262 bvc->nse = nse;
Daniel Willmann559edac2020-11-30 17:14:24 +0100263}
264
Harald Welte560bdb32020-12-04 22:24:47 +0100265/*! remove bvcs (BVCs) on NSE specified by NSEI.
266 * \param[in] cfg proxy in which we operate
267 * \param[in] nsei NS entity in which we should clean up
268 * \param[in] bvci if 0: remove all BVCs; if != 0: BVCI of the single BVC to clean up */
269int gbproxy_cleanup_bvcs(struct gbproxy_config *cfg, uint16_t nsei, uint16_t bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200270{
271 int counter = 0;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100272 struct gbproxy_nse *nse, *ntmp;
273 OSMO_ASSERT(cfg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200274
Harald Welte560bdb32020-12-04 22:24:47 +0100275 llist_for_each_entry_safe(nse, ntmp, &cfg->nses, list) {
276 struct gbproxy_bvc *bvc, *tmp;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100277 if (nse->nsei != nsei)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200278 continue;
Harald Welte560bdb32020-12-04 22:24:47 +0100279 llist_for_each_entry_safe(bvc, tmp, &nse->bvcs, list) {
280 if (bvci && bvc->bvci != bvci)
Daniel Willmanne50550e2020-11-26 18:19:21 +0100281 continue;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200282
Harald Welte560bdb32020-12-04 22:24:47 +0100283 gbproxy_bvc_free(bvc);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100284 counter += 1;
285 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200286 }
287
288 return counter;
289}
Daniel Willmanne50550e2020-11-26 18:19:21 +0100290
291struct gbproxy_nse *gbproxy_nse_alloc(struct gbproxy_config *cfg, uint16_t nsei)
292{
293 struct gbproxy_nse *nse;
294 OSMO_ASSERT(cfg);
295
296 nse = talloc_zero(tall_sgsn_ctx, struct gbproxy_nse);
297 if (!nse)
298 return NULL;
299
300 nse->nsei = nsei;
301 nse->cfg = cfg;
302
Harald Welte560bdb32020-12-04 22:24:47 +0100303 llist_add(&nse->list, &cfg->nses);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100304
Harald Welte560bdb32020-12-04 22:24:47 +0100305 INIT_LLIST_HEAD(&nse->bvcs);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100306
307 return nse;
308}
309
310void gbproxy_nse_free(struct gbproxy_nse *nse)
311{
Harald Welte560bdb32020-12-04 22:24:47 +0100312 struct gbproxy_bvc *bvc, *tmp;
Daniel Willmannf6a36cc2020-12-04 17:38:46 +0100313 if (!nse)
314 return;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100315
316 llist_del(&nse->list);
317
Harald Welte560bdb32020-12-04 22:24:47 +0100318 llist_for_each_entry_safe(bvc, tmp, &nse->bvcs, list)
319 gbproxy_bvc_free(bvc);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100320
321 talloc_free(nse);
322}
323
324struct gbproxy_nse *gbproxy_nse_by_nsei(struct gbproxy_config *cfg, uint16_t nsei)
325{
326 struct gbproxy_nse *nse;
327 OSMO_ASSERT(cfg);
328
Harald Welte560bdb32020-12-04 22:24:47 +0100329 llist_for_each_entry(nse, &cfg->nses, list) {
Daniel Willmanne50550e2020-11-26 18:19:21 +0100330 if (nse->nsei == nsei)
331 return nse;
332 }
333
334 return NULL;
335}
336
337struct gbproxy_nse *gbproxy_nse_by_nsei_or_new(struct gbproxy_config *cfg, uint16_t nsei)
338{
339 struct gbproxy_nse *nse;
340 OSMO_ASSERT(cfg);
341
342 nse = gbproxy_nse_by_nsei(cfg, nsei);
343 if (!nse)
344 nse = gbproxy_nse_alloc(cfg, nsei);
345
346 return nse;
Harald Welte560bdb32020-12-04 22:24:47 +0100347}