File not found: simtrace2_0.9.0.202503252029~asan.dsc

Changes of Revision 221

commit_16387078cd21f5c6ab243d9f360282350d910eea.txt Added
commit_63df530bb44e0ba99d957cce4252da8e6b8c5466.txt Deleted
open5gs_2.6.3.7.63df.dsc -> open5gs_2.6.3.8.16387.dsc Changed
x
 
1
@@ -2,7 +2,7 @@
2
 Source: open5gs
3
 Binary: open5gs-common, open5gs-mme, open5gs-sgwc, open5gs-smf, open5gs-amf, open5gs-sgwu, open5gs-upf, open5gs-hss, open5gs-pcrf, open5gs-nrf, open5gs-scp, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg
4
 Architecture: any
5
-Version: 2.6.3.7.63df
6
+Version: 2.6.3.8.16387
7
 Maintainer: Harald Welte <laforge@gnumonks.org>
8
 Uploaders: Sukchan Lee <acetcom@gmail.com>
9
 Homepage: https://open5gs.org
10
@@ -31,8 +31,8 @@
11
  open5gs-udr deb net optional arch=any
12
  open5gs-upf deb net optional arch=any
13
 Checksums-Sha1:
14
- c37d55a5b3279c7cfd666f375ba68253a5b769c8 14122212 open5gs_2.6.3.7.63df.tar.xz
15
+ 44f1872d32fea0223a421cab036f22c20c14b760 14122256 open5gs_2.6.3.8.16387.tar.xz
16
 Checksums-Sha256:
17
- 3ddf11fc139607cd9b95a21f48f58304f3f74cf604197b571ec57a409c7192fa 14122212 open5gs_2.6.3.7.63df.tar.xz
18
+ de9cc58f8947a3a50300d65a9fe1f30ca01fda786bd129a9094e21363b0721c1 14122256 open5gs_2.6.3.8.16387.tar.xz
19
 Files:
20
- 6792c001a09310a9f837aec212fbb937 14122212 open5gs_2.6.3.7.63df.tar.xz
21
+ c6054b56deb262e3e9d08e79b04f6efc 14122256 open5gs_2.6.3.8.16387.tar.xz
22
open5gs_2.6.3.7.63df.tar.xz/.tarball-version -> open5gs_2.6.3.8.16387.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-2.6.3.7-63df
3
+2.6.3.8-16387
4
open5gs_2.6.3.7.63df.tar.xz/debian/changelog -> open5gs_2.6.3.8.16387.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-open5gs (2.6.3.7.63df) unstable; urgency=medium
3
+open5gs (2.6.3.8.16387) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom master feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Sat, 13 May 2023 22:41:49 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Sun, 14 May 2023 00:09:57 +0000
9
 
10
 open5gs (2.6.3) unstable; urgency=medium
11
 
12
open5gs_2.6.3.7.63df.tar.xz/src/amf/gmm-handler.c -> open5gs_2.6.3.8.16387.tar.xz/src/amf/gmm-handler.c Changed
25
 
1
@@ -336,7 +336,7 @@
2
 {
3
     amf_sess_t *sess = NULL;
4
     uint16_t psimask;
5
-    int i = 0;
6
+    int i = 0, served_tai_index = 0;
7
 
8
     ogs_nas_5gs_tracking_area_identity_t *last_visited_registered_tai = NULL;
9
     ogs_nas_uplink_data_status_t *uplink_data_status = NULL;
10
@@ -356,6 +356,14 @@
11
     update_type = &registration_request->update_type;
12
     ogs_assert(update_type);
13
 
14
+    served_tai_index = amf_find_served_tai(&amf_ue->nr_tai);
15
+    if (served_tai_index < 0) {
16
+        ogs_error("Cannot find Served TAIPLMN_ID:%06x,TAC:%d",
17
+            ogs_plmn_id_hexdump(&amf_ue->nr_tai.plmn_id), amf_ue->nr_tai.tac.v);
18
+        return OGS_5GMM_CAUSE_TRACKING_AREA_NOT_ALLOWED;
19
+    }
20
+    ogs_debug("    SERVED_TAI_INDEX%d", served_tai_index);
21
+
22
     if (registration_request->presencemask &
23
         OGS_NAS_5GS_REGISTRATION_REQUEST_NAS_MESSAGE_CONTAINER_PRESENT) {
24
 
25