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