Changes of Revision 6

commit_1acb7f72b47fb27b5defd81b9bb349d7ba6f2748.txt Deleted
commit_71a1516b0376340d267caa85920cb0a4da261176.txt Added
open5gs_2.4.10.33.1acb.dsc -> open5gs_2.4.10.34.71a15.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-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg
4
 Architecture: any
5
-Version: 2.4.10.33.1acb
6
+Version: 2.4.10.34.71a15
7
 Maintainer: Harald Welte <laforge@gnumonks.org>
8
 Uploaders: Sukchan Lee <acetcom@gmail.com>
9
 Homepage: https://open5gs.org
10
@@ -30,8 +30,8 @@
11
  open5gs-udr deb net optional arch=any
12
  open5gs-upf deb net optional arch=any
13
 Checksums-Sha1:
14
- 84259f28cbcffb883514e206e8ef532fc4dab5de 11467392 open5gs_2.4.10.33.1acb.tar.xz
15
+ 6da341f7c260f44abf5fd6350d87d21a69b3d19b 11467944 open5gs_2.4.10.34.71a15.tar.xz
16
 Checksums-Sha256:
17
- 983503a7aeb6cced10c0418bfcd0347cc75ea7423b53a8da1ffe2a20da7cdbc5 11467392 open5gs_2.4.10.33.1acb.tar.xz
18
+ 7f2c07182353590d68c87aa9cddda24f9b9ca819d1d068ee5b66f79420842edf 11467944 open5gs_2.4.10.34.71a15.tar.xz
19
 Files:
20
- 3523661444bc3a7b33ad07b6ed853a18 11467392 open5gs_2.4.10.33.1acb.tar.xz
21
+ fe014d6666fa785b2399582758d58927 11467944 open5gs_2.4.10.34.71a15.tar.xz
22
open5gs_2.4.10.33.1acb.tar.xz/.tarball-version -> open5gs_2.4.10.34.71a15.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-2.4.10.33-1acb
3
+2.4.10.34-71a15
4
open5gs_2.4.10.33.1acb.tar.xz/debian/changelog -> open5gs_2.4.10.34.71a15.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-open5gs (2.4.10.33.1acb) unstable; urgency=medium
3
+open5gs (2.4.10.34.71a15) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom master feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Sat, 01 Oct 2022 04:26:19 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Sat, 01 Oct 2022 04:30:39 +0000
9
 
10
 open5gs (2.4.10) unstable; urgency=medium
11
 
12
open5gs_2.4.10.33.1acb.tar.xz/lib/core/ogs-tlv-msg.c -> open5gs_2.4.10.34.71a15.tar.xz/lib/core/ogs-tlv-msg.c Changed
18
 
1
@@ -759,7 +759,15 @@
2
         ogs_assert(pos);
3
     }
4
 
5
-    ogs_assert(length == (pos - blk));
6
+    if (length != (pos - blk)) {
7
+        ogs_error("ogs_tlv_parse_block() failedLEN:%d,MODE:%d",
8
+                length, msg_mode);
9
+        ogs_error("POS%p BLK%p POS-BLK%d", pos, blk, (int)(pos - blk));
10
+        ogs_log_hexdump(OGS_LOG_FATAL, data, length);
11
+
12
+        ogs_tlv_free_all(root);
13
+        return NULL;
14
+    }
15
 
16
     return root;
17
 }
18
open5gs_2.4.10.33.1acb.tar.xz/lib/core/ogs-tlv.c -> open5gs_2.4.10.34.71a15.tar.xz/lib/core/ogs-tlv.c Changed
16
 
1
@@ -462,9 +462,12 @@
2
     }
3
 
4
     if (length != (pos - blk)) {
5
-        ogs_fatal("ogs_tlv_parse_block() failedLEN:%d,MODE:%d", length, mode);
6
+        ogs_error("ogs_tlv_parse_block() failedLEN:%d,MODE:%d", length, mode);
7
+        ogs_error("POS%p BLK%p POS-BLK%d", pos, blk, (int)(pos - blk));
8
         ogs_log_hexdump(OGS_LOG_FATAL, data, length);
9
-        ogs_assert_if_reached();
10
+
11
+        ogs_tlv_free_all(root);
12
+        return NULL;
13
     }
14
 
15
     return root;
16
open5gs_2.4.10.33.1acb.tar.xz/src/sgwc/pfcp-path.c -> open5gs_2.4.10.34.71a15.tar.xz/src/sgwc/pfcp-path.c Changed
10
 
1
@@ -80,7 +80,7 @@
2
     ogs_pkbuf_trim(pkbuf, size);
3
 
4
     h = (ogs_pfcp_header_t *)pkbuf->data;
5
-    if (h->version > OGS_PFCP_VERSION) {
6
+    if (h->version != OGS_PFCP_VERSION) {
7
         ogs_pfcp_header_t rsp;
8
 
9
         ogs_error("Not supported version%d", h->version);
10
open5gs_2.4.10.33.1acb.tar.xz/src/sgwu/pfcp-path.c -> open5gs_2.4.10.34.71a15.tar.xz/src/sgwu/pfcp-path.c Changed
10
 
1
@@ -80,7 +80,7 @@
2
     ogs_pkbuf_trim(pkbuf, size);
3
 
4
     h = (ogs_pfcp_header_t *)pkbuf->data;
5
-    if (h->version > OGS_PFCP_VERSION) {
6
+    if (h->version != OGS_PFCP_VERSION) {
7
         ogs_pfcp_header_t rsp;
8
 
9
         ogs_error("Not supported version%d", h->version);
10
open5gs_2.4.10.33.1acb.tar.xz/src/smf/pfcp-path.c -> open5gs_2.4.10.34.71a15.tar.xz/src/smf/pfcp-path.c Changed
10
 
1
@@ -120,7 +120,7 @@
2
     ogs_pkbuf_trim(pkbuf, size);
3
 
4
     h = (ogs_pfcp_header_t *)pkbuf->data;
5
-    if (h->version > OGS_PFCP_VERSION) {
6
+    if (h->version != OGS_PFCP_VERSION) {
7
         ogs_pfcp_header_t rsp;
8
 
9
         ogs_error("Not supported version%d", h->version);
10
open5gs_2.4.10.33.1acb.tar.xz/src/upf/pfcp-path.c -> open5gs_2.4.10.34.71a15.tar.xz/src/upf/pfcp-path.c Changed
10
 
1
@@ -83,7 +83,7 @@
2
     ogs_pkbuf_trim(pkbuf, size);
3
 
4
     h = (ogs_pfcp_header_t *)pkbuf->data;
5
-    if (h->version > OGS_PFCP_VERSION) {
6
+    if (h->version != OGS_PFCP_VERSION) {
7
         ogs_pfcp_header_t rsp;
8
 
9
         ogs_error("Not supported version%d", h->version);
10