blob: fa9ef8d902b523880819ecfd7cb2275f4cbda34a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/inode.c
3 *
Steve Frenchf19159d2010-04-21 04:12:10 +00004 * Copyright (C) International Business Machines Corp., 2002,2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 * the GNU Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/stat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/pagemap.h>
25#include <asm/div64.h>
26#include "cifsfs.h"
27#include "cifspdu.h"
28#include "cifsglob.h"
29#include "cifsproto.h"
30#include "cifs_debug.h"
31#include "cifs_fs_sb.h"
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +053032#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Christoph Hellwig70eff552008-02-15 20:55:05 +000034
David Howells01c64fe2011-01-14 18:45:47 +000035static void cifs_set_ops(struct inode *inode)
Christoph Hellwig70eff552008-02-15 20:55:05 +000036{
37 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
38
39 switch (inode->i_mode & S_IFMT) {
40 case S_IFREG:
41 inode->i_op = &cifs_file_inode_ops;
42 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
43 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
44 inode->i_fop = &cifs_file_direct_nobrl_ops;
45 else
46 inode->i_fop = &cifs_file_direct_ops;
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +030047 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO) {
48 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
49 inode->i_fop = &cifs_file_strict_nobrl_ops;
50 else
51 inode->i_fop = &cifs_file_strict_ops;
Christoph Hellwig70eff552008-02-15 20:55:05 +000052 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
53 inode->i_fop = &cifs_file_nobrl_ops;
54 else { /* not direct, send byte range locks */
55 inode->i_fop = &cifs_file_ops;
56 }
57
Christoph Hellwig70eff552008-02-15 20:55:05 +000058 /* check if server can support readpages */
Jeff Layton0d424ad2010-09-20 16:01:35 -070059 if (cifs_sb_master_tcon(cifs_sb)->ses->server->maxBuf <
Christoph Hellwig70eff552008-02-15 20:55:05 +000060 PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE)
61 inode->i_data.a_ops = &cifs_addr_ops_smallbuf;
62 else
63 inode->i_data.a_ops = &cifs_addr_ops;
64 break;
65 case S_IFDIR:
Steve Frenchbc5b6e22008-03-11 21:07:48 +000066#ifdef CONFIG_CIFS_DFS_UPCALL
David Howells01c64fe2011-01-14 18:45:47 +000067 if (IS_AUTOMOUNT(inode)) {
Igor Mammedov79626702008-03-09 03:44:18 +000068 inode->i_op = &cifs_dfs_referral_inode_operations;
69 } else {
Steve Frenchbc5b6e22008-03-11 21:07:48 +000070#else /* NO DFS support, treat as a directory */
71 {
72#endif
Igor Mammedov79626702008-03-09 03:44:18 +000073 inode->i_op = &cifs_dir_inode_ops;
74 inode->i_fop = &cifs_dir_ops;
75 }
Christoph Hellwig70eff552008-02-15 20:55:05 +000076 break;
77 case S_IFLNK:
78 inode->i_op = &cifs_symlink_inode_ops;
79 break;
80 default:
81 init_special_inode(inode, inode->i_mode, inode->i_rdev);
82 break;
83 }
84}
85
Jeff Laytondf2cf172010-02-12 07:44:16 -050086/* check inode attributes against fattr. If they don't match, tag the
87 * inode for cache invalidation
88 */
89static void
90cifs_revalidate_cache(struct inode *inode, struct cifs_fattr *fattr)
91{
92 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
93
Joe Perchesf96637b2013-05-04 22:12:25 -050094 cifs_dbg(FYI, "%s: revalidating inode %llu\n",
95 __func__, cifs_i->uniqueid);
Jeff Laytondf2cf172010-02-12 07:44:16 -050096
97 if (inode->i_state & I_NEW) {
Joe Perchesf96637b2013-05-04 22:12:25 -050098 cifs_dbg(FYI, "%s: inode %llu is new\n",
99 __func__, cifs_i->uniqueid);
Jeff Laytondf2cf172010-02-12 07:44:16 -0500100 return;
101 }
102
103 /* don't bother with revalidation if we have an oplock */
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400104 if (CIFS_CACHE_READ(cifs_i)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500105 cifs_dbg(FYI, "%s: inode %llu is oplocked\n",
106 __func__, cifs_i->uniqueid);
Jeff Laytondf2cf172010-02-12 07:44:16 -0500107 return;
108 }
109
110 /* revalidate if mtime or size have changed */
111 if (timespec_equal(&inode->i_mtime, &fattr->cf_mtime) &&
112 cifs_i->server_eof == fattr->cf_eof) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500113 cifs_dbg(FYI, "%s: inode %llu is unchanged\n",
114 __func__, cifs_i->uniqueid);
Jeff Laytondf2cf172010-02-12 07:44:16 -0500115 return;
116 }
117
Joe Perchesf96637b2013-05-04 22:12:25 -0500118 cifs_dbg(FYI, "%s: invalidating inode %llu mapping\n",
119 __func__, cifs_i->uniqueid);
Jeff Laytonaff8d5c2014-04-30 09:31:45 -0400120 set_bit(CIFS_INO_INVALID_MAPPING, &cifs_i->flags);
Jeff Laytondf2cf172010-02-12 07:44:16 -0500121}
122
Jim McDonough74d290d2013-09-21 10:36:10 -0500123/*
124 * copy nlink to the inode, unless it wasn't provided. Provide
125 * sane values if we don't have an existing one and none was provided
126 */
127static void
128cifs_nlink_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr)
129{
130 /*
131 * if we're in a situation where we can't trust what we
132 * got from the server (readdir, some non-unix cases)
133 * fake reasonable values
134 */
135 if (fattr->cf_flags & CIFS_FATTR_UNKNOWN_NLINK) {
136 /* only provide fake values on a new inode */
137 if (inode->i_state & I_NEW) {
138 if (fattr->cf_cifsattrs & ATTR_DIRECTORY)
139 set_nlink(inode, 2);
140 else
141 set_nlink(inode, 1);
142 }
143 return;
144 }
145
146 /* we trust the server, so update it */
147 set_nlink(inode, fattr->cf_nlink);
148}
149
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400150/* populate an inode with info from a cifs_fattr struct */
151void
152cifs_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr)
Christoph Hellwig75f12982008-02-25 20:25:21 +0000153{
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400154 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400155 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Christoph Hellwig75f12982008-02-25 20:25:21 +0000156
Jeff Laytondf2cf172010-02-12 07:44:16 -0500157 cifs_revalidate_cache(inode, fattr);
158
Steve Frenchb7ca6922012-08-03 08:43:01 -0500159 spin_lock(&inode->i_lock);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400160 inode->i_atime = fattr->cf_atime;
161 inode->i_mtime = fattr->cf_mtime;
162 inode->i_ctime = fattr->cf_ctime;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400163 inode->i_rdev = fattr->cf_rdev;
Jim McDonough74d290d2013-09-21 10:36:10 -0500164 cifs_nlink_fattr_to_inode(inode, fattr);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400165 inode->i_uid = fattr->cf_uid;
166 inode->i_gid = fattr->cf_gid;
167
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400168 /* if dynperm is set, don't clobber existing mode */
169 if (inode->i_state & I_NEW ||
170 !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM))
171 inode->i_mode = fattr->cf_mode;
172
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400173 cifs_i->cifsAttrs = fattr->cf_cifsattrs;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400174
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400175 if (fattr->cf_flags & CIFS_FATTR_NEED_REVAL)
176 cifs_i->time = 0;
177 else
178 cifs_i->time = jiffies;
179
Jeff Laytonaff8d5c2014-04-30 09:31:45 -0400180 if (fattr->cf_flags & CIFS_FATTR_DELETE_PENDING)
181 set_bit(CIFS_INO_DELETE_PENDING, &cifs_i->flags);
182 else
183 clear_bit(CIFS_INO_DELETE_PENDING, &cifs_i->flags);
Christoph Hellwig75f12982008-02-25 20:25:21 +0000184
Jeff Layton835a36c2010-02-10 16:21:33 -0500185 cifs_i->server_eof = fattr->cf_eof;
Christoph Hellwig75f12982008-02-25 20:25:21 +0000186 /*
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400187 * Can't safely change the file size here if the client is writing to
188 * it due to potential races.
Christoph Hellwig75f12982008-02-25 20:25:21 +0000189 */
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400190 if (is_size_safe_to_change(cifs_i, fattr->cf_eof)) {
191 i_size_write(inode, fattr->cf_eof);
Christoph Hellwig75f12982008-02-25 20:25:21 +0000192
193 /*
194 * i_blocks is not related to (i_size / i_blksize),
195 * but instead 512 byte (2**9) size is required for
196 * calculating num blocks.
197 */
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400198 inode->i_blocks = (512 - 1 + fattr->cf_bytes) >> 9;
Christoph Hellwig75f12982008-02-25 20:25:21 +0000199 }
200 spin_unlock(&inode->i_lock);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400201
David Howells01c64fe2011-01-14 18:45:47 +0000202 if (fattr->cf_flags & CIFS_FATTR_DFS_REFERRAL)
203 inode->i_flags |= S_AUTOMOUNT;
Jeff Laytonc2b93e02013-05-07 11:28:31 -0400204 if (inode->i_state & I_NEW)
205 cifs_set_ops(inode);
Christoph Hellwig75f12982008-02-25 20:25:21 +0000206}
207
Jeff Layton4065c802010-05-17 07:18:58 -0400208void
209cifs_fill_uniqueid(struct super_block *sb, struct cifs_fattr *fattr)
210{
211 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
212
213 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)
214 return;
215
216 fattr->cf_uniqueid = iunique(sb, ROOT_I);
217}
218
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400219/* Fill a cifs_fattr struct with info from FILE_UNIX_BASIC_INFO. */
220void
221cifs_unix_basic_to_fattr(struct cifs_fattr *fattr, FILE_UNIX_BASIC_INFO *info,
222 struct cifs_sb_info *cifs_sb)
223{
224 memset(fattr, 0, sizeof(*fattr));
225 fattr->cf_uniqueid = le64_to_cpu(info->UniqueId);
226 fattr->cf_bytes = le64_to_cpu(info->NumOfBytes);
227 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
228
229 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
230 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastModificationTime);
231 fattr->cf_ctime = cifs_NTtimeToUnix(info->LastStatusChange);
232 fattr->cf_mode = le64_to_cpu(info->Permissions);
233
234 /*
235 * Since we set the inode type below we need to mask off
236 * to avoid strange results if bits set above.
237 */
238 fattr->cf_mode &= ~S_IFMT;
239 switch (le32_to_cpu(info->Type)) {
240 case UNIX_FILE:
241 fattr->cf_mode |= S_IFREG;
242 fattr->cf_dtype = DT_REG;
243 break;
244 case UNIX_SYMLINK:
245 fattr->cf_mode |= S_IFLNK;
246 fattr->cf_dtype = DT_LNK;
247 break;
248 case UNIX_DIR:
249 fattr->cf_mode |= S_IFDIR;
250 fattr->cf_dtype = DT_DIR;
251 break;
252 case UNIX_CHARDEV:
253 fattr->cf_mode |= S_IFCHR;
254 fattr->cf_dtype = DT_CHR;
255 fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor),
256 le64_to_cpu(info->DevMinor) & MINORMASK);
257 break;
258 case UNIX_BLOCKDEV:
259 fattr->cf_mode |= S_IFBLK;
260 fattr->cf_dtype = DT_BLK;
261 fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor),
262 le64_to_cpu(info->DevMinor) & MINORMASK);
263 break;
264 case UNIX_FIFO:
265 fattr->cf_mode |= S_IFIFO;
266 fattr->cf_dtype = DT_FIFO;
267 break;
268 case UNIX_SOCKET:
269 fattr->cf_mode |= S_IFSOCK;
270 fattr->cf_dtype = DT_SOCK;
271 break;
272 default:
273 /* safest to call it a file if we do not know */
274 fattr->cf_mode |= S_IFREG;
275 fattr->cf_dtype = DT_REG;
Joe Perchesf96637b2013-05-04 22:12:25 -0500276 cifs_dbg(FYI, "unknown type %d\n", le32_to_cpu(info->Type));
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400277 break;
278 }
279
Eric W. Biederman46bbc252013-02-05 23:55:44 -0800280 fattr->cf_uid = cifs_sb->mnt_uid;
281 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)) {
282 u64 id = le64_to_cpu(info->Uid);
Eric W. Biederman4a2c8cf2013-02-06 01:53:25 -0800283 if (id < ((uid_t)-1)) {
284 kuid_t uid = make_kuid(&init_user_ns, id);
285 if (uid_valid(uid))
286 fattr->cf_uid = uid;
287 }
Eric W. Biederman46bbc252013-02-05 23:55:44 -0800288 }
289
290 fattr->cf_gid = cifs_sb->mnt_gid;
291 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)) {
292 u64 id = le64_to_cpu(info->Gid);
Eric W. Biederman4a2c8cf2013-02-06 01:53:25 -0800293 if (id < ((gid_t)-1)) {
294 kgid_t gid = make_kgid(&init_user_ns, id);
295 if (gid_valid(gid))
296 fattr->cf_gid = gid;
297 }
Eric W. Biederman46bbc252013-02-05 23:55:44 -0800298 }
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400299
300 fattr->cf_nlink = le64_to_cpu(info->Nlinks);
301}
Steve Frenchb9a32602008-05-20 21:52:32 +0000302
303/*
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400304 * Fill a cifs_fattr struct with fake inode info.
305 *
306 * Needed to setup cifs_fattr data for the directory which is the
307 * junction to the new submount (ie to setup the fake directory
308 * which represents a DFS referral).
Steve Frenchb9a32602008-05-20 21:52:32 +0000309 */
Steve Frenchf1230c92009-07-22 23:13:01 +0000310static void
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400311cifs_create_dfs_fattr(struct cifs_fattr *fattr, struct super_block *sb)
Steve French0e4bbde2008-05-20 19:50:46 +0000312{
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400313 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Steve French0e4bbde2008-05-20 19:50:46 +0000314
Joe Perchesf96637b2013-05-04 22:12:25 -0500315 cifs_dbg(FYI, "creating fake fattr for DFS referral\n");
Steve French0e4bbde2008-05-20 19:50:46 +0000316
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400317 memset(fattr, 0, sizeof(*fattr));
318 fattr->cf_mode = S_IFDIR | S_IXUGO | S_IRWXU;
319 fattr->cf_uid = cifs_sb->mnt_uid;
320 fattr->cf_gid = cifs_sb->mnt_gid;
321 fattr->cf_atime = CURRENT_TIME;
322 fattr->cf_ctime = CURRENT_TIME;
323 fattr->cf_mtime = CURRENT_TIME;
324 fattr->cf_nlink = 2;
325 fattr->cf_flags |= CIFS_FATTR_DFS_REFERRAL;
Steve French0e4bbde2008-05-20 19:50:46 +0000326}
327
Pavel Shilovsky4ad65042012-09-18 16:20:26 -0700328static int
329cifs_get_file_info_unix(struct file *filp)
Jeff Laytonabab0952010-02-12 07:44:18 -0500330{
331 int rc;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400332 unsigned int xid;
Jeff Laytonabab0952010-02-12 07:44:18 -0500333 FILE_UNIX_BASIC_INFO find_data;
334 struct cifs_fattr fattr;
Al Viro496ad9a2013-01-23 17:07:38 -0500335 struct inode *inode = file_inode(filp);
Jeff Laytonabab0952010-02-12 07:44:18 -0500336 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Joe Perchesc21dfb62010-07-12 13:50:14 -0700337 struct cifsFileInfo *cfile = filp->private_data;
Steve French96daf2b2011-05-27 04:34:02 +0000338 struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
Jeff Laytonabab0952010-02-12 07:44:18 -0500339
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400340 xid = get_xid();
Pavel Shilovsky4b4de762012-09-18 16:20:26 -0700341 rc = CIFSSMBUnixQFileInfo(xid, tcon, cfile->fid.netfid, &find_data);
Jeff Laytonabab0952010-02-12 07:44:18 -0500342 if (!rc) {
343 cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb);
344 } else if (rc == -EREMOTE) {
345 cifs_create_dfs_fattr(&fattr, inode->i_sb);
346 rc = 0;
347 }
348
349 cifs_fattr_to_inode(inode, &fattr);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400350 free_xid(xid);
Jeff Laytonabab0952010-02-12 07:44:18 -0500351 return rc;
352}
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354int cifs_get_inode_info_unix(struct inode **pinode,
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400355 const unsigned char *full_path,
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400356 struct super_block *sb, unsigned int xid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400358 int rc;
Steve French0e4bbde2008-05-20 19:50:46 +0000359 FILE_UNIX_BASIC_INFO find_data;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400360 struct cifs_fattr fattr;
Steve French96daf2b2011-05-27 04:34:02 +0000361 struct cifs_tcon *tcon;
Jeff Layton7ffec372010-09-29 19:51:11 -0400362 struct tcon_link *tlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Joe Perchesf96637b2013-05-04 22:12:25 -0500365 cifs_dbg(FYI, "Getting info on %s\n", full_path);
Igor Mammedov79626702008-03-09 03:44:18 +0000366
Jeff Layton7ffec372010-09-29 19:51:11 -0400367 tlink = cifs_sb_tlink(cifs_sb);
368 if (IS_ERR(tlink))
369 return PTR_ERR(tlink);
370 tcon = tlink_tcon(tlink);
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /* could have done a find first instead but this returns more info */
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400373 rc = CIFSSMBUnixQPathInfo(xid, tcon, full_path, &find_data,
Steve French737b7582005-04-28 22:41:06 -0700374 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
375 CIFS_MOUNT_MAP_SPECIAL_CHR);
Jeff Layton7ffec372010-09-29 19:51:11 -0400376 cifs_put_tlink(tlink);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400377
378 if (!rc) {
379 cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb);
380 } else if (rc == -EREMOTE) {
381 cifs_create_dfs_fattr(&fattr, sb);
Jeff Laytone911d0c2008-07-12 13:47:59 -0700382 rc = 0;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400383 } else {
384 return rc;
Steve French0e4bbde2008-05-20 19:50:46 +0000385 }
386
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200387 /* check for Minshall+French symlinks */
388 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) {
Sachin Prabhucb084b12013-11-25 17:09:50 +0000389 int tmprc = check_mf_symlink(xid, tcon, cifs_sb, &fattr,
390 full_path);
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200391 if (tmprc)
Sachin Prabhucb084b12013-11-25 17:09:50 +0000392 cifs_dbg(FYI, "check_mf_symlink: %d\n", tmprc);
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200393 }
394
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400395 if (*pinode == NULL) {
396 /* get new inode */
Jeff Layton4065c802010-05-17 07:18:58 -0400397 cifs_fill_uniqueid(sb, &fattr);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400398 *pinode = cifs_iget(sb, &fattr);
399 if (!*pinode)
400 rc = -ENOMEM;
401 } else {
402 /* we already have inode, update it */
403 cifs_fattr_to_inode(*pinode, &fattr);
404 }
Steve French0e4bbde2008-05-20 19:50:46 +0000405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return rc;
407}
408
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400409static int
Pavel Shilovsky0360d602014-01-16 15:53:35 +0400410cifs_sfu_type(struct cifs_fattr *fattr, const char *path,
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400411 struct cifs_sb_info *cifs_sb, unsigned int xid)
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800412{
413 int rc;
Steve French4b18f2a2008-04-29 00:06:05 +0000414 int oplock = 0;
Jeff Layton7ffec372010-09-29 19:51:11 -0400415 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +0000416 struct cifs_tcon *tcon;
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +0400417 struct cifs_fid fid;
418 struct cifs_open_parms oparms;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000419 struct cifs_io_parms io_parms;
Steve French86c96b42005-11-18 20:25:31 -0800420 char buf[24];
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800421 unsigned int bytes_read;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000422 char *pbuf;
Pavel Shilovsky0360d602014-01-16 15:53:35 +0400423 int buf_type = CIFS_NO_BUFFER;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800424
425 pbuf = buf;
426
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400427 fattr->cf_mode &= ~S_IFMT;
428
429 if (fattr->cf_eof == 0) {
430 fattr->cf_mode |= S_IFIFO;
431 fattr->cf_dtype = DT_FIFO;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800432 return 0;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400433 } else if (fattr->cf_eof < 8) {
434 fattr->cf_mode |= S_IFREG;
435 fattr->cf_dtype = DT_REG;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800436 return -EINVAL; /* EOPNOTSUPP? */
437 }
Steve French50c2f752007-07-13 00:33:32 +0000438
Jeff Layton7ffec372010-09-29 19:51:11 -0400439 tlink = cifs_sb_tlink(cifs_sb);
440 if (IS_ERR(tlink))
441 return PTR_ERR(tlink);
442 tcon = tlink_tcon(tlink);
443
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +0400444 oparms.tcon = tcon;
445 oparms.cifs_sb = cifs_sb;
446 oparms.desired_access = GENERIC_READ;
447 oparms.create_options = CREATE_NOT_DIR;
448 oparms.disposition = FILE_OPEN;
449 oparms.path = path;
450 oparms.fid = &fid;
451 oparms.reconnect = false;
452
453 rc = CIFS_open(xid, &oparms, &oplock, NULL);
Pavel Shilovsky0360d602014-01-16 15:53:35 +0400454 if (rc) {
455 cifs_put_tlink(tlink);
456 return rc;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800457 }
Pavel Shilovsky0360d602014-01-16 15:53:35 +0400458
459 /* Read header */
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +0400460 io_parms.netfid = fid.netfid;
Pavel Shilovsky0360d602014-01-16 15:53:35 +0400461 io_parms.pid = current->tgid;
462 io_parms.tcon = tcon;
463 io_parms.offset = 0;
464 io_parms.length = 24;
465
466 rc = CIFSSMBRead(xid, &io_parms, &bytes_read, &pbuf, &buf_type);
467 if ((rc == 0) && (bytes_read >= 8)) {
468 if (memcmp("IntxBLK", pbuf, 8) == 0) {
469 cifs_dbg(FYI, "Block device\n");
470 fattr->cf_mode |= S_IFBLK;
471 fattr->cf_dtype = DT_BLK;
472 if (bytes_read == 24) {
473 /* we have enough to decode dev num */
474 __u64 mjr; /* major */
475 __u64 mnr; /* minor */
476 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
477 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
478 fattr->cf_rdev = MKDEV(mjr, mnr);
479 }
480 } else if (memcmp("IntxCHR", pbuf, 8) == 0) {
481 cifs_dbg(FYI, "Char device\n");
482 fattr->cf_mode |= S_IFCHR;
483 fattr->cf_dtype = DT_CHR;
484 if (bytes_read == 24) {
485 /* we have enough to decode dev num */
486 __u64 mjr; /* major */
487 __u64 mnr; /* minor */
488 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
489 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
490 fattr->cf_rdev = MKDEV(mjr, mnr);
491 }
492 } else if (memcmp("IntxLNK", pbuf, 7) == 0) {
493 cifs_dbg(FYI, "Symlink\n");
494 fattr->cf_mode |= S_IFLNK;
495 fattr->cf_dtype = DT_LNK;
496 } else {
497 fattr->cf_mode |= S_IFREG; /* file? */
498 fattr->cf_dtype = DT_REG;
499 rc = -EOPNOTSUPP;
500 }
501 } else {
502 fattr->cf_mode |= S_IFREG; /* then it is a file */
503 fattr->cf_dtype = DT_REG;
504 rc = -EOPNOTSUPP; /* or some unknown SFU type */
505 }
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +0400506 CIFSSMBClose(xid, tcon, fid.netfid);
Jeff Layton7ffec372010-09-29 19:51:11 -0400507 cifs_put_tlink(tlink);
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800508 return rc;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800509}
510
Steve French9e294f12005-11-17 16:59:21 -0800511#define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */
512
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400513/*
514 * Fetch mode bits as provided by SFU.
515 *
516 * FIXME: Doesn't this clobber the type bit we got from cifs_sfu_type ?
517 */
518static int cifs_sfu_mode(struct cifs_fattr *fattr, const unsigned char *path,
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400519 struct cifs_sb_info *cifs_sb, unsigned int xid)
Steve French9e294f12005-11-17 16:59:21 -0800520{
Steve French3020a1f2005-11-18 11:31:10 -0800521#ifdef CONFIG_CIFS_XATTR
Steve French9e294f12005-11-17 16:59:21 -0800522 ssize_t rc;
523 char ea_value[4];
524 __u32 mode;
Jeff Layton7ffec372010-09-29 19:51:11 -0400525 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +0000526 struct cifs_tcon *tcon;
Steve French9e294f12005-11-17 16:59:21 -0800527
Jeff Layton7ffec372010-09-29 19:51:11 -0400528 tlink = cifs_sb_tlink(cifs_sb);
529 if (IS_ERR(tlink))
530 return PTR_ERR(tlink);
531 tcon = tlink_tcon(tlink);
532
Steve Frenchd979f3b2014-02-01 23:27:18 -0600533 if (tcon->ses->server->ops->query_all_EAs == NULL) {
534 cifs_put_tlink(tlink);
535 return -EOPNOTSUPP;
536 }
537
538 rc = tcon->ses->server->ops->query_all_EAs(xid, tcon, path,
539 "SETFILEBITS", ea_value, 4 /* size of buf */,
540 cifs_sb->local_nls,
541 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Jeff Layton7ffec372010-09-29 19:51:11 -0400542 cifs_put_tlink(tlink);
Steve French4523cc32007-04-30 20:13:06 +0000543 if (rc < 0)
Steve French9e294f12005-11-17 16:59:21 -0800544 return (int)rc;
545 else if (rc > 3) {
546 mode = le32_to_cpu(*((__le32 *)ea_value));
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400547 fattr->cf_mode &= ~SFBITS_MASK;
Joe Perchesf96637b2013-05-04 22:12:25 -0500548 cifs_dbg(FYI, "special bits 0%o org mode 0%o\n",
549 mode, fattr->cf_mode);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400550 fattr->cf_mode = (mode & SFBITS_MASK) | fattr->cf_mode;
Joe Perchesf96637b2013-05-04 22:12:25 -0500551 cifs_dbg(FYI, "special mode bits 0%o\n", mode);
Steve French9e294f12005-11-17 16:59:21 -0800552 }
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400553
554 return 0;
Steve French3020a1f2005-11-18 11:31:10 -0800555#else
556 return -EOPNOTSUPP;
557#endif
Steve French9e294f12005-11-17 16:59:21 -0800558}
559
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400560/* Fill a cifs_fattr struct with info from FILE_ALL_INFO */
Steve Frenchf1230c92009-07-22 23:13:01 +0000561static void
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400562cifs_all_info_to_fattr(struct cifs_fattr *fattr, FILE_ALL_INFO *info,
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400563 struct cifs_sb_info *cifs_sb, bool adjust_tz,
564 bool symlink)
Steve Frenchb9a32602008-05-20 21:52:32 +0000565{
Steve French96daf2b2011-05-27 04:34:02 +0000566 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Jeff Layton0d424ad2010-09-20 16:01:35 -0700567
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400568 memset(fattr, 0, sizeof(*fattr));
569 fattr->cf_cifsattrs = le32_to_cpu(info->Attributes);
570 if (info->DeletePending)
571 fattr->cf_flags |= CIFS_FATTR_DELETE_PENDING;
Steve Frenchb9a32602008-05-20 21:52:32 +0000572
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400573 if (info->LastAccessTime)
574 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
575 else
576 fattr->cf_atime = CURRENT_TIME;
577
578 fattr->cf_ctime = cifs_NTtimeToUnix(info->ChangeTime);
579 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastWriteTime);
580
581 if (adjust_tz) {
Jeff Layton0d424ad2010-09-20 16:01:35 -0700582 fattr->cf_ctime.tv_sec += tcon->ses->server->timeAdj;
583 fattr->cf_mtime.tv_sec += tcon->ses->server->timeAdj;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400584 }
585
586 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
587 fattr->cf_bytes = le64_to_cpu(info->AllocationSize);
Jeff Layton20054bd2011-01-07 11:30:27 -0500588 fattr->cf_createtime = le64_to_cpu(info->CreationTime);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400589
Jim McDonough74d290d2013-09-21 10:36:10 -0500590 fattr->cf_nlink = le32_to_cpu(info->NumberOfLinks);
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400591
592 if (symlink) {
593 fattr->cf_mode = S_IFLNK;
594 fattr->cf_dtype = DT_LNK;
595 } else if (fattr->cf_cifsattrs & ATTR_DIRECTORY) {
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400596 fattr->cf_mode = S_IFDIR | cifs_sb->mnt_dir_mode;
597 fattr->cf_dtype = DT_DIR;
Pavel Shilovsky6de2ce42012-02-17 16:13:30 +0300598 /*
599 * Server can return wrong NumberOfLinks value for directories
600 * when Unix extensions are disabled - fake it.
601 */
Jim McDonough74d290d2013-09-21 10:36:10 -0500602 if (!tcon->unix_ext)
603 fattr->cf_flags |= CIFS_FATTR_UNKNOWN_NLINK;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400604 } else {
605 fattr->cf_mode = S_IFREG | cifs_sb->mnt_file_mode;
606 fattr->cf_dtype = DT_REG;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400607
Jeff Laytond0c280d2009-07-09 01:46:44 -0400608 /* clear write bits if ATTR_READONLY is set */
609 if (fattr->cf_cifsattrs & ATTR_READONLY)
610 fattr->cf_mode &= ~(S_IWUGO);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400611
Jim McDonough74d290d2013-09-21 10:36:10 -0500612 /*
613 * Don't accept zero nlink from non-unix servers unless
614 * delete is pending. Instead mark it as unknown.
615 */
616 if ((fattr->cf_nlink < 1) && !tcon->unix_ext &&
617 !info->DeletePending) {
618 cifs_dbg(1, "bogus file nlink value %u\n",
Steve French6658b9f2013-07-04 14:38:48 -0500619 fattr->cf_nlink);
Jim McDonough74d290d2013-09-21 10:36:10 -0500620 fattr->cf_flags |= CIFS_FATTR_UNKNOWN_NLINK;
Steve French6658b9f2013-07-04 14:38:48 -0500621 }
Pavel Shilovsky6de2ce42012-02-17 16:13:30 +0300622 }
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400623
624 fattr->cf_uid = cifs_sb->mnt_uid;
625 fattr->cf_gid = cifs_sb->mnt_gid;
Steve Frenchb9a32602008-05-20 21:52:32 +0000626}
627
Pavel Shilovsky4ad65042012-09-18 16:20:26 -0700628static int
629cifs_get_file_info(struct file *filp)
Jeff Laytonabab0952010-02-12 07:44:18 -0500630{
631 int rc;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400632 unsigned int xid;
Jeff Laytonabab0952010-02-12 07:44:18 -0500633 FILE_ALL_INFO find_data;
634 struct cifs_fattr fattr;
Al Viro496ad9a2013-01-23 17:07:38 -0500635 struct inode *inode = file_inode(filp);
Jeff Laytonabab0952010-02-12 07:44:18 -0500636 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Joe Perchesc21dfb62010-07-12 13:50:14 -0700637 struct cifsFileInfo *cfile = filp->private_data;
Steve French96daf2b2011-05-27 04:34:02 +0000638 struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
Pavel Shilovsky4ad65042012-09-18 16:20:26 -0700639 struct TCP_Server_Info *server = tcon->ses->server;
640
641 if (!server->ops->query_file_info)
642 return -ENOSYS;
Jeff Laytonabab0952010-02-12 07:44:18 -0500643
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400644 xid = get_xid();
Pavel Shilovsky4ad65042012-09-18 16:20:26 -0700645 rc = server->ops->query_file_info(xid, tcon, &cfile->fid, &find_data);
Pavel Shilovsky42274bb2011-10-22 14:37:50 +0400646 switch (rc) {
647 case 0:
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400648 cifs_all_info_to_fattr(&fattr, &find_data, cifs_sb, false,
649 false);
Pavel Shilovsky42274bb2011-10-22 14:37:50 +0400650 break;
651 case -EREMOTE:
652 cifs_create_dfs_fattr(&fattr, inode->i_sb);
653 rc = 0;
654 break;
655 case -EOPNOTSUPP:
656 case -EINVAL:
Jeff Laytonabab0952010-02-12 07:44:18 -0500657 /*
658 * FIXME: legacy server -- fall back to path-based call?
Steve Frenchff2157132010-03-09 20:30:42 +0000659 * for now, just skip revalidating and mark inode for
660 * immediate reval.
661 */
Jeff Laytonabab0952010-02-12 07:44:18 -0500662 rc = 0;
663 CIFS_I(inode)->time = 0;
Pavel Shilovsky42274bb2011-10-22 14:37:50 +0400664 default:
Jeff Laytonabab0952010-02-12 07:44:18 -0500665 goto cgfi_exit;
Pavel Shilovsky42274bb2011-10-22 14:37:50 +0400666 }
Jeff Laytonabab0952010-02-12 07:44:18 -0500667
668 /*
669 * don't bother with SFU junk here -- just mark inode as needing
670 * revalidation.
671 */
Jeff Laytonabab0952010-02-12 07:44:18 -0500672 fattr.cf_uniqueid = CIFS_I(inode)->uniqueid;
673 fattr.cf_flags |= CIFS_FATTR_NEED_REVAL;
674 cifs_fattr_to_inode(inode, &fattr);
675cgfi_exit:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400676 free_xid(xid);
Jeff Laytonabab0952010-02-12 07:44:18 -0500677 return rc;
678}
679
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400680int
681cifs_get_inode_info(struct inode **inode, const char *full_path,
682 FILE_ALL_INFO *data, struct super_block *sb, int xid,
Steve French42eacf92014-02-10 14:08:16 -0600683 const struct cifs_fid *fid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500685 bool validinum = false;
686 __u16 srchflgs;
687 int rc = 0, tmprc = ENOSYS;
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400688 struct cifs_tcon *tcon;
689 struct TCP_Server_Info *server;
Jeff Layton7ffec372010-09-29 19:51:11 -0400690 struct tcon_link *tlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 char *buf = NULL;
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400693 bool adjust_tz = false;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400694 struct cifs_fattr fattr;
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500695 struct cifs_search_info *srchinf = NULL;
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400696 bool symlink = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Jeff Layton7ffec372010-09-29 19:51:11 -0400698 tlink = cifs_sb_tlink(cifs_sb);
699 if (IS_ERR(tlink))
700 return PTR_ERR(tlink);
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400701 tcon = tlink_tcon(tlink);
702 server = tcon->ses->server;
Jeff Layton7ffec372010-09-29 19:51:11 -0400703
Joe Perchesf96637b2013-05-04 22:12:25 -0500704 cifs_dbg(FYI, "Getting info on %s\n", full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400706 if ((data == NULL) && (*inode != NULL)) {
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400707 if (CIFS_CACHE_READ(CIFS_I(*inode))) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500708 cifs_dbg(FYI, "No need to revalidate cached inode sizes\n");
Jeff Layton7ffec372010-09-29 19:51:11 -0400709 goto cgii_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711 }
712
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400713 /* if inode info is not passed, get it from server */
714 if (data == NULL) {
715 if (!server->ops->query_path_info) {
716 rc = -ENOSYS;
717 goto cgii_exit;
718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
Jeff Layton7ffec372010-09-29 19:51:11 -0400720 if (buf == NULL) {
721 rc = -ENOMEM;
722 goto cgii_exit;
723 }
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400724 data = (FILE_ALL_INFO *)buf;
725 rc = server->ops->query_path_info(xid, tcon, cifs_sb, full_path,
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400726 data, &adjust_tz, &symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400728
729 if (!rc) {
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400730 cifs_all_info_to_fattr(&fattr, data, cifs_sb, adjust_tz,
731 symlink);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400732 } else if (rc == -EREMOTE) {
733 cifs_create_dfs_fattr(&fattr, sb);
Steve Frenchb9a32602008-05-20 21:52:32 +0000734 rc = 0;
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500735 } else if (rc == -EACCES && backup_cred(cifs_sb)) {
736 srchinf = kzalloc(sizeof(struct cifs_search_info),
737 GFP_KERNEL);
738 if (srchinf == NULL) {
739 rc = -ENOMEM;
740 goto cgii_exit;
741 }
742
743 srchinf->endOfSearch = false;
744 srchinf->info_level = SMB_FIND_FILE_ID_FULL_DIR_INFO;
745
746 srchflgs = CIFS_SEARCH_CLOSE_ALWAYS |
747 CIFS_SEARCH_CLOSE_AT_END |
748 CIFS_SEARCH_BACKUP_SEARCH;
749
750 rc = CIFSFindFirst(xid, tcon, full_path,
751 cifs_sb, NULL, srchflgs, srchinf, false);
752 if (!rc) {
753 data =
754 (FILE_ALL_INFO *)srchinf->srch_entries_start;
755
756 cifs_dir_info_to_fattr(&fattr,
757 (FILE_DIRECTORY_INFO *)data, cifs_sb);
758 fattr.cf_uniqueid = le64_to_cpu(
759 ((SEARCH_ID_FULL_DIR_INFO *)data)->UniqueId);
760 validinum = true;
761
762 cifs_buf_release(srchinf->ntwrk_buf_start);
763 }
764 kfree(srchinf);
765 } else
Igor Mammedov79626702008-03-09 03:44:18 +0000766 goto cgii_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400768 /*
769 * If an inode wasn't passed in, then get the inode number
770 *
771 * Is an i_ino of zero legal? Can we use that to check if the server
772 * supports returning inode numbers? Are there other sanity checks we
773 * can use to ensure that the server is really filling in that field?
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400774 */
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400775 if (*inode == NULL) {
Steve Frenchb9a32602008-05-20 21:52:32 +0000776 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500777 if (validinum == false) {
778 if (server->ops->get_srv_inum)
779 tmprc = server->ops->get_srv_inum(xid,
780 tcon, cifs_sb, full_path,
781 &fattr.cf_uniqueid, data);
782 if (tmprc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500783 cifs_dbg(FYI, "GetSrvInodeNum rc %d\n",
784 tmprc);
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500785 fattr.cf_uniqueid = iunique(sb, ROOT_I);
786 cifs_autodisable_serverino(cifs_sb);
787 }
Jeff Layton132ac7b2009-02-10 07:33:57 -0500788 }
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500789 } else
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400790 fattr.cf_uniqueid = iunique(sb, ROOT_I);
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500791 } else
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400792 fattr.cf_uniqueid = CIFS_I(*inode)->uniqueid;
Steve Frenchb9a32602008-05-20 21:52:32 +0000793
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400794 /* query for SFU type info if supported and needed */
795 if (fattr.cf_cifsattrs & ATTR_SYSTEM &&
796 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
797 tmprc = cifs_sfu_type(&fattr, full_path, cifs_sb, xid);
798 if (tmprc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500799 cifs_dbg(FYI, "cifs_sfu_type failed: %d\n", tmprc);
Steve Frenchb9a32602008-05-20 21:52:32 +0000800 }
Steve Frenchb9a32602008-05-20 21:52:32 +0000801
Jeff Layton79df1ba2010-12-06 12:52:08 -0500802#ifdef CONFIG_CIFS_ACL
Steve Frenchb9a32602008-05-20 21:52:32 +0000803 /* fill in 0777 bits from ACL */
804 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400805 rc = cifs_acl_to_fattr(cifs_sb, &fattr, *inode, full_path, fid);
Shirish Pargaonkar78415d22010-11-27 11:37:26 -0600806 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500807 cifs_dbg(FYI, "%s: Getting ACL failed with error: %d\n",
808 __func__, rc);
Shirish Pargaonkar78415d22010-11-27 11:37:26 -0600809 goto cgii_exit;
810 }
Steve Frenchb9a32602008-05-20 21:52:32 +0000811 }
Jeff Layton79df1ba2010-12-06 12:52:08 -0500812#endif /* CONFIG_CIFS_ACL */
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400813
814 /* fill in remaining high mode bits e.g. SUID, VTX */
815 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)
816 cifs_sfu_mode(&fattr, full_path, cifs_sb, xid);
817
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200818 /* check for Minshall+French symlinks */
819 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) {
Sachin Prabhucb084b12013-11-25 17:09:50 +0000820 tmprc = check_mf_symlink(xid, tcon, cifs_sb, &fattr,
821 full_path);
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200822 if (tmprc)
Sachin Prabhucb084b12013-11-25 17:09:50 +0000823 cifs_dbg(FYI, "check_mf_symlink: %d\n", tmprc);
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200824 }
825
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400826 if (!*inode) {
827 *inode = cifs_iget(sb, &fattr);
828 if (!*inode)
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400829 rc = -ENOMEM;
830 } else {
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400831 cifs_fattr_to_inode(*inode, &fattr);
Steve Frenchb9a32602008-05-20 21:52:32 +0000832 }
833
Igor Mammedov79626702008-03-09 03:44:18 +0000834cgii_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 kfree(buf);
Jeff Layton7ffec372010-09-29 19:51:11 -0400836 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return rc;
838}
839
Steve French7f8ed422007-09-28 22:28:55 +0000840static const struct inode_operations cifs_ipc_inode_ops = {
841 .lookup = cifs_lookup,
842};
843
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400844static int
845cifs_find_inode(struct inode *inode, void *opaque)
846{
847 struct cifs_fattr *fattr = (struct cifs_fattr *) opaque;
848
Jeff Laytonf30b9c12010-07-19 18:00:17 -0400849 /* don't match inode with different uniqueid */
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400850 if (CIFS_I(inode)->uniqueid != fattr->cf_uniqueid)
851 return 0;
852
Jeff Layton20054bd2011-01-07 11:30:27 -0500853 /* use createtime like an i_generation field */
854 if (CIFS_I(inode)->createtime != fattr->cf_createtime)
855 return 0;
856
Jeff Laytonf30b9c12010-07-19 18:00:17 -0400857 /* don't match inode of different type */
858 if ((inode->i_mode & S_IFMT) != (fattr->cf_mode & S_IFMT))
859 return 0;
860
Jeff Layton5acfec22010-08-02 17:43:54 -0400861 /* if it's not a directory or has no dentries, then flag it */
Al Virob3d9b7a2012-06-09 13:51:19 -0400862 if (S_ISDIR(inode->i_mode) && !hlist_empty(&inode->i_dentry))
Jeff Layton3d694382010-05-11 14:59:55 -0400863 fattr->cf_flags |= CIFS_FATTR_INO_COLLISION;
Jeff Layton3d694382010-05-11 14:59:55 -0400864
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400865 return 1;
866}
867
868static int
869cifs_init_inode(struct inode *inode, void *opaque)
870{
871 struct cifs_fattr *fattr = (struct cifs_fattr *) opaque;
872
873 CIFS_I(inode)->uniqueid = fattr->cf_uniqueid;
Jeff Layton20054bd2011-01-07 11:30:27 -0500874 CIFS_I(inode)->createtime = fattr->cf_createtime;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400875 return 0;
876}
877
Jeff Layton5acfec22010-08-02 17:43:54 -0400878/*
879 * walk dentry list for an inode and report whether it has aliases that
880 * are hashed. We use this to determine if a directory inode can actually
881 * be used.
882 */
883static bool
884inode_has_hashed_dentries(struct inode *inode)
885{
886 struct dentry *dentry;
887
Nick Piggin873feea2011-01-07 17:50:06 +1100888 spin_lock(&inode->i_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800889 hlist_for_each_entry(dentry, &inode->i_dentry, d_alias) {
Jeff Layton5acfec22010-08-02 17:43:54 -0400890 if (!d_unhashed(dentry) || IS_ROOT(dentry)) {
Nick Piggin873feea2011-01-07 17:50:06 +1100891 spin_unlock(&inode->i_lock);
Jeff Layton5acfec22010-08-02 17:43:54 -0400892 return true;
893 }
894 }
Nick Piggin873feea2011-01-07 17:50:06 +1100895 spin_unlock(&inode->i_lock);
Jeff Layton5acfec22010-08-02 17:43:54 -0400896 return false;
897}
898
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400899/* Given fattrs, get a corresponding inode */
900struct inode *
901cifs_iget(struct super_block *sb, struct cifs_fattr *fattr)
902{
903 unsigned long hash;
904 struct inode *inode;
905
Jeff Layton3d694382010-05-11 14:59:55 -0400906retry_iget5_locked:
Joe Perchesf96637b2013-05-04 22:12:25 -0500907 cifs_dbg(FYI, "looking for uniqueid=%llu\n", fattr->cf_uniqueid);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400908
909 /* hash down to 32-bits on 32-bit arch */
910 hash = cifs_uniqueid_to_ino_t(fattr->cf_uniqueid);
911
912 inode = iget5_locked(sb, hash, cifs_find_inode, cifs_init_inode, fattr);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400913 if (inode) {
Jeff Layton5acfec22010-08-02 17:43:54 -0400914 /* was there a potentially problematic inode collision? */
Jeff Layton3d694382010-05-11 14:59:55 -0400915 if (fattr->cf_flags & CIFS_FATTR_INO_COLLISION) {
Jeff Layton3d694382010-05-11 14:59:55 -0400916 fattr->cf_flags &= ~CIFS_FATTR_INO_COLLISION;
Jeff Layton5acfec22010-08-02 17:43:54 -0400917
918 if (inode_has_hashed_dentries(inode)) {
919 cifs_autodisable_serverino(CIFS_SB(sb));
920 iput(inode);
921 fattr->cf_uniqueid = iunique(sb, ROOT_I);
922 goto retry_iget5_locked;
923 }
Jeff Layton3d694382010-05-11 14:59:55 -0400924 }
925
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400926 cifs_fattr_to_inode(inode, fattr);
927 if (sb->s_flags & MS_NOATIME)
928 inode->i_flags |= S_NOATIME | S_NOCMTIME;
929 if (inode->i_state & I_NEW) {
930 inode->i_ino = hash;
Jeff Layton522440e2010-09-29 09:49:54 -0400931 if (S_ISREG(inode->i_mode))
932 inode->i_data.backing_dev_info = sb->s_bdi;
Steve French0ccd4802010-07-16 04:31:02 +0000933#ifdef CONFIG_CIFS_FSCACHE
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530934 /* initialize per-inode cache cookie pointer */
935 CIFS_I(inode)->fscache = NULL;
Steve French0ccd4802010-07-16 04:31:02 +0000936#endif
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400937 unlock_new_inode(inode);
938 }
939 }
940
941 return inode;
942}
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944/* gets root inode */
Shirish Pargaonkar9b6763e2011-02-21 23:56:59 -0600945struct inode *cifs_root_iget(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400947 unsigned int xid;
Jeff Layton0d424ad2010-09-20 16:01:35 -0700948 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400949 struct inode *inode = NULL;
David Howellsce634ab2008-02-07 00:15:33 -0800950 long rc;
Steve French96daf2b2011-05-27 04:34:02 +0000951 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
David Howellsce634ab2008-02-07 00:15:33 -0800952
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400953 xid = get_xid();
Jeff Layton0d424ad2010-09-20 16:01:35 -0700954 if (tcon->unix_ext)
Steve Frenchf87d39d2011-05-27 03:50:55 +0000955 rc = cifs_get_inode_info_unix(&inode, "", sb, xid);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400956 else
Steve Frenchf87d39d2011-05-27 03:50:55 +0000957 rc = cifs_get_inode_info(&inode, "", NULL, sb, xid, NULL);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400958
Oskar Schirmera7851ce2010-11-10 21:06:13 +0000959 if (!inode) {
960 inode = ERR_PTR(rc);
961 goto out;
962 }
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400963
Steve French0ccd4802010-07-16 04:31:02 +0000964#ifdef CONFIG_CIFS_FSCACHE
Suresh Jayaramand03382c2010-07-05 18:12:27 +0530965 /* populate tcon->resource_id */
Jeff Layton0d424ad2010-09-20 16:01:35 -0700966 tcon->resource_id = CIFS_I(inode)->uniqueid;
Steve French0ccd4802010-07-16 04:31:02 +0000967#endif
Suresh Jayaramand03382c2010-07-05 18:12:27 +0530968
Jeff Layton0d424ad2010-09-20 16:01:35 -0700969 if (rc && tcon->ipc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500970 cifs_dbg(FYI, "ipc connection - fake read inode\n");
Steve Frenchb7ca6922012-08-03 08:43:01 -0500971 spin_lock(&inode->i_lock);
Steve French7f8ed422007-09-28 22:28:55 +0000972 inode->i_mode |= S_IFDIR;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200973 set_nlink(inode, 2);
Steve French7f8ed422007-09-28 22:28:55 +0000974 inode->i_op = &cifs_ipc_inode_ops;
975 inode->i_fop = &simple_dir_operations;
976 inode->i_uid = cifs_sb->mnt_uid;
977 inode->i_gid = cifs_sb->mnt_gid;
Steve Frenchb7ca6922012-08-03 08:43:01 -0500978 spin_unlock(&inode->i_lock);
Steve Frenchad661332008-08-12 14:14:40 +0000979 } else if (rc) {
David Howellsce634ab2008-02-07 00:15:33 -0800980 iget_failed(inode);
Oskar Schirmera7851ce2010-11-10 21:06:13 +0000981 inode = ERR_PTR(rc);
Steve French7f8ed422007-09-28 22:28:55 +0000982 }
983
Oskar Schirmera7851ce2010-11-10 21:06:13 +0000984out:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400985 /* can not call macro free_xid here since in a void func
David Howellsce634ab2008-02-07 00:15:33 -0800986 * TODO: This is no longer true
987 */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400988 _free_xid(xid);
David Howellsce634ab2008-02-07 00:15:33 -0800989 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
Pavel Shilovskyed6875e2012-09-18 16:20:25 -0700992int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400993cifs_set_file_info(struct inode *inode, struct iattr *attrs, unsigned int xid,
Pavel Shilovskyed6875e2012-09-18 16:20:25 -0700994 char *full_path, __u32 dosattr)
Steve French388e57b2008-09-16 23:50:58 +0000995{
Steve French388e57b2008-09-16 23:50:58 +0000996 bool set_time = false;
Steve French388e57b2008-09-16 23:50:58 +0000997 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Pavel Shilovsky6bdf6db2012-09-18 16:20:32 -0700998 struct TCP_Server_Info *server;
Steve French388e57b2008-09-16 23:50:58 +0000999 FILE_BASIC_INFO info_buf;
1000
Steve French1adcb712009-02-25 14:19:56 +00001001 if (attrs == NULL)
1002 return -EINVAL;
1003
Pavel Shilovsky6bdf6db2012-09-18 16:20:32 -07001004 server = cifs_sb_master_tcon(cifs_sb)->ses->server;
1005 if (!server->ops->set_file_info)
1006 return -ENOSYS;
1007
Steve French388e57b2008-09-16 23:50:58 +00001008 if (attrs->ia_valid & ATTR_ATIME) {
1009 set_time = true;
1010 info_buf.LastAccessTime =
1011 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_atime));
1012 } else
1013 info_buf.LastAccessTime = 0;
1014
1015 if (attrs->ia_valid & ATTR_MTIME) {
1016 set_time = true;
1017 info_buf.LastWriteTime =
1018 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_mtime));
1019 } else
1020 info_buf.LastWriteTime = 0;
1021
1022 /*
1023 * Samba throws this field away, but windows may actually use it.
1024 * Do not set ctime unless other time stamps are changed explicitly
1025 * (i.e. by utimes()) since we would then have a mix of client and
1026 * server times.
1027 */
1028 if (set_time && (attrs->ia_valid & ATTR_CTIME)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001029 cifs_dbg(FYI, "CIFS - CTIME changed\n");
Steve French388e57b2008-09-16 23:50:58 +00001030 info_buf.ChangeTime =
1031 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_ctime));
1032 } else
1033 info_buf.ChangeTime = 0;
1034
1035 info_buf.CreationTime = 0; /* don't change */
1036 info_buf.Attributes = cpu_to_le32(dosattr);
1037
Pavel Shilovsky6bdf6db2012-09-18 16:20:32 -07001038 return server->ops->set_file_info(inode, full_path, &info_buf, xid);
Steve French388e57b2008-09-16 23:50:58 +00001039}
1040
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001041/*
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001042 * Open the given file (if it isn't already), set the DELETE_ON_CLOSE bit
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001043 * and rename it to a random name that hopefully won't conflict with
1044 * anything else.
1045 */
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001046int
1047cifs_rename_pending_delete(const char *full_path, struct dentry *dentry,
1048 const unsigned int xid)
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001049{
1050 int oplock = 0;
1051 int rc;
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001052 struct cifs_fid fid;
1053 struct cifs_open_parms oparms;
Steve French32709582008-10-20 00:44:19 +00001054 struct inode *inode = dentry->d_inode;
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001055 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
1056 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04001057 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +00001058 struct cifs_tcon *tcon;
Steve French32709582008-10-20 00:44:19 +00001059 __u32 dosattr, origattr;
1060 FILE_BASIC_INFO *info_buf = NULL;
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001061
Jeff Layton7ffec372010-09-29 19:51:11 -04001062 tlink = cifs_sb_tlink(cifs_sb);
1063 if (IS_ERR(tlink))
1064 return PTR_ERR(tlink);
1065 tcon = tlink_tcon(tlink);
1066
Sachin Prabhuc483a982013-03-05 19:25:56 +00001067 /*
1068 * We cannot rename the file if the server doesn't support
1069 * CAP_INFOLEVEL_PASSTHRU
1070 */
1071 if (!(tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)) {
1072 rc = -EBUSY;
1073 goto out;
1074 }
1075
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001076 oparms.tcon = tcon;
1077 oparms.cifs_sb = cifs_sb;
1078 oparms.desired_access = DELETE | FILE_WRITE_ATTRIBUTES;
1079 oparms.create_options = CREATE_NOT_DIR;
1080 oparms.disposition = FILE_OPEN;
1081 oparms.path = full_path;
1082 oparms.fid = &fid;
1083 oparms.reconnect = false;
1084
1085 rc = CIFS_open(xid, &oparms, &oplock, NULL);
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001086 if (rc != 0)
1087 goto out;
1088
Steve French32709582008-10-20 00:44:19 +00001089 origattr = cifsInode->cifsAttrs;
1090 if (origattr == 0)
1091 origattr |= ATTR_NORMAL;
1092
1093 dosattr = origattr & ~ATTR_READONLY;
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001094 if (dosattr == 0)
1095 dosattr |= ATTR_NORMAL;
1096 dosattr |= ATTR_HIDDEN;
1097
Steve French32709582008-10-20 00:44:19 +00001098 /* set ATTR_HIDDEN and clear ATTR_READONLY, but only if needed */
1099 if (dosattr != origattr) {
1100 info_buf = kzalloc(sizeof(*info_buf), GFP_KERNEL);
1101 if (info_buf == NULL) {
1102 rc = -ENOMEM;
1103 goto out_close;
1104 }
1105 info_buf->Attributes = cpu_to_le32(dosattr);
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001106 rc = CIFSSMBSetFileInfo(xid, tcon, info_buf, fid.netfid,
Steve French32709582008-10-20 00:44:19 +00001107 current->tgid);
1108 /* although we would like to mark the file hidden
1109 if that fails we will still try to rename it */
Sachin Prabhu72d282d2013-03-05 19:25:55 +00001110 if (!rc)
Steve French32709582008-10-20 00:44:19 +00001111 cifsInode->cifsAttrs = dosattr;
1112 else
1113 dosattr = origattr; /* since not able to change them */
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001114 }
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001115
Jeff Laytondd1db2d2008-10-16 19:27:12 -04001116 /* rename the file */
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001117 rc = CIFSSMBRenameOpenFile(xid, tcon, fid.netfid, NULL,
1118 cifs_sb->local_nls,
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001119 cifs_sb->mnt_cifs_flags &
1120 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French32709582008-10-20 00:44:19 +00001121 if (rc != 0) {
Sachin Prabhu47c78f42013-03-11 13:08:49 +00001122 rc = -EBUSY;
Steve French32709582008-10-20 00:44:19 +00001123 goto undo_setattr;
1124 }
Jeff Layton6d22f092008-09-23 11:48:35 -04001125
Steve French32709582008-10-20 00:44:19 +00001126 /* try to set DELETE_ON_CLOSE */
Jeff Laytonaff8d5c2014-04-30 09:31:45 -04001127 if (!test_bit(CIFS_INO_DELETE_PENDING, &cifsInode->flags)) {
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001128 rc = CIFSSMBSetFileDisposition(xid, tcon, true, fid.netfid,
Steve French32709582008-10-20 00:44:19 +00001129 current->tgid);
1130 /*
1131 * some samba versions return -ENOENT when we try to set the
1132 * file disposition here. Likely a samba bug, but work around
1133 * it for now. This means that some cifsXXX files may hang
1134 * around after they shouldn't.
1135 *
1136 * BB: remove this hack after more servers have the fix
1137 */
1138 if (rc == -ENOENT)
1139 rc = 0;
1140 else if (rc != 0) {
Sachin Prabhu47c78f42013-03-11 13:08:49 +00001141 rc = -EBUSY;
Steve French32709582008-10-20 00:44:19 +00001142 goto undo_rename;
1143 }
Jeff Laytonaff8d5c2014-04-30 09:31:45 -04001144 set_bit(CIFS_INO_DELETE_PENDING, &cifsInode->flags);
Steve French32709582008-10-20 00:44:19 +00001145 }
Jeff Layton7ce86d52008-09-24 11:32:59 -04001146
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001147out_close:
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001148 CIFSSMBClose(xid, tcon, fid.netfid);
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001149out:
Steve French32709582008-10-20 00:44:19 +00001150 kfree(info_buf);
Jeff Layton7ffec372010-09-29 19:51:11 -04001151 cifs_put_tlink(tlink);
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001152 return rc;
Steve French32709582008-10-20 00:44:19 +00001153
1154 /*
1155 * reset everything back to the original state. Don't bother
1156 * dealing with errors here since we can't do anything about
1157 * them anyway.
1158 */
1159undo_rename:
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001160 CIFSSMBRenameOpenFile(xid, tcon, fid.netfid, dentry->d_name.name,
Steve French32709582008-10-20 00:44:19 +00001161 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
1162 CIFS_MOUNT_MAP_SPECIAL_CHR);
1163undo_setattr:
1164 if (dosattr != origattr) {
1165 info_buf->Attributes = cpu_to_le32(origattr);
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001166 if (!CIFSSMBSetFileInfo(xid, tcon, info_buf, fid.netfid,
Steve French32709582008-10-20 00:44:19 +00001167 current->tgid))
1168 cifsInode->cifsAttrs = origattr;
1169 }
1170
1171 goto out_close;
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001172}
1173
Steve Frenchb7ca6922012-08-03 08:43:01 -05001174/* copied from fs/nfs/dir.c with small changes */
1175static void
1176cifs_drop_nlink(struct inode *inode)
1177{
1178 spin_lock(&inode->i_lock);
1179 if (inode->i_nlink > 0)
1180 drop_nlink(inode);
1181 spin_unlock(&inode->i_lock);
1182}
Steve Frenchff694522009-04-20 19:45:13 +00001183
1184/*
1185 * If dentry->d_inode is null (usually meaning the cached dentry
1186 * is a negative dentry) then we would attempt a standard SMB delete, but
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001187 * if that fails we can not attempt the fall back mechanisms on EACCESS
1188 * but will return the EACCESS to the caller. Note that the VFS does not call
Steve Frenchff694522009-04-20 19:45:13 +00001189 * unlink on negative dentries currently.
1190 */
Jeff Layton5f0319a2008-09-16 14:05:16 -04001191int cifs_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
1193 int rc = 0;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001194 unsigned int xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 char *full_path = NULL;
Jeff Layton5f0319a2008-09-16 14:05:16 -04001196 struct inode *inode = dentry->d_inode;
Steve Frenchff694522009-04-20 19:45:13 +00001197 struct cifsInodeInfo *cifs_inode;
Jeff Layton5f0319a2008-09-16 14:05:16 -04001198 struct super_block *sb = dir->i_sb;
1199 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04001200 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +00001201 struct cifs_tcon *tcon;
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001202 struct TCP_Server_Info *server;
Steve French60502472008-10-07 18:42:52 +00001203 struct iattr *attrs = NULL;
1204 __u32 dosattr = 0, origattr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Joe Perchesf96637b2013-05-04 22:12:25 -05001206 cifs_dbg(FYI, "cifs_unlink, dir=0x%p, dentry=0x%p\n", dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Jeff Layton7ffec372010-09-29 19:51:11 -04001208 tlink = cifs_sb_tlink(cifs_sb);
1209 if (IS_ERR(tlink))
1210 return PTR_ERR(tlink);
1211 tcon = tlink_tcon(tlink);
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001212 server = tcon->ses->server;
Jeff Layton7ffec372010-09-29 19:51:11 -04001213
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001214 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Jeff Layton5f0319a2008-09-16 14:05:16 -04001216 /* Unlink can be called from rename so we can not take the
1217 * sb->s_vfs_rename_mutex here */
1218 full_path = build_path_from_dentry(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301220 rc = -ENOMEM;
Jeff Layton7ffec372010-09-29 19:51:11 -04001221 goto unlink_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
Steve French2d785a52007-07-15 01:48:57 +00001223
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04001224 if (cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP &
1225 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
Jeff Layton5f0319a2008-09-16 14:05:16 -04001226 rc = CIFSPOSIXDelFile(xid, tcon, full_path,
Steve French2d785a52007-07-15 01:48:57 +00001227 SMB_POSIX_UNLINK_FILE_TARGET, cifs_sb->local_nls,
1228 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Joe Perchesf96637b2013-05-04 22:12:25 -05001229 cifs_dbg(FYI, "posix del rc %d\n", rc);
Steve French2d785a52007-07-15 01:48:57 +00001230 if ((rc == 0) || (rc == -ENOENT))
1231 goto psx_del_no_retry;
1232 }
1233
Steve French60502472008-10-07 18:42:52 +00001234retry_std_delete:
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001235 if (!server->ops->unlink) {
1236 rc = -ENOSYS;
1237 goto psx_del_no_retry;
1238 }
1239
1240 rc = server->ops->unlink(xid, tcon, full_path, cifs_sb);
Steve French60502472008-10-07 18:42:52 +00001241
Steve French2d785a52007-07-15 01:48:57 +00001242psx_del_no_retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 if (!rc) {
Jeff Layton5f0319a2008-09-16 14:05:16 -04001244 if (inode)
Steve Frenchb7ca6922012-08-03 08:43:01 -05001245 cifs_drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 } else if (rc == -ENOENT) {
Jeff Layton5f0319a2008-09-16 14:05:16 -04001247 d_drop(dentry);
Sachin Prabhu47c78f42013-03-11 13:08:49 +00001248 } else if (rc == -EBUSY) {
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001249 if (server->ops->rename_pending_delete) {
1250 rc = server->ops->rename_pending_delete(full_path,
1251 dentry, xid);
1252 if (rc == 0)
1253 cifs_drop_nlink(inode);
1254 }
Steve Frenchff694522009-04-20 19:45:13 +00001255 } else if ((rc == -EACCES) && (dosattr == 0) && inode) {
Steve French388e57b2008-09-16 23:50:58 +00001256 attrs = kzalloc(sizeof(*attrs), GFP_KERNEL);
1257 if (attrs == NULL) {
1258 rc = -ENOMEM;
1259 goto out_reval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
Steve French388e57b2008-09-16 23:50:58 +00001261
1262 /* try to reset dos attributes */
Steve Frenchff694522009-04-20 19:45:13 +00001263 cifs_inode = CIFS_I(inode);
1264 origattr = cifs_inode->cifsAttrs;
Steve French60502472008-10-07 18:42:52 +00001265 if (origattr == 0)
1266 origattr |= ATTR_NORMAL;
1267 dosattr = origattr & ~ATTR_READONLY;
Steve French388e57b2008-09-16 23:50:58 +00001268 if (dosattr == 0)
1269 dosattr |= ATTR_NORMAL;
1270 dosattr |= ATTR_HIDDEN;
1271
1272 rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr);
Steve French388e57b2008-09-16 23:50:58 +00001273 if (rc != 0)
1274 goto out_reval;
Steve French60502472008-10-07 18:42:52 +00001275
1276 goto retry_std_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
Steve French60502472008-10-07 18:42:52 +00001278
1279 /* undo the setattr if we errored out and it's needed */
1280 if (rc != 0 && dosattr != 0)
1281 cifs_set_file_info(inode, attrs, xid, full_path, origattr);
1282
Steve French388e57b2008-09-16 23:50:58 +00001283out_reval:
Jeff Layton5f0319a2008-09-16 14:05:16 -04001284 if (inode) {
Steve Frenchff694522009-04-20 19:45:13 +00001285 cifs_inode = CIFS_I(inode);
1286 cifs_inode->time = 0; /* will force revalidate to get info
Steve Frenchb2aeb9d2005-05-17 13:16:18 -05001287 when needed */
Jeff Layton5f0319a2008-09-16 14:05:16 -04001288 inode->i_ctime = current_fs_time(sb);
Steve Frenchb2aeb9d2005-05-17 13:16:18 -05001289 }
Jeff Layton5f0319a2008-09-16 14:05:16 -04001290 dir->i_ctime = dir->i_mtime = current_fs_time(sb);
Steve Frenchff694522009-04-20 19:45:13 +00001291 cifs_inode = CIFS_I(dir);
Steve French60502472008-10-07 18:42:52 +00001292 CIFS_I(dir)->time = 0; /* force revalidate of dir as well */
Jeff Layton7ffec372010-09-29 19:51:11 -04001293unlink_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 kfree(full_path);
Steve French60502472008-10-07 18:42:52 +00001295 kfree(attrs);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001296 free_xid(xid);
Jeff Layton7ffec372010-09-29 19:51:11 -04001297 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 return rc;
1299}
1300
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001301static int
Jeff Layton101b92d2012-09-19 06:22:45 -07001302cifs_mkdir_qinfo(struct inode *parent, struct dentry *dentry, umode_t mode,
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001303 const char *full_path, struct cifs_sb_info *cifs_sb,
1304 struct cifs_tcon *tcon, const unsigned int xid)
1305{
1306 int rc = 0;
Jeff Layton101b92d2012-09-19 06:22:45 -07001307 struct inode *inode = NULL;
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001308
1309 if (tcon->unix_ext)
Jeff Layton101b92d2012-09-19 06:22:45 -07001310 rc = cifs_get_inode_info_unix(&inode, full_path, parent->i_sb,
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001311 xid);
1312 else
Jeff Layton101b92d2012-09-19 06:22:45 -07001313 rc = cifs_get_inode_info(&inode, full_path, NULL, parent->i_sb,
1314 xid, NULL);
1315
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001316 if (rc)
1317 return rc;
1318
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001319 /*
1320 * setting nlink not necessary except in cases where we failed to get it
Jeff Layton101b92d2012-09-19 06:22:45 -07001321 * from the server or was set bogus. Also, since this is a brand new
1322 * inode, no need to grab the i_lock before setting the i_nlink.
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001323 */
Jeff Layton101b92d2012-09-19 06:22:45 -07001324 if (inode->i_nlink < 2)
1325 set_nlink(inode, 2);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001326 mode &= ~current_umask();
1327 /* must turn on setgid bit if parent dir has it */
Jeff Layton101b92d2012-09-19 06:22:45 -07001328 if (parent->i_mode & S_ISGID)
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001329 mode |= S_ISGID;
1330
1331 if (tcon->unix_ext) {
1332 struct cifs_unix_set_info_args args = {
1333 .mode = mode,
1334 .ctime = NO_CHANGE_64,
1335 .atime = NO_CHANGE_64,
1336 .mtime = NO_CHANGE_64,
1337 .device = 0,
1338 };
1339 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
Eric W. Biederman49418b22013-02-06 00:57:56 -08001340 args.uid = current_fsuid();
Jeff Layton101b92d2012-09-19 06:22:45 -07001341 if (parent->i_mode & S_ISGID)
Eric W. Biederman49418b22013-02-06 00:57:56 -08001342 args.gid = parent->i_gid;
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001343 else
Eric W. Biederman49418b22013-02-06 00:57:56 -08001344 args.gid = current_fsgid();
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001345 } else {
Eric W. Biederman49418b22013-02-06 00:57:56 -08001346 args.uid = INVALID_UID; /* no change */
1347 args.gid = INVALID_GID; /* no change */
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001348 }
1349 CIFSSMBUnixSetPathInfo(xid, tcon, full_path, &args,
1350 cifs_sb->local_nls,
1351 cifs_sb->mnt_cifs_flags &
1352 CIFS_MOUNT_MAP_SPECIAL_CHR);
1353 } else {
Pavel Shilovskyf4367202012-03-17 11:41:12 +03001354 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001355 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) &&
Pavel Shilovskyf4367202012-03-17 11:41:12 +03001356 (mode & S_IWUGO) == 0 && server->ops->mkdir_setinfo)
Jeff Layton101b92d2012-09-19 06:22:45 -07001357 server->ops->mkdir_setinfo(inode, full_path, cifs_sb,
Pavel Shilovskyf4367202012-03-17 11:41:12 +03001358 tcon, xid);
Jeff Layton101b92d2012-09-19 06:22:45 -07001359 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)
1360 inode->i_mode = (mode | S_IFDIR);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001361
Jeff Layton101b92d2012-09-19 06:22:45 -07001362 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
1363 inode->i_uid = current_fsuid();
1364 if (inode->i_mode & S_ISGID)
1365 inode->i_gid = parent->i_gid;
1366 else
1367 inode->i_gid = current_fsgid();
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001368 }
1369 }
Jeff Layton101b92d2012-09-19 06:22:45 -07001370 d_instantiate(dentry, inode);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001371 return rc;
1372}
1373
1374static int
1375cifs_posix_mkdir(struct inode *inode, struct dentry *dentry, umode_t mode,
1376 const char *full_path, struct cifs_sb_info *cifs_sb,
1377 struct cifs_tcon *tcon, const unsigned int xid)
1378{
1379 int rc = 0;
1380 u32 oplock = 0;
1381 FILE_UNIX_BASIC_INFO *info = NULL;
1382 struct inode *newinode = NULL;
1383 struct cifs_fattr fattr;
1384
1385 info = kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL);
1386 if (info == NULL) {
1387 rc = -ENOMEM;
1388 goto posix_mkdir_out;
1389 }
1390
1391 mode &= ~current_umask();
1392 rc = CIFSPOSIXCreate(xid, tcon, SMB_O_DIRECTORY | SMB_O_CREAT, mode,
1393 NULL /* netfid */, info, &oplock, full_path,
1394 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
1395 CIFS_MOUNT_MAP_SPECIAL_CHR);
1396 if (rc == -EOPNOTSUPP)
1397 goto posix_mkdir_out;
1398 else if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001399 cifs_dbg(FYI, "posix mkdir returned 0x%x\n", rc);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001400 d_drop(dentry);
1401 goto posix_mkdir_out;
1402 }
1403
1404 if (info->Type == cpu_to_le32(-1))
1405 /* no return info, go query for it */
1406 goto posix_mkdir_get_info;
1407 /*
1408 * BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if
1409 * need to set uid/gid.
1410 */
1411
1412 cifs_unix_basic_to_fattr(&fattr, info, cifs_sb);
1413 cifs_fill_uniqueid(inode->i_sb, &fattr);
1414 newinode = cifs_iget(inode->i_sb, &fattr);
1415 if (!newinode)
1416 goto posix_mkdir_get_info;
1417
1418 d_instantiate(dentry, newinode);
1419
1420#ifdef CONFIG_CIFS_DEBUG2
Joe Perchesf96637b2013-05-04 22:12:25 -05001421 cifs_dbg(FYI, "instantiated dentry %p %s to inode %p\n",
1422 dentry, dentry->d_name.name, newinode);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001423
1424 if (newinode->i_nlink != 2)
Joe Perchesf96637b2013-05-04 22:12:25 -05001425 cifs_dbg(FYI, "unexpected number of links %d\n",
1426 newinode->i_nlink);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001427#endif
1428
1429posix_mkdir_out:
1430 kfree(info);
1431 return rc;
1432posix_mkdir_get_info:
1433 rc = cifs_mkdir_qinfo(inode, dentry, mode, full_path, cifs_sb, tcon,
1434 xid);
1435 goto posix_mkdir_out;
1436}
1437
Al Viro18bb1db2011-07-26 01:41:39 -04001438int cifs_mkdir(struct inode *inode, struct dentry *direntry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001440 int rc = 0;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001441 unsigned int xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 struct cifs_sb_info *cifs_sb;
Jeff Layton7ffec372010-09-29 19:51:11 -04001443 struct tcon_link *tlink;
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04001444 struct cifs_tcon *tcon;
Pavel Shilovskyf4367202012-03-17 11:41:12 +03001445 struct TCP_Server_Info *server;
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001446 char *full_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Joe Perchesf96637b2013-05-04 22:12:25 -05001448 cifs_dbg(FYI, "In cifs_mkdir, mode = 0x%hx inode = 0x%p\n",
1449 mode, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04001452 tlink = cifs_sb_tlink(cifs_sb);
1453 if (IS_ERR(tlink))
1454 return PTR_ERR(tlink);
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04001455 tcon = tlink_tcon(tlink);
Jeff Layton7ffec372010-09-29 19:51:11 -04001456
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001457 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Steve French7f573562005-08-30 11:32:14 -07001459 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301461 rc = -ENOMEM;
Jeff Layton7ffec372010-09-29 19:51:11 -04001462 goto mkdir_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 }
Steve French50c2f752007-07-13 00:33:32 +00001464
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04001465 if (cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP &
1466 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001467 rc = cifs_posix_mkdir(inode, direntry, mode, full_path, cifs_sb,
1468 tcon, xid);
1469 if (rc != -EOPNOTSUPP)
Steve French2dd29d32007-04-23 22:07:35 +00001470 goto mkdir_out;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001471 }
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001472
Pavel Shilovskyf4367202012-03-17 11:41:12 +03001473 server = tcon->ses->server;
1474
1475 if (!server->ops->mkdir) {
1476 rc = -ENOSYS;
1477 goto mkdir_out;
1478 }
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 /* BB add setting the equivalent of mode via CreateX w/ACLs */
Pavel Shilovskyf4367202012-03-17 11:41:12 +03001481 rc = server->ops->mkdir(xid, tcon, full_path, cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001483 cifs_dbg(FYI, "cifs_mkdir returned 0x%x\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 d_drop(direntry);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001485 goto mkdir_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 }
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001487
1488 rc = cifs_mkdir_qinfo(inode, direntry, mode, full_path, cifs_sb, tcon,
1489 xid);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001490mkdir_out:
Pavel Shilovsky6de2ce42012-02-17 16:13:30 +03001491 /*
1492 * Force revalidate to get parent dir info when needed since cached
1493 * attributes are invalid now.
1494 */
1495 CIFS_I(inode)->time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 kfree(full_path);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001497 free_xid(xid);
Jeff Layton7ffec372010-09-29 19:51:11 -04001498 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 return rc;
1500}
1501
1502int cifs_rmdir(struct inode *inode, struct dentry *direntry)
1503{
1504 int rc = 0;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001505 unsigned int xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 struct cifs_sb_info *cifs_sb;
Jeff Layton7ffec372010-09-29 19:51:11 -04001507 struct tcon_link *tlink;
Pavel Shilovskyf958ca52012-07-10 16:14:18 +04001508 struct cifs_tcon *tcon;
1509 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 char *full_path = NULL;
1511 struct cifsInodeInfo *cifsInode;
1512
Joe Perchesf96637b2013-05-04 22:12:25 -05001513 cifs_dbg(FYI, "cifs_rmdir, inode = 0x%p\n", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001515 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Steve French7f573562005-08-30 11:32:14 -07001517 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301519 rc = -ENOMEM;
Jeff Layton7ffec372010-09-29 19:51:11 -04001520 goto rmdir_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
1522
Jeff Layton7ffec372010-09-29 19:51:11 -04001523 cifs_sb = CIFS_SB(inode->i_sb);
1524 tlink = cifs_sb_tlink(cifs_sb);
1525 if (IS_ERR(tlink)) {
1526 rc = PTR_ERR(tlink);
1527 goto rmdir_exit;
1528 }
Pavel Shilovskyf958ca52012-07-10 16:14:18 +04001529 tcon = tlink_tcon(tlink);
1530 server = tcon->ses->server;
Jeff Layton7ffec372010-09-29 19:51:11 -04001531
Pavel Shilovskyf958ca52012-07-10 16:14:18 +04001532 if (!server->ops->rmdir) {
1533 rc = -ENOSYS;
1534 cifs_put_tlink(tlink);
1535 goto rmdir_exit;
1536 }
1537
1538 rc = server->ops->rmdir(xid, tcon, full_path, cifs_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04001539 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 if (!rc) {
Steve French3677db12007-02-26 16:46:11 +00001542 spin_lock(&direntry->d_inode->i_lock);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001543 i_size_write(direntry->d_inode, 0);
Dave Hansence71ec32006-09-30 23:29:06 -07001544 clear_nlink(direntry->d_inode);
Steve French3677db12007-02-26 16:46:11 +00001545 spin_unlock(&direntry->d_inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 }
1547
1548 cifsInode = CIFS_I(direntry->d_inode);
Pavel Shilovsky6de2ce42012-02-17 16:13:30 +03001549 /* force revalidate to go get info when needed */
1550 cifsInode->time = 0;
Steve French42c24542009-01-13 22:03:55 +00001551
1552 cifsInode = CIFS_I(inode);
Pavel Shilovsky6de2ce42012-02-17 16:13:30 +03001553 /*
1554 * Force revalidate to get parent dir info when needed since cached
1555 * attributes are invalid now.
1556 */
1557 cifsInode->time = 0;
Steve French42c24542009-01-13 22:03:55 +00001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 direntry->d_inode->i_ctime = inode->i_ctime = inode->i_mtime =
1560 current_fs_time(inode->i_sb);
1561
Jeff Layton7ffec372010-09-29 19:51:11 -04001562rmdir_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 kfree(full_path);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001564 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 return rc;
1566}
1567
Steve Frenchee2fd962008-09-23 18:23:33 +00001568static int
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001569cifs_do_rename(const unsigned int xid, struct dentry *from_dentry,
1570 const char *from_path, struct dentry *to_dentry,
1571 const char *to_path)
Steve Frenchee2fd962008-09-23 18:23:33 +00001572{
1573 struct cifs_sb_info *cifs_sb = CIFS_SB(from_dentry->d_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04001574 struct tcon_link *tlink;
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001575 struct cifs_tcon *tcon;
1576 struct TCP_Server_Info *server;
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001577 struct cifs_fid fid;
1578 struct cifs_open_parms oparms;
Steve Frenchee2fd962008-09-23 18:23:33 +00001579 int oplock, rc;
1580
Jeff Layton7ffec372010-09-29 19:51:11 -04001581 tlink = cifs_sb_tlink(cifs_sb);
1582 if (IS_ERR(tlink))
1583 return PTR_ERR(tlink);
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001584 tcon = tlink_tcon(tlink);
1585 server = tcon->ses->server;
1586
1587 if (!server->ops->rename)
1588 return -ENOSYS;
Jeff Layton7ffec372010-09-29 19:51:11 -04001589
Steve Frenchee2fd962008-09-23 18:23:33 +00001590 /* try path-based rename first */
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001591 rc = server->ops->rename(xid, tcon, from_path, to_path, cifs_sb);
Steve Frenchee2fd962008-09-23 18:23:33 +00001592
1593 /*
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001594 * Don't bother with rename by filehandle unless file is busy and
1595 * source. Note that cross directory moves do not work with
Steve Frenchee2fd962008-09-23 18:23:33 +00001596 * rename by filehandle to various Windows servers.
1597 */
Sachin Prabhu47c78f42013-03-11 13:08:49 +00001598 if (rc == 0 || rc != -EBUSY)
Jeff Layton7ffec372010-09-29 19:51:11 -04001599 goto do_rename_exit;
Steve Frenchee2fd962008-09-23 18:23:33 +00001600
Jeff Laytoned0e3ac2010-06-01 16:21:01 -04001601 /* open-file renames don't work across directories */
1602 if (to_dentry->d_parent != from_dentry->d_parent)
Jeff Layton7ffec372010-09-29 19:51:11 -04001603 goto do_rename_exit;
Jeff Laytoned0e3ac2010-06-01 16:21:01 -04001604
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001605 oparms.tcon = tcon;
1606 oparms.cifs_sb = cifs_sb;
Steve Frenchee2fd962008-09-23 18:23:33 +00001607 /* open the file to be renamed -- we need DELETE perms */
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001608 oparms.desired_access = DELETE;
1609 oparms.create_options = CREATE_NOT_DIR;
1610 oparms.disposition = FILE_OPEN;
1611 oparms.path = from_path;
1612 oparms.fid = &fid;
1613 oparms.reconnect = false;
1614
1615 rc = CIFS_open(xid, &oparms, &oplock, NULL);
Steve Frenchee2fd962008-09-23 18:23:33 +00001616 if (rc == 0) {
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001617 rc = CIFSSMBRenameOpenFile(xid, tcon, fid.netfid,
Steve Frenchee2fd962008-09-23 18:23:33 +00001618 (const char *) to_dentry->d_name.name,
1619 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
1620 CIFS_MOUNT_MAP_SPECIAL_CHR);
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001621 CIFSSMBClose(xid, tcon, fid.netfid);
Steve Frenchee2fd962008-09-23 18:23:33 +00001622 }
Jeff Layton7ffec372010-09-29 19:51:11 -04001623do_rename_exit:
1624 cifs_put_tlink(tlink);
Steve Frenchee2fd962008-09-23 18:23:33 +00001625 return rc;
1626}
1627
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001628int
1629cifs_rename(struct inode *source_dir, struct dentry *source_dentry,
1630 struct inode *target_dir, struct dentry *target_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001632 char *from_name = NULL;
1633 char *to_name = NULL;
Jeff Layton639e7a92010-09-03 11:50:09 -04001634 struct cifs_sb_info *cifs_sb;
Jeff Layton7ffec372010-09-29 19:51:11 -04001635 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +00001636 struct cifs_tcon *tcon;
Steve Frenchee2fd962008-09-23 18:23:33 +00001637 FILE_UNIX_BASIC_INFO *info_buf_source = NULL;
1638 FILE_UNIX_BASIC_INFO *info_buf_target;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001639 unsigned int xid;
1640 int rc, tmprc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Jeff Layton639e7a92010-09-03 11:50:09 -04001642 cifs_sb = CIFS_SB(source_dir->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04001643 tlink = cifs_sb_tlink(cifs_sb);
1644 if (IS_ERR(tlink))
1645 return PTR_ERR(tlink);
1646 tcon = tlink_tcon(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001648 xid = get_xid();
Steve Frenchee2fd962008-09-23 18:23:33 +00001649
1650 /*
Steve Frenchee2fd962008-09-23 18:23:33 +00001651 * we already have the rename sem so we do not need to
1652 * grab it again here to protect the path integrity
1653 */
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001654 from_name = build_path_from_dentry(source_dentry);
1655 if (from_name == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 rc = -ENOMEM;
1657 goto cifs_rename_exit;
1658 }
1659
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001660 to_name = build_path_from_dentry(target_dentry);
1661 if (to_name == NULL) {
Steve Frenchee2fd962008-09-23 18:23:33 +00001662 rc = -ENOMEM;
1663 goto cifs_rename_exit;
1664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001666 rc = cifs_do_rename(xid, source_dentry, from_name, target_dentry,
1667 to_name);
Steve Frenchee2fd962008-09-23 18:23:33 +00001668
Jeff Layton14121bd2008-10-20 14:45:22 -04001669 if (rc == -EEXIST && tcon->unix_ext) {
Steve Frenchee2fd962008-09-23 18:23:33 +00001670 /*
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001671 * Are src and dst hardlinks of same inode? We can only tell
1672 * with unix extensions enabled.
Steve Frenchee2fd962008-09-23 18:23:33 +00001673 */
Jeff Layton14121bd2008-10-20 14:45:22 -04001674 info_buf_source =
1675 kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO),
1676 GFP_KERNEL);
1677 if (info_buf_source == NULL) {
1678 rc = -ENOMEM;
1679 goto cifs_rename_exit;
1680 }
1681
1682 info_buf_target = info_buf_source + 1;
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001683 tmprc = CIFSSMBUnixQPathInfo(xid, tcon, from_name,
1684 info_buf_source,
1685 cifs_sb->local_nls,
1686 cifs_sb->mnt_cifs_flags &
1687 CIFS_MOUNT_MAP_SPECIAL_CHR);
Jeff Layton8d281ef2008-10-22 13:57:01 -04001688 if (tmprc != 0)
Jeff Layton14121bd2008-10-20 14:45:22 -04001689 goto unlink_target;
1690
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001691 tmprc = CIFSSMBUnixQPathInfo(xid, tcon, to_name,
1692 info_buf_target,
1693 cifs_sb->local_nls,
1694 cifs_sb->mnt_cifs_flags &
1695 CIFS_MOUNT_MAP_SPECIAL_CHR);
Jeff Layton14121bd2008-10-20 14:45:22 -04001696
Jeff Layton8d281ef2008-10-22 13:57:01 -04001697 if (tmprc == 0 && (info_buf_source->UniqueId ==
Jeff Laytonae6884a2008-11-03 14:05:08 -05001698 info_buf_target->UniqueId)) {
Jeff Layton14121bd2008-10-20 14:45:22 -04001699 /* same file, POSIX says that this is a noop */
Jeff Laytonae6884a2008-11-03 14:05:08 -05001700 rc = 0;
Jeff Layton14121bd2008-10-20 14:45:22 -04001701 goto cifs_rename_exit;
Jeff Laytonae6884a2008-11-03 14:05:08 -05001702 }
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001703 }
1704 /*
1705 * else ... BB we could add the same check for Windows by
1706 * checking the UniqueId via FILE_INTERNAL_INFO
1707 */
Jeff Layton14121bd2008-10-20 14:45:22 -04001708
Jeff Layton14121bd2008-10-20 14:45:22 -04001709unlink_target:
Jeff Laytonfc6f3942009-04-17 11:45:30 -04001710 /* Try unlinking the target dentry if it's not negative */
1711 if (target_dentry->d_inode && (rc == -EACCES || rc == -EEXIST)) {
Jeff Layton8d281ef2008-10-22 13:57:01 -04001712 tmprc = cifs_unlink(target_dir, target_dentry);
Jeff Layton14121bd2008-10-20 14:45:22 -04001713 if (tmprc)
1714 goto cifs_rename_exit;
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001715 rc = cifs_do_rename(xid, source_dentry, from_name,
1716 target_dentry, to_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
1718
1719cifs_rename_exit:
Steve Frenchee2fd962008-09-23 18:23:33 +00001720 kfree(info_buf_source);
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001721 kfree(from_name);
1722 kfree(to_name);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001723 free_xid(xid);
Jeff Layton7ffec372010-09-29 19:51:11 -04001724 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 return rc;
1726}
1727
Jeff Laytondf2cf172010-02-12 07:44:16 -05001728static bool
1729cifs_inode_needs_reval(struct inode *inode)
1730{
1731 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05301732 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Jeff Laytondf2cf172010-02-12 07:44:16 -05001733
Pavel Shilovsky18cceb62013-09-05 13:01:06 +04001734 if (CIFS_CACHE_READ(cifs_i))
Jeff Laytondf2cf172010-02-12 07:44:16 -05001735 return false;
1736
1737 if (!lookupCacheEnabled)
1738 return true;
1739
1740 if (cifs_i->time == 0)
1741 return true;
1742
Jeff Laytona87c9ad2014-03-26 07:24:23 -07001743 if (!cifs_sb->actimeo)
1744 return true;
1745
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05301746 if (!time_in_range(jiffies, cifs_i->time,
1747 cifs_i->time + cifs_sb->actimeo))
Jeff Laytondf2cf172010-02-12 07:44:16 -05001748 return true;
1749
Jeff Laytondb192722010-05-17 14:51:49 -04001750 /* hardlinked files w/ noserverino get "special" treatment */
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05301751 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) &&
Jeff Laytondb192722010-05-17 14:51:49 -04001752 S_ISREG(inode->i_mode) && inode->i_nlink != 1)
1753 return true;
1754
Jeff Laytondf2cf172010-02-12 07:44:16 -05001755 return false;
1756}
1757
Suresh Jayaraman523fb8c2010-11-29 22:39:47 +05301758/*
1759 * Zap the cache. Called when invalid_mapping flag is set.
1760 */
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001761int
Jeff Laytondf2cf172010-02-12 07:44:16 -05001762cifs_invalidate_mapping(struct inode *inode)
1763{
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001764 int rc = 0;
Jeff Laytondf2cf172010-02-12 07:44:16 -05001765 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
1766
Jeff Laytonaff8d5c2014-04-30 09:31:45 -04001767 clear_bit(CIFS_INO_INVALID_MAPPING, &cifs_i->flags);
Jeff Laytondf2cf172010-02-12 07:44:16 -05001768
Jeff Laytondf2cf172010-02-12 07:44:16 -05001769 if (inode->i_mapping && inode->i_mapping->nrpages != 0) {
Pavel Shilovsky257fb1f2011-03-16 01:55:32 +03001770 rc = invalidate_inode_pages2(inode->i_mapping);
1771 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001772 cifs_dbg(VFS, "%s: could not invalidate inode %p\n",
1773 __func__, inode);
Jeff Laytonaff8d5c2014-04-30 09:31:45 -04001774 set_bit(CIFS_INO_INVALID_MAPPING, &cifs_i->flags);
Pavel Shilovsky257fb1f2011-03-16 01:55:32 +03001775 }
Jeff Laytondf2cf172010-02-12 07:44:16 -05001776 }
Pavel Shilovsky257fb1f2011-03-16 01:55:32 +03001777
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +05301778 cifs_fscache_reset_inode_cookie(inode);
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001779 return rc;
Jeff Laytondf2cf172010-02-12 07:44:16 -05001780}
1781
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001782int cifs_revalidate_file_attr(struct file *filp)
Jeff Laytonabab0952010-02-12 07:44:18 -05001783{
1784 int rc = 0;
Al Viro496ad9a2013-01-23 17:07:38 -05001785 struct inode *inode = file_inode(filp);
Jeff Laytonba00ba62010-09-20 16:01:31 -07001786 struct cifsFileInfo *cfile = (struct cifsFileInfo *) filp->private_data;
Jeff Laytonabab0952010-02-12 07:44:18 -05001787
1788 if (!cifs_inode_needs_reval(inode))
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001789 return rc;
Jeff Laytonabab0952010-02-12 07:44:18 -05001790
Jeff Layton13cfb732010-09-29 19:51:11 -04001791 if (tlink_tcon(cfile->tlink)->unix_ext)
Jeff Laytonabab0952010-02-12 07:44:18 -05001792 rc = cifs_get_file_info_unix(filp);
1793 else
1794 rc = cifs_get_file_info(filp);
1795
Jeff Laytonabab0952010-02-12 07:44:18 -05001796 return rc;
1797}
1798
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001799int cifs_revalidate_dentry_attr(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800{
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001801 unsigned int xid;
Jeff Laytondf2cf172010-02-12 07:44:16 -05001802 int rc = 0;
Jeff Laytondf2cf172010-02-12 07:44:16 -05001803 struct inode *inode = dentry->d_inode;
1804 struct super_block *sb = dentry->d_sb;
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001805 char *full_path = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Jeff Laytondf2cf172010-02-12 07:44:16 -05001807 if (inode == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 return -ENOENT;
1809
Jeff Laytondf2cf172010-02-12 07:44:16 -05001810 if (!cifs_inode_needs_reval(inode))
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001811 return rc;
1812
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001813 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
1815 /* can not safely grab the rename sem here if rename calls revalidate
1816 since that would deadlock */
Jeff Laytondf2cf172010-02-12 07:44:16 -05001817 full_path = build_path_from_dentry(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301819 rc = -ENOMEM;
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001820 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 }
Jeff Laytondf2cf172010-02-12 07:44:16 -05001822
Joe Perchesf96637b2013-05-04 22:12:25 -05001823 cifs_dbg(FYI, "Update attributes: %s inode 0x%p count %d dentry: 0x%p d_time %ld jiffies %ld\n",
1824 full_path, inode, inode->i_count.counter,
Steve Frenchf19159d2010-04-21 04:12:10 +00001825 dentry, dentry->d_time, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Jeff Layton0d424ad2010-09-20 16:01:35 -07001827 if (cifs_sb_master_tcon(CIFS_SB(sb))->unix_ext)
Jeff Laytondf2cf172010-02-12 07:44:16 -05001828 rc = cifs_get_inode_info_unix(&inode, full_path, sb, xid);
1829 else
1830 rc = cifs_get_inode_info(&inode, full_path, NULL, sb,
1831 xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001833out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 kfree(full_path);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001835 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return rc;
1837}
1838
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001839int cifs_revalidate_file(struct file *filp)
1840{
1841 int rc;
Al Viro496ad9a2013-01-23 17:07:38 -05001842 struct inode *inode = file_inode(filp);
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001843
1844 rc = cifs_revalidate_file_attr(filp);
1845 if (rc)
1846 return rc;
1847
Jeff Laytonaff8d5c2014-04-30 09:31:45 -04001848 if (test_bit(CIFS_INO_INVALID_MAPPING, &CIFS_I(inode)->flags))
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001849 rc = cifs_invalidate_mapping(inode);
1850 return rc;
1851}
1852
1853/* revalidate a dentry's inode attributes */
1854int cifs_revalidate_dentry(struct dentry *dentry)
1855{
1856 int rc;
1857 struct inode *inode = dentry->d_inode;
1858
1859 rc = cifs_revalidate_dentry_attr(dentry);
1860 if (rc)
1861 return rc;
1862
Jeff Laytonaff8d5c2014-04-30 09:31:45 -04001863 if (test_bit(CIFS_INO_INVALID_MAPPING, &CIFS_I(inode)->flags))
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001864 rc = cifs_invalidate_mapping(inode);
1865 return rc;
1866}
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868int cifs_getattr(struct vfsmount *mnt, struct dentry *dentry,
Jeff Layton1c456012010-10-12 11:32:42 -04001869 struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
Jeff Layton3aa1c8c2010-10-07 14:46:28 -04001871 struct cifs_sb_info *cifs_sb = CIFS_SB(dentry->d_sb);
Steve French96daf2b2011-05-27 04:34:02 +00001872 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001873 struct inode *inode = dentry->d_inode;
1874 int rc;
Jeff Layton3aa1c8c2010-10-07 14:46:28 -04001875
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001876 /*
1877 * We need to be sure that all dirty pages are written and the server
1878 * has actual ctime, mtime and file length.
1879 */
Pavel Shilovsky18cceb62013-09-05 13:01:06 +04001880 if (!CIFS_CACHE_READ(CIFS_I(inode)) && inode->i_mapping &&
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001881 inode->i_mapping->nrpages != 0) {
1882 rc = filemap_fdatawait(inode->i_mapping);
Steve French156ecb22011-05-20 17:00:01 +00001883 if (rc) {
1884 mapping_set_error(inode->i_mapping, rc);
1885 return rc;
1886 }
Steve French5fe14c82006-11-07 19:26:33 +00001887 }
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001888
1889 rc = cifs_revalidate_dentry_attr(dentry);
1890 if (rc)
1891 return rc;
1892
1893 generic_fillattr(inode, stat);
1894 stat->blksize = CIFS_MAX_MSGSIZE;
1895 stat->ino = CIFS_I(inode)->uniqueid;
1896
1897 /*
Jeff Laytond3d1fce2012-11-25 08:00:40 -05001898 * If on a multiuser mount without unix extensions or cifsacl being
1899 * enabled, and the admin hasn't overridden them, set the ownership
1900 * to the fsuid/fsgid of the current process.
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001901 */
1902 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER) &&
Jeff Laytond3d1fce2012-11-25 08:00:40 -05001903 !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) &&
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001904 !tcon->unix_ext) {
1905 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID))
1906 stat->uid = current_fsuid();
1907 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID))
1908 stat->gid = current_fsgid();
1909 }
1910 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911}
1912
1913static int cifs_truncate_page(struct address_space *mapping, loff_t from)
1914{
1915 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1916 unsigned offset = from & (PAGE_CACHE_SIZE - 1);
1917 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 int rc = 0;
1919
1920 page = grab_cache_page(mapping, index);
1921 if (!page)
1922 return -ENOMEM;
1923
Christoph Lametereebd2aa2008-02-04 22:28:29 -08001924 zero_user_segment(page, offset, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 unlock_page(page);
1926 page_cache_release(page);
1927 return rc;
1928}
1929
Christoph Hellwig1b947462010-07-18 17:51:21 -04001930static void cifs_setsize(struct inode *inode, loff_t offset)
Steve French3677db12007-02-26 16:46:11 +00001931{
Steve Frenchba6a46a2007-02-26 20:06:29 +00001932 spin_lock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001933 i_size_write(inode, offset);
Steve Frenchba6a46a2007-02-26 20:06:29 +00001934 spin_unlock(&inode->i_lock);
Christoph Hellwig1b947462010-07-18 17:51:21 -04001935
Kirill A. Shutemov7caef262013-09-12 15:13:56 -07001936 truncate_pagecache(inode, offset);
Steve French3677db12007-02-26 16:46:11 +00001937}
1938
Jeff Layton8efdbde2008-07-23 21:28:12 +00001939static int
1940cifs_set_file_size(struct inode *inode, struct iattr *attrs,
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001941 unsigned int xid, char *full_path)
Jeff Layton8efdbde2008-07-23 21:28:12 +00001942{
1943 int rc;
1944 struct cifsFileInfo *open_file;
1945 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
1946 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04001947 struct tcon_link *tlink = NULL;
Pavel Shilovskyd1433412012-09-18 16:20:31 -07001948 struct cifs_tcon *tcon = NULL;
1949 struct TCP_Server_Info *server;
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04001950 struct cifs_io_parms io_parms;
Jeff Layton8efdbde2008-07-23 21:28:12 +00001951
1952 /*
1953 * To avoid spurious oplock breaks from server, in the case of
1954 * inodes that we already have open, avoid doing path based
1955 * setting of file size if we can do it by handle.
1956 * This keeps our caching token (oplock) and avoids timeouts
1957 * when the local oplock break takes longer to flush
1958 * writebehind data than the SMB timeout for the SetPathInfo
1959 * request would allow
1960 */
Jeff Layton6508d902010-09-29 19:51:11 -04001961 open_file = find_writable_file(cifsInode, true);
Jeff Layton8efdbde2008-07-23 21:28:12 +00001962 if (open_file) {
Pavel Shilovskyd1433412012-09-18 16:20:31 -07001963 tcon = tlink_tcon(open_file->tlink);
1964 server = tcon->ses->server;
1965 if (server->ops->set_file_size)
1966 rc = server->ops->set_file_size(xid, tcon, open_file,
1967 attrs->ia_size, false);
1968 else
1969 rc = -ENOSYS;
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04001970 cifsFileInfo_put(open_file);
Joe Perchesf96637b2013-05-04 22:12:25 -05001971 cifs_dbg(FYI, "SetFSize for attrs rc = %d\n", rc);
Jeff Layton8efdbde2008-07-23 21:28:12 +00001972 if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
1973 unsigned int bytes_written;
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04001974
Pavel Shilovskyd1433412012-09-18 16:20:31 -07001975 io_parms.netfid = open_file->fid.netfid;
1976 io_parms.pid = open_file->pid;
1977 io_parms.tcon = tcon;
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04001978 io_parms.offset = 0;
1979 io_parms.length = attrs->ia_size;
1980 rc = CIFSSMBWrite(xid, &io_parms, &bytes_written,
1981 NULL, NULL, 1);
Joe Perchesf96637b2013-05-04 22:12:25 -05001982 cifs_dbg(FYI, "Wrt seteof rc %d\n", rc);
Jeff Layton8efdbde2008-07-23 21:28:12 +00001983 }
1984 } else
1985 rc = -EINVAL;
1986
Pavel Shilovskyd1433412012-09-18 16:20:31 -07001987 if (!rc)
1988 goto set_size_out;
Jeff Laytonba00ba62010-09-20 16:01:31 -07001989
Pavel Shilovskyd1433412012-09-18 16:20:31 -07001990 if (tcon == NULL) {
1991 tlink = cifs_sb_tlink(cifs_sb);
1992 if (IS_ERR(tlink))
1993 return PTR_ERR(tlink);
1994 tcon = tlink_tcon(tlink);
1995 server = tcon->ses->server;
Jeff Layton8efdbde2008-07-23 21:28:12 +00001996 }
1997
Pavel Shilovskyd1433412012-09-18 16:20:31 -07001998 /*
1999 * Set file size by pathname rather than by handle either because no
2000 * valid, writeable file handle for it was found or because there was
2001 * an error setting it by handle.
2002 */
2003 if (server->ops->set_path_size)
2004 rc = server->ops->set_path_size(xid, tcon, full_path,
2005 attrs->ia_size, cifs_sb, false);
2006 else
2007 rc = -ENOSYS;
Joe Perchesf96637b2013-05-04 22:12:25 -05002008 cifs_dbg(FYI, "SetEOF by path (setattrs) rc = %d\n", rc);
Pavel Shilovskyd1433412012-09-18 16:20:31 -07002009 if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
2010 __u16 netfid;
2011 int oplock = 0;
2012
2013 rc = SMBLegacyOpen(xid, tcon, full_path, FILE_OPEN,
2014 GENERIC_WRITE, CREATE_NOT_DIR, &netfid,
2015 &oplock, NULL, cifs_sb->local_nls,
2016 cifs_sb->mnt_cifs_flags &
2017 CIFS_MOUNT_MAP_SPECIAL_CHR);
2018 if (rc == 0) {
2019 unsigned int bytes_written;
2020
2021 io_parms.netfid = netfid;
2022 io_parms.pid = current->tgid;
2023 io_parms.tcon = tcon;
2024 io_parms.offset = 0;
2025 io_parms.length = attrs->ia_size;
2026 rc = CIFSSMBWrite(xid, &io_parms, &bytes_written, NULL,
2027 NULL, 1);
Joe Perchesf96637b2013-05-04 22:12:25 -05002028 cifs_dbg(FYI, "wrt seteof rc %d\n", rc);
Pavel Shilovskyd1433412012-09-18 16:20:31 -07002029 CIFSSMBClose(xid, tcon, netfid);
2030 }
2031 }
2032 if (tlink)
2033 cifs_put_tlink(tlink);
2034
2035set_size_out:
Jeff Layton8efdbde2008-07-23 21:28:12 +00002036 if (rc == 0) {
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04002037 cifsInode->server_eof = attrs->ia_size;
Christoph Hellwig1b947462010-07-18 17:51:21 -04002038 cifs_setsize(inode, attrs->ia_size);
Jeff Layton8efdbde2008-07-23 21:28:12 +00002039 cifs_truncate_page(inode->i_mapping, inode->i_size);
2040 }
2041
2042 return rc;
2043}
2044
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002045static int
2046cifs_setattr_unix(struct dentry *direntry, struct iattr *attrs)
2047{
2048 int rc;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002049 unsigned int xid;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002050 char *full_path = NULL;
2051 struct inode *inode = direntry->d_inode;
2052 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
2053 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04002054 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +00002055 struct cifs_tcon *pTcon;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002056 struct cifs_unix_set_info_args *args = NULL;
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002057 struct cifsFileInfo *open_file;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002058
Joe Perchesf96637b2013-05-04 22:12:25 -05002059 cifs_dbg(FYI, "setattr_unix on file %s attrs->ia_valid=0x%x\n",
Joe Perchesb6b38f72010-04-21 03:50:45 +00002060 direntry->d_name.name, attrs->ia_valid);
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002061
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002062 xid = get_xid();
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002063
Christoph Hellwigdb78b872010-06-04 11:30:03 +02002064 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
2065 attrs->ia_valid |= ATTR_FORCE;
2066
2067 rc = inode_change_ok(inode, attrs);
2068 if (rc < 0)
2069 goto out;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002070
2071 full_path = build_path_from_dentry(direntry);
2072 if (full_path == NULL) {
2073 rc = -ENOMEM;
2074 goto out;
2075 }
2076
Jeff Layton0f4d6342009-03-26 13:35:37 -04002077 /*
2078 * Attempt to flush data before changing attributes. We need to do
2079 * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the
2080 * ownership or mode then we may also need to do this. Here, we take
2081 * the safe way out and just do the flush on all setattr requests. If
2082 * the flush returns error, store it to report later and continue.
2083 *
2084 * BB: This should be smarter. Why bother flushing pages that
2085 * will be truncated anyway? Also, should we error out here if
2086 * the flush returns error?
2087 */
2088 rc = filemap_write_and_wait(inode->i_mapping);
Jeff Laytoneb4b7562010-10-22 14:52:29 -04002089 mapping_set_error(inode->i_mapping, rc);
2090 rc = 0;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002091
2092 if (attrs->ia_valid & ATTR_SIZE) {
2093 rc = cifs_set_file_size(inode, attrs, xid, full_path);
2094 if (rc != 0)
2095 goto out;
2096 }
2097
2098 /* skip mode change if it's just for clearing setuid/setgid */
2099 if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
2100 attrs->ia_valid &= ~ATTR_MODE;
2101
2102 args = kmalloc(sizeof(*args), GFP_KERNEL);
2103 if (args == NULL) {
2104 rc = -ENOMEM;
2105 goto out;
2106 }
2107
2108 /* set up the struct */
2109 if (attrs->ia_valid & ATTR_MODE)
2110 args->mode = attrs->ia_mode;
2111 else
2112 args->mode = NO_CHANGE_64;
2113
2114 if (attrs->ia_valid & ATTR_UID)
2115 args->uid = attrs->ia_uid;
2116 else
Eric W. Biederman49418b22013-02-06 00:57:56 -08002117 args->uid = INVALID_UID; /* no change */
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002118
2119 if (attrs->ia_valid & ATTR_GID)
2120 args->gid = attrs->ia_gid;
2121 else
Eric W. Biederman49418b22013-02-06 00:57:56 -08002122 args->gid = INVALID_GID; /* no change */
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002123
2124 if (attrs->ia_valid & ATTR_ATIME)
2125 args->atime = cifs_UnixTimeToNT(attrs->ia_atime);
2126 else
2127 args->atime = NO_CHANGE_64;
2128
2129 if (attrs->ia_valid & ATTR_MTIME)
2130 args->mtime = cifs_UnixTimeToNT(attrs->ia_mtime);
2131 else
2132 args->mtime = NO_CHANGE_64;
2133
2134 if (attrs->ia_valid & ATTR_CTIME)
2135 args->ctime = cifs_UnixTimeToNT(attrs->ia_ctime);
2136 else
2137 args->ctime = NO_CHANGE_64;
2138
2139 args->device = 0;
Jeff Layton6508d902010-09-29 19:51:11 -04002140 open_file = find_writable_file(cifsInode, true);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002141 if (open_file) {
Pavel Shilovsky4b4de762012-09-18 16:20:26 -07002142 u16 nfid = open_file->fid.netfid;
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002143 u32 npid = open_file->pid;
Jeff Layton13cfb732010-09-29 19:51:11 -04002144 pTcon = tlink_tcon(open_file->tlink);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002145 rc = CIFSSMBUnixSetFileInfo(xid, pTcon, args, nfid, npid);
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04002146 cifsFileInfo_put(open_file);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002147 } else {
Jeff Layton7ffec372010-09-29 19:51:11 -04002148 tlink = cifs_sb_tlink(cifs_sb);
2149 if (IS_ERR(tlink)) {
2150 rc = PTR_ERR(tlink);
2151 goto out;
2152 }
2153 pTcon = tlink_tcon(tlink);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002154 rc = CIFSSMBUnixSetPathInfo(xid, pTcon, full_path, args,
Jeff Layton01ea95e2009-07-09 20:02:49 -04002155 cifs_sb->local_nls,
2156 cifs_sb->mnt_cifs_flags &
2157 CIFS_MOUNT_MAP_SPECIAL_CHR);
Jeff Layton7ffec372010-09-29 19:51:11 -04002158 cifs_put_tlink(tlink);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002159 }
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002160
Christoph Hellwig10257742010-06-04 11:30:02 +02002161 if (rc)
2162 goto out;
Steve Frenchccd4bb12010-02-08 17:39:58 +00002163
Christoph Hellwig10257742010-06-04 11:30:02 +02002164 if ((attrs->ia_valid & ATTR_SIZE) &&
Christoph Hellwig1b947462010-07-18 17:51:21 -04002165 attrs->ia_size != i_size_read(inode))
2166 truncate_setsize(inode, attrs->ia_size);
Christoph Hellwig10257742010-06-04 11:30:02 +02002167
2168 setattr_copy(inode, attrs);
2169 mark_inode_dirty(inode);
2170
2171 /* force revalidate when any of these times are set since some
2172 of the fs types (eg ext3, fat) do not have fine enough
2173 time granularity to match protocol, and we do not have a
2174 a way (yet) to query the server fs's time granularity (and
2175 whether it rounds times down).
2176 */
2177 if (attrs->ia_valid & (ATTR_MTIME | ATTR_CTIME))
2178 cifsInode->time = 0;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002179out:
2180 kfree(args);
2181 kfree(full_path);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002182 free_xid(xid);
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002183 return rc;
2184}
2185
Jeff Layton0510eeb2008-08-02 07:26:12 -04002186static int
2187cifs_setattr_nounix(struct dentry *direntry, struct iattr *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002189 unsigned int xid;
Eric W. Biederman8abf2772013-02-06 00:33:17 -08002190 kuid_t uid = INVALID_UID;
2191 kgid_t gid = INVALID_GID;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002192 struct inode *inode = direntry->d_inode;
2193 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002194 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 char *full_path = NULL;
2196 int rc = -EACCES;
Jeff Laytonfeb3e202008-08-02 07:26:12 -04002197 __u32 dosattr = 0;
Jeff Layton4e1e7fb2008-08-02 07:26:12 -04002198 __u64 mode = NO_CHANGE_64;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002199
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002200 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Joe Perchesf96637b2013-05-04 22:12:25 -05002202 cifs_dbg(FYI, "setattr on file %s attrs->iavalid 0x%x\n",
Joe Perchesb6b38f72010-04-21 03:50:45 +00002203 direntry->d_name.name, attrs->ia_valid);
Steve French6473a552005-11-29 20:20:10 -08002204
Christoph Hellwigdb78b872010-06-04 11:30:03 +02002205 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
2206 attrs->ia_valid |= ATTR_FORCE;
2207
2208 rc = inode_change_ok(inode, attrs);
2209 if (rc < 0) {
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002210 free_xid(xid);
Christoph Hellwigdb78b872010-06-04 11:30:03 +02002211 return rc;
Steve French6473a552005-11-29 20:20:10 -08002212 }
Steve French50c2f752007-07-13 00:33:32 +00002213
Steve French7f573562005-08-30 11:32:14 -07002214 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05302216 rc = -ENOMEM;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002217 free_xid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05302218 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Jeff Layton0f4d6342009-03-26 13:35:37 -04002221 /*
2222 * Attempt to flush data before changing attributes. We need to do
2223 * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the
2224 * ownership or mode then we may also need to do this. Here, we take
2225 * the safe way out and just do the flush on all setattr requests. If
2226 * the flush returns error, store it to report later and continue.
2227 *
2228 * BB: This should be smarter. Why bother flushing pages that
2229 * will be truncated anyway? Also, should we error out here if
2230 * the flush returns error?
2231 */
2232 rc = filemap_write_and_wait(inode->i_mapping);
Jeff Laytoneb4b7562010-10-22 14:52:29 -04002233 mapping_set_error(inode->i_mapping, rc);
2234 rc = 0;
Jeff Laytoncea21802007-11-20 23:19:03 +00002235
Steve French50531442008-03-14 19:21:31 +00002236 if (attrs->ia_valid & ATTR_SIZE) {
Jeff Layton8efdbde2008-07-23 21:28:12 +00002237 rc = cifs_set_file_size(inode, attrs, xid, full_path);
2238 if (rc != 0)
Steve Frenche30dcf32005-09-20 20:49:16 -07002239 goto cifs_setattr_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 }
Jeff Layton4ca691a2008-05-22 09:33:34 -04002241
Shirish Pargaonkara5ff3762011-10-13 10:26:03 -05002242 if (attrs->ia_valid & ATTR_UID)
2243 uid = attrs->ia_uid;
2244
2245 if (attrs->ia_valid & ATTR_GID)
2246 gid = attrs->ia_gid;
2247
2248#ifdef CONFIG_CIFS_ACL
2249 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
Eric W. Biederman8abf2772013-02-06 00:33:17 -08002250 if (uid_valid(uid) || gid_valid(gid)) {
Shirish Pargaonkara5ff3762011-10-13 10:26:03 -05002251 rc = id_mode_to_cifs_acl(inode, full_path, NO_CHANGE_64,
2252 uid, gid);
2253 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002254 cifs_dbg(FYI, "%s: Setting id failed with error: %d\n",
2255 __func__, rc);
Shirish Pargaonkara5ff3762011-10-13 10:26:03 -05002256 goto cifs_setattr_exit;
2257 }
2258 }
2259 } else
2260#endif /* CONFIG_CIFS_ACL */
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002261 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID))
Jeff Layton4ca691a2008-05-22 09:33:34 -04002262 attrs->ia_valid &= ~(ATTR_UID | ATTR_GID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
Jeff Laytond32c4f22007-10-18 03:05:22 -07002264 /* skip mode change if it's just for clearing setuid/setgid */
2265 if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
2266 attrs->ia_valid &= ~ATTR_MODE;
2267
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 if (attrs->ia_valid & ATTR_MODE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 mode = attrs->ia_mode;
Steve Frenchcdbce9c2005-11-19 21:04:52 -08002270 rc = 0;
Jeff Layton79df1ba2010-12-06 12:52:08 -05002271#ifdef CONFIG_CIFS_ACL
Shirish Pargaonkar78415d22010-11-27 11:37:26 -06002272 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
Shirish Pargaonkara5ff3762011-10-13 10:26:03 -05002273 rc = id_mode_to_cifs_acl(inode, full_path, mode,
Eric W. Biederman8abf2772013-02-06 00:33:17 -08002274 INVALID_UID, INVALID_GID);
Shirish Pargaonkar78415d22010-11-27 11:37:26 -06002275 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002276 cifs_dbg(FYI, "%s: Setting ACL failed with error: %d\n",
2277 __func__, rc);
Shirish Pargaonkar78415d22010-11-27 11:37:26 -06002278 goto cifs_setattr_exit;
2279 }
2280 } else
Jeff Layton79df1ba2010-12-06 12:52:08 -05002281#endif /* CONFIG_CIFS_ACL */
Jeff Layton51328612008-05-22 09:33:34 -04002282 if (((mode & S_IWUGO) == 0) &&
2283 (cifsInode->cifsAttrs & ATTR_READONLY) == 0) {
Jeff Laytonfeb3e202008-08-02 07:26:12 -04002284
2285 dosattr = cifsInode->cifsAttrs | ATTR_READONLY;
2286
Jeff Layton51328612008-05-22 09:33:34 -04002287 /* fix up mode if we're not using dynperm */
2288 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM) == 0)
2289 attrs->ia_mode = inode->i_mode & ~S_IWUGO;
2290 } else if ((mode & S_IWUGO) &&
2291 (cifsInode->cifsAttrs & ATTR_READONLY)) {
Jeff Laytonfeb3e202008-08-02 07:26:12 -04002292
2293 dosattr = cifsInode->cifsAttrs & ~ATTR_READONLY;
2294 /* Attributes of 0 are ignored */
2295 if (dosattr == 0)
2296 dosattr |= ATTR_NORMAL;
Jeff Layton51328612008-05-22 09:33:34 -04002297
2298 /* reset local inode permissions to normal */
2299 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) {
2300 attrs->ia_mode &= ~(S_IALLUGO);
2301 if (S_ISDIR(inode->i_mode))
2302 attrs->ia_mode |=
2303 cifs_sb->mnt_dir_mode;
2304 else
2305 attrs->ia_mode |=
2306 cifs_sb->mnt_file_mode;
2307 }
2308 } else if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) {
2309 /* ignore mode change - ATTR_READONLY hasn't changed */
2310 attrs->ia_valid &= ~ATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 }
2313
Jeff Laytonfeb3e202008-08-02 07:26:12 -04002314 if (attrs->ia_valid & (ATTR_MTIME|ATTR_ATIME|ATTR_CTIME) ||
2315 ((attrs->ia_valid & ATTR_MODE) && dosattr)) {
2316 rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr);
2317 /* BB: check for rc = -EOPNOTSUPP and switch to legacy mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Steve Frenche30dcf32005-09-20 20:49:16 -07002319 /* Even if error on time set, no sense failing the call if
2320 the server would set the time to a reasonable value anyway,
2321 and this check ensures that we are not being called from
2322 sys_utimes in which case we ought to fail the call back to
2323 the user when the server rejects the call */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002324 if ((rc) && (attrs->ia_valid &
Jeff Laytonfeb3e202008-08-02 07:26:12 -04002325 (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE)))
Steve Frenche30dcf32005-09-20 20:49:16 -07002326 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
2328
2329 /* do not need local check to inode_check_ok since the server does
2330 that */
Christoph Hellwig10257742010-06-04 11:30:02 +02002331 if (rc)
2332 goto cifs_setattr_exit;
2333
2334 if ((attrs->ia_valid & ATTR_SIZE) &&
Christoph Hellwig1b947462010-07-18 17:51:21 -04002335 attrs->ia_size != i_size_read(inode))
2336 truncate_setsize(inode, attrs->ia_size);
Christoph Hellwig10257742010-06-04 11:30:02 +02002337
2338 setattr_copy(inode, attrs);
2339 mark_inode_dirty(inode);
Christoph Hellwig10257742010-06-04 11:30:02 +02002340
Steve Frenche30dcf32005-09-20 20:49:16 -07002341cifs_setattr_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 kfree(full_path);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002343 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 return rc;
2345}
2346
Jeff Layton0510eeb2008-08-02 07:26:12 -04002347int
2348cifs_setattr(struct dentry *direntry, struct iattr *attrs)
2349{
2350 struct inode *inode = direntry->d_inode;
2351 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Steve French96daf2b2011-05-27 04:34:02 +00002352 struct cifs_tcon *pTcon = cifs_sb_master_tcon(cifs_sb);
Jeff Layton0510eeb2008-08-02 07:26:12 -04002353
2354 if (pTcon->unix_ext)
2355 return cifs_setattr_unix(direntry, attrs);
2356
2357 return cifs_setattr_nounix(direntry, attrs);
2358
2359 /* BB: add cifs_setattr_legacy for really old servers */
2360}
2361
Steve French99ee4db2007-02-27 05:35:17 +00002362#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363void cifs_delete_inode(struct inode *inode)
2364{
Joe Perchesf96637b2013-05-04 22:12:25 -05002365 cifs_dbg(FYI, "In cifs_delete_inode, inode = 0x%p\n", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 /* may have to add back in if and when safe distributed caching of
2367 directories added e.g. via FindNotify */
2368}
Steve French99ee4db2007-02-27 05:35:17 +00002369#endif