4 * Copyright (C) International Business Machines Corp., 2002,2007
5 * Author(s): Steve French (sfrench@us.ibm.com)
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.
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.
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
22 #include <linux/stat.h>
23 #include <linux/pagemap.h>
24 #include <asm/div64.h>
28 #include "cifsproto.h"
29 #include "cifs_debug.h"
30 #include "cifs_fs_sb.h"
32 int cifs_get_inode_info_unix(struct inode
**pinode
,
33 const unsigned char *search_path
, struct super_block
*sb
, int xid
)
36 FILE_UNIX_BASIC_INFO findData
;
37 struct cifsTconInfo
*pTcon
;
39 struct cifs_sb_info
*cifs_sb
= CIFS_SB(sb
);
42 pTcon
= cifs_sb
->tcon
;
43 cFYI(1, ("Getting info on %s", search_path
));
44 /* could have done a find first instead but this returns more info */
45 rc
= CIFSSMBUnixQPathInfo(xid
, pTcon
, search_path
, &findData
,
46 cifs_sb
->local_nls
, cifs_sb
->mnt_cifs_flags
&
47 CIFS_MOUNT_MAP_SPECIAL_CHR
);
48 /* dump_mem("\nUnixQPathInfo return data", &findData,
53 kmalloc(strnlen(pTcon
->treeName
,
55 strnlen(search_path
, MAX_PATHCONF
) + 1,
57 if (tmp_path
== NULL
) {
60 /* have to skip first of the double backslash of
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
,
67 cifs_sb
->mnt_cifs_flags
&
68 CIFS_MOUNT_MAP_SPECIAL_CHR
);
71 /* BB fix up inode etc. */
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
);
82 if (*pinode
== NULL
) {
83 *pinode
= new_inode(sb
);
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? */
89 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SERVER_INUM
) {
91 (unsigned long)findData
.UniqueId
;
92 } /* note ino incremented to unique num in new_inode */
93 if (sb
->s_flags
& MS_NOATIME
)
94 (*pinode
)->i_flags
|= S_NOATIME
| S_NOCMTIME
;
96 insert_inode_hash(*pinode
);
100 cifsInfo
= CIFS_I(inode
);
102 cFYI(1, ("Old time %ld", cifsInfo
->time
));
103 cifsInfo
->time
= jiffies
;
104 cFYI(1, ("New time %ld", cifsInfo
->time
));
105 /* this is ok to set on every inode revalidate */
106 atomic_set(&cifsInfo
->inUse
,1);
109 cifs_NTtimeToUnix(le64_to_cpu(findData
.LastAccessTime
));
111 cifs_NTtimeToUnix(le64_to_cpu
112 (findData
.LastModificationTime
));
114 cifs_NTtimeToUnix(le64_to_cpu(findData
.LastStatusChange
));
115 inode
->i_mode
= le64_to_cpu(findData
.Permissions
);
116 /* since we set the inode type below we need to mask off
117 to avoid strange results if bits set above */
118 inode
->i_mode
&= ~S_IFMT
;
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
;
138 /* safest to call it a file if we do not know */
139 inode
->i_mode
|= S_IFREG
;
140 cFYI(1,("unknown type %d",type
));
143 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_OVERR_UID
)
144 inode
->i_uid
= cifs_sb
->mnt_uid
;
146 inode
->i_uid
= le64_to_cpu(findData
.Uid
);
148 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_OVERR_GID
)
149 inode
->i_gid
= cifs_sb
->mnt_gid
;
151 inode
->i_gid
= le64_to_cpu(findData
.Gid
);
153 inode
->i_nlink
= le64_to_cpu(findData
.Nlinks
);
155 spin_lock(&inode
->i_lock
);
156 if (is_size_safe_to_change(cifsInfo
, end_of_file
)) {
157 /* can not safely change the file size here if the
158 client is writing to it due to potential races */
159 i_size_write(inode
, end_of_file
);
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;*/
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 */
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;
174 spin_unlock(&inode
->i_lock
);
176 if (num_of_bytes
< end_of_file
)
177 cFYI(1, ("allocation size less than end of file"));
178 cFYI(1, ("Size %ld and blocks %llu",
179 (unsigned long) inode
->i_size
,
180 (unsigned long long)inode
->i_blocks
));
181 if (S_ISREG(inode
->i_mode
)) {
182 cFYI(1, ("File inode"));
183 inode
->i_op
= &cifs_file_inode_ops
;
184 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_DIRECT_IO
) {
185 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_BRL
)
187 &cifs_file_direct_nobrl_ops
;
189 inode
->i_fop
= &cifs_file_direct_ops
;
190 } else if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_BRL
)
191 inode
->i_fop
= &cifs_file_nobrl_ops
;
192 else /* not direct, send byte range locks */
193 inode
->i_fop
= &cifs_file_ops
;
195 /* check if server can support readpages */
196 if (pTcon
->ses
->server
->maxBuf
<
197 PAGE_CACHE_SIZE
+ MAX_CIFS_HDR_SIZE
)
198 inode
->i_data
.a_ops
= &cifs_addr_ops_smallbuf
;
200 inode
->i_data
.a_ops
= &cifs_addr_ops
;
201 } else if (S_ISDIR(inode
->i_mode
)) {
202 cFYI(1, ("Directory inode"));
203 inode
->i_op
= &cifs_dir_inode_ops
;
204 inode
->i_fop
= &cifs_dir_ops
;
205 } else if (S_ISLNK(inode
->i_mode
)) {
206 cFYI(1, ("Symbolic Link inode"));
207 inode
->i_op
= &cifs_symlink_inode_ops
;
208 /* tmp_inode->i_fop = */ /* do not need to set to anything */
210 cFYI(1, ("Init special inode"));
211 init_special_inode(inode
, inode
->i_mode
,
218 static int decode_sfu_inode(struct inode
* inode
, __u64 size
,
219 const unsigned char *path
,
220 struct cifs_sb_info
*cifs_sb
, int xid
)
225 struct cifsTconInfo
*pTcon
= cifs_sb
->tcon
;
227 unsigned int bytes_read
;
233 inode
->i_mode
|= S_IFIFO
;
235 } else if (size
< 8) {
236 return -EINVAL
; /* EOPNOTSUPP? */
239 rc
= CIFSSMBOpen(xid
, pTcon
, path
, FILE_OPEN
, GENERIC_READ
,
240 CREATE_NOT_DIR
, &netfid
, &oplock
, NULL
,
242 cifs_sb
->mnt_cifs_flags
&
243 CIFS_MOUNT_MAP_SPECIAL_CHR
);
245 int buf_type
= CIFS_NO_BUFFER
;
247 rc
= CIFSSMBRead(xid
, pTcon
,
249 24 /* length */, 0 /* offset */,
250 &bytes_read
, &pbuf
, &buf_type
);
251 if ((rc
== 0) && (bytes_read
>= 8)) {
252 if (memcmp("IntxBLK", pbuf
, 8) == 0) {
253 cFYI(1,("Block device"));
254 inode
->i_mode
|= S_IFBLK
;
255 if (bytes_read
== 24) {
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
);
263 } else if (memcmp("IntxCHR", pbuf
, 8) == 0) {
264 cFYI(1,("Char device"));
265 inode
->i_mode
|= S_IFCHR
;
266 if (bytes_read
== 24) {
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
);
274 } else if (memcmp("IntxLNK", pbuf
, 7) == 0) {
276 inode
->i_mode
|= S_IFLNK
;
278 inode
->i_mode
|= S_IFREG
; /* file? */
282 inode
->i_mode
|= S_IFREG
; /* then it is a file */
283 rc
= -EOPNOTSUPP
; /* or some unknown SFU type */
285 CIFSSMBClose(xid
, pTcon
, netfid
);
291 #define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */
293 static int get_sfu_uid_mode(struct inode
* inode
,
294 const unsigned char *path
,
295 struct cifs_sb_info
*cifs_sb
, int xid
)
297 #ifdef CONFIG_CIFS_XATTR
302 rc
= CIFSSMBQueryEA(xid
, cifs_sb
->tcon
, path
, "SETFILEBITS",
303 ea_value
, 4 /* size of buf */, cifs_sb
->local_nls
,
304 cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_MAP_SPECIAL_CHR
);
308 mode
= le32_to_cpu(*((__le32
*)ea_value
));
309 inode
->i_mode
&= ~SFBITS_MASK
;
310 cFYI(1,("special bits 0%o org mode 0%o", mode
, inode
->i_mode
));
311 inode
->i_mode
= (mode
& SFBITS_MASK
) | inode
->i_mode
;
312 cFYI(1,("special mode bits 0%o", mode
));
324 int cifs_get_inode_info(struct inode
**pinode
,
325 const unsigned char *search_path
, FILE_ALL_INFO
*pfindData
,
326 struct super_block
*sb
, int xid
)
329 struct cifsTconInfo
*pTcon
;
331 struct cifs_sb_info
*cifs_sb
= CIFS_SB(sb
);
334 int adjustTZ
= FALSE
;
336 pTcon
= cifs_sb
->tcon
;
337 cFYI(1,("Getting info on %s", search_path
));
339 if ((pfindData
== NULL
) && (*pinode
!= NULL
)) {
340 if (CIFS_I(*pinode
)->clientCanCacheRead
) {
341 cFYI(1,("No need to revalidate cached inode sizes"));
346 /* if file info not passed in then get it from server */
347 if (pfindData
== NULL
) {
348 buf
= kmalloc(sizeof(FILE_ALL_INFO
), GFP_KERNEL
);
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
,
355 cifs_sb
->local_nls
, cifs_sb
->mnt_cifs_flags
&
356 CIFS_MOUNT_MAP_SPECIAL_CHR
);
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 */
360 if ((rc
== -EOPNOTSUPP
) || (rc
== -EINVAL
)) {
361 rc
= SMBQueryInformation(xid
, pTcon
, search_path
,
362 pfindData
, cifs_sb
->local_nls
,
363 cifs_sb
->mnt_cifs_flags
&
364 CIFS_MOUNT_MAP_SPECIAL_CHR
);
369 /* dump_mem("\nQPathInfo return data",&findData, sizeof(findData)); */
371 if (rc
== -EREMOTE
) {
376 strnlen(search_path
, MAX_PATHCONF
) + 1,
378 if (tmp_path
== NULL
) {
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
,
388 cifs_sb
->mnt_cifs_flags
&
389 CIFS_MOUNT_MAP_SPECIAL_CHR
);
391 /* BB fix up inode etc. */
397 struct cifsInodeInfo
*cifsInfo
;
398 __u32 attr
= le32_to_cpu(pfindData
->Attributes
);
401 if (*pinode
== NULL
) {
402 *pinode
= new_inode(sb
);
403 if (*pinode
== NULL
) {
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? */
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
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? */
422 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SERVER_INUM
){
426 rc1
= CIFSGetSrvInodeNumber(xid
, pTcon
,
427 search_path
, &inode_num
,
429 cifs_sb
->mnt_cifs_flags
&
430 CIFS_MOUNT_MAP_SPECIAL_CHR
);
432 cFYI(1,("GetSrvInodeNum rc %d", rc1
));
433 /* BB EOPNOSUPP disable SERVER_INUM? */
434 } else /* do we need cast or hash to ino? */
435 (*pinode
)->i_ino
= inode_num
;
436 } /* else ino incremented to unique num in new_inode*/
437 if (sb
->s_flags
& MS_NOATIME
)
438 (*pinode
)->i_flags
|= S_NOATIME
| S_NOCMTIME
;
439 insert_inode_hash(*pinode
);
442 cifsInfo
= CIFS_I(inode
);
443 cifsInfo
->cifsAttrs
= attr
;
444 cFYI(1, ("Old time %ld", cifsInfo
->time
));
445 cifsInfo
->time
= jiffies
;
446 cFYI(1, ("New time %ld", cifsInfo
->time
));
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;*/
453 /* Linux can not store file creation time so ignore it */
454 if (pfindData
->LastAccessTime
)
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
;
460 cifs_NTtimeToUnix(le64_to_cpu(pfindData
->LastWriteTime
));
462 cifs_NTtimeToUnix(le64_to_cpu(pfindData
->ChangeTime
));
463 cFYI(0, ("Attributes came in as 0x%x", attr
));
464 if (adjustTZ
&& (pTcon
->ses
) && (pTcon
->ses
->server
)) {
465 inode
->i_ctime
.tv_sec
+= pTcon
->ses
->server
->timeAdj
;
466 inode
->i_mtime
.tv_sec
+= pTcon
->ses
->server
->timeAdj
;
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
;
473 else /* since we set the inode type below we need to mask off
474 to avoid strange results if type changes and both get orred in */
475 inode
->i_mode
&= ~S_IFMT
;
476 /* if (attr & ATTR_REPARSE) */
477 /* We no longer handle these as symlinks because we could not
478 follow them due to the absolute path with drive letter */
479 if (attr
& ATTR_DIRECTORY
) {
480 /* override default perms since we do not do byte range locking
482 inode
->i_mode
= cifs_sb
->mnt_dir_mode
;
483 inode
->i_mode
|= S_IFDIR
;
484 } else if ((cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_UNX_EMUL
) &&
485 (cifsInfo
->cifsAttrs
& ATTR_SYSTEM
) &&
486 /* No need to le64 convert size of zero */
487 (pfindData
->EndOfFile
== 0)) {
488 inode
->i_mode
= cifs_sb
->mnt_file_mode
;
489 inode
->i_mode
|= S_IFIFO
;
490 /* BB Finish for SFU style symlinks and devices */
491 } else if ((cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_UNX_EMUL
) &&
492 (cifsInfo
->cifsAttrs
& ATTR_SYSTEM
)) {
493 if (decode_sfu_inode(inode
,
494 le64_to_cpu(pfindData
->EndOfFile
),
497 cFYI(1,("Unrecognized sfu inode type"));
499 cFYI(1,("sfu mode 0%o",inode
->i_mode
));
501 inode
->i_mode
|= S_IFREG
;
502 /* treat the dos attribute of read-only as read-only
504 if (cifsInfo
->cifsAttrs
& ATTR_READONLY
)
505 inode
->i_mode
&= ~(S_IWUGO
);
506 else if ((inode
->i_mode
& S_IWUGO
) == 0)
507 /* the ATTR_READONLY flag may have been */
508 /* changed on server -- set any w bits */
509 /* allowed by mnt_file_mode */
510 inode
->i_mode
|= (S_IWUGO
&
511 cifs_sb
->mnt_file_mode
);
512 /* BB add code here -
513 validate if device or weird share or device type? */
516 spin_lock(&inode
->i_lock
);
517 if (is_size_safe_to_change(cifsInfo
, le64_to_cpu(pfindData
->EndOfFile
))) {
518 /* can not safely shrink the file size here if the
519 client is writing to it due to potential races */
520 i_size_write(inode
,le64_to_cpu(pfindData
->EndOfFile
));
522 /* 512 bytes (2**9) is the fake blocksize that must be
523 used for this calculation */
524 inode
->i_blocks
= (512 - 1 + le64_to_cpu(
525 pfindData
->AllocationSize
)) >> 9;
527 spin_unlock(&inode
->i_lock
);
529 inode
->i_nlink
= le32_to_cpu(pfindData
->NumberOfLinks
);
531 /* BB fill in uid and gid here? with help from winbind?
532 or retrieve from NTFS stream extended attribute */
533 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_UNX_EMUL
) {
534 /* fill in uid, gid, mode from server ACL */
535 /* BB FIXME this should also take into account the
536 * default uid specified on mount if present */
537 get_sfu_uid_mode(inode
, search_path
, cifs_sb
, xid
);
538 } else if (atomic_read(&cifsInfo
->inUse
) == 0) {
539 inode
->i_uid
= cifs_sb
->mnt_uid
;
540 inode
->i_gid
= cifs_sb
->mnt_gid
;
541 /* set so we do not keep refreshing these fields with
542 bad data after user has changed them in memory */
543 atomic_set(&cifsInfo
->inUse
,1);
546 if (S_ISREG(inode
->i_mode
)) {
547 cFYI(1, ("File inode"));
548 inode
->i_op
= &cifs_file_inode_ops
;
549 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_DIRECT_IO
) {
550 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_BRL
)
552 &cifs_file_direct_nobrl_ops
;
554 inode
->i_fop
= &cifs_file_direct_ops
;
555 } else if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_BRL
)
556 inode
->i_fop
= &cifs_file_nobrl_ops
;
557 else /* not direct, send byte range locks */
558 inode
->i_fop
= &cifs_file_ops
;
560 if (pTcon
->ses
->server
->maxBuf
<
561 PAGE_CACHE_SIZE
+ MAX_CIFS_HDR_SIZE
)
562 inode
->i_data
.a_ops
= &cifs_addr_ops_smallbuf
;
564 inode
->i_data
.a_ops
= &cifs_addr_ops
;
565 } else if (S_ISDIR(inode
->i_mode
)) {
566 cFYI(1, ("Directory inode"));
567 inode
->i_op
= &cifs_dir_inode_ops
;
568 inode
->i_fop
= &cifs_dir_ops
;
569 } else if (S_ISLNK(inode
->i_mode
)) {
570 cFYI(1, ("Symbolic Link inode"));
571 inode
->i_op
= &cifs_symlink_inode_ops
;
573 init_special_inode(inode
, inode
->i_mode
,
581 /* gets root inode */
582 void cifs_read_inode(struct inode
*inode
)
585 struct cifs_sb_info
*cifs_sb
;
587 cifs_sb
= CIFS_SB(inode
->i_sb
);
589 if (cifs_sb
->tcon
->ses
->capabilities
& CAP_UNIX
)
590 cifs_get_inode_info_unix(&inode
, "", inode
->i_sb
,xid
);
592 cifs_get_inode_info(&inode
, "", NULL
, inode
->i_sb
,xid
);
593 /* can not call macro FreeXid here since in a void func */
597 int cifs_unlink(struct inode
*inode
, struct dentry
*direntry
)
601 struct cifs_sb_info
*cifs_sb
;
602 struct cifsTconInfo
*pTcon
;
603 char *full_path
= NULL
;
604 struct cifsInodeInfo
*cifsInode
;
605 FILE_BASIC_INFO
*pinfo_buf
;
607 cFYI(1, ("cifs_unlink, inode = 0x%p", inode
));
612 cifs_sb
= CIFS_SB(inode
->i_sb
);
614 cifs_sb
= CIFS_SB(direntry
->d_sb
);
615 pTcon
= cifs_sb
->tcon
;
617 /* Unlink can be called from rename so we can not grab the sem here
618 since we deadlock otherwise */
619 /* mutex_lock(&direntry->d_sb->s_vfs_rename_mutex);*/
620 full_path
= build_path_from_dentry(direntry
);
621 /* mutex_unlock(&direntry->d_sb->s_vfs_rename_mutex);*/
622 if (full_path
== NULL
) {
626 rc
= CIFSSMBDelFile(xid
, pTcon
, full_path
, cifs_sb
->local_nls
,
627 cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_MAP_SPECIAL_CHR
);
630 if (direntry
->d_inode
)
631 drop_nlink(direntry
->d_inode
);
632 } else if (rc
== -ENOENT
) {
634 } else if (rc
== -ETXTBSY
) {
638 rc
= CIFSSMBOpen(xid
, pTcon
, full_path
, FILE_OPEN
, DELETE
,
639 CREATE_NOT_DIR
| CREATE_DELETE_ON_CLOSE
,
640 &netfid
, &oplock
, NULL
, cifs_sb
->local_nls
,
641 cifs_sb
->mnt_cifs_flags
&
642 CIFS_MOUNT_MAP_SPECIAL_CHR
);
644 CIFSSMBRenameOpenFile(xid
, pTcon
, netfid
, NULL
,
646 cifs_sb
->mnt_cifs_flags
&
647 CIFS_MOUNT_MAP_SPECIAL_CHR
);
648 CIFSSMBClose(xid
, pTcon
, netfid
);
649 if (direntry
->d_inode
)
650 drop_nlink(direntry
->d_inode
);
652 } else if (rc
== -EACCES
) {
653 /* try only if r/o attribute set in local lookup data? */
654 pinfo_buf
= kzalloc(sizeof(FILE_BASIC_INFO
), GFP_KERNEL
);
656 /* ATTRS set to normal clears r/o bit */
657 pinfo_buf
->Attributes
= cpu_to_le32(ATTR_NORMAL
);
658 if (!(pTcon
->ses
->flags
& CIFS_SES_NT4
))
659 rc
= CIFSSMBSetTimes(xid
, pTcon
, full_path
,
662 cifs_sb
->mnt_cifs_flags
&
663 CIFS_MOUNT_MAP_SPECIAL_CHR
);
667 if (rc
== -EOPNOTSUPP
) {
670 /* rc = CIFSSMBSetAttrLegacy(xid, pTcon,
674 For some strange reason it seems that NT4 eats the
675 old setattr call without actually setting the
676 attributes so on to the third attempted workaround
679 /* BB could scan to see if we already have it open
680 and pass in pid of opener to function */
681 rc
= CIFSSMBOpen(xid
, pTcon
, full_path
,
682 FILE_OPEN
, SYNCHRONIZE
|
683 FILE_WRITE_ATTRIBUTES
, 0,
684 &netfid
, &oplock
, NULL
,
686 cifs_sb
->mnt_cifs_flags
&
687 CIFS_MOUNT_MAP_SPECIAL_CHR
);
689 rc
= CIFSSMBSetFileTimes(xid
, pTcon
,
692 CIFSSMBClose(xid
, pTcon
, netfid
);
698 rc
= CIFSSMBDelFile(xid
, pTcon
, full_path
,
700 cifs_sb
->mnt_cifs_flags
&
701 CIFS_MOUNT_MAP_SPECIAL_CHR
);
703 if (direntry
->d_inode
)
704 drop_nlink(direntry
->d_inode
);
705 } else if (rc
== -ETXTBSY
) {
709 rc
= CIFSSMBOpen(xid
, pTcon
, full_path
,
712 CREATE_DELETE_ON_CLOSE
,
713 &netfid
, &oplock
, NULL
,
715 cifs_sb
->mnt_cifs_flags
&
716 CIFS_MOUNT_MAP_SPECIAL_CHR
);
718 CIFSSMBRenameOpenFile(xid
, pTcon
,
721 cifs_sb
->mnt_cifs_flags
&
722 CIFS_MOUNT_MAP_SPECIAL_CHR
);
723 CIFSSMBClose(xid
, pTcon
, netfid
);
724 if (direntry
->d_inode
)
725 drop_nlink(direntry
->d_inode
);
727 /* BB if rc = -ETXTBUSY goto the rename logic BB */
731 if (direntry
->d_inode
) {
732 cifsInode
= CIFS_I(direntry
->d_inode
);
733 cifsInode
->time
= 0; /* will force revalidate to get info
735 direntry
->d_inode
->i_ctime
= current_fs_time(inode
->i_sb
);
738 inode
->i_ctime
= inode
->i_mtime
= current_fs_time(inode
->i_sb
);
739 cifsInode
= CIFS_I(inode
);
740 cifsInode
->time
= 0; /* force revalidate of dir as well */
748 static void posix_fill_in_inode(struct inode
*tmp_inode
,
749 FILE_UNIX_BASIC_INFO
*pData
, int *pobject_type
, int isNewInode
)
752 struct timespec local_mtime
;
754 struct cifsInodeInfo
*cifsInfo
= CIFS_I(tmp_inode
);
755 struct cifs_sb_info
*cifs_sb
= CIFS_SB(tmp_inode
->i_sb
);
757 __u32 type
= le32_to_cpu(pData
->Type
);
758 __u64 num_of_bytes
= le64_to_cpu(pData
->NumOfBytes
);
759 __u64 end_of_file
= le64_to_cpu(pData
->EndOfFile
);
760 cifsInfo
->time
= jiffies
;
761 atomic_inc(&cifsInfo
->inUse
);
763 /* save mtime and size */
764 local_mtime
= tmp_inode
->i_mtime
;
765 local_size
= tmp_inode
->i_size
;
768 cifs_NTtimeToUnix(le64_to_cpu(pData
->LastAccessTime
));
770 cifs_NTtimeToUnix(le64_to_cpu(pData
->LastModificationTime
));
772 cifs_NTtimeToUnix(le64_to_cpu(pData
->LastStatusChange
));
774 tmp_inode
->i_mode
= le64_to_cpu(pData
->Permissions
);
775 /* since we set the inode type below we need to mask off type
776 to avoid strange results if bits above were corrupt */
777 tmp_inode
->i_mode
&= ~S_IFMT
;
778 if (type
== UNIX_FILE
) {
779 *pobject_type
= DT_REG
;
780 tmp_inode
->i_mode
|= S_IFREG
;
781 } else if (type
== UNIX_SYMLINK
) {
782 *pobject_type
= DT_LNK
;
783 tmp_inode
->i_mode
|= S_IFLNK
;
784 } else if (type
== UNIX_DIR
) {
785 *pobject_type
= DT_DIR
;
786 tmp_inode
->i_mode
|= S_IFDIR
;
787 } else if (type
== UNIX_CHARDEV
) {
788 *pobject_type
= DT_CHR
;
789 tmp_inode
->i_mode
|= S_IFCHR
;
790 tmp_inode
->i_rdev
= MKDEV(le64_to_cpu(pData
->DevMajor
),
791 le64_to_cpu(pData
->DevMinor
) & MINORMASK
);
792 } else if (type
== UNIX_BLOCKDEV
) {
793 *pobject_type
= DT_BLK
;
794 tmp_inode
->i_mode
|= S_IFBLK
;
795 tmp_inode
->i_rdev
= MKDEV(le64_to_cpu(pData
->DevMajor
),
796 le64_to_cpu(pData
->DevMinor
) & MINORMASK
);
797 } else if (type
== UNIX_FIFO
) {
798 *pobject_type
= DT_FIFO
;
799 tmp_inode
->i_mode
|= S_IFIFO
;
800 } else if (type
== UNIX_SOCKET
) {
801 *pobject_type
= DT_SOCK
;
802 tmp_inode
->i_mode
|= S_IFSOCK
;
804 /* safest to just call it a file */
805 *pobject_type
= DT_REG
;
806 tmp_inode
->i_mode
|= S_IFREG
;
807 cFYI(1,("unknown inode type %d",type
));
810 #ifdef CONFIG_CIFS_DEBUG2
811 cFYI(1,("object type: %d", type
));
813 tmp_inode
->i_uid
= le64_to_cpu(pData
->Uid
);
814 tmp_inode
->i_gid
= le64_to_cpu(pData
->Gid
);
815 tmp_inode
->i_nlink
= le64_to_cpu(pData
->Nlinks
);
817 spin_lock(&tmp_inode
->i_lock
);
818 if (is_size_safe_to_change(cifsInfo
, end_of_file
)) {
819 /* can not safely change the file size here if the
820 client is writing to it due to potential races */
821 i_size_write(tmp_inode
, end_of_file
);
823 /* 512 bytes (2**9) is the fake blocksize that must be used */
824 /* for this calculation, not the real blocksize */
825 tmp_inode
->i_blocks
= (512 - 1 + num_of_bytes
) >> 9;
827 spin_unlock(&tmp_inode
->i_lock
);
829 if (S_ISREG(tmp_inode
->i_mode
)) {
830 cFYI(1, ("File inode"));
831 tmp_inode
->i_op
= &cifs_file_inode_ops
;
833 if(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_DIRECT_IO
) {
834 if(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_BRL
)
835 tmp_inode
->i_fop
= &cifs_file_direct_nobrl_ops
;
837 tmp_inode
->i_fop
= &cifs_file_direct_ops
;
839 } else if(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_BRL
)
840 tmp_inode
->i_fop
= &cifs_file_nobrl_ops
;
842 tmp_inode
->i_fop
= &cifs_file_ops
;
844 if((cifs_sb
->tcon
) && (cifs_sb
->tcon
->ses
) &&
845 (cifs_sb
->tcon
->ses
->server
->maxBuf
<
846 PAGE_CACHE_SIZE
+ MAX_CIFS_HDR_SIZE
))
847 tmp_inode
->i_data
.a_ops
= &cifs_addr_ops_smallbuf
;
849 tmp_inode
->i_data
.a_ops
= &cifs_addr_ops
;
852 return; /* No sense invalidating pages for new inode since we
853 have not started caching readahead file data yet */
855 if (timespec_equal(&tmp_inode
->i_mtime
, &local_mtime
) &&
856 (local_size
== tmp_inode
->i_size
)) {
857 cFYI(1, ("inode exists but unchanged"));
859 /* file may have changed on server */
860 cFYI(1, ("invalidate inode, readdir detected change"));
861 invalidate_remote_inode(tmp_inode
);
863 } else if (S_ISDIR(tmp_inode
->i_mode
)) {
864 cFYI(1, ("Directory inode"));
865 tmp_inode
->i_op
= &cifs_dir_inode_ops
;
866 tmp_inode
->i_fop
= &cifs_dir_ops
;
867 } else if (S_ISLNK(tmp_inode
->i_mode
)) {
868 cFYI(1, ("Symbolic Link inode"));
869 tmp_inode
->i_op
= &cifs_symlink_inode_ops
;
870 /* tmp_inode->i_fop = *//* do not need to set to anything */
872 cFYI(1, ("Special inode"));
873 init_special_inode(tmp_inode
, tmp_inode
->i_mode
,
878 int cifs_mkdir(struct inode
*inode
, struct dentry
*direntry
, int mode
)
882 struct cifs_sb_info
*cifs_sb
;
883 struct cifsTconInfo
*pTcon
;
884 char *full_path
= NULL
;
885 struct inode
*newinode
= NULL
;
887 cFYI(1, ("In cifs_mkdir, mode = 0x%x inode = 0x%p", mode
, inode
));
891 cifs_sb
= CIFS_SB(inode
->i_sb
);
892 pTcon
= cifs_sb
->tcon
;
894 full_path
= build_path_from_dentry(direntry
);
895 if (full_path
== NULL
) {
900 if((pTcon
->ses
->capabilities
& CAP_UNIX
) &&
901 (CIFS_UNIX_POSIX_PATH_OPS_CAP
&
902 le64_to_cpu(pTcon
->fsUnixInfo
.Capability
))) {
904 FILE_UNIX_BASIC_INFO
* pInfo
=
905 kzalloc(sizeof(FILE_UNIX_BASIC_INFO
), GFP_KERNEL
);
911 rc
= CIFSPOSIXCreate(xid
, pTcon
, SMB_O_DIRECTORY
| SMB_O_CREAT
,
912 mode
, NULL
/* netfid */, pInfo
, &oplock
,
913 full_path
, cifs_sb
->local_nls
,
914 cifs_sb
->mnt_cifs_flags
&
915 CIFS_MOUNT_MAP_SPECIAL_CHR
);
917 cFYI(1, ("posix mkdir returned 0x%x", rc
));
921 if (pInfo
->Type
== -1) /* no return info - go query */
923 /*BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if need to set uid/gid */
926 direntry
->d_op
= &cifs_ci_dentry_ops
;
928 direntry
->d_op
= &cifs_dentry_ops
;
930 newinode
= new_inode(inode
->i_sb
);
931 if (newinode
== NULL
)
933 /* Is an i_ino of zero legal? */
934 /* Are there sanity checks we can use to ensure that
935 the server is really filling in that field? */
936 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SERVER_INUM
) {
938 (unsigned long)pInfo
->UniqueId
;
939 } /* note ino incremented to unique num in new_inode */
940 if(inode
->i_sb
->s_flags
& MS_NOATIME
)
941 newinode
->i_flags
|= S_NOATIME
| S_NOCMTIME
;
942 newinode
->i_nlink
= 2;
944 insert_inode_hash(newinode
);
945 d_instantiate(direntry
, newinode
);
947 /* we already checked in POSIXCreate whether
948 frame was long enough */
949 posix_fill_in_inode(direntry
->d_inode
,
950 pInfo
, &obj_type
, 1 /* NewInode */);
951 #ifdef CONFIG_CIFS_DEBUG2
952 cFYI(1,("instantiated dentry %p %s to inode %p",
953 direntry
, direntry
->d_name
.name
, newinode
));
955 if(newinode
->i_nlink
!= 2)
956 cFYI(1,("unexpected number of links %d",
964 /* BB add setting the equivalent of mode via CreateX w/ACLs */
965 rc
= CIFSSMBMkDir(xid
, pTcon
, full_path
, cifs_sb
->local_nls
,
966 cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_MAP_SPECIAL_CHR
);
968 cFYI(1, ("cifs_mkdir returned 0x%x", rc
));
973 if (pTcon
->ses
->capabilities
& CAP_UNIX
)
974 rc
= cifs_get_inode_info_unix(&newinode
, full_path
,
977 rc
= cifs_get_inode_info(&newinode
, full_path
, NULL
,
981 direntry
->d_op
= &cifs_ci_dentry_ops
;
983 direntry
->d_op
= &cifs_dentry_ops
;
984 d_instantiate(direntry
, newinode
);
985 /* setting nlink not necessary except in cases where we
986 * failed to get it from the server or was set bogus */
987 if ((direntry
->d_inode
) && (direntry
->d_inode
->i_nlink
< 2))
988 direntry
->d_inode
->i_nlink
= 2;
989 if (cifs_sb
->tcon
->ses
->capabilities
& CAP_UNIX
)
990 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SET_UID
) {
991 CIFSSMBUnixSetPerms(xid
, pTcon
, full_path
,
993 (__u64
)current
->fsuid
,
994 (__u64
)current
->fsgid
,
997 cifs_sb
->mnt_cifs_flags
&
998 CIFS_MOUNT_MAP_SPECIAL_CHR
);
1000 CIFSSMBUnixSetPerms(xid
, pTcon
, full_path
,
1002 (__u64
)-1, 0 /* dev_t */,
1004 cifs_sb
->mnt_cifs_flags
&
1005 CIFS_MOUNT_MAP_SPECIAL_CHR
);
1008 /* BB to be implemented via Windows secrty descriptors
1009 eg CIFSSMBWinSetPerms(xid, pTcon, full_path, mode,
1010 -1, -1, local_nls); */
1011 if(direntry
->d_inode
) {
1012 direntry
->d_inode
->i_mode
= mode
;
1013 direntry
->d_inode
->i_mode
|= S_IFDIR
;
1014 if(cifs_sb
->mnt_cifs_flags
&
1015 CIFS_MOUNT_SET_UID
) {
1016 direntry
->d_inode
->i_uid
=
1018 direntry
->d_inode
->i_gid
=
1030 int cifs_rmdir(struct inode
*inode
, struct dentry
*direntry
)
1034 struct cifs_sb_info
*cifs_sb
;
1035 struct cifsTconInfo
*pTcon
;
1036 char *full_path
= NULL
;
1037 struct cifsInodeInfo
*cifsInode
;
1039 cFYI(1, ("cifs_rmdir, inode = 0x%p", inode
));
1043 cifs_sb
= CIFS_SB(inode
->i_sb
);
1044 pTcon
= cifs_sb
->tcon
;
1046 full_path
= build_path_from_dentry(direntry
);
1047 if (full_path
== NULL
) {
1052 rc
= CIFSSMBRmDir(xid
, pTcon
, full_path
, cifs_sb
->local_nls
,
1053 cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_MAP_SPECIAL_CHR
);
1057 spin_lock(&direntry
->d_inode
->i_lock
);
1058 i_size_write(direntry
->d_inode
,0);
1059 clear_nlink(direntry
->d_inode
);
1060 spin_unlock(&direntry
->d_inode
->i_lock
);
1063 cifsInode
= CIFS_I(direntry
->d_inode
);
1064 cifsInode
->time
= 0; /* force revalidate to go get info when
1066 direntry
->d_inode
->i_ctime
= inode
->i_ctime
= inode
->i_mtime
=
1067 current_fs_time(inode
->i_sb
);
1074 int cifs_rename(struct inode
*source_inode
, struct dentry
*source_direntry
,
1075 struct inode
*target_inode
, struct dentry
*target_direntry
)
1079 struct cifs_sb_info
*cifs_sb_source
;
1080 struct cifs_sb_info
*cifs_sb_target
;
1081 struct cifsTconInfo
*pTcon
;
1087 cifs_sb_target
= CIFS_SB(target_inode
->i_sb
);
1088 cifs_sb_source
= CIFS_SB(source_inode
->i_sb
);
1089 pTcon
= cifs_sb_source
->tcon
;
1091 if (pTcon
!= cifs_sb_target
->tcon
) {
1093 return -EXDEV
; /* BB actually could be allowed if same server,
1094 but different share.
1095 Might eventually add support for this */
1098 /* we already have the rename sem so we do not need to grab it again
1099 here to protect the path integrity */
1100 fromName
= build_path_from_dentry(source_direntry
);
1101 toName
= build_path_from_dentry(target_direntry
);
1102 if ((fromName
== NULL
) || (toName
== NULL
)) {
1104 goto cifs_rename_exit
;
1107 rc
= CIFSSMBRename(xid
, pTcon
, fromName
, toName
,
1108 cifs_sb_source
->local_nls
,
1109 cifs_sb_source
->mnt_cifs_flags
&
1110 CIFS_MOUNT_MAP_SPECIAL_CHR
);
1111 if (rc
== -EEXIST
) {
1112 /* check if they are the same file because rename of hardlinked
1114 FILE_UNIX_BASIC_INFO
*info_buf_source
;
1115 FILE_UNIX_BASIC_INFO
*info_buf_target
;
1118 kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO
), GFP_KERNEL
);
1119 if (info_buf_source
!= NULL
) {
1120 info_buf_target
= info_buf_source
+ 1;
1121 if (pTcon
->ses
->capabilities
& CAP_UNIX
)
1122 rc
= CIFSSMBUnixQPathInfo(xid
, pTcon
, fromName
,
1124 cifs_sb_source
->local_nls
,
1125 cifs_sb_source
->mnt_cifs_flags
&
1126 CIFS_MOUNT_MAP_SPECIAL_CHR
);
1127 /* else rc is still EEXIST so will fall through to
1128 unlink the target and retry rename */
1130 rc
= CIFSSMBUnixQPathInfo(xid
, pTcon
, toName
,
1132 cifs_sb_target
->local_nls
,
1133 /* remap based on source sb */
1134 cifs_sb_source
->mnt_cifs_flags
&
1135 CIFS_MOUNT_MAP_SPECIAL_CHR
);
1138 (info_buf_source
->UniqueId
==
1139 info_buf_target
->UniqueId
)) {
1140 /* do not rename since the files are hardlinked which
1143 /* we either can not tell the files are hardlinked
1144 (as with Windows servers) or files are not
1145 hardlinked so delete the target manually before
1146 renaming to follow POSIX rather than Windows
1148 cifs_unlink(target_inode
, target_direntry
);
1149 rc
= CIFSSMBRename(xid
, pTcon
, fromName
,
1151 cifs_sb_source
->local_nls
,
1152 cifs_sb_source
->mnt_cifs_flags
1153 & CIFS_MOUNT_MAP_SPECIAL_CHR
);
1155 kfree(info_buf_source
);
1156 } /* if we can not get memory just leave rc as EEXIST */
1160 cFYI(1, ("rename rc %d", rc
));
1163 if ((rc
== -EIO
) || (rc
== -EEXIST
)) {
1167 /* BB FIXME Is Generic Read correct for rename? */
1168 /* if renaming directory - we should not say CREATE_NOT_DIR,
1169 need to test renaming open directory, also GENERIC_READ
1170 might not right be right access to request */
1171 rc
= CIFSSMBOpen(xid
, pTcon
, fromName
, FILE_OPEN
, GENERIC_READ
,
1172 CREATE_NOT_DIR
, &netfid
, &oplock
, NULL
,
1173 cifs_sb_source
->local_nls
,
1174 cifs_sb_source
->mnt_cifs_flags
&
1175 CIFS_MOUNT_MAP_SPECIAL_CHR
);
1177 rc
= CIFSSMBRenameOpenFile(xid
, pTcon
, netfid
, toName
,
1178 cifs_sb_source
->local_nls
,
1179 cifs_sb_source
->mnt_cifs_flags
&
1180 CIFS_MOUNT_MAP_SPECIAL_CHR
);
1181 CIFSSMBClose(xid
, pTcon
, netfid
);
1192 int cifs_revalidate(struct dentry
*direntry
)
1197 struct cifs_sb_info
*cifs_sb
;
1198 struct cifsInodeInfo
*cifsInode
;
1200 struct timespec local_mtime
;
1201 int invalidate_inode
= FALSE
;
1203 if (direntry
->d_inode
== NULL
)
1206 cifsInode
= CIFS_I(direntry
->d_inode
);
1208 if (cifsInode
== NULL
)
1211 /* no sense revalidating inode info on file that no one can write */
1212 if (CIFS_I(direntry
->d_inode
)->clientCanCacheRead
)
1217 cifs_sb
= CIFS_SB(direntry
->d_sb
);
1219 /* can not safely grab the rename sem here if rename calls revalidate
1220 since that would deadlock */
1221 full_path
= build_path_from_dentry(direntry
);
1222 if (full_path
== NULL
) {
1226 cFYI(1, ("Revalidate: %s inode 0x%p count %d dentry: 0x%p d_time %ld "
1227 "jiffies %ld", full_path
, direntry
->d_inode
,
1228 direntry
->d_inode
->i_count
.counter
, direntry
,
1229 direntry
->d_time
, jiffies
));
1231 if (cifsInode
->time
== 0) {
1232 /* was set to zero previously to force revalidate */
1233 } else if (time_before(jiffies
, cifsInode
->time
+ HZ
) &&
1234 lookupCacheEnabled
) {
1235 if ((S_ISREG(direntry
->d_inode
->i_mode
) == 0) ||
1236 (direntry
->d_inode
->i_nlink
== 1)) {
1241 cFYI(1, ("Have to revalidate file due to hardlinks"));
1245 /* save mtime and size */
1246 local_mtime
= direntry
->d_inode
->i_mtime
;
1247 local_size
= direntry
->d_inode
->i_size
;
1249 if (cifs_sb
->tcon
->ses
->capabilities
& CAP_UNIX
) {
1250 rc
= cifs_get_inode_info_unix(&direntry
->d_inode
, full_path
,
1251 direntry
->d_sb
,xid
);
1253 cFYI(1, ("error on getting revalidate info %d", rc
));
1254 /* if (rc != -ENOENT)
1255 rc = 0; */ /* BB should we cache info on
1259 rc
= cifs_get_inode_info(&direntry
->d_inode
, full_path
, NULL
,
1260 direntry
->d_sb
,xid
);
1262 cFYI(1, ("error on getting revalidate info %d", rc
));
1263 /* if (rc != -ENOENT)
1264 rc = 0; */ /* BB should we cache info on
1268 /* should we remap certain errors, access denied?, to zero */
1270 /* if not oplocked, we invalidate inode pages if mtime or file size
1271 had changed on server */
1273 if (timespec_equal(&local_mtime
,&direntry
->d_inode
->i_mtime
) &&
1274 (local_size
== direntry
->d_inode
->i_size
)) {
1275 cFYI(1, ("cifs_revalidate - inode unchanged"));
1277 /* file may have changed on server */
1278 if (cifsInode
->clientCanCacheRead
) {
1279 /* no need to invalidate inode pages since we were the
1280 only ones who could have modified the file and the
1281 server copy is staler than ours */
1283 invalidate_inode
= TRUE
;
1287 /* can not grab this sem since kernel filesys locking documentation
1288 indicates i_mutex may be taken by the kernel on lookup and rename
1289 which could deadlock if we grab the i_mutex here as well */
1290 /* mutex_lock(&direntry->d_inode->i_mutex);*/
1291 /* need to write out dirty pages here */
1292 if (direntry
->d_inode
->i_mapping
) {
1293 /* do we need to lock inode until after invalidate completes
1295 filemap_fdatawrite(direntry
->d_inode
->i_mapping
);
1297 if (invalidate_inode
) {
1298 /* shrink_dcache not necessary now that cifs dentry ops
1299 are exported for negative dentries */
1300 /* if(S_ISDIR(direntry->d_inode->i_mode))
1301 shrink_dcache_parent(direntry); */
1302 if (S_ISREG(direntry
->d_inode
->i_mode
)) {
1303 if (direntry
->d_inode
->i_mapping
)
1304 filemap_fdatawait(direntry
->d_inode
->i_mapping
);
1305 /* may eventually have to do this for open files too */
1306 if (list_empty(&(cifsInode
->openFileList
))) {
1307 /* changed on server - flush read ahead pages */
1308 cFYI(1, ("Invalidating read ahead data on "
1310 invalidate_remote_inode(direntry
->d_inode
);
1314 /* mutex_unlock(&direntry->d_inode->i_mutex); */
1321 int cifs_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
,
1324 int err
= cifs_revalidate(dentry
);
1326 generic_fillattr(dentry
->d_inode
, stat
);
1327 stat
->blksize
= CIFS_MAX_MSGSIZE
;
1332 static int cifs_truncate_page(struct address_space
*mapping
, loff_t from
)
1334 pgoff_t index
= from
>> PAGE_CACHE_SHIFT
;
1335 unsigned offset
= from
& (PAGE_CACHE_SIZE
- 1);
1340 page
= grab_cache_page(mapping
, index
);
1344 kaddr
= kmap_atomic(page
, KM_USER0
);
1345 memset(kaddr
+ offset
, 0, PAGE_CACHE_SIZE
- offset
);
1346 flush_dcache_page(page
);
1347 kunmap_atomic(kaddr
, KM_USER0
);
1349 page_cache_release(page
);
1353 static int cifs_vmtruncate(struct inode
* inode
, loff_t offset
)
1355 struct address_space
*mapping
= inode
->i_mapping
;
1356 unsigned long limit
;
1358 spin_lock(&inode
->i_lock
);
1359 if (inode
->i_size
< offset
)
1362 * truncation of in-use swapfiles is disallowed - it would cause
1363 * subsequent swapout to scribble on the now-freed blocks.
1365 if (IS_SWAPFILE(inode
)) {
1366 spin_unlock(&inode
->i_lock
);
1369 i_size_write(inode
, offset
);
1370 spin_unlock(&inode
->i_lock
);
1371 unmap_mapping_range(mapping
, offset
+ PAGE_SIZE
- 1, 0, 1);
1372 truncate_inode_pages(mapping
, offset
);
1376 limit
= current
->signal
->rlim
[RLIMIT_FSIZE
].rlim_cur
;
1377 if (limit
!= RLIM_INFINITY
&& offset
> limit
) {
1378 spin_unlock(&inode
->i_lock
);
1381 if (offset
> inode
->i_sb
->s_maxbytes
) {
1382 spin_unlock(&inode
->i_lock
);
1385 i_size_write(inode
, offset
);
1386 spin_unlock(&inode
->i_lock
);
1388 if (inode
->i_op
&& inode
->i_op
->truncate
)
1389 inode
->i_op
->truncate(inode
);
1392 send_sig(SIGXFSZ
, current
, 0);
1399 int cifs_setattr(struct dentry
*direntry
, struct iattr
*attrs
)
1402 struct cifs_sb_info
*cifs_sb
;
1403 struct cifsTconInfo
*pTcon
;
1404 char *full_path
= NULL
;
1406 struct cifsFileInfo
*open_file
= NULL
;
1407 FILE_BASIC_INFO time_buf
;
1408 int set_time
= FALSE
;
1409 int set_dosattr
= FALSE
;
1410 __u64 mode
= 0xFFFFFFFFFFFFFFFFULL
;
1411 __u64 uid
= 0xFFFFFFFFFFFFFFFFULL
;
1412 __u64 gid
= 0xFFFFFFFFFFFFFFFFULL
;
1413 struct cifsInodeInfo
*cifsInode
;
1417 cFYI(1, ("setattr on file %s attrs->iavalid 0x%x",
1418 direntry
->d_name
.name
, attrs
->ia_valid
));
1420 cifs_sb
= CIFS_SB(direntry
->d_inode
->i_sb
);
1421 pTcon
= cifs_sb
->tcon
;
1423 if ((cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_PERM
) == 0) {
1424 /* check if we have permission to change attrs */
1425 rc
= inode_change_ok(direntry
->d_inode
, attrs
);
1433 full_path
= build_path_from_dentry(direntry
);
1434 if (full_path
== NULL
) {
1438 cifsInode
= CIFS_I(direntry
->d_inode
);
1440 /* BB check if we need to refresh inode from server now ? BB */
1442 /* need to flush data before changing file size on server */
1443 filemap_write_and_wait(direntry
->d_inode
->i_mapping
);
1445 if (attrs
->ia_valid
& ATTR_SIZE
) {
1446 /* To avoid spurious oplock breaks from server, in the case of
1447 inodes that we already have open, avoid doing path based
1448 setting of file size if we can do it by handle.
1449 This keeps our caching token (oplock) and avoids timeouts
1450 when the local oplock break takes longer to flush
1451 writebehind data than the SMB timeout for the SetPathInfo
1452 request would allow */
1454 open_file
= find_writable_file(cifsInode
);
1456 __u16 nfid
= open_file
->netfid
;
1457 __u32 npid
= open_file
->pid
;
1458 rc
= CIFSSMBSetFileSize(xid
, pTcon
, attrs
->ia_size
,
1460 atomic_dec(&open_file
->wrtPending
);
1461 cFYI(1,("SetFSize for attrs rc = %d", rc
));
1462 if((rc
== -EINVAL
) || (rc
== -EOPNOTSUPP
)) {
1464 rc
= CIFSSMBWrite(xid
, pTcon
,
1465 nfid
, 0, attrs
->ia_size
,
1466 &bytes_written
, NULL
, NULL
,
1467 1 /* 45 seconds */);
1468 cFYI(1,("Wrt seteof rc %d", rc
));
1474 /* Set file size by pathname rather than by handle
1475 either because no valid, writeable file handle for
1476 it was found or because there was an error setting
1478 rc
= CIFSSMBSetEOF(xid
, pTcon
, full_path
,
1479 attrs
->ia_size
, FALSE
,
1481 cifs_sb
->mnt_cifs_flags
&
1482 CIFS_MOUNT_MAP_SPECIAL_CHR
);
1483 cFYI(1, ("SetEOF by path (setattrs) rc = %d", rc
));
1484 if((rc
== -EINVAL
) || (rc
== -EOPNOTSUPP
)) {
1488 rc
= SMBLegacyOpen(xid
, pTcon
, full_path
,
1490 SYNCHRONIZE
| FILE_WRITE_ATTRIBUTES
,
1491 CREATE_NOT_DIR
, &netfid
, &oplock
,
1492 NULL
, cifs_sb
->local_nls
,
1493 cifs_sb
->mnt_cifs_flags
&
1494 CIFS_MOUNT_MAP_SPECIAL_CHR
);
1497 rc
= CIFSSMBWrite(xid
, pTcon
,
1500 &bytes_written
, NULL
,
1501 NULL
, 1 /* 45 sec */);
1502 cFYI(1,("wrt seteof rc %d",rc
));
1503 CIFSSMBClose(xid
, pTcon
, netfid
);
1509 /* Server is ok setting allocation size implicitly - no need
1511 CIFSSMBSetEOF(xid, pTcon, full_path, attrs->ia_size, TRUE,
1512 cifs_sb->local_nls);
1516 rc
= cifs_vmtruncate(direntry
->d_inode
, attrs
->ia_size
);
1517 cifs_truncate_page(direntry
->d_inode
->i_mapping
,
1518 direntry
->d_inode
->i_size
);
1520 goto cifs_setattr_exit
;
1522 if (attrs
->ia_valid
& ATTR_UID
) {
1523 cFYI(1, ("UID changed to %d", attrs
->ia_uid
));
1524 uid
= attrs
->ia_uid
;
1526 if (attrs
->ia_valid
& ATTR_GID
) {
1527 cFYI(1, ("GID changed to %d", attrs
->ia_gid
));
1528 gid
= attrs
->ia_gid
;
1531 time_buf
.Attributes
= 0;
1532 if (attrs
->ia_valid
& ATTR_MODE
) {
1533 cFYI(1, ("Mode changed to 0x%x", attrs
->ia_mode
));
1534 mode
= attrs
->ia_mode
;
1537 if ((cifs_sb
->tcon
->ses
->capabilities
& CAP_UNIX
)
1538 && (attrs
->ia_valid
& (ATTR_MODE
| ATTR_GID
| ATTR_UID
)))
1539 rc
= CIFSSMBUnixSetPerms(xid
, pTcon
, full_path
, mode
, uid
, gid
,
1540 0 /* dev_t */, cifs_sb
->local_nls
,
1541 cifs_sb
->mnt_cifs_flags
&
1542 CIFS_MOUNT_MAP_SPECIAL_CHR
);
1543 else if (attrs
->ia_valid
& ATTR_MODE
) {
1545 if ((mode
& S_IWUGO
) == 0) /* not writeable */ {
1546 if ((cifsInode
->cifsAttrs
& ATTR_READONLY
) == 0) {
1548 time_buf
.Attributes
=
1549 cpu_to_le32(cifsInode
->cifsAttrs
|
1552 } else if (cifsInode
->cifsAttrs
& ATTR_READONLY
) {
1553 /* If file is readonly on server, we would
1554 not be able to write to it - so if any write
1555 bit is enabled for user or group or other we
1556 need to at least try to remove r/o dos attr */
1558 time_buf
.Attributes
= cpu_to_le32(cifsInode
->cifsAttrs
&
1560 /* Windows ignores set to zero */
1561 if(time_buf
.Attributes
== 0)
1562 time_buf
.Attributes
|= cpu_to_le32(ATTR_NORMAL
);
1564 /* BB to be implemented -
1565 via Windows security descriptors or streams */
1566 /* CIFSSMBWinSetPerms(xid, pTcon, full_path, mode, uid, gid,
1567 cifs_sb->local_nls); */
1570 if (attrs
->ia_valid
& ATTR_ATIME
) {
1572 time_buf
.LastAccessTime
=
1573 cpu_to_le64(cifs_UnixTimeToNT(attrs
->ia_atime
));
1575 time_buf
.LastAccessTime
= 0;
1577 if (attrs
->ia_valid
& ATTR_MTIME
) {
1579 time_buf
.LastWriteTime
=
1580 cpu_to_le64(cifs_UnixTimeToNT(attrs
->ia_mtime
));
1582 time_buf
.LastWriteTime
= 0;
1583 /* Do not set ctime explicitly unless other time
1584 stamps are changed explicitly (i.e. by utime()
1585 since we would then have a mix of client and
1588 if (set_time
&& (attrs
->ia_valid
& ATTR_CTIME
)) {
1590 /* Although Samba throws this field away
1591 it may be useful to Windows - but we do
1592 not want to set ctime unless some other
1593 timestamp is changing */
1594 cFYI(1, ("CIFS - CTIME changed"));
1595 time_buf
.ChangeTime
=
1596 cpu_to_le64(cifs_UnixTimeToNT(attrs
->ia_ctime
));
1598 time_buf
.ChangeTime
= 0;
1600 if (set_time
|| set_dosattr
) {
1601 time_buf
.CreationTime
= 0; /* do not change */
1602 /* In the future we should experiment - try setting timestamps
1603 via Handle (SetFileInfo) instead of by path */
1604 if (!(pTcon
->ses
->flags
& CIFS_SES_NT4
))
1605 rc
= CIFSSMBSetTimes(xid
, pTcon
, full_path
, &time_buf
,
1607 cifs_sb
->mnt_cifs_flags
&
1608 CIFS_MOUNT_MAP_SPECIAL_CHR
);
1612 if (rc
== -EOPNOTSUPP
) {
1616 cFYI(1, ("calling SetFileInfo since SetPathInfo for "
1617 "times not supported by this server"));
1618 /* BB we could scan to see if we already have it open
1619 and pass in pid of opener to function */
1620 rc
= CIFSSMBOpen(xid
, pTcon
, full_path
, FILE_OPEN
,
1621 SYNCHRONIZE
| FILE_WRITE_ATTRIBUTES
,
1622 CREATE_NOT_DIR
, &netfid
, &oplock
,
1623 NULL
, cifs_sb
->local_nls
,
1624 cifs_sb
->mnt_cifs_flags
&
1625 CIFS_MOUNT_MAP_SPECIAL_CHR
);
1627 rc
= CIFSSMBSetFileTimes(xid
, pTcon
, &time_buf
,
1629 CIFSSMBClose(xid
, pTcon
, netfid
);
1631 /* BB For even older servers we could convert time_buf
1632 into old DOS style which uses two second
1635 /* rc = CIFSSMBSetTimesLegacy(xid, pTcon, full_path,
1636 &time_buf, cifs_sb->local_nls); */
1639 /* Even if error on time set, no sense failing the call if
1640 the server would set the time to a reasonable value anyway,
1641 and this check ensures that we are not being called from
1642 sys_utimes in which case we ought to fail the call back to
1643 the user when the server rejects the call */
1644 if((rc
) && (attrs
->ia_valid
&
1645 (ATTR_MODE
| ATTR_GID
| ATTR_UID
| ATTR_SIZE
)))
1649 /* do not need local check to inode_check_ok since the server does
1652 rc
= inode_setattr(direntry
->d_inode
, attrs
);
1660 void cifs_delete_inode(struct inode
*inode
)
1662 cFYI(1, ("In cifs_delete_inode, inode = 0x%p", inode
));
1663 /* may have to add back in if and when safe distributed caching of
1664 directories added e.g. via FindNotify */