blob: f884cb51622ad76e0dbe8dc4e100116676545d05 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/inode.c
3 *
Steve Frenchf19159d2010-04-21 04:12:10 +00004 * Copyright (C) International Business Machines Corp., 2002,2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 * the GNU Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/stat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/pagemap.h>
25#include <asm/div64.h>
26#include "cifsfs.h"
27#include "cifspdu.h"
28#include "cifsglob.h"
29#include "cifsproto.h"
30#include "cifs_debug.h"
31#include "cifs_fs_sb.h"
32
Christoph Hellwig70eff552008-02-15 20:55:05 +000033
Igor Mammedov79626702008-03-09 03:44:18 +000034static void cifs_set_ops(struct inode *inode, const bool is_dfs_referral)
Christoph Hellwig70eff552008-02-15 20:55:05 +000035{
36 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
37
38 switch (inode->i_mode & S_IFMT) {
39 case S_IFREG:
40 inode->i_op = &cifs_file_inode_ops;
41 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
42 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
43 inode->i_fop = &cifs_file_direct_nobrl_ops;
44 else
45 inode->i_fop = &cifs_file_direct_ops;
46 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
47 inode->i_fop = &cifs_file_nobrl_ops;
48 else { /* not direct, send byte range locks */
49 inode->i_fop = &cifs_file_ops;
50 }
51
52
53 /* check if server can support readpages */
54 if (cifs_sb->tcon->ses->server->maxBuf <
55 PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE)
56 inode->i_data.a_ops = &cifs_addr_ops_smallbuf;
57 else
58 inode->i_data.a_ops = &cifs_addr_ops;
59 break;
60 case S_IFDIR:
Steve Frenchbc5b6e22008-03-11 21:07:48 +000061#ifdef CONFIG_CIFS_DFS_UPCALL
Igor Mammedov79626702008-03-09 03:44:18 +000062 if (is_dfs_referral) {
63 inode->i_op = &cifs_dfs_referral_inode_operations;
64 } else {
Steve Frenchbc5b6e22008-03-11 21:07:48 +000065#else /* NO DFS support, treat as a directory */
66 {
67#endif
Igor Mammedov79626702008-03-09 03:44:18 +000068 inode->i_op = &cifs_dir_inode_ops;
69 inode->i_fop = &cifs_dir_ops;
70 }
Christoph Hellwig70eff552008-02-15 20:55:05 +000071 break;
72 case S_IFLNK:
73 inode->i_op = &cifs_symlink_inode_ops;
74 break;
75 default:
76 init_special_inode(inode, inode->i_mode, inode->i_rdev);
77 break;
78 }
79}
80
Jeff Laytondf2cf172010-02-12 07:44:16 -050081/* check inode attributes against fattr. If they don't match, tag the
82 * inode for cache invalidation
83 */
84static void
85cifs_revalidate_cache(struct inode *inode, struct cifs_fattr *fattr)
86{
87 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
88
Steve Frenchf19159d2010-04-21 04:12:10 +000089 cFYI(1, "%s: revalidating inode %llu", __func__, cifs_i->uniqueid);
Jeff Laytondf2cf172010-02-12 07:44:16 -050090
91 if (inode->i_state & I_NEW) {
Steve Frenchf19159d2010-04-21 04:12:10 +000092 cFYI(1, "%s: inode %llu is new", __func__, cifs_i->uniqueid);
Jeff Laytondf2cf172010-02-12 07:44:16 -050093 return;
94 }
95
96 /* don't bother with revalidation if we have an oplock */
97 if (cifs_i->clientCanCacheRead) {
Steve Frenchf19159d2010-04-21 04:12:10 +000098 cFYI(1, "%s: inode %llu is oplocked", __func__,
99 cifs_i->uniqueid);
Jeff Laytondf2cf172010-02-12 07:44:16 -0500100 return;
101 }
102
103 /* revalidate if mtime or size have changed */
104 if (timespec_equal(&inode->i_mtime, &fattr->cf_mtime) &&
105 cifs_i->server_eof == fattr->cf_eof) {
Steve Frenchf19159d2010-04-21 04:12:10 +0000106 cFYI(1, "%s: inode %llu is unchanged", __func__,
107 cifs_i->uniqueid);
Jeff Laytondf2cf172010-02-12 07:44:16 -0500108 return;
109 }
110
Steve Frenchf19159d2010-04-21 04:12:10 +0000111 cFYI(1, "%s: invalidating inode %llu mapping", __func__,
112 cifs_i->uniqueid);
Jeff Laytondf2cf172010-02-12 07:44:16 -0500113 cifs_i->invalid_mapping = true;
114}
115
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400116/* populate an inode with info from a cifs_fattr struct */
117void
118cifs_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr)
Christoph Hellwig75f12982008-02-25 20:25:21 +0000119{
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400120 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400121 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
122 unsigned long oldtime = cifs_i->time;
Christoph Hellwig75f12982008-02-25 20:25:21 +0000123
Jeff Laytondf2cf172010-02-12 07:44:16 -0500124 cifs_revalidate_cache(inode, fattr);
125
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400126 inode->i_atime = fattr->cf_atime;
127 inode->i_mtime = fattr->cf_mtime;
128 inode->i_ctime = fattr->cf_ctime;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400129 inode->i_rdev = fattr->cf_rdev;
130 inode->i_nlink = fattr->cf_nlink;
131 inode->i_uid = fattr->cf_uid;
132 inode->i_gid = fattr->cf_gid;
133
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400134 /* if dynperm is set, don't clobber existing mode */
135 if (inode->i_state & I_NEW ||
136 !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM))
137 inode->i_mode = fattr->cf_mode;
138
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400139 cifs_i->cifsAttrs = fattr->cf_cifsattrs;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400140
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400141 if (fattr->cf_flags & CIFS_FATTR_NEED_REVAL)
142 cifs_i->time = 0;
143 else
144 cifs_i->time = jiffies;
145
Joe Perchesb6b38f72010-04-21 03:50:45 +0000146 cFYI(1, "inode 0x%p old_time=%ld new_time=%ld", inode,
147 oldtime, cifs_i->time);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400148
149 cifs_i->delete_pending = fattr->cf_flags & CIFS_FATTR_DELETE_PENDING;
Christoph Hellwig75f12982008-02-25 20:25:21 +0000150
Jeff Layton835a36c2010-02-10 16:21:33 -0500151 cifs_i->server_eof = fattr->cf_eof;
Christoph Hellwig75f12982008-02-25 20:25:21 +0000152 /*
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400153 * Can't safely change the file size here if the client is writing to
154 * it due to potential races.
Christoph Hellwig75f12982008-02-25 20:25:21 +0000155 */
Christoph Hellwig75f12982008-02-25 20:25:21 +0000156 spin_lock(&inode->i_lock);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400157 if (is_size_safe_to_change(cifs_i, fattr->cf_eof)) {
158 i_size_write(inode, fattr->cf_eof);
Christoph Hellwig75f12982008-02-25 20:25:21 +0000159
160 /*
161 * i_blocks is not related to (i_size / i_blksize),
162 * but instead 512 byte (2**9) size is required for
163 * calculating num blocks.
164 */
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400165 inode->i_blocks = (512 - 1 + fattr->cf_bytes) >> 9;
Christoph Hellwig75f12982008-02-25 20:25:21 +0000166 }
167 spin_unlock(&inode->i_lock);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400168
169 cifs_set_ops(inode, fattr->cf_flags & CIFS_FATTR_DFS_REFERRAL);
Christoph Hellwig75f12982008-02-25 20:25:21 +0000170}
171
Jeff Layton4065c802010-05-17 07:18:58 -0400172void
173cifs_fill_uniqueid(struct super_block *sb, struct cifs_fattr *fattr)
174{
175 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
176
177 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)
178 return;
179
180 fattr->cf_uniqueid = iunique(sb, ROOT_I);
181}
182
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400183/* Fill a cifs_fattr struct with info from FILE_UNIX_BASIC_INFO. */
184void
185cifs_unix_basic_to_fattr(struct cifs_fattr *fattr, FILE_UNIX_BASIC_INFO *info,
186 struct cifs_sb_info *cifs_sb)
187{
188 memset(fattr, 0, sizeof(*fattr));
189 fattr->cf_uniqueid = le64_to_cpu(info->UniqueId);
190 fattr->cf_bytes = le64_to_cpu(info->NumOfBytes);
191 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
192
193 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
194 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastModificationTime);
195 fattr->cf_ctime = cifs_NTtimeToUnix(info->LastStatusChange);
196 fattr->cf_mode = le64_to_cpu(info->Permissions);
197
198 /*
199 * Since we set the inode type below we need to mask off
200 * to avoid strange results if bits set above.
201 */
202 fattr->cf_mode &= ~S_IFMT;
203 switch (le32_to_cpu(info->Type)) {
204 case UNIX_FILE:
205 fattr->cf_mode |= S_IFREG;
206 fattr->cf_dtype = DT_REG;
207 break;
208 case UNIX_SYMLINK:
209 fattr->cf_mode |= S_IFLNK;
210 fattr->cf_dtype = DT_LNK;
211 break;
212 case UNIX_DIR:
213 fattr->cf_mode |= S_IFDIR;
214 fattr->cf_dtype = DT_DIR;
215 break;
216 case UNIX_CHARDEV:
217 fattr->cf_mode |= S_IFCHR;
218 fattr->cf_dtype = DT_CHR;
219 fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor),
220 le64_to_cpu(info->DevMinor) & MINORMASK);
221 break;
222 case UNIX_BLOCKDEV:
223 fattr->cf_mode |= S_IFBLK;
224 fattr->cf_dtype = DT_BLK;
225 fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor),
226 le64_to_cpu(info->DevMinor) & MINORMASK);
227 break;
228 case UNIX_FIFO:
229 fattr->cf_mode |= S_IFIFO;
230 fattr->cf_dtype = DT_FIFO;
231 break;
232 case UNIX_SOCKET:
233 fattr->cf_mode |= S_IFSOCK;
234 fattr->cf_dtype = DT_SOCK;
235 break;
236 default:
237 /* safest to call it a file if we do not know */
238 fattr->cf_mode |= S_IFREG;
239 fattr->cf_dtype = DT_REG;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000240 cFYI(1, "unknown type %d", le32_to_cpu(info->Type));
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400241 break;
242 }
243
244 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)
245 fattr->cf_uid = cifs_sb->mnt_uid;
246 else
247 fattr->cf_uid = le64_to_cpu(info->Uid);
248
249 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)
250 fattr->cf_gid = cifs_sb->mnt_gid;
251 else
252 fattr->cf_gid = le64_to_cpu(info->Gid);
253
254 fattr->cf_nlink = le64_to_cpu(info->Nlinks);
255}
Steve Frenchb9a32602008-05-20 21:52:32 +0000256
257/*
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400258 * Fill a cifs_fattr struct with fake inode info.
259 *
260 * Needed to setup cifs_fattr data for the directory which is the
261 * junction to the new submount (ie to setup the fake directory
262 * which represents a DFS referral).
Steve Frenchb9a32602008-05-20 21:52:32 +0000263 */
Steve Frenchf1230c92009-07-22 23:13:01 +0000264static void
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400265cifs_create_dfs_fattr(struct cifs_fattr *fattr, struct super_block *sb)
Steve French0e4bbde2008-05-20 19:50:46 +0000266{
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400267 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Steve French0e4bbde2008-05-20 19:50:46 +0000268
Joe Perchesb6b38f72010-04-21 03:50:45 +0000269 cFYI(1, "creating fake fattr for DFS referral");
Steve French0e4bbde2008-05-20 19:50:46 +0000270
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400271 memset(fattr, 0, sizeof(*fattr));
272 fattr->cf_mode = S_IFDIR | S_IXUGO | S_IRWXU;
273 fattr->cf_uid = cifs_sb->mnt_uid;
274 fattr->cf_gid = cifs_sb->mnt_gid;
275 fattr->cf_atime = CURRENT_TIME;
276 fattr->cf_ctime = CURRENT_TIME;
277 fattr->cf_mtime = CURRENT_TIME;
278 fattr->cf_nlink = 2;
279 fattr->cf_flags |= CIFS_FATTR_DFS_REFERRAL;
Steve French0e4bbde2008-05-20 19:50:46 +0000280}
281
Jeff Laytonabab0952010-02-12 07:44:18 -0500282int cifs_get_file_info_unix(struct file *filp)
283{
284 int rc;
285 int xid;
286 FILE_UNIX_BASIC_INFO find_data;
287 struct cifs_fattr fattr;
288 struct inode *inode = filp->f_path.dentry->d_inode;
289 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
290 struct cifsTconInfo *tcon = cifs_sb->tcon;
Joe Perchesc21dfb62010-07-12 13:50:14 -0700291 struct cifsFileInfo *cfile = filp->private_data;
Jeff Laytonabab0952010-02-12 07:44:18 -0500292
293 xid = GetXid();
294 rc = CIFSSMBUnixQFileInfo(xid, tcon, cfile->netfid, &find_data);
295 if (!rc) {
296 cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb);
297 } else if (rc == -EREMOTE) {
298 cifs_create_dfs_fattr(&fattr, inode->i_sb);
299 rc = 0;
300 }
301
302 cifs_fattr_to_inode(inode, &fattr);
303 FreeXid(xid);
304 return rc;
305}
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307int cifs_get_inode_info_unix(struct inode **pinode,
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400308 const unsigned char *full_path,
309 struct super_block *sb, int xid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400311 int rc;
Steve French0e4bbde2008-05-20 19:50:46 +0000312 FILE_UNIX_BASIC_INFO find_data;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400313 struct cifs_fattr fattr;
314 struct cifsTconInfo *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400317 tcon = cifs_sb->tcon;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000318 cFYI(1, "Getting info on %s", full_path);
Igor Mammedov79626702008-03-09 03:44:18 +0000319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /* could have done a find first instead but this returns more info */
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400321 rc = CIFSSMBUnixQPathInfo(xid, tcon, full_path, &find_data,
Steve French737b7582005-04-28 22:41:06 -0700322 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
323 CIFS_MOUNT_MAP_SPECIAL_CHR);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400324
325 if (!rc) {
326 cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb);
327 } else if (rc == -EREMOTE) {
328 cifs_create_dfs_fattr(&fattr, sb);
Jeff Laytone911d0c2008-07-12 13:47:59 -0700329 rc = 0;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400330 } else {
331 return rc;
Steve French0e4bbde2008-05-20 19:50:46 +0000332 }
333
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400334 if (*pinode == NULL) {
335 /* get new inode */
Jeff Layton4065c802010-05-17 07:18:58 -0400336 cifs_fill_uniqueid(sb, &fattr);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400337 *pinode = cifs_iget(sb, &fattr);
338 if (!*pinode)
339 rc = -ENOMEM;
340 } else {
341 /* we already have inode, update it */
342 cifs_fattr_to_inode(*pinode, &fattr);
343 }
Steve French0e4bbde2008-05-20 19:50:46 +0000344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return rc;
346}
347
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400348static int
349cifs_sfu_type(struct cifs_fattr *fattr, const unsigned char *path,
350 struct cifs_sb_info *cifs_sb, int xid)
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800351{
352 int rc;
Steve French4b18f2a2008-04-29 00:06:05 +0000353 int oplock = 0;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800354 __u16 netfid;
355 struct cifsTconInfo *pTcon = cifs_sb->tcon;
Steve French86c96b42005-11-18 20:25:31 -0800356 char buf[24];
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800357 unsigned int bytes_read;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000358 char *pbuf;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800359
360 pbuf = buf;
361
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400362 fattr->cf_mode &= ~S_IFMT;
363
364 if (fattr->cf_eof == 0) {
365 fattr->cf_mode |= S_IFIFO;
366 fattr->cf_dtype = DT_FIFO;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800367 return 0;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400368 } else if (fattr->cf_eof < 8) {
369 fattr->cf_mode |= S_IFREG;
370 fattr->cf_dtype = DT_REG;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800371 return -EINVAL; /* EOPNOTSUPP? */
372 }
Steve French50c2f752007-07-13 00:33:32 +0000373
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800374 rc = CIFSSMBOpen(xid, pTcon, path, FILE_OPEN, GENERIC_READ,
375 CREATE_NOT_DIR, &netfid, &oplock, NULL,
376 cifs_sb->local_nls,
377 cifs_sb->mnt_cifs_flags &
378 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000379 if (rc == 0) {
Steve Frenchec637e32005-12-12 20:53:18 -0800380 int buf_type = CIFS_NO_BUFFER;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800381 /* Read header */
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400382 rc = CIFSSMBRead(xid, pTcon, netfid,
Steve French86c96b42005-11-18 20:25:31 -0800383 24 /* length */, 0 /* offset */,
Steve Frenchec637e32005-12-12 20:53:18 -0800384 &bytes_read, &pbuf, &buf_type);
Steve French4523cc32007-04-30 20:13:06 +0000385 if ((rc == 0) && (bytes_read >= 8)) {
386 if (memcmp("IntxBLK", pbuf, 8) == 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000387 cFYI(1, "Block device");
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400388 fattr->cf_mode |= S_IFBLK;
389 fattr->cf_dtype = DT_BLK;
Steve French4523cc32007-04-30 20:13:06 +0000390 if (bytes_read == 24) {
Steve French86c96b42005-11-18 20:25:31 -0800391 /* we have enough to decode dev num */
392 __u64 mjr; /* major */
393 __u64 mnr; /* minor */
394 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
395 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400396 fattr->cf_rdev = MKDEV(mjr, mnr);
Steve French86c96b42005-11-18 20:25:31 -0800397 }
Steve French4523cc32007-04-30 20:13:06 +0000398 } else if (memcmp("IntxCHR", pbuf, 8) == 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000399 cFYI(1, "Char device");
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400400 fattr->cf_mode |= S_IFCHR;
401 fattr->cf_dtype = DT_CHR;
Steve French4523cc32007-04-30 20:13:06 +0000402 if (bytes_read == 24) {
Steve French86c96b42005-11-18 20:25:31 -0800403 /* we have enough to decode dev num */
404 __u64 mjr; /* major */
405 __u64 mnr; /* minor */
406 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
407 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400408 fattr->cf_rdev = MKDEV(mjr, mnr);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000409 }
Steve French4523cc32007-04-30 20:13:06 +0000410 } else if (memcmp("IntxLNK", pbuf, 7) == 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000411 cFYI(1, "Symlink");
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400412 fattr->cf_mode |= S_IFLNK;
413 fattr->cf_dtype = DT_LNK;
Steve French86c96b42005-11-18 20:25:31 -0800414 } else {
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400415 fattr->cf_mode |= S_IFREG; /* file? */
416 fattr->cf_dtype = DT_REG;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000417 rc = -EOPNOTSUPP;
Steve French86c96b42005-11-18 20:25:31 -0800418 }
Steve French3020a1f2005-11-18 11:31:10 -0800419 } else {
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400420 fattr->cf_mode |= S_IFREG; /* then it is a file */
421 fattr->cf_dtype = DT_REG;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000422 rc = -EOPNOTSUPP; /* or some unknown SFU type */
423 }
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800424 CIFSSMBClose(xid, pTcon, netfid);
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800425 }
426 return rc;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800427}
428
Steve French9e294f12005-11-17 16:59:21 -0800429#define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */
430
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400431/*
432 * Fetch mode bits as provided by SFU.
433 *
434 * FIXME: Doesn't this clobber the type bit we got from cifs_sfu_type ?
435 */
436static int cifs_sfu_mode(struct cifs_fattr *fattr, const unsigned char *path,
437 struct cifs_sb_info *cifs_sb, int xid)
Steve French9e294f12005-11-17 16:59:21 -0800438{
Steve French3020a1f2005-11-18 11:31:10 -0800439#ifdef CONFIG_CIFS_XATTR
Steve French9e294f12005-11-17 16:59:21 -0800440 ssize_t rc;
441 char ea_value[4];
442 __u32 mode;
443
Jeff Layton31c05192010-02-10 16:18:26 -0500444 rc = CIFSSMBQAllEAs(xid, cifs_sb->tcon, path, "SETFILEBITS",
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400445 ea_value, 4 /* size of buf */, cifs_sb->local_nls,
446 cifs_sb->mnt_cifs_flags &
447 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French4523cc32007-04-30 20:13:06 +0000448 if (rc < 0)
Steve French9e294f12005-11-17 16:59:21 -0800449 return (int)rc;
450 else if (rc > 3) {
451 mode = le32_to_cpu(*((__le32 *)ea_value));
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400452 fattr->cf_mode &= ~SFBITS_MASK;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000453 cFYI(1, "special bits 0%o org mode 0%o", mode,
454 fattr->cf_mode);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400455 fattr->cf_mode = (mode & SFBITS_MASK) | fattr->cf_mode;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000456 cFYI(1, "special mode bits 0%o", mode);
Steve French9e294f12005-11-17 16:59:21 -0800457 }
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400458
459 return 0;
Steve French3020a1f2005-11-18 11:31:10 -0800460#else
461 return -EOPNOTSUPP;
462#endif
Steve French9e294f12005-11-17 16:59:21 -0800463}
464
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400465/* Fill a cifs_fattr struct with info from FILE_ALL_INFO */
Steve Frenchf1230c92009-07-22 23:13:01 +0000466static void
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400467cifs_all_info_to_fattr(struct cifs_fattr *fattr, FILE_ALL_INFO *info,
468 struct cifs_sb_info *cifs_sb, bool adjust_tz)
Steve Frenchb9a32602008-05-20 21:52:32 +0000469{
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400470 memset(fattr, 0, sizeof(*fattr));
471 fattr->cf_cifsattrs = le32_to_cpu(info->Attributes);
472 if (info->DeletePending)
473 fattr->cf_flags |= CIFS_FATTR_DELETE_PENDING;
Steve Frenchb9a32602008-05-20 21:52:32 +0000474
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400475 if (info->LastAccessTime)
476 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
477 else
478 fattr->cf_atime = CURRENT_TIME;
479
480 fattr->cf_ctime = cifs_NTtimeToUnix(info->ChangeTime);
481 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastWriteTime);
482
483 if (adjust_tz) {
484 fattr->cf_ctime.tv_sec += cifs_sb->tcon->ses->server->timeAdj;
485 fattr->cf_mtime.tv_sec += cifs_sb->tcon->ses->server->timeAdj;
486 }
487
488 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
489 fattr->cf_bytes = le64_to_cpu(info->AllocationSize);
490
491 if (fattr->cf_cifsattrs & ATTR_DIRECTORY) {
492 fattr->cf_mode = S_IFDIR | cifs_sb->mnt_dir_mode;
493 fattr->cf_dtype = DT_DIR;
494 } else {
495 fattr->cf_mode = S_IFREG | cifs_sb->mnt_file_mode;
496 fattr->cf_dtype = DT_REG;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400497
Jeff Laytond0c280d2009-07-09 01:46:44 -0400498 /* clear write bits if ATTR_READONLY is set */
499 if (fattr->cf_cifsattrs & ATTR_READONLY)
500 fattr->cf_mode &= ~(S_IWUGO);
501 }
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400502
503 fattr->cf_nlink = le32_to_cpu(info->NumberOfLinks);
504
505 fattr->cf_uid = cifs_sb->mnt_uid;
506 fattr->cf_gid = cifs_sb->mnt_gid;
Steve Frenchb9a32602008-05-20 21:52:32 +0000507}
508
Jeff Laytonabab0952010-02-12 07:44:18 -0500509int cifs_get_file_info(struct file *filp)
510{
511 int rc;
512 int xid;
513 FILE_ALL_INFO find_data;
514 struct cifs_fattr fattr;
515 struct inode *inode = filp->f_path.dentry->d_inode;
516 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
517 struct cifsTconInfo *tcon = cifs_sb->tcon;
Joe Perchesc21dfb62010-07-12 13:50:14 -0700518 struct cifsFileInfo *cfile = filp->private_data;
Jeff Laytonabab0952010-02-12 07:44:18 -0500519
520 xid = GetXid();
521 rc = CIFSSMBQFileInfo(xid, tcon, cfile->netfid, &find_data);
522 if (rc == -EOPNOTSUPP || rc == -EINVAL) {
523 /*
524 * FIXME: legacy server -- fall back to path-based call?
Steve Frenchff2157132010-03-09 20:30:42 +0000525 * for now, just skip revalidating and mark inode for
526 * immediate reval.
527 */
Jeff Laytonabab0952010-02-12 07:44:18 -0500528 rc = 0;
529 CIFS_I(inode)->time = 0;
530 goto cgfi_exit;
531 } else if (rc == -EREMOTE) {
532 cifs_create_dfs_fattr(&fattr, inode->i_sb);
533 rc = 0;
534 } else if (rc)
535 goto cgfi_exit;
536
537 /*
538 * don't bother with SFU junk here -- just mark inode as needing
539 * revalidation.
540 */
541 cifs_all_info_to_fattr(&fattr, &find_data, cifs_sb, false);
542 fattr.cf_uniqueid = CIFS_I(inode)->uniqueid;
543 fattr.cf_flags |= CIFS_FATTR_NEED_REVAL;
544 cifs_fattr_to_inode(inode, &fattr);
545cgfi_exit:
546 FreeXid(xid);
547 return rc;
548}
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550int cifs_get_inode_info(struct inode **pinode,
Steve French646dd532008-05-15 01:50:56 +0000551 const unsigned char *full_path, FILE_ALL_INFO *pfindData,
Steve French8b1327f2008-03-14 22:37:16 +0000552 struct super_block *sb, int xid, const __u16 *pfid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400554 int rc = 0, tmprc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 struct cifsTconInfo *pTcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 char *buf = NULL;
Steve French5ade9de2008-05-02 20:56:23 +0000558 bool adjustTZ = false;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400559 struct cifs_fattr fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 pTcon = cifs_sb->tcon;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000562 cFYI(1, "Getting info on %s", full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700564 if ((pfindData == NULL) && (*pinode != NULL)) {
565 if (CIFS_I(*pinode)->clientCanCacheRead) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000566 cFYI(1, "No need to revalidate cached inode sizes");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return rc;
568 }
569 }
570
571 /* if file info not passed in then get it from server */
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700572 if (pfindData == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700574 if (buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return -ENOMEM;
576 pfindData = (FILE_ALL_INFO *)buf;
Igor Mammedov79626702008-03-09 03:44:18 +0000577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 /* could do find first instead but this returns more info */
Igor Mammedov79626702008-03-09 03:44:18 +0000579 rc = CIFSSMBQPathInfo(xid, pTcon, full_path, pfindData,
Steve Frenchacf1a1b2006-10-12 03:28:28 +0000580 0 /* not legacy */,
Steve French6b8edfe2005-08-23 20:26:03 -0700581 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700582 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French6b8edfe2005-08-23 20:26:03 -0700583 /* BB optimize code so we do not make the above call
584 when server claims no NT SMB support and the above call
585 failed at least once - set flag in tcon or mount */
Steve French4523cc32007-04-30 20:13:06 +0000586 if ((rc == -EOPNOTSUPP) || (rc == -EINVAL)) {
Igor Mammedov79626702008-03-09 03:44:18 +0000587 rc = SMBQueryInformation(xid, pTcon, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000588 pfindData, cifs_sb->local_nls,
Steve French6b8edfe2005-08-23 20:26:03 -0700589 cifs_sb->mnt_cifs_flags &
590 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French4b18f2a2008-04-29 00:06:05 +0000591 adjustTZ = true;
Steve French6b8edfe2005-08-23 20:26:03 -0700592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400594
595 if (!rc) {
596 cifs_all_info_to_fattr(&fattr, (FILE_ALL_INFO *) pfindData,
597 cifs_sb, adjustTZ);
598 } else if (rc == -EREMOTE) {
599 cifs_create_dfs_fattr(&fattr, sb);
Steve Frenchb9a32602008-05-20 21:52:32 +0000600 rc = 0;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400601 } else {
Igor Mammedov79626702008-03-09 03:44:18 +0000602 goto cgii_exit;
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400605 /*
606 * If an inode wasn't passed in, then get the inode number
607 *
608 * Is an i_ino of zero legal? Can we use that to check if the server
609 * supports returning inode numbers? Are there other sanity checks we
610 * can use to ensure that the server is really filling in that field?
611 *
612 * We can not use the IndexNumber field by default from Windows or
613 * Samba (in ALL_INFO buf) but we can request it explicitly. The SNIA
614 * CIFS spec claims that this value is unique within the scope of a
615 * share, and the windows docs hint that it's actually unique
616 * per-machine.
617 *
618 * There may be higher info levels that work but are there Windows
619 * server or network appliances for which IndexNumber field is not
620 * guaranteed unique?
621 */
Steve Frenchb9a32602008-05-20 21:52:32 +0000622 if (*pinode == NULL) {
Steve Frenchb9a32602008-05-20 21:52:32 +0000623 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
624 int rc1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Steve Frenchb9a32602008-05-20 21:52:32 +0000626 rc1 = CIFSGetSrvInodeNumber(xid, pTcon,
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400627 full_path, &fattr.cf_uniqueid,
Steve French737b7582005-04-28 22:41:06 -0700628 cifs_sb->local_nls,
629 cifs_sb->mnt_cifs_flags &
630 CIFS_MOUNT_MAP_SPECIAL_CHR);
Jeff Laytonec06aed2009-11-06 14:18:29 -0500631 if (rc1 || !fattr.cf_uniqueid) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000632 cFYI(1, "GetSrvInodeNum rc %d", rc1);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400633 fattr.cf_uniqueid = iunique(sb, ROOT_I);
Jeff Laytonec06aed2009-11-06 14:18:29 -0500634 cifs_autodisable_serverino(cifs_sb);
Jeff Layton132ac7b2009-02-10 07:33:57 -0500635 }
Jeff Layton132ac7b2009-02-10 07:33:57 -0500636 } else {
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400637 fattr.cf_uniqueid = iunique(sb, ROOT_I);
Jeff Layton132ac7b2009-02-10 07:33:57 -0500638 }
Steve Frenchb9a32602008-05-20 21:52:32 +0000639 } else {
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400640 fattr.cf_uniqueid = CIFS_I(*pinode)->uniqueid;
Steve Frenchb9a32602008-05-20 21:52:32 +0000641 }
642
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400643 /* query for SFU type info if supported and needed */
644 if (fattr.cf_cifsattrs & ATTR_SYSTEM &&
645 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
646 tmprc = cifs_sfu_type(&fattr, full_path, cifs_sb, xid);
647 if (tmprc)
Joe Perchesb6b38f72010-04-21 03:50:45 +0000648 cFYI(1, "cifs_sfu_type failed: %d", tmprc);
Steve Frenchb9a32602008-05-20 21:52:32 +0000649 }
Steve Frenchb9a32602008-05-20 21:52:32 +0000650
Steve Frenchb9a32602008-05-20 21:52:32 +0000651#ifdef CONFIG_CIFS_EXPERIMENTAL
652 /* fill in 0777 bits from ACL */
653 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000654 cFYI(1, "Getting mode bits from ACL");
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400655 cifs_acl_to_fattr(cifs_sb, &fattr, *pinode, full_path, pfid);
Steve Frenchb9a32602008-05-20 21:52:32 +0000656 }
657#endif
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400658
659 /* fill in remaining high mode bits e.g. SUID, VTX */
660 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)
661 cifs_sfu_mode(&fattr, full_path, cifs_sb, xid);
662
663 if (!*pinode) {
664 *pinode = cifs_iget(sb, &fattr);
665 if (!*pinode)
666 rc = -ENOMEM;
667 } else {
668 cifs_fattr_to_inode(*pinode, &fattr);
Steve Frenchb9a32602008-05-20 21:52:32 +0000669 }
670
Igor Mammedov79626702008-03-09 03:44:18 +0000671cgii_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 kfree(buf);
673 return rc;
674}
675
Steve French7f8ed422007-09-28 22:28:55 +0000676static const struct inode_operations cifs_ipc_inode_ops = {
677 .lookup = cifs_lookup,
678};
679
Igor Mammedove4cce942009-02-10 14:10:26 +0300680char *cifs_build_path_to_root(struct cifs_sb_info *cifs_sb)
Steve French8be0ed42008-12-05 19:14:12 +0000681{
682 int pplen = cifs_sb->prepathlen;
683 int dfsplen;
684 char *full_path = NULL;
685
686 /* if no prefix path, simply set path to the root of share to "" */
687 if (pplen == 0) {
688 full_path = kmalloc(1, GFP_KERNEL);
689 if (full_path)
690 full_path[0] = 0;
691 return full_path;
692 }
693
694 if (cifs_sb->tcon && (cifs_sb->tcon->Flags & SMB_SHARE_IS_IN_DFS))
695 dfsplen = strnlen(cifs_sb->tcon->treeName, MAX_TREE_SIZE + 1);
696 else
697 dfsplen = 0;
698
699 full_path = kmalloc(dfsplen + pplen + 1, GFP_KERNEL);
700 if (full_path == NULL)
701 return full_path;
702
703 if (dfsplen) {
704 strncpy(full_path, cifs_sb->tcon->treeName, dfsplen);
705 /* switch slash direction in prepath depending on whether
706 * windows or posix style path names
707 */
708 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) {
709 int i;
710 for (i = 0; i < dfsplen; i++) {
711 if (full_path[i] == '\\')
712 full_path[i] = '/';
713 }
714 }
715 }
716 strncpy(full_path + dfsplen, cifs_sb->prepath, pplen);
717 full_path[dfsplen + pplen] = 0; /* add trailing null */
718 return full_path;
719}
720
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400721static int
722cifs_find_inode(struct inode *inode, void *opaque)
723{
724 struct cifs_fattr *fattr = (struct cifs_fattr *) opaque;
725
726 if (CIFS_I(inode)->uniqueid != fattr->cf_uniqueid)
727 return 0;
728
Jeff Layton3d694382010-05-11 14:59:55 -0400729 /*
730 * uh oh -- it's a directory. We can't use it since hardlinked dirs are
731 * verboten. Disable serverino and return it as if it were found, the
732 * caller can discard it, generate a uniqueid and retry the find
733 */
734 if (S_ISDIR(inode->i_mode) && !list_empty(&inode->i_dentry)) {
735 fattr->cf_flags |= CIFS_FATTR_INO_COLLISION;
736 cifs_autodisable_serverino(CIFS_SB(inode->i_sb));
737 }
738
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400739 return 1;
740}
741
742static int
743cifs_init_inode(struct inode *inode, void *opaque)
744{
745 struct cifs_fattr *fattr = (struct cifs_fattr *) opaque;
746
747 CIFS_I(inode)->uniqueid = fattr->cf_uniqueid;
748 return 0;
749}
750
751/* Given fattrs, get a corresponding inode */
752struct inode *
753cifs_iget(struct super_block *sb, struct cifs_fattr *fattr)
754{
755 unsigned long hash;
756 struct inode *inode;
757
Jeff Layton3d694382010-05-11 14:59:55 -0400758retry_iget5_locked:
Joe Perchesb6b38f72010-04-21 03:50:45 +0000759 cFYI(1, "looking for uniqueid=%llu", fattr->cf_uniqueid);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400760
761 /* hash down to 32-bits on 32-bit arch */
762 hash = cifs_uniqueid_to_ino_t(fattr->cf_uniqueid);
763
764 inode = iget5_locked(sb, hash, cifs_find_inode, cifs_init_inode, fattr);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400765 if (inode) {
Jeff Layton3d694382010-05-11 14:59:55 -0400766 /* was there a problematic inode number collision? */
767 if (fattr->cf_flags & CIFS_FATTR_INO_COLLISION) {
768 iput(inode);
769 fattr->cf_uniqueid = iunique(sb, ROOT_I);
770 fattr->cf_flags &= ~CIFS_FATTR_INO_COLLISION;
771 goto retry_iget5_locked;
772 }
773
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400774 cifs_fattr_to_inode(inode, fattr);
775 if (sb->s_flags & MS_NOATIME)
776 inode->i_flags |= S_NOATIME | S_NOCMTIME;
777 if (inode->i_state & I_NEW) {
778 inode->i_ino = hash;
779 unlock_new_inode(inode);
780 }
781 }
782
783 return inode;
784}
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786/* gets root inode */
Jeff Laytonbd433d42009-05-27 09:37:34 -0400787struct inode *cifs_root_iget(struct super_block *sb, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
David Howellsce634ab2008-02-07 00:15:33 -0800789 int xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 struct cifs_sb_info *cifs_sb;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400791 struct inode *inode = NULL;
David Howellsce634ab2008-02-07 00:15:33 -0800792 long rc;
Steve French8be0ed42008-12-05 19:14:12 +0000793 char *full_path;
David Howellsce634ab2008-02-07 00:15:33 -0800794
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400795 cifs_sb = CIFS_SB(sb);
Igor Mammedove4cce942009-02-10 14:10:26 +0300796 full_path = cifs_build_path_to_root(cifs_sb);
Steve French8be0ed42008-12-05 19:14:12 +0000797 if (full_path == NULL)
798 return ERR_PTR(-ENOMEM);
Steve Frenchc18c8422007-07-18 23:21:09 +0000799
Steve French8be0ed42008-12-05 19:14:12 +0000800 xid = GetXid();
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400801 if (cifs_sb->tcon->unix_ext)
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400802 rc = cifs_get_inode_info_unix(&inode, full_path, sb, xid);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400803 else
804 rc = cifs_get_inode_info(&inode, full_path, NULL, sb,
Steve French8be0ed42008-12-05 19:14:12 +0000805 xid, NULL);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400806
807 if (!inode)
808 return ERR_PTR(-ENOMEM);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400809
Suresh Jayaramand03382c2010-07-05 18:12:27 +0530810 /* populate tcon->resource_id */
811 cifs_sb->tcon->resource_id = CIFS_I(inode)->uniqueid;
812
Steve French7f8ed422007-09-28 22:28:55 +0000813 if (rc && cifs_sb->tcon->ipc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000814 cFYI(1, "ipc connection - fake read inode");
Steve French7f8ed422007-09-28 22:28:55 +0000815 inode->i_mode |= S_IFDIR;
816 inode->i_nlink = 2;
817 inode->i_op = &cifs_ipc_inode_ops;
818 inode->i_fop = &simple_dir_operations;
819 inode->i_uid = cifs_sb->mnt_uid;
820 inode->i_gid = cifs_sb->mnt_gid;
Steve Frenchad661332008-08-12 14:14:40 +0000821 } else if (rc) {
Steve French8be0ed42008-12-05 19:14:12 +0000822 kfree(full_path);
David Howellsce634ab2008-02-07 00:15:33 -0800823 _FreeXid(xid);
824 iget_failed(inode);
825 return ERR_PTR(rc);
Steve French7f8ed422007-09-28 22:28:55 +0000826 }
827
David Howellsce634ab2008-02-07 00:15:33 -0800828
Steve French8be0ed42008-12-05 19:14:12 +0000829 kfree(full_path);
David Howellsce634ab2008-02-07 00:15:33 -0800830 /* can not call macro FreeXid here since in a void func
831 * TODO: This is no longer true
832 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 _FreeXid(xid);
David Howellsce634ab2008-02-07 00:15:33 -0800834 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Steve French388e57b2008-09-16 23:50:58 +0000837static int
838cifs_set_file_info(struct inode *inode, struct iattr *attrs, int xid,
839 char *full_path, __u32 dosattr)
840{
841 int rc;
842 int oplock = 0;
843 __u16 netfid;
844 __u32 netpid;
845 bool set_time = false;
846 struct cifsFileInfo *open_file;
847 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
848 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
849 struct cifsTconInfo *pTcon = cifs_sb->tcon;
850 FILE_BASIC_INFO info_buf;
851
Steve French1adcb712009-02-25 14:19:56 +0000852 if (attrs == NULL)
853 return -EINVAL;
854
Steve French388e57b2008-09-16 23:50:58 +0000855 if (attrs->ia_valid & ATTR_ATIME) {
856 set_time = true;
857 info_buf.LastAccessTime =
858 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_atime));
859 } else
860 info_buf.LastAccessTime = 0;
861
862 if (attrs->ia_valid & ATTR_MTIME) {
863 set_time = true;
864 info_buf.LastWriteTime =
865 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_mtime));
866 } else
867 info_buf.LastWriteTime = 0;
868
869 /*
870 * Samba throws this field away, but windows may actually use it.
871 * Do not set ctime unless other time stamps are changed explicitly
872 * (i.e. by utimes()) since we would then have a mix of client and
873 * server times.
874 */
875 if (set_time && (attrs->ia_valid & ATTR_CTIME)) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000876 cFYI(1, "CIFS - CTIME changed");
Steve French388e57b2008-09-16 23:50:58 +0000877 info_buf.ChangeTime =
878 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_ctime));
879 } else
880 info_buf.ChangeTime = 0;
881
882 info_buf.CreationTime = 0; /* don't change */
883 info_buf.Attributes = cpu_to_le32(dosattr);
884
885 /*
886 * If the file is already open for write, just use that fileid
887 */
888 open_file = find_writable_file(cifsInode);
889 if (open_file) {
890 netfid = open_file->netfid;
891 netpid = open_file->pid;
892 goto set_via_filehandle;
893 }
894
895 /*
896 * NT4 apparently returns success on this call, but it doesn't
897 * really work.
898 */
899 if (!(pTcon->ses->flags & CIFS_SES_NT4)) {
900 rc = CIFSSMBSetPathInfo(xid, pTcon, full_path,
901 &info_buf, cifs_sb->local_nls,
902 cifs_sb->mnt_cifs_flags &
903 CIFS_MOUNT_MAP_SPECIAL_CHR);
Jeff Layton6b37faa2008-10-06 21:54:41 +0000904 if (rc == 0) {
905 cifsInode->cifsAttrs = dosattr;
906 goto out;
907 } else if (rc != -EOPNOTSUPP && rc != -EINVAL)
Steve French388e57b2008-09-16 23:50:58 +0000908 goto out;
909 }
910
Joe Perchesb6b38f72010-04-21 03:50:45 +0000911 cFYI(1, "calling SetFileInfo since SetPathInfo for "
912 "times not supported by this server");
Steve French388e57b2008-09-16 23:50:58 +0000913 rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN,
914 SYNCHRONIZE | FILE_WRITE_ATTRIBUTES,
915 CREATE_NOT_DIR, &netfid, &oplock,
916 NULL, cifs_sb->local_nls,
917 cifs_sb->mnt_cifs_flags &
918 CIFS_MOUNT_MAP_SPECIAL_CHR);
919
920 if (rc != 0) {
921 if (rc == -EIO)
922 rc = -EINVAL;
923 goto out;
924 }
925
926 netpid = current->tgid;
927
928set_via_filehandle:
929 rc = CIFSSMBSetFileInfo(xid, pTcon, &info_buf, netfid, netpid);
Steve Frenchd3889082008-09-24 19:22:52 +0000930 if (!rc)
931 cifsInode->cifsAttrs = dosattr;
932
Steve French388e57b2008-09-16 23:50:58 +0000933 if (open_file == NULL)
934 CIFSSMBClose(xid, pTcon, netfid);
935 else
Dave Kleikamp6ab409b2009-08-31 11:07:12 -0400936 cifsFileInfo_put(open_file);
Steve French388e57b2008-09-16 23:50:58 +0000937out:
938 return rc;
939}
940
Jeff Laytona12a1ac2008-09-23 11:48:35 -0400941/*
942 * open the given file (if it isn't already), set the DELETE_ON_CLOSE bit
943 * and rename it to a random name that hopefully won't conflict with
944 * anything else.
945 */
946static int
Steve French32709582008-10-20 00:44:19 +0000947cifs_rename_pending_delete(char *full_path, struct dentry *dentry, int xid)
Jeff Laytona12a1ac2008-09-23 11:48:35 -0400948{
949 int oplock = 0;
950 int rc;
951 __u16 netfid;
Steve French32709582008-10-20 00:44:19 +0000952 struct inode *inode = dentry->d_inode;
Jeff Laytona12a1ac2008-09-23 11:48:35 -0400953 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
954 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
955 struct cifsTconInfo *tcon = cifs_sb->tcon;
Steve French32709582008-10-20 00:44:19 +0000956 __u32 dosattr, origattr;
957 FILE_BASIC_INFO *info_buf = NULL;
Jeff Laytona12a1ac2008-09-23 11:48:35 -0400958
959 rc = CIFSSMBOpen(xid, tcon, full_path, FILE_OPEN,
Jeff Laytondd1db2d2008-10-16 19:27:12 -0400960 DELETE|FILE_WRITE_ATTRIBUTES, CREATE_NOT_DIR,
Jeff Laytona12a1ac2008-09-23 11:48:35 -0400961 &netfid, &oplock, NULL, cifs_sb->local_nls,
962 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
963 if (rc != 0)
964 goto out;
965
Steve French32709582008-10-20 00:44:19 +0000966 origattr = cifsInode->cifsAttrs;
967 if (origattr == 0)
968 origattr |= ATTR_NORMAL;
969
970 dosattr = origattr & ~ATTR_READONLY;
Jeff Laytona12a1ac2008-09-23 11:48:35 -0400971 if (dosattr == 0)
972 dosattr |= ATTR_NORMAL;
973 dosattr |= ATTR_HIDDEN;
974
Steve French32709582008-10-20 00:44:19 +0000975 /* set ATTR_HIDDEN and clear ATTR_READONLY, but only if needed */
976 if (dosattr != origattr) {
977 info_buf = kzalloc(sizeof(*info_buf), GFP_KERNEL);
978 if (info_buf == NULL) {
979 rc = -ENOMEM;
980 goto out_close;
981 }
982 info_buf->Attributes = cpu_to_le32(dosattr);
983 rc = CIFSSMBSetFileInfo(xid, tcon, info_buf, netfid,
984 current->tgid);
985 /* although we would like to mark the file hidden
986 if that fails we will still try to rename it */
Steve French41346092008-10-20 18:24:42 +0000987 if (rc != 0)
Steve French32709582008-10-20 00:44:19 +0000988 cifsInode->cifsAttrs = dosattr;
989 else
990 dosattr = origattr; /* since not able to change them */
Jeff Laytona12a1ac2008-09-23 11:48:35 -0400991 }
Jeff Laytona12a1ac2008-09-23 11:48:35 -0400992
Jeff Laytondd1db2d2008-10-16 19:27:12 -0400993 /* rename the file */
994 rc = CIFSSMBRenameOpenFile(xid, tcon, netfid, NULL, cifs_sb->local_nls,
Jeff Laytona12a1ac2008-09-23 11:48:35 -0400995 cifs_sb->mnt_cifs_flags &
996 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French32709582008-10-20 00:44:19 +0000997 if (rc != 0) {
998 rc = -ETXTBSY;
999 goto undo_setattr;
1000 }
Jeff Layton6d22f092008-09-23 11:48:35 -04001001
Steve French32709582008-10-20 00:44:19 +00001002 /* try to set DELETE_ON_CLOSE */
1003 if (!cifsInode->delete_pending) {
1004 rc = CIFSSMBSetFileDisposition(xid, tcon, true, netfid,
1005 current->tgid);
1006 /*
1007 * some samba versions return -ENOENT when we try to set the
1008 * file disposition here. Likely a samba bug, but work around
1009 * it for now. This means that some cifsXXX files may hang
1010 * around after they shouldn't.
1011 *
1012 * BB: remove this hack after more servers have the fix
1013 */
1014 if (rc == -ENOENT)
1015 rc = 0;
1016 else if (rc != 0) {
1017 rc = -ETXTBSY;
1018 goto undo_rename;
1019 }
1020 cifsInode->delete_pending = true;
1021 }
Jeff Layton7ce86d52008-09-24 11:32:59 -04001022
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001023out_close:
1024 CIFSSMBClose(xid, tcon, netfid);
1025out:
Steve French32709582008-10-20 00:44:19 +00001026 kfree(info_buf);
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001027 return rc;
Steve French32709582008-10-20 00:44:19 +00001028
1029 /*
1030 * reset everything back to the original state. Don't bother
1031 * dealing with errors here since we can't do anything about
1032 * them anyway.
1033 */
1034undo_rename:
1035 CIFSSMBRenameOpenFile(xid, tcon, netfid, dentry->d_name.name,
1036 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
1037 CIFS_MOUNT_MAP_SPECIAL_CHR);
1038undo_setattr:
1039 if (dosattr != origattr) {
1040 info_buf->Attributes = cpu_to_le32(origattr);
1041 if (!CIFSSMBSetFileInfo(xid, tcon, info_buf, netfid,
1042 current->tgid))
1043 cifsInode->cifsAttrs = origattr;
1044 }
1045
1046 goto out_close;
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001047}
1048
Steve Frenchff694522009-04-20 19:45:13 +00001049
1050/*
1051 * If dentry->d_inode is null (usually meaning the cached dentry
1052 * is a negative dentry) then we would attempt a standard SMB delete, but
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001053 * if that fails we can not attempt the fall back mechanisms on EACCESS
1054 * but will return the EACCESS to the caller. Note that the VFS does not call
Steve Frenchff694522009-04-20 19:45:13 +00001055 * unlink on negative dentries currently.
1056 */
Jeff Layton5f0319a2008-09-16 14:05:16 -04001057int cifs_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 int rc = 0;
1060 int xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 char *full_path = NULL;
Jeff Layton5f0319a2008-09-16 14:05:16 -04001062 struct inode *inode = dentry->d_inode;
Steve Frenchff694522009-04-20 19:45:13 +00001063 struct cifsInodeInfo *cifs_inode;
Jeff Layton5f0319a2008-09-16 14:05:16 -04001064 struct super_block *sb = dir->i_sb;
1065 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
1066 struct cifsTconInfo *tcon = cifs_sb->tcon;
Steve French60502472008-10-07 18:42:52 +00001067 struct iattr *attrs = NULL;
1068 __u32 dosattr = 0, origattr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Joe Perchesb6b38f72010-04-21 03:50:45 +00001070 cFYI(1, "cifs_unlink, dir=0x%p, dentry=0x%p", dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 xid = GetXid();
1073
Jeff Layton5f0319a2008-09-16 14:05:16 -04001074 /* Unlink can be called from rename so we can not take the
1075 * sb->s_vfs_rename_mutex here */
1076 full_path = build_path_from_dentry(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301078 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301080 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 }
Steve French2d785a52007-07-15 01:48:57 +00001082
Jeff Layton5f0319a2008-09-16 14:05:16 -04001083 if ((tcon->ses->capabilities & CAP_UNIX) &&
Steve French2d785a52007-07-15 01:48:57 +00001084 (CIFS_UNIX_POSIX_PATH_OPS_CAP &
Jeff Layton5f0319a2008-09-16 14:05:16 -04001085 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
1086 rc = CIFSPOSIXDelFile(xid, tcon, full_path,
Steve French2d785a52007-07-15 01:48:57 +00001087 SMB_POSIX_UNLINK_FILE_TARGET, cifs_sb->local_nls,
1088 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Joe Perchesb6b38f72010-04-21 03:50:45 +00001089 cFYI(1, "posix del rc %d", rc);
Steve French2d785a52007-07-15 01:48:57 +00001090 if ((rc == 0) || (rc == -ENOENT))
1091 goto psx_del_no_retry;
1092 }
1093
Steve French60502472008-10-07 18:42:52 +00001094retry_std_delete:
Jeff Layton5f0319a2008-09-16 14:05:16 -04001095 rc = CIFSSMBDelFile(xid, tcon, full_path, cifs_sb->local_nls,
Steve French737b7582005-04-28 22:41:06 -07001096 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French60502472008-10-07 18:42:52 +00001097
Steve French2d785a52007-07-15 01:48:57 +00001098psx_del_no_retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 if (!rc) {
Jeff Layton5f0319a2008-09-16 14:05:16 -04001100 if (inode)
1101 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 } else if (rc == -ENOENT) {
Jeff Layton5f0319a2008-09-16 14:05:16 -04001103 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 } else if (rc == -ETXTBSY) {
Steve French32709582008-10-20 00:44:19 +00001105 rc = cifs_rename_pending_delete(full_path, dentry, xid);
Jeff Laytona12a1ac2008-09-23 11:48:35 -04001106 if (rc == 0)
1107 drop_nlink(inode);
Steve Frenchff694522009-04-20 19:45:13 +00001108 } else if ((rc == -EACCES) && (dosattr == 0) && inode) {
Steve French388e57b2008-09-16 23:50:58 +00001109 attrs = kzalloc(sizeof(*attrs), GFP_KERNEL);
1110 if (attrs == NULL) {
1111 rc = -ENOMEM;
1112 goto out_reval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
Steve French388e57b2008-09-16 23:50:58 +00001114
1115 /* try to reset dos attributes */
Steve Frenchff694522009-04-20 19:45:13 +00001116 cifs_inode = CIFS_I(inode);
1117 origattr = cifs_inode->cifsAttrs;
Steve French60502472008-10-07 18:42:52 +00001118 if (origattr == 0)
1119 origattr |= ATTR_NORMAL;
1120 dosattr = origattr & ~ATTR_READONLY;
Steve French388e57b2008-09-16 23:50:58 +00001121 if (dosattr == 0)
1122 dosattr |= ATTR_NORMAL;
1123 dosattr |= ATTR_HIDDEN;
1124
1125 rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr);
Steve French388e57b2008-09-16 23:50:58 +00001126 if (rc != 0)
1127 goto out_reval;
Steve French60502472008-10-07 18:42:52 +00001128
1129 goto retry_std_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
Steve French60502472008-10-07 18:42:52 +00001131
1132 /* undo the setattr if we errored out and it's needed */
1133 if (rc != 0 && dosattr != 0)
1134 cifs_set_file_info(inode, attrs, xid, full_path, origattr);
1135
Steve French388e57b2008-09-16 23:50:58 +00001136out_reval:
Jeff Layton5f0319a2008-09-16 14:05:16 -04001137 if (inode) {
Steve Frenchff694522009-04-20 19:45:13 +00001138 cifs_inode = CIFS_I(inode);
1139 cifs_inode->time = 0; /* will force revalidate to get info
Steve Frenchb2aeb9d2005-05-17 13:16:18 -05001140 when needed */
Jeff Layton5f0319a2008-09-16 14:05:16 -04001141 inode->i_ctime = current_fs_time(sb);
Steve Frenchb2aeb9d2005-05-17 13:16:18 -05001142 }
Jeff Layton5f0319a2008-09-16 14:05:16 -04001143 dir->i_ctime = dir->i_mtime = current_fs_time(sb);
Steve Frenchff694522009-04-20 19:45:13 +00001144 cifs_inode = CIFS_I(dir);
Steve French60502472008-10-07 18:42:52 +00001145 CIFS_I(dir)->time = 0; /* force revalidate of dir as well */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 kfree(full_path);
Steve French60502472008-10-07 18:42:52 +00001148 kfree(attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 FreeXid(xid);
1150 return rc;
1151}
1152
1153int cifs_mkdir(struct inode *inode, struct dentry *direntry, int mode)
1154{
Jeff Layton6b37faa2008-10-06 21:54:41 +00001155 int rc = 0, tmprc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 int xid;
1157 struct cifs_sb_info *cifs_sb;
1158 struct cifsTconInfo *pTcon;
1159 char *full_path = NULL;
1160 struct inode *newinode = NULL;
Jeff Laytoncc0bad72009-06-25 00:56:52 -04001161 struct cifs_fattr fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Joe Perchesb6b38f72010-04-21 03:50:45 +00001163 cFYI(1, "In cifs_mkdir, mode = 0x%x inode = 0x%p", mode, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 xid = GetXid();
1166
1167 cifs_sb = CIFS_SB(inode->i_sb);
1168 pTcon = cifs_sb->tcon;
1169
Steve French7f573562005-08-30 11:32:14 -07001170 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301172 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301174 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
Steve French50c2f752007-07-13 00:33:32 +00001176
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001177 if ((pTcon->ses->capabilities & CAP_UNIX) &&
1178 (CIFS_UNIX_POSIX_PATH_OPS_CAP &
Steve French2dd29d32007-04-23 22:07:35 +00001179 le64_to_cpu(pTcon->fsUnixInfo.Capability))) {
1180 u32 oplock = 0;
Steve Frenchf6d09982008-01-08 23:18:22 +00001181 FILE_UNIX_BASIC_INFO *pInfo =
Steve French2dd29d32007-04-23 22:07:35 +00001182 kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001183 if (pInfo == NULL) {
Steve French2dd29d32007-04-23 22:07:35 +00001184 rc = -ENOMEM;
1185 goto mkdir_out;
1186 }
Steve French50c2f752007-07-13 00:33:32 +00001187
Al Viroce3b0f82009-03-29 19:08:22 -04001188 mode &= ~current_umask();
Steve French2dd29d32007-04-23 22:07:35 +00001189 rc = CIFSPOSIXCreate(xid, pTcon, SMB_O_DIRECTORY | SMB_O_CREAT,
1190 mode, NULL /* netfid */, pInfo, &oplock,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001191 full_path, cifs_sb->local_nls,
1192 cifs_sb->mnt_cifs_flags &
Steve French2dd29d32007-04-23 22:07:35 +00001193 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchc45d7072007-09-17 02:04:21 +00001194 if (rc == -EOPNOTSUPP) {
1195 kfree(pInfo);
1196 goto mkdir_retry_old;
1197 } else if (rc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001198 cFYI(1, "posix mkdir returned 0x%x", rc);
Steve French2dd29d32007-04-23 22:07:35 +00001199 d_drop(direntry);
1200 } else {
Cyril Gorcunov8f2376a2007-10-14 17:58:43 +00001201 if (pInfo->Type == cpu_to_le32(-1)) {
1202 /* no return info, go query for it */
Steve French5a07cdf2007-09-16 23:12:47 +00001203 kfree(pInfo);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001204 goto mkdir_get_info;
Steve French5a07cdf2007-09-16 23:12:47 +00001205 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001206/*BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if need
1207 to set uid/gid */
Steve French2dd29d32007-04-23 22:07:35 +00001208 inc_nlink(inode);
1209 if (pTcon->nocase)
1210 direntry->d_op = &cifs_ci_dentry_ops;
1211 else
1212 direntry->d_op = &cifs_dentry_ops;
Steve Frenchcbac3cb2007-04-25 11:46:06 +00001213
Jeff Laytoncc0bad72009-06-25 00:56:52 -04001214 cifs_unix_basic_to_fattr(&fattr, pInfo, cifs_sb);
Jeff Layton4065c802010-05-17 07:18:58 -04001215 cifs_fill_uniqueid(inode->i_sb, &fattr);
Jeff Laytoncc0bad72009-06-25 00:56:52 -04001216 newinode = cifs_iget(inode->i_sb, &fattr);
1217 if (!newinode) {
Steve French5a07cdf2007-09-16 23:12:47 +00001218 kfree(pInfo);
Steve Frenchcbac3cb2007-04-25 11:46:06 +00001219 goto mkdir_get_info;
Steve French5a07cdf2007-09-16 23:12:47 +00001220 }
Jeff Layton6b37faa2008-10-06 21:54:41 +00001221
Steve French2dd29d32007-04-23 22:07:35 +00001222 d_instantiate(direntry, newinode);
Steve Frenchcbac3cb2007-04-25 11:46:06 +00001223
Steve Frenchcbac3cb2007-04-25 11:46:06 +00001224#ifdef CONFIG_CIFS_DEBUG2
Joe Perchesb6b38f72010-04-21 03:50:45 +00001225 cFYI(1, "instantiated dentry %p %s to inode %p",
1226 direntry, direntry->d_name.name, newinode);
Steve Frenchcbac3cb2007-04-25 11:46:06 +00001227
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001228 if (newinode->i_nlink != 2)
Joe Perchesb6b38f72010-04-21 03:50:45 +00001229 cFYI(1, "unexpected number of links %d",
1230 newinode->i_nlink);
Steve Frenchcbac3cb2007-04-25 11:46:06 +00001231#endif
Steve French2dd29d32007-04-23 22:07:35 +00001232 }
1233 kfree(pInfo);
1234 goto mkdir_out;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001235 }
Steve Frenchc45d7072007-09-17 02:04:21 +00001236mkdir_retry_old:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 /* BB add setting the equivalent of mode via CreateX w/ACLs */
Steve French737b7582005-04-28 22:41:06 -07001238 rc = CIFSSMBMkDir(xid, pTcon, full_path, cifs_sb->local_nls,
1239 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 if (rc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001241 cFYI(1, "cifs_mkdir returned 0x%x", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 d_drop(direntry);
1243 } else {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001244mkdir_get_info:
Dave Hansend8c76e62006-09-30 23:29:04 -07001245 inc_nlink(inode);
Steve Frenchc18c8422007-07-18 23:21:09 +00001246 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001248 inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 else
1250 rc = cifs_get_inode_info(&newinode, full_path, NULL,
Steve French8b1327f2008-03-14 22:37:16 +00001251 inode->i_sb, xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Steve Frenchb92327f2005-08-22 20:09:43 -07001253 if (pTcon->nocase)
1254 direntry->d_op = &cifs_ci_dentry_ops;
1255 else
1256 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 d_instantiate(direntry, newinode);
Steve French2dd29d32007-04-23 22:07:35 +00001258 /* setting nlink not necessary except in cases where we
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001259 * failed to get it from the server or was set bogus */
Steve French2dd29d32007-04-23 22:07:35 +00001260 if ((direntry->d_inode) && (direntry->d_inode->i_nlink < 2))
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001261 direntry->d_inode->i_nlink = 2;
Jeff Layton95089912008-08-06 04:39:02 +00001262
Al Viroce3b0f82009-03-29 19:08:22 -04001263 mode &= ~current_umask();
Jeff Layton95089912008-08-06 04:39:02 +00001264 /* must turn on setgid bit if parent dir has it */
1265 if (inode->i_mode & S_ISGID)
1266 mode |= S_ISGID;
1267
Steve Frenchc18c8422007-07-18 23:21:09 +00001268 if (pTcon->unix_ext) {
Jeff Layton4e1e7fb2008-08-02 07:26:12 -04001269 struct cifs_unix_set_info_args args = {
1270 .mode = mode,
1271 .ctime = NO_CHANGE_64,
1272 .atime = NO_CHANGE_64,
1273 .mtime = NO_CHANGE_64,
1274 .device = 0,
1275 };
Steve Frenchd0d2f2d2005-06-02 15:12:36 -07001276 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
David Howellsa001e5b2008-11-14 10:38:47 +11001277 args.uid = (__u64)current_fsuid();
Jeff Layton95089912008-08-06 04:39:02 +00001278 if (inode->i_mode & S_ISGID)
1279 args.gid = (__u64)inode->i_gid;
1280 else
David Howellsa001e5b2008-11-14 10:38:47 +11001281 args.gid = (__u64)current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 } else {
Jeff Layton4e1e7fb2008-08-02 07:26:12 -04001283 args.uid = NO_CHANGE_64;
1284 args.gid = NO_CHANGE_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
Jeff Layton01ea95e2009-07-09 20:02:49 -04001286 CIFSSMBUnixSetPathInfo(xid, pTcon, full_path, &args,
1287 cifs_sb->local_nls,
1288 cifs_sb->mnt_cifs_flags &
1289 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French3ce53fc2007-06-08 14:55:14 +00001290 } else {
Jeff Layton67750fb2008-05-09 22:28:02 +00001291 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) &&
1292 (mode & S_IWUGO) == 0) {
1293 FILE_BASIC_INFO pInfo;
Jeff Layton6b37faa2008-10-06 21:54:41 +00001294 struct cifsInodeInfo *cifsInode;
1295 u32 dosattrs;
1296
Jeff Layton67750fb2008-05-09 22:28:02 +00001297 memset(&pInfo, 0, sizeof(pInfo));
Jeff Layton6b37faa2008-10-06 21:54:41 +00001298 cifsInode = CIFS_I(newinode);
1299 dosattrs = cifsInode->cifsAttrs|ATTR_READONLY;
1300 pInfo.Attributes = cpu_to_le32(dosattrs);
1301 tmprc = CIFSSMBSetPathInfo(xid, pTcon,
1302 full_path, &pInfo,
1303 cifs_sb->local_nls,
Jeff Layton67750fb2008-05-09 22:28:02 +00001304 cifs_sb->mnt_cifs_flags &
1305 CIFS_MOUNT_MAP_SPECIAL_CHR);
Jeff Layton6b37faa2008-10-06 21:54:41 +00001306 if (tmprc == 0)
1307 cifsInode->cifsAttrs = dosattrs;
Jeff Layton67750fb2008-05-09 22:28:02 +00001308 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001309 if (direntry->d_inode) {
Jeff Laytonb0fd30d2008-05-22 09:33:34 -04001310 if (cifs_sb->mnt_cifs_flags &
1311 CIFS_MOUNT_DYNPERM)
1312 direntry->d_inode->i_mode =
1313 (mode | S_IFDIR);
Steve French4e94a102008-05-23 18:22:46 +00001314
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001315 if (cifs_sb->mnt_cifs_flags &
Steve French6473a552005-11-29 20:20:10 -08001316 CIFS_MOUNT_SET_UID) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001317 direntry->d_inode->i_uid =
David Howellsa001e5b2008-11-14 10:38:47 +11001318 current_fsuid();
Jeff Layton95089912008-08-06 04:39:02 +00001319 if (inode->i_mode & S_ISGID)
1320 direntry->d_inode->i_gid =
1321 inode->i_gid;
1322 else
1323 direntry->d_inode->i_gid =
David Howellsa001e5b2008-11-14 10:38:47 +11001324 current_fsgid();
Steve French6473a552005-11-29 20:20:10 -08001325 }
1326 }
Steve French2a138ebb2005-11-29 21:22:19 -08001327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001329mkdir_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 kfree(full_path);
1331 FreeXid(xid);
1332 return rc;
1333}
1334
1335int cifs_rmdir(struct inode *inode, struct dentry *direntry)
1336{
1337 int rc = 0;
1338 int xid;
1339 struct cifs_sb_info *cifs_sb;
1340 struct cifsTconInfo *pTcon;
1341 char *full_path = NULL;
1342 struct cifsInodeInfo *cifsInode;
1343
Joe Perchesb6b38f72010-04-21 03:50:45 +00001344 cFYI(1, "cifs_rmdir, inode = 0x%p", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 xid = GetXid();
1347
1348 cifs_sb = CIFS_SB(inode->i_sb);
1349 pTcon = cifs_sb->tcon;
1350
Steve French7f573562005-08-30 11:32:14 -07001351 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301353 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301355 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
1357
Steve French737b7582005-04-28 22:41:06 -07001358 rc = CIFSSMBRmDir(xid, pTcon, full_path, cifs_sb->local_nls,
1359 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 if (!rc) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001362 drop_nlink(inode);
Steve French3677db12007-02-26 16:46:11 +00001363 spin_lock(&direntry->d_inode->i_lock);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001364 i_size_write(direntry->d_inode, 0);
Dave Hansence71ec32006-09-30 23:29:06 -07001365 clear_nlink(direntry->d_inode);
Steve French3677db12007-02-26 16:46:11 +00001366 spin_unlock(&direntry->d_inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368
1369 cifsInode = CIFS_I(direntry->d_inode);
1370 cifsInode->time = 0; /* force revalidate to go get info when
1371 needed */
Steve French42c24542009-01-13 22:03:55 +00001372
1373 cifsInode = CIFS_I(inode);
1374 cifsInode->time = 0; /* force revalidate to get parent dir info
1375 since cached search results now invalid */
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 direntry->d_inode->i_ctime = inode->i_ctime = inode->i_mtime =
1378 current_fs_time(inode->i_sb);
1379
1380 kfree(full_path);
1381 FreeXid(xid);
1382 return rc;
1383}
1384
Steve Frenchee2fd962008-09-23 18:23:33 +00001385static int
1386cifs_do_rename(int xid, struct dentry *from_dentry, const char *fromPath,
1387 struct dentry *to_dentry, const char *toPath)
1388{
1389 struct cifs_sb_info *cifs_sb = CIFS_SB(from_dentry->d_sb);
1390 struct cifsTconInfo *pTcon = cifs_sb->tcon;
1391 __u16 srcfid;
1392 int oplock, rc;
1393
1394 /* try path-based rename first */
1395 rc = CIFSSMBRename(xid, pTcon, fromPath, toPath, cifs_sb->local_nls,
1396 cifs_sb->mnt_cifs_flags &
1397 CIFS_MOUNT_MAP_SPECIAL_CHR);
1398
1399 /*
1400 * don't bother with rename by filehandle unless file is busy and
1401 * source Note that cross directory moves do not work with
1402 * rename by filehandle to various Windows servers.
1403 */
1404 if (rc == 0 || rc != -ETXTBSY)
1405 return rc;
1406
Jeff Laytoned0e3ac2010-06-01 16:21:01 -04001407 /* open-file renames don't work across directories */
1408 if (to_dentry->d_parent != from_dentry->d_parent)
1409 return rc;
1410
Steve Frenchee2fd962008-09-23 18:23:33 +00001411 /* open the file to be renamed -- we need DELETE perms */
1412 rc = CIFSSMBOpen(xid, pTcon, fromPath, FILE_OPEN, DELETE,
1413 CREATE_NOT_DIR, &srcfid, &oplock, NULL,
1414 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
1415 CIFS_MOUNT_MAP_SPECIAL_CHR);
1416
1417 if (rc == 0) {
1418 rc = CIFSSMBRenameOpenFile(xid, pTcon, srcfid,
1419 (const char *) to_dentry->d_name.name,
1420 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
1421 CIFS_MOUNT_MAP_SPECIAL_CHR);
1422
1423 CIFSSMBClose(xid, pTcon, srcfid);
1424 }
1425
1426 return rc;
1427}
1428
Jeff Layton14121bd2008-10-20 14:45:22 -04001429int cifs_rename(struct inode *source_dir, struct dentry *source_dentry,
1430 struct inode *target_dir, struct dentry *target_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Steve Frenchee2fd962008-09-23 18:23:33 +00001432 char *fromName = NULL;
1433 char *toName = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 struct cifs_sb_info *cifs_sb_source;
1435 struct cifs_sb_info *cifs_sb_target;
Jeff Layton14121bd2008-10-20 14:45:22 -04001436 struct cifsTconInfo *tcon;
Steve Frenchee2fd962008-09-23 18:23:33 +00001437 FILE_UNIX_BASIC_INFO *info_buf_source = NULL;
1438 FILE_UNIX_BASIC_INFO *info_buf_target;
Jeff Layton8d281ef2008-10-22 13:57:01 -04001439 int xid, rc, tmprc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Jeff Layton14121bd2008-10-20 14:45:22 -04001441 cifs_sb_target = CIFS_SB(target_dir->i_sb);
1442 cifs_sb_source = CIFS_SB(source_dir->i_sb);
1443 tcon = cifs_sb_source->tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Steve Frenchee2fd962008-09-23 18:23:33 +00001445 xid = GetXid();
1446
1447 /*
1448 * BB: this might be allowed if same server, but different share.
1449 * Consider adding support for this
1450 */
Jeff Layton14121bd2008-10-20 14:45:22 -04001451 if (tcon != cifs_sb_target->tcon) {
Steve Frenchee2fd962008-09-23 18:23:33 +00001452 rc = -EXDEV;
1453 goto cifs_rename_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 }
1455
Steve Frenchee2fd962008-09-23 18:23:33 +00001456 /*
1457 * we already have the rename sem so we do not need to
1458 * grab it again here to protect the path integrity
1459 */
Jeff Layton14121bd2008-10-20 14:45:22 -04001460 fromName = build_path_from_dentry(source_dentry);
Steve Frenchee2fd962008-09-23 18:23:33 +00001461 if (fromName == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 rc = -ENOMEM;
1463 goto cifs_rename_exit;
1464 }
1465
Jeff Layton14121bd2008-10-20 14:45:22 -04001466 toName = build_path_from_dentry(target_dentry);
Steve Frenchee2fd962008-09-23 18:23:33 +00001467 if (toName == NULL) {
1468 rc = -ENOMEM;
1469 goto cifs_rename_exit;
1470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Jeff Layton14121bd2008-10-20 14:45:22 -04001472 rc = cifs_do_rename(xid, source_dentry, fromName,
1473 target_dentry, toName);
Steve Frenchee2fd962008-09-23 18:23:33 +00001474
Jeff Layton14121bd2008-10-20 14:45:22 -04001475 if (rc == -EEXIST && tcon->unix_ext) {
Steve Frenchee2fd962008-09-23 18:23:33 +00001476 /*
Jeff Layton14121bd2008-10-20 14:45:22 -04001477 * Are src and dst hardlinks of same inode? We can
1478 * only tell with unix extensions enabled
Steve Frenchee2fd962008-09-23 18:23:33 +00001479 */
Jeff Layton14121bd2008-10-20 14:45:22 -04001480 info_buf_source =
1481 kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO),
1482 GFP_KERNEL);
1483 if (info_buf_source == NULL) {
1484 rc = -ENOMEM;
1485 goto cifs_rename_exit;
1486 }
1487
1488 info_buf_target = info_buf_source + 1;
Jeff Layton8d281ef2008-10-22 13:57:01 -04001489 tmprc = CIFSSMBUnixQPathInfo(xid, tcon, fromName,
Jeff Layton14121bd2008-10-20 14:45:22 -04001490 info_buf_source,
1491 cifs_sb_source->local_nls,
1492 cifs_sb_source->mnt_cifs_flags &
1493 CIFS_MOUNT_MAP_SPECIAL_CHR);
Jeff Layton8d281ef2008-10-22 13:57:01 -04001494 if (tmprc != 0)
Jeff Layton14121bd2008-10-20 14:45:22 -04001495 goto unlink_target;
1496
Jeff Layton8d281ef2008-10-22 13:57:01 -04001497 tmprc = CIFSSMBUnixQPathInfo(xid, tcon,
Jeff Layton14121bd2008-10-20 14:45:22 -04001498 toName, info_buf_target,
1499 cifs_sb_target->local_nls,
1500 /* remap based on source sb */
1501 cifs_sb_source->mnt_cifs_flags &
1502 CIFS_MOUNT_MAP_SPECIAL_CHR);
1503
Jeff Layton8d281ef2008-10-22 13:57:01 -04001504 if (tmprc == 0 && (info_buf_source->UniqueId ==
Jeff Laytonae6884a2008-11-03 14:05:08 -05001505 info_buf_target->UniqueId)) {
Jeff Layton14121bd2008-10-20 14:45:22 -04001506 /* same file, POSIX says that this is a noop */
Jeff Laytonae6884a2008-11-03 14:05:08 -05001507 rc = 0;
Jeff Layton14121bd2008-10-20 14:45:22 -04001508 goto cifs_rename_exit;
Jeff Laytonae6884a2008-11-03 14:05:08 -05001509 }
Jeff Layton14121bd2008-10-20 14:45:22 -04001510 } /* else ... BB we could add the same check for Windows by
1511 checking the UniqueId via FILE_INTERNAL_INFO */
1512
Jeff Layton14121bd2008-10-20 14:45:22 -04001513unlink_target:
Jeff Laytonfc6f3942009-04-17 11:45:30 -04001514 /* Try unlinking the target dentry if it's not negative */
1515 if (target_dentry->d_inode && (rc == -EACCES || rc == -EEXIST)) {
Jeff Layton8d281ef2008-10-22 13:57:01 -04001516 tmprc = cifs_unlink(target_dir, target_dentry);
Jeff Layton14121bd2008-10-20 14:45:22 -04001517 if (tmprc)
1518 goto cifs_rename_exit;
1519
Jeff Layton14121bd2008-10-20 14:45:22 -04001520 rc = cifs_do_rename(xid, source_dentry, fromName,
1521 target_dentry, toName);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
1523
1524cifs_rename_exit:
Steve Frenchee2fd962008-09-23 18:23:33 +00001525 kfree(info_buf_source);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 kfree(fromName);
1527 kfree(toName);
1528 FreeXid(xid);
1529 return rc;
1530}
1531
Jeff Laytondf2cf172010-02-12 07:44:16 -05001532static bool
1533cifs_inode_needs_reval(struct inode *inode)
1534{
1535 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
1536
1537 if (cifs_i->clientCanCacheRead)
1538 return false;
1539
1540 if (!lookupCacheEnabled)
1541 return true;
1542
1543 if (cifs_i->time == 0)
1544 return true;
1545
1546 /* FIXME: the actimeo should be tunable */
1547 if (time_after_eq(jiffies, cifs_i->time + HZ))
1548 return true;
1549
Jeff Laytondb192722010-05-17 14:51:49 -04001550 /* hardlinked files w/ noserverino get "special" treatment */
1551 if (!(CIFS_SB(inode->i_sb)->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) &&
1552 S_ISREG(inode->i_mode) && inode->i_nlink != 1)
1553 return true;
1554
Jeff Laytondf2cf172010-02-12 07:44:16 -05001555 return false;
1556}
1557
1558/* check invalid_mapping flag and zap the cache if it's set */
1559static void
1560cifs_invalidate_mapping(struct inode *inode)
1561{
1562 int rc;
1563 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
1564
1565 cifs_i->invalid_mapping = false;
1566
1567 /* write back any cached data */
1568 if (inode->i_mapping && inode->i_mapping->nrpages != 0) {
1569 rc = filemap_write_and_wait(inode->i_mapping);
1570 if (rc)
1571 cifs_i->write_behind_rc = rc;
1572 }
1573 invalidate_remote_inode(inode);
1574}
1575
Jeff Laytonabab0952010-02-12 07:44:18 -05001576int cifs_revalidate_file(struct file *filp)
1577{
1578 int rc = 0;
1579 struct inode *inode = filp->f_path.dentry->d_inode;
1580
1581 if (!cifs_inode_needs_reval(inode))
1582 goto check_inval;
1583
1584 if (CIFS_SB(inode->i_sb)->tcon->unix_ext)
1585 rc = cifs_get_file_info_unix(filp);
1586 else
1587 rc = cifs_get_file_info(filp);
1588
1589check_inval:
1590 if (CIFS_I(inode)->invalid_mapping)
1591 cifs_invalidate_mapping(inode);
1592
1593 return rc;
1594}
1595
Jeff Laytondf2cf172010-02-12 07:44:16 -05001596/* revalidate a dentry's inode attributes */
1597int cifs_revalidate_dentry(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
1599 int xid;
Jeff Laytondf2cf172010-02-12 07:44:16 -05001600 int rc = 0;
1601 char *full_path = NULL;
1602 struct inode *inode = dentry->d_inode;
1603 struct super_block *sb = dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Jeff Laytondf2cf172010-02-12 07:44:16 -05001605 if (inode == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 return -ENOENT;
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 xid = GetXid();
1609
Jeff Laytondf2cf172010-02-12 07:44:16 -05001610 if (!cifs_inode_needs_reval(inode))
1611 goto check_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613 /* can not safely grab the rename sem here if rename calls revalidate
1614 since that would deadlock */
Jeff Laytondf2cf172010-02-12 07:44:16 -05001615 full_path = build_path_from_dentry(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301617 rc = -ENOMEM;
Jeff Laytondf2cf172010-02-12 07:44:16 -05001618 goto check_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 }
Jeff Laytondf2cf172010-02-12 07:44:16 -05001620
Steve Frenchf19159d2010-04-21 04:12:10 +00001621 cFYI(1, "Revalidate: %s inode 0x%p count %d dentry: 0x%p d_time %ld "
Jeff Laytondf2cf172010-02-12 07:44:16 -05001622 "jiffies %ld", full_path, inode, inode->i_count.counter,
Steve Frenchf19159d2010-04-21 04:12:10 +00001623 dentry, dentry->d_time, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Jeff Laytondf2cf172010-02-12 07:44:16 -05001625 if (CIFS_SB(sb)->tcon->unix_ext)
1626 rc = cifs_get_inode_info_unix(&inode, full_path, sb, xid);
1627 else
1628 rc = cifs_get_inode_info(&inode, full_path, NULL, sb,
1629 xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Jeff Laytondf2cf172010-02-12 07:44:16 -05001631check_inval:
1632 if (CIFS_I(inode)->invalid_mapping)
1633 cifs_invalidate_mapping(inode);
Steve French50c2f752007-07-13 00:33:32 +00001634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 kfree(full_path);
1636 FreeXid(xid);
1637 return rc;
1638}
1639
1640int cifs_getattr(struct vfsmount *mnt, struct dentry *dentry,
1641 struct kstat *stat)
1642{
Jeff Laytondf2cf172010-02-12 07:44:16 -05001643 int err = cifs_revalidate_dentry(dentry);
Steve French5fe14c82006-11-07 19:26:33 +00001644 if (!err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 generic_fillattr(dentry->d_inode, stat);
Steve French5fe14c82006-11-07 19:26:33 +00001646 stat->blksize = CIFS_MAX_MSGSIZE;
Jeff Laytoncc0bad72009-06-25 00:56:52 -04001647 stat->ino = CIFS_I(dentry->d_inode)->uniqueid;
Steve French5fe14c82006-11-07 19:26:33 +00001648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 return err;
1650}
1651
1652static int cifs_truncate_page(struct address_space *mapping, loff_t from)
1653{
1654 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1655 unsigned offset = from & (PAGE_CACHE_SIZE - 1);
1656 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 int rc = 0;
1658
1659 page = grab_cache_page(mapping, index);
1660 if (!page)
1661 return -ENOMEM;
1662
Christoph Lametereebd2aa2008-02-04 22:28:29 -08001663 zero_user_segment(page, offset, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 unlock_page(page);
1665 page_cache_release(page);
1666 return rc;
1667}
1668
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001669static int cifs_vmtruncate(struct inode *inode, loff_t offset)
Steve French3677db12007-02-26 16:46:11 +00001670{
npiggin@suse.dec08d3b02009-08-21 02:35:06 +10001671 loff_t oldsize;
1672 int err;
Steve French3677db12007-02-26 16:46:11 +00001673
Steve Frenchba6a46a2007-02-26 20:06:29 +00001674 spin_lock(&inode->i_lock);
npiggin@suse.dec08d3b02009-08-21 02:35:06 +10001675 err = inode_newsize_ok(inode, offset);
1676 if (err) {
Steve Frenchba6a46a2007-02-26 20:06:29 +00001677 spin_unlock(&inode->i_lock);
npiggin@suse.dec08d3b02009-08-21 02:35:06 +10001678 goto out;
Steve Frenchba6a46a2007-02-26 20:06:29 +00001679 }
Steve French3677db12007-02-26 16:46:11 +00001680
npiggin@suse.dec08d3b02009-08-21 02:35:06 +10001681 oldsize = inode->i_size;
Steve French3677db12007-02-26 16:46:11 +00001682 i_size_write(inode, offset);
Steve Frenchba6a46a2007-02-26 20:06:29 +00001683 spin_unlock(&inode->i_lock);
npiggin@suse.dec08d3b02009-08-21 02:35:06 +10001684 truncate_pagecache(inode, oldsize, offset);
Al Viroacfa4382008-12-04 10:06:33 -05001685 if (inode->i_op->truncate)
Steve French3677db12007-02-26 16:46:11 +00001686 inode->i_op->truncate(inode);
npiggin@suse.dec08d3b02009-08-21 02:35:06 +10001687out:
1688 return err;
Steve French3677db12007-02-26 16:46:11 +00001689}
1690
Jeff Layton8efdbde2008-07-23 21:28:12 +00001691static int
1692cifs_set_file_size(struct inode *inode, struct iattr *attrs,
1693 int xid, char *full_path)
1694{
1695 int rc;
1696 struct cifsFileInfo *open_file;
1697 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
1698 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
1699 struct cifsTconInfo *pTcon = cifs_sb->tcon;
1700
1701 /*
1702 * To avoid spurious oplock breaks from server, in the case of
1703 * inodes that we already have open, avoid doing path based
1704 * setting of file size if we can do it by handle.
1705 * This keeps our caching token (oplock) and avoids timeouts
1706 * when the local oplock break takes longer to flush
1707 * writebehind data than the SMB timeout for the SetPathInfo
1708 * request would allow
1709 */
1710 open_file = find_writable_file(cifsInode);
1711 if (open_file) {
1712 __u16 nfid = open_file->netfid;
1713 __u32 npid = open_file->pid;
1714 rc = CIFSSMBSetFileSize(xid, pTcon, attrs->ia_size, nfid,
1715 npid, false);
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04001716 cifsFileInfo_put(open_file);
Joe Perchesb6b38f72010-04-21 03:50:45 +00001717 cFYI(1, "SetFSize for attrs rc = %d", rc);
Jeff Layton8efdbde2008-07-23 21:28:12 +00001718 if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
1719 unsigned int bytes_written;
1720 rc = CIFSSMBWrite(xid, pTcon, nfid, 0, attrs->ia_size,
1721 &bytes_written, NULL, NULL, 1);
Joe Perchesb6b38f72010-04-21 03:50:45 +00001722 cFYI(1, "Wrt seteof rc %d", rc);
Jeff Layton8efdbde2008-07-23 21:28:12 +00001723 }
1724 } else
1725 rc = -EINVAL;
1726
1727 if (rc != 0) {
1728 /* Set file size by pathname rather than by handle
1729 either because no valid, writeable file handle for
1730 it was found or because there was an error setting
1731 it by handle */
1732 rc = CIFSSMBSetEOF(xid, pTcon, full_path, attrs->ia_size,
1733 false, cifs_sb->local_nls,
1734 cifs_sb->mnt_cifs_flags &
1735 CIFS_MOUNT_MAP_SPECIAL_CHR);
Joe Perchesb6b38f72010-04-21 03:50:45 +00001736 cFYI(1, "SetEOF by path (setattrs) rc = %d", rc);
Jeff Layton8efdbde2008-07-23 21:28:12 +00001737 if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
1738 __u16 netfid;
1739 int oplock = 0;
1740
1741 rc = SMBLegacyOpen(xid, pTcon, full_path,
1742 FILE_OPEN, GENERIC_WRITE,
1743 CREATE_NOT_DIR, &netfid, &oplock, NULL,
1744 cifs_sb->local_nls,
1745 cifs_sb->mnt_cifs_flags &
1746 CIFS_MOUNT_MAP_SPECIAL_CHR);
1747 if (rc == 0) {
1748 unsigned int bytes_written;
1749 rc = CIFSSMBWrite(xid, pTcon, netfid, 0,
1750 attrs->ia_size,
1751 &bytes_written, NULL,
1752 NULL, 1);
Joe Perchesb6b38f72010-04-21 03:50:45 +00001753 cFYI(1, "wrt seteof rc %d", rc);
Jeff Layton8efdbde2008-07-23 21:28:12 +00001754 CIFSSMBClose(xid, pTcon, netfid);
1755 }
1756 }
1757 }
1758
1759 if (rc == 0) {
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001760 cifsInode->server_eof = attrs->ia_size;
Jeff Layton8efdbde2008-07-23 21:28:12 +00001761 rc = cifs_vmtruncate(inode, attrs->ia_size);
1762 cifs_truncate_page(inode->i_mapping, inode->i_size);
1763 }
1764
1765 return rc;
1766}
1767
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04001768static int
1769cifs_setattr_unix(struct dentry *direntry, struct iattr *attrs)
1770{
1771 int rc;
1772 int xid;
1773 char *full_path = NULL;
1774 struct inode *inode = direntry->d_inode;
1775 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
1776 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
1777 struct cifsTconInfo *pTcon = cifs_sb->tcon;
1778 struct cifs_unix_set_info_args *args = NULL;
Jeff Layton3bbeeb32009-07-09 20:02:50 -04001779 struct cifsFileInfo *open_file;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04001780
Joe Perchesb6b38f72010-04-21 03:50:45 +00001781 cFYI(1, "setattr_unix on file %s attrs->ia_valid=0x%x",
1782 direntry->d_name.name, attrs->ia_valid);
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04001783
1784 xid = GetXid();
1785
1786 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) == 0) {
1787 /* check if we have permission to change attrs */
1788 rc = inode_change_ok(inode, attrs);
1789 if (rc < 0)
1790 goto out;
1791 else
1792 rc = 0;
1793 }
1794
1795 full_path = build_path_from_dentry(direntry);
1796 if (full_path == NULL) {
1797 rc = -ENOMEM;
1798 goto out;
1799 }
1800
Jeff Layton0f4d6342009-03-26 13:35:37 -04001801 /*
1802 * Attempt to flush data before changing attributes. We need to do
1803 * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the
1804 * ownership or mode then we may also need to do this. Here, we take
1805 * the safe way out and just do the flush on all setattr requests. If
1806 * the flush returns error, store it to report later and continue.
1807 *
1808 * BB: This should be smarter. Why bother flushing pages that
1809 * will be truncated anyway? Also, should we error out here if
1810 * the flush returns error?
1811 */
1812 rc = filemap_write_and_wait(inode->i_mapping);
1813 if (rc != 0) {
1814 cifsInode->write_behind_rc = rc;
1815 rc = 0;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04001816 }
1817
1818 if (attrs->ia_valid & ATTR_SIZE) {
1819 rc = cifs_set_file_size(inode, attrs, xid, full_path);
1820 if (rc != 0)
1821 goto out;
1822 }
1823
1824 /* skip mode change if it's just for clearing setuid/setgid */
1825 if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
1826 attrs->ia_valid &= ~ATTR_MODE;
1827
1828 args = kmalloc(sizeof(*args), GFP_KERNEL);
1829 if (args == NULL) {
1830 rc = -ENOMEM;
1831 goto out;
1832 }
1833
1834 /* set up the struct */
1835 if (attrs->ia_valid & ATTR_MODE)
1836 args->mode = attrs->ia_mode;
1837 else
1838 args->mode = NO_CHANGE_64;
1839
1840 if (attrs->ia_valid & ATTR_UID)
1841 args->uid = attrs->ia_uid;
1842 else
1843 args->uid = NO_CHANGE_64;
1844
1845 if (attrs->ia_valid & ATTR_GID)
1846 args->gid = attrs->ia_gid;
1847 else
1848 args->gid = NO_CHANGE_64;
1849
1850 if (attrs->ia_valid & ATTR_ATIME)
1851 args->atime = cifs_UnixTimeToNT(attrs->ia_atime);
1852 else
1853 args->atime = NO_CHANGE_64;
1854
1855 if (attrs->ia_valid & ATTR_MTIME)
1856 args->mtime = cifs_UnixTimeToNT(attrs->ia_mtime);
1857 else
1858 args->mtime = NO_CHANGE_64;
1859
1860 if (attrs->ia_valid & ATTR_CTIME)
1861 args->ctime = cifs_UnixTimeToNT(attrs->ia_ctime);
1862 else
1863 args->ctime = NO_CHANGE_64;
1864
1865 args->device = 0;
Jeff Layton3bbeeb32009-07-09 20:02:50 -04001866 open_file = find_writable_file(cifsInode);
1867 if (open_file) {
1868 u16 nfid = open_file->netfid;
1869 u32 npid = open_file->pid;
1870 rc = CIFSSMBUnixSetFileInfo(xid, pTcon, args, nfid, npid);
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04001871 cifsFileInfo_put(open_file);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04001872 } else {
1873 rc = CIFSSMBUnixSetPathInfo(xid, pTcon, full_path, args,
Jeff Layton01ea95e2009-07-09 20:02:49 -04001874 cifs_sb->local_nls,
1875 cifs_sb->mnt_cifs_flags &
1876 CIFS_MOUNT_MAP_SPECIAL_CHR);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04001877 }
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04001878
Steve Frenchccd4bb12010-02-08 17:39:58 +00001879 if (!rc) {
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04001880 rc = inode_setattr(inode, attrs);
Steve Frenchccd4bb12010-02-08 17:39:58 +00001881
1882 /* force revalidate when any of these times are set since some
1883 of the fs types (eg ext3, fat) do not have fine enough
1884 time granularity to match protocol, and we do not have a
1885 a way (yet) to query the server fs's time granularity (and
1886 whether it rounds times down).
1887 */
1888 if (!rc && (attrs->ia_valid & (ATTR_MTIME | ATTR_CTIME)))
1889 cifsInode->time = 0;
1890 }
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04001891out:
1892 kfree(args);
1893 kfree(full_path);
1894 FreeXid(xid);
1895 return rc;
1896}
1897
Jeff Layton0510eeb2008-08-02 07:26:12 -04001898static int
1899cifs_setattr_nounix(struct dentry *direntry, struct iattr *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
1901 int xid;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04001902 struct inode *inode = direntry->d_inode;
1903 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04001904 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 char *full_path = NULL;
1906 int rc = -EACCES;
Jeff Laytonfeb3e202008-08-02 07:26:12 -04001907 __u32 dosattr = 0;
Jeff Layton4e1e7fb2008-08-02 07:26:12 -04001908 __u64 mode = NO_CHANGE_64;
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04001909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 xid = GetXid();
1911
Joe Perchesb6b38f72010-04-21 03:50:45 +00001912 cFYI(1, "setattr on file %s attrs->iavalid 0x%x",
1913 direntry->d_name.name, attrs->ia_valid);
Steve French6473a552005-11-29 20:20:10 -08001914
Steve French2a138ebb2005-11-29 21:22:19 -08001915 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) == 0) {
Steve French6473a552005-11-29 20:20:10 -08001916 /* check if we have permission to change attrs */
Jeff Layton02eadef2008-05-09 21:26:11 +00001917 rc = inode_change_ok(inode, attrs);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001918 if (rc < 0) {
Steve French6473a552005-11-29 20:20:10 -08001919 FreeXid(xid);
1920 return rc;
1921 } else
1922 rc = 0;
1923 }
Steve French50c2f752007-07-13 00:33:32 +00001924
Steve French7f573562005-08-30 11:32:14 -07001925 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301927 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301929 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Jeff Layton0f4d6342009-03-26 13:35:37 -04001932 /*
1933 * Attempt to flush data before changing attributes. We need to do
1934 * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the
1935 * ownership or mode then we may also need to do this. Here, we take
1936 * the safe way out and just do the flush on all setattr requests. If
1937 * the flush returns error, store it to report later and continue.
1938 *
1939 * BB: This should be smarter. Why bother flushing pages that
1940 * will be truncated anyway? Also, should we error out here if
1941 * the flush returns error?
1942 */
1943 rc = filemap_write_and_wait(inode->i_mapping);
1944 if (rc != 0) {
1945 cifsInode->write_behind_rc = rc;
1946 rc = 0;
Steve French50531442008-03-14 19:21:31 +00001947 }
Jeff Laytoncea21802007-11-20 23:19:03 +00001948
Steve French50531442008-03-14 19:21:31 +00001949 if (attrs->ia_valid & ATTR_SIZE) {
Jeff Layton8efdbde2008-07-23 21:28:12 +00001950 rc = cifs_set_file_size(inode, attrs, xid, full_path);
1951 if (rc != 0)
Steve Frenche30dcf32005-09-20 20:49:16 -07001952 goto cifs_setattr_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 }
Jeff Layton4ca691a2008-05-22 09:33:34 -04001954
1955 /*
1956 * Without unix extensions we can't send ownership changes to the
1957 * server, so silently ignore them. This is consistent with how
1958 * local DOS/Windows filesystems behave (VFAT, NTFS, etc). With
1959 * CIFSACL support + proper Windows to Unix idmapping, we may be
1960 * able to support this in the future.
1961 */
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04001962 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID))
Jeff Layton4ca691a2008-05-22 09:33:34 -04001963 attrs->ia_valid &= ~(ATTR_UID | ATTR_GID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Jeff Laytond32c4f22007-10-18 03:05:22 -07001965 /* skip mode change if it's just for clearing setuid/setgid */
1966 if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
1967 attrs->ia_valid &= ~ATTR_MODE;
1968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (attrs->ia_valid & ATTR_MODE) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001970 cFYI(1, "Mode changed to 0%o", attrs->ia_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 mode = attrs->ia_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 }
1973
Jeff Layton3fe5c1d2008-08-02 07:26:12 -04001974 if (attrs->ia_valid & ATTR_MODE) {
Steve Frenchcdbce9c2005-11-19 21:04:52 -08001975 rc = 0;
Steve French97837582007-12-31 07:47:21 +00001976#ifdef CONFIG_CIFS_EXPERIMENTAL
1977 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
Jeff Layton02eadef2008-05-09 21:26:11 +00001978 rc = mode_to_acl(inode, full_path, mode);
Jeff Layton51328612008-05-22 09:33:34 -04001979 else
Steve French97837582007-12-31 07:47:21 +00001980#endif
Jeff Layton51328612008-05-22 09:33:34 -04001981 if (((mode & S_IWUGO) == 0) &&
1982 (cifsInode->cifsAttrs & ATTR_READONLY) == 0) {
Jeff Laytonfeb3e202008-08-02 07:26:12 -04001983
1984 dosattr = cifsInode->cifsAttrs | ATTR_READONLY;
1985
Jeff Layton51328612008-05-22 09:33:34 -04001986 /* fix up mode if we're not using dynperm */
1987 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM) == 0)
1988 attrs->ia_mode = inode->i_mode & ~S_IWUGO;
1989 } else if ((mode & S_IWUGO) &&
1990 (cifsInode->cifsAttrs & ATTR_READONLY)) {
Jeff Laytonfeb3e202008-08-02 07:26:12 -04001991
1992 dosattr = cifsInode->cifsAttrs & ~ATTR_READONLY;
1993 /* Attributes of 0 are ignored */
1994 if (dosattr == 0)
1995 dosattr |= ATTR_NORMAL;
Jeff Layton51328612008-05-22 09:33:34 -04001996
1997 /* reset local inode permissions to normal */
1998 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) {
1999 attrs->ia_mode &= ~(S_IALLUGO);
2000 if (S_ISDIR(inode->i_mode))
2001 attrs->ia_mode |=
2002 cifs_sb->mnt_dir_mode;
2003 else
2004 attrs->ia_mode |=
2005 cifs_sb->mnt_file_mode;
2006 }
2007 } else if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) {
2008 /* ignore mode change - ATTR_READONLY hasn't changed */
2009 attrs->ia_valid &= ~ATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 }
2012
Jeff Laytonfeb3e202008-08-02 07:26:12 -04002013 if (attrs->ia_valid & (ATTR_MTIME|ATTR_ATIME|ATTR_CTIME) ||
2014 ((attrs->ia_valid & ATTR_MODE) && dosattr)) {
2015 rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr);
2016 /* BB: check for rc = -EOPNOTSUPP and switch to legacy mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Steve Frenche30dcf32005-09-20 20:49:16 -07002018 /* Even if error on time set, no sense failing the call if
2019 the server would set the time to a reasonable value anyway,
2020 and this check ensures that we are not being called from
2021 sys_utimes in which case we ought to fail the call back to
2022 the user when the server rejects the call */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002023 if ((rc) && (attrs->ia_valid &
Jeff Laytonfeb3e202008-08-02 07:26:12 -04002024 (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE)))
Steve Frenche30dcf32005-09-20 20:49:16 -07002025 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 }
2027
2028 /* do not need local check to inode_check_ok since the server does
2029 that */
2030 if (!rc)
Jeff Layton02eadef2008-05-09 21:26:11 +00002031 rc = inode_setattr(inode, attrs);
Steve Frenche30dcf32005-09-20 20:49:16 -07002032cifs_setattr_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 kfree(full_path);
2034 FreeXid(xid);
2035 return rc;
2036}
2037
Jeff Layton0510eeb2008-08-02 07:26:12 -04002038int
2039cifs_setattr(struct dentry *direntry, struct iattr *attrs)
2040{
2041 struct inode *inode = direntry->d_inode;
2042 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
2043 struct cifsTconInfo *pTcon = cifs_sb->tcon;
2044
2045 if (pTcon->unix_ext)
2046 return cifs_setattr_unix(direntry, attrs);
2047
2048 return cifs_setattr_nounix(direntry, attrs);
2049
2050 /* BB: add cifs_setattr_legacy for really old servers */
2051}
2052
Steve French99ee4db2007-02-27 05:35:17 +00002053#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054void cifs_delete_inode(struct inode *inode)
2055{
Joe Perchesb6b38f72010-04-21 03:50:45 +00002056 cFYI(1, "In cifs_delete_inode, inode = 0x%p", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 /* may have to add back in if and when safe distributed caching of
2058 directories added e.g. via FindNotify */
2059}
Steve French99ee4db2007-02-27 05:35:17 +00002060#endif