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 5FAA12EAB6F for ; Mon, 13 Oct 2025 07:49:28 +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=1760341768; cv=none; b=ZS6oX/SJKawb5ggP2XonU4gRqPc/N2tK7lL/H8c+Ihi8r3N1onSwWRVBF7wiF9aUgVlJWz69I+T/tYnXd3y44S1+vG0/3hlOHl5+Fr3Ov5bnGqag2fBAiE6XCtdcYvtQnDb9dORPI44Cqnptta2vvhZco8MpBQzMlcL9CLWSZ1g= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760341768; c=relaxed/simple; bh=HVkCc5xXc/zss/qcKdMtYr4OOZrRR4/2Ffv5CaGS4zs=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=azWsifCC0OaoGNt2VGY0xg67SdAUAa5++NVtavJ47IyXZqWrc0fK7hfa0CJed+UvQ/hfC3jRiA/YxfVlYJQOjOxGzorG+2iwWh9EhNA3oDMmVoAip9x3kpEtm5mL7r1efu77Me5tEq8IdMPfXahhkTpUllCFiVNbyDB4IhsDQVg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=NjtmbzPg; 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="NjtmbzPg" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 733C9C4CEE7; Mon, 13 Oct 2025 07:49:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1760341767; bh=HVkCc5xXc/zss/qcKdMtYr4OOZrRR4/2Ffv5CaGS4zs=; h=Subject:To:Cc:From:Date:From; b=NjtmbzPgPxB3NqW02gWk42Ic24ugzXa27OcPT2Q5JpVJ2Qu3PRbIXFhWjdWj7iA+B KJU4hCV7UA1U2xtpaWWyeILN27ECjbJPhAAidAZKJyHDKGvHy2M9kySyKoybLRdpln JnfIcNIyA+Euj9IozMmNHudWxQ0ZhKVskLow6RWU= Subject: FAILED: patch "[PATCH] Squashfs: reject negative file sizes in squashfs_read_inode()" failed to apply to 6.1-stable tree To: phillip@squashfs.org.uk,akpm@linux-foundation.org,amir73il@gmail.com,stable@vger.kernel.org Cc: From: Date: Mon, 13 Oct 2025 09:49:20 +0200 Message-ID: <2025101320-padding-swagger-0208@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit The patch below does not apply to the 6.1-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.1.y git checkout FETCH_HEAD git cherry-pick -x 9f1c14c1de1bdde395f6cc893efa4f80a2ae3b2b # git commit -s git send-email --to '' --in-reply-to '2025101320-padding-swagger-0208@gregkh' --subject-prefix 'PATCH 6.1.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From 9f1c14c1de1bdde395f6cc893efa4f80a2ae3b2b Mon Sep 17 00:00:00 2001 From: Phillip Lougher Date: Fri, 26 Sep 2025 22:59:35 +0100 Subject: [PATCH] Squashfs: reject negative file sizes in squashfs_read_inode() Syskaller reports a "WARNING in ovl_copy_up_file" in overlayfs. This warning is ultimately caused because the underlying Squashfs file system returns a file with a negative file size. This commit checks for a negative file size and returns EINVAL. [phillip@squashfs.org.uk: only need to check 64 bit quantity] Link: https://lkml.kernel.org/r/20250926222305.110103-1-phillip@squashfs.org.uk Link: https://lkml.kernel.org/r/20250926215935.107233-1-phillip@squashfs.org.uk Fixes: 6545b246a2c8 ("Squashfs: inode operations") Signed-off-by: Phillip Lougher Reported-by: syzbot+f754e01116421e9754b9@syzkaller.appspotmail.com Closes: https://lore.kernel.org/all/68d580e5.a00a0220.303701.0019.GAE@google.com/ Cc: Amir Goldstein Cc: Signed-off-by: Andrew Morton diff --git a/fs/squashfs/inode.c b/fs/squashfs/inode.c index ddc65d006063..cceae3b78698 100644 --- a/fs/squashfs/inode.c +++ b/fs/squashfs/inode.c @@ -197,6 +197,10 @@ int squashfs_read_inode(struct inode *inode, long long ino) goto failed_read; inode->i_size = le64_to_cpu(sqsh_ino->file_size); + if (inode->i_size < 0) { + err = -EINVAL; + goto failed_read; + } frag = le32_to_cpu(sqsh_ino->fragment); if (frag != SQUASHFS_INVALID_FRAG) { /*