1 // SPDX-License-Identifier: LGPL-2.1
4 * Copyright (C) International Business Machines Corp., 2002,2010
9 #include <linux/stat.h>
10 #include <linux/slab.h>
11 #include <linux/pagemap.h>
12 #include <linux/freezer.h>
13 #include <linux/sched/signal.h>
14 #include <linux/wait_bit.h>
15 #include <linux/fiemap.h>
16 #include <asm/div64.h>
20 #include "cifsproto.h"
21 #include "smb2proto.h"
22 #include "cifs_debug.h"
23 #include "cifs_fs_sb.h"
24 #include "cifs_unicode.h"
26 #include "fs_context.h"
27 #include "cifs_ioctl.h"
28 #include "cached_dir.h"
30 static void cifs_set_ops(struct inode *inode)
32 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
34 switch (inode->i_mode & S_IFMT) {
36 inode->i_op = &cifs_file_inode_ops;
37 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
38 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
39 inode->i_fop = &cifs_file_direct_nobrl_ops;
41 inode->i_fop = &cifs_file_direct_ops;
42 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO) {
43 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
44 inode->i_fop = &cifs_file_strict_nobrl_ops;
46 inode->i_fop = &cifs_file_strict_ops;
47 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
48 inode->i_fop = &cifs_file_nobrl_ops;
49 else { /* not direct, send byte range locks */
50 inode->i_fop = &cifs_file_ops;
53 /* check if server can support readahead */
54 if (cifs_sb_master_tcon(cifs_sb)->ses->server->max_read <
55 PAGE_SIZE + MAX_CIFS_HDR_SIZE)
56 inode->i_data.a_ops = &cifs_addr_ops_smallbuf;
58 inode->i_data.a_ops = &cifs_addr_ops;
61 #ifdef CONFIG_CIFS_DFS_UPCALL
62 if (IS_AUTOMOUNT(inode)) {
63 inode->i_op = &cifs_dfs_referral_inode_operations;
65 #else /* NO DFS support, treat as a directory */
68 inode->i_op = &cifs_dir_inode_ops;
69 inode->i_fop = &cifs_dir_ops;
73 inode->i_op = &cifs_symlink_inode_ops;
76 init_special_inode(inode, inode->i_mode, inode->i_rdev);
81 /* check inode attributes against fattr. If they don't match, tag the
82 * inode for cache invalidation
85 cifs_revalidate_cache(struct inode *inode, struct cifs_fattr *fattr)
87 struct cifs_fscache_inode_coherency_data cd;
88 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
90 cifs_dbg(FYI, "%s: revalidating inode %llu\n",
91 __func__, cifs_i->uniqueid);
93 if (inode->i_state & I_NEW) {
94 cifs_dbg(FYI, "%s: inode %llu is new\n",
95 __func__, cifs_i->uniqueid);
99 /* don't bother with revalidation if we have an oplock */
100 if (CIFS_CACHE_READ(cifs_i)) {
101 cifs_dbg(FYI, "%s: inode %llu is oplocked\n",
102 __func__, cifs_i->uniqueid);
106 /* revalidate if mtime or size have changed */
107 fattr->cf_mtime = timestamp_truncate(fattr->cf_mtime, inode);
108 if (timespec64_equal(&inode->i_mtime, &fattr->cf_mtime) &&
109 cifs_i->server_eof == fattr->cf_eof) {
110 cifs_dbg(FYI, "%s: inode %llu is unchanged\n",
111 __func__, cifs_i->uniqueid);
115 cifs_dbg(FYI, "%s: invalidating inode %llu mapping\n",
116 __func__, cifs_i->uniqueid);
117 set_bit(CIFS_INO_INVALID_MAPPING, &cifs_i->flags);
118 /* Invalidate fscache cookie */
119 cifs_fscache_fill_coherency(&cifs_i->netfs.inode, &cd);
120 fscache_invalidate(cifs_inode_cookie(inode), &cd, i_size_read(inode), 0);
124 * copy nlink to the inode, unless it wasn't provided. Provide
125 * sane values if we don't have an existing one and none was provided
128 cifs_nlink_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr)
131 * if we're in a situation where we can't trust what we
132 * got from the server (readdir, some non-unix cases)
133 * fake reasonable values
135 if (fattr->cf_flags & CIFS_FATTR_UNKNOWN_NLINK) {
136 /* only provide fake values on a new inode */
137 if (inode->i_state & I_NEW) {
138 if (fattr->cf_cifsattrs & ATTR_DIRECTORY)
146 /* we trust the server, so update it */
147 set_nlink(inode, fattr->cf_nlink);
150 /* populate an inode with info from a cifs_fattr struct */
152 cifs_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr)
154 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
155 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
157 if (!(inode->i_state & I_NEW) &&
158 unlikely(inode_wrong_type(inode, fattr->cf_mode))) {
159 CIFS_I(inode)->time = 0; /* force reval */
163 cifs_revalidate_cache(inode, fattr);
165 spin_lock(&inode->i_lock);
166 fattr->cf_mtime = timestamp_truncate(fattr->cf_mtime, inode);
167 fattr->cf_atime = timestamp_truncate(fattr->cf_atime, inode);
168 fattr->cf_ctime = timestamp_truncate(fattr->cf_ctime, inode);
169 /* we do not want atime to be less than mtime, it broke some apps */
170 if (timespec64_compare(&fattr->cf_atime, &fattr->cf_mtime) < 0)
171 inode->i_atime = fattr->cf_mtime;
173 inode->i_atime = fattr->cf_atime;
174 inode->i_mtime = fattr->cf_mtime;
175 inode->i_ctime = fattr->cf_ctime;
176 inode->i_rdev = fattr->cf_rdev;
177 cifs_nlink_fattr_to_inode(inode, fattr);
178 inode->i_uid = fattr->cf_uid;
179 inode->i_gid = fattr->cf_gid;
181 /* if dynperm is set, don't clobber existing mode */
182 if (inode->i_state & I_NEW ||
183 !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM))
184 inode->i_mode = fattr->cf_mode;
186 cifs_i->cifsAttrs = fattr->cf_cifsattrs;
188 if (fattr->cf_flags & CIFS_FATTR_NEED_REVAL)
191 cifs_i->time = jiffies;
193 if (fattr->cf_flags & CIFS_FATTR_DELETE_PENDING)
194 set_bit(CIFS_INO_DELETE_PENDING, &cifs_i->flags);
196 clear_bit(CIFS_INO_DELETE_PENDING, &cifs_i->flags);
198 cifs_i->server_eof = fattr->cf_eof;
200 * Can't safely change the file size here if the client is writing to
201 * it due to potential races.
203 if (is_size_safe_to_change(cifs_i, fattr->cf_eof)) {
204 i_size_write(inode, fattr->cf_eof);
207 * i_blocks is not related to (i_size / i_blksize),
208 * but instead 512 byte (2**9) size is required for
209 * calculating num blocks.
211 inode->i_blocks = (512 - 1 + fattr->cf_bytes) >> 9;
214 if (S_ISLNK(fattr->cf_mode)) {
215 kfree(cifs_i->symlink_target);
216 cifs_i->symlink_target = fattr->cf_symlink_target;
217 fattr->cf_symlink_target = NULL;
219 spin_unlock(&inode->i_lock);
221 if (fattr->cf_flags & CIFS_FATTR_DFS_REFERRAL)
222 inode->i_flags |= S_AUTOMOUNT;
223 if (inode->i_state & I_NEW)
229 cifs_fill_uniqueid(struct super_block *sb, struct cifs_fattr *fattr)
231 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
233 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)
236 fattr->cf_uniqueid = iunique(sb, ROOT_I);
239 /* Fill a cifs_fattr struct with info from FILE_UNIX_BASIC_INFO. */
241 cifs_unix_basic_to_fattr(struct cifs_fattr *fattr, FILE_UNIX_BASIC_INFO *info,
242 struct cifs_sb_info *cifs_sb)
244 memset(fattr, 0, sizeof(*fattr));
245 fattr->cf_uniqueid = le64_to_cpu(info->UniqueId);
246 fattr->cf_bytes = le64_to_cpu(info->NumOfBytes);
247 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
249 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
250 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastModificationTime);
251 fattr->cf_ctime = cifs_NTtimeToUnix(info->LastStatusChange);
252 /* old POSIX extensions don't get create time */
254 fattr->cf_mode = le64_to_cpu(info->Permissions);
257 * Since we set the inode type below we need to mask off
258 * to avoid strange results if bits set above.
260 fattr->cf_mode &= ~S_IFMT;
261 switch (le32_to_cpu(info->Type)) {
263 fattr->cf_mode |= S_IFREG;
264 fattr->cf_dtype = DT_REG;
267 fattr->cf_mode |= S_IFLNK;
268 fattr->cf_dtype = DT_LNK;
271 fattr->cf_mode |= S_IFDIR;
272 fattr->cf_dtype = DT_DIR;
275 fattr->cf_mode |= S_IFCHR;
276 fattr->cf_dtype = DT_CHR;
277 fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor),
278 le64_to_cpu(info->DevMinor) & MINORMASK);
281 fattr->cf_mode |= S_IFBLK;
282 fattr->cf_dtype = DT_BLK;
283 fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor),
284 le64_to_cpu(info->DevMinor) & MINORMASK);
287 fattr->cf_mode |= S_IFIFO;
288 fattr->cf_dtype = DT_FIFO;
291 fattr->cf_mode |= S_IFSOCK;
292 fattr->cf_dtype = DT_SOCK;
295 /* safest to call it a file if we do not know */
296 fattr->cf_mode |= S_IFREG;
297 fattr->cf_dtype = DT_REG;
298 cifs_dbg(FYI, "unknown type %d\n", le32_to_cpu(info->Type));
302 fattr->cf_uid = cifs_sb->ctx->linux_uid;
303 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)) {
304 u64 id = le64_to_cpu(info->Uid);
305 if (id < ((uid_t)-1)) {
306 kuid_t uid = make_kuid(&init_user_ns, id);
312 fattr->cf_gid = cifs_sb->ctx->linux_gid;
313 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)) {
314 u64 id = le64_to_cpu(info->Gid);
315 if (id < ((gid_t)-1)) {
316 kgid_t gid = make_kgid(&init_user_ns, id);
322 fattr->cf_nlink = le64_to_cpu(info->Nlinks);
326 * Fill a cifs_fattr struct with fake inode info.
328 * Needed to setup cifs_fattr data for the directory which is the
329 * junction to the new submount (ie to setup the fake directory
330 * which represents a DFS referral).
333 cifs_create_dfs_fattr(struct cifs_fattr *fattr, struct super_block *sb)
335 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
337 cifs_dbg(FYI, "creating fake fattr for DFS referral\n");
339 memset(fattr, 0, sizeof(*fattr));
340 fattr->cf_mode = S_IFDIR | S_IXUGO | S_IRWXU;
341 fattr->cf_uid = cifs_sb->ctx->linux_uid;
342 fattr->cf_gid = cifs_sb->ctx->linux_gid;
343 ktime_get_coarse_real_ts64(&fattr->cf_mtime);
344 fattr->cf_atime = fattr->cf_ctime = fattr->cf_mtime;
346 fattr->cf_flags = CIFS_FATTR_DFS_REFERRAL;
349 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
351 cifs_get_file_info_unix(struct file *filp)
355 FILE_UNIX_BASIC_INFO find_data;
356 struct cifs_fattr fattr = {};
357 struct inode *inode = file_inode(filp);
358 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
359 struct cifsFileInfo *cfile = filp->private_data;
360 struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
364 if (cfile->symlink_target) {
365 fattr.cf_symlink_target = kstrdup(cfile->symlink_target, GFP_KERNEL);
366 if (!fattr.cf_symlink_target) {
368 goto cifs_gfiunix_out;
372 rc = CIFSSMBUnixQFileInfo(xid, tcon, cfile->fid.netfid, &find_data);
374 cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb);
375 } else if (rc == -EREMOTE) {
376 cifs_create_dfs_fattr(&fattr, inode->i_sb);
379 goto cifs_gfiunix_out;
381 rc = cifs_fattr_to_inode(inode, &fattr);
388 int cifs_get_inode_info_unix(struct inode **pinode,
389 const unsigned char *full_path,
390 struct super_block *sb, unsigned int xid)
393 FILE_UNIX_BASIC_INFO find_data;
394 struct cifs_fattr fattr;
395 struct cifs_tcon *tcon;
396 struct TCP_Server_Info *server;
397 struct tcon_link *tlink;
398 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
400 cifs_dbg(FYI, "Getting info on %s\n", full_path);
402 tlink = cifs_sb_tlink(cifs_sb);
404 return PTR_ERR(tlink);
405 tcon = tlink_tcon(tlink);
406 server = tcon->ses->server;
408 /* could have done a find first instead but this returns more info */
409 rc = CIFSSMBUnixQPathInfo(xid, tcon, full_path, &find_data,
410 cifs_sb->local_nls, cifs_remap(cifs_sb));
411 cifs_dbg(FYI, "%s: query path info: rc = %d\n", __func__, rc);
412 cifs_put_tlink(tlink);
415 cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb);
416 } else if (rc == -EREMOTE) {
417 cifs_create_dfs_fattr(&fattr, sb);
423 /* check for Minshall+French symlinks */
424 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) {
425 int tmprc = check_mf_symlink(xid, tcon, cifs_sb, &fattr,
428 cifs_dbg(FYI, "check_mf_symlink: %d\n", tmprc);
431 if (S_ISLNK(fattr.cf_mode) && !fattr.cf_symlink_target) {
432 if (!server->ops->query_symlink)
434 rc = server->ops->query_symlink(xid, tcon, cifs_sb, full_path,
435 &fattr.cf_symlink_target, false);
437 cifs_dbg(FYI, "%s: query_symlink: %d\n", __func__, rc);
442 if (*pinode == NULL) {
444 cifs_fill_uniqueid(sb, &fattr);
445 *pinode = cifs_iget(sb, &fattr);
449 /* we already have inode, update it */
451 /* if uniqueid is different, return error */
452 if (unlikely(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM &&
453 CIFS_I(*pinode)->uniqueid != fattr.cf_uniqueid)) {
454 CIFS_I(*pinode)->time = 0; /* force reval */
459 /* if filetype is different, return error */
460 rc = cifs_fattr_to_inode(*pinode, &fattr);
464 kfree(fattr.cf_symlink_target);
468 int cifs_get_inode_info_unix(struct inode **pinode,
469 const unsigned char *full_path,
470 struct super_block *sb, unsigned int xid)
474 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
477 cifs_sfu_type(struct cifs_fattr *fattr, const char *path,
478 struct cifs_sb_info *cifs_sb, unsigned int xid)
482 struct tcon_link *tlink;
483 struct cifs_tcon *tcon;
485 struct cifs_open_parms oparms;
486 struct cifs_io_parms io_parms = {0};
488 unsigned int bytes_read;
490 int buf_type = CIFS_NO_BUFFER;
494 fattr->cf_mode &= ~S_IFMT;
496 if (fattr->cf_eof == 0) {
497 fattr->cf_mode |= S_IFIFO;
498 fattr->cf_dtype = DT_FIFO;
500 } else if (fattr->cf_eof < 8) {
501 fattr->cf_mode |= S_IFREG;
502 fattr->cf_dtype = DT_REG;
503 return -EINVAL; /* EOPNOTSUPP? */
506 tlink = cifs_sb_tlink(cifs_sb);
508 return PTR_ERR(tlink);
509 tcon = tlink_tcon(tlink);
511 oparms = (struct cifs_open_parms) {
514 .desired_access = GENERIC_READ,
515 .create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR),
516 .disposition = FILE_OPEN,
521 if (tcon->ses->server->oplocks)
525 rc = tcon->ses->server->ops->open(xid, &oparms, &oplock, NULL);
527 cifs_dbg(FYI, "check sfu type of %s, open rc = %d\n", path, rc);
528 cifs_put_tlink(tlink);
533 io_parms.netfid = fid.netfid;
534 io_parms.pid = current->tgid;
535 io_parms.tcon = tcon;
537 io_parms.length = 24;
539 rc = tcon->ses->server->ops->sync_read(xid, &fid, &io_parms,
540 &bytes_read, &pbuf, &buf_type);
541 if ((rc == 0) && (bytes_read >= 8)) {
542 if (memcmp("IntxBLK", pbuf, 8) == 0) {
543 cifs_dbg(FYI, "Block device\n");
544 fattr->cf_mode |= S_IFBLK;
545 fattr->cf_dtype = DT_BLK;
546 if (bytes_read == 24) {
547 /* we have enough to decode dev num */
548 __u64 mjr; /* major */
549 __u64 mnr; /* minor */
550 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
551 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
552 fattr->cf_rdev = MKDEV(mjr, mnr);
554 } else if (memcmp("IntxCHR", pbuf, 8) == 0) {
555 cifs_dbg(FYI, "Char device\n");
556 fattr->cf_mode |= S_IFCHR;
557 fattr->cf_dtype = DT_CHR;
558 if (bytes_read == 24) {
559 /* we have enough to decode dev num */
560 __u64 mjr; /* major */
561 __u64 mnr; /* minor */
562 mjr = le64_to_cpu(*(__le64 *)(pbuf+8));
563 mnr = le64_to_cpu(*(__le64 *)(pbuf+16));
564 fattr->cf_rdev = MKDEV(mjr, mnr);
566 } else if (memcmp("IntxLNK", pbuf, 7) == 0) {
567 cifs_dbg(FYI, "Symlink\n");
568 fattr->cf_mode |= S_IFLNK;
569 fattr->cf_dtype = DT_LNK;
571 fattr->cf_mode |= S_IFREG; /* file? */
572 fattr->cf_dtype = DT_REG;
576 fattr->cf_mode |= S_IFREG; /* then it is a file */
577 fattr->cf_dtype = DT_REG;
578 rc = -EOPNOTSUPP; /* or some unknown SFU type */
581 tcon->ses->server->ops->close(xid, tcon, &fid);
582 cifs_put_tlink(tlink);
586 #define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */
589 * Fetch mode bits as provided by SFU.
591 * FIXME: Doesn't this clobber the type bit we got from cifs_sfu_type ?
593 static int cifs_sfu_mode(struct cifs_fattr *fattr, const unsigned char *path,
594 struct cifs_sb_info *cifs_sb, unsigned int xid)
596 #ifdef CONFIG_CIFS_XATTR
600 struct tcon_link *tlink;
601 struct cifs_tcon *tcon;
603 tlink = cifs_sb_tlink(cifs_sb);
605 return PTR_ERR(tlink);
606 tcon = tlink_tcon(tlink);
608 if (tcon->ses->server->ops->query_all_EAs == NULL) {
609 cifs_put_tlink(tlink);
613 rc = tcon->ses->server->ops->query_all_EAs(xid, tcon, path,
614 "SETFILEBITS", ea_value, 4 /* size of buf */,
616 cifs_put_tlink(tlink);
620 mode = le32_to_cpu(*((__le32 *)ea_value));
621 fattr->cf_mode &= ~SFBITS_MASK;
622 cifs_dbg(FYI, "special bits 0%o org mode 0%o\n",
623 mode, fattr->cf_mode);
624 fattr->cf_mode = (mode & SFBITS_MASK) | fattr->cf_mode;
625 cifs_dbg(FYI, "special mode bits 0%o\n", mode);
634 /* Fill a cifs_fattr struct with info from POSIX info struct */
635 static void smb311_posix_info_to_fattr(struct cifs_fattr *fattr, struct cifs_open_info_data *data,
636 struct cifs_sid *owner,
637 struct cifs_sid *group,
638 struct super_block *sb, bool adjust_tz, bool symlink)
640 struct smb311_posix_qinfo *info = &data->posix_fi;
641 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
642 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
644 memset(fattr, 0, sizeof(*fattr));
646 /* no fattr->flags to set */
647 fattr->cf_cifsattrs = le32_to_cpu(info->DosAttributes);
648 fattr->cf_uniqueid = le64_to_cpu(info->Inode);
650 if (info->LastAccessTime)
651 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
653 ktime_get_coarse_real_ts64(&fattr->cf_atime);
655 fattr->cf_ctime = cifs_NTtimeToUnix(info->ChangeTime);
656 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastWriteTime);
659 fattr->cf_ctime.tv_sec += tcon->ses->server->timeAdj;
660 fattr->cf_mtime.tv_sec += tcon->ses->server->timeAdj;
663 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
664 fattr->cf_bytes = le64_to_cpu(info->AllocationSize);
665 fattr->cf_createtime = le64_to_cpu(info->CreationTime);
667 fattr->cf_nlink = le32_to_cpu(info->HardLinks);
668 fattr->cf_mode = (umode_t) le32_to_cpu(info->Mode);
669 /* The srv fs device id is overridden on network mount so setting rdev isn't needed here */
670 /* fattr->cf_rdev = le32_to_cpu(info->DeviceId); */
673 fattr->cf_mode |= S_IFLNK;
674 fattr->cf_dtype = DT_LNK;
675 fattr->cf_symlink_target = data->symlink_target;
676 data->symlink_target = NULL;
677 } else if (fattr->cf_cifsattrs & ATTR_DIRECTORY) {
678 fattr->cf_mode |= S_IFDIR;
679 fattr->cf_dtype = DT_DIR;
681 fattr->cf_mode |= S_IFREG;
682 fattr->cf_dtype = DT_REG;
684 /* else if reparse point ... TODO: add support for FIFO and blk dev; special file types */
686 sid_to_id(cifs_sb, owner, fattr, SIDOWNER);
687 sid_to_id(cifs_sb, group, fattr, SIDGROUP);
689 cifs_dbg(FYI, "POSIX query info: mode 0x%x uniqueid 0x%llx nlink %d\n",
690 fattr->cf_mode, fattr->cf_uniqueid, fattr->cf_nlink);
693 static void cifs_open_info_to_fattr(struct cifs_fattr *fattr, struct cifs_open_info_data *data,
694 struct super_block *sb, bool adjust_tz, bool symlink,
697 struct smb2_file_all_info *info = &data->fi;
698 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
699 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
701 memset(fattr, 0, sizeof(*fattr));
702 fattr->cf_cifsattrs = le32_to_cpu(info->Attributes);
703 if (info->DeletePending)
704 fattr->cf_flags |= CIFS_FATTR_DELETE_PENDING;
706 if (info->LastAccessTime)
707 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
709 ktime_get_coarse_real_ts64(&fattr->cf_atime);
711 fattr->cf_ctime = cifs_NTtimeToUnix(info->ChangeTime);
712 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastWriteTime);
715 fattr->cf_ctime.tv_sec += tcon->ses->server->timeAdj;
716 fattr->cf_mtime.tv_sec += tcon->ses->server->timeAdj;
719 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
720 fattr->cf_bytes = le64_to_cpu(info->AllocationSize);
721 fattr->cf_createtime = le64_to_cpu(info->CreationTime);
723 fattr->cf_nlink = le32_to_cpu(info->NumberOfLinks);
724 if (reparse_tag == IO_REPARSE_TAG_LX_SYMLINK) {
725 fattr->cf_mode |= S_IFLNK | cifs_sb->ctx->file_mode;
726 fattr->cf_dtype = DT_LNK;
727 } else if (reparse_tag == IO_REPARSE_TAG_LX_FIFO) {
728 fattr->cf_mode |= S_IFIFO | cifs_sb->ctx->file_mode;
729 fattr->cf_dtype = DT_FIFO;
730 } else if (reparse_tag == IO_REPARSE_TAG_AF_UNIX) {
731 fattr->cf_mode |= S_IFSOCK | cifs_sb->ctx->file_mode;
732 fattr->cf_dtype = DT_SOCK;
733 } else if (reparse_tag == IO_REPARSE_TAG_LX_CHR) {
734 fattr->cf_mode |= S_IFCHR | cifs_sb->ctx->file_mode;
735 fattr->cf_dtype = DT_CHR;
736 } else if (reparse_tag == IO_REPARSE_TAG_LX_BLK) {
737 fattr->cf_mode |= S_IFBLK | cifs_sb->ctx->file_mode;
738 fattr->cf_dtype = DT_BLK;
739 } else if (symlink || reparse_tag == IO_REPARSE_TAG_SYMLINK ||
740 reparse_tag == IO_REPARSE_TAG_NFS) {
741 fattr->cf_mode = S_IFLNK;
742 fattr->cf_dtype = DT_LNK;
743 } else if (fattr->cf_cifsattrs & ATTR_DIRECTORY) {
744 fattr->cf_mode = S_IFDIR | cifs_sb->ctx->dir_mode;
745 fattr->cf_dtype = DT_DIR;
747 * Server can return wrong NumberOfLinks value for directories
748 * when Unix extensions are disabled - fake it.
751 fattr->cf_flags |= CIFS_FATTR_UNKNOWN_NLINK;
753 fattr->cf_mode = S_IFREG | cifs_sb->ctx->file_mode;
754 fattr->cf_dtype = DT_REG;
756 /* clear write bits if ATTR_READONLY is set */
757 if (fattr->cf_cifsattrs & ATTR_READONLY)
758 fattr->cf_mode &= ~(S_IWUGO);
761 * Don't accept zero nlink from non-unix servers unless
762 * delete is pending. Instead mark it as unknown.
764 if ((fattr->cf_nlink < 1) && !tcon->unix_ext &&
765 !info->DeletePending) {
766 cifs_dbg(VFS, "bogus file nlink value %u\n",
768 fattr->cf_flags |= CIFS_FATTR_UNKNOWN_NLINK;
772 if (S_ISLNK(fattr->cf_mode)) {
773 fattr->cf_symlink_target = data->symlink_target;
774 data->symlink_target = NULL;
777 fattr->cf_uid = cifs_sb->ctx->linux_uid;
778 fattr->cf_gid = cifs_sb->ctx->linux_gid;
782 cifs_get_file_info(struct file *filp)
786 struct cifs_open_info_data data = {};
787 struct cifs_fattr fattr;
788 struct inode *inode = file_inode(filp);
789 struct cifsFileInfo *cfile = filp->private_data;
790 struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
791 struct TCP_Server_Info *server = tcon->ses->server;
792 bool symlink = false;
795 if (!server->ops->query_file_info)
799 rc = server->ops->query_file_info(xid, tcon, cfile, &data);
802 /* TODO: add support to query reparse tag */
803 if (data.symlink_target) {
805 tag = IO_REPARSE_TAG_SYMLINK;
807 cifs_open_info_to_fattr(&fattr, &data, inode->i_sb, false, symlink, tag);
810 cifs_create_dfs_fattr(&fattr, inode->i_sb);
816 * FIXME: legacy server -- fall back to path-based call?
817 * for now, just skip revalidating and mark inode for
821 CIFS_I(inode)->time = 0;
828 * don't bother with SFU junk here -- just mark inode as needing
831 fattr.cf_uniqueid = CIFS_I(inode)->uniqueid;
832 fattr.cf_flags |= CIFS_FATTR_NEED_REVAL;
833 /* if filetype is different, return error */
834 rc = cifs_fattr_to_inode(inode, &fattr);
836 cifs_free_open_info(&data);
841 /* Simple function to return a 64 bit hash of string. Rarely called */
842 static __u64 simple_hashstr(const char *str)
844 const __u64 hash_mult = 1125899906842597ULL; /* a big enough prime */
848 hash = (hash + (__u64) *str++) * hash_mult;
853 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
855 * cifs_backup_query_path_info - SMB1 fallback code to get ino
857 * Fallback code to get file metadata when we don't have access to
858 * full_path (EACCES) and have backup creds.
860 * @xid: transaction id used to identify original request in logs
861 * @tcon: information about the server share we have mounted
862 * @sb: the superblock stores info such as disk space available
863 * @full_path: name of the file we are getting the metadata for
864 * @resp_buf: will be set to cifs resp buf and needs to be freed with
865 * cifs_buf_release() when done with @data
866 * @data: will be set to search info result buffer
869 cifs_backup_query_path_info(int xid,
870 struct cifs_tcon *tcon,
871 struct super_block *sb,
872 const char *full_path,
874 FILE_ALL_INFO **data)
876 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
877 struct cifs_search_info info = {0};
882 info.endOfSearch = false;
884 info.info_level = SMB_FIND_FILE_UNIX;
885 else if ((tcon->ses->capabilities &
886 tcon->ses->server->vals->cap_nt_find) == 0)
887 info.info_level = SMB_FIND_FILE_INFO_STANDARD;
888 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)
889 info.info_level = SMB_FIND_FILE_ID_FULL_DIR_INFO;
890 else /* no srvino useful for fallback to some netapp */
891 info.info_level = SMB_FIND_FILE_DIRECTORY_INFO;
893 flags = CIFS_SEARCH_CLOSE_ALWAYS |
894 CIFS_SEARCH_CLOSE_AT_END |
895 CIFS_SEARCH_BACKUP_SEARCH;
897 rc = CIFSFindFirst(xid, tcon, full_path,
898 cifs_sb, NULL, flags, &info, false);
902 *resp_buf = (void *)info.ntwrk_buf_start;
903 *data = (FILE_ALL_INFO *)info.srch_entries_start;
906 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
908 static void cifs_set_fattr_ino(int xid, struct cifs_tcon *tcon, struct super_block *sb,
909 struct inode **inode, const char *full_path,
910 struct cifs_open_info_data *data, struct cifs_fattr *fattr)
912 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
913 struct TCP_Server_Info *server = tcon->ses->server;
916 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) {
918 fattr->cf_uniqueid = CIFS_I(*inode)->uniqueid;
920 fattr->cf_uniqueid = iunique(sb, ROOT_I);
925 * If we have an inode pass a NULL tcon to ensure we don't
926 * make a round trip to the server. This only works for SMB2+.
928 rc = server->ops->get_srv_inum(xid, *inode ? NULL : tcon, cifs_sb, full_path,
929 &fattr->cf_uniqueid, data);
932 * If that fails reuse existing ino or generate one
933 * and disable server ones
936 fattr->cf_uniqueid = CIFS_I(*inode)->uniqueid;
938 fattr->cf_uniqueid = iunique(sb, ROOT_I);
939 cifs_autodisable_serverino(cifs_sb);
944 /* If no errors, check for zero root inode (invalid) */
945 if (fattr->cf_uniqueid == 0 && strlen(full_path) == 0) {
946 cifs_dbg(FYI, "Invalid (0) inodenum\n");
949 fattr->cf_uniqueid = CIFS_I(*inode)->uniqueid;
951 /* make an ino by hashing the UNC */
952 fattr->cf_flags |= CIFS_FATTR_FAKE_ROOT_INO;
953 fattr->cf_uniqueid = simple_hashstr(tcon->tree_name);
958 static inline bool is_inode_cache_good(struct inode *ino)
960 return ino && CIFS_CACHE_READ(CIFS_I(ino)) && CIFS_I(ino)->time != 0;
963 int cifs_get_inode_info(struct inode **inode, const char *full_path,
964 struct cifs_open_info_data *data, struct super_block *sb, int xid,
965 const struct cifs_fid *fid)
967 struct cifs_tcon *tcon;
968 struct TCP_Server_Info *server;
969 struct tcon_link *tlink;
970 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
971 bool adjust_tz = false;
972 struct cifs_fattr fattr = {0};
973 bool is_reparse_point = false;
974 struct cifs_open_info_data tmp_data = {};
975 void *smb1_backup_rsp_buf = NULL;
978 __u32 reparse_tag = 0;
980 tlink = cifs_sb_tlink(cifs_sb);
982 return PTR_ERR(tlink);
983 tcon = tlink_tcon(tlink);
984 server = tcon->ses->server;
987 * 1. Fetch file metadata if not provided (data)
991 if (is_inode_cache_good(*inode)) {
992 cifs_dbg(FYI, "No need to revalidate cached inode sizes\n");
995 rc = server->ops->query_path_info(xid, tcon, cifs_sb, full_path, &tmp_data,
996 &adjust_tz, &is_reparse_point);
1001 * 2. Convert it to internal cifs metadata (fattr)
1007 * If the file is a reparse point, it is more complicated
1008 * since we have to check if its reparse tag matches a known
1009 * special file type e.g. symlink or fifo or char etc.
1011 if (is_reparse_point && data->symlink_target) {
1012 reparse_tag = IO_REPARSE_TAG_SYMLINK;
1013 } else if ((le32_to_cpu(data->fi.Attributes) & ATTR_REPARSE) &&
1014 server->ops->query_reparse_tag) {
1015 tmprc = server->ops->query_reparse_tag(xid, tcon, cifs_sb, full_path,
1018 cifs_dbg(FYI, "%s: query_reparse_tag: rc = %d\n", __func__, tmprc);
1019 if (server->ops->query_symlink) {
1020 tmprc = server->ops->query_symlink(xid, tcon, cifs_sb, full_path,
1021 &data->symlink_target,
1024 cifs_dbg(FYI, "%s: query_symlink: rc = %d\n", __func__,
1028 cifs_open_info_to_fattr(&fattr, data, sb, adjust_tz, is_reparse_point, reparse_tag);
1031 /* DFS link, no metadata available on this server */
1032 cifs_create_dfs_fattr(&fattr, sb);
1036 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
1038 * perm errors, try again with backup flags if possible
1040 * For SMB2 and later the backup intent flag
1041 * is already sent if needed on open and there
1042 * is no path based FindFirst operation to use
1045 if (backup_cred(cifs_sb) && is_smb1_server(server)) {
1046 /* for easier reading */
1048 FILE_DIRECTORY_INFO *fdi;
1049 SEARCH_ID_FULL_DIR_INFO *si;
1051 rc = cifs_backup_query_path_info(xid, tcon, sb,
1053 &smb1_backup_rsp_buf,
1058 move_cifs_info_to_smb2(&data->fi, fi);
1059 fdi = (FILE_DIRECTORY_INFO *)fi;
1060 si = (SEARCH_ID_FULL_DIR_INFO *)fi;
1062 cifs_dir_info_to_fattr(&fattr, fdi, cifs_sb);
1063 fattr.cf_uniqueid = le64_to_cpu(si->UniqueId);
1064 /* uniqueid set, skip get inum step */
1065 goto handle_mnt_opt;
1067 /* nothing we can do, bail out */
1072 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
1075 cifs_dbg(FYI, "%s: unhandled err rc %d\n", __func__, rc);
1080 * 3. Get or update inode number (fattr.cf_uniqueid)
1083 cifs_set_fattr_ino(xid, tcon, sb, inode, full_path, data, &fattr);
1086 * 4. Tweak fattr based on mount options
1088 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
1090 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
1091 /* query for SFU type info if supported and needed */
1092 if (fattr.cf_cifsattrs & ATTR_SYSTEM &&
1093 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
1094 tmprc = cifs_sfu_type(&fattr, full_path, cifs_sb, xid);
1096 cifs_dbg(FYI, "cifs_sfu_type failed: %d\n", tmprc);
1099 /* fill in 0777 bits from ACL */
1100 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MODE_FROM_SID) {
1101 rc = cifs_acl_to_fattr(cifs_sb, &fattr, *inode, true,
1106 cifs_dbg(FYI, "%s: Get mode from SID failed. rc=%d\n",
1110 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
1111 rc = cifs_acl_to_fattr(cifs_sb, &fattr, *inode, false,
1116 cifs_dbg(FYI, "%s: Getting ACL failed with error: %d\n",
1122 /* fill in remaining high mode bits e.g. SUID, VTX */
1123 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)
1124 cifs_sfu_mode(&fattr, full_path, cifs_sb, xid);
1126 /* check for Minshall+French symlinks */
1127 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) {
1128 tmprc = check_mf_symlink(xid, tcon, cifs_sb, &fattr,
1131 cifs_dbg(FYI, "check_mf_symlink: %d\n", tmprc);
1135 * 5. Update inode with final fattr data
1139 *inode = cifs_iget(sb, &fattr);
1143 /* we already have inode, update it */
1145 /* if uniqueid is different, return error */
1146 if (unlikely(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM &&
1147 CIFS_I(*inode)->uniqueid != fattr.cf_uniqueid)) {
1148 CIFS_I(*inode)->time = 0; /* force reval */
1152 /* if filetype is different, return error */
1153 rc = cifs_fattr_to_inode(*inode, &fattr);
1156 cifs_buf_release(smb1_backup_rsp_buf);
1157 cifs_put_tlink(tlink);
1158 cifs_free_open_info(&tmp_data);
1159 kfree(fattr.cf_symlink_target);
1164 smb311_posix_get_inode_info(struct inode **inode,
1165 const char *full_path,
1166 struct super_block *sb, unsigned int xid)
1168 struct cifs_tcon *tcon;
1169 struct tcon_link *tlink;
1170 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
1171 bool adjust_tz = false;
1172 struct cifs_fattr fattr = {0};
1173 bool symlink = false;
1174 struct cifs_open_info_data data = {};
1175 struct cifs_sid owner, group;
1179 tlink = cifs_sb_tlink(cifs_sb);
1181 return PTR_ERR(tlink);
1182 tcon = tlink_tcon(tlink);
1185 * 1. Fetch file metadata
1188 if (is_inode_cache_good(*inode)) {
1189 cifs_dbg(FYI, "No need to revalidate cached inode sizes\n");
1193 rc = smb311_posix_query_path_info(xid, tcon, cifs_sb, full_path, &data,
1194 &owner, &group, &adjust_tz,
1198 * 2. Convert it to internal cifs metadata (fattr)
1203 smb311_posix_info_to_fattr(&fattr, &data, &owner, &group,
1204 sb, adjust_tz, symlink);
1207 /* DFS link, no metadata available on this server */
1208 cifs_create_dfs_fattr(&fattr, sb);
1213 * For SMB2 and later the backup intent flag
1214 * is already sent if needed on open and there
1215 * is no path based FindFirst operation to use
1216 * to retry with so nothing we can do, bail out
1220 cifs_dbg(FYI, "%s: unhandled err rc %d\n", __func__, rc);
1226 * 3. Tweak fattr based on mount options
1229 /* check for Minshall+French symlinks */
1230 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) {
1231 tmprc = check_mf_symlink(xid, tcon, cifs_sb, &fattr,
1234 cifs_dbg(FYI, "check_mf_symlink: %d\n", tmprc);
1238 * 4. Update inode with final fattr data
1242 *inode = cifs_iget(sb, &fattr);
1246 /* we already have inode, update it */
1248 /* if uniqueid is different, return error */
1249 if (unlikely(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM &&
1250 CIFS_I(*inode)->uniqueid != fattr.cf_uniqueid)) {
1251 CIFS_I(*inode)->time = 0; /* force reval */
1256 /* if filetype is different, return error */
1257 rc = cifs_fattr_to_inode(*inode, &fattr);
1260 cifs_put_tlink(tlink);
1261 cifs_free_open_info(&data);
1262 kfree(fattr.cf_symlink_target);
1267 static const struct inode_operations cifs_ipc_inode_ops = {
1268 .lookup = cifs_lookup,
1272 cifs_find_inode(struct inode *inode, void *opaque)
1274 struct cifs_fattr *fattr = opaque;
1276 /* don't match inode with different uniqueid */
1277 if (CIFS_I(inode)->uniqueid != fattr->cf_uniqueid)
1280 /* use createtime like an i_generation field */
1281 if (CIFS_I(inode)->createtime != fattr->cf_createtime)
1284 /* don't match inode of different type */
1285 if (inode_wrong_type(inode, fattr->cf_mode))
1288 /* if it's not a directory or has no dentries, then flag it */
1289 if (S_ISDIR(inode->i_mode) && !hlist_empty(&inode->i_dentry))
1290 fattr->cf_flags |= CIFS_FATTR_INO_COLLISION;
1296 cifs_init_inode(struct inode *inode, void *opaque)
1298 struct cifs_fattr *fattr = opaque;
1300 CIFS_I(inode)->uniqueid = fattr->cf_uniqueid;
1301 CIFS_I(inode)->createtime = fattr->cf_createtime;
1306 * walk dentry list for an inode and report whether it has aliases that
1307 * are hashed. We use this to determine if a directory inode can actually
1311 inode_has_hashed_dentries(struct inode *inode)
1313 struct dentry *dentry;
1315 spin_lock(&inode->i_lock);
1316 hlist_for_each_entry(dentry, &inode->i_dentry, d_u.d_alias) {
1317 if (!d_unhashed(dentry) || IS_ROOT(dentry)) {
1318 spin_unlock(&inode->i_lock);
1322 spin_unlock(&inode->i_lock);
1326 /* Given fattrs, get a corresponding inode */
1328 cifs_iget(struct super_block *sb, struct cifs_fattr *fattr)
1331 struct inode *inode;
1334 cifs_dbg(FYI, "looking for uniqueid=%llu\n", fattr->cf_uniqueid);
1336 /* hash down to 32-bits on 32-bit arch */
1337 hash = cifs_uniqueid_to_ino_t(fattr->cf_uniqueid);
1339 inode = iget5_locked(sb, hash, cifs_find_inode, cifs_init_inode, fattr);
1341 /* was there a potentially problematic inode collision? */
1342 if (fattr->cf_flags & CIFS_FATTR_INO_COLLISION) {
1343 fattr->cf_flags &= ~CIFS_FATTR_INO_COLLISION;
1345 if (inode_has_hashed_dentries(inode)) {
1346 cifs_autodisable_serverino(CIFS_SB(sb));
1348 fattr->cf_uniqueid = iunique(sb, ROOT_I);
1349 goto retry_iget5_locked;
1353 /* can't fail - see cifs_find_inode() */
1354 cifs_fattr_to_inode(inode, fattr);
1355 if (sb->s_flags & SB_NOATIME)
1356 inode->i_flags |= S_NOATIME | S_NOCMTIME;
1357 if (inode->i_state & I_NEW) {
1358 inode->i_ino = hash;
1359 cifs_fscache_get_inode_cookie(inode);
1360 unlock_new_inode(inode);
1367 /* gets root inode */
1368 struct inode *cifs_root_iget(struct super_block *sb)
1371 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
1372 struct inode *inode = NULL;
1374 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
1378 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH)
1379 && cifs_sb->prepath) {
1380 len = strlen(cifs_sb->prepath);
1381 path = kzalloc(len + 2 /* leading sep + null */, GFP_KERNEL);
1383 return ERR_PTR(-ENOMEM);
1385 memcpy(path+1, cifs_sb->prepath, len);
1387 path = kstrdup("", GFP_KERNEL);
1389 return ERR_PTR(-ENOMEM);
1393 if (tcon->unix_ext) {
1394 rc = cifs_get_inode_info_unix(&inode, path, sb, xid);
1395 /* some servers mistakenly claim POSIX support */
1396 if (rc != -EOPNOTSUPP)
1398 cifs_dbg(VFS, "server does not support POSIX extensions\n");
1399 tcon->unix_ext = false;
1402 convert_delimiter(path, CIFS_DIR_SEP(cifs_sb));
1403 if (tcon->posix_extensions)
1404 rc = smb311_posix_get_inode_info(&inode, path, sb, xid);
1406 rc = cifs_get_inode_info(&inode, path, NULL, sb, xid, NULL);
1410 inode = ERR_PTR(rc);
1414 if (rc && tcon->pipe) {
1415 cifs_dbg(FYI, "ipc connection - fake read inode\n");
1416 spin_lock(&inode->i_lock);
1417 inode->i_mode |= S_IFDIR;
1418 set_nlink(inode, 2);
1419 inode->i_op = &cifs_ipc_inode_ops;
1420 inode->i_fop = &simple_dir_operations;
1421 inode->i_uid = cifs_sb->ctx->linux_uid;
1422 inode->i_gid = cifs_sb->ctx->linux_gid;
1423 spin_unlock(&inode->i_lock);
1426 inode = ERR_PTR(rc);
1436 cifs_set_file_info(struct inode *inode, struct iattr *attrs, unsigned int xid,
1437 const char *full_path, __u32 dosattr)
1439 bool set_time = false;
1440 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
1441 struct TCP_Server_Info *server;
1442 FILE_BASIC_INFO info_buf;
1447 server = cifs_sb_master_tcon(cifs_sb)->ses->server;
1448 if (!server->ops->set_file_info)
1453 if (attrs->ia_valid & ATTR_ATIME) {
1455 info_buf.LastAccessTime =
1456 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_atime));
1458 info_buf.LastAccessTime = 0;
1460 if (attrs->ia_valid & ATTR_MTIME) {
1462 info_buf.LastWriteTime =
1463 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_mtime));
1465 info_buf.LastWriteTime = 0;
1468 * Samba throws this field away, but windows may actually use it.
1469 * Do not set ctime unless other time stamps are changed explicitly
1470 * (i.e. by utimes()) since we would then have a mix of client and
1473 if (set_time && (attrs->ia_valid & ATTR_CTIME)) {
1474 cifs_dbg(FYI, "CIFS - CTIME changed\n");
1475 info_buf.ChangeTime =
1476 cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_ctime));
1478 info_buf.ChangeTime = 0;
1480 info_buf.CreationTime = 0; /* don't change */
1481 info_buf.Attributes = cpu_to_le32(dosattr);
1483 return server->ops->set_file_info(inode, full_path, &info_buf, xid);
1486 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
1488 * Open the given file (if it isn't already), set the DELETE_ON_CLOSE bit
1489 * and rename it to a random name that hopefully won't conflict with
1493 cifs_rename_pending_delete(const char *full_path, struct dentry *dentry,
1494 const unsigned int xid)
1498 struct cifs_fid fid;
1499 struct cifs_open_parms oparms;
1500 struct inode *inode = d_inode(dentry);
1501 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
1502 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
1503 struct tcon_link *tlink;
1504 struct cifs_tcon *tcon;
1505 __u32 dosattr, origattr;
1506 FILE_BASIC_INFO *info_buf = NULL;
1508 tlink = cifs_sb_tlink(cifs_sb);
1510 return PTR_ERR(tlink);
1511 tcon = tlink_tcon(tlink);
1514 * We cannot rename the file if the server doesn't support
1515 * CAP_INFOLEVEL_PASSTHRU
1517 if (!(tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)) {
1522 oparms = (struct cifs_open_parms) {
1525 .desired_access = DELETE | FILE_WRITE_ATTRIBUTES,
1526 .create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR),
1527 .disposition = FILE_OPEN,
1532 rc = CIFS_open(xid, &oparms, &oplock, NULL);
1536 origattr = cifsInode->cifsAttrs;
1538 origattr |= ATTR_NORMAL;
1540 dosattr = origattr & ~ATTR_READONLY;
1542 dosattr |= ATTR_NORMAL;
1543 dosattr |= ATTR_HIDDEN;
1545 /* set ATTR_HIDDEN and clear ATTR_READONLY, but only if needed */
1546 if (dosattr != origattr) {
1547 info_buf = kzalloc(sizeof(*info_buf), GFP_KERNEL);
1548 if (info_buf == NULL) {
1552 info_buf->Attributes = cpu_to_le32(dosattr);
1553 rc = CIFSSMBSetFileInfo(xid, tcon, info_buf, fid.netfid,
1555 /* although we would like to mark the file hidden
1556 if that fails we will still try to rename it */
1558 cifsInode->cifsAttrs = dosattr;
1560 dosattr = origattr; /* since not able to change them */
1563 /* rename the file */
1564 rc = CIFSSMBRenameOpenFile(xid, tcon, fid.netfid, NULL,
1566 cifs_remap(cifs_sb));
1572 /* try to set DELETE_ON_CLOSE */
1573 if (!test_bit(CIFS_INO_DELETE_PENDING, &cifsInode->flags)) {
1574 rc = CIFSSMBSetFileDisposition(xid, tcon, true, fid.netfid,
1577 * some samba versions return -ENOENT when we try to set the
1578 * file disposition here. Likely a samba bug, but work around
1579 * it for now. This means that some cifsXXX files may hang
1580 * around after they shouldn't.
1582 * BB: remove this hack after more servers have the fix
1590 set_bit(CIFS_INO_DELETE_PENDING, &cifsInode->flags);
1594 CIFSSMBClose(xid, tcon, fid.netfid);
1597 cifs_put_tlink(tlink);
1601 * reset everything back to the original state. Don't bother
1602 * dealing with errors here since we can't do anything about
1606 CIFSSMBRenameOpenFile(xid, tcon, fid.netfid, dentry->d_name.name,
1607 cifs_sb->local_nls, cifs_remap(cifs_sb));
1609 if (dosattr != origattr) {
1610 info_buf->Attributes = cpu_to_le32(origattr);
1611 if (!CIFSSMBSetFileInfo(xid, tcon, info_buf, fid.netfid,
1613 cifsInode->cifsAttrs = origattr;
1618 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
1620 /* copied from fs/nfs/dir.c with small changes */
1622 cifs_drop_nlink(struct inode *inode)
1624 spin_lock(&inode->i_lock);
1625 if (inode->i_nlink > 0)
1627 spin_unlock(&inode->i_lock);
1631 * If d_inode(dentry) is null (usually meaning the cached dentry
1632 * is a negative dentry) then we would attempt a standard SMB delete, but
1633 * if that fails we can not attempt the fall back mechanisms on EACCES
1634 * but will return the EACCES to the caller. Note that the VFS does not call
1635 * unlink on negative dentries currently.
1637 int cifs_unlink(struct inode *dir, struct dentry *dentry)
1641 const char *full_path;
1643 struct inode *inode = d_inode(dentry);
1644 struct cifsInodeInfo *cifs_inode;
1645 struct super_block *sb = dir->i_sb;
1646 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
1647 struct tcon_link *tlink;
1648 struct cifs_tcon *tcon;
1649 struct TCP_Server_Info *server;
1650 struct iattr *attrs = NULL;
1651 __u32 dosattr = 0, origattr = 0;
1653 cifs_dbg(FYI, "cifs_unlink, dir=0x%p, dentry=0x%p\n", dir, dentry);
1655 if (unlikely(cifs_forced_shutdown(cifs_sb)))
1658 tlink = cifs_sb_tlink(cifs_sb);
1660 return PTR_ERR(tlink);
1661 tcon = tlink_tcon(tlink);
1662 server = tcon->ses->server;
1665 page = alloc_dentry_path();
1667 if (tcon->nodelete) {
1672 /* Unlink can be called from rename so we can not take the
1673 * sb->s_vfs_rename_mutex here */
1674 full_path = build_path_from_dentry(dentry, page);
1675 if (IS_ERR(full_path)) {
1676 rc = PTR_ERR(full_path);
1680 cifs_close_deferred_file_under_dentry(tcon, full_path);
1681 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
1682 if (cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP &
1683 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
1684 rc = CIFSPOSIXDelFile(xid, tcon, full_path,
1685 SMB_POSIX_UNLINK_FILE_TARGET, cifs_sb->local_nls,
1686 cifs_remap(cifs_sb));
1687 cifs_dbg(FYI, "posix del rc %d\n", rc);
1688 if ((rc == 0) || (rc == -ENOENT))
1689 goto psx_del_no_retry;
1691 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
1694 if (!server->ops->unlink) {
1696 goto psx_del_no_retry;
1699 rc = server->ops->unlink(xid, tcon, full_path, cifs_sb);
1704 cifs_drop_nlink(inode);
1705 } else if (rc == -ENOENT) {
1707 } else if (rc == -EBUSY) {
1708 if (server->ops->rename_pending_delete) {
1709 rc = server->ops->rename_pending_delete(full_path,
1712 cifs_drop_nlink(inode);
1714 } else if ((rc == -EACCES) && (dosattr == 0) && inode) {
1715 attrs = kzalloc(sizeof(*attrs), GFP_KERNEL);
1716 if (attrs == NULL) {
1721 /* try to reset dos attributes */
1722 cifs_inode = CIFS_I(inode);
1723 origattr = cifs_inode->cifsAttrs;
1725 origattr |= ATTR_NORMAL;
1726 dosattr = origattr & ~ATTR_READONLY;
1728 dosattr |= ATTR_NORMAL;
1729 dosattr |= ATTR_HIDDEN;
1731 rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr);
1735 goto retry_std_delete;
1738 /* undo the setattr if we errored out and it's needed */
1739 if (rc != 0 && dosattr != 0)
1740 cifs_set_file_info(inode, attrs, xid, full_path, origattr);
1744 cifs_inode = CIFS_I(inode);
1745 cifs_inode->time = 0; /* will force revalidate to get info
1747 inode->i_ctime = current_time(inode);
1749 dir->i_ctime = dir->i_mtime = current_time(dir);
1750 cifs_inode = CIFS_I(dir);
1751 CIFS_I(dir)->time = 0; /* force revalidate of dir as well */
1753 free_dentry_path(page);
1756 cifs_put_tlink(tlink);
1761 cifs_mkdir_qinfo(struct inode *parent, struct dentry *dentry, umode_t mode,
1762 const char *full_path, struct cifs_sb_info *cifs_sb,
1763 struct cifs_tcon *tcon, const unsigned int xid)
1766 struct inode *inode = NULL;
1768 if (tcon->posix_extensions)
1769 rc = smb311_posix_get_inode_info(&inode, full_path, parent->i_sb, xid);
1770 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
1771 else if (tcon->unix_ext)
1772 rc = cifs_get_inode_info_unix(&inode, full_path, parent->i_sb,
1774 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
1776 rc = cifs_get_inode_info(&inode, full_path, NULL, parent->i_sb,
1782 if (!S_ISDIR(inode->i_mode)) {
1784 * mkdir succeeded, but another client has managed to remove the
1785 * sucker and replace it with non-directory. Return success,
1786 * but don't leave the child in dcache.
1793 * setting nlink not necessary except in cases where we failed to get it
1794 * from the server or was set bogus. Also, since this is a brand new
1795 * inode, no need to grab the i_lock before setting the i_nlink.
1797 if (inode->i_nlink < 2)
1798 set_nlink(inode, 2);
1799 mode &= ~current_umask();
1800 /* must turn on setgid bit if parent dir has it */
1801 if (parent->i_mode & S_ISGID)
1804 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
1805 if (tcon->unix_ext) {
1806 struct cifs_unix_set_info_args args = {
1808 .ctime = NO_CHANGE_64,
1809 .atime = NO_CHANGE_64,
1810 .mtime = NO_CHANGE_64,
1813 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
1814 args.uid = current_fsuid();
1815 if (parent->i_mode & S_ISGID)
1816 args.gid = parent->i_gid;
1818 args.gid = current_fsgid();
1820 args.uid = INVALID_UID; /* no change */
1821 args.gid = INVALID_GID; /* no change */
1823 CIFSSMBUnixSetPathInfo(xid, tcon, full_path, &args,
1825 cifs_remap(cifs_sb));
1829 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
1830 struct TCP_Server_Info *server = tcon->ses->server;
1831 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) &&
1832 (mode & S_IWUGO) == 0 && server->ops->mkdir_setinfo)
1833 server->ops->mkdir_setinfo(inode, full_path, cifs_sb,
1835 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)
1836 inode->i_mode = (mode | S_IFDIR);
1838 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
1839 inode->i_uid = current_fsuid();
1840 if (inode->i_mode & S_ISGID)
1841 inode->i_gid = parent->i_gid;
1843 inode->i_gid = current_fsgid();
1846 d_instantiate(dentry, inode);
1850 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
1852 cifs_posix_mkdir(struct inode *inode, struct dentry *dentry, umode_t mode,
1853 const char *full_path, struct cifs_sb_info *cifs_sb,
1854 struct cifs_tcon *tcon, const unsigned int xid)
1858 FILE_UNIX_BASIC_INFO *info = NULL;
1859 struct inode *newinode = NULL;
1860 struct cifs_fattr fattr;
1862 info = kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL);
1865 goto posix_mkdir_out;
1868 mode &= ~current_umask();
1869 rc = CIFSPOSIXCreate(xid, tcon, SMB_O_DIRECTORY | SMB_O_CREAT, mode,
1870 NULL /* netfid */, info, &oplock, full_path,
1871 cifs_sb->local_nls, cifs_remap(cifs_sb));
1872 if (rc == -EOPNOTSUPP)
1873 goto posix_mkdir_out;
1875 cifs_dbg(FYI, "posix mkdir returned 0x%x\n", rc);
1877 goto posix_mkdir_out;
1880 if (info->Type == cpu_to_le32(-1))
1881 /* no return info, go query for it */
1882 goto posix_mkdir_get_info;
1884 * BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if
1885 * need to set uid/gid.
1888 cifs_unix_basic_to_fattr(&fattr, info, cifs_sb);
1889 cifs_fill_uniqueid(inode->i_sb, &fattr);
1890 newinode = cifs_iget(inode->i_sb, &fattr);
1892 goto posix_mkdir_get_info;
1894 d_instantiate(dentry, newinode);
1896 #ifdef CONFIG_CIFS_DEBUG2
1897 cifs_dbg(FYI, "instantiated dentry %p %pd to inode %p\n",
1898 dentry, dentry, newinode);
1900 if (newinode->i_nlink != 2)
1901 cifs_dbg(FYI, "unexpected number of links %d\n",
1908 posix_mkdir_get_info:
1909 rc = cifs_mkdir_qinfo(inode, dentry, mode, full_path, cifs_sb, tcon,
1911 goto posix_mkdir_out;
1913 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
1915 int cifs_mkdir(struct mnt_idmap *idmap, struct inode *inode,
1916 struct dentry *direntry, umode_t mode)
1920 struct cifs_sb_info *cifs_sb;
1921 struct tcon_link *tlink;
1922 struct cifs_tcon *tcon;
1923 struct TCP_Server_Info *server;
1924 const char *full_path;
1927 cifs_dbg(FYI, "In cifs_mkdir, mode = %04ho inode = 0x%p\n",
1930 cifs_sb = CIFS_SB(inode->i_sb);
1931 if (unlikely(cifs_forced_shutdown(cifs_sb)))
1933 tlink = cifs_sb_tlink(cifs_sb);
1935 return PTR_ERR(tlink);
1936 tcon = tlink_tcon(tlink);
1940 page = alloc_dentry_path();
1941 full_path = build_path_from_dentry(direntry, page);
1942 if (IS_ERR(full_path)) {
1943 rc = PTR_ERR(full_path);
1947 server = tcon->ses->server;
1949 if ((server->ops->posix_mkdir) && (tcon->posix_extensions)) {
1950 rc = server->ops->posix_mkdir(xid, inode, mode, tcon, full_path,
1952 d_drop(direntry); /* for time being always refresh inode info */
1956 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
1957 if (cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP &
1958 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
1959 rc = cifs_posix_mkdir(inode, direntry, mode, full_path, cifs_sb,
1961 if (rc != -EOPNOTSUPP)
1964 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
1966 if (!server->ops->mkdir) {
1971 /* BB add setting the equivalent of mode via CreateX w/ACLs */
1972 rc = server->ops->mkdir(xid, inode, mode, tcon, full_path, cifs_sb);
1974 cifs_dbg(FYI, "cifs_mkdir returned 0x%x\n", rc);
1979 /* TODO: skip this for smb2/smb3 */
1980 rc = cifs_mkdir_qinfo(inode, direntry, mode, full_path, cifs_sb, tcon,
1984 * Force revalidate to get parent dir info when needed since cached
1985 * attributes are invalid now.
1987 CIFS_I(inode)->time = 0;
1988 free_dentry_path(page);
1990 cifs_put_tlink(tlink);
1994 int cifs_rmdir(struct inode *inode, struct dentry *direntry)
1998 struct cifs_sb_info *cifs_sb;
1999 struct tcon_link *tlink;
2000 struct cifs_tcon *tcon;
2001 struct TCP_Server_Info *server;
2002 const char *full_path;
2003 void *page = alloc_dentry_path();
2004 struct cifsInodeInfo *cifsInode;
2006 cifs_dbg(FYI, "cifs_rmdir, inode = 0x%p\n", inode);
2010 full_path = build_path_from_dentry(direntry, page);
2011 if (IS_ERR(full_path)) {
2012 rc = PTR_ERR(full_path);
2016 cifs_sb = CIFS_SB(inode->i_sb);
2017 if (unlikely(cifs_forced_shutdown(cifs_sb))) {
2022 tlink = cifs_sb_tlink(cifs_sb);
2023 if (IS_ERR(tlink)) {
2024 rc = PTR_ERR(tlink);
2027 tcon = tlink_tcon(tlink);
2028 server = tcon->ses->server;
2030 if (!server->ops->rmdir) {
2032 cifs_put_tlink(tlink);
2036 if (tcon->nodelete) {
2038 cifs_put_tlink(tlink);
2042 rc = server->ops->rmdir(xid, tcon, full_path, cifs_sb);
2043 cifs_put_tlink(tlink);
2046 spin_lock(&d_inode(direntry)->i_lock);
2047 i_size_write(d_inode(direntry), 0);
2048 clear_nlink(d_inode(direntry));
2049 spin_unlock(&d_inode(direntry)->i_lock);
2052 cifsInode = CIFS_I(d_inode(direntry));
2053 /* force revalidate to go get info when needed */
2054 cifsInode->time = 0;
2056 cifsInode = CIFS_I(inode);
2058 * Force revalidate to get parent dir info when needed since cached
2059 * attributes are invalid now.
2061 cifsInode->time = 0;
2063 d_inode(direntry)->i_ctime = inode->i_ctime = inode->i_mtime =
2064 current_time(inode);
2067 free_dentry_path(page);
2073 cifs_do_rename(const unsigned int xid, struct dentry *from_dentry,
2074 const char *from_path, struct dentry *to_dentry,
2075 const char *to_path)
2077 struct cifs_sb_info *cifs_sb = CIFS_SB(from_dentry->d_sb);
2078 struct tcon_link *tlink;
2079 struct cifs_tcon *tcon;
2080 struct TCP_Server_Info *server;
2081 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
2082 struct cifs_fid fid;
2083 struct cifs_open_parms oparms;
2085 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
2088 tlink = cifs_sb_tlink(cifs_sb);
2090 return PTR_ERR(tlink);
2091 tcon = tlink_tcon(tlink);
2092 server = tcon->ses->server;
2094 if (!server->ops->rename)
2097 /* try path-based rename first */
2098 rc = server->ops->rename(xid, tcon, from_path, to_path, cifs_sb);
2101 * Don't bother with rename by filehandle unless file is busy and
2102 * source. Note that cross directory moves do not work with
2103 * rename by filehandle to various Windows servers.
2105 if (rc == 0 || rc != -EBUSY)
2106 goto do_rename_exit;
2108 /* Don't fall back to using SMB on SMB 2+ mount */
2109 if (server->vals->protocol_id != 0)
2110 goto do_rename_exit;
2112 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
2113 /* open-file renames don't work across directories */
2114 if (to_dentry->d_parent != from_dentry->d_parent)
2115 goto do_rename_exit;
2117 oparms = (struct cifs_open_parms) {
2120 /* open the file to be renamed -- we need DELETE perms */
2121 .desired_access = DELETE,
2122 .create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR),
2123 .disposition = FILE_OPEN,
2128 rc = CIFS_open(xid, &oparms, &oplock, NULL);
2130 rc = CIFSSMBRenameOpenFile(xid, tcon, fid.netfid,
2131 (const char *) to_dentry->d_name.name,
2132 cifs_sb->local_nls, cifs_remap(cifs_sb));
2133 CIFSSMBClose(xid, tcon, fid.netfid);
2135 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
2138 d_move(from_dentry, to_dentry);
2139 cifs_put_tlink(tlink);
2144 cifs_rename2(struct mnt_idmap *idmap, struct inode *source_dir,
2145 struct dentry *source_dentry, struct inode *target_dir,
2146 struct dentry *target_dentry, unsigned int flags)
2148 const char *from_name, *to_name;
2149 void *page1, *page2;
2150 struct cifs_sb_info *cifs_sb;
2151 struct tcon_link *tlink;
2152 struct cifs_tcon *tcon;
2155 int retry_count = 0;
2156 FILE_UNIX_BASIC_INFO *info_buf_source = NULL;
2157 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
2158 FILE_UNIX_BASIC_INFO *info_buf_target;
2159 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
2161 if (flags & ~RENAME_NOREPLACE)
2164 cifs_sb = CIFS_SB(source_dir->i_sb);
2165 if (unlikely(cifs_forced_shutdown(cifs_sb)))
2168 tlink = cifs_sb_tlink(cifs_sb);
2170 return PTR_ERR(tlink);
2171 tcon = tlink_tcon(tlink);
2173 page1 = alloc_dentry_path();
2174 page2 = alloc_dentry_path();
2177 from_name = build_path_from_dentry(source_dentry, page1);
2178 if (IS_ERR(from_name)) {
2179 rc = PTR_ERR(from_name);
2180 goto cifs_rename_exit;
2183 to_name = build_path_from_dentry(target_dentry, page2);
2184 if (IS_ERR(to_name)) {
2185 rc = PTR_ERR(to_name);
2186 goto cifs_rename_exit;
2189 cifs_close_deferred_file_under_dentry(tcon, from_name);
2190 if (d_inode(target_dentry) != NULL)
2191 cifs_close_deferred_file_under_dentry(tcon, to_name);
2193 rc = cifs_do_rename(xid, source_dentry, from_name, target_dentry,
2196 if (rc == -EACCES) {
2197 while (retry_count < 3) {
2198 cifs_close_all_deferred_files(tcon);
2199 rc = cifs_do_rename(xid, source_dentry, from_name, target_dentry,
2208 * No-replace is the natural behavior for CIFS, so skip unlink hacks.
2210 if (flags & RENAME_NOREPLACE)
2211 goto cifs_rename_exit;
2213 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
2214 if (rc == -EEXIST && tcon->unix_ext) {
2216 * Are src and dst hardlinks of same inode? We can only tell
2217 * with unix extensions enabled.
2220 kmalloc_array(2, sizeof(FILE_UNIX_BASIC_INFO),
2222 if (info_buf_source == NULL) {
2224 goto cifs_rename_exit;
2227 info_buf_target = info_buf_source + 1;
2228 tmprc = CIFSSMBUnixQPathInfo(xid, tcon, from_name,
2231 cifs_remap(cifs_sb));
2235 tmprc = CIFSSMBUnixQPathInfo(xid, tcon, to_name,
2238 cifs_remap(cifs_sb));
2240 if (tmprc == 0 && (info_buf_source->UniqueId ==
2241 info_buf_target->UniqueId)) {
2242 /* same file, POSIX says that this is a noop */
2244 goto cifs_rename_exit;
2248 * else ... BB we could add the same check for Windows by
2249 * checking the UniqueId via FILE_INTERNAL_INFO
2253 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
2255 /* Try unlinking the target dentry if it's not negative */
2256 if (d_really_is_positive(target_dentry) && (rc == -EACCES || rc == -EEXIST)) {
2257 if (d_is_dir(target_dentry))
2258 tmprc = cifs_rmdir(target_dir, target_dentry);
2260 tmprc = cifs_unlink(target_dir, target_dentry);
2262 goto cifs_rename_exit;
2263 rc = cifs_do_rename(xid, source_dentry, from_name,
2264 target_dentry, to_name);
2267 /* force revalidate to go get info when needed */
2268 CIFS_I(source_dir)->time = CIFS_I(target_dir)->time = 0;
2270 source_dir->i_ctime = source_dir->i_mtime = target_dir->i_ctime =
2271 target_dir->i_mtime = current_time(source_dir);
2274 kfree(info_buf_source);
2275 free_dentry_path(page2);
2276 free_dentry_path(page1);
2278 cifs_put_tlink(tlink);
2283 cifs_dentry_needs_reval(struct dentry *dentry)
2285 struct inode *inode = d_inode(dentry);
2286 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
2287 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
2288 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
2289 struct cached_fid *cfid = NULL;
2291 if (cifs_i->time == 0)
2294 if (CIFS_CACHE_READ(cifs_i))
2297 if (!lookupCacheEnabled)
2300 if (!open_cached_dir_by_dentry(tcon, dentry->d_parent, &cfid)) {
2301 spin_lock(&cfid->fid_lock);
2302 if (cfid->time && cifs_i->time > cfid->time) {
2303 spin_unlock(&cfid->fid_lock);
2304 close_cached_dir(cfid);
2307 spin_unlock(&cfid->fid_lock);
2308 close_cached_dir(cfid);
2311 * depending on inode type, check if attribute caching disabled for
2312 * files or directories
2314 if (S_ISDIR(inode->i_mode)) {
2315 if (!cifs_sb->ctx->acdirmax)
2317 if (!time_in_range(jiffies, cifs_i->time,
2318 cifs_i->time + cifs_sb->ctx->acdirmax))
2321 if (!cifs_sb->ctx->acregmax)
2323 if (!time_in_range(jiffies, cifs_i->time,
2324 cifs_i->time + cifs_sb->ctx->acregmax))
2328 /* hardlinked files w/ noserverino get "special" treatment */
2329 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) &&
2330 S_ISREG(inode->i_mode) && inode->i_nlink != 1)
2337 * Zap the cache. Called when invalid_mapping flag is set.
2340 cifs_invalidate_mapping(struct inode *inode)
2344 if (inode->i_mapping && inode->i_mapping->nrpages != 0) {
2345 rc = invalidate_inode_pages2(inode->i_mapping);
2347 cifs_dbg(VFS, "%s: Could not invalidate inode %p\n",
2355 * cifs_wait_bit_killable - helper for functions that are sleeping on bit locks
2357 * @key: currently unused
2358 * @mode: the task state to sleep in
2361 cifs_wait_bit_killable(struct wait_bit_key *key, int mode)
2364 if (signal_pending_state(mode, current))
2365 return -ERESTARTSYS;
2370 cifs_revalidate_mapping(struct inode *inode)
2373 unsigned long *flags = &CIFS_I(inode)->flags;
2374 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
2376 /* swapfiles are not supposed to be shared */
2377 if (IS_SWAPFILE(inode))
2380 rc = wait_on_bit_lock_action(flags, CIFS_INO_LOCK, cifs_wait_bit_killable,
2381 TASK_KILLABLE|TASK_FREEZABLE_UNSAFE);
2385 if (test_and_clear_bit(CIFS_INO_INVALID_MAPPING, flags)) {
2386 /* for cache=singleclient, do not invalidate */
2387 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RW_CACHE)
2388 goto skip_invalidate;
2390 rc = cifs_invalidate_mapping(inode);
2392 set_bit(CIFS_INO_INVALID_MAPPING, flags);
2396 clear_bit_unlock(CIFS_INO_LOCK, flags);
2397 smp_mb__after_atomic();
2398 wake_up_bit(flags, CIFS_INO_LOCK);
2404 cifs_zap_mapping(struct inode *inode)
2406 set_bit(CIFS_INO_INVALID_MAPPING, &CIFS_I(inode)->flags);
2407 return cifs_revalidate_mapping(inode);
2410 int cifs_revalidate_file_attr(struct file *filp)
2413 struct dentry *dentry = file_dentry(filp);
2414 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
2415 struct cifsFileInfo *cfile = (struct cifsFileInfo *) filp->private_data;
2416 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
2418 if (!cifs_dentry_needs_reval(dentry))
2421 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
2422 if (tlink_tcon(cfile->tlink)->unix_ext)
2423 rc = cifs_get_file_info_unix(filp);
2425 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
2426 rc = cifs_get_file_info(filp);
2431 int cifs_revalidate_dentry_attr(struct dentry *dentry)
2435 struct inode *inode = d_inode(dentry);
2436 struct super_block *sb = dentry->d_sb;
2437 const char *full_path;
2444 if (!cifs_dentry_needs_reval(dentry))
2449 page = alloc_dentry_path();
2450 full_path = build_path_from_dentry(dentry, page);
2451 if (IS_ERR(full_path)) {
2452 rc = PTR_ERR(full_path);
2456 cifs_dbg(FYI, "Update attributes: %s inode 0x%p count %d dentry: 0x%p d_time %ld jiffies %ld\n",
2457 full_path, inode, inode->i_count.counter,
2458 dentry, cifs_get_time(dentry), jiffies);
2461 if (cifs_sb_master_tcon(CIFS_SB(sb))->posix_extensions)
2462 rc = smb311_posix_get_inode_info(&inode, full_path, sb, xid);
2463 else if (cifs_sb_master_tcon(CIFS_SB(sb))->unix_ext)
2464 rc = cifs_get_inode_info_unix(&inode, full_path, sb, xid);
2466 rc = cifs_get_inode_info(&inode, full_path, NULL, sb,
2468 if (rc == -EAGAIN && count++ < 10)
2471 free_dentry_path(page);
2477 int cifs_revalidate_file(struct file *filp)
2480 struct inode *inode = file_inode(filp);
2482 rc = cifs_revalidate_file_attr(filp);
2486 return cifs_revalidate_mapping(inode);
2489 /* revalidate a dentry's inode attributes */
2490 int cifs_revalidate_dentry(struct dentry *dentry)
2493 struct inode *inode = d_inode(dentry);
2495 rc = cifs_revalidate_dentry_attr(dentry);
2499 return cifs_revalidate_mapping(inode);
2502 int cifs_getattr(struct mnt_idmap *idmap, const struct path *path,
2503 struct kstat *stat, u32 request_mask, unsigned int flags)
2505 struct dentry *dentry = path->dentry;
2506 struct cifs_sb_info *cifs_sb = CIFS_SB(dentry->d_sb);
2507 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
2508 struct inode *inode = d_inode(dentry);
2511 if (unlikely(cifs_forced_shutdown(CIFS_SB(inode->i_sb))))
2515 * We need to be sure that all dirty pages are written and the server
2516 * has actual ctime, mtime and file length.
2518 if ((request_mask & (STATX_CTIME | STATX_MTIME | STATX_SIZE | STATX_BLOCKS)) &&
2519 !CIFS_CACHE_READ(CIFS_I(inode)) &&
2520 inode->i_mapping && inode->i_mapping->nrpages != 0) {
2521 rc = filemap_fdatawait(inode->i_mapping);
2523 mapping_set_error(inode->i_mapping, rc);
2528 if ((flags & AT_STATX_SYNC_TYPE) == AT_STATX_FORCE_SYNC)
2529 CIFS_I(inode)->time = 0; /* force revalidate */
2532 * If the caller doesn't require syncing, only sync if
2533 * necessary (e.g. due to earlier truncate or setattr
2534 * invalidating the cached metadata)
2536 if (((flags & AT_STATX_SYNC_TYPE) != AT_STATX_DONT_SYNC) ||
2537 (CIFS_I(inode)->time == 0)) {
2538 rc = cifs_revalidate_dentry_attr(dentry);
2543 generic_fillattr(&nop_mnt_idmap, inode, stat);
2544 stat->blksize = cifs_sb->ctx->bsize;
2545 stat->ino = CIFS_I(inode)->uniqueid;
2547 /* old CIFS Unix Extensions doesn't return create time */
2548 if (CIFS_I(inode)->createtime) {
2549 stat->result_mask |= STATX_BTIME;
2551 cifs_NTtimeToUnix(cpu_to_le64(CIFS_I(inode)->createtime));
2554 stat->attributes_mask |= (STATX_ATTR_COMPRESSED | STATX_ATTR_ENCRYPTED);
2555 if (CIFS_I(inode)->cifsAttrs & FILE_ATTRIBUTE_COMPRESSED)
2556 stat->attributes |= STATX_ATTR_COMPRESSED;
2557 if (CIFS_I(inode)->cifsAttrs & FILE_ATTRIBUTE_ENCRYPTED)
2558 stat->attributes |= STATX_ATTR_ENCRYPTED;
2561 * If on a multiuser mount without unix extensions or cifsacl being
2562 * enabled, and the admin hasn't overridden them, set the ownership
2563 * to the fsuid/fsgid of the current process.
2565 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER) &&
2566 !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) &&
2568 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID))
2569 stat->uid = current_fsuid();
2570 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID))
2571 stat->gid = current_fsgid();
2576 int cifs_fiemap(struct inode *inode, struct fiemap_extent_info *fei, u64 start,
2579 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
2580 struct cifs_sb_info *cifs_sb = CIFS_SB(cifs_i->netfs.inode.i_sb);
2581 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
2582 struct TCP_Server_Info *server = tcon->ses->server;
2583 struct cifsFileInfo *cfile;
2586 if (unlikely(cifs_forced_shutdown(cifs_sb)))
2590 * We need to be sure that all dirty pages are written as they
2591 * might fill holes on the server.
2593 if (!CIFS_CACHE_READ(CIFS_I(inode)) && inode->i_mapping &&
2594 inode->i_mapping->nrpages != 0) {
2595 rc = filemap_fdatawait(inode->i_mapping);
2597 mapping_set_error(inode->i_mapping, rc);
2602 cfile = find_readable_file(cifs_i, false);
2606 if (server->ops->fiemap) {
2607 rc = server->ops->fiemap(tcon, cfile, fei, start, len);
2608 cifsFileInfo_put(cfile);
2612 cifsFileInfo_put(cfile);
2616 int cifs_truncate_page(struct address_space *mapping, loff_t from)
2618 pgoff_t index = from >> PAGE_SHIFT;
2619 unsigned offset = from & (PAGE_SIZE - 1);
2623 page = grab_cache_page(mapping, index);
2627 zero_user_segment(page, offset, PAGE_SIZE);
2633 void cifs_setsize(struct inode *inode, loff_t offset)
2635 struct cifsInodeInfo *cifs_i = CIFS_I(inode);
2637 spin_lock(&inode->i_lock);
2638 i_size_write(inode, offset);
2639 spin_unlock(&inode->i_lock);
2641 /* Cached inode must be refreshed on truncate */
2643 truncate_pagecache(inode, offset);
2647 cifs_set_file_size(struct inode *inode, struct iattr *attrs,
2648 unsigned int xid, const char *full_path)
2651 struct cifsFileInfo *open_file;
2652 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
2653 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
2654 struct tcon_link *tlink = NULL;
2655 struct cifs_tcon *tcon = NULL;
2656 struct TCP_Server_Info *server;
2659 * To avoid spurious oplock breaks from server, in the case of
2660 * inodes that we already have open, avoid doing path based
2661 * setting of file size if we can do it by handle.
2662 * This keeps our caching token (oplock) and avoids timeouts
2663 * when the local oplock break takes longer to flush
2664 * writebehind data than the SMB timeout for the SetPathInfo
2665 * request would allow
2667 open_file = find_writable_file(cifsInode, FIND_WR_FSUID_ONLY);
2669 tcon = tlink_tcon(open_file->tlink);
2670 server = tcon->ses->server;
2671 if (server->ops->set_file_size)
2672 rc = server->ops->set_file_size(xid, tcon, open_file,
2673 attrs->ia_size, false);
2676 cifsFileInfo_put(open_file);
2677 cifs_dbg(FYI, "SetFSize for attrs rc = %d\n", rc);
2685 tlink = cifs_sb_tlink(cifs_sb);
2687 return PTR_ERR(tlink);
2688 tcon = tlink_tcon(tlink);
2689 server = tcon->ses->server;
2693 * Set file size by pathname rather than by handle either because no
2694 * valid, writeable file handle for it was found or because there was
2695 * an error setting it by handle.
2697 if (server->ops->set_path_size)
2698 rc = server->ops->set_path_size(xid, tcon, full_path,
2699 attrs->ia_size, cifs_sb, false);
2702 cifs_dbg(FYI, "SetEOF by path (setattrs) rc = %d\n", rc);
2705 cifs_put_tlink(tlink);
2709 cifsInode->server_eof = attrs->ia_size;
2710 cifs_setsize(inode, attrs->ia_size);
2712 * i_blocks is not related to (i_size / i_blksize), but instead
2713 * 512 byte (2**9) size is required for calculating num blocks.
2714 * Until we can query the server for actual allocation size,
2715 * this is best estimate we have for blocks allocated for a file
2716 * Number of blocks must be rounded up so size 1 is not 0 blocks
2718 inode->i_blocks = (512 - 1 + attrs->ia_size) >> 9;
2721 * The man page of truncate says if the size changed,
2722 * then the st_ctime and st_mtime fields for the file
2725 attrs->ia_ctime = attrs->ia_mtime = current_time(inode);
2726 attrs->ia_valid |= ATTR_CTIME | ATTR_MTIME;
2728 cifs_truncate_page(inode->i_mapping, inode->i_size);
2734 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
2736 cifs_setattr_unix(struct dentry *direntry, struct iattr *attrs)
2740 const char *full_path;
2741 void *page = alloc_dentry_path();
2742 struct inode *inode = d_inode(direntry);
2743 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
2744 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
2745 struct tcon_link *tlink;
2746 struct cifs_tcon *pTcon;
2747 struct cifs_unix_set_info_args *args = NULL;
2748 struct cifsFileInfo *open_file;
2750 cifs_dbg(FYI, "setattr_unix on file %pd attrs->ia_valid=0x%x\n",
2751 direntry, attrs->ia_valid);
2755 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
2756 attrs->ia_valid |= ATTR_FORCE;
2758 rc = setattr_prepare(&nop_mnt_idmap, direntry, attrs);
2762 full_path = build_path_from_dentry(direntry, page);
2763 if (IS_ERR(full_path)) {
2764 rc = PTR_ERR(full_path);
2769 * Attempt to flush data before changing attributes. We need to do
2770 * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the
2771 * ownership or mode then we may also need to do this. Here, we take
2772 * the safe way out and just do the flush on all setattr requests. If
2773 * the flush returns error, store it to report later and continue.
2775 * BB: This should be smarter. Why bother flushing pages that
2776 * will be truncated anyway? Also, should we error out here if
2777 * the flush returns error?
2779 rc = filemap_write_and_wait(inode->i_mapping);
2780 if (is_interrupt_error(rc)) {
2785 mapping_set_error(inode->i_mapping, rc);
2788 if (attrs->ia_valid & ATTR_SIZE) {
2789 rc = cifs_set_file_size(inode, attrs, xid, full_path);
2794 /* skip mode change if it's just for clearing setuid/setgid */
2795 if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
2796 attrs->ia_valid &= ~ATTR_MODE;
2798 args = kmalloc(sizeof(*args), GFP_KERNEL);
2804 /* set up the struct */
2805 if (attrs->ia_valid & ATTR_MODE)
2806 args->mode = attrs->ia_mode;
2808 args->mode = NO_CHANGE_64;
2810 if (attrs->ia_valid & ATTR_UID)
2811 args->uid = attrs->ia_uid;
2813 args->uid = INVALID_UID; /* no change */
2815 if (attrs->ia_valid & ATTR_GID)
2816 args->gid = attrs->ia_gid;
2818 args->gid = INVALID_GID; /* no change */
2820 if (attrs->ia_valid & ATTR_ATIME)
2821 args->atime = cifs_UnixTimeToNT(attrs->ia_atime);
2823 args->atime = NO_CHANGE_64;
2825 if (attrs->ia_valid & ATTR_MTIME)
2826 args->mtime = cifs_UnixTimeToNT(attrs->ia_mtime);
2828 args->mtime = NO_CHANGE_64;
2830 if (attrs->ia_valid & ATTR_CTIME)
2831 args->ctime = cifs_UnixTimeToNT(attrs->ia_ctime);
2833 args->ctime = NO_CHANGE_64;
2836 open_file = find_writable_file(cifsInode, FIND_WR_FSUID_ONLY);
2838 u16 nfid = open_file->fid.netfid;
2839 u32 npid = open_file->pid;
2840 pTcon = tlink_tcon(open_file->tlink);
2841 rc = CIFSSMBUnixSetFileInfo(xid, pTcon, args, nfid, npid);
2842 cifsFileInfo_put(open_file);
2844 tlink = cifs_sb_tlink(cifs_sb);
2845 if (IS_ERR(tlink)) {
2846 rc = PTR_ERR(tlink);
2849 pTcon = tlink_tcon(tlink);
2850 rc = CIFSSMBUnixSetPathInfo(xid, pTcon, full_path, args,
2852 cifs_remap(cifs_sb));
2853 cifs_put_tlink(tlink);
2859 if ((attrs->ia_valid & ATTR_SIZE) &&
2860 attrs->ia_size != i_size_read(inode)) {
2861 truncate_setsize(inode, attrs->ia_size);
2862 fscache_resize_cookie(cifs_inode_cookie(inode), attrs->ia_size);
2865 setattr_copy(&nop_mnt_idmap, inode, attrs);
2866 mark_inode_dirty(inode);
2868 /* force revalidate when any of these times are set since some
2869 of the fs types (eg ext3, fat) do not have fine enough
2870 time granularity to match protocol, and we do not have a
2871 a way (yet) to query the server fs's time granularity (and
2872 whether it rounds times down).
2874 if (attrs->ia_valid & (ATTR_MTIME | ATTR_CTIME))
2875 cifsInode->time = 0;
2878 free_dentry_path(page);
2882 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
2885 cifs_setattr_nounix(struct dentry *direntry, struct iattr *attrs)
2888 kuid_t uid = INVALID_UID;
2889 kgid_t gid = INVALID_GID;
2890 struct inode *inode = d_inode(direntry);
2891 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
2892 struct cifsInodeInfo *cifsInode = CIFS_I(inode);
2893 struct cifsFileInfo *wfile;
2894 struct cifs_tcon *tcon;
2895 const char *full_path;
2896 void *page = alloc_dentry_path();
2899 __u64 mode = NO_CHANGE_64;
2903 cifs_dbg(FYI, "setattr on file %pd attrs->ia_valid 0x%x\n",
2904 direntry, attrs->ia_valid);
2906 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
2907 attrs->ia_valid |= ATTR_FORCE;
2909 rc = setattr_prepare(&nop_mnt_idmap, direntry, attrs);
2911 goto cifs_setattr_exit;
2913 full_path = build_path_from_dentry(direntry, page);
2914 if (IS_ERR(full_path)) {
2915 rc = PTR_ERR(full_path);
2916 goto cifs_setattr_exit;
2920 * Attempt to flush data before changing attributes. We need to do
2921 * this for ATTR_SIZE and ATTR_MTIME. If the flush of the data
2922 * returns error, store it to report later and continue.
2924 * BB: This should be smarter. Why bother flushing pages that
2925 * will be truncated anyway? Also, should we error out here if
2926 * the flush returns error? Do we need to check for ATTR_MTIME_SET flag?
2928 if (attrs->ia_valid & (ATTR_MTIME | ATTR_SIZE | ATTR_CTIME)) {
2929 rc = filemap_write_and_wait(inode->i_mapping);
2930 if (is_interrupt_error(rc)) {
2932 goto cifs_setattr_exit;
2934 mapping_set_error(inode->i_mapping, rc);
2939 if ((attrs->ia_valid & ATTR_MTIME) &&
2940 !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)) {
2941 rc = cifs_get_writable_file(cifsInode, FIND_WR_ANY, &wfile);
2943 tcon = tlink_tcon(wfile->tlink);
2944 rc = tcon->ses->server->ops->flush(xid, tcon, &wfile->fid);
2945 cifsFileInfo_put(wfile);
2947 goto cifs_setattr_exit;
2948 } else if (rc != -EBADF)
2949 goto cifs_setattr_exit;
2954 if (attrs->ia_valid & ATTR_SIZE) {
2955 rc = cifs_set_file_size(inode, attrs, xid, full_path);
2957 goto cifs_setattr_exit;
2960 if (attrs->ia_valid & ATTR_UID)
2961 uid = attrs->ia_uid;
2963 if (attrs->ia_valid & ATTR_GID)
2964 gid = attrs->ia_gid;
2966 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) ||
2967 (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MODE_FROM_SID)) {
2968 if (uid_valid(uid) || gid_valid(gid)) {
2969 mode = NO_CHANGE_64;
2970 rc = id_mode_to_cifs_acl(inode, full_path, &mode,
2973 cifs_dbg(FYI, "%s: Setting id failed with error: %d\n",
2975 goto cifs_setattr_exit;
2979 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID))
2980 attrs->ia_valid &= ~(ATTR_UID | ATTR_GID);
2982 /* skip mode change if it's just for clearing setuid/setgid */
2983 if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
2984 attrs->ia_valid &= ~ATTR_MODE;
2986 if (attrs->ia_valid & ATTR_MODE) {
2987 mode = attrs->ia_mode;
2989 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) ||
2990 (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MODE_FROM_SID)) {
2991 rc = id_mode_to_cifs_acl(inode, full_path, &mode,
2992 INVALID_UID, INVALID_GID);
2994 cifs_dbg(FYI, "%s: Setting ACL failed with error: %d\n",
2996 goto cifs_setattr_exit;
3000 * In case of CIFS_MOUNT_CIFS_ACL, we cannot support all modes.
3001 * Pick up the actual mode bits that were set.
3003 if (mode != attrs->ia_mode)
3004 attrs->ia_mode = mode;
3006 if (((mode & S_IWUGO) == 0) &&
3007 (cifsInode->cifsAttrs & ATTR_READONLY) == 0) {
3009 dosattr = cifsInode->cifsAttrs | ATTR_READONLY;
3011 /* fix up mode if we're not using dynperm */
3012 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM) == 0)
3013 attrs->ia_mode = inode->i_mode & ~S_IWUGO;
3014 } else if ((mode & S_IWUGO) &&
3015 (cifsInode->cifsAttrs & ATTR_READONLY)) {
3017 dosattr = cifsInode->cifsAttrs & ~ATTR_READONLY;
3018 /* Attributes of 0 are ignored */
3020 dosattr |= ATTR_NORMAL;
3022 /* reset local inode permissions to normal */
3023 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) {
3024 attrs->ia_mode &= ~(S_IALLUGO);
3025 if (S_ISDIR(inode->i_mode))
3027 cifs_sb->ctx->dir_mode;
3030 cifs_sb->ctx->file_mode;
3032 } else if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) {
3033 /* ignore mode change - ATTR_READONLY hasn't changed */
3034 attrs->ia_valid &= ~ATTR_MODE;
3038 if (attrs->ia_valid & (ATTR_MTIME|ATTR_ATIME|ATTR_CTIME) ||
3039 ((attrs->ia_valid & ATTR_MODE) && dosattr)) {
3040 rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr);
3041 /* BB: check for rc = -EOPNOTSUPP and switch to legacy mode */
3043 /* Even if error on time set, no sense failing the call if
3044 the server would set the time to a reasonable value anyway,
3045 and this check ensures that we are not being called from
3046 sys_utimes in which case we ought to fail the call back to
3047 the user when the server rejects the call */
3048 if ((rc) && (attrs->ia_valid &
3049 (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE)))
3053 /* do not need local check to inode_check_ok since the server does
3056 goto cifs_setattr_exit;
3058 if ((attrs->ia_valid & ATTR_SIZE) &&
3059 attrs->ia_size != i_size_read(inode)) {
3060 truncate_setsize(inode, attrs->ia_size);
3061 fscache_resize_cookie(cifs_inode_cookie(inode), attrs->ia_size);
3064 setattr_copy(&nop_mnt_idmap, inode, attrs);
3065 mark_inode_dirty(inode);
3069 free_dentry_path(page);
3074 cifs_setattr(struct mnt_idmap *idmap, struct dentry *direntry,
3075 struct iattr *attrs)
3077 struct cifs_sb_info *cifs_sb = CIFS_SB(direntry->d_sb);
3078 int rc, retries = 0;
3079 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
3080 struct cifs_tcon *pTcon = cifs_sb_master_tcon(cifs_sb);
3081 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
3083 if (unlikely(cifs_forced_shutdown(cifs_sb)))
3087 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
3088 if (pTcon->unix_ext)
3089 rc = cifs_setattr_unix(direntry, attrs);
3091 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
3092 rc = cifs_setattr_nounix(direntry, attrs);
3094 } while (is_retryable_error(rc) && retries < 2);
3096 /* BB: add cifs_setattr_legacy for really old servers */