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 6AA81568FAC; Wed, 9 Sep 2026 14:08:11 +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=1788962892; cv=none; b=M3q0JPo9l2AQLerlFvL5crgcw5VsWJShBUZYvHqCpMtn5d4GUjH9Tk7YkrG6ChAdl4pB0NW8iDQiospzlezCK7V12xcoQWz8YXvy3/uLmt6g68hIMf8/r4UyKC9mVzTVdbZgSNxRY3BfqhPULhXzgnIWvgtDb2/fGtjeD/j6bng= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788962892; c=relaxed/simple; bh=By3f66MXU7vvmaYP0Fr33KHRrfNb1skVUlWna9cNdOE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=PonN7EzaK5TNLg1S4XfBeG0Vv0xO89Y+QBRZWACByR3qwMwp7aP5ibag1PVC3GIMblkG8HO7eEtLCrw6MPwEYxH2ybFzeRnbCPojHJsXPkmunBNFougX3Ifo6nUtlZgUeD7WJp3D0V8G8khBF6u8gjntRU2kp+kggeM/yJtYCoU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=iU4MP/0D; 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="iU4MP/0D" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C330B1F00A3A; Wed, 9 Sep 2026 14:08:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1788962891; bh=iOI3z8/ydvtP+mDpvwP6eDkcyNJLe8+MTDrjszIiRBo=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=iU4MP/0DLW3pU7C9W45/Yuik0zqaBTDyovksjMnQc6tyEaAhtZ9TUELfl095aooEe Ly5O2GMnu01RLUr0zuyGYb2YI0s/PUq7HuUlNqXi87kmaEjE7rYJpG0q3yO3c8+lKt tZVYn1+bY38/57flz58wVGJuccPUadZIc5SV7Mg0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Hao-Qun Huang , Chao Yu , Jaegeuk Kim Subject: [PATCH 7.2 447/556] f2fs: reject overlapping move range after len expansion Date: Wed, 9 Sep 2026 15:42:07 +0200 Message-ID: <20260909134246.317106665@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260909134230.441546314@linuxfoundation.org> References: <20260909134230.441546314@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 7.2-stable review patch. If anyone has any objections, please let me know. ------------------ From: Hao-Qun Huang commit 28c1ef094e7c86977d9bf570dc0362fc54e36437 upstream. F2FS_IOC_MOVE_RANGE treats a zero length as a request to move data from pos_in to EOF. However, the same-file overlap check runs before that expansion, so a request with len == 0 bypasses the overlap rejection added for same-file moves. For example, with a four-block file, moving from block 0 to block 1 with len == 0 is accepted by the old check because pos_in + len is still pos_in at that point. The code then expands len to cover the rest of the file and calls __exchange_data_block() on overlapping source and destination ranges in the same inode, which is the data-corruption case the overlap check was meant to reject. Move the overlap check after the source range has been validated and len == 0 has been expanded, so it sees the effective length. This is a no-op for non-zero len (the value is unchanged there) and keeps the existing early return for identical positions. Fixes: d95fd91c1ac1 ("f2fs: exclude special cases for f2fs_move_file_range") Cc: stable@vger.kernel.org Assisted-by: Claude:claude-fable-5 Signed-off-by: Hao-Qun Huang Reviewed-by: Chao Yu Signed-off-by: Jaegeuk Kim Signed-off-by: Greg Kroah-Hartman --- fs/f2fs/file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/fs/f2fs/file.c +++ b/fs/f2fs/file.c @@ -3144,8 +3144,6 @@ static int f2fs_move_file_range(struct f if (src == dst) { if (pos_in == pos_out) return 0; - if (pos_out > pos_in && pos_out < pos_in + len) - return -EINVAL; } inode_lock(src); @@ -3171,6 +3169,8 @@ static int f2fs_move_file_range(struct f goto out_unlock; if (len == 0) olen = len = src->i_size - pos_in; + if (src == dst && pos_out > pos_in && pos_out < pos_in + len) + goto out_unlock; if (pos_in + len == src->i_size) len = ALIGN(src->i_size, F2FS_BLKSIZE) - pos_in; if (len == 0) {