blob: bc673c8c1e6b59eb7fc48464965db0e3e7835365 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/inode.c
3 *
Steve French2dd29d32007-04-23 22:07:35 +00004 * Copyright (C) International Business Machines Corp., 2002,2007
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>
23#include <linux/pagemap.h>
24#include <asm/div64.h>
25#include "cifsfs.h"
26#include "cifspdu.h"
27#include "cifsglob.h"
28#include "cifsproto.h"
29#include "cifs_debug.h"
30#include "cifs_fs_sb.h"
31
Christoph Hellwig70eff552008-02-15 20:55:05 +000032
Igor Mammedov79626702008-03-09 03:44:18 +000033static void cifs_set_ops(struct inode *inode, const bool is_dfs_referral)
Christoph Hellwig70eff552008-02-15 20:55:05 +000034{
35 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
36
37 switch (inode->i_mode & S_IFMT) {
38 case S_IFREG:
39 inode->i_op = &cifs_file_inode_ops;
40 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
41 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
42 inode->i_fop = &cifs_file_direct_nobrl_ops;
43 else
44 inode->i_fop = &cifs_file_direct_ops;
45 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
46 inode->i_fop = &cifs_file_nobrl_ops;
47 else { /* not direct, send byte range locks */
48 inode->i_fop = &cifs_file_ops;
49 }
50
51
52 /* check if server can support readpages */
53 if (cifs_sb->tcon->ses->server->maxBuf <
54 PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE)
55 inode->i_data.a_ops = &cifs_addr_ops_smallbuf;
56 else
57 inode->i_data.a_ops = &cifs_addr_ops;
58 break;
59 case S_IFDIR:
Steve Frenchbc5b6e22008-03-11 21:07:48 +000060#ifdef CONFIG_CIFS_DFS_UPCALL
Igor Mammedov79626702008-03-09 03:44:18 +000061 if (is_dfs_referral) {
62 inode->i_op = &cifs_dfs_referral_inode_operations;
63 } else {
Steve Frenchbc5b6e22008-03-11 21:07:48 +000064#else /* NO DFS support, treat as a directory */
65 {
66#endif
Igor Mammedov79626702008-03-09 03:44:18 +000067 inode->i_op = &cifs_dir_inode_ops;
68 inode->i_fop = &cifs_dir_ops;
69 }
Christoph Hellwig70eff552008-02-15 20:55:05 +000070 break;
71 case S_IFLNK:
72 inode->i_op = &cifs_symlink_inode_ops;
73 break;
74 default:
75 init_special_inode(inode, inode->i_mode, inode->i_rdev);
76 break;
77 }
78}
79
Christoph Hellwig75f12982008-02-25 20:25:21 +000080static void cifs_unix_info_to_inode(struct inode *inode,
81 FILE_UNIX_BASIC_INFO *info, int force_uid_gid)
82{
83 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
84 struct cifsInodeInfo *cifsInfo = CIFS_I(inode);
85 __u64 num_of_bytes = le64_to_cpu(info->NumOfBytes);
86 __u64 end_of_file = le64_to_cpu(info->EndOfFile);
87
88 inode->i_atime = cifs_NTtimeToUnix(le64_to_cpu(info->LastAccessTime));
89 inode->i_mtime =
90 cifs_NTtimeToUnix(le64_to_cpu(info->LastModificationTime));
91 inode->i_ctime = cifs_NTtimeToUnix(le64_to_cpu(info->LastStatusChange));
92 inode->i_mode = le64_to_cpu(info->Permissions);
93
94 /*
95 * Since we set the inode type below we need to mask off
96 * to avoid strange results if bits set above.
97 */
98 inode->i_mode &= ~S_IFMT;
99 switch (le32_to_cpu(info->Type)) {
100 case UNIX_FILE:
101 inode->i_mode |= S_IFREG;
102 break;
103 case UNIX_SYMLINK:
104 inode->i_mode |= S_IFLNK;
105 break;
106 case UNIX_DIR:
107 inode->i_mode |= S_IFDIR;
108 break;
109 case UNIX_CHARDEV:
110 inode->i_mode |= S_IFCHR;
111 inode->i_rdev = MKDEV(le64_to_cpu(info->DevMajor),
112 le64_to_cpu(info->DevMinor) & MINORMASK);
113 break;
114 case UNIX_BLOCKDEV:
115 inode->i_mode |= S_IFBLK;
116 inode->i_rdev = MKDEV(le64_to_cpu(info->DevMajor),
117 le64_to_cpu(info->DevMinor) & MINORMASK);
118 break;
119 case UNIX_FIFO:
120 inode->i_mode |= S_IFIFO;
121 break;
122 case UNIX_SOCKET:
123 inode->i_mode |= S_IFSOCK;
124 break;
125 default:
126 /* safest to call it a file if we do not know */
127 inode->i_mode |= S_IFREG;
128 cFYI(1, ("unknown type %d", le32_to_cpu(info->Type)));
129 break;
130 }
131
132 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID) &&
133 !force_uid_gid)
134 inode->i_uid = cifs_sb->mnt_uid;
135 else
136 inode->i_uid = le64_to_cpu(info->Uid);
137
138 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID) &&
139 !force_uid_gid)
140 inode->i_gid = cifs_sb->mnt_gid;
141 else
142 inode->i_gid = le64_to_cpu(info->Gid);
143
144 inode->i_nlink = le64_to_cpu(info->Nlinks);
145
146 spin_lock(&inode->i_lock);
147 if (is_size_safe_to_change(cifsInfo, end_of_file)) {
148 /*
149 * We can not safely change the file size here if the client
150 * is writing to it due to potential races.
151 */
152 i_size_write(inode, end_of_file);
153
154 /*
155 * i_blocks is not related to (i_size / i_blksize),
156 * but instead 512 byte (2**9) size is required for
157 * calculating num blocks.
158 */
159 inode->i_blocks = (512 - 1 + num_of_bytes) >> 9;
160 }
161 spin_unlock(&inode->i_lock);
162}
163
Igor Mammedov79626702008-03-09 03:44:18 +0000164static const unsigned char *cifs_get_search_path(struct cifsTconInfo *pTcon,
165 const char *search_path)
166{
167 int tree_len;
168 int path_len;
169 char *tmp_path;
170
171 if (!(pTcon->Flags & SMB_SHARE_IS_IN_DFS))
172 return search_path;
173
174 /* use full path name for working with DFS */
175 tree_len = strnlen(pTcon->treeName, MAX_TREE_SIZE + 1);
176 path_len = strnlen(search_path, MAX_PATHCONF);
177
178 tmp_path = kmalloc(tree_len+path_len+1, GFP_KERNEL);
179 if (tmp_path == NULL)
180 return search_path;
181
182 strncpy(tmp_path, pTcon->treeName, tree_len);
183 strncpy(tmp_path+tree_len, search_path, path_len);
184 tmp_path[tree_len+path_len] = 0;
185 return tmp_path;
186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188int cifs_get_inode_info_unix(struct inode **pinode,
189 const unsigned char *search_path, struct super_block *sb, int xid)
190{
191 int rc = 0;
192 FILE_UNIX_BASIC_INFO findData;
193 struct cifsTconInfo *pTcon;
194 struct inode *inode;
195 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Igor Mammedov79626702008-03-09 03:44:18 +0000196 const unsigned char *full_path;
197 bool is_dfs_referral = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 pTcon = cifs_sb->tcon;
Steve French26a21b92006-05-31 18:05:34 +0000200 cFYI(1, ("Getting info on %s", search_path));
Igor Mammedov79626702008-03-09 03:44:18 +0000201
202 full_path = cifs_get_search_path(pTcon, search_path);
203
204try_again_CIFSSMBUnixQPathInfo:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 /* could have done a find first instead but this returns more info */
Igor Mammedov79626702008-03-09 03:44:18 +0000206 rc = CIFSSMBUnixQPathInfo(xid, pTcon, full_path, &findData,
Steve French737b7582005-04-28 22:41:06 -0700207 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
208 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209/* dump_mem("\nUnixQPathInfo return data", &findData,
210 sizeof(findData)); */
211 if (rc) {
Igor Mammedov79626702008-03-09 03:44:18 +0000212 if (rc == -EREMOTE && !is_dfs_referral) {
213 is_dfs_referral = true;
Steve French04b6e6e2008-03-22 22:57:44 +0000214 if (full_path != search_path) {
215 kfree(full_path);
216 full_path = search_path;
217 }
Igor Mammedov79626702008-03-09 03:44:18 +0000218 goto try_again_CIFSSMBUnixQPathInfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
Igor Mammedov79626702008-03-09 03:44:18 +0000220 goto cgiiu_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 } else {
222 struct cifsInodeInfo *cifsInfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 __u64 num_of_bytes = le64_to_cpu(findData.NumOfBytes);
224 __u64 end_of_file = le64_to_cpu(findData.EndOfFile);
225
226 /* get new inode */
227 if (*pinode == NULL) {
228 *pinode = new_inode(sb);
Igor Mammedov79626702008-03-09 03:44:18 +0000229 if (*pinode == NULL) {
230 rc = -ENOMEM;
231 goto cgiiu_exit;
232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /* Is an i_ino of zero legal? */
234 /* Are there sanity checks we can use to ensure that
235 the server is really filling in that field? */
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700236 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 (*pinode)->i_ino =
238 (unsigned long)findData.UniqueId;
239 } /* note ino incremented to unique num in new_inode */
Steve French4523cc32007-04-30 20:13:06 +0000240 if (sb->s_flags & MS_NOATIME)
Steve French1b2b2122007-02-17 04:30:54 +0000241 (*pinode)->i_flags |= S_NOATIME | S_NOCMTIME;
Steve French50c2f752007-07-13 00:33:32 +0000242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 insert_inode_hash(*pinode);
244 }
245
246 inode = *pinode;
247 cifsInfo = CIFS_I(inode);
248
Steve French26a21b92006-05-31 18:05:34 +0000249 cFYI(1, ("Old time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 cifsInfo->time = jiffies;
Steve French26a21b92006-05-31 18:05:34 +0000251 cFYI(1, ("New time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 /* this is ok to set on every inode revalidate */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000253 atomic_set(&cifsInfo->inUse, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Christoph Hellwig75f12982008-02-25 20:25:21 +0000255 cifs_unix_info_to_inode(inode, &findData, 0);
Steve French50c2f752007-07-13 00:33:32 +0000256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 if (num_of_bytes < end_of_file)
Steve French8b94bcb2005-11-11 11:41:00 -0800259 cFYI(1, ("allocation size less than end of file"));
Andrew Morton5515eff2006-03-26 01:37:53 -0800260 cFYI(1, ("Size %ld and blocks %llu",
261 (unsigned long) inode->i_size,
262 (unsigned long long)inode->i_blocks));
Steve French8b94bcb2005-11-11 11:41:00 -0800263
Igor Mammedov79626702008-03-09 03:44:18 +0000264 cifs_set_ops(inode, is_dfs_referral);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Igor Mammedov79626702008-03-09 03:44:18 +0000266cgiiu_exit:
267 if (full_path != search_path)
268 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return rc;
270}
271
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000272static int decode_sfu_inode(struct inode *inode, __u64 size,
Steve Frenchd6e2f2a2005-11-15 16:43:39 -0800273 const unsigned char *path,
274 struct cifs_sb_info *cifs_sb, int xid)
275{
276 int rc;
277 int oplock = FALSE;
278 __u16 netfid;
279 struct cifsTconInfo *pTcon = cifs_sb->tcon;
Steve French86c96b42005-11-18 20:25:31 -0800280 char buf[24];
Steve Frenchd6e2f2a2005-11-15 16:43:39 -0800281 unsigned int bytes_read;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000282 char *pbuf;
Steve Frenchd6e2f2a2005-11-15 16:43:39 -0800283
284 pbuf = buf;
285
Steve French4523cc32007-04-30 20:13:06 +0000286 if (size == 0) {
Steve Frenchd6e2f2a2005-11-15 16:43:39 -0800287 inode->i_mode |= S_IFIFO;
288 return 0;
289 } else if (size < 8) {
290 return -EINVAL; /* EOPNOTSUPP? */
291 }
Steve French50c2f752007-07-13 00:33:32 +0000292
Steve Frenchd6e2f2a2005-11-15 16:43:39 -0800293 rc = CIFSSMBOpen(xid, pTcon, path, FILE_OPEN, GENERIC_READ,
294 CREATE_NOT_DIR, &netfid, &oplock, NULL,
295 cifs_sb->local_nls,
296 cifs_sb->mnt_cifs_flags &
297 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000298 if (rc == 0) {
Steve Frenchec637e32005-12-12 20:53:18 -0800299 int buf_type = CIFS_NO_BUFFER;
Steve Frenchd6e2f2a2005-11-15 16:43:39 -0800300 /* Read header */
301 rc = CIFSSMBRead(xid, pTcon,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000302 netfid,
Steve French86c96b42005-11-18 20:25:31 -0800303 24 /* length */, 0 /* offset */,
Steve Frenchec637e32005-12-12 20:53:18 -0800304 &bytes_read, &pbuf, &buf_type);
Steve French4523cc32007-04-30 20:13:06 +0000305 if ((rc == 0) && (bytes_read >= 8)) {
306 if (memcmp("IntxBLK", pbuf, 8) == 0) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000307 cFYI(1, ("Block device"));
Steve French3020a1f2005-11-18 11:31:10 -0800308 inode->i_mode |= S_IFBLK;
Steve French4523cc32007-04-30 20:13:06 +0000309 if (bytes_read == 24) {
Steve French86c96b42005-11-18 20:25:31 -0800310 /* we have enough to decode dev num */
311 __u64 mjr; /* major */
312 __u64 mnr; /* minor */
313 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
314 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
315 inode->i_rdev = MKDEV(mjr, mnr);
316 }
Steve French4523cc32007-04-30 20:13:06 +0000317 } else if (memcmp("IntxCHR", pbuf, 8) == 0) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000318 cFYI(1, ("Char device"));
Steve French3020a1f2005-11-18 11:31:10 -0800319 inode->i_mode |= S_IFCHR;
Steve French4523cc32007-04-30 20:13:06 +0000320 if (bytes_read == 24) {
Steve French86c96b42005-11-18 20:25:31 -0800321 /* we have enough to decode dev num */
322 __u64 mjr; /* major */
323 __u64 mnr; /* minor */
324 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
325 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
326 inode->i_rdev = MKDEV(mjr, mnr);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000327 }
Steve French4523cc32007-04-30 20:13:06 +0000328 } else if (memcmp("IntxLNK", pbuf, 7) == 0) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000329 cFYI(1, ("Symlink"));
Steve French3020a1f2005-11-18 11:31:10 -0800330 inode->i_mode |= S_IFLNK;
Steve French86c96b42005-11-18 20:25:31 -0800331 } else {
332 inode->i_mode |= S_IFREG; /* file? */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000333 rc = -EOPNOTSUPP;
Steve French86c96b42005-11-18 20:25:31 -0800334 }
Steve French3020a1f2005-11-18 11:31:10 -0800335 } else {
336 inode->i_mode |= S_IFREG; /* then it is a file */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000337 rc = -EOPNOTSUPP; /* or some unknown SFU type */
338 }
Steve Frenchd6e2f2a2005-11-15 16:43:39 -0800339 CIFSSMBClose(xid, pTcon, netfid);
Steve Frenchd6e2f2a2005-11-15 16:43:39 -0800340 }
341 return rc;
Steve Frenchd6e2f2a2005-11-15 16:43:39 -0800342}
343
Steve French9e294f12005-11-17 16:59:21 -0800344#define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */
345
Steve French953f8682007-10-31 04:54:42 +0000346static int get_sfu_mode(struct inode *inode,
Steve French9e294f12005-11-17 16:59:21 -0800347 const unsigned char *path,
348 struct cifs_sb_info *cifs_sb, int xid)
349{
Steve French3020a1f2005-11-18 11:31:10 -0800350#ifdef CONFIG_CIFS_XATTR
Steve French9e294f12005-11-17 16:59:21 -0800351 ssize_t rc;
352 char ea_value[4];
353 __u32 mode;
354
355 rc = CIFSSMBQueryEA(xid, cifs_sb->tcon, path, "SETFILEBITS",
356 ea_value, 4 /* size of buf */, cifs_sb->local_nls,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000357 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French4523cc32007-04-30 20:13:06 +0000358 if (rc < 0)
Steve French9e294f12005-11-17 16:59:21 -0800359 return (int)rc;
360 else if (rc > 3) {
361 mode = le32_to_cpu(*((__le32 *)ea_value));
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000362 inode->i_mode &= ~SFBITS_MASK;
363 cFYI(1, ("special bits 0%o org mode 0%o", mode, inode->i_mode));
Steve French9e294f12005-11-17 16:59:21 -0800364 inode->i_mode = (mode & SFBITS_MASK) | inode->i_mode;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000365 cFYI(1, ("special mode bits 0%o", mode));
Steve French9e294f12005-11-17 16:59:21 -0800366 return 0;
367 } else {
368 return 0;
369 }
Steve French3020a1f2005-11-18 11:31:10 -0800370#else
371 return -EOPNOTSUPP;
372#endif
Steve French9e294f12005-11-17 16:59:21 -0800373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375int cifs_get_inode_info(struct inode **pinode,
376 const unsigned char *search_path, FILE_ALL_INFO *pfindData,
Steve French8b1327f2008-03-14 22:37:16 +0000377 struct super_block *sb, int xid, const __u16 *pfid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
379 int rc = 0;
380 struct cifsTconInfo *pTcon;
381 struct inode *inode;
382 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Igor Mammedov79626702008-03-09 03:44:18 +0000383 const unsigned char *full_path = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 char *buf = NULL;
Steve French8d6286f2006-11-16 22:48:25 +0000385 int adjustTZ = FALSE;
Igor Mammedov79626702008-03-09 03:44:18 +0000386 bool is_dfs_referral = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 pTcon = cifs_sb->tcon;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000389 cFYI(1, ("Getting info on %s", search_path));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700391 if ((pfindData == NULL) && (*pinode != NULL)) {
392 if (CIFS_I(*pinode)->clientCanCacheRead) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000393 cFYI(1, ("No need to revalidate cached inode sizes"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return rc;
395 }
396 }
397
398 /* if file info not passed in then get it from server */
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700399 if (pfindData == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700401 if (buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return -ENOMEM;
403 pfindData = (FILE_ALL_INFO *)buf;
Igor Mammedov79626702008-03-09 03:44:18 +0000404
405 full_path = cifs_get_search_path(pTcon, search_path);
406
407try_again_CIFSSMBQPathInfo:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 /* could do find first instead but this returns more info */
Igor Mammedov79626702008-03-09 03:44:18 +0000409 rc = CIFSSMBQPathInfo(xid, pTcon, full_path, pfindData,
Steve Frenchacf1a1b2006-10-12 03:28:28 +0000410 0 /* not legacy */,
Steve French6b8edfe2005-08-23 20:26:03 -0700411 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700412 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French6b8edfe2005-08-23 20:26:03 -0700413 /* BB optimize code so we do not make the above call
414 when server claims no NT SMB support and the above call
415 failed at least once - set flag in tcon or mount */
Steve French4523cc32007-04-30 20:13:06 +0000416 if ((rc == -EOPNOTSUPP) || (rc == -EINVAL)) {
Igor Mammedov79626702008-03-09 03:44:18 +0000417 rc = SMBQueryInformation(xid, pTcon, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000418 pfindData, cifs_sb->local_nls,
Steve French6b8edfe2005-08-23 20:26:03 -0700419 cifs_sb->mnt_cifs_flags &
420 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French8d6286f2006-11-16 22:48:25 +0000421 adjustTZ = TRUE;
Steve French6b8edfe2005-08-23 20:26:03 -0700422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
424 /* dump_mem("\nQPathInfo return data",&findData, sizeof(findData)); */
425 if (rc) {
Igor Mammedov79626702008-03-09 03:44:18 +0000426 if (rc == -EREMOTE && !is_dfs_referral) {
427 is_dfs_referral = true;
Steve French04b6e6e2008-03-22 22:57:44 +0000428 if (full_path != search_path) {
429 kfree(full_path);
430 full_path = search_path;
431 }
Igor Mammedov79626702008-03-09 03:44:18 +0000432 goto try_again_CIFSSMBQPathInfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
Igor Mammedov79626702008-03-09 03:44:18 +0000434 goto cgii_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 } else {
436 struct cifsInodeInfo *cifsInfo;
437 __u32 attr = le32_to_cpu(pfindData->Attributes);
438
439 /* get new inode */
440 if (*pinode == NULL) {
441 *pinode = new_inode(sb);
Steve Frenchacf1a1b2006-10-12 03:28:28 +0000442 if (*pinode == NULL) {
Igor Mammedov79626702008-03-09 03:44:18 +0000443 rc = -ENOMEM;
444 goto cgii_exit;
Steve Frenchacf1a1b2006-10-12 03:28:28 +0000445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 /* Is an i_ino of zero legal? Can we use that to check
447 if the server supports returning inode numbers? Are
448 there other sanity checks we can use to ensure that
449 the server is really filling in that field? */
450
451 /* We can not use the IndexNumber field by default from
452 Windows or Samba (in ALL_INFO buf) but we can request
453 it explicitly. It may not be unique presumably if
454 the server has multiple devices mounted under one
455 share */
456
457 /* There may be higher info levels that work but are
458 there Windows server or network appliances for which
459 IndexNumber field is not guaranteed unique? */
460
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000461 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 int rc1 = 0;
463 __u64 inode_num;
464
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000465 rc1 = CIFSGetSrvInodeNumber(xid, pTcon,
466 search_path, &inode_num,
Steve French737b7582005-04-28 22:41:06 -0700467 cifs_sb->local_nls,
468 cifs_sb->mnt_cifs_flags &
469 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700470 if (rc1) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000471 cFYI(1, ("GetSrvInodeNum rc %d", rc1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 /* BB EOPNOSUPP disable SERVER_INUM? */
473 } else /* do we need cast or hash to ino? */
474 (*pinode)->i_ino = inode_num;
475 } /* else ino incremented to unique num in new_inode*/
Steve French4523cc32007-04-30 20:13:06 +0000476 if (sb->s_flags & MS_NOATIME)
Steve French1b2b2122007-02-17 04:30:54 +0000477 (*pinode)->i_flags |= S_NOATIME | S_NOCMTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 insert_inode_hash(*pinode);
479 }
480 inode = *pinode;
481 cifsInfo = CIFS_I(inode);
482 cifsInfo->cifsAttrs = attr;
Steve French26a21b92006-05-31 18:05:34 +0000483 cFYI(1, ("Old time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 cifsInfo->time = jiffies;
Steve French26a21b92006-05-31 18:05:34 +0000485 cFYI(1, ("New time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 /* blksize needs to be multiple of two. So safer to default to
488 blksize and blkbits set in superblock so 2**blkbits and blksize
489 will match rather than setting to:
490 (pTcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE) & 0xFFFFFE00;*/
491
Steve French26a21b92006-05-31 18:05:34 +0000492 /* Linux can not store file creation time so ignore it */
Steve French4523cc32007-04-30 20:13:06 +0000493 if (pfindData->LastAccessTime)
Steve French1bd5bbc2006-09-28 03:35:57 +0000494 inode->i_atime = cifs_NTtimeToUnix
495 (le64_to_cpu(pfindData->LastAccessTime));
496 else /* do not need to use current_fs_time - time not stored */
497 inode->i_atime = CURRENT_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 inode->i_mtime =
499 cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastWriteTime));
500 inode->i_ctime =
501 cifs_NTtimeToUnix(le64_to_cpu(pfindData->ChangeTime));
Steve French26a21b92006-05-31 18:05:34 +0000502 cFYI(0, ("Attributes came in as 0x%x", attr));
Steve French4523cc32007-04-30 20:13:06 +0000503 if (adjustTZ && (pTcon->ses) && (pTcon->ses->server)) {
Steve French8d6286f2006-11-16 22:48:25 +0000504 inode->i_ctime.tv_sec += pTcon->ses->server->timeAdj;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000505 inode->i_mtime.tv_sec += pTcon->ses->server->timeAdj;
Steve French8d6286f2006-11-16 22:48:25 +0000506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 /* set default mode. will override for dirs below */
509 if (atomic_read(&cifsInfo->inUse) == 0)
510 /* new inode, can safely set these fields */
511 inode->i_mode = cifs_sb->mnt_file_mode;
Steve French3020a1f2005-11-18 11:31:10 -0800512 else /* since we set the inode type below we need to mask off
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000513 to avoid strange results if type changes and both
514 get orred in */
515 inode->i_mode &= ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516/* if (attr & ATTR_REPARSE) */
517 /* We no longer handle these as symlinks because we could not
518 follow them due to the absolute path with drive letter */
519 if (attr & ATTR_DIRECTORY) {
520 /* override default perms since we do not do byte range locking
521 on dirs */
522 inode->i_mode = cifs_sb->mnt_dir_mode;
523 inode->i_mode |= S_IFDIR;
Steve Frencheda3c0292005-07-21 15:20:28 -0700524 } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) &&
525 (cifsInfo->cifsAttrs & ATTR_SYSTEM) &&
526 /* No need to le64 convert size of zero */
527 (pfindData->EndOfFile == 0)) {
528 inode->i_mode = cifs_sb->mnt_file_mode;
529 inode->i_mode |= S_IFIFO;
Steve Frenchd6e2f2a2005-11-15 16:43:39 -0800530/* BB Finish for SFU style symlinks and devices */
531 } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) &&
532 (cifsInfo->cifsAttrs & ATTR_SYSTEM)) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000533 if (decode_sfu_inode(inode,
Steve Frenchd6e2f2a2005-11-15 16:43:39 -0800534 le64_to_cpu(pfindData->EndOfFile),
535 search_path,
Steve Frenchad7a2922008-02-07 23:25:02 +0000536 cifs_sb, xid))
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000537 cFYI(1, ("Unrecognized sfu inode type"));
Steve Frenchad7a2922008-02-07 23:25:02 +0000538
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000539 cFYI(1, ("sfu mode 0%o", inode->i_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 } else {
541 inode->i_mode |= S_IFREG;
542 /* treat the dos attribute of read-only as read-only
543 mode e.g. 555 */
544 if (cifsInfo->cifsAttrs & ATTR_READONLY)
545 inode->i_mode &= ~(S_IWUGO);
Alan Tysonf5c1e2e2007-03-10 06:05:14 +0000546 else if ((inode->i_mode & S_IWUGO) == 0)
547 /* the ATTR_READONLY flag may have been */
548 /* changed on server -- set any w bits */
549 /* allowed by mnt_file_mode */
550 inode->i_mode |= (S_IWUGO &
551 cifs_sb->mnt_file_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 /* BB add code here -
553 validate if device or weird share or device type? */
554 }
Steve French50c2f752007-07-13 00:33:32 +0000555
Steve French3677db12007-02-26 16:46:11 +0000556 spin_lock(&inode->i_lock);
Steve Frenchf6d09982008-01-08 23:18:22 +0000557 if (is_size_safe_to_change(cifsInfo,
558 le64_to_cpu(pfindData->EndOfFile))) {
Steve French7ba52632007-02-08 18:14:13 +0000559 /* can not safely shrink the file size here if the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 client is writing to it due to potential races */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000561 i_size_write(inode, le64_to_cpu(pfindData->EndOfFile));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 /* 512 bytes (2**9) is the fake blocksize that must be
564 used for this calculation */
565 inode->i_blocks = (512 - 1 + le64_to_cpu(
566 pfindData->AllocationSize)) >> 9;
567 }
Steve French3677db12007-02-26 16:46:11 +0000568 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 inode->i_nlink = le32_to_cpu(pfindData->NumberOfLinks);
571
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000572 /* BB fill in uid and gid here? with help from winbind?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 or retrieve from NTFS stream extended attribute */
Steve French4879b442007-10-19 21:57:39 +0000574#ifdef CONFIG_CIFS_EXPERIMENTAL
Steve French953f8682007-10-31 04:54:42 +0000575 /* fill in 0777 bits from ACL */
Steve French4879b442007-10-19 21:57:39 +0000576 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
577 cFYI(1, ("Getting mode bits from ACL"));
Steve French8b1327f2008-03-14 22:37:16 +0000578 acl_to_uid_mode(inode, search_path, pfid);
Steve French4879b442007-10-19 21:57:39 +0000579 }
580#endif
Steve French4523cc32007-04-30 20:13:06 +0000581 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
Steve French953f8682007-10-31 04:54:42 +0000582 /* fill in remaining high mode bits e.g. SUID, VTX */
583 get_sfu_mode(inode, search_path, cifs_sb, xid);
Steve French9e294f12005-11-17 16:59:21 -0800584 } else if (atomic_read(&cifsInfo->inUse) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 inode->i_uid = cifs_sb->mnt_uid;
586 inode->i_gid = cifs_sb->mnt_gid;
587 /* set so we do not keep refreshing these fields with
588 bad data after user has changed them in memory */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000589 atomic_set(&cifsInfo->inUse, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
591
Igor Mammedov79626702008-03-09 03:44:18 +0000592 cifs_set_ops(inode, is_dfs_referral);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
Igor Mammedov79626702008-03-09 03:44:18 +0000594cgii_exit:
595 if (full_path != search_path)
596 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 kfree(buf);
598 return rc;
599}
600
Steve French7f8ed422007-09-28 22:28:55 +0000601static const struct inode_operations cifs_ipc_inode_ops = {
602 .lookup = cifs_lookup,
603};
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605/* gets root inode */
David Howellsce634ab2008-02-07 00:15:33 -0800606struct inode *cifs_iget(struct super_block *sb, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
David Howellsce634ab2008-02-07 00:15:33 -0800608 int xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 struct cifs_sb_info *cifs_sb;
David Howellsce634ab2008-02-07 00:15:33 -0800610 struct inode *inode;
611 long rc;
612
613 inode = iget_locked(sb, ino);
614 if (!inode)
615 return ERR_PTR(-ENOMEM);
616 if (!(inode->i_state & I_NEW))
617 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 cifs_sb = CIFS_SB(inode->i_sb);
620 xid = GetXid();
Steve Frenchc18c8422007-07-18 23:21:09 +0000621
622 if (cifs_sb->tcon->unix_ext)
Steve French7f8ed422007-09-28 22:28:55 +0000623 rc = cifs_get_inode_info_unix(&inode, "", inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 else
Steve French8b1327f2008-03-14 22:37:16 +0000625 rc = cifs_get_inode_info(&inode, "", NULL, inode->i_sb, xid,
626 NULL);
Steve French7f8ed422007-09-28 22:28:55 +0000627 if (rc && cifs_sb->tcon->ipc) {
628 cFYI(1, ("ipc connection - fake read inode"));
629 inode->i_mode |= S_IFDIR;
630 inode->i_nlink = 2;
631 inode->i_op = &cifs_ipc_inode_ops;
632 inode->i_fop = &simple_dir_operations;
633 inode->i_uid = cifs_sb->mnt_uid;
634 inode->i_gid = cifs_sb->mnt_gid;
David Howellsce634ab2008-02-07 00:15:33 -0800635 _FreeXid(xid);
636 iget_failed(inode);
637 return ERR_PTR(rc);
Steve French7f8ed422007-09-28 22:28:55 +0000638 }
639
David Howellsce634ab2008-02-07 00:15:33 -0800640 unlock_new_inode(inode);
641
642 /* can not call macro FreeXid here since in a void func
643 * TODO: This is no longer true
644 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 _FreeXid(xid);
David Howellsce634ab2008-02-07 00:15:33 -0800646 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
649int cifs_unlink(struct inode *inode, struct dentry *direntry)
650{
651 int rc = 0;
652 int xid;
653 struct cifs_sb_info *cifs_sb;
654 struct cifsTconInfo *pTcon;
655 char *full_path = NULL;
656 struct cifsInodeInfo *cifsInode;
657 FILE_BASIC_INFO *pinfo_buf;
658
Steve French06bcfed2006-03-31 22:43:50 +0000659 cFYI(1, ("cifs_unlink, inode = 0x%p", inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 xid = GetXid();
662
Steve French4523cc32007-04-30 20:13:06 +0000663 if (inode)
Steve French6910ab32006-03-31 03:37:08 +0000664 cifs_sb = CIFS_SB(inode->i_sb);
665 else
Steve French06bcfed2006-03-31 22:43:50 +0000666 cifs_sb = CIFS_SB(direntry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 pTcon = cifs_sb->tcon;
668
669 /* Unlink can be called from rename so we can not grab the sem here
670 since we deadlock otherwise */
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800671/* mutex_lock(&direntry->d_sb->s_vfs_rename_mutex);*/
Steve French7f573562005-08-30 11:32:14 -0700672 full_path = build_path_from_dentry(direntry);
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800673/* mutex_unlock(&direntry->d_sb->s_vfs_rename_mutex);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (full_path == NULL) {
675 FreeXid(xid);
676 return -ENOMEM;
677 }
Steve French2d785a52007-07-15 01:48:57 +0000678
679 if ((pTcon->ses->capabilities & CAP_UNIX) &&
680 (CIFS_UNIX_POSIX_PATH_OPS_CAP &
681 le64_to_cpu(pTcon->fsUnixInfo.Capability))) {
682 rc = CIFSPOSIXDelFile(xid, pTcon, full_path,
683 SMB_POSIX_UNLINK_FILE_TARGET, cifs_sb->local_nls,
684 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
685 cFYI(1, ("posix del rc %d", rc));
686 if ((rc == 0) || (rc == -ENOENT))
687 goto psx_del_no_retry;
688 }
689
Steve French737b7582005-04-28 22:41:06 -0700690 rc = CIFSSMBDelFile(xid, pTcon, full_path, cifs_sb->local_nls,
691 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French2d785a52007-07-15 01:48:57 +0000692psx_del_no_retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (!rc) {
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700694 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700695 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 } else if (rc == -ENOENT) {
697 d_drop(direntry);
698 } else if (rc == -ETXTBSY) {
699 int oplock = FALSE;
700 __u16 netfid;
701
702 rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN, DELETE,
703 CREATE_NOT_DIR | CREATE_DELETE_ON_CLOSE,
Steve French737b7582005-04-28 22:41:06 -0700704 &netfid, &oplock, NULL, cifs_sb->local_nls,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000705 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700706 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000707 if (rc == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 CIFSSMBRenameOpenFile(xid, pTcon, netfid, NULL,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000709 cifs_sb->local_nls,
710 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700711 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 CIFSSMBClose(xid, pTcon, netfid);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700713 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700714 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716 } else if (rc == -EACCES) {
717 /* try only if r/o attribute set in local lookup data? */
Eric Sesterhenna048d7a2006-02-21 22:33:09 +0000718 pinfo_buf = kzalloc(sizeof(FILE_BASIC_INFO), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (pinfo_buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 /* ATTRS set to normal clears r/o bit */
721 pinfo_buf->Attributes = cpu_to_le32(ATTR_NORMAL);
722 if (!(pTcon->ses->flags & CIFS_SES_NT4))
723 rc = CIFSSMBSetTimes(xid, pTcon, full_path,
724 pinfo_buf,
Steve French737b7582005-04-28 22:41:06 -0700725 cifs_sb->local_nls,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000726 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700727 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 else
729 rc = -EOPNOTSUPP;
730
731 if (rc == -EOPNOTSUPP) {
732 int oplock = FALSE;
733 __u16 netfid;
734 /* rc = CIFSSMBSetAttrLegacy(xid, pTcon,
735 full_path,
736 (__u16)ATTR_NORMAL,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000737 cifs_sb->local_nls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 For some strange reason it seems that NT4 eats the
739 old setattr call without actually setting the
740 attributes so on to the third attempted workaround
741 */
742
743 /* BB could scan to see if we already have it open
744 and pass in pid of opener to function */
745 rc = CIFSSMBOpen(xid, pTcon, full_path,
746 FILE_OPEN, SYNCHRONIZE |
747 FILE_WRITE_ATTRIBUTES, 0,
748 &netfid, &oplock, NULL,
Steve French737b7582005-04-28 22:41:06 -0700749 cifs_sb->local_nls,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000750 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700751 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000752 if (rc == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 rc = CIFSSMBSetFileTimes(xid, pTcon,
754 pinfo_buf,
755 netfid);
756 CIFSSMBClose(xid, pTcon, netfid);
757 }
758 }
759 kfree(pinfo_buf);
760 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000761 if (rc == 0) {
762 rc = CIFSSMBDelFile(xid, pTcon, full_path,
763 cifs_sb->local_nls,
764 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700765 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (!rc) {
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700767 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700768 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 } else if (rc == -ETXTBSY) {
770 int oplock = FALSE;
771 __u16 netfid;
772
773 rc = CIFSSMBOpen(xid, pTcon, full_path,
774 FILE_OPEN, DELETE,
775 CREATE_NOT_DIR |
776 CREATE_DELETE_ON_CLOSE,
777 &netfid, &oplock, NULL,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000778 cifs_sb->local_nls,
779 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700780 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000781 if (rc == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 CIFSSMBRenameOpenFile(xid, pTcon,
783 netfid, NULL,
Steve French737b7582005-04-28 22:41:06 -0700784 cifs_sb->local_nls,
785 cifs_sb->mnt_cifs_flags &
786 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 CIFSSMBClose(xid, pTcon, netfid);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700788 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700789 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791 /* BB if rc = -ETXTBUSY goto the rename logic BB */
792 }
793 }
794 }
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700795 if (direntry->d_inode) {
Steve Frenchb2aeb9d2005-05-17 13:16:18 -0500796 cifsInode = CIFS_I(direntry->d_inode);
797 cifsInode->time = 0; /* will force revalidate to get info
798 when needed */
799 direntry->d_inode->i_ctime = current_fs_time(inode->i_sb);
800 }
Steve French4523cc32007-04-30 20:13:06 +0000801 if (inode) {
Steve French06bcfed2006-03-31 22:43:50 +0000802 inode->i_ctime = inode->i_mtime = current_fs_time(inode->i_sb);
803 cifsInode = CIFS_I(inode);
804 cifsInode->time = 0; /* force revalidate of dir as well */
805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 kfree(full_path);
808 FreeXid(xid);
809 return rc;
810}
811
Steve French2dd29d32007-04-23 22:07:35 +0000812static void posix_fill_in_inode(struct inode *tmp_inode,
Steve French0b442d22008-02-26 03:44:02 +0000813 FILE_UNIX_BASIC_INFO *pData, int isNewInode)
Steve French2dd29d32007-04-23 22:07:35 +0000814{
Christoph Hellwig75f12982008-02-25 20:25:21 +0000815 struct cifsInodeInfo *cifsInfo = CIFS_I(tmp_inode);
Steve French2dd29d32007-04-23 22:07:35 +0000816 loff_t local_size;
817 struct timespec local_mtime;
818
Steve French2dd29d32007-04-23 22:07:35 +0000819 cifsInfo->time = jiffies;
820 atomic_inc(&cifsInfo->inUse);
821
822 /* save mtime and size */
823 local_mtime = tmp_inode->i_mtime;
824 local_size = tmp_inode->i_size;
825
Christoph Hellwig75f12982008-02-25 20:25:21 +0000826 cifs_unix_info_to_inode(tmp_inode, pData, 1);
Igor Mammedov79626702008-03-09 03:44:18 +0000827 cifs_set_ops(tmp_inode, false);
Steve French2dd29d32007-04-23 22:07:35 +0000828
Christoph Hellwig75f12982008-02-25 20:25:21 +0000829 if (!S_ISREG(tmp_inode->i_mode))
830 return;
831
832 /*
833 * No sense invalidating pages for new inode
834 * since we we have not started caching
835 * readahead file data yet.
836 */
837 if (isNewInode)
838 return;
839
840 if (timespec_equal(&tmp_inode->i_mtime, &local_mtime) &&
841 (local_size == tmp_inode->i_size)) {
842 cFYI(1, ("inode exists but unchanged"));
Steve French2dd29d32007-04-23 22:07:35 +0000843 } else {
Christoph Hellwig75f12982008-02-25 20:25:21 +0000844 /* file may have changed on server */
845 cFYI(1, ("invalidate inode, readdir detected change"));
846 invalidate_remote_inode(tmp_inode);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000847 }
Steve French2dd29d32007-04-23 22:07:35 +0000848}
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850int cifs_mkdir(struct inode *inode, struct dentry *direntry, int mode)
851{
852 int rc = 0;
853 int xid;
854 struct cifs_sb_info *cifs_sb;
855 struct cifsTconInfo *pTcon;
856 char *full_path = NULL;
857 struct inode *newinode = NULL;
858
Steve French6473a552005-11-29 20:20:10 -0800859 cFYI(1, ("In cifs_mkdir, mode = 0x%x inode = 0x%p", mode, inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861 xid = GetXid();
862
863 cifs_sb = CIFS_SB(inode->i_sb);
864 pTcon = cifs_sb->tcon;
865
Steve French7f573562005-08-30 11:32:14 -0700866 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (full_path == NULL) {
868 FreeXid(xid);
869 return -ENOMEM;
870 }
Steve French50c2f752007-07-13 00:33:32 +0000871
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000872 if ((pTcon->ses->capabilities & CAP_UNIX) &&
873 (CIFS_UNIX_POSIX_PATH_OPS_CAP &
Steve French2dd29d32007-04-23 22:07:35 +0000874 le64_to_cpu(pTcon->fsUnixInfo.Capability))) {
875 u32 oplock = 0;
Steve Frenchf6d09982008-01-08 23:18:22 +0000876 FILE_UNIX_BASIC_INFO *pInfo =
Steve French2dd29d32007-04-23 22:07:35 +0000877 kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000878 if (pInfo == NULL) {
Steve French2dd29d32007-04-23 22:07:35 +0000879 rc = -ENOMEM;
880 goto mkdir_out;
881 }
Steve French50c2f752007-07-13 00:33:32 +0000882
Jeffa8cd9252007-09-13 18:38:50 +0000883 mode &= ~current->fs->umask;
Steve French2dd29d32007-04-23 22:07:35 +0000884 rc = CIFSPOSIXCreate(xid, pTcon, SMB_O_DIRECTORY | SMB_O_CREAT,
885 mode, NULL /* netfid */, pInfo, &oplock,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000886 full_path, cifs_sb->local_nls,
887 cifs_sb->mnt_cifs_flags &
Steve French2dd29d32007-04-23 22:07:35 +0000888 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchc45d7072007-09-17 02:04:21 +0000889 if (rc == -EOPNOTSUPP) {
890 kfree(pInfo);
891 goto mkdir_retry_old;
892 } else if (rc) {
Steve French2dd29d32007-04-23 22:07:35 +0000893 cFYI(1, ("posix mkdir returned 0x%x", rc));
894 d_drop(direntry);
895 } else {
Cyril Gorcunov8f2376a2007-10-14 17:58:43 +0000896 if (pInfo->Type == cpu_to_le32(-1)) {
897 /* no return info, go query for it */
Steve French5a07cdf2007-09-16 23:12:47 +0000898 kfree(pInfo);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000899 goto mkdir_get_info;
Steve French5a07cdf2007-09-16 23:12:47 +0000900 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000901/*BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if need
902 to set uid/gid */
Steve French2dd29d32007-04-23 22:07:35 +0000903 inc_nlink(inode);
904 if (pTcon->nocase)
905 direntry->d_op = &cifs_ci_dentry_ops;
906 else
907 direntry->d_op = &cifs_dentry_ops;
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000908
909 newinode = new_inode(inode->i_sb);
Steve French5a07cdf2007-09-16 23:12:47 +0000910 if (newinode == NULL) {
911 kfree(pInfo);
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000912 goto mkdir_get_info;
Steve French5a07cdf2007-09-16 23:12:47 +0000913 }
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000914 /* Is an i_ino of zero legal? */
915 /* Are there sanity checks we can use to ensure that
916 the server is really filling in that field? */
917 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
918 newinode->i_ino =
919 (unsigned long)pInfo->UniqueId;
920 } /* note ino incremented to unique num in new_inode */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000921 if (inode->i_sb->s_flags & MS_NOATIME)
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000922 newinode->i_flags |= S_NOATIME | S_NOCMTIME;
923 newinode->i_nlink = 2;
924
925 insert_inode_hash(newinode);
Steve French2dd29d32007-04-23 22:07:35 +0000926 d_instantiate(direntry, newinode);
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000927
928 /* we already checked in POSIXCreate whether
929 frame was long enough */
930 posix_fill_in_inode(direntry->d_inode,
Steve French0b442d22008-02-26 03:44:02 +0000931 pInfo, 1 /* NewInode */);
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000932#ifdef CONFIG_CIFS_DEBUG2
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000933 cFYI(1, ("instantiated dentry %p %s to inode %p",
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000934 direntry, direntry->d_name.name, newinode));
935
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000936 if (newinode->i_nlink != 2)
937 cFYI(1, ("unexpected number of links %d",
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000938 newinode->i_nlink));
939#endif
Steve French2dd29d32007-04-23 22:07:35 +0000940 }
941 kfree(pInfo);
942 goto mkdir_out;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000943 }
Steve Frenchc45d7072007-09-17 02:04:21 +0000944mkdir_retry_old:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 /* BB add setting the equivalent of mode via CreateX w/ACLs */
Steve French737b7582005-04-28 22:41:06 -0700946 rc = CIFSSMBMkDir(xid, pTcon, full_path, cifs_sb->local_nls,
947 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 if (rc) {
Steve French26a21b92006-05-31 18:05:34 +0000949 cFYI(1, ("cifs_mkdir returned 0x%x", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 d_drop(direntry);
951 } else {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000952mkdir_get_info:
Dave Hansend8c76e62006-09-30 23:29:04 -0700953 inc_nlink(inode);
Steve Frenchc18c8422007-07-18 23:21:09 +0000954 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000956 inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 else
958 rc = cifs_get_inode_info(&newinode, full_path, NULL,
Steve French8b1327f2008-03-14 22:37:16 +0000959 inode->i_sb, xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Steve Frenchb92327f2005-08-22 20:09:43 -0700961 if (pTcon->nocase)
962 direntry->d_op = &cifs_ci_dentry_ops;
963 else
964 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 d_instantiate(direntry, newinode);
Steve French2dd29d32007-04-23 22:07:35 +0000966 /* setting nlink not necessary except in cases where we
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000967 * failed to get it from the server or was set bogus */
Steve French2dd29d32007-04-23 22:07:35 +0000968 if ((direntry->d_inode) && (direntry->d_inode->i_nlink < 2))
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000969 direntry->d_inode->i_nlink = 2;
Steve Frenchc18c8422007-07-18 23:21:09 +0000970 if (pTcon->unix_ext) {
Steve French3ce53fc2007-06-08 14:55:14 +0000971 mode &= ~current->fs->umask;
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700972 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 CIFSSMBUnixSetPerms(xid, pTcon, full_path,
974 mode,
Steve French83451872005-12-01 17:12:59 -0800975 (__u64)current->fsuid,
976 (__u64)current->fsgid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 0 /* dev_t */,
Steve French737b7582005-04-28 22:41:06 -0700978 cifs_sb->local_nls,
979 cifs_sb->mnt_cifs_flags &
980 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 } else {
982 CIFSSMBUnixSetPerms(xid, pTcon, full_path,
983 mode, (__u64)-1,
984 (__u64)-1, 0 /* dev_t */,
Steve French737b7582005-04-28 22:41:06 -0700985 cifs_sb->local_nls,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000986 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700987 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
Steve French3ce53fc2007-06-08 14:55:14 +0000989 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 /* BB to be implemented via Windows secrty descriptors
991 eg CIFSSMBWinSetPerms(xid, pTcon, full_path, mode,
992 -1, -1, local_nls); */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000993 if (direntry->d_inode) {
Steve French6473a552005-11-29 20:20:10 -0800994 direntry->d_inode->i_mode = mode;
Steve French25741b32005-11-29 22:38:43 -0800995 direntry->d_inode->i_mode |= S_IFDIR;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000996 if (cifs_sb->mnt_cifs_flags &
Steve French6473a552005-11-29 20:20:10 -0800997 CIFS_MOUNT_SET_UID) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000998 direntry->d_inode->i_uid =
Steve French6473a552005-11-29 20:20:10 -0800999 current->fsuid;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001000 direntry->d_inode->i_gid =
Steve French6473a552005-11-29 20:20:10 -08001001 current->fsgid;
1002 }
1003 }
Steve French2a138ebb2005-11-29 21:22:19 -08001004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001006mkdir_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 kfree(full_path);
1008 FreeXid(xid);
1009 return rc;
1010}
1011
1012int cifs_rmdir(struct inode *inode, struct dentry *direntry)
1013{
1014 int rc = 0;
1015 int xid;
1016 struct cifs_sb_info *cifs_sb;
1017 struct cifsTconInfo *pTcon;
1018 char *full_path = NULL;
1019 struct cifsInodeInfo *cifsInode;
1020
Steve French26a21b92006-05-31 18:05:34 +00001021 cFYI(1, ("cifs_rmdir, inode = 0x%p", inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 xid = GetXid();
1024
1025 cifs_sb = CIFS_SB(inode->i_sb);
1026 pTcon = cifs_sb->tcon;
1027
Steve French7f573562005-08-30 11:32:14 -07001028 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (full_path == NULL) {
1030 FreeXid(xid);
1031 return -ENOMEM;
1032 }
1033
Steve French737b7582005-04-28 22:41:06 -07001034 rc = CIFSSMBRmDir(xid, pTcon, full_path, cifs_sb->local_nls,
1035 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 if (!rc) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001038 drop_nlink(inode);
Steve French3677db12007-02-26 16:46:11 +00001039 spin_lock(&direntry->d_inode->i_lock);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001040 i_size_write(direntry->d_inode, 0);
Dave Hansence71ec32006-09-30 23:29:06 -07001041 clear_nlink(direntry->d_inode);
Steve French3677db12007-02-26 16:46:11 +00001042 spin_unlock(&direntry->d_inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
1044
1045 cifsInode = CIFS_I(direntry->d_inode);
1046 cifsInode->time = 0; /* force revalidate to go get info when
1047 needed */
1048 direntry->d_inode->i_ctime = inode->i_ctime = inode->i_mtime =
1049 current_fs_time(inode->i_sb);
1050
1051 kfree(full_path);
1052 FreeXid(xid);
1053 return rc;
1054}
1055
1056int cifs_rename(struct inode *source_inode, struct dentry *source_direntry,
1057 struct inode *target_inode, struct dentry *target_direntry)
1058{
1059 char *fromName;
1060 char *toName;
1061 struct cifs_sb_info *cifs_sb_source;
1062 struct cifs_sb_info *cifs_sb_target;
1063 struct cifsTconInfo *pTcon;
1064 int xid;
1065 int rc = 0;
1066
1067 xid = GetXid();
1068
1069 cifs_sb_target = CIFS_SB(target_inode->i_sb);
1070 cifs_sb_source = CIFS_SB(source_inode->i_sb);
1071 pTcon = cifs_sb_source->tcon;
1072
1073 if (pTcon != cifs_sb_target->tcon) {
1074 FreeXid(xid);
1075 return -EXDEV; /* BB actually could be allowed if same server,
1076 but different share.
1077 Might eventually add support for this */
1078 }
1079
1080 /* we already have the rename sem so we do not need to grab it again
1081 here to protect the path integrity */
Steve French7f573562005-08-30 11:32:14 -07001082 fromName = build_path_from_dentry(source_direntry);
1083 toName = build_path_from_dentry(target_direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if ((fromName == NULL) || (toName == NULL)) {
1085 rc = -ENOMEM;
1086 goto cifs_rename_exit;
1087 }
1088
1089 rc = CIFSSMBRename(xid, pTcon, fromName, toName,
Steve French737b7582005-04-28 22:41:06 -07001090 cifs_sb_source->local_nls,
1091 cifs_sb_source->mnt_cifs_flags &
1092 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (rc == -EEXIST) {
1094 /* check if they are the same file because rename of hardlinked
1095 files is a noop */
1096 FILE_UNIX_BASIC_INFO *info_buf_source;
1097 FILE_UNIX_BASIC_INFO *info_buf_target;
1098
1099 info_buf_source =
1100 kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL);
1101 if (info_buf_source != NULL) {
1102 info_buf_target = info_buf_source + 1;
Steve Frenchc18c8422007-07-18 23:21:09 +00001103 if (pTcon->unix_ext)
Steve French8e87d4d2006-11-02 03:45:24 +00001104 rc = CIFSSMBUnixQPathInfo(xid, pTcon, fromName,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001105 info_buf_source,
Steve French8e87d4d2006-11-02 03:45:24 +00001106 cifs_sb_source->local_nls,
1107 cifs_sb_source->mnt_cifs_flags &
1108 CIFS_MOUNT_MAP_SPECIAL_CHR);
1109 /* else rc is still EEXIST so will fall through to
1110 unlink the target and retry rename */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (rc == 0) {
1112 rc = CIFSSMBUnixQPathInfo(xid, pTcon, toName,
1113 info_buf_target,
Steve French737b7582005-04-28 22:41:06 -07001114 cifs_sb_target->local_nls,
1115 /* remap based on source sb */
1116 cifs_sb_source->mnt_cifs_flags &
1117 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
1119 if ((rc == 0) &&
1120 (info_buf_source->UniqueId ==
1121 info_buf_target->UniqueId)) {
1122 /* do not rename since the files are hardlinked which
1123 is a noop */
1124 } else {
1125 /* we either can not tell the files are hardlinked
1126 (as with Windows servers) or files are not
1127 hardlinked so delete the target manually before
1128 renaming to follow POSIX rather than Windows
1129 semantics */
1130 cifs_unlink(target_inode, target_direntry);
1131 rc = CIFSSMBRename(xid, pTcon, fromName,
1132 toName,
Steve French737b7582005-04-28 22:41:06 -07001133 cifs_sb_source->local_nls,
1134 cifs_sb_source->mnt_cifs_flags
1135 & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
1137 kfree(info_buf_source);
1138 } /* if we can not get memory just leave rc as EEXIST */
1139 }
1140
Steve Frenchad7a2922008-02-07 23:25:02 +00001141 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 cFYI(1, ("rename rc %d", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 if ((rc == -EIO) || (rc == -EEXIST)) {
1145 int oplock = FALSE;
1146 __u16 netfid;
1147
1148 /* BB FIXME Is Generic Read correct for rename? */
1149 /* if renaming directory - we should not say CREATE_NOT_DIR,
1150 need to test renaming open directory, also GENERIC_READ
1151 might not right be right access to request */
1152 rc = CIFSSMBOpen(xid, pTcon, fromName, FILE_OPEN, GENERIC_READ,
1153 CREATE_NOT_DIR, &netfid, &oplock, NULL,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001154 cifs_sb_source->local_nls,
1155 cifs_sb_source->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -07001156 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001157 if (rc == 0) {
Steve French8e87d4d2006-11-02 03:45:24 +00001158 rc = CIFSSMBRenameOpenFile(xid, pTcon, netfid, toName,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001159 cifs_sb_source->local_nls,
Steve French737b7582005-04-28 22:41:06 -07001160 cifs_sb_source->mnt_cifs_flags &
1161 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 CIFSSMBClose(xid, pTcon, netfid);
1163 }
1164 }
1165
1166cifs_rename_exit:
1167 kfree(fromName);
1168 kfree(toName);
1169 FreeXid(xid);
1170 return rc;
1171}
1172
1173int cifs_revalidate(struct dentry *direntry)
1174{
1175 int xid;
Jeff Laytoncea21802007-11-20 23:19:03 +00001176 int rc = 0, wbrc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 char *full_path;
1178 struct cifs_sb_info *cifs_sb;
1179 struct cifsInodeInfo *cifsInode;
1180 loff_t local_size;
1181 struct timespec local_mtime;
1182 int invalidate_inode = FALSE;
1183
1184 if (direntry->d_inode == NULL)
1185 return -ENOENT;
1186
1187 cifsInode = CIFS_I(direntry->d_inode);
1188
1189 if (cifsInode == NULL)
1190 return -ENOENT;
1191
1192 /* no sense revalidating inode info on file that no one can write */
1193 if (CIFS_I(direntry->d_inode)->clientCanCacheRead)
1194 return rc;
1195
1196 xid = GetXid();
1197
1198 cifs_sb = CIFS_SB(direntry->d_sb);
1199
1200 /* can not safely grab the rename sem here if rename calls revalidate
1201 since that would deadlock */
Steve French7f573562005-08-30 11:32:14 -07001202 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (full_path == NULL) {
1204 FreeXid(xid);
1205 return -ENOMEM;
1206 }
1207 cFYI(1, ("Revalidate: %s inode 0x%p count %d dentry: 0x%p d_time %ld "
1208 "jiffies %ld", full_path, direntry->d_inode,
1209 direntry->d_inode->i_count.counter, direntry,
1210 direntry->d_time, jiffies));
1211
1212 if (cifsInode->time == 0) {
1213 /* was set to zero previously to force revalidate */
1214 } else if (time_before(jiffies, cifsInode->time + HZ) &&
1215 lookupCacheEnabled) {
1216 if ((S_ISREG(direntry->d_inode->i_mode) == 0) ||
1217 (direntry->d_inode->i_nlink == 1)) {
1218 kfree(full_path);
1219 FreeXid(xid);
1220 return rc;
1221 } else {
1222 cFYI(1, ("Have to revalidate file due to hardlinks"));
1223 }
1224 }
1225
1226 /* save mtime and size */
1227 local_mtime = direntry->d_inode->i_mtime;
1228 local_size = direntry->d_inode->i_size;
1229
Steve Frenchc18c8422007-07-18 23:21:09 +00001230 if (cifs_sb->tcon->unix_ext) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 rc = cifs_get_inode_info_unix(&direntry->d_inode, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001232 direntry->d_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if (rc) {
1234 cFYI(1, ("error on getting revalidate info %d", rc));
1235/* if (rc != -ENOENT)
1236 rc = 0; */ /* BB should we cache info on
1237 certain errors? */
1238 }
1239 } else {
1240 rc = cifs_get_inode_info(&direntry->d_inode, full_path, NULL,
Steve French8b1327f2008-03-14 22:37:16 +00001241 direntry->d_sb, xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 if (rc) {
1243 cFYI(1, ("error on getting revalidate info %d", rc));
1244/* if (rc != -ENOENT)
1245 rc = 0; */ /* BB should we cache info on
1246 certain errors? */
1247 }
1248 }
1249 /* should we remap certain errors, access denied?, to zero */
1250
1251 /* if not oplocked, we invalidate inode pages if mtime or file size
1252 had changed on server */
1253
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001254 if (timespec_equal(&local_mtime, &direntry->d_inode->i_mtime) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 (local_size == direntry->d_inode->i_size)) {
1256 cFYI(1, ("cifs_revalidate - inode unchanged"));
1257 } else {
1258 /* file may have changed on server */
1259 if (cifsInode->clientCanCacheRead) {
1260 /* no need to invalidate inode pages since we were the
1261 only ones who could have modified the file and the
1262 server copy is staler than ours */
1263 } else {
1264 invalidate_inode = TRUE;
1265 }
1266 }
1267
1268 /* can not grab this sem since kernel filesys locking documentation
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001269 indicates i_mutex may be taken by the kernel on lookup and rename
1270 which could deadlock if we grab the i_mutex here as well */
1271/* mutex_lock(&direntry->d_inode->i_mutex);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 /* need to write out dirty pages here */
1273 if (direntry->d_inode->i_mapping) {
1274 /* do we need to lock inode until after invalidate completes
1275 below? */
Jeff Laytoncea21802007-11-20 23:19:03 +00001276 wbrc = filemap_fdatawrite(direntry->d_inode->i_mapping);
1277 if (wbrc)
1278 CIFS_I(direntry->d_inode)->write_behind_rc = wbrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 }
1280 if (invalidate_inode) {
Steve French3abb9272005-11-28 08:16:13 -08001281 /* shrink_dcache not necessary now that cifs dentry ops
1282 are exported for negative dentries */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001283/* if (S_ISDIR(direntry->d_inode->i_mode))
Steve French3abb9272005-11-28 08:16:13 -08001284 shrink_dcache_parent(direntry); */
1285 if (S_ISREG(direntry->d_inode->i_mode)) {
1286 if (direntry->d_inode->i_mapping)
Jeff Laytoncea21802007-11-20 23:19:03 +00001287 wbrc = filemap_fdatawait(direntry->d_inode->i_mapping);
1288 if (wbrc)
1289 CIFS_I(direntry->d_inode)->write_behind_rc = wbrc;
Steve French3abb9272005-11-28 08:16:13 -08001290 /* may eventually have to do this for open files too */
1291 if (list_empty(&(cifsInode->openFileList))) {
1292 /* changed on server - flush read ahead pages */
1293 cFYI(1, ("Invalidating read ahead data on "
1294 "closed file"));
1295 invalidate_remote_inode(direntry->d_inode);
1296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
1298 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001299/* mutex_unlock(&direntry->d_inode->i_mutex); */
Steve French50c2f752007-07-13 00:33:32 +00001300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 kfree(full_path);
1302 FreeXid(xid);
1303 return rc;
1304}
1305
1306int cifs_getattr(struct vfsmount *mnt, struct dentry *dentry,
1307 struct kstat *stat)
1308{
1309 int err = cifs_revalidate(dentry);
Steve French5fe14c82006-11-07 19:26:33 +00001310 if (!err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 generic_fillattr(dentry->d_inode, stat);
Steve French5fe14c82006-11-07 19:26:33 +00001312 stat->blksize = CIFS_MAX_MSGSIZE;
1313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 return err;
1315}
1316
1317static int cifs_truncate_page(struct address_space *mapping, loff_t from)
1318{
1319 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1320 unsigned offset = from & (PAGE_CACHE_SIZE - 1);
1321 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 int rc = 0;
1323
1324 page = grab_cache_page(mapping, index);
1325 if (!page)
1326 return -ENOMEM;
1327
Christoph Lametereebd2aa2008-02-04 22:28:29 -08001328 zero_user_segment(page, offset, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 unlock_page(page);
1330 page_cache_release(page);
1331 return rc;
1332}
1333
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001334static int cifs_vmtruncate(struct inode *inode, loff_t offset)
Steve French3677db12007-02-26 16:46:11 +00001335{
1336 struct address_space *mapping = inode->i_mapping;
1337 unsigned long limit;
1338
Steve Frenchba6a46a2007-02-26 20:06:29 +00001339 spin_lock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001340 if (inode->i_size < offset)
1341 goto do_expand;
1342 /*
1343 * truncation of in-use swapfiles is disallowed - it would cause
1344 * subsequent swapout to scribble on the now-freed blocks.
1345 */
Steve Frenchba6a46a2007-02-26 20:06:29 +00001346 if (IS_SWAPFILE(inode)) {
1347 spin_unlock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001348 goto out_busy;
Steve Frenchba6a46a2007-02-26 20:06:29 +00001349 }
Steve French3677db12007-02-26 16:46:11 +00001350 i_size_write(inode, offset);
1351 spin_unlock(&inode->i_lock);
Steve French8064ab42007-08-22 22:12:07 +00001352 /*
1353 * unmap_mapping_range is called twice, first simply for efficiency
1354 * so that truncate_inode_pages does fewer single-page unmaps. However
1355 * after this first call, and before truncate_inode_pages finishes,
1356 * it is possible for private pages to be COWed, which remain after
1357 * truncate_inode_pages finishes, hence the second unmap_mapping_range
1358 * call must be made for correctness.
1359 */
Steve French3677db12007-02-26 16:46:11 +00001360 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
1361 truncate_inode_pages(mapping, offset);
Steve French8064ab42007-08-22 22:12:07 +00001362 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
Steve French3677db12007-02-26 16:46:11 +00001363 goto out_truncate;
1364
1365do_expand:
1366 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
Steve Frenchba6a46a2007-02-26 20:06:29 +00001367 if (limit != RLIM_INFINITY && offset > limit) {
1368 spin_unlock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001369 goto out_sig;
Steve Frenchba6a46a2007-02-26 20:06:29 +00001370 }
1371 if (offset > inode->i_sb->s_maxbytes) {
1372 spin_unlock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001373 goto out_big;
Steve Frenchba6a46a2007-02-26 20:06:29 +00001374 }
Steve French3677db12007-02-26 16:46:11 +00001375 i_size_write(inode, offset);
Steve Frenchba6a46a2007-02-26 20:06:29 +00001376 spin_unlock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001377out_truncate:
1378 if (inode->i_op && inode->i_op->truncate)
1379 inode->i_op->truncate(inode);
1380 return 0;
1381out_sig:
1382 send_sig(SIGXFSZ, current, 0);
1383out_big:
1384 return -EFBIG;
1385out_busy:
1386 return -ETXTBSY;
1387}
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389int cifs_setattr(struct dentry *direntry, struct iattr *attrs)
1390{
1391 int xid;
1392 struct cifs_sb_info *cifs_sb;
1393 struct cifsTconInfo *pTcon;
1394 char *full_path = NULL;
1395 int rc = -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 struct cifsFileInfo *open_file = NULL;
1397 FILE_BASIC_INFO time_buf;
1398 int set_time = FALSE;
Steve French066fcb02007-03-23 00:45:08 +00001399 int set_dosattr = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 __u64 mode = 0xFFFFFFFFFFFFFFFFULL;
1401 __u64 uid = 0xFFFFFFFFFFFFFFFFULL;
1402 __u64 gid = 0xFFFFFFFFFFFFFFFFULL;
1403 struct cifsInodeInfo *cifsInode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 xid = GetXid();
1406
Steve French39798772006-05-31 22:40:51 +00001407 cFYI(1, ("setattr on file %s attrs->iavalid 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 direntry->d_name.name, attrs->ia_valid));
Steve French6473a552005-11-29 20:20:10 -08001409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 cifs_sb = CIFS_SB(direntry->d_inode->i_sb);
1411 pTcon = cifs_sb->tcon;
1412
Steve French2a138ebb2005-11-29 21:22:19 -08001413 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) == 0) {
Steve French6473a552005-11-29 20:20:10 -08001414 /* check if we have permission to change attrs */
1415 rc = inode_change_ok(direntry->d_inode, attrs);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001416 if (rc < 0) {
Steve French6473a552005-11-29 20:20:10 -08001417 FreeXid(xid);
1418 return rc;
1419 } else
1420 rc = 0;
1421 }
Steve French50c2f752007-07-13 00:33:32 +00001422
Steve French7f573562005-08-30 11:32:14 -07001423 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (full_path == NULL) {
1425 FreeXid(xid);
1426 return -ENOMEM;
1427 }
1428 cifsInode = CIFS_I(direntry->d_inode);
1429
Steve French50531442008-03-14 19:21:31 +00001430 if ((attrs->ia_valid & ATTR_MTIME) || (attrs->ia_valid & ATTR_SIZE)) {
Jeff Laytoncea21802007-11-20 23:19:03 +00001431 /*
Steve French50531442008-03-14 19:21:31 +00001432 Flush data before changing file size or changing the last
1433 write time of the file on the server. If the
Jeff Laytoncea21802007-11-20 23:19:03 +00001434 flush returns error, store it to report later and continue.
1435 BB: This should be smarter. Why bother flushing pages that
1436 will be truncated anyway? Also, should we error out here if
1437 the flush returns error?
1438 */
1439 rc = filemap_write_and_wait(direntry->d_inode->i_mapping);
1440 if (rc != 0) {
1441 CIFS_I(direntry->d_inode)->write_behind_rc = rc;
1442 rc = 0;
1443 }
Steve French50531442008-03-14 19:21:31 +00001444 }
Jeff Laytoncea21802007-11-20 23:19:03 +00001445
Steve French50531442008-03-14 19:21:31 +00001446 if (attrs->ia_valid & ATTR_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 /* To avoid spurious oplock breaks from server, in the case of
1448 inodes that we already have open, avoid doing path based
1449 setting of file size if we can do it by handle.
1450 This keeps our caching token (oplock) and avoids timeouts
1451 when the local oplock break takes longer to flush
1452 writebehind data than the SMB timeout for the SetPathInfo
1453 request would allow */
Steve French39798772006-05-31 22:40:51 +00001454
Steve French6148a742005-10-05 12:23:19 -07001455 open_file = find_writable_file(cifsInode);
1456 if (open_file) {
1457 __u16 nfid = open_file->netfid;
1458 __u32 npid = open_file->pid;
1459 rc = CIFSSMBSetFileSize(xid, pTcon, attrs->ia_size,
1460 nfid, npid, FALSE);
Steve French23e7dd72005-10-20 13:44:56 -07001461 atomic_dec(&open_file->wrtPending);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001462 cFYI(1, ("SetFSize for attrs rc = %d", rc));
1463 if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
Steve French77159b42007-08-31 01:10:17 +00001464 unsigned int bytes_written;
Steve French6148a742005-10-05 12:23:19 -07001465 rc = CIFSSMBWrite(xid, pTcon,
1466 nfid, 0, attrs->ia_size,
1467 &bytes_written, NULL, NULL,
1468 1 /* 45 seconds */);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001469 cFYI(1, ("Wrt seteof rc %d", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001471 } else
Steve French6473a552005-11-29 20:20:10 -08001472 rc = -EINVAL;
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 if (rc != 0) {
1475 /* Set file size by pathname rather than by handle
1476 either because no valid, writeable file handle for
1477 it was found or because there was an error setting
1478 it by handle */
1479 rc = CIFSSMBSetEOF(xid, pTcon, full_path,
1480 attrs->ia_size, FALSE,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001481 cifs_sb->local_nls,
Steve French737b7582005-04-28 22:41:06 -07001482 cifs_sb->mnt_cifs_flags &
1483 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenche30dcf32005-09-20 20:49:16 -07001484 cFYI(1, ("SetEOF by path (setattrs) rc = %d", rc));
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001485 if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001486 __u16 netfid;
1487 int oplock = FALSE;
1488
1489 rc = SMBLegacyOpen(xid, pTcon, full_path,
1490 FILE_OPEN,
1491 SYNCHRONIZE | FILE_WRITE_ATTRIBUTES,
1492 CREATE_NOT_DIR, &netfid, &oplock,
1493 NULL, cifs_sb->local_nls,
1494 cifs_sb->mnt_cifs_flags &
1495 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001496 if (rc == 0) {
Steve French77159b42007-08-31 01:10:17 +00001497 unsigned int bytes_written;
Steve Frenche30dcf32005-09-20 20:49:16 -07001498 rc = CIFSSMBWrite(xid, pTcon,
1499 netfid, 0,
1500 attrs->ia_size,
1501 &bytes_written, NULL,
1502 NULL, 1 /* 45 sec */);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001503 cFYI(1, ("wrt seteof rc %d", rc));
Steve Frenche30dcf32005-09-20 20:49:16 -07001504 CIFSSMBClose(xid, pTcon, netfid);
1505 }
1506
1507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 }
1509
1510 /* Server is ok setting allocation size implicitly - no need
1511 to call:
1512 CIFSSMBSetEOF(xid, pTcon, full_path, attrs->ia_size, TRUE,
1513 cifs_sb->local_nls);
1514 */
1515
1516 if (rc == 0) {
Steve French3677db12007-02-26 16:46:11 +00001517 rc = cifs_vmtruncate(direntry->d_inode, attrs->ia_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 cifs_truncate_page(direntry->d_inode->i_mapping,
1519 direntry->d_inode->i_size);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001520 } else
Steve Frenche30dcf32005-09-20 20:49:16 -07001521 goto cifs_setattr_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
1523 if (attrs->ia_valid & ATTR_UID) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001524 cFYI(1, ("UID changed to %d", attrs->ia_uid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 uid = attrs->ia_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 }
1527 if (attrs->ia_valid & ATTR_GID) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001528 cFYI(1, ("GID changed to %d", attrs->ia_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 gid = attrs->ia_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 }
1531
1532 time_buf.Attributes = 0;
Jeff Laytond32c4f22007-10-18 03:05:22 -07001533
1534 /* skip mode change if it's just for clearing setuid/setgid */
1535 if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
1536 attrs->ia_valid &= ~ATTR_MODE;
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (attrs->ia_valid & ATTR_MODE) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001539 cFYI(1, ("Mode changed to 0x%x", attrs->ia_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 mode = attrs->ia_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
1542
Steve Frenchc18c8422007-07-18 23:21:09 +00001543 if ((pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 && (attrs->ia_valid & (ATTR_MODE | ATTR_GID | ATTR_UID)))
1545 rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode, uid, gid,
Steve French737b7582005-04-28 22:41:06 -07001546 0 /* dev_t */, cifs_sb->local_nls,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001547 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -07001548 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 else if (attrs->ia_valid & ATTR_MODE) {
Steve Frenchcdbce9c2005-11-19 21:04:52 -08001550 rc = 0;
Steve French97837582007-12-31 07:47:21 +00001551#ifdef CONFIG_CIFS_EXPERIMENTAL
1552 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
1553 rc = mode_to_acl(direntry->d_inode, full_path, mode);
Steve Frenchf6d09982008-01-08 23:18:22 +00001554 else if ((mode & S_IWUGO) == 0) {
Steve French97837582007-12-31 07:47:21 +00001555#else
Steve Frenchf6d09982008-01-08 23:18:22 +00001556 if ((mode & S_IWUGO) == 0) {
Steve French97837582007-12-31 07:47:21 +00001557#endif
Steve Frenchf6d09982008-01-08 23:18:22 +00001558 /* not writeable */
Steve French066fcb02007-03-23 00:45:08 +00001559 if ((cifsInode->cifsAttrs & ATTR_READONLY) == 0) {
1560 set_dosattr = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 time_buf.Attributes =
1562 cpu_to_le32(cifsInode->cifsAttrs |
1563 ATTR_READONLY);
Steve French066fcb02007-03-23 00:45:08 +00001564 }
Steve French5268df22007-04-06 19:28:16 +00001565 } else if (cifsInode->cifsAttrs & ATTR_READONLY) {
1566 /* If file is readonly on server, we would
1567 not be able to write to it - so if any write
1568 bit is enabled for user or group or other we
1569 need to at least try to remove r/o dos attr */
1570 set_dosattr = TRUE;
1571 time_buf.Attributes = cpu_to_le32(cifsInode->cifsAttrs &
1572 (~ATTR_READONLY));
1573 /* Windows ignores set to zero */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001574 if (time_buf.Attributes == 0)
Steve French5268df22007-04-06 19:28:16 +00001575 time_buf.Attributes |= cpu_to_le32(ATTR_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 }
Steve French97837582007-12-31 07:47:21 +00001577#ifdef CONFIG_CIFS_EXPERIMENTAL
1578 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
1579 mode_to_acl(direntry->d_inode, full_path, mode);
1580#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 }
1582
1583 if (attrs->ia_valid & ATTR_ATIME) {
1584 set_time = TRUE;
1585 time_buf.LastAccessTime =
1586 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_atime));
1587 } else
1588 time_buf.LastAccessTime = 0;
1589
1590 if (attrs->ia_valid & ATTR_MTIME) {
1591 set_time = TRUE;
1592 time_buf.LastWriteTime =
1593 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_mtime));
1594 } else
1595 time_buf.LastWriteTime = 0;
Steve Frenche30dcf32005-09-20 20:49:16 -07001596 /* Do not set ctime explicitly unless other time
1597 stamps are changed explicitly (i.e. by utime()
1598 since we would then have a mix of client and
1599 server times */
Steve French50c2f752007-07-13 00:33:32 +00001600
Steve Frenche30dcf32005-09-20 20:49:16 -07001601 if (set_time && (attrs->ia_valid & ATTR_CTIME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 set_time = TRUE;
Steve Frenche30dcf32005-09-20 20:49:16 -07001603 /* Although Samba throws this field away
1604 it may be useful to Windows - but we do
1605 not want to set ctime unless some other
1606 timestamp is changing */
Steve French26a21b92006-05-31 18:05:34 +00001607 cFYI(1, ("CIFS - CTIME changed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 time_buf.ChangeTime =
1609 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_ctime));
1610 } else
1611 time_buf.ChangeTime = 0;
1612
Steve French066fcb02007-03-23 00:45:08 +00001613 if (set_time || set_dosattr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 time_buf.CreationTime = 0; /* do not change */
1615 /* In the future we should experiment - try setting timestamps
1616 via Handle (SetFileInfo) instead of by path */
1617 if (!(pTcon->ses->flags & CIFS_SES_NT4))
1618 rc = CIFSSMBSetTimes(xid, pTcon, full_path, &time_buf,
Steve French737b7582005-04-28 22:41:06 -07001619 cifs_sb->local_nls,
1620 cifs_sb->mnt_cifs_flags &
1621 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 else
1623 rc = -EOPNOTSUPP;
1624
1625 if (rc == -EOPNOTSUPP) {
1626 int oplock = FALSE;
1627 __u16 netfid;
1628
1629 cFYI(1, ("calling SetFileInfo since SetPathInfo for "
1630 "times not supported by this server"));
1631 /* BB we could scan to see if we already have it open
1632 and pass in pid of opener to function */
1633 rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN,
1634 SYNCHRONIZE | FILE_WRITE_ATTRIBUTES,
1635 CREATE_NOT_DIR, &netfid, &oplock,
Steve French737b7582005-04-28 22:41:06 -07001636 NULL, cifs_sb->local_nls,
1637 cifs_sb->mnt_cifs_flags &
1638 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001639 if (rc == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 rc = CIFSSMBSetFileTimes(xid, pTcon, &time_buf,
1641 netfid);
1642 CIFSSMBClose(xid, pTcon, netfid);
1643 } else {
1644 /* BB For even older servers we could convert time_buf
1645 into old DOS style which uses two second
1646 granularity */
1647
1648 /* rc = CIFSSMBSetTimesLegacy(xid, pTcon, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001649 &time_buf, cifs_sb->local_nls); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
1651 }
Steve Frenche30dcf32005-09-20 20:49:16 -07001652 /* Even if error on time set, no sense failing the call if
1653 the server would set the time to a reasonable value anyway,
1654 and this check ensures that we are not being called from
1655 sys_utimes in which case we ought to fail the call back to
1656 the user when the server rejects the call */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001657 if ((rc) && (attrs->ia_valid &
Steve Frenche30dcf32005-09-20 20:49:16 -07001658 (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE)))
1659 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 }
1661
1662 /* do not need local check to inode_check_ok since the server does
1663 that */
1664 if (!rc)
1665 rc = inode_setattr(direntry->d_inode, attrs);
Steve Frenche30dcf32005-09-20 20:49:16 -07001666cifs_setattr_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 kfree(full_path);
1668 FreeXid(xid);
1669 return rc;
1670}
1671
Steve French99ee4db2007-02-27 05:35:17 +00001672#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673void cifs_delete_inode(struct inode *inode)
1674{
Steve French26a21b92006-05-31 18:05:34 +00001675 cFYI(1, ("In cifs_delete_inode, inode = 0x%p", inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 /* may have to add back in if and when safe distributed caching of
1677 directories added e.g. via FindNotify */
1678}
Steve French99ee4db2007-02-27 05:35:17 +00001679#endif