mm/memunmap: don't access uninitialized memmap in memunmap_pages()
[linux-2.6-block.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"
8d8b26e5 35#include "smb2proto.h"
02b16665 36#include <linux/btrfs.h>
1da177e4 37
f5b05d62
RS
38static long cifs_ioctl_query_info(unsigned int xid, struct file *filep,
39 unsigned long p)
40{
8d8b26e5
RS
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 unsigned char *path;
46 __le16 *utf16_path = NULL, root_path;
47 int rc = 0;
f5b05d62 48
8d8b26e5
RS
49 path = build_path_from_dentry(dentry);
50 if (path == NULL)
51 return -ENOMEM;
52
53 cifs_dbg(FYI, "%s %s\n", __func__, path);
54
55 if (!path[0]) {
56 root_path = 0;
57 utf16_path = &root_path;
58 } else {
59 utf16_path = cifs_convert_path_to_utf16(path + 1, cifs_sb);
60 if (!utf16_path) {
61 rc = -ENOMEM;
62 goto ici_exit;
63 }
64 }
f5b05d62
RS
65
66 if (tcon->ses->server->ops->ioctl_query_info)
8d8b26e5
RS
67 rc = tcon->ses->server->ops->ioctl_query_info(
68 xid, tcon, utf16_path,
69 filep->private_data ? 0 : 1, p);
f5b05d62 70 else
8d8b26e5
RS
71 rc = -EOPNOTSUPP;
72
73 ici_exit:
74 if (utf16_path != &root_path)
75 kfree(utf16_path);
76 kfree(path);
77 return rc;
f5b05d62
RS
78}
79
312bbc59 80static long cifs_ioctl_copychunk(unsigned int xid, struct file *dst_file,
04b38d60
CH
81 unsigned long srcfd)
82{
83 int rc;
84 struct fd src_file;
85 struct inode *src_inode;
86
312bbc59 87 cifs_dbg(FYI, "ioctl copychunk range\n");
04b38d60
CH
88 /* the destination must be opened for writing */
89 if (!(dst_file->f_mode & FMODE_WRITE)) {
90 cifs_dbg(FYI, "file target not open for write\n");
91 return -EINVAL;
92 }
93
94 /* check if target volume is readonly and take reference */
95 rc = mnt_want_write_file(dst_file);
96 if (rc) {
97 cifs_dbg(FYI, "mnt_want_write failed with rc %d\n", rc);
98 return rc;
99 }
100
101 src_file = fdget(srcfd);
102 if (!src_file.file) {
103 rc = -EBADF;
104 goto out_drop_write;
105 }
106
107 if (src_file.file->f_op->unlocked_ioctl != cifs_ioctl) {
108 rc = -EBADF;
109 cifs_dbg(VFS, "src file seems to be from a different filesystem type\n");
110 goto out_fput;
111 }
112
113 src_inode = file_inode(src_file.file);
114 rc = -EINVAL;
115 if (S_ISDIR(src_inode->i_mode))
116 goto out_fput;
117
620d8745
SP
118 rc = cifs_file_copychunk_range(xid, src_file.file, 0, dst_file, 0,
119 src_inode->i_size, 0);
7d0c234f
SP
120 if (rc > 0)
121 rc = 0;
41c1358e
SF
122out_fput:
123 fdput(src_file);
124out_drop_write:
125 mnt_drop_write_file(dst_file);
126 return rc;
127}
128
0de1f4c6
SF
129static long smb_mnt_get_fsinfo(unsigned int xid, struct cifs_tcon *tcon,
130 void __user *arg)
131{
132 int rc = 0;
133 struct smb_mnt_fs_info *fsinf;
134
135 fsinf = kzalloc(sizeof(struct smb_mnt_fs_info), GFP_KERNEL);
136 if (fsinf == NULL)
137 return -ENOMEM;
138
139 fsinf->version = 1;
140 fsinf->protocol_id = tcon->ses->server->vals->protocol_id;
141 fsinf->device_characteristics =
142 le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics);
143 fsinf->device_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
144 fsinf->fs_attributes = le32_to_cpu(tcon->fsAttrInfo.Attributes);
145 fsinf->max_path_component =
146 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength);
0de1f4c6
SF
147 fsinf->vol_serial_number = tcon->vol_serial_number;
148 fsinf->vol_create_time = le64_to_cpu(tcon->vol_create_time);
149 fsinf->share_flags = tcon->share_flags;
150 fsinf->share_caps = le32_to_cpu(tcon->capabilities);
151 fsinf->sector_flags = tcon->ss_flags;
152 fsinf->optimal_sector_size = tcon->perf_sector_size;
153 fsinf->max_bytes_chunk = tcon->max_bytes_chunk;
154 fsinf->maximal_access = tcon->maximal_access;
0de1f4c6
SF
155 fsinf->cifs_posix_caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
156
157 if (copy_to_user(arg, fsinf, sizeof(struct smb_mnt_fs_info)))
158 rc = -EFAULT;
159
160 kfree(fsinf);
161 return rc;
162}
163
f9ddcca4 164long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
1da177e4 165{
496ad9aa 166 struct inode *inode = file_inode(filep);
7e7db86c 167 struct smb3_key_debug_info pkey_inf;
1da177e4 168 int rc = -ENOTTY; /* strange error - but the precedent */
6d5786a3 169 unsigned int xid;
ba00ba64 170 struct cifsFileInfo *pSMBFile = filep->private_data;
96daf2b0 171 struct cifs_tcon *tcon;
f654bac2 172 __u64 ExtAttrBits = 0;
61876395 173 __u64 caps;
f654bac2 174
6d5786a3 175 xid = get_xid();
f654bac2 176
b0a752b5 177 cifs_dbg(FYI, "cifs ioctl 0x%x\n", command);
5fdae1f6 178 switch (command) {
36695673 179 case FS_IOC_GETFLAGS:
61876395
JL
180 if (pSMBFile == NULL)
181 break;
182 tcon = tlink_tcon(pSMBFile->tlink);
183 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
64a5cfa6 184#ifdef CONFIG_CIFS_POSIX
5fdae1f6 185 if (CIFS_UNIX_EXTATTR_CAP & caps) {
f10d9ba4 186 __u64 ExtAttrMask = 0;
4b4de76e
PS
187 rc = CIFSGetExtAttr(xid, tcon,
188 pSMBFile->fid.netfid,
189 &ExtAttrBits, &ExtAttrMask);
5fdae1f6 190 if (rc == 0)
f654bac2 191 rc = put_user(ExtAttrBits &
36695673 192 FS_FL_USER_VISIBLE,
f654bac2 193 (int __user *)arg);
64a5cfa6
SF
194 if (rc != EOPNOTSUPP)
195 break;
196 }
197#endif /* CONFIG_CIFS_POSIX */
198 rc = 0;
199 if (CIFS_I(inode)->cifsAttrs & ATTR_COMPRESSED) {
200 /* add in the compressed bit */
201 ExtAttrBits = FS_COMPR_FL;
202 rc = put_user(ExtAttrBits & FS_FL_USER_VISIBLE,
203 (int __user *)arg);
f654bac2
SF
204 }
205 break;
36695673 206 case FS_IOC_SETFLAGS:
61876395
JL
207 if (pSMBFile == NULL)
208 break;
209 tcon = tlink_tcon(pSMBFile->tlink);
210 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
64a5cfa6
SF
211
212 if (get_user(ExtAttrBits, (int __user *)arg)) {
213 rc = -EFAULT;
214 break;
215 }
216
217 /*
218 * if (CIFS_UNIX_EXTATTR_CAP & caps)
219 * rc = CIFSSetExtAttr(xid, tcon,
220 * pSMBFile->fid.netfid,
221 * extAttrBits,
222 * &ExtAttrMask);
223 * if (rc != EOPNOTSUPP)
224 * break;
225 */
226
227 /* Currently only flag we can set is compressed flag */
228 if ((ExtAttrBits & FS_COMPR_FL) == 0)
229 break;
230
231 /* Try to set compress flag */
232 if (tcon->ses->server->ops->set_compression) {
233 rc = tcon->ses->server->ops->set_compression(
234 xid, tcon, pSMBFile);
235 cifs_dbg(FYI, "set compress flag rc %d\n", rc);
f654bac2 236 }
f654bac2 237 break;
f19e84df 238 case CIFS_IOC_COPYCHUNK_FILE:
312bbc59 239 rc = cifs_ioctl_copychunk(xid, filep, arg);
41c1358e 240 break;
f5b05d62
RS
241 case CIFS_QUERY_INFO:
242 rc = cifs_ioctl_query_info(xid, filep, arg);
243 break;
b3152e2c
SF
244 case CIFS_IOC_SET_INTEGRITY:
245 if (pSMBFile == NULL)
246 break;
247 tcon = tlink_tcon(pSMBFile->tlink);
248 if (tcon->ses->server->ops->set_integrity)
249 rc = tcon->ses->server->ops->set_integrity(xid,
250 tcon, pSMBFile);
251 else
252 rc = -EOPNOTSUPP;
253 break;
0de1f4c6 254 case CIFS_IOC_GET_MNT_INFO:
d8a6e505
DD
255 if (pSMBFile == NULL)
256 break;
0de1f4c6
SF
257 tcon = tlink_tcon(pSMBFile->tlink);
258 rc = smb_mnt_get_fsinfo(xid, tcon, (void __user *)arg);
259 break;
834170c8 260 case CIFS_ENUMERATE_SNAPSHOTS:
6026685d
DD
261 if (pSMBFile == NULL)
262 break;
834170c8
SF
263 if (arg == 0) {
264 rc = -EINVAL;
265 goto cifs_ioc_exit;
266 }
267 tcon = tlink_tcon(pSMBFile->tlink);
268 if (tcon->ses->server->ops->enum_snapshots)
269 rc = tcon->ses->server->ops->enum_snapshots(xid, tcon,
270 pSMBFile, (void __user *)arg);
271 else
272 rc = -EOPNOTSUPP;
273 break;
7e7db86c
SF
274 case CIFS_DUMP_KEY:
275 if (pSMBFile == NULL)
276 break;
277 if (!capable(CAP_SYS_ADMIN)) {
278 rc = -EACCES;
279 break;
280 }
281
282 tcon = tlink_tcon(pSMBFile->tlink);
283 if (!smb3_encryption_required(tcon)) {
284 rc = -EOPNOTSUPP;
285 break;
286 }
287 pkey_inf.cipher_type =
288 le16_to_cpu(tcon->ses->server->cipher_type);
289 pkey_inf.Suid = tcon->ses->Suid;
290 memcpy(pkey_inf.auth_key, tcon->ses->auth_key.response,
291 16 /* SMB2_NTLMV2_SESSKEY_SIZE */);
292 memcpy(pkey_inf.smb3decryptionkey,
293 tcon->ses->smb3decryptionkey, SMB3_SIGN_KEY_SIZE);
294 memcpy(pkey_inf.smb3encryptionkey,
295 tcon->ses->smb3encryptionkey, SMB3_SIGN_KEY_SIZE);
296 if (copy_to_user((void __user *)arg, &pkey_inf,
297 sizeof(struct smb3_key_debug_info)))
298 rc = -EFAULT;
299 else
300 rc = 0;
301 break;
1da177e4 302 default:
f96637be 303 cifs_dbg(FYI, "unsupported ioctl\n");
f28ac91b 304 break;
1da177e4 305 }
834170c8 306cifs_ioc_exit:
6d5786a3 307 free_xid(xid);
1da177e4 308 return rc;
5fdae1f6 309}