Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/inode.c |
| 3 | * |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 4 | * Copyright (C) International Business Machines Corp., 2002,2007 |
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> |
| 23 | #include <linux/pagemap.h> |
| 24 | #include <asm/div64.h> |
| 25 | #include "cifsfs.h" |
| 26 | #include "cifspdu.h" |
| 27 | #include "cifsglob.h" |
| 28 | #include "cifsproto.h" |
| 29 | #include "cifs_debug.h" |
| 30 | #include "cifs_fs_sb.h" |
| 31 | |
Christoph Hellwig | 70eff55 | 2008-02-15 20:55:05 +0000 | [diff] [blame] | 32 | |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 33 | 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] | 34 | { |
| 35 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 36 | |
| 37 | switch (inode->i_mode & S_IFMT) { |
| 38 | case S_IFREG: |
| 39 | inode->i_op = &cifs_file_inode_ops; |
| 40 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) { |
| 41 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
| 42 | inode->i_fop = &cifs_file_direct_nobrl_ops; |
| 43 | else |
| 44 | inode->i_fop = &cifs_file_direct_ops; |
| 45 | } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
| 46 | inode->i_fop = &cifs_file_nobrl_ops; |
| 47 | else { /* not direct, send byte range locks */ |
| 48 | inode->i_fop = &cifs_file_ops; |
| 49 | } |
| 50 | |
| 51 | |
| 52 | /* check if server can support readpages */ |
| 53 | if (cifs_sb->tcon->ses->server->maxBuf < |
| 54 | PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE) |
| 55 | inode->i_data.a_ops = &cifs_addr_ops_smallbuf; |
| 56 | else |
| 57 | inode->i_data.a_ops = &cifs_addr_ops; |
| 58 | break; |
| 59 | case S_IFDIR: |
Steve French | bc5b6e2 | 2008-03-11 21:07:48 +0000 | [diff] [blame] | 60 | #ifdef CONFIG_CIFS_DFS_UPCALL |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 61 | if (is_dfs_referral) { |
| 62 | inode->i_op = &cifs_dfs_referral_inode_operations; |
| 63 | } else { |
Steve French | bc5b6e2 | 2008-03-11 21:07:48 +0000 | [diff] [blame] | 64 | #else /* NO DFS support, treat as a directory */ |
| 65 | { |
| 66 | #endif |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 67 | inode->i_op = &cifs_dir_inode_ops; |
| 68 | inode->i_fop = &cifs_dir_ops; |
| 69 | } |
Christoph Hellwig | 70eff55 | 2008-02-15 20:55:05 +0000 | [diff] [blame] | 70 | break; |
| 71 | case S_IFLNK: |
| 72 | inode->i_op = &cifs_symlink_inode_ops; |
| 73 | break; |
| 74 | default: |
| 75 | init_special_inode(inode, inode->i_mode, inode->i_rdev); |
| 76 | break; |
| 77 | } |
| 78 | } |
| 79 | |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 80 | static void cifs_unix_info_to_inode(struct inode *inode, |
| 81 | FILE_UNIX_BASIC_INFO *info, int force_uid_gid) |
| 82 | { |
| 83 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 84 | struct cifsInodeInfo *cifsInfo = CIFS_I(inode); |
| 85 | __u64 num_of_bytes = le64_to_cpu(info->NumOfBytes); |
| 86 | __u64 end_of_file = le64_to_cpu(info->EndOfFile); |
| 87 | |
| 88 | inode->i_atime = cifs_NTtimeToUnix(le64_to_cpu(info->LastAccessTime)); |
| 89 | inode->i_mtime = |
| 90 | cifs_NTtimeToUnix(le64_to_cpu(info->LastModificationTime)); |
| 91 | inode->i_ctime = cifs_NTtimeToUnix(le64_to_cpu(info->LastStatusChange)); |
| 92 | inode->i_mode = le64_to_cpu(info->Permissions); |
| 93 | |
| 94 | /* |
| 95 | * Since we set the inode type below we need to mask off |
| 96 | * to avoid strange results if bits set above. |
| 97 | */ |
| 98 | inode->i_mode &= ~S_IFMT; |
| 99 | switch (le32_to_cpu(info->Type)) { |
| 100 | case UNIX_FILE: |
| 101 | inode->i_mode |= S_IFREG; |
| 102 | break; |
| 103 | case UNIX_SYMLINK: |
| 104 | inode->i_mode |= S_IFLNK; |
| 105 | break; |
| 106 | case UNIX_DIR: |
| 107 | inode->i_mode |= S_IFDIR; |
| 108 | break; |
| 109 | case UNIX_CHARDEV: |
| 110 | inode->i_mode |= S_IFCHR; |
| 111 | inode->i_rdev = MKDEV(le64_to_cpu(info->DevMajor), |
| 112 | le64_to_cpu(info->DevMinor) & MINORMASK); |
| 113 | break; |
| 114 | case UNIX_BLOCKDEV: |
| 115 | inode->i_mode |= S_IFBLK; |
| 116 | inode->i_rdev = MKDEV(le64_to_cpu(info->DevMajor), |
| 117 | le64_to_cpu(info->DevMinor) & MINORMASK); |
| 118 | break; |
| 119 | case UNIX_FIFO: |
| 120 | inode->i_mode |= S_IFIFO; |
| 121 | break; |
| 122 | case UNIX_SOCKET: |
| 123 | inode->i_mode |= S_IFSOCK; |
| 124 | break; |
| 125 | default: |
| 126 | /* safest to call it a file if we do not know */ |
| 127 | inode->i_mode |= S_IFREG; |
| 128 | cFYI(1, ("unknown type %d", le32_to_cpu(info->Type))); |
| 129 | break; |
| 130 | } |
| 131 | |
| 132 | if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID) && |
| 133 | !force_uid_gid) |
| 134 | inode->i_uid = cifs_sb->mnt_uid; |
| 135 | else |
| 136 | inode->i_uid = le64_to_cpu(info->Uid); |
| 137 | |
| 138 | if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID) && |
| 139 | !force_uid_gid) |
| 140 | inode->i_gid = cifs_sb->mnt_gid; |
| 141 | else |
| 142 | inode->i_gid = le64_to_cpu(info->Gid); |
| 143 | |
| 144 | inode->i_nlink = le64_to_cpu(info->Nlinks); |
| 145 | |
| 146 | spin_lock(&inode->i_lock); |
| 147 | if (is_size_safe_to_change(cifsInfo, end_of_file)) { |
| 148 | /* |
| 149 | * We can not safely change the file size here if the client |
| 150 | * is writing to it due to potential races. |
| 151 | */ |
| 152 | i_size_write(inode, end_of_file); |
| 153 | |
| 154 | /* |
| 155 | * i_blocks is not related to (i_size / i_blksize), |
| 156 | * but instead 512 byte (2**9) size is required for |
| 157 | * calculating num blocks. |
| 158 | */ |
| 159 | inode->i_blocks = (512 - 1 + num_of_bytes) >> 9; |
| 160 | } |
| 161 | spin_unlock(&inode->i_lock); |
| 162 | } |
| 163 | |
Steve French | 076d842 | 2008-04-18 23:26:26 +0000 | [diff] [blame] | 164 | static const unsigned char *cifs_get_search_path(struct cifs_sb_info *cifs_sb, |
| 165 | const char *search_path) |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 166 | { |
| 167 | int tree_len; |
| 168 | int path_len; |
Steve French | 076d842 | 2008-04-18 23:26:26 +0000 | [diff] [blame] | 169 | int i; |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 170 | char *tmp_path; |
Steve French | 076d842 | 2008-04-18 23:26:26 +0000 | [diff] [blame] | 171 | struct cifsTconInfo *pTcon = cifs_sb->tcon; |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 172 | |
| 173 | if (!(pTcon->Flags & SMB_SHARE_IS_IN_DFS)) |
| 174 | return search_path; |
| 175 | |
| 176 | /* use full path name for working with DFS */ |
| 177 | tree_len = strnlen(pTcon->treeName, MAX_TREE_SIZE + 1); |
| 178 | path_len = strnlen(search_path, MAX_PATHCONF); |
| 179 | |
| 180 | tmp_path = kmalloc(tree_len+path_len+1, GFP_KERNEL); |
| 181 | if (tmp_path == NULL) |
| 182 | return search_path; |
| 183 | |
| 184 | strncpy(tmp_path, pTcon->treeName, tree_len); |
Steve French | 076d842 | 2008-04-18 23:26:26 +0000 | [diff] [blame] | 185 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) |
| 186 | for (i = 0; i < tree_len; i++) { |
| 187 | if (tmp_path[i] == '\\') |
| 188 | tmp_path[i] = '/'; |
| 189 | } |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 190 | strncpy(tmp_path+tree_len, search_path, path_len); |
| 191 | tmp_path[tree_len+path_len] = 0; |
| 192 | return tmp_path; |
| 193 | } |
| 194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | int cifs_get_inode_info_unix(struct inode **pinode, |
| 196 | const unsigned char *search_path, struct super_block *sb, int xid) |
| 197 | { |
| 198 | int rc = 0; |
| 199 | FILE_UNIX_BASIC_INFO findData; |
| 200 | struct cifsTconInfo *pTcon; |
| 201 | struct inode *inode; |
| 202 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 203 | const unsigned char *full_path; |
| 204 | bool is_dfs_referral = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
| 206 | pTcon = cifs_sb->tcon; |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 207 | cFYI(1, ("Getting info on %s", search_path)); |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 208 | |
Steve French | 076d842 | 2008-04-18 23:26:26 +0000 | [diff] [blame] | 209 | full_path = cifs_get_search_path(cifs_sb, search_path); |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 210 | |
| 211 | try_again_CIFSSMBUnixQPathInfo: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | /* could have done a find first instead but this returns more info */ |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 213 | rc = CIFSSMBUnixQPathInfo(xid, pTcon, full_path, &findData, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 214 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
| 215 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | /* dump_mem("\nUnixQPathInfo return data", &findData, |
| 217 | sizeof(findData)); */ |
| 218 | if (rc) { |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 219 | if (rc == -EREMOTE && !is_dfs_referral) { |
| 220 | is_dfs_referral = true; |
Steve French | 04b6e6e | 2008-03-22 22:57:44 +0000 | [diff] [blame] | 221 | if (full_path != search_path) { |
| 222 | kfree(full_path); |
| 223 | full_path = search_path; |
| 224 | } |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 225 | goto try_again_CIFSSMBUnixQPathInfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | } |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 227 | goto cgiiu_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } else { |
| 229 | struct cifsInodeInfo *cifsInfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | __u64 num_of_bytes = le64_to_cpu(findData.NumOfBytes); |
| 231 | __u64 end_of_file = le64_to_cpu(findData.EndOfFile); |
| 232 | |
| 233 | /* get new inode */ |
| 234 | if (*pinode == NULL) { |
| 235 | *pinode = new_inode(sb); |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 236 | if (*pinode == NULL) { |
| 237 | rc = -ENOMEM; |
| 238 | goto cgiiu_exit; |
| 239 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | /* Is an i_ino of zero legal? */ |
| 241 | /* Are there sanity checks we can use to ensure that |
| 242 | the server is really filling in that field? */ |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 243 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | (*pinode)->i_ino = |
| 245 | (unsigned long)findData.UniqueId; |
| 246 | } /* note ino incremented to unique num in new_inode */ |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 247 | if (sb->s_flags & MS_NOATIME) |
Steve French | 1b2b212 | 2007-02-17 04:30:54 +0000 | [diff] [blame] | 248 | (*pinode)->i_flags |= S_NOATIME | S_NOCMTIME; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 249 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | insert_inode_hash(*pinode); |
| 251 | } |
| 252 | |
| 253 | inode = *pinode; |
| 254 | cifsInfo = CIFS_I(inode); |
| 255 | |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 256 | cFYI(1, ("Old time %ld", cifsInfo->time)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | cifsInfo->time = jiffies; |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 258 | cFYI(1, ("New time %ld", cifsInfo->time)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | /* this is ok to set on every inode revalidate */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 260 | atomic_set(&cifsInfo->inUse, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 262 | cifs_unix_info_to_inode(inode, &findData, 0); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
| 265 | if (num_of_bytes < end_of_file) |
Steve French | 8b94bcb | 2005-11-11 11:41:00 -0800 | [diff] [blame] | 266 | cFYI(1, ("allocation size less than end of file")); |
Andrew Morton | 5515eff | 2006-03-26 01:37:53 -0800 | [diff] [blame] | 267 | cFYI(1, ("Size %ld and blocks %llu", |
| 268 | (unsigned long) inode->i_size, |
| 269 | (unsigned long long)inode->i_blocks)); |
Steve French | 8b94bcb | 2005-11-11 11:41:00 -0800 | [diff] [blame] | 270 | |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 271 | cifs_set_ops(inode, is_dfs_referral); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 273 | cgiiu_exit: |
| 274 | if (full_path != search_path) |
| 275 | kfree(full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | return rc; |
| 277 | } |
| 278 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 279 | static int decode_sfu_inode(struct inode *inode, __u64 size, |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 280 | const unsigned char *path, |
| 281 | struct cifs_sb_info *cifs_sb, int xid) |
| 282 | { |
| 283 | int rc; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 284 | int oplock = 0; |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 285 | __u16 netfid; |
| 286 | struct cifsTconInfo *pTcon = cifs_sb->tcon; |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 287 | char buf[24]; |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 288 | unsigned int bytes_read; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 289 | char *pbuf; |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 290 | |
| 291 | pbuf = buf; |
| 292 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 293 | if (size == 0) { |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 294 | inode->i_mode |= S_IFIFO; |
| 295 | return 0; |
| 296 | } else if (size < 8) { |
| 297 | return -EINVAL; /* EOPNOTSUPP? */ |
| 298 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 299 | |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 300 | rc = CIFSSMBOpen(xid, pTcon, path, FILE_OPEN, GENERIC_READ, |
| 301 | CREATE_NOT_DIR, &netfid, &oplock, NULL, |
| 302 | cifs_sb->local_nls, |
| 303 | cifs_sb->mnt_cifs_flags & |
| 304 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 305 | if (rc == 0) { |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 306 | int buf_type = CIFS_NO_BUFFER; |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 307 | /* Read header */ |
| 308 | rc = CIFSSMBRead(xid, pTcon, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 309 | netfid, |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 310 | 24 /* length */, 0 /* offset */, |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 311 | &bytes_read, &pbuf, &buf_type); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 312 | if ((rc == 0) && (bytes_read >= 8)) { |
| 313 | if (memcmp("IntxBLK", pbuf, 8) == 0) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 314 | cFYI(1, ("Block device")); |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 315 | inode->i_mode |= S_IFBLK; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 316 | if (bytes_read == 24) { |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 317 | /* we have enough to decode dev num */ |
| 318 | __u64 mjr; /* major */ |
| 319 | __u64 mnr; /* minor */ |
| 320 | mjr = le64_to_cpu(*(__le64 *)(pbuf+8)); |
| 321 | mnr = le64_to_cpu(*(__le64 *)(pbuf+16)); |
| 322 | inode->i_rdev = MKDEV(mjr, mnr); |
| 323 | } |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 324 | } else if (memcmp("IntxCHR", pbuf, 8) == 0) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 325 | cFYI(1, ("Char device")); |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 326 | inode->i_mode |= S_IFCHR; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 327 | if (bytes_read == 24) { |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 328 | /* we have enough to decode dev num */ |
| 329 | __u64 mjr; /* major */ |
| 330 | __u64 mnr; /* minor */ |
| 331 | mjr = le64_to_cpu(*(__le64 *)(pbuf+8)); |
| 332 | mnr = le64_to_cpu(*(__le64 *)(pbuf+16)); |
| 333 | inode->i_rdev = MKDEV(mjr, mnr); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 334 | } |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 335 | } else if (memcmp("IntxLNK", pbuf, 7) == 0) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 336 | cFYI(1, ("Symlink")); |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 337 | inode->i_mode |= S_IFLNK; |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 338 | } else { |
| 339 | inode->i_mode |= S_IFREG; /* file? */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 340 | rc = -EOPNOTSUPP; |
Steve French | 86c96b4 | 2005-11-18 20:25:31 -0800 | [diff] [blame] | 341 | } |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 342 | } else { |
| 343 | inode->i_mode |= S_IFREG; /* then it is a file */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 344 | rc = -EOPNOTSUPP; /* or some unknown SFU type */ |
| 345 | } |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 346 | CIFSSMBClose(xid, pTcon, netfid); |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 347 | } |
| 348 | return rc; |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 349 | } |
| 350 | |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 351 | #define SFBITS_MASK (S_ISVTX | S_ISGID | S_ISUID) /* SETFILEBITS valid bits */ |
| 352 | |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 353 | static int get_sfu_mode(struct inode *inode, |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 354 | const unsigned char *path, |
| 355 | struct cifs_sb_info *cifs_sb, int xid) |
| 356 | { |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 357 | #ifdef CONFIG_CIFS_XATTR |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 358 | ssize_t rc; |
| 359 | char ea_value[4]; |
| 360 | __u32 mode; |
| 361 | |
| 362 | rc = CIFSSMBQueryEA(xid, cifs_sb->tcon, path, "SETFILEBITS", |
| 363 | ea_value, 4 /* size of buf */, cifs_sb->local_nls, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 364 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 365 | if (rc < 0) |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 366 | return (int)rc; |
| 367 | else if (rc > 3) { |
| 368 | mode = le32_to_cpu(*((__le32 *)ea_value)); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 369 | inode->i_mode &= ~SFBITS_MASK; |
| 370 | cFYI(1, ("special bits 0%o org mode 0%o", mode, inode->i_mode)); |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 371 | inode->i_mode = (mode & SFBITS_MASK) | inode->i_mode; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 372 | cFYI(1, ("special mode bits 0%o", mode)); |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 373 | return 0; |
| 374 | } else { |
| 375 | return 0; |
| 376 | } |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 377 | #else |
| 378 | return -EOPNOTSUPP; |
| 379 | #endif |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 380 | } |
| 381 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | int cifs_get_inode_info(struct inode **pinode, |
| 383 | const unsigned char *search_path, FILE_ALL_INFO *pfindData, |
Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 384 | struct super_block *sb, int xid, const __u16 *pfid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | { |
| 386 | int rc = 0; |
| 387 | struct cifsTconInfo *pTcon; |
| 388 | struct inode *inode; |
| 389 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 390 | const unsigned char *full_path = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | char *buf = NULL; |
Steve French | 5ade9de | 2008-05-02 20:56:23 +0000 | [diff] [blame] | 392 | bool adjustTZ = false; |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 393 | bool is_dfs_referral = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | |
| 395 | pTcon = cifs_sb->tcon; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 396 | cFYI(1, ("Getting info on %s", search_path)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 398 | if ((pfindData == NULL) && (*pinode != NULL)) { |
| 399 | if (CIFS_I(*pinode)->clientCanCacheRead) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 400 | cFYI(1, ("No need to revalidate cached inode sizes")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | return rc; |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | /* if file info not passed in then get it from server */ |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 406 | if (pfindData == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 408 | if (buf == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | return -ENOMEM; |
| 410 | pfindData = (FILE_ALL_INFO *)buf; |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 411 | |
Steve French | 076d842 | 2008-04-18 23:26:26 +0000 | [diff] [blame] | 412 | full_path = cifs_get_search_path(cifs_sb, search_path); |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 413 | |
| 414 | try_again_CIFSSMBQPathInfo: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | /* could do find first instead but this returns more info */ |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 416 | rc = CIFSSMBQPathInfo(xid, pTcon, full_path, pfindData, |
Steve French | acf1a1b | 2006-10-12 03:28:28 +0000 | [diff] [blame] | 417 | 0 /* not legacy */, |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 418 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 419 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 420 | /* BB optimize code so we do not make the above call |
| 421 | when server claims no NT SMB support and the above call |
| 422 | failed at least once - set flag in tcon or mount */ |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 423 | if ((rc == -EOPNOTSUPP) || (rc == -EINVAL)) { |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 424 | rc = SMBQueryInformation(xid, pTcon, full_path, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 425 | pfindData, cifs_sb->local_nls, |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 426 | cifs_sb->mnt_cifs_flags & |
| 427 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 428 | adjustTZ = true; |
Steve French | 6b8edfe | 2005-08-23 20:26:03 -0700 | [diff] [blame] | 429 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | } |
| 431 | /* dump_mem("\nQPathInfo return data",&findData, sizeof(findData)); */ |
| 432 | if (rc) { |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 433 | if (rc == -EREMOTE && !is_dfs_referral) { |
| 434 | is_dfs_referral = true; |
Steve French | 04b6e6e | 2008-03-22 22:57:44 +0000 | [diff] [blame] | 435 | if (full_path != search_path) { |
| 436 | kfree(full_path); |
| 437 | full_path = search_path; |
| 438 | } |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 439 | goto try_again_CIFSSMBQPathInfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 441 | goto cgii_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | } else { |
| 443 | struct cifsInodeInfo *cifsInfo; |
| 444 | __u32 attr = le32_to_cpu(pfindData->Attributes); |
| 445 | |
| 446 | /* get new inode */ |
| 447 | if (*pinode == NULL) { |
| 448 | *pinode = new_inode(sb); |
Steve French | acf1a1b | 2006-10-12 03:28:28 +0000 | [diff] [blame] | 449 | if (*pinode == NULL) { |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 450 | rc = -ENOMEM; |
| 451 | goto cgii_exit; |
Steve French | acf1a1b | 2006-10-12 03:28:28 +0000 | [diff] [blame] | 452 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | /* Is an i_ino of zero legal? Can we use that to check |
| 454 | if the server supports returning inode numbers? Are |
| 455 | there other sanity checks we can use to ensure that |
| 456 | the server is really filling in that field? */ |
| 457 | |
| 458 | /* We can not use the IndexNumber field by default from |
| 459 | Windows or Samba (in ALL_INFO buf) but we can request |
| 460 | it explicitly. It may not be unique presumably if |
| 461 | the server has multiple devices mounted under one |
| 462 | share */ |
| 463 | |
| 464 | /* There may be higher info levels that work but are |
| 465 | there Windows server or network appliances for which |
| 466 | IndexNumber field is not guaranteed unique? */ |
| 467 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 468 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | int rc1 = 0; |
| 470 | __u64 inode_num; |
| 471 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 472 | rc1 = CIFSGetSrvInodeNumber(xid, pTcon, |
| 473 | search_path, &inode_num, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 474 | cifs_sb->local_nls, |
| 475 | cifs_sb->mnt_cifs_flags & |
| 476 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 477 | if (rc1) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 478 | cFYI(1, ("GetSrvInodeNum rc %d", rc1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | /* BB EOPNOSUPP disable SERVER_INUM? */ |
| 480 | } else /* do we need cast or hash to ino? */ |
| 481 | (*pinode)->i_ino = inode_num; |
| 482 | } /* else ino incremented to unique num in new_inode*/ |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 483 | if (sb->s_flags & MS_NOATIME) |
Steve French | 1b2b212 | 2007-02-17 04:30:54 +0000 | [diff] [blame] | 484 | (*pinode)->i_flags |= S_NOATIME | S_NOCMTIME; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | insert_inode_hash(*pinode); |
| 486 | } |
| 487 | inode = *pinode; |
| 488 | cifsInfo = CIFS_I(inode); |
| 489 | cifsInfo->cifsAttrs = attr; |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 490 | cFYI(1, ("Old time %ld", cifsInfo->time)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | cifsInfo->time = jiffies; |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 492 | cFYI(1, ("New time %ld", cifsInfo->time)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | |
| 494 | /* blksize needs to be multiple of two. So safer to default to |
| 495 | blksize and blkbits set in superblock so 2**blkbits and blksize |
| 496 | will match rather than setting to: |
| 497 | (pTcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE) & 0xFFFFFE00;*/ |
| 498 | |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 499 | /* Linux can not store file creation time so ignore it */ |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 500 | if (pfindData->LastAccessTime) |
Steve French | 1bd5bbc | 2006-09-28 03:35:57 +0000 | [diff] [blame] | 501 | inode->i_atime = cifs_NTtimeToUnix |
| 502 | (le64_to_cpu(pfindData->LastAccessTime)); |
| 503 | else /* do not need to use current_fs_time - time not stored */ |
| 504 | inode->i_atime = CURRENT_TIME; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | inode->i_mtime = |
| 506 | cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastWriteTime)); |
| 507 | inode->i_ctime = |
| 508 | cifs_NTtimeToUnix(le64_to_cpu(pfindData->ChangeTime)); |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 509 | cFYI(0, ("Attributes came in as 0x%x", attr)); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 510 | if (adjustTZ && (pTcon->ses) && (pTcon->ses->server)) { |
Steve French | 8d6286f | 2006-11-16 22:48:25 +0000 | [diff] [blame] | 511 | inode->i_ctime.tv_sec += pTcon->ses->server->timeAdj; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 512 | inode->i_mtime.tv_sec += pTcon->ses->server->timeAdj; |
Steve French | 8d6286f | 2006-11-16 22:48:25 +0000 | [diff] [blame] | 513 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | |
| 515 | /* set default mode. will override for dirs below */ |
| 516 | if (atomic_read(&cifsInfo->inUse) == 0) |
| 517 | /* new inode, can safely set these fields */ |
| 518 | inode->i_mode = cifs_sb->mnt_file_mode; |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 519 | else /* since we set the inode type below we need to mask off |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 520 | to avoid strange results if type changes and both |
| 521 | get orred in */ |
| 522 | inode->i_mode &= ~S_IFMT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | /* if (attr & ATTR_REPARSE) */ |
| 524 | /* We no longer handle these as symlinks because we could not |
| 525 | follow them due to the absolute path with drive letter */ |
| 526 | if (attr & ATTR_DIRECTORY) { |
| 527 | /* override default perms since we do not do byte range locking |
| 528 | on dirs */ |
| 529 | inode->i_mode = cifs_sb->mnt_dir_mode; |
| 530 | inode->i_mode |= S_IFDIR; |
Steve French | eda3c02 | 2005-07-21 15:20:28 -0700 | [diff] [blame] | 531 | } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) && |
| 532 | (cifsInfo->cifsAttrs & ATTR_SYSTEM) && |
| 533 | /* No need to le64 convert size of zero */ |
| 534 | (pfindData->EndOfFile == 0)) { |
| 535 | inode->i_mode = cifs_sb->mnt_file_mode; |
| 536 | inode->i_mode |= S_IFIFO; |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 537 | /* BB Finish for SFU style symlinks and devices */ |
| 538 | } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) && |
| 539 | (cifsInfo->cifsAttrs & ATTR_SYSTEM)) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 540 | if (decode_sfu_inode(inode, |
Steve French | d6e2f2a | 2005-11-15 16:43:39 -0800 | [diff] [blame] | 541 | le64_to_cpu(pfindData->EndOfFile), |
| 542 | search_path, |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 543 | cifs_sb, xid)) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 544 | cFYI(1, ("Unrecognized sfu inode type")); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 545 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 546 | cFYI(1, ("sfu mode 0%o", inode->i_mode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | } else { |
| 548 | inode->i_mode |= S_IFREG; |
| 549 | /* treat the dos attribute of read-only as read-only |
| 550 | mode e.g. 555 */ |
| 551 | if (cifsInfo->cifsAttrs & ATTR_READONLY) |
| 552 | inode->i_mode &= ~(S_IWUGO); |
Alan Tyson | f5c1e2e | 2007-03-10 06:05:14 +0000 | [diff] [blame] | 553 | else if ((inode->i_mode & S_IWUGO) == 0) |
| 554 | /* the ATTR_READONLY flag may have been */ |
| 555 | /* changed on server -- set any w bits */ |
| 556 | /* allowed by mnt_file_mode */ |
| 557 | inode->i_mode |= (S_IWUGO & |
| 558 | cifs_sb->mnt_file_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | /* BB add code here - |
| 560 | validate if device or weird share or device type? */ |
| 561 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 562 | |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 563 | spin_lock(&inode->i_lock); |
Steve French | f6d0998 | 2008-01-08 23:18:22 +0000 | [diff] [blame] | 564 | if (is_size_safe_to_change(cifsInfo, |
| 565 | le64_to_cpu(pfindData->EndOfFile))) { |
Steve French | 7ba5263 | 2007-02-08 18:14:13 +0000 | [diff] [blame] | 566 | /* can not safely shrink the file size here if the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | client is writing to it due to potential races */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 568 | i_size_write(inode, le64_to_cpu(pfindData->EndOfFile)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | |
| 570 | /* 512 bytes (2**9) is the fake blocksize that must be |
| 571 | used for this calculation */ |
| 572 | inode->i_blocks = (512 - 1 + le64_to_cpu( |
| 573 | pfindData->AllocationSize)) >> 9; |
| 574 | } |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 575 | spin_unlock(&inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | |
| 577 | inode->i_nlink = le32_to_cpu(pfindData->NumberOfLinks); |
| 578 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 579 | /* BB fill in uid and gid here? with help from winbind? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | or retrieve from NTFS stream extended attribute */ |
Steve French | 4879b44 | 2007-10-19 21:57:39 +0000 | [diff] [blame] | 581 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 582 | /* fill in 0777 bits from ACL */ |
Steve French | 4879b44 | 2007-10-19 21:57:39 +0000 | [diff] [blame] | 583 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) { |
| 584 | cFYI(1, ("Getting mode bits from ACL")); |
Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 585 | acl_to_uid_mode(inode, search_path, pfid); |
Steve French | 4879b44 | 2007-10-19 21:57:39 +0000 | [diff] [blame] | 586 | } |
| 587 | #endif |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 588 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) { |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 589 | /* fill in remaining high mode bits e.g. SUID, VTX */ |
| 590 | get_sfu_mode(inode, search_path, cifs_sb, xid); |
Steve French | 9e294f1 | 2005-11-17 16:59:21 -0800 | [diff] [blame] | 591 | } else if (atomic_read(&cifsInfo->inUse) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | inode->i_uid = cifs_sb->mnt_uid; |
| 593 | inode->i_gid = cifs_sb->mnt_gid; |
| 594 | /* set so we do not keep refreshing these fields with |
| 595 | bad data after user has changed them in memory */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 596 | atomic_set(&cifsInfo->inUse, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | } |
| 598 | |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 599 | cifs_set_ops(inode, is_dfs_referral); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | } |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 601 | cgii_exit: |
| 602 | if (full_path != search_path) |
| 603 | kfree(full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | kfree(buf); |
| 605 | return rc; |
| 606 | } |
| 607 | |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 608 | static const struct inode_operations cifs_ipc_inode_ops = { |
| 609 | .lookup = cifs_lookup, |
| 610 | }; |
| 611 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | /* gets root inode */ |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 613 | struct inode *cifs_iget(struct super_block *sb, unsigned long ino) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | { |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 615 | int xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | struct cifs_sb_info *cifs_sb; |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 617 | struct inode *inode; |
| 618 | long rc; |
| 619 | |
| 620 | inode = iget_locked(sb, ino); |
| 621 | if (!inode) |
| 622 | return ERR_PTR(-ENOMEM); |
| 623 | if (!(inode->i_state & I_NEW)) |
| 624 | return inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | |
| 626 | cifs_sb = CIFS_SB(inode->i_sb); |
| 627 | xid = GetXid(); |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 628 | |
| 629 | if (cifs_sb->tcon->unix_ext) |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 630 | rc = cifs_get_inode_info_unix(&inode, "", inode->i_sb, xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | else |
Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 632 | rc = cifs_get_inode_info(&inode, "", NULL, inode->i_sb, xid, |
| 633 | NULL); |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 634 | if (rc && cifs_sb->tcon->ipc) { |
| 635 | cFYI(1, ("ipc connection - fake read inode")); |
| 636 | inode->i_mode |= S_IFDIR; |
| 637 | inode->i_nlink = 2; |
| 638 | inode->i_op = &cifs_ipc_inode_ops; |
| 639 | inode->i_fop = &simple_dir_operations; |
| 640 | inode->i_uid = cifs_sb->mnt_uid; |
| 641 | inode->i_gid = cifs_sb->mnt_gid; |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 642 | _FreeXid(xid); |
| 643 | iget_failed(inode); |
| 644 | return ERR_PTR(rc); |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 645 | } |
| 646 | |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 647 | unlock_new_inode(inode); |
| 648 | |
| 649 | /* can not call macro FreeXid here since in a void func |
| 650 | * TODO: This is no longer true |
| 651 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | _FreeXid(xid); |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 653 | return inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | } |
| 655 | |
| 656 | int cifs_unlink(struct inode *inode, struct dentry *direntry) |
| 657 | { |
| 658 | int rc = 0; |
| 659 | int xid; |
| 660 | struct cifs_sb_info *cifs_sb; |
| 661 | struct cifsTconInfo *pTcon; |
| 662 | char *full_path = NULL; |
| 663 | struct cifsInodeInfo *cifsInode; |
| 664 | FILE_BASIC_INFO *pinfo_buf; |
| 665 | |
Steve French | 06bcfed | 2006-03-31 22:43:50 +0000 | [diff] [blame] | 666 | cFYI(1, ("cifs_unlink, inode = 0x%p", inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | |
| 668 | xid = GetXid(); |
| 669 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 670 | if (inode) |
Steve French | 6910ab3 | 2006-03-31 03:37:08 +0000 | [diff] [blame] | 671 | cifs_sb = CIFS_SB(inode->i_sb); |
| 672 | else |
Steve French | 06bcfed | 2006-03-31 22:43:50 +0000 | [diff] [blame] | 673 | cifs_sb = CIFS_SB(direntry->d_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | pTcon = cifs_sb->tcon; |
| 675 | |
| 676 | /* Unlink can be called from rename so we can not grab the sem here |
| 677 | since we deadlock otherwise */ |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 678 | /* mutex_lock(&direntry->d_sb->s_vfs_rename_mutex);*/ |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 679 | full_path = build_path_from_dentry(direntry); |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 680 | /* mutex_unlock(&direntry->d_sb->s_vfs_rename_mutex);*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | if (full_path == NULL) { |
| 682 | FreeXid(xid); |
| 683 | return -ENOMEM; |
| 684 | } |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 685 | |
| 686 | if ((pTcon->ses->capabilities & CAP_UNIX) && |
| 687 | (CIFS_UNIX_POSIX_PATH_OPS_CAP & |
| 688 | le64_to_cpu(pTcon->fsUnixInfo.Capability))) { |
| 689 | rc = CIFSPOSIXDelFile(xid, pTcon, full_path, |
| 690 | SMB_POSIX_UNLINK_FILE_TARGET, cifs_sb->local_nls, |
| 691 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 692 | cFYI(1, ("posix del rc %d", rc)); |
| 693 | if ((rc == 0) || (rc == -ENOENT)) |
| 694 | goto psx_del_no_retry; |
| 695 | } |
| 696 | |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 697 | rc = CIFSSMBDelFile(xid, pTcon, full_path, cifs_sb->local_nls, |
| 698 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 699 | psx_del_no_retry: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | if (!rc) { |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 701 | if (direntry->d_inode) |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 702 | drop_nlink(direntry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | } else if (rc == -ENOENT) { |
| 704 | d_drop(direntry); |
| 705 | } else if (rc == -ETXTBSY) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 706 | int oplock = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | __u16 netfid; |
| 708 | |
| 709 | rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN, DELETE, |
| 710 | CREATE_NOT_DIR | CREATE_DELETE_ON_CLOSE, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 711 | &netfid, &oplock, NULL, cifs_sb->local_nls, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 712 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 713 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 714 | if (rc == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | CIFSSMBRenameOpenFile(xid, pTcon, netfid, NULL, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 716 | cifs_sb->local_nls, |
| 717 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 718 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | CIFSSMBClose(xid, pTcon, netfid); |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 720 | if (direntry->d_inode) |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 721 | drop_nlink(direntry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | } |
| 723 | } else if (rc == -EACCES) { |
| 724 | /* try only if r/o attribute set in local lookup data? */ |
Eric Sesterhenn | a048d7a | 2006-02-21 22:33:09 +0000 | [diff] [blame] | 725 | pinfo_buf = kzalloc(sizeof(FILE_BASIC_INFO), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | if (pinfo_buf) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | /* ATTRS set to normal clears r/o bit */ |
| 728 | pinfo_buf->Attributes = cpu_to_le32(ATTR_NORMAL); |
| 729 | if (!(pTcon->ses->flags & CIFS_SES_NT4)) |
| 730 | rc = CIFSSMBSetTimes(xid, pTcon, full_path, |
| 731 | pinfo_buf, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 732 | cifs_sb->local_nls, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 733 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 734 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | else |
| 736 | rc = -EOPNOTSUPP; |
| 737 | |
| 738 | if (rc == -EOPNOTSUPP) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 739 | int oplock = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | __u16 netfid; |
| 741 | /* rc = CIFSSMBSetAttrLegacy(xid, pTcon, |
| 742 | full_path, |
| 743 | (__u16)ATTR_NORMAL, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 744 | cifs_sb->local_nls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | For some strange reason it seems that NT4 eats the |
| 746 | old setattr call without actually setting the |
| 747 | attributes so on to the third attempted workaround |
| 748 | */ |
| 749 | |
| 750 | /* BB could scan to see if we already have it open |
| 751 | and pass in pid of opener to function */ |
| 752 | rc = CIFSSMBOpen(xid, pTcon, full_path, |
| 753 | FILE_OPEN, SYNCHRONIZE | |
| 754 | FILE_WRITE_ATTRIBUTES, 0, |
| 755 | &netfid, &oplock, NULL, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 756 | cifs_sb->local_nls, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 757 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 758 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 759 | if (rc == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | rc = CIFSSMBSetFileTimes(xid, pTcon, |
| 761 | pinfo_buf, |
| 762 | netfid); |
| 763 | CIFSSMBClose(xid, pTcon, netfid); |
| 764 | } |
| 765 | } |
| 766 | kfree(pinfo_buf); |
| 767 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 768 | if (rc == 0) { |
| 769 | rc = CIFSSMBDelFile(xid, pTcon, full_path, |
| 770 | cifs_sb->local_nls, |
| 771 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 772 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | if (!rc) { |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 774 | if (direntry->d_inode) |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 775 | drop_nlink(direntry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | } else if (rc == -ETXTBSY) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 777 | int oplock = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | __u16 netfid; |
| 779 | |
| 780 | rc = CIFSSMBOpen(xid, pTcon, full_path, |
| 781 | FILE_OPEN, DELETE, |
| 782 | CREATE_NOT_DIR | |
| 783 | CREATE_DELETE_ON_CLOSE, |
| 784 | &netfid, &oplock, NULL, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 785 | cifs_sb->local_nls, |
| 786 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 787 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 788 | if (rc == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | CIFSSMBRenameOpenFile(xid, pTcon, |
| 790 | netfid, NULL, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 791 | cifs_sb->local_nls, |
| 792 | cifs_sb->mnt_cifs_flags & |
| 793 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | CIFSSMBClose(xid, pTcon, netfid); |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 795 | if (direntry->d_inode) |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 796 | drop_nlink(direntry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | } |
| 798 | /* BB if rc = -ETXTBUSY goto the rename logic BB */ |
| 799 | } |
| 800 | } |
| 801 | } |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 802 | if (direntry->d_inode) { |
Steve French | b2aeb9d | 2005-05-17 13:16:18 -0500 | [diff] [blame] | 803 | cifsInode = CIFS_I(direntry->d_inode); |
| 804 | cifsInode->time = 0; /* will force revalidate to get info |
| 805 | when needed */ |
| 806 | direntry->d_inode->i_ctime = current_fs_time(inode->i_sb); |
| 807 | } |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 808 | if (inode) { |
Steve French | 06bcfed | 2006-03-31 22:43:50 +0000 | [diff] [blame] | 809 | inode->i_ctime = inode->i_mtime = current_fs_time(inode->i_sb); |
| 810 | cifsInode = CIFS_I(inode); |
| 811 | cifsInode->time = 0; /* force revalidate of dir as well */ |
| 812 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | |
| 814 | kfree(full_path); |
| 815 | FreeXid(xid); |
| 816 | return rc; |
| 817 | } |
| 818 | |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 819 | static void posix_fill_in_inode(struct inode *tmp_inode, |
Steve French | 0b442d2 | 2008-02-26 03:44:02 +0000 | [diff] [blame] | 820 | FILE_UNIX_BASIC_INFO *pData, int isNewInode) |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 821 | { |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 822 | struct cifsInodeInfo *cifsInfo = CIFS_I(tmp_inode); |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 823 | loff_t local_size; |
| 824 | struct timespec local_mtime; |
| 825 | |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 826 | cifsInfo->time = jiffies; |
| 827 | atomic_inc(&cifsInfo->inUse); |
| 828 | |
| 829 | /* save mtime and size */ |
| 830 | local_mtime = tmp_inode->i_mtime; |
| 831 | local_size = tmp_inode->i_size; |
| 832 | |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 833 | cifs_unix_info_to_inode(tmp_inode, pData, 1); |
Igor Mammedov | 7962670 | 2008-03-09 03:44:18 +0000 | [diff] [blame] | 834 | cifs_set_ops(tmp_inode, false); |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 835 | |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 836 | if (!S_ISREG(tmp_inode->i_mode)) |
| 837 | return; |
| 838 | |
| 839 | /* |
| 840 | * No sense invalidating pages for new inode |
| 841 | * since we we have not started caching |
| 842 | * readahead file data yet. |
| 843 | */ |
| 844 | if (isNewInode) |
| 845 | return; |
| 846 | |
| 847 | if (timespec_equal(&tmp_inode->i_mtime, &local_mtime) && |
| 848 | (local_size == tmp_inode->i_size)) { |
| 849 | cFYI(1, ("inode exists but unchanged")); |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 850 | } else { |
Christoph Hellwig | 75f1298 | 2008-02-25 20:25:21 +0000 | [diff] [blame] | 851 | /* file may have changed on server */ |
| 852 | cFYI(1, ("invalidate inode, readdir detected change")); |
| 853 | invalidate_remote_inode(tmp_inode); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 854 | } |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 855 | } |
| 856 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | int cifs_mkdir(struct inode *inode, struct dentry *direntry, int mode) |
| 858 | { |
| 859 | int rc = 0; |
| 860 | int xid; |
| 861 | struct cifs_sb_info *cifs_sb; |
| 862 | struct cifsTconInfo *pTcon; |
| 863 | char *full_path = NULL; |
| 864 | struct inode *newinode = NULL; |
| 865 | |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 866 | 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] | 867 | |
| 868 | xid = GetXid(); |
| 869 | |
| 870 | cifs_sb = CIFS_SB(inode->i_sb); |
| 871 | pTcon = cifs_sb->tcon; |
| 872 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 873 | full_path = build_path_from_dentry(direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | if (full_path == NULL) { |
| 875 | FreeXid(xid); |
| 876 | return -ENOMEM; |
| 877 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 878 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 879 | if ((pTcon->ses->capabilities & CAP_UNIX) && |
| 880 | (CIFS_UNIX_POSIX_PATH_OPS_CAP & |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 881 | le64_to_cpu(pTcon->fsUnixInfo.Capability))) { |
| 882 | u32 oplock = 0; |
Steve French | f6d0998 | 2008-01-08 23:18:22 +0000 | [diff] [blame] | 883 | FILE_UNIX_BASIC_INFO *pInfo = |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 884 | kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 885 | if (pInfo == NULL) { |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 886 | rc = -ENOMEM; |
| 887 | goto mkdir_out; |
| 888 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 889 | |
Jeff | a8cd925 | 2007-09-13 18:38:50 +0000 | [diff] [blame] | 890 | mode &= ~current->fs->umask; |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 891 | rc = CIFSPOSIXCreate(xid, pTcon, SMB_O_DIRECTORY | SMB_O_CREAT, |
| 892 | mode, NULL /* netfid */, pInfo, &oplock, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 893 | full_path, cifs_sb->local_nls, |
| 894 | cifs_sb->mnt_cifs_flags & |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 895 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | c45d707 | 2007-09-17 02:04:21 +0000 | [diff] [blame] | 896 | if (rc == -EOPNOTSUPP) { |
| 897 | kfree(pInfo); |
| 898 | goto mkdir_retry_old; |
| 899 | } else if (rc) { |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 900 | cFYI(1, ("posix mkdir returned 0x%x", rc)); |
| 901 | d_drop(direntry); |
| 902 | } else { |
Cyril Gorcunov | 8f2376a | 2007-10-14 17:58:43 +0000 | [diff] [blame] | 903 | if (pInfo->Type == cpu_to_le32(-1)) { |
| 904 | /* no return info, go query for it */ |
Steve French | 5a07cdf | 2007-09-16 23:12:47 +0000 | [diff] [blame] | 905 | kfree(pInfo); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 906 | goto mkdir_get_info; |
Steve French | 5a07cdf | 2007-09-16 23:12:47 +0000 | [diff] [blame] | 907 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 908 | /*BB check (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID ) to see if need |
| 909 | to set uid/gid */ |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 910 | inc_nlink(inode); |
| 911 | if (pTcon->nocase) |
| 912 | direntry->d_op = &cifs_ci_dentry_ops; |
| 913 | else |
| 914 | direntry->d_op = &cifs_dentry_ops; |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 915 | |
| 916 | newinode = new_inode(inode->i_sb); |
Steve French | 5a07cdf | 2007-09-16 23:12:47 +0000 | [diff] [blame] | 917 | if (newinode == NULL) { |
| 918 | kfree(pInfo); |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 919 | goto mkdir_get_info; |
Steve French | 5a07cdf | 2007-09-16 23:12:47 +0000 | [diff] [blame] | 920 | } |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 921 | /* Is an i_ino of zero legal? */ |
| 922 | /* Are there sanity checks we can use to ensure that |
| 923 | the server is really filling in that field? */ |
| 924 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) { |
| 925 | newinode->i_ino = |
| 926 | (unsigned long)pInfo->UniqueId; |
| 927 | } /* note ino incremented to unique num in new_inode */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 928 | if (inode->i_sb->s_flags & MS_NOATIME) |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 929 | newinode->i_flags |= S_NOATIME | S_NOCMTIME; |
| 930 | newinode->i_nlink = 2; |
| 931 | |
| 932 | insert_inode_hash(newinode); |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 933 | d_instantiate(direntry, newinode); |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 934 | |
| 935 | /* we already checked in POSIXCreate whether |
| 936 | frame was long enough */ |
| 937 | posix_fill_in_inode(direntry->d_inode, |
Steve French | 0b442d2 | 2008-02-26 03:44:02 +0000 | [diff] [blame] | 938 | pInfo, 1 /* NewInode */); |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 939 | #ifdef CONFIG_CIFS_DEBUG2 |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 940 | cFYI(1, ("instantiated dentry %p %s to inode %p", |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 941 | direntry, direntry->d_name.name, newinode)); |
| 942 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 943 | if (newinode->i_nlink != 2) |
| 944 | cFYI(1, ("unexpected number of links %d", |
Steve French | cbac3cb | 2007-04-25 11:46:06 +0000 | [diff] [blame] | 945 | newinode->i_nlink)); |
| 946 | #endif |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 947 | } |
| 948 | kfree(pInfo); |
| 949 | goto mkdir_out; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 950 | } |
Steve French | c45d707 | 2007-09-17 02:04:21 +0000 | [diff] [blame] | 951 | mkdir_retry_old: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | /* BB add setting the equivalent of mode via CreateX w/ACLs */ |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 953 | rc = CIFSSMBMkDir(xid, pTcon, full_path, cifs_sb->local_nls, |
| 954 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | if (rc) { |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 956 | cFYI(1, ("cifs_mkdir returned 0x%x", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | d_drop(direntry); |
| 958 | } else { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 959 | mkdir_get_info: |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 960 | inc_nlink(inode); |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 961 | if (pTcon->unix_ext) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | rc = cifs_get_inode_info_unix(&newinode, full_path, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 963 | inode->i_sb, xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | else |
| 965 | rc = cifs_get_inode_info(&newinode, full_path, NULL, |
Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 966 | inode->i_sb, xid, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | |
Steve French | b92327f | 2005-08-22 20:09:43 -0700 | [diff] [blame] | 968 | if (pTcon->nocase) |
| 969 | direntry->d_op = &cifs_ci_dentry_ops; |
| 970 | else |
| 971 | direntry->d_op = &cifs_dentry_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | d_instantiate(direntry, newinode); |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 973 | /* setting nlink not necessary except in cases where we |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 974 | * failed to get it from the server or was set bogus */ |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 975 | if ((direntry->d_inode) && (direntry->d_inode->i_nlink < 2)) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 976 | direntry->d_inode->i_nlink = 2; |
Jeff Layton | 67750fb | 2008-05-09 22:28:02 +0000 | [diff] [blame] | 977 | mode &= ~current->fs->umask; |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 978 | if (pTcon->unix_ext) { |
Steve French | d0d2f2d | 2005-06-02 15:12:36 -0700 | [diff] [blame] | 979 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | CIFSSMBUnixSetPerms(xid, pTcon, full_path, |
| 981 | mode, |
Steve French | 8345187 | 2005-12-01 17:12:59 -0800 | [diff] [blame] | 982 | (__u64)current->fsuid, |
| 983 | (__u64)current->fsgid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | 0 /* dev_t */, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 985 | cifs_sb->local_nls, |
| 986 | cifs_sb->mnt_cifs_flags & |
| 987 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | } else { |
| 989 | CIFSSMBUnixSetPerms(xid, pTcon, full_path, |
| 990 | mode, (__u64)-1, |
| 991 | (__u64)-1, 0 /* dev_t */, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 992 | cifs_sb->local_nls, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 993 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 994 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | } |
Steve French | 3ce53fc | 2007-06-08 14:55:14 +0000 | [diff] [blame] | 996 | } else { |
Jeff Layton | 67750fb | 2008-05-09 22:28:02 +0000 | [diff] [blame] | 997 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) && |
| 998 | (mode & S_IWUGO) == 0) { |
| 999 | FILE_BASIC_INFO pInfo; |
| 1000 | memset(&pInfo, 0, sizeof(pInfo)); |
| 1001 | pInfo.Attributes = cpu_to_le32(ATTR_READONLY); |
| 1002 | CIFSSMBSetTimes(xid, pTcon, full_path, |
| 1003 | &pInfo, cifs_sb->local_nls, |
| 1004 | cifs_sb->mnt_cifs_flags & |
| 1005 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 1006 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1007 | if (direntry->d_inode) { |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 1008 | direntry->d_inode->i_mode = mode; |
Steve French | 25741b3 | 2005-11-29 22:38:43 -0800 | [diff] [blame] | 1009 | direntry->d_inode->i_mode |= S_IFDIR; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1010 | if (cifs_sb->mnt_cifs_flags & |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 1011 | CIFS_MOUNT_SET_UID) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1012 | direntry->d_inode->i_uid = |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 1013 | current->fsuid; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1014 | direntry->d_inode->i_gid = |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 1015 | current->fsgid; |
| 1016 | } |
| 1017 | } |
Steve French | 2a138ebb | 2005-11-29 21:22:19 -0800 | [diff] [blame] | 1018 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1020 | mkdir_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | kfree(full_path); |
| 1022 | FreeXid(xid); |
| 1023 | return rc; |
| 1024 | } |
| 1025 | |
| 1026 | int cifs_rmdir(struct inode *inode, struct dentry *direntry) |
| 1027 | { |
| 1028 | int rc = 0; |
| 1029 | int xid; |
| 1030 | struct cifs_sb_info *cifs_sb; |
| 1031 | struct cifsTconInfo *pTcon; |
| 1032 | char *full_path = NULL; |
| 1033 | struct cifsInodeInfo *cifsInode; |
| 1034 | |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 1035 | cFYI(1, ("cifs_rmdir, inode = 0x%p", inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | |
| 1037 | xid = GetXid(); |
| 1038 | |
| 1039 | cifs_sb = CIFS_SB(inode->i_sb); |
| 1040 | pTcon = cifs_sb->tcon; |
| 1041 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 1042 | full_path = build_path_from_dentry(direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | if (full_path == NULL) { |
| 1044 | FreeXid(xid); |
| 1045 | return -ENOMEM; |
| 1046 | } |
| 1047 | |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1048 | rc = CIFSSMBRmDir(xid, pTcon, full_path, cifs_sb->local_nls, |
| 1049 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | |
| 1051 | if (!rc) { |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 1052 | drop_nlink(inode); |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1053 | spin_lock(&direntry->d_inode->i_lock); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1054 | i_size_write(direntry->d_inode, 0); |
Dave Hansen | ce71ec3 | 2006-09-30 23:29:06 -0700 | [diff] [blame] | 1055 | clear_nlink(direntry->d_inode); |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1056 | spin_unlock(&direntry->d_inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | } |
| 1058 | |
| 1059 | cifsInode = CIFS_I(direntry->d_inode); |
| 1060 | cifsInode->time = 0; /* force revalidate to go get info when |
| 1061 | needed */ |
| 1062 | direntry->d_inode->i_ctime = inode->i_ctime = inode->i_mtime = |
| 1063 | current_fs_time(inode->i_sb); |
| 1064 | |
| 1065 | kfree(full_path); |
| 1066 | FreeXid(xid); |
| 1067 | return rc; |
| 1068 | } |
| 1069 | |
| 1070 | int cifs_rename(struct inode *source_inode, struct dentry *source_direntry, |
| 1071 | struct inode *target_inode, struct dentry *target_direntry) |
| 1072 | { |
| 1073 | char *fromName; |
| 1074 | char *toName; |
| 1075 | struct cifs_sb_info *cifs_sb_source; |
| 1076 | struct cifs_sb_info *cifs_sb_target; |
| 1077 | struct cifsTconInfo *pTcon; |
| 1078 | int xid; |
| 1079 | int rc = 0; |
| 1080 | |
| 1081 | xid = GetXid(); |
| 1082 | |
| 1083 | cifs_sb_target = CIFS_SB(target_inode->i_sb); |
| 1084 | cifs_sb_source = CIFS_SB(source_inode->i_sb); |
| 1085 | pTcon = cifs_sb_source->tcon; |
| 1086 | |
| 1087 | if (pTcon != cifs_sb_target->tcon) { |
| 1088 | FreeXid(xid); |
| 1089 | return -EXDEV; /* BB actually could be allowed if same server, |
| 1090 | but different share. |
| 1091 | Might eventually add support for this */ |
| 1092 | } |
| 1093 | |
| 1094 | /* we already have the rename sem so we do not need to grab it again |
| 1095 | here to protect the path integrity */ |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 1096 | fromName = build_path_from_dentry(source_direntry); |
| 1097 | toName = build_path_from_dentry(target_direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | if ((fromName == NULL) || (toName == NULL)) { |
| 1099 | rc = -ENOMEM; |
| 1100 | goto cifs_rename_exit; |
| 1101 | } |
| 1102 | |
| 1103 | rc = CIFSSMBRename(xid, pTcon, fromName, toName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1104 | cifs_sb_source->local_nls, |
| 1105 | cifs_sb_source->mnt_cifs_flags & |
| 1106 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | if (rc == -EEXIST) { |
| 1108 | /* check if they are the same file because rename of hardlinked |
| 1109 | files is a noop */ |
| 1110 | FILE_UNIX_BASIC_INFO *info_buf_source; |
| 1111 | FILE_UNIX_BASIC_INFO *info_buf_target; |
| 1112 | |
| 1113 | info_buf_source = |
| 1114 | kmalloc(2 * sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL); |
| 1115 | if (info_buf_source != NULL) { |
| 1116 | info_buf_target = info_buf_source + 1; |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 1117 | if (pTcon->unix_ext) |
Steve French | 8e87d4d | 2006-11-02 03:45:24 +0000 | [diff] [blame] | 1118 | rc = CIFSSMBUnixQPathInfo(xid, pTcon, fromName, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1119 | info_buf_source, |
Steve French | 8e87d4d | 2006-11-02 03:45:24 +0000 | [diff] [blame] | 1120 | cifs_sb_source->local_nls, |
| 1121 | cifs_sb_source->mnt_cifs_flags & |
| 1122 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 1123 | /* else rc is still EEXIST so will fall through to |
| 1124 | unlink the target and retry rename */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | if (rc == 0) { |
| 1126 | rc = CIFSSMBUnixQPathInfo(xid, pTcon, toName, |
| 1127 | info_buf_target, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1128 | cifs_sb_target->local_nls, |
| 1129 | /* remap based on source sb */ |
| 1130 | cifs_sb_source->mnt_cifs_flags & |
| 1131 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | } |
| 1133 | if ((rc == 0) && |
| 1134 | (info_buf_source->UniqueId == |
| 1135 | info_buf_target->UniqueId)) { |
| 1136 | /* do not rename since the files are hardlinked which |
| 1137 | is a noop */ |
| 1138 | } else { |
| 1139 | /* we either can not tell the files are hardlinked |
| 1140 | (as with Windows servers) or files are not |
| 1141 | hardlinked so delete the target manually before |
| 1142 | renaming to follow POSIX rather than Windows |
| 1143 | semantics */ |
| 1144 | cifs_unlink(target_inode, target_direntry); |
| 1145 | rc = CIFSSMBRename(xid, pTcon, fromName, |
| 1146 | toName, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1147 | cifs_sb_source->local_nls, |
| 1148 | cifs_sb_source->mnt_cifs_flags |
| 1149 | & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | } |
| 1151 | kfree(info_buf_source); |
| 1152 | } /* if we can not get memory just leave rc as EEXIST */ |
| 1153 | } |
| 1154 | |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1155 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | cFYI(1, ("rename rc %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | |
| 1158 | if ((rc == -EIO) || (rc == -EEXIST)) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1159 | int oplock = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | __u16 netfid; |
| 1161 | |
| 1162 | /* BB FIXME Is Generic Read correct for rename? */ |
| 1163 | /* if renaming directory - we should not say CREATE_NOT_DIR, |
| 1164 | need to test renaming open directory, also GENERIC_READ |
| 1165 | might not right be right access to request */ |
| 1166 | rc = CIFSSMBOpen(xid, pTcon, fromName, FILE_OPEN, GENERIC_READ, |
| 1167 | CREATE_NOT_DIR, &netfid, &oplock, NULL, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1168 | cifs_sb_source->local_nls, |
| 1169 | cifs_sb_source->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1170 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1171 | if (rc == 0) { |
Steve French | 8e87d4d | 2006-11-02 03:45:24 +0000 | [diff] [blame] | 1172 | rc = CIFSSMBRenameOpenFile(xid, pTcon, netfid, toName, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1173 | cifs_sb_source->local_nls, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1174 | cifs_sb_source->mnt_cifs_flags & |
| 1175 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | CIFSSMBClose(xid, pTcon, netfid); |
| 1177 | } |
| 1178 | } |
| 1179 | |
| 1180 | cifs_rename_exit: |
| 1181 | kfree(fromName); |
| 1182 | kfree(toName); |
| 1183 | FreeXid(xid); |
| 1184 | return rc; |
| 1185 | } |
| 1186 | |
| 1187 | int cifs_revalidate(struct dentry *direntry) |
| 1188 | { |
| 1189 | int xid; |
Jeff Layton | cea2180 | 2007-11-20 23:19:03 +0000 | [diff] [blame] | 1190 | int rc = 0, wbrc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | char *full_path; |
| 1192 | struct cifs_sb_info *cifs_sb; |
| 1193 | struct cifsInodeInfo *cifsInode; |
| 1194 | loff_t local_size; |
| 1195 | struct timespec local_mtime; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1196 | bool invalidate_inode = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | |
| 1198 | if (direntry->d_inode == NULL) |
| 1199 | return -ENOENT; |
| 1200 | |
| 1201 | cifsInode = CIFS_I(direntry->d_inode); |
| 1202 | |
| 1203 | if (cifsInode == NULL) |
| 1204 | return -ENOENT; |
| 1205 | |
| 1206 | /* no sense revalidating inode info on file that no one can write */ |
| 1207 | if (CIFS_I(direntry->d_inode)->clientCanCacheRead) |
| 1208 | return rc; |
| 1209 | |
| 1210 | xid = GetXid(); |
| 1211 | |
| 1212 | cifs_sb = CIFS_SB(direntry->d_sb); |
| 1213 | |
| 1214 | /* can not safely grab the rename sem here if rename calls revalidate |
| 1215 | since that would deadlock */ |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 1216 | full_path = build_path_from_dentry(direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | if (full_path == NULL) { |
| 1218 | FreeXid(xid); |
| 1219 | return -ENOMEM; |
| 1220 | } |
| 1221 | cFYI(1, ("Revalidate: %s inode 0x%p count %d dentry: 0x%p d_time %ld " |
| 1222 | "jiffies %ld", full_path, direntry->d_inode, |
| 1223 | direntry->d_inode->i_count.counter, direntry, |
| 1224 | direntry->d_time, jiffies)); |
| 1225 | |
| 1226 | if (cifsInode->time == 0) { |
| 1227 | /* was set to zero previously to force revalidate */ |
| 1228 | } else if (time_before(jiffies, cifsInode->time + HZ) && |
| 1229 | lookupCacheEnabled) { |
| 1230 | if ((S_ISREG(direntry->d_inode->i_mode) == 0) || |
| 1231 | (direntry->d_inode->i_nlink == 1)) { |
| 1232 | kfree(full_path); |
| 1233 | FreeXid(xid); |
| 1234 | return rc; |
| 1235 | } else { |
| 1236 | cFYI(1, ("Have to revalidate file due to hardlinks")); |
| 1237 | } |
| 1238 | } |
| 1239 | |
| 1240 | /* save mtime and size */ |
| 1241 | local_mtime = direntry->d_inode->i_mtime; |
| 1242 | local_size = direntry->d_inode->i_size; |
| 1243 | |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 1244 | if (cifs_sb->tcon->unix_ext) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | rc = cifs_get_inode_info_unix(&direntry->d_inode, full_path, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1246 | direntry->d_sb, xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | if (rc) { |
| 1248 | cFYI(1, ("error on getting revalidate info %d", rc)); |
| 1249 | /* if (rc != -ENOENT) |
| 1250 | rc = 0; */ /* BB should we cache info on |
| 1251 | certain errors? */ |
| 1252 | } |
| 1253 | } else { |
| 1254 | rc = cifs_get_inode_info(&direntry->d_inode, full_path, NULL, |
Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 1255 | direntry->d_sb, xid, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | if (rc) { |
| 1257 | cFYI(1, ("error on getting revalidate info %d", rc)); |
| 1258 | /* if (rc != -ENOENT) |
| 1259 | rc = 0; */ /* BB should we cache info on |
| 1260 | certain errors? */ |
| 1261 | } |
| 1262 | } |
| 1263 | /* should we remap certain errors, access denied?, to zero */ |
| 1264 | |
| 1265 | /* if not oplocked, we invalidate inode pages if mtime or file size |
| 1266 | had changed on server */ |
| 1267 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1268 | if (timespec_equal(&local_mtime, &direntry->d_inode->i_mtime) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | (local_size == direntry->d_inode->i_size)) { |
| 1270 | cFYI(1, ("cifs_revalidate - inode unchanged")); |
| 1271 | } else { |
| 1272 | /* file may have changed on server */ |
| 1273 | if (cifsInode->clientCanCacheRead) { |
| 1274 | /* no need to invalidate inode pages since we were the |
| 1275 | only ones who could have modified the file and the |
| 1276 | server copy is staler than ours */ |
| 1277 | } else { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1278 | invalidate_inode = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | } |
| 1280 | } |
| 1281 | |
| 1282 | /* can not grab this sem since kernel filesys locking documentation |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1283 | indicates i_mutex may be taken by the kernel on lookup and rename |
| 1284 | which could deadlock if we grab the i_mutex here as well */ |
| 1285 | /* mutex_lock(&direntry->d_inode->i_mutex);*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | /* need to write out dirty pages here */ |
| 1287 | if (direntry->d_inode->i_mapping) { |
| 1288 | /* do we need to lock inode until after invalidate completes |
| 1289 | below? */ |
Jeff Layton | cea2180 | 2007-11-20 23:19:03 +0000 | [diff] [blame] | 1290 | wbrc = filemap_fdatawrite(direntry->d_inode->i_mapping); |
| 1291 | if (wbrc) |
| 1292 | CIFS_I(direntry->d_inode)->write_behind_rc = wbrc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | } |
| 1294 | if (invalidate_inode) { |
Steve French | 3abb927 | 2005-11-28 08:16:13 -0800 | [diff] [blame] | 1295 | /* shrink_dcache not necessary now that cifs dentry ops |
| 1296 | are exported for negative dentries */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1297 | /* if (S_ISDIR(direntry->d_inode->i_mode)) |
Steve French | 3abb927 | 2005-11-28 08:16:13 -0800 | [diff] [blame] | 1298 | shrink_dcache_parent(direntry); */ |
| 1299 | if (S_ISREG(direntry->d_inode->i_mode)) { |
| 1300 | if (direntry->d_inode->i_mapping) |
Jeff Layton | cea2180 | 2007-11-20 23:19:03 +0000 | [diff] [blame] | 1301 | wbrc = filemap_fdatawait(direntry->d_inode->i_mapping); |
| 1302 | if (wbrc) |
| 1303 | CIFS_I(direntry->d_inode)->write_behind_rc = wbrc; |
Steve French | 3abb927 | 2005-11-28 08:16:13 -0800 | [diff] [blame] | 1304 | /* may eventually have to do this for open files too */ |
| 1305 | if (list_empty(&(cifsInode->openFileList))) { |
| 1306 | /* changed on server - flush read ahead pages */ |
| 1307 | cFYI(1, ("Invalidating read ahead data on " |
| 1308 | "closed file")); |
| 1309 | invalidate_remote_inode(direntry->d_inode); |
| 1310 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | } |
| 1312 | } |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1313 | /* mutex_unlock(&direntry->d_inode->i_mutex); */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1314 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | kfree(full_path); |
| 1316 | FreeXid(xid); |
| 1317 | return rc; |
| 1318 | } |
| 1319 | |
| 1320 | int cifs_getattr(struct vfsmount *mnt, struct dentry *dentry, |
| 1321 | struct kstat *stat) |
| 1322 | { |
| 1323 | int err = cifs_revalidate(dentry); |
Steve French | 5fe14c8 | 2006-11-07 19:26:33 +0000 | [diff] [blame] | 1324 | if (!err) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | generic_fillattr(dentry->d_inode, stat); |
Steve French | 5fe14c8 | 2006-11-07 19:26:33 +0000 | [diff] [blame] | 1326 | stat->blksize = CIFS_MAX_MSGSIZE; |
| 1327 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | return err; |
| 1329 | } |
| 1330 | |
| 1331 | static int cifs_truncate_page(struct address_space *mapping, loff_t from) |
| 1332 | { |
| 1333 | pgoff_t index = from >> PAGE_CACHE_SHIFT; |
| 1334 | unsigned offset = from & (PAGE_CACHE_SIZE - 1); |
| 1335 | struct page *page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | int rc = 0; |
| 1337 | |
| 1338 | page = grab_cache_page(mapping, index); |
| 1339 | if (!page) |
| 1340 | return -ENOMEM; |
| 1341 | |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 1342 | zero_user_segment(page, offset, PAGE_CACHE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | unlock_page(page); |
| 1344 | page_cache_release(page); |
| 1345 | return rc; |
| 1346 | } |
| 1347 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1348 | static int cifs_vmtruncate(struct inode *inode, loff_t offset) |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1349 | { |
| 1350 | struct address_space *mapping = inode->i_mapping; |
| 1351 | unsigned long limit; |
| 1352 | |
Steve French | ba6a46a | 2007-02-26 20:06:29 +0000 | [diff] [blame] | 1353 | spin_lock(&inode->i_lock); |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1354 | if (inode->i_size < offset) |
| 1355 | goto do_expand; |
| 1356 | /* |
| 1357 | * truncation of in-use swapfiles is disallowed - it would cause |
| 1358 | * subsequent swapout to scribble on the now-freed blocks. |
| 1359 | */ |
Steve French | ba6a46a | 2007-02-26 20:06:29 +0000 | [diff] [blame] | 1360 | if (IS_SWAPFILE(inode)) { |
| 1361 | spin_unlock(&inode->i_lock); |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1362 | goto out_busy; |
Steve French | ba6a46a | 2007-02-26 20:06:29 +0000 | [diff] [blame] | 1363 | } |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1364 | i_size_write(inode, offset); |
| 1365 | spin_unlock(&inode->i_lock); |
Steve French | 8064ab4 | 2007-08-22 22:12:07 +0000 | [diff] [blame] | 1366 | /* |
| 1367 | * unmap_mapping_range is called twice, first simply for efficiency |
| 1368 | * so that truncate_inode_pages does fewer single-page unmaps. However |
| 1369 | * after this first call, and before truncate_inode_pages finishes, |
| 1370 | * it is possible for private pages to be COWed, which remain after |
| 1371 | * truncate_inode_pages finishes, hence the second unmap_mapping_range |
| 1372 | * call must be made for correctness. |
| 1373 | */ |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1374 | unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1); |
| 1375 | truncate_inode_pages(mapping, offset); |
Steve French | 8064ab4 | 2007-08-22 22:12:07 +0000 | [diff] [blame] | 1376 | unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1); |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1377 | goto out_truncate; |
| 1378 | |
| 1379 | do_expand: |
| 1380 | limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur; |
Steve French | ba6a46a | 2007-02-26 20:06:29 +0000 | [diff] [blame] | 1381 | if (limit != RLIM_INFINITY && offset > limit) { |
| 1382 | spin_unlock(&inode->i_lock); |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1383 | goto out_sig; |
Steve French | ba6a46a | 2007-02-26 20:06:29 +0000 | [diff] [blame] | 1384 | } |
| 1385 | if (offset > inode->i_sb->s_maxbytes) { |
| 1386 | spin_unlock(&inode->i_lock); |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1387 | goto out_big; |
Steve French | ba6a46a | 2007-02-26 20:06:29 +0000 | [diff] [blame] | 1388 | } |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1389 | i_size_write(inode, offset); |
Steve French | ba6a46a | 2007-02-26 20:06:29 +0000 | [diff] [blame] | 1390 | spin_unlock(&inode->i_lock); |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 1391 | out_truncate: |
| 1392 | if (inode->i_op && inode->i_op->truncate) |
| 1393 | inode->i_op->truncate(inode); |
| 1394 | return 0; |
| 1395 | out_sig: |
| 1396 | send_sig(SIGXFSZ, current, 0); |
| 1397 | out_big: |
| 1398 | return -EFBIG; |
| 1399 | out_busy: |
| 1400 | return -ETXTBSY; |
| 1401 | } |
| 1402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | int cifs_setattr(struct dentry *direntry, struct iattr *attrs) |
| 1404 | { |
| 1405 | int xid; |
| 1406 | struct cifs_sb_info *cifs_sb; |
| 1407 | struct cifsTconInfo *pTcon; |
| 1408 | char *full_path = NULL; |
| 1409 | int rc = -EACCES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | struct cifsFileInfo *open_file = NULL; |
| 1411 | FILE_BASIC_INFO time_buf; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1412 | bool set_time = false; |
| 1413 | bool set_dosattr = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1414 | __u64 mode = 0xFFFFFFFFFFFFFFFFULL; |
| 1415 | __u64 uid = 0xFFFFFFFFFFFFFFFFULL; |
| 1416 | __u64 gid = 0xFFFFFFFFFFFFFFFFULL; |
| 1417 | struct cifsInodeInfo *cifsInode; |
Jeff Layton | 02eadef | 2008-05-09 21:26:11 +0000 | [diff] [blame] | 1418 | struct inode *inode = direntry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | |
| 1420 | xid = GetXid(); |
| 1421 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 1422 | cFYI(1, ("setattr on file %s attrs->iavalid 0x%x", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | direntry->d_name.name, attrs->ia_valid)); |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 1424 | |
Jeff Layton | 02eadef | 2008-05-09 21:26:11 +0000 | [diff] [blame] | 1425 | cifs_sb = CIFS_SB(inode->i_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | pTcon = cifs_sb->tcon; |
| 1427 | |
Steve French | 2a138ebb | 2005-11-29 21:22:19 -0800 | [diff] [blame] | 1428 | if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) == 0) { |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 1429 | /* check if we have permission to change attrs */ |
Jeff Layton | 02eadef | 2008-05-09 21:26:11 +0000 | [diff] [blame] | 1430 | rc = inode_change_ok(inode, attrs); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1431 | if (rc < 0) { |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 1432 | FreeXid(xid); |
| 1433 | return rc; |
| 1434 | } else |
| 1435 | rc = 0; |
| 1436 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1437 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 1438 | full_path = build_path_from_dentry(direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | if (full_path == NULL) { |
| 1440 | FreeXid(xid); |
| 1441 | return -ENOMEM; |
| 1442 | } |
Jeff Layton | 02eadef | 2008-05-09 21:26:11 +0000 | [diff] [blame] | 1443 | cifsInode = CIFS_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | |
Steve French | 5053144 | 2008-03-14 19:21:31 +0000 | [diff] [blame] | 1445 | if ((attrs->ia_valid & ATTR_MTIME) || (attrs->ia_valid & ATTR_SIZE)) { |
Jeff Layton | cea2180 | 2007-11-20 23:19:03 +0000 | [diff] [blame] | 1446 | /* |
Steve French | 5053144 | 2008-03-14 19:21:31 +0000 | [diff] [blame] | 1447 | Flush data before changing file size or changing the last |
| 1448 | write time of the file on the server. If the |
Jeff Layton | cea2180 | 2007-11-20 23:19:03 +0000 | [diff] [blame] | 1449 | flush returns error, store it to report later and continue. |
| 1450 | BB: This should be smarter. Why bother flushing pages that |
| 1451 | will be truncated anyway? Also, should we error out here if |
| 1452 | the flush returns error? |
| 1453 | */ |
Jeff Layton | 02eadef | 2008-05-09 21:26:11 +0000 | [diff] [blame] | 1454 | rc = filemap_write_and_wait(inode->i_mapping); |
Jeff Layton | cea2180 | 2007-11-20 23:19:03 +0000 | [diff] [blame] | 1455 | if (rc != 0) { |
Jeff Layton | 02eadef | 2008-05-09 21:26:11 +0000 | [diff] [blame] | 1456 | cifsInode->write_behind_rc = rc; |
Jeff Layton | cea2180 | 2007-11-20 23:19:03 +0000 | [diff] [blame] | 1457 | rc = 0; |
| 1458 | } |
Steve French | 5053144 | 2008-03-14 19:21:31 +0000 | [diff] [blame] | 1459 | } |
Jeff Layton | cea2180 | 2007-11-20 23:19:03 +0000 | [diff] [blame] | 1460 | |
Steve French | 5053144 | 2008-03-14 19:21:31 +0000 | [diff] [blame] | 1461 | if (attrs->ia_valid & ATTR_SIZE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | /* To avoid spurious oplock breaks from server, in the case of |
| 1463 | inodes that we already have open, avoid doing path based |
| 1464 | setting of file size if we can do it by handle. |
| 1465 | This keeps our caching token (oplock) and avoids timeouts |
| 1466 | when the local oplock break takes longer to flush |
| 1467 | writebehind data than the SMB timeout for the SetPathInfo |
| 1468 | request would allow */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 1469 | |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1470 | open_file = find_writable_file(cifsInode); |
| 1471 | if (open_file) { |
| 1472 | __u16 nfid = open_file->netfid; |
| 1473 | __u32 npid = open_file->pid; |
| 1474 | rc = CIFSSMBSetFileSize(xid, pTcon, attrs->ia_size, |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1475 | nfid, npid, false); |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1476 | atomic_dec(&open_file->wrtPending); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1477 | cFYI(1, ("SetFSize for attrs rc = %d", rc)); |
| 1478 | if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) { |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 1479 | unsigned int bytes_written; |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1480 | rc = CIFSSMBWrite(xid, pTcon, |
| 1481 | nfid, 0, attrs->ia_size, |
| 1482 | &bytes_written, NULL, NULL, |
| 1483 | 1 /* 45 seconds */); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1484 | cFYI(1, ("Wrt seteof rc %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1486 | } else |
Steve French | 6473a55 | 2005-11-29 20:20:10 -0800 | [diff] [blame] | 1487 | rc = -EINVAL; |
| 1488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | if (rc != 0) { |
| 1490 | /* Set file size by pathname rather than by handle |
| 1491 | either because no valid, writeable file handle for |
| 1492 | it was found or because there was an error setting |
| 1493 | it by handle */ |
| 1494 | rc = CIFSSMBSetEOF(xid, pTcon, full_path, |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1495 | attrs->ia_size, false, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1496 | cifs_sb->local_nls, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1497 | cifs_sb->mnt_cifs_flags & |
| 1498 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1499 | cFYI(1, ("SetEOF by path (setattrs) rc = %d", rc)); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1500 | if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) { |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1501 | __u16 netfid; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1502 | int oplock = 0; |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1503 | |
| 1504 | rc = SMBLegacyOpen(xid, pTcon, full_path, |
| 1505 | FILE_OPEN, |
| 1506 | SYNCHRONIZE | FILE_WRITE_ATTRIBUTES, |
| 1507 | CREATE_NOT_DIR, &netfid, &oplock, |
| 1508 | NULL, cifs_sb->local_nls, |
| 1509 | cifs_sb->mnt_cifs_flags & |
| 1510 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1511 | if (rc == 0) { |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 1512 | unsigned int bytes_written; |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1513 | rc = CIFSSMBWrite(xid, pTcon, |
| 1514 | netfid, 0, |
| 1515 | attrs->ia_size, |
| 1516 | &bytes_written, NULL, |
| 1517 | NULL, 1 /* 45 sec */); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1518 | cFYI(1, ("wrt seteof rc %d", rc)); |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1519 | CIFSSMBClose(xid, pTcon, netfid); |
| 1520 | } |
| 1521 | |
| 1522 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | } |
| 1524 | |
| 1525 | /* Server is ok setting allocation size implicitly - no need |
| 1526 | to call: |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1527 | CIFSSMBSetEOF(xid, pTcon, full_path, attrs->ia_size, true, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | cifs_sb->local_nls); |
| 1529 | */ |
| 1530 | |
| 1531 | if (rc == 0) { |
Jeff Layton | 02eadef | 2008-05-09 21:26:11 +0000 | [diff] [blame] | 1532 | rc = cifs_vmtruncate(inode, attrs->ia_size); |
| 1533 | cifs_truncate_page(inode->i_mapping, inode->i_size); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1534 | } else |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1535 | goto cifs_setattr_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1536 | } |
| 1537 | if (attrs->ia_valid & ATTR_UID) { |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1538 | cFYI(1, ("UID changed to %d", attrs->ia_uid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | uid = attrs->ia_uid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | } |
| 1541 | if (attrs->ia_valid & ATTR_GID) { |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1542 | cFYI(1, ("GID changed to %d", attrs->ia_gid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | gid = attrs->ia_gid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | } |
| 1545 | |
| 1546 | time_buf.Attributes = 0; |
Jeff Layton | d32c4f2 | 2007-10-18 03:05:22 -0700 | [diff] [blame] | 1547 | |
| 1548 | /* skip mode change if it's just for clearing setuid/setgid */ |
| 1549 | if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID)) |
| 1550 | attrs->ia_valid &= ~ATTR_MODE; |
| 1551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | if (attrs->ia_valid & ATTR_MODE) { |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1553 | cFYI(1, ("Mode changed to 0x%x", attrs->ia_mode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1554 | mode = attrs->ia_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | } |
| 1556 | |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 1557 | if ((pTcon->unix_ext) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1558 | && (attrs->ia_valid & (ATTR_MODE | ATTR_GID | ATTR_UID))) |
| 1559 | rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode, uid, gid, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1560 | 0 /* dev_t */, cifs_sb->local_nls, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1561 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1562 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | else if (attrs->ia_valid & ATTR_MODE) { |
Steve French | cdbce9c | 2005-11-19 21:04:52 -0800 | [diff] [blame] | 1564 | rc = 0; |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 1565 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
| 1566 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) |
Jeff Layton | 02eadef | 2008-05-09 21:26:11 +0000 | [diff] [blame] | 1567 | rc = mode_to_acl(inode, full_path, mode); |
Steve French | f6d0998 | 2008-01-08 23:18:22 +0000 | [diff] [blame] | 1568 | else if ((mode & S_IWUGO) == 0) { |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 1569 | #else |
Steve French | f6d0998 | 2008-01-08 23:18:22 +0000 | [diff] [blame] | 1570 | if ((mode & S_IWUGO) == 0) { |
Steve French | 9783758 | 2007-12-31 07:47:21 +0000 | [diff] [blame] | 1571 | #endif |
Steve French | f6d0998 | 2008-01-08 23:18:22 +0000 | [diff] [blame] | 1572 | /* not writeable */ |
Steve French | 066fcb0 | 2007-03-23 00:45:08 +0000 | [diff] [blame] | 1573 | if ((cifsInode->cifsAttrs & ATTR_READONLY) == 0) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1574 | set_dosattr = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | time_buf.Attributes = |
| 1576 | cpu_to_le32(cifsInode->cifsAttrs | |
| 1577 | ATTR_READONLY); |
Steve French | 066fcb0 | 2007-03-23 00:45:08 +0000 | [diff] [blame] | 1578 | } |
Steve French | 5268df2 | 2007-04-06 19:28:16 +0000 | [diff] [blame] | 1579 | } else if (cifsInode->cifsAttrs & ATTR_READONLY) { |
| 1580 | /* If file is readonly on server, we would |
| 1581 | not be able to write to it - so if any write |
| 1582 | bit is enabled for user or group or other we |
| 1583 | need to at least try to remove r/o dos attr */ |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1584 | set_dosattr = true; |
Steve French | 5268df2 | 2007-04-06 19:28:16 +0000 | [diff] [blame] | 1585 | time_buf.Attributes = cpu_to_le32(cifsInode->cifsAttrs & |
| 1586 | (~ATTR_READONLY)); |
| 1587 | /* Windows ignores set to zero */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1588 | if (time_buf.Attributes == 0) |
Steve French | 5268df2 | 2007-04-06 19:28:16 +0000 | [diff] [blame] | 1589 | time_buf.Attributes |= cpu_to_le32(ATTR_NORMAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | } |
| 1592 | |
| 1593 | if (attrs->ia_valid & ATTR_ATIME) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1594 | set_time = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | time_buf.LastAccessTime = |
| 1596 | cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_atime)); |
| 1597 | } else |
| 1598 | time_buf.LastAccessTime = 0; |
| 1599 | |
| 1600 | if (attrs->ia_valid & ATTR_MTIME) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1601 | set_time = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1602 | time_buf.LastWriteTime = |
| 1603 | cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_mtime)); |
| 1604 | } else |
| 1605 | time_buf.LastWriteTime = 0; |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1606 | /* Do not set ctime explicitly unless other time |
| 1607 | stamps are changed explicitly (i.e. by utime() |
| 1608 | since we would then have a mix of client and |
| 1609 | server times */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1610 | |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1611 | if (set_time && (attrs->ia_valid & ATTR_CTIME)) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1612 | set_time = true; |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1613 | /* Although Samba throws this field away |
| 1614 | it may be useful to Windows - but we do |
| 1615 | not want to set ctime unless some other |
| 1616 | timestamp is changing */ |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 1617 | cFYI(1, ("CIFS - CTIME changed")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | time_buf.ChangeTime = |
| 1619 | cpu_to_le64(cifs_UnixTimeToNT(attrs->ia_ctime)); |
| 1620 | } else |
| 1621 | time_buf.ChangeTime = 0; |
| 1622 | |
Steve French | 066fcb0 | 2007-03-23 00:45:08 +0000 | [diff] [blame] | 1623 | if (set_time || set_dosattr) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | time_buf.CreationTime = 0; /* do not change */ |
| 1625 | /* In the future we should experiment - try setting timestamps |
| 1626 | via Handle (SetFileInfo) instead of by path */ |
| 1627 | if (!(pTcon->ses->flags & CIFS_SES_NT4)) |
| 1628 | rc = CIFSSMBSetTimes(xid, pTcon, full_path, &time_buf, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1629 | cifs_sb->local_nls, |
| 1630 | cifs_sb->mnt_cifs_flags & |
| 1631 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | else |
| 1633 | rc = -EOPNOTSUPP; |
| 1634 | |
| 1635 | if (rc == -EOPNOTSUPP) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1636 | int oplock = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1637 | __u16 netfid; |
| 1638 | |
| 1639 | cFYI(1, ("calling SetFileInfo since SetPathInfo for " |
| 1640 | "times not supported by this server")); |
| 1641 | /* BB we could scan to see if we already have it open |
| 1642 | and pass in pid of opener to function */ |
| 1643 | rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN, |
| 1644 | SYNCHRONIZE | FILE_WRITE_ATTRIBUTES, |
| 1645 | CREATE_NOT_DIR, &netfid, &oplock, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1646 | NULL, cifs_sb->local_nls, |
| 1647 | cifs_sb->mnt_cifs_flags & |
| 1648 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1649 | if (rc == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | rc = CIFSSMBSetFileTimes(xid, pTcon, &time_buf, |
| 1651 | netfid); |
| 1652 | CIFSSMBClose(xid, pTcon, netfid); |
| 1653 | } else { |
| 1654 | /* BB For even older servers we could convert time_buf |
| 1655 | into old DOS style which uses two second |
| 1656 | granularity */ |
| 1657 | |
| 1658 | /* rc = CIFSSMBSetTimesLegacy(xid, pTcon, full_path, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1659 | &time_buf, cifs_sb->local_nls); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | } |
| 1661 | } |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1662 | /* Even if error on time set, no sense failing the call if |
| 1663 | the server would set the time to a reasonable value anyway, |
| 1664 | and this check ensures that we are not being called from |
| 1665 | sys_utimes in which case we ought to fail the call back to |
| 1666 | the user when the server rejects the call */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1667 | if ((rc) && (attrs->ia_valid & |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1668 | (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE))) |
| 1669 | rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | } |
| 1671 | |
| 1672 | /* do not need local check to inode_check_ok since the server does |
| 1673 | that */ |
| 1674 | if (!rc) |
Jeff Layton | 02eadef | 2008-05-09 21:26:11 +0000 | [diff] [blame] | 1675 | rc = inode_setattr(inode, attrs); |
Steve French | e30dcf3 | 2005-09-20 20:49:16 -0700 | [diff] [blame] | 1676 | cifs_setattr_exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | kfree(full_path); |
| 1678 | FreeXid(xid); |
| 1679 | return rc; |
| 1680 | } |
| 1681 | |
Steve French | 99ee4db | 2007-02-27 05:35:17 +0000 | [diff] [blame] | 1682 | #if 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | void cifs_delete_inode(struct inode *inode) |
| 1684 | { |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 1685 | cFYI(1, ("In cifs_delete_inode, inode = 0x%p", inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | /* may have to add back in if and when safe distributed caching of |
| 1687 | directories added e.g. via FindNotify */ |
| 1688 | } |
Steve French | 99ee4db | 2007-02-27 05:35:17 +0000 | [diff] [blame] | 1689 | #endif |