4 * Copyright (C) International Business Machines Corp., 2002,2010
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/slab.h>
24 #include <linux/pagemap.h>
25 #include <linux/freezer.h>
26 #include <linux/sched/signal.h>
27 #include <linux/wait_bit.h>
29 #include <asm/div64.h>
33 #include "cifsproto.h"
34 #include "cifs_debug.h"
35 #include "cifs_fs_sb.h"
36 #include "cifs_unicode.h"
40 static void cifs_set_ops(struct inode
*inode
)
42 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
44 switch (inode
->i_mode
& S_IFMT
) {
46 inode
->i_op
= &cifs_file_inode_ops
;
47 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_DIRECT_IO
) {
48 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_BRL
)
49 inode
->i_fop
= &cifs_file_direct_nobrl_ops
;
51 inode
->i_fop
= &cifs_file_direct_ops
;
52 } else if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_STRICT_IO
) {
53 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_BRL
)
54 inode
->i_fop
= &cifs_file_strict_nobrl_ops
;
56 inode
->i_fop
= &cifs_file_strict_ops
;
57 } else if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_BRL
)
58 inode
->i_fop
= &cifs_file_nobrl_ops
;
59 else { /* not direct, send byte range locks */
60 inode
->i_fop
= &cifs_file_ops
;
63 /* check if server can support readpages */
64 if (cifs_sb_master_tcon(cifs_sb
)->ses
->server
->maxBuf
<
65 PAGE_SIZE
+ MAX_CIFS_HDR_SIZE
)
66 inode
->i_data
.a_ops
= &cifs_addr_ops_smallbuf
;
68 inode
->i_data
.a_ops
= &cifs_addr_ops
;
71 #ifdef CONFIG_CIFS_DFS_UPCALL
72 if (IS_AUTOMOUNT(inode
)) {
73 inode
->i_op
= &cifs_dfs_referral_inode_operations
;
75 #else /* NO DFS support, treat as a directory */
78 inode
->i_op
= &cifs_dir_inode_ops
;
79 inode
->i_fop
= &cifs_dir_ops
;
83 inode
->i_op
= &cifs_symlink_inode_ops
;
86 init_special_inode(inode
, inode
->i_mode
, inode
->i_rdev
);
91 /* check inode attributes against fattr. If they don't match, tag the
92 * inode for cache invalidation
95 cifs_revalidate_cache(struct inode
*inode
, struct cifs_fattr
*fattr
)
97 struct cifsInodeInfo
*cifs_i
= CIFS_I(inode
);
99 cifs_dbg(FYI
, "%s: revalidating inode %llu\n",
100 __func__
, cifs_i
->uniqueid
);
102 if (inode
->i_state
& I_NEW
) {
103 cifs_dbg(FYI
, "%s: inode %llu is new\n",
104 __func__
, cifs_i
->uniqueid
);
108 /* don't bother with revalidation if we have an oplock */
109 if (CIFS_CACHE_READ(cifs_i
)) {
110 cifs_dbg(FYI
, "%s: inode %llu is oplocked\n",
111 __func__
, cifs_i
->uniqueid
);
115 /* revalidate if mtime or size have changed */
116 if (timespec_equal(&inode
->i_mtime
, &fattr
->cf_mtime
) &&
117 cifs_i
->server_eof
== fattr
->cf_eof
) {
118 cifs_dbg(FYI
, "%s: inode %llu is unchanged\n",
119 __func__
, cifs_i
->uniqueid
);
123 cifs_dbg(FYI
, "%s: invalidating inode %llu mapping\n",
124 __func__
, cifs_i
->uniqueid
);
125 set_bit(CIFS_INO_INVALID_MAPPING
, &cifs_i
->flags
);
129 * copy nlink to the inode, unless it wasn't provided. Provide
130 * sane values if we don't have an existing one and none was provided
133 cifs_nlink_fattr_to_inode(struct inode
*inode
, struct cifs_fattr
*fattr
)
136 * if we're in a situation where we can't trust what we
137 * got from the server (readdir, some non-unix cases)
138 * fake reasonable values
140 if (fattr
->cf_flags
& CIFS_FATTR_UNKNOWN_NLINK
) {
141 /* only provide fake values on a new inode */
142 if (inode
->i_state
& I_NEW
) {
143 if (fattr
->cf_cifsattrs
& ATTR_DIRECTORY
)
151 /* we trust the server, so update it */
152 set_nlink(inode
, fattr
->cf_nlink
);
155 /* populate an inode with info from a cifs_fattr struct */
157 cifs_fattr_to_inode(struct inode
*inode
, struct cifs_fattr
*fattr
)
159 struct cifsInodeInfo
*cifs_i
= CIFS_I(inode
);
160 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
162 cifs_revalidate_cache(inode
, fattr
);
164 spin_lock(&inode
->i_lock
);
165 inode
->i_atime
= fattr
->cf_atime
;
166 inode
->i_mtime
= fattr
->cf_mtime
;
167 inode
->i_ctime
= fattr
->cf_ctime
;
168 inode
->i_rdev
= fattr
->cf_rdev
;
169 cifs_nlink_fattr_to_inode(inode
, fattr
);
170 inode
->i_uid
= fattr
->cf_uid
;
171 inode
->i_gid
= fattr
->cf_gid
;
173 /* if dynperm is set, don't clobber existing mode */
174 if (inode
->i_state
& I_NEW
||
175 !(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_DYNPERM
))
176 inode
->i_mode
= fattr
->cf_mode
;
178 cifs_i
->cifsAttrs
= fattr
->cf_cifsattrs
;
180 if (fattr
->cf_flags
& CIFS_FATTR_NEED_REVAL
)
183 cifs_i
->time
= jiffies
;
185 if (fattr
->cf_flags
& CIFS_FATTR_DELETE_PENDING
)
186 set_bit(CIFS_INO_DELETE_PENDING
, &cifs_i
->flags
);
188 clear_bit(CIFS_INO_DELETE_PENDING
, &cifs_i
->flags
);
190 cifs_i
->server_eof
= fattr
->cf_eof
;
192 * Can't safely change the file size here if the client is writing to
193 * it due to potential races.
195 if (is_size_safe_to_change(cifs_i
, fattr
->cf_eof
)) {
196 i_size_write(inode
, fattr
->cf_eof
);
199 * i_blocks is not related to (i_size / i_blksize),
200 * but instead 512 byte (2**9) size is required for
201 * calculating num blocks.
203 inode
->i_blocks
= (512 - 1 + fattr
->cf_bytes
) >> 9;
205 spin_unlock(&inode
->i_lock
);
207 if (fattr
->cf_flags
& CIFS_FATTR_DFS_REFERRAL
)
208 inode
->i_flags
|= S_AUTOMOUNT
;
209 if (inode
->i_state
& I_NEW
)
214 cifs_fill_uniqueid(struct super_block
*sb
, struct cifs_fattr
*fattr
)
216 struct cifs_sb_info
*cifs_sb
= CIFS_SB(sb
);
218 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SERVER_INUM
)
221 fattr
->cf_uniqueid
= iunique(sb
, ROOT_I
);
224 /* Fill a cifs_fattr struct with info from FILE_UNIX_BASIC_INFO. */
226 cifs_unix_basic_to_fattr(struct cifs_fattr
*fattr
, FILE_UNIX_BASIC_INFO
*info
,
227 struct cifs_sb_info
*cifs_sb
)
229 memset(fattr
, 0, sizeof(*fattr
));
230 fattr
->cf_uniqueid
= le64_to_cpu(info
->UniqueId
);
231 fattr
->cf_bytes
= le64_to_cpu(info
->NumOfBytes
);
232 fattr
->cf_eof
= le64_to_cpu(info
->EndOfFile
);
234 fattr
->cf_atime
= cifs_NTtimeToUnix(info
->LastAccessTime
);
235 fattr
->cf_mtime
= cifs_NTtimeToUnix(info
->LastModificationTime
);
236 fattr
->cf_ctime
= cifs_NTtimeToUnix(info
->LastStatusChange
);
237 fattr
->cf_mode
= le64_to_cpu(info
->Permissions
);
240 * Since we set the inode type below we need to mask off
241 * to avoid strange results if bits set above.
243 fattr
->cf_mode
&= ~S_IFMT
;
244 switch (le32_to_cpu(info
->Type
)) {
246 fattr
->cf_mode
|= S_IFREG
;
247 fattr
->cf_dtype
= DT_REG
;
250 fattr
->cf_mode
|= S_IFLNK
;
251 fattr
->cf_dtype
= DT_LNK
;
254 fattr
->cf_mode
|= S_IFDIR
;
255 fattr
->cf_dtype
= DT_DIR
;
258 fattr
->cf_mode
|= S_IFCHR
;
259 fattr
->cf_dtype
= DT_CHR
;
260 fattr
->cf_rdev
= MKDEV(le64_to_cpu(info
->DevMajor
),
261 le64_to_cpu(info
->DevMinor
) & MINORMASK
);
264 fattr
->cf_mode
|= S_IFBLK
;
265 fattr
->cf_dtype
= DT_BLK
;
266 fattr
->cf_rdev
= MKDEV(le64_to_cpu(info
->DevMajor
),
267 le64_to_cpu(info
->DevMinor
) & MINORMASK
);
270 fattr
->cf_mode
|= S_IFIFO
;
271 fattr
->cf_dtype
= DT_FIFO
;
274 fattr
->cf_mode
|= S_IFSOCK
;
275 fattr
->cf_dtype
= DT_SOCK
;
278 /* safest to call it a file if we do not know */
279 fattr
->cf_mode
|= S_IFREG
;
280 fattr
->cf_dtype
= DT_REG
;
281 cifs_dbg(FYI
, "unknown type %d\n", le32_to_cpu(info
->Type
));
285 fattr
->cf_uid
= cifs_sb
->mnt_uid
;
286 if (!(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_OVERR_UID
)) {
287 u64 id
= le64_to_cpu(info
->Uid
);
288 if (id
< ((uid_t
)-1)) {
289 kuid_t uid
= make_kuid(&init_user_ns
, id
);
295 fattr
->cf_gid
= cifs_sb
->mnt_gid
;
296 if (!(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_OVERR_GID
)) {
297 u64 id
= le64_to_cpu(info
->Gid
);
298 if (id
< ((gid_t
)-1)) {
299 kgid_t gid
= make_kgid(&init_user_ns
, id
);
305 fattr
->cf_nlink
= le64_to_cpu(info
->Nlinks
);
309 * Fill a cifs_fattr struct with fake inode info.
311 * Needed to setup cifs_fattr data for the directory which is the
312 * junction to the new submount (ie to setup the fake directory
313 * which represents a DFS referral).
316 cifs_create_dfs_fattr(struct cifs_fattr
*fattr
, struct super_block
*sb
)
318 struct cifs_sb_info
*cifs_sb
= CIFS_SB(sb
);
320 cifs_dbg(FYI
, "creating fake fattr for DFS referral\n");
322 memset(fattr
, 0, sizeof(*fattr
));
323 fattr
->cf_mode
= S_IFDIR
| S_IXUGO
| S_IRWXU
;
324 fattr
->cf_uid
= cifs_sb
->mnt_uid
;
325 fattr
->cf_gid
= cifs_sb
->mnt_gid
;
326 ktime_get_real_ts(&fattr
->cf_mtime
);
327 fattr
->cf_mtime
= timespec_trunc(fattr
->cf_mtime
, sb
->s_time_gran
);
328 fattr
->cf_atime
= fattr
->cf_ctime
= fattr
->cf_mtime
;
330 fattr
->cf_flags
|= CIFS_FATTR_DFS_REFERRAL
;
334 cifs_get_file_info_unix(struct file
*filp
)
338 FILE_UNIX_BASIC_INFO find_data
;
339 struct cifs_fattr fattr
;
340 struct inode
*inode
= file_inode(filp
);
341 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
342 struct cifsFileInfo
*cfile
= filp
->private_data
;
343 struct cifs_tcon
*tcon
= tlink_tcon(cfile
->tlink
);
346 rc
= CIFSSMBUnixQFileInfo(xid
, tcon
, cfile
->fid
.netfid
, &find_data
);
348 cifs_unix_basic_to_fattr(&fattr
, &find_data
, cifs_sb
);
349 } else if (rc
== -EREMOTE
) {
350 cifs_create_dfs_fattr(&fattr
, inode
->i_sb
);
354 cifs_fattr_to_inode(inode
, &fattr
);
359 int cifs_get_inode_info_unix(struct inode
**pinode
,
360 const unsigned char *full_path
,
361 struct super_block
*sb
, unsigned int xid
)
364 FILE_UNIX_BASIC_INFO find_data
;
365 struct cifs_fattr fattr
;
366 struct cifs_tcon
*tcon
;
367 struct tcon_link
*tlink
;
368 struct cifs_sb_info
*cifs_sb
= CIFS_SB(sb
);
370 cifs_dbg(FYI
, "Getting info on %s\n", full_path
);
372 tlink
= cifs_sb_tlink(cifs_sb
);
374 return PTR_ERR(tlink
);
375 tcon
= tlink_tcon(tlink
);
377 /* could have done a find first instead but this returns more info */
378 rc
= CIFSSMBUnixQPathInfo(xid
, tcon
, full_path
, &find_data
,
379 cifs_sb
->local_nls
, cifs_remap(cifs_sb
));
380 cifs_put_tlink(tlink
);
383 cifs_unix_basic_to_fattr(&fattr
, &find_data
, cifs_sb
);
384 } else if (rc
== -EREMOTE
) {
385 cifs_create_dfs_fattr(&fattr
, sb
);
391 /* check for Minshall+French symlinks */
392 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_MF_SYMLINKS
) {
393 int tmprc
= check_mf_symlink(xid
, tcon
, cifs_sb
, &fattr
,
396 cifs_dbg(FYI
, "check_mf_symlink: %d\n", tmprc
);
399 if (*pinode
== NULL
) {
401 cifs_fill_uniqueid(sb
, &fattr
);
402 *pinode
= cifs_iget(sb
, &fattr
);
406 /* we already have inode, update it */
408 /* if uniqueid is different, return error */
409 if (unlikely(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SERVER_INUM
&&
410 CIFS_I(*pinode
)->uniqueid
!= fattr
.cf_uniqueid
)) {
415 /* if filetype is different, return error */
416 if (unlikely(((*pinode
)->i_mode
& S_IFMT
) !=
417 (fattr
.cf_mode
& S_IFMT
))) {
422 cifs_fattr_to_inode(*pinode
, &fattr
);
430 cifs_sfu_type(struct cifs_fattr
*fattr
, const char *path
,
431 struct cifs_sb_info
*cifs_sb
, unsigned int xid
)
435 struct tcon_link
*tlink
;
436 struct cifs_tcon
*tcon
;
438 struct cifs_open_parms oparms
;
439 struct cifs_io_parms io_parms
;
441 unsigned int bytes_read
;
443 int buf_type
= CIFS_NO_BUFFER
;
447 fattr
->cf_mode
&= ~S_IFMT
;
449 if (fattr
->cf_eof
== 0) {
450 fattr
->cf_mode
|= S_IFIFO
;
451 fattr
->cf_dtype
= DT_FIFO
;
453 } else if (fattr
->cf_eof
< 8) {
454 fattr
->cf_mode
|= S_IFREG
;
455 fattr
->cf_dtype
= DT_REG
;
456 return -EINVAL
; /* EOPNOTSUPP? */
459 tlink
= cifs_sb_tlink(cifs_sb
);
461 return PTR_ERR(tlink
);
462 tcon
= tlink_tcon(tlink
);
465 oparms
.cifs_sb
= cifs_sb
;
466 oparms
.desired_access
= GENERIC_READ
;
467 oparms
.create_options
= CREATE_NOT_DIR
;
468 oparms
.disposition
= FILE_OPEN
;
471 oparms
.reconnect
= false;
473 if (tcon
->ses
->server
->oplocks
)
477 rc
= tcon
->ses
->server
->ops
->open(xid
, &oparms
, &oplock
, NULL
);
479 cifs_dbg(FYI
, "check sfu type of %s, open rc = %d\n", path
, rc
);
480 cifs_put_tlink(tlink
);
485 io_parms
.netfid
= fid
.netfid
;
486 io_parms
.pid
= current
->tgid
;
487 io_parms
.tcon
= tcon
;
489 io_parms
.length
= 24;
491 rc
= tcon
->ses
->server
->ops
->sync_read(xid
, &fid
, &io_parms
,
492 &bytes_read
, &pbuf
, &buf_type
);
493 if ((rc
== 0) && (bytes_read
>= 8)) {
494 if (memcmp("IntxBLK", pbuf
, 8) == 0) {
495 cifs_dbg(FYI
, "Block device\n");
496 fattr
->cf_mode
|= S_IFBLK
;
497 fattr
->cf_dtype
= DT_BLK
;
498 if (bytes_read
== 24) {
499 /* we have enough to decode dev num */
500 __u64 mjr
; /* major */
501 __u64 mnr
; /* minor */
502 mjr
= le64_to_cpu(*(__le64
*)(pbuf
+8));
503 mnr
= le64_to_cpu(*(__le64
*)(pbuf
+16));
504 fattr
->cf_rdev
= MKDEV(mjr
, mnr
);
506 } else if (memcmp("IntxCHR", pbuf
, 8) == 0) {
507 cifs_dbg(FYI
, "Char device\n");
508 fattr
->cf_mode
|= S_IFCHR
;
509 fattr
->cf_dtype
= DT_CHR
;
510 if (bytes_read
== 24) {
511 /* we have enough to decode dev num */
512 __u64 mjr
; /* major */
513 __u64 mnr
; /* minor */
514 mjr
= le64_to_cpu(*(__le64
*)(pbuf
+8));
515 mnr
= le64_to_cpu(*(__le64
*)(pbuf
+16));
516 fattr
->cf_rdev
= MKDEV(mjr
, mnr
);
518 } else if (memcmp("IntxLNK", pbuf
, 7) == 0) {
519 cifs_dbg(FYI
, "Symlink\n");
520 fattr
->cf_mode
|= S_IFLNK
;
521 fattr
->cf_dtype
= DT_LNK
;
523 fattr
->cf_mode
|= S_IFREG
; /* file? */
524 fattr
->cf_dtype
= DT_REG
;
528 fattr
->cf_mode
|= S_IFREG
; /* then it is a file */
529 fattr
->cf_dtype
= DT_REG
;
530 rc
= -EOPNOTSUPP
; /* or some unknown SFU type */
533 tcon
->ses
->server
->ops
->close(xid
, tcon
, &fid
);
534 cifs_put_tlink(tlink
);
538 #define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */
541 * Fetch mode bits as provided by SFU.
543 * FIXME: Doesn't this clobber the type bit we got from cifs_sfu_type ?
545 static int cifs_sfu_mode(struct cifs_fattr
*fattr
, const unsigned char *path
,
546 struct cifs_sb_info
*cifs_sb
, unsigned int xid
)
548 #ifdef CONFIG_CIFS_XATTR
552 struct tcon_link
*tlink
;
553 struct cifs_tcon
*tcon
;
555 tlink
= cifs_sb_tlink(cifs_sb
);
557 return PTR_ERR(tlink
);
558 tcon
= tlink_tcon(tlink
);
560 if (tcon
->ses
->server
->ops
->query_all_EAs
== NULL
) {
561 cifs_put_tlink(tlink
);
565 rc
= tcon
->ses
->server
->ops
->query_all_EAs(xid
, tcon
, path
,
566 "SETFILEBITS", ea_value
, 4 /* size of buf */,
568 cifs_put_tlink(tlink
);
572 mode
= le32_to_cpu(*((__le32
*)ea_value
));
573 fattr
->cf_mode
&= ~SFBITS_MASK
;
574 cifs_dbg(FYI
, "special bits 0%o org mode 0%o\n",
575 mode
, fattr
->cf_mode
);
576 fattr
->cf_mode
= (mode
& SFBITS_MASK
) | fattr
->cf_mode
;
577 cifs_dbg(FYI
, "special mode bits 0%o\n", mode
);
586 /* Fill a cifs_fattr struct with info from FILE_ALL_INFO */
588 cifs_all_info_to_fattr(struct cifs_fattr
*fattr
, FILE_ALL_INFO
*info
,
589 struct super_block
*sb
, bool adjust_tz
,
592 struct cifs_sb_info
*cifs_sb
= CIFS_SB(sb
);
593 struct cifs_tcon
*tcon
= cifs_sb_master_tcon(cifs_sb
);
595 memset(fattr
, 0, sizeof(*fattr
));
596 fattr
->cf_cifsattrs
= le32_to_cpu(info
->Attributes
);
597 if (info
->DeletePending
)
598 fattr
->cf_flags
|= CIFS_FATTR_DELETE_PENDING
;
600 if (info
->LastAccessTime
)
601 fattr
->cf_atime
= cifs_NTtimeToUnix(info
->LastAccessTime
);
603 ktime_get_real_ts(&fattr
->cf_atime
);
604 fattr
->cf_atime
= timespec_trunc(fattr
->cf_atime
, sb
->s_time_gran
);
607 fattr
->cf_ctime
= cifs_NTtimeToUnix(info
->ChangeTime
);
608 fattr
->cf_mtime
= cifs_NTtimeToUnix(info
->LastWriteTime
);
611 fattr
->cf_ctime
.tv_sec
+= tcon
->ses
->server
->timeAdj
;
612 fattr
->cf_mtime
.tv_sec
+= tcon
->ses
->server
->timeAdj
;
615 fattr
->cf_eof
= le64_to_cpu(info
->EndOfFile
);
616 fattr
->cf_bytes
= le64_to_cpu(info
->AllocationSize
);
617 fattr
->cf_createtime
= le64_to_cpu(info
->CreationTime
);
619 fattr
->cf_nlink
= le32_to_cpu(info
->NumberOfLinks
);
622 fattr
->cf_mode
= S_IFLNK
;
623 fattr
->cf_dtype
= DT_LNK
;
624 } else if (fattr
->cf_cifsattrs
& ATTR_DIRECTORY
) {
625 fattr
->cf_mode
= S_IFDIR
| cifs_sb
->mnt_dir_mode
;
626 fattr
->cf_dtype
= DT_DIR
;
628 * Server can return wrong NumberOfLinks value for directories
629 * when Unix extensions are disabled - fake it.
632 fattr
->cf_flags
|= CIFS_FATTR_UNKNOWN_NLINK
;
634 fattr
->cf_mode
= S_IFREG
| cifs_sb
->mnt_file_mode
;
635 fattr
->cf_dtype
= DT_REG
;
637 /* clear write bits if ATTR_READONLY is set */
638 if (fattr
->cf_cifsattrs
& ATTR_READONLY
)
639 fattr
->cf_mode
&= ~(S_IWUGO
);
642 * Don't accept zero nlink from non-unix servers unless
643 * delete is pending. Instead mark it as unknown.
645 if ((fattr
->cf_nlink
< 1) && !tcon
->unix_ext
&&
646 !info
->DeletePending
) {
647 cifs_dbg(1, "bogus file nlink value %u\n",
649 fattr
->cf_flags
|= CIFS_FATTR_UNKNOWN_NLINK
;
653 fattr
->cf_uid
= cifs_sb
->mnt_uid
;
654 fattr
->cf_gid
= cifs_sb
->mnt_gid
;
658 cifs_get_file_info(struct file
*filp
)
662 FILE_ALL_INFO find_data
;
663 struct cifs_fattr fattr
;
664 struct inode
*inode
= file_inode(filp
);
665 struct cifsFileInfo
*cfile
= filp
->private_data
;
666 struct cifs_tcon
*tcon
= tlink_tcon(cfile
->tlink
);
667 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
669 if (!server
->ops
->query_file_info
)
673 rc
= server
->ops
->query_file_info(xid
, tcon
, &cfile
->fid
, &find_data
);
676 cifs_all_info_to_fattr(&fattr
, &find_data
, inode
->i_sb
, false,
680 cifs_create_dfs_fattr(&fattr
, inode
->i_sb
);
686 * FIXME: legacy server -- fall back to path-based call?
687 * for now, just skip revalidating and mark inode for
691 CIFS_I(inode
)->time
= 0;
697 * don't bother with SFU junk here -- just mark inode as needing
700 fattr
.cf_uniqueid
= CIFS_I(inode
)->uniqueid
;
701 fattr
.cf_flags
|= CIFS_FATTR_NEED_REVAL
;
702 cifs_fattr_to_inode(inode
, &fattr
);
709 cifs_get_inode_info(struct inode
**inode
, const char *full_path
,
710 FILE_ALL_INFO
*data
, struct super_block
*sb
, int xid
,
711 const struct cifs_fid
*fid
)
713 bool validinum
= false;
715 int rc
= 0, tmprc
= ENOSYS
;
716 struct cifs_tcon
*tcon
;
717 struct TCP_Server_Info
*server
;
718 struct tcon_link
*tlink
;
719 struct cifs_sb_info
*cifs_sb
= CIFS_SB(sb
);
721 bool adjust_tz
= false;
722 struct cifs_fattr fattr
;
723 struct cifs_search_info
*srchinf
= NULL
;
724 bool symlink
= false;
726 tlink
= cifs_sb_tlink(cifs_sb
);
728 return PTR_ERR(tlink
);
729 tcon
= tlink_tcon(tlink
);
730 server
= tcon
->ses
->server
;
732 cifs_dbg(FYI
, "Getting info on %s\n", full_path
);
734 if ((data
== NULL
) && (*inode
!= NULL
)) {
735 if (CIFS_CACHE_READ(CIFS_I(*inode
))) {
736 cifs_dbg(FYI
, "No need to revalidate cached inode sizes\n");
741 /* if inode info is not passed, get it from server */
743 if (!server
->ops
->query_path_info
) {
747 buf
= kmalloc(sizeof(FILE_ALL_INFO
), GFP_KERNEL
);
752 data
= (FILE_ALL_INFO
*)buf
;
753 rc
= server
->ops
->query_path_info(xid
, tcon
, cifs_sb
, full_path
,
754 data
, &adjust_tz
, &symlink
);
758 cifs_all_info_to_fattr(&fattr
, data
, sb
, adjust_tz
,
760 } else if (rc
== -EREMOTE
) {
761 cifs_create_dfs_fattr(&fattr
, sb
);
763 } else if (rc
== -EACCES
&& backup_cred(cifs_sb
)) {
764 srchinf
= kzalloc(sizeof(struct cifs_search_info
),
766 if (srchinf
== NULL
) {
771 srchinf
->endOfSearch
= false;
772 srchinf
->info_level
= SMB_FIND_FILE_ID_FULL_DIR_INFO
;
774 srchflgs
= CIFS_SEARCH_CLOSE_ALWAYS
|
775 CIFS_SEARCH_CLOSE_AT_END
|
776 CIFS_SEARCH_BACKUP_SEARCH
;
778 rc
= CIFSFindFirst(xid
, tcon
, full_path
,
779 cifs_sb
, NULL
, srchflgs
, srchinf
, false);
782 (FILE_ALL_INFO
*)srchinf
->srch_entries_start
;
784 cifs_dir_info_to_fattr(&fattr
,
785 (FILE_DIRECTORY_INFO
*)data
, cifs_sb
);
786 fattr
.cf_uniqueid
= le64_to_cpu(
787 ((SEARCH_ID_FULL_DIR_INFO
*)data
)->UniqueId
);
790 cifs_buf_release(srchinf
->ntwrk_buf_start
);
799 * If an inode wasn't passed in, then get the inode number
801 * Is an i_ino of zero legal? Can we use that to check if the server
802 * supports returning inode numbers? Are there other sanity checks we
803 * can use to ensure that the server is really filling in that field?
805 if (*inode
== NULL
) {
806 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SERVER_INUM
) {
807 if (validinum
== false) {
808 if (server
->ops
->get_srv_inum
)
809 tmprc
= server
->ops
->get_srv_inum(xid
,
810 tcon
, cifs_sb
, full_path
,
811 &fattr
.cf_uniqueid
, data
);
813 cifs_dbg(FYI
, "GetSrvInodeNum rc %d\n",
815 fattr
.cf_uniqueid
= iunique(sb
, ROOT_I
);
816 cifs_autodisable_serverino(cifs_sb
);
820 fattr
.cf_uniqueid
= iunique(sb
, ROOT_I
);
822 if ((cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SERVER_INUM
) &&
823 validinum
== false && server
->ops
->get_srv_inum
) {
825 * Pass a NULL tcon to ensure we don't make a round
826 * trip to the server. This only works for SMB2+.
828 tmprc
= server
->ops
->get_srv_inum(xid
,
829 NULL
, cifs_sb
, full_path
,
830 &fattr
.cf_uniqueid
, data
);
832 fattr
.cf_uniqueid
= CIFS_I(*inode
)->uniqueid
;
834 fattr
.cf_uniqueid
= CIFS_I(*inode
)->uniqueid
;
837 /* query for SFU type info if supported and needed */
838 if (fattr
.cf_cifsattrs
& ATTR_SYSTEM
&&
839 cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_UNX_EMUL
) {
840 tmprc
= cifs_sfu_type(&fattr
, full_path
, cifs_sb
, xid
);
842 cifs_dbg(FYI
, "cifs_sfu_type failed: %d\n", tmprc
);
845 #ifdef CONFIG_CIFS_ACL
846 /* fill in 0777 bits from ACL */
847 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_CIFS_ACL
) {
848 rc
= cifs_acl_to_fattr(cifs_sb
, &fattr
, *inode
, full_path
, fid
);
850 cifs_dbg(FYI
, "%s: Getting ACL failed with error: %d\n",
855 #endif /* CONFIG_CIFS_ACL */
857 /* fill in remaining high mode bits e.g. SUID, VTX */
858 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_UNX_EMUL
)
859 cifs_sfu_mode(&fattr
, full_path
, cifs_sb
, xid
);
861 /* check for Minshall+French symlinks */
862 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_MF_SYMLINKS
) {
863 tmprc
= check_mf_symlink(xid
, tcon
, cifs_sb
, &fattr
,
866 cifs_dbg(FYI
, "check_mf_symlink: %d\n", tmprc
);
870 *inode
= cifs_iget(sb
, &fattr
);
874 /* we already have inode, update it */
876 /* if uniqueid is different, return error */
877 if (unlikely(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SERVER_INUM
&&
878 CIFS_I(*inode
)->uniqueid
!= fattr
.cf_uniqueid
)) {
883 /* if filetype is different, return error */
884 if (unlikely(((*inode
)->i_mode
& S_IFMT
) !=
885 (fattr
.cf_mode
& S_IFMT
))) {
890 cifs_fattr_to_inode(*inode
, &fattr
);
895 cifs_put_tlink(tlink
);
899 static const struct inode_operations cifs_ipc_inode_ops
= {
900 .lookup
= cifs_lookup
,
904 cifs_find_inode(struct inode
*inode
, void *opaque
)
906 struct cifs_fattr
*fattr
= (struct cifs_fattr
*) opaque
;
908 /* don't match inode with different uniqueid */
909 if (CIFS_I(inode
)->uniqueid
!= fattr
->cf_uniqueid
)
912 /* use createtime like an i_generation field */
913 if (CIFS_I(inode
)->createtime
!= fattr
->cf_createtime
)
916 /* don't match inode of different type */
917 if ((inode
->i_mode
& S_IFMT
) != (fattr
->cf_mode
& S_IFMT
))
920 /* if it's not a directory or has no dentries, then flag it */
921 if (S_ISDIR(inode
->i_mode
) && !hlist_empty(&inode
->i_dentry
))
922 fattr
->cf_flags
|= CIFS_FATTR_INO_COLLISION
;
928 cifs_init_inode(struct inode
*inode
, void *opaque
)
930 struct cifs_fattr
*fattr
= (struct cifs_fattr
*) opaque
;
932 CIFS_I(inode
)->uniqueid
= fattr
->cf_uniqueid
;
933 CIFS_I(inode
)->createtime
= fattr
->cf_createtime
;
938 * walk dentry list for an inode and report whether it has aliases that
939 * are hashed. We use this to determine if a directory inode can actually
943 inode_has_hashed_dentries(struct inode
*inode
)
945 struct dentry
*dentry
;
947 spin_lock(&inode
->i_lock
);
948 hlist_for_each_entry(dentry
, &inode
->i_dentry
, d_u
.d_alias
) {
949 if (!d_unhashed(dentry
) || IS_ROOT(dentry
)) {
950 spin_unlock(&inode
->i_lock
);
954 spin_unlock(&inode
->i_lock
);
958 /* Given fattrs, get a corresponding inode */
960 cifs_iget(struct super_block
*sb
, struct cifs_fattr
*fattr
)
966 cifs_dbg(FYI
, "looking for uniqueid=%llu\n", fattr
->cf_uniqueid
);
968 /* hash down to 32-bits on 32-bit arch */
969 hash
= cifs_uniqueid_to_ino_t(fattr
->cf_uniqueid
);
971 inode
= iget5_locked(sb
, hash
, cifs_find_inode
, cifs_init_inode
, fattr
);
973 /* was there a potentially problematic inode collision? */
974 if (fattr
->cf_flags
& CIFS_FATTR_INO_COLLISION
) {
975 fattr
->cf_flags
&= ~CIFS_FATTR_INO_COLLISION
;
977 if (inode_has_hashed_dentries(inode
)) {
978 cifs_autodisable_serverino(CIFS_SB(sb
));
980 fattr
->cf_uniqueid
= iunique(sb
, ROOT_I
);
981 goto retry_iget5_locked
;
985 cifs_fattr_to_inode(inode
, fattr
);
986 if (sb
->s_flags
& MS_NOATIME
)
987 inode
->i_flags
|= S_NOATIME
| S_NOCMTIME
;
988 if (inode
->i_state
& I_NEW
) {
990 #ifdef CONFIG_CIFS_FSCACHE
991 /* initialize per-inode cache cookie pointer */
992 CIFS_I(inode
)->fscache
= NULL
;
994 unlock_new_inode(inode
);
1001 /* gets root inode */
1002 struct inode
*cifs_root_iget(struct super_block
*sb
)
1005 struct cifs_sb_info
*cifs_sb
= CIFS_SB(sb
);
1006 struct inode
*inode
= NULL
;
1008 struct cifs_tcon
*tcon
= cifs_sb_master_tcon(cifs_sb
);
1012 if ((cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_USE_PREFIX_PATH
)
1013 && cifs_sb
->prepath
) {
1014 len
= strlen(cifs_sb
->prepath
);
1015 path
= kzalloc(len
+ 2 /* leading sep + null */, GFP_KERNEL
);
1017 return ERR_PTR(-ENOMEM
);
1019 memcpy(path
+1, cifs_sb
->prepath
, len
);
1021 path
= kstrdup("", GFP_KERNEL
);
1023 return ERR_PTR(-ENOMEM
);
1027 if (tcon
->unix_ext
) {
1028 rc
= cifs_get_inode_info_unix(&inode
, path
, sb
, xid
);
1029 /* some servers mistakenly claim POSIX support */
1030 if (rc
!= -EOPNOTSUPP
)
1032 cifs_dbg(VFS
, "server does not support POSIX extensions");
1033 tcon
->unix_ext
= false;
1036 convert_delimiter(path
, CIFS_DIR_SEP(cifs_sb
));
1037 rc
= cifs_get_inode_info(&inode
, path
, NULL
, sb
, xid
, NULL
);
1041 inode
= ERR_PTR(rc
);
1045 #ifdef CONFIG_CIFS_FSCACHE
1046 /* populate tcon->resource_id */
1047 tcon
->resource_id
= CIFS_I(inode
)->uniqueid
;
1050 if (rc
&& tcon
->ipc
) {
1051 cifs_dbg(FYI
, "ipc connection - fake read inode\n");
1052 spin_lock(&inode
->i_lock
);
1053 inode
->i_mode
|= S_IFDIR
;
1054 set_nlink(inode
, 2);
1055 inode
->i_op
= &cifs_ipc_inode_ops
;
1056 inode
->i_fop
= &simple_dir_operations
;
1057 inode
->i_uid
= cifs_sb
->mnt_uid
;
1058 inode
->i_gid
= cifs_sb
->mnt_gid
;
1059 spin_unlock(&inode
->i_lock
);
1062 inode
= ERR_PTR(rc
);
1067 /* can not call macro free_xid here since in a void func
1068 * TODO: This is no longer true
1075 cifs_set_file_info(struct inode
*inode
, struct iattr
*attrs
, unsigned int xid
,
1076 char *full_path
, __u32 dosattr
)
1078 bool set_time
= false;
1079 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
1080 struct TCP_Server_Info
*server
;
1081 FILE_BASIC_INFO info_buf
;
1086 server
= cifs_sb_master_tcon(cifs_sb
)->ses
->server
;
1087 if (!server
->ops
->set_file_info
)
1090 if (attrs
->ia_valid
& ATTR_ATIME
) {
1092 info_buf
.LastAccessTime
=
1093 cpu_to_le64(cifs_UnixTimeToNT(attrs
->ia_atime
));
1095 info_buf
.LastAccessTime
= 0;
1097 if (attrs
->ia_valid
& ATTR_MTIME
) {
1099 info_buf
.LastWriteTime
=
1100 cpu_to_le64(cifs_UnixTimeToNT(attrs
->ia_mtime
));
1102 info_buf
.LastWriteTime
= 0;
1105 * Samba throws this field away, but windows may actually use it.
1106 * Do not set ctime unless other time stamps are changed explicitly
1107 * (i.e. by utimes()) since we would then have a mix of client and
1110 if (set_time
&& (attrs
->ia_valid
& ATTR_CTIME
)) {
1111 cifs_dbg(FYI
, "CIFS - CTIME changed\n");
1112 info_buf
.ChangeTime
=
1113 cpu_to_le64(cifs_UnixTimeToNT(attrs
->ia_ctime
));
1115 info_buf
.ChangeTime
= 0;
1117 info_buf
.CreationTime
= 0; /* don't change */
1118 info_buf
.Attributes
= cpu_to_le32(dosattr
);
1120 return server
->ops
->set_file_info(inode
, full_path
, &info_buf
, xid
);
1124 * Open the given file (if it isn't already), set the DELETE_ON_CLOSE bit
1125 * and rename it to a random name that hopefully won't conflict with
1129 cifs_rename_pending_delete(const char *full_path
, struct dentry
*dentry
,
1130 const unsigned int xid
)
1134 struct cifs_fid fid
;
1135 struct cifs_open_parms oparms
;
1136 struct inode
*inode
= d_inode(dentry
);
1137 struct cifsInodeInfo
*cifsInode
= CIFS_I(inode
);
1138 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
1139 struct tcon_link
*tlink
;
1140 struct cifs_tcon
*tcon
;
1141 __u32 dosattr
, origattr
;
1142 FILE_BASIC_INFO
*info_buf
= NULL
;
1144 tlink
= cifs_sb_tlink(cifs_sb
);
1146 return PTR_ERR(tlink
);
1147 tcon
= tlink_tcon(tlink
);
1150 * We cannot rename the file if the server doesn't support
1151 * CAP_INFOLEVEL_PASSTHRU
1153 if (!(tcon
->ses
->capabilities
& CAP_INFOLEVEL_PASSTHRU
)) {
1159 oparms
.cifs_sb
= cifs_sb
;
1160 oparms
.desired_access
= DELETE
| FILE_WRITE_ATTRIBUTES
;
1161 oparms
.create_options
= CREATE_NOT_DIR
;
1162 oparms
.disposition
= FILE_OPEN
;
1163 oparms
.path
= full_path
;
1165 oparms
.reconnect
= false;
1167 rc
= CIFS_open(xid
, &oparms
, &oplock
, NULL
);
1171 origattr
= cifsInode
->cifsAttrs
;
1173 origattr
|= ATTR_NORMAL
;
1175 dosattr
= origattr
& ~ATTR_READONLY
;
1177 dosattr
|= ATTR_NORMAL
;
1178 dosattr
|= ATTR_HIDDEN
;
1180 /* set ATTR_HIDDEN and clear ATTR_READONLY, but only if needed */
1181 if (dosattr
!= origattr
) {
1182 info_buf
= kzalloc(sizeof(*info_buf
), GFP_KERNEL
);
1183 if (info_buf
== NULL
) {
1187 info_buf
->Attributes
= cpu_to_le32(dosattr
);
1188 rc
= CIFSSMBSetFileInfo(xid
, tcon
, info_buf
, fid
.netfid
,
1190 /* although we would like to mark the file hidden
1191 if that fails we will still try to rename it */
1193 cifsInode
->cifsAttrs
= dosattr
;
1195 dosattr
= origattr
; /* since not able to change them */
1198 /* rename the file */
1199 rc
= CIFSSMBRenameOpenFile(xid
, tcon
, fid
.netfid
, NULL
,
1201 cifs_remap(cifs_sb
));
1207 /* try to set DELETE_ON_CLOSE */
1208 if (!test_bit(CIFS_INO_DELETE_PENDING
, &cifsInode
->flags
)) {
1209 rc
= CIFSSMBSetFileDisposition(xid
, tcon
, true, fid
.netfid
,
1212 * some samba versions return -ENOENT when we try to set the
1213 * file disposition here. Likely a samba bug, but work around
1214 * it for now. This means that some cifsXXX files may hang
1215 * around after they shouldn't.
1217 * BB: remove this hack after more servers have the fix
1225 set_bit(CIFS_INO_DELETE_PENDING
, &cifsInode
->flags
);
1229 CIFSSMBClose(xid
, tcon
, fid
.netfid
);
1232 cifs_put_tlink(tlink
);
1236 * reset everything back to the original state. Don't bother
1237 * dealing with errors here since we can't do anything about
1241 CIFSSMBRenameOpenFile(xid
, tcon
, fid
.netfid
, dentry
->d_name
.name
,
1242 cifs_sb
->local_nls
, cifs_remap(cifs_sb
));
1244 if (dosattr
!= origattr
) {
1245 info_buf
->Attributes
= cpu_to_le32(origattr
);
1246 if (!CIFSSMBSetFileInfo(xid
, tcon
, info_buf
, fid
.netfid
,
1248 cifsInode
->cifsAttrs
= origattr
;
1254 /* copied from fs/nfs/dir.c with small changes */
1256 cifs_drop_nlink(struct inode
*inode
)
1258 spin_lock(&inode
->i_lock
);
1259 if (inode
->i_nlink
> 0)
1261 spin_unlock(&inode
->i_lock
);
1265 * If d_inode(dentry) is null (usually meaning the cached dentry
1266 * is a negative dentry) then we would attempt a standard SMB delete, but
1267 * if that fails we can not attempt the fall back mechanisms on EACCESS
1268 * but will return the EACCESS to the caller. Note that the VFS does not call
1269 * unlink on negative dentries currently.
1271 int cifs_unlink(struct inode
*dir
, struct dentry
*dentry
)
1275 char *full_path
= NULL
;
1276 struct inode
*inode
= d_inode(dentry
);
1277 struct cifsInodeInfo
*cifs_inode
;
1278 struct super_block
*sb
= dir
->i_sb
;
1279 struct cifs_sb_info
*cifs_sb
= CIFS_SB(sb
);
1280 struct tcon_link
*tlink
;
1281 struct cifs_tcon
*tcon
;
1282 struct TCP_Server_Info
*server
;
1283 struct iattr
*attrs
= NULL
;
1284 __u32 dosattr
= 0, origattr
= 0;
1286 cifs_dbg(FYI
, "cifs_unlink, dir=0x%p, dentry=0x%p\n", dir
, dentry
);
1288 tlink
= cifs_sb_tlink(cifs_sb
);
1290 return PTR_ERR(tlink
);
1291 tcon
= tlink_tcon(tlink
);
1292 server
= tcon
->ses
->server
;
1296 /* Unlink can be called from rename so we can not take the
1297 * sb->s_vfs_rename_mutex here */
1298 full_path
= build_path_from_dentry(dentry
);
1299 if (full_path
== NULL
) {
1304 if (cap_unix(tcon
->ses
) && (CIFS_UNIX_POSIX_PATH_OPS_CAP
&
1305 le64_to_cpu(tcon
->fsUnixInfo
.Capability
))) {
1306 rc
= CIFSPOSIXDelFile(xid
, tcon
, full_path
,
1307 SMB_POSIX_UNLINK_FILE_TARGET
, cifs_sb
->local_nls
,
1308 cifs_remap(cifs_sb
));
1309 cifs_dbg(FYI
, "posix del rc %d\n", rc
);
1310 if ((rc
== 0) || (rc
== -ENOENT
))
1311 goto psx_del_no_retry
;
1315 if (!server
->ops
->unlink
) {
1317 goto psx_del_no_retry
;
1320 rc
= server
->ops
->unlink(xid
, tcon
, full_path
, cifs_sb
);
1325 cifs_drop_nlink(inode
);
1326 } else if (rc
== -ENOENT
) {
1328 } else if (rc
== -EBUSY
) {
1329 if (server
->ops
->rename_pending_delete
) {
1330 rc
= server
->ops
->rename_pending_delete(full_path
,
1333 cifs_drop_nlink(inode
);
1335 } else if ((rc
== -EACCES
) && (dosattr
== 0) && inode
) {
1336 attrs
= kzalloc(sizeof(*attrs
), GFP_KERNEL
);
1337 if (attrs
== NULL
) {
1342 /* try to reset dos attributes */
1343 cifs_inode
= CIFS_I(inode
);
1344 origattr
= cifs_inode
->cifsAttrs
;
1346 origattr
|= ATTR_NORMAL
;
1347 dosattr
= origattr
& ~ATTR_READONLY
;
1349 dosattr
|= ATTR_NORMAL
;
1350 dosattr
|= ATTR_HIDDEN
;
1352 rc
= cifs_set_file_info(inode
, attrs
, xid
, full_path
, dosattr
);
1356 goto retry_std_delete
;
1359 /* undo the setattr if we errored out and it's needed */
1360 if (rc
!= 0 && dosattr
!= 0)
1361 cifs_set_file_info(inode
, attrs
, xid
, full_path
, origattr
);
1365 cifs_inode
= CIFS_I(inode
);
1366 cifs_inode
->time
= 0; /* will force revalidate to get info
1368 inode
->i_ctime
= current_time(inode
);
1370 dir
->i_ctime
= dir
->i_mtime
= current_time(dir
);
1371 cifs_inode
= CIFS_I(dir
);
1372 CIFS_I(dir
)->time
= 0; /* force revalidate of dir as well */
1377 cifs_put_tlink(tlink
);
1382 cifs_mkdir_qinfo(struct inode
*parent
, struct dentry
*dentry
, umode_t mode
,
1383 const char *full_path
, struct cifs_sb_info
*cifs_sb
,
1384 struct cifs_tcon
*tcon
, const unsigned int xid
)
1387 struct inode
*inode
= NULL
;
1390 rc
= cifs_get_inode_info_unix(&inode
, full_path
, parent
->i_sb
,
1393 rc
= cifs_get_inode_info(&inode
, full_path
, NULL
, parent
->i_sb
,
1400 * setting nlink not necessary except in cases where we failed to get it
1401 * from the server or was set bogus. Also, since this is a brand new
1402 * inode, no need to grab the i_lock before setting the i_nlink.
1404 if (inode
->i_nlink
< 2)
1405 set_nlink(inode
, 2);
1406 mode
&= ~current_umask();
1407 /* must turn on setgid bit if parent dir has it */
1408 if (parent
->i_mode
& S_ISGID
)
1411 if (tcon
->unix_ext
) {
1412 struct cifs_unix_set_info_args args
= {
1414 .ctime
= NO_CHANGE_64
,
1415 .atime
= NO_CHANGE_64
,
1416 .mtime
= NO_CHANGE_64
,
1419 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SET_UID
) {
1420 args
.uid
= current_fsuid();
1421 if (parent
->i_mode
& S_ISGID
)
1422 args
.gid
= parent
->i_gid
;
1424 args
.gid
= current_fsgid();
1426 args
.uid
= INVALID_UID
; /* no change */
1427 args
.gid
= INVALID_GID
; /* no change */
1429 CIFSSMBUnixSetPathInfo(xid
, tcon
, full_path
, &args
,
1431 cifs_remap(cifs_sb
));
1433 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
1434 if (!(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_CIFS_ACL
) &&
1435 (mode
& S_IWUGO
) == 0 && server
->ops
->mkdir_setinfo
)
1436 server
->ops
->mkdir_setinfo(inode
, full_path
, cifs_sb
,
1438 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_DYNPERM
)
1439 inode
->i_mode
= (mode
| S_IFDIR
);
1441 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SET_UID
) {
1442 inode
->i_uid
= current_fsuid();
1443 if (inode
->i_mode
& S_ISGID
)
1444 inode
->i_gid
= parent
->i_gid
;
1446 inode
->i_gid
= current_fsgid();
1449 d_instantiate(dentry
, inode
);
1454 cifs_posix_mkdir(struct inode
*inode
, struct dentry
*dentry
, umode_t mode
,
1455 const char *full_path
, struct cifs_sb_info
*cifs_sb
,
1456 struct cifs_tcon
*tcon
, const unsigned int xid
)
1460 FILE_UNIX_BASIC_INFO
*info
= NULL
;
1461 struct inode
*newinode
= NULL
;
1462 struct cifs_fattr fattr
;
1464 info
= kzalloc(sizeof(FILE_UNIX_BASIC_INFO
), GFP_KERNEL
);
1467 goto posix_mkdir_out
;
1470 mode
&= ~current_umask();
1471 rc
= CIFSPOSIXCreate(xid
, tcon
, SMB_O_DIRECTORY
| SMB_O_CREAT
, mode
,
1472 NULL
/* netfid */, info
, &oplock
, full_path
,
1473 cifs_sb
->local_nls
, cifs_remap(cifs_sb
));
1474 if (rc
== -EOPNOTSUPP
)
1475 goto posix_mkdir_out
;
1477 cifs_dbg(FYI
, "posix mkdir returned 0x%x\n", rc
);
1479 goto posix_mkdir_out
;
1482 if (info
->Type
== cpu_to_le32(-1))
1483 /* no return info, go query for it */
1484 goto posix_mkdir_get_info
;
1486 * BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if
1487 * need to set uid/gid.
1490 cifs_unix_basic_to_fattr(&fattr
, info
, cifs_sb
);
1491 cifs_fill_uniqueid(inode
->i_sb
, &fattr
);
1492 newinode
= cifs_iget(inode
->i_sb
, &fattr
);
1494 goto posix_mkdir_get_info
;
1496 d_instantiate(dentry
, newinode
);
1498 #ifdef CONFIG_CIFS_DEBUG2
1499 cifs_dbg(FYI
, "instantiated dentry %p %pd to inode %p\n",
1500 dentry
, dentry
, newinode
);
1502 if (newinode
->i_nlink
!= 2)
1503 cifs_dbg(FYI
, "unexpected number of links %d\n",
1510 posix_mkdir_get_info
:
1511 rc
= cifs_mkdir_qinfo(inode
, dentry
, mode
, full_path
, cifs_sb
, tcon
,
1513 goto posix_mkdir_out
;
1516 int cifs_mkdir(struct inode
*inode
, struct dentry
*direntry
, umode_t mode
)
1520 struct cifs_sb_info
*cifs_sb
;
1521 struct tcon_link
*tlink
;
1522 struct cifs_tcon
*tcon
;
1523 struct TCP_Server_Info
*server
;
1526 cifs_dbg(FYI
, "In cifs_mkdir, mode = 0x%hx inode = 0x%p\n",
1529 cifs_sb
= CIFS_SB(inode
->i_sb
);
1530 tlink
= cifs_sb_tlink(cifs_sb
);
1532 return PTR_ERR(tlink
);
1533 tcon
= tlink_tcon(tlink
);
1537 full_path
= build_path_from_dentry(direntry
);
1538 if (full_path
== NULL
) {
1543 if (cap_unix(tcon
->ses
) && (CIFS_UNIX_POSIX_PATH_OPS_CAP
&
1544 le64_to_cpu(tcon
->fsUnixInfo
.Capability
))) {
1545 rc
= cifs_posix_mkdir(inode
, direntry
, mode
, full_path
, cifs_sb
,
1547 if (rc
!= -EOPNOTSUPP
)
1551 server
= tcon
->ses
->server
;
1553 if (!server
->ops
->mkdir
) {
1558 /* BB add setting the equivalent of mode via CreateX w/ACLs */
1559 rc
= server
->ops
->mkdir(xid
, tcon
, full_path
, cifs_sb
);
1561 cifs_dbg(FYI
, "cifs_mkdir returned 0x%x\n", rc
);
1566 rc
= cifs_mkdir_qinfo(inode
, direntry
, mode
, full_path
, cifs_sb
, tcon
,
1570 * Force revalidate to get parent dir info when needed since cached
1571 * attributes are invalid now.
1573 CIFS_I(inode
)->time
= 0;
1576 cifs_put_tlink(tlink
);
1580 int cifs_rmdir(struct inode
*inode
, struct dentry
*direntry
)
1584 struct cifs_sb_info
*cifs_sb
;
1585 struct tcon_link
*tlink
;
1586 struct cifs_tcon
*tcon
;
1587 struct TCP_Server_Info
*server
;
1588 char *full_path
= NULL
;
1589 struct cifsInodeInfo
*cifsInode
;
1591 cifs_dbg(FYI
, "cifs_rmdir, inode = 0x%p\n", inode
);
1595 full_path
= build_path_from_dentry(direntry
);
1596 if (full_path
== NULL
) {
1601 cifs_sb
= CIFS_SB(inode
->i_sb
);
1602 tlink
= cifs_sb_tlink(cifs_sb
);
1603 if (IS_ERR(tlink
)) {
1604 rc
= PTR_ERR(tlink
);
1607 tcon
= tlink_tcon(tlink
);
1608 server
= tcon
->ses
->server
;
1610 if (!server
->ops
->rmdir
) {
1612 cifs_put_tlink(tlink
);
1616 rc
= server
->ops
->rmdir(xid
, tcon
, full_path
, cifs_sb
);
1617 cifs_put_tlink(tlink
);
1620 spin_lock(&d_inode(direntry
)->i_lock
);
1621 i_size_write(d_inode(direntry
), 0);
1622 clear_nlink(d_inode(direntry
));
1623 spin_unlock(&d_inode(direntry
)->i_lock
);
1626 cifsInode
= CIFS_I(d_inode(direntry
));
1627 /* force revalidate to go get info when needed */
1628 cifsInode
->time
= 0;
1630 cifsInode
= CIFS_I(inode
);
1632 * Force revalidate to get parent dir info when needed since cached
1633 * attributes are invalid now.
1635 cifsInode
->time
= 0;
1637 d_inode(direntry
)->i_ctime
= inode
->i_ctime
= inode
->i_mtime
=
1638 current_time(inode
);
1647 cifs_do_rename(const unsigned int xid
, struct dentry
*from_dentry
,
1648 const char *from_path
, struct dentry
*to_dentry
,
1649 const char *to_path
)
1651 struct cifs_sb_info
*cifs_sb
= CIFS_SB(from_dentry
->d_sb
);
1652 struct tcon_link
*tlink
;
1653 struct cifs_tcon
*tcon
;
1654 struct TCP_Server_Info
*server
;
1655 struct cifs_fid fid
;
1656 struct cifs_open_parms oparms
;
1659 tlink
= cifs_sb_tlink(cifs_sb
);
1661 return PTR_ERR(tlink
);
1662 tcon
= tlink_tcon(tlink
);
1663 server
= tcon
->ses
->server
;
1665 if (!server
->ops
->rename
)
1668 /* try path-based rename first */
1669 rc
= server
->ops
->rename(xid
, tcon
, from_path
, to_path
, cifs_sb
);
1672 * Don't bother with rename by filehandle unless file is busy and
1673 * source. Note that cross directory moves do not work with
1674 * rename by filehandle to various Windows servers.
1676 if (rc
== 0 || rc
!= -EBUSY
)
1677 goto do_rename_exit
;
1679 /* open-file renames don't work across directories */
1680 if (to_dentry
->d_parent
!= from_dentry
->d_parent
)
1681 goto do_rename_exit
;
1684 oparms
.cifs_sb
= cifs_sb
;
1685 /* open the file to be renamed -- we need DELETE perms */
1686 oparms
.desired_access
= DELETE
;
1687 oparms
.create_options
= CREATE_NOT_DIR
;
1688 oparms
.disposition
= FILE_OPEN
;
1689 oparms
.path
= from_path
;
1691 oparms
.reconnect
= false;
1693 rc
= CIFS_open(xid
, &oparms
, &oplock
, NULL
);
1695 rc
= CIFSSMBRenameOpenFile(xid
, tcon
, fid
.netfid
,
1696 (const char *) to_dentry
->d_name
.name
,
1697 cifs_sb
->local_nls
, cifs_remap(cifs_sb
));
1698 CIFSSMBClose(xid
, tcon
, fid
.netfid
);
1701 cifs_put_tlink(tlink
);
1706 cifs_rename2(struct inode
*source_dir
, struct dentry
*source_dentry
,
1707 struct inode
*target_dir
, struct dentry
*target_dentry
,
1710 char *from_name
= NULL
;
1711 char *to_name
= NULL
;
1712 struct cifs_sb_info
*cifs_sb
;
1713 struct tcon_link
*tlink
;
1714 struct cifs_tcon
*tcon
;
1715 FILE_UNIX_BASIC_INFO
*info_buf_source
= NULL
;
1716 FILE_UNIX_BASIC_INFO
*info_buf_target
;
1720 if (flags
& ~RENAME_NOREPLACE
)
1723 cifs_sb
= CIFS_SB(source_dir
->i_sb
);
1724 tlink
= cifs_sb_tlink(cifs_sb
);
1726 return PTR_ERR(tlink
);
1727 tcon
= tlink_tcon(tlink
);
1732 * we already have the rename sem so we do not need to
1733 * grab it again here to protect the path integrity
1735 from_name
= build_path_from_dentry(source_dentry
);
1736 if (from_name
== NULL
) {
1738 goto cifs_rename_exit
;
1741 to_name
= build_path_from_dentry(target_dentry
);
1742 if (to_name
== NULL
) {
1744 goto cifs_rename_exit
;
1747 rc
= cifs_do_rename(xid
, source_dentry
, from_name
, target_dentry
,
1751 * No-replace is the natural behavior for CIFS, so skip unlink hacks.
1753 if (flags
& RENAME_NOREPLACE
)
1754 goto cifs_rename_exit
;
1756 if (rc
== -EEXIST
&& tcon
->unix_ext
) {
1758 * Are src and dst hardlinks of same inode? We can only tell
1759 * with unix extensions enabled.
1762 kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO
),
1764 if (info_buf_source
== NULL
) {
1766 goto cifs_rename_exit
;
1769 info_buf_target
= info_buf_source
+ 1;
1770 tmprc
= CIFSSMBUnixQPathInfo(xid
, tcon
, from_name
,
1773 cifs_remap(cifs_sb
));
1777 tmprc
= CIFSSMBUnixQPathInfo(xid
, tcon
, to_name
,
1780 cifs_remap(cifs_sb
));
1782 if (tmprc
== 0 && (info_buf_source
->UniqueId
==
1783 info_buf_target
->UniqueId
)) {
1784 /* same file, POSIX says that this is a noop */
1786 goto cifs_rename_exit
;
1790 * else ... BB we could add the same check for Windows by
1791 * checking the UniqueId via FILE_INTERNAL_INFO
1795 /* Try unlinking the target dentry if it's not negative */
1796 if (d_really_is_positive(target_dentry
) && (rc
== -EACCES
|| rc
== -EEXIST
)) {
1797 if (d_is_dir(target_dentry
))
1798 tmprc
= cifs_rmdir(target_dir
, target_dentry
);
1800 tmprc
= cifs_unlink(target_dir
, target_dentry
);
1802 goto cifs_rename_exit
;
1803 rc
= cifs_do_rename(xid
, source_dentry
, from_name
,
1804 target_dentry
, to_name
);
1807 /* force revalidate to go get info when needed */
1808 CIFS_I(source_dir
)->time
= CIFS_I(target_dir
)->time
= 0;
1810 source_dir
->i_ctime
= source_dir
->i_mtime
= target_dir
->i_ctime
=
1811 target_dir
->i_mtime
= current_time(source_dir
);
1814 kfree(info_buf_source
);
1818 cifs_put_tlink(tlink
);
1823 cifs_inode_needs_reval(struct inode
*inode
)
1825 struct cifsInodeInfo
*cifs_i
= CIFS_I(inode
);
1826 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
1828 if (CIFS_CACHE_READ(cifs_i
))
1831 if (!lookupCacheEnabled
)
1834 if (cifs_i
->time
== 0)
1837 if (!cifs_sb
->actimeo
)
1840 if (!time_in_range(jiffies
, cifs_i
->time
,
1841 cifs_i
->time
+ cifs_sb
->actimeo
))
1844 /* hardlinked files w/ noserverino get "special" treatment */
1845 if (!(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SERVER_INUM
) &&
1846 S_ISREG(inode
->i_mode
) && inode
->i_nlink
!= 1)
1853 * Zap the cache. Called when invalid_mapping flag is set.
1856 cifs_invalidate_mapping(struct inode
*inode
)
1860 if (inode
->i_mapping
&& inode
->i_mapping
->nrpages
!= 0) {
1861 rc
= invalidate_inode_pages2(inode
->i_mapping
);
1863 cifs_dbg(VFS
, "%s: could not invalidate inode %p\n",
1867 cifs_fscache_reset_inode_cookie(inode
);
1872 * cifs_wait_bit_killable - helper for functions that are sleeping on bit locks
1873 * @word: long word containing the bit lock
1876 cifs_wait_bit_killable(struct wait_bit_key
*key
, int mode
)
1878 freezable_schedule_unsafe();
1879 if (signal_pending_state(mode
, current
))
1880 return -ERESTARTSYS
;
1885 cifs_revalidate_mapping(struct inode
*inode
)
1888 unsigned long *flags
= &CIFS_I(inode
)->flags
;
1890 rc
= wait_on_bit_lock_action(flags
, CIFS_INO_LOCK
, cifs_wait_bit_killable
,
1895 if (test_and_clear_bit(CIFS_INO_INVALID_MAPPING
, flags
)) {
1896 rc
= cifs_invalidate_mapping(inode
);
1898 set_bit(CIFS_INO_INVALID_MAPPING
, flags
);
1901 clear_bit_unlock(CIFS_INO_LOCK
, flags
);
1902 smp_mb__after_atomic();
1903 wake_up_bit(flags
, CIFS_INO_LOCK
);
1909 cifs_zap_mapping(struct inode
*inode
)
1911 set_bit(CIFS_INO_INVALID_MAPPING
, &CIFS_I(inode
)->flags
);
1912 return cifs_revalidate_mapping(inode
);
1915 int cifs_revalidate_file_attr(struct file
*filp
)
1918 struct inode
*inode
= file_inode(filp
);
1919 struct cifsFileInfo
*cfile
= (struct cifsFileInfo
*) filp
->private_data
;
1921 if (!cifs_inode_needs_reval(inode
))
1924 if (tlink_tcon(cfile
->tlink
)->unix_ext
)
1925 rc
= cifs_get_file_info_unix(filp
);
1927 rc
= cifs_get_file_info(filp
);
1932 int cifs_revalidate_dentry_attr(struct dentry
*dentry
)
1936 struct inode
*inode
= d_inode(dentry
);
1937 struct super_block
*sb
= dentry
->d_sb
;
1938 char *full_path
= NULL
;
1943 if (!cifs_inode_needs_reval(inode
))
1948 /* can not safely grab the rename sem here if rename calls revalidate
1949 since that would deadlock */
1950 full_path
= build_path_from_dentry(dentry
);
1951 if (full_path
== NULL
) {
1956 cifs_dbg(FYI
, "Update attributes: %s inode 0x%p count %d dentry: 0x%p d_time %ld jiffies %ld\n",
1957 full_path
, inode
, inode
->i_count
.counter
,
1958 dentry
, cifs_get_time(dentry
), jiffies
);
1960 if (cifs_sb_master_tcon(CIFS_SB(sb
))->unix_ext
)
1961 rc
= cifs_get_inode_info_unix(&inode
, full_path
, sb
, xid
);
1963 rc
= cifs_get_inode_info(&inode
, full_path
, NULL
, sb
,
1972 int cifs_revalidate_file(struct file
*filp
)
1975 struct inode
*inode
= file_inode(filp
);
1977 rc
= cifs_revalidate_file_attr(filp
);
1981 return cifs_revalidate_mapping(inode
);
1984 /* revalidate a dentry's inode attributes */
1985 int cifs_revalidate_dentry(struct dentry
*dentry
)
1988 struct inode
*inode
= d_inode(dentry
);
1990 rc
= cifs_revalidate_dentry_attr(dentry
);
1994 return cifs_revalidate_mapping(inode
);
1997 int cifs_getattr(const struct path
*path
, struct kstat
*stat
,
1998 u32 request_mask
, unsigned int flags
)
2000 struct dentry
*dentry
= path
->dentry
;
2001 struct cifs_sb_info
*cifs_sb
= CIFS_SB(dentry
->d_sb
);
2002 struct cifs_tcon
*tcon
= cifs_sb_master_tcon(cifs_sb
);
2003 struct inode
*inode
= d_inode(dentry
);
2007 * We need to be sure that all dirty pages are written and the server
2008 * has actual ctime, mtime and file length.
2010 if (!CIFS_CACHE_READ(CIFS_I(inode
)) && inode
->i_mapping
&&
2011 inode
->i_mapping
->nrpages
!= 0) {
2012 rc
= filemap_fdatawait(inode
->i_mapping
);
2014 mapping_set_error(inode
->i_mapping
, rc
);
2019 rc
= cifs_revalidate_dentry_attr(dentry
);
2023 generic_fillattr(inode
, stat
);
2024 stat
->blksize
= CIFS_MAX_MSGSIZE
;
2025 stat
->ino
= CIFS_I(inode
)->uniqueid
;
2028 * If on a multiuser mount without unix extensions or cifsacl being
2029 * enabled, and the admin hasn't overridden them, set the ownership
2030 * to the fsuid/fsgid of the current process.
2032 if ((cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_MULTIUSER
) &&
2033 !(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_CIFS_ACL
) &&
2035 if (!(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_OVERR_UID
))
2036 stat
->uid
= current_fsuid();
2037 if (!(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_OVERR_GID
))
2038 stat
->gid
= current_fsgid();
2043 static int cifs_truncate_page(struct address_space
*mapping
, loff_t from
)
2045 pgoff_t index
= from
>> PAGE_SHIFT
;
2046 unsigned offset
= from
& (PAGE_SIZE
- 1);
2050 page
= grab_cache_page(mapping
, index
);
2054 zero_user_segment(page
, offset
, PAGE_SIZE
);
2060 static void cifs_setsize(struct inode
*inode
, loff_t offset
)
2062 spin_lock(&inode
->i_lock
);
2063 i_size_write(inode
, offset
);
2064 spin_unlock(&inode
->i_lock
);
2066 truncate_pagecache(inode
, offset
);
2070 cifs_set_file_size(struct inode
*inode
, struct iattr
*attrs
,
2071 unsigned int xid
, char *full_path
)
2074 struct cifsFileInfo
*open_file
;
2075 struct cifsInodeInfo
*cifsInode
= CIFS_I(inode
);
2076 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
2077 struct tcon_link
*tlink
= NULL
;
2078 struct cifs_tcon
*tcon
= NULL
;
2079 struct TCP_Server_Info
*server
;
2082 * To avoid spurious oplock breaks from server, in the case of
2083 * inodes that we already have open, avoid doing path based
2084 * setting of file size if we can do it by handle.
2085 * This keeps our caching token (oplock) and avoids timeouts
2086 * when the local oplock break takes longer to flush
2087 * writebehind data than the SMB timeout for the SetPathInfo
2088 * request would allow
2090 open_file
= find_writable_file(cifsInode
, true);
2092 tcon
= tlink_tcon(open_file
->tlink
);
2093 server
= tcon
->ses
->server
;
2094 if (server
->ops
->set_file_size
)
2095 rc
= server
->ops
->set_file_size(xid
, tcon
, open_file
,
2096 attrs
->ia_size
, false);
2099 cifsFileInfo_put(open_file
);
2100 cifs_dbg(FYI
, "SetFSize for attrs rc = %d\n", rc
);
2108 tlink
= cifs_sb_tlink(cifs_sb
);
2110 return PTR_ERR(tlink
);
2111 tcon
= tlink_tcon(tlink
);
2112 server
= tcon
->ses
->server
;
2116 * Set file size by pathname rather than by handle either because no
2117 * valid, writeable file handle for it was found or because there was
2118 * an error setting it by handle.
2120 if (server
->ops
->set_path_size
)
2121 rc
= server
->ops
->set_path_size(xid
, tcon
, full_path
,
2122 attrs
->ia_size
, cifs_sb
, false);
2125 cifs_dbg(FYI
, "SetEOF by path (setattrs) rc = %d\n", rc
);
2128 cifs_put_tlink(tlink
);
2132 cifsInode
->server_eof
= attrs
->ia_size
;
2133 cifs_setsize(inode
, attrs
->ia_size
);
2134 cifs_truncate_page(inode
->i_mapping
, inode
->i_size
);
2141 cifs_setattr_unix(struct dentry
*direntry
, struct iattr
*attrs
)
2145 char *full_path
= NULL
;
2146 struct inode
*inode
= d_inode(direntry
);
2147 struct cifsInodeInfo
*cifsInode
= CIFS_I(inode
);
2148 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
2149 struct tcon_link
*tlink
;
2150 struct cifs_tcon
*pTcon
;
2151 struct cifs_unix_set_info_args
*args
= NULL
;
2152 struct cifsFileInfo
*open_file
;
2154 cifs_dbg(FYI
, "setattr_unix on file %pd attrs->ia_valid=0x%x\n",
2155 direntry
, attrs
->ia_valid
);
2159 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_PERM
)
2160 attrs
->ia_valid
|= ATTR_FORCE
;
2162 rc
= setattr_prepare(direntry
, attrs
);
2166 full_path
= build_path_from_dentry(direntry
);
2167 if (full_path
== NULL
) {
2173 * Attempt to flush data before changing attributes. We need to do
2174 * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the
2175 * ownership or mode then we may also need to do this. Here, we take
2176 * the safe way out and just do the flush on all setattr requests. If
2177 * the flush returns error, store it to report later and continue.
2179 * BB: This should be smarter. Why bother flushing pages that
2180 * will be truncated anyway? Also, should we error out here if
2181 * the flush returns error?
2183 rc
= filemap_write_and_wait(inode
->i_mapping
);
2184 mapping_set_error(inode
->i_mapping
, rc
);
2187 if (attrs
->ia_valid
& ATTR_SIZE
) {
2188 rc
= cifs_set_file_size(inode
, attrs
, xid
, full_path
);
2193 /* skip mode change if it's just for clearing setuid/setgid */
2194 if (attrs
->ia_valid
& (ATTR_KILL_SUID
|ATTR_KILL_SGID
))
2195 attrs
->ia_valid
&= ~ATTR_MODE
;
2197 args
= kmalloc(sizeof(*args
), GFP_KERNEL
);
2203 /* set up the struct */
2204 if (attrs
->ia_valid
& ATTR_MODE
)
2205 args
->mode
= attrs
->ia_mode
;
2207 args
->mode
= NO_CHANGE_64
;
2209 if (attrs
->ia_valid
& ATTR_UID
)
2210 args
->uid
= attrs
->ia_uid
;
2212 args
->uid
= INVALID_UID
; /* no change */
2214 if (attrs
->ia_valid
& ATTR_GID
)
2215 args
->gid
= attrs
->ia_gid
;
2217 args
->gid
= INVALID_GID
; /* no change */
2219 if (attrs
->ia_valid
& ATTR_ATIME
)
2220 args
->atime
= cifs_UnixTimeToNT(attrs
->ia_atime
);
2222 args
->atime
= NO_CHANGE_64
;
2224 if (attrs
->ia_valid
& ATTR_MTIME
)
2225 args
->mtime
= cifs_UnixTimeToNT(attrs
->ia_mtime
);
2227 args
->mtime
= NO_CHANGE_64
;
2229 if (attrs
->ia_valid
& ATTR_CTIME
)
2230 args
->ctime
= cifs_UnixTimeToNT(attrs
->ia_ctime
);
2232 args
->ctime
= NO_CHANGE_64
;
2235 open_file
= find_writable_file(cifsInode
, true);
2237 u16 nfid
= open_file
->fid
.netfid
;
2238 u32 npid
= open_file
->pid
;
2239 pTcon
= tlink_tcon(open_file
->tlink
);
2240 rc
= CIFSSMBUnixSetFileInfo(xid
, pTcon
, args
, nfid
, npid
);
2241 cifsFileInfo_put(open_file
);
2243 tlink
= cifs_sb_tlink(cifs_sb
);
2244 if (IS_ERR(tlink
)) {
2245 rc
= PTR_ERR(tlink
);
2248 pTcon
= tlink_tcon(tlink
);
2249 rc
= CIFSSMBUnixSetPathInfo(xid
, pTcon
, full_path
, args
,
2251 cifs_remap(cifs_sb
));
2252 cifs_put_tlink(tlink
);
2258 if ((attrs
->ia_valid
& ATTR_SIZE
) &&
2259 attrs
->ia_size
!= i_size_read(inode
))
2260 truncate_setsize(inode
, attrs
->ia_size
);
2262 setattr_copy(inode
, attrs
);
2263 mark_inode_dirty(inode
);
2265 /* force revalidate when any of these times are set since some
2266 of the fs types (eg ext3, fat) do not have fine enough
2267 time granularity to match protocol, and we do not have a
2268 a way (yet) to query the server fs's time granularity (and
2269 whether it rounds times down).
2271 if (attrs
->ia_valid
& (ATTR_MTIME
| ATTR_CTIME
))
2272 cifsInode
->time
= 0;
2281 cifs_setattr_nounix(struct dentry
*direntry
, struct iattr
*attrs
)
2284 kuid_t uid
= INVALID_UID
;
2285 kgid_t gid
= INVALID_GID
;
2286 struct inode
*inode
= d_inode(direntry
);
2287 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
2288 struct cifsInodeInfo
*cifsInode
= CIFS_I(inode
);
2289 char *full_path
= NULL
;
2292 __u64 mode
= NO_CHANGE_64
;
2296 cifs_dbg(FYI
, "setattr on file %pd attrs->iavalid 0x%x\n",
2297 direntry
, attrs
->ia_valid
);
2299 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_PERM
)
2300 attrs
->ia_valid
|= ATTR_FORCE
;
2302 rc
= setattr_prepare(direntry
, attrs
);
2308 full_path
= build_path_from_dentry(direntry
);
2309 if (full_path
== NULL
) {
2316 * Attempt to flush data before changing attributes. We need to do
2317 * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the
2318 * ownership or mode then we may also need to do this. Here, we take
2319 * the safe way out and just do the flush on all setattr requests. If
2320 * the flush returns error, store it to report later and continue.
2322 * BB: This should be smarter. Why bother flushing pages that
2323 * will be truncated anyway? Also, should we error out here if
2324 * the flush returns error?
2326 rc
= filemap_write_and_wait(inode
->i_mapping
);
2327 mapping_set_error(inode
->i_mapping
, rc
);
2330 if (attrs
->ia_valid
& ATTR_SIZE
) {
2331 rc
= cifs_set_file_size(inode
, attrs
, xid
, full_path
);
2333 goto cifs_setattr_exit
;
2336 if (attrs
->ia_valid
& ATTR_UID
)
2337 uid
= attrs
->ia_uid
;
2339 if (attrs
->ia_valid
& ATTR_GID
)
2340 gid
= attrs
->ia_gid
;
2342 #ifdef CONFIG_CIFS_ACL
2343 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_CIFS_ACL
) {
2344 if (uid_valid(uid
) || gid_valid(gid
)) {
2345 rc
= id_mode_to_cifs_acl(inode
, full_path
, NO_CHANGE_64
,
2348 cifs_dbg(FYI
, "%s: Setting id failed with error: %d\n",
2350 goto cifs_setattr_exit
;
2354 #endif /* CONFIG_CIFS_ACL */
2355 if (!(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SET_UID
))
2356 attrs
->ia_valid
&= ~(ATTR_UID
| ATTR_GID
);
2358 /* skip mode change if it's just for clearing setuid/setgid */
2359 if (attrs
->ia_valid
& (ATTR_KILL_SUID
|ATTR_KILL_SGID
))
2360 attrs
->ia_valid
&= ~ATTR_MODE
;
2362 if (attrs
->ia_valid
& ATTR_MODE
) {
2363 mode
= attrs
->ia_mode
;
2365 #ifdef CONFIG_CIFS_ACL
2366 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_CIFS_ACL
) {
2367 rc
= id_mode_to_cifs_acl(inode
, full_path
, mode
,
2368 INVALID_UID
, INVALID_GID
);
2370 cifs_dbg(FYI
, "%s: Setting ACL failed with error: %d\n",
2372 goto cifs_setattr_exit
;
2375 #endif /* CONFIG_CIFS_ACL */
2376 if (((mode
& S_IWUGO
) == 0) &&
2377 (cifsInode
->cifsAttrs
& ATTR_READONLY
) == 0) {
2379 dosattr
= cifsInode
->cifsAttrs
| ATTR_READONLY
;
2381 /* fix up mode if we're not using dynperm */
2382 if ((cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_DYNPERM
) == 0)
2383 attrs
->ia_mode
= inode
->i_mode
& ~S_IWUGO
;
2384 } else if ((mode
& S_IWUGO
) &&
2385 (cifsInode
->cifsAttrs
& ATTR_READONLY
)) {
2387 dosattr
= cifsInode
->cifsAttrs
& ~ATTR_READONLY
;
2388 /* Attributes of 0 are ignored */
2390 dosattr
|= ATTR_NORMAL
;
2392 /* reset local inode permissions to normal */
2393 if (!(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_DYNPERM
)) {
2394 attrs
->ia_mode
&= ~(S_IALLUGO
);
2395 if (S_ISDIR(inode
->i_mode
))
2397 cifs_sb
->mnt_dir_mode
;
2400 cifs_sb
->mnt_file_mode
;
2402 } else if (!(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_DYNPERM
)) {
2403 /* ignore mode change - ATTR_READONLY hasn't changed */
2404 attrs
->ia_valid
&= ~ATTR_MODE
;
2408 if (attrs
->ia_valid
& (ATTR_MTIME
|ATTR_ATIME
|ATTR_CTIME
) ||
2409 ((attrs
->ia_valid
& ATTR_MODE
) && dosattr
)) {
2410 rc
= cifs_set_file_info(inode
, attrs
, xid
, full_path
, dosattr
);
2411 /* BB: check for rc = -EOPNOTSUPP and switch to legacy mode */
2413 /* Even if error on time set, no sense failing the call if
2414 the server would set the time to a reasonable value anyway,
2415 and this check ensures that we are not being called from
2416 sys_utimes in which case we ought to fail the call back to
2417 the user when the server rejects the call */
2418 if ((rc
) && (attrs
->ia_valid
&
2419 (ATTR_MODE
| ATTR_GID
| ATTR_UID
| ATTR_SIZE
)))
2423 /* do not need local check to inode_check_ok since the server does
2426 goto cifs_setattr_exit
;
2428 if ((attrs
->ia_valid
& ATTR_SIZE
) &&
2429 attrs
->ia_size
!= i_size_read(inode
))
2430 truncate_setsize(inode
, attrs
->ia_size
);
2432 setattr_copy(inode
, attrs
);
2433 mark_inode_dirty(inode
);
2442 cifs_setattr(struct dentry
*direntry
, struct iattr
*attrs
)
2444 struct cifs_sb_info
*cifs_sb
= CIFS_SB(direntry
->d_sb
);
2445 struct cifs_tcon
*pTcon
= cifs_sb_master_tcon(cifs_sb
);
2447 if (pTcon
->unix_ext
)
2448 return cifs_setattr_unix(direntry
, attrs
);
2450 return cifs_setattr_nounix(direntry
, attrs
);
2452 /* BB: add cifs_setattr_legacy for really old servers */
2456 void cifs_delete_inode(struct inode
*inode
)
2458 cifs_dbg(FYI
, "In cifs_delete_inode, inode = 0x%p\n", inode
);
2459 /* may have to add back in if and when safe distributed caching of
2460 directories added e.g. via FindNotify */