From patchwork Tue Oct 27 13:55:14 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg KH X-Patchwork-Id: 312236 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH, MAILING_LIST_MULTI, SIGNED_OFF_BY, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED, USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 06DDDC5517A for ; Tue, 27 Oct 2020 16:46:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A0C9B22263 for ; Tue, 27 Oct 2020 16:46:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603817196; bh=B3653fjgyO04/ZEw1TGbebY8FOiIxsaRaeXQ3L/z2ZA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=0MsT5Th+2GvV3BOt9HPp11rJjqOHW9mbRBdEhcTThxkpvi1ONsYhDIjgI/9AY8JiO 1+6MVrQepb5L0fVvWdk/9DqtaFu46OPBp31RBhAbNdNJd0YEXd0246fqTtCD0ltPhD sVLekB5sNZtcTGK9L0Algy0Z051BH4KOJTAJMNic= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1794907AbgJ0POU (ORCPT ); Tue, 27 Oct 2020 11:14:20 -0400 Received: from mail.kernel.org ([198.145.29.99]:51314 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1794902AbgJ0POT (ORCPT ); Tue, 27 Oct 2020 11:14:19 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 591FD20657; Tue, 27 Oct 2020 15:14:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603811659; bh=B3653fjgyO04/ZEw1TGbebY8FOiIxsaRaeXQ3L/z2ZA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Ybwh+tuMGnj43Do8H951cQqIKDKYeddw7IEx/auB5H984evCNMFnY/o0sC/htHXHh zhrfsTp1Na+W+AaIGkVkG3cBwIVRvW0y/+Ci6yfLomyy5cfojzBg24XQhZS8kGvksI +nJ978RKwUgx0IqDsOT5LIeZlECsGImt3QsbrB/k= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, syzbot+9991561e714f597095da@syzkaller.appspotmail.com, Jan Kara , Sasha Levin Subject: [PATCH 5.8 571/633] udf: Limit sparing table size Date: Tue, 27 Oct 2020 14:55:14 +0100 Message-Id: <20201027135549.591247049@linuxfoundation.org> X-Mailer: git-send-email 2.29.1 In-Reply-To: <20201027135522.655719020@linuxfoundation.org> References: <20201027135522.655719020@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Jan Kara [ Upstream commit 44ac6b829c4e173fdf6df18e6dd86aecf9a3dc99 ] Although UDF standard allows it, we don't support sparing table larger than a single block. Check it during mount so that we don't try to access memory beyond end of buffer. Reported-by: syzbot+9991561e714f597095da@syzkaller.appspotmail.com Signed-off-by: Jan Kara Signed-off-by: Sasha Levin --- fs/udf/super.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/fs/udf/super.c b/fs/udf/super.c index f747bf72edbe0..a6ce0ddb392c7 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c @@ -1353,6 +1353,12 @@ static int udf_load_sparable_map(struct super_block *sb, (int)spm->numSparingTables); return -EIO; } + if (le32_to_cpu(spm->sizeSparingTable) > sb->s_blocksize) { + udf_err(sb, "error loading logical volume descriptor: " + "Too big sparing table size (%u)\n", + le32_to_cpu(spm->sizeSparingTable)); + return -EIO; + } for (i = 0; i < spm->numSparingTables; i++) { loc = le32_to_cpu(spm->locSparingTable[i]);