Changes of Revision 214

open5gs_2.4.9.256.596a2.202301250006.dsc -> open5gs_2.4.9.258.8598.202301260005.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.4.9.256.596a2.202301250006
6
+Version: 2.4.9.258.8598.202301260005
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
- c666c5584e98172197f5a7e571ec8947b779a303 13613944 open5gs_2.4.9.256.596a2.202301250006.tar.xz
15
+ 701ba690e44b06c69b5daf078238409c81468f13 13613264 open5gs_2.4.9.258.8598.202301260005.tar.xz
16
 Checksums-Sha256:
17
- 82ad9a47e5b955135d9b72c37a89e95413e14b1c4cf5187738f635c05ea07390 13613944 open5gs_2.4.9.256.596a2.202301250006.tar.xz
18
+ d95e92968db9518a5ccbb442374b7c0033ec493531db19245c5dc7c1670032ce 13613264 open5gs_2.4.9.258.8598.202301260005.tar.xz
19
 Files:
20
- 2b1a6e5cd3a0c26d6ce25778a592e6d8 13613944 open5gs_2.4.9.256.596a2.202301250006.tar.xz
21
+ 0d3c2aba6b565a2d1b8ad3c687926769 13613264 open5gs_2.4.9.258.8598.202301260005.tar.xz
22
open5gs_2.4.9.256.596a2.202301250006.tar.xz/.tarball-version -> open5gs_2.4.9.258.8598.202301260005.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-2.4.9.256-596a2.202301250006
3
+2.4.9.258-8598.202301260005
4
open5gs_2.4.9.256.596a2.202301250006.tar.xz/debian/changelog -> open5gs_2.4.9.258.8598.202301260005.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-open5gs (2.4.9.256.596a2.202301250006) unstable; urgency=medium
3
+open5gs (2.4.9.258.8598.202301260005) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom nightly feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Wed, 25 Jan 2023 00:08:51 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Thu, 26 Jan 2023 00:07:32 +0000
9
 
10
 open5gs (2.5.6) unstable; urgency=medium
11
 
12
open5gs_2.4.9.256.596a2.202301250006.tar.xz/lib/asn1c/util/conv.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/lib/asn1c/util/conv.c Changed
37
 
1
@@ -215,15 +215,22 @@
2
 {
3
     asn_enc_rval_t enc_ret = {0};
4
     asn_dec_rval_t dec_ret = {0};
5
-    uint8_t bufferOGS_MAX_SDU_LEN;
6
+    uint8_t *buffer = NULL;
7
 
8
     ogs_assert(td);
9
     ogs_assert(src);
10
     ogs_assert(dst);
11
 
12
+    buffer = ogs_calloc(1, OGS_MAX_SDU_LEN);
13
+    if (!buffer) {
14
+        ogs_error("ogs_calloc() failed");
15
+        return OGS_ERROR;
16
+    }
17
+
18
     enc_ret = aper_encode_to_buffer(td, NULL, src, buffer, OGS_MAX_SDU_LEN);
19
     if (enc_ret.encoded < 0) {
20
         ogs_error("aper_encode_to_buffer() failed%d", (int)enc_ret.encoded);
21
+        ogs_free(buffer);
22
         return OGS_ERROR;
23
     }
24
 
25
@@ -232,8 +239,11 @@
26
 
27
     if (dec_ret.code != RC_OK) {
28
         ogs_error("aper_decode() failed%d", dec_ret.code);
29
+        ogs_free(buffer);
30
         return OGS_ERROR;
31
     }
32
 
33
+    ogs_free(buffer);
34
+
35
     return OGS_OK;
36
 }
37
open5gs_2.4.9.256.596a2.202301250006.tar.xz/src/amf/ngap-build.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/src/amf/ngap-build.c Changed
36
 
1
@@ -1907,7 +1907,11 @@
2
 
3
     rv = ogs_asn_copy_ie(&asn_DEF_NGAP_SONConfigurationTransfer,
4
             transfer, SONConfigurationTransfer);
5
-    ogs_assert(rv == OGS_OK);
6
+    if (rv != OGS_OK) {
7
+        ogs_error("ogs_asn_copy_ie() failed");
8
+        ogs_asn_free(&asn_DEF_NGAP_NGAP_PDU, &pdu);
9
+        return NULL;
10
+    }
11
 
12
     return ogs_ngap_encode(&pdu);
13
 }
14
@@ -2647,7 +2651,7 @@
15
     return ogs_ngap_encode(&pdu);
16
 }
17
 
18
-ogs_pkbuf_t *ngap_build_uplink_ran_status_transfer(
19
+ogs_pkbuf_t *ngap_build_downlink_ran_status_transfer(
20
     ran_ue_t *target_ue,
21
     NGAP_RANStatusTransfer_TransparentContainer_t *transfer)
22
 {
23
@@ -2722,7 +2726,11 @@
24
     rv = ogs_asn_copy_ie(
25
             &asn_DEF_NGAP_RANStatusTransfer_TransparentContainer,
26
             transfer, RANStatusTransfer_TransparentContainer);
27
-    ogs_assert(rv == OGS_OK);
28
+    if (rv != OGS_OK) {
29
+        ogs_error("ogs_asn_copy_ie() failed");
30
+        ogs_asn_free(&asn_DEF_NGAP_NGAP_PDU, &pdu);
31
+        return NULL;
32
+    }
33
 
34
     return ogs_ngap_encode(&pdu);
35
 }
36
open5gs_2.4.9.256.596a2.202301250006.tar.xz/src/amf/ngap-build.h -> open5gs_2.4.9.258.8598.202301260005.tar.xz/src/amf/ngap-build.h Changed
10
 
1
@@ -68,7 +68,7 @@
2
 ogs_pkbuf_t *ngap_build_handover_command(ran_ue_t *source_ue);
3
 ogs_pkbuf_t *ngap_build_handover_cancel_ack(ran_ue_t *source_ue);
4
 
5
-ogs_pkbuf_t *ngap_build_uplink_ran_status_transfer(
6
+ogs_pkbuf_t *ngap_build_downlink_ran_status_transfer(
7
     ran_ue_t *target_ue,
8
     NGAP_RANStatusTransfer_TransparentContainer_t *transfer);
9
 
10
open5gs_2.4.9.256.596a2.202301250006.tar.xz/src/amf/ngap-handler.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/src/amf/ngap-handler.c Changed
21
 
1
@@ -2565,7 +2565,8 @@
2
         r = ngap_send_downlink_ran_configuration_transfer(
3
                 target_gnb, SONConfigurationTransfer);
4
         ogs_expect(r == OGS_OK);
5
-        ogs_assert(r != OGS_ERROR);
6
+        /* ogs_asn_copy_ie() could be failed from received packet.
7
+         * So we should not use ogs_assert(r != OGS_ERROR).*/
8
     }
9
 }
10
 
11
@@ -3840,7 +3841,8 @@
12
     r = ngap_send_downlink_ran_status_transfer(
13
             target_ue, RANStatusTransfer_TransparentContainer);
14
     ogs_expect(r == OGS_OK);
15
-    ogs_assert(r != OGS_ERROR);
16
+    /* ogs_asn_copy_ie() could be failed from received packet.
17
+     * So we should not use ogs_assert(r != OGS_ERROR).*/
18
 }
19
 
20
 void ngap_handle_handover_notification(
21
open5gs_2.4.9.256.596a2.202301250006.tar.xz/src/amf/ngap-path.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/src/amf/ngap-path.c Changed
10
 
1
@@ -573,7 +573,7 @@
2
     ogs_assert(target_ue);
3
     ogs_assert(transfer);
4
 
5
-    ngapbuf = ngap_build_uplink_ran_status_transfer(target_ue, transfer);
6
+    ngapbuf = ngap_build_downlink_ran_status_transfer(target_ue, transfer);
7
     if (!ngapbuf) {
8
         ogs_error("ngap_build_uplink_ran_status_transfer() failed");
9
         return OGS_ERROR;
10
open5gs_2.4.9.256.596a2.202301250006.tar.xz/src/mme/s1ap-build.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/src/mme/s1ap-build.c Changed
27
 
1
@@ -1551,7 +1551,11 @@
2
 
3
     rv = ogs_asn_copy_ie(&asn_DEF_S1AP_SONConfigurationTransfer,
4
             son_configuration_transfer, SONConfigurationTransfer);
5
-    ogs_assert(rv == OGS_OK);
6
+    if (rv != OGS_OK) {
7
+        ogs_error("ogs_asn_copy_ie() failed");
8
+        ogs_asn_free(&asn_DEF_S1AP_S1AP_PDU, &pdu);
9
+        return NULL;
10
+    }
11
 
12
     return ogs_s1ap_encode(&pdu);
13
 }
14
@@ -2371,7 +2375,11 @@
15
             &asn_DEF_S1AP_ENB_StatusTransfer_TransparentContainer,
16
             enb_statustransfer_transparentContainer,
17
             ENB_StatusTransfer_TransparentContainer);
18
-    ogs_assert(rv == OGS_OK);
19
+    if (rv != OGS_OK) {
20
+        ogs_error("ogs_asn_copy_ie() failed");
21
+        ogs_asn_free(&asn_DEF_S1AP_S1AP_PDU, &pdu);
22
+        return NULL;
23
+    }
24
 
25
     return ogs_s1ap_encode(&pdu);
26
 }
27
open5gs_2.4.9.256.596a2.202301250006.tar.xz/src/mme/s1ap-handler.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/src/mme/s1ap-handler.c Changed
21
 
1
@@ -2218,7 +2218,8 @@
2
         r = s1ap_send_mme_configuration_transfer(
3
                 target_enb, SONConfigurationTransfer);
4
         ogs_expect(r == OGS_OK);
5
-        ogs_assert(r != OGS_ERROR);
6
+        /* ogs_asn_copy_ie() could be failed from received packet.
7
+         * So we should not use ogs_assert(r != OGS_ERROR).*/
8
     }
9
 }
10
 
11
@@ -2957,7 +2958,8 @@
12
     r = s1ap_send_mme_status_transfer(target_ue,
13
             ENB_StatusTransfer_TransparentContainer);
14
     ogs_expect(r == OGS_OK);
15
-    ogs_assert(r != OGS_ERROR);
16
+    /* ogs_asn_copy_ie() could be failed from received packet.
17
+     * So we should not use ogs_assert(r != OGS_ERROR).*/
18
 }
19
 
20
 void s1ap_handle_handover_notification(
21
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/common/emm-build.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/common/emm-build.c Changed
10
 
1
@@ -881,7 +881,7 @@
2
     ogs_nas_eps_message_container_t *nas_message_container =
3
         &uplink_nas_transport->nas_message_container;
4
 
5
-    char hexbufOGS_MAX_SDU_LEN;
6
+    char hexbufOGS_HUGE_LEN;
7
     const char *payload =
8
         "390167000300"
9
         "0581005155f55d11 030c914477680205 490000055ad2e2b1 252d467ff6de6c47"
10
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/common/gtpu.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/common/gtpu.c Changed
19
 
1
@@ -356,7 +356,7 @@
2
     const char *payload =
3
         "6000000000083aff fe80000000000000 0000000000000002"
4
         "ff02000000000000 0000000000000002 85007d3500000000";
5
-    unsigned char tmpOGS_MAX_SDU_LEN;
6
+    unsigned char tmpOGS_HUGE_LEN;
7
     int payload_len = 48;
8
 
9
     ogs_assert(bearer);
10
@@ -425,7 +425,7 @@
11
         "60000000"
12
         "00103afffe800000 0000000074ee25ff fee4b579ff020000 0000000000000000"
13
         "000000028500da95 00000000010176ee 25e4b579";
14
-    unsigned char tmpOGS_MAX_SDU_LEN;
15
+    unsigned char tmpOGS_HUGE_LEN;
16
     int payload_len = 56;
17
 
18
     ogs_assert(bearer);
19
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/common/ngap-build.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/common/ngap-build.c Changed
28
 
1
@@ -670,7 +670,7 @@
2
     NGAP_RAN_UE_NGAP_ID_t *RAN_UE_NGAP_ID = NULL;
3
     NGAP_UERadioCapability_t *UERadioCapability = NULL;
4
 
5
-    uint8_t tmpOGS_MAX_SDU_LEN;
6
+    uint8_t tmpOGS_HUGE_LEN;
7
     char *_capability_captured = "040ca1080f"
8
         "de1a00000074e5a0 31e000380a03c126 0c80038d80818804 804c0203018022a3"
9
         "6146b040d0d00012 0098087ad8202020 e1de38720c380020 64f1f570000f001c"
10
@@ -1740,7 +1740,7 @@
11
     NGAP_SourceToTarget_TransparentContainer_t
12
         *SourceToTarget_TransparentContainer = NULL;
13
 
14
-    uint8_t tmpOGS_MAX_SDU_LEN;
15
+    uint8_t tmpOGS_HUGE_LEN;
16
     char *_container =
17
         "40"
18
         "0300001100000a00 010002f839000102 0120000002f83900 0000001000000a";
19
@@ -1903,7 +1903,7 @@
20
     NGAP_TargetToSource_TransparentContainer_t
21
         *TargetToSource_TransparentContainer = NULL;
22
 
23
-    uint8_t tmpOGS_MAX_SDU_LEN;
24
+    uint8_t tmpOGS_HUGE_LEN;
25
     char *_container =
26
         "00010000";
27
 
28
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/common/s1ap-build.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/common/s1ap-build.c Changed
46
 
1
@@ -400,7 +400,7 @@
2
     S1AP_ENB_UE_S1AP_ID_t *ENB_UE_S1AP_ID = NULL;
3
     S1AP_UERadioCapability_t *UERadioCapability = NULL;
4
 
5
-    uint8_t tmpOGS_MAX_SDU_LEN;
6
+    uint8_t tmpOGS_HUGE_LEN;
7
     char *_capability_captured =
8
         "013001023c"
9
         "d98000bc000ff06e c4d00141b82c0000 000007d404000ef0 802000016a030000"
10
@@ -1441,7 +1441,7 @@
11
     S1AP_Source_ToTarget_TransparentContainer_t
12
         *Source_ToTarget_TransparentContainer = NULL;
13
 
14
-    uint8_t tmpOGS_MAX_SDU_LEN;
15
+    uint8_t tmpOGS_HUGE_LEN;
16
     char *_container =
17
         "4080ab0f1014"
18
         "c59800018000bf06 ec4d00100302c000 0000000015a80014 06720af00348f100"
19
@@ -1574,7 +1574,7 @@
20
     S1AP_Target_ToSource_TransparentContainer_t
21
         *Target_ToSource_TransparentContainer = NULL;
22
 
23
-    char hexbufOGS_MAX_SDU_LEN;
24
+    char hexbufOGS_HUGE_LEN;
25
     const char *payload =
26
         "00 80810bf900d8af40 00a0339057801f47 88009e81de2c20a4"
27
         "81de2c404a00ef16 2000010044013f21 2249008093efd243 3914cd2aa0a0142f"
28
@@ -2011,7 +2011,7 @@
29
         0,
30
     };
31
 
32
-    char hexbufOGS_MAX_SDU_LEN;
33
+    char hexbufOGS_HUGE_LEN;
34
 
35
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
36
     ogs_assert(pkbuf);
37
@@ -2055,7 +2055,7 @@
38
         0,
39
         0,
40
     };
41
-    char hexbufOGS_MAX_SDU_LEN;
42
+    char hexbufOGS_HUGE_LEN;
43
 
44
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
45
     ogs_assert(pkbuf);
46
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/common/sgsap-build.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/common/sgsap-build.c Changed
73
 
1
@@ -35,7 +35,7 @@
2
         25,
3
         0,
4
     };
5
-    char hexbufOGS_MAX_SDU_LEN;
6
+    char hexbufOGS_HUGE_LEN;
7
 
8
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
9
     ogs_assert(pkbuf);
10
@@ -59,7 +59,7 @@
11
         0,
12
         0,
13
     };
14
-    char hexbufOGS_MAX_SDU_LEN;
15
+    char hexbufOGS_HUGE_LEN;
16
 
17
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
18
     ogs_assert(pkbuf);
19
@@ -83,7 +83,7 @@
20
         0,
21
         0,
22
     };
23
-    char hexbufOGS_MAX_SDU_LEN;
24
+    char hexbufOGS_HUGE_LEN;
25
 
26
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
27
     ogs_assert(pkbuf);
28
@@ -119,7 +119,7 @@
29
         0,
30
         0,
31
     };
32
-    char hexbufOGS_MAX_SDU_LEN;
33
+    char hexbufOGS_HUGE_LEN;
34
 
35
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
36
     ogs_assert(pkbuf);
37
@@ -143,7 +143,7 @@
38
         0,
39
         0,
40
     };
41
-    char hexbufOGS_MAX_SDU_LEN;
42
+    char hexbufOGS_HUGE_LEN;
43
 
44
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
45
     ogs_assert(pkbuf);
46
@@ -167,7 +167,7 @@
47
         0,
48
         0,
49
     };
50
-    char hexbufOGS_MAX_SDU_LEN;
51
+    char hexbufOGS_HUGE_LEN;
52
 
53
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
54
     ogs_assert(pkbuf);
55
@@ -188,7 +188,7 @@
56
     uint16_t lenTEST_SGSAP_MAX_MESSAGE = {
57
         51,
58
     };
59
-    char hexbufOGS_MAX_SDU_LEN;
60
+    char hexbufOGS_HUGE_LEN;
61
 
62
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
63
     ogs_assert(pkbuf);
64
@@ -209,7 +209,7 @@
65
     uint16_t lenTEST_SGSAP_MAX_MESSAGE = {
66
         33,
67
     };
68
-    char hexbufOGS_MAX_SDU_LEN;
69
+    char hexbufOGS_HUGE_LEN;
70
 
71
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
72
     ogs_assert(pkbuf);
73
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/handover/5gc-n2-test.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/handover/5gc-n2-test.c Changed
46
 
1
@@ -32,7 +32,7 @@
2
     ogs_ngap_message_t message;
3
     int i;
4
 
5
-    uint8_t tmpOGS_MAX_SDU_LEN;
6
+    uint8_t tmpOGS_HUGE_LEN;
7
     char *_gtp_payload = "34ff0024"
8
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
9
         "00000964cd7c291f";
10
@@ -427,7 +427,7 @@
11
     ogs_ngap_message_t message;
12
     int i;
13
 
14
-    uint8_t tmpOGS_MAX_SDU_LEN;
15
+    uint8_t tmpOGS_HUGE_LEN;
16
     char *_gtp_payload = "34ff0024"
17
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
18
         "00000964cd7c291f";
19
@@ -1044,7 +1044,7 @@
20
     ogs_ngap_message_t message;
21
     int i;
22
 
23
-    uint8_t tmpOGS_MAX_SDU_LEN;
24
+    uint8_t tmpOGS_HUGE_LEN;
25
     char *_gtp_payload = "34ff0024"
26
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
27
         "00000964cd7c291f";
28
@@ -1455,7 +1455,7 @@
29
     ogs_ngap_message_t message;
30
     int i;
31
 
32
-    uint8_t tmpOGS_MAX_SDU_LEN;
33
+    uint8_t tmpOGS_HUGE_LEN;
34
     char *_gtp_payload = "34ff0024"
35
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
36
         "00000964cd7c291f";
37
@@ -2105,7 +2105,7 @@
38
     ogs_ngap_message_t message;
39
     int i;
40
 
41
-    uint8_t tmpOGS_MAX_SDU_LEN;
42
+    uint8_t tmpOGS_HUGE_LEN;
43
     char *_gtp_payload = "34ff0024"
44
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
45
         "00000964cd7c291f";
46
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/handover/5gc-xn-test.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/handover/5gc-xn-test.c Changed
10
 
1
@@ -32,7 +32,7 @@
2
     ogs_ngap_message_t message;
3
     int i;
4
 
5
-    uint8_t tmpOGS_MAX_SDU_LEN;
6
+    uint8_t tmpOGS_HUGE_LEN;
7
     char *_gtp_payload = "34ff0024"
8
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
9
         "00000964cd7c291f";
10
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/registration/paging-test.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/registration/paging-test.c Changed
19
 
1
@@ -1548,7 +1548,7 @@
2
     ogs_ngap_message_t message;
3
     int i;
4
 
5
-    uint8_t tmpOGS_MAX_SDU_LEN;
6
+    uint8_t tmpOGS_HUGE_LEN;
7
     char *_gtp_payload = "34ff0024"
8
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
9
         "00000964cd7c291f";
10
@@ -1943,7 +1943,7 @@
11
     ogs_ngap_message_t message;
12
     int i;
13
 
14
-    uint8_t tmpOGS_MAX_SDU_LEN;
15
+    uint8_t tmpOGS_HUGE_LEN;
16
     char *_gtp_payload = "34ff0024"
17
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
18
         "00000964cd7c291f";
19
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/unit/crash-test.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/unit/crash-test.c Changed
46
 
1
@@ -343,7 +343,7 @@
2
     ogs_s1ap_message_t message;
3
     ogs_pkbuf_t *enb_pkbuf;
4
     int result;
5
-    char hexbufOGS_MAX_SDU_LEN;
6
+    char hexbufOGS_HUGE_LEN;
7
 
8
     enb_pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
9
     ogs_assert(enb_pkbuf);
10
@@ -370,7 +370,7 @@
11
     ogs_s1ap_message_t message;
12
     ogs_pkbuf_t *enb_pkbuf;
13
     int result;
14
-    char hexbufOGS_MAX_SDU_LEN;
15
+    char hexbufOGS_HUGE_LEN;
16
 
17
     enb_pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
18
     ogs_assert(enb_pkbuf);
19
@@ -396,7 +396,7 @@
20
     ogs_s1ap_message_t message;
21
     ogs_pkbuf_t *enb_pkbuf;
22
     int result;
23
-    char hexbufOGS_MAX_SDU_LEN;
24
+    char hexbufOGS_HUGE_LEN;
25
 
26
     enb_pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
27
     ogs_assert(enb_pkbuf);
28
@@ -420,7 +420,7 @@
29
     ogs_s1ap_message_t message;
30
     ogs_pkbuf_t *enb_pkbuf;
31
     int result;
32
-    char hexbufOGS_MAX_SDU_LEN;
33
+    char hexbufOGS_HUGE_LEN;
34
 
35
     enb_pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
36
     ogs_assert(enb_pkbuf);
37
@@ -587,7 +587,7 @@
38
 
39
     ogs_pkbuf_t *s1apbuf = NULL;
40
     ogs_pkbuf_t *emmbuf = NULL;
41
-    char hexbufOGS_MAX_SDU_LEN;
42
+    char hexbufOGS_HUGE_LEN;
43
 
44
     emmbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
45
     ogs_assert(emmbuf);
46
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/unit/gtp-message-test.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/unit/gtp-message-test.c Changed
10
 
1
@@ -34,7 +34,7 @@
2
         "005d001f00490001 0005500016004505 0000000000000000 0000000000000000"
3
         "0000000072000200 40005f0002005400";
4
     char *_value = NULL;
5
-    char hexbufOGS_MAX_SDU_LEN;
6
+    char hexbufOGS_HUGE_LEN;
7
 
8
     ogs_gtp2_create_session_request_t req;
9
     ogs_gtp2_uli_t uli;
10
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/unit/nas-message-test.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/unit/nas-message-test.c Changed
37
 
1
@@ -32,7 +32,7 @@
2
     ogs_nas_eps_message_t message;
3
     ogs_pkbuf_t *pkbuf;
4
     int rv;
5
-    char hexbufOGS_MAX_SDU_LEN;
6
+    char hexbufOGS_HUGE_LEN;
7
 
8
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
9
     ogs_assert(pkbuf);
10
@@ -145,7 +145,7 @@
11
     ogs_nas_eps_message_t message;
12
     ogs_pkbuf_t *pkbuf;
13
     int rv;
14
-    char hexbufOGS_MAX_SDU_LEN;
15
+    char hexbufOGS_HUGE_LEN;
16
 
17
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
18
     ogs_assert(pkbuf);
19
@@ -205,7 +205,7 @@
20
 {
21
     /* Identity Request */
22
     const char *payload = "075501";
23
-    char hexbufOGS_MAX_SDU_LEN;
24
+    char hexbufOGS_HUGE_LEN;
25
 
26
     ogs_nas_eps_message_t message;
27
     ogs_nas_eps_identity_request_t *identity_request =
28
@@ -287,7 +287,7 @@
29
     ogs_nas_eps_message_t message;
30
     ogs_pkbuf_t *pkbuf;
31
     int rv;
32
-    char hexbufOGS_MAX_SDU_LEN;
33
+    char hexbufOGS_HUGE_LEN;
34
     ogs_nas_eps_service_request_t *service_request =
35
         &message.emm.service_request;
36
     ogs_nas_ksi_and_sequence_number_t *ksi_and_sequence_number = 
37
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/unit/ngap-message-test.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/unit/ngap-message-test.c Changed
28
 
1
@@ -90,7 +90,7 @@
2
     ogs_ngap_message_t message;
3
     ogs_pkbuf_t *pkbuf;
4
     int result;
5
-    char hexbufOGS_MAX_SDU_LEN;
6
+    char hexbufOGS_HUGE_LEN;
7
 
8
     ogs_ngap_message_t *struct_ptr = NULL;
9
     size_t struct_size;
10
@@ -125,7 +125,7 @@
11
     ogs_ngap_message_t message;
12
     ogs_pkbuf_t *pkbuf;
13
     int result;
14
-    char hexbufOGS_MAX_SDU_LEN;
15
+    char hexbufOGS_HUGE_LEN;
16
 
17
     ogs_ngap_message_t *struct_ptr = NULL;
18
     size_t struct_size;
19
@@ -160,7 +160,7 @@
20
     ogs_ngap_message_t message;
21
     ogs_pkbuf_t *pkbuf;
22
     int result;
23
-    char hexbufOGS_MAX_SDU_LEN;
24
+    char hexbufOGS_HUGE_LEN;
25
 
26
     ogs_ngap_message_t *struct_ptr = NULL;
27
     size_t struct_size;
28
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/unit/s1ap-message-test.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/unit/s1ap-message-test.c Changed
64
 
1
@@ -32,7 +32,7 @@
2
     ogs_s1ap_message_t message;
3
     ogs_pkbuf_t *pkbuf;
4
     int result;
5
-    char hexbufOGS_MAX_SDU_LEN;
6
+    char hexbufOGS_HUGE_LEN;
7
 
8
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
9
     ogs_assert(pkbuf);
10
@@ -62,7 +62,7 @@
11
     ogs_s1ap_message_t message;
12
     ogs_pkbuf_t *pkbuf;
13
     int result;
14
-    char hexbufOGS_MAX_SDU_LEN;
15
+    char hexbufOGS_HUGE_LEN;
16
 
17
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
18
     ogs_assert(pkbuf);
19
@@ -87,7 +87,7 @@
20
     ogs_s1ap_message_t message;
21
     ogs_pkbuf_t *pkbuf;
22
     int result;
23
-    char hexbufOGS_MAX_SDU_LEN;
24
+    char hexbufOGS_HUGE_LEN;
25
 
26
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
27
     ogs_assert(pkbuf);
28
@@ -113,7 +113,7 @@
29
     ogs_s1ap_message_t message;
30
     ogs_pkbuf_t *pkbuf;
31
     int result;
32
-    char hexbufOGS_MAX_SDU_LEN;
33
+    char hexbufOGS_HUGE_LEN;
34
 
35
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
36
     ogs_assert(pkbuf);
37
@@ -138,7 +138,7 @@
38
     ogs_s1ap_message_t message;
39
     ogs_pkbuf_t *pkbuf;
40
     int result;
41
-    char hexbufOGS_MAX_SDU_LEN;
42
+    char hexbufOGS_HUGE_LEN;
43
 
44
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
45
     ogs_assert(pkbuf);
46
@@ -163,7 +163,7 @@
47
     ogs_s1ap_message_t message;
48
     ogs_pkbuf_t *pkbuf;
49
     int result;
50
-    char hexbufOGS_MAX_SDU_LEN;
51
+    char hexbufOGS_HUGE_LEN;
52
 
53
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
54
     ogs_assert(pkbuf);
55
@@ -188,7 +188,7 @@
56
     ogs_s1ap_message_t message;
57
     ogs_pkbuf_t *pkbuf;
58
     int result;
59
-    char hexbufOGS_MAX_SDU_LEN;
60
+    char hexbufOGS_HUGE_LEN;
61
 
62
     pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
63
     ogs_assert(pkbuf);
64
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/vonr/af-test.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/vonr/af-test.c Changed
64
 
1
@@ -33,7 +33,7 @@
2
     ogs_ngap_message_t message;
3
     int i;
4
 
5
-    uint8_t tmpOGS_MAX_SDU_LEN;
6
+    uint8_t tmpOGS_HUGE_LEN;
7
     char *_gtp_payload = "34ff0024"
8
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
9
         "00000964cd7c291f";
10
@@ -713,7 +713,7 @@
11
     ogs_ngap_message_t message;
12
     int i;
13
 
14
-    uint8_t tmpOGS_MAX_SDU_LEN;
15
+    uint8_t tmpOGS_HUGE_LEN;
16
     char *_gtp_payload = "34ff0024"
17
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
18
         "00000964cd7c291f";
19
@@ -1188,7 +1188,7 @@
20
     ogs_ngap_message_t message;
21
     int i;
22
 
23
-    uint8_t tmpOGS_MAX_SDU_LEN;
24
+    uint8_t tmpOGS_HUGE_LEN;
25
     char *_gtp_payload = "34ff0024"
26
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
27
         "00000964cd7c291f";
28
@@ -1643,7 +1643,7 @@
29
     ogs_ngap_message_t message;
30
     int i;
31
 
32
-    uint8_t tmpOGS_MAX_SDU_LEN;
33
+    uint8_t tmpOGS_HUGE_LEN;
34
     char *_gtp_payload = "34ff0024"
35
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
36
         "00000964cd7c291f";
37
@@ -2270,7 +2270,7 @@
38
     ogs_ngap_message_t message;
39
     int i;
40
 
41
-    uint8_t tmpOGS_MAX_SDU_LEN;
42
+    uint8_t tmpOGS_HUGE_LEN;
43
     char *_gtp_payload = "34ff0024"
44
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
45
         "00000964cd7c291f";
46
@@ -2987,7 +2987,7 @@
47
     ogs_ngap_message_t message;
48
     int i;
49
 
50
-    uint8_t tmpOGS_MAX_SDU_LEN;
51
+    uint8_t tmpOGS_HUGE_LEN;
52
     char *_gtp_payload = "34ff0024"
53
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
54
         "00000964cd7c291f";
55
@@ -3524,7 +3524,7 @@
56
     ogs_ngap_message_t message;
57
     int i;
58
 
59
-    uint8_t tmpOGS_MAX_SDU_LEN;
60
+    uint8_t tmpOGS_HUGE_LEN;
61
     char *_gtp_payload = "34ff0024"
62
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
63
         "00000964cd7c291f";
64
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/vonr/qos-flow-test.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/vonr/qos-flow-test.c Changed
10
 
1
@@ -32,7 +32,7 @@
2
     ogs_ngap_message_t message;
3
     int i;
4
 
5
-    uint8_t tmpOGS_MAX_SDU_LEN;
6
+    uint8_t tmpOGS_HUGE_LEN;
7
     char *_gtp_payload = "34ff0024"
8
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
9
         "00000964cd7c291f";
10
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/vonr/session-test.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/vonr/session-test.c Changed
55
 
1
@@ -32,7 +32,7 @@
2
     ogs_ngap_message_t message;
3
     int i;
4
 
5
-    uint8_t tmpOGS_MAX_SDU_LEN;
6
+    uint8_t tmpOGS_HUGE_LEN;
7
     char *_gtp_payload = "34ff0024"
8
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
9
         "00000964cd7c291f";
10
@@ -511,7 +511,7 @@
11
     ogs_ngap_message_t message;
12
     int i;
13
 
14
-    uint8_t tmpOGS_MAX_SDU_LEN;
15
+    uint8_t tmpOGS_HUGE_LEN;
16
     char *_gtp_payload = "34ff0024"
17
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
18
         "00000964cd7c291f";
19
@@ -940,7 +940,7 @@
20
     ogs_ngap_message_t message;
21
     int i;
22
 
23
-    uint8_t tmpOGS_MAX_SDU_LEN;
24
+    uint8_t tmpOGS_HUGE_LEN;
25
     char *_gtp_payload = "34ff0024"
26
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
27
         "00000964cd7c291f";
28
@@ -1355,7 +1355,7 @@
29
     ogs_ngap_message_t message;
30
     int i;
31
 
32
-    uint8_t tmpOGS_MAX_SDU_LEN;
33
+    uint8_t tmpOGS_HUGE_LEN;
34
     char *_gtp_payload = "34ff0024"
35
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
36
         "00000964cd7c291f";
37
@@ -1698,7 +1698,7 @@
38
     ogs_ngap_message_t message;
39
     int i;
40
 
41
-    uint8_t tmpOGS_MAX_SDU_LEN;
42
+    uint8_t tmpOGS_HUGE_LEN;
43
     char *_gtp_payload = "34ff0024"
44
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
45
         "00000964cd7c291f";
46
@@ -1976,7 +1976,7 @@
47
     ogs_ngap_message_t message;
48
     int i;
49
 
50
-    uint8_t tmpOGS_MAX_SDU_LEN;
51
+    uint8_t tmpOGS_HUGE_LEN;
52
     char *_gtp_payload = "34ff0024"
53
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
54
         "00000964cd7c291f";
55
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/vonr/simple-test.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/vonr/simple-test.c Changed
10
 
1
@@ -33,7 +33,7 @@
2
     ogs_ngap_message_t message;
3
     int i;
4
 
5
-    uint8_t tmpOGS_MAX_SDU_LEN;
6
+    uint8_t tmpOGS_HUGE_LEN;
7
     char *_gtp_payload = "34ff0024"
8
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
9
         "00000964cd7c291f";
10
open5gs_2.4.9.256.596a2.202301250006.tar.xz/tests/vonr/video-test.c -> open5gs_2.4.9.258.8598.202301260005.tar.xz/tests/vonr/video-test.c Changed
10
 
1
@@ -33,7 +33,7 @@
2
     ogs_ngap_message_t message;
3
     int i;
4
 
5
-    uint8_t tmpOGS_MAX_SDU_LEN;
6
+    uint8_t tmpOGS_HUGE_LEN;
7
     char *_gtp_payload = "34ff0024"
8
         "0000000100000085 010002004500001c 0c0b000040015a7a 0a2d00010a2d0002"
9
         "00000964cd7c291f";
10