]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * fs/cifs/inode.c | |
3 | * | |
2dd29d31 | 4 | * Copyright (C) International Business Machines Corp., 2002,2007 |
1da177e4 LT |
5 | * Author(s): Steve French ([email protected]) |
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> | |
1da177e4 LT |
22 | #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 | ||
32 | int 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; | |
26a21b98 | 43 | cFYI(1, ("Getting info on %s", search_path)); |
1da177e4 LT |
44 | /* could have done a find first instead but this returns more info */ |
45 | rc = CIFSSMBUnixQPathInfo(xid, pTcon, search_path, &findData, | |
737b758c SF |
46 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
47 | CIFS_MOUNT_MAP_SPECIAL_CHR); | |
1da177e4 LT |
48 | /* 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 | } | |
fb8c4b14 | 60 | /* have to skip first of the double backslash of |
1da177e4 LT |
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, | |
fb8c4b14 SF |
66 | cifs_sb->local_nls, |
67 | cifs_sb->mnt_cifs_flags & | |
737b758c | 68 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
1da177e4 LT |
69 | 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); | |
fb8c4b14 | 84 | if (*pinode == NULL) |
1da177e4 LT |
85 | 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? */ | |
d0d2f2df | 89 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) { |
1da177e4 LT |
90 | (*pinode)->i_ino = |
91 | (unsigned long)findData.UniqueId; | |
92 | } /* note ino incremented to unique num in new_inode */ | |
4523cc30 | 93 | if (sb->s_flags & MS_NOATIME) |
1b2b2126 | 94 | (*pinode)->i_flags |= S_NOATIME | S_NOCMTIME; |
50c2f753 | 95 | |
1da177e4 LT |
96 | insert_inode_hash(*pinode); |
97 | } | |
98 | ||
99 | inode = *pinode; | |
100 | cifsInfo = CIFS_I(inode); | |
101 | ||
26a21b98 | 102 | cFYI(1, ("Old time %ld", cifsInfo->time)); |
1da177e4 | 103 | cifsInfo->time = jiffies; |
26a21b98 | 104 | cFYI(1, ("New time %ld", cifsInfo->time)); |
1da177e4 | 105 | /* this is ok to set on every inode revalidate */ |
fb8c4b14 | 106 | atomic_set(&cifsInfo->inUse, 1); |
1da177e4 LT |
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); | |
3020a1f5 | 116 | /* since we set the inode type below we need to mask off |
fb8c4b14 | 117 | to avoid strange results if bits set above */ |
7f8ed420 | 118 | inode->i_mode &= ~S_IFMT; |
1da177e4 LT |
119 | 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; | |
3020a1f5 SF |
137 | } else { |
138 | /* safest to call it a file if we do not know */ | |
139 | inode->i_mode |= S_IFREG; | |
fb8c4b14 | 140 | cFYI(1, ("unknown type %d", type)); |
1da177e4 | 141 | } |
50c2f753 | 142 | |
4523cc30 SF |
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); | |
50c2f753 | 152 | |
1da177e4 LT |
153 | inode->i_nlink = le64_to_cpu(findData.Nlinks); |
154 | ||
3677db10 | 155 | spin_lock(&inode->i_lock); |
7ba52631 | 156 | if (is_size_safe_to_change(cifsInfo, end_of_file)) { |
1da177e4 LT |
157 | /* can not safely change the file size here if the |
158 | client is writing to it due to potential races */ | |
1da177e4 LT |
159 | 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 | } | |
3677db10 | 174 | spin_unlock(&inode->i_lock); |
1da177e4 LT |
175 | |
176 | if (num_of_bytes < end_of_file) | |
8b94bcb9 | 177 | cFYI(1, ("allocation size less than end of file")); |
5515eff8 AM |
178 | cFYI(1, ("Size %ld and blocks %llu", |
179 | (unsigned long) inode->i_size, | |
180 | (unsigned long long)inode->i_blocks)); | |
1da177e4 | 181 | if (S_ISREG(inode->i_mode)) { |
8b94bcb9 | 182 | cFYI(1, ("File inode")); |
1da177e4 | 183 | inode->i_op = &cifs_file_inode_ops; |
8b94bcb9 SF |
184 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) { |
185 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) | |
fb8c4b14 | 186 | inode->i_fop = |
8b94bcb9 SF |
187 | &cifs_file_direct_nobrl_ops; |
188 | else | |
189 | inode->i_fop = &cifs_file_direct_ops; | |
4523cc30 | 190 | } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
8b94bcb9 | 191 | inode->i_fop = &cifs_file_nobrl_ops; |
fb8c4b14 | 192 | else /* not direct, send byte range locks */ |
1da177e4 | 193 | inode->i_fop = &cifs_file_ops; |
8b94bcb9 | 194 | |
bfa0d75a | 195 | /* check if server can support readpages */ |
fb8c4b14 | 196 | if (pTcon->ses->server->maxBuf < |
273d81d6 DK |
197 | 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; | |
1da177e4 | 201 | } else if (S_ISDIR(inode->i_mode)) { |
8b94bcb9 | 202 | cFYI(1, ("Directory inode")); |
1da177e4 LT |
203 | inode->i_op = &cifs_dir_inode_ops; |
204 | inode->i_fop = &cifs_dir_ops; | |
205 | } else if (S_ISLNK(inode->i_mode)) { | |
8b94bcb9 | 206 | cFYI(1, ("Symbolic Link inode")); |
1da177e4 LT |
207 | inode->i_op = &cifs_symlink_inode_ops; |
208 | /* tmp_inode->i_fop = */ /* do not need to set to anything */ | |
209 | } else { | |
8b94bcb9 | 210 | cFYI(1, ("Init special inode")); |
1da177e4 LT |
211 | init_special_inode(inode, inode->i_mode, |
212 | inode->i_rdev); | |
213 | } | |
214 | } | |
215 | return rc; | |
216 | } | |
217 | ||
fb8c4b14 | 218 | static int decode_sfu_inode(struct inode *inode, __u64 size, |
d6e2f2a4 SF |
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; | |
86c96b4b | 226 | char buf[24]; |
d6e2f2a4 | 227 | unsigned int bytes_read; |
fb8c4b14 | 228 | char *pbuf; |
d6e2f2a4 SF |
229 | |
230 | pbuf = buf; | |
231 | ||
4523cc30 | 232 | if (size == 0) { |
d6e2f2a4 SF |
233 | inode->i_mode |= S_IFIFO; |
234 | return 0; | |
235 | } else if (size < 8) { | |
236 | return -EINVAL; /* EOPNOTSUPP? */ | |
237 | } | |
50c2f753 | 238 | |
d6e2f2a4 SF |
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); | |
fb8c4b14 | 244 | if (rc == 0) { |
ec637e3f | 245 | int buf_type = CIFS_NO_BUFFER; |
d6e2f2a4 SF |
246 | /* Read header */ |
247 | rc = CIFSSMBRead(xid, pTcon, | |
fb8c4b14 | 248 | netfid, |
86c96b4b | 249 | 24 /* length */, 0 /* offset */, |
ec637e3f | 250 | &bytes_read, &pbuf, &buf_type); |
4523cc30 SF |
251 | if ((rc == 0) && (bytes_read >= 8)) { |
252 | if (memcmp("IntxBLK", pbuf, 8) == 0) { | |
fb8c4b14 | 253 | cFYI(1, ("Block device")); |
3020a1f5 | 254 | inode->i_mode |= S_IFBLK; |
4523cc30 | 255 | if (bytes_read == 24) { |
86c96b4b SF |
256 | /* 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 | } | |
4523cc30 | 263 | } else if (memcmp("IntxCHR", pbuf, 8) == 0) { |
fb8c4b14 | 264 | cFYI(1, ("Char device")); |
3020a1f5 | 265 | inode->i_mode |= S_IFCHR; |
4523cc30 | 266 | if (bytes_read == 24) { |
86c96b4b SF |
267 | /* 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); | |
fb8c4b14 | 273 | } |
4523cc30 | 274 | } else if (memcmp("IntxLNK", pbuf, 7) == 0) { |
fb8c4b14 | 275 | cFYI(1, ("Symlink")); |
3020a1f5 | 276 | inode->i_mode |= S_IFLNK; |
86c96b4b SF |
277 | } else { |
278 | inode->i_mode |= S_IFREG; /* file? */ | |
fb8c4b14 | 279 | rc = -EOPNOTSUPP; |
86c96b4b | 280 | } |
3020a1f5 SF |
281 | } else { |
282 | inode->i_mode |= S_IFREG; /* then it is a file */ | |
fb8c4b14 SF |
283 | rc = -EOPNOTSUPP; /* or some unknown SFU type */ |
284 | } | |
d6e2f2a4 | 285 | CIFSSMBClose(xid, pTcon, netfid); |
d6e2f2a4 SF |
286 | } |
287 | return rc; | |
d6e2f2a4 SF |
288 | } |
289 | ||
9e294f1c SF |
290 | #define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */ |
291 | ||
953f8681 | 292 | static int get_sfu_mode(struct inode *inode, |
9e294f1c SF |
293 | const unsigned char *path, |
294 | struct cifs_sb_info *cifs_sb, int xid) | |
295 | { | |
3020a1f5 | 296 | #ifdef CONFIG_CIFS_XATTR |
9e294f1c SF |
297 | ssize_t rc; |
298 | char ea_value[4]; | |
299 | __u32 mode; | |
300 | ||
301 | rc = CIFSSMBQueryEA(xid, cifs_sb->tcon, path, "SETFILEBITS", | |
302 | ea_value, 4 /* size of buf */, cifs_sb->local_nls, | |
fb8c4b14 | 303 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
4523cc30 | 304 | if (rc < 0) |
9e294f1c SF |
305 | return (int)rc; |
306 | else if (rc > 3) { | |
307 | mode = le32_to_cpu(*((__le32 *)ea_value)); | |
fb8c4b14 SF |
308 | inode->i_mode &= ~SFBITS_MASK; |
309 | cFYI(1, ("special bits 0%o org mode 0%o", mode, inode->i_mode)); | |
9e294f1c | 310 | inode->i_mode = (mode & SFBITS_MASK) | inode->i_mode; |
fb8c4b14 | 311 | cFYI(1, ("special mode bits 0%o", mode)); |
9e294f1c SF |
312 | return 0; |
313 | } else { | |
314 | return 0; | |
315 | } | |
3020a1f5 SF |
316 | #else |
317 | return -EOPNOTSUPP; | |
318 | #endif | |
9e294f1c SF |
319 | } |
320 | ||
1da177e4 LT |
321 | int cifs_get_inode_info(struct inode **pinode, |
322 | const unsigned char *search_path, FILE_ALL_INFO *pfindData, | |
323 | struct super_block *sb, int xid) | |
324 | { | |
325 | int rc = 0; | |
326 | struct cifsTconInfo *pTcon; | |
327 | struct inode *inode; | |
328 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); | |
329 | char *tmp_path; | |
330 | char *buf = NULL; | |
8d6286fd | 331 | int adjustTZ = FALSE; |
1da177e4 LT |
332 | |
333 | pTcon = cifs_sb->tcon; | |
fb8c4b14 | 334 | cFYI(1, ("Getting info on %s", search_path)); |
1da177e4 | 335 | |
d0d2f2df SF |
336 | if ((pfindData == NULL) && (*pinode != NULL)) { |
337 | if (CIFS_I(*pinode)->clientCanCacheRead) { | |
fb8c4b14 | 338 | cFYI(1, ("No need to revalidate cached inode sizes")); |
1da177e4 LT |
339 | return rc; |
340 | } | |
341 | } | |
342 | ||
343 | /* if file info not passed in then get it from server */ | |
d0d2f2df | 344 | if (pfindData == NULL) { |
1da177e4 | 345 | buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); |
d0d2f2df | 346 | if (buf == NULL) |
1da177e4 LT |
347 | return -ENOMEM; |
348 | pfindData = (FILE_ALL_INFO *)buf; | |
349 | /* could do find first instead but this returns more info */ | |
350 | rc = CIFSSMBQPathInfo(xid, pTcon, search_path, pfindData, | |
acf1a1b1 | 351 | 0 /* not legacy */, |
6b8edfe0 | 352 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
737b758c | 353 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
6b8edfe0 SF |
354 | /* BB optimize code so we do not make the above call |
355 | when server claims no NT SMB support and the above call | |
356 | failed at least once - set flag in tcon or mount */ | |
4523cc30 | 357 | if ((rc == -EOPNOTSUPP) || (rc == -EINVAL)) { |
6b8edfe0 | 358 | rc = SMBQueryInformation(xid, pTcon, search_path, |
fb8c4b14 | 359 | pfindData, cifs_sb->local_nls, |
6b8edfe0 SF |
360 | cifs_sb->mnt_cifs_flags & |
361 | CIFS_MOUNT_MAP_SPECIAL_CHR); | |
8d6286fd | 362 | adjustTZ = TRUE; |
6b8edfe0 | 363 | } |
1da177e4 LT |
364 | } |
365 | /* dump_mem("\nQPathInfo return data",&findData, sizeof(findData)); */ | |
366 | if (rc) { | |
367 | if (rc == -EREMOTE) { | |
368 | tmp_path = | |
369 | kmalloc(strnlen | |
370 | (pTcon->treeName, | |
371 | MAX_TREE_SIZE + 1) + | |
372 | strnlen(search_path, MAX_PATHCONF) + 1, | |
373 | GFP_KERNEL); | |
374 | if (tmp_path == NULL) { | |
375 | kfree(buf); | |
376 | return -ENOMEM; | |
377 | } | |
378 | ||
379 | strncpy(tmp_path, pTcon->treeName, MAX_TREE_SIZE); | |
380 | strncat(tmp_path, search_path, MAX_PATHCONF); | |
381 | rc = connect_to_dfs_path(xid, pTcon->ses, | |
382 | /* treename + */ tmp_path, | |
fb8c4b14 SF |
383 | cifs_sb->local_nls, |
384 | cifs_sb->mnt_cifs_flags & | |
737b758c | 385 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
1da177e4 LT |
386 | kfree(tmp_path); |
387 | /* BB fix up inode etc. */ | |
388 | } else if (rc) { | |
389 | kfree(buf); | |
390 | return rc; | |
391 | } | |
392 | } else { | |
393 | struct cifsInodeInfo *cifsInfo; | |
394 | __u32 attr = le32_to_cpu(pfindData->Attributes); | |
395 | ||
396 | /* get new inode */ | |
397 | if (*pinode == NULL) { | |
398 | *pinode = new_inode(sb); | |
acf1a1b1 SF |
399 | if (*pinode == NULL) { |
400 | kfree(buf); | |
1da177e4 | 401 | return -ENOMEM; |
acf1a1b1 | 402 | } |
1da177e4 LT |
403 | /* Is an i_ino of zero legal? Can we use that to check |
404 | if the server supports returning inode numbers? Are | |
405 | there other sanity checks we can use to ensure that | |
406 | the server is really filling in that field? */ | |
407 | ||
408 | /* We can not use the IndexNumber field by default from | |
409 | Windows or Samba (in ALL_INFO buf) but we can request | |
410 | it explicitly. It may not be unique presumably if | |
411 | the server has multiple devices mounted under one | |
412 | share */ | |
413 | ||
414 | /* There may be higher info levels that work but are | |
415 | there Windows server or network appliances for which | |
416 | IndexNumber field is not guaranteed unique? */ | |
417 | ||
fb8c4b14 | 418 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) { |
1da177e4 LT |
419 | int rc1 = 0; |
420 | __u64 inode_num; | |
421 | ||
fb8c4b14 SF |
422 | rc1 = CIFSGetSrvInodeNumber(xid, pTcon, |
423 | search_path, &inode_num, | |
737b758c SF |
424 | cifs_sb->local_nls, |
425 | cifs_sb->mnt_cifs_flags & | |
426 | CIFS_MOUNT_MAP_SPECIAL_CHR); | |
d0d2f2df | 427 | if (rc1) { |
fb8c4b14 | 428 | cFYI(1, ("GetSrvInodeNum rc %d", rc1)); |
1da177e4 LT |
429 | /* BB EOPNOSUPP disable SERVER_INUM? */ |
430 | } else /* do we need cast or hash to ino? */ | |
431 | (*pinode)->i_ino = inode_num; | |
432 | } /* else ino incremented to unique num in new_inode*/ | |
4523cc30 | 433 | if (sb->s_flags & MS_NOATIME) |
1b2b2126 | 434 | (*pinode)->i_flags |= S_NOATIME | S_NOCMTIME; |
1da177e4 LT |
435 | insert_inode_hash(*pinode); |
436 | } | |
437 | inode = *pinode; | |
438 | cifsInfo = CIFS_I(inode); | |
439 | cifsInfo->cifsAttrs = attr; | |
26a21b98 | 440 | cFYI(1, ("Old time %ld", cifsInfo->time)); |
1da177e4 | 441 | cifsInfo->time = jiffies; |
26a21b98 | 442 | cFYI(1, ("New time %ld", cifsInfo->time)); |
1da177e4 LT |
443 | |
444 | /* blksize needs to be multiple of two. So safer to default to | |
445 | blksize and blkbits set in superblock so 2**blkbits and blksize | |
446 | will match rather than setting to: | |
447 | (pTcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE) & 0xFFFFFE00;*/ | |
448 | ||
26a21b98 | 449 | /* Linux can not store file creation time so ignore it */ |
4523cc30 | 450 | if (pfindData->LastAccessTime) |
1bd5bbcb SF |
451 | inode->i_atime = cifs_NTtimeToUnix |
452 | (le64_to_cpu(pfindData->LastAccessTime)); | |
453 | else /* do not need to use current_fs_time - time not stored */ | |
454 | inode->i_atime = CURRENT_TIME; | |
1da177e4 LT |
455 | inode->i_mtime = |
456 | cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastWriteTime)); | |
457 | inode->i_ctime = | |
458 | cifs_NTtimeToUnix(le64_to_cpu(pfindData->ChangeTime)); | |
26a21b98 | 459 | cFYI(0, ("Attributes came in as 0x%x", attr)); |
4523cc30 | 460 | if (adjustTZ && (pTcon->ses) && (pTcon->ses->server)) { |
8d6286fd | 461 | inode->i_ctime.tv_sec += pTcon->ses->server->timeAdj; |
fb8c4b14 | 462 | inode->i_mtime.tv_sec += pTcon->ses->server->timeAdj; |
8d6286fd | 463 | } |
1da177e4 LT |
464 | |
465 | /* set default mode. will override for dirs below */ | |
466 | if (atomic_read(&cifsInfo->inUse) == 0) | |
467 | /* new inode, can safely set these fields */ | |
468 | inode->i_mode = cifs_sb->mnt_file_mode; | |
3020a1f5 | 469 | else /* since we set the inode type below we need to mask off |
fb8c4b14 SF |
470 | to avoid strange results if type changes and both |
471 | get orred in */ | |
472 | inode->i_mode &= ~S_IFMT; | |
1da177e4 LT |
473 | /* if (attr & ATTR_REPARSE) */ |
474 | /* We no longer handle these as symlinks because we could not | |
475 | follow them due to the absolute path with drive letter */ | |
476 | if (attr & ATTR_DIRECTORY) { | |
477 | /* override default perms since we do not do byte range locking | |
478 | on dirs */ | |
479 | inode->i_mode = cifs_sb->mnt_dir_mode; | |
480 | inode->i_mode |= S_IFDIR; | |
eda3c029 SF |
481 | } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) && |
482 | (cifsInfo->cifsAttrs & ATTR_SYSTEM) && | |
483 | /* No need to le64 convert size of zero */ | |
484 | (pfindData->EndOfFile == 0)) { | |
485 | inode->i_mode = cifs_sb->mnt_file_mode; | |
486 | inode->i_mode |= S_IFIFO; | |
d6e2f2a4 SF |
487 | /* BB Finish for SFU style symlinks and devices */ |
488 | } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) && | |
489 | (cifsInfo->cifsAttrs & ATTR_SYSTEM)) { | |
fb8c4b14 | 490 | if (decode_sfu_inode(inode, |
d6e2f2a4 SF |
491 | le64_to_cpu(pfindData->EndOfFile), |
492 | search_path, | |
493 | cifs_sb, xid)) { | |
fb8c4b14 | 494 | cFYI(1, ("Unrecognized sfu inode type")); |
d6e2f2a4 | 495 | } |
fb8c4b14 | 496 | cFYI(1, ("sfu mode 0%o", inode->i_mode)); |
1da177e4 LT |
497 | } else { |
498 | inode->i_mode |= S_IFREG; | |
499 | /* treat the dos attribute of read-only as read-only | |
500 | mode e.g. 555 */ | |
501 | if (cifsInfo->cifsAttrs & ATTR_READONLY) | |
502 | inode->i_mode &= ~(S_IWUGO); | |
f5c1e2ea AT |
503 | else if ((inode->i_mode & S_IWUGO) == 0) |
504 | /* the ATTR_READONLY flag may have been */ | |
505 | /* changed on server -- set any w bits */ | |
506 | /* allowed by mnt_file_mode */ | |
507 | inode->i_mode |= (S_IWUGO & | |
508 | cifs_sb->mnt_file_mode); | |
1da177e4 LT |
509 | /* BB add code here - |
510 | validate if device or weird share or device type? */ | |
511 | } | |
50c2f753 | 512 | |
3677db10 | 513 | spin_lock(&inode->i_lock); |
7ba52631 SF |
514 | if (is_size_safe_to_change(cifsInfo, le64_to_cpu(pfindData->EndOfFile))) { |
515 | /* can not safely shrink the file size here if the | |
1da177e4 | 516 | client is writing to it due to potential races */ |
fb8c4b14 | 517 | i_size_write(inode, le64_to_cpu(pfindData->EndOfFile)); |
1da177e4 LT |
518 | |
519 | /* 512 bytes (2**9) is the fake blocksize that must be | |
520 | used for this calculation */ | |
521 | inode->i_blocks = (512 - 1 + le64_to_cpu( | |
522 | pfindData->AllocationSize)) >> 9; | |
523 | } | |
3677db10 | 524 | spin_unlock(&inode->i_lock); |
1da177e4 LT |
525 | |
526 | inode->i_nlink = le32_to_cpu(pfindData->NumberOfLinks); | |
527 | ||
fb8c4b14 | 528 | /* BB fill in uid and gid here? with help from winbind? |
1da177e4 | 529 | or retrieve from NTFS stream extended attribute */ |
4879b448 | 530 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
953f8681 | 531 | /* fill in 0777 bits from ACL */ |
4879b448 SF |
532 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) { |
533 | cFYI(1, ("Getting mode bits from ACL")); | |
630f3f0c | 534 | acl_to_uid_mode(inode, search_path); |
4879b448 SF |
535 | } |
536 | #endif | |
4523cc30 | 537 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) { |
953f8681 SF |
538 | /* fill in remaining high mode bits e.g. SUID, VTX */ |
539 | get_sfu_mode(inode, search_path, cifs_sb, xid); | |
9e294f1c | 540 | } else if (atomic_read(&cifsInfo->inUse) == 0) { |
1da177e4 LT |
541 | inode->i_uid = cifs_sb->mnt_uid; |
542 | inode->i_gid = cifs_sb->mnt_gid; | |
543 | /* set so we do not keep refreshing these fields with | |
544 | bad data after user has changed them in memory */ | |
fb8c4b14 | 545 | atomic_set(&cifsInfo->inUse, 1); |
1da177e4 LT |
546 | } |
547 | ||
548 | if (S_ISREG(inode->i_mode)) { | |
d6e2f2a4 | 549 | cFYI(1, ("File inode")); |
1da177e4 | 550 | inode->i_op = &cifs_file_inode_ops; |
8b94bcb9 SF |
551 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) { |
552 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) | |
553 | inode->i_fop = | |
554 | &cifs_file_direct_nobrl_ops; | |
555 | else | |
556 | inode->i_fop = &cifs_file_direct_ops; | |
4523cc30 | 557 | } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
8b94bcb9 SF |
558 | inode->i_fop = &cifs_file_nobrl_ops; |
559 | else /* not direct, send byte range locks */ | |
1da177e4 | 560 | inode->i_fop = &cifs_file_ops; |
8b94bcb9 | 561 | |
fb8c4b14 | 562 | if (pTcon->ses->server->maxBuf < |
273d81d6 DK |
563 | PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE) |
564 | inode->i_data.a_ops = &cifs_addr_ops_smallbuf; | |
565 | else | |
566 | inode->i_data.a_ops = &cifs_addr_ops; | |
1da177e4 | 567 | } else if (S_ISDIR(inode->i_mode)) { |
d6e2f2a4 | 568 | cFYI(1, ("Directory inode")); |
1da177e4 LT |
569 | inode->i_op = &cifs_dir_inode_ops; |
570 | inode->i_fop = &cifs_dir_ops; | |
571 | } else if (S_ISLNK(inode->i_mode)) { | |
d6e2f2a4 | 572 | cFYI(1, ("Symbolic Link inode")); |
1da177e4 LT |
573 | inode->i_op = &cifs_symlink_inode_ops; |
574 | } else { | |
575 | init_special_inode(inode, inode->i_mode, | |
576 | inode->i_rdev); | |
577 | } | |
578 | } | |
579 | kfree(buf); | |
580 | return rc; | |
581 | } | |
582 | ||
7f8ed420 SF |
583 | static const struct inode_operations cifs_ipc_inode_ops = { |
584 | .lookup = cifs_lookup, | |
585 | }; | |
586 | ||
1da177e4 LT |
587 | /* gets root inode */ |
588 | void cifs_read_inode(struct inode *inode) | |
589 | { | |
7f8ed420 | 590 | int xid, rc; |
1da177e4 LT |
591 | struct cifs_sb_info *cifs_sb; |
592 | ||
593 | cifs_sb = CIFS_SB(inode->i_sb); | |
594 | xid = GetXid(); | |
c18c842b SF |
595 | |
596 | if (cifs_sb->tcon->unix_ext) | |
7f8ed420 | 597 | rc = cifs_get_inode_info_unix(&inode, "", inode->i_sb, xid); |
1da177e4 | 598 | else |
7f8ed420 SF |
599 | rc = cifs_get_inode_info(&inode, "", NULL, inode->i_sb, xid); |
600 | if (rc && cifs_sb->tcon->ipc) { | |
601 | cFYI(1, ("ipc connection - fake read inode")); | |
602 | inode->i_mode |= S_IFDIR; | |
603 | inode->i_nlink = 2; | |
604 | inode->i_op = &cifs_ipc_inode_ops; | |
605 | inode->i_fop = &simple_dir_operations; | |
606 | inode->i_uid = cifs_sb->mnt_uid; | |
607 | inode->i_gid = cifs_sb->mnt_gid; | |
608 | } | |
609 | ||
1da177e4 LT |
610 | /* can not call macro FreeXid here since in a void func */ |
611 | _FreeXid(xid); | |
612 | } | |
613 | ||
614 | int cifs_unlink(struct inode *inode, struct dentry *direntry) | |
615 | { | |
616 | int rc = 0; | |
617 | int xid; | |
618 | struct cifs_sb_info *cifs_sb; | |
619 | struct cifsTconInfo *pTcon; | |
620 | char *full_path = NULL; | |
621 | struct cifsInodeInfo *cifsInode; | |
622 | FILE_BASIC_INFO *pinfo_buf; | |
623 | ||
06bcfedd | 624 | cFYI(1, ("cifs_unlink, inode = 0x%p", inode)); |
1da177e4 LT |
625 | |
626 | xid = GetXid(); | |
627 | ||
4523cc30 | 628 | if (inode) |
6910ab30 SF |
629 | cifs_sb = CIFS_SB(inode->i_sb); |
630 | else | |
06bcfedd | 631 | cifs_sb = CIFS_SB(direntry->d_sb); |
1da177e4 LT |
632 | pTcon = cifs_sb->tcon; |
633 | ||
634 | /* Unlink can be called from rename so we can not grab the sem here | |
635 | since we deadlock otherwise */ | |
a11f3a05 | 636 | /* mutex_lock(&direntry->d_sb->s_vfs_rename_mutex);*/ |
7f57356b | 637 | full_path = build_path_from_dentry(direntry); |
a11f3a05 | 638 | /* mutex_unlock(&direntry->d_sb->s_vfs_rename_mutex);*/ |
1da177e4 LT |
639 | if (full_path == NULL) { |
640 | FreeXid(xid); | |
641 | return -ENOMEM; | |
642 | } | |
2d785a50 SF |
643 | |
644 | if ((pTcon->ses->capabilities & CAP_UNIX) && | |
645 | (CIFS_UNIX_POSIX_PATH_OPS_CAP & | |
646 | le64_to_cpu(pTcon->fsUnixInfo.Capability))) { | |
647 | rc = CIFSPOSIXDelFile(xid, pTcon, full_path, | |
648 | SMB_POSIX_UNLINK_FILE_TARGET, cifs_sb->local_nls, | |
737b758c | 649 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
2d785a50 SF |
650 | cFYI(1, ("posix del rc %d", rc)); |
651 | if ((rc == 0) || (rc == -ENOENT)) | |
652 | goto psx_del_no_retry; | |
653 | } | |
1da177e4 | 654 | |
2d785a50 SF |
655 | rc = CIFSSMBDelFile(xid, pTcon, full_path, cifs_sb->local_nls, |
656 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); | |
657 | psx_del_no_retry: | |
1da177e4 | 658 | if (!rc) { |
d0d2f2df | 659 | if (direntry->d_inode) |
9a53c3a7 | 660 | drop_nlink(direntry->d_inode); |
1da177e4 LT |
661 | } else if (rc == -ENOENT) { |
662 | d_drop(direntry); | |
663 | } else if (rc == -ETXTBSY) { | |
664 | int oplock = FALSE; | |
665 | __u16 netfid; | |
666 | ||
667 | rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN, DELETE, | |
668 | CREATE_NOT_DIR | CREATE_DELETE_ON_CLOSE, | |
737b758c | 669 | &netfid, &oplock, NULL, cifs_sb->local_nls, |
fb8c4b14 | 670 | cifs_sb->mnt_cifs_flags & |
737b758c | 671 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
fb8c4b14 | 672 | if (rc == 0) { |
1da177e4 | 673 | CIFSSMBRenameOpenFile(xid, pTcon, netfid, NULL, |
fb8c4b14 SF |
674 | cifs_sb->local_nls, |
675 | cifs_sb->mnt_cifs_flags & | |
737b758c | 676 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
1da177e4 | 677 | CIFSSMBClose(xid, pTcon, netfid); |
d0d2f2df | 678 | if (direntry->d_inode) |
9a53c3a7 | 679 | drop_nlink(direntry->d_inode); |
1da177e4 LT |
680 | } |
681 | } else if (rc == -EACCES) { | |
682 | /* try only if r/o attribute set in local lookup data? */ | |
a048d7a8 | 683 | pinfo_buf = kzalloc(sizeof(FILE_BASIC_INFO), GFP_KERNEL); |
1da177e4 | 684 | if (pinfo_buf) { |
1da177e4 LT |
685 | /* ATTRS set to normal clears r/o bit */ |
686 | pinfo_buf->Attributes = cpu_to_le32(ATTR_NORMAL); | |
687 | if (!(pTcon->ses->flags & CIFS_SES_NT4)) | |
688 | rc = CIFSSMBSetTimes(xid, pTcon, full_path, | |
689 | pinfo_buf, | |
737b758c | 690 | cifs_sb->local_nls, |
fb8c4b14 | 691 | cifs_sb->mnt_cifs_flags & |
737b758c | 692 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
1da177e4 LT |
693 | else |
694 | rc = -EOPNOTSUPP; | |
695 | ||
696 | if (rc == -EOPNOTSUPP) { | |
697 | int oplock = FALSE; | |
698 | __u16 netfid; | |
699 | /* rc = CIFSSMBSetAttrLegacy(xid, pTcon, | |
700 | full_path, | |
701 | (__u16)ATTR_NORMAL, | |
fb8c4b14 | 702 | cifs_sb->local_nls); |
1da177e4 LT |
703 | For some strange reason it seems that NT4 eats the |
704 | old setattr call without actually setting the | |
705 | attributes so on to the third attempted workaround | |
706 | */ | |
707 | ||
708 | /* BB could scan to see if we already have it open | |
709 | and pass in pid of opener to function */ | |
710 | rc = CIFSSMBOpen(xid, pTcon, full_path, | |
711 | FILE_OPEN, SYNCHRONIZE | | |
712 | FILE_WRITE_ATTRIBUTES, 0, | |
713 | &netfid, &oplock, NULL, | |
737b758c | 714 | cifs_sb->local_nls, |
fb8c4b14 | 715 | cifs_sb->mnt_cifs_flags & |
737b758c | 716 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
fb8c4b14 | 717 | if (rc == 0) { |
1da177e4 LT |
718 | rc = CIFSSMBSetFileTimes(xid, pTcon, |
719 | pinfo_buf, | |
720 | netfid); | |
721 | CIFSSMBClose(xid, pTcon, netfid); | |
722 | } | |
723 | } | |
724 | kfree(pinfo_buf); | |
725 | } | |
fb8c4b14 SF |
726 | if (rc == 0) { |
727 | rc = CIFSSMBDelFile(xid, pTcon, full_path, | |
728 | cifs_sb->local_nls, | |
729 | cifs_sb->mnt_cifs_flags & | |
737b758c | 730 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
1da177e4 | 731 | if (!rc) { |
d0d2f2df | 732 | if (direntry->d_inode) |
9a53c3a7 | 733 | drop_nlink(direntry->d_inode); |
1da177e4 LT |
734 | } else if (rc == -ETXTBSY) { |
735 | int oplock = FALSE; | |
736 | __u16 netfid; | |
737 | ||
738 | rc = CIFSSMBOpen(xid, pTcon, full_path, | |
739 | FILE_OPEN, DELETE, | |
740 | CREATE_NOT_DIR | | |
741 | CREATE_DELETE_ON_CLOSE, | |
742 | &netfid, &oplock, NULL, | |
fb8c4b14 SF |
743 | cifs_sb->local_nls, |
744 | cifs_sb->mnt_cifs_flags & | |
737b758c | 745 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
fb8c4b14 | 746 | if (rc == 0) { |
1da177e4 LT |
747 | CIFSSMBRenameOpenFile(xid, pTcon, |
748 | netfid, NULL, | |
737b758c SF |
749 | cifs_sb->local_nls, |
750 | cifs_sb->mnt_cifs_flags & | |
751 | CIFS_MOUNT_MAP_SPECIAL_CHR); | |
1da177e4 | 752 | CIFSSMBClose(xid, pTcon, netfid); |
d0d2f2df | 753 | if (direntry->d_inode) |
9a53c3a7 | 754 | drop_nlink(direntry->d_inode); |
1da177e4 LT |
755 | } |
756 | /* BB if rc = -ETXTBUSY goto the rename logic BB */ | |
757 | } | |
758 | } | |
759 | } | |
d0d2f2df | 760 | if (direntry->d_inode) { |
b2aeb9d5 SF |
761 | cifsInode = CIFS_I(direntry->d_inode); |
762 | cifsInode->time = 0; /* will force revalidate to get info | |
763 | when needed */ | |
764 | direntry->d_inode->i_ctime = current_fs_time(inode->i_sb); | |
765 | } | |
4523cc30 | 766 | if (inode) { |
06bcfedd SF |
767 | inode->i_ctime = inode->i_mtime = current_fs_time(inode->i_sb); |
768 | cifsInode = CIFS_I(inode); | |
769 | cifsInode->time = 0; /* force revalidate of dir as well */ | |
770 | } | |
1da177e4 LT |
771 | |
772 | kfree(full_path); | |
773 | FreeXid(xid); | |
774 | return rc; | |
775 | } | |
776 | ||
2dd29d31 SF |
777 | static void posix_fill_in_inode(struct inode *tmp_inode, |
778 | FILE_UNIX_BASIC_INFO *pData, int *pobject_type, int isNewInode) | |
779 | { | |
780 | loff_t local_size; | |
781 | struct timespec local_mtime; | |
782 | ||
783 | struct cifsInodeInfo *cifsInfo = CIFS_I(tmp_inode); | |
784 | struct cifs_sb_info *cifs_sb = CIFS_SB(tmp_inode->i_sb); | |
785 | ||
786 | __u32 type = le32_to_cpu(pData->Type); | |
787 | __u64 num_of_bytes = le64_to_cpu(pData->NumOfBytes); | |
788 | __u64 end_of_file = le64_to_cpu(pData->EndOfFile); | |
789 | cifsInfo->time = jiffies; | |
790 | atomic_inc(&cifsInfo->inUse); | |
791 | ||
792 | /* save mtime and size */ | |
793 | local_mtime = tmp_inode->i_mtime; | |
794 | local_size = tmp_inode->i_size; | |
795 | ||
796 | tmp_inode->i_atime = | |
797 | cifs_NTtimeToUnix(le64_to_cpu(pData->LastAccessTime)); | |
798 | tmp_inode->i_mtime = | |
799 | cifs_NTtimeToUnix(le64_to_cpu(pData->LastModificationTime)); | |
800 | tmp_inode->i_ctime = | |
801 | cifs_NTtimeToUnix(le64_to_cpu(pData->LastStatusChange)); | |
802 | ||
803 | tmp_inode->i_mode = le64_to_cpu(pData->Permissions); | |
804 | /* since we set the inode type below we need to mask off type | |
fb8c4b14 SF |
805 | to avoid strange results if bits above were corrupt */ |
806 | tmp_inode->i_mode &= ~S_IFMT; | |
2dd29d31 SF |
807 | if (type == UNIX_FILE) { |
808 | *pobject_type = DT_REG; | |
809 | tmp_inode->i_mode |= S_IFREG; | |
810 | } else if (type == UNIX_SYMLINK) { | |
811 | *pobject_type = DT_LNK; | |
812 | tmp_inode->i_mode |= S_IFLNK; | |
813 | } else if (type == UNIX_DIR) { | |
814 | *pobject_type = DT_DIR; | |
815 | tmp_inode->i_mode |= S_IFDIR; | |
816 | } else if (type == UNIX_CHARDEV) { | |
817 | *pobject_type = DT_CHR; | |
818 | tmp_inode->i_mode |= S_IFCHR; | |
819 | tmp_inode->i_rdev = MKDEV(le64_to_cpu(pData->DevMajor), | |
820 | le64_to_cpu(pData->DevMinor) & MINORMASK); | |
821 | } else if (type == UNIX_BLOCKDEV) { | |
822 | *pobject_type = DT_BLK; | |
823 | tmp_inode->i_mode |= S_IFBLK; | |
824 | tmp_inode->i_rdev = MKDEV(le64_to_cpu(pData->DevMajor), | |
825 | le64_to_cpu(pData->DevMinor) & MINORMASK); | |
826 | } else if (type == UNIX_FIFO) { | |
827 | *pobject_type = DT_FIFO; | |
828 | tmp_inode->i_mode |= S_IFIFO; | |
829 | } else if (type == UNIX_SOCKET) { | |
830 | *pobject_type = DT_SOCK; | |
831 | tmp_inode->i_mode |= S_IFSOCK; | |
832 | } else { | |
833 | /* safest to just call it a file */ | |
834 | *pobject_type = DT_REG; | |
835 | tmp_inode->i_mode |= S_IFREG; | |
fb8c4b14 | 836 | cFYI(1, ("unknown inode type %d", type)); |
2dd29d31 SF |
837 | } |
838 | ||
cbac3cba | 839 | #ifdef CONFIG_CIFS_DEBUG2 |
fb8c4b14 | 840 | cFYI(1, ("object type: %d", type)); |
cbac3cba | 841 | #endif |
2dd29d31 SF |
842 | tmp_inode->i_uid = le64_to_cpu(pData->Uid); |
843 | tmp_inode->i_gid = le64_to_cpu(pData->Gid); | |
844 | tmp_inode->i_nlink = le64_to_cpu(pData->Nlinks); | |
845 | ||
846 | spin_lock(&tmp_inode->i_lock); | |
847 | if (is_size_safe_to_change(cifsInfo, end_of_file)) { | |
fb8c4b14 | 848 | /* can not safely change the file size here if the |
2dd29d31 SF |
849 | client is writing to it due to potential races */ |
850 | i_size_write(tmp_inode, end_of_file); | |
851 | ||
852 | /* 512 bytes (2**9) is the fake blocksize that must be used */ | |
853 | /* for this calculation, not the real blocksize */ | |
854 | tmp_inode->i_blocks = (512 - 1 + num_of_bytes) >> 9; | |
855 | } | |
856 | spin_unlock(&tmp_inode->i_lock); | |
857 | ||
858 | if (S_ISREG(tmp_inode->i_mode)) { | |
859 | cFYI(1, ("File inode")); | |
860 | tmp_inode->i_op = &cifs_file_inode_ops; | |
861 | ||
fb8c4b14 SF |
862 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) { |
863 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) | |
2dd29d31 SF |
864 | tmp_inode->i_fop = &cifs_file_direct_nobrl_ops; |
865 | else | |
866 | tmp_inode->i_fop = &cifs_file_direct_ops; | |
50c2f753 | 867 | |
fb8c4b14 | 868 | } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
2dd29d31 SF |
869 | tmp_inode->i_fop = &cifs_file_nobrl_ops; |
870 | else | |
871 | tmp_inode->i_fop = &cifs_file_ops; | |
872 | ||
fb8c4b14 SF |
873 | if ((cifs_sb->tcon) && (cifs_sb->tcon->ses) && |
874 | (cifs_sb->tcon->ses->server->maxBuf < | |
2dd29d31 SF |
875 | PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE)) |
876 | tmp_inode->i_data.a_ops = &cifs_addr_ops_smallbuf; | |
877 | else | |
878 | tmp_inode->i_data.a_ops = &cifs_addr_ops; | |
879 | ||
fb8c4b14 SF |
880 | if (isNewInode) |
881 | return; /* No sense invalidating pages for new inode | |
882 | since we we have not started caching | |
883 | readahead file data yet */ | |
2dd29d31 SF |
884 | |
885 | if (timespec_equal(&tmp_inode->i_mtime, &local_mtime) && | |
886 | (local_size == tmp_inode->i_size)) { | |
887 | cFYI(1, ("inode exists but unchanged")); | |
888 | } else { | |
889 | /* file may have changed on server */ | |
890 | cFYI(1, ("invalidate inode, readdir detected change")); | |
891 | invalidate_remote_inode(tmp_inode); | |
892 | } | |
893 | } else if (S_ISDIR(tmp_inode->i_mode)) { | |
894 | cFYI(1, ("Directory inode")); | |
895 | tmp_inode->i_op = &cifs_dir_inode_ops; | |
896 | tmp_inode->i_fop = &cifs_dir_ops; | |
897 | } else if (S_ISLNK(tmp_inode->i_mode)) { | |
898 | cFYI(1, ("Symbolic Link inode")); | |
899 | tmp_inode->i_op = &cifs_symlink_inode_ops; | |
900 | /* tmp_inode->i_fop = *//* do not need to set to anything */ | |
901 | } else { | |
fb8c4b14 | 902 | cFYI(1, ("Special inode")); |
2dd29d31 SF |
903 | init_special_inode(tmp_inode, tmp_inode->i_mode, |
904 | tmp_inode->i_rdev); | |
fb8c4b14 | 905 | } |
2dd29d31 SF |
906 | } |
907 | ||
1da177e4 LT |
908 | int cifs_mkdir(struct inode *inode, struct dentry *direntry, int mode) |
909 | { | |
910 | int rc = 0; | |
911 | int xid; | |
912 | struct cifs_sb_info *cifs_sb; | |
913 | struct cifsTconInfo *pTcon; | |
914 | char *full_path = NULL; | |
915 | struct inode *newinode = NULL; | |
916 | ||
6473a559 | 917 | cFYI(1, ("In cifs_mkdir, mode = 0x%x inode = 0x%p", mode, inode)); |
1da177e4 LT |
918 | |
919 | xid = GetXid(); | |
920 | ||
921 | cifs_sb = CIFS_SB(inode->i_sb); | |
922 | pTcon = cifs_sb->tcon; | |
923 | ||
7f57356b | 924 | full_path = build_path_from_dentry(direntry); |
1da177e4 LT |
925 | if (full_path == NULL) { |
926 | FreeXid(xid); | |
927 | return -ENOMEM; | |
928 | } | |
50c2f753 | 929 | |
fb8c4b14 SF |
930 | if ((pTcon->ses->capabilities & CAP_UNIX) && |
931 | (CIFS_UNIX_POSIX_PATH_OPS_CAP & | |
2dd29d31 SF |
932 | le64_to_cpu(pTcon->fsUnixInfo.Capability))) { |
933 | u32 oplock = 0; | |
fb8c4b14 | 934 | FILE_UNIX_BASIC_INFO * pInfo = |
2dd29d31 | 935 | kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL); |
fb8c4b14 | 936 | if (pInfo == NULL) { |
2dd29d31 SF |
937 | rc = -ENOMEM; |
938 | goto mkdir_out; | |
939 | } | |
50c2f753 | 940 | |
a8cd925f | 941 | mode &= ~current->fs->umask; |
2dd29d31 SF |
942 | rc = CIFSPOSIXCreate(xid, pTcon, SMB_O_DIRECTORY | SMB_O_CREAT, |
943 | mode, NULL /* netfid */, pInfo, &oplock, | |
fb8c4b14 SF |
944 | full_path, cifs_sb->local_nls, |
945 | cifs_sb->mnt_cifs_flags & | |
2dd29d31 | 946 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
c45d707f SF |
947 | if (rc == -EOPNOTSUPP) { |
948 | kfree(pInfo); | |
949 | goto mkdir_retry_old; | |
950 | } else if (rc) { | |
2dd29d31 SF |
951 | cFYI(1, ("posix mkdir returned 0x%x", rc)); |
952 | d_drop(direntry); | |
953 | } else { | |
cbac3cba | 954 | int obj_type; |
8f2376ad CG |
955 | if (pInfo->Type == cpu_to_le32(-1)) { |
956 | /* no return info, go query for it */ | |
5a07cdf8 | 957 | kfree(pInfo); |
fb8c4b14 | 958 | goto mkdir_get_info; |
5a07cdf8 | 959 | } |
fb8c4b14 SF |
960 | /*BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if need |
961 | to set uid/gid */ | |
2dd29d31 SF |
962 | inc_nlink(inode); |
963 | if (pTcon->nocase) | |
964 | direntry->d_op = &cifs_ci_dentry_ops; | |
965 | else | |
966 | direntry->d_op = &cifs_dentry_ops; | |
cbac3cba SF |
967 | |
968 | newinode = new_inode(inode->i_sb); | |
5a07cdf8 SF |
969 | if (newinode == NULL) { |
970 | kfree(pInfo); | |
cbac3cba | 971 | goto mkdir_get_info; |
5a07cdf8 | 972 | } |
cbac3cba SF |
973 | /* Is an i_ino of zero legal? */ |
974 | /* Are there sanity checks we can use to ensure that | |
975 | the server is really filling in that field? */ | |
976 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) { | |
977 | newinode->i_ino = | |
978 | (unsigned long)pInfo->UniqueId; | |
979 | } /* note ino incremented to unique num in new_inode */ | |
fb8c4b14 | 980 | if (inode->i_sb->s_flags & MS_NOATIME) |
cbac3cba SF |
981 | newinode->i_flags |= S_NOATIME | S_NOCMTIME; |
982 | newinode->i_nlink = 2; | |
983 | ||
984 | insert_inode_hash(newinode); | |
2dd29d31 | 985 | d_instantiate(direntry, newinode); |
cbac3cba SF |
986 | |
987 | /* we already checked in POSIXCreate whether | |
988 | frame was long enough */ | |
989 | posix_fill_in_inode(direntry->d_inode, | |
2dd29d31 | 990 | pInfo, &obj_type, 1 /* NewInode */); |
cbac3cba | 991 | #ifdef CONFIG_CIFS_DEBUG2 |
fb8c4b14 | 992 | cFYI(1, ("instantiated dentry %p %s to inode %p", |
cbac3cba SF |
993 | direntry, direntry->d_name.name, newinode)); |
994 | ||
fb8c4b14 SF |
995 | if (newinode->i_nlink != 2) |
996 | cFYI(1, ("unexpected number of links %d", | |
cbac3cba SF |
997 | newinode->i_nlink)); |
998 | #endif | |
2dd29d31 SF |
999 | } |
1000 | kfree(pInfo); | |
1001 | goto mkdir_out; | |
fb8c4b14 | 1002 | } |
c45d707f | 1003 | mkdir_retry_old: |
1da177e4 | 1004 | /* BB add setting the equivalent of mode via CreateX w/ACLs */ |
737b758c SF |
1005 | rc = CIFSSMBMkDir(xid, pTcon, full_path, cifs_sb->local_nls, |
1006 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); | |
1da177e4 | 1007 | if (rc) { |
26a21b98 | 1008 | cFYI(1, ("cifs_mkdir returned 0x%x", rc)); |
1da177e4 LT |
1009 | d_drop(direntry); |
1010 | } else { | |
fb8c4b14 | 1011 | mkdir_get_info: |
d8c76e6f | 1012 | inc_nlink(inode); |
c18c842b | 1013 | if (pTcon->unix_ext) |
1da177e4 | 1014 | rc = cifs_get_inode_info_unix(&newinode, full_path, |
fb8c4b14 | 1015 | inode->i_sb, xid); |
1da177e4 LT |
1016 | else |
1017 | rc = cifs_get_inode_info(&newinode, full_path, NULL, | |
fb8c4b14 | 1018 | inode->i_sb, xid); |
1da177e4 | 1019 | |
b92327fe SF |
1020 | if (pTcon->nocase) |
1021 | direntry->d_op = &cifs_ci_dentry_ops; | |
1022 | else | |
1023 | direntry->d_op = &cifs_dentry_ops; | |
1da177e4 | 1024 | d_instantiate(direntry, newinode); |
2dd29d31 | 1025 | /* setting nlink not necessary except in cases where we |
fb8c4b14 | 1026 | * failed to get it from the server or was set bogus */ |
2dd29d31 | 1027 | if ((direntry->d_inode) && (direntry->d_inode->i_nlink < 2)) |
fb8c4b14 | 1028 | direntry->d_inode->i_nlink = 2; |
c18c842b | 1029 | if (pTcon->unix_ext) { |
3ce53fc4 | 1030 | mode &= ~current->fs->umask; |
d0d2f2df | 1031 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) { |
1da177e4 LT |
1032 | CIFSSMBUnixSetPerms(xid, pTcon, full_path, |
1033 | mode, | |
83451879 SF |
1034 | (__u64)current->fsuid, |
1035 | (__u64)current->fsgid, | |
1da177e4 | 1036 | 0 /* dev_t */, |
737b758c SF |
1037 | cifs_sb->local_nls, |
1038 | cifs_sb->mnt_cifs_flags & | |
1039 | CIFS_MOUNT_MAP_SPECIAL_CHR); | |
1da177e4 LT |
1040 | } else { |
1041 | CIFSSMBUnixSetPerms(xid, pTcon, full_path, | |
1042 | mode, (__u64)-1, | |
1043 | (__u64)-1, 0 /* dev_t */, | |
737b758c | 1044 | cifs_sb->local_nls, |
fb8c4b14 | 1045 | cifs_sb->mnt_cifs_flags & |
737b758c | 1046 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
1da177e4 | 1047 | } |
3ce53fc4 | 1048 | } else { |
1da177e4 LT |
1049 | /* BB to be implemented via Windows secrty descriptors |
1050 | eg CIFSSMBWinSetPerms(xid, pTcon, full_path, mode, | |
1051 | -1, -1, local_nls); */ | |
fb8c4b14 | 1052 | if (direntry->d_inode) { |
6473a559 | 1053 | direntry->d_inode->i_mode = mode; |
25741b3e | 1054 | direntry->d_inode->i_mode |= S_IFDIR; |
fb8c4b14 | 1055 | if (cifs_sb->mnt_cifs_flags & |
6473a559 | 1056 | CIFS_MOUNT_SET_UID) { |
fb8c4b14 | 1057 | direntry->d_inode->i_uid = |
6473a559 | 1058 | current->fsuid; |
fb8c4b14 | 1059 | direntry->d_inode->i_gid = |
6473a559 SF |
1060 | current->fsgid; |
1061 | } | |
1062 | } | |
2a138ebb | 1063 | } |
1da177e4 | 1064 | } |
fb8c4b14 | 1065 | mkdir_out: |
1da177e4 LT |
1066 | kfree(full_path); |
1067 | FreeXid(xid); | |
1068 | return rc; | |
1069 | } | |
1070 | ||
1071 | int cifs_rmdir(struct inode *inode, struct dentry *direntry) | |
1072 | { | |
1073 | int rc = 0; | |
1074 | int xid; | |
1075 | struct cifs_sb_info *cifs_sb; | |
1076 | struct cifsTconInfo *pTcon; | |
1077 | char *full_path = NULL; | |
1078 | struct cifsInodeInfo *cifsInode; | |
1079 | ||
26a21b98 | 1080 | cFYI(1, ("cifs_rmdir, inode = 0x%p", inode)); |
1da177e4 LT |
1081 | |
1082 | xid = GetXid(); | |
1083 | ||
1084 | cifs_sb = CIFS_SB(inode->i_sb); | |
1085 | pTcon = cifs_sb->tcon; | |
1086 | ||
7f57356b | 1087 | full_path = build_path_from_dentry(direntry); |
1da177e4 LT |
1088 | if (full_path == NULL) { |
1089 | FreeXid(xid); | |
1090 | return -ENOMEM; | |
1091 | } | |
1092 | ||
737b758c SF |
1093 | rc = CIFSSMBRmDir(xid, pTcon, full_path, cifs_sb->local_nls, |
1094 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); | |
1da177e4 LT |
1095 | |
1096 | if (!rc) { | |
9a53c3a7 | 1097 | drop_nlink(inode); |
3677db10 | 1098 | spin_lock(&direntry->d_inode->i_lock); |
fb8c4b14 | 1099 | i_size_write(direntry->d_inode, 0); |
ce71ec36 | 1100 | clear_nlink(direntry->d_inode); |
3677db10 | 1101 | spin_unlock(&direntry->d_inode->i_lock); |
1da177e4 LT |
1102 | } |
1103 | ||
1104 | cifsInode = CIFS_I(direntry->d_inode); | |
1105 | cifsInode->time = 0; /* force revalidate to go get info when | |
1106 | needed */ | |
1107 | direntry->d_inode->i_ctime = inode->i_ctime = inode->i_mtime = | |
1108 | current_fs_time(inode->i_sb); | |
1109 | ||
1110 | kfree(full_path); | |
1111 | FreeXid(xid); | |
1112 | return rc; | |
1113 | } | |
1114 | ||
1115 | int cifs_rename(struct inode *source_inode, struct dentry *source_direntry, | |
1116 | struct inode *target_inode, struct dentry *target_direntry) | |
1117 | { | |
1118 | char *fromName; | |
1119 | char *toName; | |
1120 | struct cifs_sb_info *cifs_sb_source; | |
1121 | struct cifs_sb_info *cifs_sb_target; | |
1122 | struct cifsTconInfo *pTcon; | |
1123 | int xid; | |
1124 | int rc = 0; | |
1125 | ||
1126 | xid = GetXid(); | |
1127 | ||
1128 | cifs_sb_target = CIFS_SB(target_inode->i_sb); | |
1129 | cifs_sb_source = CIFS_SB(source_inode->i_sb); | |
1130 | pTcon = cifs_sb_source->tcon; | |
1131 | ||
1132 | if (pTcon != cifs_sb_target->tcon) { | |
1133 | FreeXid(xid); | |
1134 | return -EXDEV; /* BB actually could be allowed if same server, | |
1135 | but different share. | |
1136 | Might eventually add support for this */ | |
1137 | } | |
1138 | ||
1139 | /* we already have the rename sem so we do not need to grab it again | |
1140 | here to protect the path integrity */ | |
7f57356b SF |
1141 | fromName = build_path_from_dentry(source_direntry); |
1142 | toName = build_path_from_dentry(target_direntry); | |
1da177e4 LT |
1143 | if ((fromName == NULL) || (toName == NULL)) { |
1144 | rc = -ENOMEM; | |
1145 | goto cifs_rename_exit; | |
1146 | } | |
1147 | ||
1148 | rc = CIFSSMBRename(xid, pTcon, fromName, toName, | |
737b758c SF |
1149 | cifs_sb_source->local_nls, |
1150 | cifs_sb_source->mnt_cifs_flags & | |
1151 | CIFS_MOUNT_MAP_SPECIAL_CHR); | |
1da177e4 LT |
1152 | if (rc == -EEXIST) { |
1153 | /* check if they are the same file because rename of hardlinked | |
1154 | files is a noop */ | |
1155 | FILE_UNIX_BASIC_INFO *info_buf_source; | |
1156 | FILE_UNIX_BASIC_INFO *info_buf_target; | |
1157 | ||
1158 | info_buf_source = | |
1159 | kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL); | |
1160 | if (info_buf_source != NULL) { | |
1161 | info_buf_target = info_buf_source + 1; | |
c18c842b | 1162 | if (pTcon->unix_ext) |
8e87d4dc | 1163 | rc = CIFSSMBUnixQPathInfo(xid, pTcon, fromName, |
fb8c4b14 | 1164 | info_buf_source, |
8e87d4dc SF |
1165 | cifs_sb_source->local_nls, |
1166 | cifs_sb_source->mnt_cifs_flags & | |
1167 | CIFS_MOUNT_MAP_SPECIAL_CHR); | |
1168 | /* else rc is still EEXIST so will fall through to | |
1169 | unlink the target and retry rename */ | |
1da177e4 LT |
1170 | if (rc == 0) { |
1171 | rc = CIFSSMBUnixQPathInfo(xid, pTcon, toName, | |
1172 | info_buf_target, | |
737b758c SF |
1173 | cifs_sb_target->local_nls, |
1174 | /* remap based on source sb */ | |
1175 | cifs_sb_source->mnt_cifs_flags & | |
1176 | CIFS_MOUNT_MAP_SPECIAL_CHR); | |
1da177e4 LT |
1177 | } |
1178 | if ((rc == 0) && | |
1179 | (info_buf_source->UniqueId == | |
1180 | info_buf_target->UniqueId)) { | |
1181 | /* do not rename since the files are hardlinked which | |
1182 | is a noop */ | |
1183 | } else { | |
1184 | /* we either can not tell the files are hardlinked | |
1185 | (as with Windows servers) or files are not | |
1186 | hardlinked so delete the target manually before | |
1187 | renaming to follow POSIX rather than Windows | |
1188 | semantics */ | |
1189 | cifs_unlink(target_inode, target_direntry); | |
1190 | rc = CIFSSMBRename(xid, pTcon, fromName, | |
1191 | toName, | |
737b758c SF |
1192 | cifs_sb_source->local_nls, |
1193 | cifs_sb_source->mnt_cifs_flags | |
1194 | & CIFS_MOUNT_MAP_SPECIAL_CHR); | |
1da177e4 LT |
1195 | } |
1196 | kfree(info_buf_source); | |
1197 | } /* if we can not get memory just leave rc as EEXIST */ | |
1198 | } | |
1199 | ||
1200 | if (rc) { | |
1201 | cFYI(1, ("rename rc %d", rc)); | |
1202 | } | |
1203 | ||
1204 | if ((rc == -EIO) || (rc == -EEXIST)) { | |
1205 | int oplock = FALSE; | |
1206 | __u16 netfid; | |
1207 | ||
1208 | /* BB FIXME Is Generic Read correct for rename? */ | |
1209 | /* if renaming directory - we should not say CREATE_NOT_DIR, | |
1210 | need to test renaming open directory, also GENERIC_READ | |
1211 | might not right be right access to request */ | |
1212 | rc = CIFSSMBOpen(xid, pTcon, fromName, FILE_OPEN, GENERIC_READ, | |
1213 | CREATE_NOT_DIR, &netfid, &oplock, NULL, | |
fb8c4b14 SF |
1214 | cifs_sb_source->local_nls, |
1215 | cifs_sb_source->mnt_cifs_flags & | |
737b758c | 1216 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
fb8c4b14 | 1217 | if (rc == 0) { |
8e87d4dc | 1218 | rc = CIFSSMBRenameOpenFile(xid, pTcon, netfid, toName, |
fb8c4b14 | 1219 | cifs_sb_source->local_nls, |
737b758c SF |
1220 | cifs_sb_source->mnt_cifs_flags & |
1221 | CIFS_MOUNT_MAP_SPECIAL_CHR); | |
1da177e4 LT |
1222 | CIFSSMBClose(xid, pTcon, netfid); |
1223 | } | |
1224 | } | |
1225 | ||
1226 | cifs_rename_exit: | |
1227 | kfree(fromName); | |
1228 | kfree(toName); | |
1229 | FreeXid(xid); | |
1230 | return rc; | |
1231 | } | |
1232 | ||
1233 | int cifs_revalidate(struct dentry *direntry) | |
1234 | { | |
1235 | int xid; | |
1236 | int rc = 0; | |
1237 | char *full_path; | |
1238 | struct cifs_sb_info *cifs_sb; | |
1239 | struct cifsInodeInfo *cifsInode; | |
1240 | loff_t local_size; | |
1241 | struct timespec local_mtime; | |
1242 | int invalidate_inode = FALSE; | |
1243 | ||
1244 | if (direntry->d_inode == NULL) | |
1245 | return -ENOENT; | |
1246 | ||
1247 | cifsInode = CIFS_I(direntry->d_inode); | |
1248 | ||
1249 | if (cifsInode == NULL) | |
1250 | return -ENOENT; | |
1251 | ||
1252 | /* no sense revalidating inode info on file that no one can write */ | |
1253 | if (CIFS_I(direntry->d_inode)->clientCanCacheRead) | |
1254 | return rc; | |
1255 | ||
1256 | xid = GetXid(); | |
1257 | ||
1258 | cifs_sb = CIFS_SB(direntry->d_sb); | |
1259 | ||
1260 | /* can not safely grab the rename sem here if rename calls revalidate | |
1261 | since that would deadlock */ | |
7f57356b | 1262 | full_path = build_path_from_dentry(direntry); |
1da177e4 LT |
1263 | if (full_path == NULL) { |
1264 | FreeXid(xid); | |
1265 | return -ENOMEM; | |
1266 | } | |
1267 | cFYI(1, ("Revalidate: %s inode 0x%p count %d dentry: 0x%p d_time %ld " | |
1268 | "jiffies %ld", full_path, direntry->d_inode, | |
1269 | direntry->d_inode->i_count.counter, direntry, | |
1270 | direntry->d_time, jiffies)); | |
1271 | ||
1272 | if (cifsInode->time == 0) { | |
1273 | /* was set to zero previously to force revalidate */ | |
1274 | } else if (time_before(jiffies, cifsInode->time + HZ) && | |
1275 | lookupCacheEnabled) { | |
1276 | if ((S_ISREG(direntry->d_inode->i_mode) == 0) || | |
1277 | (direntry->d_inode->i_nlink == 1)) { | |
1278 | kfree(full_path); | |
1279 | FreeXid(xid); | |
1280 | return rc; | |
1281 | } else { | |
1282 | cFYI(1, ("Have to revalidate file due to hardlinks")); | |
1283 | } | |
1284 | } | |
1285 | ||
1286 | /* save mtime and size */ | |
1287 | local_mtime = direntry->d_inode->i_mtime; | |
1288 | local_size = direntry->d_inode->i_size; | |
1289 | ||
c18c842b | 1290 | if (cifs_sb->tcon->unix_ext) { |
1da177e4 | 1291 | rc = cifs_get_inode_info_unix(&direntry->d_inode, full_path, |
fb8c4b14 | 1292 | direntry->d_sb, xid); |
1da177e4 LT |
1293 | if (rc) { |
1294 | cFYI(1, ("error on getting revalidate info %d", rc)); | |
1295 | /* if (rc != -ENOENT) | |
1296 | rc = 0; */ /* BB should we cache info on | |
1297 | certain errors? */ | |
1298 | } | |
1299 | } else { | |
1300 | rc = cifs_get_inode_info(&direntry->d_inode, full_path, NULL, | |
fb8c4b14 | 1301 | direntry->d_sb, xid); |
1da177e4 LT |
1302 | if (rc) { |
1303 | cFYI(1, ("error on getting revalidate info %d", rc)); | |
1304 | /* if (rc != -ENOENT) | |
1305 | rc = 0; */ /* BB should we cache info on | |
1306 | certain errors? */ | |
1307 | } | |
1308 | } | |
1309 | /* should we remap certain errors, access denied?, to zero */ | |
1310 | ||
1311 | /* if not oplocked, we invalidate inode pages if mtime or file size | |
1312 | had changed on server */ | |
1313 | ||
fb8c4b14 | 1314 | if (timespec_equal(&local_mtime, &direntry->d_inode->i_mtime) && |
1da177e4 LT |
1315 | (local_size == direntry->d_inode->i_size)) { |
1316 | cFYI(1, ("cifs_revalidate - inode unchanged")); | |
1317 | } else { | |
1318 | /* file may have changed on server */ | |
1319 | if (cifsInode->clientCanCacheRead) { | |
1320 | /* no need to invalidate inode pages since we were the | |
1321 | only ones who could have modified the file and the | |
1322 | server copy is staler than ours */ | |
1323 | } else { | |
1324 | invalidate_inode = TRUE; | |
1325 | } | |
1326 | } | |
1327 | ||
1328 | /* can not grab this sem since kernel filesys locking documentation | |
1b1dcc1b JS |
1329 | indicates i_mutex may be taken by the kernel on lookup and rename |
1330 | which could deadlock if we grab the i_mutex here as well */ | |
1331 | /* mutex_lock(&direntry->d_inode->i_mutex);*/ | |
1da177e4 LT |
1332 | /* need to write out dirty pages here */ |
1333 | if (direntry->d_inode->i_mapping) { | |
1334 | /* do we need to lock inode until after invalidate completes | |
1335 | below? */ | |
1336 | filemap_fdatawrite(direntry->d_inode->i_mapping); | |
1337 | } | |
1338 | if (invalidate_inode) { | |
3abb9272 SF |
1339 | /* shrink_dcache not necessary now that cifs dentry ops |
1340 | are exported for negative dentries */ | |
fb8c4b14 | 1341 | /* if (S_ISDIR(direntry->d_inode->i_mode)) |
3abb9272 SF |
1342 | shrink_dcache_parent(direntry); */ |
1343 | if (S_ISREG(direntry->d_inode->i_mode)) { | |
1344 | if (direntry->d_inode->i_mapping) | |
1345 | filemap_fdatawait(direntry->d_inode->i_mapping); | |
1346 | /* may eventually have to do this for open files too */ | |
1347 | if (list_empty(&(cifsInode->openFileList))) { | |
1348 | /* changed on server - flush read ahead pages */ | |
1349 | cFYI(1, ("Invalidating read ahead data on " | |
1350 | "closed file")); | |
1351 | invalidate_remote_inode(direntry->d_inode); | |
1352 | } | |
1da177e4 LT |
1353 | } |
1354 | } | |
1b1dcc1b | 1355 | /* mutex_unlock(&direntry->d_inode->i_mutex); */ |
50c2f753 | 1356 | |
1da177e4 LT |
1357 | kfree(full_path); |
1358 | FreeXid(xid); | |
1359 | return rc; | |
1360 | } | |
1361 | ||
1362 | int cifs_getattr(struct vfsmount *mnt, struct dentry *dentry, | |
1363 | struct kstat *stat) | |
1364 | { | |
1365 | int err = cifs_revalidate(dentry); | |
5fe14c85 | 1366 | if (!err) { |
1da177e4 | 1367 | generic_fillattr(dentry->d_inode, stat); |
5fe14c85 SF |
1368 | stat->blksize = CIFS_MAX_MSGSIZE; |
1369 | } | |
1da177e4 LT |
1370 | return err; |
1371 | } | |
1372 | ||
1373 | static int cifs_truncate_page(struct address_space *mapping, loff_t from) | |
1374 | { | |
1375 | pgoff_t index = from >> PAGE_CACHE_SHIFT; | |
1376 | unsigned offset = from & (PAGE_CACHE_SIZE - 1); | |
1377 | struct page *page; | |
1da177e4 LT |
1378 | int rc = 0; |
1379 | ||
1380 | page = grab_cache_page(mapping, index); | |
1381 | if (!page) | |
1382 | return -ENOMEM; | |
1383 | ||
7e42ca88 | 1384 | zero_user_page(page, offset, PAGE_CACHE_SIZE - offset, KM_USER0); |
1da177e4 LT |
1385 | unlock_page(page); |
1386 | page_cache_release(page); | |
1387 | return rc; | |
1388 | } | |
1389 | ||
fb8c4b14 | 1390 | static int cifs_vmtruncate(struct inode *inode, loff_t offset) |
3677db10 SF |
1391 | { |
1392 | struct address_space *mapping = inode->i_mapping; | |
1393 | unsigned long limit; | |
1394 | ||
ba6a46a0 | 1395 | spin_lock(&inode->i_lock); |
3677db10 SF |
1396 | if (inode->i_size < offset) |
1397 | goto do_expand; | |
1398 | /* | |
1399 | * truncation of in-use swapfiles is disallowed - it would cause | |
1400 | * subsequent swapout to scribble on the now-freed blocks. | |
1401 | */ | |
ba6a46a0 SF |
1402 | if (IS_SWAPFILE(inode)) { |
1403 | spin_unlock(&inode->i_lock); | |
3677db10 | 1404 | goto out_busy; |
ba6a46a0 | 1405 | } |
3677db10 SF |
1406 | i_size_write(inode, offset); |
1407 | spin_unlock(&inode->i_lock); | |
8064ab4d SF |
1408 | /* |
1409 | * unmap_mapping_range is called twice, first simply for efficiency | |
1410 | * so that truncate_inode_pages does fewer single-page unmaps. However | |
1411 | * after this first call, and before truncate_inode_pages finishes, | |
1412 | * it is possible for private pages to be COWed, which remain after | |
1413 | * truncate_inode_pages finishes, hence the second unmap_mapping_range | |
1414 | * call must be made for correctness. | |
1415 | */ | |
3677db10 SF |
1416 | unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1); |
1417 | truncate_inode_pages(mapping, offset); | |
8064ab4d | 1418 | unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1); |
3677db10 SF |
1419 | goto out_truncate; |
1420 | ||
1421 | do_expand: | |
1422 | limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur; | |
ba6a46a0 SF |
1423 | if (limit != RLIM_INFINITY && offset > limit) { |
1424 | spin_unlock(&inode->i_lock); | |
3677db10 | 1425 | goto out_sig; |
ba6a46a0 SF |
1426 | } |
1427 | if (offset > inode->i_sb->s_maxbytes) { | |
1428 | spin_unlock(&inode->i_lock); | |
3677db10 | 1429 | goto out_big; |
ba6a46a0 | 1430 | } |
3677db10 | 1431 | i_size_write(inode, offset); |
ba6a46a0 | 1432 | spin_unlock(&inode->i_lock); |
3677db10 SF |
1433 | out_truncate: |
1434 | if (inode->i_op && inode->i_op->truncate) | |
1435 | inode->i_op->truncate(inode); | |
1436 | return 0; | |
1437 | out_sig: | |
1438 | send_sig(SIGXFSZ, current, 0); | |
1439 | out_big: | |
1440 | return -EFBIG; | |
1441 | out_busy: | |
1442 | return -ETXTBSY; | |
1443 | } | |
1444 | ||
1da177e4 LT |
1445 | int cifs_setattr(struct dentry *direntry, struct iattr *attrs) |
1446 | { | |
1447 | int xid; | |
1448 | struct cifs_sb_info *cifs_sb; | |
1449 | struct cifsTconInfo *pTcon; | |
1450 | char *full_path = NULL; | |
1451 | int rc = -EACCES; | |
1da177e4 LT |
1452 | struct cifsFileInfo *open_file = NULL; |
1453 | FILE_BASIC_INFO time_buf; | |
1454 | int set_time = FALSE; | |
066fcb06 | 1455 | int set_dosattr = FALSE; |
1da177e4 LT |
1456 | __u64 mode = 0xFFFFFFFFFFFFFFFFULL; |
1457 | __u64 uid = 0xFFFFFFFFFFFFFFFFULL; | |
1458 | __u64 gid = 0xFFFFFFFFFFFFFFFFULL; | |
1459 | struct cifsInodeInfo *cifsInode; | |
1da177e4 LT |
1460 | |
1461 | xid = GetXid(); | |
1462 | ||
3979877e | 1463 | cFYI(1, ("setattr on file %s attrs->iavalid 0x%x", |
1da177e4 | 1464 | direntry->d_name.name, attrs->ia_valid)); |
6473a559 | 1465 | |
1da177e4 LT |
1466 | cifs_sb = CIFS_SB(direntry->d_inode->i_sb); |
1467 | pTcon = cifs_sb->tcon; | |
1468 | ||
2a138ebb | 1469 | if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) == 0) { |
6473a559 SF |
1470 | /* check if we have permission to change attrs */ |
1471 | rc = inode_change_ok(direntry->d_inode, attrs); | |
fb8c4b14 | 1472 | if (rc < 0) { |
6473a559 SF |
1473 | FreeXid(xid); |
1474 | return rc; | |
1475 | } else | |
1476 | rc = 0; | |
1477 | } | |
50c2f753 | 1478 | |
7f57356b | 1479 | full_path = build_path_from_dentry(direntry); |
1da177e4 LT |
1480 | if (full_path == NULL) { |
1481 | FreeXid(xid); | |
1482 | return -ENOMEM; | |
1483 | } | |
1484 | cifsInode = CIFS_I(direntry->d_inode); | |
1485 | ||
1486 | /* BB check if we need to refresh inode from server now ? BB */ | |
1487 | ||
1488 | /* need to flush data before changing file size on server */ | |
28fd1298 | 1489 | filemap_write_and_wait(direntry->d_inode->i_mapping); |
1da177e4 LT |
1490 | |
1491 | if (attrs->ia_valid & ATTR_SIZE) { | |
1da177e4 LT |
1492 | /* To avoid spurious oplock breaks from server, in the case of |
1493 | inodes that we already have open, avoid doing path based | |
1494 | setting of file size if we can do it by handle. | |
1495 | This keeps our caching token (oplock) and avoids timeouts | |
1496 | when the local oplock break takes longer to flush | |
1497 | writebehind data than the SMB timeout for the SetPathInfo | |
1498 | request would allow */ | |
3979877e | 1499 | |
6148a742 SF |
1500 | open_file = find_writable_file(cifsInode); |
1501 | if (open_file) { | |
1502 | __u16 nfid = open_file->netfid; | |
1503 | __u32 npid = open_file->pid; | |
1504 | rc = CIFSSMBSetFileSize(xid, pTcon, attrs->ia_size, | |
1505 | nfid, npid, FALSE); | |
23e7dd7d | 1506 | atomic_dec(&open_file->wrtPending); |
fb8c4b14 SF |
1507 | cFYI(1, ("SetFSize for attrs rc = %d", rc)); |
1508 | if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) { | |
77159b4d | 1509 | unsigned int bytes_written; |
6148a742 SF |
1510 | rc = CIFSSMBWrite(xid, pTcon, |
1511 | nfid, 0, attrs->ia_size, | |
1512 | &bytes_written, NULL, NULL, | |
1513 | 1 /* 45 seconds */); | |
fb8c4b14 | 1514 | cFYI(1, ("Wrt seteof rc %d", rc)); |
1da177e4 | 1515 | } |
fb8c4b14 | 1516 | } else |
6473a559 SF |
1517 | rc = -EINVAL; |
1518 | ||
1da177e4 LT |
1519 | if (rc != 0) { |
1520 | /* Set file size by pathname rather than by handle | |
1521 | either because no valid, writeable file handle for | |
1522 | it was found or because there was an error setting | |
1523 | it by handle */ | |
1524 | rc = CIFSSMBSetEOF(xid, pTcon, full_path, | |
1525 | attrs->ia_size, FALSE, | |
fb8c4b14 | 1526 | cifs_sb->local_nls, |
737b758c SF |
1527 | cifs_sb->mnt_cifs_flags & |
1528 | CIFS_MOUNT_MAP_SPECIAL_CHR); | |
e30dcf3a | 1529 | cFYI(1, ("SetEOF by path (setattrs) rc = %d", rc)); |
fb8c4b14 | 1530 | if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) { |
e30dcf3a SF |
1531 | __u16 netfid; |
1532 | int oplock = FALSE; | |
1533 | ||
1534 | rc = SMBLegacyOpen(xid, pTcon, full_path, | |
1535 | FILE_OPEN, | |
1536 | SYNCHRONIZE | FILE_WRITE_ATTRIBUTES, | |
1537 | CREATE_NOT_DIR, &netfid, &oplock, | |
1538 | NULL, cifs_sb->local_nls, | |
1539 | cifs_sb->mnt_cifs_flags & | |
1540 | CIFS_MOUNT_MAP_SPECIAL_CHR); | |
fb8c4b14 | 1541 | if (rc == 0) { |
77159b4d | 1542 | unsigned int bytes_written; |
e30dcf3a SF |
1543 | rc = CIFSSMBWrite(xid, pTcon, |
1544 | netfid, 0, | |
1545 | attrs->ia_size, | |
1546 | &bytes_written, NULL, | |
1547 | NULL, 1 /* 45 sec */); | |
fb8c4b14 | 1548 | cFYI(1, ("wrt seteof rc %d", rc)); |
e30dcf3a SF |
1549 | CIFSSMBClose(xid, pTcon, netfid); |
1550 | } | |
1551 | ||
1552 | } | |
1da177e4 LT |
1553 | } |
1554 | ||
1555 | /* Server is ok setting allocation size implicitly - no need | |
1556 | to call: | |
1557 | CIFSSMBSetEOF(xid, pTcon, full_path, attrs->ia_size, TRUE, | |
1558 | cifs_sb->local_nls); | |
1559 | */ | |
1560 | ||
1561 | if (rc == 0) { | |
3677db10 | 1562 | rc = cifs_vmtruncate(direntry->d_inode, attrs->ia_size); |
1da177e4 LT |
1563 | cifs_truncate_page(direntry->d_inode->i_mapping, |
1564 | direntry->d_inode->i_size); | |
fb8c4b14 | 1565 | } else |
e30dcf3a | 1566 | goto cifs_setattr_exit; |
1da177e4 LT |
1567 | } |
1568 | if (attrs->ia_valid & ATTR_UID) { | |
e30dcf3a | 1569 | cFYI(1, ("UID changed to %d", attrs->ia_uid)); |
1da177e4 | 1570 | uid = attrs->ia_uid; |
1da177e4 LT |
1571 | } |
1572 | if (attrs->ia_valid & ATTR_GID) { | |
e30dcf3a | 1573 | cFYI(1, ("GID changed to %d", attrs->ia_gid)); |
1da177e4 | 1574 | gid = attrs->ia_gid; |
1da177e4 LT |
1575 | } |
1576 | ||
1577 | time_buf.Attributes = 0; | |
d32c4f26 JL |
1578 | |
1579 | /* skip mode change if it's just for clearing setuid/setgid */ | |
1580 | if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID)) | |
1581 | attrs->ia_valid &= ~ATTR_MODE; | |
1582 | ||
1da177e4 | 1583 | if (attrs->ia_valid & ATTR_MODE) { |
e30dcf3a | 1584 | cFYI(1, ("Mode changed to 0x%x", attrs->ia_mode)); |
1da177e4 | 1585 | mode = attrs->ia_mode; |
1da177e4 LT |
1586 | } |
1587 | ||
c18c842b | 1588 | if ((pTcon->unix_ext) |
1da177e4 LT |
1589 | && (attrs->ia_valid & (ATTR_MODE | ATTR_GID | ATTR_UID))) |
1590 | rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode, uid, gid, | |
737b758c | 1591 | 0 /* dev_t */, cifs_sb->local_nls, |
fb8c4b14 | 1592 | cifs_sb->mnt_cifs_flags & |
737b758c | 1593 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
1da177e4 | 1594 | else if (attrs->ia_valid & ATTR_MODE) { |
cdbce9c8 | 1595 | rc = 0; |
1da177e4 | 1596 | if ((mode & S_IWUGO) == 0) /* not writeable */ { |
066fcb06 SF |
1597 | if ((cifsInode->cifsAttrs & ATTR_READONLY) == 0) { |
1598 | set_dosattr = TRUE; | |
1da177e4 LT |
1599 | time_buf.Attributes = |
1600 | cpu_to_le32(cifsInode->cifsAttrs | | |
1601 | ATTR_READONLY); | |
066fcb06 | 1602 | } |
5268df2e SF |
1603 | } else if (cifsInode->cifsAttrs & ATTR_READONLY) { |
1604 | /* If file is readonly on server, we would | |
1605 | not be able to write to it - so if any write | |
1606 | bit is enabled for user or group or other we | |
1607 | need to at least try to remove r/o dos attr */ | |
1608 | set_dosattr = TRUE; | |
1609 | time_buf.Attributes = cpu_to_le32(cifsInode->cifsAttrs & | |
1610 | (~ATTR_READONLY)); | |
1611 | /* Windows ignores set to zero */ | |
fb8c4b14 | 1612 | if (time_buf.Attributes == 0) |
5268df2e | 1613 | time_buf.Attributes |= cpu_to_le32(ATTR_NORMAL); |
1da177e4 LT |
1614 | } |
1615 | /* BB to be implemented - | |
1616 | via Windows security descriptors or streams */ | |
1617 | /* CIFSSMBWinSetPerms(xid, pTcon, full_path, mode, uid, gid, | |
1618 | cifs_sb->local_nls); */ | |
1619 | } | |
1620 | ||
1621 | if (attrs->ia_valid & ATTR_ATIME) { | |
1622 | set_time = TRUE; | |
1623 | time_buf.LastAccessTime = | |
1624 | cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_atime)); | |
1625 | } else | |
1626 | time_buf.LastAccessTime = 0; | |
1627 | ||
1628 | if (attrs->ia_valid & ATTR_MTIME) { | |
1629 | set_time = TRUE; | |
1630 | time_buf.LastWriteTime = | |
1631 | cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_mtime)); | |
1632 | } else | |
1633 | time_buf.LastWriteTime = 0; | |
e30dcf3a SF |
1634 | /* Do not set ctime explicitly unless other time |
1635 | stamps are changed explicitly (i.e. by utime() | |
1636 | since we would then have a mix of client and | |
1637 | server times */ | |
50c2f753 | 1638 | |
e30dcf3a | 1639 | if (set_time && (attrs->ia_valid & ATTR_CTIME)) { |
1da177e4 | 1640 | set_time = TRUE; |
e30dcf3a SF |
1641 | /* Although Samba throws this field away |
1642 | it may be useful to Windows - but we do | |
1643 | not want to set ctime unless some other | |
1644 | timestamp is changing */ | |
26a21b98 | 1645 | cFYI(1, ("CIFS - CTIME changed")); |
1da177e4 LT |
1646 | time_buf.ChangeTime = |
1647 | cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_ctime)); | |
1648 | } else | |
1649 | time_buf.ChangeTime = 0; | |
1650 | ||
066fcb06 | 1651 | if (set_time || set_dosattr) { |
1da177e4 LT |
1652 | time_buf.CreationTime = 0; /* do not change */ |
1653 | /* In the future we should experiment - try setting timestamps | |
1654 | via Handle (SetFileInfo) instead of by path */ | |
1655 | if (!(pTcon->ses->flags & CIFS_SES_NT4)) | |
1656 | rc = CIFSSMBSetTimes(xid, pTcon, full_path, &time_buf, | |
737b758c SF |
1657 | cifs_sb->local_nls, |
1658 | cifs_sb->mnt_cifs_flags & | |
1659 | CIFS_MOUNT_MAP_SPECIAL_CHR); | |
1da177e4 LT |
1660 | else |
1661 | rc = -EOPNOTSUPP; | |
1662 | ||
1663 | if (rc == -EOPNOTSUPP) { | |
1664 | int oplock = FALSE; | |
1665 | __u16 netfid; | |
1666 | ||
1667 | cFYI(1, ("calling SetFileInfo since SetPathInfo for " | |
1668 | "times not supported by this server")); | |
1669 | /* BB we could scan to see if we already have it open | |
1670 | and pass in pid of opener to function */ | |
1671 | rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN, | |
1672 | SYNCHRONIZE | FILE_WRITE_ATTRIBUTES, | |
1673 | CREATE_NOT_DIR, &netfid, &oplock, | |
737b758c SF |
1674 | NULL, cifs_sb->local_nls, |
1675 | cifs_sb->mnt_cifs_flags & | |
1676 | CIFS_MOUNT_MAP_SPECIAL_CHR); | |
fb8c4b14 | 1677 | if (rc == 0) { |
1da177e4 LT |
1678 | rc = CIFSSMBSetFileTimes(xid, pTcon, &time_buf, |
1679 | netfid); | |
1680 | CIFSSMBClose(xid, pTcon, netfid); | |
1681 | } else { | |
1682 | /* BB For even older servers we could convert time_buf | |
1683 | into old DOS style which uses two second | |
1684 | granularity */ | |
1685 | ||
1686 | /* rc = CIFSSMBSetTimesLegacy(xid, pTcon, full_path, | |
fb8c4b14 | 1687 | &time_buf, cifs_sb->local_nls); */ |
1da177e4 LT |
1688 | } |
1689 | } | |
e30dcf3a SF |
1690 | /* Even if error on time set, no sense failing the call if |
1691 | the server would set the time to a reasonable value anyway, | |
1692 | and this check ensures that we are not being called from | |
1693 | sys_utimes in which case we ought to fail the call back to | |
1694 | the user when the server rejects the call */ | |
fb8c4b14 | 1695 | if ((rc) && (attrs->ia_valid & |
e30dcf3a SF |
1696 | (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE))) |
1697 | rc = 0; | |
1da177e4 LT |
1698 | } |
1699 | ||
1700 | /* do not need local check to inode_check_ok since the server does | |
1701 | that */ | |
1702 | if (!rc) | |
1703 | rc = inode_setattr(direntry->d_inode, attrs); | |
e30dcf3a | 1704 | cifs_setattr_exit: |
1da177e4 LT |
1705 | kfree(full_path); |
1706 | FreeXid(xid); | |
1707 | return rc; | |
1708 | } | |
1709 | ||
99ee4dbd | 1710 | #if 0 |
1da177e4 LT |
1711 | void cifs_delete_inode(struct inode *inode) |
1712 | { | |
26a21b98 | 1713 | cFYI(1, ("In cifs_delete_inode, inode = 0x%p", inode)); |
1da177e4 LT |
1714 | /* may have to add back in if and when safe distributed caching of |
1715 | directories added e.g. via FindNotify */ | |
1716 | } | |
99ee4dbd | 1717 | #endif |