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