From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 4287955E4C; Tue, 9 Jul 2024 11:31:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1720524665; cv=none; b=ZOLMQ7lvWVIlD0SUw4Ht2/UgxsFueRY059Dwtim698JjDxtdM03xwJ/10LoRXsqgVfE3psJd/02mRJquN6Q2CC4dtJH4/SV1XYCdfAxd5oQb/FICX95Ay3HJXTMU7FaLQrIO6b1oMkJuW3sLJWZK72E6ws7O++7rJVtuX6yamQY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1720524665; c=relaxed/simple; bh=MyyIRYSLPZPDGKwjnHK+OE+rqPVJ8uribqMdR0y/MaA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=p0pcVXpvX1zMeFcwmxRX0Q/3Cl/DTHL28r6g9LpHmMc9Lwudd583fAf8JM7AYfqcuDLIgottPl6QJXIpPxGsWRC6lPI2uhmU2RE8nOQB6dvgC8P/t6iuJ2TZRr588vIly5Bo/y3TIAImszeT1r4J4B8eZQJEJYA2deKx1faLajs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=JyeCSOmr; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="JyeCSOmr" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BF5A9C3277B; Tue, 9 Jul 2024 11:31:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1720524665; bh=MyyIRYSLPZPDGKwjnHK+OE+rqPVJ8uribqMdR0y/MaA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JyeCSOmrDR5bviC66BqTr0TGXMaM4vWY3Ar2rxBmaqnZ3ttqE5vfS78GXm2Yr6FqQ oexPgrZE/tyZCKYU7w13BlnfOZJ0SLLPASonvXFRd1N+mT9mvgpty/oW/NPLifS5hm u5J5ljYKwfztLSrESmXBy7MO+tEgIH18Jl6qx+0E= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Erick Archer , Xin Long , Kees Cook , Paolo Abeni , Sasha Levin Subject: [PATCH 6.1 018/102] sctp: prefer struct_size over open coded arithmetic Date: Tue, 9 Jul 2024 13:09:41 +0200 Message-ID: <20240709110652.078349048@linuxfoundation.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240709110651.353707001@linuxfoundation.org> References: <20240709110651.353707001@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Erick Archer [ Upstream commit e5c5f3596de224422561d48eba6ece5210d967b3 ] This is an effort to get rid of all multiplications from allocation functions in order to prevent integer overflows [1][2]. As the "ids" variable is a pointer to "struct sctp_assoc_ids" and this structure ends in a flexible array: struct sctp_assoc_ids { [...] sctp_assoc_t gaids_assoc_id[]; }; the preferred way in the kernel is to use the struct_size() helper to do the arithmetic instead of the calculation "size + size * count" in the kmalloc() function. Also, refactor the code adding the "ids_size" variable to avoid sizing twice. This way, the code is more readable and safer. This code was detected with the help of Coccinelle, and audited and modified manually. Link: https://www.kernel.org/doc/html/latest/process/deprecated.html#open-coded-arithmetic-in-allocator-arguments [1] Link: https://github.com/KSPP/linux/issues/160 [2] Signed-off-by: Erick Archer Acked-by: Xin Long Reviewed-by: Kees Cook Link: https://lore.kernel.org/r/PAXPR02MB724871DB78375AB06B5171C88B152@PAXPR02MB7248.eurprd02.prod.outlook.com Signed-off-by: Paolo Abeni Signed-off-by: Sasha Levin --- net/sctp/socket.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/net/sctp/socket.c b/net/sctp/socket.c index 237a6b04adf6f..9689d2f2d91f9 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c @@ -7116,6 +7116,7 @@ static int sctp_getsockopt_assoc_ids(struct sock *sk, int len, struct sctp_sock *sp = sctp_sk(sk); struct sctp_association *asoc; struct sctp_assoc_ids *ids; + size_t ids_size; u32 num = 0; if (sctp_style(sk, TCP)) @@ -7128,11 +7129,11 @@ static int sctp_getsockopt_assoc_ids(struct sock *sk, int len, num++; } - if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num) + ids_size = struct_size(ids, gaids_assoc_id, num); + if (len < ids_size) return -EINVAL; - len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num; - + len = ids_size; ids = kmalloc(len, GFP_USER | __GFP_NOWARN); if (unlikely(!ids)) return -ENOMEM; -- 2.43.0