blob: 24df13a256e50e335895e2c6e0323556e8a75e92 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/inode.c
3 *
4 * Copyright (C) International Business Machines Corp., 2002,2005
5 * 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
32int cifs_get_inode_info_unix(struct inode **pinode,
33 const unsigned char *search_path, struct super_block *sb, int xid)
34{
35 int rc = 0;
36 FILE_UNIX_BASIC_INFO findData;
37 struct cifsTconInfo *pTcon;
38 struct inode *inode;
39 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
40 char *tmp_path;
41
42 pTcon = cifs_sb->tcon;
Steve French26a21b92006-05-31 18:05:34 +000043 cFYI(1, ("Getting info on %s", search_path));
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 /* could have done a find first instead but this returns more info */
45 rc = CIFSSMBUnixQPathInfo(xid, pTcon, search_path, &findData,
Steve French737b7582005-04-28 22:41:06 -070046 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
47 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/* dump_mem("\nUnixQPathInfo return data", &findData,
49 sizeof(findData)); */
50 if (rc) {
51 if (rc == -EREMOTE) {
52 tmp_path =
53 kmalloc(strnlen(pTcon->treeName,
54 MAX_TREE_SIZE + 1) +
55 strnlen(search_path, MAX_PATHCONF) + 1,
56 GFP_KERNEL);
57 if (tmp_path == NULL) {
58 return -ENOMEM;
59 }
60 /* have to skip first of the double backslash of
61 UNC name */
62 strncpy(tmp_path, pTcon->treeName, MAX_TREE_SIZE);
63 strncat(tmp_path, search_path, MAX_PATHCONF);
64 rc = connect_to_dfs_path(xid, pTcon->ses,
65 /* treename + */ tmp_path,
Steve French737b7582005-04-28 22:41:06 -070066 cifs_sb->local_nls,
67 cifs_sb->mnt_cifs_flags &
68 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 kfree(tmp_path);
70
71 /* BB fix up inode etc. */
72 } else if (rc) {
73 return rc;
74 }
75 } else {
76 struct cifsInodeInfo *cifsInfo;
77 __u32 type = le32_to_cpu(findData.Type);
78 __u64 num_of_bytes = le64_to_cpu(findData.NumOfBytes);
79 __u64 end_of_file = le64_to_cpu(findData.EndOfFile);
80
81 /* get new inode */
82 if (*pinode == NULL) {
83 *pinode = new_inode(sb);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -070084 if (*pinode == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return -ENOMEM;
86 /* Is an i_ino of zero legal? */
87 /* Are there sanity checks we can use to ensure that
88 the server is really filling in that field? */
Steve Frenchd0d2f2d2005-06-02 15:12:36 -070089 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 (*pinode)->i_ino =
91 (unsigned long)findData.UniqueId;
92 } /* note ino incremented to unique num in new_inode */
Steve French1b2b2122007-02-17 04:30:54 +000093 if(sb->s_flags & MS_NOATIME)
94 (*pinode)->i_flags |= S_NOATIME | S_NOCMTIME;
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 insert_inode_hash(*pinode);
97 }
98
99 inode = *pinode;
100 cifsInfo = CIFS_I(inode);
101
Steve French26a21b92006-05-31 18:05:34 +0000102 cFYI(1, ("Old time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 cifsInfo->time = jiffies;
Steve French26a21b92006-05-31 18:05:34 +0000104 cFYI(1, ("New time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /* this is ok to set on every inode revalidate */
106 atomic_set(&cifsInfo->inUse,1);
107
108 inode->i_atime =
109 cifs_NTtimeToUnix(le64_to_cpu(findData.LastAccessTime));
110 inode->i_mtime =
111 cifs_NTtimeToUnix(le64_to_cpu
112 (findData.LastModificationTime));
113 inode->i_ctime =
114 cifs_NTtimeToUnix(le64_to_cpu(findData.LastStatusChange));
115 inode->i_mode = le64_to_cpu(findData.Permissions);
Steve French3020a1f2005-11-18 11:31:10 -0800116 /* since we set the inode type below we need to mask off
117 to avoid strange results if bits set above */
118 inode->i_mode &= ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 if (type == UNIX_FILE) {
120 inode->i_mode |= S_IFREG;
121 } else if (type == UNIX_SYMLINK) {
122 inode->i_mode |= S_IFLNK;
123 } else if (type == UNIX_DIR) {
124 inode->i_mode |= S_IFDIR;
125 } else if (type == UNIX_CHARDEV) {
126 inode->i_mode |= S_IFCHR;
127 inode->i_rdev = MKDEV(le64_to_cpu(findData.DevMajor),
128 le64_to_cpu(findData.DevMinor) & MINORMASK);
129 } else if (type == UNIX_BLOCKDEV) {
130 inode->i_mode |= S_IFBLK;
131 inode->i_rdev = MKDEV(le64_to_cpu(findData.DevMajor),
132 le64_to_cpu(findData.DevMinor) & MINORMASK);
133 } else if (type == UNIX_FIFO) {
134 inode->i_mode |= S_IFIFO;
135 } else if (type == UNIX_SOCKET) {
136 inode->i_mode |= S_IFSOCK;
Steve French3020a1f2005-11-18 11:31:10 -0800137 } else {
138 /* safest to call it a file if we do not know */
139 inode->i_mode |= S_IFREG;
140 cFYI(1,("unknown type %d",type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142 inode->i_uid = le64_to_cpu(findData.Uid);
143 inode->i_gid = le64_to_cpu(findData.Gid);
144 inode->i_nlink = le64_to_cpu(findData.Nlinks);
145
Steve French3677db12007-02-26 16:46:11 +0000146 spin_lock(&inode->i_lock);
Steve French7ba52632007-02-08 18:14:13 +0000147 if (is_size_safe_to_change(cifsInfo, end_of_file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 /* can not safely change the file size here if the
149 client is writing to it due to potential races */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 i_size_write(inode, end_of_file);
151
152 /* blksize needs to be multiple of two. So safer to default to
153 blksize and blkbits set in superblock so 2**blkbits and blksize
154 will match rather than setting to:
155 (pTcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE) & 0xFFFFFE00;*/
156
157 /* This seems incredibly stupid but it turns out that i_blocks
158 is not related to (i_size / i_blksize), instead 512 byte size
159 is required for calculating num blocks */
160
161 /* 512 bytes (2**9) is the fake blocksize that must be used */
162 /* for this calculation */
163 inode->i_blocks = (512 - 1 + num_of_bytes) >> 9;
164 }
Steve French3677db12007-02-26 16:46:11 +0000165 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 if (num_of_bytes < end_of_file)
Steve French8b94bcb2005-11-11 11:41:00 -0800168 cFYI(1, ("allocation size less than end of file"));
Andrew Morton5515eff2006-03-26 01:37:53 -0800169 cFYI(1, ("Size %ld and blocks %llu",
170 (unsigned long) inode->i_size,
171 (unsigned long long)inode->i_blocks));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (S_ISREG(inode->i_mode)) {
Steve French8b94bcb2005-11-11 11:41:00 -0800173 cFYI(1, ("File inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 inode->i_op = &cifs_file_inode_ops;
Steve French8b94bcb2005-11-11 11:41:00 -0800175 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
176 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
177 inode->i_fop =
178 &cifs_file_direct_nobrl_ops;
179 else
180 inode->i_fop = &cifs_file_direct_ops;
181 } else if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
182 inode->i_fop = &cifs_file_nobrl_ops;
183 else /* not direct, send byte range locks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 inode->i_fop = &cifs_file_ops;
Steve French8b94bcb2005-11-11 11:41:00 -0800185
Steve Frenchbfa0d752005-08-31 21:50:37 -0700186 /* check if server can support readpages */
187 if(pTcon->ses->server->maxBuf <
Dave Kleikamp273d81d2006-06-01 19:41:23 +0000188 PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE)
189 inode->i_data.a_ops = &cifs_addr_ops_smallbuf;
190 else
191 inode->i_data.a_ops = &cifs_addr_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 } else if (S_ISDIR(inode->i_mode)) {
Steve French8b94bcb2005-11-11 11:41:00 -0800193 cFYI(1, ("Directory inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 inode->i_op = &cifs_dir_inode_ops;
195 inode->i_fop = &cifs_dir_ops;
196 } else if (S_ISLNK(inode->i_mode)) {
Steve French8b94bcb2005-11-11 11:41:00 -0800197 cFYI(1, ("Symbolic Link inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 inode->i_op = &cifs_symlink_inode_ops;
199 /* tmp_inode->i_fop = */ /* do not need to set to anything */
200 } else {
Steve French8b94bcb2005-11-11 11:41:00 -0800201 cFYI(1, ("Init special inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 init_special_inode(inode, inode->i_mode,
203 inode->i_rdev);
204 }
205 }
206 return rc;
207}
208
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800209static int decode_sfu_inode(struct inode * inode, __u64 size,
210 const unsigned char *path,
211 struct cifs_sb_info *cifs_sb, int xid)
212{
213 int rc;
214 int oplock = FALSE;
215 __u16 netfid;
216 struct cifsTconInfo *pTcon = cifs_sb->tcon;
Steve French86c96b42005-11-18 20:25:31 -0800217 char buf[24];
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800218 unsigned int bytes_read;
219 char * pbuf;
220
221 pbuf = buf;
222
223 if(size == 0) {
224 inode->i_mode |= S_IFIFO;
225 return 0;
226 } else if (size < 8) {
227 return -EINVAL; /* EOPNOTSUPP? */
228 }
229
230 rc = CIFSSMBOpen(xid, pTcon, path, FILE_OPEN, GENERIC_READ,
231 CREATE_NOT_DIR, &netfid, &oplock, NULL,
232 cifs_sb->local_nls,
233 cifs_sb->mnt_cifs_flags &
234 CIFS_MOUNT_MAP_SPECIAL_CHR);
235 if (rc==0) {
Steve Frenchec637e32005-12-12 20:53:18 -0800236 int buf_type = CIFS_NO_BUFFER;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800237 /* Read header */
238 rc = CIFSSMBRead(xid, pTcon,
239 netfid,
Steve French86c96b42005-11-18 20:25:31 -0800240 24 /* length */, 0 /* offset */,
Steve Frenchec637e32005-12-12 20:53:18 -0800241 &bytes_read, &pbuf, &buf_type);
Steve French86c96b42005-11-18 20:25:31 -0800242 if((rc == 0) && (bytes_read >= 8)) {
Steve French9e294f12005-11-17 16:59:21 -0800243 if(memcmp("IntxBLK", pbuf, 8) == 0) {
244 cFYI(1,("Block device"));
Steve French3020a1f2005-11-18 11:31:10 -0800245 inode->i_mode |= S_IFBLK;
Steve French86c96b42005-11-18 20:25:31 -0800246 if(bytes_read == 24) {
247 /* we have enough to decode dev num */
248 __u64 mjr; /* major */
249 __u64 mnr; /* minor */
250 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
251 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
252 inode->i_rdev = MKDEV(mjr, mnr);
253 }
Steve French9e294f12005-11-17 16:59:21 -0800254 } else if(memcmp("IntxCHR", pbuf, 8) == 0) {
255 cFYI(1,("Char device"));
Steve French3020a1f2005-11-18 11:31:10 -0800256 inode->i_mode |= S_IFCHR;
Steve French86c96b42005-11-18 20:25:31 -0800257 if(bytes_read == 24) {
258 /* we have enough to decode dev num */
259 __u64 mjr; /* major */
260 __u64 mnr; /* minor */
261 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
262 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
263 inode->i_rdev = MKDEV(mjr, mnr);
264 }
Steve French9e294f12005-11-17 16:59:21 -0800265 } else if(memcmp("IntxLNK", pbuf, 7) == 0) {
266 cFYI(1,("Symlink"));
Steve French3020a1f2005-11-18 11:31:10 -0800267 inode->i_mode |= S_IFLNK;
Steve French86c96b42005-11-18 20:25:31 -0800268 } else {
269 inode->i_mode |= S_IFREG; /* file? */
270 rc = -EOPNOTSUPP;
271 }
Steve French3020a1f2005-11-18 11:31:10 -0800272 } else {
273 inode->i_mode |= S_IFREG; /* then it is a file */
274 rc = -EOPNOTSUPP; /* or some unknown SFU type */
Steve Frenchec637e32005-12-12 20:53:18 -0800275 }
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800276 CIFSSMBClose(xid, pTcon, netfid);
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800277 }
278 return rc;
279
280}
281
Steve French9e294f12005-11-17 16:59:21 -0800282#define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */
283
284static int get_sfu_uid_mode(struct inode * inode,
285 const unsigned char *path,
286 struct cifs_sb_info *cifs_sb, int xid)
287{
Steve French3020a1f2005-11-18 11:31:10 -0800288#ifdef CONFIG_CIFS_XATTR
Steve French9e294f12005-11-17 16:59:21 -0800289 ssize_t rc;
290 char ea_value[4];
291 __u32 mode;
292
293 rc = CIFSSMBQueryEA(xid, cifs_sb->tcon, path, "SETFILEBITS",
294 ea_value, 4 /* size of buf */, cifs_sb->local_nls,
295 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
296 if(rc < 0)
297 return (int)rc;
298 else if (rc > 3) {
299 mode = le32_to_cpu(*((__le32 *)ea_value));
Steve Frenchc119b872005-11-18 12:27:27 -0800300 inode->i_mode &= ~SFBITS_MASK;
Steve French3020a1f2005-11-18 11:31:10 -0800301 cFYI(1,("special bits 0%o org mode 0%o", mode, inode->i_mode));
Steve French9e294f12005-11-17 16:59:21 -0800302 inode->i_mode = (mode & SFBITS_MASK) | inode->i_mode;
303 cFYI(1,("special mode bits 0%o", mode));
304 return 0;
305 } else {
306 return 0;
307 }
Steve French3020a1f2005-11-18 11:31:10 -0800308#else
309 return -EOPNOTSUPP;
310#endif
311
Steve French9e294f12005-11-17 16:59:21 -0800312
313}
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315int cifs_get_inode_info(struct inode **pinode,
316 const unsigned char *search_path, FILE_ALL_INFO *pfindData,
317 struct super_block *sb, int xid)
318{
319 int rc = 0;
320 struct cifsTconInfo *pTcon;
321 struct inode *inode;
322 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
323 char *tmp_path;
324 char *buf = NULL;
Steve French8d6286f2006-11-16 22:48:25 +0000325 int adjustTZ = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 pTcon = cifs_sb->tcon;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800328 cFYI(1,("Getting info on %s", search_path));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700330 if ((pfindData == NULL) && (*pinode != NULL)) {
331 if (CIFS_I(*pinode)->clientCanCacheRead) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 cFYI(1,("No need to revalidate cached inode sizes"));
333 return rc;
334 }
335 }
336
337 /* if file info not passed in then get it from server */
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700338 if (pfindData == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700340 if (buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return -ENOMEM;
342 pfindData = (FILE_ALL_INFO *)buf;
343 /* could do find first instead but this returns more info */
344 rc = CIFSSMBQPathInfo(xid, pTcon, search_path, pfindData,
Steve Frenchacf1a1b2006-10-12 03:28:28 +0000345 0 /* not legacy */,
Steve French6b8edfe2005-08-23 20:26:03 -0700346 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700347 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French6b8edfe2005-08-23 20:26:03 -0700348 /* BB optimize code so we do not make the above call
349 when server claims no NT SMB support and the above call
350 failed at least once - set flag in tcon or mount */
351 if((rc == -EOPNOTSUPP) || (rc == -EINVAL)) {
352 rc = SMBQueryInformation(xid, pTcon, search_path,
353 pfindData, cifs_sb->local_nls,
354 cifs_sb->mnt_cifs_flags &
355 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French8d6286f2006-11-16 22:48:25 +0000356 adjustTZ = TRUE;
Steve French6b8edfe2005-08-23 20:26:03 -0700357 }
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360 /* dump_mem("\nQPathInfo return data",&findData, sizeof(findData)); */
361 if (rc) {
362 if (rc == -EREMOTE) {
363 tmp_path =
364 kmalloc(strnlen
365 (pTcon->treeName,
366 MAX_TREE_SIZE + 1) +
367 strnlen(search_path, MAX_PATHCONF) + 1,
368 GFP_KERNEL);
369 if (tmp_path == NULL) {
370 kfree(buf);
371 return -ENOMEM;
372 }
373
374 strncpy(tmp_path, pTcon->treeName, MAX_TREE_SIZE);
375 strncat(tmp_path, search_path, MAX_PATHCONF);
376 rc = connect_to_dfs_path(xid, pTcon->ses,
377 /* treename + */ tmp_path,
Steve French737b7582005-04-28 22:41:06 -0700378 cifs_sb->local_nls,
379 cifs_sb->mnt_cifs_flags &
380 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 kfree(tmp_path);
382 /* BB fix up inode etc. */
383 } else if (rc) {
384 kfree(buf);
385 return rc;
386 }
387 } else {
388 struct cifsInodeInfo *cifsInfo;
389 __u32 attr = le32_to_cpu(pfindData->Attributes);
390
391 /* get new inode */
392 if (*pinode == NULL) {
393 *pinode = new_inode(sb);
Steve Frenchacf1a1b2006-10-12 03:28:28 +0000394 if (*pinode == NULL) {
395 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return -ENOMEM;
Steve Frenchacf1a1b2006-10-12 03:28:28 +0000397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 /* Is an i_ino of zero legal? Can we use that to check
399 if the server supports returning inode numbers? Are
400 there other sanity checks we can use to ensure that
401 the server is really filling in that field? */
402
403 /* We can not use the IndexNumber field by default from
404 Windows or Samba (in ALL_INFO buf) but we can request
405 it explicitly. It may not be unique presumably if
406 the server has multiple devices mounted under one
407 share */
408
409 /* There may be higher info levels that work but are
410 there Windows server or network appliances for which
411 IndexNumber field is not guaranteed unique? */
412
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700413 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 int rc1 = 0;
415 __u64 inode_num;
416
417 rc1 = CIFSGetSrvInodeNumber(xid, pTcon,
418 search_path, &inode_num,
Steve French737b7582005-04-28 22:41:06 -0700419 cifs_sb->local_nls,
420 cifs_sb->mnt_cifs_flags &
421 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700422 if (rc1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 cFYI(1,("GetSrvInodeNum rc %d", rc1));
424 /* BB EOPNOSUPP disable SERVER_INUM? */
425 } else /* do we need cast or hash to ino? */
426 (*pinode)->i_ino = inode_num;
427 } /* else ino incremented to unique num in new_inode*/
Steve French1b2b2122007-02-17 04:30:54 +0000428 if(sb->s_flags & MS_NOATIME)
429 (*pinode)->i_flags |= S_NOATIME | S_NOCMTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 insert_inode_hash(*pinode);
431 }
432 inode = *pinode;
433 cifsInfo = CIFS_I(inode);
434 cifsInfo->cifsAttrs = attr;
Steve French26a21b92006-05-31 18:05:34 +0000435 cFYI(1, ("Old time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 cifsInfo->time = jiffies;
Steve French26a21b92006-05-31 18:05:34 +0000437 cFYI(1, ("New time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 /* blksize needs to be multiple of two. So safer to default to
440 blksize and blkbits set in superblock so 2**blkbits and blksize
441 will match rather than setting to:
442 (pTcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE) & 0xFFFFFE00;*/
443
Steve French26a21b92006-05-31 18:05:34 +0000444 /* Linux can not store file creation time so ignore it */
Steve French1bd5bbc2006-09-28 03:35:57 +0000445 if(pfindData->LastAccessTime)
446 inode->i_atime = cifs_NTtimeToUnix
447 (le64_to_cpu(pfindData->LastAccessTime));
448 else /* do not need to use current_fs_time - time not stored */
449 inode->i_atime = CURRENT_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 inode->i_mtime =
451 cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastWriteTime));
452 inode->i_ctime =
453 cifs_NTtimeToUnix(le64_to_cpu(pfindData->ChangeTime));
Steve French26a21b92006-05-31 18:05:34 +0000454 cFYI(0, ("Attributes came in as 0x%x", attr));
Steve French8d6286f2006-11-16 22:48:25 +0000455 if(adjustTZ && (pTcon->ses) && (pTcon->ses->server)) {
456 inode->i_ctime.tv_sec += pTcon->ses->server->timeAdj;
457 inode->i_mtime.tv_sec += pTcon->ses->server->timeAdj;
458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 /* set default mode. will override for dirs below */
461 if (atomic_read(&cifsInfo->inUse) == 0)
462 /* new inode, can safely set these fields */
463 inode->i_mode = cifs_sb->mnt_file_mode;
Steve French3020a1f2005-11-18 11:31:10 -0800464 else /* since we set the inode type below we need to mask off
465 to avoid strange results if type changes and both get orred in */
466 inode->i_mode &= ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467/* if (attr & ATTR_REPARSE) */
468 /* We no longer handle these as symlinks because we could not
469 follow them due to the absolute path with drive letter */
470 if (attr & ATTR_DIRECTORY) {
471 /* override default perms since we do not do byte range locking
472 on dirs */
473 inode->i_mode = cifs_sb->mnt_dir_mode;
474 inode->i_mode |= S_IFDIR;
Steve Frencheda3c0292005-07-21 15:20:28 -0700475 } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) &&
476 (cifsInfo->cifsAttrs & ATTR_SYSTEM) &&
477 /* No need to le64 convert size of zero */
478 (pfindData->EndOfFile == 0)) {
479 inode->i_mode = cifs_sb->mnt_file_mode;
480 inode->i_mode |= S_IFIFO;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800481/* BB Finish for SFU style symlinks and devices */
482 } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) &&
483 (cifsInfo->cifsAttrs & ATTR_SYSTEM)) {
484 if (decode_sfu_inode(inode,
485 le64_to_cpu(pfindData->EndOfFile),
486 search_path,
487 cifs_sb, xid)) {
488 cFYI(1,("Unrecognized sfu inode type"));
489 }
Steve French3020a1f2005-11-18 11:31:10 -0800490 cFYI(1,("sfu mode 0%o",inode->i_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 } else {
492 inode->i_mode |= S_IFREG;
493 /* treat the dos attribute of read-only as read-only
494 mode e.g. 555 */
495 if (cifsInfo->cifsAttrs & ATTR_READONLY)
496 inode->i_mode &= ~(S_IWUGO);
497 /* BB add code here -
498 validate if device or weird share or device type? */
499 }
Steve French3677db12007-02-26 16:46:11 +0000500
501 spin_lock(&inode->i_lock);
Steve French7ba52632007-02-08 18:14:13 +0000502 if (is_size_safe_to_change(cifsInfo, le64_to_cpu(pfindData->EndOfFile))) {
503 /* can not safely shrink the file size here if the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 client is writing to it due to potential races */
505 i_size_write(inode,le64_to_cpu(pfindData->EndOfFile));
506
507 /* 512 bytes (2**9) is the fake blocksize that must be
508 used for this calculation */
509 inode->i_blocks = (512 - 1 + le64_to_cpu(
510 pfindData->AllocationSize)) >> 9;
511 }
Steve French3677db12007-02-26 16:46:11 +0000512 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 inode->i_nlink = le32_to_cpu(pfindData->NumberOfLinks);
515
516 /* BB fill in uid and gid here? with help from winbind?
517 or retrieve from NTFS stream extended attribute */
Steve French9e294f12005-11-17 16:59:21 -0800518 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
519 /* fill in uid, gid, mode from server ACL */
520 get_sfu_uid_mode(inode, search_path, cifs_sb, xid);
521 } else if (atomic_read(&cifsInfo->inUse) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 inode->i_uid = cifs_sb->mnt_uid;
523 inode->i_gid = cifs_sb->mnt_gid;
524 /* set so we do not keep refreshing these fields with
525 bad data after user has changed them in memory */
526 atomic_set(&cifsInfo->inUse,1);
527 }
528
529 if (S_ISREG(inode->i_mode)) {
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800530 cFYI(1, ("File inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 inode->i_op = &cifs_file_inode_ops;
Steve French8b94bcb2005-11-11 11:41:00 -0800532 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
533 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
534 inode->i_fop =
535 &cifs_file_direct_nobrl_ops;
536 else
537 inode->i_fop = &cifs_file_direct_ops;
538 } else if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
539 inode->i_fop = &cifs_file_nobrl_ops;
540 else /* not direct, send byte range locks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 inode->i_fop = &cifs_file_ops;
Steve French8b94bcb2005-11-11 11:41:00 -0800542
Steve Frenchbfa0d752005-08-31 21:50:37 -0700543 if(pTcon->ses->server->maxBuf <
Dave Kleikamp273d81d2006-06-01 19:41:23 +0000544 PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE)
545 inode->i_data.a_ops = &cifs_addr_ops_smallbuf;
546 else
547 inode->i_data.a_ops = &cifs_addr_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 } else if (S_ISDIR(inode->i_mode)) {
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800549 cFYI(1, ("Directory inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 inode->i_op = &cifs_dir_inode_ops;
551 inode->i_fop = &cifs_dir_ops;
552 } else if (S_ISLNK(inode->i_mode)) {
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800553 cFYI(1, ("Symbolic Link inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 inode->i_op = &cifs_symlink_inode_ops;
555 } else {
556 init_special_inode(inode, inode->i_mode,
557 inode->i_rdev);
558 }
559 }
560 kfree(buf);
561 return rc;
562}
563
564/* gets root inode */
565void cifs_read_inode(struct inode *inode)
566{
567 int xid;
568 struct cifs_sb_info *cifs_sb;
569
570 cifs_sb = CIFS_SB(inode->i_sb);
571 xid = GetXid();
572 if (cifs_sb->tcon->ses->capabilities & CAP_UNIX)
573 cifs_get_inode_info_unix(&inode, "", inode->i_sb,xid);
574 else
575 cifs_get_inode_info(&inode, "", NULL, inode->i_sb,xid);
576 /* can not call macro FreeXid here since in a void func */
577 _FreeXid(xid);
578}
579
580int cifs_unlink(struct inode *inode, struct dentry *direntry)
581{
582 int rc = 0;
583 int xid;
584 struct cifs_sb_info *cifs_sb;
585 struct cifsTconInfo *pTcon;
586 char *full_path = NULL;
587 struct cifsInodeInfo *cifsInode;
588 FILE_BASIC_INFO *pinfo_buf;
589
Steve French06bcfed2006-03-31 22:43:50 +0000590 cFYI(1, ("cifs_unlink, inode = 0x%p", inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 xid = GetXid();
593
Steve French6910ab32006-03-31 03:37:08 +0000594 if(inode)
595 cifs_sb = CIFS_SB(inode->i_sb);
596 else
Steve French06bcfed2006-03-31 22:43:50 +0000597 cifs_sb = CIFS_SB(direntry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 pTcon = cifs_sb->tcon;
599
600 /* Unlink can be called from rename so we can not grab the sem here
601 since we deadlock otherwise */
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800602/* mutex_lock(&direntry->d_sb->s_vfs_rename_mutex);*/
Steve French7f573562005-08-30 11:32:14 -0700603 full_path = build_path_from_dentry(direntry);
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800604/* mutex_unlock(&direntry->d_sb->s_vfs_rename_mutex);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (full_path == NULL) {
606 FreeXid(xid);
607 return -ENOMEM;
608 }
Steve French737b7582005-04-28 22:41:06 -0700609 rc = CIFSSMBDelFile(xid, pTcon, full_path, cifs_sb->local_nls,
610 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 if (!rc) {
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700613 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700614 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 } else if (rc == -ENOENT) {
616 d_drop(direntry);
617 } else if (rc == -ETXTBSY) {
618 int oplock = FALSE;
619 __u16 netfid;
620
621 rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN, DELETE,
622 CREATE_NOT_DIR | CREATE_DELETE_ON_CLOSE,
Steve French737b7582005-04-28 22:41:06 -0700623 &netfid, &oplock, NULL, cifs_sb->local_nls,
624 cifs_sb->mnt_cifs_flags &
625 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (rc==0) {
627 CIFSSMBRenameOpenFile(xid, pTcon, netfid, NULL,
Steve French737b7582005-04-28 22:41:06 -0700628 cifs_sb->local_nls,
629 cifs_sb->mnt_cifs_flags &
630 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 CIFSSMBClose(xid, pTcon, netfid);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700632 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700633 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635 } else if (rc == -EACCES) {
636 /* try only if r/o attribute set in local lookup data? */
Eric Sesterhenna048d7a2006-02-21 22:33:09 +0000637 pinfo_buf = kzalloc(sizeof(FILE_BASIC_INFO), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (pinfo_buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 /* ATTRS set to normal clears r/o bit */
640 pinfo_buf->Attributes = cpu_to_le32(ATTR_NORMAL);
641 if (!(pTcon->ses->flags & CIFS_SES_NT4))
642 rc = CIFSSMBSetTimes(xid, pTcon, full_path,
643 pinfo_buf,
Steve French737b7582005-04-28 22:41:06 -0700644 cifs_sb->local_nls,
645 cifs_sb->mnt_cifs_flags &
646 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 else
648 rc = -EOPNOTSUPP;
649
650 if (rc == -EOPNOTSUPP) {
651 int oplock = FALSE;
652 __u16 netfid;
653 /* rc = CIFSSMBSetAttrLegacy(xid, pTcon,
654 full_path,
655 (__u16)ATTR_NORMAL,
656 cifs_sb->local_nls);
657 For some strange reason it seems that NT4 eats the
658 old setattr call without actually setting the
659 attributes so on to the third attempted workaround
660 */
661
662 /* BB could scan to see if we already have it open
663 and pass in pid of opener to function */
664 rc = CIFSSMBOpen(xid, pTcon, full_path,
665 FILE_OPEN, SYNCHRONIZE |
666 FILE_WRITE_ATTRIBUTES, 0,
667 &netfid, &oplock, NULL,
Steve French737b7582005-04-28 22:41:06 -0700668 cifs_sb->local_nls,
669 cifs_sb->mnt_cifs_flags &
670 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (rc==0) {
672 rc = CIFSSMBSetFileTimes(xid, pTcon,
673 pinfo_buf,
674 netfid);
675 CIFSSMBClose(xid, pTcon, netfid);
676 }
677 }
678 kfree(pinfo_buf);
679 }
680 if (rc==0) {
Steve French737b7582005-04-28 22:41:06 -0700681 rc = CIFSSMBDelFile(xid, pTcon, full_path,
682 cifs_sb->local_nls,
683 cifs_sb->mnt_cifs_flags &
684 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (!rc) {
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700686 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700687 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 } else if (rc == -ETXTBSY) {
689 int oplock = FALSE;
690 __u16 netfid;
691
692 rc = CIFSSMBOpen(xid, pTcon, full_path,
693 FILE_OPEN, DELETE,
694 CREATE_NOT_DIR |
695 CREATE_DELETE_ON_CLOSE,
696 &netfid, &oplock, NULL,
Steve French737b7582005-04-28 22:41:06 -0700697 cifs_sb->local_nls,
698 cifs_sb->mnt_cifs_flags &
699 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (rc==0) {
701 CIFSSMBRenameOpenFile(xid, pTcon,
702 netfid, NULL,
Steve French737b7582005-04-28 22:41:06 -0700703 cifs_sb->local_nls,
704 cifs_sb->mnt_cifs_flags &
705 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 CIFSSMBClose(xid, pTcon, netfid);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700707 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700708 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
710 /* BB if rc = -ETXTBUSY goto the rename logic BB */
711 }
712 }
713 }
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700714 if (direntry->d_inode) {
Steve Frenchb2aeb9d2005-05-17 13:16:18 -0500715 cifsInode = CIFS_I(direntry->d_inode);
716 cifsInode->time = 0; /* will force revalidate to get info
717 when needed */
718 direntry->d_inode->i_ctime = current_fs_time(inode->i_sb);
719 }
Steve French06bcfed2006-03-31 22:43:50 +0000720 if(inode) {
721 inode->i_ctime = inode->i_mtime = current_fs_time(inode->i_sb);
722 cifsInode = CIFS_I(inode);
723 cifsInode->time = 0; /* force revalidate of dir as well */
724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 kfree(full_path);
727 FreeXid(xid);
728 return rc;
729}
730
731int cifs_mkdir(struct inode *inode, struct dentry *direntry, int mode)
732{
733 int rc = 0;
734 int xid;
735 struct cifs_sb_info *cifs_sb;
736 struct cifsTconInfo *pTcon;
737 char *full_path = NULL;
738 struct inode *newinode = NULL;
739
Steve French6473a552005-11-29 20:20:10 -0800740 cFYI(1, ("In cifs_mkdir, mode = 0x%x inode = 0x%p", mode, inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 xid = GetXid();
743
744 cifs_sb = CIFS_SB(inode->i_sb);
745 pTcon = cifs_sb->tcon;
746
Steve French7f573562005-08-30 11:32:14 -0700747 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (full_path == NULL) {
749 FreeXid(xid);
750 return -ENOMEM;
751 }
752 /* BB add setting the equivalent of mode via CreateX w/ACLs */
Steve French737b7582005-04-28 22:41:06 -0700753 rc = CIFSSMBMkDir(xid, pTcon, full_path, cifs_sb->local_nls,
754 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (rc) {
Steve French26a21b92006-05-31 18:05:34 +0000756 cFYI(1, ("cifs_mkdir returned 0x%x", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 d_drop(direntry);
758 } else {
Dave Hansend8c76e62006-09-30 23:29:04 -0700759 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (pTcon->ses->capabilities & CAP_UNIX)
761 rc = cifs_get_inode_info_unix(&newinode, full_path,
762 inode->i_sb,xid);
763 else
764 rc = cifs_get_inode_info(&newinode, full_path, NULL,
765 inode->i_sb,xid);
766
Steve Frenchb92327f2005-08-22 20:09:43 -0700767 if (pTcon->nocase)
768 direntry->d_op = &cifs_ci_dentry_ops;
769 else
770 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 d_instantiate(direntry, newinode);
772 if (direntry->d_inode)
773 direntry->d_inode->i_nlink = 2;
774 if (cifs_sb->tcon->ses->capabilities & CAP_UNIX)
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700775 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 CIFSSMBUnixSetPerms(xid, pTcon, full_path,
777 mode,
Steve French83451872005-12-01 17:12:59 -0800778 (__u64)current->fsuid,
779 (__u64)current->fsgid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 0 /* dev_t */,
Steve French737b7582005-04-28 22:41:06 -0700781 cifs_sb->local_nls,
782 cifs_sb->mnt_cifs_flags &
783 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 } else {
785 CIFSSMBUnixSetPerms(xid, pTcon, full_path,
786 mode, (__u64)-1,
787 (__u64)-1, 0 /* dev_t */,
Steve French737b7582005-04-28 22:41:06 -0700788 cifs_sb->local_nls,
789 cifs_sb->mnt_cifs_flags &
790 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
792 else {
793 /* BB to be implemented via Windows secrty descriptors
794 eg CIFSSMBWinSetPerms(xid, pTcon, full_path, mode,
795 -1, -1, local_nls); */
Steve French6473a552005-11-29 20:20:10 -0800796 if(direntry->d_inode) {
797 direntry->d_inode->i_mode = mode;
Steve French25741b32005-11-29 22:38:43 -0800798 direntry->d_inode->i_mode |= S_IFDIR;
Steve French6473a552005-11-29 20:20:10 -0800799 if(cifs_sb->mnt_cifs_flags &
800 CIFS_MOUNT_SET_UID) {
801 direntry->d_inode->i_uid =
802 current->fsuid;
803 direntry->d_inode->i_gid =
804 current->fsgid;
805 }
806 }
Steve French2a138ebb2005-11-29 21:22:19 -0800807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
809 kfree(full_path);
810 FreeXid(xid);
811 return rc;
812}
813
814int cifs_rmdir(struct inode *inode, struct dentry *direntry)
815{
816 int rc = 0;
817 int xid;
818 struct cifs_sb_info *cifs_sb;
819 struct cifsTconInfo *pTcon;
820 char *full_path = NULL;
821 struct cifsInodeInfo *cifsInode;
822
Steve French26a21b92006-05-31 18:05:34 +0000823 cFYI(1, ("cifs_rmdir, inode = 0x%p", inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 xid = GetXid();
826
827 cifs_sb = CIFS_SB(inode->i_sb);
828 pTcon = cifs_sb->tcon;
829
Steve French7f573562005-08-30 11:32:14 -0700830 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (full_path == NULL) {
832 FreeXid(xid);
833 return -ENOMEM;
834 }
835
Steve French737b7582005-04-28 22:41:06 -0700836 rc = CIFSSMBRmDir(xid, pTcon, full_path, cifs_sb->local_nls,
837 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 if (!rc) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700840 drop_nlink(inode);
Steve French3677db12007-02-26 16:46:11 +0000841 spin_lock(&direntry->d_inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 i_size_write(direntry->d_inode,0);
Dave Hansence71ec32006-09-30 23:29:06 -0700843 clear_nlink(direntry->d_inode);
Steve French3677db12007-02-26 16:46:11 +0000844 spin_unlock(&direntry->d_inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846
847 cifsInode = CIFS_I(direntry->d_inode);
848 cifsInode->time = 0; /* force revalidate to go get info when
849 needed */
850 direntry->d_inode->i_ctime = inode->i_ctime = inode->i_mtime =
851 current_fs_time(inode->i_sb);
852
853 kfree(full_path);
854 FreeXid(xid);
855 return rc;
856}
857
858int cifs_rename(struct inode *source_inode, struct dentry *source_direntry,
859 struct inode *target_inode, struct dentry *target_direntry)
860{
861 char *fromName;
862 char *toName;
863 struct cifs_sb_info *cifs_sb_source;
864 struct cifs_sb_info *cifs_sb_target;
865 struct cifsTconInfo *pTcon;
866 int xid;
867 int rc = 0;
868
869 xid = GetXid();
870
871 cifs_sb_target = CIFS_SB(target_inode->i_sb);
872 cifs_sb_source = CIFS_SB(source_inode->i_sb);
873 pTcon = cifs_sb_source->tcon;
874
875 if (pTcon != cifs_sb_target->tcon) {
876 FreeXid(xid);
877 return -EXDEV; /* BB actually could be allowed if same server,
878 but different share.
879 Might eventually add support for this */
880 }
881
882 /* we already have the rename sem so we do not need to grab it again
883 here to protect the path integrity */
Steve French7f573562005-08-30 11:32:14 -0700884 fromName = build_path_from_dentry(source_direntry);
885 toName = build_path_from_dentry(target_direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if ((fromName == NULL) || (toName == NULL)) {
887 rc = -ENOMEM;
888 goto cifs_rename_exit;
889 }
890
891 rc = CIFSSMBRename(xid, pTcon, fromName, toName,
Steve French737b7582005-04-28 22:41:06 -0700892 cifs_sb_source->local_nls,
893 cifs_sb_source->mnt_cifs_flags &
894 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (rc == -EEXIST) {
896 /* check if they are the same file because rename of hardlinked
897 files is a noop */
898 FILE_UNIX_BASIC_INFO *info_buf_source;
899 FILE_UNIX_BASIC_INFO *info_buf_target;
900
901 info_buf_source =
902 kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL);
903 if (info_buf_source != NULL) {
904 info_buf_target = info_buf_source + 1;
Steve French8e87d4d2006-11-02 03:45:24 +0000905 if (pTcon->ses->capabilities & CAP_UNIX)
906 rc = CIFSSMBUnixQPathInfo(xid, pTcon, fromName,
907 info_buf_source,
908 cifs_sb_source->local_nls,
909 cifs_sb_source->mnt_cifs_flags &
910 CIFS_MOUNT_MAP_SPECIAL_CHR);
911 /* else rc is still EEXIST so will fall through to
912 unlink the target and retry rename */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 if (rc == 0) {
914 rc = CIFSSMBUnixQPathInfo(xid, pTcon, toName,
915 info_buf_target,
Steve French737b7582005-04-28 22:41:06 -0700916 cifs_sb_target->local_nls,
917 /* remap based on source sb */
918 cifs_sb_source->mnt_cifs_flags &
919 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
921 if ((rc == 0) &&
922 (info_buf_source->UniqueId ==
923 info_buf_target->UniqueId)) {
924 /* do not rename since the files are hardlinked which
925 is a noop */
926 } else {
927 /* we either can not tell the files are hardlinked
928 (as with Windows servers) or files are not
929 hardlinked so delete the target manually before
930 renaming to follow POSIX rather than Windows
931 semantics */
932 cifs_unlink(target_inode, target_direntry);
933 rc = CIFSSMBRename(xid, pTcon, fromName,
934 toName,
Steve French737b7582005-04-28 22:41:06 -0700935 cifs_sb_source->local_nls,
936 cifs_sb_source->mnt_cifs_flags
937 & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939 kfree(info_buf_source);
940 } /* if we can not get memory just leave rc as EEXIST */
941 }
942
943 if (rc) {
944 cFYI(1, ("rename rc %d", rc));
945 }
946
947 if ((rc == -EIO) || (rc == -EEXIST)) {
948 int oplock = FALSE;
949 __u16 netfid;
950
951 /* BB FIXME Is Generic Read correct for rename? */
952 /* if renaming directory - we should not say CREATE_NOT_DIR,
953 need to test renaming open directory, also GENERIC_READ
954 might not right be right access to request */
955 rc = CIFSSMBOpen(xid, pTcon, fromName, FILE_OPEN, GENERIC_READ,
956 CREATE_NOT_DIR, &netfid, &oplock, NULL,
Steve French737b7582005-04-28 22:41:06 -0700957 cifs_sb_source->local_nls,
958 cifs_sb_source->mnt_cifs_flags &
959 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (rc==0) {
Steve French8e87d4d2006-11-02 03:45:24 +0000961 rc = CIFSSMBRenameOpenFile(xid, pTcon, netfid, toName,
Steve French737b7582005-04-28 22:41:06 -0700962 cifs_sb_source->local_nls,
963 cifs_sb_source->mnt_cifs_flags &
964 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 CIFSSMBClose(xid, pTcon, netfid);
966 }
967 }
968
969cifs_rename_exit:
970 kfree(fromName);
971 kfree(toName);
972 FreeXid(xid);
973 return rc;
974}
975
976int cifs_revalidate(struct dentry *direntry)
977{
978 int xid;
979 int rc = 0;
980 char *full_path;
981 struct cifs_sb_info *cifs_sb;
982 struct cifsInodeInfo *cifsInode;
983 loff_t local_size;
984 struct timespec local_mtime;
985 int invalidate_inode = FALSE;
986
987 if (direntry->d_inode == NULL)
988 return -ENOENT;
989
990 cifsInode = CIFS_I(direntry->d_inode);
991
992 if (cifsInode == NULL)
993 return -ENOENT;
994
995 /* no sense revalidating inode info on file that no one can write */
996 if (CIFS_I(direntry->d_inode)->clientCanCacheRead)
997 return rc;
998
999 xid = GetXid();
1000
1001 cifs_sb = CIFS_SB(direntry->d_sb);
1002
1003 /* can not safely grab the rename sem here if rename calls revalidate
1004 since that would deadlock */
Steve French7f573562005-08-30 11:32:14 -07001005 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 if (full_path == NULL) {
1007 FreeXid(xid);
1008 return -ENOMEM;
1009 }
1010 cFYI(1, ("Revalidate: %s inode 0x%p count %d dentry: 0x%p d_time %ld "
1011 "jiffies %ld", full_path, direntry->d_inode,
1012 direntry->d_inode->i_count.counter, direntry,
1013 direntry->d_time, jiffies));
1014
1015 if (cifsInode->time == 0) {
1016 /* was set to zero previously to force revalidate */
1017 } else if (time_before(jiffies, cifsInode->time + HZ) &&
1018 lookupCacheEnabled) {
1019 if ((S_ISREG(direntry->d_inode->i_mode) == 0) ||
1020 (direntry->d_inode->i_nlink == 1)) {
1021 kfree(full_path);
1022 FreeXid(xid);
1023 return rc;
1024 } else {
1025 cFYI(1, ("Have to revalidate file due to hardlinks"));
1026 }
1027 }
1028
1029 /* save mtime and size */
1030 local_mtime = direntry->d_inode->i_mtime;
1031 local_size = direntry->d_inode->i_size;
1032
1033 if (cifs_sb->tcon->ses->capabilities & CAP_UNIX) {
1034 rc = cifs_get_inode_info_unix(&direntry->d_inode, full_path,
1035 direntry->d_sb,xid);
1036 if (rc) {
1037 cFYI(1, ("error on getting revalidate info %d", rc));
1038/* if (rc != -ENOENT)
1039 rc = 0; */ /* BB should we cache info on
1040 certain errors? */
1041 }
1042 } else {
1043 rc = cifs_get_inode_info(&direntry->d_inode, full_path, NULL,
1044 direntry->d_sb,xid);
1045 if (rc) {
1046 cFYI(1, ("error on getting revalidate info %d", rc));
1047/* if (rc != -ENOENT)
1048 rc = 0; */ /* BB should we cache info on
1049 certain errors? */
1050 }
1051 }
1052 /* should we remap certain errors, access denied?, to zero */
1053
1054 /* if not oplocked, we invalidate inode pages if mtime or file size
1055 had changed on server */
1056
1057 if (timespec_equal(&local_mtime,&direntry->d_inode->i_mtime) &&
1058 (local_size == direntry->d_inode->i_size)) {
1059 cFYI(1, ("cifs_revalidate - inode unchanged"));
1060 } else {
1061 /* file may have changed on server */
1062 if (cifsInode->clientCanCacheRead) {
1063 /* no need to invalidate inode pages since we were the
1064 only ones who could have modified the file and the
1065 server copy is staler than ours */
1066 } else {
1067 invalidate_inode = TRUE;
1068 }
1069 }
1070
1071 /* can not grab this sem since kernel filesys locking documentation
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001072 indicates i_mutex may be taken by the kernel on lookup and rename
1073 which could deadlock if we grab the i_mutex here as well */
1074/* mutex_lock(&direntry->d_inode->i_mutex);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 /* need to write out dirty pages here */
1076 if (direntry->d_inode->i_mapping) {
1077 /* do we need to lock inode until after invalidate completes
1078 below? */
1079 filemap_fdatawrite(direntry->d_inode->i_mapping);
1080 }
1081 if (invalidate_inode) {
Steve French3abb9272005-11-28 08:16:13 -08001082 /* shrink_dcache not necessary now that cifs dentry ops
1083 are exported for negative dentries */
1084/* if(S_ISDIR(direntry->d_inode->i_mode))
1085 shrink_dcache_parent(direntry); */
1086 if (S_ISREG(direntry->d_inode->i_mode)) {
1087 if (direntry->d_inode->i_mapping)
1088 filemap_fdatawait(direntry->d_inode->i_mapping);
1089 /* may eventually have to do this for open files too */
1090 if (list_empty(&(cifsInode->openFileList))) {
1091 /* changed on server - flush read ahead pages */
1092 cFYI(1, ("Invalidating read ahead data on "
1093 "closed file"));
1094 invalidate_remote_inode(direntry->d_inode);
1095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
1097 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001098/* mutex_unlock(&direntry->d_inode->i_mutex); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 kfree(full_path);
1101 FreeXid(xid);
1102 return rc;
1103}
1104
1105int cifs_getattr(struct vfsmount *mnt, struct dentry *dentry,
1106 struct kstat *stat)
1107{
1108 int err = cifs_revalidate(dentry);
Steve French5fe14c82006-11-07 19:26:33 +00001109 if (!err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 generic_fillattr(dentry->d_inode, stat);
Steve French5fe14c82006-11-07 19:26:33 +00001111 stat->blksize = CIFS_MAX_MSGSIZE;
1112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return err;
1114}
1115
1116static int cifs_truncate_page(struct address_space *mapping, loff_t from)
1117{
1118 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1119 unsigned offset = from & (PAGE_CACHE_SIZE - 1);
1120 struct page *page;
1121 char *kaddr;
1122 int rc = 0;
1123
1124 page = grab_cache_page(mapping, index);
1125 if (!page)
1126 return -ENOMEM;
1127
1128 kaddr = kmap_atomic(page, KM_USER0);
1129 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
1130 flush_dcache_page(page);
1131 kunmap_atomic(kaddr, KM_USER0);
1132 unlock_page(page);
1133 page_cache_release(page);
1134 return rc;
1135}
1136
Steve French3677db12007-02-26 16:46:11 +00001137int cifs_vmtruncate(struct inode * inode, loff_t offset)
1138{
1139 struct address_space *mapping = inode->i_mapping;
1140 unsigned long limit;
1141
1142 if (inode->i_size < offset)
1143 goto do_expand;
1144 /*
1145 * truncation of in-use swapfiles is disallowed - it would cause
1146 * subsequent swapout to scribble on the now-freed blocks.
1147 */
1148 if (IS_SWAPFILE(inode))
1149 goto out_busy;
1150 spin_lock(&inode->i_lock);
1151 i_size_write(inode, offset);
1152 spin_unlock(&inode->i_lock);
1153 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
1154 truncate_inode_pages(mapping, offset);
1155 goto out_truncate;
1156
1157do_expand:
1158 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
1159 if (limit != RLIM_INFINITY && offset > limit)
1160 goto out_sig;
1161 if (offset > inode->i_sb->s_maxbytes)
1162 goto out_big;
1163 i_size_write(inode, offset);
1164
1165out_truncate:
1166 if (inode->i_op && inode->i_op->truncate)
1167 inode->i_op->truncate(inode);
1168 return 0;
1169out_sig:
1170 send_sig(SIGXFSZ, current, 0);
1171out_big:
1172 return -EFBIG;
1173out_busy:
1174 return -ETXTBSY;
1175}
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177int cifs_setattr(struct dentry *direntry, struct iattr *attrs)
1178{
1179 int xid;
1180 struct cifs_sb_info *cifs_sb;
1181 struct cifsTconInfo *pTcon;
1182 char *full_path = NULL;
1183 int rc = -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 struct cifsFileInfo *open_file = NULL;
1185 FILE_BASIC_INFO time_buf;
1186 int set_time = FALSE;
1187 __u64 mode = 0xFFFFFFFFFFFFFFFFULL;
1188 __u64 uid = 0xFFFFFFFFFFFFFFFFULL;
1189 __u64 gid = 0xFFFFFFFFFFFFFFFFULL;
1190 struct cifsInodeInfo *cifsInode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 xid = GetXid();
1193
Steve French39798772006-05-31 22:40:51 +00001194 cFYI(1, ("setattr on file %s attrs->iavalid 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 direntry->d_name.name, attrs->ia_valid));
Steve French6473a552005-11-29 20:20:10 -08001196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 cifs_sb = CIFS_SB(direntry->d_inode->i_sb);
1198 pTcon = cifs_sb->tcon;
1199
Steve French2a138ebb2005-11-29 21:22:19 -08001200 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) == 0) {
Steve French6473a552005-11-29 20:20:10 -08001201 /* check if we have permission to change attrs */
1202 rc = inode_change_ok(direntry->d_inode, attrs);
1203 if(rc < 0) {
1204 FreeXid(xid);
1205 return rc;
1206 } else
1207 rc = 0;
1208 }
1209
Steve French7f573562005-08-30 11:32:14 -07001210 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (full_path == NULL) {
1212 FreeXid(xid);
1213 return -ENOMEM;
1214 }
1215 cifsInode = CIFS_I(direntry->d_inode);
1216
1217 /* BB check if we need to refresh inode from server now ? BB */
1218
1219 /* need to flush data before changing file size on server */
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -08001220 filemap_write_and_wait(direntry->d_inode->i_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 if (attrs->ia_valid & ATTR_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 /* To avoid spurious oplock breaks from server, in the case of
1224 inodes that we already have open, avoid doing path based
1225 setting of file size if we can do it by handle.
1226 This keeps our caching token (oplock) and avoids timeouts
1227 when the local oplock break takes longer to flush
1228 writebehind data than the SMB timeout for the SetPathInfo
1229 request would allow */
Steve French39798772006-05-31 22:40:51 +00001230
Steve French6148a742005-10-05 12:23:19 -07001231 open_file = find_writable_file(cifsInode);
1232 if (open_file) {
1233 __u16 nfid = open_file->netfid;
1234 __u32 npid = open_file->pid;
1235 rc = CIFSSMBSetFileSize(xid, pTcon, attrs->ia_size,
1236 nfid, npid, FALSE);
Steve French23e7dd72005-10-20 13:44:56 -07001237 atomic_dec(&open_file->wrtPending);
Steve French6148a742005-10-05 12:23:19 -07001238 cFYI(1,("SetFSize for attrs rc = %d", rc));
Steve French083d3a22006-03-03 09:53:36 +00001239 if((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
Steve French6148a742005-10-05 12:23:19 -07001240 int bytes_written;
1241 rc = CIFSSMBWrite(xid, pTcon,
1242 nfid, 0, attrs->ia_size,
1243 &bytes_written, NULL, NULL,
1244 1 /* 45 seconds */);
1245 cFYI(1,("Wrt seteof rc %d", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
Steve French6473a552005-11-29 20:20:10 -08001247 } else
1248 rc = -EINVAL;
1249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 if (rc != 0) {
1251 /* Set file size by pathname rather than by handle
1252 either because no valid, writeable file handle for
1253 it was found or because there was an error setting
1254 it by handle */
1255 rc = CIFSSMBSetEOF(xid, pTcon, full_path,
1256 attrs->ia_size, FALSE,
Steve French737b7582005-04-28 22:41:06 -07001257 cifs_sb->local_nls,
1258 cifs_sb->mnt_cifs_flags &
1259 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenche30dcf32005-09-20 20:49:16 -07001260 cFYI(1, ("SetEOF by path (setattrs) rc = %d", rc));
Steve French083d3a22006-03-03 09:53:36 +00001261 if((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001262 __u16 netfid;
1263 int oplock = FALSE;
1264
1265 rc = SMBLegacyOpen(xid, pTcon, full_path,
1266 FILE_OPEN,
1267 SYNCHRONIZE | FILE_WRITE_ATTRIBUTES,
1268 CREATE_NOT_DIR, &netfid, &oplock,
1269 NULL, cifs_sb->local_nls,
1270 cifs_sb->mnt_cifs_flags &
1271 CIFS_MOUNT_MAP_SPECIAL_CHR);
1272 if (rc==0) {
1273 int bytes_written;
1274 rc = CIFSSMBWrite(xid, pTcon,
1275 netfid, 0,
1276 attrs->ia_size,
1277 &bytes_written, NULL,
1278 NULL, 1 /* 45 sec */);
1279 cFYI(1,("wrt seteof rc %d",rc));
1280 CIFSSMBClose(xid, pTcon, netfid);
1281 }
1282
1283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 }
1285
1286 /* Server is ok setting allocation size implicitly - no need
1287 to call:
1288 CIFSSMBSetEOF(xid, pTcon, full_path, attrs->ia_size, TRUE,
1289 cifs_sb->local_nls);
1290 */
1291
1292 if (rc == 0) {
Steve French3677db12007-02-26 16:46:11 +00001293 rc = cifs_vmtruncate(direntry->d_inode, attrs->ia_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 cifs_truncate_page(direntry->d_inode->i_mapping,
1295 direntry->d_inode->i_size);
Steve Frenche30dcf32005-09-20 20:49:16 -07001296 } else
1297 goto cifs_setattr_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299 if (attrs->ia_valid & ATTR_UID) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001300 cFYI(1, ("UID changed to %d", attrs->ia_uid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 uid = attrs->ia_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
1303 if (attrs->ia_valid & ATTR_GID) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001304 cFYI(1, ("GID changed to %d", attrs->ia_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 gid = attrs->ia_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 }
1307
1308 time_buf.Attributes = 0;
1309 if (attrs->ia_valid & ATTR_MODE) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001310 cFYI(1, ("Mode changed to 0x%x", attrs->ia_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 mode = attrs->ia_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 }
1313
1314 if ((cifs_sb->tcon->ses->capabilities & CAP_UNIX)
1315 && (attrs->ia_valid & (ATTR_MODE | ATTR_GID | ATTR_UID)))
1316 rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode, uid, gid,
Steve French737b7582005-04-28 22:41:06 -07001317 0 /* dev_t */, cifs_sb->local_nls,
1318 cifs_sb->mnt_cifs_flags &
1319 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 else if (attrs->ia_valid & ATTR_MODE) {
Steve Frenchcdbce9c2005-11-19 21:04:52 -08001321 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if ((mode & S_IWUGO) == 0) /* not writeable */ {
1323 if ((cifsInode->cifsAttrs & ATTR_READONLY) == 0)
1324 time_buf.Attributes =
1325 cpu_to_le32(cifsInode->cifsAttrs |
1326 ATTR_READONLY);
1327 } else if ((mode & S_IWUGO) == S_IWUGO) {
1328 if (cifsInode->cifsAttrs & ATTR_READONLY)
1329 time_buf.Attributes =
1330 cpu_to_le32(cifsInode->cifsAttrs &
1331 (~ATTR_READONLY));
1332 }
1333 /* BB to be implemented -
1334 via Windows security descriptors or streams */
1335 /* CIFSSMBWinSetPerms(xid, pTcon, full_path, mode, uid, gid,
1336 cifs_sb->local_nls); */
1337 }
1338
1339 if (attrs->ia_valid & ATTR_ATIME) {
1340 set_time = TRUE;
1341 time_buf.LastAccessTime =
1342 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_atime));
1343 } else
1344 time_buf.LastAccessTime = 0;
1345
1346 if (attrs->ia_valid & ATTR_MTIME) {
1347 set_time = TRUE;
1348 time_buf.LastWriteTime =
1349 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_mtime));
1350 } else
1351 time_buf.LastWriteTime = 0;
Steve Frenche30dcf32005-09-20 20:49:16 -07001352 /* Do not set ctime explicitly unless other time
1353 stamps are changed explicitly (i.e. by utime()
1354 since we would then have a mix of client and
1355 server times */
1356
1357 if (set_time && (attrs->ia_valid & ATTR_CTIME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 set_time = TRUE;
Steve Frenche30dcf32005-09-20 20:49:16 -07001359 /* Although Samba throws this field away
1360 it may be useful to Windows - but we do
1361 not want to set ctime unless some other
1362 timestamp is changing */
Steve French26a21b92006-05-31 18:05:34 +00001363 cFYI(1, ("CIFS - CTIME changed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 time_buf.ChangeTime =
1365 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_ctime));
1366 } else
1367 time_buf.ChangeTime = 0;
1368
1369 if (set_time || time_buf.Attributes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 time_buf.CreationTime = 0; /* do not change */
1371 /* In the future we should experiment - try setting timestamps
1372 via Handle (SetFileInfo) instead of by path */
1373 if (!(pTcon->ses->flags & CIFS_SES_NT4))
1374 rc = CIFSSMBSetTimes(xid, pTcon, full_path, &time_buf,
Steve French737b7582005-04-28 22:41:06 -07001375 cifs_sb->local_nls,
1376 cifs_sb->mnt_cifs_flags &
1377 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 else
1379 rc = -EOPNOTSUPP;
1380
1381 if (rc == -EOPNOTSUPP) {
1382 int oplock = FALSE;
1383 __u16 netfid;
1384
1385 cFYI(1, ("calling SetFileInfo since SetPathInfo for "
1386 "times not supported by this server"));
1387 /* BB we could scan to see if we already have it open
1388 and pass in pid of opener to function */
1389 rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN,
1390 SYNCHRONIZE | FILE_WRITE_ATTRIBUTES,
1391 CREATE_NOT_DIR, &netfid, &oplock,
Steve French737b7582005-04-28 22:41:06 -07001392 NULL, cifs_sb->local_nls,
1393 cifs_sb->mnt_cifs_flags &
1394 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 if (rc==0) {
1396 rc = CIFSSMBSetFileTimes(xid, pTcon, &time_buf,
1397 netfid);
1398 CIFSSMBClose(xid, pTcon, netfid);
1399 } else {
1400 /* BB For even older servers we could convert time_buf
1401 into old DOS style which uses two second
1402 granularity */
1403
1404 /* rc = CIFSSMBSetTimesLegacy(xid, pTcon, full_path,
1405 &time_buf, cifs_sb->local_nls); */
1406 }
1407 }
Steve Frenche30dcf32005-09-20 20:49:16 -07001408 /* Even if error on time set, no sense failing the call if
1409 the server would set the time to a reasonable value anyway,
1410 and this check ensures that we are not being called from
1411 sys_utimes in which case we ought to fail the call back to
1412 the user when the server rejects the call */
Steve Frenchc14e8942007-02-15 01:33:18 +00001413 if((rc) && (attrs->ia_valid &
Steve Frenche30dcf32005-09-20 20:49:16 -07001414 (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE)))
1415 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417
1418 /* do not need local check to inode_check_ok since the server does
1419 that */
1420 if (!rc)
1421 rc = inode_setattr(direntry->d_inode, attrs);
Steve Frenche30dcf32005-09-20 20:49:16 -07001422cifs_setattr_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 kfree(full_path);
1424 FreeXid(xid);
1425 return rc;
1426}
1427
1428void cifs_delete_inode(struct inode *inode)
1429{
Steve French26a21b92006-05-31 18:05:34 +00001430 cFYI(1, ("In cifs_delete_inode, inode = 0x%p", inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 /* may have to add back in if and when safe distributed caching of
1432 directories added e.g. via FindNotify */
1433}