blob: 8b7898b7670f88c3ea9ec596129ef569eed183bd [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Steve Frenchf19e84d2013-11-24 21:53:17 -060035#define CIFS_IOCTL_MAGIC 0xCF
36#define CIFS_IOC_COPYCHUNK_FILE _IOW(CIFS_IOCTL_MAGIC, 3, int)
37
Steve French41c13582013-11-14 00:05:36 -060038static long cifs_ioctl_clone(unsigned int xid, struct file *dst_file,
39 unsigned long srcfd, u64 off, u64 len, u64 destoff)
40{
41 int rc;
42 struct cifsFileInfo *smb_file_target = dst_file->private_data;
43 struct inode *target_inode = file_inode(dst_file);
44 struct cifs_tcon *target_tcon;
45 struct fd src_file;
46 struct cifsFileInfo *smb_file_src;
47 struct inode *src_inode;
48 struct cifs_tcon *src_tcon;
49
50 cifs_dbg(FYI, "ioctl clone range\n");
51 /* the destination must be opened for writing */
52 if (!(dst_file->f_mode & FMODE_WRITE)) {
53 cifs_dbg(FYI, "file target not open for write\n");
54 return -EINVAL;
55 }
56
57 /* check if target volume is readonly and take reference */
58 rc = mnt_want_write_file(dst_file);
59 if (rc) {
60 cifs_dbg(FYI, "mnt_want_write failed with rc %d\n", rc);
61 return rc;
62 }
63
64 src_file = fdget(srcfd);
65 if (!src_file.file) {
66 rc = -EBADF;
67 goto out_drop_write;
68 }
69
70 if ((!src_file.file->private_data) || (!dst_file->private_data)) {
71 rc = -EBADF;
72 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
73 goto out_fput;
74 }
75
76 rc = -EXDEV;
77 smb_file_target = dst_file->private_data;
78 smb_file_src = src_file.file->private_data;
79 src_tcon = tlink_tcon(smb_file_src->tlink);
80 target_tcon = tlink_tcon(smb_file_target->tlink);
81
82 /* check if source and target are on same tree connection */
83 if (src_tcon != target_tcon) {
84 cifs_dbg(VFS, "file copy src and target on different volume\n");
85 goto out_fput;
86 }
87
Libo Chen2d4f84b2013-12-11 11:02:27 +080088 src_inode = file_inode(src_file.file);
Al Viro378ff1a2015-01-18 23:37:32 -050089 rc = -EINVAL;
90 if (S_ISDIR(src_inode->i_mode))
91 goto out_fput;
Steve French41c13582013-11-14 00:05:36 -060092
93 /*
94 * Note: cifs case is easier than btrfs since server responsible for
95 * checks for proper open modes and file type and if it wants
96 * server could even support copy of range where source = target
97 */
Al Viro378ff1a2015-01-18 23:37:32 -050098 lock_two_nondirectories(target_inode, src_inode);
Steve French41c13582013-11-14 00:05:36 -060099
100 /* determine range to clone */
101 rc = -EINVAL;
102 if (off + len > src_inode->i_size || off + len < off)
103 goto out_unlock;
104 if (len == 0)
105 len = src_inode->i_size - off;
106
107 cifs_dbg(FYI, "about to flush pages\n");
108 /* should we flush first and last page first */
109 truncate_inode_pages_range(&target_inode->i_data, destoff,
110 PAGE_CACHE_ALIGN(destoff + len)-1);
111
112 if (target_tcon->ses->server->ops->clone_range)
113 rc = target_tcon->ses->server->ops->clone_range(xid,
114 smb_file_src, smb_file_target, off, len, destoff);
115
116 /* force revalidate of size and timestamps of target file now
117 that target is updated on the server */
118 CIFS_I(target_inode)->time = 0;
119out_unlock:
120 /* although unlocking in the reverse order from locking is not
121 strictly necessary here it is a little cleaner to be consistent */
Al Viro378ff1a2015-01-18 23:37:32 -0500122 unlock_two_nondirectories(src_inode, target_inode);
Steve French41c13582013-11-14 00:05:36 -0600123out_fput:
124 fdput(src_file);
125out_drop_write:
126 mnt_drop_write_file(dst_file);
127 return rc;
128}
129
Steve Frenchf9ddcca2008-05-15 05:51:55 +0000130long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Al Viro496ad9a2013-01-23 17:07:38 -0500132 struct inode *inode = file_inode(filep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 int rc = -ENOTTY; /* strange error - but the precedent */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400134 unsigned int xid;
Steve Frenchc81156d2005-04-28 22:41:07 -0700135 struct cifs_sb_info *cifs_sb;
Jeff Laytonba00ba62010-09-20 16:01:31 -0700136 struct cifsFileInfo *pSMBFile = filep->private_data;
Steve French96daf2b2011-05-27 04:34:02 +0000137 struct cifs_tcon *tcon;
Steve Frenchf654bac2005-04-28 22:41:04 -0700138 __u64 ExtAttrBits = 0;
Jeff Layton61876392010-11-08 07:28:32 -0500139 __u64 caps;
Steve Frenchf654bac2005-04-28 22:41:04 -0700140
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400141 xid = get_xid();
Steve Frenchf654bac2005-04-28 22:41:04 -0700142
Joe Perchesf96637b2013-05-04 22:12:25 -0500143 cifs_dbg(FYI, "ioctl file %p cmd %u arg %lu\n", filep, command, arg);
Steve Frenchf28ac912005-04-28 22:41:07 -0700144
Steve Frenchf654bac2005-04-28 22:41:04 -0700145 cifs_sb = CIFS_SB(inode->i_sb);
Steve Frenchf654bac2005-04-28 22:41:04 -0700146
Steve French5fdae1f2007-06-05 18:30:44 +0000147 switch (command) {
David Howells36695672006-08-29 19:06:16 +0100148 case FS_IOC_GETFLAGS:
Jeff Layton61876392010-11-08 07:28:32 -0500149 if (pSMBFile == NULL)
150 break;
151 tcon = tlink_tcon(pSMBFile->tlink);
152 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French64a5cfa2013-10-14 15:31:32 -0500153#ifdef CONFIG_CIFS_POSIX
Steve French5fdae1f2007-06-05 18:30:44 +0000154 if (CIFS_UNIX_EXTATTR_CAP & caps) {
Steve Frenchf10d9ba2013-10-13 22:32:30 -0500155 __u64 ExtAttrMask = 0;
Pavel Shilovsky4b4de762012-09-18 16:20:26 -0700156 rc = CIFSGetExtAttr(xid, tcon,
157 pSMBFile->fid.netfid,
158 &ExtAttrBits, &ExtAttrMask);
Steve French5fdae1f2007-06-05 18:30:44 +0000159 if (rc == 0)
Steve Frenchf654bac2005-04-28 22:41:04 -0700160 rc = put_user(ExtAttrBits &
David Howells36695672006-08-29 19:06:16 +0100161 FS_FL_USER_VISIBLE,
Steve Frenchf654bac2005-04-28 22:41:04 -0700162 (int __user *)arg);
Steve French64a5cfa2013-10-14 15:31:32 -0500163 if (rc != EOPNOTSUPP)
164 break;
165 }
166#endif /* CONFIG_CIFS_POSIX */
167 rc = 0;
168 if (CIFS_I(inode)->cifsAttrs & ATTR_COMPRESSED) {
169 /* add in the compressed bit */
170 ExtAttrBits = FS_COMPR_FL;
171 rc = put_user(ExtAttrBits & FS_FL_USER_VISIBLE,
172 (int __user *)arg);
Steve Frenchf654bac2005-04-28 22:41:04 -0700173 }
174 break;
David Howells36695672006-08-29 19:06:16 +0100175 case FS_IOC_SETFLAGS:
Jeff Layton61876392010-11-08 07:28:32 -0500176 if (pSMBFile == NULL)
177 break;
178 tcon = tlink_tcon(pSMBFile->tlink);
179 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French64a5cfa2013-10-14 15:31:32 -0500180
181 if (get_user(ExtAttrBits, (int __user *)arg)) {
182 rc = -EFAULT;
183 break;
Steve Frenchf654bac2005-04-28 22:41:04 -0700184 }
Steve French64a5cfa2013-10-14 15:31:32 -0500185
186 /*
187 * if (CIFS_UNIX_EXTATTR_CAP & caps)
188 * rc = CIFSSetExtAttr(xid, tcon,
189 * pSMBFile->fid.netfid,
190 * extAttrBits,
191 * &ExtAttrMask);
192 * if (rc != EOPNOTSUPP)
193 * break;
194 */
195
196 /* Currently only flag we can set is compressed flag */
197 if ((ExtAttrBits & FS_COMPR_FL) == 0)
198 break;
199
200 /* Try to set compress flag */
201 if (tcon->ses->server->ops->set_compression) {
202 rc = tcon->ses->server->ops->set_compression(
203 xid, tcon, pSMBFile);
204 cifs_dbg(FYI, "set compress flag rc %d\n", rc);
205 }
Steve Frenchf654bac2005-04-28 22:41:04 -0700206 break;
Steve Frenchf19e84d2013-11-24 21:53:17 -0600207 case CIFS_IOC_COPYCHUNK_FILE:
Steve French41c13582013-11-14 00:05:36 -0600208 rc = cifs_ioctl_clone(xid, filep, arg, 0, 0, 0);
209 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 default:
Joe Perchesf96637b2013-05-04 22:12:25 -0500211 cifs_dbg(FYI, "unsupported ioctl\n");
Steve Frenchf28ac912005-04-28 22:41:07 -0700212 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
Steve Frenchf654bac2005-04-28 22:41:04 -0700214
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400215 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return rc;
Steve French5fdae1f2007-06-05 18:30:44 +0000217}