blob: 0359b604bdbc0181944dda9ee4865ff667605fd0 [file] [log] [blame]
Steve French929be902021-06-18 00:31:49 -05001// SPDX-License-Identifier: LGPL-2.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
Steve Frenchf654bac2005-04-28 22:41:04 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/fs.h>
Steve French41c13582013-11-14 00:05:36 -060012#include <linux/file.h>
13#include <linux/mount.h>
14#include <linux/mm.h>
15#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "cifspdu.h"
17#include "cifsglob.h"
18#include "cifsproto.h"
19#include "cifs_debug.h"
Steve Frenchc67593a2005-04-28 22:41:04 -070020#include "cifsfs.h"
Steve French0de1f4c2015-07-04 18:40:10 -050021#include "cifs_ioctl.h"
Ronnie Sahlberg8d8b26e2018-10-17 05:47:58 +100022#include "smb2proto.h"
Aurelien Aptel1bb56812021-05-21 17:19:28 +020023#include "smb2glob.h"
Steve French02b16662015-06-27 21:18:36 -070024#include <linux/btrfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Ronnie Sahlbergf5b05d62018-10-07 19:19:58 -050026static long cifs_ioctl_query_info(unsigned int xid, struct file *filep,
27 unsigned long p)
28{
Ronnie Sahlberg8d8b26e2018-10-17 05:47:58 +100029 struct inode *inode = file_inode(filep);
30 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
31 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
32 struct dentry *dentry = filep->f_path.dentry;
Al Viro8e33cf22021-03-18 15:47:35 -040033 const unsigned char *path;
Al Virof6a9bc32021-03-05 17:36:04 -050034 void *page = alloc_dentry_path();
Ronnie Sahlberg8d8b26e2018-10-17 05:47:58 +100035 __le16 *utf16_path = NULL, root_path;
36 int rc = 0;
Ronnie Sahlbergf5b05d62018-10-07 19:19:58 -050037
Al Virof6a9bc32021-03-05 17:36:04 -050038 path = build_path_from_dentry(dentry, page);
39 if (IS_ERR(path)) {
40 free_dentry_path(page);
41 return PTR_ERR(path);
42 }
Ronnie Sahlberg8d8b26e2018-10-17 05:47:58 +100043
44 cifs_dbg(FYI, "%s %s\n", __func__, path);
45
46 if (!path[0]) {
47 root_path = 0;
48 utf16_path = &root_path;
49 } else {
50 utf16_path = cifs_convert_path_to_utf16(path + 1, cifs_sb);
51 if (!utf16_path) {
52 rc = -ENOMEM;
53 goto ici_exit;
54 }
55 }
Ronnie Sahlbergf5b05d62018-10-07 19:19:58 -050056
57 if (tcon->ses->server->ops->ioctl_query_info)
Ronnie Sahlberg8d8b26e2018-10-17 05:47:58 +100058 rc = tcon->ses->server->ops->ioctl_query_info(
Amir Goldstein0f060932020-02-03 21:46:43 +020059 xid, tcon, cifs_sb, utf16_path,
Ronnie Sahlberg8d8b26e2018-10-17 05:47:58 +100060 filep->private_data ? 0 : 1, p);
Ronnie Sahlbergf5b05d62018-10-07 19:19:58 -050061 else
Ronnie Sahlberg8d8b26e2018-10-17 05:47:58 +100062 rc = -EOPNOTSUPP;
63
64 ici_exit:
65 if (utf16_path != &root_path)
66 kfree(utf16_path);
Al Virof6a9bc32021-03-05 17:36:04 -050067 free_dentry_path(page);
Ronnie Sahlberg8d8b26e2018-10-17 05:47:58 +100068 return rc;
Ronnie Sahlbergf5b05d62018-10-07 19:19:58 -050069}
70
Sachin Prabhu312bbc52017-04-04 02:12:04 -050071static long cifs_ioctl_copychunk(unsigned int xid, struct file *dst_file,
Christoph Hellwig04b38d62015-12-03 12:59:50 +010072 unsigned long srcfd)
Steve French41c13582013-11-14 00:05:36 -060073{
74 int rc;
Steve French41c13582013-11-14 00:05:36 -060075 struct fd src_file;
Steve French41c13582013-11-14 00:05:36 -060076 struct inode *src_inode;
Steve French41c13582013-11-14 00:05:36 -060077
Sachin Prabhu312bbc52017-04-04 02:12:04 -050078 cifs_dbg(FYI, "ioctl copychunk range\n");
Steve French41c13582013-11-14 00:05:36 -060079 /* the destination must be opened for writing */
80 if (!(dst_file->f_mode & FMODE_WRITE)) {
81 cifs_dbg(FYI, "file target not open for write\n");
82 return -EINVAL;
83 }
84
85 /* check if target volume is readonly and take reference */
86 rc = mnt_want_write_file(dst_file);
87 if (rc) {
88 cifs_dbg(FYI, "mnt_want_write failed with rc %d\n", rc);
89 return rc;
90 }
91
92 src_file = fdget(srcfd);
93 if (!src_file.file) {
94 rc = -EBADF;
95 goto out_drop_write;
96 }
97
Jann Horn4c17a6d2015-09-11 16:27:27 +020098 if (src_file.file->f_op->unlocked_ioctl != cifs_ioctl) {
99 rc = -EBADF;
100 cifs_dbg(VFS, "src file seems to be from a different filesystem type\n");
101 goto out_fput;
102 }
103
Libo Chen2d4f84b2013-12-11 11:02:27 +0800104 src_inode = file_inode(src_file.file);
Al Viro378ff1a2015-01-18 23:37:32 -0500105 rc = -EINVAL;
106 if (S_ISDIR(src_inode->i_mode))
107 goto out_fput;
Steve French41c13582013-11-14 00:05:36 -0600108
Sachin Prabhu620d8742017-02-10 16:03:51 +0530109 rc = cifs_file_copychunk_range(xid, src_file.file, 0, dst_file, 0,
110 src_inode->i_size, 0);
Sachin Prabhu7d0c2342017-04-26 17:10:17 +0100111 if (rc > 0)
112 rc = 0;
Steve French41c13582013-11-14 00:05:36 -0600113out_fput:
114 fdput(src_file);
115out_drop_write:
116 mnt_drop_write_file(dst_file);
117 return rc;
118}
119
Steve French0de1f4c2015-07-04 18:40:10 -0500120static long smb_mnt_get_fsinfo(unsigned int xid, struct cifs_tcon *tcon,
121 void __user *arg)
122{
123 int rc = 0;
124 struct smb_mnt_fs_info *fsinf;
125
126 fsinf = kzalloc(sizeof(struct smb_mnt_fs_info), GFP_KERNEL);
127 if (fsinf == NULL)
128 return -ENOMEM;
129
130 fsinf->version = 1;
131 fsinf->protocol_id = tcon->ses->server->vals->protocol_id;
132 fsinf->device_characteristics =
133 le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics);
134 fsinf->device_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
135 fsinf->fs_attributes = le32_to_cpu(tcon->fsAttrInfo.Attributes);
136 fsinf->max_path_component =
137 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength);
Steve French0de1f4c2015-07-04 18:40:10 -0500138 fsinf->vol_serial_number = tcon->vol_serial_number;
139 fsinf->vol_create_time = le64_to_cpu(tcon->vol_create_time);
140 fsinf->share_flags = tcon->share_flags;
141 fsinf->share_caps = le32_to_cpu(tcon->capabilities);
142 fsinf->sector_flags = tcon->ss_flags;
143 fsinf->optimal_sector_size = tcon->perf_sector_size;
144 fsinf->max_bytes_chunk = tcon->max_bytes_chunk;
145 fsinf->maximal_access = tcon->maximal_access;
Steve French0de1f4c2015-07-04 18:40:10 -0500146 fsinf->cifs_posix_caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
147
148 if (copy_to_user(arg, fsinf, sizeof(struct smb_mnt_fs_info)))
149 rc = -EFAULT;
150
151 kfree(fsinf);
152 return rc;
153}
154
Steve French087f7572021-04-29 00:18:43 -0500155static int cifs_shutdown(struct super_block *sb, unsigned long arg)
156{
157 struct cifs_sb_info *sbi = CIFS_SB(sb);
158 __u32 flags;
159
160 if (!capable(CAP_SYS_ADMIN))
161 return -EPERM;
162
163 if (get_user(flags, (__u32 __user *)arg))
164 return -EFAULT;
165
166 if (flags > CIFS_GOING_FLAGS_NOLOGFLUSH)
167 return -EINVAL;
168
169 if (cifs_forced_shutdown(sbi))
170 return 0;
171
172 cifs_dbg(VFS, "shut down requested (%d)", flags);
173/* trace_cifs_shutdown(sb, flags);*/
174
175 /*
176 * see:
177 * https://man7.org/linux/man-pages/man2/ioctl_xfs_goingdown.2.html
178 * for more information and description of original intent of the flags
179 */
180 switch (flags) {
181 /*
182 * We could add support later for default flag which requires:
183 * "Flush all dirty data and metadata to disk"
184 * would need to call syncfs or equivalent to flush page cache for
185 * the mount and then issue fsync to server (if nostrictsync not set)
186 */
187 case CIFS_GOING_FLAGS_DEFAULT:
188 cifs_dbg(FYI, "shutdown with default flag not supported\n");
189 return -EINVAL;
190 /*
191 * FLAGS_LOGFLUSH is easy since it asks to write out metadata (not
192 * data) but metadata writes are not cached on the client, so can treat
193 * it similarly to NOLOGFLUSH
194 */
195 case CIFS_GOING_FLAGS_LOGFLUSH:
196 case CIFS_GOING_FLAGS_NOLOGFLUSH:
197 sbi->mnt_cifs_flags |= CIFS_MOUNT_SHUTDOWN;
198 return 0;
199 default:
200 return -EINVAL;
201 }
202 return 0;
203}
204
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200205static int cifs_dump_full_key(struct cifs_tcon *tcon, struct smb3_full_key_debug_info __user *in)
Steve French7ba3d1c2021-05-02 17:39:30 -0500206{
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200207 struct smb3_full_key_debug_info out;
Steve French7ba3d1c2021-05-02 17:39:30 -0500208 struct cifs_ses *ses;
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200209 int rc = 0;
Steve French7ba3d1c2021-05-02 17:39:30 -0500210 bool found = false;
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200211 u8 __user *end;
Steve French7ba3d1c2021-05-02 17:39:30 -0500212
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200213 if (!smb3_encryption_required(tcon)) {
214 rc = -EOPNOTSUPP;
215 goto out;
216 }
Steve French7ba3d1c2021-05-02 17:39:30 -0500217
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200218 /* copy user input into our output buffer */
219 if (copy_from_user(&out, in, sizeof(out))) {
220 rc = -EINVAL;
221 goto out;
222 }
223
224 if (!out.session_id) {
225 /* if ses id is 0, use current user session */
226 ses = tcon->ses;
227 } else {
228 /* otherwise if a session id is given, look for it in all our sessions */
229 struct cifs_ses *ses_it = NULL;
230 struct TCP_Server_Info *server_it = NULL;
231
Steve French7ba3d1c2021-05-02 17:39:30 -0500232 spin_lock(&cifs_tcp_ses_lock);
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200233 list_for_each_entry(server_it, &cifs_tcp_ses_list, tcp_ses_list) {
234 list_for_each_entry(ses_it, &server_it->smb_ses_list, smb_ses_list) {
235 if (ses_it->Suid == out.session_id) {
236 ses = ses_it;
237 /*
238 * since we are using the session outside the crit
239 * section, we need to make sure it won't be released
240 * so increment its refcount
241 */
242 ses->ses_count++;
243 found = true;
244 goto search_end;
245 }
Steve French7ba3d1c2021-05-02 17:39:30 -0500246 }
247 }
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200248search_end:
Steve French7ba3d1c2021-05-02 17:39:30 -0500249 spin_unlock(&cifs_tcp_ses_lock);
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200250 if (!found) {
251 rc = -ENOENT;
252 goto out;
253 }
254 }
Steve French7ba3d1c2021-05-02 17:39:30 -0500255
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200256 switch (ses->server->cipher_type) {
257 case SMB2_ENCRYPTION_AES128_CCM:
258 case SMB2_ENCRYPTION_AES128_GCM:
259 out.session_key_length = CIFS_SESS_KEY_SIZE;
260 out.server_in_key_length = out.server_out_key_length = SMB3_GCM128_CRYPTKEY_SIZE;
261 break;
262 case SMB2_ENCRYPTION_AES256_CCM:
263 case SMB2_ENCRYPTION_AES256_GCM:
264 out.session_key_length = CIFS_SESS_KEY_SIZE;
265 out.server_in_key_length = out.server_out_key_length = SMB3_GCM256_CRYPTKEY_SIZE;
266 break;
267 default:
268 rc = -EOPNOTSUPP;
269 goto out;
270 }
Steve French7ba3d1c2021-05-02 17:39:30 -0500271
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200272 /* check if user buffer is big enough to store all the keys */
273 if (out.in_size < sizeof(out) + out.session_key_length + out.server_in_key_length
274 + out.server_out_key_length) {
275 rc = -ENOBUFS;
276 goto out;
277 }
278
279 out.session_id = ses->Suid;
280 out.cipher_type = le16_to_cpu(ses->server->cipher_type);
281
282 /* overwrite user input with our output */
283 if (copy_to_user(in, &out, sizeof(out))) {
284 rc = -EINVAL;
285 goto out;
286 }
287
288 /* append all the keys at the end of the user buffer */
289 end = in->data;
290 if (copy_to_user(end, ses->auth_key.response, out.session_key_length)) {
291 rc = -EINVAL;
292 goto out;
293 }
294 end += out.session_key_length;
295
296 if (copy_to_user(end, ses->smb3encryptionkey, out.server_in_key_length)) {
297 rc = -EINVAL;
298 goto out;
299 }
300 end += out.server_in_key_length;
301
302 if (copy_to_user(end, ses->smb3decryptionkey, out.server_out_key_length)) {
303 rc = -EINVAL;
304 goto out;
305 }
306
307out:
308 if (found)
309 cifs_put_smb_ses(ses);
310 return rc;
Steve French7ba3d1c2021-05-02 17:39:30 -0500311}
312
Steve Frenchf9ddcca2008-05-15 05:51:55 +0000313long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Al Viro496ad9a2013-01-23 17:07:38 -0500315 struct inode *inode = file_inode(filep);
Steve French7e7db862019-09-19 04:00:55 -0500316 struct smb3_key_debug_info pkey_inf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 int rc = -ENOTTY; /* strange error - but the precedent */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400318 unsigned int xid;
Jeff Laytonba00ba642010-09-20 16:01:31 -0700319 struct cifsFileInfo *pSMBFile = filep->private_data;
Steve French96daf2b2011-05-27 04:34:02 +0000320 struct cifs_tcon *tcon;
Ronnie Sahlberga77592a2020-07-09 20:39:49 +1000321 struct tcon_link *tlink;
Steve Frenchd26c2dd2020-02-06 06:00:14 -0600322 struct cifs_sb_info *cifs_sb;
Steve Frenchf654bac2005-04-28 22:41:04 -0700323 __u64 ExtAttrBits = 0;
Jeff Layton61876392010-11-08 07:28:32 -0500324 __u64 caps;
Steve Frenchf654bac2005-04-28 22:41:04 -0700325
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400326 xid = get_xid();
Steve Frenchf654bac2005-04-28 22:41:04 -0700327
Pavel Shilovskyb0a752b2016-11-16 15:17:15 -0800328 cifs_dbg(FYI, "cifs ioctl 0x%x\n", command);
Steve French5fdae1f2007-06-05 18:30:44 +0000329 switch (command) {
David Howells36695672006-08-29 19:06:16 +0100330 case FS_IOC_GETFLAGS:
Jeff Layton61876392010-11-08 07:28:32 -0500331 if (pSMBFile == NULL)
332 break;
333 tcon = tlink_tcon(pSMBFile->tlink);
334 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French64a5cfa2013-10-14 15:31:32 -0500335#ifdef CONFIG_CIFS_POSIX
Steve French5fdae1f2007-06-05 18:30:44 +0000336 if (CIFS_UNIX_EXTATTR_CAP & caps) {
Steve Frenchf10d9ba2013-10-13 22:32:30 -0500337 __u64 ExtAttrMask = 0;
Pavel Shilovsky4b4de762012-09-18 16:20:26 -0700338 rc = CIFSGetExtAttr(xid, tcon,
339 pSMBFile->fid.netfid,
340 &ExtAttrBits, &ExtAttrMask);
Steve French5fdae1f2007-06-05 18:30:44 +0000341 if (rc == 0)
Steve Frenchf654bac2005-04-28 22:41:04 -0700342 rc = put_user(ExtAttrBits &
David Howells36695672006-08-29 19:06:16 +0100343 FS_FL_USER_VISIBLE,
Steve Frenchf654bac2005-04-28 22:41:04 -0700344 (int __user *)arg);
Steve French64a5cfa2013-10-14 15:31:32 -0500345 if (rc != EOPNOTSUPP)
346 break;
347 }
348#endif /* CONFIG_CIFS_POSIX */
349 rc = 0;
350 if (CIFS_I(inode)->cifsAttrs & ATTR_COMPRESSED) {
351 /* add in the compressed bit */
352 ExtAttrBits = FS_COMPR_FL;
353 rc = put_user(ExtAttrBits & FS_FL_USER_VISIBLE,
354 (int __user *)arg);
Steve Frenchf654bac2005-04-28 22:41:04 -0700355 }
356 break;
David Howells36695672006-08-29 19:06:16 +0100357 case FS_IOC_SETFLAGS:
Jeff Layton61876392010-11-08 07:28:32 -0500358 if (pSMBFile == NULL)
359 break;
360 tcon = tlink_tcon(pSMBFile->tlink);
Steve French4c51de12021-09-13 18:29:46 -0500361 /* caps = le64_to_cpu(tcon->fsUnixInfo.Capability); */
Steve French64a5cfa2013-10-14 15:31:32 -0500362
363 if (get_user(ExtAttrBits, (int __user *)arg)) {
364 rc = -EFAULT;
365 break;
Steve Frenchf654bac2005-04-28 22:41:04 -0700366 }
Steve French64a5cfa2013-10-14 15:31:32 -0500367
368 /*
369 * if (CIFS_UNIX_EXTATTR_CAP & caps)
370 * rc = CIFSSetExtAttr(xid, tcon,
371 * pSMBFile->fid.netfid,
372 * extAttrBits,
373 * &ExtAttrMask);
374 * if (rc != EOPNOTSUPP)
375 * break;
376 */
377
378 /* Currently only flag we can set is compressed flag */
379 if ((ExtAttrBits & FS_COMPR_FL) == 0)
380 break;
381
382 /* Try to set compress flag */
383 if (tcon->ses->server->ops->set_compression) {
384 rc = tcon->ses->server->ops->set_compression(
385 xid, tcon, pSMBFile);
386 cifs_dbg(FYI, "set compress flag rc %d\n", rc);
387 }
Steve Frenchf654bac2005-04-28 22:41:04 -0700388 break;
Steve Frenchf19e84d2013-11-24 21:53:17 -0600389 case CIFS_IOC_COPYCHUNK_FILE:
Sachin Prabhu312bbc52017-04-04 02:12:04 -0500390 rc = cifs_ioctl_copychunk(xid, filep, arg);
Steve French41c13582013-11-14 00:05:36 -0600391 break;
Ronnie Sahlbergf5b05d62018-10-07 19:19:58 -0500392 case CIFS_QUERY_INFO:
393 rc = cifs_ioctl_query_info(xid, filep, arg);
394 break;
Steve Frenchb3152e22015-06-24 03:17:02 -0500395 case CIFS_IOC_SET_INTEGRITY:
396 if (pSMBFile == NULL)
397 break;
398 tcon = tlink_tcon(pSMBFile->tlink);
399 if (tcon->ses->server->ops->set_integrity)
400 rc = tcon->ses->server->ops->set_integrity(xid,
401 tcon, pSMBFile);
402 else
403 rc = -EOPNOTSUPP;
404 break;
Steve French0de1f4c2015-07-04 18:40:10 -0500405 case CIFS_IOC_GET_MNT_INFO:
David Disseldorpd8a6e502017-05-04 00:41:13 +0200406 if (pSMBFile == NULL)
407 break;
Steve French0de1f4c2015-07-04 18:40:10 -0500408 tcon = tlink_tcon(pSMBFile->tlink);
409 rc = smb_mnt_get_fsinfo(xid, tcon, (void __user *)arg);
410 break;
Steve French834170c2016-09-30 21:14:26 -0500411 case CIFS_ENUMERATE_SNAPSHOTS:
David Disseldorp60266852017-05-03 17:39:08 +0200412 if (pSMBFile == NULL)
413 break;
Steve French834170c2016-09-30 21:14:26 -0500414 if (arg == 0) {
415 rc = -EINVAL;
416 goto cifs_ioc_exit;
417 }
418 tcon = tlink_tcon(pSMBFile->tlink);
419 if (tcon->ses->server->ops->enum_snapshots)
420 rc = tcon->ses->server->ops->enum_snapshots(xid, tcon,
421 pSMBFile, (void __user *)arg);
422 else
423 rc = -EOPNOTSUPP;
424 break;
Steve French7e7db862019-09-19 04:00:55 -0500425 case CIFS_DUMP_KEY:
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200426 /*
427 * Dump encryption keys. This is an old ioctl that only
428 * handles AES-128-{CCM,GCM}.
429 */
Steve French7e7db862019-09-19 04:00:55 -0500430 if (pSMBFile == NULL)
431 break;
432 if (!capable(CAP_SYS_ADMIN)) {
433 rc = -EACCES;
434 break;
435 }
436
437 tcon = tlink_tcon(pSMBFile->tlink);
438 if (!smb3_encryption_required(tcon)) {
439 rc = -EOPNOTSUPP;
440 break;
441 }
442 pkey_inf.cipher_type =
443 le16_to_cpu(tcon->ses->server->cipher_type);
444 pkey_inf.Suid = tcon->ses->Suid;
445 memcpy(pkey_inf.auth_key, tcon->ses->auth_key.response,
446 16 /* SMB2_NTLMV2_SESSKEY_SIZE */);
447 memcpy(pkey_inf.smb3decryptionkey,
448 tcon->ses->smb3decryptionkey, SMB3_SIGN_KEY_SIZE);
449 memcpy(pkey_inf.smb3encryptionkey,
450 tcon->ses->smb3encryptionkey, SMB3_SIGN_KEY_SIZE);
451 if (copy_to_user((void __user *)arg, &pkey_inf,
452 sizeof(struct smb3_key_debug_info)))
453 rc = -EFAULT;
454 else
455 rc = 0;
456 break;
Steve Frenchaa22ebc2021-04-30 17:14:45 -0500457 case CIFS_DUMP_FULL_KEY:
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200458 /*
459 * Dump encryption keys (handles any key sizes)
460 */
Steve Frenchaa22ebc2021-04-30 17:14:45 -0500461 if (pSMBFile == NULL)
462 break;
463 if (!capable(CAP_SYS_ADMIN)) {
464 rc = -EACCES;
465 break;
466 }
Steve Frenchaa22ebc2021-04-30 17:14:45 -0500467 tcon = tlink_tcon(pSMBFile->tlink);
Aurelien Aptel1bb56812021-05-21 17:19:28 +0200468 rc = cifs_dump_full_key(tcon, (void __user *)arg);
Steve Frenchaa22ebc2021-04-30 17:14:45 -0500469 break;
Steve Frenchd26c2dd2020-02-06 06:00:14 -0600470 case CIFS_IOC_NOTIFY:
471 if (!S_ISDIR(inode->i_mode)) {
472 /* Notify can only be done on directories */
473 rc = -EOPNOTSUPP;
474 break;
475 }
476 cifs_sb = CIFS_SB(inode->i_sb);
Ronnie Sahlberga77592a2020-07-09 20:39:49 +1000477 tlink = cifs_sb_tlink(cifs_sb);
478 if (IS_ERR(tlink)) {
479 rc = PTR_ERR(tlink);
480 break;
481 }
482 tcon = tlink_tcon(tlink);
Steve Frenchd26c2dd2020-02-06 06:00:14 -0600483 if (tcon && tcon->ses->server->ops->notify) {
484 rc = tcon->ses->server->ops->notify(xid,
485 filep, (void __user *)arg);
486 cifs_dbg(FYI, "ioctl notify rc %d\n", rc);
487 } else
488 rc = -EOPNOTSUPP;
Ronnie Sahlberga77592a2020-07-09 20:39:49 +1000489 cifs_put_tlink(tlink);
Steve Frenchd26c2dd2020-02-06 06:00:14 -0600490 break;
Steve French087f7572021-04-29 00:18:43 -0500491 case CIFS_IOC_SHUTDOWN:
492 rc = cifs_shutdown(inode->i_sb, arg);
493 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 default:
Joe Perchesf96637b2013-05-04 22:12:25 -0500495 cifs_dbg(FYI, "unsupported ioctl\n");
Steve Frenchf28ac912005-04-28 22:41:07 -0700496 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
Steve French834170c2016-09-30 21:14:26 -0500498cifs_ioc_exit:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400499 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return rc;
Steve French5fdae1f2007-06-05 18:30:44 +0000501}