From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 0AAEE46C4A6; Tue, 21 Jul 2026 15:41:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784648517; cv=none; b=UTGitKW7lRNbDeuYrNtWd5WxuQyiB5Y7JkEwkQXKRXqbPsat/RtM/+UnaEHUnZun0GRIpV+pYAB0J9K6WoMgpEAg9vRgzeyHqLBZWwo4Ny2b4qIRH6JeV3Yttq9KYvIPFWS3ANv5rsNMTfXGYjMhogkmrCQK/2/JgVxDnWXdnFU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784648517; c=relaxed/simple; bh=ohTNIc2LA1bQztufw/dRa2apeuF949N2URqNDiup6lw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=cyLH5SxwD2OrJ1V5Zya3hhJMNAJMTGR8tZSRgvlMUfaB+lC85HkeF0cryEWl+4CUZyBLutJ6rgXIxgkqJNuAUXMwfeDihB9R4+wAwW1u9MUynRveiuU2lohkOyuCHqHP0HxdFAe24OatT0K7/3RiCaPTSwexdRJGAc+z63XVC58= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=RT1/lzGw; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="RT1/lzGw" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6B29D1F000E9; Tue, 21 Jul 2026 15:41:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784648515; bh=MRsBIA7ydfVGEYYzq1213HCrosjETZCyE7MwpNpGfzI=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=RT1/lzGwYhMAkjQMMF8OkbxIYfl2wYVXufjVXjlhGcLmJq8fwBJjpAYZGf1HP1nLF tjfL4no/jTUFkfGCrVKSGaszpGExr5fuzqP+/mTyYFXhpxp+OJlGkev2edfAKljSkt eSQjmrEO5cXgJxJWHTi1T8Bm+lzuxmodmozn7xEo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Alexander Chesnokov , Leon Romanovsky , Sasha Levin Subject: [PATCH 7.1 0222/2077] RDMA/hns: Fix arithmetic overflow in calc_hem_config() Date: Tue, 21 Jul 2026 16:58:15 +0200 Message-ID: <20260721152557.917435705@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152552.646164743@linuxfoundation.org> References: <20260721152552.646164743@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 7.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Alexander Chesnokov [ Upstream commit a38e4410af9ad8b7ad2217254da06cd4dc21f0ed ] If bt_num is 3 or 2, then the expressions like l0_idx * chunk_ba_num + l1_idx are computed in 32-bit arithmetic before being assigned to a u64 index field, which can lead to overflow. Cast the first operand to u64 to ensure the arithmetic is performed in 64-bit. Found by Linux Verification Center (linuxtesting.org) with SVACE. Fixes: 2f49de21f3e9 ("RDMA/hns: Optimize mhop get flow for multi-hop addressing") Signed-off-by: Alexander Chesnokov Link: https://patch.msgid.link/20260413091527.39990-1-Alexander.Chesnokov@kaspersky.com Signed-off-by: Leon Romanovsky Signed-off-by: Sasha Levin --- drivers/infiniband/hw/hns/hns_roce_hem.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/infiniband/hw/hns/hns_roce_hem.c b/drivers/infiniband/hw/hns/hns_roce_hem.c index e7c9e30ad2d8b4..ccb40f8a48b726 100644 --- a/drivers/infiniband/hw/hns/hns_roce_hem.c +++ b/drivers/infiniband/hw/hns/hns_roce_hem.c @@ -314,14 +314,14 @@ static int calc_hem_config(struct hns_roce_dev *hr_dev, bt_num = hns_roce_get_bt_num(table->type, mhop->hop_num); switch (bt_num) { case 3: - index->l1 = l0_idx * chunk_ba_num + l1_idx; + index->l1 = (u64)l0_idx * chunk_ba_num + l1_idx; index->l0 = l0_idx; - index->buf = l0_idx * chunk_ba_num * chunk_ba_num + - l1_idx * chunk_ba_num + l2_idx; + index->buf = (u64)l0_idx * chunk_ba_num * chunk_ba_num + + (u64)l1_idx * chunk_ba_num + l2_idx; break; case 2: index->l0 = l0_idx; - index->buf = l0_idx * chunk_ba_num + l1_idx; + index->buf = (u64)l0_idx * chunk_ba_num + l1_idx; break; case 1: index->buf = l0_idx; -- 2.53.0