From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 299F8A034C; Wed, 27 Apr 2022 17:11:06 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C2DFF40E78; Wed, 27 Apr 2022 17:11:05 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id D364740691 for ; Wed, 27 Apr 2022 17:11:03 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.1.2/8.16.1.2) with ESMTP id 23R8vUbc029540; Wed, 27 Apr 2022 08:11:02 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=FIH30UtAYLp/2l6/8QNSmqx1VRkTd9Hglw5DDtKtrCM=; b=cyAMgtP0rVzU6S12EE/63ItNGyG1LeA9PsfubNvSpHciVqToMMOeW1Tv72HcioqoRWP7 0Atbp4Kp2z6Mzy5iivziZqhNYRa0hOszyhIQFq4C271B2Jx1VzXfYZwM3RFGb8LYjswM 4hKu3FeS8+8hZXiN1oy+oo3O+Cf/RCBeLK2em1L+H8uUcEJP2/ladE0QIGMOq9R0mSmz VJE+pCgDZ9O+4lyVYVxEFLhFIpN4ExCOZN50689e5c9r/Tq+AI5K9QVEYe6JjBqggMQq K02dtq0ibglxdsltl2sYr+HWLLuX5OPkwcK8Ew1S6IxtVLCZeK+DTvtPzhLEqRLJPQX+ ww== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3fprsqub5c-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Wed, 27 Apr 2022 08:11:02 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Wed, 27 Apr 2022 08:11:01 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Wed, 27 Apr 2022 08:11:01 -0700 Received: from localhost.localdomain (unknown [10.28.48.55]) by maili.marvell.com (Postfix) with ESMTP id 903205B6932; Wed, 27 Apr 2022 08:10:57 -0700 (PDT) From: Akhil Goyal To: CC: , , , , , , , , , , Akhil Goyal Subject: [PATCH v5 0/7] app/test: add inline IPsec and reassembly cases Date: Wed, 27 Apr 2022 20:40:47 +0530 Message-ID: <20220427151054.2536675-1-gakhil@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220416192530.173895-1-gakhil@marvell.com> References: <20220416192530.173895-1-gakhil@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: GzQPvlWY2juzQfmnuOxlTaTzJyWp1xic X-Proofpoint-GUID: GzQPvlWY2juzQfmnuOxlTaTzJyWp1xic X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.858,Hydra:6.0.486,FMLib:17.11.64.514 definitions=2022-04-27_04,2022-04-27_01,2022-02-23_01 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org IP reassembly offload was added in last release. The test app for unit testing IP reassembly of inline inbound IPsec flows is added in this patchset. For testing IP reassembly, base inline IPsec is also added. The app is enhanced in v4 to handle more functional unit test cases for inline IPsec similar to Lookaside IPsec. The functions from Lookaside more are reused to verify functional cases. changed in v5: - removed soft/hard expiry patches which are deferred for next release - skipped tests if no port is added. - added release notes. Changes in v4: - rebased over next-crypto - updated app to take benefit from Lookaside protocol test functions. - Added more functional cases - Added soft and hard expiry event subtypes in ethdev for testing SA soft and hard pkt/byte expiry events. - reassembly cases are squashed in a single patch Changes in v3: - incorporated latest ethdev changes for reassembly. - skipped build on windows as it needs rte_ipsec lib which is not compiled on windows. changes in v2: - added IPsec burst mode case - updated as per the latest ethdev changes. Akhil Goyal (6): app/test: add unit cases for inline IPsec offload test/security: add inline inbound IPsec cases test/security: add combined mode inline IPsec cases test/security: add inline IPsec reassembly cases test/security: add more inline IPsec functional cases test/security: add ESN and anti-replay cases for inline Vamsi Attunuru (1): test/security: add inline IPsec IPv6 flow label cases MAINTAINERS | 2 +- app/test/meson.build | 1 + app/test/test_cryptodev_security_ipsec.c | 35 +- app/test/test_cryptodev_security_ipsec.h | 10 + app/test/test_security_inline_proto.c | 2372 +++++++++++++++++ app/test/test_security_inline_proto_vectors.h | 704 +++++ doc/guides/rel_notes/release_22_07.rst | 5 + 7 files changed, 3127 insertions(+), 2 deletions(-) create mode 100644 app/test/test_security_inline_proto.c create mode 100644 app/test/test_security_inline_proto_vectors.h -- 2.25.1