Steve French | 929be90 | 2021-06-18 00:31:49 -0500 | [diff] [blame] | 1 | // SPDX-License-Identifier: LGPL-2.1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * vfs operations that deal with io control |
| 5 | * |
Steve French | 64a5cfa | 2013-10-14 15:31:32 -0500 | [diff] [blame] | 6 | * Copyright (C) International Business Machines Corp., 2005,2013 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 8 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/fs.h> |
Steve French | 41c1358 | 2013-11-14 00:05:36 -0600 | [diff] [blame] | 12 | #include <linux/file.h> |
| 13 | #include <linux/mount.h> |
| 14 | #include <linux/mm.h> |
| 15 | #include <linux/pagemap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include "cifspdu.h" |
| 17 | #include "cifsglob.h" |
| 18 | #include "cifsproto.h" |
| 19 | #include "cifs_debug.h" |
Steve French | c67593a | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 20 | #include "cifsfs.h" |
Steve French | 0de1f4c | 2015-07-04 18:40:10 -0500 | [diff] [blame] | 21 | #include "cifs_ioctl.h" |
Ronnie Sahlberg | 8d8b26e | 2018-10-17 05:47:58 +1000 | [diff] [blame] | 22 | #include "smb2proto.h" |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 23 | #include "smb2glob.h" |
Steve French | 02b1666 | 2015-06-27 21:18:36 -0700 | [diff] [blame] | 24 | #include <linux/btrfs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Ronnie Sahlberg | f5b05d6 | 2018-10-07 19:19:58 -0500 | [diff] [blame] | 26 | static long cifs_ioctl_query_info(unsigned int xid, struct file *filep, |
| 27 | unsigned long p) |
| 28 | { |
Ronnie Sahlberg | 8d8b26e | 2018-10-17 05:47:58 +1000 | [diff] [blame] | 29 | 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 Viro | 8e33cf2 | 2021-03-18 15:47:35 -0400 | [diff] [blame] | 33 | const unsigned char *path; |
Al Viro | f6a9bc3 | 2021-03-05 17:36:04 -0500 | [diff] [blame] | 34 | void *page = alloc_dentry_path(); |
Ronnie Sahlberg | 8d8b26e | 2018-10-17 05:47:58 +1000 | [diff] [blame] | 35 | __le16 *utf16_path = NULL, root_path; |
| 36 | int rc = 0; |
Ronnie Sahlberg | f5b05d6 | 2018-10-07 19:19:58 -0500 | [diff] [blame] | 37 | |
Al Viro | f6a9bc3 | 2021-03-05 17:36:04 -0500 | [diff] [blame] | 38 | path = build_path_from_dentry(dentry, page); |
| 39 | if (IS_ERR(path)) { |
| 40 | free_dentry_path(page); |
| 41 | return PTR_ERR(path); |
| 42 | } |
Ronnie Sahlberg | 8d8b26e | 2018-10-17 05:47:58 +1000 | [diff] [blame] | 43 | |
| 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 Sahlberg | f5b05d6 | 2018-10-07 19:19:58 -0500 | [diff] [blame] | 56 | |
| 57 | if (tcon->ses->server->ops->ioctl_query_info) |
Ronnie Sahlberg | 8d8b26e | 2018-10-17 05:47:58 +1000 | [diff] [blame] | 58 | rc = tcon->ses->server->ops->ioctl_query_info( |
Amir Goldstein | 0f06093 | 2020-02-03 21:46:43 +0200 | [diff] [blame] | 59 | xid, tcon, cifs_sb, utf16_path, |
Ronnie Sahlberg | 8d8b26e | 2018-10-17 05:47:58 +1000 | [diff] [blame] | 60 | filep->private_data ? 0 : 1, p); |
Ronnie Sahlberg | f5b05d6 | 2018-10-07 19:19:58 -0500 | [diff] [blame] | 61 | else |
Ronnie Sahlberg | 8d8b26e | 2018-10-17 05:47:58 +1000 | [diff] [blame] | 62 | rc = -EOPNOTSUPP; |
| 63 | |
| 64 | ici_exit: |
| 65 | if (utf16_path != &root_path) |
| 66 | kfree(utf16_path); |
Al Viro | f6a9bc3 | 2021-03-05 17:36:04 -0500 | [diff] [blame] | 67 | free_dentry_path(page); |
Ronnie Sahlberg | 8d8b26e | 2018-10-17 05:47:58 +1000 | [diff] [blame] | 68 | return rc; |
Ronnie Sahlberg | f5b05d6 | 2018-10-07 19:19:58 -0500 | [diff] [blame] | 69 | } |
| 70 | |
Sachin Prabhu | 312bbc5 | 2017-04-04 02:12:04 -0500 | [diff] [blame] | 71 | static long cifs_ioctl_copychunk(unsigned int xid, struct file *dst_file, |
Christoph Hellwig | 04b38d6 | 2015-12-03 12:59:50 +0100 | [diff] [blame] | 72 | unsigned long srcfd) |
Steve French | 41c1358 | 2013-11-14 00:05:36 -0600 | [diff] [blame] | 73 | { |
| 74 | int rc; |
Steve French | 41c1358 | 2013-11-14 00:05:36 -0600 | [diff] [blame] | 75 | struct fd src_file; |
Steve French | 41c1358 | 2013-11-14 00:05:36 -0600 | [diff] [blame] | 76 | struct inode *src_inode; |
Steve French | 41c1358 | 2013-11-14 00:05:36 -0600 | [diff] [blame] | 77 | |
Sachin Prabhu | 312bbc5 | 2017-04-04 02:12:04 -0500 | [diff] [blame] | 78 | cifs_dbg(FYI, "ioctl copychunk range\n"); |
Steve French | 41c1358 | 2013-11-14 00:05:36 -0600 | [diff] [blame] | 79 | /* 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 Horn | 4c17a6d | 2015-09-11 16:27:27 +0200 | [diff] [blame] | 98 | 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 Chen | 2d4f84b | 2013-12-11 11:02:27 +0800 | [diff] [blame] | 104 | src_inode = file_inode(src_file.file); |
Al Viro | 378ff1a | 2015-01-18 23:37:32 -0500 | [diff] [blame] | 105 | rc = -EINVAL; |
| 106 | if (S_ISDIR(src_inode->i_mode)) |
| 107 | goto out_fput; |
Steve French | 41c1358 | 2013-11-14 00:05:36 -0600 | [diff] [blame] | 108 | |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 109 | rc = cifs_file_copychunk_range(xid, src_file.file, 0, dst_file, 0, |
| 110 | src_inode->i_size, 0); |
Sachin Prabhu | 7d0c234 | 2017-04-26 17:10:17 +0100 | [diff] [blame] | 111 | if (rc > 0) |
| 112 | rc = 0; |
Steve French | 41c1358 | 2013-11-14 00:05:36 -0600 | [diff] [blame] | 113 | out_fput: |
| 114 | fdput(src_file); |
| 115 | out_drop_write: |
| 116 | mnt_drop_write_file(dst_file); |
| 117 | return rc; |
| 118 | } |
| 119 | |
Steve French | 0de1f4c | 2015-07-04 18:40:10 -0500 | [diff] [blame] | 120 | static 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 French | 0de1f4c | 2015-07-04 18:40:10 -0500 | [diff] [blame] | 138 | 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 French | 0de1f4c | 2015-07-04 18:40:10 -0500 | [diff] [blame] | 146 | 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 French | 087f757 | 2021-04-29 00:18:43 -0500 | [diff] [blame] | 155 | static 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 Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 205 | static int cifs_dump_full_key(struct cifs_tcon *tcon, struct smb3_full_key_debug_info __user *in) |
Steve French | 7ba3d1c | 2021-05-02 17:39:30 -0500 | [diff] [blame] | 206 | { |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 207 | struct smb3_full_key_debug_info out; |
Steve French | 7ba3d1c | 2021-05-02 17:39:30 -0500 | [diff] [blame] | 208 | struct cifs_ses *ses; |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 209 | int rc = 0; |
Steve French | 7ba3d1c | 2021-05-02 17:39:30 -0500 | [diff] [blame] | 210 | bool found = false; |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 211 | u8 __user *end; |
Steve French | 7ba3d1c | 2021-05-02 17:39:30 -0500 | [diff] [blame] | 212 | |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 213 | if (!smb3_encryption_required(tcon)) { |
| 214 | rc = -EOPNOTSUPP; |
| 215 | goto out; |
| 216 | } |
Steve French | 7ba3d1c | 2021-05-02 17:39:30 -0500 | [diff] [blame] | 217 | |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 218 | /* 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 French | 7ba3d1c | 2021-05-02 17:39:30 -0500 | [diff] [blame] | 232 | spin_lock(&cifs_tcp_ses_lock); |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 233 | 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 French | 7ba3d1c | 2021-05-02 17:39:30 -0500 | [diff] [blame] | 246 | } |
| 247 | } |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 248 | search_end: |
Steve French | 7ba3d1c | 2021-05-02 17:39:30 -0500 | [diff] [blame] | 249 | spin_unlock(&cifs_tcp_ses_lock); |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 250 | if (!found) { |
| 251 | rc = -ENOENT; |
| 252 | goto out; |
| 253 | } |
| 254 | } |
Steve French | 7ba3d1c | 2021-05-02 17:39:30 -0500 | [diff] [blame] | 255 | |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 256 | 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 French | 7ba3d1c | 2021-05-02 17:39:30 -0500 | [diff] [blame] | 271 | |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 272 | /* 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 | |
| 307 | out: |
| 308 | if (found) |
| 309 | cifs_put_smb_ses(ses); |
| 310 | return rc; |
Steve French | 7ba3d1c | 2021-05-02 17:39:30 -0500 | [diff] [blame] | 311 | } |
| 312 | |
Steve French | f9ddcca | 2008-05-15 05:51:55 +0000 | [diff] [blame] | 313 | long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 315 | struct inode *inode = file_inode(filep); |
Steve French | 7e7db86 | 2019-09-19 04:00:55 -0500 | [diff] [blame] | 316 | struct smb3_key_debug_info pkey_inf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | int rc = -ENOTTY; /* strange error - but the precedent */ |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 318 | unsigned int xid; |
Jeff Layton | ba00ba64 | 2010-09-20 16:01:31 -0700 | [diff] [blame] | 319 | struct cifsFileInfo *pSMBFile = filep->private_data; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 320 | struct cifs_tcon *tcon; |
Ronnie Sahlberg | a77592a | 2020-07-09 20:39:49 +1000 | [diff] [blame] | 321 | struct tcon_link *tlink; |
Steve French | d26c2dd | 2020-02-06 06:00:14 -0600 | [diff] [blame] | 322 | struct cifs_sb_info *cifs_sb; |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 323 | __u64 ExtAttrBits = 0; |
Jeff Layton | 6187639 | 2010-11-08 07:28:32 -0500 | [diff] [blame] | 324 | __u64 caps; |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 325 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 326 | xid = get_xid(); |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 327 | |
Pavel Shilovsky | b0a752b | 2016-11-16 15:17:15 -0800 | [diff] [blame] | 328 | cifs_dbg(FYI, "cifs ioctl 0x%x\n", command); |
Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 329 | switch (command) { |
David Howells | 3669567 | 2006-08-29 19:06:16 +0100 | [diff] [blame] | 330 | case FS_IOC_GETFLAGS: |
Jeff Layton | 6187639 | 2010-11-08 07:28:32 -0500 | [diff] [blame] | 331 | if (pSMBFile == NULL) |
| 332 | break; |
| 333 | tcon = tlink_tcon(pSMBFile->tlink); |
| 334 | caps = le64_to_cpu(tcon->fsUnixInfo.Capability); |
Steve French | 64a5cfa | 2013-10-14 15:31:32 -0500 | [diff] [blame] | 335 | #ifdef CONFIG_CIFS_POSIX |
Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 336 | if (CIFS_UNIX_EXTATTR_CAP & caps) { |
Steve French | f10d9ba | 2013-10-13 22:32:30 -0500 | [diff] [blame] | 337 | __u64 ExtAttrMask = 0; |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 338 | rc = CIFSGetExtAttr(xid, tcon, |
| 339 | pSMBFile->fid.netfid, |
| 340 | &ExtAttrBits, &ExtAttrMask); |
Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 341 | if (rc == 0) |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 342 | rc = put_user(ExtAttrBits & |
David Howells | 3669567 | 2006-08-29 19:06:16 +0100 | [diff] [blame] | 343 | FS_FL_USER_VISIBLE, |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 344 | (int __user *)arg); |
Steve French | 64a5cfa | 2013-10-14 15:31:32 -0500 | [diff] [blame] | 345 | 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 French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 355 | } |
| 356 | break; |
David Howells | 3669567 | 2006-08-29 19:06:16 +0100 | [diff] [blame] | 357 | case FS_IOC_SETFLAGS: |
Jeff Layton | 6187639 | 2010-11-08 07:28:32 -0500 | [diff] [blame] | 358 | if (pSMBFile == NULL) |
| 359 | break; |
| 360 | tcon = tlink_tcon(pSMBFile->tlink); |
Steve French | 4c51de1 | 2021-09-13 18:29:46 -0500 | [diff] [blame] | 361 | /* caps = le64_to_cpu(tcon->fsUnixInfo.Capability); */ |
Steve French | 64a5cfa | 2013-10-14 15:31:32 -0500 | [diff] [blame] | 362 | |
| 363 | if (get_user(ExtAttrBits, (int __user *)arg)) { |
| 364 | rc = -EFAULT; |
| 365 | break; |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 366 | } |
Steve French | 64a5cfa | 2013-10-14 15:31:32 -0500 | [diff] [blame] | 367 | |
| 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 French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 388 | break; |
Steve French | f19e84d | 2013-11-24 21:53:17 -0600 | [diff] [blame] | 389 | case CIFS_IOC_COPYCHUNK_FILE: |
Sachin Prabhu | 312bbc5 | 2017-04-04 02:12:04 -0500 | [diff] [blame] | 390 | rc = cifs_ioctl_copychunk(xid, filep, arg); |
Steve French | 41c1358 | 2013-11-14 00:05:36 -0600 | [diff] [blame] | 391 | break; |
Ronnie Sahlberg | f5b05d6 | 2018-10-07 19:19:58 -0500 | [diff] [blame] | 392 | case CIFS_QUERY_INFO: |
| 393 | rc = cifs_ioctl_query_info(xid, filep, arg); |
| 394 | break; |
Steve French | b3152e2 | 2015-06-24 03:17:02 -0500 | [diff] [blame] | 395 | 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 French | 0de1f4c | 2015-07-04 18:40:10 -0500 | [diff] [blame] | 405 | case CIFS_IOC_GET_MNT_INFO: |
David Disseldorp | d8a6e50 | 2017-05-04 00:41:13 +0200 | [diff] [blame] | 406 | if (pSMBFile == NULL) |
| 407 | break; |
Steve French | 0de1f4c | 2015-07-04 18:40:10 -0500 | [diff] [blame] | 408 | tcon = tlink_tcon(pSMBFile->tlink); |
| 409 | rc = smb_mnt_get_fsinfo(xid, tcon, (void __user *)arg); |
| 410 | break; |
Steve French | 834170c | 2016-09-30 21:14:26 -0500 | [diff] [blame] | 411 | case CIFS_ENUMERATE_SNAPSHOTS: |
David Disseldorp | 6026685 | 2017-05-03 17:39:08 +0200 | [diff] [blame] | 412 | if (pSMBFile == NULL) |
| 413 | break; |
Steve French | 834170c | 2016-09-30 21:14:26 -0500 | [diff] [blame] | 414 | 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 French | 7e7db86 | 2019-09-19 04:00:55 -0500 | [diff] [blame] | 425 | case CIFS_DUMP_KEY: |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 426 | /* |
| 427 | * Dump encryption keys. This is an old ioctl that only |
| 428 | * handles AES-128-{CCM,GCM}. |
| 429 | */ |
Steve French | 7e7db86 | 2019-09-19 04:00:55 -0500 | [diff] [blame] | 430 | 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 French | aa22ebc | 2021-04-30 17:14:45 -0500 | [diff] [blame] | 457 | case CIFS_DUMP_FULL_KEY: |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 458 | /* |
| 459 | * Dump encryption keys (handles any key sizes) |
| 460 | */ |
Steve French | aa22ebc | 2021-04-30 17:14:45 -0500 | [diff] [blame] | 461 | if (pSMBFile == NULL) |
| 462 | break; |
| 463 | if (!capable(CAP_SYS_ADMIN)) { |
| 464 | rc = -EACCES; |
| 465 | break; |
| 466 | } |
Steve French | aa22ebc | 2021-04-30 17:14:45 -0500 | [diff] [blame] | 467 | tcon = tlink_tcon(pSMBFile->tlink); |
Aurelien Aptel | 1bb5681 | 2021-05-21 17:19:28 +0200 | [diff] [blame] | 468 | rc = cifs_dump_full_key(tcon, (void __user *)arg); |
Steve French | aa22ebc | 2021-04-30 17:14:45 -0500 | [diff] [blame] | 469 | break; |
Steve French | d26c2dd | 2020-02-06 06:00:14 -0600 | [diff] [blame] | 470 | 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 Sahlberg | a77592a | 2020-07-09 20:39:49 +1000 | [diff] [blame] | 477 | 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 French | d26c2dd | 2020-02-06 06:00:14 -0600 | [diff] [blame] | 483 | 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 Sahlberg | a77592a | 2020-07-09 20:39:49 +1000 | [diff] [blame] | 489 | cifs_put_tlink(tlink); |
Steve French | d26c2dd | 2020-02-06 06:00:14 -0600 | [diff] [blame] | 490 | break; |
Steve French | 087f757 | 2021-04-29 00:18:43 -0500 | [diff] [blame] | 491 | case CIFS_IOC_SHUTDOWN: |
| 492 | rc = cifs_shutdown(inode->i_sb, arg); |
| 493 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | default: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 495 | cifs_dbg(FYI, "unsupported ioctl\n"); |
Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 496 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | } |
Steve French | 834170c | 2016-09-30 21:14:26 -0500 | [diff] [blame] | 498 | cifs_ioc_exit: |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 499 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | return rc; |
Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 501 | } |