4 * vfs operations that deal with io control
6 * Copyright (C) International Business Machines Corp., 2005,2013
7 * Author(s): Steve French (sfrench@us.ibm.com)
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.
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.
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
25 #include <linux/file.h>
26 #include <linux/mount.h>
28 #include <linux/pagemap.h>
31 #include "cifsproto.h"
32 #include "cifs_debug.h"
34 #include "cifs_ioctl.h"
35 #include <linux/btrfs.h>
37 static long cifs_ioctl_copychunk(unsigned int xid, struct file *dst_file,
42 struct inode *src_inode;
44 cifs_dbg(FYI, "ioctl copychunk range\n");
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");
51 /* check if target volume is readonly and take reference */
52 rc = mnt_want_write_file(dst_file);
54 cifs_dbg(FYI, "mnt_want_write failed with rc %d\n", rc);
58 src_file = fdget(srcfd);
64 if (src_file.file->f_op->unlocked_ioctl != cifs_ioctl) {
66 cifs_dbg(VFS, "src file seems to be from a different filesystem type\n");
70 src_inode = file_inode(src_file.file);
72 if (S_ISDIR(src_inode->i_mode))
75 rc = cifs_file_copychunk_range(xid, src_file.file, 0, dst_file, 0,
76 src_inode->i_size, 0);
82 mnt_drop_write_file(dst_file);
86 static long smb_mnt_get_fsinfo(unsigned int xid, struct cifs_tcon *tcon,
90 struct smb_mnt_fs_info *fsinf;
92 fsinf = kzalloc(sizeof(struct smb_mnt_fs_info), GFP_KERNEL);
97 fsinf->protocol_id = tcon->ses->server->vals->protocol_id;
98 fsinf->device_characteristics =
99 le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics);
100 fsinf->device_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
101 fsinf->fs_attributes = le32_to_cpu(tcon->fsAttrInfo.Attributes);
102 fsinf->max_path_component =
103 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength);
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 fsinf->cifs_posix_caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
114 if (copy_to_user(arg, fsinf, sizeof(struct smb_mnt_fs_info)))
121 long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
123 struct inode *inode = file_inode(filep);
124 int rc = -ENOTTY; /* strange error - but the precedent */
126 struct cifs_sb_info *cifs_sb;
127 struct cifsFileInfo *pSMBFile = filep->private_data;
128 struct cifs_tcon *tcon;
129 __u64 ExtAttrBits = 0;
134 cifs_sb = CIFS_SB(inode->i_sb);
135 cifs_dbg(FYI, "cifs ioctl 0x%x\n", command);
137 case FS_IOC_GETFLAGS:
138 if (pSMBFile == NULL)
140 tcon = tlink_tcon(pSMBFile->tlink);
141 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
142 #ifdef CONFIG_CIFS_POSIX
143 if (CIFS_UNIX_EXTATTR_CAP & caps) {
144 __u64 ExtAttrMask = 0;
145 rc = CIFSGetExtAttr(xid, tcon,
146 pSMBFile->fid.netfid,
147 &ExtAttrBits, &ExtAttrMask);
149 rc = put_user(ExtAttrBits &
152 if (rc != EOPNOTSUPP)
155 #endif /* CONFIG_CIFS_POSIX */
157 if (CIFS_I(inode)->cifsAttrs & ATTR_COMPRESSED) {
158 /* add in the compressed bit */
159 ExtAttrBits = FS_COMPR_FL;
160 rc = put_user(ExtAttrBits & FS_FL_USER_VISIBLE,
164 case FS_IOC_SETFLAGS:
165 if (pSMBFile == NULL)
167 tcon = tlink_tcon(pSMBFile->tlink);
168 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
170 if (get_user(ExtAttrBits, (int __user *)arg)) {
176 * if (CIFS_UNIX_EXTATTR_CAP & caps)
177 * rc = CIFSSetExtAttr(xid, tcon,
178 * pSMBFile->fid.netfid,
181 * if (rc != EOPNOTSUPP)
185 /* Currently only flag we can set is compressed flag */
186 if ((ExtAttrBits & FS_COMPR_FL) == 0)
189 /* Try to set compress flag */
190 if (tcon->ses->server->ops->set_compression) {
191 rc = tcon->ses->server->ops->set_compression(
192 xid, tcon, pSMBFile);
193 cifs_dbg(FYI, "set compress flag rc %d\n", rc);
196 case CIFS_IOC_COPYCHUNK_FILE:
197 rc = cifs_ioctl_copychunk(xid, filep, arg);
199 case CIFS_IOC_SET_INTEGRITY:
200 if (pSMBFile == NULL)
202 tcon = tlink_tcon(pSMBFile->tlink);
203 if (tcon->ses->server->ops->set_integrity)
204 rc = tcon->ses->server->ops->set_integrity(xid,
209 case CIFS_IOC_GET_MNT_INFO:
210 if (pSMBFile == NULL)
212 tcon = tlink_tcon(pSMBFile->tlink);
213 rc = smb_mnt_get_fsinfo(xid, tcon, (void __user *)arg);
215 case CIFS_ENUMERATE_SNAPSHOTS:
216 if (pSMBFile == NULL)
222 tcon = tlink_tcon(pSMBFile->tlink);
223 if (tcon->ses->server->ops->enum_snapshots)
224 rc = tcon->ses->server->ops->enum_snapshots(xid, tcon,
225 pSMBFile, (void __user *)arg);
230 cifs_dbg(FYI, "unsupported ioctl\n");