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