blob: 265c45fe4ea5e5246f5304480c2b4b66bf9d6c73 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/ioctl.c
3 *
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 *
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 */
Steve Frenchf654bac2005-04-28 22:41:04 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/fs.h>
Steve French41c13582013-11-14 00:05:36 -060025#include <linux/file.h>
26#include <linux/mount.h>
27#include <linux/mm.h>
28#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "cifspdu.h"
30#include "cifsglob.h"
31#include "cifsproto.h"
32#include "cifs_debug.h"
Steve Frenchc67593a2005-04-28 22:41:04 -070033#include "cifsfs.h"
Steve French0de1f4c2015-07-04 18:40:10 -050034#include "cifs_ioctl.h"
Steve French02b16662015-06-27 21:18:36 -070035#include <linux/btrfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Sachin Prabhu312bbc52017-04-04 02:12:04 -050037static long cifs_ioctl_copychunk(unsigned int xid, struct file *dst_file,
Christoph Hellwig04b38d62015-12-03 12:59:50 +010038 unsigned long srcfd)
Steve French41c13582013-11-14 00:05:36 -060039{
40 int rc;
Steve French41c13582013-11-14 00:05:36 -060041 struct fd src_file;
Steve French41c13582013-11-14 00:05:36 -060042 struct inode *src_inode;
Steve French41c13582013-11-14 00:05:36 -060043
Sachin Prabhu312bbc52017-04-04 02:12:04 -050044 cifs_dbg(FYI, "ioctl copychunk range\n");
Steve French41c13582013-11-14 00:05:36 -060045 /* 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
Jann Horn4c17a6d2015-09-11 16:27:27 +020064 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
Libo Chen2d4f84b2013-12-11 11:02:27 +080070 src_inode = file_inode(src_file.file);
Al Viro378ff1a2015-01-18 23:37:32 -050071 rc = -EINVAL;
72 if (S_ISDIR(src_inode->i_mode))
73 goto out_fput;
Steve French41c13582013-11-14 00:05:36 -060074
Sachin Prabhu620d8742017-02-10 16:03:51 +053075 rc = cifs_file_copychunk_range(xid, src_file.file, 0, dst_file, 0,
76 src_inode->i_size, 0);
Steve French41c13582013-11-14 00:05:36 -060077
Steve French41c13582013-11-14 00:05:36 -060078out_fput:
79 fdput(src_file);
80out_drop_write:
81 mnt_drop_write_file(dst_file);
82 return rc;
83}
84
Steve French0de1f4c2015-07-04 18:40:10 -050085static 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
Steve Frenchf9ddcca2008-05-15 05:51:55 +0000122long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Al Viro496ad9a2013-01-23 17:07:38 -0500124 struct inode *inode = file_inode(filep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 int rc = -ENOTTY; /* strange error - but the precedent */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400126 unsigned int xid;
Steve Frenchc81156d2005-04-28 22:41:07 -0700127 struct cifs_sb_info *cifs_sb;
Jeff Laytonba00ba62010-09-20 16:01:31 -0700128 struct cifsFileInfo *pSMBFile = filep->private_data;
Steve French96daf2b2011-05-27 04:34:02 +0000129 struct cifs_tcon *tcon;
Steve Frenchf654bac2005-04-28 22:41:04 -0700130 __u64 ExtAttrBits = 0;
Jeff Layton61876392010-11-08 07:28:32 -0500131 __u64 caps;
Steve Frenchf654bac2005-04-28 22:41:04 -0700132
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400133 xid = get_xid();
Steve Frenchf654bac2005-04-28 22:41:04 -0700134
135 cifs_sb = CIFS_SB(inode->i_sb);
Pavel Shilovskyb0a752b2016-11-16 15:17:15 -0800136 cifs_dbg(FYI, "cifs ioctl 0x%x\n", command);
Steve French5fdae1f2007-06-05 18:30:44 +0000137 switch (command) {
David Howells36695672006-08-29 19:06:16 +0100138 case FS_IOC_GETFLAGS:
Jeff Layton61876392010-11-08 07:28:32 -0500139 if (pSMBFile == NULL)
140 break;
141 tcon = tlink_tcon(pSMBFile->tlink);
142 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French64a5cfa2013-10-14 15:31:32 -0500143#ifdef CONFIG_CIFS_POSIX
Steve French5fdae1f2007-06-05 18:30:44 +0000144 if (CIFS_UNIX_EXTATTR_CAP & caps) {
Steve Frenchf10d9ba2013-10-13 22:32:30 -0500145 __u64 ExtAttrMask = 0;
Pavel Shilovsky4b4de762012-09-18 16:20:26 -0700146 rc = CIFSGetExtAttr(xid, tcon,
147 pSMBFile->fid.netfid,
148 &ExtAttrBits, &ExtAttrMask);
Steve French5fdae1f2007-06-05 18:30:44 +0000149 if (rc == 0)
Steve Frenchf654bac2005-04-28 22:41:04 -0700150 rc = put_user(ExtAttrBits &
David Howells36695672006-08-29 19:06:16 +0100151 FS_FL_USER_VISIBLE,
Steve Frenchf654bac2005-04-28 22:41:04 -0700152 (int __user *)arg);
Steve French64a5cfa2013-10-14 15:31:32 -0500153 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);
Steve Frenchf654bac2005-04-28 22:41:04 -0700163 }
164 break;
David Howells36695672006-08-29 19:06:16 +0100165 case FS_IOC_SETFLAGS:
Jeff Layton61876392010-11-08 07:28:32 -0500166 if (pSMBFile == NULL)
167 break;
168 tcon = tlink_tcon(pSMBFile->tlink);
169 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French64a5cfa2013-10-14 15:31:32 -0500170
171 if (get_user(ExtAttrBits, (int __user *)arg)) {
172 rc = -EFAULT;
173 break;
Steve Frenchf654bac2005-04-28 22:41:04 -0700174 }
Steve French64a5cfa2013-10-14 15:31:32 -0500175
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);
195 }
Steve Frenchf654bac2005-04-28 22:41:04 -0700196 break;
Steve Frenchf19e84d2013-11-24 21:53:17 -0600197 case CIFS_IOC_COPYCHUNK_FILE:
Sachin Prabhu312bbc52017-04-04 02:12:04 -0500198 rc = cifs_ioctl_copychunk(xid, filep, arg);
Steve French41c13582013-11-14 00:05:36 -0600199 break;
Steve Frenchb3152e22015-06-24 03:17:02 -0500200 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;
Steve French0de1f4c2015-07-04 18:40:10 -0500210 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;
Steve French834170c2016-09-30 21:14:26 -0500214 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 default:
Joe Perchesf96637b2013-05-04 22:12:25 -0500227 cifs_dbg(FYI, "unsupported ioctl\n");
Steve Frenchf28ac912005-04-28 22:41:07 -0700228 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
Steve French834170c2016-09-30 21:14:26 -0500230cifs_ioc_exit:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400231 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return rc;
Steve French5fdae1f2007-06-05 18:30:44 +0000233}