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"
34 #include "cifs_ioctl.h"
35 #include <linux/btrfs.h>
37 static long cifs_ioctl_clone(unsigned int xid
, struct file
*dst_file
,
38 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
->f_op
->unlocked_ioctl
!= cifs_ioctl
) {
72 cifs_dbg(VFS
, "src file seems to be from a different filesystem type\n");
76 if ((!src_file
.file
->private_data
) || (!dst_file
->private_data
)) {
78 cifs_dbg(VFS
, "missing cifsFileInfo on copy range src file\n");
83 smb_file_target
= dst_file
->private_data
;
84 smb_file_src
= src_file
.file
->private_data
;
85 src_tcon
= tlink_tcon(smb_file_src
->tlink
);
86 target_tcon
= tlink_tcon(smb_file_target
->tlink
);
88 /* check if source and target are on same tree connection */
89 if (src_tcon
!= target_tcon
) {
90 cifs_dbg(VFS
, "file copy src and target on different volume\n");
94 src_inode
= file_inode(src_file
.file
);
96 if (S_ISDIR(src_inode
->i_mode
))
100 * Note: cifs case is easier than btrfs since server responsible for
101 * checks for proper open modes and file type and if it wants
102 * server could even support copy of range where source = target
104 lock_two_nondirectories(target_inode
, src_inode
);
106 /* determine range to clone */
108 if (off
+ len
> src_inode
->i_size
|| off
+ len
< off
)
111 len
= src_inode
->i_size
- off
;
113 cifs_dbg(FYI
, "about to flush pages\n");
114 /* should we flush first and last page first */
115 truncate_inode_pages_range(&target_inode
->i_data
, destoff
,
116 PAGE_CACHE_ALIGN(destoff
+ len
)-1);
118 if (dup_extents
&& target_tcon
->ses
->server
->ops
->duplicate_extents
)
119 rc
= target_tcon
->ses
->server
->ops
->duplicate_extents(xid
,
120 smb_file_src
, smb_file_target
, off
, len
, destoff
);
121 else if (!dup_extents
&& target_tcon
->ses
->server
->ops
->clone_range
)
122 rc
= target_tcon
->ses
->server
->ops
->clone_range(xid
,
123 smb_file_src
, smb_file_target
, off
, len
, destoff
);
127 /* force revalidate of size and timestamps of target file now
128 that target is updated on the server */
129 CIFS_I(target_inode
)->time
= 0;
131 /* although unlocking in the reverse order from locking is not
132 strictly necessary here it is a little cleaner to be consistent */
133 unlock_two_nondirectories(src_inode
, target_inode
);
137 mnt_drop_write_file(dst_file
);
141 static long smb_mnt_get_fsinfo(unsigned int xid
, struct cifs_tcon
*tcon
,
145 struct smb_mnt_fs_info
*fsinf
;
147 fsinf
= kzalloc(sizeof(struct smb_mnt_fs_info
), GFP_KERNEL
);
152 fsinf
->protocol_id
= tcon
->ses
->server
->vals
->protocol_id
;
153 fsinf
->device_characteristics
=
154 le32_to_cpu(tcon
->fsDevInfo
.DeviceCharacteristics
);
155 fsinf
->device_type
= le32_to_cpu(tcon
->fsDevInfo
.DeviceType
);
156 fsinf
->fs_attributes
= le32_to_cpu(tcon
->fsAttrInfo
.Attributes
);
157 fsinf
->max_path_component
=
158 le32_to_cpu(tcon
->fsAttrInfo
.MaxPathNameComponentLength
);
159 #ifdef CONFIG_CIFS_SMB2
160 fsinf
->vol_serial_number
= tcon
->vol_serial_number
;
161 fsinf
->vol_create_time
= le64_to_cpu(tcon
->vol_create_time
);
162 fsinf
->share_flags
= tcon
->share_flags
;
163 fsinf
->share_caps
= le32_to_cpu(tcon
->capabilities
);
164 fsinf
->sector_flags
= tcon
->ss_flags
;
165 fsinf
->optimal_sector_size
= tcon
->perf_sector_size
;
166 fsinf
->max_bytes_chunk
= tcon
->max_bytes_chunk
;
167 fsinf
->maximal_access
= tcon
->maximal_access
;
169 fsinf
->cifs_posix_caps
= le64_to_cpu(tcon
->fsUnixInfo
.Capability
);
171 if (copy_to_user(arg
, fsinf
, sizeof(struct smb_mnt_fs_info
)))
178 long cifs_ioctl(struct file
*filep
, unsigned int command
, unsigned long arg
)
180 struct inode
*inode
= file_inode(filep
);
181 int rc
= -ENOTTY
; /* strange error - but the precedent */
183 struct cifs_sb_info
*cifs_sb
;
184 struct cifsFileInfo
*pSMBFile
= filep
->private_data
;
185 struct cifs_tcon
*tcon
;
186 __u64 ExtAttrBits
= 0;
191 cifs_sb
= CIFS_SB(inode
->i_sb
);
194 case FS_IOC_GETFLAGS
:
195 if (pSMBFile
== NULL
)
197 tcon
= tlink_tcon(pSMBFile
->tlink
);
198 caps
= le64_to_cpu(tcon
->fsUnixInfo
.Capability
);
199 #ifdef CONFIG_CIFS_POSIX
200 if (CIFS_UNIX_EXTATTR_CAP
& caps
) {
201 __u64 ExtAttrMask
= 0;
202 rc
= CIFSGetExtAttr(xid
, tcon
,
203 pSMBFile
->fid
.netfid
,
204 &ExtAttrBits
, &ExtAttrMask
);
206 rc
= put_user(ExtAttrBits
&
209 if (rc
!= EOPNOTSUPP
)
212 #endif /* CONFIG_CIFS_POSIX */
214 if (CIFS_I(inode
)->cifsAttrs
& ATTR_COMPRESSED
) {
215 /* add in the compressed bit */
216 ExtAttrBits
= FS_COMPR_FL
;
217 rc
= put_user(ExtAttrBits
& FS_FL_USER_VISIBLE
,
221 case FS_IOC_SETFLAGS
:
222 if (pSMBFile
== NULL
)
224 tcon
= tlink_tcon(pSMBFile
->tlink
);
225 caps
= le64_to_cpu(tcon
->fsUnixInfo
.Capability
);
227 if (get_user(ExtAttrBits
, (int __user
*)arg
)) {
233 * if (CIFS_UNIX_EXTATTR_CAP & caps)
234 * rc = CIFSSetExtAttr(xid, tcon,
235 * pSMBFile->fid.netfid,
238 * if (rc != EOPNOTSUPP)
242 /* Currently only flag we can set is compressed flag */
243 if ((ExtAttrBits
& FS_COMPR_FL
) == 0)
246 /* Try to set compress flag */
247 if (tcon
->ses
->server
->ops
->set_compression
) {
248 rc
= tcon
->ses
->server
->ops
->set_compression(
249 xid
, tcon
, pSMBFile
);
250 cifs_dbg(FYI
, "set compress flag rc %d\n", rc
);
253 case CIFS_IOC_COPYCHUNK_FILE
:
254 rc
= cifs_ioctl_clone(xid
, filep
, arg
, 0, 0, 0, false);
256 case BTRFS_IOC_CLONE
:
257 rc
= cifs_ioctl_clone(xid
, filep
, arg
, 0, 0, 0, true);
259 case CIFS_IOC_SET_INTEGRITY
:
260 if (pSMBFile
== NULL
)
262 tcon
= tlink_tcon(pSMBFile
->tlink
);
263 if (tcon
->ses
->server
->ops
->set_integrity
)
264 rc
= tcon
->ses
->server
->ops
->set_integrity(xid
,
269 case CIFS_IOC_GET_MNT_INFO
:
270 tcon
= tlink_tcon(pSMBFile
->tlink
);
271 rc
= smb_mnt_get_fsinfo(xid
, tcon
, (void __user
*)arg
);
274 cifs_dbg(FYI
, "unsupported ioctl\n");