]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/cifs/ioctl.c
Merge remote-tracking branches 'asoc/topic/adsp', 'asoc/topic/ak4613', 'asoc/topic...
[mirror_ubuntu-bionic-kernel.git] / fs / cifs / ioctl.c
CommitLineData
1da177e4
LT
1/*
2 * fs/cifs/ioctl.c
3 *
4 * vfs operations that deal with io control
5 *
64a5cfa6 6 * Copyright (C) International Business Machines Corp., 2005,2013
1da177e4
LT
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 */
f654bac2 23
1da177e4 24#include <linux/fs.h>
41c1358e
SF
25#include <linux/file.h>
26#include <linux/mount.h>
27#include <linux/mm.h>
28#include <linux/pagemap.h>
1da177e4
LT
29#include "cifspdu.h"
30#include "cifsglob.h"
31#include "cifsproto.h"
32#include "cifs_debug.h"
c67593a0 33#include "cifsfs.h"
0de1f4c6 34#include "cifs_ioctl.h"
02b16665 35#include <linux/btrfs.h>
1da177e4 36
312bbc59 37static long cifs_ioctl_copychunk(unsigned int xid, struct file *dst_file,
04b38d60
CH
38 unsigned long srcfd)
39{
40 int rc;
41 struct fd src_file;
42 struct inode *src_inode;
43
312bbc59 44 cifs_dbg(FYI, "ioctl copychunk range\n");
04b38d60
CH
45 /* the destination must be opened for writing */
46 if (!(dst_file->f_mode & FMODE_WRITE)) {
47 cifs_dbg(FYI, "file target not open for write\n");
48 return -EINVAL;
49 }
50
51 /* check if target volume is readonly and take reference */
52 rc = mnt_want_write_file(dst_file);
53 if (rc) {
54 cifs_dbg(FYI, "mnt_want_write failed with rc %d\n", rc);
55 return rc;
56 }
57
58 src_file = fdget(srcfd);
59 if (!src_file.file) {
60 rc = -EBADF;
61 goto out_drop_write;
62 }
63
64 if (src_file.file->f_op->unlocked_ioctl != cifs_ioctl) {
65 rc = -EBADF;
66 cifs_dbg(VFS, "src file seems to be from a different filesystem type\n");
67 goto out_fput;
68 }
69
70 src_inode = file_inode(src_file.file);
71 rc = -EINVAL;
72 if (S_ISDIR(src_inode->i_mode))
73 goto out_fput;
74
620d8745
SP
75 rc = cifs_file_copychunk_range(xid, src_file.file, 0, dst_file, 0,
76 src_inode->i_size, 0);
04b38d60 77
41c1358e
SF
78out_fput:
79 fdput(src_file);
80out_drop_write:
81 mnt_drop_write_file(dst_file);
82 return rc;
83}
84
0de1f4c6
SF
85static long smb_mnt_get_fsinfo(unsigned int xid, struct cifs_tcon *tcon,
86 void __user *arg)
87{
88 int rc = 0;
89 struct smb_mnt_fs_info *fsinf;
90
91 fsinf = kzalloc(sizeof(struct smb_mnt_fs_info), GFP_KERNEL);
92 if (fsinf == NULL)
93 return -ENOMEM;
94
95 fsinf->version = 1;
96 fsinf->protocol_id = tcon->ses->server->vals->protocol_id;
97 fsinf->device_characteristics =
98 le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics);
99 fsinf->device_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
100 fsinf->fs_attributes = le32_to_cpu(tcon->fsAttrInfo.Attributes);
101 fsinf->max_path_component =
102 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength);
103#ifdef CONFIG_CIFS_SMB2
104 fsinf->vol_serial_number = tcon->vol_serial_number;
105 fsinf->vol_create_time = le64_to_cpu(tcon->vol_create_time);
106 fsinf->share_flags = tcon->share_flags;
107 fsinf->share_caps = le32_to_cpu(tcon->capabilities);
108 fsinf->sector_flags = tcon->ss_flags;
109 fsinf->optimal_sector_size = tcon->perf_sector_size;
110 fsinf->max_bytes_chunk = tcon->max_bytes_chunk;
111 fsinf->maximal_access = tcon->maximal_access;
112#endif /* SMB2 */
113 fsinf->cifs_posix_caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
114
115 if (copy_to_user(arg, fsinf, sizeof(struct smb_mnt_fs_info)))
116 rc = -EFAULT;
117
118 kfree(fsinf);
119 return rc;
120}
121
f9ddcca4 122long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
1da177e4 123{
496ad9aa 124 struct inode *inode = file_inode(filep);
1da177e4 125 int rc = -ENOTTY; /* strange error - but the precedent */
6d5786a3 126 unsigned int xid;
c81156dd 127 struct cifs_sb_info *cifs_sb;
ba00ba64 128 struct cifsFileInfo *pSMBFile = filep->private_data;
96daf2b0 129 struct cifs_tcon *tcon;
f654bac2 130 __u64 ExtAttrBits = 0;
61876395 131 __u64 caps;
f654bac2 132
6d5786a3 133 xid = get_xid();
f654bac2
SF
134
135 cifs_sb = CIFS_SB(inode->i_sb);
b0a752b5 136 cifs_dbg(FYI, "cifs ioctl 0x%x\n", command);
5fdae1f6 137 switch (command) {
36695673 138 case FS_IOC_GETFLAGS:
61876395
JL
139 if (pSMBFile == NULL)
140 break;
141 tcon = tlink_tcon(pSMBFile->tlink);
142 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
64a5cfa6 143#ifdef CONFIG_CIFS_POSIX
5fdae1f6 144 if (CIFS_UNIX_EXTATTR_CAP & caps) {
f10d9ba4 145 __u64 ExtAttrMask = 0;
4b4de76e
PS
146 rc = CIFSGetExtAttr(xid, tcon,
147 pSMBFile->fid.netfid,
148 &ExtAttrBits, &ExtAttrMask);
5fdae1f6 149 if (rc == 0)
f654bac2 150 rc = put_user(ExtAttrBits &
36695673 151 FS_FL_USER_VISIBLE,
f654bac2 152 (int __user *)arg);
64a5cfa6
SF
153 if (rc != EOPNOTSUPP)
154 break;
155 }
156#endif /* CONFIG_CIFS_POSIX */
157 rc = 0;
158 if (CIFS_I(inode)->cifsAttrs & ATTR_COMPRESSED) {
159 /* add in the compressed bit */
160 ExtAttrBits = FS_COMPR_FL;
161 rc = put_user(ExtAttrBits & FS_FL_USER_VISIBLE,
162 (int __user *)arg);
f654bac2
SF
163 }
164 break;
36695673 165 case FS_IOC_SETFLAGS:
61876395
JL
166 if (pSMBFile == NULL)
167 break;
168 tcon = tlink_tcon(pSMBFile->tlink);
169 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
64a5cfa6
SF
170
171 if (get_user(ExtAttrBits, (int __user *)arg)) {
172 rc = -EFAULT;
173 break;
174 }
175
176 /*
177 * if (CIFS_UNIX_EXTATTR_CAP & caps)
178 * rc = CIFSSetExtAttr(xid, tcon,
179 * pSMBFile->fid.netfid,
180 * extAttrBits,
181 * &ExtAttrMask);
182 * if (rc != EOPNOTSUPP)
183 * break;
184 */
185
186 /* Currently only flag we can set is compressed flag */
187 if ((ExtAttrBits & FS_COMPR_FL) == 0)
188 break;
189
190 /* Try to set compress flag */
191 if (tcon->ses->server->ops->set_compression) {
192 rc = tcon->ses->server->ops->set_compression(
193 xid, tcon, pSMBFile);
194 cifs_dbg(FYI, "set compress flag rc %d\n", rc);
f654bac2 195 }
f654bac2 196 break;
f19e84df 197 case CIFS_IOC_COPYCHUNK_FILE:
312bbc59 198 rc = cifs_ioctl_copychunk(xid, filep, arg);
41c1358e 199 break;
b3152e2c
SF
200 case CIFS_IOC_SET_INTEGRITY:
201 if (pSMBFile == NULL)
202 break;
203 tcon = tlink_tcon(pSMBFile->tlink);
204 if (tcon->ses->server->ops->set_integrity)
205 rc = tcon->ses->server->ops->set_integrity(xid,
206 tcon, pSMBFile);
207 else
208 rc = -EOPNOTSUPP;
209 break;
0de1f4c6
SF
210 case CIFS_IOC_GET_MNT_INFO:
211 tcon = tlink_tcon(pSMBFile->tlink);
212 rc = smb_mnt_get_fsinfo(xid, tcon, (void __user *)arg);
213 break;
834170c8
SF
214 case CIFS_ENUMERATE_SNAPSHOTS:
215 if (arg == 0) {
216 rc = -EINVAL;
217 goto cifs_ioc_exit;
218 }
219 tcon = tlink_tcon(pSMBFile->tlink);
220 if (tcon->ses->server->ops->enum_snapshots)
221 rc = tcon->ses->server->ops->enum_snapshots(xid, tcon,
222 pSMBFile, (void __user *)arg);
223 else
224 rc = -EOPNOTSUPP;
225 break;
1da177e4 226 default:
f96637be 227 cifs_dbg(FYI, "unsupported ioctl\n");
f28ac91b 228 break;
1da177e4 229 }
834170c8 230cifs_ioc_exit:
6d5786a3 231 free_xid(xid);
1da177e4 232 return rc;
5fdae1f6 233}