More cases are added in test_inline_ipsec test suite to verify packets
having multiple IP(v4/v6) fragments. These fragments are encrypted
and then decrypted as per inline IPsec processing and then an attempt
is made to reassemble the fragments. The reassembled packet
content is matched with the known test vectors.

Signed-off-by: Akhil Goyal <gak...@marvell.com>
---
 app/test/test_security_inline_proto.c         | 147 ++++-
 app/test/test_security_inline_proto_vectors.h | 592 ++++++++++++++++++
 2 files changed, 738 insertions(+), 1 deletion(-)

diff --git a/app/test/test_security_inline_proto.c 
b/app/test/test_security_inline_proto.c
index 9dc083369a..d05325b205 100644
--- a/app/test/test_security_inline_proto.c
+++ b/app/test/test_security_inline_proto.c
@@ -1037,7 +1037,6 @@ test_reassembly_ipv4_nofrag(void)
                                      RTE_SECURITY_IPSEC_TUNNEL_IPV4);
 }
 
-
 static int
 test_ipsec_ipv4_burst_encap_decap(void)
 {
@@ -1052,6 +1051,134 @@ test_ipsec_ipv4_burst_encap_decap(void)
                                      RTE_SECURITY_IPSEC_TUNNEL_IPV4);
 }
 
+static int
+test_reassembly_ipv4_2frag(void)
+{
+       struct reassembly_vector ipv4_2frag_case = {
+                               .sa_data = &conf_aes_128_gcm,
+                               .full_pkt = &pkt_ipv4_udp_p1,
+                               .frags[0] = &pkt_ipv4_udp_p1_f1,
+                               .frags[1] = &pkt_ipv4_udp_p1_f2,
+                               .nb_frags = 2,
+       };
+       test_vector_payload_populate(&pkt_ipv4_udp_p1, true);
+       test_vector_payload_populate(&pkt_ipv4_udp_p1_f1, true);
+       test_vector_payload_populate(&pkt_ipv4_udp_p1_f2, false);
+
+       return test_ipsec_encap_decap(&ipv4_2frag_case,
+                                     RTE_SECURITY_IPSEC_TUNNEL_IPV4);
+}
+
+static int
+test_reassembly_ipv6_2frag(void)
+{
+       struct reassembly_vector ipv6_2frag_case = {
+                               .sa_data = &conf_aes_128_gcm,
+                               .full_pkt = &pkt_ipv6_udp_p1,
+                               .frags[0] = &pkt_ipv6_udp_p1_f1,
+                               .frags[1] = &pkt_ipv6_udp_p1_f2,
+                               .nb_frags = 2,
+       };
+       test_vector_payload_populate(&pkt_ipv6_udp_p1, true);
+       test_vector_payload_populate(&pkt_ipv6_udp_p1_f1, true);
+       test_vector_payload_populate(&pkt_ipv6_udp_p1_f2, false);
+
+       return test_ipsec_encap_decap(&ipv6_2frag_case,
+                                     RTE_SECURITY_IPSEC_TUNNEL_IPV6);
+}
+
+static int
+test_reassembly_ipv4_4frag(void)
+{
+       struct reassembly_vector ipv4_4frag_case = {
+                               .sa_data = &conf_aes_128_gcm,
+                               .full_pkt = &pkt_ipv4_udp_p2,
+                               .frags[0] = &pkt_ipv4_udp_p2_f1,
+                               .frags[1] = &pkt_ipv4_udp_p2_f2,
+                               .frags[2] = &pkt_ipv4_udp_p2_f3,
+                               .frags[3] = &pkt_ipv4_udp_p2_f4,
+                               .nb_frags = 4,
+       };
+       test_vector_payload_populate(&pkt_ipv4_udp_p2, true);
+       test_vector_payload_populate(&pkt_ipv4_udp_p2_f1, true);
+       test_vector_payload_populate(&pkt_ipv4_udp_p2_f2, false);
+       test_vector_payload_populate(&pkt_ipv4_udp_p2_f3, false);
+       test_vector_payload_populate(&pkt_ipv4_udp_p2_f4, false);
+
+       return test_ipsec_encap_decap(&ipv4_4frag_case,
+                                     RTE_SECURITY_IPSEC_TUNNEL_IPV4);
+}
+
+static int
+test_reassembly_ipv6_4frag(void)
+{
+       struct reassembly_vector ipv6_4frag_case = {
+                               .sa_data = &conf_aes_128_gcm,
+                               .full_pkt = &pkt_ipv6_udp_p2,
+                               .frags[0] = &pkt_ipv6_udp_p2_f1,
+                               .frags[1] = &pkt_ipv6_udp_p2_f2,
+                               .frags[2] = &pkt_ipv6_udp_p2_f3,
+                               .frags[3] = &pkt_ipv6_udp_p2_f4,
+                               .nb_frags = 4,
+       };
+       test_vector_payload_populate(&pkt_ipv6_udp_p2, true);
+       test_vector_payload_populate(&pkt_ipv6_udp_p2_f1, true);
+       test_vector_payload_populate(&pkt_ipv6_udp_p2_f2, false);
+       test_vector_payload_populate(&pkt_ipv6_udp_p2_f3, false);
+       test_vector_payload_populate(&pkt_ipv6_udp_p2_f4, false);
+
+       return test_ipsec_encap_decap(&ipv6_4frag_case,
+                                     RTE_SECURITY_IPSEC_TUNNEL_IPV6);
+}
+
+static int
+test_reassembly_ipv4_5frag(void)
+{
+       struct reassembly_vector ipv4_5frag_case = {
+                               .sa_data = &conf_aes_128_gcm,
+                               .full_pkt = &pkt_ipv4_udp_p3,
+                               .frags[0] = &pkt_ipv4_udp_p3_f1,
+                               .frags[1] = &pkt_ipv4_udp_p3_f2,
+                               .frags[2] = &pkt_ipv4_udp_p3_f3,
+                               .frags[3] = &pkt_ipv4_udp_p3_f4,
+                               .frags[4] = &pkt_ipv4_udp_p3_f5,
+                               .nb_frags = 5,
+       };
+       test_vector_payload_populate(&pkt_ipv4_udp_p3, true);
+       test_vector_payload_populate(&pkt_ipv4_udp_p3_f1, true);
+       test_vector_payload_populate(&pkt_ipv4_udp_p3_f2, false);
+       test_vector_payload_populate(&pkt_ipv4_udp_p3_f3, false);
+       test_vector_payload_populate(&pkt_ipv4_udp_p3_f4, false);
+       test_vector_payload_populate(&pkt_ipv4_udp_p3_f5, false);
+
+       return test_ipsec_encap_decap(&ipv4_5frag_case,
+                                     RTE_SECURITY_IPSEC_TUNNEL_IPV4);
+}
+
+static int
+test_reassembly_ipv6_5frag(void)
+{
+       struct reassembly_vector ipv6_5frag_case = {
+                               .sa_data = &conf_aes_128_gcm,
+                               .full_pkt = &pkt_ipv6_udp_p3,
+                               .frags[0] = &pkt_ipv6_udp_p3_f1,
+                               .frags[1] = &pkt_ipv6_udp_p3_f2,
+                               .frags[2] = &pkt_ipv6_udp_p3_f3,
+                               .frags[3] = &pkt_ipv6_udp_p3_f4,
+                               .frags[4] = &pkt_ipv6_udp_p3_f5,
+                               .nb_frags = 5,
+       };
+       test_vector_payload_populate(&pkt_ipv6_udp_p3, true);
+       test_vector_payload_populate(&pkt_ipv6_udp_p3_f1, true);
+       test_vector_payload_populate(&pkt_ipv6_udp_p3_f2, false);
+       test_vector_payload_populate(&pkt_ipv6_udp_p3_f3, false);
+       test_vector_payload_populate(&pkt_ipv6_udp_p3_f4, false);
+       test_vector_payload_populate(&pkt_ipv6_udp_p3_f5, false);
+
+       return test_ipsec_encap_decap(&ipv6_5frag_case,
+                                     RTE_SECURITY_IPSEC_TUNNEL_IPV6);
+}
+
 static struct unit_test_suite inline_ipsec_testsuite  = {
        .suite_name = "Inline IPsec Ethernet Device Unit Test Suite",
        .setup = testsuite_setup,
@@ -1069,6 +1196,24 @@ static struct unit_test_suite inline_ipsec_testsuite  = {
                TEST_CASE_ST(ut_setup_inline_ipsec,
                                ut_teardown_inline_ipsec,
                                test_ipsec_ipv4_burst_encap_decap),
+               TEST_CASE_ST(ut_setup_inline_ipsec,
+                               ut_teardown_inline_ipsec,
+                               test_reassembly_ipv4_2frag),
+               TEST_CASE_ST(ut_setup_inline_ipsec,
+                               ut_teardown_inline_ipsec,
+                               test_reassembly_ipv6_2frag),
+               TEST_CASE_ST(ut_setup_inline_ipsec,
+                               ut_teardown_inline_ipsec,
+                               test_reassembly_ipv4_4frag),
+               TEST_CASE_ST(ut_setup_inline_ipsec,
+                               ut_teardown_inline_ipsec,
+                               test_reassembly_ipv6_4frag),
+               TEST_CASE_ST(ut_setup_inline_ipsec,
+                               ut_teardown_inline_ipsec,
+                               test_reassembly_ipv4_5frag),
+               TEST_CASE_ST(ut_setup_inline_ipsec,
+                               ut_teardown_inline_ipsec,
+                               test_reassembly_ipv6_5frag),
 
                TEST_CASES_END() /**< NULL terminate unit test array */
        }
diff --git a/app/test/test_security_inline_proto_vectors.h 
b/app/test/test_security_inline_proto_vectors.h
index 861c4fad48..49d94f37df 100644
--- a/app/test/test_security_inline_proto_vectors.h
+++ b/app/test/test_security_inline_proto_vectors.h
@@ -4,6 +4,47 @@
 #ifndef _TEST_INLINE_IPSEC_REASSEMBLY_VECTORS_H_
 #define _TEST_INLINE_IPSEC_REASSEMBLY_VECTORS_H_
 
+/* The source file includes below test vectors */
+/* IPv6:
+ *
+ *     1) pkt_ipv6_udp_p1
+ *             pkt_ipv6_udp_p1_f1
+ *             pkt_ipv6_udp_p1_f2
+ *
+ *     2) pkt_ipv6_udp_p2
+ *             pkt_ipv6_udp_p2_f1
+ *             pkt_ipv6_udp_p2_f2
+ *             pkt_ipv6_udp_p2_f3
+ *             pkt_ipv6_udp_p2_f4
+ *
+ *     3) pkt_ipv6_udp_p3
+ *             pkt_ipv6_udp_p3_f1
+ *             pkt_ipv6_udp_p3_f2
+ *             pkt_ipv6_udp_p3_f3
+ *             pkt_ipv6_udp_p3_f4
+ *             pkt_ipv6_udp_p3_f5
+ */
+
+/* IPv4:
+ *
+ *     1) pkt_ipv4_udp_p1
+ *             pkt_ipv4_udp_p1_f1
+ *             pkt_ipv4_udp_p1_f2
+ *
+ *     2) pkt_ipv4_udp_p2
+ *             pkt_ipv4_udp_p2_f1
+ *             pkt_ipv4_udp_p2_f2
+ *             pkt_ipv4_udp_p2_f3
+ *             pkt_ipv4_udp_p2_f4
+ *
+ *     3) pkt_ipv4_udp_p3
+ *             pkt_ipv4_udp_p3_f1
+ *             pkt_ipv4_udp_p3_f2
+ *             pkt_ipv4_udp_p3_f3
+ *             pkt_ipv4_udp_p3_f4
+ *             pkt_ipv4_udp_p3_f5
+ */
+
 #define MAX_FRAG_LEN            1500
 #define MAX_FRAGS               6
 #define MAX_PKT_LEN             (MAX_FRAG_LEN * MAX_FRAGS)
@@ -45,6 +86,557 @@ struct reassembly_vector {
        bool burst;
 };
 
+struct ipsec_test_packet pkt_ipv6_udp_p1 = {
+       .len = 1514,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 54,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x05, 0xb4, 0x2C, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+
+               /* UDP */
+               0x08, 0x00, 0x27, 0x10, 0x05, 0xb4, 0x2b, 0xe8,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv6_udp_p1_f1 = {
+       .len = 1398,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 62,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x05, 0x40, 0x2c, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+               0x11, 0x00, 0x00, 0x01, 0x5c, 0x92, 0xac, 0xf1,
+
+               /* UDP */
+               0x08, 0x00, 0x27, 0x10, 0x05, 0xb4, 0x2b, 0xe8,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv6_udp_p1_f2 = {
+       .len = 186,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 62,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x00, 0x84, 0x2c, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+               0x11, 0x00, 0x05, 0x38, 0x5c, 0x92, 0xac, 0xf1,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv6_udp_p2 = {
+       .len = 4496,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 54,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x11, 0x5a, 0x2c, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+
+               /* UDP */
+               0x08, 0x00, 0x27, 0x10, 0x11, 0x5a, 0x8a, 0x11,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv6_udp_p2_f1 = {
+       .len = 1398,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 62,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x05, 0x40, 0x2c, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+               0x11, 0x00, 0x00, 0x01, 0x64, 0x6c, 0x68, 0x9f,
+
+               /* UDP */
+               0x08, 0x00, 0x27, 0x10, 0x11, 0x5a, 0x8a, 0x11,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv6_udp_p2_f2 = {
+       .len = 1398,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 62,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x05, 0x40, 0x2c, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+               0x11, 0x00, 0x05, 0x39, 0x64, 0x6c, 0x68, 0x9f,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv6_udp_p2_f3 = {
+       .len = 1398,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 62,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x05, 0x40, 0x2c, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+               0x11, 0x00, 0x0a, 0x71, 0x64, 0x6c, 0x68, 0x9f,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv6_udp_p2_f4 = {
+       .len = 496,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 62,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x01, 0xba, 0x2c, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+               0x11, 0x00, 0x0f, 0xa8, 0x64, 0x6c, 0x68, 0x9f,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv6_udp_p3 = {
+       .len = 5796,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 54,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x16, 0x6e, 0x2c, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+
+               /* UDP */
+               0x08, 0x00, 0x27, 0x10, 0x16, 0x6e, 0x2f, 0x99,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv6_udp_p3_f1 = {
+       .len = 1398,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 62,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x05, 0x40, 0x2c, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+               0x11, 0x00, 0x00, 0x01, 0x65, 0xcf, 0x5a, 0xae,
+
+               /* UDP */
+               0x80, 0x00, 0x27, 0x10, 0x16, 0x6e, 0x2f, 0x99,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv6_udp_p3_f2 = {
+       .len = 1398,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 62,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x05, 0x40, 0x2c, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+               0x11, 0x00, 0x05, 0x39, 0x65, 0xcf, 0x5a, 0xae,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv6_udp_p3_f3 = {
+       .len = 1398,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 62,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x05, 0x40, 0x2c, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+               0x11, 0x00, 0x0a, 0x71, 0x65, 0xcf, 0x5a, 0xae,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv6_udp_p3_f4 = {
+       .len = 1398,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 62,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x05, 0x40, 0x2c, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+               0x11, 0x00, 0x0f, 0xa9, 0x65, 0xcf, 0x5a, 0xae,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv6_udp_p3_f5 = {
+       .len = 460,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 62,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
+
+               /* IP */
+               0x60, 0x00, 0x00, 0x00, 0x01, 0x96, 0x2c, 0x40,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x00, 0x02,
+               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+               0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x02,
+               0x11, 0x00, 0x14, 0xe0, 0x65, 0xcf, 0x5a, 0xae,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p1 = {
+       .len = 1514,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x05, 0xdc, 0x00, 0x01, 0x00, 0x00,
+               0x40, 0x11, 0x66, 0x0d, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+
+               /* UDP */
+               0x08, 0x00, 0x27, 0x10, 0x05, 0xc8, 0xb8, 0x4c,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p1_f1 = {
+       .len = 1434,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x05, 0x8c, 0x00, 0x01, 0x20, 0x00,
+               0x40, 0x11, 0x46, 0x5d, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+
+               /* UDP */
+               0x08, 0x00, 0x27, 0x10, 0x05, 0xc8, 0xb8, 0x4c,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p1_f2 = {
+       .len = 114,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x00, 0x64, 0x00, 0x01, 0x00, 0xaf,
+               0x40, 0x11, 0x6a, 0xd6, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p2 = {
+       .len = 4496,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x11, 0x82, 0x00, 0x02, 0x00, 0x00,
+               0x40, 0x11, 0x5a, 0x66, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+
+               /* UDP */
+               0x08, 0x00, 0x27, 0x10, 0x11, 0x6e, 0x16, 0x76,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p2_f1 = {
+       .len = 1434,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x05, 0x8c, 0x00, 0x02, 0x20, 0x00,
+               0x40, 0x11, 0x46, 0x5c, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+
+               /* UDP */
+               0x08, 0x00, 0x27, 0x10, 0x11, 0x6e, 0x16, 0x76,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p2_f2 = {
+       .len = 1434,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x05, 0x8c, 0x00, 0x02, 0x20, 0xaf,
+               0x40, 0x11, 0x45, 0xad, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p2_f3 = {
+       .len = 1434,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x05, 0x8c, 0x00, 0x02, 0x21, 0x5e,
+               0x40, 0x11, 0x44, 0xfe, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p2_f4 = {
+       .len = 296,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x01, 0x1a, 0x00, 0x02, 0x02, 0x0d,
+               0x40, 0x11, 0x68, 0xc1, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p3 = {
+       .len = 5796,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x16, 0x96, 0x00, 0x03, 0x00, 0x00,
+               0x40, 0x11, 0x55, 0x51, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+
+               /* UDP */
+               0x08, 0x00, 0x27, 0x10, 0x16, 0x82, 0xbb, 0xfd,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p3_f1 = {
+       .len = 1434,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x05, 0x8c, 0x00, 0x03, 0x20, 0x00,
+               0x40, 0x11, 0x46, 0x5b, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+
+               /* UDP */
+               0x80, 0x00, 0x27, 0x10, 0x16, 0x82, 0xbb, 0xfd,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p3_f2 = {
+       .len = 1434,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x05, 0x8c, 0x00, 0x03, 0x20, 0xaf,
+               0x40, 0x11, 0x45, 0xac, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p3_f3 = {
+       .len = 1434,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x05, 0x8c, 0x00, 0x03, 0x21, 0x5e,
+               0x40, 0x11, 0x44, 0xfd, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p3_f4 = {
+       .len = 1434,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x05, 0x8c, 0x00, 0x03, 0x22, 0x0d,
+               0x40, 0x11, 0x44, 0x4e, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+       },
+};
+
+struct ipsec_test_packet pkt_ipv4_udp_p3_f5 = {
+       .len = 196,
+       .l2_offset = 0,
+       .l3_offset = 14,
+       .l4_offset = 34,
+       .data = {
+               /* ETH */
+               0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
+               0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
+
+               /* IP */
+               0x45, 0x00, 0x00, 0xb6, 0x00, 0x03, 0x02, 0xbc,
+               0x40, 0x11, 0x68, 0x75, 0x0d, 0x00, 0x00, 0x02,
+               0x02, 0x00, 0x00, 0x02,
+       },
+};
+
 struct ipsec_test_packet pkt_ipv4_plain = {
        .len = 76,
        .l2_offset = 0,
-- 
2.25.1

Reply via email to