blob: a8693632235f02b349db28e8d77aa45e30d4c783 [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>
Jeff Layton4f73c7d2014-04-30 09:31:47 -040025#include <linux/freezer.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010026#include <linux/sched/signal.h>
Ingo Molnar5dd43ce2017-06-20 12:19:09 +020027#include <linux/wait_bit.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/div64.h>
30#include "cifsfs.h"
31#include "cifspdu.h"
32#include "cifsglob.h"
33#include "cifsproto.h"
34#include "cifs_debug.h"
35#include "cifs_fs_sb.h"
Steve French2baa2682014-09-27 02:19:01 -050036#include "cifs_unicode.h"
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +053037#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Christoph Hellwig70eff552008-02-15 20:55:05 +000039
David Howells01c64fe2011-01-14 18:45:47 +000040static void cifs_set_ops(struct inode *inode)
Christoph Hellwig70eff552008-02-15 20:55:05 +000041{
42 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
43
44 switch (inode->i_mode & S_IFMT) {
45 case S_IFREG:
46 inode->i_op = &cifs_file_inode_ops;
47 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
48 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
49 inode->i_fop = &cifs_file_direct_nobrl_ops;
50 else
51 inode->i_fop = &cifs_file_direct_ops;
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +030052 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO) {
53 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
54 inode->i_fop = &cifs_file_strict_nobrl_ops;
55 else
56 inode->i_fop = &cifs_file_strict_ops;
Christoph Hellwig70eff552008-02-15 20:55:05 +000057 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
58 inode->i_fop = &cifs_file_nobrl_ops;
59 else { /* not direct, send byte range locks */
60 inode->i_fop = &cifs_file_ops;
61 }
62
Christoph Hellwig70eff552008-02-15 20:55:05 +000063 /* check if server can support readpages */
Jeff Layton0d424ad2010-09-20 16:01:35 -070064 if (cifs_sb_master_tcon(cifs_sb)->ses->server->maxBuf <
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030065 PAGE_SIZE + MAX_CIFS_HDR_SIZE)
Christoph Hellwig70eff552008-02-15 20:55:05 +000066 inode->i_data.a_ops = &cifs_addr_ops_smallbuf;
67 else
68 inode->i_data.a_ops = &cifs_addr_ops;
69 break;
70 case S_IFDIR:
Steve Frenchbc5b6e22008-03-11 21:07:48 +000071#ifdef CONFIG_CIFS_DFS_UPCALL
David Howells01c64fe2011-01-14 18:45:47 +000072 if (IS_AUTOMOUNT(inode)) {
Igor Mammedov79626702008-03-09 03:44:18 +000073 inode->i_op = &cifs_dfs_referral_inode_operations;
74 } else {
Steve Frenchbc5b6e22008-03-11 21:07:48 +000075#else /* NO DFS support, treat as a directory */
76 {
77#endif
Igor Mammedov79626702008-03-09 03:44:18 +000078 inode->i_op = &cifs_dir_inode_ops;
79 inode->i_fop = &cifs_dir_ops;
80 }
Christoph Hellwig70eff552008-02-15 20:55:05 +000081 break;
82 case S_IFLNK:
83 inode->i_op = &cifs_symlink_inode_ops;
84 break;
85 default:
86 init_special_inode(inode, inode->i_mode, inode->i_rdev);
87 break;
88 }
89}
90
Jeff Laytondf2cf172010-02-12 07:44:16 -050091/* check inode attributes against fattr. If they don't match, tag the
92 * inode for cache invalidation
93 */
94static void
95cifs_revalidate_cache(struct inode *inode, struct cifs_fattr *fattr)
96{
97 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
98
Joe Perchesf96637b2013-05-04 22:12:25 -050099 cifs_dbg(FYI, "%s: revalidating inode %llu\n",
100 __func__, cifs_i->uniqueid);
Jeff Laytondf2cf172010-02-12 07:44:16 -0500101
102 if (inode->i_state & I_NEW) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500103 cifs_dbg(FYI, "%s: inode %llu is new\n",
104 __func__, cifs_i->uniqueid);
Jeff Laytondf2cf172010-02-12 07:44:16 -0500105 return;
106 }
107
108 /* don't bother with revalidation if we have an oplock */
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400109 if (CIFS_CACHE_READ(cifs_i)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500110 cifs_dbg(FYI, "%s: inode %llu is oplocked\n",
111 __func__, cifs_i->uniqueid);
Jeff Laytondf2cf172010-02-12 07:44:16 -0500112 return;
113 }
114
115 /* revalidate if mtime or size have changed */
116 if (timespec_equal(&inode->i_mtime, &fattr->cf_mtime) &&
117 cifs_i->server_eof == fattr->cf_eof) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500118 cifs_dbg(FYI, "%s: inode %llu is unchanged\n",
119 __func__, cifs_i->uniqueid);
Jeff Laytondf2cf172010-02-12 07:44:16 -0500120 return;
121 }
122
Joe Perchesf96637b2013-05-04 22:12:25 -0500123 cifs_dbg(FYI, "%s: invalidating inode %llu mapping\n",
124 __func__, cifs_i->uniqueid);
Jeff Laytonaff8d5c2014-04-30 09:31:45 -0400125 set_bit(CIFS_INO_INVALID_MAPPING, &cifs_i->flags);
Jeff Laytondf2cf172010-02-12 07:44:16 -0500126}
127
Jim McDonough74d290d2013-09-21 10:36:10 -0500128/*
129 * copy nlink to the inode, unless it wasn't provided. Provide
130 * sane values if we don't have an existing one and none was provided
131 */
132static void
133cifs_nlink_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr)
134{
135 /*
136 * if we're in a situation where we can't trust what we
137 * got from the server (readdir, some non-unix cases)
138 * fake reasonable values
139 */
140 if (fattr->cf_flags & CIFS_FATTR_UNKNOWN_NLINK) {
141 /* only provide fake values on a new inode */
142 if (inode->i_state & I_NEW) {
143 if (fattr->cf_cifsattrs & ATTR_DIRECTORY)
144 set_nlink(inode, 2);
145 else
146 set_nlink(inode, 1);
147 }
148 return;
149 }
150
151 /* we trust the server, so update it */
152 set_nlink(inode, fattr->cf_nlink);
153}
154
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400155/* populate an inode with info from a cifs_fattr struct */
156void
157cifs_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr)
Christoph Hellwig75f12982008-02-25 20:25:21 +0000158{
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400159 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400160 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Christoph Hellwig75f12982008-02-25 20:25:21 +0000161
Jeff Laytondf2cf172010-02-12 07:44:16 -0500162 cifs_revalidate_cache(inode, fattr);
163
Steve Frenchb7ca6922012-08-03 08:43:01 -0500164 spin_lock(&inode->i_lock);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400165 inode->i_atime = fattr->cf_atime;
166 inode->i_mtime = fattr->cf_mtime;
167 inode->i_ctime = fattr->cf_ctime;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400168 inode->i_rdev = fattr->cf_rdev;
Jim McDonough74d290d2013-09-21 10:36:10 -0500169 cifs_nlink_fattr_to_inode(inode, fattr);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400170 inode->i_uid = fattr->cf_uid;
171 inode->i_gid = fattr->cf_gid;
172
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400173 /* if dynperm is set, don't clobber existing mode */
174 if (inode->i_state & I_NEW ||
175 !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM))
176 inode->i_mode = fattr->cf_mode;
177
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400178 cifs_i->cifsAttrs = fattr->cf_cifsattrs;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400179
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400180 if (fattr->cf_flags & CIFS_FATTR_NEED_REVAL)
181 cifs_i->time = 0;
182 else
183 cifs_i->time = jiffies;
184
Jeff Laytonaff8d5c2014-04-30 09:31:45 -0400185 if (fattr->cf_flags & CIFS_FATTR_DELETE_PENDING)
186 set_bit(CIFS_INO_DELETE_PENDING, &cifs_i->flags);
187 else
188 clear_bit(CIFS_INO_DELETE_PENDING, &cifs_i->flags);
Christoph Hellwig75f12982008-02-25 20:25:21 +0000189
Jeff Layton835a36c2010-02-10 16:21:33 -0500190 cifs_i->server_eof = fattr->cf_eof;
Christoph Hellwig75f12982008-02-25 20:25:21 +0000191 /*
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400192 * Can't safely change the file size here if the client is writing to
193 * it due to potential races.
Christoph Hellwig75f12982008-02-25 20:25:21 +0000194 */
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400195 if (is_size_safe_to_change(cifs_i, fattr->cf_eof)) {
196 i_size_write(inode, fattr->cf_eof);
Christoph Hellwig75f12982008-02-25 20:25:21 +0000197
198 /*
199 * i_blocks is not related to (i_size / i_blksize),
200 * but instead 512 byte (2**9) size is required for
201 * calculating num blocks.
202 */
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400203 inode->i_blocks = (512 - 1 + fattr->cf_bytes) >> 9;
Christoph Hellwig75f12982008-02-25 20:25:21 +0000204 }
205 spin_unlock(&inode->i_lock);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400206
David Howells01c64fe2011-01-14 18:45:47 +0000207 if (fattr->cf_flags & CIFS_FATTR_DFS_REFERRAL)
208 inode->i_flags |= S_AUTOMOUNT;
Jeff Laytonc2b93e02013-05-07 11:28:31 -0400209 if (inode->i_state & I_NEW)
210 cifs_set_ops(inode);
Christoph Hellwig75f12982008-02-25 20:25:21 +0000211}
212
Jeff Layton4065c802010-05-17 07:18:58 -0400213void
214cifs_fill_uniqueid(struct super_block *sb, struct cifs_fattr *fattr)
215{
216 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
217
218 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)
219 return;
220
221 fattr->cf_uniqueid = iunique(sb, ROOT_I);
222}
223
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400224/* Fill a cifs_fattr struct with info from FILE_UNIX_BASIC_INFO. */
225void
226cifs_unix_basic_to_fattr(struct cifs_fattr *fattr, FILE_UNIX_BASIC_INFO *info,
227 struct cifs_sb_info *cifs_sb)
228{
229 memset(fattr, 0, sizeof(*fattr));
230 fattr->cf_uniqueid = le64_to_cpu(info->UniqueId);
231 fattr->cf_bytes = le64_to_cpu(info->NumOfBytes);
232 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
233
234 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
235 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastModificationTime);
236 fattr->cf_ctime = cifs_NTtimeToUnix(info->LastStatusChange);
237 fattr->cf_mode = le64_to_cpu(info->Permissions);
238
239 /*
240 * Since we set the inode type below we need to mask off
241 * to avoid strange results if bits set above.
242 */
243 fattr->cf_mode &= ~S_IFMT;
244 switch (le32_to_cpu(info->Type)) {
245 case UNIX_FILE:
246 fattr->cf_mode |= S_IFREG;
247 fattr->cf_dtype = DT_REG;
248 break;
249 case UNIX_SYMLINK:
250 fattr->cf_mode |= S_IFLNK;
251 fattr->cf_dtype = DT_LNK;
252 break;
253 case UNIX_DIR:
254 fattr->cf_mode |= S_IFDIR;
255 fattr->cf_dtype = DT_DIR;
256 break;
257 case UNIX_CHARDEV:
258 fattr->cf_mode |= S_IFCHR;
259 fattr->cf_dtype = DT_CHR;
260 fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor),
261 le64_to_cpu(info->DevMinor) & MINORMASK);
262 break;
263 case UNIX_BLOCKDEV:
264 fattr->cf_mode |= S_IFBLK;
265 fattr->cf_dtype = DT_BLK;
266 fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor),
267 le64_to_cpu(info->DevMinor) & MINORMASK);
268 break;
269 case UNIX_FIFO:
270 fattr->cf_mode |= S_IFIFO;
271 fattr->cf_dtype = DT_FIFO;
272 break;
273 case UNIX_SOCKET:
274 fattr->cf_mode |= S_IFSOCK;
275 fattr->cf_dtype = DT_SOCK;
276 break;
277 default:
278 /* safest to call it a file if we do not know */
279 fattr->cf_mode |= S_IFREG;
280 fattr->cf_dtype = DT_REG;
Joe Perchesf96637b2013-05-04 22:12:25 -0500281 cifs_dbg(FYI, "unknown type %d\n", le32_to_cpu(info->Type));
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400282 break;
283 }
284
Eric W. Biederman46bbc252013-02-05 23:55:44 -0800285 fattr->cf_uid = cifs_sb->mnt_uid;
286 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)) {
287 u64 id = le64_to_cpu(info->Uid);
Eric W. Biederman4a2c8cf2013-02-06 01:53:25 -0800288 if (id < ((uid_t)-1)) {
289 kuid_t uid = make_kuid(&init_user_ns, id);
290 if (uid_valid(uid))
291 fattr->cf_uid = uid;
292 }
Eric W. Biederman46bbc252013-02-05 23:55:44 -0800293 }
294
295 fattr->cf_gid = cifs_sb->mnt_gid;
296 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)) {
297 u64 id = le64_to_cpu(info->Gid);
Eric W. Biederman4a2c8cf2013-02-06 01:53:25 -0800298 if (id < ((gid_t)-1)) {
299 kgid_t gid = make_kgid(&init_user_ns, id);
300 if (gid_valid(gid))
301 fattr->cf_gid = gid;
302 }
Eric W. Biederman46bbc252013-02-05 23:55:44 -0800303 }
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400304
305 fattr->cf_nlink = le64_to_cpu(info->Nlinks);
306}
Steve Frenchb9a32602008-05-20 21:52:32 +0000307
308/*
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400309 * Fill a cifs_fattr struct with fake inode info.
310 *
311 * Needed to setup cifs_fattr data for the directory which is the
312 * junction to the new submount (ie to setup the fake directory
313 * which represents a DFS referral).
Steve Frenchb9a32602008-05-20 21:52:32 +0000314 */
Steve Frenchf1230c92009-07-22 23:13:01 +0000315static void
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400316cifs_create_dfs_fattr(struct cifs_fattr *fattr, struct super_block *sb)
Steve French0e4bbde2008-05-20 19:50:46 +0000317{
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400318 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Steve French0e4bbde2008-05-20 19:50:46 +0000319
Joe Perchesf96637b2013-05-04 22:12:25 -0500320 cifs_dbg(FYI, "creating fake fattr for DFS referral\n");
Steve French0e4bbde2008-05-20 19:50:46 +0000321
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400322 memset(fattr, 0, sizeof(*fattr));
323 fattr->cf_mode = S_IFDIR | S_IXUGO | S_IRWXU;
324 fattr->cf_uid = cifs_sb->mnt_uid;
325 fattr->cf_gid = cifs_sb->mnt_gid;
Deepa Dinamanie37fea52017-05-08 15:59:16 -0700326 ktime_get_real_ts(&fattr->cf_mtime);
327 fattr->cf_mtime = timespec_trunc(fattr->cf_mtime, sb->s_time_gran);
328 fattr->cf_atime = fattr->cf_ctime = fattr->cf_mtime;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400329 fattr->cf_nlink = 2;
330 fattr->cf_flags |= CIFS_FATTR_DFS_REFERRAL;
Steve French0e4bbde2008-05-20 19:50:46 +0000331}
332
Pavel Shilovsky4ad65042012-09-18 16:20:26 -0700333static int
334cifs_get_file_info_unix(struct file *filp)
Jeff Laytonabab0952010-02-12 07:44:18 -0500335{
336 int rc;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400337 unsigned int xid;
Jeff Laytonabab0952010-02-12 07:44:18 -0500338 FILE_UNIX_BASIC_INFO find_data;
339 struct cifs_fattr fattr;
Al Viro496ad9a2013-01-23 17:07:38 -0500340 struct inode *inode = file_inode(filp);
Jeff Laytonabab0952010-02-12 07:44:18 -0500341 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Joe Perchesc21dfb62010-07-12 13:50:14 -0700342 struct cifsFileInfo *cfile = filp->private_data;
Steve French96daf2b2011-05-27 04:34:02 +0000343 struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
Jeff Laytonabab0952010-02-12 07:44:18 -0500344
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400345 xid = get_xid();
Pavel Shilovsky4b4de762012-09-18 16:20:26 -0700346 rc = CIFSSMBUnixQFileInfo(xid, tcon, cfile->fid.netfid, &find_data);
Jeff Laytonabab0952010-02-12 07:44:18 -0500347 if (!rc) {
348 cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb);
349 } else if (rc == -EREMOTE) {
350 cifs_create_dfs_fattr(&fattr, inode->i_sb);
351 rc = 0;
352 }
353
354 cifs_fattr_to_inode(inode, &fattr);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400355 free_xid(xid);
Jeff Laytonabab0952010-02-12 07:44:18 -0500356 return rc;
357}
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359int cifs_get_inode_info_unix(struct inode **pinode,
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400360 const unsigned char *full_path,
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400361 struct super_block *sb, unsigned int xid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400363 int rc;
Steve French0e4bbde2008-05-20 19:50:46 +0000364 FILE_UNIX_BASIC_INFO find_data;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400365 struct cifs_fattr fattr;
Steve French96daf2b2011-05-27 04:34:02 +0000366 struct cifs_tcon *tcon;
Jeff Layton7ffec372010-09-29 19:51:11 -0400367 struct tcon_link *tlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Joe Perchesf96637b2013-05-04 22:12:25 -0500370 cifs_dbg(FYI, "Getting info on %s\n", full_path);
Igor Mammedov79626702008-03-09 03:44:18 +0000371
Jeff Layton7ffec372010-09-29 19:51:11 -0400372 tlink = cifs_sb_tlink(cifs_sb);
373 if (IS_ERR(tlink))
374 return PTR_ERR(tlink);
375 tcon = tlink_tcon(tlink);
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /* could have done a find first instead but this returns more info */
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400378 rc = CIFSSMBUnixQPathInfo(xid, tcon, full_path, &find_data,
Nakajima Akirabc8ebdc42015-02-13 15:35:58 +0900379 cifs_sb->local_nls, cifs_remap(cifs_sb));
Jeff Layton7ffec372010-09-29 19:51:11 -0400380 cifs_put_tlink(tlink);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400381
382 if (!rc) {
383 cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb);
384 } else if (rc == -EREMOTE) {
385 cifs_create_dfs_fattr(&fattr, sb);
Jeff Laytone911d0c2008-07-12 13:47:59 -0700386 rc = 0;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400387 } else {
388 return rc;
Steve French0e4bbde2008-05-20 19:50:46 +0000389 }
390
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200391 /* check for Minshall+French symlinks */
392 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) {
Sachin Prabhucb084b12013-11-25 17:09:50 +0000393 int tmprc = check_mf_symlink(xid, tcon, cifs_sb, &fattr,
394 full_path);
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200395 if (tmprc)
Sachin Prabhucb084b12013-11-25 17:09:50 +0000396 cifs_dbg(FYI, "check_mf_symlink: %d\n", tmprc);
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200397 }
398
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400399 if (*pinode == NULL) {
400 /* get new inode */
Jeff Layton4065c802010-05-17 07:18:58 -0400401 cifs_fill_uniqueid(sb, &fattr);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400402 *pinode = cifs_iget(sb, &fattr);
403 if (!*pinode)
404 rc = -ENOMEM;
405 } else {
406 /* we already have inode, update it */
Nakajima Akira7196ac12015-04-22 15:24:44 +0900407
408 /* if uniqueid is different, return error */
409 if (unlikely(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM &&
410 CIFS_I(*pinode)->uniqueid != fattr.cf_uniqueid)) {
411 rc = -ESTALE;
412 goto cgiiu_exit;
413 }
414
415 /* if filetype is different, return error */
416 if (unlikely(((*pinode)->i_mode & S_IFMT) !=
417 (fattr.cf_mode & S_IFMT))) {
418 rc = -ESTALE;
419 goto cgiiu_exit;
420 }
421
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400422 cifs_fattr_to_inode(*pinode, &fattr);
423 }
Steve French0e4bbde2008-05-20 19:50:46 +0000424
Nakajima Akira7196ac12015-04-22 15:24:44 +0900425cgiiu_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return rc;
427}
428
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400429static int
Pavel Shilovsky0360d602014-01-16 15:53:35 +0400430cifs_sfu_type(struct cifs_fattr *fattr, const char *path,
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400431 struct cifs_sb_info *cifs_sb, unsigned int xid)
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800432{
433 int rc;
Steve Frenchdb8b6312014-09-22 05:13:55 -0500434 __u32 oplock;
Jeff Layton7ffec372010-09-29 19:51:11 -0400435 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +0000436 struct cifs_tcon *tcon;
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +0400437 struct cifs_fid fid;
438 struct cifs_open_parms oparms;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000439 struct cifs_io_parms io_parms;
Steve French86c96b42005-11-18 20:25:31 -0800440 char buf[24];
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800441 unsigned int bytes_read;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000442 char *pbuf;
Pavel Shilovsky0360d602014-01-16 15:53:35 +0400443 int buf_type = CIFS_NO_BUFFER;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800444
445 pbuf = buf;
446
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400447 fattr->cf_mode &= ~S_IFMT;
448
449 if (fattr->cf_eof == 0) {
450 fattr->cf_mode |= S_IFIFO;
451 fattr->cf_dtype = DT_FIFO;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800452 return 0;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400453 } else if (fattr->cf_eof < 8) {
454 fattr->cf_mode |= S_IFREG;
455 fattr->cf_dtype = DT_REG;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800456 return -EINVAL; /* EOPNOTSUPP? */
457 }
Steve French50c2f752007-07-13 00:33:32 +0000458
Jeff Layton7ffec372010-09-29 19:51:11 -0400459 tlink = cifs_sb_tlink(cifs_sb);
460 if (IS_ERR(tlink))
461 return PTR_ERR(tlink);
462 tcon = tlink_tcon(tlink);
463
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +0400464 oparms.tcon = tcon;
465 oparms.cifs_sb = cifs_sb;
466 oparms.desired_access = GENERIC_READ;
467 oparms.create_options = CREATE_NOT_DIR;
468 oparms.disposition = FILE_OPEN;
469 oparms.path = path;
470 oparms.fid = &fid;
471 oparms.reconnect = false;
472
Steve Frenchdb8b6312014-09-22 05:13:55 -0500473 if (tcon->ses->server->oplocks)
474 oplock = REQ_OPLOCK;
475 else
476 oplock = 0;
477 rc = tcon->ses->server->ops->open(xid, &oparms, &oplock, NULL);
Pavel Shilovsky0360d602014-01-16 15:53:35 +0400478 if (rc) {
Steve Frenchdb8b6312014-09-22 05:13:55 -0500479 cifs_dbg(FYI, "check sfu type of %s, open rc = %d\n", path, rc);
Pavel Shilovsky0360d602014-01-16 15:53:35 +0400480 cifs_put_tlink(tlink);
481 return rc;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800482 }
Pavel Shilovsky0360d602014-01-16 15:53:35 +0400483
484 /* Read header */
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +0400485 io_parms.netfid = fid.netfid;
Pavel Shilovsky0360d602014-01-16 15:53:35 +0400486 io_parms.pid = current->tgid;
487 io_parms.tcon = tcon;
488 io_parms.offset = 0;
489 io_parms.length = 24;
490
Steve Frenchdb8b6312014-09-22 05:13:55 -0500491 rc = tcon->ses->server->ops->sync_read(xid, &fid, &io_parms,
492 &bytes_read, &pbuf, &buf_type);
Pavel Shilovsky0360d602014-01-16 15:53:35 +0400493 if ((rc == 0) && (bytes_read >= 8)) {
494 if (memcmp("IntxBLK", pbuf, 8) == 0) {
495 cifs_dbg(FYI, "Block device\n");
496 fattr->cf_mode |= S_IFBLK;
497 fattr->cf_dtype = DT_BLK;
498 if (bytes_read == 24) {
499 /* we have enough to decode dev num */
500 __u64 mjr; /* major */
501 __u64 mnr; /* minor */
502 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
503 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
504 fattr->cf_rdev = MKDEV(mjr, mnr);
505 }
506 } else if (memcmp("IntxCHR", pbuf, 8) == 0) {
507 cifs_dbg(FYI, "Char device\n");
508 fattr->cf_mode |= S_IFCHR;
509 fattr->cf_dtype = DT_CHR;
510 if (bytes_read == 24) {
511 /* we have enough to decode dev num */
512 __u64 mjr; /* major */
513 __u64 mnr; /* minor */
514 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
515 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
516 fattr->cf_rdev = MKDEV(mjr, mnr);
517 }
518 } else if (memcmp("IntxLNK", pbuf, 7) == 0) {
519 cifs_dbg(FYI, "Symlink\n");
520 fattr->cf_mode |= S_IFLNK;
521 fattr->cf_dtype = DT_LNK;
522 } else {
523 fattr->cf_mode |= S_IFREG; /* file? */
524 fattr->cf_dtype = DT_REG;
525 rc = -EOPNOTSUPP;
526 }
527 } else {
528 fattr->cf_mode |= S_IFREG; /* then it is a file */
529 fattr->cf_dtype = DT_REG;
530 rc = -EOPNOTSUPP; /* or some unknown SFU type */
531 }
Steve Frenchdb8b6312014-09-22 05:13:55 -0500532
533 tcon->ses->server->ops->close(xid, tcon, &fid);
Jeff Layton7ffec372010-09-29 19:51:11 -0400534 cifs_put_tlink(tlink);
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800535 return rc;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800536}
537
Steve French9e294f12005-11-17 16:59:21 -0800538#define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */
539
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400540/*
541 * Fetch mode bits as provided by SFU.
542 *
543 * FIXME: Doesn't this clobber the type bit we got from cifs_sfu_type ?
544 */
545static int cifs_sfu_mode(struct cifs_fattr *fattr, const unsigned char *path,
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400546 struct cifs_sb_info *cifs_sb, unsigned int xid)
Steve French9e294f12005-11-17 16:59:21 -0800547{
Steve French3020a1f2005-11-18 11:31:10 -0800548#ifdef CONFIG_CIFS_XATTR
Steve French9e294f12005-11-17 16:59:21 -0800549 ssize_t rc;
550 char ea_value[4];
551 __u32 mode;
Jeff Layton7ffec372010-09-29 19:51:11 -0400552 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +0000553 struct cifs_tcon *tcon;
Steve French9e294f12005-11-17 16:59:21 -0800554
Jeff Layton7ffec372010-09-29 19:51:11 -0400555 tlink = cifs_sb_tlink(cifs_sb);
556 if (IS_ERR(tlink))
557 return PTR_ERR(tlink);
558 tcon = tlink_tcon(tlink);
559
Steve Frenchd979f3b2014-02-01 23:27:18 -0600560 if (tcon->ses->server->ops->query_all_EAs == NULL) {
561 cifs_put_tlink(tlink);
562 return -EOPNOTSUPP;
563 }
564
565 rc = tcon->ses->server->ops->query_all_EAs(xid, tcon, path,
566 "SETFILEBITS", ea_value, 4 /* size of buf */,
Steve French67b4c882017-05-12 20:59:10 -0500567 cifs_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -0400568 cifs_put_tlink(tlink);
Steve French4523cc32007-04-30 20:13:06 +0000569 if (rc < 0)
Steve French9e294f12005-11-17 16:59:21 -0800570 return (int)rc;
571 else if (rc > 3) {
572 mode = le32_to_cpu(*((__le32 *)ea_value));
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400573 fattr->cf_mode &= ~SFBITS_MASK;
Joe Perchesf96637b2013-05-04 22:12:25 -0500574 cifs_dbg(FYI, "special bits 0%o org mode 0%o\n",
575 mode, fattr->cf_mode);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400576 fattr->cf_mode = (mode & SFBITS_MASK) | fattr->cf_mode;
Joe Perchesf96637b2013-05-04 22:12:25 -0500577 cifs_dbg(FYI, "special mode bits 0%o\n", mode);
Steve French9e294f12005-11-17 16:59:21 -0800578 }
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400579
580 return 0;
Steve French3020a1f2005-11-18 11:31:10 -0800581#else
582 return -EOPNOTSUPP;
583#endif
Steve French9e294f12005-11-17 16:59:21 -0800584}
585
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400586/* Fill a cifs_fattr struct with info from FILE_ALL_INFO */
Steve Frenchf1230c92009-07-22 23:13:01 +0000587static void
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400588cifs_all_info_to_fattr(struct cifs_fattr *fattr, FILE_ALL_INFO *info,
Deepa Dinamanie37fea52017-05-08 15:59:16 -0700589 struct super_block *sb, bool adjust_tz,
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400590 bool symlink)
Steve Frenchb9a32602008-05-20 21:52:32 +0000591{
Deepa Dinamanie37fea52017-05-08 15:59:16 -0700592 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Steve French96daf2b2011-05-27 04:34:02 +0000593 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Jeff Layton0d424ad2010-09-20 16:01:35 -0700594
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400595 memset(fattr, 0, sizeof(*fattr));
596 fattr->cf_cifsattrs = le32_to_cpu(info->Attributes);
597 if (info->DeletePending)
598 fattr->cf_flags |= CIFS_FATTR_DELETE_PENDING;
Steve Frenchb9a32602008-05-20 21:52:32 +0000599
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400600 if (info->LastAccessTime)
601 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
Deepa Dinamanie37fea52017-05-08 15:59:16 -0700602 else {
603 ktime_get_real_ts(&fattr->cf_atime);
604 fattr->cf_atime = timespec_trunc(fattr->cf_atime, sb->s_time_gran);
605 }
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400606
607 fattr->cf_ctime = cifs_NTtimeToUnix(info->ChangeTime);
608 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastWriteTime);
609
610 if (adjust_tz) {
Jeff Layton0d424ad2010-09-20 16:01:35 -0700611 fattr->cf_ctime.tv_sec += tcon->ses->server->timeAdj;
612 fattr->cf_mtime.tv_sec += tcon->ses->server->timeAdj;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400613 }
614
615 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
616 fattr->cf_bytes = le64_to_cpu(info->AllocationSize);
Jeff Layton20054bd2011-01-07 11:30:27 -0500617 fattr->cf_createtime = le64_to_cpu(info->CreationTime);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400618
Jim McDonough74d290d2013-09-21 10:36:10 -0500619 fattr->cf_nlink = le32_to_cpu(info->NumberOfLinks);
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400620
621 if (symlink) {
622 fattr->cf_mode = S_IFLNK;
623 fattr->cf_dtype = DT_LNK;
624 } else if (fattr->cf_cifsattrs & ATTR_DIRECTORY) {
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400625 fattr->cf_mode = S_IFDIR | cifs_sb->mnt_dir_mode;
626 fattr->cf_dtype = DT_DIR;
Pavel Shilovsky6de2ce42012-02-17 16:13:30 +0300627 /*
628 * Server can return wrong NumberOfLinks value for directories
629 * when Unix extensions are disabled - fake it.
630 */
Jim McDonough74d290d2013-09-21 10:36:10 -0500631 if (!tcon->unix_ext)
632 fattr->cf_flags |= CIFS_FATTR_UNKNOWN_NLINK;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400633 } else {
634 fattr->cf_mode = S_IFREG | cifs_sb->mnt_file_mode;
635 fattr->cf_dtype = DT_REG;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400636
Jeff Laytond0c280d2009-07-09 01:46:44 -0400637 /* clear write bits if ATTR_READONLY is set */
638 if (fattr->cf_cifsattrs & ATTR_READONLY)
639 fattr->cf_mode &= ~(S_IWUGO);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400640
Jim McDonough74d290d2013-09-21 10:36:10 -0500641 /*
642 * Don't accept zero nlink from non-unix servers unless
643 * delete is pending. Instead mark it as unknown.
644 */
645 if ((fattr->cf_nlink < 1) && !tcon->unix_ext &&
646 !info->DeletePending) {
647 cifs_dbg(1, "bogus file nlink value %u\n",
Steve French6658b9f2013-07-04 14:38:48 -0500648 fattr->cf_nlink);
Jim McDonough74d290d2013-09-21 10:36:10 -0500649 fattr->cf_flags |= CIFS_FATTR_UNKNOWN_NLINK;
Steve French6658b9f2013-07-04 14:38:48 -0500650 }
Pavel Shilovsky6de2ce42012-02-17 16:13:30 +0300651 }
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400652
653 fattr->cf_uid = cifs_sb->mnt_uid;
654 fattr->cf_gid = cifs_sb->mnt_gid;
Steve Frenchb9a32602008-05-20 21:52:32 +0000655}
656
Pavel Shilovsky4ad65042012-09-18 16:20:26 -0700657static int
658cifs_get_file_info(struct file *filp)
Jeff Laytonabab0952010-02-12 07:44:18 -0500659{
660 int rc;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400661 unsigned int xid;
Jeff Laytonabab0952010-02-12 07:44:18 -0500662 FILE_ALL_INFO find_data;
663 struct cifs_fattr fattr;
Al Viro496ad9a2013-01-23 17:07:38 -0500664 struct inode *inode = file_inode(filp);
Joe Perchesc21dfb62010-07-12 13:50:14 -0700665 struct cifsFileInfo *cfile = filp->private_data;
Steve French96daf2b2011-05-27 04:34:02 +0000666 struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
Pavel Shilovsky4ad65042012-09-18 16:20:26 -0700667 struct TCP_Server_Info *server = tcon->ses->server;
668
669 if (!server->ops->query_file_info)
670 return -ENOSYS;
Jeff Laytonabab0952010-02-12 07:44:18 -0500671
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400672 xid = get_xid();
Pavel Shilovsky4ad65042012-09-18 16:20:26 -0700673 rc = server->ops->query_file_info(xid, tcon, &cfile->fid, &find_data);
Pavel Shilovsky42274bb2011-10-22 14:37:50 +0400674 switch (rc) {
675 case 0:
Deepa Dinamanie37fea52017-05-08 15:59:16 -0700676 cifs_all_info_to_fattr(&fattr, &find_data, inode->i_sb, false,
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400677 false);
Pavel Shilovsky42274bb2011-10-22 14:37:50 +0400678 break;
679 case -EREMOTE:
680 cifs_create_dfs_fattr(&fattr, inode->i_sb);
681 rc = 0;
682 break;
683 case -EOPNOTSUPP:
684 case -EINVAL:
Jeff Laytonabab0952010-02-12 07:44:18 -0500685 /*
686 * FIXME: legacy server -- fall back to path-based call?
Steve Frenchff2157132010-03-09 20:30:42 +0000687 * for now, just skip revalidating and mark inode for
688 * immediate reval.
689 */
Jeff Laytonabab0952010-02-12 07:44:18 -0500690 rc = 0;
691 CIFS_I(inode)->time = 0;
Pavel Shilovsky42274bb2011-10-22 14:37:50 +0400692 default:
Jeff Laytonabab0952010-02-12 07:44:18 -0500693 goto cgfi_exit;
Pavel Shilovsky42274bb2011-10-22 14:37:50 +0400694 }
Jeff Laytonabab0952010-02-12 07:44:18 -0500695
696 /*
697 * don't bother with SFU junk here -- just mark inode as needing
698 * revalidation.
699 */
Jeff Laytonabab0952010-02-12 07:44:18 -0500700 fattr.cf_uniqueid = CIFS_I(inode)->uniqueid;
701 fattr.cf_flags |= CIFS_FATTR_NEED_REVAL;
702 cifs_fattr_to_inode(inode, &fattr);
703cgfi_exit:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400704 free_xid(xid);
Jeff Laytonabab0952010-02-12 07:44:18 -0500705 return rc;
706}
707
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400708int
709cifs_get_inode_info(struct inode **inode, const char *full_path,
710 FILE_ALL_INFO *data, struct super_block *sb, int xid,
Steve French42eacf92014-02-10 14:08:16 -0600711 const struct cifs_fid *fid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500713 bool validinum = false;
714 __u16 srchflgs;
715 int rc = 0, tmprc = ENOSYS;
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400716 struct cifs_tcon *tcon;
717 struct TCP_Server_Info *server;
Jeff Layton7ffec372010-09-29 19:51:11 -0400718 struct tcon_link *tlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 char *buf = NULL;
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400721 bool adjust_tz = false;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400722 struct cifs_fattr fattr;
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500723 struct cifs_search_info *srchinf = NULL;
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400724 bool symlink = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Jeff Layton7ffec372010-09-29 19:51:11 -0400726 tlink = cifs_sb_tlink(cifs_sb);
727 if (IS_ERR(tlink))
728 return PTR_ERR(tlink);
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400729 tcon = tlink_tcon(tlink);
730 server = tcon->ses->server;
Jeff Layton7ffec372010-09-29 19:51:11 -0400731
Joe Perchesf96637b2013-05-04 22:12:25 -0500732 cifs_dbg(FYI, "Getting info on %s\n", full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400734 if ((data == NULL) && (*inode != NULL)) {
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400735 if (CIFS_CACHE_READ(CIFS_I(*inode))) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500736 cifs_dbg(FYI, "No need to revalidate cached inode sizes\n");
Jeff Layton7ffec372010-09-29 19:51:11 -0400737 goto cgii_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
739 }
740
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400741 /* if inode info is not passed, get it from server */
742 if (data == NULL) {
743 if (!server->ops->query_path_info) {
744 rc = -ENOSYS;
745 goto cgii_exit;
746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
Jeff Layton7ffec372010-09-29 19:51:11 -0400748 if (buf == NULL) {
749 rc = -ENOMEM;
750 goto cgii_exit;
751 }
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400752 data = (FILE_ALL_INFO *)buf;
753 rc = server->ops->query_path_info(xid, tcon, cifs_sb, full_path,
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400754 data, &adjust_tz, &symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400756
757 if (!rc) {
Deepa Dinamanie37fea52017-05-08 15:59:16 -0700758 cifs_all_info_to_fattr(&fattr, data, sb, adjust_tz,
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400759 symlink);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400760 } else if (rc == -EREMOTE) {
761 cifs_create_dfs_fattr(&fattr, sb);
Steve Frenchb9a32602008-05-20 21:52:32 +0000762 rc = 0;
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500763 } else if (rc == -EACCES && backup_cred(cifs_sb)) {
764 srchinf = kzalloc(sizeof(struct cifs_search_info),
765 GFP_KERNEL);
766 if (srchinf == NULL) {
767 rc = -ENOMEM;
768 goto cgii_exit;
769 }
770
771 srchinf->endOfSearch = false;
772 srchinf->info_level = SMB_FIND_FILE_ID_FULL_DIR_INFO;
773
774 srchflgs = CIFS_SEARCH_CLOSE_ALWAYS |
775 CIFS_SEARCH_CLOSE_AT_END |
776 CIFS_SEARCH_BACKUP_SEARCH;
777
778 rc = CIFSFindFirst(xid, tcon, full_path,
779 cifs_sb, NULL, srchflgs, srchinf, false);
780 if (!rc) {
781 data =
782 (FILE_ALL_INFO *)srchinf->srch_entries_start;
783
784 cifs_dir_info_to_fattr(&fattr,
785 (FILE_DIRECTORY_INFO *)data, cifs_sb);
786 fattr.cf_uniqueid = le64_to_cpu(
787 ((SEARCH_ID_FULL_DIR_INFO *)data)->UniqueId);
788 validinum = true;
789
790 cifs_buf_release(srchinf->ntwrk_buf_start);
791 }
792 kfree(srchinf);
Steve French4c5930e2015-03-30 22:03:06 -0500793 if (rc)
794 goto cgii_exit;
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500795 } else
Igor Mammedov79626702008-03-09 03:44:18 +0000796 goto cgii_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400798 /*
799 * If an inode wasn't passed in, then get the inode number
800 *
801 * Is an i_ino of zero legal? Can we use that to check if the server
802 * supports returning inode numbers? Are there other sanity checks we
803 * can use to ensure that the server is really filling in that field?
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400804 */
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400805 if (*inode == NULL) {
Steve Frenchb9a32602008-05-20 21:52:32 +0000806 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500807 if (validinum == false) {
808 if (server->ops->get_srv_inum)
809 tmprc = server->ops->get_srv_inum(xid,
810 tcon, cifs_sb, full_path,
811 &fattr.cf_uniqueid, data);
812 if (tmprc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500813 cifs_dbg(FYI, "GetSrvInodeNum rc %d\n",
814 tmprc);
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500815 fattr.cf_uniqueid = iunique(sb, ROOT_I);
816 cifs_autodisable_serverino(cifs_sb);
817 }
Jeff Layton132ac7b2009-02-10 07:33:57 -0500818 }
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500819 } else
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400820 fattr.cf_uniqueid = iunique(sb, ROOT_I);
Ross Lagerwalla108471b2015-12-02 14:46:08 +0000821 } else {
822 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) &&
823 validinum == false && server->ops->get_srv_inum) {
824 /*
825 * Pass a NULL tcon to ensure we don't make a round
826 * trip to the server. This only works for SMB2+.
827 */
828 tmprc = server->ops->get_srv_inum(xid,
829 NULL, cifs_sb, full_path,
830 &fattr.cf_uniqueid, data);
831 if (tmprc)
832 fattr.cf_uniqueid = CIFS_I(*inode)->uniqueid;
833 } else
834 fattr.cf_uniqueid = CIFS_I(*inode)->uniqueid;
835 }
Steve Frenchb9a32602008-05-20 21:52:32 +0000836
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400837 /* query for SFU type info if supported and needed */
838 if (fattr.cf_cifsattrs & ATTR_SYSTEM &&
839 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
840 tmprc = cifs_sfu_type(&fattr, full_path, cifs_sb, xid);
841 if (tmprc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500842 cifs_dbg(FYI, "cifs_sfu_type failed: %d\n", tmprc);
Steve Frenchb9a32602008-05-20 21:52:32 +0000843 }
Steve Frenchb9a32602008-05-20 21:52:32 +0000844
Jeff Layton79df1ba2010-12-06 12:52:08 -0500845#ifdef CONFIG_CIFS_ACL
Steve Frenchb9a32602008-05-20 21:52:32 +0000846 /* fill in 0777 bits from ACL */
847 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400848 rc = cifs_acl_to_fattr(cifs_sb, &fattr, *inode, full_path, fid);
Shirish Pargaonkar78415d22010-11-27 11:37:26 -0600849 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500850 cifs_dbg(FYI, "%s: Getting ACL failed with error: %d\n",
851 __func__, rc);
Shirish Pargaonkar78415d22010-11-27 11:37:26 -0600852 goto cgii_exit;
853 }
Steve Frenchb9a32602008-05-20 21:52:32 +0000854 }
Jeff Layton79df1ba2010-12-06 12:52:08 -0500855#endif /* CONFIG_CIFS_ACL */
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400856
857 /* fill in remaining high mode bits e.g. SUID, VTX */
858 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)
859 cifs_sfu_mode(&fattr, full_path, cifs_sb, xid);
860
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200861 /* check for Minshall+French symlinks */
862 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) {
Sachin Prabhucb084b12013-11-25 17:09:50 +0000863 tmprc = check_mf_symlink(xid, tcon, cifs_sb, &fattr,
864 full_path);
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200865 if (tmprc)
Sachin Prabhucb084b12013-11-25 17:09:50 +0000866 cifs_dbg(FYI, "check_mf_symlink: %d\n", tmprc);
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200867 }
868
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400869 if (!*inode) {
870 *inode = cifs_iget(sb, &fattr);
871 if (!*inode)
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400872 rc = -ENOMEM;
873 } else {
Nakajima Akira7196ac12015-04-22 15:24:44 +0900874 /* we already have inode, update it */
875
Ross Lagerwalla108471b2015-12-02 14:46:08 +0000876 /* if uniqueid is different, return error */
877 if (unlikely(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM &&
878 CIFS_I(*inode)->uniqueid != fattr.cf_uniqueid)) {
879 rc = -ESTALE;
880 goto cgii_exit;
881 }
882
Nakajima Akira7196ac12015-04-22 15:24:44 +0900883 /* if filetype is different, return error */
884 if (unlikely(((*inode)->i_mode & S_IFMT) !=
885 (fattr.cf_mode & S_IFMT))) {
886 rc = -ESTALE;
887 goto cgii_exit;
888 }
889
Pavel Shilovsky1208ef12012-05-27 17:34:43 +0400890 cifs_fattr_to_inode(*inode, &fattr);
Steve Frenchb9a32602008-05-20 21:52:32 +0000891 }
892
Igor Mammedov79626702008-03-09 03:44:18 +0000893cgii_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 kfree(buf);
Jeff Layton7ffec372010-09-29 19:51:11 -0400895 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return rc;
897}
898
Steve French7f8ed422007-09-28 22:28:55 +0000899static const struct inode_operations cifs_ipc_inode_ops = {
900 .lookup = cifs_lookup,
901};
902
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400903static int
904cifs_find_inode(struct inode *inode, void *opaque)
905{
906 struct cifs_fattr *fattr = (struct cifs_fattr *) opaque;
907
Jeff Laytonf30b9c12010-07-19 18:00:17 -0400908 /* don't match inode with different uniqueid */
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400909 if (CIFS_I(inode)->uniqueid != fattr->cf_uniqueid)
910 return 0;
911
Jeff Layton20054bd2011-01-07 11:30:27 -0500912 /* use createtime like an i_generation field */
913 if (CIFS_I(inode)->createtime != fattr->cf_createtime)
914 return 0;
915
Jeff Laytonf30b9c12010-07-19 18:00:17 -0400916 /* don't match inode of different type */
917 if ((inode->i_mode & S_IFMT) != (fattr->cf_mode & S_IFMT))
918 return 0;
919
Jeff Layton5acfec22010-08-02 17:43:54 -0400920 /* if it's not a directory or has no dentries, then flag it */
Al Virob3d9b7a2012-06-09 13:51:19 -0400921 if (S_ISDIR(inode->i_mode) && !hlist_empty(&inode->i_dentry))
Jeff Layton3d694382010-05-11 14:59:55 -0400922 fattr->cf_flags |= CIFS_FATTR_INO_COLLISION;
Jeff Layton3d694382010-05-11 14:59:55 -0400923
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400924 return 1;
925}
926
927static int
928cifs_init_inode(struct inode *inode, void *opaque)
929{
930 struct cifs_fattr *fattr = (struct cifs_fattr *) opaque;
931
932 CIFS_I(inode)->uniqueid = fattr->cf_uniqueid;
Jeff Layton20054bd2011-01-07 11:30:27 -0500933 CIFS_I(inode)->createtime = fattr->cf_createtime;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400934 return 0;
935}
936
Jeff Layton5acfec22010-08-02 17:43:54 -0400937/*
938 * walk dentry list for an inode and report whether it has aliases that
939 * are hashed. We use this to determine if a directory inode can actually
940 * be used.
941 */
942static bool
943inode_has_hashed_dentries(struct inode *inode)
944{
945 struct dentry *dentry;
946
Nick Piggin873feea2011-01-07 17:50:06 +1100947 spin_lock(&inode->i_lock);
Al Viro946e51f2014-10-26 19:19:16 -0400948 hlist_for_each_entry(dentry, &inode->i_dentry, d_u.d_alias) {
Jeff Layton5acfec22010-08-02 17:43:54 -0400949 if (!d_unhashed(dentry) || IS_ROOT(dentry)) {
Nick Piggin873feea2011-01-07 17:50:06 +1100950 spin_unlock(&inode->i_lock);
Jeff Layton5acfec22010-08-02 17:43:54 -0400951 return true;
952 }
953 }
Nick Piggin873feea2011-01-07 17:50:06 +1100954 spin_unlock(&inode->i_lock);
Jeff Layton5acfec22010-08-02 17:43:54 -0400955 return false;
956}
957
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400958/* Given fattrs, get a corresponding inode */
959struct inode *
960cifs_iget(struct super_block *sb, struct cifs_fattr *fattr)
961{
962 unsigned long hash;
963 struct inode *inode;
964
Jeff Layton3d694382010-05-11 14:59:55 -0400965retry_iget5_locked:
Joe Perchesf96637b2013-05-04 22:12:25 -0500966 cifs_dbg(FYI, "looking for uniqueid=%llu\n", fattr->cf_uniqueid);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400967
968 /* hash down to 32-bits on 32-bit arch */
969 hash = cifs_uniqueid_to_ino_t(fattr->cf_uniqueid);
970
971 inode = iget5_locked(sb, hash, cifs_find_inode, cifs_init_inode, fattr);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400972 if (inode) {
Jeff Layton5acfec22010-08-02 17:43:54 -0400973 /* was there a potentially problematic inode collision? */
Jeff Layton3d694382010-05-11 14:59:55 -0400974 if (fattr->cf_flags & CIFS_FATTR_INO_COLLISION) {
Jeff Layton3d694382010-05-11 14:59:55 -0400975 fattr->cf_flags &= ~CIFS_FATTR_INO_COLLISION;
Jeff Layton5acfec22010-08-02 17:43:54 -0400976
977 if (inode_has_hashed_dentries(inode)) {
978 cifs_autodisable_serverino(CIFS_SB(sb));
979 iput(inode);
980 fattr->cf_uniqueid = iunique(sb, ROOT_I);
981 goto retry_iget5_locked;
982 }
Jeff Layton3d694382010-05-11 14:59:55 -0400983 }
984
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400985 cifs_fattr_to_inode(inode, fattr);
986 if (sb->s_flags & MS_NOATIME)
987 inode->i_flags |= S_NOATIME | S_NOCMTIME;
988 if (inode->i_state & I_NEW) {
989 inode->i_ino = hash;
Steve French0ccd4802010-07-16 04:31:02 +0000990#ifdef CONFIG_CIFS_FSCACHE
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530991 /* initialize per-inode cache cookie pointer */
992 CIFS_I(inode)->fscache = NULL;
Steve French0ccd4802010-07-16 04:31:02 +0000993#endif
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400994 unlock_new_inode(inode);
995 }
996 }
997
998 return inode;
999}
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001/* gets root inode */
Shirish Pargaonkar9b6763e2011-02-21 23:56:59 -06001002struct inode *cifs_root_iget(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001004 unsigned int xid;
Jeff Layton0d424ad2010-09-20 16:01:35 -07001005 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Jeff Laytoncc0bad72009-06-25 00:56:52 -04001006 struct inode *inode = NULL;
David Howellsce634ab2008-02-07 00:15:33 -08001007 long rc;
Steve French96daf2b2011-05-27 04:34:02 +00001008 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Aurelien Aptela6b50582016-05-25 19:59:09 +02001009 char *path = NULL;
1010 int len;
1011
1012 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH)
1013 && cifs_sb->prepath) {
1014 len = strlen(cifs_sb->prepath);
1015 path = kzalloc(len + 2 /* leading sep + null */, GFP_KERNEL);
1016 if (path == NULL)
1017 return ERR_PTR(-ENOMEM);
1018 path[0] = '/';
1019 memcpy(path+1, cifs_sb->prepath, len);
1020 } else {
1021 path = kstrdup("", GFP_KERNEL);
1022 if (path == NULL)
1023 return ERR_PTR(-ENOMEM);
1024 }
David Howellsce634ab2008-02-07 00:15:33 -08001025
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001026 xid = get_xid();
Steve Frenchb5b374e2014-10-06 01:01:03 -05001027 if (tcon->unix_ext) {
Aurelien Aptela6b50582016-05-25 19:59:09 +02001028 rc = cifs_get_inode_info_unix(&inode, path, sb, xid);
Steve Frenchb5b374e2014-10-06 01:01:03 -05001029 /* some servers mistakenly claim POSIX support */
1030 if (rc != -EOPNOTSUPP)
1031 goto iget_no_retry;
1032 cifs_dbg(VFS, "server does not support POSIX extensions");
1033 tcon->unix_ext = false;
1034 }
Jeff Layton0b8f18e2009-07-09 01:46:37 -04001035
Aurelien Aptela6b50582016-05-25 19:59:09 +02001036 convert_delimiter(path, CIFS_DIR_SEP(cifs_sb));
1037 rc = cifs_get_inode_info(&inode, path, NULL, sb, xid, NULL);
Steve Frenchb5b374e2014-10-06 01:01:03 -05001038
1039iget_no_retry:
Oskar Schirmera7851ce2010-11-10 21:06:13 +00001040 if (!inode) {
1041 inode = ERR_PTR(rc);
1042 goto out;
1043 }
Jeff Laytoncc0bad72009-06-25 00:56:52 -04001044
Steve French0ccd4802010-07-16 04:31:02 +00001045#ifdef CONFIG_CIFS_FSCACHE
Suresh Jayaramand03382c2010-07-05 18:12:27 +05301046 /* populate tcon->resource_id */
Jeff Layton0d424ad2010-09-20 16:01:35 -07001047 tcon->resource_id = CIFS_I(inode)->uniqueid;
Steve French0ccd4802010-07-16 04:31:02 +00001048#endif
Suresh Jayaramand03382c2010-07-05 18:12:27 +05301049
Jeff Layton0d424ad2010-09-20 16:01:35 -07001050 if (rc && tcon->ipc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001051 cifs_dbg(FYI, "ipc connection - fake read inode\n");
Steve Frenchb7ca6922012-08-03 08:43:01 -05001052 spin_lock(&inode->i_lock);
Steve French7f8ed422007-09-28 22:28:55 +00001053 inode->i_mode |= S_IFDIR;
Miklos Szeredibfe86842011-10-28 14:13:29 +02001054 set_nlink(inode, 2);
Steve French7f8ed422007-09-28 22:28:55 +00001055 inode->i_op = &cifs_ipc_inode_ops;
1056 inode->i_fop = &simple_dir_operations;
1057 inode->i_uid = cifs_sb->mnt_uid;
1058 inode->i_gid = cifs_sb->mnt_gid;
Steve Frenchb7ca6922012-08-03 08:43:01 -05001059 spin_unlock(&inode->i_lock);
Steve Frenchad661332008-08-12 14:14:40 +00001060 } else if (rc) {
David Howellsce634ab2008-02-07 00:15:33 -08001061 iget_failed(inode);
Oskar Schirmera7851ce2010-11-10 21:06:13 +00001062 inode = ERR_PTR(rc);
Steve French7f8ed422007-09-28 22:28:55 +00001063 }
1064
Oskar Schirmera7851ce2010-11-10 21:06:13 +00001065out:
Aurelien Aptela6b50582016-05-25 19:59:09 +02001066 kfree(path);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001067 /* can not call macro free_xid here since in a void func
David Howellsce634ab2008-02-07 00:15:33 -08001068 * TODO: This is no longer true
1069 */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001070 _free_xid(xid);
David Howellsce634ab2008-02-07 00:15:33 -08001071 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072}
1073
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001074int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001075cifs_set_file_info(struct inode *inode, struct iattr *attrs, unsigned int xid,
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001076 char *full_path, __u32 dosattr)
Steve French388e57b2008-09-16 23:50:58 +00001077{
Steve French388e57b2008-09-16 23:50:58 +00001078 bool set_time = false;
Steve French388e57b2008-09-16 23:50:58 +00001079 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Pavel Shilovsky6bdf6db2012-09-18 16:20:32 -07001080 struct TCP_Server_Info *server;
Steve French388e57b2008-09-16 23:50:58 +00001081 FILE_BASIC_INFO info_buf;
1082
Steve French1adcb712009-02-25 14:19:56 +00001083 if (attrs == NULL)
1084 return -EINVAL;
1085
Pavel Shilovsky6bdf6db2012-09-18 16:20:32 -07001086 server = cifs_sb_master_tcon(cifs_sb)->ses->server;
1087 if (!server->ops->set_file_info)
1088 return -ENOSYS;
1089
Steve French388e57b2008-09-16 23:50:58 +00001090 if (attrs->ia_valid & ATTR_ATIME) {
1091 set_time = true;
1092 info_buf.LastAccessTime =
1093 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_atime));
1094 } else
1095 info_buf.LastAccessTime = 0;
1096
1097 if (attrs->ia_valid & ATTR_MTIME) {
1098 set_time = true;
1099 info_buf.LastWriteTime =
1100 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_mtime));
1101 } else
1102 info_buf.LastWriteTime = 0;
1103
1104 /*
1105 * Samba throws this field away, but windows may actually use it.
1106 * Do not set ctime unless other time stamps are changed explicitly
1107 * (i.e. by utimes()) since we would then have a mix of client and
1108 * server times.
1109 */
1110 if (set_time && (attrs->ia_valid & ATTR_CTIME)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001111 cifs_dbg(FYI, "CIFS - CTIME changed\n");
Steve French388e57b2008-09-16 23:50:58 +00001112 info_buf.ChangeTime =
1113 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_ctime));
1114 } else
1115 info_buf.ChangeTime = 0;
1116
1117 info_buf.CreationTime = 0; /* don't change */
1118 info_buf.Attributes = cpu_to_le32(dosattr);
1119
Pavel Shilovsky6bdf6db2012-09-18 16:20:32 -07001120 return server->ops->set_file_info(inode, full_path, &info_buf, xid);
Steve French388e57b2008-09-16 23:50:58 +00001121}
1122
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001123/*
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001124 * Open the given file (if it isn't already), set the DELETE_ON_CLOSE bit
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001125 * and rename it to a random name that hopefully won't conflict with
1126 * anything else.
1127 */
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001128int
1129cifs_rename_pending_delete(const char *full_path, struct dentry *dentry,
1130 const unsigned int xid)
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001131{
1132 int oplock = 0;
1133 int rc;
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001134 struct cifs_fid fid;
1135 struct cifs_open_parms oparms;
David Howells2b0143b2015-03-17 22:25:59 +00001136 struct inode *inode = d_inode(dentry);
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001137 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
1138 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04001139 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +00001140 struct cifs_tcon *tcon;
Steve French32709582008-10-20 00:44:19 +00001141 __u32 dosattr, origattr;
1142 FILE_BASIC_INFO *info_buf = NULL;
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001143
Jeff Layton7ffec372010-09-29 19:51:11 -04001144 tlink = cifs_sb_tlink(cifs_sb);
1145 if (IS_ERR(tlink))
1146 return PTR_ERR(tlink);
1147 tcon = tlink_tcon(tlink);
1148
Sachin Prabhuc483a982013-03-05 19:25:56 +00001149 /*
1150 * We cannot rename the file if the server doesn't support
1151 * CAP_INFOLEVEL_PASSTHRU
1152 */
1153 if (!(tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)) {
1154 rc = -EBUSY;
1155 goto out;
1156 }
1157
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001158 oparms.tcon = tcon;
1159 oparms.cifs_sb = cifs_sb;
1160 oparms.desired_access = DELETE | FILE_WRITE_ATTRIBUTES;
1161 oparms.create_options = CREATE_NOT_DIR;
1162 oparms.disposition = FILE_OPEN;
1163 oparms.path = full_path;
1164 oparms.fid = &fid;
1165 oparms.reconnect = false;
1166
1167 rc = CIFS_open(xid, &oparms, &oplock, NULL);
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001168 if (rc != 0)
1169 goto out;
1170
Steve French32709582008-10-20 00:44:19 +00001171 origattr = cifsInode->cifsAttrs;
1172 if (origattr == 0)
1173 origattr |= ATTR_NORMAL;
1174
1175 dosattr = origattr & ~ATTR_READONLY;
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001176 if (dosattr == 0)
1177 dosattr |= ATTR_NORMAL;
1178 dosattr |= ATTR_HIDDEN;
1179
Steve French32709582008-10-20 00:44:19 +00001180 /* set ATTR_HIDDEN and clear ATTR_READONLY, but only if needed */
1181 if (dosattr != origattr) {
1182 info_buf = kzalloc(sizeof(*info_buf), GFP_KERNEL);
1183 if (info_buf == NULL) {
1184 rc = -ENOMEM;
1185 goto out_close;
1186 }
1187 info_buf->Attributes = cpu_to_le32(dosattr);
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001188 rc = CIFSSMBSetFileInfo(xid, tcon, info_buf, fid.netfid,
Steve French32709582008-10-20 00:44:19 +00001189 current->tgid);
1190 /* although we would like to mark the file hidden
1191 if that fails we will still try to rename it */
Sachin Prabhu72d282d2013-03-05 19:25:55 +00001192 if (!rc)
Steve French32709582008-10-20 00:44:19 +00001193 cifsInode->cifsAttrs = dosattr;
1194 else
1195 dosattr = origattr; /* since not able to change them */
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001196 }
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001197
Jeff Laytondd1db2d2008-10-16 19:27:12 -04001198 /* rename the file */
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001199 rc = CIFSSMBRenameOpenFile(xid, tcon, fid.netfid, NULL,
1200 cifs_sb->local_nls,
Steve French2baa2682014-09-27 02:19:01 -05001201 cifs_remap(cifs_sb));
Steve French32709582008-10-20 00:44:19 +00001202 if (rc != 0) {
Sachin Prabhu47c78f42013-03-11 13:08:49 +00001203 rc = -EBUSY;
Steve French32709582008-10-20 00:44:19 +00001204 goto undo_setattr;
1205 }
Jeff Layton6d22f092008-09-23 11:48:35 -04001206
Steve French32709582008-10-20 00:44:19 +00001207 /* try to set DELETE_ON_CLOSE */
Jeff Laytonaff8d5c2014-04-30 09:31:45 -04001208 if (!test_bit(CIFS_INO_DELETE_PENDING, &cifsInode->flags)) {
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001209 rc = CIFSSMBSetFileDisposition(xid, tcon, true, fid.netfid,
Steve French32709582008-10-20 00:44:19 +00001210 current->tgid);
1211 /*
1212 * some samba versions return -ENOENT when we try to set the
1213 * file disposition here. Likely a samba bug, but work around
1214 * it for now. This means that some cifsXXX files may hang
1215 * around after they shouldn't.
1216 *
1217 * BB: remove this hack after more servers have the fix
1218 */
1219 if (rc == -ENOENT)
1220 rc = 0;
1221 else if (rc != 0) {
Sachin Prabhu47c78f42013-03-11 13:08:49 +00001222 rc = -EBUSY;
Steve French32709582008-10-20 00:44:19 +00001223 goto undo_rename;
1224 }
Jeff Laytonaff8d5c2014-04-30 09:31:45 -04001225 set_bit(CIFS_INO_DELETE_PENDING, &cifsInode->flags);
Steve French32709582008-10-20 00:44:19 +00001226 }
Jeff Layton7ce86d52008-09-24 11:32:59 -04001227
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001228out_close:
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001229 CIFSSMBClose(xid, tcon, fid.netfid);
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001230out:
Steve French32709582008-10-20 00:44:19 +00001231 kfree(info_buf);
Jeff Layton7ffec372010-09-29 19:51:11 -04001232 cifs_put_tlink(tlink);
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001233 return rc;
Steve French32709582008-10-20 00:44:19 +00001234
1235 /*
1236 * reset everything back to the original state. Don't bother
1237 * dealing with errors here since we can't do anything about
1238 * them anyway.
1239 */
1240undo_rename:
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001241 CIFSSMBRenameOpenFile(xid, tcon, fid.netfid, dentry->d_name.name,
Steve French2baa2682014-09-27 02:19:01 -05001242 cifs_sb->local_nls, cifs_remap(cifs_sb));
Steve French32709582008-10-20 00:44:19 +00001243undo_setattr:
1244 if (dosattr != origattr) {
1245 info_buf->Attributes = cpu_to_le32(origattr);
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001246 if (!CIFSSMBSetFileInfo(xid, tcon, info_buf, fid.netfid,
Steve French32709582008-10-20 00:44:19 +00001247 current->tgid))
1248 cifsInode->cifsAttrs = origattr;
1249 }
1250
1251 goto out_close;
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001252}
1253
Steve Frenchb7ca6922012-08-03 08:43:01 -05001254/* copied from fs/nfs/dir.c with small changes */
1255static void
1256cifs_drop_nlink(struct inode *inode)
1257{
1258 spin_lock(&inode->i_lock);
1259 if (inode->i_nlink > 0)
1260 drop_nlink(inode);
1261 spin_unlock(&inode->i_lock);
1262}
Steve Frenchff694522009-04-20 19:45:13 +00001263
1264/*
David Howells2b0143b2015-03-17 22:25:59 +00001265 * If d_inode(dentry) is null (usually meaning the cached dentry
Steve Frenchff694522009-04-20 19:45:13 +00001266 * is a negative dentry) then we would attempt a standard SMB delete, but
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001267 * if that fails we can not attempt the fall back mechanisms on EACCESS
1268 * but will return the EACCESS to the caller. Note that the VFS does not call
Steve Frenchff694522009-04-20 19:45:13 +00001269 * unlink on negative dentries currently.
1270 */
Jeff Layton5f0319a2008-09-16 14:05:16 -04001271int cifs_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
1273 int rc = 0;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001274 unsigned int xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 char *full_path = NULL;
David Howells2b0143b2015-03-17 22:25:59 +00001276 struct inode *inode = d_inode(dentry);
Steve Frenchff694522009-04-20 19:45:13 +00001277 struct cifsInodeInfo *cifs_inode;
Jeff Layton5f0319a2008-09-16 14:05:16 -04001278 struct super_block *sb = dir->i_sb;
1279 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04001280 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +00001281 struct cifs_tcon *tcon;
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001282 struct TCP_Server_Info *server;
Steve French60502472008-10-07 18:42:52 +00001283 struct iattr *attrs = NULL;
1284 __u32 dosattr = 0, origattr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Joe Perchesf96637b2013-05-04 22:12:25 -05001286 cifs_dbg(FYI, "cifs_unlink, dir=0x%p, dentry=0x%p\n", dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Jeff Layton7ffec372010-09-29 19:51:11 -04001288 tlink = cifs_sb_tlink(cifs_sb);
1289 if (IS_ERR(tlink))
1290 return PTR_ERR(tlink);
1291 tcon = tlink_tcon(tlink);
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001292 server = tcon->ses->server;
Jeff Layton7ffec372010-09-29 19:51:11 -04001293
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001294 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Jeff Layton5f0319a2008-09-16 14:05:16 -04001296 /* Unlink can be called from rename so we can not take the
1297 * sb->s_vfs_rename_mutex here */
1298 full_path = build_path_from_dentry(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301300 rc = -ENOMEM;
Jeff Layton7ffec372010-09-29 19:51:11 -04001301 goto unlink_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
Steve French2d785a52007-07-15 01:48:57 +00001303
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04001304 if (cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP &
1305 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
Jeff Layton5f0319a2008-09-16 14:05:16 -04001306 rc = CIFSPOSIXDelFile(xid, tcon, full_path,
Steve French2d785a52007-07-15 01:48:57 +00001307 SMB_POSIX_UNLINK_FILE_TARGET, cifs_sb->local_nls,
Steve French2baa2682014-09-27 02:19:01 -05001308 cifs_remap(cifs_sb));
Joe Perchesf96637b2013-05-04 22:12:25 -05001309 cifs_dbg(FYI, "posix del rc %d\n", rc);
Steve French2d785a52007-07-15 01:48:57 +00001310 if ((rc == 0) || (rc == -ENOENT))
1311 goto psx_del_no_retry;
1312 }
1313
Steve French60502472008-10-07 18:42:52 +00001314retry_std_delete:
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001315 if (!server->ops->unlink) {
1316 rc = -ENOSYS;
1317 goto psx_del_no_retry;
1318 }
1319
1320 rc = server->ops->unlink(xid, tcon, full_path, cifs_sb);
Steve French60502472008-10-07 18:42:52 +00001321
Steve French2d785a52007-07-15 01:48:57 +00001322psx_del_no_retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 if (!rc) {
Jeff Layton5f0319a2008-09-16 14:05:16 -04001324 if (inode)
Steve Frenchb7ca6922012-08-03 08:43:01 -05001325 cifs_drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 } else if (rc == -ENOENT) {
Jeff Layton5f0319a2008-09-16 14:05:16 -04001327 d_drop(dentry);
Sachin Prabhu47c78f42013-03-11 13:08:49 +00001328 } else if (rc == -EBUSY) {
Pavel Shilovskyed6875e2012-09-18 16:20:25 -07001329 if (server->ops->rename_pending_delete) {
1330 rc = server->ops->rename_pending_delete(full_path,
1331 dentry, xid);
1332 if (rc == 0)
1333 cifs_drop_nlink(inode);
1334 }
Steve Frenchff694522009-04-20 19:45:13 +00001335 } else if ((rc == -EACCES) && (dosattr == 0) && inode) {
Steve French388e57b2008-09-16 23:50:58 +00001336 attrs = kzalloc(sizeof(*attrs), GFP_KERNEL);
1337 if (attrs == NULL) {
1338 rc = -ENOMEM;
1339 goto out_reval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
Steve French388e57b2008-09-16 23:50:58 +00001341
1342 /* try to reset dos attributes */
Steve Frenchff694522009-04-20 19:45:13 +00001343 cifs_inode = CIFS_I(inode);
1344 origattr = cifs_inode->cifsAttrs;
Steve French60502472008-10-07 18:42:52 +00001345 if (origattr == 0)
1346 origattr |= ATTR_NORMAL;
1347 dosattr = origattr & ~ATTR_READONLY;
Steve French388e57b2008-09-16 23:50:58 +00001348 if (dosattr == 0)
1349 dosattr |= ATTR_NORMAL;
1350 dosattr |= ATTR_HIDDEN;
1351
1352 rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr);
Steve French388e57b2008-09-16 23:50:58 +00001353 if (rc != 0)
1354 goto out_reval;
Steve French60502472008-10-07 18:42:52 +00001355
1356 goto retry_std_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
Steve French60502472008-10-07 18:42:52 +00001358
1359 /* undo the setattr if we errored out and it's needed */
1360 if (rc != 0 && dosattr != 0)
1361 cifs_set_file_info(inode, attrs, xid, full_path, origattr);
1362
Steve French388e57b2008-09-16 23:50:58 +00001363out_reval:
Jeff Layton5f0319a2008-09-16 14:05:16 -04001364 if (inode) {
Steve Frenchff694522009-04-20 19:45:13 +00001365 cifs_inode = CIFS_I(inode);
1366 cifs_inode->time = 0; /* will force revalidate to get info
Steve Frenchb2aeb9d2005-05-17 13:16:18 -05001367 when needed */
Deepa Dinamanie37fea52017-05-08 15:59:16 -07001368 inode->i_ctime = current_time(inode);
Steve Frenchb2aeb9d2005-05-17 13:16:18 -05001369 }
Deepa Dinamanie37fea52017-05-08 15:59:16 -07001370 dir->i_ctime = dir->i_mtime = current_time(dir);
Steve Frenchff694522009-04-20 19:45:13 +00001371 cifs_inode = CIFS_I(dir);
Steve French60502472008-10-07 18:42:52 +00001372 CIFS_I(dir)->time = 0; /* force revalidate of dir as well */
Jeff Layton7ffec372010-09-29 19:51:11 -04001373unlink_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 kfree(full_path);
Steve French60502472008-10-07 18:42:52 +00001375 kfree(attrs);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001376 free_xid(xid);
Jeff Layton7ffec372010-09-29 19:51:11 -04001377 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return rc;
1379}
1380
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001381static int
Jeff Layton101b92d2012-09-19 06:22:45 -07001382cifs_mkdir_qinfo(struct inode *parent, struct dentry *dentry, umode_t mode,
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001383 const char *full_path, struct cifs_sb_info *cifs_sb,
1384 struct cifs_tcon *tcon, const unsigned int xid)
1385{
1386 int rc = 0;
Jeff Layton101b92d2012-09-19 06:22:45 -07001387 struct inode *inode = NULL;
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001388
1389 if (tcon->unix_ext)
Jeff Layton101b92d2012-09-19 06:22:45 -07001390 rc = cifs_get_inode_info_unix(&inode, full_path, parent->i_sb,
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001391 xid);
1392 else
Jeff Layton101b92d2012-09-19 06:22:45 -07001393 rc = cifs_get_inode_info(&inode, full_path, NULL, parent->i_sb,
1394 xid, NULL);
1395
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001396 if (rc)
1397 return rc;
1398
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001399 /*
1400 * setting nlink not necessary except in cases where we failed to get it
Jeff Layton101b92d2012-09-19 06:22:45 -07001401 * from the server or was set bogus. Also, since this is a brand new
1402 * inode, no need to grab the i_lock before setting the i_nlink.
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001403 */
Jeff Layton101b92d2012-09-19 06:22:45 -07001404 if (inode->i_nlink < 2)
1405 set_nlink(inode, 2);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001406 mode &= ~current_umask();
1407 /* must turn on setgid bit if parent dir has it */
Jeff Layton101b92d2012-09-19 06:22:45 -07001408 if (parent->i_mode & S_ISGID)
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001409 mode |= S_ISGID;
1410
1411 if (tcon->unix_ext) {
1412 struct cifs_unix_set_info_args args = {
1413 .mode = mode,
1414 .ctime = NO_CHANGE_64,
1415 .atime = NO_CHANGE_64,
1416 .mtime = NO_CHANGE_64,
1417 .device = 0,
1418 };
1419 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
Eric W. Biederman49418b22013-02-06 00:57:56 -08001420 args.uid = current_fsuid();
Jeff Layton101b92d2012-09-19 06:22:45 -07001421 if (parent->i_mode & S_ISGID)
Eric W. Biederman49418b22013-02-06 00:57:56 -08001422 args.gid = parent->i_gid;
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001423 else
Eric W. Biederman49418b22013-02-06 00:57:56 -08001424 args.gid = current_fsgid();
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001425 } else {
Eric W. Biederman49418b22013-02-06 00:57:56 -08001426 args.uid = INVALID_UID; /* no change */
1427 args.gid = INVALID_GID; /* no change */
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001428 }
1429 CIFSSMBUnixSetPathInfo(xid, tcon, full_path, &args,
1430 cifs_sb->local_nls,
Steve French2baa2682014-09-27 02:19:01 -05001431 cifs_remap(cifs_sb));
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001432 } else {
Pavel Shilovskyf4367202012-03-17 11:41:12 +03001433 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001434 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) &&
Pavel Shilovskyf4367202012-03-17 11:41:12 +03001435 (mode & S_IWUGO) == 0 && server->ops->mkdir_setinfo)
Jeff Layton101b92d2012-09-19 06:22:45 -07001436 server->ops->mkdir_setinfo(inode, full_path, cifs_sb,
Pavel Shilovskyf4367202012-03-17 11:41:12 +03001437 tcon, xid);
Jeff Layton101b92d2012-09-19 06:22:45 -07001438 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)
1439 inode->i_mode = (mode | S_IFDIR);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001440
Jeff Layton101b92d2012-09-19 06:22:45 -07001441 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
1442 inode->i_uid = current_fsuid();
1443 if (inode->i_mode & S_ISGID)
1444 inode->i_gid = parent->i_gid;
1445 else
1446 inode->i_gid = current_fsgid();
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001447 }
1448 }
Jeff Layton101b92d2012-09-19 06:22:45 -07001449 d_instantiate(dentry, inode);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001450 return rc;
1451}
1452
1453static int
1454cifs_posix_mkdir(struct inode *inode, struct dentry *dentry, umode_t mode,
1455 const char *full_path, struct cifs_sb_info *cifs_sb,
1456 struct cifs_tcon *tcon, const unsigned int xid)
1457{
1458 int rc = 0;
1459 u32 oplock = 0;
1460 FILE_UNIX_BASIC_INFO *info = NULL;
1461 struct inode *newinode = NULL;
1462 struct cifs_fattr fattr;
1463
1464 info = kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL);
1465 if (info == NULL) {
1466 rc = -ENOMEM;
1467 goto posix_mkdir_out;
1468 }
1469
1470 mode &= ~current_umask();
1471 rc = CIFSPOSIXCreate(xid, tcon, SMB_O_DIRECTORY | SMB_O_CREAT, mode,
1472 NULL /* netfid */, info, &oplock, full_path,
Steve French2baa2682014-09-27 02:19:01 -05001473 cifs_sb->local_nls, cifs_remap(cifs_sb));
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001474 if (rc == -EOPNOTSUPP)
1475 goto posix_mkdir_out;
1476 else if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001477 cifs_dbg(FYI, "posix mkdir returned 0x%x\n", rc);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001478 d_drop(dentry);
1479 goto posix_mkdir_out;
1480 }
1481
1482 if (info->Type == cpu_to_le32(-1))
1483 /* no return info, go query for it */
1484 goto posix_mkdir_get_info;
1485 /*
1486 * BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if
1487 * need to set uid/gid.
1488 */
1489
1490 cifs_unix_basic_to_fattr(&fattr, info, cifs_sb);
1491 cifs_fill_uniqueid(inode->i_sb, &fattr);
1492 newinode = cifs_iget(inode->i_sb, &fattr);
1493 if (!newinode)
1494 goto posix_mkdir_get_info;
1495
1496 d_instantiate(dentry, newinode);
1497
1498#ifdef CONFIG_CIFS_DEBUG2
Al Viro35c265e2014-08-19 20:25:34 -04001499 cifs_dbg(FYI, "instantiated dentry %p %pd to inode %p\n",
1500 dentry, dentry, newinode);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001501
1502 if (newinode->i_nlink != 2)
Joe Perchesf96637b2013-05-04 22:12:25 -05001503 cifs_dbg(FYI, "unexpected number of links %d\n",
1504 newinode->i_nlink);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001505#endif
1506
1507posix_mkdir_out:
1508 kfree(info);
1509 return rc;
1510posix_mkdir_get_info:
1511 rc = cifs_mkdir_qinfo(inode, dentry, mode, full_path, cifs_sb, tcon,
1512 xid);
1513 goto posix_mkdir_out;
1514}
1515
Al Viro18bb1db2011-07-26 01:41:39 -04001516int cifs_mkdir(struct inode *inode, struct dentry *direntry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001518 int rc = 0;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001519 unsigned int xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 struct cifs_sb_info *cifs_sb;
Jeff Layton7ffec372010-09-29 19:51:11 -04001521 struct tcon_link *tlink;
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04001522 struct cifs_tcon *tcon;
Pavel Shilovskyf4367202012-03-17 11:41:12 +03001523 struct TCP_Server_Info *server;
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001524 char *full_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Joe Perchesf96637b2013-05-04 22:12:25 -05001526 cifs_dbg(FYI, "In cifs_mkdir, mode = 0x%hx inode = 0x%p\n",
1527 mode, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04001530 tlink = cifs_sb_tlink(cifs_sb);
1531 if (IS_ERR(tlink))
1532 return PTR_ERR(tlink);
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04001533 tcon = tlink_tcon(tlink);
Jeff Layton7ffec372010-09-29 19:51:11 -04001534
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001535 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Steve French7f573562005-08-30 11:32:14 -07001537 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301539 rc = -ENOMEM;
Jeff Layton7ffec372010-09-29 19:51:11 -04001540 goto mkdir_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
Steve French50c2f752007-07-13 00:33:32 +00001542
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04001543 if (cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP &
1544 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001545 rc = cifs_posix_mkdir(inode, direntry, mode, full_path, cifs_sb,
1546 tcon, xid);
1547 if (rc != -EOPNOTSUPP)
Steve French2dd29d32007-04-23 22:07:35 +00001548 goto mkdir_out;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001549 }
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001550
Pavel Shilovskyf4367202012-03-17 11:41:12 +03001551 server = tcon->ses->server;
1552
1553 if (!server->ops->mkdir) {
1554 rc = -ENOSYS;
1555 goto mkdir_out;
1556 }
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 /* BB add setting the equivalent of mode via CreateX w/ACLs */
Pavel Shilovskyf4367202012-03-17 11:41:12 +03001559 rc = server->ops->mkdir(xid, tcon, full_path, cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001561 cifs_dbg(FYI, "cifs_mkdir returned 0x%x\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 d_drop(direntry);
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001563 goto mkdir_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
Pavel Shilovskyff691e92012-07-13 14:04:46 +04001565
1566 rc = cifs_mkdir_qinfo(inode, direntry, mode, full_path, cifs_sb, tcon,
1567 xid);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001568mkdir_out:
Pavel Shilovsky6de2ce42012-02-17 16:13:30 +03001569 /*
1570 * Force revalidate to get parent dir info when needed since cached
1571 * attributes are invalid now.
1572 */
1573 CIFS_I(inode)->time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 kfree(full_path);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001575 free_xid(xid);
Jeff Layton7ffec372010-09-29 19:51:11 -04001576 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 return rc;
1578}
1579
1580int cifs_rmdir(struct inode *inode, struct dentry *direntry)
1581{
1582 int rc = 0;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001583 unsigned int xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 struct cifs_sb_info *cifs_sb;
Jeff Layton7ffec372010-09-29 19:51:11 -04001585 struct tcon_link *tlink;
Pavel Shilovskyf958ca52012-07-10 16:14:18 +04001586 struct cifs_tcon *tcon;
1587 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 char *full_path = NULL;
1589 struct cifsInodeInfo *cifsInode;
1590
Joe Perchesf96637b2013-05-04 22:12:25 -05001591 cifs_dbg(FYI, "cifs_rmdir, inode = 0x%p\n", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001593 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Steve French7f573562005-08-30 11:32:14 -07001595 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301597 rc = -ENOMEM;
Jeff Layton7ffec372010-09-29 19:51:11 -04001598 goto rmdir_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
1600
Jeff Layton7ffec372010-09-29 19:51:11 -04001601 cifs_sb = CIFS_SB(inode->i_sb);
1602 tlink = cifs_sb_tlink(cifs_sb);
1603 if (IS_ERR(tlink)) {
1604 rc = PTR_ERR(tlink);
1605 goto rmdir_exit;
1606 }
Pavel Shilovskyf958ca52012-07-10 16:14:18 +04001607 tcon = tlink_tcon(tlink);
1608 server = tcon->ses->server;
Jeff Layton7ffec372010-09-29 19:51:11 -04001609
Pavel Shilovskyf958ca52012-07-10 16:14:18 +04001610 if (!server->ops->rmdir) {
1611 rc = -ENOSYS;
1612 cifs_put_tlink(tlink);
1613 goto rmdir_exit;
1614 }
1615
1616 rc = server->ops->rmdir(xid, tcon, full_path, cifs_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04001617 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
1619 if (!rc) {
David Howells2b0143b2015-03-17 22:25:59 +00001620 spin_lock(&d_inode(direntry)->i_lock);
1621 i_size_write(d_inode(direntry), 0);
1622 clear_nlink(d_inode(direntry));
1623 spin_unlock(&d_inode(direntry)->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 }
1625
David Howells2b0143b2015-03-17 22:25:59 +00001626 cifsInode = CIFS_I(d_inode(direntry));
Pavel Shilovsky6de2ce42012-02-17 16:13:30 +03001627 /* force revalidate to go get info when needed */
1628 cifsInode->time = 0;
Steve French42c24542009-01-13 22:03:55 +00001629
1630 cifsInode = CIFS_I(inode);
Pavel Shilovsky6de2ce42012-02-17 16:13:30 +03001631 /*
1632 * Force revalidate to get parent dir info when needed since cached
1633 * attributes are invalid now.
1634 */
1635 cifsInode->time = 0;
Steve French42c24542009-01-13 22:03:55 +00001636
David Howells2b0143b2015-03-17 22:25:59 +00001637 d_inode(direntry)->i_ctime = inode->i_ctime = inode->i_mtime =
Deepa Dinamanie37fea52017-05-08 15:59:16 -07001638 current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Jeff Layton7ffec372010-09-29 19:51:11 -04001640rmdir_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 kfree(full_path);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001642 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 return rc;
1644}
1645
Steve Frenchee2fd962008-09-23 18:23:33 +00001646static int
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001647cifs_do_rename(const unsigned int xid, struct dentry *from_dentry,
1648 const char *from_path, struct dentry *to_dentry,
1649 const char *to_path)
Steve Frenchee2fd962008-09-23 18:23:33 +00001650{
1651 struct cifs_sb_info *cifs_sb = CIFS_SB(from_dentry->d_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04001652 struct tcon_link *tlink;
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001653 struct cifs_tcon *tcon;
1654 struct TCP_Server_Info *server;
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001655 struct cifs_fid fid;
1656 struct cifs_open_parms oparms;
Steve Frenchee2fd962008-09-23 18:23:33 +00001657 int oplock, rc;
1658
Jeff Layton7ffec372010-09-29 19:51:11 -04001659 tlink = cifs_sb_tlink(cifs_sb);
1660 if (IS_ERR(tlink))
1661 return PTR_ERR(tlink);
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001662 tcon = tlink_tcon(tlink);
1663 server = tcon->ses->server;
1664
1665 if (!server->ops->rename)
1666 return -ENOSYS;
Jeff Layton7ffec372010-09-29 19:51:11 -04001667
Steve Frenchee2fd962008-09-23 18:23:33 +00001668 /* try path-based rename first */
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001669 rc = server->ops->rename(xid, tcon, from_path, to_path, cifs_sb);
Steve Frenchee2fd962008-09-23 18:23:33 +00001670
1671 /*
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001672 * Don't bother with rename by filehandle unless file is busy and
1673 * source. Note that cross directory moves do not work with
Steve Frenchee2fd962008-09-23 18:23:33 +00001674 * rename by filehandle to various Windows servers.
1675 */
Sachin Prabhu47c78f42013-03-11 13:08:49 +00001676 if (rc == 0 || rc != -EBUSY)
Jeff Layton7ffec372010-09-29 19:51:11 -04001677 goto do_rename_exit;
Steve Frenchee2fd962008-09-23 18:23:33 +00001678
Jeff Laytoned0e3ac2010-06-01 16:21:01 -04001679 /* open-file renames don't work across directories */
1680 if (to_dentry->d_parent != from_dentry->d_parent)
Jeff Layton7ffec372010-09-29 19:51:11 -04001681 goto do_rename_exit;
Jeff Laytoned0e3ac2010-06-01 16:21:01 -04001682
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001683 oparms.tcon = tcon;
1684 oparms.cifs_sb = cifs_sb;
Steve Frenchee2fd962008-09-23 18:23:33 +00001685 /* open the file to be renamed -- we need DELETE perms */
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001686 oparms.desired_access = DELETE;
1687 oparms.create_options = CREATE_NOT_DIR;
1688 oparms.disposition = FILE_OPEN;
1689 oparms.path = from_path;
1690 oparms.fid = &fid;
1691 oparms.reconnect = false;
1692
1693 rc = CIFS_open(xid, &oparms, &oplock, NULL);
Steve Frenchee2fd962008-09-23 18:23:33 +00001694 if (rc == 0) {
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001695 rc = CIFSSMBRenameOpenFile(xid, tcon, fid.netfid,
Steve Frenchee2fd962008-09-23 18:23:33 +00001696 (const char *) to_dentry->d_name.name,
Steve French2baa2682014-09-27 02:19:01 -05001697 cifs_sb->local_nls, cifs_remap(cifs_sb));
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001698 CIFSSMBClose(xid, tcon, fid.netfid);
Steve Frenchee2fd962008-09-23 18:23:33 +00001699 }
Jeff Layton7ffec372010-09-29 19:51:11 -04001700do_rename_exit:
1701 cifs_put_tlink(tlink);
Steve Frenchee2fd962008-09-23 18:23:33 +00001702 return rc;
1703}
1704
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001705int
Miklos Szeredi7c33d592014-07-23 15:15:36 +02001706cifs_rename2(struct inode *source_dir, struct dentry *source_dentry,
1707 struct inode *target_dir, struct dentry *target_dentry,
1708 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001710 char *from_name = NULL;
1711 char *to_name = NULL;
Jeff Layton639e7a92010-09-03 11:50:09 -04001712 struct cifs_sb_info *cifs_sb;
Jeff Layton7ffec372010-09-29 19:51:11 -04001713 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +00001714 struct cifs_tcon *tcon;
Steve Frenchee2fd962008-09-23 18:23:33 +00001715 FILE_UNIX_BASIC_INFO *info_buf_source = NULL;
1716 FILE_UNIX_BASIC_INFO *info_buf_target;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001717 unsigned int xid;
1718 int rc, tmprc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Miklos Szeredi7c33d592014-07-23 15:15:36 +02001720 if (flags & ~RENAME_NOREPLACE)
1721 return -EINVAL;
1722
Jeff Layton639e7a92010-09-03 11:50:09 -04001723 cifs_sb = CIFS_SB(source_dir->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04001724 tlink = cifs_sb_tlink(cifs_sb);
1725 if (IS_ERR(tlink))
1726 return PTR_ERR(tlink);
1727 tcon = tlink_tcon(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001729 xid = get_xid();
Steve Frenchee2fd962008-09-23 18:23:33 +00001730
1731 /*
Steve Frenchee2fd962008-09-23 18:23:33 +00001732 * we already have the rename sem so we do not need to
1733 * grab it again here to protect the path integrity
1734 */
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001735 from_name = build_path_from_dentry(source_dentry);
1736 if (from_name == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 rc = -ENOMEM;
1738 goto cifs_rename_exit;
1739 }
1740
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001741 to_name = build_path_from_dentry(target_dentry);
1742 if (to_name == NULL) {
Steve Frenchee2fd962008-09-23 18:23:33 +00001743 rc = -ENOMEM;
1744 goto cifs_rename_exit;
1745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001747 rc = cifs_do_rename(xid, source_dentry, from_name, target_dentry,
1748 to_name);
Steve Frenchee2fd962008-09-23 18:23:33 +00001749
Miklos Szeredi7c33d592014-07-23 15:15:36 +02001750 /*
1751 * No-replace is the natural behavior for CIFS, so skip unlink hacks.
1752 */
1753 if (flags & RENAME_NOREPLACE)
1754 goto cifs_rename_exit;
1755
Jeff Layton14121bd2008-10-20 14:45:22 -04001756 if (rc == -EEXIST && tcon->unix_ext) {
Steve Frenchee2fd962008-09-23 18:23:33 +00001757 /*
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001758 * Are src and dst hardlinks of same inode? We can only tell
1759 * with unix extensions enabled.
Steve Frenchee2fd962008-09-23 18:23:33 +00001760 */
Jeff Layton14121bd2008-10-20 14:45:22 -04001761 info_buf_source =
1762 kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO),
1763 GFP_KERNEL);
1764 if (info_buf_source == NULL) {
1765 rc = -ENOMEM;
1766 goto cifs_rename_exit;
1767 }
1768
1769 info_buf_target = info_buf_source + 1;
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001770 tmprc = CIFSSMBUnixQPathInfo(xid, tcon, from_name,
1771 info_buf_source,
1772 cifs_sb->local_nls,
Steve French2baa2682014-09-27 02:19:01 -05001773 cifs_remap(cifs_sb));
Jeff Layton8d281ef2008-10-22 13:57:01 -04001774 if (tmprc != 0)
Jeff Layton14121bd2008-10-20 14:45:22 -04001775 goto unlink_target;
1776
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001777 tmprc = CIFSSMBUnixQPathInfo(xid, tcon, to_name,
1778 info_buf_target,
1779 cifs_sb->local_nls,
Steve French2baa2682014-09-27 02:19:01 -05001780 cifs_remap(cifs_sb));
Jeff Layton14121bd2008-10-20 14:45:22 -04001781
Jeff Layton8d281ef2008-10-22 13:57:01 -04001782 if (tmprc == 0 && (info_buf_source->UniqueId ==
Jeff Laytonae6884a2008-11-03 14:05:08 -05001783 info_buf_target->UniqueId)) {
Jeff Layton14121bd2008-10-20 14:45:22 -04001784 /* same file, POSIX says that this is a noop */
Jeff Laytonae6884a2008-11-03 14:05:08 -05001785 rc = 0;
Jeff Layton14121bd2008-10-20 14:45:22 -04001786 goto cifs_rename_exit;
Jeff Laytonae6884a2008-11-03 14:05:08 -05001787 }
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001788 }
1789 /*
1790 * else ... BB we could add the same check for Windows by
1791 * checking the UniqueId via FILE_INTERNAL_INFO
1792 */
Jeff Layton14121bd2008-10-20 14:45:22 -04001793
Jeff Layton14121bd2008-10-20 14:45:22 -04001794unlink_target:
Jeff Laytonfc6f3942009-04-17 11:45:30 -04001795 /* Try unlinking the target dentry if it's not negative */
David Howells2b0143b2015-03-17 22:25:59 +00001796 if (d_really_is_positive(target_dentry) && (rc == -EACCES || rc == -EEXIST)) {
Pavel Shilovskya07d3222014-08-22 13:32:09 +04001797 if (d_is_dir(target_dentry))
1798 tmprc = cifs_rmdir(target_dir, target_dentry);
1799 else
1800 tmprc = cifs_unlink(target_dir, target_dentry);
Jeff Layton14121bd2008-10-20 14:45:22 -04001801 if (tmprc)
1802 goto cifs_rename_exit;
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001803 rc = cifs_do_rename(xid, source_dentry, from_name,
1804 target_dentry, to_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 }
1806
Pavel Shilovskyb46799a2014-08-18 20:49:58 +04001807 /* force revalidate to go get info when needed */
1808 CIFS_I(source_dir)->time = CIFS_I(target_dir)->time = 0;
1809
1810 source_dir->i_ctime = source_dir->i_mtime = target_dir->i_ctime =
Deepa Dinamanie37fea52017-05-08 15:59:16 -07001811 target_dir->i_mtime = current_time(source_dir);
Pavel Shilovskyb46799a2014-08-18 20:49:58 +04001812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813cifs_rename_exit:
Steve Frenchee2fd962008-09-23 18:23:33 +00001814 kfree(info_buf_source);
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07001815 kfree(from_name);
1816 kfree(to_name);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001817 free_xid(xid);
Jeff Layton7ffec372010-09-29 19:51:11 -04001818 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return rc;
1820}
1821
Jeff Laytondf2cf172010-02-12 07:44:16 -05001822static bool
1823cifs_inode_needs_reval(struct inode *inode)
1824{
1825 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05301826 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Jeff Laytondf2cf172010-02-12 07:44:16 -05001827
Pavel Shilovsky18cceb62013-09-05 13:01:06 +04001828 if (CIFS_CACHE_READ(cifs_i))
Jeff Laytondf2cf172010-02-12 07:44:16 -05001829 return false;
1830
1831 if (!lookupCacheEnabled)
1832 return true;
1833
1834 if (cifs_i->time == 0)
1835 return true;
1836
Jeff Laytona87c9ad2014-03-26 07:24:23 -07001837 if (!cifs_sb->actimeo)
1838 return true;
1839
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05301840 if (!time_in_range(jiffies, cifs_i->time,
1841 cifs_i->time + cifs_sb->actimeo))
Jeff Laytondf2cf172010-02-12 07:44:16 -05001842 return true;
1843
Jeff Laytondb192722010-05-17 14:51:49 -04001844 /* hardlinked files w/ noserverino get "special" treatment */
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05301845 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) &&
Jeff Laytondb192722010-05-17 14:51:49 -04001846 S_ISREG(inode->i_mode) && inode->i_nlink != 1)
1847 return true;
1848
Jeff Laytondf2cf172010-02-12 07:44:16 -05001849 return false;
1850}
1851
Suresh Jayaraman523fb8c2010-11-29 22:39:47 +05301852/*
1853 * Zap the cache. Called when invalid_mapping flag is set.
1854 */
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001855int
Jeff Laytondf2cf172010-02-12 07:44:16 -05001856cifs_invalidate_mapping(struct inode *inode)
1857{
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001858 int rc = 0;
Jeff Laytondf2cf172010-02-12 07:44:16 -05001859
Jeff Laytondf2cf172010-02-12 07:44:16 -05001860 if (inode->i_mapping && inode->i_mapping->nrpages != 0) {
Pavel Shilovsky257fb1f2011-03-16 01:55:32 +03001861 rc = invalidate_inode_pages2(inode->i_mapping);
Jeff Layton4f73c7d2014-04-30 09:31:47 -04001862 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05001863 cifs_dbg(VFS, "%s: could not invalidate inode %p\n",
1864 __func__, inode);
Jeff Laytondf2cf172010-02-12 07:44:16 -05001865 }
Pavel Shilovsky257fb1f2011-03-16 01:55:32 +03001866
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +05301867 cifs_fscache_reset_inode_cookie(inode);
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001868 return rc;
Jeff Laytondf2cf172010-02-12 07:44:16 -05001869}
1870
Jeff Layton4f73c7d2014-04-30 09:31:47 -04001871/**
1872 * cifs_wait_bit_killable - helper for functions that are sleeping on bit locks
1873 * @word: long word containing the bit lock
1874 */
1875static int
Peter Zijlstradfd01f02015-12-13 22:11:16 +01001876cifs_wait_bit_killable(struct wait_bit_key *key, int mode)
Jeff Layton4f73c7d2014-04-30 09:31:47 -04001877{
Jeff Layton4f73c7d2014-04-30 09:31:47 -04001878 freezable_schedule_unsafe();
Peter Zijlstradfd01f02015-12-13 22:11:16 +01001879 if (signal_pending_state(mode, current))
1880 return -ERESTARTSYS;
Jeff Layton4f73c7d2014-04-30 09:31:47 -04001881 return 0;
1882}
1883
Jeff Laytone284e532014-04-30 09:31:46 -04001884int
1885cifs_revalidate_mapping(struct inode *inode)
1886{
Jeff Layton4f73c7d2014-04-30 09:31:47 -04001887 int rc;
1888 unsigned long *flags = &CIFS_I(inode)->flags;
1889
NeilBrown74316202014-07-07 15:16:04 +10001890 rc = wait_on_bit_lock_action(flags, CIFS_INO_LOCK, cifs_wait_bit_killable,
1891 TASK_KILLABLE);
Jeff Layton4f73c7d2014-04-30 09:31:47 -04001892 if (rc)
1893 return rc;
1894
1895 if (test_and_clear_bit(CIFS_INO_INVALID_MAPPING, flags)) {
1896 rc = cifs_invalidate_mapping(inode);
1897 if (rc)
1898 set_bit(CIFS_INO_INVALID_MAPPING, flags);
1899 }
1900
1901 clear_bit_unlock(CIFS_INO_LOCK, flags);
Linus Torvaldsb1cce802014-06-09 19:08:43 -07001902 smp_mb__after_atomic();
Jeff Layton4f73c7d2014-04-30 09:31:47 -04001903 wake_up_bit(flags, CIFS_INO_LOCK);
1904
1905 return rc;
1906}
1907
1908int
1909cifs_zap_mapping(struct inode *inode)
1910{
1911 set_bit(CIFS_INO_INVALID_MAPPING, &CIFS_I(inode)->flags);
1912 return cifs_revalidate_mapping(inode);
Jeff Laytone284e532014-04-30 09:31:46 -04001913}
1914
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001915int cifs_revalidate_file_attr(struct file *filp)
Jeff Laytonabab0952010-02-12 07:44:18 -05001916{
1917 int rc = 0;
Al Viro496ad9a2013-01-23 17:07:38 -05001918 struct inode *inode = file_inode(filp);
Jeff Laytonba00ba62010-09-20 16:01:31 -07001919 struct cifsFileInfo *cfile = (struct cifsFileInfo *) filp->private_data;
Jeff Laytonabab0952010-02-12 07:44:18 -05001920
1921 if (!cifs_inode_needs_reval(inode))
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001922 return rc;
Jeff Laytonabab0952010-02-12 07:44:18 -05001923
Jeff Layton13cfb732010-09-29 19:51:11 -04001924 if (tlink_tcon(cfile->tlink)->unix_ext)
Jeff Laytonabab0952010-02-12 07:44:18 -05001925 rc = cifs_get_file_info_unix(filp);
1926 else
1927 rc = cifs_get_file_info(filp);
1928
Jeff Laytonabab0952010-02-12 07:44:18 -05001929 return rc;
1930}
1931
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001932int cifs_revalidate_dentry_attr(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001934 unsigned int xid;
Jeff Laytondf2cf172010-02-12 07:44:16 -05001935 int rc = 0;
David Howells2b0143b2015-03-17 22:25:59 +00001936 struct inode *inode = d_inode(dentry);
Jeff Laytondf2cf172010-02-12 07:44:16 -05001937 struct super_block *sb = dentry->d_sb;
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001938 char *full_path = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Jeff Laytondf2cf172010-02-12 07:44:16 -05001940 if (inode == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 return -ENOENT;
1942
Jeff Laytondf2cf172010-02-12 07:44:16 -05001943 if (!cifs_inode_needs_reval(inode))
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001944 return rc;
1945
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001946 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
1948 /* can not safely grab the rename sem here if rename calls revalidate
1949 since that would deadlock */
Jeff Laytondf2cf172010-02-12 07:44:16 -05001950 full_path = build_path_from_dentry(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301952 rc = -ENOMEM;
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001953 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 }
Jeff Laytondf2cf172010-02-12 07:44:16 -05001955
Joe Perchesf96637b2013-05-04 22:12:25 -05001956 cifs_dbg(FYI, "Update attributes: %s inode 0x%p count %d dentry: 0x%p d_time %ld jiffies %ld\n",
1957 full_path, inode, inode->i_count.counter,
Miklos Szeredia00be0e2016-09-16 12:44:21 +02001958 dentry, cifs_get_time(dentry), jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Jeff Layton0d424ad2010-09-20 16:01:35 -07001960 if (cifs_sb_master_tcon(CIFS_SB(sb))->unix_ext)
Jeff Laytondf2cf172010-02-12 07:44:16 -05001961 rc = cifs_get_inode_info_unix(&inode, full_path, sb, xid);
1962 else
1963 rc = cifs_get_inode_info(&inode, full_path, NULL, sb,
1964 xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001966out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 kfree(full_path);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001968 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 return rc;
1970}
1971
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001972int cifs_revalidate_file(struct file *filp)
1973{
1974 int rc;
Al Viro496ad9a2013-01-23 17:07:38 -05001975 struct inode *inode = file_inode(filp);
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001976
1977 rc = cifs_revalidate_file_attr(filp);
1978 if (rc)
1979 return rc;
1980
Jeff Laytone284e532014-04-30 09:31:46 -04001981 return cifs_revalidate_mapping(inode);
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001982}
1983
1984/* revalidate a dentry's inode attributes */
1985int cifs_revalidate_dentry(struct dentry *dentry)
1986{
1987 int rc;
David Howells2b0143b2015-03-17 22:25:59 +00001988 struct inode *inode = d_inode(dentry);
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001989
1990 rc = cifs_revalidate_dentry_attr(dentry);
1991 if (rc)
1992 return rc;
1993
Jeff Laytone284e532014-04-30 09:31:46 -04001994 return cifs_revalidate_mapping(inode);
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001995}
1996
David Howellsa528d352017-01-31 16:46:22 +00001997int cifs_getattr(const struct path *path, struct kstat *stat,
1998 u32 request_mask, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
David Howellsa528d352017-01-31 16:46:22 +00002000 struct dentry *dentry = path->dentry;
Jeff Layton3aa1c8c2010-10-07 14:46:28 -04002001 struct cifs_sb_info *cifs_sb = CIFS_SB(dentry->d_sb);
Steve French96daf2b2011-05-27 04:34:02 +00002002 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
David Howells2b0143b2015-03-17 22:25:59 +00002003 struct inode *inode = d_inode(dentry);
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04002004 int rc;
Jeff Layton3aa1c8c2010-10-07 14:46:28 -04002005
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04002006 /*
2007 * We need to be sure that all dirty pages are written and the server
2008 * has actual ctime, mtime and file length.
2009 */
Pavel Shilovsky18cceb62013-09-05 13:01:06 +04002010 if (!CIFS_CACHE_READ(CIFS_I(inode)) && inode->i_mapping &&
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04002011 inode->i_mapping->nrpages != 0) {
2012 rc = filemap_fdatawait(inode->i_mapping);
Steve French156ecb22011-05-20 17:00:01 +00002013 if (rc) {
2014 mapping_set_error(inode->i_mapping, rc);
2015 return rc;
2016 }
Steve French5fe14c82006-11-07 19:26:33 +00002017 }
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04002018
2019 rc = cifs_revalidate_dentry_attr(dentry);
2020 if (rc)
2021 return rc;
2022
2023 generic_fillattr(inode, stat);
2024 stat->blksize = CIFS_MAX_MSGSIZE;
2025 stat->ino = CIFS_I(inode)->uniqueid;
2026
2027 /*
Jeff Laytond3d1fce2012-11-25 08:00:40 -05002028 * If on a multiuser mount without unix extensions or cifsacl being
2029 * enabled, and the admin hasn't overridden them, set the ownership
2030 * to the fsuid/fsgid of the current process.
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04002031 */
2032 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER) &&
Jeff Laytond3d1fce2012-11-25 08:00:40 -05002033 !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) &&
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04002034 !tcon->unix_ext) {
2035 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID))
2036 stat->uid = current_fsuid();
2037 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID))
2038 stat->gid = current_fsgid();
2039 }
2040 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041}
2042
2043static int cifs_truncate_page(struct address_space *mapping, loff_t from)
2044{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002045 pgoff_t index = from >> PAGE_SHIFT;
2046 unsigned offset = from & (PAGE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 int rc = 0;
2049
2050 page = grab_cache_page(mapping, index);
2051 if (!page)
2052 return -ENOMEM;
2053
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002054 zero_user_segment(page, offset, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002056 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 return rc;
2058}
2059
Christoph Hellwig1b947462010-07-18 17:51:21 -04002060static void cifs_setsize(struct inode *inode, loff_t offset)
Steve French3677db12007-02-26 16:46:11 +00002061{
Steve Frenchba6a46a2007-02-26 20:06:29 +00002062 spin_lock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00002063 i_size_write(inode, offset);
Steve Frenchba6a46a2007-02-26 20:06:29 +00002064 spin_unlock(&inode->i_lock);
Christoph Hellwig1b947462010-07-18 17:51:21 -04002065
Kirill A. Shutemov7caef262013-09-12 15:13:56 -07002066 truncate_pagecache(inode, offset);
Steve French3677db12007-02-26 16:46:11 +00002067}
2068
Jeff Layton8efdbde2008-07-23 21:28:12 +00002069static int
2070cifs_set_file_size(struct inode *inode, struct iattr *attrs,
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002071 unsigned int xid, char *full_path)
Jeff Layton8efdbde2008-07-23 21:28:12 +00002072{
2073 int rc;
2074 struct cifsFileInfo *open_file;
2075 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
2076 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04002077 struct tcon_link *tlink = NULL;
Pavel Shilovskyd1433412012-09-18 16:20:31 -07002078 struct cifs_tcon *tcon = NULL;
2079 struct TCP_Server_Info *server;
Jeff Layton8efdbde2008-07-23 21:28:12 +00002080
2081 /*
2082 * To avoid spurious oplock breaks from server, in the case of
2083 * inodes that we already have open, avoid doing path based
2084 * setting of file size if we can do it by handle.
2085 * This keeps our caching token (oplock) and avoids timeouts
2086 * when the local oplock break takes longer to flush
2087 * writebehind data than the SMB timeout for the SetPathInfo
2088 * request would allow
2089 */
Jeff Layton6508d902010-09-29 19:51:11 -04002090 open_file = find_writable_file(cifsInode, true);
Jeff Layton8efdbde2008-07-23 21:28:12 +00002091 if (open_file) {
Pavel Shilovskyd1433412012-09-18 16:20:31 -07002092 tcon = tlink_tcon(open_file->tlink);
2093 server = tcon->ses->server;
2094 if (server->ops->set_file_size)
2095 rc = server->ops->set_file_size(xid, tcon, open_file,
2096 attrs->ia_size, false);
2097 else
2098 rc = -ENOSYS;
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04002099 cifsFileInfo_put(open_file);
Joe Perchesf96637b2013-05-04 22:12:25 -05002100 cifs_dbg(FYI, "SetFSize for attrs rc = %d\n", rc);
Jeff Layton8efdbde2008-07-23 21:28:12 +00002101 } else
2102 rc = -EINVAL;
2103
Pavel Shilovskyd1433412012-09-18 16:20:31 -07002104 if (!rc)
2105 goto set_size_out;
Jeff Laytonba00ba62010-09-20 16:01:31 -07002106
Pavel Shilovskyd1433412012-09-18 16:20:31 -07002107 if (tcon == NULL) {
2108 tlink = cifs_sb_tlink(cifs_sb);
2109 if (IS_ERR(tlink))
2110 return PTR_ERR(tlink);
2111 tcon = tlink_tcon(tlink);
2112 server = tcon->ses->server;
Jeff Layton8efdbde2008-07-23 21:28:12 +00002113 }
2114
Pavel Shilovskyd1433412012-09-18 16:20:31 -07002115 /*
2116 * Set file size by pathname rather than by handle either because no
2117 * valid, writeable file handle for it was found or because there was
2118 * an error setting it by handle.
2119 */
2120 if (server->ops->set_path_size)
2121 rc = server->ops->set_path_size(xid, tcon, full_path,
2122 attrs->ia_size, cifs_sb, false);
2123 else
2124 rc = -ENOSYS;
Joe Perchesf96637b2013-05-04 22:12:25 -05002125 cifs_dbg(FYI, "SetEOF by path (setattrs) rc = %d\n", rc);
Pavel Shilovskyd1433412012-09-18 16:20:31 -07002126
Pavel Shilovskyd1433412012-09-18 16:20:31 -07002127 if (tlink)
2128 cifs_put_tlink(tlink);
2129
2130set_size_out:
Jeff Layton8efdbde2008-07-23 21:28:12 +00002131 if (rc == 0) {
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04002132 cifsInode->server_eof = attrs->ia_size;
Christoph Hellwig1b947462010-07-18 17:51:21 -04002133 cifs_setsize(inode, attrs->ia_size);
Jeff Layton8efdbde2008-07-23 21:28:12 +00002134 cifs_truncate_page(inode->i_mapping, inode->i_size);
2135 }
2136
2137 return rc;
2138}
2139
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002140static int
2141cifs_setattr_unix(struct dentry *direntry, struct iattr *attrs)
2142{
2143 int rc;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002144 unsigned int xid;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002145 char *full_path = NULL;
David Howells2b0143b2015-03-17 22:25:59 +00002146 struct inode *inode = d_inode(direntry);
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002147 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
2148 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -04002149 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +00002150 struct cifs_tcon *pTcon;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002151 struct cifs_unix_set_info_args *args = NULL;
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002152 struct cifsFileInfo *open_file;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002153
Al Viro35c265e2014-08-19 20:25:34 -04002154 cifs_dbg(FYI, "setattr_unix on file %pd attrs->ia_valid=0x%x\n",
2155 direntry, attrs->ia_valid);
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002156
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002157 xid = get_xid();
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002158
Christoph Hellwigdb78b872010-06-04 11:30:03 +02002159 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
2160 attrs->ia_valid |= ATTR_FORCE;
2161
Jan Kara31051c82016-05-26 16:55:18 +02002162 rc = setattr_prepare(direntry, attrs);
Christoph Hellwigdb78b872010-06-04 11:30:03 +02002163 if (rc < 0)
2164 goto out;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002165
2166 full_path = build_path_from_dentry(direntry);
2167 if (full_path == NULL) {
2168 rc = -ENOMEM;
2169 goto out;
2170 }
2171
Jeff Layton0f4d6342009-03-26 13:35:37 -04002172 /*
2173 * Attempt to flush data before changing attributes. We need to do
2174 * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the
2175 * ownership or mode then we may also need to do this. Here, we take
2176 * the safe way out and just do the flush on all setattr requests. If
2177 * the flush returns error, store it to report later and continue.
2178 *
2179 * BB: This should be smarter. Why bother flushing pages that
2180 * will be truncated anyway? Also, should we error out here if
2181 * the flush returns error?
2182 */
2183 rc = filemap_write_and_wait(inode->i_mapping);
Jeff Laytoneb4b7562010-10-22 14:52:29 -04002184 mapping_set_error(inode->i_mapping, rc);
2185 rc = 0;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002186
2187 if (attrs->ia_valid & ATTR_SIZE) {
2188 rc = cifs_set_file_size(inode, attrs, xid, full_path);
2189 if (rc != 0)
2190 goto out;
2191 }
2192
2193 /* skip mode change if it's just for clearing setuid/setgid */
2194 if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
2195 attrs->ia_valid &= ~ATTR_MODE;
2196
2197 args = kmalloc(sizeof(*args), GFP_KERNEL);
2198 if (args == NULL) {
2199 rc = -ENOMEM;
2200 goto out;
2201 }
2202
2203 /* set up the struct */
2204 if (attrs->ia_valid & ATTR_MODE)
2205 args->mode = attrs->ia_mode;
2206 else
2207 args->mode = NO_CHANGE_64;
2208
2209 if (attrs->ia_valid & ATTR_UID)
2210 args->uid = attrs->ia_uid;
2211 else
Eric W. Biederman49418b22013-02-06 00:57:56 -08002212 args->uid = INVALID_UID; /* no change */
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002213
2214 if (attrs->ia_valid & ATTR_GID)
2215 args->gid = attrs->ia_gid;
2216 else
Eric W. Biederman49418b22013-02-06 00:57:56 -08002217 args->gid = INVALID_GID; /* no change */
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002218
2219 if (attrs->ia_valid & ATTR_ATIME)
2220 args->atime = cifs_UnixTimeToNT(attrs->ia_atime);
2221 else
2222 args->atime = NO_CHANGE_64;
2223
2224 if (attrs->ia_valid & ATTR_MTIME)
2225 args->mtime = cifs_UnixTimeToNT(attrs->ia_mtime);
2226 else
2227 args->mtime = NO_CHANGE_64;
2228
2229 if (attrs->ia_valid & ATTR_CTIME)
2230 args->ctime = cifs_UnixTimeToNT(attrs->ia_ctime);
2231 else
2232 args->ctime = NO_CHANGE_64;
2233
2234 args->device = 0;
Jeff Layton6508d902010-09-29 19:51:11 -04002235 open_file = find_writable_file(cifsInode, true);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002236 if (open_file) {
Pavel Shilovsky4b4de762012-09-18 16:20:26 -07002237 u16 nfid = open_file->fid.netfid;
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002238 u32 npid = open_file->pid;
Jeff Layton13cfb732010-09-29 19:51:11 -04002239 pTcon = tlink_tcon(open_file->tlink);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002240 rc = CIFSSMBUnixSetFileInfo(xid, pTcon, args, nfid, npid);
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04002241 cifsFileInfo_put(open_file);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002242 } else {
Jeff Layton7ffec372010-09-29 19:51:11 -04002243 tlink = cifs_sb_tlink(cifs_sb);
2244 if (IS_ERR(tlink)) {
2245 rc = PTR_ERR(tlink);
2246 goto out;
2247 }
2248 pTcon = tlink_tcon(tlink);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002249 rc = CIFSSMBUnixSetPathInfo(xid, pTcon, full_path, args,
Jeff Layton01ea95e2009-07-09 20:02:49 -04002250 cifs_sb->local_nls,
Nakajima Akirabc8ebdc42015-02-13 15:35:58 +09002251 cifs_remap(cifs_sb));
Jeff Layton7ffec372010-09-29 19:51:11 -04002252 cifs_put_tlink(tlink);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04002253 }
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002254
Christoph Hellwig10257742010-06-04 11:30:02 +02002255 if (rc)
2256 goto out;
Steve Frenchccd4bb12010-02-08 17:39:58 +00002257
Christoph Hellwig10257742010-06-04 11:30:02 +02002258 if ((attrs->ia_valid & ATTR_SIZE) &&
Christoph Hellwig1b947462010-07-18 17:51:21 -04002259 attrs->ia_size != i_size_read(inode))
2260 truncate_setsize(inode, attrs->ia_size);
Christoph Hellwig10257742010-06-04 11:30:02 +02002261
2262 setattr_copy(inode, attrs);
2263 mark_inode_dirty(inode);
2264
2265 /* force revalidate when any of these times are set since some
2266 of the fs types (eg ext3, fat) do not have fine enough
2267 time granularity to match protocol, and we do not have a
2268 a way (yet) to query the server fs's time granularity (and
2269 whether it rounds times down).
2270 */
2271 if (attrs->ia_valid & (ATTR_MTIME | ATTR_CTIME))
2272 cifsInode->time = 0;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002273out:
2274 kfree(args);
2275 kfree(full_path);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002276 free_xid(xid);
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002277 return rc;
2278}
2279
Jeff Layton0510eeb2008-08-02 07:26:12 -04002280static int
2281cifs_setattr_nounix(struct dentry *direntry, struct iattr *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282{
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002283 unsigned int xid;
Eric W. Biederman8abf2772013-02-06 00:33:17 -08002284 kuid_t uid = INVALID_UID;
2285 kgid_t gid = INVALID_GID;
David Howells2b0143b2015-03-17 22:25:59 +00002286 struct inode *inode = d_inode(direntry);
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002287 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002288 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 char *full_path = NULL;
2290 int rc = -EACCES;
Jeff Laytonfeb3e202008-08-02 07:26:12 -04002291 __u32 dosattr = 0;
Jeff Layton4e1e7fb2008-08-02 07:26:12 -04002292 __u64 mode = NO_CHANGE_64;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002293
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002294 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Al Viro35c265e2014-08-19 20:25:34 -04002296 cifs_dbg(FYI, "setattr on file %pd attrs->iavalid 0x%x\n",
2297 direntry, attrs->ia_valid);
Steve French6473a552005-11-29 20:20:10 -08002298
Christoph Hellwigdb78b872010-06-04 11:30:03 +02002299 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
2300 attrs->ia_valid |= ATTR_FORCE;
2301
Jan Kara31051c82016-05-26 16:55:18 +02002302 rc = setattr_prepare(direntry, attrs);
Christoph Hellwigdb78b872010-06-04 11:30:03 +02002303 if (rc < 0) {
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002304 free_xid(xid);
Christoph Hellwigdb78b872010-06-04 11:30:03 +02002305 return rc;
Steve French6473a552005-11-29 20:20:10 -08002306 }
Steve French50c2f752007-07-13 00:33:32 +00002307
Steve French7f573562005-08-30 11:32:14 -07002308 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05302310 rc = -ENOMEM;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002311 free_xid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05302312 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Jeff Layton0f4d6342009-03-26 13:35:37 -04002315 /*
2316 * Attempt to flush data before changing attributes. We need to do
2317 * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the
2318 * ownership or mode then we may also need to do this. Here, we take
2319 * the safe way out and just do the flush on all setattr requests. If
2320 * the flush returns error, store it to report later and continue.
2321 *
2322 * BB: This should be smarter. Why bother flushing pages that
2323 * will be truncated anyway? Also, should we error out here if
2324 * the flush returns error?
2325 */
2326 rc = filemap_write_and_wait(inode->i_mapping);
Jeff Laytoneb4b7562010-10-22 14:52:29 -04002327 mapping_set_error(inode->i_mapping, rc);
2328 rc = 0;
Jeff Laytoncea21802007-11-20 23:19:03 +00002329
Steve French50531442008-03-14 19:21:31 +00002330 if (attrs->ia_valid & ATTR_SIZE) {
Jeff Layton8efdbde2008-07-23 21:28:12 +00002331 rc = cifs_set_file_size(inode, attrs, xid, full_path);
2332 if (rc != 0)
Steve Frenche30dcf32005-09-20 20:49:16 -07002333 goto cifs_setattr_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 }
Jeff Layton4ca691a2008-05-22 09:33:34 -04002335
Shirish Pargaonkara5ff3762011-10-13 10:26:03 -05002336 if (attrs->ia_valid & ATTR_UID)
2337 uid = attrs->ia_uid;
2338
2339 if (attrs->ia_valid & ATTR_GID)
2340 gid = attrs->ia_gid;
2341
2342#ifdef CONFIG_CIFS_ACL
2343 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
Eric W. Biederman8abf2772013-02-06 00:33:17 -08002344 if (uid_valid(uid) || gid_valid(gid)) {
Shirish Pargaonkara5ff3762011-10-13 10:26:03 -05002345 rc = id_mode_to_cifs_acl(inode, full_path, NO_CHANGE_64,
2346 uid, gid);
2347 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002348 cifs_dbg(FYI, "%s: Setting id failed with error: %d\n",
2349 __func__, rc);
Shirish Pargaonkara5ff3762011-10-13 10:26:03 -05002350 goto cifs_setattr_exit;
2351 }
2352 }
2353 } else
2354#endif /* CONFIG_CIFS_ACL */
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04002355 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID))
Jeff Layton4ca691a2008-05-22 09:33:34 -04002356 attrs->ia_valid &= ~(ATTR_UID | ATTR_GID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Jeff Laytond32c4f22007-10-18 03:05:22 -07002358 /* skip mode change if it's just for clearing setuid/setgid */
2359 if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
2360 attrs->ia_valid &= ~ATTR_MODE;
2361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 if (attrs->ia_valid & ATTR_MODE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 mode = attrs->ia_mode;
Steve Frenchcdbce9c2005-11-19 21:04:52 -08002364 rc = 0;
Jeff Layton79df1ba2010-12-06 12:52:08 -05002365#ifdef CONFIG_CIFS_ACL
Shirish Pargaonkar78415d22010-11-27 11:37:26 -06002366 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
Shirish Pargaonkara5ff3762011-10-13 10:26:03 -05002367 rc = id_mode_to_cifs_acl(inode, full_path, mode,
Eric W. Biederman8abf2772013-02-06 00:33:17 -08002368 INVALID_UID, INVALID_GID);
Shirish Pargaonkar78415d22010-11-27 11:37:26 -06002369 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002370 cifs_dbg(FYI, "%s: Setting ACL failed with error: %d\n",
2371 __func__, rc);
Shirish Pargaonkar78415d22010-11-27 11:37:26 -06002372 goto cifs_setattr_exit;
2373 }
2374 } else
Jeff Layton79df1ba2010-12-06 12:52:08 -05002375#endif /* CONFIG_CIFS_ACL */
Jeff Layton51328612008-05-22 09:33:34 -04002376 if (((mode & S_IWUGO) == 0) &&
2377 (cifsInode->cifsAttrs & ATTR_READONLY) == 0) {
Jeff Laytonfeb3e202008-08-02 07:26:12 -04002378
2379 dosattr = cifsInode->cifsAttrs | ATTR_READONLY;
2380
Jeff Layton51328612008-05-22 09:33:34 -04002381 /* fix up mode if we're not using dynperm */
2382 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM) == 0)
2383 attrs->ia_mode = inode->i_mode & ~S_IWUGO;
2384 } else if ((mode & S_IWUGO) &&
2385 (cifsInode->cifsAttrs & ATTR_READONLY)) {
Jeff Laytonfeb3e202008-08-02 07:26:12 -04002386
2387 dosattr = cifsInode->cifsAttrs & ~ATTR_READONLY;
2388 /* Attributes of 0 are ignored */
2389 if (dosattr == 0)
2390 dosattr |= ATTR_NORMAL;
Jeff Layton51328612008-05-22 09:33:34 -04002391
2392 /* reset local inode permissions to normal */
2393 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) {
2394 attrs->ia_mode &= ~(S_IALLUGO);
2395 if (S_ISDIR(inode->i_mode))
2396 attrs->ia_mode |=
2397 cifs_sb->mnt_dir_mode;
2398 else
2399 attrs->ia_mode |=
2400 cifs_sb->mnt_file_mode;
2401 }
2402 } else if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) {
2403 /* ignore mode change - ATTR_READONLY hasn't changed */
2404 attrs->ia_valid &= ~ATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 }
2407
Jeff Laytonfeb3e202008-08-02 07:26:12 -04002408 if (attrs->ia_valid & (ATTR_MTIME|ATTR_ATIME|ATTR_CTIME) ||
2409 ((attrs->ia_valid & ATTR_MODE) && dosattr)) {
2410 rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr);
2411 /* BB: check for rc = -EOPNOTSUPP and switch to legacy mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Steve Frenche30dcf32005-09-20 20:49:16 -07002413 /* Even if error on time set, no sense failing the call if
2414 the server would set the time to a reasonable value anyway,
2415 and this check ensures that we are not being called from
2416 sys_utimes in which case we ought to fail the call back to
2417 the user when the server rejects the call */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002418 if ((rc) && (attrs->ia_valid &
Jeff Laytonfeb3e202008-08-02 07:26:12 -04002419 (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE)))
Steve Frenche30dcf32005-09-20 20:49:16 -07002420 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 }
2422
2423 /* do not need local check to inode_check_ok since the server does
2424 that */
Christoph Hellwig10257742010-06-04 11:30:02 +02002425 if (rc)
2426 goto cifs_setattr_exit;
2427
2428 if ((attrs->ia_valid & ATTR_SIZE) &&
Christoph Hellwig1b947462010-07-18 17:51:21 -04002429 attrs->ia_size != i_size_read(inode))
2430 truncate_setsize(inode, attrs->ia_size);
Christoph Hellwig10257742010-06-04 11:30:02 +02002431
2432 setattr_copy(inode, attrs);
2433 mark_inode_dirty(inode);
Christoph Hellwig10257742010-06-04 11:30:02 +02002434
Steve Frenche30dcf32005-09-20 20:49:16 -07002435cifs_setattr_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 kfree(full_path);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002437 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 return rc;
2439}
2440
Jeff Layton0510eeb2008-08-02 07:26:12 -04002441int
2442cifs_setattr(struct dentry *direntry, struct iattr *attrs)
2443{
Al Virofc640052016-04-10 01:33:30 -04002444 struct cifs_sb_info *cifs_sb = CIFS_SB(direntry->d_sb);
Steve French96daf2b2011-05-27 04:34:02 +00002445 struct cifs_tcon *pTcon = cifs_sb_master_tcon(cifs_sb);
Jeff Layton0510eeb2008-08-02 07:26:12 -04002446
2447 if (pTcon->unix_ext)
2448 return cifs_setattr_unix(direntry, attrs);
2449
2450 return cifs_setattr_nounix(direntry, attrs);
2451
2452 /* BB: add cifs_setattr_legacy for really old servers */
2453}
2454
Steve French99ee4db2007-02-27 05:35:17 +00002455#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456void cifs_delete_inode(struct inode *inode)
2457{
Joe Perchesf96637b2013-05-04 22:12:25 -05002458 cifs_dbg(FYI, "In cifs_delete_inode, inode = 0x%p\n", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 /* may have to add back in if and when safe distributed caching of
2460 directories added e.g. via FindNotify */
2461}
Steve French99ee4db2007-02-27 05:35:17 +00002462#endif