blob: 409b45eefe7086899ae4da636b96cd8c07794dd5 [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>
29#include <linux/btrfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "cifspdu.h"
31#include "cifsglob.h"
32#include "cifsproto.h"
33#include "cifs_debug.h"
Steve Frenchc67593a2005-04-28 22:41:04 -070034#include "cifsfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Steve French41c13582013-11-14 00:05:36 -060036static long cifs_ioctl_clone(unsigned int xid, struct file *dst_file,
37 unsigned long srcfd, u64 off, u64 len, u64 destoff)
38{
39 int rc;
40 struct cifsFileInfo *smb_file_target = dst_file->private_data;
41 struct inode *target_inode = file_inode(dst_file);
42 struct cifs_tcon *target_tcon;
43 struct fd src_file;
44 struct cifsFileInfo *smb_file_src;
45 struct inode *src_inode;
46 struct cifs_tcon *src_tcon;
47
48 cifs_dbg(FYI, "ioctl clone range\n");
49 /* the destination must be opened for writing */
50 if (!(dst_file->f_mode & FMODE_WRITE)) {
51 cifs_dbg(FYI, "file target not open for write\n");
52 return -EINVAL;
53 }
54
55 /* check if target volume is readonly and take reference */
56 rc = mnt_want_write_file(dst_file);
57 if (rc) {
58 cifs_dbg(FYI, "mnt_want_write failed with rc %d\n", rc);
59 return rc;
60 }
61
62 src_file = fdget(srcfd);
63 if (!src_file.file) {
64 rc = -EBADF;
65 goto out_drop_write;
66 }
67
68 if ((!src_file.file->private_data) || (!dst_file->private_data)) {
69 rc = -EBADF;
70 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
71 goto out_fput;
72 }
73
74 rc = -EXDEV;
75 smb_file_target = dst_file->private_data;
76 smb_file_src = src_file.file->private_data;
77 src_tcon = tlink_tcon(smb_file_src->tlink);
78 target_tcon = tlink_tcon(smb_file_target->tlink);
79
80 /* check if source and target are on same tree connection */
81 if (src_tcon != target_tcon) {
82 cifs_dbg(VFS, "file copy src and target on different volume\n");
83 goto out_fput;
84 }
85
86 src_inode = src_file.file->f_dentry->d_inode;
87
88 /*
89 * Note: cifs case is easier than btrfs since server responsible for
90 * checks for proper open modes and file type and if it wants
91 * server could even support copy of range where source = target
92 */
93
94 /* so we do not deadlock racing two ioctls on same files */
95 if (target_inode < src_inode) {
96 mutex_lock_nested(&target_inode->i_mutex, I_MUTEX_PARENT);
97 mutex_lock_nested(&src_inode->i_mutex, I_MUTEX_CHILD);
98 } else {
99 mutex_lock_nested(&src_inode->i_mutex, I_MUTEX_PARENT);
100 mutex_lock_nested(&target_inode->i_mutex, I_MUTEX_CHILD);
101 }
102
103 /* determine range to clone */
104 rc = -EINVAL;
105 if (off + len > src_inode->i_size || off + len < off)
106 goto out_unlock;
107 if (len == 0)
108 len = src_inode->i_size - off;
109
110 cifs_dbg(FYI, "about to flush pages\n");
111 /* should we flush first and last page first */
112 truncate_inode_pages_range(&target_inode->i_data, destoff,
113 PAGE_CACHE_ALIGN(destoff + len)-1);
114
115 if (target_tcon->ses->server->ops->clone_range)
116 rc = target_tcon->ses->server->ops->clone_range(xid,
117 smb_file_src, smb_file_target, off, len, destoff);
118
119 /* force revalidate of size and timestamps of target file now
120 that target is updated on the server */
121 CIFS_I(target_inode)->time = 0;
122out_unlock:
123 /* although unlocking in the reverse order from locking is not
124 strictly necessary here it is a little cleaner to be consistent */
125 if (target_inode < src_inode) {
126 mutex_unlock(&src_inode->i_mutex);
127 mutex_unlock(&target_inode->i_mutex);
128 } else {
129 mutex_unlock(&target_inode->i_mutex);
130 mutex_unlock(&src_inode->i_mutex);
131 }
132out_fput:
133 fdput(src_file);
134out_drop_write:
135 mnt_drop_write_file(dst_file);
136 return rc;
137}
138
Steve Frenchf9ddcca2008-05-15 05:51:55 +0000139long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Al Viro496ad9a2013-01-23 17:07:38 -0500141 struct inode *inode = file_inode(filep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 int rc = -ENOTTY; /* strange error - but the precedent */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400143 unsigned int xid;
Steve Frenchc81156d2005-04-28 22:41:07 -0700144 struct cifs_sb_info *cifs_sb;
Jeff Laytonba00ba62010-09-20 16:01:31 -0700145 struct cifsFileInfo *pSMBFile = filep->private_data;
Steve French96daf2b2011-05-27 04:34:02 +0000146 struct cifs_tcon *tcon;
Steve Frenchf654bac2005-04-28 22:41:04 -0700147 __u64 ExtAttrBits = 0;
Jeff Layton61876392010-11-08 07:28:32 -0500148 __u64 caps;
Steve Frenchf654bac2005-04-28 22:41:04 -0700149
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400150 xid = get_xid();
Steve Frenchf654bac2005-04-28 22:41:04 -0700151
Joe Perchesf96637b2013-05-04 22:12:25 -0500152 cifs_dbg(FYI, "ioctl file %p cmd %u arg %lu\n", filep, command, arg);
Steve Frenchf28ac912005-04-28 22:41:07 -0700153
Steve Frenchf654bac2005-04-28 22:41:04 -0700154 cifs_sb = CIFS_SB(inode->i_sb);
Steve Frenchf654bac2005-04-28 22:41:04 -0700155
Steve French5fdae1f2007-06-05 18:30:44 +0000156 switch (command) {
David Howells36695672006-08-29 19:06:16 +0100157 case FS_IOC_GETFLAGS:
Jeff Layton61876392010-11-08 07:28:32 -0500158 if (pSMBFile == NULL)
159 break;
160 tcon = tlink_tcon(pSMBFile->tlink);
161 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French64a5cfa2013-10-14 15:31:32 -0500162#ifdef CONFIG_CIFS_POSIX
Steve French5fdae1f2007-06-05 18:30:44 +0000163 if (CIFS_UNIX_EXTATTR_CAP & caps) {
Steve Frenchf10d9ba2013-10-13 22:32:30 -0500164 __u64 ExtAttrMask = 0;
Pavel Shilovsky4b4de762012-09-18 16:20:26 -0700165 rc = CIFSGetExtAttr(xid, tcon,
166 pSMBFile->fid.netfid,
167 &ExtAttrBits, &ExtAttrMask);
Steve French5fdae1f2007-06-05 18:30:44 +0000168 if (rc == 0)
Steve Frenchf654bac2005-04-28 22:41:04 -0700169 rc = put_user(ExtAttrBits &
David Howells36695672006-08-29 19:06:16 +0100170 FS_FL_USER_VISIBLE,
Steve Frenchf654bac2005-04-28 22:41:04 -0700171 (int __user *)arg);
Steve French64a5cfa2013-10-14 15:31:32 -0500172 if (rc != EOPNOTSUPP)
173 break;
174 }
175#endif /* CONFIG_CIFS_POSIX */
176 rc = 0;
177 if (CIFS_I(inode)->cifsAttrs & ATTR_COMPRESSED) {
178 /* add in the compressed bit */
179 ExtAttrBits = FS_COMPR_FL;
180 rc = put_user(ExtAttrBits & FS_FL_USER_VISIBLE,
181 (int __user *)arg);
Steve Frenchf654bac2005-04-28 22:41:04 -0700182 }
183 break;
David Howells36695672006-08-29 19:06:16 +0100184 case FS_IOC_SETFLAGS:
Jeff Layton61876392010-11-08 07:28:32 -0500185 if (pSMBFile == NULL)
186 break;
187 tcon = tlink_tcon(pSMBFile->tlink);
188 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French64a5cfa2013-10-14 15:31:32 -0500189
190 if (get_user(ExtAttrBits, (int __user *)arg)) {
191 rc = -EFAULT;
192 break;
Steve Frenchf654bac2005-04-28 22:41:04 -0700193 }
Steve French64a5cfa2013-10-14 15:31:32 -0500194
195 /*
196 * if (CIFS_UNIX_EXTATTR_CAP & caps)
197 * rc = CIFSSetExtAttr(xid, tcon,
198 * pSMBFile->fid.netfid,
199 * extAttrBits,
200 * &ExtAttrMask);
201 * if (rc != EOPNOTSUPP)
202 * break;
203 */
204
205 /* Currently only flag we can set is compressed flag */
206 if ((ExtAttrBits & FS_COMPR_FL) == 0)
207 break;
208
209 /* Try to set compress flag */
210 if (tcon->ses->server->ops->set_compression) {
211 rc = tcon->ses->server->ops->set_compression(
212 xid, tcon, pSMBFile);
213 cifs_dbg(FYI, "set compress flag rc %d\n", rc);
214 }
Steve Frenchf654bac2005-04-28 22:41:04 -0700215 break;
Steve French41c13582013-11-14 00:05:36 -0600216 case BTRFS_IOC_CLONE:
217 rc = cifs_ioctl_clone(xid, filep, arg, 0, 0, 0);
218 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 default:
Joe Perchesf96637b2013-05-04 22:12:25 -0500220 cifs_dbg(FYI, "unsupported ioctl\n");
Steve Frenchf28ac912005-04-28 22:41:07 -0700221 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
Steve Frenchf654bac2005-04-28 22:41:04 -0700223
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400224 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return rc;
Steve French5fdae1f2007-06-05 18:30:44 +0000226}