4 * vfs operations that deal with io control
6 * Copyright (C) International Business Machines Corp., 2005,2013
7 * Author(s): Steve French (sfrench@us.ibm.com)
9 * This library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published
11 * by the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <linux/file.h>
26 #include <linux/mount.h>
28 #include <linux/pagemap.h>
31 #include "cifsproto.h"
32 #include "cifs_debug.h"
35 #define CIFS_IOCTL_MAGIC 0xCF
36 #define CIFS_IOC_COPYCHUNK_FILE _IOW(CIFS_IOCTL_MAGIC, 3, int)
38 static long cifs_ioctl_clone(unsigned int xid
, struct file
*dst_file
,
39 unsigned long srcfd
, u64 off
, u64 len
, u64 destoff
)
42 struct cifsFileInfo
*smb_file_target
= dst_file
->private_data
;
43 struct inode
*target_inode
= file_inode(dst_file
);
44 struct cifs_tcon
*target_tcon
;
46 struct cifsFileInfo
*smb_file_src
;
47 struct inode
*src_inode
;
48 struct cifs_tcon
*src_tcon
;
50 cifs_dbg(FYI
, "ioctl clone range\n");
51 /* the destination must be opened for writing */
52 if (!(dst_file
->f_mode
& FMODE_WRITE
)) {
53 cifs_dbg(FYI
, "file target not open for write\n");
57 /* check if target volume is readonly and take reference */
58 rc
= mnt_want_write_file(dst_file
);
60 cifs_dbg(FYI
, "mnt_want_write failed with rc %d\n", rc
);
64 src_file
= fdget(srcfd
);
70 if ((!src_file
.file
->private_data
) || (!dst_file
->private_data
)) {
72 cifs_dbg(VFS
, "missing cifsFileInfo on copy range src file\n");
77 smb_file_target
= dst_file
->private_data
;
78 smb_file_src
= src_file
.file
->private_data
;
79 src_tcon
= tlink_tcon(smb_file_src
->tlink
);
80 target_tcon
= tlink_tcon(smb_file_target
->tlink
);
82 /* check if source and target are on same tree connection */
83 if (src_tcon
!= target_tcon
) {
84 cifs_dbg(VFS
, "file copy src and target on different volume\n");
88 src_inode
= file_inode(src_file
.file
);
90 if (S_ISDIR(src_inode
->i_mode
))
94 * Note: cifs case is easier than btrfs since server responsible for
95 * checks for proper open modes and file type and if it wants
96 * server could even support copy of range where source = target
98 lock_two_nondirectories(target_inode
, src_inode
);
100 /* determine range to clone */
102 if (off
+ len
> src_inode
->i_size
|| off
+ len
< off
)
105 len
= src_inode
->i_size
- off
;
107 cifs_dbg(FYI
, "about to flush pages\n");
108 /* should we flush first and last page first */
109 truncate_inode_pages_range(&target_inode
->i_data
, destoff
,
110 PAGE_CACHE_ALIGN(destoff
+ len
)-1);
112 if (target_tcon
->ses
->server
->ops
->clone_range
)
113 rc
= target_tcon
->ses
->server
->ops
->clone_range(xid
,
114 smb_file_src
, smb_file_target
, off
, len
, destoff
);
116 /* force revalidate of size and timestamps of target file now
117 that target is updated on the server */
118 CIFS_I(target_inode
)->time
= 0;
120 /* although unlocking in the reverse order from locking is not
121 strictly necessary here it is a little cleaner to be consistent */
122 unlock_two_nondirectories(src_inode
, target_inode
);
126 mnt_drop_write_file(dst_file
);
130 long cifs_ioctl(struct file
*filep
, unsigned int command
, unsigned long arg
)
132 struct inode
*inode
= file_inode(filep
);
133 int rc
= -ENOTTY
; /* strange error - but the precedent */
135 struct cifs_sb_info
*cifs_sb
;
136 struct cifsFileInfo
*pSMBFile
= filep
->private_data
;
137 struct cifs_tcon
*tcon
;
138 __u64 ExtAttrBits
= 0;
143 cifs_dbg(FYI
, "ioctl file %p cmd %u arg %lu\n", filep
, command
, arg
);
145 cifs_sb
= CIFS_SB(inode
->i_sb
);
148 case FS_IOC_GETFLAGS
:
149 if (pSMBFile
== NULL
)
151 tcon
= tlink_tcon(pSMBFile
->tlink
);
152 caps
= le64_to_cpu(tcon
->fsUnixInfo
.Capability
);
153 #ifdef CONFIG_CIFS_POSIX
154 if (CIFS_UNIX_EXTATTR_CAP
& caps
) {
155 __u64 ExtAttrMask
= 0;
156 rc
= CIFSGetExtAttr(xid
, tcon
,
157 pSMBFile
->fid
.netfid
,
158 &ExtAttrBits
, &ExtAttrMask
);
160 rc
= put_user(ExtAttrBits
&
163 if (rc
!= EOPNOTSUPP
)
166 #endif /* CONFIG_CIFS_POSIX */
168 if (CIFS_I(inode
)->cifsAttrs
& ATTR_COMPRESSED
) {
169 /* add in the compressed bit */
170 ExtAttrBits
= FS_COMPR_FL
;
171 rc
= put_user(ExtAttrBits
& FS_FL_USER_VISIBLE
,
175 case FS_IOC_SETFLAGS
:
176 if (pSMBFile
== NULL
)
178 tcon
= tlink_tcon(pSMBFile
->tlink
);
179 caps
= le64_to_cpu(tcon
->fsUnixInfo
.Capability
);
181 if (get_user(ExtAttrBits
, (int __user
*)arg
)) {
187 * if (CIFS_UNIX_EXTATTR_CAP & caps)
188 * rc = CIFSSetExtAttr(xid, tcon,
189 * pSMBFile->fid.netfid,
192 * if (rc != EOPNOTSUPP)
196 /* Currently only flag we can set is compressed flag */
197 if ((ExtAttrBits
& FS_COMPR_FL
) == 0)
200 /* Try to set compress flag */
201 if (tcon
->ses
->server
->ops
->set_compression
) {
202 rc
= tcon
->ses
->server
->ops
->set_compression(
203 xid
, tcon
, pSMBFile
);
204 cifs_dbg(FYI
, "set compress flag rc %d\n", rc
);
207 case CIFS_IOC_COPYCHUNK_FILE
:
208 rc
= cifs_ioctl_clone(xid
, filep
, arg
, 0, 0, 0);
211 cifs_dbg(FYI
, "unsupported ioctl\n");