Changes of Revision 491

commit_2b793b35343fa213a3f7684c8f8fba47365930f6.txt Deleted
commit_919176a9ab9b8a95c5908b69758f3fcfebf58652.txt Added
open5gs_2.7.1.70.2b793.dsc -> open5gs_2.7.1.71.9191.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-sepp, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg
4
 Architecture: any
5
-Version: 2.7.1.70.2b793
6
+Version: 2.7.1.71.9191
7
 Maintainer: Harald Welte <laforge@gnumonks.org>
8
 Uploaders: Sukchan Lee <acetcom@gmail.com>
9
 Homepage: https://open5gs.org
10
@@ -32,8 +32,8 @@
11
  open5gs-udr deb net optional arch=any
12
  open5gs-upf deb net optional arch=any
13
 Checksums-Sha1:
14
- 60f0c0f506f3c719b770082cee20e92438421d59 14495828 open5gs_2.7.1.70.2b793.tar.xz
15
+ 3932706b4f6e68b00ab1b22f103e0e4e1f65713d 14496976 open5gs_2.7.1.71.9191.tar.xz
16
 Checksums-Sha256:
17
- a7589797642bca13efd81d5b20e20729fc8489a599edcb5e717aaa44276d0715 14495828 open5gs_2.7.1.70.2b793.tar.xz
18
+ 7ac60413587cea71015b5c26abc8ed8ef57103159eaa2204c029c70db2cd1bae 14496976 open5gs_2.7.1.71.9191.tar.xz
19
 Files:
20
- db5d14740cae7440dba161cef109c599 14495828 open5gs_2.7.1.70.2b793.tar.xz
21
+ c511a0adbd577da8fe06dad4be52f5ed 14496976 open5gs_2.7.1.71.9191.tar.xz
22
open5gs_2.7.1.70.2b793.tar.xz/.tarball-version -> open5gs_2.7.1.71.9191.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-2.7.1.70-2b793
3
+2.7.1.71-9191
4
open5gs_2.7.1.70.2b793.tar.xz/debian/changelog -> open5gs_2.7.1.71.9191.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-open5gs (2.7.1.70.2b793) unstable; urgency=medium
3
+open5gs (2.7.1.71.9191) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom master feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Sat, 20 Jul 2024 12:03:55 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Thu, 25 Jul 2024 14:32:47 +0000
9
 
10
 open5gs (2.7.1) unstable; urgency=medium
11
 
12
open5gs_2.7.1.70.2b793.tar.xz/lib/proto/types.h -> open5gs_2.7.1.71.9191.tar.xz/lib/proto/types.h Changed
36
 
1
@@ -34,15 +34,28 @@
2
 #define OGS_MAX_NUM_OF_PACKET_BUFFER    64  /* Num of PacketBuffer per UE */
3
 
4
 /*
5
- * The array of TLV messages is limited to 8.
6
- * So, Flow(PDI.SDF_Filter) in PDR is limited to 8.
7
+ * TS24.008
8
+ * 10.5.6.12 Traffic Flow Template
9
+ * Table 10.5.162: Traffic flow template information element
10
  *
11
- * However, the number of flow in bearer context seems to need more than 16.
12
+ * Number of packet filters (octet 3)
13
+ * The number of packet filters contains the binary coding
14
+ * for the number of packet filters in the packet filter list.
15
+ * The number of packet filters field is encoded in bits 4
16
+ * through 1 of octet 3 where bit 4 is the most significant
17
+ * and bit 1 is the least significant bit.
18
  *
19
- * Therefore, the maximum number of flows of messages is defined as 8,
20
- * and the maximum number of flows stored by the context is 16.
21
+ * For the "delete existing TFT" operation and
22
+ * for the "no TFT operation", the number of packet filters shall be
23
+ * coded as 0. For all other operations, the number of packet filters
24
+ * shall be greater than 0 and less than or equal to 15.
25
+ *
26
+ * The array of TLV messages is limited to 16.
27
+ * So, Flow(PDI.SDF_Filter) in PDR is limited to 16.
28
+ *
29
+ * Therefore, we defined the maximum number of flows as 16.
30
  */
31
-#define OGS_MAX_NUM_OF_FLOW_IN_PDR      8
32
+#define OGS_MAX_NUM_OF_FLOW_IN_PDR      16
33
 #define OGS_MAX_NUM_OF_FLOW_IN_GTP      OGS_MAX_NUM_OF_FLOW_IN_PDR
34
 #define OGS_MAX_NUM_OF_FLOW_IN_NAS      OGS_MAX_NUM_OF_FLOW_IN_PDR
35
 #define OGS_MAX_NUM_OF_FLOW_IN_PCC_RULE OGS_MAX_NUM_OF_FLOW_IN_PDR
36
open5gs_2.7.1.70.2b793.tar.xz/src/smf/s5c-handler.c -> open5gs_2.7.1.71.9191.tar.xz/src/smf/s5c-handler.c Changed
22
 
1
@@ -1281,12 +1281,16 @@
2
             sess->sgw_s5c_teid, sess->smf_n4_teid);
3
 
4
     decoded = ogs_gtp2_parse_tft(&tft, &cmd->traffic_aggregate_description);
5
-    if (cmd->traffic_aggregate_description.len != decoded) {
6
-        ogs_fatal("ogs_gtp2_parse_tft() failed");
7
-        ogs_log_hexdump(OGS_LOG_FATAL,
8
+    if (cmd->traffic_aggregate_description.len == decoded) {
9
+        ogs_error("ogs_gtp2_parse_tft() failed");
10
+        ogs_log_hexdump(OGS_LOG_ERROR,
11
             cmd->traffic_aggregate_description.data,
12
             cmd->traffic_aggregate_description.len);
13
-        ogs_assert_if_reached();
14
+        ogs_gtp2_send_error_message(
15
+                xact, get_sender_f_teid(sess, sender_f_teid),
16
+                OGS_GTP2_BEARER_RESOURCE_FAILURE_INDICATION_TYPE,
17
+                OGS_GTP2_CAUSE_INVALID_MESSAGE_FORMAT);
18
+        return;
19
     }
20
 
21
     ogs_assert(cmd->traffic_aggregate_description.len == decoded);
22
open5gs_2.7.1.70.2b793.tar.xz/src/smf/smf-sm.c -> open5gs_2.7.1.71.9191.tar.xz/src/smf/smf-sm.c Changed
17
 
1
@@ -210,7 +210,6 @@
2
         case OGS_GTP2_UPDATE_BEARER_RESPONSE_TYPE:
3
             if (!gtp2_message.h.teid_presence) ogs_error("No TEID");
4
             if (!sess) {
5
-                /* Don't have to send NACK the message */
6
                 ogs_error("No Session");
7
                 rv = ogs_gtp_xact_commit(gtp_xact);
8
                 ogs_expect(rv == OGS_OK);
9
@@ -222,7 +221,6 @@
10
         case OGS_GTP2_DELETE_BEARER_RESPONSE_TYPE:
11
             if (!gtp2_message.h.teid_presence) ogs_error("No TEID");
12
             if (!sess) {
13
-                /* Don't have to send NACK the message */
14
                 ogs_error("No Session");
15
                 rv = ogs_gtp_xact_commit(gtp_xact);
16
                 ogs_expect(rv == OGS_OK);
17