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 587B52EBB8D; Tue, 21 Jul 2026 20:54:33 +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=1784667274; cv=none; b=No22V/yfTI7NFm3hJ5zixcf5GoM60ZET+kHJyCkjTvX6m/HI70BBLLaq301mgRE6miqxkon7FUh0FZpk5EWsZm5tobfD9z+AoC7tY6Yv70WgLx78VvkLVh6evMxoTrnTQiCQ/wkLq0lZtgGhE+Lhj64EwyHTI42ek9kXPxX33tc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784667274; c=relaxed/simple; bh=+86K8FBvIAXPmtvdJupBRDwSn9+JxtnUu20AhjVJfE4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=UCxOBcejpPoGmdKl6J1dDyUwqLOpg8R5TjDmersEUhlkaq358O113SeWkqeRTwBVrLpOgHtqhfo1F4TCe3MF8UVhaSN+MHD3Q7AlmabYtZ/68G4Mg5rAvKCJsYwW47hgY+WrqlSQw3MPB654GI08kUz+Suiw1eDarWhHATxzF5E= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=hiiaT1nz; 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="hiiaT1nz" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BCDFD1F000E9; Tue, 21 Jul 2026 20:54:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784667273; bh=cwuojgfpyR/M77SmmHJUBSosiqVWDpUzEAeKIEPOu7I=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=hiiaT1nzQ9bObHRvaGdKLcWv9FMPWR21hDWFay2QCVEWjqy/yjKpjLetFUQO3ljXQ vjO5v8XqsSzAL7hl6dt2jGrDfyPkgqLh/xiT99GMB6n5eE+l4y48cSNo760CyUE1cG o+eoqRGZgm+FrgGwA764oHdWZFCkT1+Zl0BcYric= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, syzbot+7ea0b96c4ddb49fd1a70@syzkaller.appspotmail.com, Tristan Madani , Joseph Qi , Mark Fasheh , Joel Becker , Junxiao Bi , Changwei Ge , Jun Piao , Heming Zhao , Andrew Morton Subject: [PATCH 6.6 0998/1266] ocfs2: use kzalloc for quota recovery bitmap allocation Date: Tue, 21 Jul 2026 17:23:55 +0200 Message-ID: <20260721152504.160190920@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152441.786066624@linuxfoundation.org> References: <20260721152441.786066624@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 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Tristan Madani commit 93c8c6ea90be9e9df8fe14048ad4e3caad0770a6 upstream. ocfs2 quota recovery allocates a bitmap buffer with kmalloc and does not fully initialize it. This can lead to use of uninitialized bits during quota recovery from a corrupted filesystem image. Use kzalloc instead to ensure the bitmap is zero-initialized. Link: https://lore.kernel.org/20260418131048.1052507-1-tristmd@gmail.com Reported-by: syzbot+7ea0b96c4ddb49fd1a70@syzkaller.appspotmail.com Signed-off-by: Tristan Madani Reviewed-by: Joseph Qi Cc: Mark Fasheh Cc: Joel Becker Cc: Junxiao Bi Cc: Changwei Ge Cc: Jun Piao Cc: Heming Zhao Cc: Signed-off-by: Andrew Morton Signed-off-by: Greg Kroah-Hartman --- fs/ocfs2/quota_local.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/fs/ocfs2/quota_local.c +++ b/fs/ocfs2/quota_local.c @@ -302,7 +302,7 @@ static int ocfs2_add_recovery_chunk(stru if (!rc) return -ENOMEM; rc->rc_chunk = chunk; - rc->rc_bitmap = kmalloc(sb->s_blocksize, GFP_NOFS); + rc->rc_bitmap = kzalloc(sb->s_blocksize, GFP_NOFS); if (!rc->rc_bitmap) { kfree(rc); return -ENOMEM;