blob: 948745943fdf73d2179c9dcf59565d3ae2e6818a [file] [log] [blame]
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001/* Gb-proxy TLLI state handling */
2
3/* (C) 2014 by On-Waves
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21#include <osmocom/gsm/gsm48.h>
22
23#include <osmocom/sgsn/gb_proxy.h>
24
25#include <osmocom/sgsn/gprs_utils.h>
26#include <osmocom/sgsn/gprs_gb_parse.h>
27
28#include <osmocom/sgsn/debug.h>
29
30#include <osmocom/gsm/gsm_utils.h>
31
32#include <osmocom/core/rate_ctr.h>
33#include <osmocom/core/talloc.h>
34
35struct gbproxy_link_info *gbproxy_link_info_by_tlli(struct gbproxy_peer *peer,
36 uint32_t tlli)
37{
38 struct gbproxy_link_info *link_info;
39 struct gbproxy_patch_state *state = &peer->patch_state;
40
41 if (!tlli)
42 return NULL;
43
44 llist_for_each_entry(link_info, &state->logical_links, list)
45 if (link_info->tlli.current == tlli ||
46 link_info->tlli.assigned == tlli)
47 return link_info;
48
49 return NULL;
50}
51
52struct gbproxy_link_info *gbproxy_link_info_by_ptmsi(
53 struct gbproxy_peer *peer,
54 uint32_t ptmsi)
55{
56 struct gbproxy_link_info *link_info;
57 struct gbproxy_patch_state *state = &peer->patch_state;
58
59 if (ptmsi == GSM_RESERVED_TMSI)
60 return NULL;
61
62 llist_for_each_entry(link_info, &state->logical_links, list)
63 if (link_info->tlli.ptmsi == ptmsi)
64 return link_info;
65
66 return NULL;
67}
68
69struct gbproxy_link_info *gbproxy_link_info_by_any_sgsn_tlli(
70 struct gbproxy_peer *peer,
71 uint32_t tlli)
72{
73 struct gbproxy_link_info *link_info;
74 struct gbproxy_patch_state *state = &peer->patch_state;
75
76 if (!tlli)
77 return NULL;
78
79 /* Don't care about the NSEI */
80 llist_for_each_entry(link_info, &state->logical_links, list)
81 if (link_info->sgsn_tlli.current == tlli ||
82 link_info->sgsn_tlli.assigned == tlli)
83 return link_info;
84
85 return NULL;
86}
87
88struct gbproxy_link_info *gbproxy_link_info_by_sgsn_tlli(
89 struct gbproxy_peer *peer,
90 uint32_t tlli, uint32_t sgsn_nsei)
91{
92 struct gbproxy_link_info *link_info;
93 struct gbproxy_patch_state *state = &peer->patch_state;
94
95 if (!tlli)
96 return NULL;
97
98 llist_for_each_entry(link_info, &state->logical_links, list)
99 if ((link_info->sgsn_tlli.current == tlli ||
100 link_info->sgsn_tlli.assigned == tlli) &&
101 link_info->sgsn_nsei == sgsn_nsei)
102 return link_info;
103
104 return NULL;
105}
106
107struct gbproxy_link_info *gbproxy_link_info_by_imsi(
108 struct gbproxy_peer *peer,
109 const uint8_t *imsi,
110 size_t imsi_len)
111{
112 struct gbproxy_link_info *link_info;
113 struct gbproxy_patch_state *state = &peer->patch_state;
114
115 if (!gprs_is_mi_imsi(imsi, imsi_len))
116 return NULL;
117
118 llist_for_each_entry(link_info, &state->logical_links, list) {
119 if (link_info->imsi_len != imsi_len)
120 continue;
121 if (memcmp(link_info->imsi, imsi, imsi_len) != 0)
122 continue;
123
124 return link_info;
125 }
126
127 return NULL;
128}
129
130void gbproxy_link_info_discard_messages(struct gbproxy_link_info *link_info)
131{
132 struct msgb *msg, *nxt;
133
134 llist_for_each_entry_safe(msg, nxt, &link_info->stored_msgs, list) {
135 llist_del(&msg->list);
136 msgb_free(msg);
137 }
138}
139
140void gbproxy_delete_link_info(struct gbproxy_peer *peer,
141 struct gbproxy_link_info *link_info)
142{
143 struct gbproxy_patch_state *state = &peer->patch_state;
144
145 gbproxy_link_info_discard_messages(link_info);
146
147 llist_del(&link_info->list);
148 talloc_free(link_info);
149 state->logical_link_count -= 1;
150
151 peer->ctrg->ctr[GBPROX_PEER_CTR_TLLI_CACHE_SIZE].current =
152 state->logical_link_count;
153}
154
155void gbproxy_delete_link_infos(struct gbproxy_peer *peer)
156{
157 struct gbproxy_link_info *link_info, *nxt;
158 struct gbproxy_patch_state *state = &peer->patch_state;
159
160 llist_for_each_entry_safe(link_info, nxt, &state->logical_links, list)
161 gbproxy_delete_link_info(peer, link_info);
162
163 OSMO_ASSERT(state->logical_link_count == 0);
164 OSMO_ASSERT(llist_empty(&state->logical_links));
165}
166
167void gbproxy_attach_link_info(struct gbproxy_peer *peer, time_t now,
168 struct gbproxy_link_info *link_info)
169{
170 struct gbproxy_patch_state *state = &peer->patch_state;
171
172 link_info->timestamp = now;
173 llist_add(&link_info->list, &state->logical_links);
174 state->logical_link_count += 1;
175
176 peer->ctrg->ctr[GBPROX_PEER_CTR_TLLI_CACHE_SIZE].current =
177 state->logical_link_count;
178}
179
180int gbproxy_remove_stale_link_infos(struct gbproxy_peer *peer, time_t now)
181{
182 struct gbproxy_patch_state *state = &peer->patch_state;
183 int exceeded_max_len = 0;
184 int deleted_count = 0;
185 int check_for_age;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100186 OSMO_ASSERT(peer->nse);
187 struct gbproxy_config *cfg = peer->nse->cfg;
188 OSMO_ASSERT(cfg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200189
Daniel Willmanne50550e2020-11-26 18:19:21 +0100190 if (cfg->tlli_max_len > 0)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200191 exceeded_max_len =
Daniel Willmanne50550e2020-11-26 18:19:21 +0100192 state->logical_link_count - cfg->tlli_max_len;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200193
Daniel Willmanne50550e2020-11-26 18:19:21 +0100194 check_for_age = cfg->tlli_max_age > 0;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200195
196 for (; exceeded_max_len > 0; exceeded_max_len--) {
197 struct gbproxy_link_info *link_info;
198 OSMO_ASSERT(!llist_empty(&state->logical_links));
199 link_info = llist_entry(state->logical_links.prev,
200 struct gbproxy_link_info,
201 list);
202 LOGP(DGPRS, LOGL_INFO,
203 "Removing TLLI %08x from list "
204 "(stale, length %d, max_len exceeded)\n",
205 link_info->tlli.current, state->logical_link_count);
206
207 gbproxy_delete_link_info(peer, link_info);
208 deleted_count += 1;
209 }
210
211 while (check_for_age && !llist_empty(&state->logical_links)) {
212 time_t age;
213 struct gbproxy_link_info *link_info;
214 link_info = llist_entry(state->logical_links.prev,
215 struct gbproxy_link_info,
216 list);
217 age = now - link_info->timestamp;
218 /* age < 0 only happens after system time jumps, discard entry */
Daniel Willmanne50550e2020-11-26 18:19:21 +0100219 if (age <= cfg->tlli_max_age && age >= 0) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200220 check_for_age = 0;
221 continue;
222 }
223
224 LOGP(DGPRS, LOGL_INFO,
225 "Removing TLLI %08x from list "
226 "(stale, age %d, max_age exceeded)\n",
227 link_info->tlli.current, (int)age);
228
229 gbproxy_delete_link_info(peer, link_info);
230 deleted_count += 1;
231 }
232
233 return deleted_count;
234}
235
236struct gbproxy_link_info *gbproxy_link_info_alloc( struct gbproxy_peer *peer)
237{
238 struct gbproxy_link_info *link_info;
239
240 link_info = talloc_zero(peer, struct gbproxy_link_info);
241 link_info->tlli.ptmsi = GSM_RESERVED_TMSI;
242 link_info->sgsn_tlli.ptmsi = GSM_RESERVED_TMSI;
243
244 link_info->vu_gen_tx_bss = GBPROXY_INIT_VU_GEN_TX;
245
246 INIT_LLIST_HEAD(&link_info->stored_msgs);
247
248 return link_info;
249}
250
251void gbproxy_detach_link_info(
252 struct gbproxy_peer *peer,
253 struct gbproxy_link_info *link_info)
254{
255 struct gbproxy_patch_state *state = &peer->patch_state;
256
257 llist_del(&link_info->list);
258 OSMO_ASSERT(state->logical_link_count > 0);
259 state->logical_link_count -= 1;
260
261 peer->ctrg->ctr[GBPROX_PEER_CTR_TLLI_CACHE_SIZE].current =
262 state->logical_link_count;
263}
264
265void gbproxy_update_link_info(struct gbproxy_link_info *link_info,
266 const uint8_t *imsi, size_t imsi_len)
267{
268 if (!gprs_is_mi_imsi(imsi, imsi_len))
269 return;
270
271 link_info->imsi_len = imsi_len;
272 link_info->imsi =
273 talloc_realloc_size(link_info, link_info->imsi, imsi_len);
274 OSMO_ASSERT(link_info->imsi != NULL);
275 memcpy(link_info->imsi, imsi, imsi_len);
276}
277
278void gbproxy_reassign_tlli(struct gbproxy_tlli_state *tlli_state,
279 struct gbproxy_peer *peer, uint32_t new_tlli)
280{
281 if (new_tlli == tlli_state->current)
282 return;
283
284 LOGP(DGPRS, LOGL_INFO,
285 "The TLLI has been reassigned from %08x to %08x\n",
286 tlli_state->current, new_tlli);
287
288 /* Remember assigned TLLI */
289 tlli_state->assigned = new_tlli;
290 tlli_state->bss_validated = false;
291 tlli_state->net_validated = false;
292}
293
294uint32_t gbproxy_map_tlli(uint32_t other_tlli,
295 struct gbproxy_link_info *link_info, int to_bss)
296{
297 uint32_t tlli = 0;
298 struct gbproxy_tlli_state *src, *dst;
299 if (to_bss) {
300 src = &link_info->sgsn_tlli;
301 dst = &link_info->tlli;
302 } else {
303 src = &link_info->tlli;
304 dst = &link_info->sgsn_tlli;
305 }
306 if (src->current == other_tlli)
307 tlli = dst->current;
308 else if (src->assigned == other_tlli)
309 tlli = dst->assigned;
310
311 return tlli;
312}
313
314static void gbproxy_validate_tlli(struct gbproxy_tlli_state *tlli_state,
315 uint32_t tlli, int to_bss)
316{
317 LOGP(DGPRS, LOGL_DEBUG,
318 "%s({current = %08x, assigned = %08x, net_vld = %d, bss_vld = %d}, %08x)\n",
319 __func__, tlli_state->current, tlli_state->assigned,
320 tlli_state->net_validated, tlli_state->bss_validated, tlli);
321
322 if (!tlli_state->assigned || tlli_state->assigned != tlli)
323 return;
324
325 /* TODO: Is this ok? Check spec */
326 if (gprs_tlli_type(tlli) != TLLI_LOCAL)
327 return;
328
329 /* See GSM 04.08, 4.7.1.5 */
330 if (to_bss)
331 tlli_state->net_validated = true;
332 else
333 tlli_state->bss_validated = true;
334
335 if (!tlli_state->bss_validated || !tlli_state->net_validated)
336 return;
337
338 LOGP(DGPRS, LOGL_INFO,
339 "The TLLI %08x has been validated (was %08x)\n",
340 tlli_state->assigned, tlli_state->current);
341
342 tlli_state->current = tlli;
343 tlli_state->assigned = 0;
344}
345
346static void gbproxy_touch_link_info(struct gbproxy_peer *peer,
347 struct gbproxy_link_info *link_info,
348 time_t now)
349{
350 gbproxy_detach_link_info(peer, link_info);
351 gbproxy_attach_link_info(peer, now, link_info);
352}
353
354static int gbproxy_unregister_link_info(struct gbproxy_peer *peer,
355 struct gbproxy_link_info *link_info)
356{
357 if (!link_info)
358 return 1;
359
360 if (link_info->tlli.ptmsi == GSM_RESERVED_TMSI && !link_info->imsi_len) {
361 LOGP(DGPRS, LOGL_INFO,
362 "Removing TLLI %08x from list (P-TMSI or IMSI are not set)\n",
363 link_info->tlli.current);
364 gbproxy_delete_link_info(peer, link_info);
365 return 1;
366 }
367
368 link_info->tlli.current = 0;
369 link_info->tlli.assigned = 0;
370 link_info->sgsn_tlli.current = 0;
371 link_info->sgsn_tlli.assigned = 0;
372
373 link_info->is_deregistered = true;
374
375 gbproxy_reset_link(link_info);
376
377 return 0;
378}
379
380int gbproxy_imsi_matches(struct gbproxy_config *cfg,
381 enum gbproxy_match_id match_id,
382 struct gbproxy_link_info *link_info)
383{
384 struct gbproxy_match *match;
385 OSMO_ASSERT(match_id >= 0 && match_id < ARRAY_SIZE(cfg->matches));
386
387 match = &cfg->matches[match_id];
388 if (!match->enable)
389 return 1;
390
391 return link_info != NULL && link_info->is_matching[match_id];
392}
393
394static void gbproxy_assign_imsi(struct gbproxy_peer *peer,
395 struct gbproxy_link_info *link_info,
396 struct gprs_gb_parse_context *parse_ctx)
397{
398 int imsi_matches;
399 struct gbproxy_link_info *other_link_info;
400 enum gbproxy_match_id match_id;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100401 OSMO_ASSERT(peer->nse);
402 struct gbproxy_config *cfg = peer->nse->cfg;
403 OSMO_ASSERT(cfg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200404
405 /* Make sure that there is a second entry with the same IMSI */
406 other_link_info = gbproxy_link_info_by_imsi(
407 peer, parse_ctx->imsi, parse_ctx->imsi_len);
408
409 if (other_link_info && other_link_info != link_info) {
Neels Hofmeyr7facc862020-05-29 16:53:23 +0200410 struct osmo_mobile_identity mi;
411 if (osmo_mobile_identity_decode(&mi, parse_ctx->imsi, parse_ctx->imsi_len, false)
412 || mi.type != GSM_MI_TYPE_IMSI) {
413 LOGP(DGPRS, LOGL_ERROR, "Failed to decode Mobile Identity\n");
414 } else {
415 LOGP(DGPRS, LOGL_INFO,
416 "Removing TLLI %08x from list (IMSI %s re-used)\n",
417 other_link_info->tlli.current, mi.imsi);
418 gbproxy_delete_link_info(peer, other_link_info);
419 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200420 }
421
422 /* Update the IMSI field */
423 gbproxy_update_link_info(link_info,
424 parse_ctx->imsi, parse_ctx->imsi_len);
425
426 /* Check, whether the IMSI matches */
427 OSMO_ASSERT(ARRAY_SIZE(link_info->is_matching) ==
Daniel Willmanne50550e2020-11-26 18:19:21 +0100428 ARRAY_SIZE(cfg->matches));
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200429 for (match_id = 0; match_id < ARRAY_SIZE(link_info->is_matching);
430 ++match_id) {
431 imsi_matches = gbproxy_check_imsi(
Daniel Willmanne50550e2020-11-26 18:19:21 +0100432 &cfg->matches[match_id],
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200433 parse_ctx->imsi, parse_ctx->imsi_len);
434 if (imsi_matches >= 0)
435 link_info->is_matching[match_id] = imsi_matches ? true : false;
436 }
437}
438
439static int gbproxy_tlli_match(const struct gbproxy_tlli_state *a,
440 const struct gbproxy_tlli_state *b)
441{
442 if (a->current && a->current == b->current)
443 return 1;
444
445 if (a->assigned && a->assigned == b->assigned)
446 return 1;
447
448 if (a->ptmsi != GSM_RESERVED_TMSI && a->ptmsi == b->ptmsi)
449 return 1;
450
451 return 0;
452}
453
454static void gbproxy_remove_matching_link_infos(
455 struct gbproxy_peer *peer, struct gbproxy_link_info *link_info)
456{
457 struct gbproxy_link_info *info, *nxt;
458 struct gbproxy_patch_state *state = &peer->patch_state;
459
460 /* Make sure that there is no second entry with the same P-TMSI or TLLI */
461 llist_for_each_entry_safe(info, nxt, &state->logical_links, list) {
462 if (info == link_info)
463 continue;
464
465 if (!gbproxy_tlli_match(&link_info->tlli, &info->tlli) &&
466 (link_info->sgsn_nsei != info->sgsn_nsei ||
467 !gbproxy_tlli_match(&link_info->sgsn_tlli, &info->sgsn_tlli)))
468 continue;
469
470 LOGP(DGPRS, LOGL_INFO,
471 "Removing TLLI %08x from list (P-TMSI/TLLI re-used)\n",
472 info->tlli.current);
473 gbproxy_delete_link_info(peer, info);
474 }
475}
476
477static struct gbproxy_link_info *gbproxy_get_link_info_ul(
478 struct gbproxy_peer *peer,
479 int *tlli_is_valid,
480 struct gprs_gb_parse_context *parse_ctx)
481{
482 struct gbproxy_link_info *link_info = NULL;
483
484 if (parse_ctx->tlli_enc) {
485 link_info = gbproxy_link_info_by_tlli(peer, parse_ctx->tlli);
486
487 if (link_info) {
488 *tlli_is_valid = 1;
489 return link_info;
490 }
491 }
492
493 *tlli_is_valid = 0;
494
495 if (!link_info && parse_ctx->imsi) {
496 link_info = gbproxy_link_info_by_imsi(
497 peer, parse_ctx->imsi, parse_ctx->imsi_len);
498 }
499
500 if (!link_info && parse_ctx->ptmsi_enc && !parse_ctx->old_raid_is_foreign) {
501 uint32_t bss_ptmsi;
502 gprs_parse_tmsi(parse_ctx->ptmsi_enc, &bss_ptmsi);
503 link_info = gbproxy_link_info_by_ptmsi(peer, bss_ptmsi);
504 }
505
506 if (!link_info)
507 return NULL;
508
509 link_info->is_deregistered = false;
510
511 return link_info;
512}
513
514struct gbproxy_link_info *gbproxy_update_link_state_ul(
515 struct gbproxy_peer *peer,
516 time_t now,
517 struct gprs_gb_parse_context *parse_ctx)
518{
519 struct gbproxy_link_info *link_info;
520 int tlli_is_valid;
521
522 link_info = gbproxy_get_link_info_ul(peer, &tlli_is_valid, parse_ctx);
523
524 if (parse_ctx->tlli_enc && parse_ctx->llc) {
525 uint32_t sgsn_tlli;
526
527 if (!link_info) {
528 LOGP(DGPRS, LOGL_INFO, "Adding TLLI %08x to list\n",
529 parse_ctx->tlli);
530 link_info = gbproxy_link_info_alloc(peer);
531 gbproxy_attach_link_info(peer, now, link_info);
532
533 /* Setup TLLIs */
534 sgsn_tlli = gbproxy_make_sgsn_tlli(peer, link_info,
535 parse_ctx->tlli);
536 link_info->sgsn_tlli.current = sgsn_tlli;
537 link_info->tlli.current = parse_ctx->tlli;
538 } else if (!tlli_is_valid) {
539 /* New TLLI (info found by IMSI or P-TMSI) */
540 link_info->tlli.current = parse_ctx->tlli;
541 link_info->tlli.assigned = 0;
542 link_info->sgsn_tlli.current =
543 gbproxy_make_sgsn_tlli(peer, link_info,
544 parse_ctx->tlli);
545 link_info->sgsn_tlli.assigned = 0;
546 gbproxy_touch_link_info(peer, link_info, now);
547 } else {
548 sgsn_tlli = gbproxy_map_tlli(parse_ctx->tlli, link_info, 0);
549 if (!sgsn_tlli)
550 sgsn_tlli = gbproxy_make_sgsn_tlli(peer, link_info,
551 parse_ctx->tlli);
552
553 gbproxy_validate_tlli(&link_info->tlli,
554 parse_ctx->tlli, 0);
555 gbproxy_validate_tlli(&link_info->sgsn_tlli,
556 sgsn_tlli, 0);
557 gbproxy_touch_link_info(peer, link_info, now);
558 }
559 } else if (link_info) {
560 gbproxy_touch_link_info(peer, link_info, now);
561 }
562
563 if (parse_ctx->imsi && link_info && link_info->imsi_len == 0)
564 gbproxy_assign_imsi(peer, link_info, parse_ctx);
565
566 return link_info;
567}
568
569static struct gbproxy_link_info *gbproxy_get_link_info_dl(
570 struct gbproxy_peer *peer,
571 struct gprs_gb_parse_context *parse_ctx)
572{
573 struct gbproxy_link_info *link_info = NULL;
574
575 /* Which key to use depends on its availability only, if that fails, do
576 * not retry it with another key (e.g. IMSI). */
577 if (parse_ctx->tlli_enc)
578 link_info = gbproxy_link_info_by_sgsn_tlli(peer, parse_ctx->tlli,
579 parse_ctx->peer_nsei);
580
581 /* TODO: Get link_info by (SGSN) P-TMSI if that is available (see
582 * GSM 08.18, 7.2) instead of using the IMSI as key. */
583 else if (parse_ctx->imsi)
584 link_info = gbproxy_link_info_by_imsi(
585 peer, parse_ctx->imsi, parse_ctx->imsi_len);
586
587 if (link_info)
588 link_info->is_deregistered = false;
589
590 return link_info;
591}
592
593struct gbproxy_link_info *gbproxy_update_link_state_dl(
594 struct gbproxy_peer *peer,
595 time_t now,
596 struct gprs_gb_parse_context *parse_ctx)
597{
598 struct gbproxy_link_info *link_info = NULL;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100599 OSMO_ASSERT(peer->nse);
600 struct gbproxy_config *cfg = peer->nse->cfg;
601 OSMO_ASSERT(cfg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200602
603 link_info = gbproxy_get_link_info_dl(peer, parse_ctx);
604
605 if (parse_ctx->tlli_enc && parse_ctx->new_ptmsi_enc && link_info) {
606 /* A new P-TMSI has been signalled in the message,
607 * register new TLLI */
608 uint32_t new_sgsn_ptmsi;
609 uint32_t new_bss_ptmsi = GSM_RESERVED_TMSI;
610 gprs_parse_tmsi(parse_ctx->new_ptmsi_enc, &new_sgsn_ptmsi);
611
612 if (link_info->sgsn_tlli.ptmsi == new_sgsn_ptmsi)
613 new_bss_ptmsi = link_info->tlli.ptmsi;
614
615 if (new_bss_ptmsi == GSM_RESERVED_TMSI)
616 new_bss_ptmsi = gbproxy_make_bss_ptmsi(peer, new_sgsn_ptmsi);
617
618 LOGP(DGPRS, LOGL_INFO,
619 "Got new PTMSI %08x from SGSN, using %08x for BSS\n",
620 new_sgsn_ptmsi, new_bss_ptmsi);
621 /* Setup PTMSIs */
622 link_info->sgsn_tlli.ptmsi = new_sgsn_ptmsi;
623 link_info->tlli.ptmsi = new_bss_ptmsi;
624 } else if (parse_ctx->tlli_enc && parse_ctx->new_ptmsi_enc && !link_info &&
Daniel Willmanne50550e2020-11-26 18:19:21 +0100625 !cfg->patch_ptmsi) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200626 /* A new P-TMSI has been signalled in the message with an unknown
627 * TLLI, create a new link_info */
628 /* TODO: Add a test case for this branch */
629 uint32_t new_ptmsi;
630 gprs_parse_tmsi(parse_ctx->new_ptmsi_enc, &new_ptmsi);
631
632 LOGP(DGPRS, LOGL_INFO,
633 "Adding TLLI %08x to list (SGSN, new P-TMSI is %08x)\n",
634 parse_ctx->tlli, new_ptmsi);
635
636 link_info = gbproxy_link_info_alloc(peer);
637 link_info->sgsn_tlli.current = parse_ctx->tlli;
638 link_info->tlli.current = parse_ctx->tlli;
639 link_info->sgsn_tlli.ptmsi = new_ptmsi;
640 link_info->tlli.ptmsi = new_ptmsi;
641 gbproxy_attach_link_info(peer, now, link_info);
642 } else if (parse_ctx->tlli_enc && parse_ctx->llc && !link_info &&
Daniel Willmanne50550e2020-11-26 18:19:21 +0100643 !cfg->patch_ptmsi) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200644 /* Unknown SGSN TLLI, create a new link_info */
645 uint32_t new_ptmsi;
646 link_info = gbproxy_link_info_alloc(peer);
647 LOGP(DGPRS, LOGL_INFO, "Adding TLLI %08x to list (SGSN)\n",
648 parse_ctx->tlli);
649
650 gbproxy_attach_link_info(peer, now, link_info);
651
652 /* Setup TLLIs */
653 link_info->sgsn_tlli.current = parse_ctx->tlli;
654 link_info->tlli.current = parse_ctx->tlli;
655
656 if (!parse_ctx->new_ptmsi_enc)
657 return link_info;
658 /* A new P-TMSI has been signalled in the message */
659
660 gprs_parse_tmsi(parse_ctx->new_ptmsi_enc, &new_ptmsi);
661 LOGP(DGPRS, LOGL_INFO,
662 "Assigning new P-TMSI %08x\n", new_ptmsi);
663 /* Setup P-TMSIs */
664 link_info->sgsn_tlli.ptmsi = new_ptmsi;
665 link_info->tlli.ptmsi = new_ptmsi;
666 } else if (parse_ctx->tlli_enc && parse_ctx->llc && link_info) {
667 uint32_t bss_tlli = gbproxy_map_tlli(parse_ctx->tlli,
668 link_info, 1);
669 gbproxy_validate_tlli(&link_info->sgsn_tlli, parse_ctx->tlli, 1);
670 gbproxy_validate_tlli(&link_info->tlli, bss_tlli, 1);
671 gbproxy_touch_link_info(peer, link_info, now);
672 } else if (link_info) {
673 gbproxy_touch_link_info(peer, link_info, now);
674 }
675
676 if (parse_ctx->imsi && link_info && link_info->imsi_len == 0)
677 gbproxy_assign_imsi(peer, link_info, parse_ctx);
678
679 return link_info;
680}
681
682int gbproxy_update_link_state_after(
683 struct gbproxy_peer *peer,
684 struct gbproxy_link_info *link_info,
685 time_t now,
686 struct gprs_gb_parse_context *parse_ctx)
687{
688 int rc = 0;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100689 OSMO_ASSERT(peer->nse);
690 struct gbproxy_config *cfg = peer->nse->cfg;
691 OSMO_ASSERT(cfg);
692
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200693 if (parse_ctx->invalidate_tlli && link_info) {
694 int keep_info =
Daniel Willmanne50550e2020-11-26 18:19:21 +0100695 cfg->keep_link_infos == GBPROX_KEEP_ALWAYS ||
696 (cfg->keep_link_infos == GBPROX_KEEP_REATTACH &&
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200697 parse_ctx->await_reattach) ||
Daniel Willmanne50550e2020-11-26 18:19:21 +0100698 (cfg->keep_link_infos == GBPROX_KEEP_IDENTIFIED &&
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200699 link_info->imsi_len > 0);
700 if (keep_info) {
701 LOGP(DGPRS, LOGL_INFO, "Unregistering TLLI %08x\n",
702 link_info->tlli.current);
703 rc = gbproxy_unregister_link_info(peer, link_info);
704 } else {
705 LOGP(DGPRS, LOGL_INFO, "Removing TLLI %08x from list\n",
706 link_info->tlli.current);
707 gbproxy_delete_link_info(peer, link_info);
708 rc = 1;
709 }
710 } else if (parse_ctx->to_bss && parse_ctx->tlli_enc &&
711 parse_ctx->new_ptmsi_enc && link_info) {
712 /* A new PTMSI has been signaled in the message,
713 * register new TLLI */
714 uint32_t new_sgsn_ptmsi = link_info->sgsn_tlli.ptmsi;
715 uint32_t new_bss_ptmsi = link_info->tlli.ptmsi;
716 uint32_t new_sgsn_tlli;
717 uint32_t new_bss_tlli = 0;
718
719 new_sgsn_tlli = gprs_tmsi2tlli(new_sgsn_ptmsi, TLLI_LOCAL);
720 if (new_bss_ptmsi != GSM_RESERVED_TMSI)
721 new_bss_tlli = gprs_tmsi2tlli(new_bss_ptmsi, TLLI_LOCAL);
722 LOGP(DGPRS, LOGL_INFO,
723 "Assigning new TLLI %08x to SGSN, %08x to BSS\n",
724 new_sgsn_tlli, new_bss_tlli);
725
726 gbproxy_reassign_tlli(&link_info->sgsn_tlli,
727 peer, new_sgsn_tlli);
728 gbproxy_reassign_tlli(&link_info->tlli,
729 peer, new_bss_tlli);
730 gbproxy_remove_matching_link_infos(peer, link_info);
731 }
732
733 gbproxy_remove_stale_link_infos(peer, now);
734
735 return rc;
736}
737
738