blob: ea5fe1ee17768849e911a6d3e6d1ba31cbdf5cc7 [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
38static const struct rate_ctr_desc peer_ctr_description[] = {
39 { "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
74osmo_static_assert(ARRAY_SIZE(peer_ctr_description) == GBPROX_PEER_CTR_LAST, everything_described);
75
76static const struct rate_ctr_group_desc peer_ctrg_desc = {
77 .group_name_prefix = "gbproxy:peer",
78 .group_description = "GBProxy Peer Statistics",
79 .num_ctr = ARRAY_SIZE(peer_ctr_description),
80 .ctr_desc = peer_ctr_description,
81 .class_id = OSMO_STATS_CLASS_PEER,
82};
83
84
Daniel Willmanne50550e2020-11-26 18:19:21 +010085/* Find the gbproxy_peer by its BVCI. There can only be one match */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020086struct gbproxy_peer *gbproxy_peer_by_bvci(struct gbproxy_config *cfg, uint16_t bvci)
87{
Daniel Willmanne50550e2020-11-26 18:19:21 +010088 struct gbproxy_nse *nse;
89
90 llist_for_each_entry(nse, &cfg->nse_peers, list) {
91 struct gbproxy_peer *peer;
92 llist_for_each_entry(peer, &nse->bts_peers, list) {
93 if (peer->bvci == bvci)
94 return peer;
95 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020096 }
97 return NULL;
98}
99
Daniel Willmanne50550e2020-11-26 18:19:21 +0100100/* Find the gbproxy_peer by its NSEI */
101/* FIXME: Only returns the first peer, but we could have multiple on this nsei */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200102struct gbproxy_peer *gbproxy_peer_by_nsei(struct gbproxy_config *cfg,
103 uint16_t nsei)
104{
Daniel Willmanne50550e2020-11-26 18:19:21 +0100105 struct gbproxy_nse *nse;
106 llist_for_each_entry(nse, &cfg->nse_peers, list) {
107 if (nse->nsei == nsei && !llist_empty(&nse->bts_peers))
108 return llist_first_entry(&nse->bts_peers, struct gbproxy_peer, list);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200109 }
110 return NULL;
111}
112
113/* look-up a peer by its Routeing Area Identification (RAI) */
Harald Welte09ea4902020-11-24 09:27:38 +0100114/* FIXME: this doesn't make sense, as RA can span multiple peers! */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200115struct gbproxy_peer *gbproxy_peer_by_rai(struct gbproxy_config *cfg,
116 const uint8_t *ra)
117{
Daniel Willmanne50550e2020-11-26 18:19:21 +0100118 struct gbproxy_nse *nse;
119
120 llist_for_each_entry(nse, &cfg->nse_peers, list) {
121 struct gbproxy_peer *peer;
122 llist_for_each_entry(peer, &nse->bts_peers, list) {
123 if (!memcmp(peer->ra, ra, 6))
124 return peer;
125 }
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
131/* look-up a peer by its Location Area Identification (LAI) */
Harald Welte09ea4902020-11-24 09:27:38 +0100132/* FIXME: this doesn't make sense, as LA can span multiple peers! */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200133struct gbproxy_peer *gbproxy_peer_by_lai(struct gbproxy_config *cfg,
134 const uint8_t *la)
135{
Daniel Willmanne50550e2020-11-26 18:19:21 +0100136 struct gbproxy_nse *nse;
137
138 llist_for_each_entry(nse, &cfg->nse_peers, list) {
139 struct gbproxy_peer *peer;
140 llist_for_each_entry(peer, &nse->bts_peers, list) {
141 if (!memcmp(peer->ra, la, 5))
142 return peer;
143 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200144 }
145 return NULL;
146}
147
148/* look-up a peer by its Location Area Code (LAC) */
Harald Welte09ea4902020-11-24 09:27:38 +0100149/* FIXME: this doesn't make sense, as LAC can span multiple peers! */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200150struct gbproxy_peer *gbproxy_peer_by_lac(struct gbproxy_config *cfg,
151 const uint8_t *la)
152{
Daniel Willmanne50550e2020-11-26 18:19:21 +0100153 struct gbproxy_nse *nse;
154
155 llist_for_each_entry(nse, &cfg->nse_peers, list) {
156 struct gbproxy_peer *peer;
157 llist_for_each_entry(peer, &nse->bts_peers, list) {
158 if (!memcmp(peer->ra + 3, la + 3, 2))
159 return peer;
160 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200161 }
162 return NULL;
163}
164
165struct gbproxy_peer *gbproxy_peer_by_bssgp_tlv(struct gbproxy_config *cfg,
166 struct tlv_parsed *tp)
167{
168 if (TLVP_PRESENT(tp, BSSGP_IE_BVCI)) {
169 uint16_t bvci;
170
171 bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
172 if (bvci >= 2)
173 return gbproxy_peer_by_bvci(cfg, bvci);
174 }
175
Harald Welte09ea4902020-11-24 09:27:38 +0100176 /* FIXME: this doesn't make sense, as RA can span multiple peers! */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200177 if (TLVP_PRESENT(tp, BSSGP_IE_ROUTEING_AREA)) {
178 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. */
182 return gbproxy_peer_by_lac(cfg, rai);
183 }
184
Harald Welte09ea4902020-11-24 09:27:38 +0100185 /* FIXME: this doesn't make sense, as LA can span multiple peers! */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200186 if (TLVP_PRESENT(tp, BSSGP_IE_LOCATION_AREA)) {
187 uint8_t *lai = (uint8_t *)TLVP_VAL(tp, BSSGP_IE_LOCATION_AREA);
188 return gbproxy_peer_by_lac(cfg, lai);
189 }
190
191 return NULL;
192}
193
194static void clean_stale_timer_cb(void *data)
195{
196 time_t now;
197 struct timespec ts = {0,};
198 struct gbproxy_peer *peer = (struct gbproxy_peer *) data;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100199 OSMO_ASSERT(peer);
200 OSMO_ASSERT(peer->nse);
201 struct gbproxy_config *cfg = peer->nse->cfg;
202 OSMO_ASSERT(cfg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200203
204 osmo_clock_gettime(CLOCK_MONOTONIC, &ts);
205 now = ts.tv_sec;
206 gbproxy_remove_stale_link_infos(peer, now);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100207 if (cfg->clean_stale_timer_freq != 0)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200208 osmo_timer_schedule(&peer->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
Daniel Willmanne50550e2020-11-26 18:19:21 +0100212struct gbproxy_peer *gbproxy_peer_alloc(struct gbproxy_nse *nse, uint16_t bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200213{
214 struct gbproxy_peer *peer;
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
219 peer = talloc_zero(tall_sgsn_ctx, struct gbproxy_peer);
220 if (!peer)
221 return NULL;
222
223 peer->bvci = bvci;
224 peer->ctrg = rate_ctr_group_alloc(peer, &peer_ctrg_desc, bvci);
225 if (!peer->ctrg) {
226 talloc_free(peer);
227 return NULL;
228 }
Daniel Willmanne50550e2020-11-26 18:19:21 +0100229 peer->nse = nse;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200230
Daniel Willmanne50550e2020-11-26 18:19:21 +0100231 llist_add(&peer->list, &nse->bts_peers);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200232
233 INIT_LLIST_HEAD(&peer->patch_state.logical_links);
234
235 osmo_timer_setup(&peer->clean_stale_timer, clean_stale_timer_cb, peer);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100236 if (cfg->clean_stale_timer_freq != 0)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200237 osmo_timer_schedule(&peer->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
240 return peer;
241}
242
243void gbproxy_peer_free(struct gbproxy_peer *peer)
244{
Daniel Willmannf6a36cc2020-12-04 17:38:46 +0100245 if (!peer)
246 return;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100247
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200248 llist_del(&peer->list);
249 osmo_timer_del(&peer->clean_stale_timer);
250 gbproxy_delete_link_infos(peer);
251
252 rate_ctr_group_free(peer->ctrg);
253 peer->ctrg = NULL;
254
255 talloc_free(peer);
256}
257
Daniel Willmann559edac2020-11-30 17:14:24 +0100258void gbproxy_peer_move(struct gbproxy_peer *peer, struct gbproxy_nse *nse)
259{
260 llist_del(&peer->list);
261 llist_add(&peer->list, &nse->bts_peers);
262 peer->nse = nse;
263}
264
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200265int gbproxy_cleanup_peers(struct gbproxy_config *cfg, uint16_t nsei, uint16_t bvci)
266{
267 int counter = 0;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100268 struct gbproxy_nse *nse, *ntmp;
269 OSMO_ASSERT(cfg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200270
Daniel Willmanne50550e2020-11-26 18:19:21 +0100271 llist_for_each_entry_safe(nse, ntmp, &cfg->nse_peers, list) {
272 struct gbproxy_peer *peer, *tmp;
273 if (nse->nsei != nsei)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200274 continue;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100275 llist_for_each_entry_safe(peer, tmp, &nse->bts_peers, list) {
276 if (bvci && peer->bvci != bvci)
277 continue;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200278
Daniel Willmanne50550e2020-11-26 18:19:21 +0100279 gbproxy_peer_free(peer);
280 counter += 1;
281 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200282 }
283
284 return counter;
285}
Daniel Willmanne50550e2020-11-26 18:19:21 +0100286
287struct gbproxy_nse *gbproxy_nse_alloc(struct gbproxy_config *cfg, uint16_t nsei)
288{
289 struct gbproxy_nse *nse;
290 OSMO_ASSERT(cfg);
291
292 nse = talloc_zero(tall_sgsn_ctx, struct gbproxy_nse);
293 if (!nse)
294 return NULL;
295
296 nse->nsei = nsei;
297 nse->cfg = cfg;
298
299 llist_add(&nse->list, &cfg->nse_peers);
300
301 INIT_LLIST_HEAD(&nse->bts_peers);
302
303 return nse;
304}
305
306void gbproxy_nse_free(struct gbproxy_nse *nse)
307{
308 struct gbproxy_peer *peer, *tmp;
Daniel Willmannf6a36cc2020-12-04 17:38:46 +0100309 if (!nse)
310 return;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100311
312 llist_del(&nse->list);
313
314 llist_for_each_entry_safe(peer, tmp, &nse->bts_peers, list)
315 gbproxy_peer_free(peer);
316
317 talloc_free(nse);
318}
319
320struct gbproxy_nse *gbproxy_nse_by_nsei(struct gbproxy_config *cfg, uint16_t nsei)
321{
322 struct gbproxy_nse *nse;
323 OSMO_ASSERT(cfg);
324
325 llist_for_each_entry(nse, &cfg->nse_peers, list) {
326 if (nse->nsei == nsei)
327 return nse;
328 }
329
330 return NULL;
331}
332
333struct gbproxy_nse *gbproxy_nse_by_nsei_or_new(struct gbproxy_config *cfg, uint16_t nsei)
334{
335 struct gbproxy_nse *nse;
336 OSMO_ASSERT(cfg);
337
338 nse = gbproxy_nse_by_nsei(cfg, nsei);
339 if (!nse)
340 nse = gbproxy_nse_alloc(cfg, nsei);
341
342 return nse;
343}