smb3.1.1: allow dumping GCM256 keys to improve debugging of encrypted shares
[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         struct smb3_full_key_debug_info pfull_key_inf;
222         int rc = -ENOTTY; /* strange error - but the precedent */
223         unsigned int xid;
224         struct cifsFileInfo *pSMBFile = filep->private_data;
225         struct cifs_tcon *tcon;
226         struct tcon_link *tlink;
227         struct cifs_sb_info *cifs_sb;
228         __u64   ExtAttrBits = 0;
229         __u64   caps;
230
231         xid = get_xid();
232
233         cifs_dbg(FYI, "cifs ioctl 0x%x\n", command);
234         switch (command) {
235                 case FS_IOC_GETFLAGS:
236                         if (pSMBFile == NULL)
237                                 break;
238                         tcon = tlink_tcon(pSMBFile->tlink);
239                         caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
240 #ifdef CONFIG_CIFS_POSIX
241                         if (CIFS_UNIX_EXTATTR_CAP & caps) {
242                                 __u64   ExtAttrMask = 0;
243                                 rc = CIFSGetExtAttr(xid, tcon,
244                                                     pSMBFile->fid.netfid,
245                                                     &ExtAttrBits, &ExtAttrMask);
246                                 if (rc == 0)
247                                         rc = put_user(ExtAttrBits &
248                                                 FS_FL_USER_VISIBLE,
249                                                 (int __user *)arg);
250                                 if (rc != EOPNOTSUPP)
251                                         break;
252                         }
253 #endif /* CONFIG_CIFS_POSIX */
254                         rc = 0;
255                         if (CIFS_I(inode)->cifsAttrs & ATTR_COMPRESSED) {
256                                 /* add in the compressed bit */
257                                 ExtAttrBits = FS_COMPR_FL;
258                                 rc = put_user(ExtAttrBits & FS_FL_USER_VISIBLE,
259                                               (int __user *)arg);
260                         }
261                         break;
262                 case FS_IOC_SETFLAGS:
263                         if (pSMBFile == NULL)
264                                 break;
265                         tcon = tlink_tcon(pSMBFile->tlink);
266                         caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
267
268                         if (get_user(ExtAttrBits, (int __user *)arg)) {
269                                 rc = -EFAULT;
270                                 break;
271                         }
272
273                         /*
274                          * if (CIFS_UNIX_EXTATTR_CAP & caps)
275                          *      rc = CIFSSetExtAttr(xid, tcon,
276                          *                     pSMBFile->fid.netfid,
277                          *                     extAttrBits,
278                          *                     &ExtAttrMask);
279                          * if (rc != EOPNOTSUPP)
280                          *      break;
281                          */
282
283                         /* Currently only flag we can set is compressed flag */
284                         if ((ExtAttrBits & FS_COMPR_FL) == 0)
285                                 break;
286
287                         /* Try to set compress flag */
288                         if (tcon->ses->server->ops->set_compression) {
289                                 rc = tcon->ses->server->ops->set_compression(
290                                                         xid, tcon, pSMBFile);
291                                 cifs_dbg(FYI, "set compress flag rc %d\n", rc);
292                         }
293                         break;
294                 case CIFS_IOC_COPYCHUNK_FILE:
295                         rc = cifs_ioctl_copychunk(xid, filep, arg);
296                         break;
297                 case CIFS_QUERY_INFO:
298                         rc = cifs_ioctl_query_info(xid, filep, arg);
299                         break;
300                 case CIFS_IOC_SET_INTEGRITY:
301                         if (pSMBFile == NULL)
302                                 break;
303                         tcon = tlink_tcon(pSMBFile->tlink);
304                         if (tcon->ses->server->ops->set_integrity)
305                                 rc = tcon->ses->server->ops->set_integrity(xid,
306                                                 tcon, pSMBFile);
307                         else
308                                 rc = -EOPNOTSUPP;
309                         break;
310                 case CIFS_IOC_GET_MNT_INFO:
311                         if (pSMBFile == NULL)
312                                 break;
313                         tcon = tlink_tcon(pSMBFile->tlink);
314                         rc = smb_mnt_get_fsinfo(xid, tcon, (void __user *)arg);
315                         break;
316                 case CIFS_ENUMERATE_SNAPSHOTS:
317                         if (pSMBFile == NULL)
318                                 break;
319                         if (arg == 0) {
320                                 rc = -EINVAL;
321                                 goto cifs_ioc_exit;
322                         }
323                         tcon = tlink_tcon(pSMBFile->tlink);
324                         if (tcon->ses->server->ops->enum_snapshots)
325                                 rc = tcon->ses->server->ops->enum_snapshots(xid, tcon,
326                                                 pSMBFile, (void __user *)arg);
327                         else
328                                 rc = -EOPNOTSUPP;
329                         break;
330                 case CIFS_DUMP_KEY:
331                         if (pSMBFile == NULL)
332                                 break;
333                         if (!capable(CAP_SYS_ADMIN)) {
334                                 rc = -EACCES;
335                                 break;
336                         }
337
338                         tcon = tlink_tcon(pSMBFile->tlink);
339                         if (!smb3_encryption_required(tcon)) {
340                                 rc = -EOPNOTSUPP;
341                                 break;
342                         }
343                         pkey_inf.cipher_type =
344                                 le16_to_cpu(tcon->ses->server->cipher_type);
345                         pkey_inf.Suid = tcon->ses->Suid;
346                         memcpy(pkey_inf.auth_key, tcon->ses->auth_key.response,
347                                         16 /* SMB2_NTLMV2_SESSKEY_SIZE */);
348                         memcpy(pkey_inf.smb3decryptionkey,
349                               tcon->ses->smb3decryptionkey, SMB3_SIGN_KEY_SIZE);
350                         memcpy(pkey_inf.smb3encryptionkey,
351                               tcon->ses->smb3encryptionkey, SMB3_SIGN_KEY_SIZE);
352                         if (copy_to_user((void __user *)arg, &pkey_inf,
353                                         sizeof(struct smb3_key_debug_info)))
354                                 rc = -EFAULT;
355                         else
356                                 rc = 0;
357                         break;
358                 /*
359                  * Dump full key (32 bytes instead of 16 bytes) is
360                  * needed if GCM256 (stronger encryption) negotiated
361                  */
362                 case CIFS_DUMP_FULL_KEY:
363                         if (pSMBFile == NULL)
364                                 break;
365                         if (!capable(CAP_SYS_ADMIN)) {
366                                 rc = -EACCES;
367                                 break;
368                         }
369
370                         tcon = tlink_tcon(pSMBFile->tlink);
371                         if (!smb3_encryption_required(tcon)) {
372                                 rc = -EOPNOTSUPP;
373                                 break;
374                         }
375                         pfull_key_inf.cipher_type =
376                                 le16_to_cpu(tcon->ses->server->cipher_type);
377                         pfull_key_inf.Suid = tcon->ses->Suid;
378                         memcpy(pfull_key_inf.auth_key, tcon->ses->auth_key.response,
379                                         16 /* SMB2_NTLMV2_SESSKEY_SIZE */);
380                         memcpy(pfull_key_inf.smb3decryptionkey,
381                               tcon->ses->smb3decryptionkey, 32 /* SMB3_ENC_DEC_KEY_SIZE */);
382                         memcpy(pfull_key_inf.smb3encryptionkey,
383                               tcon->ses->smb3encryptionkey, 32 /* SMB3_ENC_DEC_KEY_SIZE */);
384                         if (copy_to_user((void __user *)arg, &pfull_key_inf,
385                                         sizeof(struct smb3_full_key_debug_info)))
386                                 rc = -EFAULT;
387                         else
388                                 rc = 0;
389                         break;
390                 case CIFS_IOC_NOTIFY:
391                         if (!S_ISDIR(inode->i_mode)) {
392                                 /* Notify can only be done on directories */
393                                 rc = -EOPNOTSUPP;
394                                 break;
395                         }
396                         cifs_sb = CIFS_SB(inode->i_sb);
397                         tlink = cifs_sb_tlink(cifs_sb);
398                         if (IS_ERR(tlink)) {
399                                 rc = PTR_ERR(tlink);
400                                 break;
401                         }
402                         tcon = tlink_tcon(tlink);
403                         if (tcon && tcon->ses->server->ops->notify) {
404                                 rc = tcon->ses->server->ops->notify(xid,
405                                                 filep, (void __user *)arg);
406                                 cifs_dbg(FYI, "ioctl notify rc %d\n", rc);
407                         } else
408                                 rc = -EOPNOTSUPP;
409                         cifs_put_tlink(tlink);
410                         break;
411                 case CIFS_IOC_SHUTDOWN:
412                         rc = cifs_shutdown(inode->i_sb, arg);
413                         break;
414                 default:
415                         cifs_dbg(FYI, "unsupported ioctl\n");
416                         break;
417         }
418 cifs_ioc_exit:
419         free_xid(xid);
420         return rc;
421 }