blob: 35cf990f87d3245d01662cc550f4f3b43cc2dc58 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/ioctl.c
3 *
4 * vfs operations that deal with io control
5 *
Steve French64a5cfa2013-10-14 15:31:32 -05006 * Copyright (C) International Business Machines Corp., 2005,2013
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Author(s): Steve French (sfrench@us.ibm.com)
8 *
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.
13 *
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.
18 *
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
22 */
Steve Frenchf654bac2005-04-28 22:41:04 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/fs.h>
Steve French41c13582013-11-14 00:05:36 -060025#include <linux/file.h>
26#include <linux/mount.h>
27#include <linux/mm.h>
28#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "cifspdu.h"
30#include "cifsglob.h"
31#include "cifsproto.h"
32#include "cifs_debug.h"
Steve Frenchc67593a2005-04-28 22:41:04 -070033#include "cifsfs.h"
Steve French0de1f4c2015-07-04 18:40:10 -050034#include "cifs_ioctl.h"
Steve French02b16662015-06-27 21:18:36 -070035#include <linux/btrfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Steve French41c13582013-11-14 00:05:36 -060037static long cifs_ioctl_clone(unsigned int xid, struct file *dst_file,
Steve French02b16662015-06-27 21:18:36 -070038 unsigned long srcfd, u64 off, u64 len, u64 destoff,
39 bool dup_extents)
Steve French41c13582013-11-14 00:05:36 -060040{
41 int rc;
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;
45 struct fd src_file;
46 struct cifsFileInfo *smb_file_src;
47 struct inode *src_inode;
48 struct cifs_tcon *src_tcon;
49
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");
54 return -EINVAL;
55 }
56
57 /* check if target volume is readonly and take reference */
58 rc = mnt_want_write_file(dst_file);
59 if (rc) {
60 cifs_dbg(FYI, "mnt_want_write failed with rc %d\n", rc);
61 return rc;
62 }
63
64 src_file = fdget(srcfd);
65 if (!src_file.file) {
66 rc = -EBADF;
67 goto out_drop_write;
68 }
69
Jann Horn4c17a6d2015-09-11 16:27:27 +020070 if (src_file.file->f_op->unlocked_ioctl != cifs_ioctl) {
71 rc = -EBADF;
72 cifs_dbg(VFS, "src file seems to be from a different filesystem type\n");
73 goto out_fput;
74 }
75
Steve French41c13582013-11-14 00:05:36 -060076 if ((!src_file.file->private_data) || (!dst_file->private_data)) {
77 rc = -EBADF;
78 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
79 goto out_fput;
80 }
81
82 rc = -EXDEV;
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);
87
Steve French7b52e272015-11-09 08:59:45 -060088 /* check source and target on same server (or volume if dup_extents) */
89 if (dup_extents && (src_tcon != target_tcon)) {
90 cifs_dbg(VFS, "source and target of copy not on same share\n");
91 goto out_fput;
92 }
93
94 if (!dup_extents && (src_tcon->ses != target_tcon->ses)) {
95 cifs_dbg(VFS, "source and target of copy not on same server\n");
Steve French41c13582013-11-14 00:05:36 -060096 goto out_fput;
97 }
98
Libo Chen2d4f84b2013-12-11 11:02:27 +080099 src_inode = file_inode(src_file.file);
Al Viro378ff1a2015-01-18 23:37:32 -0500100 rc = -EINVAL;
101 if (S_ISDIR(src_inode->i_mode))
102 goto out_fput;
Steve French41c13582013-11-14 00:05:36 -0600103
104 /*
105 * Note: cifs case is easier than btrfs since server responsible for
106 * checks for proper open modes and file type and if it wants
107 * server could even support copy of range where source = target
108 */
Al Viro378ff1a2015-01-18 23:37:32 -0500109 lock_two_nondirectories(target_inode, src_inode);
Steve French41c13582013-11-14 00:05:36 -0600110
111 /* determine range to clone */
112 rc = -EINVAL;
113 if (off + len > src_inode->i_size || off + len < off)
114 goto out_unlock;
115 if (len == 0)
116 len = src_inode->i_size - off;
117
118 cifs_dbg(FYI, "about to flush pages\n");
119 /* should we flush first and last page first */
120 truncate_inode_pages_range(&target_inode->i_data, destoff,
121 PAGE_CACHE_ALIGN(destoff + len)-1);
122
Steve French02b16662015-06-27 21:18:36 -0700123 if (dup_extents && target_tcon->ses->server->ops->duplicate_extents)
124 rc = target_tcon->ses->server->ops->duplicate_extents(xid,
125 smb_file_src, smb_file_target, off, len, destoff);
126 else if (!dup_extents && target_tcon->ses->server->ops->clone_range)
Steve French41c13582013-11-14 00:05:36 -0600127 rc = target_tcon->ses->server->ops->clone_range(xid,
128 smb_file_src, smb_file_target, off, len, destoff);
Steve French02b16662015-06-27 21:18:36 -0700129 else
130 rc = -EOPNOTSUPP;
Steve French41c13582013-11-14 00:05:36 -0600131
132 /* force revalidate of size and timestamps of target file now
133 that target is updated on the server */
134 CIFS_I(target_inode)->time = 0;
135out_unlock:
136 /* although unlocking in the reverse order from locking is not
137 strictly necessary here it is a little cleaner to be consistent */
Al Viro378ff1a2015-01-18 23:37:32 -0500138 unlock_two_nondirectories(src_inode, target_inode);
Steve French41c13582013-11-14 00:05:36 -0600139out_fput:
140 fdput(src_file);
141out_drop_write:
142 mnt_drop_write_file(dst_file);
143 return rc;
144}
145
Steve French0de1f4c2015-07-04 18:40:10 -0500146static long smb_mnt_get_fsinfo(unsigned int xid, struct cifs_tcon *tcon,
147 void __user *arg)
148{
149 int rc = 0;
150 struct smb_mnt_fs_info *fsinf;
151
152 fsinf = kzalloc(sizeof(struct smb_mnt_fs_info), GFP_KERNEL);
153 if (fsinf == NULL)
154 return -ENOMEM;
155
156 fsinf->version = 1;
157 fsinf->protocol_id = tcon->ses->server->vals->protocol_id;
158 fsinf->device_characteristics =
159 le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics);
160 fsinf->device_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
161 fsinf->fs_attributes = le32_to_cpu(tcon->fsAttrInfo.Attributes);
162 fsinf->max_path_component =
163 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength);
164#ifdef CONFIG_CIFS_SMB2
165 fsinf->vol_serial_number = tcon->vol_serial_number;
166 fsinf->vol_create_time = le64_to_cpu(tcon->vol_create_time);
167 fsinf->share_flags = tcon->share_flags;
168 fsinf->share_caps = le32_to_cpu(tcon->capabilities);
169 fsinf->sector_flags = tcon->ss_flags;
170 fsinf->optimal_sector_size = tcon->perf_sector_size;
171 fsinf->max_bytes_chunk = tcon->max_bytes_chunk;
172 fsinf->maximal_access = tcon->maximal_access;
173#endif /* SMB2 */
174 fsinf->cifs_posix_caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
175
176 if (copy_to_user(arg, fsinf, sizeof(struct smb_mnt_fs_info)))
177 rc = -EFAULT;
178
179 kfree(fsinf);
180 return rc;
181}
182
Steve Frenchf9ddcca2008-05-15 05:51:55 +0000183long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Al Viro496ad9a2013-01-23 17:07:38 -0500185 struct inode *inode = file_inode(filep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 int rc = -ENOTTY; /* strange error - but the precedent */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400187 unsigned int xid;
Steve Frenchc81156d2005-04-28 22:41:07 -0700188 struct cifs_sb_info *cifs_sb;
Jeff Laytonba00ba62010-09-20 16:01:31 -0700189 struct cifsFileInfo *pSMBFile = filep->private_data;
Steve French96daf2b2011-05-27 04:34:02 +0000190 struct cifs_tcon *tcon;
Steve Frenchf654bac2005-04-28 22:41:04 -0700191 __u64 ExtAttrBits = 0;
Jeff Layton61876392010-11-08 07:28:32 -0500192 __u64 caps;
Steve Frenchf654bac2005-04-28 22:41:04 -0700193
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400194 xid = get_xid();
Steve Frenchf654bac2005-04-28 22:41:04 -0700195
196 cifs_sb = CIFS_SB(inode->i_sb);
Steve Frenchf654bac2005-04-28 22:41:04 -0700197
Steve French5fdae1f2007-06-05 18:30:44 +0000198 switch (command) {
David Howells36695672006-08-29 19:06:16 +0100199 case FS_IOC_GETFLAGS:
Jeff Layton61876392010-11-08 07:28:32 -0500200 if (pSMBFile == NULL)
201 break;
202 tcon = tlink_tcon(pSMBFile->tlink);
203 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French64a5cfa2013-10-14 15:31:32 -0500204#ifdef CONFIG_CIFS_POSIX
Steve French5fdae1f2007-06-05 18:30:44 +0000205 if (CIFS_UNIX_EXTATTR_CAP & caps) {
Steve Frenchf10d9ba2013-10-13 22:32:30 -0500206 __u64 ExtAttrMask = 0;
Pavel Shilovsky4b4de762012-09-18 16:20:26 -0700207 rc = CIFSGetExtAttr(xid, tcon,
208 pSMBFile->fid.netfid,
209 &ExtAttrBits, &ExtAttrMask);
Steve French5fdae1f2007-06-05 18:30:44 +0000210 if (rc == 0)
Steve Frenchf654bac2005-04-28 22:41:04 -0700211 rc = put_user(ExtAttrBits &
David Howells36695672006-08-29 19:06:16 +0100212 FS_FL_USER_VISIBLE,
Steve Frenchf654bac2005-04-28 22:41:04 -0700213 (int __user *)arg);
Steve French64a5cfa2013-10-14 15:31:32 -0500214 if (rc != EOPNOTSUPP)
215 break;
216 }
217#endif /* CONFIG_CIFS_POSIX */
218 rc = 0;
219 if (CIFS_I(inode)->cifsAttrs & ATTR_COMPRESSED) {
220 /* add in the compressed bit */
221 ExtAttrBits = FS_COMPR_FL;
222 rc = put_user(ExtAttrBits & FS_FL_USER_VISIBLE,
223 (int __user *)arg);
Steve Frenchf654bac2005-04-28 22:41:04 -0700224 }
225 break;
David Howells36695672006-08-29 19:06:16 +0100226 case FS_IOC_SETFLAGS:
Jeff Layton61876392010-11-08 07:28:32 -0500227 if (pSMBFile == NULL)
228 break;
229 tcon = tlink_tcon(pSMBFile->tlink);
230 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French64a5cfa2013-10-14 15:31:32 -0500231
232 if (get_user(ExtAttrBits, (int __user *)arg)) {
233 rc = -EFAULT;
234 break;
Steve Frenchf654bac2005-04-28 22:41:04 -0700235 }
Steve French64a5cfa2013-10-14 15:31:32 -0500236
237 /*
238 * if (CIFS_UNIX_EXTATTR_CAP & caps)
239 * rc = CIFSSetExtAttr(xid, tcon,
240 * pSMBFile->fid.netfid,
241 * extAttrBits,
242 * &ExtAttrMask);
243 * if (rc != EOPNOTSUPP)
244 * break;
245 */
246
247 /* Currently only flag we can set is compressed flag */
248 if ((ExtAttrBits & FS_COMPR_FL) == 0)
249 break;
250
251 /* Try to set compress flag */
252 if (tcon->ses->server->ops->set_compression) {
253 rc = tcon->ses->server->ops->set_compression(
254 xid, tcon, pSMBFile);
255 cifs_dbg(FYI, "set compress flag rc %d\n", rc);
256 }
Steve Frenchf654bac2005-04-28 22:41:04 -0700257 break;
Steve Frenchf19e84d2013-11-24 21:53:17 -0600258 case CIFS_IOC_COPYCHUNK_FILE:
Steve French02b16662015-06-27 21:18:36 -0700259 rc = cifs_ioctl_clone(xid, filep, arg, 0, 0, 0, false);
260 break;
261 case BTRFS_IOC_CLONE:
262 rc = cifs_ioctl_clone(xid, filep, arg, 0, 0, 0, true);
Steve French41c13582013-11-14 00:05:36 -0600263 break;
Steve Frenchb3152e22015-06-24 03:17:02 -0500264 case CIFS_IOC_SET_INTEGRITY:
265 if (pSMBFile == NULL)
266 break;
267 tcon = tlink_tcon(pSMBFile->tlink);
268 if (tcon->ses->server->ops->set_integrity)
269 rc = tcon->ses->server->ops->set_integrity(xid,
270 tcon, pSMBFile);
271 else
272 rc = -EOPNOTSUPP;
273 break;
Steve French0de1f4c2015-07-04 18:40:10 -0500274 case CIFS_IOC_GET_MNT_INFO:
275 tcon = tlink_tcon(pSMBFile->tlink);
276 rc = smb_mnt_get_fsinfo(xid, tcon, (void __user *)arg);
277 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 default:
Joe Perchesf96637b2013-05-04 22:12:25 -0500279 cifs_dbg(FYI, "unsupported ioctl\n");
Steve Frenchf28ac912005-04-28 22:41:07 -0700280 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
Steve Frenchf654bac2005-04-28 22:41:04 -0700282
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400283 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return rc;
Steve French5fdae1f2007-06-05 18:30:44 +0000285}