Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/file.c |
| 3 | * |
| 4 | * vfs operations that deal with files |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 5 | * |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 6 | * Copyright (C) International Business Machines Corp., 2002,2010 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Author(s): Steve French (sfrench@us.ibm.com) |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 8 | * Jeremy Allison (jra@samba.org) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
| 10 | * This library is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU Lesser General Public License as published |
| 12 | * by the Free Software Foundation; either version 2.1 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This library is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 18 | * the GNU Lesser General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU Lesser General Public License |
| 21 | * along with this library; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 23 | */ |
| 24 | #include <linux/fs.h> |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 25 | #include <linux/backing-dev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/stat.h> |
| 27 | #include <linux/fcntl.h> |
| 28 | #include <linux/pagemap.h> |
| 29 | #include <linux/pagevec.h> |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 30 | #include <linux/writeback.h> |
Andrew Morton | 6f88cc2 | 2006-12-10 02:19:44 -0800 | [diff] [blame] | 31 | #include <linux/task_io_accounting_ops.h> |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 32 | #include <linux/delay.h> |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 33 | #include <linux/mount.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/slab.h> |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 35 | #include <linux/swap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/div64.h> |
| 37 | #include "cifsfs.h" |
| 38 | #include "cifspdu.h" |
| 39 | #include "cifsglob.h" |
| 40 | #include "cifsproto.h" |
| 41 | #include "cifs_unicode.h" |
| 42 | #include "cifs_debug.h" |
| 43 | #include "cifs_fs_sb.h" |
Suresh Jayaraman | 9451a9a | 2010-07-05 18:12:45 +0530 | [diff] [blame] | 44 | #include "fscache.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | static inline int cifs_convert_flags(unsigned int flags) |
| 47 | { |
| 48 | if ((flags & O_ACCMODE) == O_RDONLY) |
| 49 | return GENERIC_READ; |
| 50 | else if ((flags & O_ACCMODE) == O_WRONLY) |
| 51 | return GENERIC_WRITE; |
| 52 | else if ((flags & O_ACCMODE) == O_RDWR) { |
| 53 | /* GENERIC_ALL is too much permission to request |
| 54 | can cause unnecessary access denied on create */ |
| 55 | /* return GENERIC_ALL; */ |
| 56 | return (GENERIC_READ | GENERIC_WRITE); |
| 57 | } |
| 58 | |
Jeff Layton | e10f7b5 | 2008-05-14 10:21:33 -0700 | [diff] [blame] | 59 | return (READ_CONTROL | FILE_WRITE_ATTRIBUTES | FILE_READ_ATTRIBUTES | |
| 60 | FILE_WRITE_EA | FILE_APPEND_DATA | FILE_WRITE_DATA | |
| 61 | FILE_READ_DATA); |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 62 | } |
Jeff Layton | e10f7b5 | 2008-05-14 10:21:33 -0700 | [diff] [blame] | 63 | |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 64 | static u32 cifs_posix_convert_flags(unsigned int flags) |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 65 | { |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 66 | u32 posix_flags = 0; |
Jeff Layton | e10f7b5 | 2008-05-14 10:21:33 -0700 | [diff] [blame] | 67 | |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 68 | if ((flags & O_ACCMODE) == O_RDONLY) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 69 | posix_flags = SMB_O_RDONLY; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 70 | else if ((flags & O_ACCMODE) == O_WRONLY) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 71 | posix_flags = SMB_O_WRONLY; |
| 72 | else if ((flags & O_ACCMODE) == O_RDWR) |
| 73 | posix_flags = SMB_O_RDWR; |
| 74 | |
| 75 | if (flags & O_CREAT) |
| 76 | posix_flags |= SMB_O_CREAT; |
| 77 | if (flags & O_EXCL) |
| 78 | posix_flags |= SMB_O_EXCL; |
| 79 | if (flags & O_TRUNC) |
| 80 | posix_flags |= SMB_O_TRUNC; |
| 81 | /* be safe and imply O_SYNC for O_DSYNC */ |
Christoph Hellwig | 6b2f3d1 | 2009-10-27 11:05:28 +0100 | [diff] [blame] | 82 | if (flags & O_DSYNC) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 83 | posix_flags |= SMB_O_SYNC; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 84 | if (flags & O_DIRECTORY) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 85 | posix_flags |= SMB_O_DIRECTORY; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 86 | if (flags & O_NOFOLLOW) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 87 | posix_flags |= SMB_O_NOFOLLOW; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 88 | if (flags & O_DIRECT) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 89 | posix_flags |= SMB_O_DIRECT; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 90 | |
| 91 | return posix_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | static inline int cifs_get_disposition(unsigned int flags) |
| 95 | { |
| 96 | if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL)) |
| 97 | return FILE_CREATE; |
| 98 | else if ((flags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC)) |
| 99 | return FILE_OVERWRITE_IF; |
| 100 | else if ((flags & O_CREAT) == O_CREAT) |
| 101 | return FILE_OPEN_IF; |
Steve French | 55aa2e0 | 2006-05-30 18:09:31 +0000 | [diff] [blame] | 102 | else if ((flags & O_TRUNC) == O_TRUNC) |
| 103 | return FILE_OVERWRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | else |
| 105 | return FILE_OPEN; |
| 106 | } |
| 107 | |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 108 | int cifs_posix_open(char *full_path, struct inode **pinode, |
| 109 | struct super_block *sb, int mode, unsigned int f_flags, |
| 110 | __u32 *poplock, __u16 *pnetfid, int xid) |
| 111 | { |
| 112 | int rc; |
| 113 | FILE_UNIX_BASIC_INFO *presp_data; |
| 114 | __u32 posix_flags = 0; |
| 115 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
| 116 | struct cifs_fattr fattr; |
| 117 | struct tcon_link *tlink; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 118 | struct cifs_tcon *tcon; |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 119 | |
| 120 | cFYI(1, "posix open %s", full_path); |
| 121 | |
| 122 | presp_data = kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL); |
| 123 | if (presp_data == NULL) |
| 124 | return -ENOMEM; |
| 125 | |
| 126 | tlink = cifs_sb_tlink(cifs_sb); |
| 127 | if (IS_ERR(tlink)) { |
| 128 | rc = PTR_ERR(tlink); |
| 129 | goto posix_open_ret; |
| 130 | } |
| 131 | |
| 132 | tcon = tlink_tcon(tlink); |
| 133 | mode &= ~current_umask(); |
| 134 | |
| 135 | posix_flags = cifs_posix_convert_flags(f_flags); |
| 136 | rc = CIFSPOSIXCreate(xid, tcon, posix_flags, mode, pnetfid, presp_data, |
| 137 | poplock, full_path, cifs_sb->local_nls, |
| 138 | cifs_sb->mnt_cifs_flags & |
| 139 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 140 | cifs_put_tlink(tlink); |
| 141 | |
| 142 | if (rc) |
| 143 | goto posix_open_ret; |
| 144 | |
| 145 | if (presp_data->Type == cpu_to_le32(-1)) |
| 146 | goto posix_open_ret; /* open ok, caller does qpathinfo */ |
| 147 | |
| 148 | if (!pinode) |
| 149 | goto posix_open_ret; /* caller does not need info */ |
| 150 | |
| 151 | cifs_unix_basic_to_fattr(&fattr, presp_data, cifs_sb); |
| 152 | |
| 153 | /* get new inode and set it up */ |
| 154 | if (*pinode == NULL) { |
| 155 | cifs_fill_uniqueid(sb, &fattr); |
| 156 | *pinode = cifs_iget(sb, &fattr); |
| 157 | if (!*pinode) { |
| 158 | rc = -ENOMEM; |
| 159 | goto posix_open_ret; |
| 160 | } |
| 161 | } else { |
| 162 | cifs_fattr_to_inode(*pinode, &fattr); |
| 163 | } |
| 164 | |
| 165 | posix_open_ret: |
| 166 | kfree(presp_data); |
| 167 | return rc; |
| 168 | } |
| 169 | |
Pavel Shilovsky | eeb910a | 2010-11-25 15:12:39 +0300 | [diff] [blame] | 170 | static int |
| 171 | cifs_nt_open(char *full_path, struct inode *inode, struct cifs_sb_info *cifs_sb, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 172 | struct cifs_tcon *tcon, unsigned int f_flags, __u32 *poplock, |
Pavel Shilovsky | eeb910a | 2010-11-25 15:12:39 +0300 | [diff] [blame] | 173 | __u16 *pnetfid, int xid) |
| 174 | { |
| 175 | int rc; |
| 176 | int desiredAccess; |
| 177 | int disposition; |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 178 | int create_options = CREATE_NOT_DIR; |
Pavel Shilovsky | eeb910a | 2010-11-25 15:12:39 +0300 | [diff] [blame] | 179 | FILE_ALL_INFO *buf; |
| 180 | |
| 181 | desiredAccess = cifs_convert_flags(f_flags); |
| 182 | |
| 183 | /********************************************************************* |
| 184 | * open flag mapping table: |
| 185 | * |
| 186 | * POSIX Flag CIFS Disposition |
| 187 | * ---------- ---------------- |
| 188 | * O_CREAT FILE_OPEN_IF |
| 189 | * O_CREAT | O_EXCL FILE_CREATE |
| 190 | * O_CREAT | O_TRUNC FILE_OVERWRITE_IF |
| 191 | * O_TRUNC FILE_OVERWRITE |
| 192 | * none of the above FILE_OPEN |
| 193 | * |
| 194 | * Note that there is not a direct match between disposition |
| 195 | * FILE_SUPERSEDE (ie create whether or not file exists although |
| 196 | * O_CREAT | O_TRUNC is similar but truncates the existing |
| 197 | * file rather than creating a new file as FILE_SUPERSEDE does |
| 198 | * (which uses the attributes / metadata passed in on open call) |
| 199 | *? |
| 200 | *? O_SYNC is a reasonable match to CIFS writethrough flag |
| 201 | *? and the read write flags match reasonably. O_LARGEFILE |
| 202 | *? is irrelevant because largefile support is always used |
| 203 | *? by this client. Flags O_APPEND, O_DIRECT, O_DIRECTORY, |
| 204 | * O_FASYNC, O_NOFOLLOW, O_NONBLOCK need further investigation |
| 205 | *********************************************************************/ |
| 206 | |
| 207 | disposition = cifs_get_disposition(f_flags); |
| 208 | |
| 209 | /* BB pass O_SYNC flag through on file attributes .. BB */ |
| 210 | |
| 211 | buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); |
| 212 | if (!buf) |
| 213 | return -ENOMEM; |
| 214 | |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 215 | if (backup_cred(cifs_sb)) |
| 216 | create_options |= CREATE_OPEN_BACKUP_INTENT; |
| 217 | |
Pavel Shilovsky | eeb910a | 2010-11-25 15:12:39 +0300 | [diff] [blame] | 218 | if (tcon->ses->capabilities & CAP_NT_SMBS) |
| 219 | rc = CIFSSMBOpen(xid, tcon, full_path, disposition, |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 220 | desiredAccess, create_options, pnetfid, poplock, buf, |
Pavel Shilovsky | eeb910a | 2010-11-25 15:12:39 +0300 | [diff] [blame] | 221 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags |
| 222 | & CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 223 | else |
| 224 | rc = SMBLegacyOpen(xid, tcon, full_path, disposition, |
| 225 | desiredAccess, CREATE_NOT_DIR, pnetfid, poplock, buf, |
| 226 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags |
| 227 | & CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 228 | |
| 229 | if (rc) |
| 230 | goto out; |
| 231 | |
| 232 | if (tcon->unix_ext) |
| 233 | rc = cifs_get_inode_info_unix(&inode, full_path, inode->i_sb, |
| 234 | xid); |
| 235 | else |
| 236 | rc = cifs_get_inode_info(&inode, full_path, buf, inode->i_sb, |
| 237 | xid, pnetfid); |
| 238 | |
| 239 | out: |
| 240 | kfree(buf); |
| 241 | return rc; |
| 242 | } |
| 243 | |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 244 | struct cifsFileInfo * |
| 245 | cifs_new_fileinfo(__u16 fileHandle, struct file *file, |
| 246 | struct tcon_link *tlink, __u32 oplock) |
| 247 | { |
| 248 | struct dentry *dentry = file->f_path.dentry; |
| 249 | struct inode *inode = dentry->d_inode; |
| 250 | struct cifsInodeInfo *pCifsInode = CIFS_I(inode); |
| 251 | struct cifsFileInfo *pCifsFile; |
| 252 | |
| 253 | pCifsFile = kzalloc(sizeof(struct cifsFileInfo), GFP_KERNEL); |
| 254 | if (pCifsFile == NULL) |
| 255 | return pCifsFile; |
| 256 | |
Jeff Layton | 5f6dbc9 | 2010-10-15 15:34:06 -0400 | [diff] [blame] | 257 | pCifsFile->count = 1; |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 258 | pCifsFile->netfid = fileHandle; |
| 259 | pCifsFile->pid = current->tgid; |
| 260 | pCifsFile->uid = current_fsuid(); |
| 261 | pCifsFile->dentry = dget(dentry); |
| 262 | pCifsFile->f_flags = file->f_flags; |
| 263 | pCifsFile->invalidHandle = false; |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 264 | pCifsFile->tlink = cifs_get_tlink(tlink); |
| 265 | mutex_init(&pCifsFile->fh_mutex); |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 266 | INIT_WORK(&pCifsFile->oplock_break, cifs_oplock_break); |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 267 | INIT_LIST_HEAD(&pCifsFile->llist); |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 268 | |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 269 | spin_lock(&cifs_file_list_lock); |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 270 | list_add(&pCifsFile->tlist, &(tlink_tcon(tlink)->openFileList)); |
| 271 | /* if readable file instance put first in list*/ |
| 272 | if (file->f_mode & FMODE_READ) |
| 273 | list_add(&pCifsFile->flist, &pCifsInode->openFileList); |
| 274 | else |
| 275 | list_add_tail(&pCifsFile->flist, &pCifsInode->openFileList); |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 276 | spin_unlock(&cifs_file_list_lock); |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 277 | |
Pavel Shilovsky | c672362 | 2010-11-03 10:58:57 +0300 | [diff] [blame] | 278 | cifs_set_oplock_level(pCifsInode, oplock); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 279 | pCifsInode->can_cache_brlcks = pCifsInode->clientCanCacheAll; |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 280 | |
| 281 | file->private_data = pCifsFile; |
| 282 | return pCifsFile; |
| 283 | } |
| 284 | |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 285 | static void cifs_del_lock_waiters(struct cifsLockInfo *lock); |
| 286 | |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 287 | /* |
| 288 | * Release a reference on the file private data. This may involve closing |
Jeff Layton | 5f6dbc9 | 2010-10-15 15:34:06 -0400 | [diff] [blame] | 289 | * the filehandle out on the server. Must be called without holding |
| 290 | * cifs_file_list_lock. |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 291 | */ |
Jeff Layton | b33879a | 2010-10-15 15:34:04 -0400 | [diff] [blame] | 292 | void cifsFileInfo_put(struct cifsFileInfo *cifs_file) |
| 293 | { |
Pavel Shilovsky | e66673e | 2010-11-02 12:00:42 +0300 | [diff] [blame] | 294 | struct inode *inode = cifs_file->dentry->d_inode; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 295 | struct cifs_tcon *tcon = tlink_tcon(cifs_file->tlink); |
Pavel Shilovsky | e66673e | 2010-11-02 12:00:42 +0300 | [diff] [blame] | 296 | struct cifsInodeInfo *cifsi = CIFS_I(inode); |
Pavel Shilovsky | 4f8ba8a | 2010-11-21 22:36:12 +0300 | [diff] [blame] | 297 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 298 | struct cifsLockInfo *li, *tmp; |
| 299 | |
| 300 | spin_lock(&cifs_file_list_lock); |
Jeff Layton | 5f6dbc9 | 2010-10-15 15:34:06 -0400 | [diff] [blame] | 301 | if (--cifs_file->count > 0) { |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 302 | spin_unlock(&cifs_file_list_lock); |
| 303 | return; |
Jeff Layton | b33879a | 2010-10-15 15:34:04 -0400 | [diff] [blame] | 304 | } |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 305 | |
| 306 | /* remove it from the lists */ |
| 307 | list_del(&cifs_file->flist); |
| 308 | list_del(&cifs_file->tlist); |
| 309 | |
| 310 | if (list_empty(&cifsi->openFileList)) { |
| 311 | cFYI(1, "closing last open instance for inode %p", |
| 312 | cifs_file->dentry->d_inode); |
Pavel Shilovsky | 4f8ba8a | 2010-11-21 22:36:12 +0300 | [diff] [blame] | 313 | |
| 314 | /* in strict cache mode we need invalidate mapping on the last |
| 315 | close because it may cause a error when we open this file |
| 316 | again and get at least level II oplock */ |
| 317 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO) |
| 318 | CIFS_I(inode)->invalid_mapping = true; |
| 319 | |
Pavel Shilovsky | c672362 | 2010-11-03 10:58:57 +0300 | [diff] [blame] | 320 | cifs_set_oplock_level(cifsi, 0); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 321 | } |
| 322 | spin_unlock(&cifs_file_list_lock); |
| 323 | |
Jeff Layton | ad63594 | 2011-07-26 12:20:17 -0400 | [diff] [blame] | 324 | cancel_work_sync(&cifs_file->oplock_break); |
| 325 | |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 326 | if (!tcon->need_reconnect && !cifs_file->invalidHandle) { |
| 327 | int xid, rc; |
| 328 | |
| 329 | xid = GetXid(); |
| 330 | rc = CIFSSMBClose(xid, tcon, cifs_file->netfid); |
| 331 | FreeXid(xid); |
| 332 | } |
| 333 | |
| 334 | /* Delete any outstanding lock records. We'll lose them when the file |
| 335 | * is closed anyway. |
| 336 | */ |
Pavel Shilovsky | d59dad2 | 2011-09-22 09:53:59 +0400 | [diff] [blame] | 337 | mutex_lock(&cifsi->lock_mutex); |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 338 | list_for_each_entry_safe(li, tmp, &cifs_file->llist, llist) { |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 339 | list_del(&li->llist); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 340 | cifs_del_lock_waiters(li); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 341 | kfree(li); |
| 342 | } |
Pavel Shilovsky | d59dad2 | 2011-09-22 09:53:59 +0400 | [diff] [blame] | 343 | mutex_unlock(&cifsi->lock_mutex); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 344 | |
| 345 | cifs_put_tlink(cifs_file->tlink); |
| 346 | dput(cifs_file->dentry); |
| 347 | kfree(cifs_file); |
Jeff Layton | b33879a | 2010-10-15 15:34:04 -0400 | [diff] [blame] | 348 | } |
| 349 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | int cifs_open(struct inode *inode, struct file *file) |
| 351 | { |
| 352 | int rc = -EACCES; |
Jeff Layton | 590a3fe | 2009-09-12 11:54:28 -0400 | [diff] [blame] | 353 | int xid; |
| 354 | __u32 oplock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | struct cifs_sb_info *cifs_sb; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 356 | struct cifs_tcon *tcon; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 357 | struct tcon_link *tlink; |
Jeff Layton | 6ca9f3b | 2010-06-16 13:40:16 -0400 | [diff] [blame] | 358 | struct cifsFileInfo *pCifsFile = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | char *full_path = NULL; |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 360 | bool posix_open_ok = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | __u16 netfid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
| 363 | xid = GetXid(); |
| 364 | |
| 365 | cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 366 | tlink = cifs_sb_tlink(cifs_sb); |
| 367 | if (IS_ERR(tlink)) { |
| 368 | FreeXid(xid); |
| 369 | return PTR_ERR(tlink); |
| 370 | } |
| 371 | tcon = tlink_tcon(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 373 | full_path = build_path_from_dentry(file->f_path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 375 | rc = -ENOMEM; |
Jeff Layton | 232341b | 2010-08-05 13:58:38 -0400 | [diff] [blame] | 376 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } |
| 378 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 379 | cFYI(1, "inode = 0x%p file flags are 0x%x for %s", |
| 380 | inode, file->f_flags, full_path); |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 381 | |
Pavel Shilovsky | 10b9b98 | 2012-03-20 12:55:09 +0300 | [diff] [blame] | 382 | if (tcon->ses->server->oplocks) |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 383 | oplock = REQ_OPLOCK; |
| 384 | else |
| 385 | oplock = 0; |
| 386 | |
Steve French | 64cc2c6 | 2009-03-04 19:54:08 +0000 | [diff] [blame] | 387 | if (!tcon->broken_posix_open && tcon->unix_ext && |
| 388 | (tcon->ses->capabilities & CAP_UNIX) && |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 389 | (CIFS_UNIX_POSIX_PATH_OPS_CAP & |
| 390 | le64_to_cpu(tcon->fsUnixInfo.Capability))) { |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 391 | /* can not refresh inode info since size could be stale */ |
Jeff Layton | 2422f67 | 2010-06-16 13:40:16 -0400 | [diff] [blame] | 392 | rc = cifs_posix_open(full_path, &inode, inode->i_sb, |
Steve French | fa588e0 | 2010-04-22 19:21:55 +0000 | [diff] [blame] | 393 | cifs_sb->mnt_file_mode /* ignored */, |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 394 | file->f_flags, &oplock, &netfid, xid); |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 395 | if (rc == 0) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 396 | cFYI(1, "posix open succeeded"); |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 397 | posix_open_ok = true; |
Steve French | 64cc2c6 | 2009-03-04 19:54:08 +0000 | [diff] [blame] | 398 | } else if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) { |
| 399 | if (tcon->ses->serverNOS) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 400 | cERROR(1, "server %s of type %s returned" |
Steve French | 64cc2c6 | 2009-03-04 19:54:08 +0000 | [diff] [blame] | 401 | " unexpected error on SMB posix open" |
| 402 | ", disabling posix open support." |
| 403 | " Check if server update available.", |
| 404 | tcon->ses->serverName, |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 405 | tcon->ses->serverNOS); |
Steve French | 64cc2c6 | 2009-03-04 19:54:08 +0000 | [diff] [blame] | 406 | tcon->broken_posix_open = true; |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 407 | } else if ((rc != -EIO) && (rc != -EREMOTE) && |
| 408 | (rc != -EOPNOTSUPP)) /* path not found or net err */ |
| 409 | goto out; |
Steve French | 64cc2c6 | 2009-03-04 19:54:08 +0000 | [diff] [blame] | 410 | /* else fallthrough to retry open the old way on network i/o |
| 411 | or DFS errors */ |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 412 | } |
| 413 | |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 414 | if (!posix_open_ok) { |
| 415 | rc = cifs_nt_open(full_path, inode, cifs_sb, tcon, |
| 416 | file->f_flags, &oplock, &netfid, xid); |
| 417 | if (rc) |
| 418 | goto out; |
| 419 | } |
Jeff Layton | 47c78b7 | 2010-06-16 13:40:17 -0400 | [diff] [blame] | 420 | |
Jeff Layton | abfe1ee | 2010-10-15 15:33:58 -0400 | [diff] [blame] | 421 | pCifsFile = cifs_new_fileinfo(netfid, file, tlink, oplock); |
Jeff Layton | 6ca9f3b | 2010-06-16 13:40:16 -0400 | [diff] [blame] | 422 | if (pCifsFile == NULL) { |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 423 | CIFSSMBClose(xid, tcon, netfid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | rc = -ENOMEM; |
| 425 | goto out; |
| 426 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
Suresh Jayaraman | 9451a9a | 2010-07-05 18:12:45 +0530 | [diff] [blame] | 428 | cifs_fscache_set_inode_cookie(inode, file); |
| 429 | |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 430 | if ((oplock & CIFS_CREATE_ACTION) && !posix_open_ok && tcon->unix_ext) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | /* time to set mode which we can not set earlier due to |
| 432 | problems creating new read-only files */ |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 433 | struct cifs_unix_set_info_args args = { |
| 434 | .mode = inode->i_mode, |
| 435 | .uid = NO_CHANGE_64, |
| 436 | .gid = NO_CHANGE_64, |
| 437 | .ctime = NO_CHANGE_64, |
| 438 | .atime = NO_CHANGE_64, |
| 439 | .mtime = NO_CHANGE_64, |
| 440 | .device = 0, |
| 441 | }; |
Jeff Layton | d44a9fe | 2011-01-07 11:30:29 -0500 | [diff] [blame] | 442 | CIFSSMBUnixSetFileInfo(xid, tcon, &args, netfid, |
| 443 | pCifsFile->pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | kfree(full_path); |
| 448 | FreeXid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 449 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | return rc; |
| 451 | } |
| 452 | |
Adrian Bunk | 0418726 | 2006-06-30 18:23:04 +0200 | [diff] [blame] | 453 | /* Try to reacquire byte range locks that were released when session */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | /* to server was lost */ |
| 455 | static int cifs_relock_file(struct cifsFileInfo *cifsFile) |
| 456 | { |
| 457 | int rc = 0; |
| 458 | |
| 459 | /* BB list all locks open on this file and relock */ |
| 460 | |
| 461 | return rc; |
| 462 | } |
| 463 | |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 464 | static int cifs_reopen_file(struct cifsFileInfo *pCifsFile, bool can_flush) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { |
| 466 | int rc = -EACCES; |
Jeff Layton | 590a3fe | 2009-09-12 11:54:28 -0400 | [diff] [blame] | 467 | int xid; |
| 468 | __u32 oplock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | struct cifs_sb_info *cifs_sb; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 470 | struct cifs_tcon *tcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | struct cifsInodeInfo *pCifsInode; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 472 | struct inode *inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | char *full_path = NULL; |
| 474 | int desiredAccess; |
| 475 | int disposition = FILE_OPEN; |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 476 | int create_options = CREATE_NOT_DIR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | __u16 netfid; |
| 478 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | xid = GetXid(); |
Jeff Layton | f0a71eb | 2009-06-27 07:04:55 -0400 | [diff] [blame] | 480 | mutex_lock(&pCifsFile->fh_mutex); |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 481 | if (!pCifsFile->invalidHandle) { |
Jeff Layton | f0a71eb | 2009-06-27 07:04:55 -0400 | [diff] [blame] | 482 | mutex_unlock(&pCifsFile->fh_mutex); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 483 | rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | FreeXid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 485 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | } |
| 487 | |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 488 | inode = pCifsFile->dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 490 | tcon = tlink_tcon(pCifsFile->tlink); |
Steve French | 3a9f462 | 2007-04-04 17:10:24 +0000 | [diff] [blame] | 491 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | /* can not grab rename sem here because various ops, including |
| 493 | those that already have the rename sem can end up causing writepage |
| 494 | to get called and if the server was down that means we end up here, |
| 495 | and we can never tell if the caller already has the rename_sem */ |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 496 | full_path = build_path_from_dentry(pCifsFile->dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | if (full_path == NULL) { |
Steve French | 3a9f462 | 2007-04-04 17:10:24 +0000 | [diff] [blame] | 498 | rc = -ENOMEM; |
Jeff Layton | f0a71eb | 2009-06-27 07:04:55 -0400 | [diff] [blame] | 499 | mutex_unlock(&pCifsFile->fh_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | FreeXid(xid); |
Steve French | 3a9f462 | 2007-04-04 17:10:24 +0000 | [diff] [blame] | 501 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | } |
| 503 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 504 | cFYI(1, "inode = 0x%p file flags 0x%x for %s", |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 505 | inode, pCifsFile->f_flags, full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | |
Pavel Shilovsky | 10b9b98 | 2012-03-20 12:55:09 +0300 | [diff] [blame] | 507 | if (tcon->ses->server->oplocks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | oplock = REQ_OPLOCK; |
| 509 | else |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 510 | oplock = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 512 | if (tcon->unix_ext && (tcon->ses->capabilities & CAP_UNIX) && |
| 513 | (CIFS_UNIX_POSIX_PATH_OPS_CAP & |
| 514 | le64_to_cpu(tcon->fsUnixInfo.Capability))) { |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 515 | |
| 516 | /* |
| 517 | * O_CREAT, O_EXCL and O_TRUNC already had their effect on the |
| 518 | * original open. Must mask them off for a reopen. |
| 519 | */ |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 520 | unsigned int oflags = pCifsFile->f_flags & |
| 521 | ~(O_CREAT | O_EXCL | O_TRUNC); |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 522 | |
Jeff Layton | 2422f67 | 2010-06-16 13:40:16 -0400 | [diff] [blame] | 523 | rc = cifs_posix_open(full_path, NULL, inode->i_sb, |
Steve French | fa588e0 | 2010-04-22 19:21:55 +0000 | [diff] [blame] | 524 | cifs_sb->mnt_file_mode /* ignored */, |
| 525 | oflags, &oplock, &netfid, xid); |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 526 | if (rc == 0) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 527 | cFYI(1, "posix reopen succeeded"); |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 528 | goto reopen_success; |
| 529 | } |
| 530 | /* fallthrough to retry open the old way on errors, especially |
| 531 | in the reconnect path it is important to retry hard */ |
| 532 | } |
| 533 | |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 534 | desiredAccess = cifs_convert_flags(pCifsFile->f_flags); |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 535 | |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 536 | if (backup_cred(cifs_sb)) |
| 537 | create_options |= CREATE_OPEN_BACKUP_INTENT; |
| 538 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | /* Can not refresh inode by passing in file_info buf to be returned |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 540 | by SMBOpen and then calling get_inode_info with returned buf |
| 541 | since file might have write behind data that needs to be flushed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | and server version of file size can be stale. If we knew for sure |
| 543 | that inode was not dirty locally we could do this */ |
| 544 | |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 545 | rc = CIFSSMBOpen(xid, tcon, full_path, disposition, desiredAccess, |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 546 | create_options, &netfid, &oplock, NULL, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 547 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 548 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | if (rc) { |
Jeff Layton | f0a71eb | 2009-06-27 07:04:55 -0400 | [diff] [blame] | 550 | mutex_unlock(&pCifsFile->fh_mutex); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 551 | cFYI(1, "cifs_open returned 0x%x", rc); |
| 552 | cFYI(1, "oplock: %d", oplock); |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 553 | goto reopen_error_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 555 | |
| 556 | reopen_success: |
| 557 | pCifsFile->netfid = netfid; |
| 558 | pCifsFile->invalidHandle = false; |
| 559 | mutex_unlock(&pCifsFile->fh_mutex); |
| 560 | pCifsInode = CIFS_I(inode); |
| 561 | |
| 562 | if (can_flush) { |
| 563 | rc = filemap_write_and_wait(inode->i_mapping); |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 564 | mapping_set_error(inode->i_mapping, rc); |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 565 | |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 566 | if (tcon->unix_ext) |
| 567 | rc = cifs_get_inode_info_unix(&inode, |
| 568 | full_path, inode->i_sb, xid); |
| 569 | else |
| 570 | rc = cifs_get_inode_info(&inode, |
| 571 | full_path, NULL, inode->i_sb, |
| 572 | xid, NULL); |
| 573 | } /* else we are writing out data to server already |
| 574 | and could deadlock if we tried to flush data, and |
| 575 | since we do not know if we have data that would |
| 576 | invalidate the current end of file on the server |
| 577 | we can not go to the server to get the new inod |
| 578 | info */ |
Pavel Shilovsky | e66673e | 2010-11-02 12:00:42 +0300 | [diff] [blame] | 579 | |
Pavel Shilovsky | c672362 | 2010-11-03 10:58:57 +0300 | [diff] [blame] | 580 | cifs_set_oplock_level(pCifsInode, oplock); |
Pavel Shilovsky | e66673e | 2010-11-02 12:00:42 +0300 | [diff] [blame] | 581 | |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 582 | cifs_relock_file(pCifsFile); |
| 583 | |
| 584 | reopen_error_exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | kfree(full_path); |
| 586 | FreeXid(xid); |
| 587 | return rc; |
| 588 | } |
| 589 | |
| 590 | int cifs_close(struct inode *inode, struct file *file) |
| 591 | { |
Jeff Layton | 7797069 | 2011-04-05 16:23:47 -0700 | [diff] [blame] | 592 | if (file->private_data != NULL) { |
| 593 | cifsFileInfo_put(file->private_data); |
| 594 | file->private_data = NULL; |
| 595 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 597 | /* return code from the ->release op is always ignored */ |
| 598 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | } |
| 600 | |
| 601 | int cifs_closedir(struct inode *inode, struct file *file) |
| 602 | { |
| 603 | int rc = 0; |
| 604 | int xid; |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 605 | struct cifsFileInfo *pCFileStruct = file->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | char *ptmp; |
| 607 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 608 | cFYI(1, "Closedir inode = 0x%p", inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | |
| 610 | xid = GetXid(); |
| 611 | |
| 612 | if (pCFileStruct) { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 613 | struct cifs_tcon *pTcon = tlink_tcon(pCFileStruct->tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 615 | cFYI(1, "Freeing private data in close dir"); |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 616 | spin_lock(&cifs_file_list_lock); |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 617 | if (!pCFileStruct->srch_inf.endOfSearch && |
| 618 | !pCFileStruct->invalidHandle) { |
| 619 | pCFileStruct->invalidHandle = true; |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 620 | spin_unlock(&cifs_file_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | rc = CIFSFindClose(xid, pTcon, pCFileStruct->netfid); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 622 | cFYI(1, "Closing uncompleted readdir with rc %d", |
| 623 | rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | /* not much we can do if it fails anyway, ignore rc */ |
| 625 | rc = 0; |
Steve French | ddb4cbf | 2008-11-20 20:00:44 +0000 | [diff] [blame] | 626 | } else |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 627 | spin_unlock(&cifs_file_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | ptmp = pCFileStruct->srch_inf.ntwrk_buf_start; |
| 629 | if (ptmp) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 630 | cFYI(1, "closedir free smb buf in srch struct"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | pCFileStruct->srch_inf.ntwrk_buf_start = NULL; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 632 | if (pCFileStruct->srch_inf.smallBuf) |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 633 | cifs_small_buf_release(ptmp); |
| 634 | else |
| 635 | cifs_buf_release(ptmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | } |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 637 | cifs_put_tlink(pCFileStruct->tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | kfree(file->private_data); |
| 639 | file->private_data = NULL; |
| 640 | } |
| 641 | /* BB can we lock the filestruct while this is going on? */ |
| 642 | FreeXid(xid); |
| 643 | return rc; |
| 644 | } |
| 645 | |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 646 | static struct cifsLockInfo * |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 647 | cifs_lock_init(__u64 offset, __u64 length, __u8 type) |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 648 | { |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 649 | struct cifsLockInfo *lock = |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 650 | kmalloc(sizeof(struct cifsLockInfo), GFP_KERNEL); |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 651 | if (!lock) |
| 652 | return lock; |
| 653 | lock->offset = offset; |
| 654 | lock->length = length; |
| 655 | lock->type = type; |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 656 | lock->pid = current->tgid; |
| 657 | INIT_LIST_HEAD(&lock->blist); |
| 658 | init_waitqueue_head(&lock->block_q); |
| 659 | return lock; |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 660 | } |
| 661 | |
| 662 | static void |
| 663 | cifs_del_lock_waiters(struct cifsLockInfo *lock) |
| 664 | { |
| 665 | struct cifsLockInfo *li, *tmp; |
| 666 | list_for_each_entry_safe(li, tmp, &lock->blist, blist) { |
| 667 | list_del_init(&li->blist); |
| 668 | wake_up(&li->block_q); |
| 669 | } |
| 670 | } |
| 671 | |
| 672 | static bool |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 673 | cifs_find_fid_lock_conflict(struct cifsFileInfo *cfile, __u64 offset, |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 674 | __u64 length, __u8 type, struct cifsFileInfo *cur, |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 675 | struct cifsLockInfo **conf_lock) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 676 | { |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 677 | struct cifsLockInfo *li; |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 678 | struct TCP_Server_Info *server = tlink_tcon(cfile->tlink)->ses->server; |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 679 | |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 680 | list_for_each_entry(li, &cfile->llist, llist) { |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 681 | if (offset + length <= li->offset || |
| 682 | offset >= li->offset + li->length) |
| 683 | continue; |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 684 | else if ((type & server->vals->shared_lock_type) && |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 685 | ((server->ops->compare_fids(cur, cfile) && |
| 686 | current->tgid == li->pid) || type == li->type)) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 687 | continue; |
| 688 | else { |
| 689 | *conf_lock = li; |
| 690 | return true; |
| 691 | } |
| 692 | } |
| 693 | return false; |
| 694 | } |
| 695 | |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 696 | static bool |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 697 | cifs_find_lock_conflict(struct cifsFileInfo *cfile, __u64 offset, __u64 length, |
| 698 | __u8 type, struct cifsLockInfo **conf_lock) |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 699 | { |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 700 | bool rc = false; |
| 701 | struct cifsFileInfo *fid, *tmp; |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 702 | struct cifsInodeInfo *cinode = CIFS_I(cfile->dentry->d_inode); |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 703 | |
| 704 | spin_lock(&cifs_file_list_lock); |
| 705 | list_for_each_entry_safe(fid, tmp, &cinode->openFileList, flist) { |
| 706 | rc = cifs_find_fid_lock_conflict(fid, offset, length, type, |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 707 | cfile, conf_lock); |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 708 | if (rc) |
| 709 | break; |
| 710 | } |
| 711 | spin_unlock(&cifs_file_list_lock); |
| 712 | |
| 713 | return rc; |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 714 | } |
| 715 | |
Pavel Shilovsky | 9a5101c | 2011-11-07 16:11:24 +0300 | [diff] [blame] | 716 | /* |
| 717 | * Check if there is another lock that prevents us to set the lock (mandatory |
| 718 | * style). If such a lock exists, update the flock structure with its |
| 719 | * properties. Otherwise, set the flock type to F_UNLCK if we can cache brlocks |
| 720 | * or leave it the same if we can't. Returns 0 if we don't need to request to |
| 721 | * the server or 1 otherwise. |
| 722 | */ |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 723 | static int |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 724 | cifs_lock_test(struct cifsFileInfo *cfile, __u64 offset, __u64 length, |
| 725 | __u8 type, struct file_lock *flock) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 726 | { |
| 727 | int rc = 0; |
| 728 | struct cifsLockInfo *conf_lock; |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 729 | struct cifsInodeInfo *cinode = CIFS_I(cfile->dentry->d_inode); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 730 | struct TCP_Server_Info *server = tlink_tcon(cfile->tlink)->ses->server; |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 731 | bool exist; |
| 732 | |
| 733 | mutex_lock(&cinode->lock_mutex); |
| 734 | |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 735 | exist = cifs_find_lock_conflict(cfile, offset, length, type, |
| 736 | &conf_lock); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 737 | if (exist) { |
| 738 | flock->fl_start = conf_lock->offset; |
| 739 | flock->fl_end = conf_lock->offset + conf_lock->length - 1; |
| 740 | flock->fl_pid = conf_lock->pid; |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 741 | if (conf_lock->type & server->vals->shared_lock_type) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 742 | flock->fl_type = F_RDLCK; |
| 743 | else |
| 744 | flock->fl_type = F_WRLCK; |
| 745 | } else if (!cinode->can_cache_brlcks) |
| 746 | rc = 1; |
| 747 | else |
| 748 | flock->fl_type = F_UNLCK; |
| 749 | |
| 750 | mutex_unlock(&cinode->lock_mutex); |
| 751 | return rc; |
| 752 | } |
| 753 | |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 754 | static void |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 755 | cifs_lock_add(struct cifsFileInfo *cfile, struct cifsLockInfo *lock) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 756 | { |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 757 | struct cifsInodeInfo *cinode = CIFS_I(cfile->dentry->d_inode); |
Pavel Shilovsky | d59dad2 | 2011-09-22 09:53:59 +0400 | [diff] [blame] | 758 | mutex_lock(&cinode->lock_mutex); |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 759 | list_add_tail(&lock->llist, &cfile->llist); |
Pavel Shilovsky | d59dad2 | 2011-09-22 09:53:59 +0400 | [diff] [blame] | 760 | mutex_unlock(&cinode->lock_mutex); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 761 | } |
| 762 | |
Pavel Shilovsky | 9a5101c | 2011-11-07 16:11:24 +0300 | [diff] [blame] | 763 | /* |
| 764 | * Set the byte-range lock (mandatory style). Returns: |
| 765 | * 1) 0, if we set the lock and don't need to request to the server; |
| 766 | * 2) 1, if no locks prevent us but we need to request to the server; |
| 767 | * 3) -EACCESS, if there is a lock that prevents us and wait is false. |
| 768 | */ |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 769 | static int |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 770 | cifs_lock_add_if(struct cifsFileInfo *cfile, struct cifsLockInfo *lock, |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 771 | bool wait) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 772 | { |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 773 | struct cifsLockInfo *conf_lock; |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 774 | struct cifsInodeInfo *cinode = CIFS_I(cfile->dentry->d_inode); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 775 | bool exist; |
| 776 | int rc = 0; |
| 777 | |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 778 | try_again: |
| 779 | exist = false; |
| 780 | mutex_lock(&cinode->lock_mutex); |
| 781 | |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 782 | exist = cifs_find_lock_conflict(cfile, lock->offset, lock->length, |
| 783 | lock->type, &conf_lock); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 784 | if (!exist && cinode->can_cache_brlcks) { |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 785 | list_add_tail(&lock->llist, &cfile->llist); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 786 | mutex_unlock(&cinode->lock_mutex); |
| 787 | return rc; |
| 788 | } |
| 789 | |
| 790 | if (!exist) |
| 791 | rc = 1; |
| 792 | else if (!wait) |
| 793 | rc = -EACCES; |
| 794 | else { |
| 795 | list_add_tail(&lock->blist, &conf_lock->blist); |
| 796 | mutex_unlock(&cinode->lock_mutex); |
| 797 | rc = wait_event_interruptible(lock->block_q, |
| 798 | (lock->blist.prev == &lock->blist) && |
| 799 | (lock->blist.next == &lock->blist)); |
| 800 | if (!rc) |
| 801 | goto try_again; |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 802 | mutex_lock(&cinode->lock_mutex); |
| 803 | list_del_init(&lock->blist); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 804 | } |
| 805 | |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 806 | mutex_unlock(&cinode->lock_mutex); |
| 807 | return rc; |
| 808 | } |
| 809 | |
Pavel Shilovsky | 9a5101c | 2011-11-07 16:11:24 +0300 | [diff] [blame] | 810 | /* |
| 811 | * Check if there is another lock that prevents us to set the lock (posix |
| 812 | * style). If such a lock exists, update the flock structure with its |
| 813 | * properties. Otherwise, set the flock type to F_UNLCK if we can cache brlocks |
| 814 | * or leave it the same if we can't. Returns 0 if we don't need to request to |
| 815 | * the server or 1 otherwise. |
| 816 | */ |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 817 | static int |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 818 | cifs_posix_lock_test(struct file *file, struct file_lock *flock) |
| 819 | { |
| 820 | int rc = 0; |
| 821 | struct cifsInodeInfo *cinode = CIFS_I(file->f_path.dentry->d_inode); |
| 822 | unsigned char saved_type = flock->fl_type; |
| 823 | |
Pavel Shilovsky | 5079276 | 2011-10-29 17:17:57 +0400 | [diff] [blame] | 824 | if ((flock->fl_flags & FL_POSIX) == 0) |
| 825 | return 1; |
| 826 | |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 827 | mutex_lock(&cinode->lock_mutex); |
| 828 | posix_test_lock(file, flock); |
| 829 | |
| 830 | if (flock->fl_type == F_UNLCK && !cinode->can_cache_brlcks) { |
| 831 | flock->fl_type = saved_type; |
| 832 | rc = 1; |
| 833 | } |
| 834 | |
| 835 | mutex_unlock(&cinode->lock_mutex); |
| 836 | return rc; |
| 837 | } |
| 838 | |
Pavel Shilovsky | 9a5101c | 2011-11-07 16:11:24 +0300 | [diff] [blame] | 839 | /* |
| 840 | * Set the byte-range lock (posix style). Returns: |
| 841 | * 1) 0, if we set the lock and don't need to request to the server; |
| 842 | * 2) 1, if we need to request to the server; |
| 843 | * 3) <0, if the error occurs while setting the lock. |
| 844 | */ |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 845 | static int |
| 846 | cifs_posix_lock_set(struct file *file, struct file_lock *flock) |
| 847 | { |
| 848 | struct cifsInodeInfo *cinode = CIFS_I(file->f_path.dentry->d_inode); |
Pavel Shilovsky | 5079276 | 2011-10-29 17:17:57 +0400 | [diff] [blame] | 849 | int rc = 1; |
| 850 | |
| 851 | if ((flock->fl_flags & FL_POSIX) == 0) |
| 852 | return rc; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 853 | |
Pavel Shilovsky | 66189be | 2012-03-28 21:56:19 +0400 | [diff] [blame] | 854 | try_again: |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 855 | mutex_lock(&cinode->lock_mutex); |
| 856 | if (!cinode->can_cache_brlcks) { |
| 857 | mutex_unlock(&cinode->lock_mutex); |
Pavel Shilovsky | 5079276 | 2011-10-29 17:17:57 +0400 | [diff] [blame] | 858 | return rc; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 859 | } |
Pavel Shilovsky | 66189be | 2012-03-28 21:56:19 +0400 | [diff] [blame] | 860 | |
| 861 | rc = posix_lock_file(file, flock, NULL); |
Steve French | 9ebb389 | 2012-04-01 13:52:54 -0500 | [diff] [blame] | 862 | mutex_unlock(&cinode->lock_mutex); |
Pavel Shilovsky | 66189be | 2012-03-28 21:56:19 +0400 | [diff] [blame] | 863 | if (rc == FILE_LOCK_DEFERRED) { |
| 864 | rc = wait_event_interruptible(flock->fl_wait, !flock->fl_next); |
| 865 | if (!rc) |
| 866 | goto try_again; |
| 867 | locks_delete_block(flock); |
| 868 | } |
Steve French | 9ebb389 | 2012-04-01 13:52:54 -0500 | [diff] [blame] | 869 | return rc; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 870 | } |
| 871 | |
| 872 | static int |
| 873 | cifs_push_mandatory_locks(struct cifsFileInfo *cfile) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 874 | { |
| 875 | int xid, rc = 0, stored_rc; |
| 876 | struct cifsLockInfo *li, *tmp; |
| 877 | struct cifs_tcon *tcon; |
| 878 | struct cifsInodeInfo *cinode = CIFS_I(cfile->dentry->d_inode); |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 879 | unsigned int num, max_num; |
| 880 | LOCKING_ANDX_RANGE *buf, *cur; |
| 881 | int types[] = {LOCKING_ANDX_LARGE_FILES, |
| 882 | LOCKING_ANDX_SHARED_LOCK | LOCKING_ANDX_LARGE_FILES}; |
| 883 | int i; |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 884 | |
| 885 | xid = GetXid(); |
| 886 | tcon = tlink_tcon(cfile->tlink); |
| 887 | |
| 888 | mutex_lock(&cinode->lock_mutex); |
| 889 | if (!cinode->can_cache_brlcks) { |
| 890 | mutex_unlock(&cinode->lock_mutex); |
| 891 | FreeXid(xid); |
| 892 | return rc; |
| 893 | } |
| 894 | |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 895 | max_num = (tcon->ses->server->maxBuf - sizeof(struct smb_hdr)) / |
| 896 | sizeof(LOCKING_ANDX_RANGE); |
| 897 | buf = kzalloc(max_num * sizeof(LOCKING_ANDX_RANGE), GFP_KERNEL); |
| 898 | if (!buf) { |
| 899 | mutex_unlock(&cinode->lock_mutex); |
| 900 | FreeXid(xid); |
| 901 | return rc; |
| 902 | } |
| 903 | |
| 904 | for (i = 0; i < 2; i++) { |
| 905 | cur = buf; |
| 906 | num = 0; |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 907 | list_for_each_entry_safe(li, tmp, &cfile->llist, llist) { |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 908 | if (li->type != types[i]) |
| 909 | continue; |
| 910 | cur->Pid = cpu_to_le16(li->pid); |
| 911 | cur->LengthLow = cpu_to_le32((u32)li->length); |
| 912 | cur->LengthHigh = cpu_to_le32((u32)(li->length>>32)); |
| 913 | cur->OffsetLow = cpu_to_le32((u32)li->offset); |
| 914 | cur->OffsetHigh = cpu_to_le32((u32)(li->offset>>32)); |
| 915 | if (++num == max_num) { |
| 916 | stored_rc = cifs_lockv(xid, tcon, cfile->netfid, |
Pavel Shilovsky | 04a6aa8 | 2012-02-28 14:16:55 +0300 | [diff] [blame] | 917 | (__u8)li->type, 0, num, |
| 918 | buf); |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 919 | if (stored_rc) |
| 920 | rc = stored_rc; |
| 921 | cur = buf; |
| 922 | num = 0; |
| 923 | } else |
| 924 | cur++; |
| 925 | } |
| 926 | |
| 927 | if (num) { |
| 928 | stored_rc = cifs_lockv(xid, tcon, cfile->netfid, |
Pavel Shilovsky | 04a6aa8 | 2012-02-28 14:16:55 +0300 | [diff] [blame] | 929 | (__u8)types[i], 0, num, buf); |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 930 | if (stored_rc) |
| 931 | rc = stored_rc; |
| 932 | } |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 933 | } |
| 934 | |
| 935 | cinode->can_cache_brlcks = false; |
| 936 | mutex_unlock(&cinode->lock_mutex); |
| 937 | |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 938 | kfree(buf); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 939 | FreeXid(xid); |
| 940 | return rc; |
| 941 | } |
| 942 | |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 943 | /* copied from fs/locks.c with a name change */ |
| 944 | #define cifs_for_each_lock(inode, lockp) \ |
| 945 | for (lockp = &inode->i_flock; *lockp != NULL; \ |
| 946 | lockp = &(*lockp)->fl_next) |
| 947 | |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 948 | struct lock_to_push { |
| 949 | struct list_head llist; |
| 950 | __u64 offset; |
| 951 | __u64 length; |
| 952 | __u32 pid; |
| 953 | __u16 netfid; |
| 954 | __u8 type; |
| 955 | }; |
| 956 | |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 957 | static int |
| 958 | cifs_push_posix_locks(struct cifsFileInfo *cfile) |
| 959 | { |
| 960 | struct cifsInodeInfo *cinode = CIFS_I(cfile->dentry->d_inode); |
| 961 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
| 962 | struct file_lock *flock, **before; |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 963 | unsigned int count = 0, i = 0; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 964 | int rc = 0, xid, type; |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 965 | struct list_head locks_to_send, *el; |
| 966 | struct lock_to_push *lck, *tmp; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 967 | __u64 length; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 968 | |
| 969 | xid = GetXid(); |
| 970 | |
| 971 | mutex_lock(&cinode->lock_mutex); |
| 972 | if (!cinode->can_cache_brlcks) { |
| 973 | mutex_unlock(&cinode->lock_mutex); |
| 974 | FreeXid(xid); |
| 975 | return rc; |
| 976 | } |
| 977 | |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 978 | lock_flocks(); |
| 979 | cifs_for_each_lock(cfile->dentry->d_inode, before) { |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 980 | if ((*before)->fl_flags & FL_POSIX) |
| 981 | count++; |
| 982 | } |
| 983 | unlock_flocks(); |
| 984 | |
| 985 | INIT_LIST_HEAD(&locks_to_send); |
| 986 | |
| 987 | /* |
Pavel Shilovsky | ce85852 | 2012-03-17 09:46:55 +0300 | [diff] [blame] | 988 | * Allocating count locks is enough because no FL_POSIX locks can be |
| 989 | * added to the list while we are holding cinode->lock_mutex that |
| 990 | * protects locking operations of this inode. |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 991 | */ |
| 992 | for (; i < count; i++) { |
| 993 | lck = kmalloc(sizeof(struct lock_to_push), GFP_KERNEL); |
| 994 | if (!lck) { |
| 995 | rc = -ENOMEM; |
| 996 | goto err_out; |
| 997 | } |
| 998 | list_add_tail(&lck->llist, &locks_to_send); |
| 999 | } |
| 1000 | |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1001 | el = locks_to_send.next; |
| 1002 | lock_flocks(); |
| 1003 | cifs_for_each_lock(cfile->dentry->d_inode, before) { |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1004 | flock = *before; |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1005 | if ((flock->fl_flags & FL_POSIX) == 0) |
| 1006 | continue; |
Pavel Shilovsky | ce85852 | 2012-03-17 09:46:55 +0300 | [diff] [blame] | 1007 | if (el == &locks_to_send) { |
| 1008 | /* |
| 1009 | * The list ended. We don't have enough allocated |
| 1010 | * structures - something is really wrong. |
| 1011 | */ |
| 1012 | cERROR(1, "Can't push all brlocks!"); |
| 1013 | break; |
| 1014 | } |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1015 | length = 1 + flock->fl_end - flock->fl_start; |
| 1016 | if (flock->fl_type == F_RDLCK || flock->fl_type == F_SHLCK) |
| 1017 | type = CIFS_RDLCK; |
| 1018 | else |
| 1019 | type = CIFS_WRLCK; |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1020 | lck = list_entry(el, struct lock_to_push, llist); |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1021 | lck->pid = flock->fl_pid; |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1022 | lck->netfid = cfile->netfid; |
| 1023 | lck->length = length; |
| 1024 | lck->type = type; |
| 1025 | lck->offset = flock->fl_start; |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1026 | el = el->next; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1027 | } |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1028 | unlock_flocks(); |
| 1029 | |
| 1030 | list_for_each_entry_safe(lck, tmp, &locks_to_send, llist) { |
| 1031 | struct file_lock tmp_lock; |
| 1032 | int stored_rc; |
| 1033 | |
| 1034 | tmp_lock.fl_start = lck->offset; |
| 1035 | stored_rc = CIFSSMBPosixLock(xid, tcon, lck->netfid, lck->pid, |
| 1036 | 0, lck->length, &tmp_lock, |
| 1037 | lck->type, 0); |
| 1038 | if (stored_rc) |
| 1039 | rc = stored_rc; |
| 1040 | list_del(&lck->llist); |
| 1041 | kfree(lck); |
| 1042 | } |
| 1043 | |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1044 | out: |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1045 | cinode->can_cache_brlcks = false; |
| 1046 | mutex_unlock(&cinode->lock_mutex); |
| 1047 | |
| 1048 | FreeXid(xid); |
| 1049 | return rc; |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1050 | err_out: |
| 1051 | list_for_each_entry_safe(lck, tmp, &locks_to_send, llist) { |
| 1052 | list_del(&lck->llist); |
| 1053 | kfree(lck); |
| 1054 | } |
| 1055 | goto out; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1056 | } |
| 1057 | |
| 1058 | static int |
| 1059 | cifs_push_locks(struct cifsFileInfo *cfile) |
| 1060 | { |
| 1061 | struct cifs_sb_info *cifs_sb = CIFS_SB(cfile->dentry->d_sb); |
| 1062 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
| 1063 | |
| 1064 | if ((tcon->ses->capabilities & CAP_UNIX) && |
| 1065 | (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) && |
| 1066 | ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0)) |
| 1067 | return cifs_push_posix_locks(cfile); |
| 1068 | |
| 1069 | return cifs_push_mandatory_locks(cfile); |
| 1070 | } |
| 1071 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1072 | static void |
Pavel Shilovsky | 04a6aa8 | 2012-02-28 14:16:55 +0300 | [diff] [blame] | 1073 | cifs_read_flock(struct file_lock *flock, __u32 *type, int *lock, int *unlock, |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1074 | bool *wait_flag, struct TCP_Server_Info *server) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | { |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1076 | if (flock->fl_flags & FL_POSIX) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1077 | cFYI(1, "Posix"); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1078 | if (flock->fl_flags & FL_FLOCK) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1079 | cFYI(1, "Flock"); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1080 | if (flock->fl_flags & FL_SLEEP) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1081 | cFYI(1, "Blocking lock"); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1082 | *wait_flag = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | } |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1084 | if (flock->fl_flags & FL_ACCESS) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1085 | cFYI(1, "Process suspended by mandatory locking - " |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1086 | "not implemented yet"); |
| 1087 | if (flock->fl_flags & FL_LEASE) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1088 | cFYI(1, "Lease on file - not implemented yet"); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1089 | if (flock->fl_flags & |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | (~(FL_POSIX | FL_FLOCK | FL_SLEEP | FL_ACCESS | FL_LEASE))) |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1091 | cFYI(1, "Unknown lock flags 0x%x", flock->fl_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1093 | *type = server->vals->large_lock_type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1094 | if (flock->fl_type == F_WRLCK) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1095 | cFYI(1, "F_WRLCK "); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1096 | *type |= server->vals->exclusive_lock_type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1097 | *lock = 1; |
| 1098 | } else if (flock->fl_type == F_UNLCK) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1099 | cFYI(1, "F_UNLCK"); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1100 | *type |= server->vals->unlock_lock_type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1101 | *unlock = 1; |
| 1102 | /* Check if unlock includes more than one lock range */ |
| 1103 | } else if (flock->fl_type == F_RDLCK) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1104 | cFYI(1, "F_RDLCK"); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1105 | *type |= server->vals->shared_lock_type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1106 | *lock = 1; |
| 1107 | } else if (flock->fl_type == F_EXLCK) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1108 | cFYI(1, "F_EXLCK"); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1109 | *type |= server->vals->exclusive_lock_type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1110 | *lock = 1; |
| 1111 | } else if (flock->fl_type == F_SHLCK) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1112 | cFYI(1, "F_SHLCK"); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1113 | *type |= server->vals->shared_lock_type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1114 | *lock = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | } else |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1116 | cFYI(1, "Unknown type of lock"); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1117 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1119 | static int |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 1120 | cifs_mandatory_lock(int xid, struct cifsFileInfo *cfile, __u64 offset, |
| 1121 | __u64 length, __u32 type, int lock, int unlock, bool wait) |
| 1122 | { |
| 1123 | return CIFSSMBLock(xid, tlink_tcon(cfile->tlink), cfile->netfid, |
| 1124 | current->tgid, length, offset, unlock, lock, |
| 1125 | (__u8)type, wait, 0); |
| 1126 | } |
| 1127 | |
| 1128 | static int |
Pavel Shilovsky | 04a6aa8 | 2012-02-28 14:16:55 +0300 | [diff] [blame] | 1129 | cifs_getlk(struct file *file, struct file_lock *flock, __u32 type, |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1130 | bool wait_flag, bool posix_lck, int xid) |
| 1131 | { |
| 1132 | int rc = 0; |
| 1133 | __u64 length = 1 + flock->fl_end - flock->fl_start; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1134 | struct cifsFileInfo *cfile = (struct cifsFileInfo *)file->private_data; |
| 1135 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1136 | struct TCP_Server_Info *server = tcon->ses->server; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1137 | __u16 netfid = cfile->netfid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1139 | if (posix_lck) { |
| 1140 | int posix_lock_type; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1141 | |
| 1142 | rc = cifs_posix_lock_test(file, flock); |
| 1143 | if (!rc) |
| 1144 | return rc; |
| 1145 | |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1146 | if (type & server->vals->shared_lock_type) |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1147 | posix_lock_type = CIFS_RDLCK; |
| 1148 | else |
| 1149 | posix_lock_type = CIFS_WRLCK; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1150 | rc = CIFSSMBPosixLock(xid, tcon, netfid, current->tgid, |
| 1151 | 1 /* get */, length, flock, |
| 1152 | posix_lock_type, wait_flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | return rc; |
| 1154 | } |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1155 | |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1156 | rc = cifs_lock_test(cfile, flock->fl_start, length, type, flock); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1157 | if (!rc) |
| 1158 | return rc; |
| 1159 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1160 | /* BB we could chain these into one lock request BB */ |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 1161 | rc = cifs_mandatory_lock(xid, cfile, flock->fl_start, length, type, |
| 1162 | 1, 0, false); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1163 | if (rc == 0) { |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 1164 | rc = cifs_mandatory_lock(xid, cfile, flock->fl_start, length, |
| 1165 | type, 0, 1, false); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1166 | flock->fl_type = F_UNLCK; |
| 1167 | if (rc != 0) |
| 1168 | cERROR(1, "Error unlocking previously locked " |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1169 | "range %d during test of lock", rc); |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 1170 | return 0; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1171 | } |
| 1172 | |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1173 | if (type & server->vals->shared_lock_type) { |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1174 | flock->fl_type = F_WRLCK; |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 1175 | return 0; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1176 | } |
| 1177 | |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 1178 | rc = cifs_mandatory_lock(xid, cfile, flock->fl_start, length, |
| 1179 | type | server->vals->shared_lock_type, 1, 0, |
| 1180 | false); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1181 | if (rc == 0) { |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 1182 | rc = cifs_mandatory_lock(xid, cfile, flock->fl_start, length, |
| 1183 | type | server->vals->shared_lock_type, |
| 1184 | 0, 1, false); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1185 | flock->fl_type = F_RDLCK; |
| 1186 | if (rc != 0) |
| 1187 | cERROR(1, "Error unlocking previously locked " |
| 1188 | "range %d during test of lock", rc); |
| 1189 | } else |
| 1190 | flock->fl_type = F_WRLCK; |
| 1191 | |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 1192 | return 0; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1193 | } |
| 1194 | |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1195 | static void |
| 1196 | cifs_move_llist(struct list_head *source, struct list_head *dest) |
| 1197 | { |
| 1198 | struct list_head *li, *tmp; |
| 1199 | list_for_each_safe(li, tmp, source) |
| 1200 | list_move(li, dest); |
| 1201 | } |
| 1202 | |
| 1203 | static void |
| 1204 | cifs_free_llist(struct list_head *llist) |
| 1205 | { |
| 1206 | struct cifsLockInfo *li, *tmp; |
| 1207 | list_for_each_entry_safe(li, tmp, llist, llist) { |
| 1208 | cifs_del_lock_waiters(li); |
| 1209 | list_del(&li->llist); |
| 1210 | kfree(li); |
| 1211 | } |
| 1212 | } |
| 1213 | |
| 1214 | static int |
| 1215 | cifs_unlock_range(struct cifsFileInfo *cfile, struct file_lock *flock, int xid) |
| 1216 | { |
| 1217 | int rc = 0, stored_rc; |
| 1218 | int types[] = {LOCKING_ANDX_LARGE_FILES, |
| 1219 | LOCKING_ANDX_SHARED_LOCK | LOCKING_ANDX_LARGE_FILES}; |
| 1220 | unsigned int i; |
| 1221 | unsigned int max_num, num; |
| 1222 | LOCKING_ANDX_RANGE *buf, *cur; |
| 1223 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
| 1224 | struct cifsInodeInfo *cinode = CIFS_I(cfile->dentry->d_inode); |
| 1225 | struct cifsLockInfo *li, *tmp; |
| 1226 | __u64 length = 1 + flock->fl_end - flock->fl_start; |
| 1227 | struct list_head tmp_llist; |
| 1228 | |
| 1229 | INIT_LIST_HEAD(&tmp_llist); |
| 1230 | |
| 1231 | max_num = (tcon->ses->server->maxBuf - sizeof(struct smb_hdr)) / |
| 1232 | sizeof(LOCKING_ANDX_RANGE); |
| 1233 | buf = kzalloc(max_num * sizeof(LOCKING_ANDX_RANGE), GFP_KERNEL); |
| 1234 | if (!buf) |
| 1235 | return -ENOMEM; |
| 1236 | |
| 1237 | mutex_lock(&cinode->lock_mutex); |
| 1238 | for (i = 0; i < 2; i++) { |
| 1239 | cur = buf; |
| 1240 | num = 0; |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1241 | list_for_each_entry_safe(li, tmp, &cfile->llist, llist) { |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1242 | if (flock->fl_start > li->offset || |
| 1243 | (flock->fl_start + length) < |
| 1244 | (li->offset + li->length)) |
| 1245 | continue; |
| 1246 | if (current->tgid != li->pid) |
| 1247 | continue; |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1248 | if (types[i] != li->type) |
| 1249 | continue; |
| 1250 | if (!cinode->can_cache_brlcks) { |
| 1251 | cur->Pid = cpu_to_le16(li->pid); |
| 1252 | cur->LengthLow = cpu_to_le32((u32)li->length); |
| 1253 | cur->LengthHigh = |
| 1254 | cpu_to_le32((u32)(li->length>>32)); |
| 1255 | cur->OffsetLow = cpu_to_le32((u32)li->offset); |
| 1256 | cur->OffsetHigh = |
| 1257 | cpu_to_le32((u32)(li->offset>>32)); |
| 1258 | /* |
| 1259 | * We need to save a lock here to let us add |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1260 | * it again to the file's list if the unlock |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1261 | * range request fails on the server. |
| 1262 | */ |
| 1263 | list_move(&li->llist, &tmp_llist); |
| 1264 | if (++num == max_num) { |
| 1265 | stored_rc = cifs_lockv(xid, tcon, |
| 1266 | cfile->netfid, |
| 1267 | li->type, num, |
| 1268 | 0, buf); |
| 1269 | if (stored_rc) { |
| 1270 | /* |
| 1271 | * We failed on the unlock range |
| 1272 | * request - add all locks from |
| 1273 | * the tmp list to the head of |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1274 | * the file's list. |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1275 | */ |
| 1276 | cifs_move_llist(&tmp_llist, |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1277 | &cfile->llist); |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1278 | rc = stored_rc; |
| 1279 | } else |
| 1280 | /* |
| 1281 | * The unlock range request |
| 1282 | * succeed - free the tmp list. |
| 1283 | */ |
| 1284 | cifs_free_llist(&tmp_llist); |
| 1285 | cur = buf; |
| 1286 | num = 0; |
| 1287 | } else |
| 1288 | cur++; |
| 1289 | } else { |
| 1290 | /* |
| 1291 | * We can cache brlock requests - simply remove |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1292 | * a lock from the file's list. |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1293 | */ |
| 1294 | list_del(&li->llist); |
| 1295 | cifs_del_lock_waiters(li); |
| 1296 | kfree(li); |
| 1297 | } |
| 1298 | } |
| 1299 | if (num) { |
| 1300 | stored_rc = cifs_lockv(xid, tcon, cfile->netfid, |
| 1301 | types[i], num, 0, buf); |
| 1302 | if (stored_rc) { |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1303 | cifs_move_llist(&tmp_llist, &cfile->llist); |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1304 | rc = stored_rc; |
| 1305 | } else |
| 1306 | cifs_free_llist(&tmp_llist); |
| 1307 | } |
| 1308 | } |
| 1309 | |
| 1310 | mutex_unlock(&cinode->lock_mutex); |
| 1311 | kfree(buf); |
| 1312 | return rc; |
| 1313 | } |
| 1314 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1315 | static int |
Pavel Shilovsky | 04a6aa8 | 2012-02-28 14:16:55 +0300 | [diff] [blame] | 1316 | cifs_setlk(struct file *file, struct file_lock *flock, __u32 type, |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1317 | bool wait_flag, bool posix_lck, int lock, int unlock, int xid) |
| 1318 | { |
| 1319 | int rc = 0; |
| 1320 | __u64 length = 1 + flock->fl_end - flock->fl_start; |
| 1321 | struct cifsFileInfo *cfile = (struct cifsFileInfo *)file->private_data; |
| 1322 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1323 | struct TCP_Server_Info *server = tcon->ses->server; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1324 | __u16 netfid = cfile->netfid; |
| 1325 | |
| 1326 | if (posix_lck) { |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1327 | int posix_lock_type; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1328 | |
| 1329 | rc = cifs_posix_lock_set(file, flock); |
| 1330 | if (!rc || rc < 0) |
| 1331 | return rc; |
| 1332 | |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1333 | if (type & server->vals->shared_lock_type) |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1334 | posix_lock_type = CIFS_RDLCK; |
| 1335 | else |
| 1336 | posix_lock_type = CIFS_WRLCK; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1337 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1338 | if (unlock == 1) |
Steve French | beb84dc | 2006-03-03 23:36:34 +0000 | [diff] [blame] | 1339 | posix_lock_type = CIFS_UNLCK; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1340 | |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1341 | rc = CIFSSMBPosixLock(xid, tcon, netfid, current->tgid, |
| 1342 | 0 /* set */, length, flock, |
| 1343 | posix_lock_type, wait_flag); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1344 | goto out; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1345 | } |
| 1346 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1347 | if (lock) { |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 1348 | struct cifsLockInfo *lock; |
| 1349 | |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1350 | lock = cifs_lock_init(flock->fl_start, length, type); |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 1351 | if (!lock) |
| 1352 | return -ENOMEM; |
| 1353 | |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1354 | rc = cifs_lock_add_if(cfile, lock, wait_flag); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1355 | if (rc < 0) |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 1356 | kfree(lock); |
| 1357 | if (rc <= 0) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1358 | goto out; |
| 1359 | |
Pavel Shilovsky | 7f92447 | 2012-03-28 17:10:25 +0400 | [diff] [blame^] | 1360 | rc = cifs_mandatory_lock(xid, cfile, flock->fl_start, length, |
| 1361 | type, 1, 0, wait_flag); |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 1362 | if (rc) { |
| 1363 | kfree(lock); |
| 1364 | goto out; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1365 | } |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 1366 | |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1367 | cifs_lock_add(cfile, lock); |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1368 | } else if (unlock) |
| 1369 | rc = cifs_unlock_range(cfile, flock, xid); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1370 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1371 | out: |
| 1372 | if (flock->fl_flags & FL_POSIX) |
Steve French | 9ebb389 | 2012-04-01 13:52:54 -0500 | [diff] [blame] | 1373 | posix_lock_file_wait(file, flock); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1374 | return rc; |
| 1375 | } |
| 1376 | |
| 1377 | int cifs_lock(struct file *file, int cmd, struct file_lock *flock) |
| 1378 | { |
| 1379 | int rc, xid; |
| 1380 | int lock = 0, unlock = 0; |
| 1381 | bool wait_flag = false; |
| 1382 | bool posix_lck = false; |
| 1383 | struct cifs_sb_info *cifs_sb; |
| 1384 | struct cifs_tcon *tcon; |
| 1385 | struct cifsInodeInfo *cinode; |
| 1386 | struct cifsFileInfo *cfile; |
| 1387 | __u16 netfid; |
Pavel Shilovsky | 04a6aa8 | 2012-02-28 14:16:55 +0300 | [diff] [blame] | 1388 | __u32 type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1389 | |
| 1390 | rc = -EACCES; |
| 1391 | xid = GetXid(); |
| 1392 | |
| 1393 | cFYI(1, "Lock parm: 0x%x flockflags: 0x%x flocktype: 0x%x start: %lld " |
| 1394 | "end: %lld", cmd, flock->fl_flags, flock->fl_type, |
| 1395 | flock->fl_start, flock->fl_end); |
| 1396 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1397 | cfile = (struct cifsFileInfo *)file->private_data; |
| 1398 | tcon = tlink_tcon(cfile->tlink); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1399 | |
| 1400 | cifs_read_flock(flock, &type, &lock, &unlock, &wait_flag, |
| 1401 | tcon->ses->server); |
| 1402 | |
| 1403 | cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1404 | netfid = cfile->netfid; |
| 1405 | cinode = CIFS_I(file->f_path.dentry->d_inode); |
| 1406 | |
| 1407 | if ((tcon->ses->capabilities & CAP_UNIX) && |
| 1408 | (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) && |
| 1409 | ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0)) |
| 1410 | posix_lck = true; |
| 1411 | /* |
| 1412 | * BB add code here to normalize offset and length to account for |
| 1413 | * negative length which we can not accept over the wire. |
| 1414 | */ |
| 1415 | if (IS_GETLK(cmd)) { |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1416 | rc = cifs_getlk(file, flock, type, wait_flag, posix_lck, xid); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1417 | FreeXid(xid); |
| 1418 | return rc; |
| 1419 | } |
| 1420 | |
| 1421 | if (!lock && !unlock) { |
| 1422 | /* |
| 1423 | * if no lock or unlock then nothing to do since we do not |
| 1424 | * know what it is |
| 1425 | */ |
| 1426 | FreeXid(xid); |
| 1427 | return -EOPNOTSUPP; |
| 1428 | } |
| 1429 | |
| 1430 | rc = cifs_setlk(file, flock, type, wait_flag, posix_lck, lock, unlock, |
| 1431 | xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | FreeXid(xid); |
| 1433 | return rc; |
| 1434 | } |
| 1435 | |
Jeff Layton | 597b027 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1436 | /* |
| 1437 | * update the file size (if needed) after a write. Should be called with |
| 1438 | * the inode->i_lock held |
| 1439 | */ |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 1440 | void |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1441 | cifs_update_eof(struct cifsInodeInfo *cifsi, loff_t offset, |
| 1442 | unsigned int bytes_written) |
| 1443 | { |
| 1444 | loff_t end_of_write = offset + bytes_written; |
| 1445 | |
| 1446 | if (end_of_write > cifsi->server_eof) |
| 1447 | cifsi->server_eof = end_of_write; |
| 1448 | } |
| 1449 | |
Pavel Shilovsky | fa2989f | 2011-05-26 10:01:59 +0400 | [diff] [blame] | 1450 | static ssize_t cifs_write(struct cifsFileInfo *open_file, __u32 pid, |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1451 | const char *write_data, size_t write_size, |
| 1452 | loff_t *poffset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | { |
| 1454 | int rc = 0; |
| 1455 | unsigned int bytes_written = 0; |
| 1456 | unsigned int total_written; |
| 1457 | struct cifs_sb_info *cifs_sb; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 1458 | struct cifs_tcon *pTcon; |
Jeff Layton | 7749981 | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 1459 | int xid; |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1460 | struct dentry *dentry = open_file->dentry; |
| 1461 | struct cifsInodeInfo *cifsi = CIFS_I(dentry->d_inode); |
Pavel Shilovsky | fa2989f | 2011-05-26 10:01:59 +0400 | [diff] [blame] | 1462 | struct cifs_io_parms io_parms; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1464 | cifs_sb = CIFS_SB(dentry->d_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1466 | cFYI(1, "write %zd bytes to offset %lld of %s", write_size, |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1467 | *poffset, dentry->d_name.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1468 | |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1469 | pTcon = tlink_tcon(open_file->tlink); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | xid = GetXid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | for (total_written = 0; write_size > total_written; |
| 1474 | total_written += bytes_written) { |
| 1475 | rc = -EAGAIN; |
| 1476 | while (rc == -EAGAIN) { |
Jeff Layton | ca83ce3 | 2011-04-12 09:13:44 -0400 | [diff] [blame] | 1477 | struct kvec iov[2]; |
| 1478 | unsigned int len; |
| 1479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1480 | if (open_file->invalidHandle) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | /* we could deadlock if we called |
| 1482 | filemap_fdatawait from here so tell |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1483 | reopen_file not to flush data to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | server now */ |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 1485 | rc = cifs_reopen_file(open_file, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | if (rc != 0) |
| 1487 | break; |
| 1488 | } |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 1489 | |
Jeff Layton | ca83ce3 | 2011-04-12 09:13:44 -0400 | [diff] [blame] | 1490 | len = min((size_t)cifs_sb->wsize, |
| 1491 | write_size - total_written); |
| 1492 | /* iov[0] is reserved for smb header */ |
| 1493 | iov[1].iov_base = (char *)write_data + total_written; |
| 1494 | iov[1].iov_len = len; |
Pavel Shilovsky | fa2989f | 2011-05-26 10:01:59 +0400 | [diff] [blame] | 1495 | io_parms.netfid = open_file->netfid; |
| 1496 | io_parms.pid = pid; |
| 1497 | io_parms.tcon = pTcon; |
| 1498 | io_parms.offset = *poffset; |
| 1499 | io_parms.length = len; |
| 1500 | rc = CIFSSMBWrite2(xid, &io_parms, &bytes_written, iov, |
| 1501 | 1, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | } |
| 1503 | if (rc || (bytes_written == 0)) { |
| 1504 | if (total_written) |
| 1505 | break; |
| 1506 | else { |
| 1507 | FreeXid(xid); |
| 1508 | return rc; |
| 1509 | } |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1510 | } else { |
Jeff Layton | 597b027 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1511 | spin_lock(&dentry->d_inode->i_lock); |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1512 | cifs_update_eof(cifsi, *poffset, bytes_written); |
Jeff Layton | 597b027 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1513 | spin_unlock(&dentry->d_inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | *poffset += bytes_written; |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1515 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | } |
| 1517 | |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1518 | cifs_stats_bytes_written(pTcon, total_written); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1520 | if (total_written > 0) { |
| 1521 | spin_lock(&dentry->d_inode->i_lock); |
| 1522 | if (*poffset > dentry->d_inode->i_size) |
| 1523 | i_size_write(dentry->d_inode, *poffset); |
| 1524 | spin_unlock(&dentry->d_inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | } |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1526 | mark_inode_dirty_sync(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | FreeXid(xid); |
| 1528 | return total_written; |
| 1529 | } |
| 1530 | |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1531 | struct cifsFileInfo *find_readable_file(struct cifsInodeInfo *cifs_inode, |
| 1532 | bool fsuid_only) |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1533 | { |
| 1534 | struct cifsFileInfo *open_file = NULL; |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1535 | struct cifs_sb_info *cifs_sb = CIFS_SB(cifs_inode->vfs_inode.i_sb); |
| 1536 | |
| 1537 | /* only filter by fsuid on multiuser mounts */ |
| 1538 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER)) |
| 1539 | fsuid_only = false; |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1540 | |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1541 | spin_lock(&cifs_file_list_lock); |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1542 | /* we could simply get the first_list_entry since write-only entries |
| 1543 | are always at the end of the list but since the first entry might |
| 1544 | have a close pending, we go through the whole list */ |
| 1545 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1546 | if (fsuid_only && open_file->uid != current_fsuid()) |
| 1547 | continue; |
Jeff Layton | 2e396b8 | 2010-10-15 15:34:01 -0400 | [diff] [blame] | 1548 | if (OPEN_FMODE(open_file->f_flags) & FMODE_READ) { |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1549 | if (!open_file->invalidHandle) { |
| 1550 | /* found a good file */ |
| 1551 | /* lock it so it will not be closed on us */ |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 1552 | cifsFileInfo_get(open_file); |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1553 | spin_unlock(&cifs_file_list_lock); |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1554 | return open_file; |
| 1555 | } /* else might as well continue, and look for |
| 1556 | another, or simply have the caller reopen it |
| 1557 | again rather than trying to fix this handle */ |
| 1558 | } else /* write only file */ |
| 1559 | break; /* write only files are last so must be done */ |
| 1560 | } |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1561 | spin_unlock(&cifs_file_list_lock); |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1562 | return NULL; |
| 1563 | } |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1564 | |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1565 | struct cifsFileInfo *find_writable_file(struct cifsInodeInfo *cifs_inode, |
| 1566 | bool fsuid_only) |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1567 | { |
| 1568 | struct cifsFileInfo *open_file; |
Jeff Layton | d389229 | 2010-11-02 16:22:50 -0400 | [diff] [blame] | 1569 | struct cifs_sb_info *cifs_sb; |
Jeff Layton | 2846d38 | 2008-09-22 21:33:33 -0400 | [diff] [blame] | 1570 | bool any_available = false; |
Steve French | dd99cd8 | 2005-10-05 19:32:49 -0700 | [diff] [blame] | 1571 | int rc; |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1572 | |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1573 | /* Having a null inode here (because mapping->host was set to zero by |
| 1574 | the VFS or MM) should not happen but we had reports of on oops (due to |
| 1575 | it being zero) during stress testcases so we need to check for it */ |
| 1576 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1577 | if (cifs_inode == NULL) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1578 | cERROR(1, "Null inode passed to cifs_writeable_file"); |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1579 | dump_stack(); |
| 1580 | return NULL; |
| 1581 | } |
| 1582 | |
Jeff Layton | d389229 | 2010-11-02 16:22:50 -0400 | [diff] [blame] | 1583 | cifs_sb = CIFS_SB(cifs_inode->vfs_inode.i_sb); |
| 1584 | |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1585 | /* only filter by fsuid on multiuser mounts */ |
| 1586 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER)) |
| 1587 | fsuid_only = false; |
| 1588 | |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1589 | spin_lock(&cifs_file_list_lock); |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1590 | refind_writable: |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1591 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1592 | if (!any_available && open_file->pid != current->tgid) |
| 1593 | continue; |
| 1594 | if (fsuid_only && open_file->uid != current_fsuid()) |
| 1595 | continue; |
Jeff Layton | 2e396b8 | 2010-10-15 15:34:01 -0400 | [diff] [blame] | 1596 | if (OPEN_FMODE(open_file->f_flags) & FMODE_WRITE) { |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 1597 | cifsFileInfo_get(open_file); |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1598 | |
| 1599 | if (!open_file->invalidHandle) { |
| 1600 | /* found a good writable file */ |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1601 | spin_unlock(&cifs_file_list_lock); |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1602 | return open_file; |
| 1603 | } |
Steve French | 8840dee | 2007-11-16 23:05:52 +0000 | [diff] [blame] | 1604 | |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1605 | spin_unlock(&cifs_file_list_lock); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 1606 | |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1607 | /* Had to unlock since following call can block */ |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 1608 | rc = cifs_reopen_file(open_file, false); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 1609 | if (!rc) |
| 1610 | return open_file; |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1611 | |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 1612 | /* if it fails, try another handle if possible */ |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1613 | cFYI(1, "wp failed on reopen file"); |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 1614 | cifsFileInfo_put(open_file); |
Steve French | 8840dee | 2007-11-16 23:05:52 +0000 | [diff] [blame] | 1615 | |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 1616 | spin_lock(&cifs_file_list_lock); |
| 1617 | |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1618 | /* else we simply continue to the next entry. Thus |
| 1619 | we do not loop on reopen errors. If we |
| 1620 | can not reopen the file, for example if we |
| 1621 | reconnected to a server with another client |
| 1622 | racing to delete or lock the file we would not |
| 1623 | make progress if we restarted before the beginning |
| 1624 | of the loop here. */ |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1625 | } |
| 1626 | } |
Jeff Layton | 2846d38 | 2008-09-22 21:33:33 -0400 | [diff] [blame] | 1627 | /* couldn't find useable FH with same pid, try any available */ |
| 1628 | if (!any_available) { |
| 1629 | any_available = true; |
| 1630 | goto refind_writable; |
| 1631 | } |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1632 | spin_unlock(&cifs_file_list_lock); |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1633 | return NULL; |
| 1634 | } |
| 1635 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to) |
| 1637 | { |
| 1638 | struct address_space *mapping = page->mapping; |
| 1639 | loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT; |
| 1640 | char *write_data; |
| 1641 | int rc = -EFAULT; |
| 1642 | int bytes_written = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | struct inode *inode; |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1644 | struct cifsFileInfo *open_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | |
| 1646 | if (!mapping || !mapping->host) |
| 1647 | return -EFAULT; |
| 1648 | |
| 1649 | inode = page->mapping->host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | |
| 1651 | offset += (loff_t)from; |
| 1652 | write_data = kmap(page); |
| 1653 | write_data += from; |
| 1654 | |
| 1655 | if ((to > PAGE_CACHE_SIZE) || (from > to)) { |
| 1656 | kunmap(page); |
| 1657 | return -EIO; |
| 1658 | } |
| 1659 | |
| 1660 | /* racing with truncate? */ |
| 1661 | if (offset > mapping->host->i_size) { |
| 1662 | kunmap(page); |
| 1663 | return 0; /* don't care */ |
| 1664 | } |
| 1665 | |
| 1666 | /* check to make sure that we are not extending the file */ |
| 1667 | if (mapping->host->i_size - offset < (loff_t)to) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1668 | to = (unsigned)(mapping->host->i_size - offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1670 | open_file = find_writable_file(CIFS_I(mapping->host), false); |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1671 | if (open_file) { |
Pavel Shilovsky | fa2989f | 2011-05-26 10:01:59 +0400 | [diff] [blame] | 1672 | bytes_written = cifs_write(open_file, open_file->pid, |
| 1673 | write_data, to - from, &offset); |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 1674 | cifsFileInfo_put(open_file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | /* Does mm or vfs already set times? */ |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1676 | inode->i_atime = inode->i_mtime = current_fs_time(inode->i_sb); |
Steve French | bb5a9a0 | 2007-12-31 04:21:29 +0000 | [diff] [blame] | 1677 | if ((bytes_written > 0) && (offset)) |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1678 | rc = 0; |
Steve French | bb5a9a0 | 2007-12-31 04:21:29 +0000 | [diff] [blame] | 1679 | else if (bytes_written < 0) |
| 1680 | rc = bytes_written; |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1681 | } else { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1682 | cFYI(1, "No writeable filehandles for inode"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | rc = -EIO; |
| 1684 | } |
| 1685 | |
| 1686 | kunmap(page); |
| 1687 | return rc; |
| 1688 | } |
| 1689 | |
Jeff Layton | e949287 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1690 | /* |
| 1691 | * Marshal up the iov array, reserving the first one for the header. Also, |
| 1692 | * set wdata->bytes. |
| 1693 | */ |
| 1694 | static void |
| 1695 | cifs_writepages_marshal_iov(struct kvec *iov, struct cifs_writedata *wdata) |
| 1696 | { |
| 1697 | int i; |
| 1698 | struct inode *inode = wdata->cfile->dentry->d_inode; |
| 1699 | loff_t size = i_size_read(inode); |
| 1700 | |
| 1701 | /* marshal up the pages into iov array */ |
| 1702 | wdata->bytes = 0; |
| 1703 | for (i = 0; i < wdata->nr_pages; i++) { |
| 1704 | iov[i + 1].iov_len = min(size - page_offset(wdata->pages[i]), |
| 1705 | (loff_t)PAGE_CACHE_SIZE); |
| 1706 | iov[i + 1].iov_base = kmap(wdata->pages[i]); |
| 1707 | wdata->bytes += iov[i + 1].iov_len; |
| 1708 | } |
| 1709 | } |
| 1710 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | static int cifs_writepages(struct address_space *mapping, |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1712 | struct writeback_control *wbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | { |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1714 | struct cifs_sb_info *cifs_sb = CIFS_SB(mapping->host->i_sb); |
| 1715 | bool done = false, scanned = false, range_whole = false; |
| 1716 | pgoff_t end, index; |
| 1717 | struct cifs_writedata *wdata; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1718 | struct page *page; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1719 | int rc = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1720 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1721 | /* |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1722 | * If wsize is smaller than the page cache size, default to writing |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1723 | * one page at a time via cifs_writepage |
| 1724 | */ |
| 1725 | if (cifs_sb->wsize < PAGE_CACHE_SIZE) |
| 1726 | return generic_writepages(mapping, wbc); |
| 1727 | |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 1728 | if (wbc->range_cyclic) { |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1729 | index = mapping->writeback_index; /* Start from prev offset */ |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 1730 | end = -1; |
| 1731 | } else { |
| 1732 | index = wbc->range_start >> PAGE_CACHE_SHIFT; |
| 1733 | end = wbc->range_end >> PAGE_CACHE_SHIFT; |
| 1734 | if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1735 | range_whole = true; |
| 1736 | scanned = true; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1737 | } |
| 1738 | retry: |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1739 | while (!done && index <= end) { |
| 1740 | unsigned int i, nr_pages, found_pages; |
| 1741 | pgoff_t next = 0, tofind; |
| 1742 | struct page **pages; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1743 | |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1744 | tofind = min((cifs_sb->wsize / PAGE_CACHE_SIZE) - 1, |
| 1745 | end - index) + 1; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1746 | |
Jeff Layton | c2e8764 | 2012-03-23 14:40:55 -0400 | [diff] [blame] | 1747 | wdata = cifs_writedata_alloc((unsigned int)tofind, |
| 1748 | cifs_writev_complete); |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1749 | if (!wdata) { |
| 1750 | rc = -ENOMEM; |
| 1751 | break; |
| 1752 | } |
| 1753 | |
| 1754 | /* |
| 1755 | * find_get_pages_tag seems to return a max of 256 on each |
| 1756 | * iteration, so we must call it several times in order to |
| 1757 | * fill the array or the wsize is effectively limited to |
| 1758 | * 256 * PAGE_CACHE_SIZE. |
| 1759 | */ |
| 1760 | found_pages = 0; |
| 1761 | pages = wdata->pages; |
| 1762 | do { |
| 1763 | nr_pages = find_get_pages_tag(mapping, &index, |
| 1764 | PAGECACHE_TAG_DIRTY, |
| 1765 | tofind, pages); |
| 1766 | found_pages += nr_pages; |
| 1767 | tofind -= nr_pages; |
| 1768 | pages += nr_pages; |
| 1769 | } while (nr_pages && tofind && index <= end); |
| 1770 | |
| 1771 | if (found_pages == 0) { |
| 1772 | kref_put(&wdata->refcount, cifs_writedata_release); |
| 1773 | break; |
| 1774 | } |
| 1775 | |
| 1776 | nr_pages = 0; |
| 1777 | for (i = 0; i < found_pages; i++) { |
| 1778 | page = wdata->pages[i]; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1779 | /* |
| 1780 | * At this point we hold neither mapping->tree_lock nor |
| 1781 | * lock on the page itself: the page may be truncated or |
| 1782 | * invalidated (changing page->mapping to NULL), or even |
| 1783 | * swizzled back from swapper_space to tmpfs file |
| 1784 | * mapping |
| 1785 | */ |
| 1786 | |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1787 | if (nr_pages == 0) |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1788 | lock_page(page); |
Nick Piggin | 529ae9a | 2008-08-02 12:01:03 +0200 | [diff] [blame] | 1789 | else if (!trylock_page(page)) |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1790 | break; |
| 1791 | |
| 1792 | if (unlikely(page->mapping != mapping)) { |
| 1793 | unlock_page(page); |
| 1794 | break; |
| 1795 | } |
| 1796 | |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 1797 | if (!wbc->range_cyclic && page->index > end) { |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1798 | done = true; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1799 | unlock_page(page); |
| 1800 | break; |
| 1801 | } |
| 1802 | |
| 1803 | if (next && (page->index != next)) { |
| 1804 | /* Not next consecutive page */ |
| 1805 | unlock_page(page); |
| 1806 | break; |
| 1807 | } |
| 1808 | |
| 1809 | if (wbc->sync_mode != WB_SYNC_NONE) |
| 1810 | wait_on_page_writeback(page); |
| 1811 | |
| 1812 | if (PageWriteback(page) || |
Linus Torvalds | cb876f4 | 2006-12-23 16:19:07 -0800 | [diff] [blame] | 1813 | !clear_page_dirty_for_io(page)) { |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1814 | unlock_page(page); |
| 1815 | break; |
| 1816 | } |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1817 | |
Linus Torvalds | cb876f4 | 2006-12-23 16:19:07 -0800 | [diff] [blame] | 1818 | /* |
| 1819 | * This actually clears the dirty bit in the radix tree. |
| 1820 | * See cifs_writepage() for more commentary. |
| 1821 | */ |
| 1822 | set_page_writeback(page); |
| 1823 | |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1824 | if (page_offset(page) >= mapping->host->i_size) { |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1825 | done = true; |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1826 | unlock_page(page); |
Linus Torvalds | cb876f4 | 2006-12-23 16:19:07 -0800 | [diff] [blame] | 1827 | end_page_writeback(page); |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1828 | break; |
| 1829 | } |
| 1830 | |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1831 | wdata->pages[i] = page; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1832 | next = page->index + 1; |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1833 | ++nr_pages; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1834 | } |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1835 | |
| 1836 | /* reset index to refind any pages skipped */ |
| 1837 | if (nr_pages == 0) |
| 1838 | index = wdata->pages[0]->index + 1; |
| 1839 | |
| 1840 | /* put any pages we aren't going to use */ |
| 1841 | for (i = nr_pages; i < found_pages; i++) { |
| 1842 | page_cache_release(wdata->pages[i]); |
| 1843 | wdata->pages[i] = NULL; |
| 1844 | } |
| 1845 | |
| 1846 | /* nothing to write? */ |
| 1847 | if (nr_pages == 0) { |
| 1848 | kref_put(&wdata->refcount, cifs_writedata_release); |
| 1849 | continue; |
| 1850 | } |
| 1851 | |
| 1852 | wdata->sync_mode = wbc->sync_mode; |
| 1853 | wdata->nr_pages = nr_pages; |
| 1854 | wdata->offset = page_offset(wdata->pages[0]); |
Jeff Layton | e949287 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1855 | wdata->marshal_iov = cifs_writepages_marshal_iov; |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1856 | |
| 1857 | do { |
| 1858 | if (wdata->cfile != NULL) |
| 1859 | cifsFileInfo_put(wdata->cfile); |
| 1860 | wdata->cfile = find_writable_file(CIFS_I(mapping->host), |
| 1861 | false); |
| 1862 | if (!wdata->cfile) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1863 | cERROR(1, "No writable handles for inode"); |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1864 | rc = -EBADF; |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1865 | break; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1866 | } |
Jeff Layton | fe5f5d2 | 2012-03-23 14:40:55 -0400 | [diff] [blame] | 1867 | wdata->pid = wdata->cfile->pid; |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1868 | rc = cifs_async_writev(wdata); |
| 1869 | } while (wbc->sync_mode == WB_SYNC_ALL && rc == -EAGAIN); |
Jeff Layton | f3983c2 | 2010-09-22 16:17:40 -0700 | [diff] [blame] | 1870 | |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1871 | for (i = 0; i < nr_pages; ++i) |
| 1872 | unlock_page(wdata->pages[i]); |
Jeff Layton | 941b853 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 1873 | |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1874 | /* send failure -- clean up the mess */ |
| 1875 | if (rc != 0) { |
| 1876 | for (i = 0; i < nr_pages; ++i) { |
Jeff Layton | 941b853 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 1877 | if (rc == -EAGAIN) |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1878 | redirty_page_for_writepage(wbc, |
| 1879 | wdata->pages[i]); |
| 1880 | else |
| 1881 | SetPageError(wdata->pages[i]); |
| 1882 | end_page_writeback(wdata->pages[i]); |
| 1883 | page_cache_release(wdata->pages[i]); |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1884 | } |
Jeff Layton | 941b853 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 1885 | if (rc != -EAGAIN) |
| 1886 | mapping_set_error(mapping, rc); |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1887 | } |
| 1888 | kref_put(&wdata->refcount, cifs_writedata_release); |
Jeff Layton | 941b853 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 1889 | |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1890 | wbc->nr_to_write -= nr_pages; |
| 1891 | if (wbc->nr_to_write <= 0) |
| 1892 | done = true; |
Dave Kleikamp | b066a48 | 2008-11-18 03:49:05 +0000 | [diff] [blame] | 1893 | |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1894 | index = next; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1895 | } |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1896 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1897 | if (!scanned && !done) { |
| 1898 | /* |
| 1899 | * We hit the last page and there is more work to be done: wrap |
| 1900 | * back to the start of the file |
| 1901 | */ |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1902 | scanned = true; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1903 | index = 0; |
| 1904 | goto retry; |
| 1905 | } |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 1906 | |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 1907 | if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1908 | mapping->writeback_index = index; |
| 1909 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | return rc; |
| 1911 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 1913 | static int |
| 1914 | cifs_writepage_locked(struct page *page, struct writeback_control *wbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | { |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 1916 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1917 | int xid; |
| 1918 | |
| 1919 | xid = GetXid(); |
| 1920 | /* BB add check for wbc flags */ |
| 1921 | page_cache_get(page); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1922 | if (!PageUptodate(page)) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1923 | cFYI(1, "ppw - page not up to date"); |
Linus Torvalds | cb876f4 | 2006-12-23 16:19:07 -0800 | [diff] [blame] | 1924 | |
| 1925 | /* |
| 1926 | * Set the "writeback" flag, and clear "dirty" in the radix tree. |
| 1927 | * |
| 1928 | * A writepage() implementation always needs to do either this, |
| 1929 | * or re-dirty the page with "redirty_page_for_writepage()" in |
| 1930 | * the case of a failure. |
| 1931 | * |
| 1932 | * Just unlocking the page will cause the radix tree tag-bits |
| 1933 | * to fail to update with the state of the page correctly. |
| 1934 | */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1935 | set_page_writeback(page); |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 1936 | retry_write: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | rc = cifs_partialpagewrite(page, 0, PAGE_CACHE_SIZE); |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 1938 | if (rc == -EAGAIN && wbc->sync_mode == WB_SYNC_ALL) |
| 1939 | goto retry_write; |
| 1940 | else if (rc == -EAGAIN) |
| 1941 | redirty_page_for_writepage(wbc, page); |
| 1942 | else if (rc != 0) |
| 1943 | SetPageError(page); |
| 1944 | else |
| 1945 | SetPageUptodate(page); |
Linus Torvalds | cb876f4 | 2006-12-23 16:19:07 -0800 | [diff] [blame] | 1946 | end_page_writeback(page); |
| 1947 | page_cache_release(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | FreeXid(xid); |
| 1949 | return rc; |
| 1950 | } |
| 1951 | |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 1952 | static int cifs_writepage(struct page *page, struct writeback_control *wbc) |
| 1953 | { |
| 1954 | int rc = cifs_writepage_locked(page, wbc); |
| 1955 | unlock_page(page); |
| 1956 | return rc; |
| 1957 | } |
| 1958 | |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1959 | static int cifs_write_end(struct file *file, struct address_space *mapping, |
| 1960 | loff_t pos, unsigned len, unsigned copied, |
| 1961 | struct page *page, void *fsdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | { |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1963 | int rc; |
| 1964 | struct inode *inode = mapping->host; |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 1965 | struct cifsFileInfo *cfile = file->private_data; |
| 1966 | struct cifs_sb_info *cifs_sb = CIFS_SB(cfile->dentry->d_sb); |
| 1967 | __u32 pid; |
| 1968 | |
| 1969 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD) |
| 1970 | pid = cfile->pid; |
| 1971 | else |
| 1972 | pid = current->tgid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1973 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1974 | cFYI(1, "write_end for page %p from pos %lld with %d bytes", |
| 1975 | page, pos, copied); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1976 | |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 1977 | if (PageChecked(page)) { |
| 1978 | if (copied == len) |
| 1979 | SetPageUptodate(page); |
| 1980 | ClearPageChecked(page); |
| 1981 | } else if (!PageUptodate(page) && copied == PAGE_CACHE_SIZE) |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1982 | SetPageUptodate(page); |
| 1983 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | if (!PageUptodate(page)) { |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1985 | char *page_data; |
| 1986 | unsigned offset = pos & (PAGE_CACHE_SIZE - 1); |
| 1987 | int xid; |
| 1988 | |
| 1989 | xid = GetXid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | /* this is probably better than directly calling |
| 1991 | partialpage_write since in this function the file handle is |
| 1992 | known which we might as well leverage */ |
| 1993 | /* BB check if anything else missing out of ppw |
| 1994 | such as updating last write time */ |
| 1995 | page_data = kmap(page); |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 1996 | rc = cifs_write(cfile, pid, page_data + offset, copied, &pos); |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1997 | /* if (rc < 0) should we set writebehind rc? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1998 | kunmap(page); |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1999 | |
| 2000 | FreeXid(xid); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2001 | } else { |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2002 | rc = copied; |
| 2003 | pos += copied; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | set_page_dirty(page); |
| 2005 | } |
| 2006 | |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2007 | if (rc > 0) { |
| 2008 | spin_lock(&inode->i_lock); |
| 2009 | if (pos > inode->i_size) |
| 2010 | i_size_write(inode, pos); |
| 2011 | spin_unlock(&inode->i_lock); |
| 2012 | } |
| 2013 | |
| 2014 | unlock_page(page); |
| 2015 | page_cache_release(page); |
| 2016 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | return rc; |
| 2018 | } |
| 2019 | |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 2020 | int cifs_strict_fsync(struct file *file, loff_t start, loff_t end, |
| 2021 | int datasync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2022 | { |
| 2023 | int xid; |
| 2024 | int rc = 0; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2025 | struct cifs_tcon *tcon; |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 2026 | struct cifsFileInfo *smbfile = file->private_data; |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 2027 | struct inode *inode = file->f_path.dentry->d_inode; |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2028 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 | |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 2030 | rc = filemap_write_and_wait_range(inode->i_mapping, start, end); |
| 2031 | if (rc) |
| 2032 | return rc; |
| 2033 | mutex_lock(&inode->i_mutex); |
| 2034 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | xid = GetXid(); |
| 2036 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2037 | cFYI(1, "Sync file - name: %s datasync: 0x%x", |
Christoph Hellwig | 7ea8085 | 2010-05-26 17:53:25 +0200 | [diff] [blame] | 2038 | file->f_path.dentry->d_name.name, datasync); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2039 | |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 2040 | if (!CIFS_I(inode)->clientCanCacheRead) { |
| 2041 | rc = cifs_invalidate_mapping(inode); |
| 2042 | if (rc) { |
| 2043 | cFYI(1, "rc: %d during invalidate phase", rc); |
| 2044 | rc = 0; /* don't care about it in fsync */ |
| 2045 | } |
| 2046 | } |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 2047 | |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2048 | tcon = tlink_tcon(smbfile->tlink); |
| 2049 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)) |
| 2050 | rc = CIFSSMBFlush(xid, tcon, smbfile->netfid); |
| 2051 | |
| 2052 | FreeXid(xid); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 2053 | mutex_unlock(&inode->i_mutex); |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2054 | return rc; |
| 2055 | } |
| 2056 | |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 2057 | int cifs_fsync(struct file *file, loff_t start, loff_t end, int datasync) |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2058 | { |
| 2059 | int xid; |
| 2060 | int rc = 0; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2061 | struct cifs_tcon *tcon; |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2062 | struct cifsFileInfo *smbfile = file->private_data; |
| 2063 | struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 2064 | struct inode *inode = file->f_mapping->host; |
| 2065 | |
| 2066 | rc = filemap_write_and_wait_range(inode->i_mapping, start, end); |
| 2067 | if (rc) |
| 2068 | return rc; |
| 2069 | mutex_lock(&inode->i_mutex); |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2070 | |
| 2071 | xid = GetXid(); |
| 2072 | |
| 2073 | cFYI(1, "Sync file - name: %s datasync: 0x%x", |
| 2074 | file->f_path.dentry->d_name.name, datasync); |
| 2075 | |
| 2076 | tcon = tlink_tcon(smbfile->tlink); |
| 2077 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)) |
| 2078 | rc = CIFSSMBFlush(xid, tcon, smbfile->netfid); |
Steve French | b298f22 | 2009-02-21 21:17:43 +0000 | [diff] [blame] | 2079 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | FreeXid(xid); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 2081 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2082 | return rc; |
| 2083 | } |
| 2084 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2085 | /* |
| 2086 | * As file closes, flush all cached write data for this inode checking |
| 2087 | * for write behind errors. |
| 2088 | */ |
Miklos Szeredi | 75e1fcc | 2006-06-23 02:05:12 -0700 | [diff] [blame] | 2089 | int cifs_flush(struct file *file, fl_owner_t id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2091 | struct inode *inode = file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2092 | int rc = 0; |
| 2093 | |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 2094 | if (file->f_mode & FMODE_WRITE) |
Jeff Layton | d3f1322 | 2010-10-15 15:34:07 -0400 | [diff] [blame] | 2095 | rc = filemap_write_and_wait(inode->i_mapping); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2096 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2097 | cFYI(1, "Flush inode %p file %p rc %d", inode, file, rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2098 | |
| 2099 | return rc; |
| 2100 | } |
| 2101 | |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2102 | static int |
| 2103 | cifs_write_allocate_pages(struct page **pages, unsigned long num_pages) |
| 2104 | { |
| 2105 | int rc = 0; |
| 2106 | unsigned long i; |
| 2107 | |
| 2108 | for (i = 0; i < num_pages; i++) { |
Jeff Layton | e94f7ba | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2109 | pages[i] = alloc_page(GFP_KERNEL|__GFP_HIGHMEM); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2110 | if (!pages[i]) { |
| 2111 | /* |
| 2112 | * save number of pages we have already allocated and |
| 2113 | * return with ENOMEM error |
| 2114 | */ |
| 2115 | num_pages = i; |
| 2116 | rc = -ENOMEM; |
Jeff Layton | e94f7ba | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2117 | break; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2118 | } |
| 2119 | } |
| 2120 | |
Jeff Layton | e94f7ba | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2121 | if (rc) { |
| 2122 | for (i = 0; i < num_pages; i++) |
| 2123 | put_page(pages[i]); |
| 2124 | } |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2125 | return rc; |
| 2126 | } |
| 2127 | |
| 2128 | static inline |
| 2129 | size_t get_numpages(const size_t wsize, const size_t len, size_t *cur_len) |
| 2130 | { |
| 2131 | size_t num_pages; |
| 2132 | size_t clen; |
| 2133 | |
| 2134 | clen = min_t(const size_t, len, wsize); |
Jeff Layton | a7103b9 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2135 | num_pages = DIV_ROUND_UP(clen, PAGE_SIZE); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2136 | |
| 2137 | if (cur_len) |
| 2138 | *cur_len = clen; |
| 2139 | |
| 2140 | return num_pages; |
| 2141 | } |
| 2142 | |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2143 | static void |
| 2144 | cifs_uncached_marshal_iov(struct kvec *iov, struct cifs_writedata *wdata) |
| 2145 | { |
| 2146 | int i; |
| 2147 | size_t bytes = wdata->bytes; |
| 2148 | |
| 2149 | /* marshal up the pages into iov array */ |
| 2150 | for (i = 0; i < wdata->nr_pages; i++) { |
Steve French | c7ad42b | 2012-03-23 16:30:56 -0500 | [diff] [blame] | 2151 | iov[i + 1].iov_len = min_t(size_t, bytes, PAGE_SIZE); |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2152 | iov[i + 1].iov_base = kmap(wdata->pages[i]); |
| 2153 | bytes -= iov[i + 1].iov_len; |
| 2154 | } |
| 2155 | } |
| 2156 | |
| 2157 | static void |
| 2158 | cifs_uncached_writev_complete(struct work_struct *work) |
| 2159 | { |
| 2160 | int i; |
| 2161 | struct cifs_writedata *wdata = container_of(work, |
| 2162 | struct cifs_writedata, work); |
| 2163 | struct inode *inode = wdata->cfile->dentry->d_inode; |
| 2164 | struct cifsInodeInfo *cifsi = CIFS_I(inode); |
| 2165 | |
| 2166 | spin_lock(&inode->i_lock); |
| 2167 | cifs_update_eof(cifsi, wdata->offset, wdata->bytes); |
| 2168 | if (cifsi->server_eof > inode->i_size) |
| 2169 | i_size_write(inode, cifsi->server_eof); |
| 2170 | spin_unlock(&inode->i_lock); |
| 2171 | |
| 2172 | complete(&wdata->done); |
| 2173 | |
| 2174 | if (wdata->result != -EAGAIN) { |
| 2175 | for (i = 0; i < wdata->nr_pages; i++) |
| 2176 | put_page(wdata->pages[i]); |
| 2177 | } |
| 2178 | |
| 2179 | kref_put(&wdata->refcount, cifs_writedata_release); |
| 2180 | } |
| 2181 | |
| 2182 | /* attempt to send write to server, retry on any -EAGAIN errors */ |
| 2183 | static int |
| 2184 | cifs_uncached_retry_writev(struct cifs_writedata *wdata) |
| 2185 | { |
| 2186 | int rc; |
| 2187 | |
| 2188 | do { |
| 2189 | if (wdata->cfile->invalidHandle) { |
| 2190 | rc = cifs_reopen_file(wdata->cfile, false); |
| 2191 | if (rc != 0) |
| 2192 | continue; |
| 2193 | } |
| 2194 | rc = cifs_async_writev(wdata); |
| 2195 | } while (rc == -EAGAIN); |
| 2196 | |
| 2197 | return rc; |
| 2198 | } |
| 2199 | |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2200 | static ssize_t |
| 2201 | cifs_iovec_write(struct file *file, const struct iovec *iov, |
| 2202 | unsigned long nr_segs, loff_t *poffset) |
| 2203 | { |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2204 | unsigned long nr_pages, i; |
Pavel Shilovsky | 76429c1 | 2011-01-31 16:03:08 +0300 | [diff] [blame] | 2205 | size_t copied, len, cur_len; |
| 2206 | ssize_t total_written = 0; |
Jeff Layton | 3af9d8f | 2012-04-13 17:16:59 -0400 | [diff] [blame] | 2207 | loff_t offset; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2208 | struct iov_iter it; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2209 | struct cifsFileInfo *open_file; |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2210 | struct cifs_tcon *tcon; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2211 | struct cifs_sb_info *cifs_sb; |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2212 | struct cifs_writedata *wdata, *tmp; |
| 2213 | struct list_head wdata_list; |
| 2214 | int rc; |
| 2215 | pid_t pid; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2216 | |
| 2217 | len = iov_length(iov, nr_segs); |
| 2218 | if (!len) |
| 2219 | return 0; |
| 2220 | |
| 2221 | rc = generic_write_checks(file, poffset, &len, 0); |
| 2222 | if (rc) |
| 2223 | return rc; |
| 2224 | |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2225 | INIT_LIST_HEAD(&wdata_list); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2226 | cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2227 | open_file = file->private_data; |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2228 | tcon = tlink_tcon(open_file->tlink); |
Jeff Layton | 3af9d8f | 2012-04-13 17:16:59 -0400 | [diff] [blame] | 2229 | offset = *poffset; |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 2230 | |
| 2231 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD) |
| 2232 | pid = open_file->pid; |
| 2233 | else |
| 2234 | pid = current->tgid; |
| 2235 | |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2236 | iov_iter_init(&it, iov, nr_segs, len, 0); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2237 | do { |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2238 | size_t save_len; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2239 | |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2240 | nr_pages = get_numpages(cifs_sb->wsize, len, &cur_len); |
| 2241 | wdata = cifs_writedata_alloc(nr_pages, |
| 2242 | cifs_uncached_writev_complete); |
| 2243 | if (!wdata) { |
| 2244 | rc = -ENOMEM; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2245 | break; |
| 2246 | } |
| 2247 | |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2248 | rc = cifs_write_allocate_pages(wdata->pages, nr_pages); |
| 2249 | if (rc) { |
| 2250 | kfree(wdata); |
| 2251 | break; |
| 2252 | } |
| 2253 | |
| 2254 | save_len = cur_len; |
| 2255 | for (i = 0; i < nr_pages; i++) { |
| 2256 | copied = min_t(const size_t, cur_len, PAGE_SIZE); |
| 2257 | copied = iov_iter_copy_from_user(wdata->pages[i], &it, |
| 2258 | 0, copied); |
| 2259 | cur_len -= copied; |
| 2260 | iov_iter_advance(&it, copied); |
| 2261 | } |
| 2262 | cur_len = save_len - cur_len; |
| 2263 | |
| 2264 | wdata->sync_mode = WB_SYNC_ALL; |
| 2265 | wdata->nr_pages = nr_pages; |
| 2266 | wdata->offset = (__u64)offset; |
| 2267 | wdata->cfile = cifsFileInfo_get(open_file); |
| 2268 | wdata->pid = pid; |
| 2269 | wdata->bytes = cur_len; |
| 2270 | wdata->marshal_iov = cifs_uncached_marshal_iov; |
| 2271 | rc = cifs_uncached_retry_writev(wdata); |
| 2272 | if (rc) { |
| 2273 | kref_put(&wdata->refcount, cifs_writedata_release); |
| 2274 | break; |
| 2275 | } |
| 2276 | |
| 2277 | list_add_tail(&wdata->list, &wdata_list); |
| 2278 | offset += cur_len; |
| 2279 | len -= cur_len; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2280 | } while (len > 0); |
| 2281 | |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2282 | /* |
| 2283 | * If at least one write was successfully sent, then discard any rc |
| 2284 | * value from the later writes. If the other write succeeds, then |
| 2285 | * we'll end up returning whatever was written. If it fails, then |
| 2286 | * we'll get a new rc value from that. |
| 2287 | */ |
| 2288 | if (!list_empty(&wdata_list)) |
| 2289 | rc = 0; |
| 2290 | |
| 2291 | /* |
| 2292 | * Wait for and collect replies for any successful sends in order of |
| 2293 | * increasing offset. Once an error is hit or we get a fatal signal |
| 2294 | * while waiting, then return without waiting for any more replies. |
| 2295 | */ |
| 2296 | restart_loop: |
| 2297 | list_for_each_entry_safe(wdata, tmp, &wdata_list, list) { |
| 2298 | if (!rc) { |
| 2299 | /* FIXME: freezable too? */ |
| 2300 | rc = wait_for_completion_killable(&wdata->done); |
| 2301 | if (rc) |
| 2302 | rc = -EINTR; |
| 2303 | else if (wdata->result) |
| 2304 | rc = wdata->result; |
| 2305 | else |
| 2306 | total_written += wdata->bytes; |
| 2307 | |
| 2308 | /* resend call if it's a retryable error */ |
| 2309 | if (rc == -EAGAIN) { |
| 2310 | rc = cifs_uncached_retry_writev(wdata); |
| 2311 | goto restart_loop; |
| 2312 | } |
| 2313 | } |
| 2314 | list_del_init(&wdata->list); |
| 2315 | kref_put(&wdata->refcount, cifs_writedata_release); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2316 | } |
| 2317 | |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2318 | if (total_written > 0) |
| 2319 | *poffset += total_written; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2320 | |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2321 | cifs_stats_bytes_written(tcon, total_written); |
| 2322 | return total_written ? total_written : (ssize_t)rc; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2323 | } |
| 2324 | |
Pavel Shilovsky | 0b81c1c | 2011-03-10 10:11:05 +0300 | [diff] [blame] | 2325 | ssize_t cifs_user_writev(struct kiocb *iocb, const struct iovec *iov, |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2326 | unsigned long nr_segs, loff_t pos) |
| 2327 | { |
| 2328 | ssize_t written; |
| 2329 | struct inode *inode; |
| 2330 | |
| 2331 | inode = iocb->ki_filp->f_path.dentry->d_inode; |
| 2332 | |
| 2333 | /* |
| 2334 | * BB - optimize the way when signing is disabled. We can drop this |
| 2335 | * extra memory-to-memory copying and use iovec buffers for constructing |
| 2336 | * write request. |
| 2337 | */ |
| 2338 | |
| 2339 | written = cifs_iovec_write(iocb->ki_filp, iov, nr_segs, &pos); |
| 2340 | if (written > 0) { |
| 2341 | CIFS_I(inode)->invalid_mapping = true; |
| 2342 | iocb->ki_pos = pos; |
| 2343 | } |
| 2344 | |
| 2345 | return written; |
| 2346 | } |
| 2347 | |
| 2348 | ssize_t cifs_strict_writev(struct kiocb *iocb, const struct iovec *iov, |
| 2349 | unsigned long nr_segs, loff_t pos) |
| 2350 | { |
| 2351 | struct inode *inode; |
| 2352 | |
| 2353 | inode = iocb->ki_filp->f_path.dentry->d_inode; |
| 2354 | |
| 2355 | if (CIFS_I(inode)->clientCanCacheAll) |
| 2356 | return generic_file_aio_write(iocb, iov, nr_segs, pos); |
| 2357 | |
| 2358 | /* |
| 2359 | * In strict cache mode we need to write the data to the server exactly |
| 2360 | * from the pos to pos+len-1 rather than flush all affected pages |
| 2361 | * because it may cause a error with mandatory locks on these pages but |
| 2362 | * not on the region from pos to ppos+len-1. |
| 2363 | */ |
| 2364 | |
| 2365 | return cifs_user_writev(iocb, iov, nr_segs, pos); |
| 2366 | } |
| 2367 | |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 2368 | static struct cifs_readdata * |
| 2369 | cifs_readdata_alloc(unsigned int nr_vecs, work_func_t complete) |
| 2370 | { |
| 2371 | struct cifs_readdata *rdata; |
| 2372 | |
| 2373 | rdata = kzalloc(sizeof(*rdata) + |
| 2374 | sizeof(struct kvec) * nr_vecs, GFP_KERNEL); |
| 2375 | if (rdata != NULL) { |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2376 | kref_init(&rdata->refcount); |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2377 | INIT_LIST_HEAD(&rdata->list); |
| 2378 | init_completion(&rdata->done); |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 2379 | INIT_WORK(&rdata->work, complete); |
| 2380 | INIT_LIST_HEAD(&rdata->pages); |
| 2381 | } |
| 2382 | return rdata; |
| 2383 | } |
| 2384 | |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2385 | void |
| 2386 | cifs_readdata_release(struct kref *refcount) |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 2387 | { |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2388 | struct cifs_readdata *rdata = container_of(refcount, |
| 2389 | struct cifs_readdata, refcount); |
| 2390 | |
| 2391 | if (rdata->cfile) |
| 2392 | cifsFileInfo_put(rdata->cfile); |
| 2393 | |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 2394 | kfree(rdata); |
| 2395 | } |
| 2396 | |
Jeff Layton | 2a1bb13 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2397 | static int |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2398 | cifs_read_allocate_pages(struct list_head *list, unsigned int npages) |
| 2399 | { |
| 2400 | int rc = 0; |
| 2401 | struct page *page, *tpage; |
| 2402 | unsigned int i; |
| 2403 | |
| 2404 | for (i = 0; i < npages; i++) { |
| 2405 | page = alloc_page(GFP_KERNEL|__GFP_HIGHMEM); |
| 2406 | if (!page) { |
| 2407 | rc = -ENOMEM; |
| 2408 | break; |
| 2409 | } |
| 2410 | list_add(&page->lru, list); |
| 2411 | } |
| 2412 | |
| 2413 | if (rc) { |
| 2414 | list_for_each_entry_safe(page, tpage, list, lru) { |
| 2415 | list_del(&page->lru); |
| 2416 | put_page(page); |
| 2417 | } |
| 2418 | } |
| 2419 | return rc; |
| 2420 | } |
| 2421 | |
| 2422 | static void |
| 2423 | cifs_uncached_readdata_release(struct kref *refcount) |
| 2424 | { |
| 2425 | struct page *page, *tpage; |
| 2426 | struct cifs_readdata *rdata = container_of(refcount, |
| 2427 | struct cifs_readdata, refcount); |
| 2428 | |
| 2429 | list_for_each_entry_safe(page, tpage, &rdata->pages, lru) { |
| 2430 | list_del(&page->lru); |
| 2431 | put_page(page); |
| 2432 | } |
| 2433 | cifs_readdata_release(refcount); |
| 2434 | } |
| 2435 | |
| 2436 | static int |
Jeff Layton | 2a1bb13 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2437 | cifs_retry_async_readv(struct cifs_readdata *rdata) |
| 2438 | { |
| 2439 | int rc; |
| 2440 | |
| 2441 | do { |
| 2442 | if (rdata->cfile->invalidHandle) { |
| 2443 | rc = cifs_reopen_file(rdata->cfile, true); |
| 2444 | if (rc != 0) |
| 2445 | continue; |
| 2446 | } |
| 2447 | rc = cifs_async_readv(rdata); |
| 2448 | } while (rc == -EAGAIN); |
| 2449 | |
| 2450 | return rc; |
| 2451 | } |
| 2452 | |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2453 | /** |
| 2454 | * cifs_readdata_to_iov - copy data from pages in response to an iovec |
| 2455 | * @rdata: the readdata response with list of pages holding data |
| 2456 | * @iov: vector in which we should copy the data |
| 2457 | * @nr_segs: number of segments in vector |
| 2458 | * @offset: offset into file of the first iovec |
| 2459 | * @copied: used to return the amount of data copied to the iov |
| 2460 | * |
| 2461 | * This function copies data from a list of pages in a readdata response into |
| 2462 | * an array of iovecs. It will first calculate where the data should go |
| 2463 | * based on the info in the readdata and then copy the data into that spot. |
| 2464 | */ |
| 2465 | static ssize_t |
| 2466 | cifs_readdata_to_iov(struct cifs_readdata *rdata, const struct iovec *iov, |
| 2467 | unsigned long nr_segs, loff_t offset, ssize_t *copied) |
| 2468 | { |
| 2469 | int rc = 0; |
| 2470 | struct iov_iter ii; |
| 2471 | size_t pos = rdata->offset - offset; |
| 2472 | struct page *page, *tpage; |
| 2473 | ssize_t remaining = rdata->bytes; |
| 2474 | unsigned char *pdata; |
| 2475 | |
| 2476 | /* set up iov_iter and advance to the correct offset */ |
| 2477 | iov_iter_init(&ii, iov, nr_segs, iov_length(iov, nr_segs), 0); |
| 2478 | iov_iter_advance(&ii, pos); |
| 2479 | |
| 2480 | *copied = 0; |
| 2481 | list_for_each_entry_safe(page, tpage, &rdata->pages, lru) { |
| 2482 | ssize_t copy; |
| 2483 | |
| 2484 | /* copy a whole page or whatever's left */ |
| 2485 | copy = min_t(ssize_t, remaining, PAGE_SIZE); |
| 2486 | |
| 2487 | /* ...but limit it to whatever space is left in the iov */ |
| 2488 | copy = min_t(ssize_t, copy, iov_iter_count(&ii)); |
| 2489 | |
| 2490 | /* go while there's data to be copied and no errors */ |
| 2491 | if (copy && !rc) { |
| 2492 | pdata = kmap(page); |
| 2493 | rc = memcpy_toiovecend(ii.iov, pdata, ii.iov_offset, |
| 2494 | (int)copy); |
| 2495 | kunmap(page); |
| 2496 | if (!rc) { |
| 2497 | *copied += copy; |
| 2498 | remaining -= copy; |
| 2499 | iov_iter_advance(&ii, copy); |
| 2500 | } |
| 2501 | } |
| 2502 | |
| 2503 | list_del(&page->lru); |
| 2504 | put_page(page); |
| 2505 | } |
| 2506 | |
| 2507 | return rc; |
| 2508 | } |
| 2509 | |
| 2510 | static void |
| 2511 | cifs_uncached_readv_complete(struct work_struct *work) |
| 2512 | { |
| 2513 | struct cifs_readdata *rdata = container_of(work, |
| 2514 | struct cifs_readdata, work); |
| 2515 | |
| 2516 | /* if the result is non-zero then the pages weren't kmapped */ |
| 2517 | if (rdata->result == 0) { |
| 2518 | struct page *page; |
| 2519 | |
| 2520 | list_for_each_entry(page, &rdata->pages, lru) |
| 2521 | kunmap(page); |
| 2522 | } |
| 2523 | |
| 2524 | complete(&rdata->done); |
| 2525 | kref_put(&rdata->refcount, cifs_uncached_readdata_release); |
| 2526 | } |
| 2527 | |
| 2528 | static int |
| 2529 | cifs_uncached_read_marshal_iov(struct cifs_readdata *rdata, |
| 2530 | unsigned int remaining) |
| 2531 | { |
| 2532 | int len = 0; |
| 2533 | struct page *page, *tpage; |
| 2534 | |
| 2535 | rdata->nr_iov = 1; |
| 2536 | list_for_each_entry_safe(page, tpage, &rdata->pages, lru) { |
| 2537 | if (remaining >= PAGE_SIZE) { |
| 2538 | /* enough data to fill the page */ |
| 2539 | rdata->iov[rdata->nr_iov].iov_base = kmap(page); |
| 2540 | rdata->iov[rdata->nr_iov].iov_len = PAGE_SIZE; |
| 2541 | cFYI(1, "%u: idx=%lu iov_base=%p iov_len=%zu", |
| 2542 | rdata->nr_iov, page->index, |
| 2543 | rdata->iov[rdata->nr_iov].iov_base, |
| 2544 | rdata->iov[rdata->nr_iov].iov_len); |
| 2545 | ++rdata->nr_iov; |
| 2546 | len += PAGE_SIZE; |
| 2547 | remaining -= PAGE_SIZE; |
| 2548 | } else if (remaining > 0) { |
| 2549 | /* enough for partial page, fill and zero the rest */ |
| 2550 | rdata->iov[rdata->nr_iov].iov_base = kmap(page); |
| 2551 | rdata->iov[rdata->nr_iov].iov_len = remaining; |
| 2552 | cFYI(1, "%u: idx=%lu iov_base=%p iov_len=%zu", |
| 2553 | rdata->nr_iov, page->index, |
| 2554 | rdata->iov[rdata->nr_iov].iov_base, |
| 2555 | rdata->iov[rdata->nr_iov].iov_len); |
| 2556 | memset(rdata->iov[rdata->nr_iov].iov_base + remaining, |
| 2557 | '\0', PAGE_SIZE - remaining); |
| 2558 | ++rdata->nr_iov; |
| 2559 | len += remaining; |
| 2560 | remaining = 0; |
| 2561 | } else { |
| 2562 | /* no need to hold page hostage */ |
| 2563 | list_del(&page->lru); |
| 2564 | put_page(page); |
| 2565 | } |
| 2566 | } |
| 2567 | |
| 2568 | return len; |
| 2569 | } |
| 2570 | |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 2571 | static ssize_t |
| 2572 | cifs_iovec_read(struct file *file, const struct iovec *iov, |
| 2573 | unsigned long nr_segs, loff_t *poffset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2574 | { |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2575 | ssize_t rc; |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 2576 | size_t len, cur_len; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2577 | ssize_t total_read = 0; |
| 2578 | loff_t offset = *poffset; |
| 2579 | unsigned int npages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2580 | struct cifs_sb_info *cifs_sb; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2581 | struct cifs_tcon *tcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2582 | struct cifsFileInfo *open_file; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2583 | struct cifs_readdata *rdata, *tmp; |
| 2584 | struct list_head rdata_list; |
| 2585 | pid_t pid; |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 2586 | |
| 2587 | if (!nr_segs) |
| 2588 | return 0; |
| 2589 | |
| 2590 | len = iov_length(iov, nr_segs); |
| 2591 | if (!len) |
| 2592 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2593 | |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2594 | INIT_LIST_HEAD(&rdata_list); |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 2595 | cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 2596 | open_file = file->private_data; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2597 | tcon = tlink_tcon(open_file->tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2598 | |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 2599 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD) |
| 2600 | pid = open_file->pid; |
| 2601 | else |
| 2602 | pid = current->tgid; |
| 2603 | |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 2604 | if ((file->f_flags & O_ACCMODE) == O_WRONLY) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2605 | cFYI(1, "attempting read on write only file instance"); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 2606 | |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2607 | do { |
| 2608 | cur_len = min_t(const size_t, len - total_read, cifs_sb->rsize); |
| 2609 | npages = DIV_ROUND_UP(cur_len, PAGE_SIZE); |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 2610 | |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2611 | /* allocate a readdata struct */ |
| 2612 | rdata = cifs_readdata_alloc(npages, |
| 2613 | cifs_uncached_readv_complete); |
| 2614 | if (!rdata) { |
| 2615 | rc = -ENOMEM; |
| 2616 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2617 | } |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 2618 | |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2619 | rc = cifs_read_allocate_pages(&rdata->pages, npages); |
| 2620 | if (rc) |
| 2621 | goto error; |
| 2622 | |
| 2623 | rdata->cfile = cifsFileInfo_get(open_file); |
| 2624 | rdata->offset = offset; |
| 2625 | rdata->bytes = cur_len; |
| 2626 | rdata->pid = pid; |
| 2627 | rdata->marshal_iov = cifs_uncached_read_marshal_iov; |
| 2628 | |
| 2629 | rc = cifs_retry_async_readv(rdata); |
| 2630 | error: |
| 2631 | if (rc) { |
| 2632 | kref_put(&rdata->refcount, |
| 2633 | cifs_uncached_readdata_release); |
| 2634 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2635 | } |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2636 | |
| 2637 | list_add_tail(&rdata->list, &rdata_list); |
| 2638 | offset += cur_len; |
| 2639 | len -= cur_len; |
| 2640 | } while (len > 0); |
| 2641 | |
| 2642 | /* if at least one read request send succeeded, then reset rc */ |
| 2643 | if (!list_empty(&rdata_list)) |
| 2644 | rc = 0; |
| 2645 | |
| 2646 | /* the loop below should proceed in the order of increasing offsets */ |
| 2647 | restart_loop: |
| 2648 | list_for_each_entry_safe(rdata, tmp, &rdata_list, list) { |
| 2649 | if (!rc) { |
| 2650 | ssize_t copied; |
| 2651 | |
| 2652 | /* FIXME: freezable sleep too? */ |
| 2653 | rc = wait_for_completion_killable(&rdata->done); |
| 2654 | if (rc) |
| 2655 | rc = -EINTR; |
| 2656 | else if (rdata->result) |
| 2657 | rc = rdata->result; |
| 2658 | else { |
| 2659 | rc = cifs_readdata_to_iov(rdata, iov, |
| 2660 | nr_segs, *poffset, |
| 2661 | &copied); |
| 2662 | total_read += copied; |
| 2663 | } |
| 2664 | |
| 2665 | /* resend call if it's a retryable error */ |
| 2666 | if (rc == -EAGAIN) { |
| 2667 | rc = cifs_retry_async_readv(rdata); |
| 2668 | goto restart_loop; |
| 2669 | } |
| 2670 | } |
| 2671 | list_del_init(&rdata->list); |
| 2672 | kref_put(&rdata->refcount, cifs_uncached_readdata_release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2673 | } |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 2674 | |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2675 | cifs_stats_bytes_read(tcon, total_read); |
| 2676 | *poffset += total_read; |
| 2677 | |
| 2678 | return total_read ? total_read : rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2679 | } |
| 2680 | |
Pavel Shilovsky | 0b81c1c | 2011-03-10 10:11:05 +0300 | [diff] [blame] | 2681 | ssize_t cifs_user_readv(struct kiocb *iocb, const struct iovec *iov, |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 2682 | unsigned long nr_segs, loff_t pos) |
| 2683 | { |
| 2684 | ssize_t read; |
| 2685 | |
| 2686 | read = cifs_iovec_read(iocb->ki_filp, iov, nr_segs, &pos); |
| 2687 | if (read > 0) |
| 2688 | iocb->ki_pos = pos; |
| 2689 | |
| 2690 | return read; |
| 2691 | } |
| 2692 | |
| 2693 | ssize_t cifs_strict_readv(struct kiocb *iocb, const struct iovec *iov, |
| 2694 | unsigned long nr_segs, loff_t pos) |
| 2695 | { |
| 2696 | struct inode *inode; |
| 2697 | |
| 2698 | inode = iocb->ki_filp->f_path.dentry->d_inode; |
| 2699 | |
| 2700 | if (CIFS_I(inode)->clientCanCacheRead) |
| 2701 | return generic_file_aio_read(iocb, iov, nr_segs, pos); |
| 2702 | |
| 2703 | /* |
| 2704 | * In strict cache mode we need to read from the server all the time |
| 2705 | * if we don't have level II oplock because the server can delay mtime |
| 2706 | * change - so we can't make a decision about inode invalidating. |
| 2707 | * And we can also fail with pagereading if there are mandatory locks |
| 2708 | * on pages affected by this read but not on the region from pos to |
| 2709 | * pos+len-1. |
| 2710 | */ |
| 2711 | |
| 2712 | return cifs_user_readv(iocb, iov, nr_segs, pos); |
| 2713 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2714 | |
| 2715 | static ssize_t cifs_read(struct file *file, char *read_data, size_t read_size, |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 2716 | loff_t *poffset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2717 | { |
| 2718 | int rc = -EACCES; |
| 2719 | unsigned int bytes_read = 0; |
| 2720 | unsigned int total_read; |
| 2721 | unsigned int current_read_size; |
Jeff Layton | 5eba8ab | 2011-10-19 15:30:26 -0400 | [diff] [blame] | 2722 | unsigned int rsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2723 | struct cifs_sb_info *cifs_sb; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2724 | struct cifs_tcon *pTcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2725 | int xid; |
| 2726 | char *current_offset; |
| 2727 | struct cifsFileInfo *open_file; |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 2728 | struct cifs_io_parms io_parms; |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 2729 | int buf_type = CIFS_NO_BUFFER; |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 2730 | __u32 pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2731 | |
| 2732 | xid = GetXid(); |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 2733 | cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2734 | |
Jeff Layton | 5eba8ab | 2011-10-19 15:30:26 -0400 | [diff] [blame] | 2735 | /* FIXME: set up handlers for larger reads and/or convert to async */ |
| 2736 | rsize = min_t(unsigned int, cifs_sb->rsize, CIFSMaxBufSize); |
| 2737 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2738 | if (file->private_data == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 2739 | rc = -EBADF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2740 | FreeXid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 2741 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2742 | } |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 2743 | open_file = file->private_data; |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 2744 | pTcon = tlink_tcon(open_file->tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 2746 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD) |
| 2747 | pid = open_file->pid; |
| 2748 | else |
| 2749 | pid = current->tgid; |
| 2750 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2751 | if ((file->f_flags & O_ACCMODE) == O_WRONLY) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2752 | cFYI(1, "attempting read on write only file instance"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2753 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2754 | for (total_read = 0, current_offset = read_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2755 | read_size > total_read; |
| 2756 | total_read += bytes_read, current_offset += bytes_read) { |
Jeff Layton | 5eba8ab | 2011-10-19 15:30:26 -0400 | [diff] [blame] | 2757 | current_read_size = min_t(uint, read_size - total_read, rsize); |
| 2758 | |
Steve French | f9f5c817 | 2005-09-15 23:06:38 -0700 | [diff] [blame] | 2759 | /* For windows me and 9x we do not want to request more |
| 2760 | than it negotiated since it will refuse the read then */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2761 | if ((pTcon->ses) && |
Steve French | f9f5c817 | 2005-09-15 23:06:38 -0700 | [diff] [blame] | 2762 | !(pTcon->ses->capabilities & CAP_LARGE_FILES)) { |
Dan Carpenter | 7748dd6 | 2011-10-18 12:41:35 +0300 | [diff] [blame] | 2763 | current_read_size = min_t(uint, current_read_size, |
Jeff Layton | c974bef | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 2764 | CIFSMaxBufSize); |
Steve French | f9f5c817 | 2005-09-15 23:06:38 -0700 | [diff] [blame] | 2765 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2766 | rc = -EAGAIN; |
| 2767 | while (rc == -EAGAIN) { |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 2768 | if (open_file->invalidHandle) { |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 2769 | rc = cifs_reopen_file(open_file, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2770 | if (rc != 0) |
| 2771 | break; |
| 2772 | } |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 2773 | io_parms.netfid = open_file->netfid; |
| 2774 | io_parms.pid = pid; |
| 2775 | io_parms.tcon = pTcon; |
| 2776 | io_parms.offset = *poffset; |
| 2777 | io_parms.length = current_read_size; |
| 2778 | rc = CIFSSMBRead(xid, &io_parms, &bytes_read, |
| 2779 | ¤t_offset, &buf_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2780 | } |
| 2781 | if (rc || (bytes_read == 0)) { |
| 2782 | if (total_read) { |
| 2783 | break; |
| 2784 | } else { |
| 2785 | FreeXid(xid); |
| 2786 | return rc; |
| 2787 | } |
| 2788 | } else { |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 2789 | cifs_stats_bytes_read(pTcon, total_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2790 | *poffset += bytes_read; |
| 2791 | } |
| 2792 | } |
| 2793 | FreeXid(xid); |
| 2794 | return total_read; |
| 2795 | } |
| 2796 | |
Jeff Layton | ca83ce3 | 2011-04-12 09:13:44 -0400 | [diff] [blame] | 2797 | /* |
| 2798 | * If the page is mmap'ed into a process' page tables, then we need to make |
| 2799 | * sure that it doesn't change while being written back. |
| 2800 | */ |
| 2801 | static int |
| 2802 | cifs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) |
| 2803 | { |
| 2804 | struct page *page = vmf->page; |
| 2805 | |
| 2806 | lock_page(page); |
| 2807 | return VM_FAULT_LOCKED; |
| 2808 | } |
| 2809 | |
| 2810 | static struct vm_operations_struct cifs_file_vm_ops = { |
| 2811 | .fault = filemap_fault, |
| 2812 | .page_mkwrite = cifs_page_mkwrite, |
| 2813 | }; |
| 2814 | |
Pavel Shilovsky | 7a6a19b | 2010-12-14 11:29:51 +0300 | [diff] [blame] | 2815 | int cifs_file_strict_mmap(struct file *file, struct vm_area_struct *vma) |
| 2816 | { |
| 2817 | int rc, xid; |
| 2818 | struct inode *inode = file->f_path.dentry->d_inode; |
| 2819 | |
| 2820 | xid = GetXid(); |
| 2821 | |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 2822 | if (!CIFS_I(inode)->clientCanCacheRead) { |
| 2823 | rc = cifs_invalidate_mapping(inode); |
| 2824 | if (rc) |
| 2825 | return rc; |
| 2826 | } |
Pavel Shilovsky | 7a6a19b | 2010-12-14 11:29:51 +0300 | [diff] [blame] | 2827 | |
| 2828 | rc = generic_file_mmap(file, vma); |
Jeff Layton | ca83ce3 | 2011-04-12 09:13:44 -0400 | [diff] [blame] | 2829 | if (rc == 0) |
| 2830 | vma->vm_ops = &cifs_file_vm_ops; |
Pavel Shilovsky | 7a6a19b | 2010-12-14 11:29:51 +0300 | [diff] [blame] | 2831 | FreeXid(xid); |
| 2832 | return rc; |
| 2833 | } |
| 2834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2835 | int cifs_file_mmap(struct file *file, struct vm_area_struct *vma) |
| 2836 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | int rc, xid; |
| 2838 | |
| 2839 | xid = GetXid(); |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 2840 | rc = cifs_revalidate_file(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2841 | if (rc) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2842 | cFYI(1, "Validation prior to mmap failed, error=%d", rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2843 | FreeXid(xid); |
| 2844 | return rc; |
| 2845 | } |
| 2846 | rc = generic_file_mmap(file, vma); |
Jeff Layton | ca83ce3 | 2011-04-12 09:13:44 -0400 | [diff] [blame] | 2847 | if (rc == 0) |
| 2848 | vma->vm_ops = &cifs_file_vm_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | FreeXid(xid); |
| 2850 | return rc; |
| 2851 | } |
| 2852 | |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 2853 | static void |
| 2854 | cifs_readv_complete(struct work_struct *work) |
| 2855 | { |
| 2856 | struct cifs_readdata *rdata = container_of(work, |
| 2857 | struct cifs_readdata, work); |
| 2858 | struct page *page, *tpage; |
| 2859 | |
| 2860 | list_for_each_entry_safe(page, tpage, &rdata->pages, lru) { |
| 2861 | list_del(&page->lru); |
| 2862 | lru_cache_add_file(page); |
| 2863 | |
| 2864 | if (rdata->result == 0) { |
| 2865 | kunmap(page); |
| 2866 | flush_dcache_page(page); |
| 2867 | SetPageUptodate(page); |
| 2868 | } |
| 2869 | |
| 2870 | unlock_page(page); |
| 2871 | |
| 2872 | if (rdata->result == 0) |
| 2873 | cifs_readpage_to_fscache(rdata->mapping->host, page); |
| 2874 | |
| 2875 | page_cache_release(page); |
| 2876 | } |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 2877 | kref_put(&rdata->refcount, cifs_readdata_release); |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 2878 | } |
| 2879 | |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 2880 | static int |
| 2881 | cifs_readpages_marshal_iov(struct cifs_readdata *rdata, unsigned int remaining) |
| 2882 | { |
| 2883 | int len = 0; |
| 2884 | struct page *page, *tpage; |
| 2885 | u64 eof; |
| 2886 | pgoff_t eof_index; |
| 2887 | |
| 2888 | /* determine the eof that the server (probably) has */ |
| 2889 | eof = CIFS_I(rdata->mapping->host)->server_eof; |
| 2890 | eof_index = eof ? (eof - 1) >> PAGE_CACHE_SHIFT : 0; |
| 2891 | cFYI(1, "eof=%llu eof_index=%lu", eof, eof_index); |
| 2892 | |
| 2893 | rdata->nr_iov = 1; |
| 2894 | list_for_each_entry_safe(page, tpage, &rdata->pages, lru) { |
| 2895 | if (remaining >= PAGE_CACHE_SIZE) { |
| 2896 | /* enough data to fill the page */ |
| 2897 | rdata->iov[rdata->nr_iov].iov_base = kmap(page); |
| 2898 | rdata->iov[rdata->nr_iov].iov_len = PAGE_CACHE_SIZE; |
| 2899 | cFYI(1, "%u: idx=%lu iov_base=%p iov_len=%zu", |
| 2900 | rdata->nr_iov, page->index, |
| 2901 | rdata->iov[rdata->nr_iov].iov_base, |
| 2902 | rdata->iov[rdata->nr_iov].iov_len); |
| 2903 | ++rdata->nr_iov; |
| 2904 | len += PAGE_CACHE_SIZE; |
| 2905 | remaining -= PAGE_CACHE_SIZE; |
| 2906 | } else if (remaining > 0) { |
| 2907 | /* enough for partial page, fill and zero the rest */ |
| 2908 | rdata->iov[rdata->nr_iov].iov_base = kmap(page); |
| 2909 | rdata->iov[rdata->nr_iov].iov_len = remaining; |
| 2910 | cFYI(1, "%u: idx=%lu iov_base=%p iov_len=%zu", |
| 2911 | rdata->nr_iov, page->index, |
| 2912 | rdata->iov[rdata->nr_iov].iov_base, |
| 2913 | rdata->iov[rdata->nr_iov].iov_len); |
| 2914 | memset(rdata->iov[rdata->nr_iov].iov_base + remaining, |
| 2915 | '\0', PAGE_CACHE_SIZE - remaining); |
| 2916 | ++rdata->nr_iov; |
| 2917 | len += remaining; |
| 2918 | remaining = 0; |
| 2919 | } else if (page->index > eof_index) { |
| 2920 | /* |
| 2921 | * The VFS will not try to do readahead past the |
| 2922 | * i_size, but it's possible that we have outstanding |
| 2923 | * writes with gaps in the middle and the i_size hasn't |
| 2924 | * caught up yet. Populate those with zeroed out pages |
| 2925 | * to prevent the VFS from repeatedly attempting to |
| 2926 | * fill them until the writes are flushed. |
| 2927 | */ |
| 2928 | zero_user(page, 0, PAGE_CACHE_SIZE); |
| 2929 | list_del(&page->lru); |
| 2930 | lru_cache_add_file(page); |
| 2931 | flush_dcache_page(page); |
| 2932 | SetPageUptodate(page); |
| 2933 | unlock_page(page); |
| 2934 | page_cache_release(page); |
| 2935 | } else { |
| 2936 | /* no need to hold page hostage */ |
| 2937 | list_del(&page->lru); |
| 2938 | lru_cache_add_file(page); |
| 2939 | unlock_page(page); |
| 2940 | page_cache_release(page); |
| 2941 | } |
| 2942 | } |
| 2943 | |
| 2944 | return len; |
| 2945 | } |
| 2946 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2947 | static int cifs_readpages(struct file *file, struct address_space *mapping, |
| 2948 | struct list_head *page_list, unsigned num_pages) |
| 2949 | { |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 2950 | int rc; |
| 2951 | struct list_head tmplist; |
| 2952 | struct cifsFileInfo *open_file = file->private_data; |
| 2953 | struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
| 2954 | unsigned int rsize = cifs_sb->rsize; |
| 2955 | pid_t pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2956 | |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 2957 | /* |
| 2958 | * Give up immediately if rsize is too small to read an entire page. |
| 2959 | * The VFS will fall back to readpage. We should never reach this |
| 2960 | * point however since we set ra_pages to 0 when the rsize is smaller |
| 2961 | * than a cache page. |
| 2962 | */ |
| 2963 | if (unlikely(rsize < PAGE_CACHE_SIZE)) |
| 2964 | return 0; |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 2965 | |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 2966 | /* |
| 2967 | * Reads as many pages as possible from fscache. Returns -ENOBUFS |
| 2968 | * immediately if the cookie is negative |
| 2969 | */ |
| 2970 | rc = cifs_readpages_from_fscache(mapping->host, mapping, page_list, |
| 2971 | &num_pages); |
| 2972 | if (rc == 0) |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 2973 | return rc; |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 2974 | |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 2975 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD) |
| 2976 | pid = open_file->pid; |
| 2977 | else |
| 2978 | pid = current->tgid; |
| 2979 | |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 2980 | rc = 0; |
| 2981 | INIT_LIST_HEAD(&tmplist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2982 | |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 2983 | cFYI(1, "%s: file=%p mapping=%p num_pages=%u", __func__, file, |
| 2984 | mapping, num_pages); |
| 2985 | |
| 2986 | /* |
| 2987 | * Start with the page at end of list and move it to private |
| 2988 | * list. Do the same with any following pages until we hit |
| 2989 | * the rsize limit, hit an index discontinuity, or run out of |
| 2990 | * pages. Issue the async read and then start the loop again |
| 2991 | * until the list is empty. |
| 2992 | * |
| 2993 | * Note that list order is important. The page_list is in |
| 2994 | * the order of declining indexes. When we put the pages in |
| 2995 | * the rdata->pages, then we want them in increasing order. |
| 2996 | */ |
| 2997 | while (!list_empty(page_list)) { |
| 2998 | unsigned int bytes = PAGE_CACHE_SIZE; |
| 2999 | unsigned int expected_index; |
| 3000 | unsigned int nr_pages = 1; |
| 3001 | loff_t offset; |
| 3002 | struct page *page, *tpage; |
| 3003 | struct cifs_readdata *rdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3004 | |
| 3005 | page = list_entry(page_list->prev, struct page, lru); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3006 | |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 3007 | /* |
| 3008 | * Lock the page and put it in the cache. Since no one else |
| 3009 | * should have access to this page, we're safe to simply set |
| 3010 | * PG_locked without checking it first. |
| 3011 | */ |
| 3012 | __set_page_locked(page); |
| 3013 | rc = add_to_page_cache_locked(page, mapping, |
| 3014 | page->index, GFP_KERNEL); |
| 3015 | |
| 3016 | /* give up if we can't stick it in the cache */ |
| 3017 | if (rc) { |
| 3018 | __clear_page_locked(page); |
| 3019 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3020 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3021 | |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 3022 | /* move first page to the tmplist */ |
| 3023 | offset = (loff_t)page->index << PAGE_CACHE_SHIFT; |
| 3024 | list_move_tail(&page->lru, &tmplist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3025 | |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 3026 | /* now try and add more pages onto the request */ |
| 3027 | expected_index = page->index + 1; |
| 3028 | list_for_each_entry_safe_reverse(page, tpage, page_list, lru) { |
| 3029 | /* discontinuity ? */ |
| 3030 | if (page->index != expected_index) |
| 3031 | break; |
| 3032 | |
| 3033 | /* would this page push the read over the rsize? */ |
| 3034 | if (bytes + PAGE_CACHE_SIZE > rsize) |
| 3035 | break; |
| 3036 | |
| 3037 | __set_page_locked(page); |
| 3038 | if (add_to_page_cache_locked(page, mapping, |
| 3039 | page->index, GFP_KERNEL)) { |
| 3040 | __clear_page_locked(page); |
| 3041 | break; |
| 3042 | } |
| 3043 | list_move_tail(&page->lru, &tmplist); |
| 3044 | bytes += PAGE_CACHE_SIZE; |
| 3045 | expected_index++; |
| 3046 | nr_pages++; |
| 3047 | } |
| 3048 | |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3049 | rdata = cifs_readdata_alloc(nr_pages, cifs_readv_complete); |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 3050 | if (!rdata) { |
| 3051 | /* best to give up if we're out of mem */ |
| 3052 | list_for_each_entry_safe(page, tpage, &tmplist, lru) { |
| 3053 | list_del(&page->lru); |
| 3054 | lru_cache_add_file(page); |
| 3055 | unlock_page(page); |
| 3056 | page_cache_release(page); |
| 3057 | } |
| 3058 | rc = -ENOMEM; |
| 3059 | break; |
| 3060 | } |
| 3061 | |
| 3062 | spin_lock(&cifs_file_list_lock); |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 3063 | spin_unlock(&cifs_file_list_lock); |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3064 | rdata->cfile = cifsFileInfo_get(open_file); |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 3065 | rdata->mapping = mapping; |
| 3066 | rdata->offset = offset; |
| 3067 | rdata->bytes = bytes; |
| 3068 | rdata->pid = pid; |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3069 | rdata->marshal_iov = cifs_readpages_marshal_iov; |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 3070 | list_splice_init(&tmplist, &rdata->pages); |
| 3071 | |
Jeff Layton | 2a1bb13 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3072 | rc = cifs_retry_async_readv(rdata); |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 3073 | if (rc != 0) { |
| 3074 | list_for_each_entry_safe(page, tpage, &rdata->pages, |
| 3075 | lru) { |
| 3076 | list_del(&page->lru); |
| 3077 | lru_cache_add_file(page); |
| 3078 | unlock_page(page); |
| 3079 | page_cache_release(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3080 | } |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3081 | kref_put(&rdata->refcount, cifs_readdata_release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | break; |
| 3083 | } |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3084 | |
| 3085 | kref_put(&rdata->refcount, cifs_readdata_release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3086 | } |
| 3087 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3088 | return rc; |
| 3089 | } |
| 3090 | |
| 3091 | static int cifs_readpage_worker(struct file *file, struct page *page, |
| 3092 | loff_t *poffset) |
| 3093 | { |
| 3094 | char *read_data; |
| 3095 | int rc; |
| 3096 | |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 3097 | /* Is the page cached? */ |
| 3098 | rc = cifs_readpage_from_fscache(file->f_path.dentry->d_inode, page); |
| 3099 | if (rc == 0) |
| 3100 | goto read_complete; |
| 3101 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3102 | page_cache_get(page); |
| 3103 | read_data = kmap(page); |
| 3104 | /* for reads over a certain size could initiate async read ahead */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3106 | rc = cifs_read(file, read_data, PAGE_CACHE_SIZE, poffset); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3108 | if (rc < 0) |
| 3109 | goto io_error; |
| 3110 | else |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 3111 | cFYI(1, "Bytes read %d", rc); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3112 | |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 3113 | file->f_path.dentry->d_inode->i_atime = |
| 3114 | current_fs_time(file->f_path.dentry->d_inode->i_sb); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3116 | if (PAGE_CACHE_SIZE > rc) |
| 3117 | memset(read_data + rc, 0, PAGE_CACHE_SIZE - rc); |
| 3118 | |
| 3119 | flush_dcache_page(page); |
| 3120 | SetPageUptodate(page); |
Suresh Jayaraman | 9dc0655 | 2010-07-05 18:13:11 +0530 | [diff] [blame] | 3121 | |
| 3122 | /* send this page to the cache */ |
| 3123 | cifs_readpage_to_fscache(file->f_path.dentry->d_inode, page); |
| 3124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3125 | rc = 0; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3127 | io_error: |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3128 | kunmap(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3129 | page_cache_release(page); |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 3130 | |
| 3131 | read_complete: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3132 | return rc; |
| 3133 | } |
| 3134 | |
| 3135 | static int cifs_readpage(struct file *file, struct page *page) |
| 3136 | { |
| 3137 | loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT; |
| 3138 | int rc = -EACCES; |
| 3139 | int xid; |
| 3140 | |
| 3141 | xid = GetXid(); |
| 3142 | |
| 3143 | if (file->private_data == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 3144 | rc = -EBADF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3145 | FreeXid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 3146 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3147 | } |
| 3148 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 3149 | cFYI(1, "readpage %p at offset %d 0x%x\n", |
| 3150 | page, (int)offset, (int)offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3151 | |
| 3152 | rc = cifs_readpage_worker(file, page, &offset); |
| 3153 | |
| 3154 | unlock_page(page); |
| 3155 | |
| 3156 | FreeXid(xid); |
| 3157 | return rc; |
| 3158 | } |
| 3159 | |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 3160 | static int is_inode_writable(struct cifsInodeInfo *cifs_inode) |
| 3161 | { |
| 3162 | struct cifsFileInfo *open_file; |
| 3163 | |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 3164 | spin_lock(&cifs_file_list_lock); |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 3165 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { |
Jeff Layton | 2e396b8 | 2010-10-15 15:34:01 -0400 | [diff] [blame] | 3166 | if (OPEN_FMODE(open_file->f_flags) & FMODE_WRITE) { |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 3167 | spin_unlock(&cifs_file_list_lock); |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 3168 | return 1; |
| 3169 | } |
| 3170 | } |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 3171 | spin_unlock(&cifs_file_list_lock); |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 3172 | return 0; |
| 3173 | } |
| 3174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3175 | /* We do not want to update the file size from server for inodes |
| 3176 | open for write - to avoid races with writepage extending |
| 3177 | the file - in the future we could consider allowing |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3178 | refreshing the inode only on increases in the file size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3179 | but this is tricky to do without racing with writebehind |
| 3180 | page caching in the current Linux kernel design */ |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3181 | bool is_size_safe_to_change(struct cifsInodeInfo *cifsInode, __u64 end_of_file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3182 | { |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 3183 | if (!cifsInode) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3184 | return true; |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 3185 | |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 3186 | if (is_inode_writable(cifsInode)) { |
| 3187 | /* This inode is open for write at least once */ |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 3188 | struct cifs_sb_info *cifs_sb; |
| 3189 | |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 3190 | cifs_sb = CIFS_SB(cifsInode->vfs_inode.i_sb); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 3191 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3192 | /* since no page cache to corrupt on directio |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 3193 | we can change size safely */ |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3194 | return true; |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 3195 | } |
| 3196 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3197 | if (i_size_read(&cifsInode->vfs_inode) < end_of_file) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3198 | return true; |
Steve French | 7ba52631 | 2007-02-08 18:14:13 +0000 | [diff] [blame] | 3199 | |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3200 | return false; |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 3201 | } else |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3202 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3203 | } |
| 3204 | |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 3205 | static int cifs_write_begin(struct file *file, struct address_space *mapping, |
| 3206 | loff_t pos, unsigned len, unsigned flags, |
| 3207 | struct page **pagep, void **fsdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3208 | { |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 3209 | pgoff_t index = pos >> PAGE_CACHE_SHIFT; |
| 3210 | loff_t offset = pos & (PAGE_CACHE_SIZE - 1); |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 3211 | loff_t page_start = pos & PAGE_MASK; |
| 3212 | loff_t i_size; |
| 3213 | struct page *page; |
| 3214 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3215 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 3216 | cFYI(1, "write_begin from %lld len %d", (long long)pos, len); |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 3217 | |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3218 | page = grab_cache_page_write_begin(mapping, index, flags); |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 3219 | if (!page) { |
| 3220 | rc = -ENOMEM; |
| 3221 | goto out; |
| 3222 | } |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 3223 | |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 3224 | if (PageUptodate(page)) |
| 3225 | goto out; |
Steve French | 8a23626 | 2007-03-06 00:31:00 +0000 | [diff] [blame] | 3226 | |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 3227 | /* |
| 3228 | * If we write a full page it will be up to date, no need to read from |
| 3229 | * the server. If the write is short, we'll end up doing a sync write |
| 3230 | * instead. |
| 3231 | */ |
| 3232 | if (len == PAGE_CACHE_SIZE) |
| 3233 | goto out; |
| 3234 | |
| 3235 | /* |
| 3236 | * optimize away the read when we have an oplock, and we're not |
| 3237 | * expecting to use any of the data we'd be reading in. That |
| 3238 | * is, when the page lies beyond the EOF, or straddles the EOF |
| 3239 | * and the write will cover all of the existing data. |
| 3240 | */ |
| 3241 | if (CIFS_I(mapping->host)->clientCanCacheRead) { |
| 3242 | i_size = i_size_read(mapping->host); |
| 3243 | if (page_start >= i_size || |
| 3244 | (offset == 0 && (pos + len) >= i_size)) { |
| 3245 | zero_user_segments(page, 0, offset, |
| 3246 | offset + len, |
| 3247 | PAGE_CACHE_SIZE); |
| 3248 | /* |
| 3249 | * PageChecked means that the parts of the page |
| 3250 | * to which we're not writing are considered up |
| 3251 | * to date. Once the data is copied to the |
| 3252 | * page, it can be set uptodate. |
| 3253 | */ |
| 3254 | SetPageChecked(page); |
| 3255 | goto out; |
| 3256 | } |
| 3257 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3258 | |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 3259 | if ((file->f_flags & O_ACCMODE) != O_WRONLY) { |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 3260 | /* |
| 3261 | * might as well read a page, it is fast enough. If we get |
| 3262 | * an error, we don't need to return it. cifs_write_end will |
| 3263 | * do a sync write instead since PG_uptodate isn't set. |
| 3264 | */ |
| 3265 | cifs_readpage_worker(file, page, &page_start); |
Steve French | 8a23626 | 2007-03-06 00:31:00 +0000 | [diff] [blame] | 3266 | } else { |
| 3267 | /* we could try using another file handle if there is one - |
| 3268 | but how would we lock it to prevent close of that handle |
| 3269 | racing with this read? In any case |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 3270 | this will be written out by write_end so is fine */ |
Steve French | 8a23626 | 2007-03-06 00:31:00 +0000 | [diff] [blame] | 3271 | } |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 3272 | out: |
| 3273 | *pagep = page; |
| 3274 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3275 | } |
| 3276 | |
Suresh Jayaraman | 85f2d6b | 2010-07-05 18:13:00 +0530 | [diff] [blame] | 3277 | static int cifs_release_page(struct page *page, gfp_t gfp) |
| 3278 | { |
| 3279 | if (PagePrivate(page)) |
| 3280 | return 0; |
| 3281 | |
| 3282 | return cifs_fscache_release_page(page, gfp); |
| 3283 | } |
| 3284 | |
| 3285 | static void cifs_invalidate_page(struct page *page, unsigned long offset) |
| 3286 | { |
| 3287 | struct cifsInodeInfo *cifsi = CIFS_I(page->mapping->host); |
| 3288 | |
| 3289 | if (offset == 0) |
| 3290 | cifs_fscache_invalidate_page(page, &cifsi->vfs_inode); |
| 3291 | } |
| 3292 | |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 3293 | static int cifs_launder_page(struct page *page) |
| 3294 | { |
| 3295 | int rc = 0; |
| 3296 | loff_t range_start = page_offset(page); |
| 3297 | loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1); |
| 3298 | struct writeback_control wbc = { |
| 3299 | .sync_mode = WB_SYNC_ALL, |
| 3300 | .nr_to_write = 0, |
| 3301 | .range_start = range_start, |
| 3302 | .range_end = range_end, |
| 3303 | }; |
| 3304 | |
| 3305 | cFYI(1, "Launder page: %p", page); |
| 3306 | |
| 3307 | if (clear_page_dirty_for_io(page)) |
| 3308 | rc = cifs_writepage_locked(page, &wbc); |
| 3309 | |
| 3310 | cifs_fscache_invalidate_page(page, page->mapping->host); |
| 3311 | return rc; |
| 3312 | } |
| 3313 | |
Tejun Heo | 9b64697 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 3314 | void cifs_oplock_break(struct work_struct *work) |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 3315 | { |
| 3316 | struct cifsFileInfo *cfile = container_of(work, struct cifsFileInfo, |
| 3317 | oplock_break); |
Jeff Layton | a5e18bc | 2010-10-11 15:07:18 -0400 | [diff] [blame] | 3318 | struct inode *inode = cfile->dentry->d_inode; |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 3319 | struct cifsInodeInfo *cinode = CIFS_I(inode); |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 3320 | int rc = 0; |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 3321 | |
| 3322 | if (inode && S_ISREG(inode->i_mode)) { |
Steve French | d54ff73 | 2010-04-27 04:38:15 +0000 | [diff] [blame] | 3323 | if (cinode->clientCanCacheRead) |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 3324 | break_lease(inode, O_RDONLY); |
Steve French | d54ff73 | 2010-04-27 04:38:15 +0000 | [diff] [blame] | 3325 | else |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 3326 | break_lease(inode, O_WRONLY); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 3327 | rc = filemap_fdatawrite(inode->i_mapping); |
| 3328 | if (cinode->clientCanCacheRead == 0) { |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 3329 | rc = filemap_fdatawait(inode->i_mapping); |
| 3330 | mapping_set_error(inode->i_mapping, rc); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 3331 | invalidate_remote_inode(inode); |
| 3332 | } |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 3333 | cFYI(1, "Oplock flush inode %p rc %d", inode, rc); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 3334 | } |
| 3335 | |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 3336 | rc = cifs_push_locks(cfile); |
| 3337 | if (rc) |
| 3338 | cERROR(1, "Push locks rc = %d", rc); |
| 3339 | |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 3340 | /* |
| 3341 | * releasing stale oplock after recent reconnect of smb session using |
| 3342 | * a now incorrect file handle is not a data integrity issue but do |
| 3343 | * not bother sending an oplock release if session to server still is |
| 3344 | * disconnected since oplock already released by the server |
| 3345 | */ |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 3346 | if (!cfile->oplock_break_cancelled) { |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 3347 | rc = CIFSSMBLock(0, tlink_tcon(cfile->tlink), cfile->netfid, |
| 3348 | current->tgid, 0, 0, 0, 0, |
| 3349 | LOCKING_ANDX_OPLOCK_RELEASE, false, |
Pavel Shilovsky | 12fed00 | 2011-01-17 20:15:44 +0300 | [diff] [blame] | 3350 | cinode->clientCanCacheRead ? 1 : 0); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 3351 | cFYI(1, "Oplock release rc = %d", rc); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 3352 | } |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 3353 | } |
| 3354 | |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 3355 | const struct address_space_operations cifs_addr_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3356 | .readpage = cifs_readpage, |
| 3357 | .readpages = cifs_readpages, |
| 3358 | .writepage = cifs_writepage, |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 3359 | .writepages = cifs_writepages, |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 3360 | .write_begin = cifs_write_begin, |
| 3361 | .write_end = cifs_write_end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3362 | .set_page_dirty = __set_page_dirty_nobuffers, |
Suresh Jayaraman | 85f2d6b | 2010-07-05 18:13:00 +0530 | [diff] [blame] | 3363 | .releasepage = cifs_release_page, |
| 3364 | .invalidatepage = cifs_invalidate_page, |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 3365 | .launder_page = cifs_launder_page, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3366 | }; |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 3367 | |
| 3368 | /* |
| 3369 | * cifs_readpages requires the server to support a buffer large enough to |
| 3370 | * contain the header plus one complete page of data. Otherwise, we need |
| 3371 | * to leave cifs_readpages out of the address space operations. |
| 3372 | */ |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 3373 | const struct address_space_operations cifs_addr_ops_smallbuf = { |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 3374 | .readpage = cifs_readpage, |
| 3375 | .writepage = cifs_writepage, |
| 3376 | .writepages = cifs_writepages, |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 3377 | .write_begin = cifs_write_begin, |
| 3378 | .write_end = cifs_write_end, |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 3379 | .set_page_dirty = __set_page_dirty_nobuffers, |
Suresh Jayaraman | 85f2d6b | 2010-07-05 18:13:00 +0530 | [diff] [blame] | 3380 | .releasepage = cifs_release_page, |
| 3381 | .invalidatepage = cifs_invalidate_page, |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 3382 | .launder_page = cifs_launder_page, |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 3383 | }; |