Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/inode.c |
| 3 | * |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 4 | * Copyright (C) International Business Machines Corp., 2002,2010 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 6 | * |
| 7 | * This library is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU Lesser General Public License as published |
| 9 | * by the Free Software Foundation; either version 2.1 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 15 | * the GNU Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public License |
| 18 | * along with this library; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | */ |
| 21 | #include <linux/fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/stat.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/pagemap.h> |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 25 | #include <linux/freezer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <asm/div64.h> |
| 27 | #include "cifsfs.h" |
| 28 | #include "cifspdu.h" |
| 29 | #include "cifsglob.h" |
| 30 | #include "cifsproto.h" |
| 31 | #include "cifs_debug.h" |
| 32 | #include "cifs_fs_sb.h" |
Suresh Jayaraman | 9451a9a | 2010-07-05 18:12:45 +0530 | [diff] [blame] | 33 | #include "fscache.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Christoph Hellwig | 70eff55 | 2008-02-15 20:55:05 +0000 | [diff] [blame] | 35 | |
David Howells | 01c64fe | 2011-01-14 18:45:47 +0000 | [diff] [blame] | 36 | static void cifs_set_ops(struct inode *inode) |
Christoph Hellwig | 70eff55 | 2008-02-15 20:55:05 +0000 | [diff] [blame] | 37 | { |
| 38 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 39 | |
| 40 | switch (inode->i_mode & S_IFMT) { |
| 41 | case S_IFREG: |
| 42 | inode->i_op = &cifs_file_inode_ops; |
| 43 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) { |
| 44 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
| 45 | inode->i_fop = &cifs_file_direct_nobrl_ops; |
| 46 | else |
| 47 | inode->i_fop = &cifs_file_direct_ops; |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 48 | } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO) { |
| 49 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
| 50 | inode->i_fop = &cifs_file_strict_nobrl_ops; |
| 51 | else |
| 52 | inode->i_fop = &cifs_file_strict_ops; |
Christoph Hellwig | 70eff55 | 2008-02-15 20:55:05 +0000 | [diff] [blame] | 53 | } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
| 54 | inode->i_fop = &cifs_file_nobrl_ops; |
| 55 | else { /* not direct, send byte range locks */ |
| 56 | inode->i_fop = &cifs_file_ops; |
| 57 | } |
| 58 | |
Christoph Hellwig | 70eff55 | 2008-02-15 20:55:05 +0000 | [diff] [blame] | 59 | /* check if server can support readpages */ |
Jeff Layton | 0d424ad | 2010-09-20 16:01:35 -0700 | [diff] [blame] | 60 | if (cifs_sb_master_tcon(cifs_sb)->ses->server->maxBuf < |
Christoph Hellwig | 70eff55 | 2008-02-15 20:55:05 +0000 | [diff] [blame] | 61 | PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE) |
| 62 | inode->i_data.a_ops = &cifs_addr_ops_smallbuf; |
| 63 | else |
| 64 | inode->i_data.a_ops = &cifs_addr_ops; |
| 65 | break; |
| 66 | case S_IFDIR: |
Steve French | bc5b6e2 | 2008-03-11 21:07:48 +0000 | [diff] [blame] | 67 | #ifdef CONFIG_CIFS_DFS_UPCALL |
David Howells | 01c64fe | 2011-01-14 18:45:47 +0000 | [diff] [blame] | 68 | if (IS_AUTOMOUNT(inode)) { |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 69 | inode->i_op = &cifs_dfs_referral_inode_operations; |
| 70 | } else { |
Steve French | bc5b6e2 | 2008-03-11 21:07:48 +0000 | [diff] [blame] | 71 | #else /* NO DFS support, treat as a directory */ |
| 72 | { |
| 73 | #endif |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 74 | inode->i_op = &cifs_dir_inode_ops; |
| 75 | inode->i_fop = &cifs_dir_ops; |
| 76 | } |
Christoph Hellwig | 70eff55 | 2008-02-15 20:55:05 +0000 | [diff] [blame] | 77 | break; |
| 78 | case S_IFLNK: |
| 79 | inode->i_op = &cifs_symlink_inode_ops; |
| 80 | break; |
| 81 | default: |
| 82 | init_special_inode(inode, inode->i_mode, inode->i_rdev); |
| 83 | break; |
| 84 | } |
| 85 | } |
| 86 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 87 | /* check inode attributes against fattr. If they don't match, tag the |
| 88 | * inode for cache invalidation |
| 89 | */ |
| 90 | static void |
| 91 | cifs_revalidate_cache(struct inode *inode, struct cifs_fattr *fattr) |
| 92 | { |
| 93 | struct cifsInodeInfo *cifs_i = CIFS_I(inode); |
| 94 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 95 | cifs_dbg(FYI, "%s: revalidating inode %llu\n", |
| 96 | __func__, cifs_i->uniqueid); |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 97 | |
| 98 | if (inode->i_state & I_NEW) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 99 | cifs_dbg(FYI, "%s: inode %llu is new\n", |
| 100 | __func__, cifs_i->uniqueid); |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 101 | return; |
| 102 | } |
| 103 | |
| 104 | /* don't bother with revalidation if we have an oplock */ |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 105 | if (CIFS_CACHE_READ(cifs_i)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 106 | cifs_dbg(FYI, "%s: inode %llu is oplocked\n", |
| 107 | __func__, cifs_i->uniqueid); |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 108 | return; |
| 109 | } |
| 110 | |
| 111 | /* revalidate if mtime or size have changed */ |
| 112 | if (timespec_equal(&inode->i_mtime, &fattr->cf_mtime) && |
| 113 | cifs_i->server_eof == fattr->cf_eof) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 114 | cifs_dbg(FYI, "%s: inode %llu is unchanged\n", |
| 115 | __func__, cifs_i->uniqueid); |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 116 | return; |
| 117 | } |
| 118 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 119 | cifs_dbg(FYI, "%s: invalidating inode %llu mapping\n", |
| 120 | __func__, cifs_i->uniqueid); |
Jeff Layton | aff8d5c | 2014-04-30 09:31:45 -0400 | [diff] [blame] | 121 | set_bit(CIFS_INO_INVALID_MAPPING, &cifs_i->flags); |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 122 | } |
| 123 | |
Jim McDonough | 74d290d | 2013-09-21 10:36:10 -0500 | [diff] [blame] | 124 | /* |
| 125 | * copy nlink to the inode, unless it wasn't provided. Provide |
| 126 | * sane values if we don't have an existing one and none was provided |
| 127 | */ |
| 128 | static void |
| 129 | cifs_nlink_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr) |
| 130 | { |
| 131 | /* |
| 132 | * if we're in a situation where we can't trust what we |
| 133 | * got from the server (readdir, some non-unix cases) |
| 134 | * fake reasonable values |
| 135 | */ |
| 136 | if (fattr->cf_flags & CIFS_FATTR_UNKNOWN_NLINK) { |
| 137 | /* only provide fake values on a new inode */ |
| 138 | if (inode->i_state & I_NEW) { |
| 139 | if (fattr->cf_cifsattrs & ATTR_DIRECTORY) |
| 140 | set_nlink(inode, 2); |
| 141 | else |
| 142 | set_nlink(inode, 1); |
| 143 | } |
| 144 | return; |
| 145 | } |
| 146 | |
| 147 | /* we trust the server, so update it */ |
| 148 | set_nlink(inode, fattr->cf_nlink); |
| 149 | } |
| 150 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 151 | /* populate an inode with info from a cifs_fattr struct */ |
| 152 | void |
| 153 | cifs_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr) |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 154 | { |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 155 | struct cifsInodeInfo *cifs_i = CIFS_I(inode); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 156 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 157 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 158 | cifs_revalidate_cache(inode, fattr); |
| 159 | |
Steve French | b7ca692 | 2012-08-03 08:43:01 -0500 | [diff] [blame] | 160 | spin_lock(&inode->i_lock); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 161 | inode->i_atime = fattr->cf_atime; |
| 162 | inode->i_mtime = fattr->cf_mtime; |
| 163 | inode->i_ctime = fattr->cf_ctime; |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 164 | inode->i_rdev = fattr->cf_rdev; |
Jim McDonough | 74d290d | 2013-09-21 10:36:10 -0500 | [diff] [blame] | 165 | cifs_nlink_fattr_to_inode(inode, fattr); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 166 | inode->i_uid = fattr->cf_uid; |
| 167 | inode->i_gid = fattr->cf_gid; |
| 168 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 169 | /* if dynperm is set, don't clobber existing mode */ |
| 170 | if (inode->i_state & I_NEW || |
| 171 | !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) |
| 172 | inode->i_mode = fattr->cf_mode; |
| 173 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 174 | cifs_i->cifsAttrs = fattr->cf_cifsattrs; |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 175 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 176 | if (fattr->cf_flags & CIFS_FATTR_NEED_REVAL) |
| 177 | cifs_i->time = 0; |
| 178 | else |
| 179 | cifs_i->time = jiffies; |
| 180 | |
Jeff Layton | aff8d5c | 2014-04-30 09:31:45 -0400 | [diff] [blame] | 181 | if (fattr->cf_flags & CIFS_FATTR_DELETE_PENDING) |
| 182 | set_bit(CIFS_INO_DELETE_PENDING, &cifs_i->flags); |
| 183 | else |
| 184 | clear_bit(CIFS_INO_DELETE_PENDING, &cifs_i->flags); |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 185 | |
Jeff Layton | 835a36c | 2010-02-10 16:21:33 -0500 | [diff] [blame] | 186 | cifs_i->server_eof = fattr->cf_eof; |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 187 | /* |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 188 | * Can't safely change the file size here if the client is writing to |
| 189 | * it due to potential races. |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 190 | */ |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 191 | if (is_size_safe_to_change(cifs_i, fattr->cf_eof)) { |
| 192 | i_size_write(inode, fattr->cf_eof); |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 193 | |
| 194 | /* |
| 195 | * i_blocks is not related to (i_size / i_blksize), |
| 196 | * but instead 512 byte (2**9) size is required for |
| 197 | * calculating num blocks. |
| 198 | */ |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 199 | inode->i_blocks = (512 - 1 + fattr->cf_bytes) >> 9; |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 200 | } |
| 201 | spin_unlock(&inode->i_lock); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 202 | |
David Howells | 01c64fe | 2011-01-14 18:45:47 +0000 | [diff] [blame] | 203 | if (fattr->cf_flags & CIFS_FATTR_DFS_REFERRAL) |
| 204 | inode->i_flags |= S_AUTOMOUNT; |
Jeff Layton | c2b93e0 | 2013-05-07 11:28:31 -0400 | [diff] [blame] | 205 | if (inode->i_state & I_NEW) |
| 206 | cifs_set_ops(inode); |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 207 | } |
| 208 | |
Jeff Layton | 4065c80 | 2010-05-17 07:18:58 -0400 | [diff] [blame] | 209 | void |
| 210 | cifs_fill_uniqueid(struct super_block *sb, struct cifs_fattr *fattr) |
| 211 | { |
| 212 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
| 213 | |
| 214 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) |
| 215 | return; |
| 216 | |
| 217 | fattr->cf_uniqueid = iunique(sb, ROOT_I); |
| 218 | } |
| 219 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 220 | /* Fill a cifs_fattr struct with info from FILE_UNIX_BASIC_INFO. */ |
| 221 | void |
| 222 | cifs_unix_basic_to_fattr(struct cifs_fattr *fattr, FILE_UNIX_BASIC_INFO *info, |
| 223 | struct cifs_sb_info *cifs_sb) |
| 224 | { |
| 225 | memset(fattr, 0, sizeof(*fattr)); |
| 226 | fattr->cf_uniqueid = le64_to_cpu(info->UniqueId); |
| 227 | fattr->cf_bytes = le64_to_cpu(info->NumOfBytes); |
| 228 | fattr->cf_eof = le64_to_cpu(info->EndOfFile); |
| 229 | |
| 230 | fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime); |
| 231 | fattr->cf_mtime = cifs_NTtimeToUnix(info->LastModificationTime); |
| 232 | fattr->cf_ctime = cifs_NTtimeToUnix(info->LastStatusChange); |
| 233 | fattr->cf_mode = le64_to_cpu(info->Permissions); |
| 234 | |
| 235 | /* |
| 236 | * Since we set the inode type below we need to mask off |
| 237 | * to avoid strange results if bits set above. |
| 238 | */ |
| 239 | fattr->cf_mode &= ~S_IFMT; |
| 240 | switch (le32_to_cpu(info->Type)) { |
| 241 | case UNIX_FILE: |
| 242 | fattr->cf_mode |= S_IFREG; |
| 243 | fattr->cf_dtype = DT_REG; |
| 244 | break; |
| 245 | case UNIX_SYMLINK: |
| 246 | fattr->cf_mode |= S_IFLNK; |
| 247 | fattr->cf_dtype = DT_LNK; |
| 248 | break; |
| 249 | case UNIX_DIR: |
| 250 | fattr->cf_mode |= S_IFDIR; |
| 251 | fattr->cf_dtype = DT_DIR; |
| 252 | break; |
| 253 | case UNIX_CHARDEV: |
| 254 | fattr->cf_mode |= S_IFCHR; |
| 255 | fattr->cf_dtype = DT_CHR; |
| 256 | fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor), |
| 257 | le64_to_cpu(info->DevMinor) & MINORMASK); |
| 258 | break; |
| 259 | case UNIX_BLOCKDEV: |
| 260 | fattr->cf_mode |= S_IFBLK; |
| 261 | fattr->cf_dtype = DT_BLK; |
| 262 | fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor), |
| 263 | le64_to_cpu(info->DevMinor) & MINORMASK); |
| 264 | break; |
| 265 | case UNIX_FIFO: |
| 266 | fattr->cf_mode |= S_IFIFO; |
| 267 | fattr->cf_dtype = DT_FIFO; |
| 268 | break; |
| 269 | case UNIX_SOCKET: |
| 270 | fattr->cf_mode |= S_IFSOCK; |
| 271 | fattr->cf_dtype = DT_SOCK; |
| 272 | break; |
| 273 | default: |
| 274 | /* safest to call it a file if we do not know */ |
| 275 | fattr->cf_mode |= S_IFREG; |
| 276 | fattr->cf_dtype = DT_REG; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 277 | cifs_dbg(FYI, "unknown type %d\n", le32_to_cpu(info->Type)); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 278 | break; |
| 279 | } |
| 280 | |
Eric W. Biederman | 46bbc25 | 2013-02-05 23:55:44 -0800 | [diff] [blame] | 281 | fattr->cf_uid = cifs_sb->mnt_uid; |
| 282 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)) { |
| 283 | u64 id = le64_to_cpu(info->Uid); |
Eric W. Biederman | 4a2c8cf | 2013-02-06 01:53:25 -0800 | [diff] [blame] | 284 | if (id < ((uid_t)-1)) { |
| 285 | kuid_t uid = make_kuid(&init_user_ns, id); |
| 286 | if (uid_valid(uid)) |
| 287 | fattr->cf_uid = uid; |
| 288 | } |
Eric W. Biederman | 46bbc25 | 2013-02-05 23:55:44 -0800 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | fattr->cf_gid = cifs_sb->mnt_gid; |
| 292 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)) { |
| 293 | u64 id = le64_to_cpu(info->Gid); |
Eric W. Biederman | 4a2c8cf | 2013-02-06 01:53:25 -0800 | [diff] [blame] | 294 | if (id < ((gid_t)-1)) { |
| 295 | kgid_t gid = make_kgid(&init_user_ns, id); |
| 296 | if (gid_valid(gid)) |
| 297 | fattr->cf_gid = gid; |
| 298 | } |
Eric W. Biederman | 46bbc25 | 2013-02-05 23:55:44 -0800 | [diff] [blame] | 299 | } |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 300 | |
| 301 | fattr->cf_nlink = le64_to_cpu(info->Nlinks); |
| 302 | } |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 303 | |
| 304 | /* |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 305 | * Fill a cifs_fattr struct with fake inode info. |
| 306 | * |
| 307 | * Needed to setup cifs_fattr data for the directory which is the |
| 308 | * junction to the new submount (ie to setup the fake directory |
| 309 | * which represents a DFS referral). |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 310 | */ |
Steve French | f1230c9 | 2009-07-22 23:13:01 +0000 | [diff] [blame] | 311 | static void |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 312 | cifs_create_dfs_fattr(struct cifs_fattr *fattr, struct super_block *sb) |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 313 | { |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 314 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 315 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 316 | cifs_dbg(FYI, "creating fake fattr for DFS referral\n"); |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 317 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 318 | memset(fattr, 0, sizeof(*fattr)); |
| 319 | fattr->cf_mode = S_IFDIR | S_IXUGO | S_IRWXU; |
| 320 | fattr->cf_uid = cifs_sb->mnt_uid; |
| 321 | fattr->cf_gid = cifs_sb->mnt_gid; |
| 322 | fattr->cf_atime = CURRENT_TIME; |
| 323 | fattr->cf_ctime = CURRENT_TIME; |
| 324 | fattr->cf_mtime = CURRENT_TIME; |
| 325 | fattr->cf_nlink = 2; |
| 326 | fattr->cf_flags |= CIFS_FATTR_DFS_REFERRAL; |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 327 | } |
| 328 | |
Pavel Shilovsky | 4ad6504 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 329 | static int |
| 330 | cifs_get_file_info_unix(struct file *filp) |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 331 | { |
| 332 | int rc; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 333 | unsigned int xid; |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 334 | FILE_UNIX_BASIC_INFO find_data; |
| 335 | struct cifs_fattr fattr; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 336 | struct inode *inode = file_inode(filp); |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 337 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 338 | struct cifsFileInfo *cfile = filp->private_data; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 339 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 340 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 341 | xid = get_xid(); |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 342 | rc = CIFSSMBUnixQFileInfo(xid, tcon, cfile->fid.netfid, &find_data); |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 343 | if (!rc) { |
| 344 | cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb); |
| 345 | } else if (rc == -EREMOTE) { |
| 346 | cifs_create_dfs_fattr(&fattr, inode->i_sb); |
| 347 | rc = 0; |
| 348 | } |
| 349 | |
| 350 | cifs_fattr_to_inode(inode, &fattr); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 351 | free_xid(xid); |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 352 | return rc; |
| 353 | } |
| 354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | int cifs_get_inode_info_unix(struct inode **pinode, |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 356 | const unsigned char *full_path, |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 357 | struct super_block *sb, unsigned int xid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | { |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 359 | int rc; |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 360 | FILE_UNIX_BASIC_INFO find_data; |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 361 | struct cifs_fattr fattr; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 362 | struct cifs_tcon *tcon; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 363 | struct tcon_link *tlink; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 366 | cifs_dbg(FYI, "Getting info on %s\n", full_path); |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 367 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 368 | tlink = cifs_sb_tlink(cifs_sb); |
| 369 | if (IS_ERR(tlink)) |
| 370 | return PTR_ERR(tlink); |
| 371 | tcon = tlink_tcon(tlink); |
| 372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | /* could have done a find first instead but this returns more info */ |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 374 | rc = CIFSSMBUnixQPathInfo(xid, tcon, full_path, &find_data, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 375 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
| 376 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 377 | cifs_put_tlink(tlink); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 378 | |
| 379 | if (!rc) { |
| 380 | cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb); |
| 381 | } else if (rc == -EREMOTE) { |
| 382 | cifs_create_dfs_fattr(&fattr, sb); |
Jeff Layton | e911d0c | 2008-07-12 13:47:59 -0700 | [diff] [blame] | 383 | rc = 0; |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 384 | } else { |
| 385 | return rc; |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 386 | } |
| 387 | |
Stefan Metzmacher | 1b12b9c | 2010-08-05 21:19:56 +0200 | [diff] [blame] | 388 | /* check for Minshall+French symlinks */ |
| 389 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) { |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 390 | int tmprc = check_mf_symlink(xid, tcon, cifs_sb, &fattr, |
| 391 | full_path); |
Stefan Metzmacher | 1b12b9c | 2010-08-05 21:19:56 +0200 | [diff] [blame] | 392 | if (tmprc) |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 393 | cifs_dbg(FYI, "check_mf_symlink: %d\n", tmprc); |
Stefan Metzmacher | 1b12b9c | 2010-08-05 21:19:56 +0200 | [diff] [blame] | 394 | } |
| 395 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 396 | if (*pinode == NULL) { |
| 397 | /* get new inode */ |
Jeff Layton | 4065c80 | 2010-05-17 07:18:58 -0400 | [diff] [blame] | 398 | cifs_fill_uniqueid(sb, &fattr); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 399 | *pinode = cifs_iget(sb, &fattr); |
| 400 | if (!*pinode) |
| 401 | rc = -ENOMEM; |
| 402 | } else { |
| 403 | /* we already have inode, update it */ |
| 404 | cifs_fattr_to_inode(*pinode, &fattr); |
| 405 | } |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 406 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | return rc; |
| 408 | } |
| 409 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 410 | static int |
Pavel Shilovsky | 0360d60 | 2014-01-16 15:53:35 +0400 | [diff] [blame] | 411 | cifs_sfu_type(struct cifs_fattr *fattr, const char *path, |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 412 | struct cifs_sb_info *cifs_sb, unsigned int xid) |
Steve French | d6e2f2a4 | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 413 | { |
| 414 | int rc; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 415 | int oplock = 0; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 416 | struct tcon_link *tlink; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 417 | struct cifs_tcon *tcon; |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 418 | struct cifs_fid fid; |
| 419 | struct cifs_open_parms oparms; |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 420 | struct cifs_io_parms io_parms; |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 421 | char buf[24]; |
Steve French | d6e2f2a4 | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 422 | unsigned int bytes_read; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 423 | char *pbuf; |
Pavel Shilovsky | 0360d60 | 2014-01-16 15:53:35 +0400 | [diff] [blame] | 424 | int buf_type = CIFS_NO_BUFFER; |
Steve French | d6e2f2a4 | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 425 | |
| 426 | pbuf = buf; |
| 427 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 428 | fattr->cf_mode &= ~S_IFMT; |
| 429 | |
| 430 | if (fattr->cf_eof == 0) { |
| 431 | fattr->cf_mode |= S_IFIFO; |
| 432 | fattr->cf_dtype = DT_FIFO; |
Steve French | d6e2f2a4 | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 433 | return 0; |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 434 | } else if (fattr->cf_eof < 8) { |
| 435 | fattr->cf_mode |= S_IFREG; |
| 436 | fattr->cf_dtype = DT_REG; |
Steve French | d6e2f2a4 | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 437 | return -EINVAL; /* EOPNOTSUPP? */ |
| 438 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 439 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 440 | tlink = cifs_sb_tlink(cifs_sb); |
| 441 | if (IS_ERR(tlink)) |
| 442 | return PTR_ERR(tlink); |
| 443 | tcon = tlink_tcon(tlink); |
| 444 | |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 445 | oparms.tcon = tcon; |
| 446 | oparms.cifs_sb = cifs_sb; |
| 447 | oparms.desired_access = GENERIC_READ; |
| 448 | oparms.create_options = CREATE_NOT_DIR; |
| 449 | oparms.disposition = FILE_OPEN; |
| 450 | oparms.path = path; |
| 451 | oparms.fid = &fid; |
| 452 | oparms.reconnect = false; |
| 453 | |
| 454 | rc = CIFS_open(xid, &oparms, &oplock, NULL); |
Pavel Shilovsky | 0360d60 | 2014-01-16 15:53:35 +0400 | [diff] [blame] | 455 | if (rc) { |
| 456 | cifs_put_tlink(tlink); |
| 457 | return rc; |
Steve French | d6e2f2a4 | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 458 | } |
Pavel Shilovsky | 0360d60 | 2014-01-16 15:53:35 +0400 | [diff] [blame] | 459 | |
| 460 | /* Read header */ |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 461 | io_parms.netfid = fid.netfid; |
Pavel Shilovsky | 0360d60 | 2014-01-16 15:53:35 +0400 | [diff] [blame] | 462 | io_parms.pid = current->tgid; |
| 463 | io_parms.tcon = tcon; |
| 464 | io_parms.offset = 0; |
| 465 | io_parms.length = 24; |
| 466 | |
| 467 | rc = CIFSSMBRead(xid, &io_parms, &bytes_read, &pbuf, &buf_type); |
| 468 | if ((rc == 0) && (bytes_read >= 8)) { |
| 469 | if (memcmp("IntxBLK", pbuf, 8) == 0) { |
| 470 | cifs_dbg(FYI, "Block device\n"); |
| 471 | fattr->cf_mode |= S_IFBLK; |
| 472 | fattr->cf_dtype = DT_BLK; |
| 473 | if (bytes_read == 24) { |
| 474 | /* we have enough to decode dev num */ |
| 475 | __u64 mjr; /* major */ |
| 476 | __u64 mnr; /* minor */ |
| 477 | mjr = le64_to_cpu(*(__le64 *)(pbuf+8)); |
| 478 | mnr = le64_to_cpu(*(__le64 *)(pbuf+16)); |
| 479 | fattr->cf_rdev = MKDEV(mjr, mnr); |
| 480 | } |
| 481 | } else if (memcmp("IntxCHR", pbuf, 8) == 0) { |
| 482 | cifs_dbg(FYI, "Char device\n"); |
| 483 | fattr->cf_mode |= S_IFCHR; |
| 484 | fattr->cf_dtype = DT_CHR; |
| 485 | if (bytes_read == 24) { |
| 486 | /* we have enough to decode dev num */ |
| 487 | __u64 mjr; /* major */ |
| 488 | __u64 mnr; /* minor */ |
| 489 | mjr = le64_to_cpu(*(__le64 *)(pbuf+8)); |
| 490 | mnr = le64_to_cpu(*(__le64 *)(pbuf+16)); |
| 491 | fattr->cf_rdev = MKDEV(mjr, mnr); |
| 492 | } |
| 493 | } else if (memcmp("IntxLNK", pbuf, 7) == 0) { |
| 494 | cifs_dbg(FYI, "Symlink\n"); |
| 495 | fattr->cf_mode |= S_IFLNK; |
| 496 | fattr->cf_dtype = DT_LNK; |
| 497 | } else { |
| 498 | fattr->cf_mode |= S_IFREG; /* file? */ |
| 499 | fattr->cf_dtype = DT_REG; |
| 500 | rc = -EOPNOTSUPP; |
| 501 | } |
| 502 | } else { |
| 503 | fattr->cf_mode |= S_IFREG; /* then it is a file */ |
| 504 | fattr->cf_dtype = DT_REG; |
| 505 | rc = -EOPNOTSUPP; /* or some unknown SFU type */ |
| 506 | } |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 507 | CIFSSMBClose(xid, tcon, fid.netfid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 508 | cifs_put_tlink(tlink); |
Steve French | d6e2f2a4 | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 509 | return rc; |
Steve French | d6e2f2a4 | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 510 | } |
| 511 | |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 512 | #define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */ |
| 513 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 514 | /* |
| 515 | * Fetch mode bits as provided by SFU. |
| 516 | * |
| 517 | * FIXME: Doesn't this clobber the type bit we got from cifs_sfu_type ? |
| 518 | */ |
| 519 | static int cifs_sfu_mode(struct cifs_fattr *fattr, const unsigned char *path, |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 520 | struct cifs_sb_info *cifs_sb, unsigned int xid) |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 521 | { |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 522 | #ifdef CONFIG_CIFS_XATTR |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 523 | ssize_t rc; |
| 524 | char ea_value[4]; |
| 525 | __u32 mode; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 526 | struct tcon_link *tlink; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 527 | struct cifs_tcon *tcon; |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 528 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 529 | tlink = cifs_sb_tlink(cifs_sb); |
| 530 | if (IS_ERR(tlink)) |
| 531 | return PTR_ERR(tlink); |
| 532 | tcon = tlink_tcon(tlink); |
| 533 | |
Steve French | d979f3b | 2014-02-01 23:27:18 -0600 | [diff] [blame] | 534 | if (tcon->ses->server->ops->query_all_EAs == NULL) { |
| 535 | cifs_put_tlink(tlink); |
| 536 | return -EOPNOTSUPP; |
| 537 | } |
| 538 | |
| 539 | rc = tcon->ses->server->ops->query_all_EAs(xid, tcon, path, |
| 540 | "SETFILEBITS", ea_value, 4 /* size of buf */, |
| 541 | cifs_sb->local_nls, |
| 542 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 543 | cifs_put_tlink(tlink); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 544 | if (rc < 0) |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 545 | return (int)rc; |
| 546 | else if (rc > 3) { |
| 547 | mode = le32_to_cpu(*((__le32 *)ea_value)); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 548 | fattr->cf_mode &= ~SFBITS_MASK; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 549 | cifs_dbg(FYI, "special bits 0%o org mode 0%o\n", |
| 550 | mode, fattr->cf_mode); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 551 | fattr->cf_mode = (mode & SFBITS_MASK) | fattr->cf_mode; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 552 | cifs_dbg(FYI, "special mode bits 0%o\n", mode); |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 553 | } |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 554 | |
| 555 | return 0; |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 556 | #else |
| 557 | return -EOPNOTSUPP; |
| 558 | #endif |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 559 | } |
| 560 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 561 | /* Fill a cifs_fattr struct with info from FILE_ALL_INFO */ |
Steve French | f1230c9 | 2009-07-22 23:13:01 +0000 | [diff] [blame] | 562 | static void |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 563 | cifs_all_info_to_fattr(struct cifs_fattr *fattr, FILE_ALL_INFO *info, |
Pavel Shilovsky | eb85d94b | 2013-10-23 17:49:47 +0400 | [diff] [blame] | 564 | struct cifs_sb_info *cifs_sb, bool adjust_tz, |
| 565 | bool symlink) |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 566 | { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 567 | struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); |
Jeff Layton | 0d424ad | 2010-09-20 16:01:35 -0700 | [diff] [blame] | 568 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 569 | memset(fattr, 0, sizeof(*fattr)); |
| 570 | fattr->cf_cifsattrs = le32_to_cpu(info->Attributes); |
| 571 | if (info->DeletePending) |
| 572 | fattr->cf_flags |= CIFS_FATTR_DELETE_PENDING; |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 573 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 574 | if (info->LastAccessTime) |
| 575 | fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime); |
| 576 | else |
| 577 | fattr->cf_atime = CURRENT_TIME; |
| 578 | |
| 579 | fattr->cf_ctime = cifs_NTtimeToUnix(info->ChangeTime); |
| 580 | fattr->cf_mtime = cifs_NTtimeToUnix(info->LastWriteTime); |
| 581 | |
| 582 | if (adjust_tz) { |
Jeff Layton | 0d424ad | 2010-09-20 16:01:35 -0700 | [diff] [blame] | 583 | fattr->cf_ctime.tv_sec += tcon->ses->server->timeAdj; |
| 584 | fattr->cf_mtime.tv_sec += tcon->ses->server->timeAdj; |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | fattr->cf_eof = le64_to_cpu(info->EndOfFile); |
| 588 | fattr->cf_bytes = le64_to_cpu(info->AllocationSize); |
Jeff Layton | 20054bd | 2011-01-07 11:30:27 -0500 | [diff] [blame] | 589 | fattr->cf_createtime = le64_to_cpu(info->CreationTime); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 590 | |
Jim McDonough | 74d290d | 2013-09-21 10:36:10 -0500 | [diff] [blame] | 591 | fattr->cf_nlink = le32_to_cpu(info->NumberOfLinks); |
Pavel Shilovsky | eb85d94b | 2013-10-23 17:49:47 +0400 | [diff] [blame] | 592 | |
| 593 | if (symlink) { |
| 594 | fattr->cf_mode = S_IFLNK; |
| 595 | fattr->cf_dtype = DT_LNK; |
| 596 | } else if (fattr->cf_cifsattrs & ATTR_DIRECTORY) { |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 597 | fattr->cf_mode = S_IFDIR | cifs_sb->mnt_dir_mode; |
| 598 | fattr->cf_dtype = DT_DIR; |
Pavel Shilovsky | 6de2ce4 | 2012-02-17 16:13:30 +0300 | [diff] [blame] | 599 | /* |
| 600 | * Server can return wrong NumberOfLinks value for directories |
| 601 | * when Unix extensions are disabled - fake it. |
| 602 | */ |
Jim McDonough | 74d290d | 2013-09-21 10:36:10 -0500 | [diff] [blame] | 603 | if (!tcon->unix_ext) |
| 604 | fattr->cf_flags |= CIFS_FATTR_UNKNOWN_NLINK; |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 605 | } else { |
| 606 | fattr->cf_mode = S_IFREG | cifs_sb->mnt_file_mode; |
| 607 | fattr->cf_dtype = DT_REG; |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 608 | |
Jeff Layton | d0c280d | 2009-07-09 01:46:44 -0400 | [diff] [blame] | 609 | /* clear write bits if ATTR_READONLY is set */ |
| 610 | if (fattr->cf_cifsattrs & ATTR_READONLY) |
| 611 | fattr->cf_mode &= ~(S_IWUGO); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 612 | |
Jim McDonough | 74d290d | 2013-09-21 10:36:10 -0500 | [diff] [blame] | 613 | /* |
| 614 | * Don't accept zero nlink from non-unix servers unless |
| 615 | * delete is pending. Instead mark it as unknown. |
| 616 | */ |
| 617 | if ((fattr->cf_nlink < 1) && !tcon->unix_ext && |
| 618 | !info->DeletePending) { |
| 619 | cifs_dbg(1, "bogus file nlink value %u\n", |
Steve French | 6658b9f | 2013-07-04 14:38:48 -0500 | [diff] [blame] | 620 | fattr->cf_nlink); |
Jim McDonough | 74d290d | 2013-09-21 10:36:10 -0500 | [diff] [blame] | 621 | fattr->cf_flags |= CIFS_FATTR_UNKNOWN_NLINK; |
Steve French | 6658b9f | 2013-07-04 14:38:48 -0500 | [diff] [blame] | 622 | } |
Pavel Shilovsky | 6de2ce4 | 2012-02-17 16:13:30 +0300 | [diff] [blame] | 623 | } |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 624 | |
| 625 | fattr->cf_uid = cifs_sb->mnt_uid; |
| 626 | fattr->cf_gid = cifs_sb->mnt_gid; |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 627 | } |
| 628 | |
Pavel Shilovsky | 4ad6504 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 629 | static int |
| 630 | cifs_get_file_info(struct file *filp) |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 631 | { |
| 632 | int rc; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 633 | unsigned int xid; |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 634 | FILE_ALL_INFO find_data; |
| 635 | struct cifs_fattr fattr; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 636 | struct inode *inode = file_inode(filp); |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 637 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 638 | struct cifsFileInfo *cfile = filp->private_data; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 639 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
Pavel Shilovsky | 4ad6504 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 640 | struct TCP_Server_Info *server = tcon->ses->server; |
| 641 | |
| 642 | if (!server->ops->query_file_info) |
| 643 | return -ENOSYS; |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 644 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 645 | xid = get_xid(); |
Pavel Shilovsky | 4ad6504 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 646 | rc = server->ops->query_file_info(xid, tcon, &cfile->fid, &find_data); |
Pavel Shilovsky | 42274bb | 2011-10-22 14:37:50 +0400 | [diff] [blame] | 647 | switch (rc) { |
| 648 | case 0: |
Pavel Shilovsky | eb85d94b | 2013-10-23 17:49:47 +0400 | [diff] [blame] | 649 | cifs_all_info_to_fattr(&fattr, &find_data, cifs_sb, false, |
| 650 | false); |
Pavel Shilovsky | 42274bb | 2011-10-22 14:37:50 +0400 | [diff] [blame] | 651 | break; |
| 652 | case -EREMOTE: |
| 653 | cifs_create_dfs_fattr(&fattr, inode->i_sb); |
| 654 | rc = 0; |
| 655 | break; |
| 656 | case -EOPNOTSUPP: |
| 657 | case -EINVAL: |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 658 | /* |
| 659 | * FIXME: legacy server -- fall back to path-based call? |
Steve French | ff215713 | 2010-03-09 20:30:42 +0000 | [diff] [blame] | 660 | * for now, just skip revalidating and mark inode for |
| 661 | * immediate reval. |
| 662 | */ |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 663 | rc = 0; |
| 664 | CIFS_I(inode)->time = 0; |
Pavel Shilovsky | 42274bb | 2011-10-22 14:37:50 +0400 | [diff] [blame] | 665 | default: |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 666 | goto cgfi_exit; |
Pavel Shilovsky | 42274bb | 2011-10-22 14:37:50 +0400 | [diff] [blame] | 667 | } |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 668 | |
| 669 | /* |
| 670 | * don't bother with SFU junk here -- just mark inode as needing |
| 671 | * revalidation. |
| 672 | */ |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 673 | fattr.cf_uniqueid = CIFS_I(inode)->uniqueid; |
| 674 | fattr.cf_flags |= CIFS_FATTR_NEED_REVAL; |
| 675 | cifs_fattr_to_inode(inode, &fattr); |
| 676 | cgfi_exit: |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 677 | free_xid(xid); |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 678 | return rc; |
| 679 | } |
| 680 | |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 681 | int |
| 682 | cifs_get_inode_info(struct inode **inode, const char *full_path, |
| 683 | FILE_ALL_INFO *data, struct super_block *sb, int xid, |
Steve French | 42eacf9 | 2014-02-10 14:08:16 -0600 | [diff] [blame] | 684 | const struct cifs_fid *fid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | { |
Shirish Pargaonkar | c052e2b | 2012-09-28 12:21:14 -0500 | [diff] [blame] | 686 | bool validinum = false; |
| 687 | __u16 srchflgs; |
| 688 | int rc = 0, tmprc = ENOSYS; |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 689 | struct cifs_tcon *tcon; |
| 690 | struct TCP_Server_Info *server; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 691 | struct tcon_link *tlink; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | char *buf = NULL; |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 694 | bool adjust_tz = false; |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 695 | struct cifs_fattr fattr; |
Shirish Pargaonkar | c052e2b | 2012-09-28 12:21:14 -0500 | [diff] [blame] | 696 | struct cifs_search_info *srchinf = NULL; |
Pavel Shilovsky | eb85d94b | 2013-10-23 17:49:47 +0400 | [diff] [blame] | 697 | bool symlink = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 699 | tlink = cifs_sb_tlink(cifs_sb); |
| 700 | if (IS_ERR(tlink)) |
| 701 | return PTR_ERR(tlink); |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 702 | tcon = tlink_tcon(tlink); |
| 703 | server = tcon->ses->server; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 704 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 705 | cifs_dbg(FYI, "Getting info on %s\n", full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 707 | if ((data == NULL) && (*inode != NULL)) { |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 708 | if (CIFS_CACHE_READ(CIFS_I(*inode))) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 709 | cifs_dbg(FYI, "No need to revalidate cached inode sizes\n"); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 710 | goto cgii_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | } |
| 712 | } |
| 713 | |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 714 | /* if inode info is not passed, get it from server */ |
| 715 | if (data == NULL) { |
| 716 | if (!server->ops->query_path_info) { |
| 717 | rc = -ENOSYS; |
| 718 | goto cgii_exit; |
| 719 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 721 | if (buf == NULL) { |
| 722 | rc = -ENOMEM; |
| 723 | goto cgii_exit; |
| 724 | } |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 725 | data = (FILE_ALL_INFO *)buf; |
| 726 | rc = server->ops->query_path_info(xid, tcon, cifs_sb, full_path, |
Pavel Shilovsky | eb85d94b | 2013-10-23 17:49:47 +0400 | [diff] [blame] | 727 | data, &adjust_tz, &symlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | } |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 729 | |
| 730 | if (!rc) { |
Pavel Shilovsky | eb85d94b | 2013-10-23 17:49:47 +0400 | [diff] [blame] | 731 | cifs_all_info_to_fattr(&fattr, data, cifs_sb, adjust_tz, |
| 732 | symlink); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 733 | } else if (rc == -EREMOTE) { |
| 734 | cifs_create_dfs_fattr(&fattr, sb); |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 735 | rc = 0; |
Shirish Pargaonkar | c052e2b | 2012-09-28 12:21:14 -0500 | [diff] [blame] | 736 | } else if (rc == -EACCES && backup_cred(cifs_sb)) { |
| 737 | srchinf = kzalloc(sizeof(struct cifs_search_info), |
| 738 | GFP_KERNEL); |
| 739 | if (srchinf == NULL) { |
| 740 | rc = -ENOMEM; |
| 741 | goto cgii_exit; |
| 742 | } |
| 743 | |
| 744 | srchinf->endOfSearch = false; |
| 745 | srchinf->info_level = SMB_FIND_FILE_ID_FULL_DIR_INFO; |
| 746 | |
| 747 | srchflgs = CIFS_SEARCH_CLOSE_ALWAYS | |
| 748 | CIFS_SEARCH_CLOSE_AT_END | |
| 749 | CIFS_SEARCH_BACKUP_SEARCH; |
| 750 | |
| 751 | rc = CIFSFindFirst(xid, tcon, full_path, |
| 752 | cifs_sb, NULL, srchflgs, srchinf, false); |
| 753 | if (!rc) { |
| 754 | data = |
| 755 | (FILE_ALL_INFO *)srchinf->srch_entries_start; |
| 756 | |
| 757 | cifs_dir_info_to_fattr(&fattr, |
| 758 | (FILE_DIRECTORY_INFO *)data, cifs_sb); |
| 759 | fattr.cf_uniqueid = le64_to_cpu( |
| 760 | ((SEARCH_ID_FULL_DIR_INFO *)data)->UniqueId); |
| 761 | validinum = true; |
| 762 | |
| 763 | cifs_buf_release(srchinf->ntwrk_buf_start); |
| 764 | } |
| 765 | kfree(srchinf); |
| 766 | } else |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 767 | goto cgii_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 769 | /* |
| 770 | * If an inode wasn't passed in, then get the inode number |
| 771 | * |
| 772 | * Is an i_ino of zero legal? Can we use that to check if the server |
| 773 | * supports returning inode numbers? Are there other sanity checks we |
| 774 | * can use to ensure that the server is really filling in that field? |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 775 | */ |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 776 | if (*inode == NULL) { |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 777 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) { |
Shirish Pargaonkar | c052e2b | 2012-09-28 12:21:14 -0500 | [diff] [blame] | 778 | if (validinum == false) { |
| 779 | if (server->ops->get_srv_inum) |
| 780 | tmprc = server->ops->get_srv_inum(xid, |
| 781 | tcon, cifs_sb, full_path, |
| 782 | &fattr.cf_uniqueid, data); |
| 783 | if (tmprc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 784 | cifs_dbg(FYI, "GetSrvInodeNum rc %d\n", |
| 785 | tmprc); |
Shirish Pargaonkar | c052e2b | 2012-09-28 12:21:14 -0500 | [diff] [blame] | 786 | fattr.cf_uniqueid = iunique(sb, ROOT_I); |
| 787 | cifs_autodisable_serverino(cifs_sb); |
| 788 | } |
Jeff Layton | 132ac7b | 2009-02-10 07:33:57 -0500 | [diff] [blame] | 789 | } |
Shirish Pargaonkar | c052e2b | 2012-09-28 12:21:14 -0500 | [diff] [blame] | 790 | } else |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 791 | fattr.cf_uniqueid = iunique(sb, ROOT_I); |
Shirish Pargaonkar | c052e2b | 2012-09-28 12:21:14 -0500 | [diff] [blame] | 792 | } else |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 793 | fattr.cf_uniqueid = CIFS_I(*inode)->uniqueid; |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 794 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 795 | /* query for SFU type info if supported and needed */ |
| 796 | if (fattr.cf_cifsattrs & ATTR_SYSTEM && |
| 797 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) { |
| 798 | tmprc = cifs_sfu_type(&fattr, full_path, cifs_sb, xid); |
| 799 | if (tmprc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 800 | cifs_dbg(FYI, "cifs_sfu_type failed: %d\n", tmprc); |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 801 | } |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 802 | |
Jeff Layton | 79df1ba | 2010-12-06 12:52:08 -0500 | [diff] [blame] | 803 | #ifdef CONFIG_CIFS_ACL |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 804 | /* fill in 0777 bits from ACL */ |
| 805 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) { |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 806 | rc = cifs_acl_to_fattr(cifs_sb, &fattr, *inode, full_path, fid); |
Shirish Pargaonkar | 78415d2 | 2010-11-27 11:37:26 -0600 | [diff] [blame] | 807 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 808 | cifs_dbg(FYI, "%s: Getting ACL failed with error: %d\n", |
| 809 | __func__, rc); |
Shirish Pargaonkar | 78415d2 | 2010-11-27 11:37:26 -0600 | [diff] [blame] | 810 | goto cgii_exit; |
| 811 | } |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 812 | } |
Jeff Layton | 79df1ba | 2010-12-06 12:52:08 -0500 | [diff] [blame] | 813 | #endif /* CONFIG_CIFS_ACL */ |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 814 | |
| 815 | /* fill in remaining high mode bits e.g. SUID, VTX */ |
| 816 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) |
| 817 | cifs_sfu_mode(&fattr, full_path, cifs_sb, xid); |
| 818 | |
Stefan Metzmacher | 1b12b9c | 2010-08-05 21:19:56 +0200 | [diff] [blame] | 819 | /* check for Minshall+French symlinks */ |
| 820 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) { |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 821 | tmprc = check_mf_symlink(xid, tcon, cifs_sb, &fattr, |
| 822 | full_path); |
Stefan Metzmacher | 1b12b9c | 2010-08-05 21:19:56 +0200 | [diff] [blame] | 823 | if (tmprc) |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 824 | cifs_dbg(FYI, "check_mf_symlink: %d\n", tmprc); |
Stefan Metzmacher | 1b12b9c | 2010-08-05 21:19:56 +0200 | [diff] [blame] | 825 | } |
| 826 | |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 827 | if (!*inode) { |
| 828 | *inode = cifs_iget(sb, &fattr); |
| 829 | if (!*inode) |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 830 | rc = -ENOMEM; |
| 831 | } else { |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 832 | cifs_fattr_to_inode(*inode, &fattr); |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 833 | } |
| 834 | |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 835 | cgii_exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | kfree(buf); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 837 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | return rc; |
| 839 | } |
| 840 | |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 841 | static const struct inode_operations cifs_ipc_inode_ops = { |
| 842 | .lookup = cifs_lookup, |
| 843 | }; |
| 844 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 845 | static int |
| 846 | cifs_find_inode(struct inode *inode, void *opaque) |
| 847 | { |
| 848 | struct cifs_fattr *fattr = (struct cifs_fattr *) opaque; |
| 849 | |
Jeff Layton | f30b9c1 | 2010-07-19 18:00:17 -0400 | [diff] [blame] | 850 | /* don't match inode with different uniqueid */ |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 851 | if (CIFS_I(inode)->uniqueid != fattr->cf_uniqueid) |
| 852 | return 0; |
| 853 | |
Jeff Layton | 20054bd | 2011-01-07 11:30:27 -0500 | [diff] [blame] | 854 | /* use createtime like an i_generation field */ |
| 855 | if (CIFS_I(inode)->createtime != fattr->cf_createtime) |
| 856 | return 0; |
| 857 | |
Jeff Layton | f30b9c1 | 2010-07-19 18:00:17 -0400 | [diff] [blame] | 858 | /* don't match inode of different type */ |
| 859 | if ((inode->i_mode & S_IFMT) != (fattr->cf_mode & S_IFMT)) |
| 860 | return 0; |
| 861 | |
Jeff Layton | 5acfec2 | 2010-08-02 17:43:54 -0400 | [diff] [blame] | 862 | /* if it's not a directory or has no dentries, then flag it */ |
Al Viro | b3d9b7a | 2012-06-09 13:51:19 -0400 | [diff] [blame] | 863 | if (S_ISDIR(inode->i_mode) && !hlist_empty(&inode->i_dentry)) |
Jeff Layton | 3d69438 | 2010-05-11 14:59:55 -0400 | [diff] [blame] | 864 | fattr->cf_flags |= CIFS_FATTR_INO_COLLISION; |
Jeff Layton | 3d69438 | 2010-05-11 14:59:55 -0400 | [diff] [blame] | 865 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 866 | return 1; |
| 867 | } |
| 868 | |
| 869 | static int |
| 870 | cifs_init_inode(struct inode *inode, void *opaque) |
| 871 | { |
| 872 | struct cifs_fattr *fattr = (struct cifs_fattr *) opaque; |
| 873 | |
| 874 | CIFS_I(inode)->uniqueid = fattr->cf_uniqueid; |
Jeff Layton | 20054bd | 2011-01-07 11:30:27 -0500 | [diff] [blame] | 875 | CIFS_I(inode)->createtime = fattr->cf_createtime; |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 876 | return 0; |
| 877 | } |
| 878 | |
Jeff Layton | 5acfec2 | 2010-08-02 17:43:54 -0400 | [diff] [blame] | 879 | /* |
| 880 | * walk dentry list for an inode and report whether it has aliases that |
| 881 | * are hashed. We use this to determine if a directory inode can actually |
| 882 | * be used. |
| 883 | */ |
| 884 | static bool |
| 885 | inode_has_hashed_dentries(struct inode *inode) |
| 886 | { |
| 887 | struct dentry *dentry; |
| 888 | |
Nick Piggin | 873feea | 2011-01-07 17:50:06 +1100 | [diff] [blame] | 889 | spin_lock(&inode->i_lock); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 890 | hlist_for_each_entry(dentry, &inode->i_dentry, d_alias) { |
Jeff Layton | 5acfec2 | 2010-08-02 17:43:54 -0400 | [diff] [blame] | 891 | if (!d_unhashed(dentry) || IS_ROOT(dentry)) { |
Nick Piggin | 873feea | 2011-01-07 17:50:06 +1100 | [diff] [blame] | 892 | spin_unlock(&inode->i_lock); |
Jeff Layton | 5acfec2 | 2010-08-02 17:43:54 -0400 | [diff] [blame] | 893 | return true; |
| 894 | } |
| 895 | } |
Nick Piggin | 873feea | 2011-01-07 17:50:06 +1100 | [diff] [blame] | 896 | spin_unlock(&inode->i_lock); |
Jeff Layton | 5acfec2 | 2010-08-02 17:43:54 -0400 | [diff] [blame] | 897 | return false; |
| 898 | } |
| 899 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 900 | /* Given fattrs, get a corresponding inode */ |
| 901 | struct inode * |
| 902 | cifs_iget(struct super_block *sb, struct cifs_fattr *fattr) |
| 903 | { |
| 904 | unsigned long hash; |
| 905 | struct inode *inode; |
| 906 | |
Jeff Layton | 3d69438 | 2010-05-11 14:59:55 -0400 | [diff] [blame] | 907 | retry_iget5_locked: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 908 | cifs_dbg(FYI, "looking for uniqueid=%llu\n", fattr->cf_uniqueid); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 909 | |
| 910 | /* hash down to 32-bits on 32-bit arch */ |
| 911 | hash = cifs_uniqueid_to_ino_t(fattr->cf_uniqueid); |
| 912 | |
| 913 | inode = iget5_locked(sb, hash, cifs_find_inode, cifs_init_inode, fattr); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 914 | if (inode) { |
Jeff Layton | 5acfec2 | 2010-08-02 17:43:54 -0400 | [diff] [blame] | 915 | /* was there a potentially problematic inode collision? */ |
Jeff Layton | 3d69438 | 2010-05-11 14:59:55 -0400 | [diff] [blame] | 916 | if (fattr->cf_flags & CIFS_FATTR_INO_COLLISION) { |
Jeff Layton | 3d69438 | 2010-05-11 14:59:55 -0400 | [diff] [blame] | 917 | fattr->cf_flags &= ~CIFS_FATTR_INO_COLLISION; |
Jeff Layton | 5acfec2 | 2010-08-02 17:43:54 -0400 | [diff] [blame] | 918 | |
| 919 | if (inode_has_hashed_dentries(inode)) { |
| 920 | cifs_autodisable_serverino(CIFS_SB(sb)); |
| 921 | iput(inode); |
| 922 | fattr->cf_uniqueid = iunique(sb, ROOT_I); |
| 923 | goto retry_iget5_locked; |
| 924 | } |
Jeff Layton | 3d69438 | 2010-05-11 14:59:55 -0400 | [diff] [blame] | 925 | } |
| 926 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 927 | cifs_fattr_to_inode(inode, fattr); |
| 928 | if (sb->s_flags & MS_NOATIME) |
| 929 | inode->i_flags |= S_NOATIME | S_NOCMTIME; |
| 930 | if (inode->i_state & I_NEW) { |
| 931 | inode->i_ino = hash; |
Jeff Layton | 522440e | 2010-09-29 09:49:54 -0400 | [diff] [blame] | 932 | if (S_ISREG(inode->i_mode)) |
| 933 | inode->i_data.backing_dev_info = sb->s_bdi; |
Steve French | 0ccd480 | 2010-07-16 04:31:02 +0000 | [diff] [blame] | 934 | #ifdef CONFIG_CIFS_FSCACHE |
Suresh Jayaraman | 9451a9a | 2010-07-05 18:12:45 +0530 | [diff] [blame] | 935 | /* initialize per-inode cache cookie pointer */ |
| 936 | CIFS_I(inode)->fscache = NULL; |
Steve French | 0ccd480 | 2010-07-16 04:31:02 +0000 | [diff] [blame] | 937 | #endif |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 938 | unlock_new_inode(inode); |
| 939 | } |
| 940 | } |
| 941 | |
| 942 | return inode; |
| 943 | } |
| 944 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | /* gets root inode */ |
Shirish Pargaonkar | 9b6763e | 2011-02-21 23:56:59 -0600 | [diff] [blame] | 946 | struct inode *cifs_root_iget(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | { |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 948 | unsigned int xid; |
Jeff Layton | 0d424ad | 2010-09-20 16:01:35 -0700 | [diff] [blame] | 949 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 950 | struct inode *inode = NULL; |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 951 | long rc; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 952 | struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 953 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 954 | xid = get_xid(); |
Jeff Layton | 0d424ad | 2010-09-20 16:01:35 -0700 | [diff] [blame] | 955 | if (tcon->unix_ext) |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 956 | rc = cifs_get_inode_info_unix(&inode, "", sb, xid); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 957 | else |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 958 | rc = cifs_get_inode_info(&inode, "", NULL, sb, xid, NULL); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 959 | |
Oskar Schirmer | a7851ce | 2010-11-10 21:06:13 +0000 | [diff] [blame] | 960 | if (!inode) { |
| 961 | inode = ERR_PTR(rc); |
| 962 | goto out; |
| 963 | } |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 964 | |
Steve French | 0ccd480 | 2010-07-16 04:31:02 +0000 | [diff] [blame] | 965 | #ifdef CONFIG_CIFS_FSCACHE |
Suresh Jayaraman | d03382c | 2010-07-05 18:12:27 +0530 | [diff] [blame] | 966 | /* populate tcon->resource_id */ |
Jeff Layton | 0d424ad | 2010-09-20 16:01:35 -0700 | [diff] [blame] | 967 | tcon->resource_id = CIFS_I(inode)->uniqueid; |
Steve French | 0ccd480 | 2010-07-16 04:31:02 +0000 | [diff] [blame] | 968 | #endif |
Suresh Jayaraman | d03382c | 2010-07-05 18:12:27 +0530 | [diff] [blame] | 969 | |
Jeff Layton | 0d424ad | 2010-09-20 16:01:35 -0700 | [diff] [blame] | 970 | if (rc && tcon->ipc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 971 | cifs_dbg(FYI, "ipc connection - fake read inode\n"); |
Steve French | b7ca692 | 2012-08-03 08:43:01 -0500 | [diff] [blame] | 972 | spin_lock(&inode->i_lock); |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 973 | inode->i_mode |= S_IFDIR; |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 974 | set_nlink(inode, 2); |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 975 | inode->i_op = &cifs_ipc_inode_ops; |
| 976 | inode->i_fop = &simple_dir_operations; |
| 977 | inode->i_uid = cifs_sb->mnt_uid; |
| 978 | inode->i_gid = cifs_sb->mnt_gid; |
Steve French | b7ca692 | 2012-08-03 08:43:01 -0500 | [diff] [blame] | 979 | spin_unlock(&inode->i_lock); |
Steve French | ad66133 | 2008-08-12 14:14:40 +0000 | [diff] [blame] | 980 | } else if (rc) { |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 981 | iget_failed(inode); |
Oskar Schirmer | a7851ce | 2010-11-10 21:06:13 +0000 | [diff] [blame] | 982 | inode = ERR_PTR(rc); |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 983 | } |
| 984 | |
Oskar Schirmer | a7851ce | 2010-11-10 21:06:13 +0000 | [diff] [blame] | 985 | out: |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 986 | /* can not call macro free_xid here since in a void func |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 987 | * TODO: This is no longer true |
| 988 | */ |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 989 | _free_xid(xid); |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 990 | return inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | } |
| 992 | |
Pavel Shilovsky | ed6875e | 2012-09-18 16:20:25 -0700 | [diff] [blame] | 993 | int |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 994 | cifs_set_file_info(struct inode *inode, struct iattr *attrs, unsigned int xid, |
Pavel Shilovsky | ed6875e | 2012-09-18 16:20:25 -0700 | [diff] [blame] | 995 | char *full_path, __u32 dosattr) |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 996 | { |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 997 | bool set_time = false; |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 998 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Pavel Shilovsky | 6bdf6db | 2012-09-18 16:20:32 -0700 | [diff] [blame] | 999 | struct TCP_Server_Info *server; |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1000 | FILE_BASIC_INFO info_buf; |
| 1001 | |
Steve French | 1adcb71 | 2009-02-25 14:19:56 +0000 | [diff] [blame] | 1002 | if (attrs == NULL) |
| 1003 | return -EINVAL; |
| 1004 | |
Pavel Shilovsky | 6bdf6db | 2012-09-18 16:20:32 -0700 | [diff] [blame] | 1005 | server = cifs_sb_master_tcon(cifs_sb)->ses->server; |
| 1006 | if (!server->ops->set_file_info) |
| 1007 | return -ENOSYS; |
| 1008 | |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1009 | if (attrs->ia_valid & ATTR_ATIME) { |
| 1010 | set_time = true; |
| 1011 | info_buf.LastAccessTime = |
| 1012 | cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_atime)); |
| 1013 | } else |
| 1014 | info_buf.LastAccessTime = 0; |
| 1015 | |
| 1016 | if (attrs->ia_valid & ATTR_MTIME) { |
| 1017 | set_time = true; |
| 1018 | info_buf.LastWriteTime = |
| 1019 | cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_mtime)); |
| 1020 | } else |
| 1021 | info_buf.LastWriteTime = 0; |
| 1022 | |
| 1023 | /* |
| 1024 | * Samba throws this field away, but windows may actually use it. |
| 1025 | * Do not set ctime unless other time stamps are changed explicitly |
| 1026 | * (i.e. by utimes()) since we would then have a mix of client and |
| 1027 | * server times. |
| 1028 | */ |
| 1029 | if (set_time && (attrs->ia_valid & ATTR_CTIME)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1030 | cifs_dbg(FYI, "CIFS - CTIME changed\n"); |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1031 | info_buf.ChangeTime = |
| 1032 | cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_ctime)); |
| 1033 | } else |
| 1034 | info_buf.ChangeTime = 0; |
| 1035 | |
| 1036 | info_buf.CreationTime = 0; /* don't change */ |
| 1037 | info_buf.Attributes = cpu_to_le32(dosattr); |
| 1038 | |
Pavel Shilovsky | 6bdf6db | 2012-09-18 16:20:32 -0700 | [diff] [blame] | 1039 | return server->ops->set_file_info(inode, full_path, &info_buf, xid); |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1040 | } |
| 1041 | |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1042 | /* |
Pavel Shilovsky | ed6875e | 2012-09-18 16:20:25 -0700 | [diff] [blame] | 1043 | * Open the given file (if it isn't already), set the DELETE_ON_CLOSE bit |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1044 | * and rename it to a random name that hopefully won't conflict with |
| 1045 | * anything else. |
| 1046 | */ |
Pavel Shilovsky | ed6875e | 2012-09-18 16:20:25 -0700 | [diff] [blame] | 1047 | int |
| 1048 | cifs_rename_pending_delete(const char *full_path, struct dentry *dentry, |
| 1049 | const unsigned int xid) |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1050 | { |
| 1051 | int oplock = 0; |
| 1052 | int rc; |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 1053 | struct cifs_fid fid; |
| 1054 | struct cifs_open_parms oparms; |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1055 | struct inode *inode = dentry->d_inode; |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1056 | struct cifsInodeInfo *cifsInode = CIFS_I(inode); |
| 1057 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1058 | struct tcon_link *tlink; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 1059 | struct cifs_tcon *tcon; |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1060 | __u32 dosattr, origattr; |
| 1061 | FILE_BASIC_INFO *info_buf = NULL; |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1062 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1063 | tlink = cifs_sb_tlink(cifs_sb); |
| 1064 | if (IS_ERR(tlink)) |
| 1065 | return PTR_ERR(tlink); |
| 1066 | tcon = tlink_tcon(tlink); |
| 1067 | |
Sachin Prabhu | c483a98 | 2013-03-05 19:25:56 +0000 | [diff] [blame] | 1068 | /* |
| 1069 | * We cannot rename the file if the server doesn't support |
| 1070 | * CAP_INFOLEVEL_PASSTHRU |
| 1071 | */ |
| 1072 | if (!(tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)) { |
| 1073 | rc = -EBUSY; |
| 1074 | goto out; |
| 1075 | } |
| 1076 | |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 1077 | oparms.tcon = tcon; |
| 1078 | oparms.cifs_sb = cifs_sb; |
| 1079 | oparms.desired_access = DELETE | FILE_WRITE_ATTRIBUTES; |
| 1080 | oparms.create_options = CREATE_NOT_DIR; |
| 1081 | oparms.disposition = FILE_OPEN; |
| 1082 | oparms.path = full_path; |
| 1083 | oparms.fid = &fid; |
| 1084 | oparms.reconnect = false; |
| 1085 | |
| 1086 | rc = CIFS_open(xid, &oparms, &oplock, NULL); |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1087 | if (rc != 0) |
| 1088 | goto out; |
| 1089 | |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1090 | origattr = cifsInode->cifsAttrs; |
| 1091 | if (origattr == 0) |
| 1092 | origattr |= ATTR_NORMAL; |
| 1093 | |
| 1094 | dosattr = origattr & ~ATTR_READONLY; |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1095 | if (dosattr == 0) |
| 1096 | dosattr |= ATTR_NORMAL; |
| 1097 | dosattr |= ATTR_HIDDEN; |
| 1098 | |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1099 | /* set ATTR_HIDDEN and clear ATTR_READONLY, but only if needed */ |
| 1100 | if (dosattr != origattr) { |
| 1101 | info_buf = kzalloc(sizeof(*info_buf), GFP_KERNEL); |
| 1102 | if (info_buf == NULL) { |
| 1103 | rc = -ENOMEM; |
| 1104 | goto out_close; |
| 1105 | } |
| 1106 | info_buf->Attributes = cpu_to_le32(dosattr); |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 1107 | rc = CIFSSMBSetFileInfo(xid, tcon, info_buf, fid.netfid, |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1108 | current->tgid); |
| 1109 | /* although we would like to mark the file hidden |
| 1110 | if that fails we will still try to rename it */ |
Sachin Prabhu | 72d282d | 2013-03-05 19:25:55 +0000 | [diff] [blame] | 1111 | if (!rc) |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1112 | cifsInode->cifsAttrs = dosattr; |
| 1113 | else |
| 1114 | dosattr = origattr; /* since not able to change them */ |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1115 | } |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1116 | |
Jeff Layton | dd1db2d | 2008-10-16 19:27:12 -0400 | [diff] [blame] | 1117 | /* rename the file */ |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 1118 | rc = CIFSSMBRenameOpenFile(xid, tcon, fid.netfid, NULL, |
| 1119 | cifs_sb->local_nls, |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1120 | cifs_sb->mnt_cifs_flags & |
| 1121 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1122 | if (rc != 0) { |
Sachin Prabhu | 47c78f4 | 2013-03-11 13:08:49 +0000 | [diff] [blame] | 1123 | rc = -EBUSY; |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1124 | goto undo_setattr; |
| 1125 | } |
Jeff Layton | 6d22f09 | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1126 | |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1127 | /* try to set DELETE_ON_CLOSE */ |
Jeff Layton | aff8d5c | 2014-04-30 09:31:45 -0400 | [diff] [blame] | 1128 | if (!test_bit(CIFS_INO_DELETE_PENDING, &cifsInode->flags)) { |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 1129 | rc = CIFSSMBSetFileDisposition(xid, tcon, true, fid.netfid, |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1130 | current->tgid); |
| 1131 | /* |
| 1132 | * some samba versions return -ENOENT when we try to set the |
| 1133 | * file disposition here. Likely a samba bug, but work around |
| 1134 | * it for now. This means that some cifsXXX files may hang |
| 1135 | * around after they shouldn't. |
| 1136 | * |
| 1137 | * BB: remove this hack after more servers have the fix |
| 1138 | */ |
| 1139 | if (rc == -ENOENT) |
| 1140 | rc = 0; |
| 1141 | else if (rc != 0) { |
Sachin Prabhu | 47c78f4 | 2013-03-11 13:08:49 +0000 | [diff] [blame] | 1142 | rc = -EBUSY; |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1143 | goto undo_rename; |
| 1144 | } |
Jeff Layton | aff8d5c | 2014-04-30 09:31:45 -0400 | [diff] [blame] | 1145 | set_bit(CIFS_INO_DELETE_PENDING, &cifsInode->flags); |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1146 | } |
Jeff Layton | 7ce86d5 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1147 | |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1148 | out_close: |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 1149 | CIFSSMBClose(xid, tcon, fid.netfid); |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1150 | out: |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1151 | kfree(info_buf); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1152 | cifs_put_tlink(tlink); |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1153 | return rc; |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1154 | |
| 1155 | /* |
| 1156 | * reset everything back to the original state. Don't bother |
| 1157 | * dealing with errors here since we can't do anything about |
| 1158 | * them anyway. |
| 1159 | */ |
| 1160 | undo_rename: |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 1161 | CIFSSMBRenameOpenFile(xid, tcon, fid.netfid, dentry->d_name.name, |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1162 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
| 1163 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 1164 | undo_setattr: |
| 1165 | if (dosattr != origattr) { |
| 1166 | info_buf->Attributes = cpu_to_le32(origattr); |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 1167 | if (!CIFSSMBSetFileInfo(xid, tcon, info_buf, fid.netfid, |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1168 | current->tgid)) |
| 1169 | cifsInode->cifsAttrs = origattr; |
| 1170 | } |
| 1171 | |
| 1172 | goto out_close; |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1173 | } |
| 1174 | |
Steve French | b7ca692 | 2012-08-03 08:43:01 -0500 | [diff] [blame] | 1175 | /* copied from fs/nfs/dir.c with small changes */ |
| 1176 | static void |
| 1177 | cifs_drop_nlink(struct inode *inode) |
| 1178 | { |
| 1179 | spin_lock(&inode->i_lock); |
| 1180 | if (inode->i_nlink > 0) |
| 1181 | drop_nlink(inode); |
| 1182 | spin_unlock(&inode->i_lock); |
| 1183 | } |
Steve French | ff69452 | 2009-04-20 19:45:13 +0000 | [diff] [blame] | 1184 | |
| 1185 | /* |
| 1186 | * If dentry->d_inode is null (usually meaning the cached dentry |
| 1187 | * is a negative dentry) then we would attempt a standard SMB delete, but |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 1188 | * if that fails we can not attempt the fall back mechanisms on EACCESS |
| 1189 | * but will return the EACCESS to the caller. Note that the VFS does not call |
Steve French | ff69452 | 2009-04-20 19:45:13 +0000 | [diff] [blame] | 1190 | * unlink on negative dentries currently. |
| 1191 | */ |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1192 | int cifs_unlink(struct inode *dir, struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | { |
| 1194 | int rc = 0; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1195 | unsigned int xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | char *full_path = NULL; |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1197 | struct inode *inode = dentry->d_inode; |
Steve French | ff69452 | 2009-04-20 19:45:13 +0000 | [diff] [blame] | 1198 | struct cifsInodeInfo *cifs_inode; |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1199 | struct super_block *sb = dir->i_sb; |
| 1200 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1201 | struct tcon_link *tlink; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 1202 | struct cifs_tcon *tcon; |
Pavel Shilovsky | ed6875e | 2012-09-18 16:20:25 -0700 | [diff] [blame] | 1203 | struct TCP_Server_Info *server; |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1204 | struct iattr *attrs = NULL; |
| 1205 | __u32 dosattr = 0, origattr = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1207 | cifs_dbg(FYI, "cifs_unlink, dir=0x%p, dentry=0x%p\n", dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1209 | tlink = cifs_sb_tlink(cifs_sb); |
| 1210 | if (IS_ERR(tlink)) |
| 1211 | return PTR_ERR(tlink); |
| 1212 | tcon = tlink_tcon(tlink); |
Pavel Shilovsky | ed6875e | 2012-09-18 16:20:25 -0700 | [diff] [blame] | 1213 | server = tcon->ses->server; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1214 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1215 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1217 | /* Unlink can be called from rename so we can not take the |
| 1218 | * sb->s_vfs_rename_mutex here */ |
| 1219 | full_path = build_path_from_dentry(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1221 | rc = -ENOMEM; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1222 | goto unlink_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | } |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 1224 | |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 1225 | if (cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP & |
| 1226 | le64_to_cpu(tcon->fsUnixInfo.Capability))) { |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1227 | rc = CIFSPOSIXDelFile(xid, tcon, full_path, |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 1228 | SMB_POSIX_UNLINK_FILE_TARGET, cifs_sb->local_nls, |
| 1229 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1230 | cifs_dbg(FYI, "posix del rc %d\n", rc); |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 1231 | if ((rc == 0) || (rc == -ENOENT)) |
| 1232 | goto psx_del_no_retry; |
| 1233 | } |
| 1234 | |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1235 | retry_std_delete: |
Pavel Shilovsky | ed6875e | 2012-09-18 16:20:25 -0700 | [diff] [blame] | 1236 | if (!server->ops->unlink) { |
| 1237 | rc = -ENOSYS; |
| 1238 | goto psx_del_no_retry; |
| 1239 | } |
| 1240 | |
| 1241 | rc = server->ops->unlink(xid, tcon, full_path, cifs_sb); |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1242 | |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 1243 | psx_del_no_retry: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | if (!rc) { |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1245 | if (inode) |
Steve French | b7ca692 | 2012-08-03 08:43:01 -0500 | [diff] [blame] | 1246 | cifs_drop_nlink(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | } else if (rc == -ENOENT) { |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1248 | d_drop(dentry); |
Sachin Prabhu | 47c78f4 | 2013-03-11 13:08:49 +0000 | [diff] [blame] | 1249 | } else if (rc == -EBUSY) { |
Pavel Shilovsky | ed6875e | 2012-09-18 16:20:25 -0700 | [diff] [blame] | 1250 | if (server->ops->rename_pending_delete) { |
| 1251 | rc = server->ops->rename_pending_delete(full_path, |
| 1252 | dentry, xid); |
| 1253 | if (rc == 0) |
| 1254 | cifs_drop_nlink(inode); |
| 1255 | } |
Steve French | ff69452 | 2009-04-20 19:45:13 +0000 | [diff] [blame] | 1256 | } else if ((rc == -EACCES) && (dosattr == 0) && inode) { |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1257 | attrs = kzalloc(sizeof(*attrs), GFP_KERNEL); |
| 1258 | if (attrs == NULL) { |
| 1259 | rc = -ENOMEM; |
| 1260 | goto out_reval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | } |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1262 | |
| 1263 | /* try to reset dos attributes */ |
Steve French | ff69452 | 2009-04-20 19:45:13 +0000 | [diff] [blame] | 1264 | cifs_inode = CIFS_I(inode); |
| 1265 | origattr = cifs_inode->cifsAttrs; |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1266 | if (origattr == 0) |
| 1267 | origattr |= ATTR_NORMAL; |
| 1268 | dosattr = origattr & ~ATTR_READONLY; |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1269 | if (dosattr == 0) |
| 1270 | dosattr |= ATTR_NORMAL; |
| 1271 | dosattr |= ATTR_HIDDEN; |
| 1272 | |
| 1273 | rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr); |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1274 | if (rc != 0) |
| 1275 | goto out_reval; |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1276 | |
| 1277 | goto retry_std_delete; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | } |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1279 | |
| 1280 | /* undo the setattr if we errored out and it's needed */ |
| 1281 | if (rc != 0 && dosattr != 0) |
| 1282 | cifs_set_file_info(inode, attrs, xid, full_path, origattr); |
| 1283 | |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1284 | out_reval: |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1285 | if (inode) { |
Steve French | ff69452 | 2009-04-20 19:45:13 +0000 | [diff] [blame] | 1286 | cifs_inode = CIFS_I(inode); |
| 1287 | cifs_inode->time = 0; /* will force revalidate to get info |
Steve French | b2aeb9d | 2005-05-17 13:16:18 -0500 | [diff] [blame] | 1288 | when needed */ |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1289 | inode->i_ctime = current_fs_time(sb); |
Steve French | b2aeb9d | 2005-05-17 13:16:18 -0500 | [diff] [blame] | 1290 | } |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1291 | dir->i_ctime = dir->i_mtime = current_fs_time(sb); |
Steve French | ff69452 | 2009-04-20 19:45:13 +0000 | [diff] [blame] | 1292 | cifs_inode = CIFS_I(dir); |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1293 | CIFS_I(dir)->time = 0; /* force revalidate of dir as well */ |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1294 | unlink_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | kfree(full_path); |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1296 | kfree(attrs); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1297 | free_xid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1298 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | return rc; |
| 1300 | } |
| 1301 | |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1302 | static int |
Jeff Layton | 101b92d | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 1303 | cifs_mkdir_qinfo(struct inode *parent, struct dentry *dentry, umode_t mode, |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1304 | const char *full_path, struct cifs_sb_info *cifs_sb, |
| 1305 | struct cifs_tcon *tcon, const unsigned int xid) |
| 1306 | { |
| 1307 | int rc = 0; |
Jeff Layton | 101b92d | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 1308 | struct inode *inode = NULL; |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1309 | |
| 1310 | if (tcon->unix_ext) |
Jeff Layton | 101b92d | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 1311 | rc = cifs_get_inode_info_unix(&inode, full_path, parent->i_sb, |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1312 | xid); |
| 1313 | else |
Jeff Layton | 101b92d | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 1314 | rc = cifs_get_inode_info(&inode, full_path, NULL, parent->i_sb, |
| 1315 | xid, NULL); |
| 1316 | |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1317 | if (rc) |
| 1318 | return rc; |
| 1319 | |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1320 | /* |
| 1321 | * setting nlink not necessary except in cases where we failed to get it |
Jeff Layton | 101b92d | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 1322 | * from the server or was set bogus. Also, since this is a brand new |
| 1323 | * inode, no need to grab the i_lock before setting the i_nlink. |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1324 | */ |
Jeff Layton | 101b92d | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 1325 | if (inode->i_nlink < 2) |
| 1326 | set_nlink(inode, 2); |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1327 | mode &= ~current_umask(); |
| 1328 | /* must turn on setgid bit if parent dir has it */ |
Jeff Layton | 101b92d | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 1329 | if (parent->i_mode & S_ISGID) |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1330 | mode |= S_ISGID; |
| 1331 | |
| 1332 | if (tcon->unix_ext) { |
| 1333 | struct cifs_unix_set_info_args args = { |
| 1334 | .mode = mode, |
| 1335 | .ctime = NO_CHANGE_64, |
| 1336 | .atime = NO_CHANGE_64, |
| 1337 | .mtime = NO_CHANGE_64, |
| 1338 | .device = 0, |
| 1339 | }; |
| 1340 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) { |
Eric W. Biederman | 49418b2 | 2013-02-06 00:57:56 -0800 | [diff] [blame] | 1341 | args.uid = current_fsuid(); |
Jeff Layton | 101b92d | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 1342 | if (parent->i_mode & S_ISGID) |
Eric W. Biederman | 49418b2 | 2013-02-06 00:57:56 -0800 | [diff] [blame] | 1343 | args.gid = parent->i_gid; |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1344 | else |
Eric W. Biederman | 49418b2 | 2013-02-06 00:57:56 -0800 | [diff] [blame] | 1345 | args.gid = current_fsgid(); |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1346 | } else { |
Eric W. Biederman | 49418b2 | 2013-02-06 00:57:56 -0800 | [diff] [blame] | 1347 | args.uid = INVALID_UID; /* no change */ |
| 1348 | args.gid = INVALID_GID; /* no change */ |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1349 | } |
| 1350 | CIFSSMBUnixSetPathInfo(xid, tcon, full_path, &args, |
| 1351 | cifs_sb->local_nls, |
| 1352 | cifs_sb->mnt_cifs_flags & |
| 1353 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 1354 | } else { |
Pavel Shilovsky | f436720 | 2012-03-17 11:41:12 +0300 | [diff] [blame] | 1355 | struct TCP_Server_Info *server = tcon->ses->server; |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1356 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) && |
Pavel Shilovsky | f436720 | 2012-03-17 11:41:12 +0300 | [diff] [blame] | 1357 | (mode & S_IWUGO) == 0 && server->ops->mkdir_setinfo) |
Jeff Layton | 101b92d | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 1358 | server->ops->mkdir_setinfo(inode, full_path, cifs_sb, |
Pavel Shilovsky | f436720 | 2012-03-17 11:41:12 +0300 | [diff] [blame] | 1359 | tcon, xid); |
Jeff Layton | 101b92d | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 1360 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM) |
| 1361 | inode->i_mode = (mode | S_IFDIR); |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1362 | |
Jeff Layton | 101b92d | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 1363 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) { |
| 1364 | inode->i_uid = current_fsuid(); |
| 1365 | if (inode->i_mode & S_ISGID) |
| 1366 | inode->i_gid = parent->i_gid; |
| 1367 | else |
| 1368 | inode->i_gid = current_fsgid(); |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1369 | } |
| 1370 | } |
Jeff Layton | 101b92d | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 1371 | d_instantiate(dentry, inode); |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1372 | return rc; |
| 1373 | } |
| 1374 | |
| 1375 | static int |
| 1376 | cifs_posix_mkdir(struct inode *inode, struct dentry *dentry, umode_t mode, |
| 1377 | const char *full_path, struct cifs_sb_info *cifs_sb, |
| 1378 | struct cifs_tcon *tcon, const unsigned int xid) |
| 1379 | { |
| 1380 | int rc = 0; |
| 1381 | u32 oplock = 0; |
| 1382 | FILE_UNIX_BASIC_INFO *info = NULL; |
| 1383 | struct inode *newinode = NULL; |
| 1384 | struct cifs_fattr fattr; |
| 1385 | |
| 1386 | info = kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL); |
| 1387 | if (info == NULL) { |
| 1388 | rc = -ENOMEM; |
| 1389 | goto posix_mkdir_out; |
| 1390 | } |
| 1391 | |
| 1392 | mode &= ~current_umask(); |
| 1393 | rc = CIFSPOSIXCreate(xid, tcon, SMB_O_DIRECTORY | SMB_O_CREAT, mode, |
| 1394 | NULL /* netfid */, info, &oplock, full_path, |
| 1395 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
| 1396 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 1397 | if (rc == -EOPNOTSUPP) |
| 1398 | goto posix_mkdir_out; |
| 1399 | else if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1400 | cifs_dbg(FYI, "posix mkdir returned 0x%x\n", rc); |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1401 | d_drop(dentry); |
| 1402 | goto posix_mkdir_out; |
| 1403 | } |
| 1404 | |
| 1405 | if (info->Type == cpu_to_le32(-1)) |
| 1406 | /* no return info, go query for it */ |
| 1407 | goto posix_mkdir_get_info; |
| 1408 | /* |
| 1409 | * BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if |
| 1410 | * need to set uid/gid. |
| 1411 | */ |
| 1412 | |
| 1413 | cifs_unix_basic_to_fattr(&fattr, info, cifs_sb); |
| 1414 | cifs_fill_uniqueid(inode->i_sb, &fattr); |
| 1415 | newinode = cifs_iget(inode->i_sb, &fattr); |
| 1416 | if (!newinode) |
| 1417 | goto posix_mkdir_get_info; |
| 1418 | |
| 1419 | d_instantiate(dentry, newinode); |
| 1420 | |
| 1421 | #ifdef CONFIG_CIFS_DEBUG2 |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1422 | cifs_dbg(FYI, "instantiated dentry %p %s to inode %p\n", |
| 1423 | dentry, dentry->d_name.name, newinode); |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1424 | |
| 1425 | if (newinode->i_nlink != 2) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1426 | cifs_dbg(FYI, "unexpected number of links %d\n", |
| 1427 | newinode->i_nlink); |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1428 | #endif |
| 1429 | |
| 1430 | posix_mkdir_out: |
| 1431 | kfree(info); |
| 1432 | return rc; |
| 1433 | posix_mkdir_get_info: |
| 1434 | rc = cifs_mkdir_qinfo(inode, dentry, mode, full_path, cifs_sb, tcon, |
| 1435 | xid); |
| 1436 | goto posix_mkdir_out; |
| 1437 | } |
| 1438 | |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 1439 | int cifs_mkdir(struct inode *inode, struct dentry *direntry, umode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | { |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1441 | int rc = 0; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1442 | unsigned int xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | struct cifs_sb_info *cifs_sb; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1444 | struct tcon_link *tlink; |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 1445 | struct cifs_tcon *tcon; |
Pavel Shilovsky | f436720 | 2012-03-17 11:41:12 +0300 | [diff] [blame] | 1446 | struct TCP_Server_Info *server; |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1447 | char *full_path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1449 | cifs_dbg(FYI, "In cifs_mkdir, mode = 0x%hx inode = 0x%p\n", |
| 1450 | mode, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1453 | tlink = cifs_sb_tlink(cifs_sb); |
| 1454 | if (IS_ERR(tlink)) |
| 1455 | return PTR_ERR(tlink); |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 1456 | tcon = tlink_tcon(tlink); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1457 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1458 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 1460 | full_path = build_path_from_dentry(direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1462 | rc = -ENOMEM; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1463 | goto mkdir_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1464 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1465 | |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 1466 | if (cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP & |
| 1467 | le64_to_cpu(tcon->fsUnixInfo.Capability))) { |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1468 | rc = cifs_posix_mkdir(inode, direntry, mode, full_path, cifs_sb, |
| 1469 | tcon, xid); |
| 1470 | if (rc != -EOPNOTSUPP) |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1471 | goto mkdir_out; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1472 | } |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1473 | |
Pavel Shilovsky | f436720 | 2012-03-17 11:41:12 +0300 | [diff] [blame] | 1474 | server = tcon->ses->server; |
| 1475 | |
| 1476 | if (!server->ops->mkdir) { |
| 1477 | rc = -ENOSYS; |
| 1478 | goto mkdir_out; |
| 1479 | } |
| 1480 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | /* BB add setting the equivalent of mode via CreateX w/ACLs */ |
Pavel Shilovsky | f436720 | 2012-03-17 11:41:12 +0300 | [diff] [blame] | 1482 | rc = server->ops->mkdir(xid, tcon, full_path, cifs_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1484 | cifs_dbg(FYI, "cifs_mkdir returned 0x%x\n", rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | d_drop(direntry); |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1486 | goto mkdir_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | } |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 1488 | |
| 1489 | rc = cifs_mkdir_qinfo(inode, direntry, mode, full_path, cifs_sb, tcon, |
| 1490 | xid); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1491 | mkdir_out: |
Pavel Shilovsky | 6de2ce4 | 2012-02-17 16:13:30 +0300 | [diff] [blame] | 1492 | /* |
| 1493 | * Force revalidate to get parent dir info when needed since cached |
| 1494 | * attributes are invalid now. |
| 1495 | */ |
| 1496 | CIFS_I(inode)->time = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | kfree(full_path); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1498 | free_xid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1499 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | return rc; |
| 1501 | } |
| 1502 | |
| 1503 | int cifs_rmdir(struct inode *inode, struct dentry *direntry) |
| 1504 | { |
| 1505 | int rc = 0; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1506 | unsigned int xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1507 | struct cifs_sb_info *cifs_sb; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1508 | struct tcon_link *tlink; |
Pavel Shilovsky | f958ca5 | 2012-07-10 16:14:18 +0400 | [diff] [blame] | 1509 | struct cifs_tcon *tcon; |
| 1510 | struct TCP_Server_Info *server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | char *full_path = NULL; |
| 1512 | struct cifsInodeInfo *cifsInode; |
| 1513 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1514 | cifs_dbg(FYI, "cifs_rmdir, inode = 0x%p\n", inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1516 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 1518 | full_path = build_path_from_dentry(direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1520 | rc = -ENOMEM; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1521 | goto rmdir_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | } |
| 1523 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1524 | cifs_sb = CIFS_SB(inode->i_sb); |
| 1525 | tlink = cifs_sb_tlink(cifs_sb); |
| 1526 | if (IS_ERR(tlink)) { |
| 1527 | rc = PTR_ERR(tlink); |
| 1528 | goto rmdir_exit; |
| 1529 | } |
Pavel Shilovsky | f958ca5 | 2012-07-10 16:14:18 +0400 | [diff] [blame] | 1530 | tcon = tlink_tcon(tlink); |
| 1531 | server = tcon->ses->server; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1532 | |
Pavel Shilovsky | f958ca5 | 2012-07-10 16:14:18 +0400 | [diff] [blame] | 1533 | if (!server->ops->rmdir) { |
| 1534 | rc = -ENOSYS; |
| 1535 | cifs_put_tlink(tlink); |
| 1536 | goto rmdir_exit; |
| 1537 | } |
| 1538 | |
| 1539 | rc = server->ops->rmdir(xid, tcon, full_path, cifs_sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1540 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | |
| 1542 | if (!rc) { |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1543 | spin_lock(&direntry->d_inode->i_lock); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1544 | i_size_write(direntry->d_inode, 0); |
Dave Hansen | ce71ec3 | 2006-09-30 23:29:06 -0700 | [diff] [blame] | 1545 | clear_nlink(direntry->d_inode); |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1546 | spin_unlock(&direntry->d_inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | } |
| 1548 | |
| 1549 | cifsInode = CIFS_I(direntry->d_inode); |
Pavel Shilovsky | 6de2ce4 | 2012-02-17 16:13:30 +0300 | [diff] [blame] | 1550 | /* force revalidate to go get info when needed */ |
| 1551 | cifsInode->time = 0; |
Steve French | 42c2454 | 2009-01-13 22:03:55 +0000 | [diff] [blame] | 1552 | |
| 1553 | cifsInode = CIFS_I(inode); |
Pavel Shilovsky | 6de2ce4 | 2012-02-17 16:13:30 +0300 | [diff] [blame] | 1554 | /* |
| 1555 | * Force revalidate to get parent dir info when needed since cached |
| 1556 | * attributes are invalid now. |
| 1557 | */ |
| 1558 | cifsInode->time = 0; |
Steve French | 42c2454 | 2009-01-13 22:03:55 +0000 | [diff] [blame] | 1559 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | direntry->d_inode->i_ctime = inode->i_ctime = inode->i_mtime = |
| 1561 | current_fs_time(inode->i_sb); |
| 1562 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1563 | rmdir_exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | kfree(full_path); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1565 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | return rc; |
| 1567 | } |
| 1568 | |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1569 | static int |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1570 | cifs_do_rename(const unsigned int xid, struct dentry *from_dentry, |
| 1571 | const char *from_path, struct dentry *to_dentry, |
| 1572 | const char *to_path) |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1573 | { |
| 1574 | struct cifs_sb_info *cifs_sb = CIFS_SB(from_dentry->d_sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1575 | struct tcon_link *tlink; |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1576 | struct cifs_tcon *tcon; |
| 1577 | struct TCP_Server_Info *server; |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 1578 | struct cifs_fid fid; |
| 1579 | struct cifs_open_parms oparms; |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1580 | int oplock, rc; |
| 1581 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1582 | tlink = cifs_sb_tlink(cifs_sb); |
| 1583 | if (IS_ERR(tlink)) |
| 1584 | return PTR_ERR(tlink); |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1585 | tcon = tlink_tcon(tlink); |
| 1586 | server = tcon->ses->server; |
| 1587 | |
| 1588 | if (!server->ops->rename) |
| 1589 | return -ENOSYS; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1590 | |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1591 | /* try path-based rename first */ |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1592 | rc = server->ops->rename(xid, tcon, from_path, to_path, cifs_sb); |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1593 | |
| 1594 | /* |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1595 | * Don't bother with rename by filehandle unless file is busy and |
| 1596 | * source. Note that cross directory moves do not work with |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1597 | * rename by filehandle to various Windows servers. |
| 1598 | */ |
Sachin Prabhu | 47c78f4 | 2013-03-11 13:08:49 +0000 | [diff] [blame] | 1599 | if (rc == 0 || rc != -EBUSY) |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1600 | goto do_rename_exit; |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1601 | |
Jeff Layton | ed0e3ac | 2010-06-01 16:21:01 -0400 | [diff] [blame] | 1602 | /* open-file renames don't work across directories */ |
| 1603 | if (to_dentry->d_parent != from_dentry->d_parent) |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1604 | goto do_rename_exit; |
Jeff Layton | ed0e3ac | 2010-06-01 16:21:01 -0400 | [diff] [blame] | 1605 | |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 1606 | oparms.tcon = tcon; |
| 1607 | oparms.cifs_sb = cifs_sb; |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1608 | /* open the file to be renamed -- we need DELETE perms */ |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 1609 | oparms.desired_access = DELETE; |
| 1610 | oparms.create_options = CREATE_NOT_DIR; |
| 1611 | oparms.disposition = FILE_OPEN; |
| 1612 | oparms.path = from_path; |
| 1613 | oparms.fid = &fid; |
| 1614 | oparms.reconnect = false; |
| 1615 | |
| 1616 | rc = CIFS_open(xid, &oparms, &oplock, NULL); |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1617 | if (rc == 0) { |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 1618 | rc = CIFSSMBRenameOpenFile(xid, tcon, fid.netfid, |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1619 | (const char *) to_dentry->d_name.name, |
| 1620 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
| 1621 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 1622 | CIFSSMBClose(xid, tcon, fid.netfid); |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1623 | } |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1624 | do_rename_exit: |
| 1625 | cifs_put_tlink(tlink); |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1626 | return rc; |
| 1627 | } |
| 1628 | |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1629 | int |
Miklos Szeredi | 7c33d59 | 2014-07-23 15:15:36 +0200 | [diff] [blame] | 1630 | cifs_rename2(struct inode *source_dir, struct dentry *source_dentry, |
| 1631 | struct inode *target_dir, struct dentry *target_dentry, |
| 1632 | unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | { |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1634 | char *from_name = NULL; |
| 1635 | char *to_name = NULL; |
Jeff Layton | 639e7a9 | 2010-09-03 11:50:09 -0400 | [diff] [blame] | 1636 | struct cifs_sb_info *cifs_sb; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1637 | struct tcon_link *tlink; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 1638 | struct cifs_tcon *tcon; |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1639 | FILE_UNIX_BASIC_INFO *info_buf_source = NULL; |
| 1640 | FILE_UNIX_BASIC_INFO *info_buf_target; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1641 | unsigned int xid; |
| 1642 | int rc, tmprc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | |
Miklos Szeredi | 7c33d59 | 2014-07-23 15:15:36 +0200 | [diff] [blame] | 1644 | if (flags & ~RENAME_NOREPLACE) |
| 1645 | return -EINVAL; |
| 1646 | |
Jeff Layton | 639e7a9 | 2010-09-03 11:50:09 -0400 | [diff] [blame] | 1647 | cifs_sb = CIFS_SB(source_dir->i_sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1648 | tlink = cifs_sb_tlink(cifs_sb); |
| 1649 | if (IS_ERR(tlink)) |
| 1650 | return PTR_ERR(tlink); |
| 1651 | tcon = tlink_tcon(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1653 | xid = get_xid(); |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1654 | |
| 1655 | /* |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1656 | * we already have the rename sem so we do not need to |
| 1657 | * grab it again here to protect the path integrity |
| 1658 | */ |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1659 | from_name = build_path_from_dentry(source_dentry); |
| 1660 | if (from_name == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | rc = -ENOMEM; |
| 1662 | goto cifs_rename_exit; |
| 1663 | } |
| 1664 | |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1665 | to_name = build_path_from_dentry(target_dentry); |
| 1666 | if (to_name == NULL) { |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1667 | rc = -ENOMEM; |
| 1668 | goto cifs_rename_exit; |
| 1669 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1671 | rc = cifs_do_rename(xid, source_dentry, from_name, target_dentry, |
| 1672 | to_name); |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1673 | |
Miklos Szeredi | 7c33d59 | 2014-07-23 15:15:36 +0200 | [diff] [blame] | 1674 | /* |
| 1675 | * No-replace is the natural behavior for CIFS, so skip unlink hacks. |
| 1676 | */ |
| 1677 | if (flags & RENAME_NOREPLACE) |
| 1678 | goto cifs_rename_exit; |
| 1679 | |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1680 | if (rc == -EEXIST && tcon->unix_ext) { |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1681 | /* |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1682 | * Are src and dst hardlinks of same inode? We can only tell |
| 1683 | * with unix extensions enabled. |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1684 | */ |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1685 | info_buf_source = |
| 1686 | kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO), |
| 1687 | GFP_KERNEL); |
| 1688 | if (info_buf_source == NULL) { |
| 1689 | rc = -ENOMEM; |
| 1690 | goto cifs_rename_exit; |
| 1691 | } |
| 1692 | |
| 1693 | info_buf_target = info_buf_source + 1; |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1694 | tmprc = CIFSSMBUnixQPathInfo(xid, tcon, from_name, |
| 1695 | info_buf_source, |
| 1696 | cifs_sb->local_nls, |
| 1697 | cifs_sb->mnt_cifs_flags & |
| 1698 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Jeff Layton | 8d281ef | 2008-10-22 13:57:01 -0400 | [diff] [blame] | 1699 | if (tmprc != 0) |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1700 | goto unlink_target; |
| 1701 | |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1702 | tmprc = CIFSSMBUnixQPathInfo(xid, tcon, to_name, |
| 1703 | info_buf_target, |
| 1704 | cifs_sb->local_nls, |
| 1705 | cifs_sb->mnt_cifs_flags & |
| 1706 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1707 | |
Jeff Layton | 8d281ef | 2008-10-22 13:57:01 -0400 | [diff] [blame] | 1708 | if (tmprc == 0 && (info_buf_source->UniqueId == |
Jeff Layton | ae6884a | 2008-11-03 14:05:08 -0500 | [diff] [blame] | 1709 | info_buf_target->UniqueId)) { |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1710 | /* same file, POSIX says that this is a noop */ |
Jeff Layton | ae6884a | 2008-11-03 14:05:08 -0500 | [diff] [blame] | 1711 | rc = 0; |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1712 | goto cifs_rename_exit; |
Jeff Layton | ae6884a | 2008-11-03 14:05:08 -0500 | [diff] [blame] | 1713 | } |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1714 | } |
| 1715 | /* |
| 1716 | * else ... BB we could add the same check for Windows by |
| 1717 | * checking the UniqueId via FILE_INTERNAL_INFO |
| 1718 | */ |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1719 | |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1720 | unlink_target: |
Jeff Layton | fc6f394 | 2009-04-17 11:45:30 -0400 | [diff] [blame] | 1721 | /* Try unlinking the target dentry if it's not negative */ |
| 1722 | if (target_dentry->d_inode && (rc == -EACCES || rc == -EEXIST)) { |
Jeff Layton | 8d281ef | 2008-10-22 13:57:01 -0400 | [diff] [blame] | 1723 | tmprc = cifs_unlink(target_dir, target_dentry); |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1724 | if (tmprc) |
| 1725 | goto cifs_rename_exit; |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1726 | rc = cifs_do_rename(xid, source_dentry, from_name, |
| 1727 | target_dentry, to_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | } |
| 1729 | |
| 1730 | cifs_rename_exit: |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1731 | kfree(info_buf_source); |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1732 | kfree(from_name); |
| 1733 | kfree(to_name); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1734 | free_xid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1735 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1736 | return rc; |
| 1737 | } |
| 1738 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1739 | static bool |
| 1740 | cifs_inode_needs_reval(struct inode *inode) |
| 1741 | { |
| 1742 | struct cifsInodeInfo *cifs_i = CIFS_I(inode); |
Suresh Jayaraman | 6d20e84 | 2010-12-01 14:42:28 +0530 | [diff] [blame] | 1743 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1744 | |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 1745 | if (CIFS_CACHE_READ(cifs_i)) |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1746 | return false; |
| 1747 | |
| 1748 | if (!lookupCacheEnabled) |
| 1749 | return true; |
| 1750 | |
| 1751 | if (cifs_i->time == 0) |
| 1752 | return true; |
| 1753 | |
Jeff Layton | a87c9ad | 2014-03-26 07:24:23 -0700 | [diff] [blame] | 1754 | if (!cifs_sb->actimeo) |
| 1755 | return true; |
| 1756 | |
Suresh Jayaraman | 6d20e84 | 2010-12-01 14:42:28 +0530 | [diff] [blame] | 1757 | if (!time_in_range(jiffies, cifs_i->time, |
| 1758 | cifs_i->time + cifs_sb->actimeo)) |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1759 | return true; |
| 1760 | |
Jeff Layton | db19272 | 2010-05-17 14:51:49 -0400 | [diff] [blame] | 1761 | /* hardlinked files w/ noserverino get "special" treatment */ |
Suresh Jayaraman | 6d20e84 | 2010-12-01 14:42:28 +0530 | [diff] [blame] | 1762 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) && |
Jeff Layton | db19272 | 2010-05-17 14:51:49 -0400 | [diff] [blame] | 1763 | S_ISREG(inode->i_mode) && inode->i_nlink != 1) |
| 1764 | return true; |
| 1765 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1766 | return false; |
| 1767 | } |
| 1768 | |
Suresh Jayaraman | 523fb8c | 2010-11-29 22:39:47 +0530 | [diff] [blame] | 1769 | /* |
| 1770 | * Zap the cache. Called when invalid_mapping flag is set. |
| 1771 | */ |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1772 | int |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1773 | cifs_invalidate_mapping(struct inode *inode) |
| 1774 | { |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1775 | int rc = 0; |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1776 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1777 | if (inode->i_mapping && inode->i_mapping->nrpages != 0) { |
Pavel Shilovsky | 257fb1f | 2011-03-16 01:55:32 +0300 | [diff] [blame] | 1778 | rc = invalidate_inode_pages2(inode->i_mapping); |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 1779 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1780 | cifs_dbg(VFS, "%s: could not invalidate inode %p\n", |
| 1781 | __func__, inode); |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1782 | } |
Pavel Shilovsky | 257fb1f | 2011-03-16 01:55:32 +0300 | [diff] [blame] | 1783 | |
Suresh Jayaraman | 9451a9a | 2010-07-05 18:12:45 +0530 | [diff] [blame] | 1784 | cifs_fscache_reset_inode_cookie(inode); |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1785 | return rc; |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1786 | } |
| 1787 | |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 1788 | /** |
| 1789 | * cifs_wait_bit_killable - helper for functions that are sleeping on bit locks |
| 1790 | * @word: long word containing the bit lock |
| 1791 | */ |
| 1792 | static int |
NeilBrown | c122132 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1793 | cifs_wait_bit_killable(struct wait_bit_key *key) |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 1794 | { |
| 1795 | if (fatal_signal_pending(current)) |
| 1796 | return -ERESTARTSYS; |
| 1797 | freezable_schedule_unsafe(); |
| 1798 | return 0; |
| 1799 | } |
| 1800 | |
Jeff Layton | e284e53 | 2014-04-30 09:31:46 -0400 | [diff] [blame] | 1801 | int |
| 1802 | cifs_revalidate_mapping(struct inode *inode) |
| 1803 | { |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 1804 | int rc; |
| 1805 | unsigned long *flags = &CIFS_I(inode)->flags; |
| 1806 | |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1807 | rc = wait_on_bit_lock_action(flags, CIFS_INO_LOCK, cifs_wait_bit_killable, |
| 1808 | TASK_KILLABLE); |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 1809 | if (rc) |
| 1810 | return rc; |
| 1811 | |
| 1812 | if (test_and_clear_bit(CIFS_INO_INVALID_MAPPING, flags)) { |
| 1813 | rc = cifs_invalidate_mapping(inode); |
| 1814 | if (rc) |
| 1815 | set_bit(CIFS_INO_INVALID_MAPPING, flags); |
| 1816 | } |
| 1817 | |
| 1818 | clear_bit_unlock(CIFS_INO_LOCK, flags); |
Linus Torvalds | b1cce80 | 2014-06-09 19:08:43 -0700 | [diff] [blame] | 1819 | smp_mb__after_atomic(); |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 1820 | wake_up_bit(flags, CIFS_INO_LOCK); |
| 1821 | |
| 1822 | return rc; |
| 1823 | } |
| 1824 | |
| 1825 | int |
| 1826 | cifs_zap_mapping(struct inode *inode) |
| 1827 | { |
| 1828 | set_bit(CIFS_INO_INVALID_MAPPING, &CIFS_I(inode)->flags); |
| 1829 | return cifs_revalidate_mapping(inode); |
Jeff Layton | e284e53 | 2014-04-30 09:31:46 -0400 | [diff] [blame] | 1830 | } |
| 1831 | |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1832 | int cifs_revalidate_file_attr(struct file *filp) |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 1833 | { |
| 1834 | int rc = 0; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1835 | struct inode *inode = file_inode(filp); |
Jeff Layton | ba00ba6 | 2010-09-20 16:01:31 -0700 | [diff] [blame] | 1836 | struct cifsFileInfo *cfile = (struct cifsFileInfo *) filp->private_data; |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 1837 | |
| 1838 | if (!cifs_inode_needs_reval(inode)) |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1839 | return rc; |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 1840 | |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1841 | if (tlink_tcon(cfile->tlink)->unix_ext) |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 1842 | rc = cifs_get_file_info_unix(filp); |
| 1843 | else |
| 1844 | rc = cifs_get_file_info(filp); |
| 1845 | |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 1846 | return rc; |
| 1847 | } |
| 1848 | |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1849 | int cifs_revalidate_dentry_attr(struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | { |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1851 | unsigned int xid; |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1852 | int rc = 0; |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1853 | struct inode *inode = dentry->d_inode; |
| 1854 | struct super_block *sb = dentry->d_sb; |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1855 | char *full_path = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1856 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1857 | if (inode == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | return -ENOENT; |
| 1859 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1860 | if (!cifs_inode_needs_reval(inode)) |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1861 | return rc; |
| 1862 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1863 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 | |
| 1865 | /* can not safely grab the rename sem here if rename calls revalidate |
| 1866 | since that would deadlock */ |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1867 | full_path = build_path_from_dentry(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1869 | rc = -ENOMEM; |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1870 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1871 | } |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1872 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1873 | cifs_dbg(FYI, "Update attributes: %s inode 0x%p count %d dentry: 0x%p d_time %ld jiffies %ld\n", |
| 1874 | full_path, inode, inode->i_count.counter, |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 1875 | dentry, dentry->d_time, jiffies); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | |
Jeff Layton | 0d424ad | 2010-09-20 16:01:35 -0700 | [diff] [blame] | 1877 | if (cifs_sb_master_tcon(CIFS_SB(sb))->unix_ext) |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1878 | rc = cifs_get_inode_info_unix(&inode, full_path, sb, xid); |
| 1879 | else |
| 1880 | rc = cifs_get_inode_info(&inode, full_path, NULL, sb, |
| 1881 | xid, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1883 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 | kfree(full_path); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1885 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | return rc; |
| 1887 | } |
| 1888 | |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1889 | int cifs_revalidate_file(struct file *filp) |
| 1890 | { |
| 1891 | int rc; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1892 | struct inode *inode = file_inode(filp); |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1893 | |
| 1894 | rc = cifs_revalidate_file_attr(filp); |
| 1895 | if (rc) |
| 1896 | return rc; |
| 1897 | |
Jeff Layton | e284e53 | 2014-04-30 09:31:46 -0400 | [diff] [blame] | 1898 | return cifs_revalidate_mapping(inode); |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1899 | } |
| 1900 | |
| 1901 | /* revalidate a dentry's inode attributes */ |
| 1902 | int cifs_revalidate_dentry(struct dentry *dentry) |
| 1903 | { |
| 1904 | int rc; |
| 1905 | struct inode *inode = dentry->d_inode; |
| 1906 | |
| 1907 | rc = cifs_revalidate_dentry_attr(dentry); |
| 1908 | if (rc) |
| 1909 | return rc; |
| 1910 | |
Jeff Layton | e284e53 | 2014-04-30 09:31:46 -0400 | [diff] [blame] | 1911 | return cifs_revalidate_mapping(inode); |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1912 | } |
| 1913 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | int cifs_getattr(struct vfsmount *mnt, struct dentry *dentry, |
Jeff Layton | 1c45601 | 2010-10-12 11:32:42 -0400 | [diff] [blame] | 1915 | struct kstat *stat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | { |
Jeff Layton | 3aa1c8c | 2010-10-07 14:46:28 -0400 | [diff] [blame] | 1917 | struct cifs_sb_info *cifs_sb = CIFS_SB(dentry->d_sb); |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 1918 | struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1919 | struct inode *inode = dentry->d_inode; |
| 1920 | int rc; |
Jeff Layton | 3aa1c8c | 2010-10-07 14:46:28 -0400 | [diff] [blame] | 1921 | |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1922 | /* |
| 1923 | * We need to be sure that all dirty pages are written and the server |
| 1924 | * has actual ctime, mtime and file length. |
| 1925 | */ |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 1926 | if (!CIFS_CACHE_READ(CIFS_I(inode)) && inode->i_mapping && |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1927 | inode->i_mapping->nrpages != 0) { |
| 1928 | rc = filemap_fdatawait(inode->i_mapping); |
Steve French | 156ecb2 | 2011-05-20 17:00:01 +0000 | [diff] [blame] | 1929 | if (rc) { |
| 1930 | mapping_set_error(inode->i_mapping, rc); |
| 1931 | return rc; |
| 1932 | } |
Steve French | 5fe14c8 | 2006-11-07 19:26:33 +0000 | [diff] [blame] | 1933 | } |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1934 | |
| 1935 | rc = cifs_revalidate_dentry_attr(dentry); |
| 1936 | if (rc) |
| 1937 | return rc; |
| 1938 | |
| 1939 | generic_fillattr(inode, stat); |
| 1940 | stat->blksize = CIFS_MAX_MSGSIZE; |
| 1941 | stat->ino = CIFS_I(inode)->uniqueid; |
| 1942 | |
| 1943 | /* |
Jeff Layton | d3d1fce | 2012-11-25 08:00:40 -0500 | [diff] [blame] | 1944 | * If on a multiuser mount without unix extensions or cifsacl being |
| 1945 | * enabled, and the admin hasn't overridden them, set the ownership |
| 1946 | * to the fsuid/fsgid of the current process. |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1947 | */ |
| 1948 | if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER) && |
Jeff Layton | d3d1fce | 2012-11-25 08:00:40 -0500 | [diff] [blame] | 1949 | !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) && |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1950 | !tcon->unix_ext) { |
| 1951 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)) |
| 1952 | stat->uid = current_fsuid(); |
| 1953 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)) |
| 1954 | stat->gid = current_fsgid(); |
| 1955 | } |
| 1956 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | } |
| 1958 | |
| 1959 | static int cifs_truncate_page(struct address_space *mapping, loff_t from) |
| 1960 | { |
| 1961 | pgoff_t index = from >> PAGE_CACHE_SHIFT; |
| 1962 | unsigned offset = from & (PAGE_CACHE_SIZE - 1); |
| 1963 | struct page *page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | int rc = 0; |
| 1965 | |
| 1966 | page = grab_cache_page(mapping, index); |
| 1967 | if (!page) |
| 1968 | return -ENOMEM; |
| 1969 | |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 1970 | zero_user_segment(page, offset, PAGE_CACHE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | unlock_page(page); |
| 1972 | page_cache_release(page); |
| 1973 | return rc; |
| 1974 | } |
| 1975 | |
Christoph Hellwig | 1b94746 | 2010-07-18 17:51:21 -0400 | [diff] [blame] | 1976 | static void cifs_setsize(struct inode *inode, loff_t offset) |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1977 | { |
Steve French | ba6a46a | 2007-02-26 20:06:29 +0000 | [diff] [blame] | 1978 | spin_lock(&inode->i_lock); |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1979 | i_size_write(inode, offset); |
Steve French | ba6a46a | 2007-02-26 20:06:29 +0000 | [diff] [blame] | 1980 | spin_unlock(&inode->i_lock); |
Christoph Hellwig | 1b94746 | 2010-07-18 17:51:21 -0400 | [diff] [blame] | 1981 | |
Kirill A. Shutemov | 7caef26 | 2013-09-12 15:13:56 -0700 | [diff] [blame] | 1982 | truncate_pagecache(inode, offset); |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1983 | } |
| 1984 | |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 1985 | static int |
| 1986 | cifs_set_file_size(struct inode *inode, struct iattr *attrs, |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1987 | unsigned int xid, char *full_path) |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 1988 | { |
| 1989 | int rc; |
| 1990 | struct cifsFileInfo *open_file; |
| 1991 | struct cifsInodeInfo *cifsInode = CIFS_I(inode); |
| 1992 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1993 | struct tcon_link *tlink = NULL; |
Pavel Shilovsky | d143341 | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 1994 | struct cifs_tcon *tcon = NULL; |
| 1995 | struct TCP_Server_Info *server; |
Pavel Shilovsky | fa2989f | 2011-05-26 10:01:59 +0400 | [diff] [blame] | 1996 | struct cifs_io_parms io_parms; |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 1997 | |
| 1998 | /* |
| 1999 | * To avoid spurious oplock breaks from server, in the case of |
| 2000 | * inodes that we already have open, avoid doing path based |
| 2001 | * setting of file size if we can do it by handle. |
| 2002 | * This keeps our caching token (oplock) and avoids timeouts |
| 2003 | * when the local oplock break takes longer to flush |
| 2004 | * writebehind data than the SMB timeout for the SetPathInfo |
| 2005 | * request would allow |
| 2006 | */ |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 2007 | open_file = find_writable_file(cifsInode, true); |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 2008 | if (open_file) { |
Pavel Shilovsky | d143341 | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 2009 | tcon = tlink_tcon(open_file->tlink); |
| 2010 | server = tcon->ses->server; |
| 2011 | if (server->ops->set_file_size) |
| 2012 | rc = server->ops->set_file_size(xid, tcon, open_file, |
| 2013 | attrs->ia_size, false); |
| 2014 | else |
| 2015 | rc = -ENOSYS; |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 2016 | cifsFileInfo_put(open_file); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2017 | cifs_dbg(FYI, "SetFSize for attrs rc = %d\n", rc); |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 2018 | if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) { |
| 2019 | unsigned int bytes_written; |
Pavel Shilovsky | fa2989f | 2011-05-26 10:01:59 +0400 | [diff] [blame] | 2020 | |
Pavel Shilovsky | d143341 | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 2021 | io_parms.netfid = open_file->fid.netfid; |
| 2022 | io_parms.pid = open_file->pid; |
| 2023 | io_parms.tcon = tcon; |
Pavel Shilovsky | fa2989f | 2011-05-26 10:01:59 +0400 | [diff] [blame] | 2024 | io_parms.offset = 0; |
| 2025 | io_parms.length = attrs->ia_size; |
| 2026 | rc = CIFSSMBWrite(xid, &io_parms, &bytes_written, |
| 2027 | NULL, NULL, 1); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2028 | cifs_dbg(FYI, "Wrt seteof rc %d\n", rc); |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 2029 | } |
| 2030 | } else |
| 2031 | rc = -EINVAL; |
| 2032 | |
Pavel Shilovsky | d143341 | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 2033 | if (!rc) |
| 2034 | goto set_size_out; |
Jeff Layton | ba00ba6 | 2010-09-20 16:01:31 -0700 | [diff] [blame] | 2035 | |
Pavel Shilovsky | d143341 | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 2036 | if (tcon == NULL) { |
| 2037 | tlink = cifs_sb_tlink(cifs_sb); |
| 2038 | if (IS_ERR(tlink)) |
| 2039 | return PTR_ERR(tlink); |
| 2040 | tcon = tlink_tcon(tlink); |
| 2041 | server = tcon->ses->server; |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 2042 | } |
| 2043 | |
Pavel Shilovsky | d143341 | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 2044 | /* |
| 2045 | * Set file size by pathname rather than by handle either because no |
| 2046 | * valid, writeable file handle for it was found or because there was |
| 2047 | * an error setting it by handle. |
| 2048 | */ |
| 2049 | if (server->ops->set_path_size) |
| 2050 | rc = server->ops->set_path_size(xid, tcon, full_path, |
| 2051 | attrs->ia_size, cifs_sb, false); |
| 2052 | else |
| 2053 | rc = -ENOSYS; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2054 | cifs_dbg(FYI, "SetEOF by path (setattrs) rc = %d\n", rc); |
Pavel Shilovsky | d143341 | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 2055 | if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) { |
| 2056 | __u16 netfid; |
| 2057 | int oplock = 0; |
| 2058 | |
| 2059 | rc = SMBLegacyOpen(xid, tcon, full_path, FILE_OPEN, |
| 2060 | GENERIC_WRITE, CREATE_NOT_DIR, &netfid, |
| 2061 | &oplock, NULL, cifs_sb->local_nls, |
| 2062 | cifs_sb->mnt_cifs_flags & |
| 2063 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 2064 | if (rc == 0) { |
| 2065 | unsigned int bytes_written; |
| 2066 | |
| 2067 | io_parms.netfid = netfid; |
| 2068 | io_parms.pid = current->tgid; |
| 2069 | io_parms.tcon = tcon; |
| 2070 | io_parms.offset = 0; |
| 2071 | io_parms.length = attrs->ia_size; |
| 2072 | rc = CIFSSMBWrite(xid, &io_parms, &bytes_written, NULL, |
| 2073 | NULL, 1); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2074 | cifs_dbg(FYI, "wrt seteof rc %d\n", rc); |
Pavel Shilovsky | d143341 | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 2075 | CIFSSMBClose(xid, tcon, netfid); |
| 2076 | } |
| 2077 | } |
| 2078 | if (tlink) |
| 2079 | cifs_put_tlink(tlink); |
| 2080 | |
| 2081 | set_size_out: |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 2082 | if (rc == 0) { |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 2083 | cifsInode->server_eof = attrs->ia_size; |
Christoph Hellwig | 1b94746 | 2010-07-18 17:51:21 -0400 | [diff] [blame] | 2084 | cifs_setsize(inode, attrs->ia_size); |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 2085 | cifs_truncate_page(inode->i_mapping, inode->i_size); |
| 2086 | } |
| 2087 | |
| 2088 | return rc; |
| 2089 | } |
| 2090 | |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2091 | static int |
| 2092 | cifs_setattr_unix(struct dentry *direntry, struct iattr *attrs) |
| 2093 | { |
| 2094 | int rc; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2095 | unsigned int xid; |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2096 | char *full_path = NULL; |
| 2097 | struct inode *inode = direntry->d_inode; |
| 2098 | struct cifsInodeInfo *cifsInode = CIFS_I(inode); |
| 2099 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 2100 | struct tcon_link *tlink; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2101 | struct cifs_tcon *pTcon; |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2102 | struct cifs_unix_set_info_args *args = NULL; |
Jeff Layton | 3bbeeb3 | 2009-07-09 20:02:50 -0400 | [diff] [blame] | 2103 | struct cifsFileInfo *open_file; |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2104 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2105 | cifs_dbg(FYI, "setattr_unix on file %s attrs->ia_valid=0x%x\n", |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2106 | direntry->d_name.name, attrs->ia_valid); |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2107 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2108 | xid = get_xid(); |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2109 | |
Christoph Hellwig | db78b87 | 2010-06-04 11:30:03 +0200 | [diff] [blame] | 2110 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) |
| 2111 | attrs->ia_valid |= ATTR_FORCE; |
| 2112 | |
| 2113 | rc = inode_change_ok(inode, attrs); |
| 2114 | if (rc < 0) |
| 2115 | goto out; |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2116 | |
| 2117 | full_path = build_path_from_dentry(direntry); |
| 2118 | if (full_path == NULL) { |
| 2119 | rc = -ENOMEM; |
| 2120 | goto out; |
| 2121 | } |
| 2122 | |
Jeff Layton | 0f4d634 | 2009-03-26 13:35:37 -0400 | [diff] [blame] | 2123 | /* |
| 2124 | * Attempt to flush data before changing attributes. We need to do |
| 2125 | * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the |
| 2126 | * ownership or mode then we may also need to do this. Here, we take |
| 2127 | * the safe way out and just do the flush on all setattr requests. If |
| 2128 | * the flush returns error, store it to report later and continue. |
| 2129 | * |
| 2130 | * BB: This should be smarter. Why bother flushing pages that |
| 2131 | * will be truncated anyway? Also, should we error out here if |
| 2132 | * the flush returns error? |
| 2133 | */ |
| 2134 | rc = filemap_write_and_wait(inode->i_mapping); |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 2135 | mapping_set_error(inode->i_mapping, rc); |
| 2136 | rc = 0; |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2137 | |
| 2138 | if (attrs->ia_valid & ATTR_SIZE) { |
| 2139 | rc = cifs_set_file_size(inode, attrs, xid, full_path); |
| 2140 | if (rc != 0) |
| 2141 | goto out; |
| 2142 | } |
| 2143 | |
| 2144 | /* skip mode change if it's just for clearing setuid/setgid */ |
| 2145 | if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID)) |
| 2146 | attrs->ia_valid &= ~ATTR_MODE; |
| 2147 | |
| 2148 | args = kmalloc(sizeof(*args), GFP_KERNEL); |
| 2149 | if (args == NULL) { |
| 2150 | rc = -ENOMEM; |
| 2151 | goto out; |
| 2152 | } |
| 2153 | |
| 2154 | /* set up the struct */ |
| 2155 | if (attrs->ia_valid & ATTR_MODE) |
| 2156 | args->mode = attrs->ia_mode; |
| 2157 | else |
| 2158 | args->mode = NO_CHANGE_64; |
| 2159 | |
| 2160 | if (attrs->ia_valid & ATTR_UID) |
| 2161 | args->uid = attrs->ia_uid; |
| 2162 | else |
Eric W. Biederman | 49418b2 | 2013-02-06 00:57:56 -0800 | [diff] [blame] | 2163 | args->uid = INVALID_UID; /* no change */ |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2164 | |
| 2165 | if (attrs->ia_valid & ATTR_GID) |
| 2166 | args->gid = attrs->ia_gid; |
| 2167 | else |
Eric W. Biederman | 49418b2 | 2013-02-06 00:57:56 -0800 | [diff] [blame] | 2168 | args->gid = INVALID_GID; /* no change */ |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2169 | |
| 2170 | if (attrs->ia_valid & ATTR_ATIME) |
| 2171 | args->atime = cifs_UnixTimeToNT(attrs->ia_atime); |
| 2172 | else |
| 2173 | args->atime = NO_CHANGE_64; |
| 2174 | |
| 2175 | if (attrs->ia_valid & ATTR_MTIME) |
| 2176 | args->mtime = cifs_UnixTimeToNT(attrs->ia_mtime); |
| 2177 | else |
| 2178 | args->mtime = NO_CHANGE_64; |
| 2179 | |
| 2180 | if (attrs->ia_valid & ATTR_CTIME) |
| 2181 | args->ctime = cifs_UnixTimeToNT(attrs->ia_ctime); |
| 2182 | else |
| 2183 | args->ctime = NO_CHANGE_64; |
| 2184 | |
| 2185 | args->device = 0; |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 2186 | open_file = find_writable_file(cifsInode, true); |
Jeff Layton | 3bbeeb3 | 2009-07-09 20:02:50 -0400 | [diff] [blame] | 2187 | if (open_file) { |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 2188 | u16 nfid = open_file->fid.netfid; |
Jeff Layton | 3bbeeb3 | 2009-07-09 20:02:50 -0400 | [diff] [blame] | 2189 | u32 npid = open_file->pid; |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 2190 | pTcon = tlink_tcon(open_file->tlink); |
Jeff Layton | 3bbeeb3 | 2009-07-09 20:02:50 -0400 | [diff] [blame] | 2191 | rc = CIFSSMBUnixSetFileInfo(xid, pTcon, args, nfid, npid); |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 2192 | cifsFileInfo_put(open_file); |
Jeff Layton | 3bbeeb3 | 2009-07-09 20:02:50 -0400 | [diff] [blame] | 2193 | } else { |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 2194 | tlink = cifs_sb_tlink(cifs_sb); |
| 2195 | if (IS_ERR(tlink)) { |
| 2196 | rc = PTR_ERR(tlink); |
| 2197 | goto out; |
| 2198 | } |
| 2199 | pTcon = tlink_tcon(tlink); |
Jeff Layton | 3bbeeb3 | 2009-07-09 20:02:50 -0400 | [diff] [blame] | 2200 | rc = CIFSSMBUnixSetPathInfo(xid, pTcon, full_path, args, |
Jeff Layton | 01ea95e | 2009-07-09 20:02:49 -0400 | [diff] [blame] | 2201 | cifs_sb->local_nls, |
| 2202 | cifs_sb->mnt_cifs_flags & |
| 2203 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 2204 | cifs_put_tlink(tlink); |
Jeff Layton | 3bbeeb3 | 2009-07-09 20:02:50 -0400 | [diff] [blame] | 2205 | } |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2206 | |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 2207 | if (rc) |
| 2208 | goto out; |
Steve French | ccd4bb1 | 2010-02-08 17:39:58 +0000 | [diff] [blame] | 2209 | |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 2210 | if ((attrs->ia_valid & ATTR_SIZE) && |
Christoph Hellwig | 1b94746 | 2010-07-18 17:51:21 -0400 | [diff] [blame] | 2211 | attrs->ia_size != i_size_read(inode)) |
| 2212 | truncate_setsize(inode, attrs->ia_size); |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 2213 | |
| 2214 | setattr_copy(inode, attrs); |
| 2215 | mark_inode_dirty(inode); |
| 2216 | |
| 2217 | /* force revalidate when any of these times are set since some |
| 2218 | of the fs types (eg ext3, fat) do not have fine enough |
| 2219 | time granularity to match protocol, and we do not have a |
| 2220 | a way (yet) to query the server fs's time granularity (and |
| 2221 | whether it rounds times down). |
| 2222 | */ |
| 2223 | if (attrs->ia_valid & (ATTR_MTIME | ATTR_CTIME)) |
| 2224 | cifsInode->time = 0; |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2225 | out: |
| 2226 | kfree(args); |
| 2227 | kfree(full_path); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2228 | free_xid(xid); |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2229 | return rc; |
| 2230 | } |
| 2231 | |
Jeff Layton | 0510eeb | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2232 | static int |
| 2233 | cifs_setattr_nounix(struct dentry *direntry, struct iattr *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2234 | { |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2235 | unsigned int xid; |
Eric W. Biederman | 8abf277 | 2013-02-06 00:33:17 -0800 | [diff] [blame] | 2236 | kuid_t uid = INVALID_UID; |
| 2237 | kgid_t gid = INVALID_GID; |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2238 | struct inode *inode = direntry->d_inode; |
| 2239 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2240 | struct cifsInodeInfo *cifsInode = CIFS_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | char *full_path = NULL; |
| 2242 | int rc = -EACCES; |
Jeff Layton | feb3e20 | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2243 | __u32 dosattr = 0; |
Jeff Layton | 4e1e7fb | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2244 | __u64 mode = NO_CHANGE_64; |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2245 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2246 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2247 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2248 | cifs_dbg(FYI, "setattr on file %s attrs->iavalid 0x%x\n", |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2249 | direntry->d_name.name, attrs->ia_valid); |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 2250 | |
Christoph Hellwig | db78b87 | 2010-06-04 11:30:03 +0200 | [diff] [blame] | 2251 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) |
| 2252 | attrs->ia_valid |= ATTR_FORCE; |
| 2253 | |
| 2254 | rc = inode_change_ok(inode, attrs); |
| 2255 | if (rc < 0) { |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2256 | free_xid(xid); |
Christoph Hellwig | db78b87 | 2010-06-04 11:30:03 +0200 | [diff] [blame] | 2257 | return rc; |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 2258 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2259 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 2260 | full_path = build_path_from_dentry(direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2261 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 2262 | rc = -ENOMEM; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2263 | free_xid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 2264 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2265 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | |
Jeff Layton | 0f4d634 | 2009-03-26 13:35:37 -0400 | [diff] [blame] | 2267 | /* |
| 2268 | * Attempt to flush data before changing attributes. We need to do |
| 2269 | * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the |
| 2270 | * ownership or mode then we may also need to do this. Here, we take |
| 2271 | * the safe way out and just do the flush on all setattr requests. If |
| 2272 | * the flush returns error, store it to report later and continue. |
| 2273 | * |
| 2274 | * BB: This should be smarter. Why bother flushing pages that |
| 2275 | * will be truncated anyway? Also, should we error out here if |
| 2276 | * the flush returns error? |
| 2277 | */ |
| 2278 | rc = filemap_write_and_wait(inode->i_mapping); |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 2279 | mapping_set_error(inode->i_mapping, rc); |
| 2280 | rc = 0; |
Jeff Layton | cea2180 | 2007-11-20 23:19:03 +0000 | [diff] [blame] | 2281 | |
Steve French | 5053144 | 2008-03-14 19:21:31 +0000 | [diff] [blame] | 2282 | if (attrs->ia_valid & ATTR_SIZE) { |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 2283 | rc = cifs_set_file_size(inode, attrs, xid, full_path); |
| 2284 | if (rc != 0) |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 2285 | goto cifs_setattr_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | } |
Jeff Layton | 4ca691a | 2008-05-22 09:33:34 -0400 | [diff] [blame] | 2287 | |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 2288 | if (attrs->ia_valid & ATTR_UID) |
| 2289 | uid = attrs->ia_uid; |
| 2290 | |
| 2291 | if (attrs->ia_valid & ATTR_GID) |
| 2292 | gid = attrs->ia_gid; |
| 2293 | |
| 2294 | #ifdef CONFIG_CIFS_ACL |
| 2295 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) { |
Eric W. Biederman | 8abf277 | 2013-02-06 00:33:17 -0800 | [diff] [blame] | 2296 | if (uid_valid(uid) || gid_valid(gid)) { |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 2297 | rc = id_mode_to_cifs_acl(inode, full_path, NO_CHANGE_64, |
| 2298 | uid, gid); |
| 2299 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2300 | cifs_dbg(FYI, "%s: Setting id failed with error: %d\n", |
| 2301 | __func__, rc); |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 2302 | goto cifs_setattr_exit; |
| 2303 | } |
| 2304 | } |
| 2305 | } else |
| 2306 | #endif /* CONFIG_CIFS_ACL */ |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2307 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID)) |
Jeff Layton | 4ca691a | 2008-05-22 09:33:34 -0400 | [diff] [blame] | 2308 | attrs->ia_valid &= ~(ATTR_UID | ATTR_GID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2309 | |
Jeff Layton | d32c4f2 | 2007-10-18 03:05:22 -0700 | [diff] [blame] | 2310 | /* skip mode change if it's just for clearing setuid/setgid */ |
| 2311 | if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID)) |
| 2312 | attrs->ia_valid &= ~ATTR_MODE; |
| 2313 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2314 | if (attrs->ia_valid & ATTR_MODE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2315 | mode = attrs->ia_mode; |
Steve French | cdbce9c | 2005-11-19 21:04:52 -0800 | [diff] [blame] | 2316 | rc = 0; |
Jeff Layton | 79df1ba | 2010-12-06 12:52:08 -0500 | [diff] [blame] | 2317 | #ifdef CONFIG_CIFS_ACL |
Shirish Pargaonkar | 78415d2 | 2010-11-27 11:37:26 -0600 | [diff] [blame] | 2318 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) { |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 2319 | rc = id_mode_to_cifs_acl(inode, full_path, mode, |
Eric W. Biederman | 8abf277 | 2013-02-06 00:33:17 -0800 | [diff] [blame] | 2320 | INVALID_UID, INVALID_GID); |
Shirish Pargaonkar | 78415d2 | 2010-11-27 11:37:26 -0600 | [diff] [blame] | 2321 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2322 | cifs_dbg(FYI, "%s: Setting ACL failed with error: %d\n", |
| 2323 | __func__, rc); |
Shirish Pargaonkar | 78415d2 | 2010-11-27 11:37:26 -0600 | [diff] [blame] | 2324 | goto cifs_setattr_exit; |
| 2325 | } |
| 2326 | } else |
Jeff Layton | 79df1ba | 2010-12-06 12:52:08 -0500 | [diff] [blame] | 2327 | #endif /* CONFIG_CIFS_ACL */ |
Jeff Layton | 5132861 | 2008-05-22 09:33:34 -0400 | [diff] [blame] | 2328 | if (((mode & S_IWUGO) == 0) && |
| 2329 | (cifsInode->cifsAttrs & ATTR_READONLY) == 0) { |
Jeff Layton | feb3e20 | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2330 | |
| 2331 | dosattr = cifsInode->cifsAttrs | ATTR_READONLY; |
| 2332 | |
Jeff Layton | 5132861 | 2008-05-22 09:33:34 -0400 | [diff] [blame] | 2333 | /* fix up mode if we're not using dynperm */ |
| 2334 | if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM) == 0) |
| 2335 | attrs->ia_mode = inode->i_mode & ~S_IWUGO; |
| 2336 | } else if ((mode & S_IWUGO) && |
| 2337 | (cifsInode->cifsAttrs & ATTR_READONLY)) { |
Jeff Layton | feb3e20 | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2338 | |
| 2339 | dosattr = cifsInode->cifsAttrs & ~ATTR_READONLY; |
| 2340 | /* Attributes of 0 are ignored */ |
| 2341 | if (dosattr == 0) |
| 2342 | dosattr |= ATTR_NORMAL; |
Jeff Layton | 5132861 | 2008-05-22 09:33:34 -0400 | [diff] [blame] | 2343 | |
| 2344 | /* reset local inode permissions to normal */ |
| 2345 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) { |
| 2346 | attrs->ia_mode &= ~(S_IALLUGO); |
| 2347 | if (S_ISDIR(inode->i_mode)) |
| 2348 | attrs->ia_mode |= |
| 2349 | cifs_sb->mnt_dir_mode; |
| 2350 | else |
| 2351 | attrs->ia_mode |= |
| 2352 | cifs_sb->mnt_file_mode; |
| 2353 | } |
| 2354 | } else if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) { |
| 2355 | /* ignore mode change - ATTR_READONLY hasn't changed */ |
| 2356 | attrs->ia_valid &= ~ATTR_MODE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2357 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2358 | } |
| 2359 | |
Jeff Layton | feb3e20 | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2360 | if (attrs->ia_valid & (ATTR_MTIME|ATTR_ATIME|ATTR_CTIME) || |
| 2361 | ((attrs->ia_valid & ATTR_MODE) && dosattr)) { |
| 2362 | rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr); |
| 2363 | /* BB: check for rc = -EOPNOTSUPP and switch to legacy mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2364 | |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 2365 | /* Even if error on time set, no sense failing the call if |
| 2366 | the server would set the time to a reasonable value anyway, |
| 2367 | and this check ensures that we are not being called from |
| 2368 | sys_utimes in which case we ought to fail the call back to |
| 2369 | the user when the server rejects the call */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2370 | if ((rc) && (attrs->ia_valid & |
Jeff Layton | feb3e20 | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2371 | (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE))) |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 2372 | rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2373 | } |
| 2374 | |
| 2375 | /* do not need local check to inode_check_ok since the server does |
| 2376 | that */ |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 2377 | if (rc) |
| 2378 | goto cifs_setattr_exit; |
| 2379 | |
| 2380 | if ((attrs->ia_valid & ATTR_SIZE) && |
Christoph Hellwig | 1b94746 | 2010-07-18 17:51:21 -0400 | [diff] [blame] | 2381 | attrs->ia_size != i_size_read(inode)) |
| 2382 | truncate_setsize(inode, attrs->ia_size); |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 2383 | |
| 2384 | setattr_copy(inode, attrs); |
| 2385 | mark_inode_dirty(inode); |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 2386 | |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 2387 | cifs_setattr_exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2388 | kfree(full_path); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2389 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2390 | return rc; |
| 2391 | } |
| 2392 | |
Jeff Layton | 0510eeb | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2393 | int |
| 2394 | cifs_setattr(struct dentry *direntry, struct iattr *attrs) |
| 2395 | { |
| 2396 | struct inode *inode = direntry->d_inode; |
| 2397 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2398 | struct cifs_tcon *pTcon = cifs_sb_master_tcon(cifs_sb); |
Jeff Layton | 0510eeb | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2399 | |
| 2400 | if (pTcon->unix_ext) |
| 2401 | return cifs_setattr_unix(direntry, attrs); |
| 2402 | |
| 2403 | return cifs_setattr_nounix(direntry, attrs); |
| 2404 | |
| 2405 | /* BB: add cifs_setattr_legacy for really old servers */ |
| 2406 | } |
| 2407 | |
Steve French | 99ee4db | 2007-02-27 05:35:17 +0000 | [diff] [blame] | 2408 | #if 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | void cifs_delete_inode(struct inode *inode) |
| 2410 | { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2411 | cifs_dbg(FYI, "In cifs_delete_inode, inode = 0x%p\n", inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2412 | /* may have to add back in if and when safe distributed caching of |
| 2413 | directories added e.g. via FindNotify */ |
| 2414 | } |
Steve French | 99ee4db | 2007-02-27 05:35:17 +0000 | [diff] [blame] | 2415 | #endif |