blob: af422625cee6eb3c286c7f297c5d223c19b218a3 [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;
214 full_path = search_path;
215 goto try_again_CIFSSMBUnixQPathInfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
Igor Mammedov79626702008-03-09 03:44:18 +0000217 goto cgiiu_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 } else {
219 struct cifsInodeInfo *cifsInfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 __u64 num_of_bytes = le64_to_cpu(findData.NumOfBytes);
221 __u64 end_of_file = le64_to_cpu(findData.EndOfFile);
222
223 /* get new inode */
224 if (*pinode == NULL) {
225 *pinode = new_inode(sb);
Igor Mammedov79626702008-03-09 03:44:18 +0000226 if (*pinode == NULL) {
227 rc = -ENOMEM;
228 goto cgiiu_exit;
229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 /* Is an i_ino of zero legal? */
231 /* Are there sanity checks we can use to ensure that
232 the server is really filling in that field? */
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700233 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 (*pinode)->i_ino =
235 (unsigned long)findData.UniqueId;
236 } /* note ino incremented to unique num in new_inode */
Steve French4523cc32007-04-30 20:13:06 +0000237 if (sb->s_flags & MS_NOATIME)
Steve French1b2b2122007-02-17 04:30:54 +0000238 (*pinode)->i_flags |= S_NOATIME | S_NOCMTIME;
Steve French50c2f752007-07-13 00:33:32 +0000239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 insert_inode_hash(*pinode);
241 }
242
243 inode = *pinode;
244 cifsInfo = CIFS_I(inode);
245
Steve French26a21b92006-05-31 18:05:34 +0000246 cFYI(1, ("Old time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 cifsInfo->time = jiffies;
Steve French26a21b92006-05-31 18:05:34 +0000248 cFYI(1, ("New time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 /* this is ok to set on every inode revalidate */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000250 atomic_set(&cifsInfo->inUse, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Christoph Hellwig75f12982008-02-25 20:25:21 +0000252 cifs_unix_info_to_inode(inode, &findData, 0);
Steve French50c2f752007-07-13 00:33:32 +0000253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 if (num_of_bytes < end_of_file)
Steve French8b94bcb2005-11-11 11:41:00 -0800256 cFYI(1, ("allocation size less than end of file"));
Andrew Morton5515eff2006-03-26 01:37:53 -0800257 cFYI(1, ("Size %ld and blocks %llu",
258 (unsigned long) inode->i_size,
259 (unsigned long long)inode->i_blocks));
Steve French8b94bcb2005-11-11 11:41:00 -0800260
Igor Mammedov79626702008-03-09 03:44:18 +0000261 cifs_set_ops(inode, is_dfs_referral);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
Igor Mammedov79626702008-03-09 03:44:18 +0000263cgiiu_exit:
264 if (full_path != search_path)
265 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return rc;
267}
268
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000269static int decode_sfu_inode(struct inode *inode, __u64 size,
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800270 const unsigned char *path,
271 struct cifs_sb_info *cifs_sb, int xid)
272{
273 int rc;
274 int oplock = FALSE;
275 __u16 netfid;
276 struct cifsTconInfo *pTcon = cifs_sb->tcon;
Steve French86c96b42005-11-18 20:25:31 -0800277 char buf[24];
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800278 unsigned int bytes_read;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000279 char *pbuf;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800280
281 pbuf = buf;
282
Steve French4523cc32007-04-30 20:13:06 +0000283 if (size == 0) {
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800284 inode->i_mode |= S_IFIFO;
285 return 0;
286 } else if (size < 8) {
287 return -EINVAL; /* EOPNOTSUPP? */
288 }
Steve French50c2f752007-07-13 00:33:32 +0000289
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800290 rc = CIFSSMBOpen(xid, pTcon, path, FILE_OPEN, GENERIC_READ,
291 CREATE_NOT_DIR, &netfid, &oplock, NULL,
292 cifs_sb->local_nls,
293 cifs_sb->mnt_cifs_flags &
294 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000295 if (rc == 0) {
Steve Frenchec637e32005-12-12 20:53:18 -0800296 int buf_type = CIFS_NO_BUFFER;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800297 /* Read header */
298 rc = CIFSSMBRead(xid, pTcon,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000299 netfid,
Steve French86c96b42005-11-18 20:25:31 -0800300 24 /* length */, 0 /* offset */,
Steve Frenchec637e32005-12-12 20:53:18 -0800301 &bytes_read, &pbuf, &buf_type);
Steve French4523cc32007-04-30 20:13:06 +0000302 if ((rc == 0) && (bytes_read >= 8)) {
303 if (memcmp("IntxBLK", pbuf, 8) == 0) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000304 cFYI(1, ("Block device"));
Steve French3020a1f2005-11-18 11:31:10 -0800305 inode->i_mode |= S_IFBLK;
Steve French4523cc32007-04-30 20:13:06 +0000306 if (bytes_read == 24) {
Steve French86c96b42005-11-18 20:25:31 -0800307 /* we have enough to decode dev num */
308 __u64 mjr; /* major */
309 __u64 mnr; /* minor */
310 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
311 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
312 inode->i_rdev = MKDEV(mjr, mnr);
313 }
Steve French4523cc32007-04-30 20:13:06 +0000314 } else if (memcmp("IntxCHR", pbuf, 8) == 0) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000315 cFYI(1, ("Char device"));
Steve French3020a1f2005-11-18 11:31:10 -0800316 inode->i_mode |= S_IFCHR;
Steve French4523cc32007-04-30 20:13:06 +0000317 if (bytes_read == 24) {
Steve French86c96b42005-11-18 20:25:31 -0800318 /* we have enough to decode dev num */
319 __u64 mjr; /* major */
320 __u64 mnr; /* minor */
321 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
322 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
323 inode->i_rdev = MKDEV(mjr, mnr);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000324 }
Steve French4523cc32007-04-30 20:13:06 +0000325 } else if (memcmp("IntxLNK", pbuf, 7) == 0) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000326 cFYI(1, ("Symlink"));
Steve French3020a1f2005-11-18 11:31:10 -0800327 inode->i_mode |= S_IFLNK;
Steve French86c96b42005-11-18 20:25:31 -0800328 } else {
329 inode->i_mode |= S_IFREG; /* file? */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000330 rc = -EOPNOTSUPP;
Steve French86c96b42005-11-18 20:25:31 -0800331 }
Steve French3020a1f2005-11-18 11:31:10 -0800332 } else {
333 inode->i_mode |= S_IFREG; /* then it is a file */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000334 rc = -EOPNOTSUPP; /* or some unknown SFU type */
335 }
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800336 CIFSSMBClose(xid, pTcon, netfid);
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800337 }
338 return rc;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800339}
340
Steve French9e294f12005-11-17 16:59:21 -0800341#define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */
342
Steve French953f8682007-10-31 04:54:42 +0000343static int get_sfu_mode(struct inode *inode,
Steve French9e294f12005-11-17 16:59:21 -0800344 const unsigned char *path,
345 struct cifs_sb_info *cifs_sb, int xid)
346{
Steve French3020a1f2005-11-18 11:31:10 -0800347#ifdef CONFIG_CIFS_XATTR
Steve French9e294f12005-11-17 16:59:21 -0800348 ssize_t rc;
349 char ea_value[4];
350 __u32 mode;
351
352 rc = CIFSSMBQueryEA(xid, cifs_sb->tcon, path, "SETFILEBITS",
353 ea_value, 4 /* size of buf */, cifs_sb->local_nls,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000354 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French4523cc32007-04-30 20:13:06 +0000355 if (rc < 0)
Steve French9e294f12005-11-17 16:59:21 -0800356 return (int)rc;
357 else if (rc > 3) {
358 mode = le32_to_cpu(*((__le32 *)ea_value));
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000359 inode->i_mode &= ~SFBITS_MASK;
360 cFYI(1, ("special bits 0%o org mode 0%o", mode, inode->i_mode));
Steve French9e294f12005-11-17 16:59:21 -0800361 inode->i_mode = (mode & SFBITS_MASK) | inode->i_mode;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000362 cFYI(1, ("special mode bits 0%o", mode));
Steve French9e294f12005-11-17 16:59:21 -0800363 return 0;
364 } else {
365 return 0;
366 }
Steve French3020a1f2005-11-18 11:31:10 -0800367#else
368 return -EOPNOTSUPP;
369#endif
Steve French9e294f12005-11-17 16:59:21 -0800370}
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372int cifs_get_inode_info(struct inode **pinode,
373 const unsigned char *search_path, FILE_ALL_INFO *pfindData,
374 struct super_block *sb, int xid)
375{
376 int rc = 0;
377 struct cifsTconInfo *pTcon;
378 struct inode *inode;
379 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Igor Mammedov79626702008-03-09 03:44:18 +0000380 const unsigned char *full_path = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 char *buf = NULL;
Steve French8d6286f2006-11-16 22:48:25 +0000382 int adjustTZ = FALSE;
Igor Mammedov79626702008-03-09 03:44:18 +0000383 bool is_dfs_referral = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 pTcon = cifs_sb->tcon;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000386 cFYI(1, ("Getting info on %s", search_path));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700388 if ((pfindData == NULL) && (*pinode != NULL)) {
389 if (CIFS_I(*pinode)->clientCanCacheRead) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000390 cFYI(1, ("No need to revalidate cached inode sizes"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return rc;
392 }
393 }
394
395 /* if file info not passed in then get it from server */
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700396 if (pfindData == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700398 if (buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return -ENOMEM;
400 pfindData = (FILE_ALL_INFO *)buf;
Igor Mammedov79626702008-03-09 03:44:18 +0000401
402 full_path = cifs_get_search_path(pTcon, search_path);
403
404try_again_CIFSSMBQPathInfo:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 /* could do find first instead but this returns more info */
Igor Mammedov79626702008-03-09 03:44:18 +0000406 rc = CIFSSMBQPathInfo(xid, pTcon, full_path, pfindData,
Steve Frenchacf1a1b2006-10-12 03:28:28 +0000407 0 /* not legacy */,
Steve French6b8edfe2005-08-23 20:26:03 -0700408 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700409 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French6b8edfe2005-08-23 20:26:03 -0700410 /* BB optimize code so we do not make the above call
411 when server claims no NT SMB support and the above call
412 failed at least once - set flag in tcon or mount */
Steve French4523cc32007-04-30 20:13:06 +0000413 if ((rc == -EOPNOTSUPP) || (rc == -EINVAL)) {
Igor Mammedov79626702008-03-09 03:44:18 +0000414 rc = SMBQueryInformation(xid, pTcon, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000415 pfindData, cifs_sb->local_nls,
Steve French6b8edfe2005-08-23 20:26:03 -0700416 cifs_sb->mnt_cifs_flags &
417 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French8d6286f2006-11-16 22:48:25 +0000418 adjustTZ = TRUE;
Steve French6b8edfe2005-08-23 20:26:03 -0700419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421 /* dump_mem("\nQPathInfo return data",&findData, sizeof(findData)); */
422 if (rc) {
Igor Mammedov79626702008-03-09 03:44:18 +0000423 if (rc == -EREMOTE && !is_dfs_referral) {
424 is_dfs_referral = true;
425 full_path = search_path;
426 goto try_again_CIFSSMBQPathInfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Igor Mammedov79626702008-03-09 03:44:18 +0000428 goto cgii_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 } else {
430 struct cifsInodeInfo *cifsInfo;
431 __u32 attr = le32_to_cpu(pfindData->Attributes);
432
433 /* get new inode */
434 if (*pinode == NULL) {
435 *pinode = new_inode(sb);
Steve Frenchacf1a1b2006-10-12 03:28:28 +0000436 if (*pinode == NULL) {
Igor Mammedov79626702008-03-09 03:44:18 +0000437 rc = -ENOMEM;
438 goto cgii_exit;
Steve Frenchacf1a1b2006-10-12 03:28:28 +0000439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /* Is an i_ino of zero legal? Can we use that to check
441 if the server supports returning inode numbers? Are
442 there other sanity checks we can use to ensure that
443 the server is really filling in that field? */
444
445 /* We can not use the IndexNumber field by default from
446 Windows or Samba (in ALL_INFO buf) but we can request
447 it explicitly. It may not be unique presumably if
448 the server has multiple devices mounted under one
449 share */
450
451 /* There may be higher info levels that work but are
452 there Windows server or network appliances for which
453 IndexNumber field is not guaranteed unique? */
454
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000455 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 int rc1 = 0;
457 __u64 inode_num;
458
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000459 rc1 = CIFSGetSrvInodeNumber(xid, pTcon,
460 search_path, &inode_num,
Steve French737b7582005-04-28 22:41:06 -0700461 cifs_sb->local_nls,
462 cifs_sb->mnt_cifs_flags &
463 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700464 if (rc1) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000465 cFYI(1, ("GetSrvInodeNum rc %d", rc1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /* BB EOPNOSUPP disable SERVER_INUM? */
467 } else /* do we need cast or hash to ino? */
468 (*pinode)->i_ino = inode_num;
469 } /* else ino incremented to unique num in new_inode*/
Steve French4523cc32007-04-30 20:13:06 +0000470 if (sb->s_flags & MS_NOATIME)
Steve French1b2b2122007-02-17 04:30:54 +0000471 (*pinode)->i_flags |= S_NOATIME | S_NOCMTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 insert_inode_hash(*pinode);
473 }
474 inode = *pinode;
475 cifsInfo = CIFS_I(inode);
476 cifsInfo->cifsAttrs = attr;
Steve French26a21b92006-05-31 18:05:34 +0000477 cFYI(1, ("Old time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 cifsInfo->time = jiffies;
Steve French26a21b92006-05-31 18:05:34 +0000479 cFYI(1, ("New time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 /* blksize needs to be multiple of two. So safer to default to
482 blksize and blkbits set in superblock so 2**blkbits and blksize
483 will match rather than setting to:
484 (pTcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE) & 0xFFFFFE00;*/
485
Steve French26a21b92006-05-31 18:05:34 +0000486 /* Linux can not store file creation time so ignore it */
Steve French4523cc32007-04-30 20:13:06 +0000487 if (pfindData->LastAccessTime)
Steve French1bd5bbc2006-09-28 03:35:57 +0000488 inode->i_atime = cifs_NTtimeToUnix
489 (le64_to_cpu(pfindData->LastAccessTime));
490 else /* do not need to use current_fs_time - time not stored */
491 inode->i_atime = CURRENT_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 inode->i_mtime =
493 cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastWriteTime));
494 inode->i_ctime =
495 cifs_NTtimeToUnix(le64_to_cpu(pfindData->ChangeTime));
Steve French26a21b92006-05-31 18:05:34 +0000496 cFYI(0, ("Attributes came in as 0x%x", attr));
Steve French4523cc32007-04-30 20:13:06 +0000497 if (adjustTZ && (pTcon->ses) && (pTcon->ses->server)) {
Steve French8d6286f2006-11-16 22:48:25 +0000498 inode->i_ctime.tv_sec += pTcon->ses->server->timeAdj;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000499 inode->i_mtime.tv_sec += pTcon->ses->server->timeAdj;
Steve French8d6286f2006-11-16 22:48:25 +0000500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 /* set default mode. will override for dirs below */
503 if (atomic_read(&cifsInfo->inUse) == 0)
504 /* new inode, can safely set these fields */
505 inode->i_mode = cifs_sb->mnt_file_mode;
Steve French3020a1f2005-11-18 11:31:10 -0800506 else /* since we set the inode type below we need to mask off
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000507 to avoid strange results if type changes and both
508 get orred in */
509 inode->i_mode &= ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510/* if (attr & ATTR_REPARSE) */
511 /* We no longer handle these as symlinks because we could not
512 follow them due to the absolute path with drive letter */
513 if (attr & ATTR_DIRECTORY) {
514 /* override default perms since we do not do byte range locking
515 on dirs */
516 inode->i_mode = cifs_sb->mnt_dir_mode;
517 inode->i_mode |= S_IFDIR;
Steve Frencheda3c0292005-07-21 15:20:28 -0700518 } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) &&
519 (cifsInfo->cifsAttrs & ATTR_SYSTEM) &&
520 /* No need to le64 convert size of zero */
521 (pfindData->EndOfFile == 0)) {
522 inode->i_mode = cifs_sb->mnt_file_mode;
523 inode->i_mode |= S_IFIFO;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800524/* BB Finish for SFU style symlinks and devices */
525 } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) &&
526 (cifsInfo->cifsAttrs & ATTR_SYSTEM)) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000527 if (decode_sfu_inode(inode,
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800528 le64_to_cpu(pfindData->EndOfFile),
529 search_path,
Steve Frenchad7a2922008-02-07 23:25:02 +0000530 cifs_sb, xid))
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000531 cFYI(1, ("Unrecognized sfu inode type"));
Steve Frenchad7a2922008-02-07 23:25:02 +0000532
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000533 cFYI(1, ("sfu mode 0%o", inode->i_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 } else {
535 inode->i_mode |= S_IFREG;
536 /* treat the dos attribute of read-only as read-only
537 mode e.g. 555 */
538 if (cifsInfo->cifsAttrs & ATTR_READONLY)
539 inode->i_mode &= ~(S_IWUGO);
Alan Tysonf5c1e2e2007-03-10 06:05:14 +0000540 else if ((inode->i_mode & S_IWUGO) == 0)
541 /* the ATTR_READONLY flag may have been */
542 /* changed on server -- set any w bits */
543 /* allowed by mnt_file_mode */
544 inode->i_mode |= (S_IWUGO &
545 cifs_sb->mnt_file_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* BB add code here -
547 validate if device or weird share or device type? */
548 }
Steve French50c2f752007-07-13 00:33:32 +0000549
Steve French3677db12007-02-26 16:46:11 +0000550 spin_lock(&inode->i_lock);
Steve Frenchf6d09982008-01-08 23:18:22 +0000551 if (is_size_safe_to_change(cifsInfo,
552 le64_to_cpu(pfindData->EndOfFile))) {
Steve French7ba52632007-02-08 18:14:13 +0000553 /* can not safely shrink the file size here if the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 client is writing to it due to potential races */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000555 i_size_write(inode, le64_to_cpu(pfindData->EndOfFile));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 /* 512 bytes (2**9) is the fake blocksize that must be
558 used for this calculation */
559 inode->i_blocks = (512 - 1 + le64_to_cpu(
560 pfindData->AllocationSize)) >> 9;
561 }
Steve French3677db12007-02-26 16:46:11 +0000562 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 inode->i_nlink = le32_to_cpu(pfindData->NumberOfLinks);
565
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000566 /* BB fill in uid and gid here? with help from winbind?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 or retrieve from NTFS stream extended attribute */
Steve French4879b442007-10-19 21:57:39 +0000568#ifdef CONFIG_CIFS_EXPERIMENTAL
Steve French953f8682007-10-31 04:54:42 +0000569 /* fill in 0777 bits from ACL */
Steve French4879b442007-10-19 21:57:39 +0000570 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
571 cFYI(1, ("Getting mode bits from ACL"));
Steve French630f3f0c2007-10-25 21:17:17 +0000572 acl_to_uid_mode(inode, search_path);
Steve French4879b442007-10-19 21:57:39 +0000573 }
574#endif
Steve French4523cc32007-04-30 20:13:06 +0000575 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
Steve French953f8682007-10-31 04:54:42 +0000576 /* fill in remaining high mode bits e.g. SUID, VTX */
577 get_sfu_mode(inode, search_path, cifs_sb, xid);
Steve French9e294f12005-11-17 16:59:21 -0800578 } else if (atomic_read(&cifsInfo->inUse) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 inode->i_uid = cifs_sb->mnt_uid;
580 inode->i_gid = cifs_sb->mnt_gid;
581 /* set so we do not keep refreshing these fields with
582 bad data after user has changed them in memory */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000583 atomic_set(&cifsInfo->inUse, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585
Igor Mammedov79626702008-03-09 03:44:18 +0000586 cifs_set_ops(inode, is_dfs_referral);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
Igor Mammedov79626702008-03-09 03:44:18 +0000588cgii_exit:
589 if (full_path != search_path)
590 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 kfree(buf);
592 return rc;
593}
594
Steve French7f8ed422007-09-28 22:28:55 +0000595static const struct inode_operations cifs_ipc_inode_ops = {
596 .lookup = cifs_lookup,
597};
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599/* gets root inode */
David Howellsce634ab2008-02-07 00:15:33 -0800600struct inode *cifs_iget(struct super_block *sb, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
David Howellsce634ab2008-02-07 00:15:33 -0800602 int xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 struct cifs_sb_info *cifs_sb;
David Howellsce634ab2008-02-07 00:15:33 -0800604 struct inode *inode;
605 long rc;
606
607 inode = iget_locked(sb, ino);
608 if (!inode)
609 return ERR_PTR(-ENOMEM);
610 if (!(inode->i_state & I_NEW))
611 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 cifs_sb = CIFS_SB(inode->i_sb);
614 xid = GetXid();
Steve Frenchc18c8422007-07-18 23:21:09 +0000615
616 if (cifs_sb->tcon->unix_ext)
Steve French7f8ed422007-09-28 22:28:55 +0000617 rc = cifs_get_inode_info_unix(&inode, "", inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 else
Steve French7f8ed422007-09-28 22:28:55 +0000619 rc = cifs_get_inode_info(&inode, "", NULL, inode->i_sb, xid);
620 if (rc && cifs_sb->tcon->ipc) {
621 cFYI(1, ("ipc connection - fake read inode"));
622 inode->i_mode |= S_IFDIR;
623 inode->i_nlink = 2;
624 inode->i_op = &cifs_ipc_inode_ops;
625 inode->i_fop = &simple_dir_operations;
626 inode->i_uid = cifs_sb->mnt_uid;
627 inode->i_gid = cifs_sb->mnt_gid;
David Howellsce634ab2008-02-07 00:15:33 -0800628 _FreeXid(xid);
629 iget_failed(inode);
630 return ERR_PTR(rc);
Steve French7f8ed422007-09-28 22:28:55 +0000631 }
632
David Howellsce634ab2008-02-07 00:15:33 -0800633 unlock_new_inode(inode);
634
635 /* can not call macro FreeXid here since in a void func
636 * TODO: This is no longer true
637 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 _FreeXid(xid);
David Howellsce634ab2008-02-07 00:15:33 -0800639 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
642int cifs_unlink(struct inode *inode, struct dentry *direntry)
643{
644 int rc = 0;
645 int xid;
646 struct cifs_sb_info *cifs_sb;
647 struct cifsTconInfo *pTcon;
648 char *full_path = NULL;
649 struct cifsInodeInfo *cifsInode;
650 FILE_BASIC_INFO *pinfo_buf;
651
Steve French06bcfed2006-03-31 22:43:50 +0000652 cFYI(1, ("cifs_unlink, inode = 0x%p", inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 xid = GetXid();
655
Steve French4523cc32007-04-30 20:13:06 +0000656 if (inode)
Steve French6910ab32006-03-31 03:37:08 +0000657 cifs_sb = CIFS_SB(inode->i_sb);
658 else
Steve French06bcfed2006-03-31 22:43:50 +0000659 cifs_sb = CIFS_SB(direntry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 pTcon = cifs_sb->tcon;
661
662 /* Unlink can be called from rename so we can not grab the sem here
663 since we deadlock otherwise */
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800664/* mutex_lock(&direntry->d_sb->s_vfs_rename_mutex);*/
Steve French7f573562005-08-30 11:32:14 -0700665 full_path = build_path_from_dentry(direntry);
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800666/* mutex_unlock(&direntry->d_sb->s_vfs_rename_mutex);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (full_path == NULL) {
668 FreeXid(xid);
669 return -ENOMEM;
670 }
Steve French2d785a52007-07-15 01:48:57 +0000671
672 if ((pTcon->ses->capabilities & CAP_UNIX) &&
673 (CIFS_UNIX_POSIX_PATH_OPS_CAP &
674 le64_to_cpu(pTcon->fsUnixInfo.Capability))) {
675 rc = CIFSPOSIXDelFile(xid, pTcon, full_path,
676 SMB_POSIX_UNLINK_FILE_TARGET, cifs_sb->local_nls,
677 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
678 cFYI(1, ("posix del rc %d", rc));
679 if ((rc == 0) || (rc == -ENOENT))
680 goto psx_del_no_retry;
681 }
682
Steve French737b7582005-04-28 22:41:06 -0700683 rc = CIFSSMBDelFile(xid, pTcon, full_path, cifs_sb->local_nls,
684 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French2d785a52007-07-15 01:48:57 +0000685psx_del_no_retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (!rc) {
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700687 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700688 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 } else if (rc == -ENOENT) {
690 d_drop(direntry);
691 } else if (rc == -ETXTBSY) {
692 int oplock = FALSE;
693 __u16 netfid;
694
695 rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN, DELETE,
696 CREATE_NOT_DIR | CREATE_DELETE_ON_CLOSE,
Steve French737b7582005-04-28 22:41:06 -0700697 &netfid, &oplock, NULL, cifs_sb->local_nls,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000698 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700699 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000700 if (rc == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 CIFSSMBRenameOpenFile(xid, pTcon, netfid, NULL,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000702 cifs_sb->local_nls,
703 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700704 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 CIFSSMBClose(xid, pTcon, netfid);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700706 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700707 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709 } else if (rc == -EACCES) {
710 /* try only if r/o attribute set in local lookup data? */
Eric Sesterhenna048d7a2006-02-21 22:33:09 +0000711 pinfo_buf = kzalloc(sizeof(FILE_BASIC_INFO), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (pinfo_buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /* ATTRS set to normal clears r/o bit */
714 pinfo_buf->Attributes = cpu_to_le32(ATTR_NORMAL);
715 if (!(pTcon->ses->flags & CIFS_SES_NT4))
716 rc = CIFSSMBSetTimes(xid, pTcon, full_path,
717 pinfo_buf,
Steve French737b7582005-04-28 22:41:06 -0700718 cifs_sb->local_nls,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000719 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700720 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 else
722 rc = -EOPNOTSUPP;
723
724 if (rc == -EOPNOTSUPP) {
725 int oplock = FALSE;
726 __u16 netfid;
727 /* rc = CIFSSMBSetAttrLegacy(xid, pTcon,
728 full_path,
729 (__u16)ATTR_NORMAL,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000730 cifs_sb->local_nls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 For some strange reason it seems that NT4 eats the
732 old setattr call without actually setting the
733 attributes so on to the third attempted workaround
734 */
735
736 /* BB could scan to see if we already have it open
737 and pass in pid of opener to function */
738 rc = CIFSSMBOpen(xid, pTcon, full_path,
739 FILE_OPEN, SYNCHRONIZE |
740 FILE_WRITE_ATTRIBUTES, 0,
741 &netfid, &oplock, NULL,
Steve French737b7582005-04-28 22:41:06 -0700742 cifs_sb->local_nls,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000743 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700744 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000745 if (rc == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 rc = CIFSSMBSetFileTimes(xid, pTcon,
747 pinfo_buf,
748 netfid);
749 CIFSSMBClose(xid, pTcon, netfid);
750 }
751 }
752 kfree(pinfo_buf);
753 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000754 if (rc == 0) {
755 rc = CIFSSMBDelFile(xid, pTcon, full_path,
756 cifs_sb->local_nls,
757 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700758 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (!rc) {
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700760 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700761 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 } else if (rc == -ETXTBSY) {
763 int oplock = FALSE;
764 __u16 netfid;
765
766 rc = CIFSSMBOpen(xid, pTcon, full_path,
767 FILE_OPEN, DELETE,
768 CREATE_NOT_DIR |
769 CREATE_DELETE_ON_CLOSE,
770 &netfid, &oplock, NULL,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000771 cifs_sb->local_nls,
772 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700773 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000774 if (rc == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 CIFSSMBRenameOpenFile(xid, pTcon,
776 netfid, NULL,
Steve French737b7582005-04-28 22:41:06 -0700777 cifs_sb->local_nls,
778 cifs_sb->mnt_cifs_flags &
779 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 CIFSSMBClose(xid, pTcon, netfid);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700781 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700782 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784 /* BB if rc = -ETXTBUSY goto the rename logic BB */
785 }
786 }
787 }
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700788 if (direntry->d_inode) {
Steve Frenchb2aeb9d2005-05-17 13:16:18 -0500789 cifsInode = CIFS_I(direntry->d_inode);
790 cifsInode->time = 0; /* will force revalidate to get info
791 when needed */
792 direntry->d_inode->i_ctime = current_fs_time(inode->i_sb);
793 }
Steve French4523cc32007-04-30 20:13:06 +0000794 if (inode) {
Steve French06bcfed2006-03-31 22:43:50 +0000795 inode->i_ctime = inode->i_mtime = current_fs_time(inode->i_sb);
796 cifsInode = CIFS_I(inode);
797 cifsInode->time = 0; /* force revalidate of dir as well */
798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 kfree(full_path);
801 FreeXid(xid);
802 return rc;
803}
804
Steve French2dd29d32007-04-23 22:07:35 +0000805static void posix_fill_in_inode(struct inode *tmp_inode,
Steve French0b442d22008-02-26 03:44:02 +0000806 FILE_UNIX_BASIC_INFO *pData, int isNewInode)
Steve French2dd29d32007-04-23 22:07:35 +0000807{
Christoph Hellwig75f12982008-02-25 20:25:21 +0000808 struct cifsInodeInfo *cifsInfo = CIFS_I(tmp_inode);
Steve French2dd29d32007-04-23 22:07:35 +0000809 loff_t local_size;
810 struct timespec local_mtime;
811
Steve French2dd29d32007-04-23 22:07:35 +0000812 cifsInfo->time = jiffies;
813 atomic_inc(&cifsInfo->inUse);
814
815 /* save mtime and size */
816 local_mtime = tmp_inode->i_mtime;
817 local_size = tmp_inode->i_size;
818
Christoph Hellwig75f12982008-02-25 20:25:21 +0000819 cifs_unix_info_to_inode(tmp_inode, pData, 1);
Igor Mammedov79626702008-03-09 03:44:18 +0000820 cifs_set_ops(tmp_inode, false);
Steve French2dd29d32007-04-23 22:07:35 +0000821
Christoph Hellwig75f12982008-02-25 20:25:21 +0000822 if (!S_ISREG(tmp_inode->i_mode))
823 return;
824
825 /*
826 * No sense invalidating pages for new inode
827 * since we we have not started caching
828 * readahead file data yet.
829 */
830 if (isNewInode)
831 return;
832
833 if (timespec_equal(&tmp_inode->i_mtime, &local_mtime) &&
834 (local_size == tmp_inode->i_size)) {
835 cFYI(1, ("inode exists but unchanged"));
Steve French2dd29d32007-04-23 22:07:35 +0000836 } else {
Christoph Hellwig75f12982008-02-25 20:25:21 +0000837 /* file may have changed on server */
838 cFYI(1, ("invalidate inode, readdir detected change"));
839 invalidate_remote_inode(tmp_inode);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000840 }
Steve French2dd29d32007-04-23 22:07:35 +0000841}
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843int cifs_mkdir(struct inode *inode, struct dentry *direntry, int mode)
844{
845 int rc = 0;
846 int xid;
847 struct cifs_sb_info *cifs_sb;
848 struct cifsTconInfo *pTcon;
849 char *full_path = NULL;
850 struct inode *newinode = NULL;
851
Steve French6473a552005-11-29 20:20:10 -0800852 cFYI(1, ("In cifs_mkdir, mode = 0x%x inode = 0x%p", mode, inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 xid = GetXid();
855
856 cifs_sb = CIFS_SB(inode->i_sb);
857 pTcon = cifs_sb->tcon;
858
Steve French7f573562005-08-30 11:32:14 -0700859 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (full_path == NULL) {
861 FreeXid(xid);
862 return -ENOMEM;
863 }
Steve French50c2f752007-07-13 00:33:32 +0000864
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000865 if ((pTcon->ses->capabilities & CAP_UNIX) &&
866 (CIFS_UNIX_POSIX_PATH_OPS_CAP &
Steve French2dd29d32007-04-23 22:07:35 +0000867 le64_to_cpu(pTcon->fsUnixInfo.Capability))) {
868 u32 oplock = 0;
Steve Frenchf6d09982008-01-08 23:18:22 +0000869 FILE_UNIX_BASIC_INFO *pInfo =
Steve French2dd29d32007-04-23 22:07:35 +0000870 kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000871 if (pInfo == NULL) {
Steve French2dd29d32007-04-23 22:07:35 +0000872 rc = -ENOMEM;
873 goto mkdir_out;
874 }
Steve French50c2f752007-07-13 00:33:32 +0000875
Jeffa8cd9252007-09-13 18:38:50 +0000876 mode &= ~current->fs->umask;
Steve French2dd29d32007-04-23 22:07:35 +0000877 rc = CIFSPOSIXCreate(xid, pTcon, SMB_O_DIRECTORY | SMB_O_CREAT,
878 mode, NULL /* netfid */, pInfo, &oplock,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000879 full_path, cifs_sb->local_nls,
880 cifs_sb->mnt_cifs_flags &
Steve French2dd29d32007-04-23 22:07:35 +0000881 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchc45d7072007-09-17 02:04:21 +0000882 if (rc == -EOPNOTSUPP) {
883 kfree(pInfo);
884 goto mkdir_retry_old;
885 } else if (rc) {
Steve French2dd29d32007-04-23 22:07:35 +0000886 cFYI(1, ("posix mkdir returned 0x%x", rc));
887 d_drop(direntry);
888 } else {
Cyril Gorcunov8f2376a2007-10-14 17:58:43 +0000889 if (pInfo->Type == cpu_to_le32(-1)) {
890 /* no return info, go query for it */
Steve French5a07cdf2007-09-16 23:12:47 +0000891 kfree(pInfo);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000892 goto mkdir_get_info;
Steve French5a07cdf2007-09-16 23:12:47 +0000893 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000894/*BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if need
895 to set uid/gid */
Steve French2dd29d32007-04-23 22:07:35 +0000896 inc_nlink(inode);
897 if (pTcon->nocase)
898 direntry->d_op = &cifs_ci_dentry_ops;
899 else
900 direntry->d_op = &cifs_dentry_ops;
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000901
902 newinode = new_inode(inode->i_sb);
Steve French5a07cdf2007-09-16 23:12:47 +0000903 if (newinode == NULL) {
904 kfree(pInfo);
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000905 goto mkdir_get_info;
Steve French5a07cdf2007-09-16 23:12:47 +0000906 }
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000907 /* Is an i_ino of zero legal? */
908 /* Are there sanity checks we can use to ensure that
909 the server is really filling in that field? */
910 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
911 newinode->i_ino =
912 (unsigned long)pInfo->UniqueId;
913 } /* note ino incremented to unique num in new_inode */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000914 if (inode->i_sb->s_flags & MS_NOATIME)
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000915 newinode->i_flags |= S_NOATIME | S_NOCMTIME;
916 newinode->i_nlink = 2;
917
918 insert_inode_hash(newinode);
Steve French2dd29d32007-04-23 22:07:35 +0000919 d_instantiate(direntry, newinode);
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000920
921 /* we already checked in POSIXCreate whether
922 frame was long enough */
923 posix_fill_in_inode(direntry->d_inode,
Steve French0b442d22008-02-26 03:44:02 +0000924 pInfo, 1 /* NewInode */);
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000925#ifdef CONFIG_CIFS_DEBUG2
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000926 cFYI(1, ("instantiated dentry %p %s to inode %p",
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000927 direntry, direntry->d_name.name, newinode));
928
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000929 if (newinode->i_nlink != 2)
930 cFYI(1, ("unexpected number of links %d",
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000931 newinode->i_nlink));
932#endif
Steve French2dd29d32007-04-23 22:07:35 +0000933 }
934 kfree(pInfo);
935 goto mkdir_out;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000936 }
Steve Frenchc45d7072007-09-17 02:04:21 +0000937mkdir_retry_old:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 /* BB add setting the equivalent of mode via CreateX w/ACLs */
Steve French737b7582005-04-28 22:41:06 -0700939 rc = CIFSSMBMkDir(xid, pTcon, full_path, cifs_sb->local_nls,
940 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (rc) {
Steve French26a21b92006-05-31 18:05:34 +0000942 cFYI(1, ("cifs_mkdir returned 0x%x", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 d_drop(direntry);
944 } else {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000945mkdir_get_info:
Dave Hansend8c76e62006-09-30 23:29:04 -0700946 inc_nlink(inode);
Steve Frenchc18c8422007-07-18 23:21:09 +0000947 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000949 inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 else
951 rc = cifs_get_inode_info(&newinode, full_path, NULL,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000952 inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Steve Frenchb92327f2005-08-22 20:09:43 -0700954 if (pTcon->nocase)
955 direntry->d_op = &cifs_ci_dentry_ops;
956 else
957 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 d_instantiate(direntry, newinode);
Steve French2dd29d32007-04-23 22:07:35 +0000959 /* setting nlink not necessary except in cases where we
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000960 * failed to get it from the server or was set bogus */
Steve French2dd29d32007-04-23 22:07:35 +0000961 if ((direntry->d_inode) && (direntry->d_inode->i_nlink < 2))
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000962 direntry->d_inode->i_nlink = 2;
Steve Frenchc18c8422007-07-18 23:21:09 +0000963 if (pTcon->unix_ext) {
Steve French3ce53fc2007-06-08 14:55:14 +0000964 mode &= ~current->fs->umask;
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700965 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 CIFSSMBUnixSetPerms(xid, pTcon, full_path,
967 mode,
Steve French83451872005-12-01 17:12:59 -0800968 (__u64)current->fsuid,
969 (__u64)current->fsgid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 0 /* dev_t */,
Steve French737b7582005-04-28 22:41:06 -0700971 cifs_sb->local_nls,
972 cifs_sb->mnt_cifs_flags &
973 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 } else {
975 CIFSSMBUnixSetPerms(xid, pTcon, full_path,
976 mode, (__u64)-1,
977 (__u64)-1, 0 /* dev_t */,
Steve French737b7582005-04-28 22:41:06 -0700978 cifs_sb->local_nls,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000979 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700980 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
Steve French3ce53fc2007-06-08 14:55:14 +0000982 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 /* BB to be implemented via Windows secrty descriptors
984 eg CIFSSMBWinSetPerms(xid, pTcon, full_path, mode,
985 -1, -1, local_nls); */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000986 if (direntry->d_inode) {
Steve French6473a552005-11-29 20:20:10 -0800987 direntry->d_inode->i_mode = mode;
Steve French25741b32005-11-29 22:38:43 -0800988 direntry->d_inode->i_mode |= S_IFDIR;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000989 if (cifs_sb->mnt_cifs_flags &
Steve French6473a552005-11-29 20:20:10 -0800990 CIFS_MOUNT_SET_UID) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000991 direntry->d_inode->i_uid =
Steve French6473a552005-11-29 20:20:10 -0800992 current->fsuid;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000993 direntry->d_inode->i_gid =
Steve French6473a552005-11-29 20:20:10 -0800994 current->fsgid;
995 }
996 }
Steve French2a138ebb2005-11-29 21:22:19 -0800997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000999mkdir_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 kfree(full_path);
1001 FreeXid(xid);
1002 return rc;
1003}
1004
1005int cifs_rmdir(struct inode *inode, struct dentry *direntry)
1006{
1007 int rc = 0;
1008 int xid;
1009 struct cifs_sb_info *cifs_sb;
1010 struct cifsTconInfo *pTcon;
1011 char *full_path = NULL;
1012 struct cifsInodeInfo *cifsInode;
1013
Steve French26a21b92006-05-31 18:05:34 +00001014 cFYI(1, ("cifs_rmdir, inode = 0x%p", inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 xid = GetXid();
1017
1018 cifs_sb = CIFS_SB(inode->i_sb);
1019 pTcon = cifs_sb->tcon;
1020
Steve French7f573562005-08-30 11:32:14 -07001021 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (full_path == NULL) {
1023 FreeXid(xid);
1024 return -ENOMEM;
1025 }
1026
Steve French737b7582005-04-28 22:41:06 -07001027 rc = CIFSSMBRmDir(xid, pTcon, full_path, cifs_sb->local_nls,
1028 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 if (!rc) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001031 drop_nlink(inode);
Steve French3677db12007-02-26 16:46:11 +00001032 spin_lock(&direntry->d_inode->i_lock);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001033 i_size_write(direntry->d_inode, 0);
Dave Hansence71ec32006-09-30 23:29:06 -07001034 clear_nlink(direntry->d_inode);
Steve French3677db12007-02-26 16:46:11 +00001035 spin_unlock(&direntry->d_inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037
1038 cifsInode = CIFS_I(direntry->d_inode);
1039 cifsInode->time = 0; /* force revalidate to go get info when
1040 needed */
1041 direntry->d_inode->i_ctime = inode->i_ctime = inode->i_mtime =
1042 current_fs_time(inode->i_sb);
1043
1044 kfree(full_path);
1045 FreeXid(xid);
1046 return rc;
1047}
1048
1049int cifs_rename(struct inode *source_inode, struct dentry *source_direntry,
1050 struct inode *target_inode, struct dentry *target_direntry)
1051{
1052 char *fromName;
1053 char *toName;
1054 struct cifs_sb_info *cifs_sb_source;
1055 struct cifs_sb_info *cifs_sb_target;
1056 struct cifsTconInfo *pTcon;
1057 int xid;
1058 int rc = 0;
1059
1060 xid = GetXid();
1061
1062 cifs_sb_target = CIFS_SB(target_inode->i_sb);
1063 cifs_sb_source = CIFS_SB(source_inode->i_sb);
1064 pTcon = cifs_sb_source->tcon;
1065
1066 if (pTcon != cifs_sb_target->tcon) {
1067 FreeXid(xid);
1068 return -EXDEV; /* BB actually could be allowed if same server,
1069 but different share.
1070 Might eventually add support for this */
1071 }
1072
1073 /* we already have the rename sem so we do not need to grab it again
1074 here to protect the path integrity */
Steve French7f573562005-08-30 11:32:14 -07001075 fromName = build_path_from_dentry(source_direntry);
1076 toName = build_path_from_dentry(target_direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if ((fromName == NULL) || (toName == NULL)) {
1078 rc = -ENOMEM;
1079 goto cifs_rename_exit;
1080 }
1081
1082 rc = CIFSSMBRename(xid, pTcon, fromName, toName,
Steve French737b7582005-04-28 22:41:06 -07001083 cifs_sb_source->local_nls,
1084 cifs_sb_source->mnt_cifs_flags &
1085 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 if (rc == -EEXIST) {
1087 /* check if they are the same file because rename of hardlinked
1088 files is a noop */
1089 FILE_UNIX_BASIC_INFO *info_buf_source;
1090 FILE_UNIX_BASIC_INFO *info_buf_target;
1091
1092 info_buf_source =
1093 kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL);
1094 if (info_buf_source != NULL) {
1095 info_buf_target = info_buf_source + 1;
Steve Frenchc18c8422007-07-18 23:21:09 +00001096 if (pTcon->unix_ext)
Steve French8e87d4d2006-11-02 03:45:24 +00001097 rc = CIFSSMBUnixQPathInfo(xid, pTcon, fromName,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001098 info_buf_source,
Steve French8e87d4d2006-11-02 03:45:24 +00001099 cifs_sb_source->local_nls,
1100 cifs_sb_source->mnt_cifs_flags &
1101 CIFS_MOUNT_MAP_SPECIAL_CHR);
1102 /* else rc is still EEXIST so will fall through to
1103 unlink the target and retry rename */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 if (rc == 0) {
1105 rc = CIFSSMBUnixQPathInfo(xid, pTcon, toName,
1106 info_buf_target,
Steve French737b7582005-04-28 22:41:06 -07001107 cifs_sb_target->local_nls,
1108 /* remap based on source sb */
1109 cifs_sb_source->mnt_cifs_flags &
1110 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
1112 if ((rc == 0) &&
1113 (info_buf_source->UniqueId ==
1114 info_buf_target->UniqueId)) {
1115 /* do not rename since the files are hardlinked which
1116 is a noop */
1117 } else {
1118 /* we either can not tell the files are hardlinked
1119 (as with Windows servers) or files are not
1120 hardlinked so delete the target manually before
1121 renaming to follow POSIX rather than Windows
1122 semantics */
1123 cifs_unlink(target_inode, target_direntry);
1124 rc = CIFSSMBRename(xid, pTcon, fromName,
1125 toName,
Steve French737b7582005-04-28 22:41:06 -07001126 cifs_sb_source->local_nls,
1127 cifs_sb_source->mnt_cifs_flags
1128 & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 }
1130 kfree(info_buf_source);
1131 } /* if we can not get memory just leave rc as EEXIST */
1132 }
1133
Steve Frenchad7a2922008-02-07 23:25:02 +00001134 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 cFYI(1, ("rename rc %d", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 if ((rc == -EIO) || (rc == -EEXIST)) {
1138 int oplock = FALSE;
1139 __u16 netfid;
1140
1141 /* BB FIXME Is Generic Read correct for rename? */
1142 /* if renaming directory - we should not say CREATE_NOT_DIR,
1143 need to test renaming open directory, also GENERIC_READ
1144 might not right be right access to request */
1145 rc = CIFSSMBOpen(xid, pTcon, fromName, FILE_OPEN, GENERIC_READ,
1146 CREATE_NOT_DIR, &netfid, &oplock, NULL,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001147 cifs_sb_source->local_nls,
1148 cifs_sb_source->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -07001149 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001150 if (rc == 0) {
Steve French8e87d4d2006-11-02 03:45:24 +00001151 rc = CIFSSMBRenameOpenFile(xid, pTcon, netfid, toName,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001152 cifs_sb_source->local_nls,
Steve French737b7582005-04-28 22:41:06 -07001153 cifs_sb_source->mnt_cifs_flags &
1154 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 CIFSSMBClose(xid, pTcon, netfid);
1156 }
1157 }
1158
1159cifs_rename_exit:
1160 kfree(fromName);
1161 kfree(toName);
1162 FreeXid(xid);
1163 return rc;
1164}
1165
1166int cifs_revalidate(struct dentry *direntry)
1167{
1168 int xid;
Jeff Laytoncea21802007-11-20 23:19:03 +00001169 int rc = 0, wbrc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 char *full_path;
1171 struct cifs_sb_info *cifs_sb;
1172 struct cifsInodeInfo *cifsInode;
1173 loff_t local_size;
1174 struct timespec local_mtime;
1175 int invalidate_inode = FALSE;
1176
1177 if (direntry->d_inode == NULL)
1178 return -ENOENT;
1179
1180 cifsInode = CIFS_I(direntry->d_inode);
1181
1182 if (cifsInode == NULL)
1183 return -ENOENT;
1184
1185 /* no sense revalidating inode info on file that no one can write */
1186 if (CIFS_I(direntry->d_inode)->clientCanCacheRead)
1187 return rc;
1188
1189 xid = GetXid();
1190
1191 cifs_sb = CIFS_SB(direntry->d_sb);
1192
1193 /* can not safely grab the rename sem here if rename calls revalidate
1194 since that would deadlock */
Steve French7f573562005-08-30 11:32:14 -07001195 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 if (full_path == NULL) {
1197 FreeXid(xid);
1198 return -ENOMEM;
1199 }
1200 cFYI(1, ("Revalidate: %s inode 0x%p count %d dentry: 0x%p d_time %ld "
1201 "jiffies %ld", full_path, direntry->d_inode,
1202 direntry->d_inode->i_count.counter, direntry,
1203 direntry->d_time, jiffies));
1204
1205 if (cifsInode->time == 0) {
1206 /* was set to zero previously to force revalidate */
1207 } else if (time_before(jiffies, cifsInode->time + HZ) &&
1208 lookupCacheEnabled) {
1209 if ((S_ISREG(direntry->d_inode->i_mode) == 0) ||
1210 (direntry->d_inode->i_nlink == 1)) {
1211 kfree(full_path);
1212 FreeXid(xid);
1213 return rc;
1214 } else {
1215 cFYI(1, ("Have to revalidate file due to hardlinks"));
1216 }
1217 }
1218
1219 /* save mtime and size */
1220 local_mtime = direntry->d_inode->i_mtime;
1221 local_size = direntry->d_inode->i_size;
1222
Steve Frenchc18c8422007-07-18 23:21:09 +00001223 if (cifs_sb->tcon->unix_ext) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 rc = cifs_get_inode_info_unix(&direntry->d_inode, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001225 direntry->d_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (rc) {
1227 cFYI(1, ("error on getting revalidate info %d", rc));
1228/* if (rc != -ENOENT)
1229 rc = 0; */ /* BB should we cache info on
1230 certain errors? */
1231 }
1232 } else {
1233 rc = cifs_get_inode_info(&direntry->d_inode, full_path, NULL,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001234 direntry->d_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 if (rc) {
1236 cFYI(1, ("error on getting revalidate info %d", rc));
1237/* if (rc != -ENOENT)
1238 rc = 0; */ /* BB should we cache info on
1239 certain errors? */
1240 }
1241 }
1242 /* should we remap certain errors, access denied?, to zero */
1243
1244 /* if not oplocked, we invalidate inode pages if mtime or file size
1245 had changed on server */
1246
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001247 if (timespec_equal(&local_mtime, &direntry->d_inode->i_mtime) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 (local_size == direntry->d_inode->i_size)) {
1249 cFYI(1, ("cifs_revalidate - inode unchanged"));
1250 } else {
1251 /* file may have changed on server */
1252 if (cifsInode->clientCanCacheRead) {
1253 /* no need to invalidate inode pages since we were the
1254 only ones who could have modified the file and the
1255 server copy is staler than ours */
1256 } else {
1257 invalidate_inode = TRUE;
1258 }
1259 }
1260
1261 /* can not grab this sem since kernel filesys locking documentation
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001262 indicates i_mutex may be taken by the kernel on lookup and rename
1263 which could deadlock if we grab the i_mutex here as well */
1264/* mutex_lock(&direntry->d_inode->i_mutex);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 /* need to write out dirty pages here */
1266 if (direntry->d_inode->i_mapping) {
1267 /* do we need to lock inode until after invalidate completes
1268 below? */
Jeff Laytoncea21802007-11-20 23:19:03 +00001269 wbrc = filemap_fdatawrite(direntry->d_inode->i_mapping);
1270 if (wbrc)
1271 CIFS_I(direntry->d_inode)->write_behind_rc = wbrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273 if (invalidate_inode) {
Steve French3abb9272005-11-28 08:16:13 -08001274 /* shrink_dcache not necessary now that cifs dentry ops
1275 are exported for negative dentries */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001276/* if (S_ISDIR(direntry->d_inode->i_mode))
Steve French3abb9272005-11-28 08:16:13 -08001277 shrink_dcache_parent(direntry); */
1278 if (S_ISREG(direntry->d_inode->i_mode)) {
1279 if (direntry->d_inode->i_mapping)
Jeff Laytoncea21802007-11-20 23:19:03 +00001280 wbrc = filemap_fdatawait(direntry->d_inode->i_mapping);
1281 if (wbrc)
1282 CIFS_I(direntry->d_inode)->write_behind_rc = wbrc;
Steve French3abb9272005-11-28 08:16:13 -08001283 /* may eventually have to do this for open files too */
1284 if (list_empty(&(cifsInode->openFileList))) {
1285 /* changed on server - flush read ahead pages */
1286 cFYI(1, ("Invalidating read ahead data on "
1287 "closed file"));
1288 invalidate_remote_inode(direntry->d_inode);
1289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 }
1291 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001292/* mutex_unlock(&direntry->d_inode->i_mutex); */
Steve French50c2f752007-07-13 00:33:32 +00001293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 kfree(full_path);
1295 FreeXid(xid);
1296 return rc;
1297}
1298
1299int cifs_getattr(struct vfsmount *mnt, struct dentry *dentry,
1300 struct kstat *stat)
1301{
1302 int err = cifs_revalidate(dentry);
Steve French5fe14c82006-11-07 19:26:33 +00001303 if (!err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 generic_fillattr(dentry->d_inode, stat);
Steve French5fe14c82006-11-07 19:26:33 +00001305 stat->blksize = CIFS_MAX_MSGSIZE;
1306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return err;
1308}
1309
1310static int cifs_truncate_page(struct address_space *mapping, loff_t from)
1311{
1312 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1313 unsigned offset = from & (PAGE_CACHE_SIZE - 1);
1314 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 int rc = 0;
1316
1317 page = grab_cache_page(mapping, index);
1318 if (!page)
1319 return -ENOMEM;
1320
Christoph Lametereebd2aa2008-02-04 22:28:29 -08001321 zero_user_segment(page, offset, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 unlock_page(page);
1323 page_cache_release(page);
1324 return rc;
1325}
1326
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001327static int cifs_vmtruncate(struct inode *inode, loff_t offset)
Steve French3677db12007-02-26 16:46:11 +00001328{
1329 struct address_space *mapping = inode->i_mapping;
1330 unsigned long limit;
1331
Steve Frenchba6a46a2007-02-26 20:06:29 +00001332 spin_lock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001333 if (inode->i_size < offset)
1334 goto do_expand;
1335 /*
1336 * truncation of in-use swapfiles is disallowed - it would cause
1337 * subsequent swapout to scribble on the now-freed blocks.
1338 */
Steve Frenchba6a46a2007-02-26 20:06:29 +00001339 if (IS_SWAPFILE(inode)) {
1340 spin_unlock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001341 goto out_busy;
Steve Frenchba6a46a2007-02-26 20:06:29 +00001342 }
Steve French3677db12007-02-26 16:46:11 +00001343 i_size_write(inode, offset);
1344 spin_unlock(&inode->i_lock);
Steve French8064ab42007-08-22 22:12:07 +00001345 /*
1346 * unmap_mapping_range is called twice, first simply for efficiency
1347 * so that truncate_inode_pages does fewer single-page unmaps. However
1348 * after this first call, and before truncate_inode_pages finishes,
1349 * it is possible for private pages to be COWed, which remain after
1350 * truncate_inode_pages finishes, hence the second unmap_mapping_range
1351 * call must be made for correctness.
1352 */
Steve French3677db12007-02-26 16:46:11 +00001353 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
1354 truncate_inode_pages(mapping, offset);
Steve French8064ab42007-08-22 22:12:07 +00001355 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
Steve French3677db12007-02-26 16:46:11 +00001356 goto out_truncate;
1357
1358do_expand:
1359 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
Steve Frenchba6a46a2007-02-26 20:06:29 +00001360 if (limit != RLIM_INFINITY && offset > limit) {
1361 spin_unlock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001362 goto out_sig;
Steve Frenchba6a46a2007-02-26 20:06:29 +00001363 }
1364 if (offset > inode->i_sb->s_maxbytes) {
1365 spin_unlock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001366 goto out_big;
Steve Frenchba6a46a2007-02-26 20:06:29 +00001367 }
Steve French3677db12007-02-26 16:46:11 +00001368 i_size_write(inode, offset);
Steve Frenchba6a46a2007-02-26 20:06:29 +00001369 spin_unlock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001370out_truncate:
1371 if (inode->i_op && inode->i_op->truncate)
1372 inode->i_op->truncate(inode);
1373 return 0;
1374out_sig:
1375 send_sig(SIGXFSZ, current, 0);
1376out_big:
1377 return -EFBIG;
1378out_busy:
1379 return -ETXTBSY;
1380}
1381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382int cifs_setattr(struct dentry *direntry, struct iattr *attrs)
1383{
1384 int xid;
1385 struct cifs_sb_info *cifs_sb;
1386 struct cifsTconInfo *pTcon;
1387 char *full_path = NULL;
1388 int rc = -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 struct cifsFileInfo *open_file = NULL;
1390 FILE_BASIC_INFO time_buf;
1391 int set_time = FALSE;
Steve French066fcb02007-03-23 00:45:08 +00001392 int set_dosattr = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 __u64 mode = 0xFFFFFFFFFFFFFFFFULL;
1394 __u64 uid = 0xFFFFFFFFFFFFFFFFULL;
1395 __u64 gid = 0xFFFFFFFFFFFFFFFFULL;
1396 struct cifsInodeInfo *cifsInode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 xid = GetXid();
1399
Steve French39798772006-05-31 22:40:51 +00001400 cFYI(1, ("setattr on file %s attrs->iavalid 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 direntry->d_name.name, attrs->ia_valid));
Steve French6473a552005-11-29 20:20:10 -08001402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 cifs_sb = CIFS_SB(direntry->d_inode->i_sb);
1404 pTcon = cifs_sb->tcon;
1405
Steve French2a138ebb2005-11-29 21:22:19 -08001406 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) == 0) {
Steve French6473a552005-11-29 20:20:10 -08001407 /* check if we have permission to change attrs */
1408 rc = inode_change_ok(direntry->d_inode, attrs);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001409 if (rc < 0) {
Steve French6473a552005-11-29 20:20:10 -08001410 FreeXid(xid);
1411 return rc;
1412 } else
1413 rc = 0;
1414 }
Steve French50c2f752007-07-13 00:33:32 +00001415
Steve French7f573562005-08-30 11:32:14 -07001416 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 if (full_path == NULL) {
1418 FreeXid(xid);
1419 return -ENOMEM;
1420 }
1421 cifsInode = CIFS_I(direntry->d_inode);
1422
1423 /* BB check if we need to refresh inode from server now ? BB */
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 if (attrs->ia_valid & ATTR_SIZE) {
Jeff Laytoncea21802007-11-20 23:19:03 +00001426 /*
1427 Flush data before changing file size on server. If the
1428 flush returns error, store it to report later and continue.
1429 BB: This should be smarter. Why bother flushing pages that
1430 will be truncated anyway? Also, should we error out here if
1431 the flush returns error?
1432 */
1433 rc = filemap_write_and_wait(direntry->d_inode->i_mapping);
1434 if (rc != 0) {
1435 CIFS_I(direntry->d_inode)->write_behind_rc = rc;
1436 rc = 0;
1437 }
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 /* To avoid spurious oplock breaks from server, in the case of
1440 inodes that we already have open, avoid doing path based
1441 setting of file size if we can do it by handle.
1442 This keeps our caching token (oplock) and avoids timeouts
1443 when the local oplock break takes longer to flush
1444 writebehind data than the SMB timeout for the SetPathInfo
1445 request would allow */
Steve French39798772006-05-31 22:40:51 +00001446
Steve French6148a742005-10-05 12:23:19 -07001447 open_file = find_writable_file(cifsInode);
1448 if (open_file) {
1449 __u16 nfid = open_file->netfid;
1450 __u32 npid = open_file->pid;
1451 rc = CIFSSMBSetFileSize(xid, pTcon, attrs->ia_size,
1452 nfid, npid, FALSE);
Steve French23e7dd72005-10-20 13:44:56 -07001453 atomic_dec(&open_file->wrtPending);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001454 cFYI(1, ("SetFSize for attrs rc = %d", rc));
1455 if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
Steve French77159b42007-08-31 01:10:17 +00001456 unsigned int bytes_written;
Steve French6148a742005-10-05 12:23:19 -07001457 rc = CIFSSMBWrite(xid, pTcon,
1458 nfid, 0, attrs->ia_size,
1459 &bytes_written, NULL, NULL,
1460 1 /* 45 seconds */);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001461 cFYI(1, ("Wrt seteof rc %d", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001463 } else
Steve French6473a552005-11-29 20:20:10 -08001464 rc = -EINVAL;
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (rc != 0) {
1467 /* Set file size by pathname rather than by handle
1468 either because no valid, writeable file handle for
1469 it was found or because there was an error setting
1470 it by handle */
1471 rc = CIFSSMBSetEOF(xid, pTcon, full_path,
1472 attrs->ia_size, FALSE,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001473 cifs_sb->local_nls,
Steve French737b7582005-04-28 22:41:06 -07001474 cifs_sb->mnt_cifs_flags &
1475 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenche30dcf32005-09-20 20:49:16 -07001476 cFYI(1, ("SetEOF by path (setattrs) rc = %d", rc));
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001477 if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001478 __u16 netfid;
1479 int oplock = FALSE;
1480
1481 rc = SMBLegacyOpen(xid, pTcon, full_path,
1482 FILE_OPEN,
1483 SYNCHRONIZE | FILE_WRITE_ATTRIBUTES,
1484 CREATE_NOT_DIR, &netfid, &oplock,
1485 NULL, cifs_sb->local_nls,
1486 cifs_sb->mnt_cifs_flags &
1487 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001488 if (rc == 0) {
Steve French77159b42007-08-31 01:10:17 +00001489 unsigned int bytes_written;
Steve Frenche30dcf32005-09-20 20:49:16 -07001490 rc = CIFSSMBWrite(xid, pTcon,
1491 netfid, 0,
1492 attrs->ia_size,
1493 &bytes_written, NULL,
1494 NULL, 1 /* 45 sec */);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001495 cFYI(1, ("wrt seteof rc %d", rc));
Steve Frenche30dcf32005-09-20 20:49:16 -07001496 CIFSSMBClose(xid, pTcon, netfid);
1497 }
1498
1499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
1501
1502 /* Server is ok setting allocation size implicitly - no need
1503 to call:
1504 CIFSSMBSetEOF(xid, pTcon, full_path, attrs->ia_size, TRUE,
1505 cifs_sb->local_nls);
1506 */
1507
1508 if (rc == 0) {
Steve French3677db12007-02-26 16:46:11 +00001509 rc = cifs_vmtruncate(direntry->d_inode, attrs->ia_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 cifs_truncate_page(direntry->d_inode->i_mapping,
1511 direntry->d_inode->i_size);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001512 } else
Steve Frenche30dcf32005-09-20 20:49:16 -07001513 goto cifs_setattr_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
1515 if (attrs->ia_valid & ATTR_UID) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001516 cFYI(1, ("UID changed to %d", attrs->ia_uid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 uid = attrs->ia_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
1519 if (attrs->ia_valid & ATTR_GID) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001520 cFYI(1, ("GID changed to %d", attrs->ia_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 gid = attrs->ia_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
1523
1524 time_buf.Attributes = 0;
Jeff Laytond32c4f22007-10-18 03:05:22 -07001525
1526 /* skip mode change if it's just for clearing setuid/setgid */
1527 if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
1528 attrs->ia_valid &= ~ATTR_MODE;
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 if (attrs->ia_valid & ATTR_MODE) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001531 cFYI(1, ("Mode changed to 0x%x", attrs->ia_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 mode = attrs->ia_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
1534
Steve Frenchc18c8422007-07-18 23:21:09 +00001535 if ((pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 && (attrs->ia_valid & (ATTR_MODE | ATTR_GID | ATTR_UID)))
1537 rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode, uid, gid,
Steve French737b7582005-04-28 22:41:06 -07001538 0 /* dev_t */, cifs_sb->local_nls,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001539 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -07001540 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 else if (attrs->ia_valid & ATTR_MODE) {
Steve Frenchcdbce9c2005-11-19 21:04:52 -08001542 rc = 0;
Steve French97837582007-12-31 07:47:21 +00001543#ifdef CONFIG_CIFS_EXPERIMENTAL
1544 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
1545 rc = mode_to_acl(direntry->d_inode, full_path, mode);
Steve Frenchf6d09982008-01-08 23:18:22 +00001546 else if ((mode & S_IWUGO) == 0) {
Steve French97837582007-12-31 07:47:21 +00001547#else
Steve Frenchf6d09982008-01-08 23:18:22 +00001548 if ((mode & S_IWUGO) == 0) {
Steve French97837582007-12-31 07:47:21 +00001549#endif
Steve Frenchf6d09982008-01-08 23:18:22 +00001550 /* not writeable */
Steve French066fcb02007-03-23 00:45:08 +00001551 if ((cifsInode->cifsAttrs & ATTR_READONLY) == 0) {
1552 set_dosattr = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 time_buf.Attributes =
1554 cpu_to_le32(cifsInode->cifsAttrs |
1555 ATTR_READONLY);
Steve French066fcb02007-03-23 00:45:08 +00001556 }
Steve French5268df22007-04-06 19:28:16 +00001557 } else if (cifsInode->cifsAttrs & ATTR_READONLY) {
1558 /* If file is readonly on server, we would
1559 not be able to write to it - so if any write
1560 bit is enabled for user or group or other we
1561 need to at least try to remove r/o dos attr */
1562 set_dosattr = TRUE;
1563 time_buf.Attributes = cpu_to_le32(cifsInode->cifsAttrs &
1564 (~ATTR_READONLY));
1565 /* Windows ignores set to zero */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001566 if (time_buf.Attributes == 0)
Steve French5268df22007-04-06 19:28:16 +00001567 time_buf.Attributes |= cpu_to_le32(ATTR_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 }
Steve French97837582007-12-31 07:47:21 +00001569#ifdef CONFIG_CIFS_EXPERIMENTAL
1570 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
1571 mode_to_acl(direntry->d_inode, full_path, mode);
1572#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
1574
1575 if (attrs->ia_valid & ATTR_ATIME) {
1576 set_time = TRUE;
1577 time_buf.LastAccessTime =
1578 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_atime));
1579 } else
1580 time_buf.LastAccessTime = 0;
1581
1582 if (attrs->ia_valid & ATTR_MTIME) {
1583 set_time = TRUE;
1584 time_buf.LastWriteTime =
1585 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_mtime));
1586 } else
1587 time_buf.LastWriteTime = 0;
Steve Frenche30dcf32005-09-20 20:49:16 -07001588 /* Do not set ctime explicitly unless other time
1589 stamps are changed explicitly (i.e. by utime()
1590 since we would then have a mix of client and
1591 server times */
Steve French50c2f752007-07-13 00:33:32 +00001592
Steve Frenche30dcf32005-09-20 20:49:16 -07001593 if (set_time && (attrs->ia_valid & ATTR_CTIME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 set_time = TRUE;
Steve Frenche30dcf32005-09-20 20:49:16 -07001595 /* Although Samba throws this field away
1596 it may be useful to Windows - but we do
1597 not want to set ctime unless some other
1598 timestamp is changing */
Steve French26a21b92006-05-31 18:05:34 +00001599 cFYI(1, ("CIFS - CTIME changed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 time_buf.ChangeTime =
1601 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_ctime));
1602 } else
1603 time_buf.ChangeTime = 0;
1604
Steve French066fcb02007-03-23 00:45:08 +00001605 if (set_time || set_dosattr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 time_buf.CreationTime = 0; /* do not change */
1607 /* In the future we should experiment - try setting timestamps
1608 via Handle (SetFileInfo) instead of by path */
1609 if (!(pTcon->ses->flags & CIFS_SES_NT4))
1610 rc = CIFSSMBSetTimes(xid, pTcon, full_path, &time_buf,
Steve French737b7582005-04-28 22:41:06 -07001611 cifs_sb->local_nls,
1612 cifs_sb->mnt_cifs_flags &
1613 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 else
1615 rc = -EOPNOTSUPP;
1616
1617 if (rc == -EOPNOTSUPP) {
1618 int oplock = FALSE;
1619 __u16 netfid;
1620
1621 cFYI(1, ("calling SetFileInfo since SetPathInfo for "
1622 "times not supported by this server"));
1623 /* BB we could scan to see if we already have it open
1624 and pass in pid of opener to function */
1625 rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN,
1626 SYNCHRONIZE | FILE_WRITE_ATTRIBUTES,
1627 CREATE_NOT_DIR, &netfid, &oplock,
Steve French737b7582005-04-28 22:41:06 -07001628 NULL, cifs_sb->local_nls,
1629 cifs_sb->mnt_cifs_flags &
1630 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001631 if (rc == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 rc = CIFSSMBSetFileTimes(xid, pTcon, &time_buf,
1633 netfid);
1634 CIFSSMBClose(xid, pTcon, netfid);
1635 } else {
1636 /* BB For even older servers we could convert time_buf
1637 into old DOS style which uses two second
1638 granularity */
1639
1640 /* rc = CIFSSMBSetTimesLegacy(xid, pTcon, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001641 &time_buf, cifs_sb->local_nls); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 }
1643 }
Steve Frenche30dcf32005-09-20 20:49:16 -07001644 /* Even if error on time set, no sense failing the call if
1645 the server would set the time to a reasonable value anyway,
1646 and this check ensures that we are not being called from
1647 sys_utimes in which case we ought to fail the call back to
1648 the user when the server rejects the call */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001649 if ((rc) && (attrs->ia_valid &
Steve Frenche30dcf32005-09-20 20:49:16 -07001650 (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE)))
1651 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
1653
1654 /* do not need local check to inode_check_ok since the server does
1655 that */
1656 if (!rc)
1657 rc = inode_setattr(direntry->d_inode, attrs);
Steve Frenche30dcf32005-09-20 20:49:16 -07001658cifs_setattr_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 kfree(full_path);
1660 FreeXid(xid);
1661 return rc;
1662}
1663
Steve French99ee4db2007-02-27 05:35:17 +00001664#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665void cifs_delete_inode(struct inode *inode)
1666{
Steve French26a21b92006-05-31 18:05:34 +00001667 cFYI(1, ("In cifs_delete_inode, inode = 0x%p", inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 /* may have to add back in if and when safe distributed caching of
1669 directories added e.g. via FindNotify */
1670}
Steve French99ee4db2007-02-27 05:35:17 +00001671#endif