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 D0888A0547; Thu, 25 Aug 2022 16:29:12 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 725AB415D7; Thu, 25 Aug 2022 16:29:12 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 2971140156 for ; Thu, 25 Aug 2022 16:29:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1661437748; x=1692973748; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=6isGZosgTRT0piMiTN9fH+NgqFNMo/MEINcFFbGdwdg=; b=EC9TTpRrhugXkQd+h+MToIpkDC+47r9YJ3MsII00dUdSk6VaN/UDD/wK ucEnaQB0TAWFVzfLVQgKX1xefbLvrQKPkKIUJ+zKHjx0u3ODd2edhWFtz zq10SH2hs9GIcY7604J12JPL+iCfkQoIWRRcsXHVmTmLk9Ejzw62vF617 FAws0XiOVzkQkmTHPdK9q75ub/wqm/FbIxD3/5tGkYWGdLnrQJWuSdPvu U/lkLMd+Aw9yFlZSrWpivXtw6aQxKXuBYLP+aht3xS5VjsZyba0vDHFy6 Nz8qoL8agjvRBZ0IxvPtCvZ049H9IdPwMsK6l5wOsh95z2OBxCktqgged A==; X-IronPort-AV: E=McAfee;i="6500,9779,10450"; a="358216610" X-IronPort-AV: E=Sophos;i="5.93,263,1654585200"; d="scan'208";a="358216610" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Aug 2022 07:29:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,263,1654585200"; d="scan'208";a="561043251" Received: from silpixa00400355.ir.intel.com (HELO silpixa00400355.ger.corp.intel.com) ([10.237.222.49]) by orsmga003.jf.intel.com with ESMTP; 25 Aug 2022 07:29:06 -0700 From: Ciara Power To: Akhil Goyal , Fan Zhang Cc: dev@dpdk.org, kai.ji@intel.com, pablo.de.lara.guarch@intel.com, Ciara Power Subject: [PATCH v2 1/5] test/crypto: fix wireless auth digest segment Date: Thu, 25 Aug 2022 14:28:57 +0000 Message-Id: <20220825142901.898007-2-ciara.power@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220825142901.898007-1-ciara.power@intel.com> References: <20220812132334.75707-1-ciara.power@intel.com> <20220825142901.898007-1-ciara.power@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 The segment size for some tests was too small to hold the auth digest. This caused issues when using op->sym->auth.digest.data for comparisons in AESNI_MB PMD after a subsequent patch enables SGL. For example, if segment size is 2, and digest size is 4, then 4 bytes are read from op->sym->auth.digest.data, which overflows into the memory after the segment, rather than using the second segment that contains the remaining half of the digest. Fixes: 11c5485bb276 ("test/crypto: add scatter-gather tests for IP and OOP") Signed-off-by: Ciara Power --- app/test/test_cryptodev.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 69a0301de0..e6925b6531 100644 --- a/app/test/test_cryptodev.c +++ b/app/test/test_cryptodev.c @@ -3040,6 +3040,14 @@ create_wireless_algo_auth_cipher_operation( remaining_off -= rte_pktmbuf_data_len(sgl_buf); sgl_buf = sgl_buf->next; } + + /* The last segment should be large enough to hold full digest */ + if (sgl_buf->data_len < auth_tag_len) { + rte_pktmbuf_free(sgl_buf->next); + sgl_buf->next = NULL; + rte_pktmbuf_append(sgl_buf, auth_tag_len - sgl_buf->data_len); + } + sym_op->auth.digest.data = rte_pktmbuf_mtod_offset(sgl_buf, uint8_t *, remaining_off); sym_op->auth.digest.phys_addr = rte_pktmbuf_iova_offset(sgl_buf, -- 2.25.1