Thomas Bogendoerfer a6cab4
From: Eiichi Tsukata <eiichi.tsukata@nutanix.com>
Thomas Bogendoerfer a6cab4
Date: Wed, 13 Oct 2021 17:27:29 -0300
Thomas Bogendoerfer a6cab4
Subject: sctp: account stream padding length for reconf chunk
Thomas Bogendoerfer a6cab4
Patch-mainline: v5.15-rc6
Thomas Bogendoerfer a6cab4
Git-commit: a2d859e3fc97e79d907761550dbc03ff1b36479c
Thomas Bogendoerfer a6cab4
References: bsc#1194985 CVE-2022-0322
Thomas Bogendoerfer a6cab4
Thomas Bogendoerfer a6cab4
sctp_make_strreset_req() makes repeated calls to sctp_addto_chunk()
Thomas Bogendoerfer a6cab4
which will automatically account for padding on each call. inreq and
Thomas Bogendoerfer a6cab4
outreq are already 4 bytes aligned, but the payload is not and doing
Thomas Bogendoerfer a6cab4
SCTP_PAD4(a + b) (which _sctp_make_chunk() did implicitly here) is
Thomas Bogendoerfer a6cab4
different from SCTP_PAD4(a) + SCTP_PAD4(b) and not enough. It led to
Thomas Bogendoerfer a6cab4
possible attempt to use more buffer than it was allocated and triggered
Thomas Bogendoerfer a6cab4
a BUG_ON.
Thomas Bogendoerfer a6cab4
Thomas Bogendoerfer a6cab4
Cc: Vlad Yasevich <vyasevich@gmail.com>
Thomas Bogendoerfer a6cab4
Cc: Neil Horman <nhorman@tuxdriver.com>
Thomas Bogendoerfer a6cab4
Cc: Greg KH <gregkh@linuxfoundation.org>
Thomas Bogendoerfer a6cab4
Fixes: cc16f00f6529 ("sctp: add support for generating stream reconf ssn reset request chunk")
Thomas Bogendoerfer a6cab4
Reported-by: Eiichi Tsukata <eiichi.tsukata@nutanix.com>
Thomas Bogendoerfer a6cab4
Signed-off-by: Eiichi Tsukata <eiichi.tsukata@nutanix.com>
Thomas Bogendoerfer a6cab4
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Thomas Bogendoerfer a6cab4
Signed-off-by: Marcelo Ricardo Leitner <mleitner@redhat.com>
Thomas Bogendoerfer a6cab4
Reviewed-by: Xin Long <lucien.xin@gmail.com>
Thomas Bogendoerfer a6cab4
Link: https://lore.kernel.org/r/b97c1f8b0c7ff79ac4ed206fc2c49d3612e0850c.1634156849.git.mleitner@redhat.com
Thomas Bogendoerfer a6cab4
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Thomas Bogendoerfer a6cab4
Acked-by: Thomas Bogendoerfer <tbogendoerfer@suse.de>
Thomas Bogendoerfer a6cab4
---
Thomas Bogendoerfer a6cab4
 net/sctp/sm_make_chunk.c |    2 +-
Thomas Bogendoerfer a6cab4
 1 file changed, 1 insertion(+), 1 deletion(-)
Thomas Bogendoerfer a6cab4
Thomas Bogendoerfer a6cab4
--- a/net/sctp/sm_make_chunk.c
Thomas Bogendoerfer a6cab4
+++ b/net/sctp/sm_make_chunk.c
Thomas Bogendoerfer a6cab4
@@ -3647,7 +3647,7 @@ struct sctp_chunk *sctp_make_strreset_re
Thomas Bogendoerfer a6cab4
 	outlen = (sizeof(outreq) + stream_len) * out;
Thomas Bogendoerfer a6cab4
 	inlen = (sizeof(inreq) + stream_len) * in;
Thomas Bogendoerfer a6cab4
 
Thomas Bogendoerfer a6cab4
-	retval = sctp_make_reconf(asoc, outlen + inlen);
Thomas Bogendoerfer a6cab4
+	retval = sctp_make_reconf(asoc, SCTP_PAD4(outlen) + SCTP_PAD4(inlen));
Thomas Bogendoerfer a6cab4
 	if (!retval)
Thomas Bogendoerfer a6cab4
 		return NULL;
Thomas Bogendoerfer a6cab4