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