Patch attached fixes the case where copy_file_range over an SMB3 mount tries to go beyond the end of file of the source file. This fixes xfstests generic/430 and generic/431 Amir's patches had added a similar change in the VFS layer, but presumably harmless to have the check in cifs.ko as well to ensure that we don't try to copy beyond end of the source file (otherwise SMB3 servers will return an error on copychunk rather than doing the partial copy (up to end of the source file) that copy_file_range expects). -- Thanks, Steve
From a3d9033df7bb5206093f00eb037242336ff7ccfb Mon Sep 17 00:00:00 2001 From: Steve French <stfrench@xxxxxxxxxxxxx> Date: Wed, 19 Jun 2019 15:10:12 -0500 Subject: [PATCH] [SMB3] fix copy file range when beyond size of source file When requesting a copy which would go beyond the end of the source file, only copy to the end of the source file instead of returning an error. Fixes xfstests generic/430 and generic/431 Signed-off-by: Steve French <stfrench@xxxxxxxxxxxxx> --- fs/cifs/smb2ops.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/fs/cifs/smb2ops.c b/fs/cifs/smb2ops.c index 376577cc4159..1cdbeec56453 100644 --- a/fs/cifs/smb2ops.c +++ b/fs/cifs/smb2ops.c @@ -1522,6 +1522,7 @@ smb2_copychunk_range(const unsigned int xid, int chunks_copied = 0; bool chunk_sizes_updated = false; ssize_t bytes_written, total_bytes_written = 0; + struct inode *inode = d_inode(srcfile->dentry); pcchunk = kmalloc(sizeof(struct copychunk_ioctl), GFP_KERNEL); @@ -1546,6 +1547,14 @@ smb2_copychunk_range(const unsigned int xid, tcon = tlink_tcon(trgtfile->tlink); while (len > 0) { + if (src_off >= inode->i_size) { + cifs_dbg(FYI, "nothing to do on copychunk\n"); + goto cchunk_out; /* nothing to do */ + } else if (src_off + len > inode->i_size) { + /* consider adding check to see if src oplocked */ + len = inode->i_size - src_off; + cifs_dbg(FYI, "adjust copychunk len %lld less\n", len); + } pcchunk->SourceOffset = cpu_to_le64(src_off); pcchunk->TargetOffset = cpu_to_le64(dest_off); pcchunk->Length = -- 2.20.1