blob: f0ff12b3f398fcd09bae2f39934263b803bdb1e1 [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
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 French4523cc32007-04-30 20:13:06 +000093 if (sb->s_flags & MS_NOATIME)
Steve French1b2b2122007-02-17 04:30:54 +000094 (*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 }
Steve French4523cc32007-04-30 20:13:06 +0000142
143 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)
144 inode->i_uid = cifs_sb->mnt_uid;
145 else
146 inode->i_uid = le64_to_cpu(findData.Uid);
147
148 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)
149 inode->i_gid = cifs_sb->mnt_gid;
150 else
151 inode->i_gid = le64_to_cpu(findData.Gid);
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 inode->i_nlink = le64_to_cpu(findData.Nlinks);
154
Steve French3677db12007-02-26 16:46:11 +0000155 spin_lock(&inode->i_lock);
Steve French7ba52632007-02-08 18:14:13 +0000156 if (is_size_safe_to_change(cifsInfo, end_of_file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 /* can not safely change the file size here if the
158 client is writing to it due to potential races */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 i_size_write(inode, end_of_file);
160
161 /* blksize needs to be multiple of two. So safer to default to
162 blksize and blkbits set in superblock so 2**blkbits and blksize
163 will match rather than setting to:
164 (pTcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE) & 0xFFFFFE00;*/
165
166 /* This seems incredibly stupid but it turns out that i_blocks
167 is not related to (i_size / i_blksize), instead 512 byte size
168 is required for calculating num blocks */
169
170 /* 512 bytes (2**9) is the fake blocksize that must be used */
171 /* for this calculation */
172 inode->i_blocks = (512 - 1 + num_of_bytes) >> 9;
173 }
Steve French3677db12007-02-26 16:46:11 +0000174 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 if (num_of_bytes < end_of_file)
Steve French8b94bcb2005-11-11 11:41:00 -0800177 cFYI(1, ("allocation size less than end of file"));
Andrew Morton5515eff2006-03-26 01:37:53 -0800178 cFYI(1, ("Size %ld and blocks %llu",
179 (unsigned long) inode->i_size,
180 (unsigned long long)inode->i_blocks));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (S_ISREG(inode->i_mode)) {
Steve French8b94bcb2005-11-11 11:41:00 -0800182 cFYI(1, ("File inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 inode->i_op = &cifs_file_inode_ops;
Steve French8b94bcb2005-11-11 11:41:00 -0800184 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
185 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
186 inode->i_fop =
187 &cifs_file_direct_nobrl_ops;
188 else
189 inode->i_fop = &cifs_file_direct_ops;
Steve French4523cc32007-04-30 20:13:06 +0000190 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
Steve French8b94bcb2005-11-11 11:41:00 -0800191 inode->i_fop = &cifs_file_nobrl_ops;
192 else /* not direct, send byte range locks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 inode->i_fop = &cifs_file_ops;
Steve French8b94bcb2005-11-11 11:41:00 -0800194
Steve Frenchbfa0d752005-08-31 21:50:37 -0700195 /* check if server can support readpages */
Steve French4523cc32007-04-30 20:13:06 +0000196 if (pTcon->ses->server->maxBuf <
Dave Kleikamp273d81d2006-06-01 19:41:23 +0000197 PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE)
198 inode->i_data.a_ops = &cifs_addr_ops_smallbuf;
199 else
200 inode->i_data.a_ops = &cifs_addr_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 } else if (S_ISDIR(inode->i_mode)) {
Steve French8b94bcb2005-11-11 11:41:00 -0800202 cFYI(1, ("Directory inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 inode->i_op = &cifs_dir_inode_ops;
204 inode->i_fop = &cifs_dir_ops;
205 } else if (S_ISLNK(inode->i_mode)) {
Steve French8b94bcb2005-11-11 11:41:00 -0800206 cFYI(1, ("Symbolic Link inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 inode->i_op = &cifs_symlink_inode_ops;
208 /* tmp_inode->i_fop = */ /* do not need to set to anything */
209 } else {
Steve French8b94bcb2005-11-11 11:41:00 -0800210 cFYI(1, ("Init special inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 init_special_inode(inode, inode->i_mode,
212 inode->i_rdev);
213 }
214 }
215 return rc;
216}
217
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800218static int decode_sfu_inode(struct inode * inode, __u64 size,
219 const unsigned char *path,
220 struct cifs_sb_info *cifs_sb, int xid)
221{
222 int rc;
223 int oplock = FALSE;
224 __u16 netfid;
225 struct cifsTconInfo *pTcon = cifs_sb->tcon;
Steve French86c96b42005-11-18 20:25:31 -0800226 char buf[24];
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800227 unsigned int bytes_read;
228 char * pbuf;
229
230 pbuf = buf;
231
Steve French4523cc32007-04-30 20:13:06 +0000232 if (size == 0) {
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800233 inode->i_mode |= S_IFIFO;
234 return 0;
235 } else if (size < 8) {
236 return -EINVAL; /* EOPNOTSUPP? */
237 }
238
239 rc = CIFSSMBOpen(xid, pTcon, path, FILE_OPEN, GENERIC_READ,
240 CREATE_NOT_DIR, &netfid, &oplock, NULL,
241 cifs_sb->local_nls,
242 cifs_sb->mnt_cifs_flags &
243 CIFS_MOUNT_MAP_SPECIAL_CHR);
244 if (rc==0) {
Steve Frenchec637e32005-12-12 20:53:18 -0800245 int buf_type = CIFS_NO_BUFFER;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800246 /* Read header */
247 rc = CIFSSMBRead(xid, pTcon,
248 netfid,
Steve French86c96b42005-11-18 20:25:31 -0800249 24 /* length */, 0 /* offset */,
Steve Frenchec637e32005-12-12 20:53:18 -0800250 &bytes_read, &pbuf, &buf_type);
Steve French4523cc32007-04-30 20:13:06 +0000251 if ((rc == 0) && (bytes_read >= 8)) {
252 if (memcmp("IntxBLK", pbuf, 8) == 0) {
Steve French9e294f12005-11-17 16:59:21 -0800253 cFYI(1,("Block device"));
Steve French3020a1f2005-11-18 11:31:10 -0800254 inode->i_mode |= S_IFBLK;
Steve French4523cc32007-04-30 20:13:06 +0000255 if (bytes_read == 24) {
Steve French86c96b42005-11-18 20:25:31 -0800256 /* we have enough to decode dev num */
257 __u64 mjr; /* major */
258 __u64 mnr; /* minor */
259 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
260 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
261 inode->i_rdev = MKDEV(mjr, mnr);
262 }
Steve French4523cc32007-04-30 20:13:06 +0000263 } else if (memcmp("IntxCHR", pbuf, 8) == 0) {
Steve French9e294f12005-11-17 16:59:21 -0800264 cFYI(1,("Char device"));
Steve French3020a1f2005-11-18 11:31:10 -0800265 inode->i_mode |= S_IFCHR;
Steve French4523cc32007-04-30 20:13:06 +0000266 if (bytes_read == 24) {
Steve French86c96b42005-11-18 20:25:31 -0800267 /* we have enough to decode dev num */
268 __u64 mjr; /* major */
269 __u64 mnr; /* minor */
270 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
271 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
272 inode->i_rdev = MKDEV(mjr, mnr);
273 }
Steve French4523cc32007-04-30 20:13:06 +0000274 } else if (memcmp("IntxLNK", pbuf, 7) == 0) {
Steve French9e294f12005-11-17 16:59:21 -0800275 cFYI(1,("Symlink"));
Steve French3020a1f2005-11-18 11:31:10 -0800276 inode->i_mode |= S_IFLNK;
Steve French86c96b42005-11-18 20:25:31 -0800277 } else {
278 inode->i_mode |= S_IFREG; /* file? */
279 rc = -EOPNOTSUPP;
280 }
Steve French3020a1f2005-11-18 11:31:10 -0800281 } else {
282 inode->i_mode |= S_IFREG; /* then it is a file */
283 rc = -EOPNOTSUPP; /* or some unknown SFU type */
Steve Frenchec637e32005-12-12 20:53:18 -0800284 }
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800285 CIFSSMBClose(xid, pTcon, netfid);
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800286 }
287 return rc;
288
289}
290
Steve French9e294f12005-11-17 16:59:21 -0800291#define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */
292
293static int get_sfu_uid_mode(struct inode * inode,
294 const unsigned char *path,
295 struct cifs_sb_info *cifs_sb, int xid)
296{
Steve French3020a1f2005-11-18 11:31:10 -0800297#ifdef CONFIG_CIFS_XATTR
Steve French9e294f12005-11-17 16:59:21 -0800298 ssize_t rc;
299 char ea_value[4];
300 __u32 mode;
301
302 rc = CIFSSMBQueryEA(xid, cifs_sb->tcon, path, "SETFILEBITS",
303 ea_value, 4 /* size of buf */, cifs_sb->local_nls,
304 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French4523cc32007-04-30 20:13:06 +0000305 if (rc < 0)
Steve French9e294f12005-11-17 16:59:21 -0800306 return (int)rc;
307 else if (rc > 3) {
308 mode = le32_to_cpu(*((__le32 *)ea_value));
Steve Frenchc119b872005-11-18 12:27:27 -0800309 inode->i_mode &= ~SFBITS_MASK;
Steve French3020a1f2005-11-18 11:31:10 -0800310 cFYI(1,("special bits 0%o org mode 0%o", mode, inode->i_mode));
Steve French9e294f12005-11-17 16:59:21 -0800311 inode->i_mode = (mode & SFBITS_MASK) | inode->i_mode;
312 cFYI(1,("special mode bits 0%o", mode));
313 return 0;
314 } else {
315 return 0;
316 }
Steve French3020a1f2005-11-18 11:31:10 -0800317#else
318 return -EOPNOTSUPP;
319#endif
320
Steve French9e294f12005-11-17 16:59:21 -0800321
322}
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324int cifs_get_inode_info(struct inode **pinode,
325 const unsigned char *search_path, FILE_ALL_INFO *pfindData,
326 struct super_block *sb, int xid)
327{
328 int rc = 0;
329 struct cifsTconInfo *pTcon;
330 struct inode *inode;
331 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
332 char *tmp_path;
333 char *buf = NULL;
Steve French8d6286f2006-11-16 22:48:25 +0000334 int adjustTZ = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 pTcon = cifs_sb->tcon;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800337 cFYI(1,("Getting info on %s", search_path));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700339 if ((pfindData == NULL) && (*pinode != NULL)) {
340 if (CIFS_I(*pinode)->clientCanCacheRead) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 cFYI(1,("No need to revalidate cached inode sizes"));
342 return rc;
343 }
344 }
345
346 /* if file info not passed in then get it from server */
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700347 if (pfindData == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700349 if (buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return -ENOMEM;
351 pfindData = (FILE_ALL_INFO *)buf;
352 /* could do find first instead but this returns more info */
353 rc = CIFSSMBQPathInfo(xid, pTcon, search_path, pfindData,
Steve Frenchacf1a1b2006-10-12 03:28:28 +0000354 0 /* not legacy */,
Steve French6b8edfe2005-08-23 20:26:03 -0700355 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700356 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French6b8edfe2005-08-23 20:26:03 -0700357 /* BB optimize code so we do not make the above call
358 when server claims no NT SMB support and the above call
359 failed at least once - set flag in tcon or mount */
Steve French4523cc32007-04-30 20:13:06 +0000360 if ((rc == -EOPNOTSUPP) || (rc == -EINVAL)) {
Steve French6b8edfe2005-08-23 20:26:03 -0700361 rc = SMBQueryInformation(xid, pTcon, search_path,
362 pfindData, cifs_sb->local_nls,
363 cifs_sb->mnt_cifs_flags &
364 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French8d6286f2006-11-16 22:48:25 +0000365 adjustTZ = TRUE;
Steve French6b8edfe2005-08-23 20:26:03 -0700366 }
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
369 /* dump_mem("\nQPathInfo return data",&findData, sizeof(findData)); */
370 if (rc) {
371 if (rc == -EREMOTE) {
372 tmp_path =
373 kmalloc(strnlen
374 (pTcon->treeName,
375 MAX_TREE_SIZE + 1) +
376 strnlen(search_path, MAX_PATHCONF) + 1,
377 GFP_KERNEL);
378 if (tmp_path == NULL) {
379 kfree(buf);
380 return -ENOMEM;
381 }
382
383 strncpy(tmp_path, pTcon->treeName, MAX_TREE_SIZE);
384 strncat(tmp_path, search_path, MAX_PATHCONF);
385 rc = connect_to_dfs_path(xid, pTcon->ses,
386 /* treename + */ tmp_path,
Steve French737b7582005-04-28 22:41:06 -0700387 cifs_sb->local_nls,
388 cifs_sb->mnt_cifs_flags &
389 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 kfree(tmp_path);
391 /* BB fix up inode etc. */
392 } else if (rc) {
393 kfree(buf);
394 return rc;
395 }
396 } else {
397 struct cifsInodeInfo *cifsInfo;
398 __u32 attr = le32_to_cpu(pfindData->Attributes);
399
400 /* get new inode */
401 if (*pinode == NULL) {
402 *pinode = new_inode(sb);
Steve Frenchacf1a1b2006-10-12 03:28:28 +0000403 if (*pinode == NULL) {
404 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return -ENOMEM;
Steve Frenchacf1a1b2006-10-12 03:28:28 +0000406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /* Is an i_ino of zero legal? Can we use that to check
408 if the server supports returning inode numbers? Are
409 there other sanity checks we can use to ensure that
410 the server is really filling in that field? */
411
412 /* We can not use the IndexNumber field by default from
413 Windows or Samba (in ALL_INFO buf) but we can request
414 it explicitly. It may not be unique presumably if
415 the server has multiple devices mounted under one
416 share */
417
418 /* There may be higher info levels that work but are
419 there Windows server or network appliances for which
420 IndexNumber field is not guaranteed unique? */
421
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700422 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 int rc1 = 0;
424 __u64 inode_num;
425
426 rc1 = CIFSGetSrvInodeNumber(xid, pTcon,
427 search_path, &inode_num,
Steve French737b7582005-04-28 22:41:06 -0700428 cifs_sb->local_nls,
429 cifs_sb->mnt_cifs_flags &
430 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700431 if (rc1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 cFYI(1,("GetSrvInodeNum rc %d", rc1));
433 /* BB EOPNOSUPP disable SERVER_INUM? */
434 } else /* do we need cast or hash to ino? */
435 (*pinode)->i_ino = inode_num;
436 } /* else ino incremented to unique num in new_inode*/
Steve French4523cc32007-04-30 20:13:06 +0000437 if (sb->s_flags & MS_NOATIME)
Steve French1b2b2122007-02-17 04:30:54 +0000438 (*pinode)->i_flags |= S_NOATIME | S_NOCMTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 insert_inode_hash(*pinode);
440 }
441 inode = *pinode;
442 cifsInfo = CIFS_I(inode);
443 cifsInfo->cifsAttrs = attr;
Steve French26a21b92006-05-31 18:05:34 +0000444 cFYI(1, ("Old time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 cifsInfo->time = jiffies;
Steve French26a21b92006-05-31 18:05:34 +0000446 cFYI(1, ("New time %ld", cifsInfo->time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 /* blksize needs to be multiple of two. So safer to default to
449 blksize and blkbits set in superblock so 2**blkbits and blksize
450 will match rather than setting to:
451 (pTcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE) & 0xFFFFFE00;*/
452
Steve French26a21b92006-05-31 18:05:34 +0000453 /* Linux can not store file creation time so ignore it */
Steve French4523cc32007-04-30 20:13:06 +0000454 if (pfindData->LastAccessTime)
Steve French1bd5bbc2006-09-28 03:35:57 +0000455 inode->i_atime = cifs_NTtimeToUnix
456 (le64_to_cpu(pfindData->LastAccessTime));
457 else /* do not need to use current_fs_time - time not stored */
458 inode->i_atime = CURRENT_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 inode->i_mtime =
460 cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastWriteTime));
461 inode->i_ctime =
462 cifs_NTtimeToUnix(le64_to_cpu(pfindData->ChangeTime));
Steve French26a21b92006-05-31 18:05:34 +0000463 cFYI(0, ("Attributes came in as 0x%x", attr));
Steve French4523cc32007-04-30 20:13:06 +0000464 if (adjustTZ && (pTcon->ses) && (pTcon->ses->server)) {
Steve French8d6286f2006-11-16 22:48:25 +0000465 inode->i_ctime.tv_sec += pTcon->ses->server->timeAdj;
466 inode->i_mtime.tv_sec += pTcon->ses->server->timeAdj;
467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 /* set default mode. will override for dirs below */
470 if (atomic_read(&cifsInfo->inUse) == 0)
471 /* new inode, can safely set these fields */
472 inode->i_mode = cifs_sb->mnt_file_mode;
Steve French3020a1f2005-11-18 11:31:10 -0800473 else /* since we set the inode type below we need to mask off
474 to avoid strange results if type changes and both get orred in */
475 inode->i_mode &= ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/* if (attr & ATTR_REPARSE) */
477 /* We no longer handle these as symlinks because we could not
478 follow them due to the absolute path with drive letter */
479 if (attr & ATTR_DIRECTORY) {
480 /* override default perms since we do not do byte range locking
481 on dirs */
482 inode->i_mode = cifs_sb->mnt_dir_mode;
483 inode->i_mode |= S_IFDIR;
Steve Frencheda3c0292005-07-21 15:20:28 -0700484 } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) &&
485 (cifsInfo->cifsAttrs & ATTR_SYSTEM) &&
486 /* No need to le64 convert size of zero */
487 (pfindData->EndOfFile == 0)) {
488 inode->i_mode = cifs_sb->mnt_file_mode;
489 inode->i_mode |= S_IFIFO;
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800490/* BB Finish for SFU style symlinks and devices */
491 } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) &&
492 (cifsInfo->cifsAttrs & ATTR_SYSTEM)) {
493 if (decode_sfu_inode(inode,
494 le64_to_cpu(pfindData->EndOfFile),
495 search_path,
496 cifs_sb, xid)) {
497 cFYI(1,("Unrecognized sfu inode type"));
498 }
Steve French3020a1f2005-11-18 11:31:10 -0800499 cFYI(1,("sfu mode 0%o",inode->i_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 } else {
501 inode->i_mode |= S_IFREG;
502 /* treat the dos attribute of read-only as read-only
503 mode e.g. 555 */
504 if (cifsInfo->cifsAttrs & ATTR_READONLY)
505 inode->i_mode &= ~(S_IWUGO);
Alan Tysonf5c1e2e2007-03-10 06:05:14 +0000506 else if ((inode->i_mode & S_IWUGO) == 0)
507 /* the ATTR_READONLY flag may have been */
508 /* changed on server -- set any w bits */
509 /* allowed by mnt_file_mode */
510 inode->i_mode |= (S_IWUGO &
511 cifs_sb->mnt_file_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* BB add code here -
513 validate if device or weird share or device type? */
514 }
Steve French3677db12007-02-26 16:46:11 +0000515
516 spin_lock(&inode->i_lock);
Steve French7ba52632007-02-08 18:14:13 +0000517 if (is_size_safe_to_change(cifsInfo, le64_to_cpu(pfindData->EndOfFile))) {
518 /* can not safely shrink the file size here if the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 client is writing to it due to potential races */
520 i_size_write(inode,le64_to_cpu(pfindData->EndOfFile));
521
522 /* 512 bytes (2**9) is the fake blocksize that must be
523 used for this calculation */
524 inode->i_blocks = (512 - 1 + le64_to_cpu(
525 pfindData->AllocationSize)) >> 9;
526 }
Steve French3677db12007-02-26 16:46:11 +0000527 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 inode->i_nlink = le32_to_cpu(pfindData->NumberOfLinks);
530
531 /* BB fill in uid and gid here? with help from winbind?
532 or retrieve from NTFS stream extended attribute */
Steve French4523cc32007-04-30 20:13:06 +0000533 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
Steve French9e294f12005-11-17 16:59:21 -0800534 /* fill in uid, gid, mode from server ACL */
Steve French4523cc32007-04-30 20:13:06 +0000535 /* BB FIXME this should also take into account the
536 * default uid specified on mount if present */
Steve French9e294f12005-11-17 16:59:21 -0800537 get_sfu_uid_mode(inode, search_path, cifs_sb, xid);
538 } else if (atomic_read(&cifsInfo->inUse) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 inode->i_uid = cifs_sb->mnt_uid;
540 inode->i_gid = cifs_sb->mnt_gid;
541 /* set so we do not keep refreshing these fields with
542 bad data after user has changed them in memory */
543 atomic_set(&cifsInfo->inUse,1);
544 }
545
546 if (S_ISREG(inode->i_mode)) {
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800547 cFYI(1, ("File inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 inode->i_op = &cifs_file_inode_ops;
Steve French8b94bcb2005-11-11 11:41:00 -0800549 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
550 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
551 inode->i_fop =
552 &cifs_file_direct_nobrl_ops;
553 else
554 inode->i_fop = &cifs_file_direct_ops;
Steve French4523cc32007-04-30 20:13:06 +0000555 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
Steve French8b94bcb2005-11-11 11:41:00 -0800556 inode->i_fop = &cifs_file_nobrl_ops;
557 else /* not direct, send byte range locks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 inode->i_fop = &cifs_file_ops;
Steve French8b94bcb2005-11-11 11:41:00 -0800559
Steve French4523cc32007-04-30 20:13:06 +0000560 if (pTcon->ses->server->maxBuf <
Dave Kleikamp273d81d2006-06-01 19:41:23 +0000561 PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE)
562 inode->i_data.a_ops = &cifs_addr_ops_smallbuf;
563 else
564 inode->i_data.a_ops = &cifs_addr_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 } else if (S_ISDIR(inode->i_mode)) {
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800566 cFYI(1, ("Directory inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 inode->i_op = &cifs_dir_inode_ops;
568 inode->i_fop = &cifs_dir_ops;
569 } else if (S_ISLNK(inode->i_mode)) {
Steve Frenchd6e2f2a42005-11-15 16:43:39 -0800570 cFYI(1, ("Symbolic Link inode"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 inode->i_op = &cifs_symlink_inode_ops;
572 } else {
573 init_special_inode(inode, inode->i_mode,
574 inode->i_rdev);
575 }
576 }
577 kfree(buf);
578 return rc;
579}
580
581/* gets root inode */
582void cifs_read_inode(struct inode *inode)
583{
584 int xid;
585 struct cifs_sb_info *cifs_sb;
586
587 cifs_sb = CIFS_SB(inode->i_sb);
588 xid = GetXid();
589 if (cifs_sb->tcon->ses->capabilities & CAP_UNIX)
590 cifs_get_inode_info_unix(&inode, "", inode->i_sb,xid);
591 else
592 cifs_get_inode_info(&inode, "", NULL, inode->i_sb,xid);
593 /* can not call macro FreeXid here since in a void func */
594 _FreeXid(xid);
595}
596
597int cifs_unlink(struct inode *inode, struct dentry *direntry)
598{
599 int rc = 0;
600 int xid;
601 struct cifs_sb_info *cifs_sb;
602 struct cifsTconInfo *pTcon;
603 char *full_path = NULL;
604 struct cifsInodeInfo *cifsInode;
605 FILE_BASIC_INFO *pinfo_buf;
606
Steve French06bcfed2006-03-31 22:43:50 +0000607 cFYI(1, ("cifs_unlink, inode = 0x%p", inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 xid = GetXid();
610
Steve French4523cc32007-04-30 20:13:06 +0000611 if (inode)
Steve French6910ab32006-03-31 03:37:08 +0000612 cifs_sb = CIFS_SB(inode->i_sb);
613 else
Steve French06bcfed2006-03-31 22:43:50 +0000614 cifs_sb = CIFS_SB(direntry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 pTcon = cifs_sb->tcon;
616
617 /* Unlink can be called from rename so we can not grab the sem here
618 since we deadlock otherwise */
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800619/* mutex_lock(&direntry->d_sb->s_vfs_rename_mutex);*/
Steve French7f573562005-08-30 11:32:14 -0700620 full_path = build_path_from_dentry(direntry);
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800621/* mutex_unlock(&direntry->d_sb->s_vfs_rename_mutex);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (full_path == NULL) {
623 FreeXid(xid);
624 return -ENOMEM;
625 }
Steve French737b7582005-04-28 22:41:06 -0700626 rc = CIFSSMBDelFile(xid, pTcon, full_path, cifs_sb->local_nls,
627 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 if (!rc) {
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700630 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700631 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 } else if (rc == -ENOENT) {
633 d_drop(direntry);
634 } else if (rc == -ETXTBSY) {
635 int oplock = FALSE;
636 __u16 netfid;
637
638 rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN, DELETE,
639 CREATE_NOT_DIR | CREATE_DELETE_ON_CLOSE,
Steve French737b7582005-04-28 22:41:06 -0700640 &netfid, &oplock, NULL, cifs_sb->local_nls,
641 cifs_sb->mnt_cifs_flags &
642 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (rc==0) {
644 CIFSSMBRenameOpenFile(xid, pTcon, netfid, NULL,
Steve French737b7582005-04-28 22:41:06 -0700645 cifs_sb->local_nls,
646 cifs_sb->mnt_cifs_flags &
647 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 CIFSSMBClose(xid, pTcon, netfid);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700649 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700650 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652 } else if (rc == -EACCES) {
653 /* try only if r/o attribute set in local lookup data? */
Eric Sesterhenna048d7a2006-02-21 22:33:09 +0000654 pinfo_buf = kzalloc(sizeof(FILE_BASIC_INFO), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (pinfo_buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 /* ATTRS set to normal clears r/o bit */
657 pinfo_buf->Attributes = cpu_to_le32(ATTR_NORMAL);
658 if (!(pTcon->ses->flags & CIFS_SES_NT4))
659 rc = CIFSSMBSetTimes(xid, pTcon, full_path,
660 pinfo_buf,
Steve French737b7582005-04-28 22:41:06 -0700661 cifs_sb->local_nls,
662 cifs_sb->mnt_cifs_flags &
663 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 else
665 rc = -EOPNOTSUPP;
666
667 if (rc == -EOPNOTSUPP) {
668 int oplock = FALSE;
669 __u16 netfid;
670 /* rc = CIFSSMBSetAttrLegacy(xid, pTcon,
671 full_path,
672 (__u16)ATTR_NORMAL,
673 cifs_sb->local_nls);
674 For some strange reason it seems that NT4 eats the
675 old setattr call without actually setting the
676 attributes so on to the third attempted workaround
677 */
678
679 /* BB could scan to see if we already have it open
680 and pass in pid of opener to function */
681 rc = CIFSSMBOpen(xid, pTcon, full_path,
682 FILE_OPEN, SYNCHRONIZE |
683 FILE_WRITE_ATTRIBUTES, 0,
684 &netfid, &oplock, NULL,
Steve French737b7582005-04-28 22:41:06 -0700685 cifs_sb->local_nls,
686 cifs_sb->mnt_cifs_flags &
687 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (rc==0) {
689 rc = CIFSSMBSetFileTimes(xid, pTcon,
690 pinfo_buf,
691 netfid);
692 CIFSSMBClose(xid, pTcon, netfid);
693 }
694 }
695 kfree(pinfo_buf);
696 }
697 if (rc==0) {
Steve French737b7582005-04-28 22:41:06 -0700698 rc = CIFSSMBDelFile(xid, pTcon, full_path,
699 cifs_sb->local_nls,
700 cifs_sb->mnt_cifs_flags &
701 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (!rc) {
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700703 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700704 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 } else if (rc == -ETXTBSY) {
706 int oplock = FALSE;
707 __u16 netfid;
708
709 rc = CIFSSMBOpen(xid, pTcon, full_path,
710 FILE_OPEN, DELETE,
711 CREATE_NOT_DIR |
712 CREATE_DELETE_ON_CLOSE,
713 &netfid, &oplock, NULL,
Steve French737b7582005-04-28 22:41:06 -0700714 cifs_sb->local_nls,
715 cifs_sb->mnt_cifs_flags &
716 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (rc==0) {
718 CIFSSMBRenameOpenFile(xid, pTcon,
719 netfid, NULL,
Steve French737b7582005-04-28 22:41:06 -0700720 cifs_sb->local_nls,
721 cifs_sb->mnt_cifs_flags &
722 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 CIFSSMBClose(xid, pTcon, netfid);
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700724 if (direntry->d_inode)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700725 drop_nlink(direntry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
727 /* BB if rc = -ETXTBUSY goto the rename logic BB */
728 }
729 }
730 }
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700731 if (direntry->d_inode) {
Steve Frenchb2aeb9d2005-05-17 13:16:18 -0500732 cifsInode = CIFS_I(direntry->d_inode);
733 cifsInode->time = 0; /* will force revalidate to get info
734 when needed */
735 direntry->d_inode->i_ctime = current_fs_time(inode->i_sb);
736 }
Steve French4523cc32007-04-30 20:13:06 +0000737 if (inode) {
Steve French06bcfed2006-03-31 22:43:50 +0000738 inode->i_ctime = inode->i_mtime = current_fs_time(inode->i_sb);
739 cifsInode = CIFS_I(inode);
740 cifsInode->time = 0; /* force revalidate of dir as well */
741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 kfree(full_path);
744 FreeXid(xid);
745 return rc;
746}
747
Steve French2dd29d32007-04-23 22:07:35 +0000748static void posix_fill_in_inode(struct inode *tmp_inode,
749 FILE_UNIX_BASIC_INFO *pData, int *pobject_type, int isNewInode)
750{
751 loff_t local_size;
752 struct timespec local_mtime;
753
754 struct cifsInodeInfo *cifsInfo = CIFS_I(tmp_inode);
755 struct cifs_sb_info *cifs_sb = CIFS_SB(tmp_inode->i_sb);
756
757 __u32 type = le32_to_cpu(pData->Type);
758 __u64 num_of_bytes = le64_to_cpu(pData->NumOfBytes);
759 __u64 end_of_file = le64_to_cpu(pData->EndOfFile);
760 cifsInfo->time = jiffies;
761 atomic_inc(&cifsInfo->inUse);
762
763 /* save mtime and size */
764 local_mtime = tmp_inode->i_mtime;
765 local_size = tmp_inode->i_size;
766
767 tmp_inode->i_atime =
768 cifs_NTtimeToUnix(le64_to_cpu(pData->LastAccessTime));
769 tmp_inode->i_mtime =
770 cifs_NTtimeToUnix(le64_to_cpu(pData->LastModificationTime));
771 tmp_inode->i_ctime =
772 cifs_NTtimeToUnix(le64_to_cpu(pData->LastStatusChange));
773
774 tmp_inode->i_mode = le64_to_cpu(pData->Permissions);
775 /* since we set the inode type below we need to mask off type
776 to avoid strange results if bits above were corrupt */
777 tmp_inode->i_mode &= ~S_IFMT;
778 if (type == UNIX_FILE) {
779 *pobject_type = DT_REG;
780 tmp_inode->i_mode |= S_IFREG;
781 } else if (type == UNIX_SYMLINK) {
782 *pobject_type = DT_LNK;
783 tmp_inode->i_mode |= S_IFLNK;
784 } else if (type == UNIX_DIR) {
785 *pobject_type = DT_DIR;
786 tmp_inode->i_mode |= S_IFDIR;
787 } else if (type == UNIX_CHARDEV) {
788 *pobject_type = DT_CHR;
789 tmp_inode->i_mode |= S_IFCHR;
790 tmp_inode->i_rdev = MKDEV(le64_to_cpu(pData->DevMajor),
791 le64_to_cpu(pData->DevMinor) & MINORMASK);
792 } else if (type == UNIX_BLOCKDEV) {
793 *pobject_type = DT_BLK;
794 tmp_inode->i_mode |= S_IFBLK;
795 tmp_inode->i_rdev = MKDEV(le64_to_cpu(pData->DevMajor),
796 le64_to_cpu(pData->DevMinor) & MINORMASK);
797 } else if (type == UNIX_FIFO) {
798 *pobject_type = DT_FIFO;
799 tmp_inode->i_mode |= S_IFIFO;
800 } else if (type == UNIX_SOCKET) {
801 *pobject_type = DT_SOCK;
802 tmp_inode->i_mode |= S_IFSOCK;
803 } else {
804 /* safest to just call it a file */
805 *pobject_type = DT_REG;
806 tmp_inode->i_mode |= S_IFREG;
807 cFYI(1,("unknown inode type %d",type));
808 }
809
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000810#ifdef CONFIG_CIFS_DEBUG2
811 cFYI(1,("object type: %d", type));
812#endif
Steve French2dd29d32007-04-23 22:07:35 +0000813 tmp_inode->i_uid = le64_to_cpu(pData->Uid);
814 tmp_inode->i_gid = le64_to_cpu(pData->Gid);
815 tmp_inode->i_nlink = le64_to_cpu(pData->Nlinks);
816
817 spin_lock(&tmp_inode->i_lock);
818 if (is_size_safe_to_change(cifsInfo, end_of_file)) {
819 /* can not safely change the file size here if the
820 client is writing to it due to potential races */
821 i_size_write(tmp_inode, end_of_file);
822
823 /* 512 bytes (2**9) is the fake blocksize that must be used */
824 /* for this calculation, not the real blocksize */
825 tmp_inode->i_blocks = (512 - 1 + num_of_bytes) >> 9;
826 }
827 spin_unlock(&tmp_inode->i_lock);
828
829 if (S_ISREG(tmp_inode->i_mode)) {
830 cFYI(1, ("File inode"));
831 tmp_inode->i_op = &cifs_file_inode_ops;
832
833 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
834 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
835 tmp_inode->i_fop = &cifs_file_direct_nobrl_ops;
836 else
837 tmp_inode->i_fop = &cifs_file_direct_ops;
838
839 } else if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
840 tmp_inode->i_fop = &cifs_file_nobrl_ops;
841 else
842 tmp_inode->i_fop = &cifs_file_ops;
843
844 if((cifs_sb->tcon) && (cifs_sb->tcon->ses) &&
845 (cifs_sb->tcon->ses->server->maxBuf <
846 PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE))
847 tmp_inode->i_data.a_ops = &cifs_addr_ops_smallbuf;
848 else
849 tmp_inode->i_data.a_ops = &cifs_addr_ops;
850
851 if(isNewInode)
852 return; /* No sense invalidating pages for new inode since we
853 have not started caching readahead file data yet */
854
855 if (timespec_equal(&tmp_inode->i_mtime, &local_mtime) &&
856 (local_size == tmp_inode->i_size)) {
857 cFYI(1, ("inode exists but unchanged"));
858 } else {
859 /* file may have changed on server */
860 cFYI(1, ("invalidate inode, readdir detected change"));
861 invalidate_remote_inode(tmp_inode);
862 }
863 } else if (S_ISDIR(tmp_inode->i_mode)) {
864 cFYI(1, ("Directory inode"));
865 tmp_inode->i_op = &cifs_dir_inode_ops;
866 tmp_inode->i_fop = &cifs_dir_ops;
867 } else if (S_ISLNK(tmp_inode->i_mode)) {
868 cFYI(1, ("Symbolic Link inode"));
869 tmp_inode->i_op = &cifs_symlink_inode_ops;
870/* tmp_inode->i_fop = *//* do not need to set to anything */
871 } else {
872 cFYI(1, ("Special inode"));
873 init_special_inode(tmp_inode, tmp_inode->i_mode,
874 tmp_inode->i_rdev);
875 }
876}
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878int cifs_mkdir(struct inode *inode, struct dentry *direntry, int mode)
879{
880 int rc = 0;
881 int xid;
882 struct cifs_sb_info *cifs_sb;
883 struct cifsTconInfo *pTcon;
884 char *full_path = NULL;
885 struct inode *newinode = NULL;
886
Steve French6473a552005-11-29 20:20:10 -0800887 cFYI(1, ("In cifs_mkdir, mode = 0x%x inode = 0x%p", mode, inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 xid = GetXid();
890
891 cifs_sb = CIFS_SB(inode->i_sb);
892 pTcon = cifs_sb->tcon;
893
Steve French7f573562005-08-30 11:32:14 -0700894 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (full_path == NULL) {
896 FreeXid(xid);
897 return -ENOMEM;
898 }
Steve French2dd29d32007-04-23 22:07:35 +0000899
900 if((pTcon->ses->capabilities & CAP_UNIX) &&
901 (CIFS_UNIX_POSIX_PATH_OPS_CAP &
902 le64_to_cpu(pTcon->fsUnixInfo.Capability))) {
903 u32 oplock = 0;
904 FILE_UNIX_BASIC_INFO * pInfo =
905 kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL);
906 if(pInfo == NULL) {
907 rc = -ENOMEM;
908 goto mkdir_out;
909 }
910
911 rc = CIFSPOSIXCreate(xid, pTcon, SMB_O_DIRECTORY | SMB_O_CREAT,
912 mode, NULL /* netfid */, pInfo, &oplock,
913 full_path, cifs_sb->local_nls,
914 cifs_sb->mnt_cifs_flags &
915 CIFS_MOUNT_MAP_SPECIAL_CHR);
916 if (rc) {
917 cFYI(1, ("posix mkdir returned 0x%x", rc));
918 d_drop(direntry);
919 } else {
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000920 int obj_type;
Steve French2dd29d32007-04-23 22:07:35 +0000921 if (pInfo->Type == -1) /* no return info - go query */
922 goto mkdir_get_info;
923/*BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if need to set uid/gid */
924 inc_nlink(inode);
925 if (pTcon->nocase)
926 direntry->d_op = &cifs_ci_dentry_ops;
927 else
928 direntry->d_op = &cifs_dentry_ops;
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000929
930 newinode = new_inode(inode->i_sb);
931 if (newinode == NULL)
932 goto mkdir_get_info;
933 /* Is an i_ino of zero legal? */
934 /* Are there sanity checks we can use to ensure that
935 the server is really filling in that field? */
936 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
937 newinode->i_ino =
938 (unsigned long)pInfo->UniqueId;
939 } /* note ino incremented to unique num in new_inode */
940 if(inode->i_sb->s_flags & MS_NOATIME)
941 newinode->i_flags |= S_NOATIME | S_NOCMTIME;
942 newinode->i_nlink = 2;
943
944 insert_inode_hash(newinode);
Steve French2dd29d32007-04-23 22:07:35 +0000945 d_instantiate(direntry, newinode);
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000946
947 /* we already checked in POSIXCreate whether
948 frame was long enough */
949 posix_fill_in_inode(direntry->d_inode,
Steve French2dd29d32007-04-23 22:07:35 +0000950 pInfo, &obj_type, 1 /* NewInode */);
Steve Frenchcbac3cb2007-04-25 11:46:06 +0000951#ifdef CONFIG_CIFS_DEBUG2
952 cFYI(1,("instantiated dentry %p %s to inode %p",
953 direntry, direntry->d_name.name, newinode));
954
955 if(newinode->i_nlink != 2)
956 cFYI(1,("unexpected number of links %d",
957 newinode->i_nlink));
958#endif
Steve French2dd29d32007-04-23 22:07:35 +0000959 }
960 kfree(pInfo);
961 goto mkdir_out;
962 }
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 /* BB add setting the equivalent of mode via CreateX w/ACLs */
Steve French737b7582005-04-28 22:41:06 -0700965 rc = CIFSSMBMkDir(xid, pTcon, full_path, cifs_sb->local_nls,
966 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (rc) {
Steve French26a21b92006-05-31 18:05:34 +0000968 cFYI(1, ("cifs_mkdir returned 0x%x", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 d_drop(direntry);
970 } else {
Steve French2dd29d32007-04-23 22:07:35 +0000971mkdir_get_info:
Dave Hansend8c76e62006-09-30 23:29:04 -0700972 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (pTcon->ses->capabilities & CAP_UNIX)
974 rc = cifs_get_inode_info_unix(&newinode, full_path,
975 inode->i_sb,xid);
976 else
977 rc = cifs_get_inode_info(&newinode, full_path, NULL,
978 inode->i_sb,xid);
979
Steve Frenchb92327f2005-08-22 20:09:43 -0700980 if (pTcon->nocase)
981 direntry->d_op = &cifs_ci_dentry_ops;
982 else
983 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 d_instantiate(direntry, newinode);
Steve French2dd29d32007-04-23 22:07:35 +0000985 /* setting nlink not necessary except in cases where we
986 * failed to get it from the server or was set bogus */
987 if ((direntry->d_inode) && (direntry->d_inode->i_nlink < 2))
988 direntry->d_inode->i_nlink = 2;
Steve French3ce53fc2007-06-08 14:55:14 +0000989 if (cifs_sb->tcon->ses->capabilities & CAP_UNIX) {
990 mode &= ~current->fs->umask;
Steve Frenchd0d2f2d2005-06-02 15:12:36 -0700991 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 CIFSSMBUnixSetPerms(xid, pTcon, full_path,
993 mode,
Steve French83451872005-12-01 17:12:59 -0800994 (__u64)current->fsuid,
995 (__u64)current->fsgid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 0 /* dev_t */,
Steve French737b7582005-04-28 22:41:06 -0700997 cifs_sb->local_nls,
998 cifs_sb->mnt_cifs_flags &
999 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 } else {
1001 CIFSSMBUnixSetPerms(xid, pTcon, full_path,
1002 mode, (__u64)-1,
1003 (__u64)-1, 0 /* dev_t */,
Steve French737b7582005-04-28 22:41:06 -07001004 cifs_sb->local_nls,
1005 cifs_sb->mnt_cifs_flags &
1006 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
Steve French3ce53fc2007-06-08 14:55:14 +00001008 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 /* BB to be implemented via Windows secrty descriptors
1010 eg CIFSSMBWinSetPerms(xid, pTcon, full_path, mode,
1011 -1, -1, local_nls); */
Steve French6473a552005-11-29 20:20:10 -08001012 if(direntry->d_inode) {
1013 direntry->d_inode->i_mode = mode;
Steve French25741b32005-11-29 22:38:43 -08001014 direntry->d_inode->i_mode |= S_IFDIR;
Steve French6473a552005-11-29 20:20:10 -08001015 if(cifs_sb->mnt_cifs_flags &
1016 CIFS_MOUNT_SET_UID) {
1017 direntry->d_inode->i_uid =
1018 current->fsuid;
1019 direntry->d_inode->i_gid =
1020 current->fsgid;
1021 }
1022 }
Steve French2a138ebb2005-11-29 21:22:19 -08001023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
Steve French2dd29d32007-04-23 22:07:35 +00001025mkdir_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 kfree(full_path);
1027 FreeXid(xid);
1028 return rc;
1029}
1030
1031int cifs_rmdir(struct inode *inode, struct dentry *direntry)
1032{
1033 int rc = 0;
1034 int xid;
1035 struct cifs_sb_info *cifs_sb;
1036 struct cifsTconInfo *pTcon;
1037 char *full_path = NULL;
1038 struct cifsInodeInfo *cifsInode;
1039
Steve French26a21b92006-05-31 18:05:34 +00001040 cFYI(1, ("cifs_rmdir, inode = 0x%p", inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 xid = GetXid();
1043
1044 cifs_sb = CIFS_SB(inode->i_sb);
1045 pTcon = cifs_sb->tcon;
1046
Steve French7f573562005-08-30 11:32:14 -07001047 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (full_path == NULL) {
1049 FreeXid(xid);
1050 return -ENOMEM;
1051 }
1052
Steve French737b7582005-04-28 22:41:06 -07001053 rc = CIFSSMBRmDir(xid, pTcon, full_path, cifs_sb->local_nls,
1054 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 if (!rc) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001057 drop_nlink(inode);
Steve French3677db12007-02-26 16:46:11 +00001058 spin_lock(&direntry->d_inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 i_size_write(direntry->d_inode,0);
Dave Hansence71ec32006-09-30 23:29:06 -07001060 clear_nlink(direntry->d_inode);
Steve French3677db12007-02-26 16:46:11 +00001061 spin_unlock(&direntry->d_inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063
1064 cifsInode = CIFS_I(direntry->d_inode);
1065 cifsInode->time = 0; /* force revalidate to go get info when
1066 needed */
1067 direntry->d_inode->i_ctime = inode->i_ctime = inode->i_mtime =
1068 current_fs_time(inode->i_sb);
1069
1070 kfree(full_path);
1071 FreeXid(xid);
1072 return rc;
1073}
1074
1075int cifs_rename(struct inode *source_inode, struct dentry *source_direntry,
1076 struct inode *target_inode, struct dentry *target_direntry)
1077{
1078 char *fromName;
1079 char *toName;
1080 struct cifs_sb_info *cifs_sb_source;
1081 struct cifs_sb_info *cifs_sb_target;
1082 struct cifsTconInfo *pTcon;
1083 int xid;
1084 int rc = 0;
1085
1086 xid = GetXid();
1087
1088 cifs_sb_target = CIFS_SB(target_inode->i_sb);
1089 cifs_sb_source = CIFS_SB(source_inode->i_sb);
1090 pTcon = cifs_sb_source->tcon;
1091
1092 if (pTcon != cifs_sb_target->tcon) {
1093 FreeXid(xid);
1094 return -EXDEV; /* BB actually could be allowed if same server,
1095 but different share.
1096 Might eventually add support for this */
1097 }
1098
1099 /* we already have the rename sem so we do not need to grab it again
1100 here to protect the path integrity */
Steve French7f573562005-08-30 11:32:14 -07001101 fromName = build_path_from_dentry(source_direntry);
1102 toName = build_path_from_dentry(target_direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if ((fromName == NULL) || (toName == NULL)) {
1104 rc = -ENOMEM;
1105 goto cifs_rename_exit;
1106 }
1107
1108 rc = CIFSSMBRename(xid, pTcon, fromName, toName,
Steve French737b7582005-04-28 22:41:06 -07001109 cifs_sb_source->local_nls,
1110 cifs_sb_source->mnt_cifs_flags &
1111 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (rc == -EEXIST) {
1113 /* check if they are the same file because rename of hardlinked
1114 files is a noop */
1115 FILE_UNIX_BASIC_INFO *info_buf_source;
1116 FILE_UNIX_BASIC_INFO *info_buf_target;
1117
1118 info_buf_source =
1119 kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL);
1120 if (info_buf_source != NULL) {
1121 info_buf_target = info_buf_source + 1;
Steve French8e87d4d2006-11-02 03:45:24 +00001122 if (pTcon->ses->capabilities & CAP_UNIX)
1123 rc = CIFSSMBUnixQPathInfo(xid, pTcon, fromName,
1124 info_buf_source,
1125 cifs_sb_source->local_nls,
1126 cifs_sb_source->mnt_cifs_flags &
1127 CIFS_MOUNT_MAP_SPECIAL_CHR);
1128 /* else rc is still EEXIST so will fall through to
1129 unlink the target and retry rename */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 if (rc == 0) {
1131 rc = CIFSSMBUnixQPathInfo(xid, pTcon, toName,
1132 info_buf_target,
Steve French737b7582005-04-28 22:41:06 -07001133 cifs_sb_target->local_nls,
1134 /* remap based on source sb */
1135 cifs_sb_source->mnt_cifs_flags &
1136 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 }
1138 if ((rc == 0) &&
1139 (info_buf_source->UniqueId ==
1140 info_buf_target->UniqueId)) {
1141 /* do not rename since the files are hardlinked which
1142 is a noop */
1143 } else {
1144 /* we either can not tell the files are hardlinked
1145 (as with Windows servers) or files are not
1146 hardlinked so delete the target manually before
1147 renaming to follow POSIX rather than Windows
1148 semantics */
1149 cifs_unlink(target_inode, target_direntry);
1150 rc = CIFSSMBRename(xid, pTcon, fromName,
1151 toName,
Steve French737b7582005-04-28 22:41:06 -07001152 cifs_sb_source->local_nls,
1153 cifs_sb_source->mnt_cifs_flags
1154 & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
1156 kfree(info_buf_source);
1157 } /* if we can not get memory just leave rc as EEXIST */
1158 }
1159
1160 if (rc) {
1161 cFYI(1, ("rename rc %d", rc));
1162 }
1163
1164 if ((rc == -EIO) || (rc == -EEXIST)) {
1165 int oplock = FALSE;
1166 __u16 netfid;
1167
1168 /* BB FIXME Is Generic Read correct for rename? */
1169 /* if renaming directory - we should not say CREATE_NOT_DIR,
1170 need to test renaming open directory, also GENERIC_READ
1171 might not right be right access to request */
1172 rc = CIFSSMBOpen(xid, pTcon, fromName, FILE_OPEN, GENERIC_READ,
1173 CREATE_NOT_DIR, &netfid, &oplock, NULL,
Steve French737b7582005-04-28 22:41:06 -07001174 cifs_sb_source->local_nls,
1175 cifs_sb_source->mnt_cifs_flags &
1176 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 if (rc==0) {
Steve French8e87d4d2006-11-02 03:45:24 +00001178 rc = CIFSSMBRenameOpenFile(xid, pTcon, netfid, toName,
Steve French737b7582005-04-28 22:41:06 -07001179 cifs_sb_source->local_nls,
1180 cifs_sb_source->mnt_cifs_flags &
1181 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 CIFSSMBClose(xid, pTcon, netfid);
1183 }
1184 }
1185
1186cifs_rename_exit:
1187 kfree(fromName);
1188 kfree(toName);
1189 FreeXid(xid);
1190 return rc;
1191}
1192
1193int cifs_revalidate(struct dentry *direntry)
1194{
1195 int xid;
1196 int rc = 0;
1197 char *full_path;
1198 struct cifs_sb_info *cifs_sb;
1199 struct cifsInodeInfo *cifsInode;
1200 loff_t local_size;
1201 struct timespec local_mtime;
1202 int invalidate_inode = FALSE;
1203
1204 if (direntry->d_inode == NULL)
1205 return -ENOENT;
1206
1207 cifsInode = CIFS_I(direntry->d_inode);
1208
1209 if (cifsInode == NULL)
1210 return -ENOENT;
1211
1212 /* no sense revalidating inode info on file that no one can write */
1213 if (CIFS_I(direntry->d_inode)->clientCanCacheRead)
1214 return rc;
1215
1216 xid = GetXid();
1217
1218 cifs_sb = CIFS_SB(direntry->d_sb);
1219
1220 /* can not safely grab the rename sem here if rename calls revalidate
1221 since that would deadlock */
Steve French7f573562005-08-30 11:32:14 -07001222 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 if (full_path == NULL) {
1224 FreeXid(xid);
1225 return -ENOMEM;
1226 }
1227 cFYI(1, ("Revalidate: %s inode 0x%p count %d dentry: 0x%p d_time %ld "
1228 "jiffies %ld", full_path, direntry->d_inode,
1229 direntry->d_inode->i_count.counter, direntry,
1230 direntry->d_time, jiffies));
1231
1232 if (cifsInode->time == 0) {
1233 /* was set to zero previously to force revalidate */
1234 } else if (time_before(jiffies, cifsInode->time + HZ) &&
1235 lookupCacheEnabled) {
1236 if ((S_ISREG(direntry->d_inode->i_mode) == 0) ||
1237 (direntry->d_inode->i_nlink == 1)) {
1238 kfree(full_path);
1239 FreeXid(xid);
1240 return rc;
1241 } else {
1242 cFYI(1, ("Have to revalidate file due to hardlinks"));
1243 }
1244 }
1245
1246 /* save mtime and size */
1247 local_mtime = direntry->d_inode->i_mtime;
1248 local_size = direntry->d_inode->i_size;
1249
1250 if (cifs_sb->tcon->ses->capabilities & CAP_UNIX) {
1251 rc = cifs_get_inode_info_unix(&direntry->d_inode, full_path,
1252 direntry->d_sb,xid);
1253 if (rc) {
1254 cFYI(1, ("error on getting revalidate info %d", rc));
1255/* if (rc != -ENOENT)
1256 rc = 0; */ /* BB should we cache info on
1257 certain errors? */
1258 }
1259 } else {
1260 rc = cifs_get_inode_info(&direntry->d_inode, full_path, NULL,
1261 direntry->d_sb,xid);
1262 if (rc) {
1263 cFYI(1, ("error on getting revalidate info %d", rc));
1264/* if (rc != -ENOENT)
1265 rc = 0; */ /* BB should we cache info on
1266 certain errors? */
1267 }
1268 }
1269 /* should we remap certain errors, access denied?, to zero */
1270
1271 /* if not oplocked, we invalidate inode pages if mtime or file size
1272 had changed on server */
1273
1274 if (timespec_equal(&local_mtime,&direntry->d_inode->i_mtime) &&
1275 (local_size == direntry->d_inode->i_size)) {
1276 cFYI(1, ("cifs_revalidate - inode unchanged"));
1277 } else {
1278 /* file may have changed on server */
1279 if (cifsInode->clientCanCacheRead) {
1280 /* no need to invalidate inode pages since we were the
1281 only ones who could have modified the file and the
1282 server copy is staler than ours */
1283 } else {
1284 invalidate_inode = TRUE;
1285 }
1286 }
1287
1288 /* can not grab this sem since kernel filesys locking documentation
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001289 indicates i_mutex may be taken by the kernel on lookup and rename
1290 which could deadlock if we grab the i_mutex here as well */
1291/* mutex_lock(&direntry->d_inode->i_mutex);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 /* need to write out dirty pages here */
1293 if (direntry->d_inode->i_mapping) {
1294 /* do we need to lock inode until after invalidate completes
1295 below? */
1296 filemap_fdatawrite(direntry->d_inode->i_mapping);
1297 }
1298 if (invalidate_inode) {
Steve French3abb9272005-11-28 08:16:13 -08001299 /* shrink_dcache not necessary now that cifs dentry ops
1300 are exported for negative dentries */
1301/* if(S_ISDIR(direntry->d_inode->i_mode))
1302 shrink_dcache_parent(direntry); */
1303 if (S_ISREG(direntry->d_inode->i_mode)) {
1304 if (direntry->d_inode->i_mapping)
1305 filemap_fdatawait(direntry->d_inode->i_mapping);
1306 /* may eventually have to do this for open files too */
1307 if (list_empty(&(cifsInode->openFileList))) {
1308 /* changed on server - flush read ahead pages */
1309 cFYI(1, ("Invalidating read ahead data on "
1310 "closed file"));
1311 invalidate_remote_inode(direntry->d_inode);
1312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
1314 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001315/* mutex_unlock(&direntry->d_inode->i_mutex); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 kfree(full_path);
1318 FreeXid(xid);
1319 return rc;
1320}
1321
1322int cifs_getattr(struct vfsmount *mnt, struct dentry *dentry,
1323 struct kstat *stat)
1324{
1325 int err = cifs_revalidate(dentry);
Steve French5fe14c82006-11-07 19:26:33 +00001326 if (!err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 generic_fillattr(dentry->d_inode, stat);
Steve French5fe14c82006-11-07 19:26:33 +00001328 stat->blksize = CIFS_MAX_MSGSIZE;
1329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 return err;
1331}
1332
1333static int cifs_truncate_page(struct address_space *mapping, loff_t from)
1334{
1335 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1336 unsigned offset = from & (PAGE_CACHE_SIZE - 1);
1337 struct page *page;
1338 char *kaddr;
1339 int rc = 0;
1340
1341 page = grab_cache_page(mapping, index);
1342 if (!page)
1343 return -ENOMEM;
1344
1345 kaddr = kmap_atomic(page, KM_USER0);
1346 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
1347 flush_dcache_page(page);
1348 kunmap_atomic(kaddr, KM_USER0);
1349 unlock_page(page);
1350 page_cache_release(page);
1351 return rc;
1352}
1353
Steve French99ee4db2007-02-27 05:35:17 +00001354static int cifs_vmtruncate(struct inode * inode, loff_t offset)
Steve French3677db12007-02-26 16:46:11 +00001355{
1356 struct address_space *mapping = inode->i_mapping;
1357 unsigned long limit;
1358
Steve Frenchba6a46a2007-02-26 20:06:29 +00001359 spin_lock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001360 if (inode->i_size < offset)
1361 goto do_expand;
1362 /*
1363 * truncation of in-use swapfiles is disallowed - it would cause
1364 * subsequent swapout to scribble on the now-freed blocks.
1365 */
Steve Frenchba6a46a2007-02-26 20:06:29 +00001366 if (IS_SWAPFILE(inode)) {
1367 spin_unlock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001368 goto out_busy;
Steve Frenchba6a46a2007-02-26 20:06:29 +00001369 }
Steve French3677db12007-02-26 16:46:11 +00001370 i_size_write(inode, offset);
1371 spin_unlock(&inode->i_lock);
1372 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
1373 truncate_inode_pages(mapping, offset);
1374 goto out_truncate;
1375
1376do_expand:
1377 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
Steve Frenchba6a46a2007-02-26 20:06:29 +00001378 if (limit != RLIM_INFINITY && offset > limit) {
1379 spin_unlock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001380 goto out_sig;
Steve Frenchba6a46a2007-02-26 20:06:29 +00001381 }
1382 if (offset > inode->i_sb->s_maxbytes) {
1383 spin_unlock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001384 goto out_big;
Steve Frenchba6a46a2007-02-26 20:06:29 +00001385 }
Steve French3677db12007-02-26 16:46:11 +00001386 i_size_write(inode, offset);
Steve Frenchba6a46a2007-02-26 20:06:29 +00001387 spin_unlock(&inode->i_lock);
Steve French3677db12007-02-26 16:46:11 +00001388out_truncate:
1389 if (inode->i_op && inode->i_op->truncate)
1390 inode->i_op->truncate(inode);
1391 return 0;
1392out_sig:
1393 send_sig(SIGXFSZ, current, 0);
1394out_big:
1395 return -EFBIG;
1396out_busy:
1397 return -ETXTBSY;
1398}
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400int cifs_setattr(struct dentry *direntry, struct iattr *attrs)
1401{
1402 int xid;
1403 struct cifs_sb_info *cifs_sb;
1404 struct cifsTconInfo *pTcon;
1405 char *full_path = NULL;
1406 int rc = -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 struct cifsFileInfo *open_file = NULL;
1408 FILE_BASIC_INFO time_buf;
1409 int set_time = FALSE;
Steve French066fcb02007-03-23 00:45:08 +00001410 int set_dosattr = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 __u64 mode = 0xFFFFFFFFFFFFFFFFULL;
1412 __u64 uid = 0xFFFFFFFFFFFFFFFFULL;
1413 __u64 gid = 0xFFFFFFFFFFFFFFFFULL;
1414 struct cifsInodeInfo *cifsInode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416 xid = GetXid();
1417
Steve French39798772006-05-31 22:40:51 +00001418 cFYI(1, ("setattr on file %s attrs->iavalid 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 direntry->d_name.name, attrs->ia_valid));
Steve French6473a552005-11-29 20:20:10 -08001420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 cifs_sb = CIFS_SB(direntry->d_inode->i_sb);
1422 pTcon = cifs_sb->tcon;
1423
Steve French2a138ebb2005-11-29 21:22:19 -08001424 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) == 0) {
Steve French6473a552005-11-29 20:20:10 -08001425 /* check if we have permission to change attrs */
1426 rc = inode_change_ok(direntry->d_inode, attrs);
1427 if(rc < 0) {
1428 FreeXid(xid);
1429 return rc;
1430 } else
1431 rc = 0;
1432 }
1433
Steve French7f573562005-08-30 11:32:14 -07001434 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (full_path == NULL) {
1436 FreeXid(xid);
1437 return -ENOMEM;
1438 }
1439 cifsInode = CIFS_I(direntry->d_inode);
1440
1441 /* BB check if we need to refresh inode from server now ? BB */
1442
1443 /* need to flush data before changing file size on server */
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -08001444 filemap_write_and_wait(direntry->d_inode->i_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 if (attrs->ia_valid & ATTR_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 /* To avoid spurious oplock breaks from server, in the case of
1448 inodes that we already have open, avoid doing path based
1449 setting of file size if we can do it by handle.
1450 This keeps our caching token (oplock) and avoids timeouts
1451 when the local oplock break takes longer to flush
1452 writebehind data than the SMB timeout for the SetPathInfo
1453 request would allow */
Steve French39798772006-05-31 22:40:51 +00001454
Steve French6148a742005-10-05 12:23:19 -07001455 open_file = find_writable_file(cifsInode);
1456 if (open_file) {
1457 __u16 nfid = open_file->netfid;
1458 __u32 npid = open_file->pid;
1459 rc = CIFSSMBSetFileSize(xid, pTcon, attrs->ia_size,
1460 nfid, npid, FALSE);
Steve French23e7dd72005-10-20 13:44:56 -07001461 atomic_dec(&open_file->wrtPending);
Steve French6148a742005-10-05 12:23:19 -07001462 cFYI(1,("SetFSize for attrs rc = %d", rc));
Steve French083d3a22006-03-03 09:53:36 +00001463 if((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
Steve French6148a742005-10-05 12:23:19 -07001464 int bytes_written;
1465 rc = CIFSSMBWrite(xid, pTcon,
1466 nfid, 0, attrs->ia_size,
1467 &bytes_written, NULL, NULL,
1468 1 /* 45 seconds */);
1469 cFYI(1,("Wrt seteof rc %d", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
Steve French6473a552005-11-29 20:20:10 -08001471 } else
1472 rc = -EINVAL;
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 if (rc != 0) {
1475 /* Set file size by pathname rather than by handle
1476 either because no valid, writeable file handle for
1477 it was found or because there was an error setting
1478 it by handle */
1479 rc = CIFSSMBSetEOF(xid, pTcon, full_path,
1480 attrs->ia_size, FALSE,
Steve French737b7582005-04-28 22:41:06 -07001481 cifs_sb->local_nls,
1482 cifs_sb->mnt_cifs_flags &
1483 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenche30dcf32005-09-20 20:49:16 -07001484 cFYI(1, ("SetEOF by path (setattrs) rc = %d", rc));
Steve French083d3a22006-03-03 09:53:36 +00001485 if((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001486 __u16 netfid;
1487 int oplock = FALSE;
1488
1489 rc = SMBLegacyOpen(xid, pTcon, full_path,
1490 FILE_OPEN,
1491 SYNCHRONIZE | FILE_WRITE_ATTRIBUTES,
1492 CREATE_NOT_DIR, &netfid, &oplock,
1493 NULL, cifs_sb->local_nls,
1494 cifs_sb->mnt_cifs_flags &
1495 CIFS_MOUNT_MAP_SPECIAL_CHR);
1496 if (rc==0) {
1497 int bytes_written;
1498 rc = CIFSSMBWrite(xid, pTcon,
1499 netfid, 0,
1500 attrs->ia_size,
1501 &bytes_written, NULL,
1502 NULL, 1 /* 45 sec */);
1503 cFYI(1,("wrt seteof rc %d",rc));
1504 CIFSSMBClose(xid, pTcon, netfid);
1505 }
1506
1507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 }
1509
1510 /* Server is ok setting allocation size implicitly - no need
1511 to call:
1512 CIFSSMBSetEOF(xid, pTcon, full_path, attrs->ia_size, TRUE,
1513 cifs_sb->local_nls);
1514 */
1515
1516 if (rc == 0) {
Steve French3677db12007-02-26 16:46:11 +00001517 rc = cifs_vmtruncate(direntry->d_inode, attrs->ia_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 cifs_truncate_page(direntry->d_inode->i_mapping,
1519 direntry->d_inode->i_size);
Steve Frenche30dcf32005-09-20 20:49:16 -07001520 } else
1521 goto cifs_setattr_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
1523 if (attrs->ia_valid & ATTR_UID) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001524 cFYI(1, ("UID changed to %d", attrs->ia_uid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 uid = attrs->ia_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 }
1527 if (attrs->ia_valid & ATTR_GID) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001528 cFYI(1, ("GID changed to %d", attrs->ia_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 gid = attrs->ia_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 }
1531
1532 time_buf.Attributes = 0;
1533 if (attrs->ia_valid & ATTR_MODE) {
Steve Frenche30dcf32005-09-20 20:49:16 -07001534 cFYI(1, ("Mode changed to 0x%x", attrs->ia_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 mode = attrs->ia_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
1537
1538 if ((cifs_sb->tcon->ses->capabilities & CAP_UNIX)
1539 && (attrs->ia_valid & (ATTR_MODE | ATTR_GID | ATTR_UID)))
1540 rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode, uid, gid,
Steve French737b7582005-04-28 22:41:06 -07001541 0 /* dev_t */, cifs_sb->local_nls,
1542 cifs_sb->mnt_cifs_flags &
1543 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 else if (attrs->ia_valid & ATTR_MODE) {
Steve Frenchcdbce9c2005-11-19 21:04:52 -08001545 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 if ((mode & S_IWUGO) == 0) /* not writeable */ {
Steve French066fcb02007-03-23 00:45:08 +00001547 if ((cifsInode->cifsAttrs & ATTR_READONLY) == 0) {
1548 set_dosattr = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 time_buf.Attributes =
1550 cpu_to_le32(cifsInode->cifsAttrs |
1551 ATTR_READONLY);
Steve French066fcb02007-03-23 00:45:08 +00001552 }
Steve French5268df22007-04-06 19:28:16 +00001553 } else if (cifsInode->cifsAttrs & ATTR_READONLY) {
1554 /* If file is readonly on server, we would
1555 not be able to write to it - so if any write
1556 bit is enabled for user or group or other we
1557 need to at least try to remove r/o dos attr */
1558 set_dosattr = TRUE;
1559 time_buf.Attributes = cpu_to_le32(cifsInode->cifsAttrs &
1560 (~ATTR_READONLY));
1561 /* Windows ignores set to zero */
1562 if(time_buf.Attributes == 0)
1563 time_buf.Attributes |= cpu_to_le32(ATTR_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
1565 /* BB to be implemented -
1566 via Windows security descriptors or streams */
1567 /* CIFSSMBWinSetPerms(xid, pTcon, full_path, mode, uid, gid,
1568 cifs_sb->local_nls); */
1569 }
1570
1571 if (attrs->ia_valid & ATTR_ATIME) {
1572 set_time = TRUE;
1573 time_buf.LastAccessTime =
1574 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_atime));
1575 } else
1576 time_buf.LastAccessTime = 0;
1577
1578 if (attrs->ia_valid & ATTR_MTIME) {
1579 set_time = TRUE;
1580 time_buf.LastWriteTime =
1581 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_mtime));
1582 } else
1583 time_buf.LastWriteTime = 0;
Steve Frenche30dcf32005-09-20 20:49:16 -07001584 /* Do not set ctime explicitly unless other time
1585 stamps are changed explicitly (i.e. by utime()
1586 since we would then have a mix of client and
1587 server times */
1588
1589 if (set_time && (attrs->ia_valid & ATTR_CTIME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 set_time = TRUE;
Steve Frenche30dcf32005-09-20 20:49:16 -07001591 /* Although Samba throws this field away
1592 it may be useful to Windows - but we do
1593 not want to set ctime unless some other
1594 timestamp is changing */
Steve French26a21b92006-05-31 18:05:34 +00001595 cFYI(1, ("CIFS - CTIME changed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 time_buf.ChangeTime =
1597 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_ctime));
1598 } else
1599 time_buf.ChangeTime = 0;
1600
Steve French066fcb02007-03-23 00:45:08 +00001601 if (set_time || set_dosattr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 time_buf.CreationTime = 0; /* do not change */
1603 /* In the future we should experiment - try setting timestamps
1604 via Handle (SetFileInfo) instead of by path */
1605 if (!(pTcon->ses->flags & CIFS_SES_NT4))
1606 rc = CIFSSMBSetTimes(xid, pTcon, full_path, &time_buf,
Steve French737b7582005-04-28 22:41:06 -07001607 cifs_sb->local_nls,
1608 cifs_sb->mnt_cifs_flags &
1609 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 else
1611 rc = -EOPNOTSUPP;
1612
1613 if (rc == -EOPNOTSUPP) {
1614 int oplock = FALSE;
1615 __u16 netfid;
1616
1617 cFYI(1, ("calling SetFileInfo since SetPathInfo for "
1618 "times not supported by this server"));
1619 /* BB we could scan to see if we already have it open
1620 and pass in pid of opener to function */
1621 rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN,
1622 SYNCHRONIZE | FILE_WRITE_ATTRIBUTES,
1623 CREATE_NOT_DIR, &netfid, &oplock,
Steve French737b7582005-04-28 22:41:06 -07001624 NULL, cifs_sb->local_nls,
1625 cifs_sb->mnt_cifs_flags &
1626 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 if (rc==0) {
1628 rc = CIFSSMBSetFileTimes(xid, pTcon, &time_buf,
1629 netfid);
1630 CIFSSMBClose(xid, pTcon, netfid);
1631 } else {
1632 /* BB For even older servers we could convert time_buf
1633 into old DOS style which uses two second
1634 granularity */
1635
1636 /* rc = CIFSSMBSetTimesLegacy(xid, pTcon, full_path,
1637 &time_buf, cifs_sb->local_nls); */
1638 }
1639 }
Steve Frenche30dcf32005-09-20 20:49:16 -07001640 /* Even if error on time set, no sense failing the call if
1641 the server would set the time to a reasonable value anyway,
1642 and this check ensures that we are not being called from
1643 sys_utimes in which case we ought to fail the call back to
1644 the user when the server rejects the call */
Steve Frenchc14e8942007-02-15 01:33:18 +00001645 if((rc) && (attrs->ia_valid &
Steve Frenche30dcf32005-09-20 20:49:16 -07001646 (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE)))
1647 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
1649
1650 /* do not need local check to inode_check_ok since the server does
1651 that */
1652 if (!rc)
1653 rc = inode_setattr(direntry->d_inode, attrs);
Steve Frenche30dcf32005-09-20 20:49:16 -07001654cifs_setattr_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 kfree(full_path);
1656 FreeXid(xid);
1657 return rc;
1658}
1659
Steve French99ee4db2007-02-27 05:35:17 +00001660#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661void cifs_delete_inode(struct inode *inode)
1662{
Steve French26a21b92006-05-31 18:05:34 +00001663 cFYI(1, ("In cifs_delete_inode, inode = 0x%p", inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 /* may have to add back in if and when safe distributed caching of
1665 directories added e.g. via FindNotify */
1666}
Steve French99ee4db2007-02-27 05:35:17 +00001667#endif