blob: 4e21ede86e77e64b8ba927883c92d02aaa448326 [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;
186
187 if (peer->cfg->tlli_max_len > 0)
188 exceeded_max_len =
189 state->logical_link_count - peer->cfg->tlli_max_len;
190
191 check_for_age = peer->cfg->tlli_max_age > 0;
192
193 for (; exceeded_max_len > 0; exceeded_max_len--) {
194 struct gbproxy_link_info *link_info;
195 OSMO_ASSERT(!llist_empty(&state->logical_links));
196 link_info = llist_entry(state->logical_links.prev,
197 struct gbproxy_link_info,
198 list);
199 LOGP(DGPRS, LOGL_INFO,
200 "Removing TLLI %08x from list "
201 "(stale, length %d, max_len exceeded)\n",
202 link_info->tlli.current, state->logical_link_count);
203
204 gbproxy_delete_link_info(peer, link_info);
205 deleted_count += 1;
206 }
207
208 while (check_for_age && !llist_empty(&state->logical_links)) {
209 time_t age;
210 struct gbproxy_link_info *link_info;
211 link_info = llist_entry(state->logical_links.prev,
212 struct gbproxy_link_info,
213 list);
214 age = now - link_info->timestamp;
215 /* age < 0 only happens after system time jumps, discard entry */
216 if (age <= peer->cfg->tlli_max_age && age >= 0) {
217 check_for_age = 0;
218 continue;
219 }
220
221 LOGP(DGPRS, LOGL_INFO,
222 "Removing TLLI %08x from list "
223 "(stale, age %d, max_age exceeded)\n",
224 link_info->tlli.current, (int)age);
225
226 gbproxy_delete_link_info(peer, link_info);
227 deleted_count += 1;
228 }
229
230 return deleted_count;
231}
232
233struct gbproxy_link_info *gbproxy_link_info_alloc( struct gbproxy_peer *peer)
234{
235 struct gbproxy_link_info *link_info;
236
237 link_info = talloc_zero(peer, struct gbproxy_link_info);
238 link_info->tlli.ptmsi = GSM_RESERVED_TMSI;
239 link_info->sgsn_tlli.ptmsi = GSM_RESERVED_TMSI;
240
241 link_info->vu_gen_tx_bss = GBPROXY_INIT_VU_GEN_TX;
242
243 INIT_LLIST_HEAD(&link_info->stored_msgs);
244
245 return link_info;
246}
247
248void gbproxy_detach_link_info(
249 struct gbproxy_peer *peer,
250 struct gbproxy_link_info *link_info)
251{
252 struct gbproxy_patch_state *state = &peer->patch_state;
253
254 llist_del(&link_info->list);
255 OSMO_ASSERT(state->logical_link_count > 0);
256 state->logical_link_count -= 1;
257
258 peer->ctrg->ctr[GBPROX_PEER_CTR_TLLI_CACHE_SIZE].current =
259 state->logical_link_count;
260}
261
262void gbproxy_update_link_info(struct gbproxy_link_info *link_info,
263 const uint8_t *imsi, size_t imsi_len)
264{
265 if (!gprs_is_mi_imsi(imsi, imsi_len))
266 return;
267
268 link_info->imsi_len = imsi_len;
269 link_info->imsi =
270 talloc_realloc_size(link_info, link_info->imsi, imsi_len);
271 OSMO_ASSERT(link_info->imsi != NULL);
272 memcpy(link_info->imsi, imsi, imsi_len);
273}
274
275void gbproxy_reassign_tlli(struct gbproxy_tlli_state *tlli_state,
276 struct gbproxy_peer *peer, uint32_t new_tlli)
277{
278 if (new_tlli == tlli_state->current)
279 return;
280
281 LOGP(DGPRS, LOGL_INFO,
282 "The TLLI has been reassigned from %08x to %08x\n",
283 tlli_state->current, new_tlli);
284
285 /* Remember assigned TLLI */
286 tlli_state->assigned = new_tlli;
287 tlli_state->bss_validated = false;
288 tlli_state->net_validated = false;
289}
290
291uint32_t gbproxy_map_tlli(uint32_t other_tlli,
292 struct gbproxy_link_info *link_info, int to_bss)
293{
294 uint32_t tlli = 0;
295 struct gbproxy_tlli_state *src, *dst;
296 if (to_bss) {
297 src = &link_info->sgsn_tlli;
298 dst = &link_info->tlli;
299 } else {
300 src = &link_info->tlli;
301 dst = &link_info->sgsn_tlli;
302 }
303 if (src->current == other_tlli)
304 tlli = dst->current;
305 else if (src->assigned == other_tlli)
306 tlli = dst->assigned;
307
308 return tlli;
309}
310
311static void gbproxy_validate_tlli(struct gbproxy_tlli_state *tlli_state,
312 uint32_t tlli, int to_bss)
313{
314 LOGP(DGPRS, LOGL_DEBUG,
315 "%s({current = %08x, assigned = %08x, net_vld = %d, bss_vld = %d}, %08x)\n",
316 __func__, tlli_state->current, tlli_state->assigned,
317 tlli_state->net_validated, tlli_state->bss_validated, tlli);
318
319 if (!tlli_state->assigned || tlli_state->assigned != tlli)
320 return;
321
322 /* TODO: Is this ok? Check spec */
323 if (gprs_tlli_type(tlli) != TLLI_LOCAL)
324 return;
325
326 /* See GSM 04.08, 4.7.1.5 */
327 if (to_bss)
328 tlli_state->net_validated = true;
329 else
330 tlli_state->bss_validated = true;
331
332 if (!tlli_state->bss_validated || !tlli_state->net_validated)
333 return;
334
335 LOGP(DGPRS, LOGL_INFO,
336 "The TLLI %08x has been validated (was %08x)\n",
337 tlli_state->assigned, tlli_state->current);
338
339 tlli_state->current = tlli;
340 tlli_state->assigned = 0;
341}
342
343static void gbproxy_touch_link_info(struct gbproxy_peer *peer,
344 struct gbproxy_link_info *link_info,
345 time_t now)
346{
347 gbproxy_detach_link_info(peer, link_info);
348 gbproxy_attach_link_info(peer, now, link_info);
349}
350
351static int gbproxy_unregister_link_info(struct gbproxy_peer *peer,
352 struct gbproxy_link_info *link_info)
353{
354 if (!link_info)
355 return 1;
356
357 if (link_info->tlli.ptmsi == GSM_RESERVED_TMSI && !link_info->imsi_len) {
358 LOGP(DGPRS, LOGL_INFO,
359 "Removing TLLI %08x from list (P-TMSI or IMSI are not set)\n",
360 link_info->tlli.current);
361 gbproxy_delete_link_info(peer, link_info);
362 return 1;
363 }
364
365 link_info->tlli.current = 0;
366 link_info->tlli.assigned = 0;
367 link_info->sgsn_tlli.current = 0;
368 link_info->sgsn_tlli.assigned = 0;
369
370 link_info->is_deregistered = true;
371
372 gbproxy_reset_link(link_info);
373
374 return 0;
375}
376
377int gbproxy_imsi_matches(struct gbproxy_config *cfg,
378 enum gbproxy_match_id match_id,
379 struct gbproxy_link_info *link_info)
380{
381 struct gbproxy_match *match;
382 OSMO_ASSERT(match_id >= 0 && match_id < ARRAY_SIZE(cfg->matches));
383
384 match = &cfg->matches[match_id];
385 if (!match->enable)
386 return 1;
387
388 return link_info != NULL && link_info->is_matching[match_id];
389}
390
391static void gbproxy_assign_imsi(struct gbproxy_peer *peer,
392 struct gbproxy_link_info *link_info,
393 struct gprs_gb_parse_context *parse_ctx)
394{
395 int imsi_matches;
396 struct gbproxy_link_info *other_link_info;
397 enum gbproxy_match_id match_id;
398
399 /* Make sure that there is a second entry with the same IMSI */
400 other_link_info = gbproxy_link_info_by_imsi(
401 peer, parse_ctx->imsi, parse_ctx->imsi_len);
402
403 if (other_link_info && other_link_info != link_info) {
404 char mi_buf[200];
405 mi_buf[0] = '\0';
406 gsm48_mi_to_string(mi_buf, sizeof(mi_buf),
407 parse_ctx->imsi, parse_ctx->imsi_len);
408 LOGP(DGPRS, LOGL_INFO,
409 "Removing TLLI %08x from list (IMSI %s re-used)\n",
410 other_link_info->tlli.current, mi_buf);
411 gbproxy_delete_link_info(peer, other_link_info);
412 }
413
414 /* Update the IMSI field */
415 gbproxy_update_link_info(link_info,
416 parse_ctx->imsi, parse_ctx->imsi_len);
417
418 /* Check, whether the IMSI matches */
419 OSMO_ASSERT(ARRAY_SIZE(link_info->is_matching) ==
420 ARRAY_SIZE(peer->cfg->matches));
421 for (match_id = 0; match_id < ARRAY_SIZE(link_info->is_matching);
422 ++match_id) {
423 imsi_matches = gbproxy_check_imsi(
424 &peer->cfg->matches[match_id],
425 parse_ctx->imsi, parse_ctx->imsi_len);
426 if (imsi_matches >= 0)
427 link_info->is_matching[match_id] = imsi_matches ? true : false;
428 }
429}
430
431static int gbproxy_tlli_match(const struct gbproxy_tlli_state *a,
432 const struct gbproxy_tlli_state *b)
433{
434 if (a->current && a->current == b->current)
435 return 1;
436
437 if (a->assigned && a->assigned == b->assigned)
438 return 1;
439
440 if (a->ptmsi != GSM_RESERVED_TMSI && a->ptmsi == b->ptmsi)
441 return 1;
442
443 return 0;
444}
445
446static void gbproxy_remove_matching_link_infos(
447 struct gbproxy_peer *peer, struct gbproxy_link_info *link_info)
448{
449 struct gbproxy_link_info *info, *nxt;
450 struct gbproxy_patch_state *state = &peer->patch_state;
451
452 /* Make sure that there is no second entry with the same P-TMSI or TLLI */
453 llist_for_each_entry_safe(info, nxt, &state->logical_links, list) {
454 if (info == link_info)
455 continue;
456
457 if (!gbproxy_tlli_match(&link_info->tlli, &info->tlli) &&
458 (link_info->sgsn_nsei != info->sgsn_nsei ||
459 !gbproxy_tlli_match(&link_info->sgsn_tlli, &info->sgsn_tlli)))
460 continue;
461
462 LOGP(DGPRS, LOGL_INFO,
463 "Removing TLLI %08x from list (P-TMSI/TLLI re-used)\n",
464 info->tlli.current);
465 gbproxy_delete_link_info(peer, info);
466 }
467}
468
469static struct gbproxy_link_info *gbproxy_get_link_info_ul(
470 struct gbproxy_peer *peer,
471 int *tlli_is_valid,
472 struct gprs_gb_parse_context *parse_ctx)
473{
474 struct gbproxy_link_info *link_info = NULL;
475
476 if (parse_ctx->tlli_enc) {
477 link_info = gbproxy_link_info_by_tlli(peer, parse_ctx->tlli);
478
479 if (link_info) {
480 *tlli_is_valid = 1;
481 return link_info;
482 }
483 }
484
485 *tlli_is_valid = 0;
486
487 if (!link_info && parse_ctx->imsi) {
488 link_info = gbproxy_link_info_by_imsi(
489 peer, parse_ctx->imsi, parse_ctx->imsi_len);
490 }
491
492 if (!link_info && parse_ctx->ptmsi_enc && !parse_ctx->old_raid_is_foreign) {
493 uint32_t bss_ptmsi;
494 gprs_parse_tmsi(parse_ctx->ptmsi_enc, &bss_ptmsi);
495 link_info = gbproxy_link_info_by_ptmsi(peer, bss_ptmsi);
496 }
497
498 if (!link_info)
499 return NULL;
500
501 link_info->is_deregistered = false;
502
503 return link_info;
504}
505
506struct gbproxy_link_info *gbproxy_update_link_state_ul(
507 struct gbproxy_peer *peer,
508 time_t now,
509 struct gprs_gb_parse_context *parse_ctx)
510{
511 struct gbproxy_link_info *link_info;
512 int tlli_is_valid;
513
514 link_info = gbproxy_get_link_info_ul(peer, &tlli_is_valid, parse_ctx);
515
516 if (parse_ctx->tlli_enc && parse_ctx->llc) {
517 uint32_t sgsn_tlli;
518
519 if (!link_info) {
520 LOGP(DGPRS, LOGL_INFO, "Adding TLLI %08x to list\n",
521 parse_ctx->tlli);
522 link_info = gbproxy_link_info_alloc(peer);
523 gbproxy_attach_link_info(peer, now, link_info);
524
525 /* Setup TLLIs */
526 sgsn_tlli = gbproxy_make_sgsn_tlli(peer, link_info,
527 parse_ctx->tlli);
528 link_info->sgsn_tlli.current = sgsn_tlli;
529 link_info->tlli.current = parse_ctx->tlli;
530 } else if (!tlli_is_valid) {
531 /* New TLLI (info found by IMSI or P-TMSI) */
532 link_info->tlli.current = parse_ctx->tlli;
533 link_info->tlli.assigned = 0;
534 link_info->sgsn_tlli.current =
535 gbproxy_make_sgsn_tlli(peer, link_info,
536 parse_ctx->tlli);
537 link_info->sgsn_tlli.assigned = 0;
538 gbproxy_touch_link_info(peer, link_info, now);
539 } else {
540 sgsn_tlli = gbproxy_map_tlli(parse_ctx->tlli, link_info, 0);
541 if (!sgsn_tlli)
542 sgsn_tlli = gbproxy_make_sgsn_tlli(peer, link_info,
543 parse_ctx->tlli);
544
545 gbproxy_validate_tlli(&link_info->tlli,
546 parse_ctx->tlli, 0);
547 gbproxy_validate_tlli(&link_info->sgsn_tlli,
548 sgsn_tlli, 0);
549 gbproxy_touch_link_info(peer, link_info, now);
550 }
551 } else if (link_info) {
552 gbproxy_touch_link_info(peer, link_info, now);
553 }
554
555 if (parse_ctx->imsi && link_info && link_info->imsi_len == 0)
556 gbproxy_assign_imsi(peer, link_info, parse_ctx);
557
558 return link_info;
559}
560
561static struct gbproxy_link_info *gbproxy_get_link_info_dl(
562 struct gbproxy_peer *peer,
563 struct gprs_gb_parse_context *parse_ctx)
564{
565 struct gbproxy_link_info *link_info = NULL;
566
567 /* Which key to use depends on its availability only, if that fails, do
568 * not retry it with another key (e.g. IMSI). */
569 if (parse_ctx->tlli_enc)
570 link_info = gbproxy_link_info_by_sgsn_tlli(peer, parse_ctx->tlli,
571 parse_ctx->peer_nsei);
572
573 /* TODO: Get link_info by (SGSN) P-TMSI if that is available (see
574 * GSM 08.18, 7.2) instead of using the IMSI as key. */
575 else if (parse_ctx->imsi)
576 link_info = gbproxy_link_info_by_imsi(
577 peer, parse_ctx->imsi, parse_ctx->imsi_len);
578
579 if (link_info)
580 link_info->is_deregistered = false;
581
582 return link_info;
583}
584
585struct gbproxy_link_info *gbproxy_update_link_state_dl(
586 struct gbproxy_peer *peer,
587 time_t now,
588 struct gprs_gb_parse_context *parse_ctx)
589{
590 struct gbproxy_link_info *link_info = NULL;
591
592 link_info = gbproxy_get_link_info_dl(peer, parse_ctx);
593
594 if (parse_ctx->tlli_enc && parse_ctx->new_ptmsi_enc && link_info) {
595 /* A new P-TMSI has been signalled in the message,
596 * register new TLLI */
597 uint32_t new_sgsn_ptmsi;
598 uint32_t new_bss_ptmsi = GSM_RESERVED_TMSI;
599 gprs_parse_tmsi(parse_ctx->new_ptmsi_enc, &new_sgsn_ptmsi);
600
601 if (link_info->sgsn_tlli.ptmsi == new_sgsn_ptmsi)
602 new_bss_ptmsi = link_info->tlli.ptmsi;
603
604 if (new_bss_ptmsi == GSM_RESERVED_TMSI)
605 new_bss_ptmsi = gbproxy_make_bss_ptmsi(peer, new_sgsn_ptmsi);
606
607 LOGP(DGPRS, LOGL_INFO,
608 "Got new PTMSI %08x from SGSN, using %08x for BSS\n",
609 new_sgsn_ptmsi, new_bss_ptmsi);
610 /* Setup PTMSIs */
611 link_info->sgsn_tlli.ptmsi = new_sgsn_ptmsi;
612 link_info->tlli.ptmsi = new_bss_ptmsi;
613 } else if (parse_ctx->tlli_enc && parse_ctx->new_ptmsi_enc && !link_info &&
614 !peer->cfg->patch_ptmsi) {
615 /* A new P-TMSI has been signalled in the message with an unknown
616 * TLLI, create a new link_info */
617 /* TODO: Add a test case for this branch */
618 uint32_t new_ptmsi;
619 gprs_parse_tmsi(parse_ctx->new_ptmsi_enc, &new_ptmsi);
620
621 LOGP(DGPRS, LOGL_INFO,
622 "Adding TLLI %08x to list (SGSN, new P-TMSI is %08x)\n",
623 parse_ctx->tlli, new_ptmsi);
624
625 link_info = gbproxy_link_info_alloc(peer);
626 link_info->sgsn_tlli.current = parse_ctx->tlli;
627 link_info->tlli.current = parse_ctx->tlli;
628 link_info->sgsn_tlli.ptmsi = new_ptmsi;
629 link_info->tlli.ptmsi = new_ptmsi;
630 gbproxy_attach_link_info(peer, now, link_info);
631 } else if (parse_ctx->tlli_enc && parse_ctx->llc && !link_info &&
632 !peer->cfg->patch_ptmsi) {
633 /* Unknown SGSN TLLI, create a new link_info */
634 uint32_t new_ptmsi;
635 link_info = gbproxy_link_info_alloc(peer);
636 LOGP(DGPRS, LOGL_INFO, "Adding TLLI %08x to list (SGSN)\n",
637 parse_ctx->tlli);
638
639 gbproxy_attach_link_info(peer, now, link_info);
640
641 /* Setup TLLIs */
642 link_info->sgsn_tlli.current = parse_ctx->tlli;
643 link_info->tlli.current = parse_ctx->tlli;
644
645 if (!parse_ctx->new_ptmsi_enc)
646 return link_info;
647 /* A new P-TMSI has been signalled in the message */
648
649 gprs_parse_tmsi(parse_ctx->new_ptmsi_enc, &new_ptmsi);
650 LOGP(DGPRS, LOGL_INFO,
651 "Assigning new P-TMSI %08x\n", new_ptmsi);
652 /* Setup P-TMSIs */
653 link_info->sgsn_tlli.ptmsi = new_ptmsi;
654 link_info->tlli.ptmsi = new_ptmsi;
655 } else if (parse_ctx->tlli_enc && parse_ctx->llc && link_info) {
656 uint32_t bss_tlli = gbproxy_map_tlli(parse_ctx->tlli,
657 link_info, 1);
658 gbproxy_validate_tlli(&link_info->sgsn_tlli, parse_ctx->tlli, 1);
659 gbproxy_validate_tlli(&link_info->tlli, bss_tlli, 1);
660 gbproxy_touch_link_info(peer, link_info, now);
661 } else if (link_info) {
662 gbproxy_touch_link_info(peer, link_info, now);
663 }
664
665 if (parse_ctx->imsi && link_info && link_info->imsi_len == 0)
666 gbproxy_assign_imsi(peer, link_info, parse_ctx);
667
668 return link_info;
669}
670
671int gbproxy_update_link_state_after(
672 struct gbproxy_peer *peer,
673 struct gbproxy_link_info *link_info,
674 time_t now,
675 struct gprs_gb_parse_context *parse_ctx)
676{
677 int rc = 0;
678 if (parse_ctx->invalidate_tlli && link_info) {
679 int keep_info =
680 peer->cfg->keep_link_infos == GBPROX_KEEP_ALWAYS ||
681 (peer->cfg->keep_link_infos == GBPROX_KEEP_REATTACH &&
682 parse_ctx->await_reattach) ||
683 (peer->cfg->keep_link_infos == GBPROX_KEEP_IDENTIFIED &&
684 link_info->imsi_len > 0);
685 if (keep_info) {
686 LOGP(DGPRS, LOGL_INFO, "Unregistering TLLI %08x\n",
687 link_info->tlli.current);
688 rc = gbproxy_unregister_link_info(peer, link_info);
689 } else {
690 LOGP(DGPRS, LOGL_INFO, "Removing TLLI %08x from list\n",
691 link_info->tlli.current);
692 gbproxy_delete_link_info(peer, link_info);
693 rc = 1;
694 }
695 } else if (parse_ctx->to_bss && parse_ctx->tlli_enc &&
696 parse_ctx->new_ptmsi_enc && link_info) {
697 /* A new PTMSI has been signaled in the message,
698 * register new TLLI */
699 uint32_t new_sgsn_ptmsi = link_info->sgsn_tlli.ptmsi;
700 uint32_t new_bss_ptmsi = link_info->tlli.ptmsi;
701 uint32_t new_sgsn_tlli;
702 uint32_t new_bss_tlli = 0;
703
704 new_sgsn_tlli = gprs_tmsi2tlli(new_sgsn_ptmsi, TLLI_LOCAL);
705 if (new_bss_ptmsi != GSM_RESERVED_TMSI)
706 new_bss_tlli = gprs_tmsi2tlli(new_bss_ptmsi, TLLI_LOCAL);
707 LOGP(DGPRS, LOGL_INFO,
708 "Assigning new TLLI %08x to SGSN, %08x to BSS\n",
709 new_sgsn_tlli, new_bss_tlli);
710
711 gbproxy_reassign_tlli(&link_info->sgsn_tlli,
712 peer, new_sgsn_tlli);
713 gbproxy_reassign_tlli(&link_info->tlli,
714 peer, new_bss_tlli);
715 gbproxy_remove_matching_link_infos(peer, link_info);
716 }
717
718 gbproxy_remove_stale_link_infos(peer, now);
719
720 return rc;
721}
722
723