]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - fs/cifs/ioctl.c
scsi_dh: don't try to load a device handler during async probing
[karo-tx-linux.git] / fs / cifs / ioctl.c
1 /*
2  *   fs/cifs/ioctl.c
3  *
4  *   vfs operations that deal with io control
5  *
6  *   Copyright (C) International Business Machines  Corp., 2005,2013
7  *   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  */
23
24 #include <linux/fs.h>
25 #include <linux/file.h>
26 #include <linux/mount.h>
27 #include <linux/mm.h>
28 #include <linux/pagemap.h>
29 #include "cifspdu.h"
30 #include "cifsglob.h"
31 #include "cifsproto.h"
32 #include "cifs_debug.h"
33 #include "cifsfs.h"
34 #include "cifs_ioctl.h"
35 #include <linux/btrfs.h>
36
37 static long cifs_ioctl_clone(unsigned int xid, struct file *dst_file,
38                         unsigned long srcfd, u64 off, u64 len, u64 destoff,
39                         bool dup_extents)
40 {
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
70         if ((!src_file.file->private_data) || (!dst_file->private_data)) {
71                 rc = -EBADF;
72                 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
73                 goto out_fput;
74         }
75
76         rc = -EXDEV;
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);
81
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");
85                 goto out_fput;
86         }
87
88         src_inode = file_inode(src_file.file);
89         rc = -EINVAL;
90         if (S_ISDIR(src_inode->i_mode))
91                 goto out_fput;
92
93         /*
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
97          */
98         lock_two_nondirectories(target_inode, src_inode);
99
100         /* determine range to clone */
101         rc = -EINVAL;
102         if (off + len > src_inode->i_size || off + len < off)
103                 goto out_unlock;
104         if (len == 0)
105                 len = src_inode->i_size - off;
106
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);
111
112         if (dup_extents && target_tcon->ses->server->ops->duplicate_extents)
113                 rc = target_tcon->ses->server->ops->duplicate_extents(xid,
114                         smb_file_src, smb_file_target, off, len, destoff);
115         else if (!dup_extents && 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         else
119                 rc = -EOPNOTSUPP;
120
121         /* force revalidate of size and timestamps of target file now
122            that target is updated on the server */
123         CIFS_I(target_inode)->time = 0;
124 out_unlock:
125         /* although unlocking in the reverse order from locking is not
126            strictly necessary here it is a little cleaner to be consistent */
127         unlock_two_nondirectories(src_inode, target_inode);
128 out_fput:
129         fdput(src_file);
130 out_drop_write:
131         mnt_drop_write_file(dst_file);
132         return rc;
133 }
134
135 static long smb_mnt_get_fsinfo(unsigned int xid, struct cifs_tcon *tcon,
136                                 void __user *arg)
137 {
138         int rc = 0;
139         struct smb_mnt_fs_info *fsinf;
140
141         fsinf = kzalloc(sizeof(struct smb_mnt_fs_info), GFP_KERNEL);
142         if (fsinf == NULL)
143                 return -ENOMEM;
144
145         fsinf->version = 1;
146         fsinf->protocol_id = tcon->ses->server->vals->protocol_id;
147         fsinf->device_characteristics =
148                         le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics);
149         fsinf->device_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
150         fsinf->fs_attributes = le32_to_cpu(tcon->fsAttrInfo.Attributes);
151         fsinf->max_path_component =
152                 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength);
153 #ifdef CONFIG_CIFS_SMB2
154         fsinf->vol_serial_number = tcon->vol_serial_number;
155         fsinf->vol_create_time = le64_to_cpu(tcon->vol_create_time);
156         fsinf->share_flags = tcon->share_flags;
157         fsinf->share_caps = le32_to_cpu(tcon->capabilities);
158         fsinf->sector_flags = tcon->ss_flags;
159         fsinf->optimal_sector_size = tcon->perf_sector_size;
160         fsinf->max_bytes_chunk = tcon->max_bytes_chunk;
161         fsinf->maximal_access = tcon->maximal_access;
162 #endif /* SMB2 */
163         fsinf->cifs_posix_caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
164
165         if (copy_to_user(arg, fsinf, sizeof(struct smb_mnt_fs_info)))
166                 rc = -EFAULT;
167
168         kfree(fsinf);
169         return rc;
170 }
171
172 long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
173 {
174         struct inode *inode = file_inode(filep);
175         int rc = -ENOTTY; /* strange error - but the precedent */
176         unsigned int xid;
177         struct cifs_sb_info *cifs_sb;
178         struct cifsFileInfo *pSMBFile = filep->private_data;
179         struct cifs_tcon *tcon;
180         __u64   ExtAttrBits = 0;
181         __u64   caps;
182
183         xid = get_xid();
184
185         cifs_sb = CIFS_SB(inode->i_sb);
186
187         switch (command) {
188                 case FS_IOC_GETFLAGS:
189                         if (pSMBFile == NULL)
190                                 break;
191                         tcon = tlink_tcon(pSMBFile->tlink);
192                         caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
193 #ifdef CONFIG_CIFS_POSIX
194                         if (CIFS_UNIX_EXTATTR_CAP & caps) {
195                                 __u64   ExtAttrMask = 0;
196                                 rc = CIFSGetExtAttr(xid, tcon,
197                                                     pSMBFile->fid.netfid,
198                                                     &ExtAttrBits, &ExtAttrMask);
199                                 if (rc == 0)
200                                         rc = put_user(ExtAttrBits &
201                                                 FS_FL_USER_VISIBLE,
202                                                 (int __user *)arg);
203                                 if (rc != EOPNOTSUPP)
204                                         break;
205                         }
206 #endif /* CONFIG_CIFS_POSIX */
207                         rc = 0;
208                         if (CIFS_I(inode)->cifsAttrs & ATTR_COMPRESSED) {
209                                 /* add in the compressed bit */
210                                 ExtAttrBits = FS_COMPR_FL;
211                                 rc = put_user(ExtAttrBits & FS_FL_USER_VISIBLE,
212                                               (int __user *)arg);
213                         }
214                         break;
215                 case FS_IOC_SETFLAGS:
216                         if (pSMBFile == NULL)
217                                 break;
218                         tcon = tlink_tcon(pSMBFile->tlink);
219                         caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
220
221                         if (get_user(ExtAttrBits, (int __user *)arg)) {
222                                 rc = -EFAULT;
223                                 break;
224                         }
225
226                         /*
227                          * if (CIFS_UNIX_EXTATTR_CAP & caps)
228                          *      rc = CIFSSetExtAttr(xid, tcon,
229                          *                     pSMBFile->fid.netfid,
230                          *                     extAttrBits,
231                          *                     &ExtAttrMask);
232                          * if (rc != EOPNOTSUPP)
233                          *      break;
234                          */
235
236                         /* Currently only flag we can set is compressed flag */
237                         if ((ExtAttrBits & FS_COMPR_FL) == 0)
238                                 break;
239
240                         /* Try to set compress flag */
241                         if (tcon->ses->server->ops->set_compression) {
242                                 rc = tcon->ses->server->ops->set_compression(
243                                                         xid, tcon, pSMBFile);
244                                 cifs_dbg(FYI, "set compress flag rc %d\n", rc);
245                         }
246                         break;
247                 case CIFS_IOC_COPYCHUNK_FILE:
248                         rc = cifs_ioctl_clone(xid, filep, arg, 0, 0, 0, false);
249                         break;
250                 case BTRFS_IOC_CLONE:
251                         rc = cifs_ioctl_clone(xid, filep, arg, 0, 0, 0, true);
252                         break;
253                 case CIFS_IOC_SET_INTEGRITY:
254                         if (pSMBFile == NULL)
255                                 break;
256                         tcon = tlink_tcon(pSMBFile->tlink);
257                         if (tcon->ses->server->ops->set_integrity)
258                                 rc = tcon->ses->server->ops->set_integrity(xid,
259                                                 tcon, pSMBFile);
260                         else
261                                 rc = -EOPNOTSUPP;
262                         break;
263                 case CIFS_IOC_GET_MNT_INFO:
264                         tcon = tlink_tcon(pSMBFile->tlink);
265                         rc = smb_mnt_get_fsinfo(xid, tcon, (void __user *)arg);
266                         break;
267                 default:
268                         cifs_dbg(FYI, "unsupported ioctl\n");
269                         break;
270         }
271
272         free_xid(xid);
273         return rc;
274 }