cifs: add shutdown support
[linux-2.6-microblaze.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 "smb2proto.h"
36 #include <linux/btrfs.h>
37
38 static long cifs_ioctl_query_info(unsigned int xid, struct file *filep,
39                                   unsigned long p)
40 {
41         struct inode *inode = file_inode(filep);
42         struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
43         struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
44         struct dentry *dentry = filep->f_path.dentry;
45         const unsigned char *path;
46         void *page = alloc_dentry_path();
47         __le16 *utf16_path = NULL, root_path;
48         int rc = 0;
49
50         path = build_path_from_dentry(dentry, page);
51         if (IS_ERR(path)) {
52                 free_dentry_path(page);
53                 return PTR_ERR(path);
54         }
55
56         cifs_dbg(FYI, "%s %s\n", __func__, path);
57
58         if (!path[0]) {
59                 root_path = 0;
60                 utf16_path = &root_path;
61         } else {
62                 utf16_path = cifs_convert_path_to_utf16(path + 1, cifs_sb);
63                 if (!utf16_path) {
64                         rc = -ENOMEM;
65                         goto ici_exit;
66                 }
67         }
68
69         if (tcon->ses->server->ops->ioctl_query_info)
70                 rc = tcon->ses->server->ops->ioctl_query_info(
71                                 xid, tcon, cifs_sb, utf16_path,
72                                 filep->private_data ? 0 : 1, p);
73         else
74                 rc = -EOPNOTSUPP;
75
76  ici_exit:
77         if (utf16_path != &root_path)
78                 kfree(utf16_path);
79         free_dentry_path(page);
80         return rc;
81 }
82
83 static long cifs_ioctl_copychunk(unsigned int xid, struct file *dst_file,
84                         unsigned long srcfd)
85 {
86         int rc;
87         struct fd src_file;
88         struct inode *src_inode;
89
90         cifs_dbg(FYI, "ioctl copychunk range\n");
91         /* the destination must be opened for writing */
92         if (!(dst_file->f_mode & FMODE_WRITE)) {
93                 cifs_dbg(FYI, "file target not open for write\n");
94                 return -EINVAL;
95         }
96
97         /* check if target volume is readonly and take reference */
98         rc = mnt_want_write_file(dst_file);
99         if (rc) {
100                 cifs_dbg(FYI, "mnt_want_write failed with rc %d\n", rc);
101                 return rc;
102         }
103
104         src_file = fdget(srcfd);
105         if (!src_file.file) {
106                 rc = -EBADF;
107                 goto out_drop_write;
108         }
109
110         if (src_file.file->f_op->unlocked_ioctl != cifs_ioctl) {
111                 rc = -EBADF;
112                 cifs_dbg(VFS, "src file seems to be from a different filesystem type\n");
113                 goto out_fput;
114         }
115
116         src_inode = file_inode(src_file.file);
117         rc = -EINVAL;
118         if (S_ISDIR(src_inode->i_mode))
119                 goto out_fput;
120
121         rc = cifs_file_copychunk_range(xid, src_file.file, 0, dst_file, 0,
122                                         src_inode->i_size, 0);
123         if (rc > 0)
124                 rc = 0;
125 out_fput:
126         fdput(src_file);
127 out_drop_write:
128         mnt_drop_write_file(dst_file);
129         return rc;
130 }
131
132 static long smb_mnt_get_fsinfo(unsigned int xid, struct cifs_tcon *tcon,
133                                 void __user *arg)
134 {
135         int rc = 0;
136         struct smb_mnt_fs_info *fsinf;
137
138         fsinf = kzalloc(sizeof(struct smb_mnt_fs_info), GFP_KERNEL);
139         if (fsinf == NULL)
140                 return -ENOMEM;
141
142         fsinf->version = 1;
143         fsinf->protocol_id = tcon->ses->server->vals->protocol_id;
144         fsinf->device_characteristics =
145                         le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics);
146         fsinf->device_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
147         fsinf->fs_attributes = le32_to_cpu(tcon->fsAttrInfo.Attributes);
148         fsinf->max_path_component =
149                 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength);
150         fsinf->vol_serial_number = tcon->vol_serial_number;
151         fsinf->vol_create_time = le64_to_cpu(tcon->vol_create_time);
152         fsinf->share_flags = tcon->share_flags;
153         fsinf->share_caps = le32_to_cpu(tcon->capabilities);
154         fsinf->sector_flags = tcon->ss_flags;
155         fsinf->optimal_sector_size = tcon->perf_sector_size;
156         fsinf->max_bytes_chunk = tcon->max_bytes_chunk;
157         fsinf->maximal_access = tcon->maximal_access;
158         fsinf->cifs_posix_caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
159
160         if (copy_to_user(arg, fsinf, sizeof(struct smb_mnt_fs_info)))
161                 rc = -EFAULT;
162
163         kfree(fsinf);
164         return rc;
165 }
166
167 static int cifs_shutdown(struct super_block *sb, unsigned long arg)
168 {
169         struct cifs_sb_info *sbi = CIFS_SB(sb);
170         __u32 flags;
171
172         if (!capable(CAP_SYS_ADMIN))
173                 return -EPERM;
174
175         if (get_user(flags, (__u32 __user *)arg))
176                 return -EFAULT;
177
178         if (flags > CIFS_GOING_FLAGS_NOLOGFLUSH)
179                 return -EINVAL;
180
181         if (cifs_forced_shutdown(sbi))
182                 return 0;
183
184         cifs_dbg(VFS, "shut down requested (%d)", flags);
185 /*      trace_cifs_shutdown(sb, flags);*/
186
187         /*
188          * see:
189          *   https://man7.org/linux/man-pages/man2/ioctl_xfs_goingdown.2.html
190          * for more information and description of original intent of the flags
191          */
192         switch (flags) {
193         /*
194          * We could add support later for default flag which requires:
195          *     "Flush all dirty data and metadata to disk"
196          * would need to call syncfs or equivalent to flush page cache for
197          * the mount and then issue fsync to server (if nostrictsync not set)
198          */
199         case CIFS_GOING_FLAGS_DEFAULT:
200                 cifs_dbg(FYI, "shutdown with default flag not supported\n");
201                 return -EINVAL;
202         /*
203          * FLAGS_LOGFLUSH is easy since it asks to write out metadata (not
204          * data) but metadata writes are not cached on the client, so can treat
205          * it similarly to NOLOGFLUSH
206          */
207         case CIFS_GOING_FLAGS_LOGFLUSH:
208         case CIFS_GOING_FLAGS_NOLOGFLUSH:
209                 sbi->mnt_cifs_flags |= CIFS_MOUNT_SHUTDOWN;
210                 return 0;
211         default:
212                 return -EINVAL;
213         }
214         return 0;
215 }
216
217 long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
218 {
219         struct inode *inode = file_inode(filep);
220         struct smb3_key_debug_info pkey_inf;
221         int rc = -ENOTTY; /* strange error - but the precedent */
222         unsigned int xid;
223         struct cifsFileInfo *pSMBFile = filep->private_data;
224         struct cifs_tcon *tcon;
225         struct tcon_link *tlink;
226         struct cifs_sb_info *cifs_sb;
227         __u64   ExtAttrBits = 0;
228         __u64   caps;
229
230         xid = get_xid();
231
232         cifs_dbg(FYI, "cifs ioctl 0x%x\n", command);
233         switch (command) {
234                 case FS_IOC_GETFLAGS:
235                         if (pSMBFile == NULL)
236                                 break;
237                         tcon = tlink_tcon(pSMBFile->tlink);
238                         caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
239 #ifdef CONFIG_CIFS_POSIX
240                         if (CIFS_UNIX_EXTATTR_CAP & caps) {
241                                 __u64   ExtAttrMask = 0;
242                                 rc = CIFSGetExtAttr(xid, tcon,
243                                                     pSMBFile->fid.netfid,
244                                                     &ExtAttrBits, &ExtAttrMask);
245                                 if (rc == 0)
246                                         rc = put_user(ExtAttrBits &
247                                                 FS_FL_USER_VISIBLE,
248                                                 (int __user *)arg);
249                                 if (rc != EOPNOTSUPP)
250                                         break;
251                         }
252 #endif /* CONFIG_CIFS_POSIX */
253                         rc = 0;
254                         if (CIFS_I(inode)->cifsAttrs & ATTR_COMPRESSED) {
255                                 /* add in the compressed bit */
256                                 ExtAttrBits = FS_COMPR_FL;
257                                 rc = put_user(ExtAttrBits & FS_FL_USER_VISIBLE,
258                                               (int __user *)arg);
259                         }
260                         break;
261                 case FS_IOC_SETFLAGS:
262                         if (pSMBFile == NULL)
263                                 break;
264                         tcon = tlink_tcon(pSMBFile->tlink);
265                         caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
266
267                         if (get_user(ExtAttrBits, (int __user *)arg)) {
268                                 rc = -EFAULT;
269                                 break;
270                         }
271
272                         /*
273                          * if (CIFS_UNIX_EXTATTR_CAP & caps)
274                          *      rc = CIFSSetExtAttr(xid, tcon,
275                          *                     pSMBFile->fid.netfid,
276                          *                     extAttrBits,
277                          *                     &ExtAttrMask);
278                          * if (rc != EOPNOTSUPP)
279                          *      break;
280                          */
281
282                         /* Currently only flag we can set is compressed flag */
283                         if ((ExtAttrBits & FS_COMPR_FL) == 0)
284                                 break;
285
286                         /* Try to set compress flag */
287                         if (tcon->ses->server->ops->set_compression) {
288                                 rc = tcon->ses->server->ops->set_compression(
289                                                         xid, tcon, pSMBFile);
290                                 cifs_dbg(FYI, "set compress flag rc %d\n", rc);
291                         }
292                         break;
293                 case CIFS_IOC_COPYCHUNK_FILE:
294                         rc = cifs_ioctl_copychunk(xid, filep, arg);
295                         break;
296                 case CIFS_QUERY_INFO:
297                         rc = cifs_ioctl_query_info(xid, filep, arg);
298                         break;
299                 case CIFS_IOC_SET_INTEGRITY:
300                         if (pSMBFile == NULL)
301                                 break;
302                         tcon = tlink_tcon(pSMBFile->tlink);
303                         if (tcon->ses->server->ops->set_integrity)
304                                 rc = tcon->ses->server->ops->set_integrity(xid,
305                                                 tcon, pSMBFile);
306                         else
307                                 rc = -EOPNOTSUPP;
308                         break;
309                 case CIFS_IOC_GET_MNT_INFO:
310                         if (pSMBFile == NULL)
311                                 break;
312                         tcon = tlink_tcon(pSMBFile->tlink);
313                         rc = smb_mnt_get_fsinfo(xid, tcon, (void __user *)arg);
314                         break;
315                 case CIFS_ENUMERATE_SNAPSHOTS:
316                         if (pSMBFile == NULL)
317                                 break;
318                         if (arg == 0) {
319                                 rc = -EINVAL;
320                                 goto cifs_ioc_exit;
321                         }
322                         tcon = tlink_tcon(pSMBFile->tlink);
323                         if (tcon->ses->server->ops->enum_snapshots)
324                                 rc = tcon->ses->server->ops->enum_snapshots(xid, tcon,
325                                                 pSMBFile, (void __user *)arg);
326                         else
327                                 rc = -EOPNOTSUPP;
328                         break;
329                 case CIFS_DUMP_KEY:
330                         if (pSMBFile == NULL)
331                                 break;
332                         if (!capable(CAP_SYS_ADMIN)) {
333                                 rc = -EACCES;
334                                 break;
335                         }
336
337                         tcon = tlink_tcon(pSMBFile->tlink);
338                         if (!smb3_encryption_required(tcon)) {
339                                 rc = -EOPNOTSUPP;
340                                 break;
341                         }
342                         pkey_inf.cipher_type =
343                                 le16_to_cpu(tcon->ses->server->cipher_type);
344                         pkey_inf.Suid = tcon->ses->Suid;
345                         memcpy(pkey_inf.auth_key, tcon->ses->auth_key.response,
346                                         16 /* SMB2_NTLMV2_SESSKEY_SIZE */);
347                         memcpy(pkey_inf.smb3decryptionkey,
348                               tcon->ses->smb3decryptionkey, SMB3_SIGN_KEY_SIZE);
349                         memcpy(pkey_inf.smb3encryptionkey,
350                               tcon->ses->smb3encryptionkey, SMB3_SIGN_KEY_SIZE);
351                         if (copy_to_user((void __user *)arg, &pkey_inf,
352                                         sizeof(struct smb3_key_debug_info)))
353                                 rc = -EFAULT;
354                         else
355                                 rc = 0;
356                         break;
357                 case CIFS_IOC_NOTIFY:
358                         if (!S_ISDIR(inode->i_mode)) {
359                                 /* Notify can only be done on directories */
360                                 rc = -EOPNOTSUPP;
361                                 break;
362                         }
363                         cifs_sb = CIFS_SB(inode->i_sb);
364                         tlink = cifs_sb_tlink(cifs_sb);
365                         if (IS_ERR(tlink)) {
366                                 rc = PTR_ERR(tlink);
367                                 break;
368                         }
369                         tcon = tlink_tcon(tlink);
370                         if (tcon && tcon->ses->server->ops->notify) {
371                                 rc = tcon->ses->server->ops->notify(xid,
372                                                 filep, (void __user *)arg);
373                                 cifs_dbg(FYI, "ioctl notify rc %d\n", rc);
374                         } else
375                                 rc = -EOPNOTSUPP;
376                         cifs_put_tlink(tlink);
377                         break;
378                 case CIFS_IOC_SHUTDOWN:
379                         rc = cifs_shutdown(inode->i_sb, arg);
380                         break;
381                 default:
382                         cifs_dbg(FYI, "unsupported ioctl\n");
383                         break;
384         }
385 cifs_ioc_exit:
386         free_xid(xid);
387         return rc;
388 }