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" |
| 32 | |
Christoph Hellwig | 70eff55 | 2008-02-15 20:55:05 +0000 | [diff] [blame] | 33 | |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 34 | static void cifs_set_ops(struct inode *inode, const bool is_dfs_referral) |
Christoph Hellwig | 70eff55 | 2008-02-15 20:55:05 +0000 | [diff] [blame] | 35 | { |
| 36 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 37 | |
| 38 | switch (inode->i_mode & S_IFMT) { |
| 39 | case S_IFREG: |
| 40 | inode->i_op = &cifs_file_inode_ops; |
| 41 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) { |
| 42 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
| 43 | inode->i_fop = &cifs_file_direct_nobrl_ops; |
| 44 | else |
| 45 | inode->i_fop = &cifs_file_direct_ops; |
| 46 | } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
| 47 | inode->i_fop = &cifs_file_nobrl_ops; |
| 48 | else { /* not direct, send byte range locks */ |
| 49 | inode->i_fop = &cifs_file_ops; |
| 50 | } |
| 51 | |
| 52 | |
| 53 | /* check if server can support readpages */ |
| 54 | if (cifs_sb->tcon->ses->server->maxBuf < |
| 55 | PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE) |
| 56 | inode->i_data.a_ops = &cifs_addr_ops_smallbuf; |
| 57 | else |
| 58 | inode->i_data.a_ops = &cifs_addr_ops; |
| 59 | break; |
| 60 | case S_IFDIR: |
Steve French | bc5b6e2 | 2008-03-11 21:07:48 +0000 | [diff] [blame] | 61 | #ifdef CONFIG_CIFS_DFS_UPCALL |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 62 | if (is_dfs_referral) { |
| 63 | inode->i_op = &cifs_dfs_referral_inode_operations; |
| 64 | } else { |
Steve French | bc5b6e2 | 2008-03-11 21:07:48 +0000 | [diff] [blame] | 65 | #else /* NO DFS support, treat as a directory */ |
| 66 | { |
| 67 | #endif |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 68 | inode->i_op = &cifs_dir_inode_ops; |
| 69 | inode->i_fop = &cifs_dir_ops; |
| 70 | } |
Christoph Hellwig | 70eff55 | 2008-02-15 20:55:05 +0000 | [diff] [blame] | 71 | break; |
| 72 | case S_IFLNK: |
| 73 | inode->i_op = &cifs_symlink_inode_ops; |
| 74 | break; |
| 75 | default: |
| 76 | init_special_inode(inode, inode->i_mode, inode->i_rdev); |
| 77 | break; |
| 78 | } |
| 79 | } |
| 80 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 81 | /* check inode attributes against fattr. If they don't match, tag the |
| 82 | * inode for cache invalidation |
| 83 | */ |
| 84 | static void |
| 85 | cifs_revalidate_cache(struct inode *inode, struct cifs_fattr *fattr) |
| 86 | { |
| 87 | struct cifsInodeInfo *cifs_i = CIFS_I(inode); |
| 88 | |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 89 | cFYI(1, "%s: revalidating inode %llu", __func__, cifs_i->uniqueid); |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 90 | |
| 91 | if (inode->i_state & I_NEW) { |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 92 | cFYI(1, "%s: inode %llu is new", __func__, cifs_i->uniqueid); |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 93 | return; |
| 94 | } |
| 95 | |
| 96 | /* don't bother with revalidation if we have an oplock */ |
| 97 | if (cifs_i->clientCanCacheRead) { |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 98 | cFYI(1, "%s: inode %llu is oplocked", __func__, |
| 99 | cifs_i->uniqueid); |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 100 | return; |
| 101 | } |
| 102 | |
| 103 | /* revalidate if mtime or size have changed */ |
| 104 | if (timespec_equal(&inode->i_mtime, &fattr->cf_mtime) && |
| 105 | cifs_i->server_eof == fattr->cf_eof) { |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 106 | cFYI(1, "%s: inode %llu is unchanged", __func__, |
| 107 | cifs_i->uniqueid); |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 108 | return; |
| 109 | } |
| 110 | |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 111 | cFYI(1, "%s: invalidating inode %llu mapping", __func__, |
| 112 | cifs_i->uniqueid); |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 113 | cifs_i->invalid_mapping = true; |
| 114 | } |
| 115 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 116 | /* populate an inode with info from a cifs_fattr struct */ |
| 117 | void |
| 118 | cifs_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr) |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 119 | { |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 120 | struct cifsInodeInfo *cifs_i = CIFS_I(inode); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 121 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 122 | unsigned long oldtime = cifs_i->time; |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 123 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 124 | cifs_revalidate_cache(inode, fattr); |
| 125 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 126 | inode->i_atime = fattr->cf_atime; |
| 127 | inode->i_mtime = fattr->cf_mtime; |
| 128 | inode->i_ctime = fattr->cf_ctime; |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 129 | inode->i_rdev = fattr->cf_rdev; |
| 130 | inode->i_nlink = fattr->cf_nlink; |
| 131 | inode->i_uid = fattr->cf_uid; |
| 132 | inode->i_gid = fattr->cf_gid; |
| 133 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 134 | /* if dynperm is set, don't clobber existing mode */ |
| 135 | if (inode->i_state & I_NEW || |
| 136 | !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) |
| 137 | inode->i_mode = fattr->cf_mode; |
| 138 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 139 | cifs_i->cifsAttrs = fattr->cf_cifsattrs; |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 140 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 141 | if (fattr->cf_flags & CIFS_FATTR_NEED_REVAL) |
| 142 | cifs_i->time = 0; |
| 143 | else |
| 144 | cifs_i->time = jiffies; |
| 145 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 146 | cFYI(1, "inode 0x%p old_time=%ld new_time=%ld", inode, |
| 147 | oldtime, cifs_i->time); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 148 | |
| 149 | cifs_i->delete_pending = fattr->cf_flags & CIFS_FATTR_DELETE_PENDING; |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 150 | |
Jeff Layton | 835a36c | 2010-02-10 16:21:33 -0500 | [diff] [blame] | 151 | cifs_i->server_eof = fattr->cf_eof; |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 152 | /* |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 153 | * Can't safely change the file size here if the client is writing to |
| 154 | * it due to potential races. |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 155 | */ |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 156 | spin_lock(&inode->i_lock); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 157 | if (is_size_safe_to_change(cifs_i, fattr->cf_eof)) { |
| 158 | i_size_write(inode, fattr->cf_eof); |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 159 | |
| 160 | /* |
| 161 | * i_blocks is not related to (i_size / i_blksize), |
| 162 | * but instead 512 byte (2**9) size is required for |
| 163 | * calculating num blocks. |
| 164 | */ |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 165 | inode->i_blocks = (512 - 1 + fattr->cf_bytes) >> 9; |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 166 | } |
| 167 | spin_unlock(&inode->i_lock); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 168 | |
| 169 | cifs_set_ops(inode, fattr->cf_flags & CIFS_FATTR_DFS_REFERRAL); |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 170 | } |
| 171 | |
Jeff Layton | 4065c80 | 2010-05-17 07:18:58 -0400 | [diff] [blame] | 172 | void |
| 173 | cifs_fill_uniqueid(struct super_block *sb, struct cifs_fattr *fattr) |
| 174 | { |
| 175 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
| 176 | |
| 177 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) |
| 178 | return; |
| 179 | |
| 180 | fattr->cf_uniqueid = iunique(sb, ROOT_I); |
| 181 | } |
| 182 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 183 | /* Fill a cifs_fattr struct with info from FILE_UNIX_BASIC_INFO. */ |
| 184 | void |
| 185 | cifs_unix_basic_to_fattr(struct cifs_fattr *fattr, FILE_UNIX_BASIC_INFO *info, |
| 186 | struct cifs_sb_info *cifs_sb) |
| 187 | { |
| 188 | memset(fattr, 0, sizeof(*fattr)); |
| 189 | fattr->cf_uniqueid = le64_to_cpu(info->UniqueId); |
| 190 | fattr->cf_bytes = le64_to_cpu(info->NumOfBytes); |
| 191 | fattr->cf_eof = le64_to_cpu(info->EndOfFile); |
| 192 | |
| 193 | fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime); |
| 194 | fattr->cf_mtime = cifs_NTtimeToUnix(info->LastModificationTime); |
| 195 | fattr->cf_ctime = cifs_NTtimeToUnix(info->LastStatusChange); |
| 196 | fattr->cf_mode = le64_to_cpu(info->Permissions); |
| 197 | |
| 198 | /* |
| 199 | * Since we set the inode type below we need to mask off |
| 200 | * to avoid strange results if bits set above. |
| 201 | */ |
| 202 | fattr->cf_mode &= ~S_IFMT; |
| 203 | switch (le32_to_cpu(info->Type)) { |
| 204 | case UNIX_FILE: |
| 205 | fattr->cf_mode |= S_IFREG; |
| 206 | fattr->cf_dtype = DT_REG; |
| 207 | break; |
| 208 | case UNIX_SYMLINK: |
| 209 | fattr->cf_mode |= S_IFLNK; |
| 210 | fattr->cf_dtype = DT_LNK; |
| 211 | break; |
| 212 | case UNIX_DIR: |
| 213 | fattr->cf_mode |= S_IFDIR; |
| 214 | fattr->cf_dtype = DT_DIR; |
| 215 | break; |
| 216 | case UNIX_CHARDEV: |
| 217 | fattr->cf_mode |= S_IFCHR; |
| 218 | fattr->cf_dtype = DT_CHR; |
| 219 | fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor), |
| 220 | le64_to_cpu(info->DevMinor) & MINORMASK); |
| 221 | break; |
| 222 | case UNIX_BLOCKDEV: |
| 223 | fattr->cf_mode |= S_IFBLK; |
| 224 | fattr->cf_dtype = DT_BLK; |
| 225 | fattr->cf_rdev = MKDEV(le64_to_cpu(info->DevMajor), |
| 226 | le64_to_cpu(info->DevMinor) & MINORMASK); |
| 227 | break; |
| 228 | case UNIX_FIFO: |
| 229 | fattr->cf_mode |= S_IFIFO; |
| 230 | fattr->cf_dtype = DT_FIFO; |
| 231 | break; |
| 232 | case UNIX_SOCKET: |
| 233 | fattr->cf_mode |= S_IFSOCK; |
| 234 | fattr->cf_dtype = DT_SOCK; |
| 235 | break; |
| 236 | default: |
| 237 | /* safest to call it a file if we do not know */ |
| 238 | fattr->cf_mode |= S_IFREG; |
| 239 | fattr->cf_dtype = DT_REG; |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 240 | cFYI(1, "unknown type %d", le32_to_cpu(info->Type)); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 241 | break; |
| 242 | } |
| 243 | |
| 244 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID) |
| 245 | fattr->cf_uid = cifs_sb->mnt_uid; |
| 246 | else |
| 247 | fattr->cf_uid = le64_to_cpu(info->Uid); |
| 248 | |
| 249 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID) |
| 250 | fattr->cf_gid = cifs_sb->mnt_gid; |
| 251 | else |
| 252 | fattr->cf_gid = le64_to_cpu(info->Gid); |
| 253 | |
| 254 | fattr->cf_nlink = le64_to_cpu(info->Nlinks); |
| 255 | } |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 256 | |
| 257 | /* |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 258 | * Fill a cifs_fattr struct with fake inode info. |
| 259 | * |
| 260 | * Needed to setup cifs_fattr data for the directory which is the |
| 261 | * junction to the new submount (ie to setup the fake directory |
| 262 | * which represents a DFS referral). |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 263 | */ |
Steve French | f1230c9 | 2009-07-22 23:13:01 +0000 | [diff] [blame] | 264 | static void |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 265 | cifs_create_dfs_fattr(struct cifs_fattr *fattr, struct super_block *sb) |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 266 | { |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 267 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 268 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 269 | cFYI(1, "creating fake fattr for DFS referral"); |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 270 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 271 | memset(fattr, 0, sizeof(*fattr)); |
| 272 | fattr->cf_mode = S_IFDIR | S_IXUGO | S_IRWXU; |
| 273 | fattr->cf_uid = cifs_sb->mnt_uid; |
| 274 | fattr->cf_gid = cifs_sb->mnt_gid; |
| 275 | fattr->cf_atime = CURRENT_TIME; |
| 276 | fattr->cf_ctime = CURRENT_TIME; |
| 277 | fattr->cf_mtime = CURRENT_TIME; |
| 278 | fattr->cf_nlink = 2; |
| 279 | fattr->cf_flags |= CIFS_FATTR_DFS_REFERRAL; |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 280 | } |
| 281 | |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 282 | int cifs_get_file_info_unix(struct file *filp) |
| 283 | { |
| 284 | int rc; |
| 285 | int xid; |
| 286 | FILE_UNIX_BASIC_INFO find_data; |
| 287 | struct cifs_fattr fattr; |
| 288 | struct inode *inode = filp->f_path.dentry->d_inode; |
| 289 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 290 | struct cifsTconInfo *tcon = cifs_sb->tcon; |
| 291 | struct cifsFileInfo *cfile = (struct cifsFileInfo *) filp->private_data; |
| 292 | |
| 293 | xid = GetXid(); |
| 294 | rc = CIFSSMBUnixQFileInfo(xid, tcon, cfile->netfid, &find_data); |
| 295 | if (!rc) { |
| 296 | cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb); |
| 297 | } else if (rc == -EREMOTE) { |
| 298 | cifs_create_dfs_fattr(&fattr, inode->i_sb); |
| 299 | rc = 0; |
| 300 | } |
| 301 | |
| 302 | cifs_fattr_to_inode(inode, &fattr); |
| 303 | FreeXid(xid); |
| 304 | return rc; |
| 305 | } |
| 306 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | int cifs_get_inode_info_unix(struct inode **pinode, |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 308 | const unsigned char *full_path, |
| 309 | struct super_block *sb, int xid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | { |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 311 | int rc; |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 312 | FILE_UNIX_BASIC_INFO find_data; |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 313 | struct cifs_fattr fattr; |
| 314 | struct cifsTconInfo *tcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 317 | tcon = cifs_sb->tcon; |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 318 | cFYI(1, "Getting info on %s", full_path); |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | /* could have done a find first instead but this returns more info */ |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 321 | rc = CIFSSMBUnixQPathInfo(xid, tcon, full_path, &find_data, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 322 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
| 323 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 324 | |
| 325 | if (!rc) { |
| 326 | cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb); |
| 327 | } else if (rc == -EREMOTE) { |
| 328 | cifs_create_dfs_fattr(&fattr, sb); |
Jeff Layton | e911d0c | 2008-07-12 13:47:59 -0700 | [diff] [blame] | 329 | rc = 0; |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 330 | } else { |
| 331 | return rc; |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 332 | } |
| 333 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 334 | if (*pinode == NULL) { |
| 335 | /* get new inode */ |
Jeff Layton | 4065c80 | 2010-05-17 07:18:58 -0400 | [diff] [blame] | 336 | cifs_fill_uniqueid(sb, &fattr); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 337 | *pinode = cifs_iget(sb, &fattr); |
| 338 | if (!*pinode) |
| 339 | rc = -ENOMEM; |
| 340 | } else { |
| 341 | /* we already have inode, update it */ |
| 342 | cifs_fattr_to_inode(*pinode, &fattr); |
| 343 | } |
Steve French | 0e4bbde | 2008-05-20 19:50:46 +0000 | [diff] [blame] | 344 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | return rc; |
| 346 | } |
| 347 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 348 | static int |
| 349 | cifs_sfu_type(struct cifs_fattr *fattr, const unsigned char *path, |
| 350 | struct cifs_sb_info *cifs_sb, int xid) |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 351 | { |
| 352 | int rc; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 353 | int oplock = 0; |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 354 | __u16 netfid; |
| 355 | struct cifsTconInfo *pTcon = cifs_sb->tcon; |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 356 | char buf[24]; |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 357 | unsigned int bytes_read; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 358 | char *pbuf; |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 359 | |
| 360 | pbuf = buf; |
| 361 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 362 | fattr->cf_mode &= ~S_IFMT; |
| 363 | |
| 364 | if (fattr->cf_eof == 0) { |
| 365 | fattr->cf_mode |= S_IFIFO; |
| 366 | fattr->cf_dtype = DT_FIFO; |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 367 | return 0; |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 368 | } else if (fattr->cf_eof < 8) { |
| 369 | fattr->cf_mode |= S_IFREG; |
| 370 | fattr->cf_dtype = DT_REG; |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 371 | return -EINVAL; /* EOPNOTSUPP? */ |
| 372 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 373 | |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 374 | rc = CIFSSMBOpen(xid, pTcon, path, FILE_OPEN, GENERIC_READ, |
| 375 | CREATE_NOT_DIR, &netfid, &oplock, NULL, |
| 376 | cifs_sb->local_nls, |
| 377 | cifs_sb->mnt_cifs_flags & |
| 378 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 379 | if (rc == 0) { |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 380 | int buf_type = CIFS_NO_BUFFER; |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 381 | /* Read header */ |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 382 | rc = CIFSSMBRead(xid, pTcon, netfid, |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 383 | 24 /* length */, 0 /* offset */, |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 384 | &bytes_read, &pbuf, &buf_type); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 385 | if ((rc == 0) && (bytes_read >= 8)) { |
| 386 | if (memcmp("IntxBLK", pbuf, 8) == 0) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 387 | cFYI(1, "Block device"); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 388 | fattr->cf_mode |= S_IFBLK; |
| 389 | fattr->cf_dtype = DT_BLK; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 390 | if (bytes_read == 24) { |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 391 | /* we have enough to decode dev num */ |
| 392 | __u64 mjr; /* major */ |
| 393 | __u64 mnr; /* minor */ |
| 394 | mjr = le64_to_cpu(*(__le64 *)(pbuf+8)); |
| 395 | mnr = le64_to_cpu(*(__le64 *)(pbuf+16)); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 396 | fattr->cf_rdev = MKDEV(mjr, mnr); |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 397 | } |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 398 | } else if (memcmp("IntxCHR", pbuf, 8) == 0) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 399 | cFYI(1, "Char device"); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 400 | fattr->cf_mode |= S_IFCHR; |
| 401 | fattr->cf_dtype = DT_CHR; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 402 | if (bytes_read == 24) { |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 403 | /* we have enough to decode dev num */ |
| 404 | __u64 mjr; /* major */ |
| 405 | __u64 mnr; /* minor */ |
| 406 | mjr = le64_to_cpu(*(__le64 *)(pbuf+8)); |
| 407 | mnr = le64_to_cpu(*(__le64 *)(pbuf+16)); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 408 | fattr->cf_rdev = MKDEV(mjr, mnr); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 409 | } |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 410 | } else if (memcmp("IntxLNK", pbuf, 7) == 0) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 411 | cFYI(1, "Symlink"); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 412 | fattr->cf_mode |= S_IFLNK; |
| 413 | fattr->cf_dtype = DT_LNK; |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 414 | } else { |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 415 | fattr->cf_mode |= S_IFREG; /* file? */ |
| 416 | fattr->cf_dtype = DT_REG; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 417 | rc = -EOPNOTSUPP; |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 418 | } |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 419 | } else { |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 420 | fattr->cf_mode |= S_IFREG; /* then it is a file */ |
| 421 | fattr->cf_dtype = DT_REG; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 422 | rc = -EOPNOTSUPP; /* or some unknown SFU type */ |
| 423 | } |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 424 | CIFSSMBClose(xid, pTcon, netfid); |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 425 | } |
| 426 | return rc; |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 427 | } |
| 428 | |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 429 | #define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */ |
| 430 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 431 | /* |
| 432 | * Fetch mode bits as provided by SFU. |
| 433 | * |
| 434 | * FIXME: Doesn't this clobber the type bit we got from cifs_sfu_type ? |
| 435 | */ |
| 436 | static int cifs_sfu_mode(struct cifs_fattr *fattr, const unsigned char *path, |
| 437 | struct cifs_sb_info *cifs_sb, int xid) |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 438 | { |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 439 | #ifdef CONFIG_CIFS_XATTR |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 440 | ssize_t rc; |
| 441 | char ea_value[4]; |
| 442 | __u32 mode; |
| 443 | |
Jeff Layton | 31c0519 | 2010-02-10 16:18:26 -0500 | [diff] [blame] | 444 | rc = CIFSSMBQAllEAs(xid, cifs_sb->tcon, path, "SETFILEBITS", |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 445 | ea_value, 4 /* size of buf */, cifs_sb->local_nls, |
| 446 | cifs_sb->mnt_cifs_flags & |
| 447 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 448 | if (rc < 0) |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 449 | return (int)rc; |
| 450 | else if (rc > 3) { |
| 451 | mode = le32_to_cpu(*((__le32 *)ea_value)); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 452 | fattr->cf_mode &= ~SFBITS_MASK; |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 453 | cFYI(1, "special bits 0%o org mode 0%o", mode, |
| 454 | fattr->cf_mode); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 455 | fattr->cf_mode = (mode & SFBITS_MASK) | fattr->cf_mode; |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 456 | cFYI(1, "special mode bits 0%o", mode); |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 457 | } |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 458 | |
| 459 | return 0; |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 460 | #else |
| 461 | return -EOPNOTSUPP; |
| 462 | #endif |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 463 | } |
| 464 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 465 | /* Fill a cifs_fattr struct with info from FILE_ALL_INFO */ |
Steve French | f1230c9 | 2009-07-22 23:13:01 +0000 | [diff] [blame] | 466 | static void |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 467 | cifs_all_info_to_fattr(struct cifs_fattr *fattr, FILE_ALL_INFO *info, |
| 468 | struct cifs_sb_info *cifs_sb, bool adjust_tz) |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 469 | { |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 470 | memset(fattr, 0, sizeof(*fattr)); |
| 471 | fattr->cf_cifsattrs = le32_to_cpu(info->Attributes); |
| 472 | if (info->DeletePending) |
| 473 | fattr->cf_flags |= CIFS_FATTR_DELETE_PENDING; |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 474 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 475 | if (info->LastAccessTime) |
| 476 | fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime); |
| 477 | else |
| 478 | fattr->cf_atime = CURRENT_TIME; |
| 479 | |
| 480 | fattr->cf_ctime = cifs_NTtimeToUnix(info->ChangeTime); |
| 481 | fattr->cf_mtime = cifs_NTtimeToUnix(info->LastWriteTime); |
| 482 | |
| 483 | if (adjust_tz) { |
| 484 | fattr->cf_ctime.tv_sec += cifs_sb->tcon->ses->server->timeAdj; |
| 485 | fattr->cf_mtime.tv_sec += cifs_sb->tcon->ses->server->timeAdj; |
| 486 | } |
| 487 | |
| 488 | fattr->cf_eof = le64_to_cpu(info->EndOfFile); |
| 489 | fattr->cf_bytes = le64_to_cpu(info->AllocationSize); |
| 490 | |
| 491 | if (fattr->cf_cifsattrs & ATTR_DIRECTORY) { |
| 492 | fattr->cf_mode = S_IFDIR | cifs_sb->mnt_dir_mode; |
| 493 | fattr->cf_dtype = DT_DIR; |
| 494 | } else { |
| 495 | fattr->cf_mode = S_IFREG | cifs_sb->mnt_file_mode; |
| 496 | fattr->cf_dtype = DT_REG; |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 497 | |
Jeff Layton | d0c280d | 2009-07-09 01:46:44 -0400 | [diff] [blame] | 498 | /* clear write bits if ATTR_READONLY is set */ |
| 499 | if (fattr->cf_cifsattrs & ATTR_READONLY) |
| 500 | fattr->cf_mode &= ~(S_IWUGO); |
| 501 | } |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 502 | |
| 503 | fattr->cf_nlink = le32_to_cpu(info->NumberOfLinks); |
| 504 | |
| 505 | fattr->cf_uid = cifs_sb->mnt_uid; |
| 506 | fattr->cf_gid = cifs_sb->mnt_gid; |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 507 | } |
| 508 | |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 509 | int cifs_get_file_info(struct file *filp) |
| 510 | { |
| 511 | int rc; |
| 512 | int xid; |
| 513 | FILE_ALL_INFO find_data; |
| 514 | struct cifs_fattr fattr; |
| 515 | struct inode *inode = filp->f_path.dentry->d_inode; |
| 516 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 517 | struct cifsTconInfo *tcon = cifs_sb->tcon; |
| 518 | struct cifsFileInfo *cfile = (struct cifsFileInfo *) filp->private_data; |
| 519 | |
| 520 | xid = GetXid(); |
| 521 | rc = CIFSSMBQFileInfo(xid, tcon, cfile->netfid, &find_data); |
| 522 | if (rc == -EOPNOTSUPP || rc == -EINVAL) { |
| 523 | /* |
| 524 | * FIXME: legacy server -- fall back to path-based call? |
Steve French | ff215713 | 2010-03-09 20:30:42 +0000 | [diff] [blame] | 525 | * for now, just skip revalidating and mark inode for |
| 526 | * immediate reval. |
| 527 | */ |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 528 | rc = 0; |
| 529 | CIFS_I(inode)->time = 0; |
| 530 | goto cgfi_exit; |
| 531 | } else if (rc == -EREMOTE) { |
| 532 | cifs_create_dfs_fattr(&fattr, inode->i_sb); |
| 533 | rc = 0; |
| 534 | } else if (rc) |
| 535 | goto cgfi_exit; |
| 536 | |
| 537 | /* |
| 538 | * don't bother with SFU junk here -- just mark inode as needing |
| 539 | * revalidation. |
| 540 | */ |
| 541 | cifs_all_info_to_fattr(&fattr, &find_data, cifs_sb, false); |
| 542 | fattr.cf_uniqueid = CIFS_I(inode)->uniqueid; |
| 543 | fattr.cf_flags |= CIFS_FATTR_NEED_REVAL; |
| 544 | cifs_fattr_to_inode(inode, &fattr); |
| 545 | cgfi_exit: |
| 546 | FreeXid(xid); |
| 547 | return rc; |
| 548 | } |
| 549 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | int cifs_get_inode_info(struct inode **pinode, |
Steve French | 646dd53 | 2008-05-15 01:50:56 +0000 | [diff] [blame] | 551 | const unsigned char *full_path, FILE_ALL_INFO *pfindData, |
Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 552 | struct super_block *sb, int xid, const __u16 *pfid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | { |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 554 | int rc = 0, tmprc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | struct cifsTconInfo *pTcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | char *buf = NULL; |
Steve French | 5ade9de | 2008-05-02 20:56:23 +0000 | [diff] [blame] | 558 | bool adjustTZ = false; |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 559 | struct cifs_fattr fattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | |
| 561 | pTcon = cifs_sb->tcon; |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 562 | cFYI(1, "Getting info on %s", full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 564 | if ((pfindData == NULL) && (*pinode != NULL)) { |
| 565 | if (CIFS_I(*pinode)->clientCanCacheRead) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 566 | cFYI(1, "No need to revalidate cached inode sizes"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | return rc; |
| 568 | } |
| 569 | } |
| 570 | |
| 571 | /* if file info not passed in then get it from server */ |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 572 | if (pfindData == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 574 | if (buf == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | return -ENOMEM; |
| 576 | pfindData = (FILE_ALL_INFO *)buf; |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 577 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | /* could do find first instead but this returns more info */ |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 579 | rc = CIFSSMBQPathInfo(xid, pTcon, full_path, pfindData, |
Steve French | acf1a1b | 2006-10-12 03:28:28 +0000 | [diff] [blame] | 580 | 0 /* not legacy */, |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 581 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 582 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 583 | /* BB optimize code so we do not make the above call |
| 584 | when server claims no NT SMB support and the above call |
| 585 | failed at least once - set flag in tcon or mount */ |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 586 | if ((rc == -EOPNOTSUPP) || (rc == -EINVAL)) { |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 587 | rc = SMBQueryInformation(xid, pTcon, full_path, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 588 | pfindData, cifs_sb->local_nls, |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 589 | cifs_sb->mnt_cifs_flags & |
| 590 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 591 | adjustTZ = true; |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 592 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | } |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 594 | |
| 595 | if (!rc) { |
| 596 | cifs_all_info_to_fattr(&fattr, (FILE_ALL_INFO *) pfindData, |
| 597 | cifs_sb, adjustTZ); |
| 598 | } else if (rc == -EREMOTE) { |
| 599 | cifs_create_dfs_fattr(&fattr, sb); |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 600 | rc = 0; |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 601 | } else { |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 602 | goto cgii_exit; |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 603 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 605 | /* |
| 606 | * If an inode wasn't passed in, then get the inode number |
| 607 | * |
| 608 | * Is an i_ino of zero legal? Can we use that to check if the server |
| 609 | * supports returning inode numbers? Are there other sanity checks we |
| 610 | * can use to ensure that the server is really filling in that field? |
| 611 | * |
| 612 | * We can not use the IndexNumber field by default from Windows or |
| 613 | * Samba (in ALL_INFO buf) but we can request it explicitly. The SNIA |
| 614 | * CIFS spec claims that this value is unique within the scope of a |
| 615 | * share, and the windows docs hint that it's actually unique |
| 616 | * per-machine. |
| 617 | * |
| 618 | * There may be higher info levels that work but are there Windows |
| 619 | * server or network appliances for which IndexNumber field is not |
| 620 | * guaranteed unique? |
| 621 | */ |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 622 | if (*pinode == NULL) { |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 623 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) { |
| 624 | int rc1 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 626 | rc1 = CIFSGetSrvInodeNumber(xid, pTcon, |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 627 | full_path, &fattr.cf_uniqueid, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 628 | cifs_sb->local_nls, |
| 629 | cifs_sb->mnt_cifs_flags & |
| 630 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Jeff Layton | ec06aed | 2009-11-06 14:18:29 -0500 | [diff] [blame] | 631 | if (rc1 || !fattr.cf_uniqueid) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 632 | cFYI(1, "GetSrvInodeNum rc %d", rc1); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 633 | fattr.cf_uniqueid = iunique(sb, ROOT_I); |
Jeff Layton | ec06aed | 2009-11-06 14:18:29 -0500 | [diff] [blame] | 634 | cifs_autodisable_serverino(cifs_sb); |
Jeff Layton | 132ac7b | 2009-02-10 07:33:57 -0500 | [diff] [blame] | 635 | } |
Jeff Layton | 132ac7b | 2009-02-10 07:33:57 -0500 | [diff] [blame] | 636 | } else { |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 637 | fattr.cf_uniqueid = iunique(sb, ROOT_I); |
Jeff Layton | 132ac7b | 2009-02-10 07:33:57 -0500 | [diff] [blame] | 638 | } |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 639 | } else { |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 640 | fattr.cf_uniqueid = CIFS_I(*pinode)->uniqueid; |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 641 | } |
| 642 | |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 643 | /* query for SFU type info if supported and needed */ |
| 644 | if (fattr.cf_cifsattrs & ATTR_SYSTEM && |
| 645 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) { |
| 646 | tmprc = cifs_sfu_type(&fattr, full_path, cifs_sb, xid); |
| 647 | if (tmprc) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 648 | cFYI(1, "cifs_sfu_type failed: %d", tmprc); |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 649 | } |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 650 | |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 651 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
| 652 | /* fill in 0777 bits from ACL */ |
| 653 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 654 | cFYI(1, "Getting mode bits from ACL"); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 655 | cifs_acl_to_fattr(cifs_sb, &fattr, *pinode, full_path, pfid); |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 656 | } |
| 657 | #endif |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 658 | |
| 659 | /* fill in remaining high mode bits e.g. SUID, VTX */ |
| 660 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) |
| 661 | cifs_sfu_mode(&fattr, full_path, cifs_sb, xid); |
| 662 | |
| 663 | if (!*pinode) { |
| 664 | *pinode = cifs_iget(sb, &fattr); |
| 665 | if (!*pinode) |
| 666 | rc = -ENOMEM; |
| 667 | } else { |
| 668 | cifs_fattr_to_inode(*pinode, &fattr); |
Steve French | b9a3260 | 2008-05-20 21:52:32 +0000 | [diff] [blame] | 669 | } |
| 670 | |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 671 | cgii_exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | kfree(buf); |
| 673 | return rc; |
| 674 | } |
| 675 | |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 676 | static const struct inode_operations cifs_ipc_inode_ops = { |
| 677 | .lookup = cifs_lookup, |
| 678 | }; |
| 679 | |
Igor Mammedov | e4cce94 | 2009-02-10 14:10:26 +0300 | [diff] [blame] | 680 | char *cifs_build_path_to_root(struct cifs_sb_info *cifs_sb) |
Steve French | 8be0ed4 | 2008-12-05 19:14:12 +0000 | [diff] [blame] | 681 | { |
| 682 | int pplen = cifs_sb->prepathlen; |
| 683 | int dfsplen; |
| 684 | char *full_path = NULL; |
| 685 | |
| 686 | /* if no prefix path, simply set path to the root of share to "" */ |
| 687 | if (pplen == 0) { |
| 688 | full_path = kmalloc(1, GFP_KERNEL); |
| 689 | if (full_path) |
| 690 | full_path[0] = 0; |
| 691 | return full_path; |
| 692 | } |
| 693 | |
| 694 | if (cifs_sb->tcon && (cifs_sb->tcon->Flags & SMB_SHARE_IS_IN_DFS)) |
| 695 | dfsplen = strnlen(cifs_sb->tcon->treeName, MAX_TREE_SIZE + 1); |
| 696 | else |
| 697 | dfsplen = 0; |
| 698 | |
| 699 | full_path = kmalloc(dfsplen + pplen + 1, GFP_KERNEL); |
| 700 | if (full_path == NULL) |
| 701 | return full_path; |
| 702 | |
| 703 | if (dfsplen) { |
| 704 | strncpy(full_path, cifs_sb->tcon->treeName, dfsplen); |
| 705 | /* switch slash direction in prepath depending on whether |
| 706 | * windows or posix style path names |
| 707 | */ |
| 708 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) { |
| 709 | int i; |
| 710 | for (i = 0; i < dfsplen; i++) { |
| 711 | if (full_path[i] == '\\') |
| 712 | full_path[i] = '/'; |
| 713 | } |
| 714 | } |
| 715 | } |
| 716 | strncpy(full_path + dfsplen, cifs_sb->prepath, pplen); |
| 717 | full_path[dfsplen + pplen] = 0; /* add trailing null */ |
| 718 | return full_path; |
| 719 | } |
| 720 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 721 | static int |
| 722 | cifs_find_inode(struct inode *inode, void *opaque) |
| 723 | { |
| 724 | struct cifs_fattr *fattr = (struct cifs_fattr *) opaque; |
| 725 | |
| 726 | if (CIFS_I(inode)->uniqueid != fattr->cf_uniqueid) |
| 727 | return 0; |
| 728 | |
Jeff Layton | 3d69438 | 2010-05-11 14:59:55 -0400 | [diff] [blame] | 729 | /* |
| 730 | * uh oh -- it's a directory. We can't use it since hardlinked dirs are |
| 731 | * verboten. Disable serverino and return it as if it were found, the |
| 732 | * caller can discard it, generate a uniqueid and retry the find |
| 733 | */ |
| 734 | if (S_ISDIR(inode->i_mode) && !list_empty(&inode->i_dentry)) { |
| 735 | fattr->cf_flags |= CIFS_FATTR_INO_COLLISION; |
| 736 | cifs_autodisable_serverino(CIFS_SB(inode->i_sb)); |
| 737 | } |
| 738 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 739 | return 1; |
| 740 | } |
| 741 | |
| 742 | static int |
| 743 | cifs_init_inode(struct inode *inode, void *opaque) |
| 744 | { |
| 745 | struct cifs_fattr *fattr = (struct cifs_fattr *) opaque; |
| 746 | |
| 747 | CIFS_I(inode)->uniqueid = fattr->cf_uniqueid; |
| 748 | return 0; |
| 749 | } |
| 750 | |
| 751 | /* Given fattrs, get a corresponding inode */ |
| 752 | struct inode * |
| 753 | cifs_iget(struct super_block *sb, struct cifs_fattr *fattr) |
| 754 | { |
| 755 | unsigned long hash; |
| 756 | struct inode *inode; |
| 757 | |
Jeff Layton | 3d69438 | 2010-05-11 14:59:55 -0400 | [diff] [blame] | 758 | retry_iget5_locked: |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 759 | cFYI(1, "looking for uniqueid=%llu", fattr->cf_uniqueid); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 760 | |
| 761 | /* hash down to 32-bits on 32-bit arch */ |
| 762 | hash = cifs_uniqueid_to_ino_t(fattr->cf_uniqueid); |
| 763 | |
| 764 | inode = iget5_locked(sb, hash, cifs_find_inode, cifs_init_inode, fattr); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 765 | if (inode) { |
Jeff Layton | 3d69438 | 2010-05-11 14:59:55 -0400 | [diff] [blame] | 766 | /* was there a problematic inode number collision? */ |
| 767 | if (fattr->cf_flags & CIFS_FATTR_INO_COLLISION) { |
| 768 | iput(inode); |
| 769 | fattr->cf_uniqueid = iunique(sb, ROOT_I); |
| 770 | fattr->cf_flags &= ~CIFS_FATTR_INO_COLLISION; |
| 771 | goto retry_iget5_locked; |
| 772 | } |
| 773 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 774 | cifs_fattr_to_inode(inode, fattr); |
| 775 | if (sb->s_flags & MS_NOATIME) |
| 776 | inode->i_flags |= S_NOATIME | S_NOCMTIME; |
| 777 | if (inode->i_state & I_NEW) { |
| 778 | inode->i_ino = hash; |
| 779 | unlock_new_inode(inode); |
| 780 | } |
| 781 | } |
| 782 | |
| 783 | return inode; |
| 784 | } |
| 785 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | /* gets root inode */ |
Jeff Layton | bd433d4 | 2009-05-27 09:37:34 -0400 | [diff] [blame] | 787 | struct inode *cifs_root_iget(struct super_block *sb, unsigned long ino) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | { |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 789 | int xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | struct cifs_sb_info *cifs_sb; |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 791 | struct inode *inode = NULL; |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 792 | long rc; |
Steve French | 8be0ed4 | 2008-12-05 19:14:12 +0000 | [diff] [blame] | 793 | char *full_path; |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 794 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 795 | cifs_sb = CIFS_SB(sb); |
Igor Mammedov | e4cce94 | 2009-02-10 14:10:26 +0300 | [diff] [blame] | 796 | full_path = cifs_build_path_to_root(cifs_sb); |
Steve French | 8be0ed4 | 2008-12-05 19:14:12 +0000 | [diff] [blame] | 797 | if (full_path == NULL) |
| 798 | return ERR_PTR(-ENOMEM); |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 799 | |
Steve French | 8be0ed4 | 2008-12-05 19:14:12 +0000 | [diff] [blame] | 800 | xid = GetXid(); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 801 | if (cifs_sb->tcon->unix_ext) |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 802 | rc = cifs_get_inode_info_unix(&inode, full_path, sb, xid); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 803 | else |
| 804 | rc = cifs_get_inode_info(&inode, full_path, NULL, sb, |
Steve French | 8be0ed4 | 2008-12-05 19:14:12 +0000 | [diff] [blame] | 805 | xid, NULL); |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 806 | |
| 807 | if (!inode) |
| 808 | return ERR_PTR(-ENOMEM); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 809 | |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 810 | if (rc && cifs_sb->tcon->ipc) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 811 | cFYI(1, "ipc connection - fake read inode"); |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 812 | inode->i_mode |= S_IFDIR; |
| 813 | inode->i_nlink = 2; |
| 814 | inode->i_op = &cifs_ipc_inode_ops; |
| 815 | inode->i_fop = &simple_dir_operations; |
| 816 | inode->i_uid = cifs_sb->mnt_uid; |
| 817 | inode->i_gid = cifs_sb->mnt_gid; |
Steve French | ad66133 | 2008-08-12 14:14:40 +0000 | [diff] [blame] | 818 | } else if (rc) { |
Steve French | 8be0ed4 | 2008-12-05 19:14:12 +0000 | [diff] [blame] | 819 | kfree(full_path); |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 820 | _FreeXid(xid); |
| 821 | iget_failed(inode); |
| 822 | return ERR_PTR(rc); |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 823 | } |
| 824 | |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 825 | |
Steve French | 8be0ed4 | 2008-12-05 19:14:12 +0000 | [diff] [blame] | 826 | kfree(full_path); |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 827 | /* can not call macro FreeXid here since in a void func |
| 828 | * TODO: This is no longer true |
| 829 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | _FreeXid(xid); |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 831 | return inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | } |
| 833 | |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 834 | static int |
| 835 | cifs_set_file_info(struct inode *inode, struct iattr *attrs, int xid, |
| 836 | char *full_path, __u32 dosattr) |
| 837 | { |
| 838 | int rc; |
| 839 | int oplock = 0; |
| 840 | __u16 netfid; |
| 841 | __u32 netpid; |
| 842 | bool set_time = false; |
| 843 | struct cifsFileInfo *open_file; |
| 844 | struct cifsInodeInfo *cifsInode = CIFS_I(inode); |
| 845 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 846 | struct cifsTconInfo *pTcon = cifs_sb->tcon; |
| 847 | FILE_BASIC_INFO info_buf; |
| 848 | |
Steve French | 1adcb71 | 2009-02-25 14:19:56 +0000 | [diff] [blame] | 849 | if (attrs == NULL) |
| 850 | return -EINVAL; |
| 851 | |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 852 | if (attrs->ia_valid & ATTR_ATIME) { |
| 853 | set_time = true; |
| 854 | info_buf.LastAccessTime = |
| 855 | cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_atime)); |
| 856 | } else |
| 857 | info_buf.LastAccessTime = 0; |
| 858 | |
| 859 | if (attrs->ia_valid & ATTR_MTIME) { |
| 860 | set_time = true; |
| 861 | info_buf.LastWriteTime = |
| 862 | cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_mtime)); |
| 863 | } else |
| 864 | info_buf.LastWriteTime = 0; |
| 865 | |
| 866 | /* |
| 867 | * Samba throws this field away, but windows may actually use it. |
| 868 | * Do not set ctime unless other time stamps are changed explicitly |
| 869 | * (i.e. by utimes()) since we would then have a mix of client and |
| 870 | * server times. |
| 871 | */ |
| 872 | if (set_time && (attrs->ia_valid & ATTR_CTIME)) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 873 | cFYI(1, "CIFS - CTIME changed"); |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 874 | info_buf.ChangeTime = |
| 875 | cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_ctime)); |
| 876 | } else |
| 877 | info_buf.ChangeTime = 0; |
| 878 | |
| 879 | info_buf.CreationTime = 0; /* don't change */ |
| 880 | info_buf.Attributes = cpu_to_le32(dosattr); |
| 881 | |
| 882 | /* |
| 883 | * If the file is already open for write, just use that fileid |
| 884 | */ |
| 885 | open_file = find_writable_file(cifsInode); |
| 886 | if (open_file) { |
| 887 | netfid = open_file->netfid; |
| 888 | netpid = open_file->pid; |
| 889 | goto set_via_filehandle; |
| 890 | } |
| 891 | |
| 892 | /* |
| 893 | * NT4 apparently returns success on this call, but it doesn't |
| 894 | * really work. |
| 895 | */ |
| 896 | if (!(pTcon->ses->flags & CIFS_SES_NT4)) { |
| 897 | rc = CIFSSMBSetPathInfo(xid, pTcon, full_path, |
| 898 | &info_buf, cifs_sb->local_nls, |
| 899 | cifs_sb->mnt_cifs_flags & |
| 900 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Jeff Layton | 6b37faa | 2008-10-06 21:54:41 +0000 | [diff] [blame] | 901 | if (rc == 0) { |
| 902 | cifsInode->cifsAttrs = dosattr; |
| 903 | goto out; |
| 904 | } else if (rc != -EOPNOTSUPP && rc != -EINVAL) |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 905 | goto out; |
| 906 | } |
| 907 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 908 | cFYI(1, "calling SetFileInfo since SetPathInfo for " |
| 909 | "times not supported by this server"); |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 910 | rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN, |
| 911 | SYNCHRONIZE | FILE_WRITE_ATTRIBUTES, |
| 912 | CREATE_NOT_DIR, &netfid, &oplock, |
| 913 | NULL, cifs_sb->local_nls, |
| 914 | cifs_sb->mnt_cifs_flags & |
| 915 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 916 | |
| 917 | if (rc != 0) { |
| 918 | if (rc == -EIO) |
| 919 | rc = -EINVAL; |
| 920 | goto out; |
| 921 | } |
| 922 | |
| 923 | netpid = current->tgid; |
| 924 | |
| 925 | set_via_filehandle: |
| 926 | rc = CIFSSMBSetFileInfo(xid, pTcon, &info_buf, netfid, netpid); |
Steve French | d388908 | 2008-09-24 19:22:52 +0000 | [diff] [blame] | 927 | if (!rc) |
| 928 | cifsInode->cifsAttrs = dosattr; |
| 929 | |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 930 | if (open_file == NULL) |
| 931 | CIFSSMBClose(xid, pTcon, netfid); |
| 932 | else |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 933 | cifsFileInfo_put(open_file); |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 934 | out: |
| 935 | return rc; |
| 936 | } |
| 937 | |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 938 | /* |
| 939 | * open the given file (if it isn't already), set the DELETE_ON_CLOSE bit |
| 940 | * and rename it to a random name that hopefully won't conflict with |
| 941 | * anything else. |
| 942 | */ |
| 943 | static int |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 944 | cifs_rename_pending_delete(char *full_path, struct dentry *dentry, int xid) |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 945 | { |
| 946 | int oplock = 0; |
| 947 | int rc; |
| 948 | __u16 netfid; |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 949 | struct inode *inode = dentry->d_inode; |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 950 | struct cifsInodeInfo *cifsInode = CIFS_I(inode); |
| 951 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 952 | struct cifsTconInfo *tcon = cifs_sb->tcon; |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 953 | __u32 dosattr, origattr; |
| 954 | FILE_BASIC_INFO *info_buf = NULL; |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 955 | |
| 956 | rc = CIFSSMBOpen(xid, tcon, full_path, FILE_OPEN, |
Jeff Layton | dd1db2d | 2008-10-16 19:27:12 -0400 | [diff] [blame] | 957 | DELETE|FILE_WRITE_ATTRIBUTES, CREATE_NOT_DIR, |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 958 | &netfid, &oplock, NULL, cifs_sb->local_nls, |
| 959 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 960 | if (rc != 0) |
| 961 | goto out; |
| 962 | |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 963 | origattr = cifsInode->cifsAttrs; |
| 964 | if (origattr == 0) |
| 965 | origattr |= ATTR_NORMAL; |
| 966 | |
| 967 | dosattr = origattr & ~ATTR_READONLY; |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 968 | if (dosattr == 0) |
| 969 | dosattr |= ATTR_NORMAL; |
| 970 | dosattr |= ATTR_HIDDEN; |
| 971 | |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 972 | /* set ATTR_HIDDEN and clear ATTR_READONLY, but only if needed */ |
| 973 | if (dosattr != origattr) { |
| 974 | info_buf = kzalloc(sizeof(*info_buf), GFP_KERNEL); |
| 975 | if (info_buf == NULL) { |
| 976 | rc = -ENOMEM; |
| 977 | goto out_close; |
| 978 | } |
| 979 | info_buf->Attributes = cpu_to_le32(dosattr); |
| 980 | rc = CIFSSMBSetFileInfo(xid, tcon, info_buf, netfid, |
| 981 | current->tgid); |
| 982 | /* although we would like to mark the file hidden |
| 983 | if that fails we will still try to rename it */ |
Steve French | 4134609 | 2008-10-20 18:24:42 +0000 | [diff] [blame] | 984 | if (rc != 0) |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 985 | cifsInode->cifsAttrs = dosattr; |
| 986 | else |
| 987 | dosattr = origattr; /* since not able to change them */ |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 988 | } |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 989 | |
Jeff Layton | dd1db2d | 2008-10-16 19:27:12 -0400 | [diff] [blame] | 990 | /* rename the file */ |
| 991 | rc = CIFSSMBRenameOpenFile(xid, tcon, netfid, NULL, cifs_sb->local_nls, |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 992 | cifs_sb->mnt_cifs_flags & |
| 993 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 994 | if (rc != 0) { |
| 995 | rc = -ETXTBSY; |
| 996 | goto undo_setattr; |
| 997 | } |
Jeff Layton | 6d22f09 | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 998 | |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 999 | /* try to set DELETE_ON_CLOSE */ |
| 1000 | if (!cifsInode->delete_pending) { |
| 1001 | rc = CIFSSMBSetFileDisposition(xid, tcon, true, netfid, |
| 1002 | current->tgid); |
| 1003 | /* |
| 1004 | * some samba versions return -ENOENT when we try to set the |
| 1005 | * file disposition here. Likely a samba bug, but work around |
| 1006 | * it for now. This means that some cifsXXX files may hang |
| 1007 | * around after they shouldn't. |
| 1008 | * |
| 1009 | * BB: remove this hack after more servers have the fix |
| 1010 | */ |
| 1011 | if (rc == -ENOENT) |
| 1012 | rc = 0; |
| 1013 | else if (rc != 0) { |
| 1014 | rc = -ETXTBSY; |
| 1015 | goto undo_rename; |
| 1016 | } |
| 1017 | cifsInode->delete_pending = true; |
| 1018 | } |
Jeff Layton | 7ce86d5 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1019 | |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1020 | out_close: |
| 1021 | CIFSSMBClose(xid, tcon, netfid); |
| 1022 | out: |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1023 | kfree(info_buf); |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1024 | return rc; |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1025 | |
| 1026 | /* |
| 1027 | * reset everything back to the original state. Don't bother |
| 1028 | * dealing with errors here since we can't do anything about |
| 1029 | * them anyway. |
| 1030 | */ |
| 1031 | undo_rename: |
| 1032 | CIFSSMBRenameOpenFile(xid, tcon, netfid, dentry->d_name.name, |
| 1033 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
| 1034 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 1035 | undo_setattr: |
| 1036 | if (dosattr != origattr) { |
| 1037 | info_buf->Attributes = cpu_to_le32(origattr); |
| 1038 | if (!CIFSSMBSetFileInfo(xid, tcon, info_buf, netfid, |
| 1039 | current->tgid)) |
| 1040 | cifsInode->cifsAttrs = origattr; |
| 1041 | } |
| 1042 | |
| 1043 | goto out_close; |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1044 | } |
| 1045 | |
Steve French | ff69452 | 2009-04-20 19:45:13 +0000 | [diff] [blame] | 1046 | |
| 1047 | /* |
| 1048 | * If dentry->d_inode is null (usually meaning the cached dentry |
| 1049 | * 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] | 1050 | * if that fails we can not attempt the fall back mechanisms on EACCESS |
| 1051 | * 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] | 1052 | * unlink on negative dentries currently. |
| 1053 | */ |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1054 | int cifs_unlink(struct inode *dir, struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | { |
| 1056 | int rc = 0; |
| 1057 | int xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | char *full_path = NULL; |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1059 | struct inode *inode = dentry->d_inode; |
Steve French | ff69452 | 2009-04-20 19:45:13 +0000 | [diff] [blame] | 1060 | struct cifsInodeInfo *cifs_inode; |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1061 | struct super_block *sb = dir->i_sb; |
| 1062 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
| 1063 | struct cifsTconInfo *tcon = cifs_sb->tcon; |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1064 | struct iattr *attrs = NULL; |
| 1065 | __u32 dosattr = 0, origattr = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1067 | cFYI(1, "cifs_unlink, dir=0x%p, dentry=0x%p", dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | |
| 1069 | xid = GetXid(); |
| 1070 | |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1071 | /* Unlink can be called from rename so we can not take the |
| 1072 | * sb->s_vfs_rename_mutex here */ |
| 1073 | full_path = build_path_from_dentry(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1075 | rc = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | FreeXid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1077 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | } |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 1079 | |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1080 | if ((tcon->ses->capabilities & CAP_UNIX) && |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 1081 | (CIFS_UNIX_POSIX_PATH_OPS_CAP & |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1082 | le64_to_cpu(tcon->fsUnixInfo.Capability))) { |
| 1083 | rc = CIFSPOSIXDelFile(xid, tcon, full_path, |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 1084 | SMB_POSIX_UNLINK_FILE_TARGET, cifs_sb->local_nls, |
| 1085 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1086 | cFYI(1, "posix del rc %d", rc); |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 1087 | if ((rc == 0) || (rc == -ENOENT)) |
| 1088 | goto psx_del_no_retry; |
| 1089 | } |
| 1090 | |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1091 | retry_std_delete: |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1092 | rc = CIFSSMBDelFile(xid, tcon, full_path, cifs_sb->local_nls, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1093 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1094 | |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 1095 | psx_del_no_retry: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | if (!rc) { |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1097 | if (inode) |
| 1098 | drop_nlink(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | } else if (rc == -ENOENT) { |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1100 | d_drop(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | } else if (rc == -ETXTBSY) { |
Steve French | 3270958 | 2008-10-20 00:44:19 +0000 | [diff] [blame] | 1102 | rc = cifs_rename_pending_delete(full_path, dentry, xid); |
Jeff Layton | a12a1ac | 2008-09-23 11:48:35 -0400 | [diff] [blame] | 1103 | if (rc == 0) |
| 1104 | drop_nlink(inode); |
Steve French | ff69452 | 2009-04-20 19:45:13 +0000 | [diff] [blame] | 1105 | } else if ((rc == -EACCES) && (dosattr == 0) && inode) { |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1106 | attrs = kzalloc(sizeof(*attrs), GFP_KERNEL); |
| 1107 | if (attrs == NULL) { |
| 1108 | rc = -ENOMEM; |
| 1109 | goto out_reval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | } |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1111 | |
| 1112 | /* try to reset dos attributes */ |
Steve French | ff69452 | 2009-04-20 19:45:13 +0000 | [diff] [blame] | 1113 | cifs_inode = CIFS_I(inode); |
| 1114 | origattr = cifs_inode->cifsAttrs; |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1115 | if (origattr == 0) |
| 1116 | origattr |= ATTR_NORMAL; |
| 1117 | dosattr = origattr & ~ATTR_READONLY; |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1118 | if (dosattr == 0) |
| 1119 | dosattr |= ATTR_NORMAL; |
| 1120 | dosattr |= ATTR_HIDDEN; |
| 1121 | |
| 1122 | rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr); |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1123 | if (rc != 0) |
| 1124 | goto out_reval; |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1125 | |
| 1126 | goto retry_std_delete; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | } |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1128 | |
| 1129 | /* undo the setattr if we errored out and it's needed */ |
| 1130 | if (rc != 0 && dosattr != 0) |
| 1131 | cifs_set_file_info(inode, attrs, xid, full_path, origattr); |
| 1132 | |
Steve French | 388e57b | 2008-09-16 23:50:58 +0000 | [diff] [blame] | 1133 | out_reval: |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1134 | if (inode) { |
Steve French | ff69452 | 2009-04-20 19:45:13 +0000 | [diff] [blame] | 1135 | cifs_inode = CIFS_I(inode); |
| 1136 | cifs_inode->time = 0; /* will force revalidate to get info |
Steve French | b2aeb9d | 2005-05-17 13:16:18 -0500 | [diff] [blame] | 1137 | when needed */ |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1138 | inode->i_ctime = current_fs_time(sb); |
Steve French | b2aeb9d | 2005-05-17 13:16:18 -0500 | [diff] [blame] | 1139 | } |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 1140 | dir->i_ctime = dir->i_mtime = current_fs_time(sb); |
Steve French | ff69452 | 2009-04-20 19:45:13 +0000 | [diff] [blame] | 1141 | cifs_inode = CIFS_I(dir); |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1142 | CIFS_I(dir)->time = 0; /* force revalidate of dir as well */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | |
| 1144 | kfree(full_path); |
Steve French | 6050247 | 2008-10-07 18:42:52 +0000 | [diff] [blame] | 1145 | kfree(attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | FreeXid(xid); |
| 1147 | return rc; |
| 1148 | } |
| 1149 | |
| 1150 | int cifs_mkdir(struct inode *inode, struct dentry *direntry, int mode) |
| 1151 | { |
Jeff Layton | 6b37faa | 2008-10-06 21:54:41 +0000 | [diff] [blame] | 1152 | int rc = 0, tmprc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | int xid; |
| 1154 | struct cifs_sb_info *cifs_sb; |
| 1155 | struct cifsTconInfo *pTcon; |
| 1156 | char *full_path = NULL; |
| 1157 | struct inode *newinode = NULL; |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 1158 | struct cifs_fattr fattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1160 | cFYI(1, "In cifs_mkdir, mode = 0x%x inode = 0x%p", mode, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | |
| 1162 | xid = GetXid(); |
| 1163 | |
| 1164 | cifs_sb = CIFS_SB(inode->i_sb); |
| 1165 | pTcon = cifs_sb->tcon; |
| 1166 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 1167 | full_path = build_path_from_dentry(direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1169 | rc = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | FreeXid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1171 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1173 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1174 | if ((pTcon->ses->capabilities & CAP_UNIX) && |
| 1175 | (CIFS_UNIX_POSIX_PATH_OPS_CAP & |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1176 | le64_to_cpu(pTcon->fsUnixInfo.Capability))) { |
| 1177 | u32 oplock = 0; |
Steve French | f6d0998 | 2008-01-08 23:18:22 +0000 | [diff] [blame] | 1178 | FILE_UNIX_BASIC_INFO *pInfo = |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1179 | kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1180 | if (pInfo == NULL) { |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1181 | rc = -ENOMEM; |
| 1182 | goto mkdir_out; |
| 1183 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1184 | |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 1185 | mode &= ~current_umask(); |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1186 | rc = CIFSPOSIXCreate(xid, pTcon, SMB_O_DIRECTORY | SMB_O_CREAT, |
| 1187 | mode, NULL /* netfid */, pInfo, &oplock, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1188 | full_path, cifs_sb->local_nls, |
| 1189 | cifs_sb->mnt_cifs_flags & |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1190 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | c45d707 | 2007-09-17 02:04:21 +0000 | [diff] [blame] | 1191 | if (rc == -EOPNOTSUPP) { |
| 1192 | kfree(pInfo); |
| 1193 | goto mkdir_retry_old; |
| 1194 | } else if (rc) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1195 | cFYI(1, "posix mkdir returned 0x%x", rc); |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1196 | d_drop(direntry); |
| 1197 | } else { |
Cyril Gorcunov | 8f2376a | 2007-10-14 17:58:43 +0000 | [diff] [blame] | 1198 | if (pInfo->Type == cpu_to_le32(-1)) { |
| 1199 | /* no return info, go query for it */ |
Steve French | 5a07cdf | 2007-09-16 23:12:47 +0000 | [diff] [blame] | 1200 | kfree(pInfo); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1201 | goto mkdir_get_info; |
Steve French | 5a07cdf | 2007-09-16 23:12:47 +0000 | [diff] [blame] | 1202 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1203 | /*BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if need |
| 1204 | to set uid/gid */ |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1205 | inc_nlink(inode); |
| 1206 | if (pTcon->nocase) |
| 1207 | direntry->d_op = &cifs_ci_dentry_ops; |
| 1208 | else |
| 1209 | direntry->d_op = &cifs_dentry_ops; |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 1210 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 1211 | cifs_unix_basic_to_fattr(&fattr, pInfo, cifs_sb); |
Jeff Layton | 4065c80 | 2010-05-17 07:18:58 -0400 | [diff] [blame] | 1212 | cifs_fill_uniqueid(inode->i_sb, &fattr); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 1213 | newinode = cifs_iget(inode->i_sb, &fattr); |
| 1214 | if (!newinode) { |
Steve French | 5a07cdf | 2007-09-16 23:12:47 +0000 | [diff] [blame] | 1215 | kfree(pInfo); |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 1216 | goto mkdir_get_info; |
Steve French | 5a07cdf | 2007-09-16 23:12:47 +0000 | [diff] [blame] | 1217 | } |
Jeff Layton | 6b37faa | 2008-10-06 21:54:41 +0000 | [diff] [blame] | 1218 | |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1219 | d_instantiate(direntry, newinode); |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 1220 | |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 1221 | #ifdef CONFIG_CIFS_DEBUG2 |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1222 | cFYI(1, "instantiated dentry %p %s to inode %p", |
| 1223 | direntry, direntry->d_name.name, newinode); |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 1224 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1225 | if (newinode->i_nlink != 2) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1226 | cFYI(1, "unexpected number of links %d", |
| 1227 | newinode->i_nlink); |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 1228 | #endif |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1229 | } |
| 1230 | kfree(pInfo); |
| 1231 | goto mkdir_out; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1232 | } |
Steve French | c45d707 | 2007-09-17 02:04:21 +0000 | [diff] [blame] | 1233 | mkdir_retry_old: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | /* BB add setting the equivalent of mode via CreateX w/ACLs */ |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1235 | rc = CIFSSMBMkDir(xid, pTcon, full_path, cifs_sb->local_nls, |
| 1236 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | if (rc) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1238 | cFYI(1, "cifs_mkdir returned 0x%x", rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | d_drop(direntry); |
| 1240 | } else { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1241 | mkdir_get_info: |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 1242 | inc_nlink(inode); |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 1243 | if (pTcon->unix_ext) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | rc = cifs_get_inode_info_unix(&newinode, full_path, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1245 | inode->i_sb, xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | else |
| 1247 | rc = cifs_get_inode_info(&newinode, full_path, NULL, |
Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 1248 | inode->i_sb, xid, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | |
Steve French | b92327f | 2005-08-22 20:09:43 -0700 | [diff] [blame] | 1250 | if (pTcon->nocase) |
| 1251 | direntry->d_op = &cifs_ci_dentry_ops; |
| 1252 | else |
| 1253 | direntry->d_op = &cifs_dentry_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | d_instantiate(direntry, newinode); |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1255 | /* setting nlink not necessary except in cases where we |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1256 | * failed to get it from the server or was set bogus */ |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 1257 | if ((direntry->d_inode) && (direntry->d_inode->i_nlink < 2)) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1258 | direntry->d_inode->i_nlink = 2; |
Jeff Layton | 9508991 | 2008-08-06 04:39:02 +0000 | [diff] [blame] | 1259 | |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 1260 | mode &= ~current_umask(); |
Jeff Layton | 9508991 | 2008-08-06 04:39:02 +0000 | [diff] [blame] | 1261 | /* must turn on setgid bit if parent dir has it */ |
| 1262 | if (inode->i_mode & S_ISGID) |
| 1263 | mode |= S_ISGID; |
| 1264 | |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 1265 | if (pTcon->unix_ext) { |
Jeff Layton | 4e1e7fb | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1266 | struct cifs_unix_set_info_args args = { |
| 1267 | .mode = mode, |
| 1268 | .ctime = NO_CHANGE_64, |
| 1269 | .atime = NO_CHANGE_64, |
| 1270 | .mtime = NO_CHANGE_64, |
| 1271 | .device = 0, |
| 1272 | }; |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 1273 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) { |
David Howells | a001e5b | 2008-11-14 10:38:47 +1100 | [diff] [blame] | 1274 | args.uid = (__u64)current_fsuid(); |
Jeff Layton | 9508991 | 2008-08-06 04:39:02 +0000 | [diff] [blame] | 1275 | if (inode->i_mode & S_ISGID) |
| 1276 | args.gid = (__u64)inode->i_gid; |
| 1277 | else |
David Howells | a001e5b | 2008-11-14 10:38:47 +1100 | [diff] [blame] | 1278 | args.gid = (__u64)current_fsgid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | } else { |
Jeff Layton | 4e1e7fb | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1280 | args.uid = NO_CHANGE_64; |
| 1281 | args.gid = NO_CHANGE_64; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | } |
Jeff Layton | 01ea95e | 2009-07-09 20:02:49 -0400 | [diff] [blame] | 1283 | CIFSSMBUnixSetPathInfo(xid, pTcon, full_path, &args, |
| 1284 | cifs_sb->local_nls, |
| 1285 | cifs_sb->mnt_cifs_flags & |
| 1286 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 3ce53fc | 2007-06-08 14:55:14 +0000 | [diff] [blame] | 1287 | } else { |
Jeff Layton | 67750fb | 2008-05-09 22:28:02 +0000 | [diff] [blame] | 1288 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) && |
| 1289 | (mode & S_IWUGO) == 0) { |
| 1290 | FILE_BASIC_INFO pInfo; |
Jeff Layton | 6b37faa | 2008-10-06 21:54:41 +0000 | [diff] [blame] | 1291 | struct cifsInodeInfo *cifsInode; |
| 1292 | u32 dosattrs; |
| 1293 | |
Jeff Layton | 67750fb | 2008-05-09 22:28:02 +0000 | [diff] [blame] | 1294 | memset(&pInfo, 0, sizeof(pInfo)); |
Jeff Layton | 6b37faa | 2008-10-06 21:54:41 +0000 | [diff] [blame] | 1295 | cifsInode = CIFS_I(newinode); |
| 1296 | dosattrs = cifsInode->cifsAttrs|ATTR_READONLY; |
| 1297 | pInfo.Attributes = cpu_to_le32(dosattrs); |
| 1298 | tmprc = CIFSSMBSetPathInfo(xid, pTcon, |
| 1299 | full_path, &pInfo, |
| 1300 | cifs_sb->local_nls, |
Jeff Layton | 67750fb | 2008-05-09 22:28:02 +0000 | [diff] [blame] | 1301 | cifs_sb->mnt_cifs_flags & |
| 1302 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Jeff Layton | 6b37faa | 2008-10-06 21:54:41 +0000 | [diff] [blame] | 1303 | if (tmprc == 0) |
| 1304 | cifsInode->cifsAttrs = dosattrs; |
Jeff Layton | 67750fb | 2008-05-09 22:28:02 +0000 | [diff] [blame] | 1305 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1306 | if (direntry->d_inode) { |
Jeff Layton | b0fd30d | 2008-05-22 09:33:34 -0400 | [diff] [blame] | 1307 | if (cifs_sb->mnt_cifs_flags & |
| 1308 | CIFS_MOUNT_DYNPERM) |
| 1309 | direntry->d_inode->i_mode = |
| 1310 | (mode | S_IFDIR); |
Steve French | 4e94a10 | 2008-05-23 18:22:46 +0000 | [diff] [blame] | 1311 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1312 | if (cifs_sb->mnt_cifs_flags & |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 1313 | CIFS_MOUNT_SET_UID) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1314 | direntry->d_inode->i_uid = |
David Howells | a001e5b | 2008-11-14 10:38:47 +1100 | [diff] [blame] | 1315 | current_fsuid(); |
Jeff Layton | 9508991 | 2008-08-06 04:39:02 +0000 | [diff] [blame] | 1316 | if (inode->i_mode & S_ISGID) |
| 1317 | direntry->d_inode->i_gid = |
| 1318 | inode->i_gid; |
| 1319 | else |
| 1320 | direntry->d_inode->i_gid = |
David Howells | a001e5b | 2008-11-14 10:38:47 +1100 | [diff] [blame] | 1321 | current_fsgid(); |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 1322 | } |
| 1323 | } |
Steve French | 2a138ebb | 2005-11-29 21:22:19 -0800 | [diff] [blame] | 1324 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1326 | mkdir_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | kfree(full_path); |
| 1328 | FreeXid(xid); |
| 1329 | return rc; |
| 1330 | } |
| 1331 | |
| 1332 | int cifs_rmdir(struct inode *inode, struct dentry *direntry) |
| 1333 | { |
| 1334 | int rc = 0; |
| 1335 | int xid; |
| 1336 | struct cifs_sb_info *cifs_sb; |
| 1337 | struct cifsTconInfo *pTcon; |
| 1338 | char *full_path = NULL; |
| 1339 | struct cifsInodeInfo *cifsInode; |
| 1340 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1341 | cFYI(1, "cifs_rmdir, inode = 0x%p", inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | |
| 1343 | xid = GetXid(); |
| 1344 | |
| 1345 | cifs_sb = CIFS_SB(inode->i_sb); |
| 1346 | pTcon = cifs_sb->tcon; |
| 1347 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 1348 | full_path = build_path_from_dentry(direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1350 | rc = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | FreeXid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1352 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | } |
| 1354 | |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1355 | rc = CIFSSMBRmDir(xid, pTcon, full_path, cifs_sb->local_nls, |
| 1356 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | |
| 1358 | if (!rc) { |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 1359 | drop_nlink(inode); |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1360 | spin_lock(&direntry->d_inode->i_lock); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1361 | i_size_write(direntry->d_inode, 0); |
Dave Hansen | ce71ec3 | 2006-09-30 23:29:06 -0700 | [diff] [blame] | 1362 | clear_nlink(direntry->d_inode); |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1363 | spin_unlock(&direntry->d_inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | } |
| 1365 | |
| 1366 | cifsInode = CIFS_I(direntry->d_inode); |
| 1367 | cifsInode->time = 0; /* force revalidate to go get info when |
| 1368 | needed */ |
Steve French | 42c2454 | 2009-01-13 22:03:55 +0000 | [diff] [blame] | 1369 | |
| 1370 | cifsInode = CIFS_I(inode); |
| 1371 | cifsInode->time = 0; /* force revalidate to get parent dir info |
| 1372 | since cached search results now invalid */ |
| 1373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | direntry->d_inode->i_ctime = inode->i_ctime = inode->i_mtime = |
| 1375 | current_fs_time(inode->i_sb); |
| 1376 | |
| 1377 | kfree(full_path); |
| 1378 | FreeXid(xid); |
| 1379 | return rc; |
| 1380 | } |
| 1381 | |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1382 | static int |
| 1383 | cifs_do_rename(int xid, struct dentry *from_dentry, const char *fromPath, |
| 1384 | struct dentry *to_dentry, const char *toPath) |
| 1385 | { |
| 1386 | struct cifs_sb_info *cifs_sb = CIFS_SB(from_dentry->d_sb); |
| 1387 | struct cifsTconInfo *pTcon = cifs_sb->tcon; |
| 1388 | __u16 srcfid; |
| 1389 | int oplock, rc; |
| 1390 | |
| 1391 | /* try path-based rename first */ |
| 1392 | rc = CIFSSMBRename(xid, pTcon, fromPath, toPath, cifs_sb->local_nls, |
| 1393 | cifs_sb->mnt_cifs_flags & |
| 1394 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 1395 | |
| 1396 | /* |
| 1397 | * don't bother with rename by filehandle unless file is busy and |
| 1398 | * source Note that cross directory moves do not work with |
| 1399 | * rename by filehandle to various Windows servers. |
| 1400 | */ |
| 1401 | if (rc == 0 || rc != -ETXTBSY) |
| 1402 | return rc; |
| 1403 | |
Jeff Layton | ed0e3ac | 2010-06-01 16:21:01 -0400 | [diff] [blame] | 1404 | /* open-file renames don't work across directories */ |
| 1405 | if (to_dentry->d_parent != from_dentry->d_parent) |
| 1406 | return rc; |
| 1407 | |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1408 | /* open the file to be renamed -- we need DELETE perms */ |
| 1409 | rc = CIFSSMBOpen(xid, pTcon, fromPath, FILE_OPEN, DELETE, |
| 1410 | CREATE_NOT_DIR, &srcfid, &oplock, NULL, |
| 1411 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
| 1412 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 1413 | |
| 1414 | if (rc == 0) { |
| 1415 | rc = CIFSSMBRenameOpenFile(xid, pTcon, srcfid, |
| 1416 | (const char *) to_dentry->d_name.name, |
| 1417 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
| 1418 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 1419 | |
| 1420 | CIFSSMBClose(xid, pTcon, srcfid); |
| 1421 | } |
| 1422 | |
| 1423 | return rc; |
| 1424 | } |
| 1425 | |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1426 | int cifs_rename(struct inode *source_dir, struct dentry *source_dentry, |
| 1427 | struct inode *target_dir, struct dentry *target_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | { |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1429 | char *fromName = NULL; |
| 1430 | char *toName = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | struct cifs_sb_info *cifs_sb_source; |
| 1432 | struct cifs_sb_info *cifs_sb_target; |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1433 | struct cifsTconInfo *tcon; |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1434 | FILE_UNIX_BASIC_INFO *info_buf_source = NULL; |
| 1435 | FILE_UNIX_BASIC_INFO *info_buf_target; |
Jeff Layton | 8d281ef | 2008-10-22 13:57:01 -0400 | [diff] [blame] | 1436 | int xid, rc, tmprc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1438 | cifs_sb_target = CIFS_SB(target_dir->i_sb); |
| 1439 | cifs_sb_source = CIFS_SB(source_dir->i_sb); |
| 1440 | tcon = cifs_sb_source->tcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1442 | xid = GetXid(); |
| 1443 | |
| 1444 | /* |
| 1445 | * BB: this might be allowed if same server, but different share. |
| 1446 | * Consider adding support for this |
| 1447 | */ |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1448 | if (tcon != cifs_sb_target->tcon) { |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1449 | rc = -EXDEV; |
| 1450 | goto cifs_rename_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | } |
| 1452 | |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1453 | /* |
| 1454 | * we already have the rename sem so we do not need to |
| 1455 | * grab it again here to protect the path integrity |
| 1456 | */ |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1457 | fromName = build_path_from_dentry(source_dentry); |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1458 | if (fromName == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | rc = -ENOMEM; |
| 1460 | goto cifs_rename_exit; |
| 1461 | } |
| 1462 | |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1463 | toName = build_path_from_dentry(target_dentry); |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1464 | if (toName == NULL) { |
| 1465 | rc = -ENOMEM; |
| 1466 | goto cifs_rename_exit; |
| 1467 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1468 | |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1469 | rc = cifs_do_rename(xid, source_dentry, fromName, |
| 1470 | target_dentry, toName); |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1471 | |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1472 | if (rc == -EEXIST && tcon->unix_ext) { |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1473 | /* |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1474 | * Are src and dst hardlinks of same inode? We can |
| 1475 | * only tell with unix extensions enabled |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1476 | */ |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1477 | info_buf_source = |
| 1478 | kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO), |
| 1479 | GFP_KERNEL); |
| 1480 | if (info_buf_source == NULL) { |
| 1481 | rc = -ENOMEM; |
| 1482 | goto cifs_rename_exit; |
| 1483 | } |
| 1484 | |
| 1485 | info_buf_target = info_buf_source + 1; |
Jeff Layton | 8d281ef | 2008-10-22 13:57:01 -0400 | [diff] [blame] | 1486 | tmprc = CIFSSMBUnixQPathInfo(xid, tcon, fromName, |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1487 | info_buf_source, |
| 1488 | cifs_sb_source->local_nls, |
| 1489 | cifs_sb_source->mnt_cifs_flags & |
| 1490 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Jeff Layton | 8d281ef | 2008-10-22 13:57:01 -0400 | [diff] [blame] | 1491 | if (tmprc != 0) |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1492 | goto unlink_target; |
| 1493 | |
Jeff Layton | 8d281ef | 2008-10-22 13:57:01 -0400 | [diff] [blame] | 1494 | tmprc = CIFSSMBUnixQPathInfo(xid, tcon, |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1495 | toName, info_buf_target, |
| 1496 | cifs_sb_target->local_nls, |
| 1497 | /* remap based on source sb */ |
| 1498 | cifs_sb_source->mnt_cifs_flags & |
| 1499 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 1500 | |
Jeff Layton | 8d281ef | 2008-10-22 13:57:01 -0400 | [diff] [blame] | 1501 | if (tmprc == 0 && (info_buf_source->UniqueId == |
Jeff Layton | ae6884a | 2008-11-03 14:05:08 -0500 | [diff] [blame] | 1502 | info_buf_target->UniqueId)) { |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1503 | /* same file, POSIX says that this is a noop */ |
Jeff Layton | ae6884a | 2008-11-03 14:05:08 -0500 | [diff] [blame] | 1504 | rc = 0; |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1505 | goto cifs_rename_exit; |
Jeff Layton | ae6884a | 2008-11-03 14:05:08 -0500 | [diff] [blame] | 1506 | } |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1507 | } /* else ... BB we could add the same check for Windows by |
| 1508 | checking the UniqueId via FILE_INTERNAL_INFO */ |
| 1509 | |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1510 | unlink_target: |
Jeff Layton | fc6f394 | 2009-04-17 11:45:30 -0400 | [diff] [blame] | 1511 | /* Try unlinking the target dentry if it's not negative */ |
| 1512 | if (target_dentry->d_inode && (rc == -EACCES || rc == -EEXIST)) { |
Jeff Layton | 8d281ef | 2008-10-22 13:57:01 -0400 | [diff] [blame] | 1513 | tmprc = cifs_unlink(target_dir, target_dentry); |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1514 | if (tmprc) |
| 1515 | goto cifs_rename_exit; |
| 1516 | |
Jeff Layton | 14121bd | 2008-10-20 14:45:22 -0400 | [diff] [blame] | 1517 | rc = cifs_do_rename(xid, source_dentry, fromName, |
| 1518 | target_dentry, toName); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | } |
| 1520 | |
| 1521 | cifs_rename_exit: |
Steve French | ee2fd96 | 2008-09-23 18:23:33 +0000 | [diff] [blame] | 1522 | kfree(info_buf_source); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | kfree(fromName); |
| 1524 | kfree(toName); |
| 1525 | FreeXid(xid); |
| 1526 | return rc; |
| 1527 | } |
| 1528 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1529 | static bool |
| 1530 | cifs_inode_needs_reval(struct inode *inode) |
| 1531 | { |
| 1532 | struct cifsInodeInfo *cifs_i = CIFS_I(inode); |
| 1533 | |
| 1534 | if (cifs_i->clientCanCacheRead) |
| 1535 | return false; |
| 1536 | |
| 1537 | if (!lookupCacheEnabled) |
| 1538 | return true; |
| 1539 | |
| 1540 | if (cifs_i->time == 0) |
| 1541 | return true; |
| 1542 | |
| 1543 | /* FIXME: the actimeo should be tunable */ |
| 1544 | if (time_after_eq(jiffies, cifs_i->time + HZ)) |
| 1545 | return true; |
| 1546 | |
Jeff Layton | db19272 | 2010-05-17 14:51:49 -0400 | [diff] [blame] | 1547 | /* hardlinked files w/ noserverino get "special" treatment */ |
| 1548 | if (!(CIFS_SB(inode->i_sb)->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) && |
| 1549 | S_ISREG(inode->i_mode) && inode->i_nlink != 1) |
| 1550 | return true; |
| 1551 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1552 | return false; |
| 1553 | } |
| 1554 | |
| 1555 | /* check invalid_mapping flag and zap the cache if it's set */ |
| 1556 | static void |
| 1557 | cifs_invalidate_mapping(struct inode *inode) |
| 1558 | { |
| 1559 | int rc; |
| 1560 | struct cifsInodeInfo *cifs_i = CIFS_I(inode); |
| 1561 | |
| 1562 | cifs_i->invalid_mapping = false; |
| 1563 | |
| 1564 | /* write back any cached data */ |
| 1565 | if (inode->i_mapping && inode->i_mapping->nrpages != 0) { |
| 1566 | rc = filemap_write_and_wait(inode->i_mapping); |
| 1567 | if (rc) |
| 1568 | cifs_i->write_behind_rc = rc; |
| 1569 | } |
| 1570 | invalidate_remote_inode(inode); |
| 1571 | } |
| 1572 | |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 1573 | int cifs_revalidate_file(struct file *filp) |
| 1574 | { |
| 1575 | int rc = 0; |
| 1576 | struct inode *inode = filp->f_path.dentry->d_inode; |
| 1577 | |
| 1578 | if (!cifs_inode_needs_reval(inode)) |
| 1579 | goto check_inval; |
| 1580 | |
| 1581 | if (CIFS_SB(inode->i_sb)->tcon->unix_ext) |
| 1582 | rc = cifs_get_file_info_unix(filp); |
| 1583 | else |
| 1584 | rc = cifs_get_file_info(filp); |
| 1585 | |
| 1586 | check_inval: |
| 1587 | if (CIFS_I(inode)->invalid_mapping) |
| 1588 | cifs_invalidate_mapping(inode); |
| 1589 | |
| 1590 | return rc; |
| 1591 | } |
| 1592 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1593 | /* revalidate a dentry's inode attributes */ |
| 1594 | int cifs_revalidate_dentry(struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | { |
| 1596 | int xid; |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1597 | int rc = 0; |
| 1598 | char *full_path = NULL; |
| 1599 | struct inode *inode = dentry->d_inode; |
| 1600 | struct super_block *sb = dentry->d_sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1602 | if (inode == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | return -ENOENT; |
| 1604 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | xid = GetXid(); |
| 1606 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1607 | if (!cifs_inode_needs_reval(inode)) |
| 1608 | goto check_inval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | |
| 1610 | /* can not safely grab the rename sem here if rename calls revalidate |
| 1611 | since that would deadlock */ |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1612 | full_path = build_path_from_dentry(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1614 | rc = -ENOMEM; |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1615 | goto check_inval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | } |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1617 | |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 1618 | cFYI(1, "Revalidate: %s inode 0x%p count %d dentry: 0x%p d_time %ld " |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1619 | "jiffies %ld", full_path, inode, inode->i_count.counter, |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 1620 | dentry, dentry->d_time, jiffies); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1622 | if (CIFS_SB(sb)->tcon->unix_ext) |
| 1623 | rc = cifs_get_inode_info_unix(&inode, full_path, sb, xid); |
| 1624 | else |
| 1625 | rc = cifs_get_inode_info(&inode, full_path, NULL, sb, |
| 1626 | xid, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1628 | check_inval: |
| 1629 | if (CIFS_I(inode)->invalid_mapping) |
| 1630 | cifs_invalidate_mapping(inode); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1631 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | kfree(full_path); |
| 1633 | FreeXid(xid); |
| 1634 | return rc; |
| 1635 | } |
| 1636 | |
| 1637 | int cifs_getattr(struct vfsmount *mnt, struct dentry *dentry, |
| 1638 | struct kstat *stat) |
| 1639 | { |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 1640 | int err = cifs_revalidate_dentry(dentry); |
Steve French | 5fe14c8 | 2006-11-07 19:26:33 +0000 | [diff] [blame] | 1641 | if (!err) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | generic_fillattr(dentry->d_inode, stat); |
Steve French | 5fe14c8 | 2006-11-07 19:26:33 +0000 | [diff] [blame] | 1643 | stat->blksize = CIFS_MAX_MSGSIZE; |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 1644 | stat->ino = CIFS_I(dentry->d_inode)->uniqueid; |
Steve French | 5fe14c8 | 2006-11-07 19:26:33 +0000 | [diff] [blame] | 1645 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1646 | return err; |
| 1647 | } |
| 1648 | |
| 1649 | static int cifs_truncate_page(struct address_space *mapping, loff_t from) |
| 1650 | { |
| 1651 | pgoff_t index = from >> PAGE_CACHE_SHIFT; |
| 1652 | unsigned offset = from & (PAGE_CACHE_SIZE - 1); |
| 1653 | struct page *page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | int rc = 0; |
| 1655 | |
| 1656 | page = grab_cache_page(mapping, index); |
| 1657 | if (!page) |
| 1658 | return -ENOMEM; |
| 1659 | |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 1660 | zero_user_segment(page, offset, PAGE_CACHE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | unlock_page(page); |
| 1662 | page_cache_release(page); |
| 1663 | return rc; |
| 1664 | } |
| 1665 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1666 | static int cifs_vmtruncate(struct inode *inode, loff_t offset) |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1667 | { |
npiggin@suse.de | c08d3b0 | 2009-08-21 02:35:06 +1000 | [diff] [blame] | 1668 | loff_t oldsize; |
| 1669 | int err; |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1670 | |
Steve French | ba6a46a | 2007-02-26 20:06:29 +0000 | [diff] [blame] | 1671 | spin_lock(&inode->i_lock); |
npiggin@suse.de | c08d3b0 | 2009-08-21 02:35:06 +1000 | [diff] [blame] | 1672 | err = inode_newsize_ok(inode, offset); |
| 1673 | if (err) { |
Steve French | ba6a46a | 2007-02-26 20:06:29 +0000 | [diff] [blame] | 1674 | spin_unlock(&inode->i_lock); |
npiggin@suse.de | c08d3b0 | 2009-08-21 02:35:06 +1000 | [diff] [blame] | 1675 | goto out; |
Steve French | ba6a46a | 2007-02-26 20:06:29 +0000 | [diff] [blame] | 1676 | } |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1677 | |
npiggin@suse.de | c08d3b0 | 2009-08-21 02:35:06 +1000 | [diff] [blame] | 1678 | oldsize = inode->i_size; |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1679 | i_size_write(inode, offset); |
Steve French | ba6a46a | 2007-02-26 20:06:29 +0000 | [diff] [blame] | 1680 | spin_unlock(&inode->i_lock); |
npiggin@suse.de | c08d3b0 | 2009-08-21 02:35:06 +1000 | [diff] [blame] | 1681 | truncate_pagecache(inode, oldsize, offset); |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 1682 | if (inode->i_op->truncate) |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1683 | inode->i_op->truncate(inode); |
npiggin@suse.de | c08d3b0 | 2009-08-21 02:35:06 +1000 | [diff] [blame] | 1684 | out: |
| 1685 | return err; |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1686 | } |
| 1687 | |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 1688 | static int |
| 1689 | cifs_set_file_size(struct inode *inode, struct iattr *attrs, |
| 1690 | int xid, char *full_path) |
| 1691 | { |
| 1692 | int rc; |
| 1693 | struct cifsFileInfo *open_file; |
| 1694 | struct cifsInodeInfo *cifsInode = CIFS_I(inode); |
| 1695 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 1696 | struct cifsTconInfo *pTcon = cifs_sb->tcon; |
| 1697 | |
| 1698 | /* |
| 1699 | * To avoid spurious oplock breaks from server, in the case of |
| 1700 | * inodes that we already have open, avoid doing path based |
| 1701 | * setting of file size if we can do it by handle. |
| 1702 | * This keeps our caching token (oplock) and avoids timeouts |
| 1703 | * when the local oplock break takes longer to flush |
| 1704 | * writebehind data than the SMB timeout for the SetPathInfo |
| 1705 | * request would allow |
| 1706 | */ |
| 1707 | open_file = find_writable_file(cifsInode); |
| 1708 | if (open_file) { |
| 1709 | __u16 nfid = open_file->netfid; |
| 1710 | __u32 npid = open_file->pid; |
| 1711 | rc = CIFSSMBSetFileSize(xid, pTcon, attrs->ia_size, nfid, |
| 1712 | npid, false); |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 1713 | cifsFileInfo_put(open_file); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1714 | cFYI(1, "SetFSize for attrs rc = %d", rc); |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 1715 | if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) { |
| 1716 | unsigned int bytes_written; |
| 1717 | rc = CIFSSMBWrite(xid, pTcon, nfid, 0, attrs->ia_size, |
| 1718 | &bytes_written, NULL, NULL, 1); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1719 | cFYI(1, "Wrt seteof rc %d", rc); |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 1720 | } |
| 1721 | } else |
| 1722 | rc = -EINVAL; |
| 1723 | |
| 1724 | if (rc != 0) { |
| 1725 | /* Set file size by pathname rather than by handle |
| 1726 | either because no valid, writeable file handle for |
| 1727 | it was found or because there was an error setting |
| 1728 | it by handle */ |
| 1729 | rc = CIFSSMBSetEOF(xid, pTcon, full_path, attrs->ia_size, |
| 1730 | false, cifs_sb->local_nls, |
| 1731 | cifs_sb->mnt_cifs_flags & |
| 1732 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1733 | cFYI(1, "SetEOF by path (setattrs) rc = %d", rc); |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 1734 | if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) { |
| 1735 | __u16 netfid; |
| 1736 | int oplock = 0; |
| 1737 | |
| 1738 | rc = SMBLegacyOpen(xid, pTcon, full_path, |
| 1739 | FILE_OPEN, GENERIC_WRITE, |
| 1740 | CREATE_NOT_DIR, &netfid, &oplock, NULL, |
| 1741 | cifs_sb->local_nls, |
| 1742 | cifs_sb->mnt_cifs_flags & |
| 1743 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 1744 | if (rc == 0) { |
| 1745 | unsigned int bytes_written; |
| 1746 | rc = CIFSSMBWrite(xid, pTcon, netfid, 0, |
| 1747 | attrs->ia_size, |
| 1748 | &bytes_written, NULL, |
| 1749 | NULL, 1); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1750 | cFYI(1, "wrt seteof rc %d", rc); |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 1751 | CIFSSMBClose(xid, pTcon, netfid); |
| 1752 | } |
| 1753 | } |
| 1754 | } |
| 1755 | |
| 1756 | if (rc == 0) { |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1757 | cifsInode->server_eof = attrs->ia_size; |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 1758 | rc = cifs_vmtruncate(inode, attrs->ia_size); |
| 1759 | cifs_truncate_page(inode->i_mapping, inode->i_size); |
| 1760 | } |
| 1761 | |
| 1762 | return rc; |
| 1763 | } |
| 1764 | |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1765 | static int |
| 1766 | cifs_setattr_unix(struct dentry *direntry, struct iattr *attrs) |
| 1767 | { |
| 1768 | int rc; |
| 1769 | int xid; |
| 1770 | char *full_path = NULL; |
| 1771 | struct inode *inode = direntry->d_inode; |
| 1772 | struct cifsInodeInfo *cifsInode = CIFS_I(inode); |
| 1773 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 1774 | struct cifsTconInfo *pTcon = cifs_sb->tcon; |
| 1775 | struct cifs_unix_set_info_args *args = NULL; |
Jeff Layton | 3bbeeb3 | 2009-07-09 20:02:50 -0400 | [diff] [blame] | 1776 | struct cifsFileInfo *open_file; |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1777 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1778 | cFYI(1, "setattr_unix on file %s attrs->ia_valid=0x%x", |
| 1779 | direntry->d_name.name, attrs->ia_valid); |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1780 | |
| 1781 | xid = GetXid(); |
| 1782 | |
| 1783 | if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) == 0) { |
| 1784 | /* check if we have permission to change attrs */ |
| 1785 | rc = inode_change_ok(inode, attrs); |
| 1786 | if (rc < 0) |
| 1787 | goto out; |
| 1788 | else |
| 1789 | rc = 0; |
| 1790 | } |
| 1791 | |
| 1792 | full_path = build_path_from_dentry(direntry); |
| 1793 | if (full_path == NULL) { |
| 1794 | rc = -ENOMEM; |
| 1795 | goto out; |
| 1796 | } |
| 1797 | |
Jeff Layton | 0f4d634 | 2009-03-26 13:35:37 -0400 | [diff] [blame] | 1798 | /* |
| 1799 | * Attempt to flush data before changing attributes. We need to do |
| 1800 | * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the |
| 1801 | * ownership or mode then we may also need to do this. Here, we take |
| 1802 | * the safe way out and just do the flush on all setattr requests. If |
| 1803 | * the flush returns error, store it to report later and continue. |
| 1804 | * |
| 1805 | * BB: This should be smarter. Why bother flushing pages that |
| 1806 | * will be truncated anyway? Also, should we error out here if |
| 1807 | * the flush returns error? |
| 1808 | */ |
| 1809 | rc = filemap_write_and_wait(inode->i_mapping); |
| 1810 | if (rc != 0) { |
| 1811 | cifsInode->write_behind_rc = rc; |
| 1812 | rc = 0; |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1813 | } |
| 1814 | |
| 1815 | if (attrs->ia_valid & ATTR_SIZE) { |
| 1816 | rc = cifs_set_file_size(inode, attrs, xid, full_path); |
| 1817 | if (rc != 0) |
| 1818 | goto out; |
| 1819 | } |
| 1820 | |
| 1821 | /* skip mode change if it's just for clearing setuid/setgid */ |
| 1822 | if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID)) |
| 1823 | attrs->ia_valid &= ~ATTR_MODE; |
| 1824 | |
| 1825 | args = kmalloc(sizeof(*args), GFP_KERNEL); |
| 1826 | if (args == NULL) { |
| 1827 | rc = -ENOMEM; |
| 1828 | goto out; |
| 1829 | } |
| 1830 | |
| 1831 | /* set up the struct */ |
| 1832 | if (attrs->ia_valid & ATTR_MODE) |
| 1833 | args->mode = attrs->ia_mode; |
| 1834 | else |
| 1835 | args->mode = NO_CHANGE_64; |
| 1836 | |
| 1837 | if (attrs->ia_valid & ATTR_UID) |
| 1838 | args->uid = attrs->ia_uid; |
| 1839 | else |
| 1840 | args->uid = NO_CHANGE_64; |
| 1841 | |
| 1842 | if (attrs->ia_valid & ATTR_GID) |
| 1843 | args->gid = attrs->ia_gid; |
| 1844 | else |
| 1845 | args->gid = NO_CHANGE_64; |
| 1846 | |
| 1847 | if (attrs->ia_valid & ATTR_ATIME) |
| 1848 | args->atime = cifs_UnixTimeToNT(attrs->ia_atime); |
| 1849 | else |
| 1850 | args->atime = NO_CHANGE_64; |
| 1851 | |
| 1852 | if (attrs->ia_valid & ATTR_MTIME) |
| 1853 | args->mtime = cifs_UnixTimeToNT(attrs->ia_mtime); |
| 1854 | else |
| 1855 | args->mtime = NO_CHANGE_64; |
| 1856 | |
| 1857 | if (attrs->ia_valid & ATTR_CTIME) |
| 1858 | args->ctime = cifs_UnixTimeToNT(attrs->ia_ctime); |
| 1859 | else |
| 1860 | args->ctime = NO_CHANGE_64; |
| 1861 | |
| 1862 | args->device = 0; |
Jeff Layton | 3bbeeb3 | 2009-07-09 20:02:50 -0400 | [diff] [blame] | 1863 | open_file = find_writable_file(cifsInode); |
| 1864 | if (open_file) { |
| 1865 | u16 nfid = open_file->netfid; |
| 1866 | u32 npid = open_file->pid; |
| 1867 | rc = CIFSSMBUnixSetFileInfo(xid, pTcon, args, nfid, npid); |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 1868 | cifsFileInfo_put(open_file); |
Jeff Layton | 3bbeeb3 | 2009-07-09 20:02:50 -0400 | [diff] [blame] | 1869 | } else { |
| 1870 | rc = CIFSSMBUnixSetPathInfo(xid, pTcon, full_path, args, |
Jeff Layton | 01ea95e | 2009-07-09 20:02:49 -0400 | [diff] [blame] | 1871 | cifs_sb->local_nls, |
| 1872 | cifs_sb->mnt_cifs_flags & |
| 1873 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Jeff Layton | 3bbeeb3 | 2009-07-09 20:02:50 -0400 | [diff] [blame] | 1874 | } |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1875 | |
Steve French | ccd4bb1 | 2010-02-08 17:39:58 +0000 | [diff] [blame] | 1876 | if (!rc) { |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1877 | rc = inode_setattr(inode, attrs); |
Steve French | ccd4bb1 | 2010-02-08 17:39:58 +0000 | [diff] [blame] | 1878 | |
| 1879 | /* force revalidate when any of these times are set since some |
| 1880 | of the fs types (eg ext3, fat) do not have fine enough |
| 1881 | time granularity to match protocol, and we do not have a |
| 1882 | a way (yet) to query the server fs's time granularity (and |
| 1883 | whether it rounds times down). |
| 1884 | */ |
| 1885 | if (!rc && (attrs->ia_valid & (ATTR_MTIME | ATTR_CTIME))) |
| 1886 | cifsInode->time = 0; |
| 1887 | } |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1888 | out: |
| 1889 | kfree(args); |
| 1890 | kfree(full_path); |
| 1891 | FreeXid(xid); |
| 1892 | return rc; |
| 1893 | } |
| 1894 | |
Jeff Layton | 0510eeb | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1895 | static int |
| 1896 | cifs_setattr_nounix(struct dentry *direntry, struct iattr *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | { |
| 1898 | int xid; |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1899 | struct inode *inode = direntry->d_inode; |
| 1900 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1901 | struct cifsInodeInfo *cifsInode = CIFS_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1902 | char *full_path = NULL; |
| 1903 | int rc = -EACCES; |
Jeff Layton | feb3e20 | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1904 | __u32 dosattr = 0; |
Jeff Layton | 4e1e7fb | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1905 | __u64 mode = NO_CHANGE_64; |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1906 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1907 | xid = GetXid(); |
| 1908 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1909 | cFYI(1, "setattr on file %s attrs->iavalid 0x%x", |
| 1910 | direntry->d_name.name, attrs->ia_valid); |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 1911 | |
Steve French | 2a138ebb | 2005-11-29 21:22:19 -0800 | [diff] [blame] | 1912 | if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) == 0) { |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 1913 | /* check if we have permission to change attrs */ |
Jeff Layton | 02eadef | 2008-05-09 21:26:11 +0000 | [diff] [blame] | 1914 | rc = inode_change_ok(inode, attrs); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1915 | if (rc < 0) { |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 1916 | FreeXid(xid); |
| 1917 | return rc; |
| 1918 | } else |
| 1919 | rc = 0; |
| 1920 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1921 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 1922 | full_path = build_path_from_dentry(direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1923 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1924 | rc = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | FreeXid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1926 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | |
Jeff Layton | 0f4d634 | 2009-03-26 13:35:37 -0400 | [diff] [blame] | 1929 | /* |
| 1930 | * Attempt to flush data before changing attributes. We need to do |
| 1931 | * this for ATTR_SIZE and ATTR_MTIME for sure, and if we change the |
| 1932 | * ownership or mode then we may also need to do this. Here, we take |
| 1933 | * the safe way out and just do the flush on all setattr requests. If |
| 1934 | * the flush returns error, store it to report later and continue. |
| 1935 | * |
| 1936 | * BB: This should be smarter. Why bother flushing pages that |
| 1937 | * will be truncated anyway? Also, should we error out here if |
| 1938 | * the flush returns error? |
| 1939 | */ |
| 1940 | rc = filemap_write_and_wait(inode->i_mapping); |
| 1941 | if (rc != 0) { |
| 1942 | cifsInode->write_behind_rc = rc; |
| 1943 | rc = 0; |
Steve French | 5053144 | 2008-03-14 19:21:31 +0000 | [diff] [blame] | 1944 | } |
Jeff Layton | cea2180 | 2007-11-20 23:19:03 +0000 | [diff] [blame] | 1945 | |
Steve French | 5053144 | 2008-03-14 19:21:31 +0000 | [diff] [blame] | 1946 | if (attrs->ia_valid & ATTR_SIZE) { |
Jeff Layton | 8efdbde | 2008-07-23 21:28:12 +0000 | [diff] [blame] | 1947 | rc = cifs_set_file_size(inode, attrs, xid, full_path); |
| 1948 | if (rc != 0) |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1949 | goto cifs_setattr_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | } |
Jeff Layton | 4ca691a | 2008-05-22 09:33:34 -0400 | [diff] [blame] | 1951 | |
| 1952 | /* |
| 1953 | * Without unix extensions we can't send ownership changes to the |
| 1954 | * server, so silently ignore them. This is consistent with how |
| 1955 | * local DOS/Windows filesystems behave (VFAT, NTFS, etc). With |
| 1956 | * CIFSACL support + proper Windows to Unix idmapping, we may be |
| 1957 | * able to support this in the future. |
| 1958 | */ |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1959 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID)) |
Jeff Layton | 4ca691a | 2008-05-22 09:33:34 -0400 | [diff] [blame] | 1960 | attrs->ia_valid &= ~(ATTR_UID | ATTR_GID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | |
Jeff Layton | d32c4f2 | 2007-10-18 03:05:22 -0700 | [diff] [blame] | 1962 | /* skip mode change if it's just for clearing setuid/setgid */ |
| 1963 | if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID)) |
| 1964 | attrs->ia_valid &= ~ATTR_MODE; |
| 1965 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | if (attrs->ia_valid & ATTR_MODE) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1967 | cFYI(1, "Mode changed to 0%o", attrs->ia_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | mode = attrs->ia_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1969 | } |
| 1970 | |
Jeff Layton | 3fe5c1d | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1971 | if (attrs->ia_valid & ATTR_MODE) { |
Steve French | cdbce9c | 2005-11-19 21:04:52 -0800 | [diff] [blame] | 1972 | rc = 0; |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 1973 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
| 1974 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) |
Jeff Layton | 02eadef | 2008-05-09 21:26:11 +0000 | [diff] [blame] | 1975 | rc = mode_to_acl(inode, full_path, mode); |
Jeff Layton | 5132861 | 2008-05-22 09:33:34 -0400 | [diff] [blame] | 1976 | else |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 1977 | #endif |
Jeff Layton | 5132861 | 2008-05-22 09:33:34 -0400 | [diff] [blame] | 1978 | if (((mode & S_IWUGO) == 0) && |
| 1979 | (cifsInode->cifsAttrs & ATTR_READONLY) == 0) { |
Jeff Layton | feb3e20 | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1980 | |
| 1981 | dosattr = cifsInode->cifsAttrs | ATTR_READONLY; |
| 1982 | |
Jeff Layton | 5132861 | 2008-05-22 09:33:34 -0400 | [diff] [blame] | 1983 | /* fix up mode if we're not using dynperm */ |
| 1984 | if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM) == 0) |
| 1985 | attrs->ia_mode = inode->i_mode & ~S_IWUGO; |
| 1986 | } else if ((mode & S_IWUGO) && |
| 1987 | (cifsInode->cifsAttrs & ATTR_READONLY)) { |
Jeff Layton | feb3e20 | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 1988 | |
| 1989 | dosattr = cifsInode->cifsAttrs & ~ATTR_READONLY; |
| 1990 | /* Attributes of 0 are ignored */ |
| 1991 | if (dosattr == 0) |
| 1992 | dosattr |= ATTR_NORMAL; |
Jeff Layton | 5132861 | 2008-05-22 09:33:34 -0400 | [diff] [blame] | 1993 | |
| 1994 | /* reset local inode permissions to normal */ |
| 1995 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) { |
| 1996 | attrs->ia_mode &= ~(S_IALLUGO); |
| 1997 | if (S_ISDIR(inode->i_mode)) |
| 1998 | attrs->ia_mode |= |
| 1999 | cifs_sb->mnt_dir_mode; |
| 2000 | else |
| 2001 | attrs->ia_mode |= |
| 2002 | cifs_sb->mnt_file_mode; |
| 2003 | } |
| 2004 | } else if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)) { |
| 2005 | /* ignore mode change - ATTR_READONLY hasn't changed */ |
| 2006 | attrs->ia_valid &= ~ATTR_MODE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2008 | } |
| 2009 | |
Jeff Layton | feb3e20 | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2010 | if (attrs->ia_valid & (ATTR_MTIME|ATTR_ATIME|ATTR_CTIME) || |
| 2011 | ((attrs->ia_valid & ATTR_MODE) && dosattr)) { |
| 2012 | rc = cifs_set_file_info(inode, attrs, xid, full_path, dosattr); |
| 2013 | /* BB: check for rc = -EOPNOTSUPP and switch to legacy mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2014 | |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 2015 | /* Even if error on time set, no sense failing the call if |
| 2016 | the server would set the time to a reasonable value anyway, |
| 2017 | and this check ensures that we are not being called from |
| 2018 | sys_utimes in which case we ought to fail the call back to |
| 2019 | the user when the server rejects the call */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2020 | if ((rc) && (attrs->ia_valid & |
Jeff Layton | feb3e20 | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2021 | (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE))) |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 2022 | rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2023 | } |
| 2024 | |
| 2025 | /* do not need local check to inode_check_ok since the server does |
| 2026 | that */ |
| 2027 | if (!rc) |
Jeff Layton | 02eadef | 2008-05-09 21:26:11 +0000 | [diff] [blame] | 2028 | rc = inode_setattr(inode, attrs); |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 2029 | cifs_setattr_exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2030 | kfree(full_path); |
| 2031 | FreeXid(xid); |
| 2032 | return rc; |
| 2033 | } |
| 2034 | |
Jeff Layton | 0510eeb | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 2035 | int |
| 2036 | cifs_setattr(struct dentry *direntry, struct iattr *attrs) |
| 2037 | { |
| 2038 | struct inode *inode = direntry->d_inode; |
| 2039 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 2040 | struct cifsTconInfo *pTcon = cifs_sb->tcon; |
| 2041 | |
| 2042 | if (pTcon->unix_ext) |
| 2043 | return cifs_setattr_unix(direntry, attrs); |
| 2044 | |
| 2045 | return cifs_setattr_nounix(direntry, attrs); |
| 2046 | |
| 2047 | /* BB: add cifs_setattr_legacy for really old servers */ |
| 2048 | } |
| 2049 | |
Steve French | 99ee4db | 2007-02-27 05:35:17 +0000 | [diff] [blame] | 2050 | #if 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | void cifs_delete_inode(struct inode *inode) |
| 2052 | { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2053 | cFYI(1, "In cifs_delete_inode, inode = 0x%p", inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | /* may have to add back in if and when safe distributed caching of |
| 2055 | directories added e.g. via FindNotify */ |
| 2056 | } |
Steve French | 99ee4db | 2007-02-27 05:35:17 +0000 | [diff] [blame] | 2057 | #endif |