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 BF26D36C9E9 for ; Sat, 28 Feb 2026 18:11:37 +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=1772302297; cv=none; b=IG5m6/+bQiwlphshwM+B8bFceR6Cg3vqGsm5snzZy4xzK9PHbzEodDv62ZJ/VzBU5xEJ9+6h2Vtty2sBosDyfIEOOv7aLZ/29vteWkFRoTL1k338yaupfcbNTlDA+Y5Jp/UMcTUtst6wRUs7q8Lpwrnudb5VEkMguM0n3+MUe7Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772302297; c=relaxed/simple; bh=eKho7f5ocCnN6Vua7Uax5iLobKtQlOwYCelaqjMX6uE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ROyZgCYcSurpBtvHKAf3GPS0bU54ZTuyUzMSkUGawfIvkN1xGI6EVxBMfWMaPXhb9+x39WIv64fi/aIaaWDJF5z/8YmiG57YquuKCOu8Ovnezq31n/dzQJR3+2htcahLzLBkwJJ5p0NzuT8JVa4PzGBED7QWkJLO+jmaMP0rgSM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=MZ12S+Ia; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="MZ12S+Ia" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1A075C116D0; Sat, 28 Feb 2026 18:11:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1772302297; bh=eKho7f5ocCnN6Vua7Uax5iLobKtQlOwYCelaqjMX6uE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=MZ12S+Iaq/BzPjtLJ/EiRFApRupu2+DweitCkUQUA3xiCV7+JoyRvhIfJOc+Eg+ah SIGN7dhK0gqGE4BATTQsNg3Dx+h0xs0xJk9hDSUcLYFonFwjoeFQf8enAw7EAFQvDT lb9N1tyI80O+ydxjl1aluAnGdQP1y/Ny4e6Bhx9oRbA8PbgUkYaghoUXHZUvl7GBtg S9LIBCYStVl87TloVXH/ji/XODF2W92xyY1czidAulPaoXSwCVRIdHy6pvsLehTwEW lc59hhqAFJIRpfMSMZzVYCl0UWlrGB47pK+gzI4da/815nt+/4Wy24SgisAV4NJ3bd QshLfZEVfxpLg== From: Sasha Levin To: patches@lists.linux.dev Cc: Deepanshu Kartikey , syzbot+ea1cd4aa4d1e98458a55@syzkaller.appspotmail.com, Andreas Gruenbacher , Sasha Levin Subject: [PATCH 6.1 011/232] gfs2: Fix use-after-free in iomap inline data write path Date: Sat, 28 Feb 2026 13:07:44 -0500 Message-ID: <20260228181127.1592657-11-sashal@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20260228181127.1592657-1-sashal@kernel.org> References: <20260228181127.1592657-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit From: Deepanshu Kartikey [ Upstream commit faddeb848305e79db89ee0479bb0e33380656321 ] The inline data buffer head (dibh) is being released prematurely in gfs2_iomap_begin() via release_metapath() while iomap->inline_data still points to dibh->b_data. This causes a use-after-free when iomap_write_end_inline() later attempts to write to the inline data area. The bug sequence: 1. gfs2_iomap_begin() calls gfs2_meta_inode_buffer() to read inode metadata into dibh 2. Sets iomap->inline_data = dibh->b_data + sizeof(struct gfs2_dinode) 3. Calls release_metapath() which calls brelse(dibh), dropping refcount to 0 4. kswapd reclaims the page (~39ms later in the syzbot report) 5. iomap_write_end_inline() tries to memcpy() to iomap->inline_data 6. KASAN detects use-after-free write to freed memory Fix by storing dibh in iomap->private and incrementing its refcount with get_bh() in gfs2_iomap_begin(). The buffer is then properly released in gfs2_iomap_end() after the inline write completes, ensuring the page stays alive for the entire iomap operation. Note: A C reproducer is not available for this issue. The fix is based on analysis of the KASAN report and code review showing the buffer head is freed before use. [agruenba: Take buffer head reference in gfs2_iomap_begin() to avoid leaks in gfs2_iomap_get() and gfs2_iomap_alloc().] Reported-by: syzbot+ea1cd4aa4d1e98458a55@syzkaller.appspotmail.com Closes: https://syzkaller.appspot.com/bug?extid=ea1cd4aa4d1e98458a55 Fixes: d0a22a4b03b8 ("gfs2: Fix iomap write page reclaim deadlock") Signed-off-by: Deepanshu Kartikey Signed-off-by: Andreas Gruenbacher Signed-off-by: Sasha Levin --- fs/gfs2/bmap.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/fs/gfs2/bmap.c b/fs/gfs2/bmap.c index 9f0dec17fa431..8a17c3bad4ca0 100644 --- a/fs/gfs2/bmap.c +++ b/fs/gfs2/bmap.c @@ -1112,10 +1112,18 @@ static int gfs2_iomap_begin(struct inode *inode, loff_t pos, loff_t length, goto out_unlock; break; default: - goto out_unlock; + goto out; } ret = gfs2_iomap_begin_write(inode, pos, length, flags, iomap, &mp); + if (ret) + goto out_unlock; + +out: + if (iomap->type == IOMAP_INLINE) { + iomap->private = metapath_dibh(&mp); + get_bh(iomap->private); + } out_unlock: release_metapath(&mp); @@ -1129,6 +1137,9 @@ static int gfs2_iomap_end(struct inode *inode, loff_t pos, loff_t length, struct gfs2_inode *ip = GFS2_I(inode); struct gfs2_sbd *sdp = GFS2_SB(inode); + if (iomap->private) + brelse(iomap->private); + switch (flags & (IOMAP_WRITE | IOMAP_ZERO)) { case IOMAP_WRITE: if (flags & IOMAP_DIRECT) -- 2.51.0