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> |
Nikolay Borisov | f86196e | 2019-01-03 15:29:02 -0800 | [diff] [blame] | 36 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <asm/div64.h> |
| 38 | #include "cifsfs.h" |
| 39 | #include "cifspdu.h" |
| 40 | #include "cifsglob.h" |
| 41 | #include "cifsproto.h" |
| 42 | #include "cifs_unicode.h" |
| 43 | #include "cifs_debug.h" |
| 44 | #include "cifs_fs_sb.h" |
Suresh Jayaraman | 9451a9a | 2010-07-05 18:12:45 +0530 | [diff] [blame] | 45 | #include "fscache.h" |
Long Li | bd3dcc6 | 2017-11-22 17:38:47 -0700 | [diff] [blame] | 46 | #include "smbdirect.h" |
Steve French | 07b92d0 | 2013-02-18 10:34:26 -0600 | [diff] [blame] | 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | static inline int cifs_convert_flags(unsigned int flags) |
| 49 | { |
| 50 | if ((flags & O_ACCMODE) == O_RDONLY) |
| 51 | return GENERIC_READ; |
| 52 | else if ((flags & O_ACCMODE) == O_WRONLY) |
| 53 | return GENERIC_WRITE; |
| 54 | else if ((flags & O_ACCMODE) == O_RDWR) { |
| 55 | /* GENERIC_ALL is too much permission to request |
| 56 | can cause unnecessary access denied on create */ |
| 57 | /* return GENERIC_ALL; */ |
| 58 | return (GENERIC_READ | GENERIC_WRITE); |
| 59 | } |
| 60 | |
Jeff Layton | e10f7b5 | 2008-05-14 10:21:33 -0700 | [diff] [blame] | 61 | return (READ_CONTROL | FILE_WRITE_ATTRIBUTES | FILE_READ_ATTRIBUTES | |
| 62 | FILE_WRITE_EA | FILE_APPEND_DATA | FILE_WRITE_DATA | |
| 63 | FILE_READ_DATA); |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 64 | } |
Jeff Layton | e10f7b5 | 2008-05-14 10:21:33 -0700 | [diff] [blame] | 65 | |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 66 | static u32 cifs_posix_convert_flags(unsigned int flags) |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 67 | { |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 68 | u32 posix_flags = 0; |
Jeff Layton | e10f7b5 | 2008-05-14 10:21:33 -0700 | [diff] [blame] | 69 | |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 70 | if ((flags & O_ACCMODE) == O_RDONLY) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 71 | posix_flags = SMB_O_RDONLY; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 72 | else if ((flags & O_ACCMODE) == O_WRONLY) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 73 | posix_flags = SMB_O_WRONLY; |
| 74 | else if ((flags & O_ACCMODE) == O_RDWR) |
| 75 | posix_flags = SMB_O_RDWR; |
| 76 | |
Steve French | 07b92d0 | 2013-02-18 10:34:26 -0600 | [diff] [blame] | 77 | if (flags & O_CREAT) { |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 78 | posix_flags |= SMB_O_CREAT; |
Steve French | 07b92d0 | 2013-02-18 10:34:26 -0600 | [diff] [blame] | 79 | if (flags & O_EXCL) |
| 80 | posix_flags |= SMB_O_EXCL; |
| 81 | } else if (flags & O_EXCL) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 82 | cifs_dbg(FYI, "Application %s pid %d has incorrectly set O_EXCL flag but not O_CREAT on file open. Ignoring O_EXCL\n", |
| 83 | current->comm, current->tgid); |
Steve French | 07b92d0 | 2013-02-18 10:34:26 -0600 | [diff] [blame] | 84 | |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 85 | if (flags & O_TRUNC) |
| 86 | posix_flags |= SMB_O_TRUNC; |
| 87 | /* be safe and imply O_SYNC for O_DSYNC */ |
Christoph Hellwig | 6b2f3d1 | 2009-10-27 11:05:28 +0100 | [diff] [blame] | 88 | if (flags & O_DSYNC) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 89 | posix_flags |= SMB_O_SYNC; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 90 | if (flags & O_DIRECTORY) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 91 | posix_flags |= SMB_O_DIRECTORY; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 92 | if (flags & O_NOFOLLOW) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 93 | posix_flags |= SMB_O_NOFOLLOW; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 94 | if (flags & O_DIRECT) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 95 | posix_flags |= SMB_O_DIRECT; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 96 | |
| 97 | return posix_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | static inline int cifs_get_disposition(unsigned int flags) |
| 101 | { |
| 102 | if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL)) |
| 103 | return FILE_CREATE; |
| 104 | else if ((flags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC)) |
| 105 | return FILE_OVERWRITE_IF; |
| 106 | else if ((flags & O_CREAT) == O_CREAT) |
| 107 | return FILE_OPEN_IF; |
Steve French | 55aa2e0 | 2006-05-30 18:09:31 +0000 | [diff] [blame] | 108 | else if ((flags & O_TRUNC) == O_TRUNC) |
| 109 | return FILE_OVERWRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | else |
| 111 | return FILE_OPEN; |
| 112 | } |
| 113 | |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 114 | int cifs_posix_open(char *full_path, struct inode **pinode, |
| 115 | struct super_block *sb, int mode, unsigned int f_flags, |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 116 | __u32 *poplock, __u16 *pnetfid, unsigned int xid) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 117 | { |
| 118 | int rc; |
| 119 | FILE_UNIX_BASIC_INFO *presp_data; |
| 120 | __u32 posix_flags = 0; |
| 121 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
| 122 | struct cifs_fattr fattr; |
| 123 | struct tcon_link *tlink; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 124 | struct cifs_tcon *tcon; |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 125 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 126 | cifs_dbg(FYI, "posix open %s\n", full_path); |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 127 | |
| 128 | presp_data = kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL); |
| 129 | if (presp_data == NULL) |
| 130 | return -ENOMEM; |
| 131 | |
| 132 | tlink = cifs_sb_tlink(cifs_sb); |
| 133 | if (IS_ERR(tlink)) { |
| 134 | rc = PTR_ERR(tlink); |
| 135 | goto posix_open_ret; |
| 136 | } |
| 137 | |
| 138 | tcon = tlink_tcon(tlink); |
| 139 | mode &= ~current_umask(); |
| 140 | |
| 141 | posix_flags = cifs_posix_convert_flags(f_flags); |
| 142 | rc = CIFSPOSIXCreate(xid, tcon, posix_flags, mode, pnetfid, presp_data, |
| 143 | poplock, full_path, cifs_sb->local_nls, |
Nakajima Akira | bc8ebdc4 | 2015-02-13 15:35:58 +0900 | [diff] [blame] | 144 | cifs_remap(cifs_sb)); |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 145 | cifs_put_tlink(tlink); |
| 146 | |
| 147 | if (rc) |
| 148 | goto posix_open_ret; |
| 149 | |
| 150 | if (presp_data->Type == cpu_to_le32(-1)) |
| 151 | goto posix_open_ret; /* open ok, caller does qpathinfo */ |
| 152 | |
| 153 | if (!pinode) |
| 154 | goto posix_open_ret; /* caller does not need info */ |
| 155 | |
| 156 | cifs_unix_basic_to_fattr(&fattr, presp_data, cifs_sb); |
| 157 | |
| 158 | /* get new inode and set it up */ |
| 159 | if (*pinode == NULL) { |
| 160 | cifs_fill_uniqueid(sb, &fattr); |
| 161 | *pinode = cifs_iget(sb, &fattr); |
| 162 | if (!*pinode) { |
| 163 | rc = -ENOMEM; |
| 164 | goto posix_open_ret; |
| 165 | } |
| 166 | } else { |
| 167 | cifs_fattr_to_inode(*pinode, &fattr); |
| 168 | } |
| 169 | |
| 170 | posix_open_ret: |
| 171 | kfree(presp_data); |
| 172 | return rc; |
| 173 | } |
| 174 | |
Pavel Shilovsky | eeb910a | 2010-11-25 15:12:39 +0300 | [diff] [blame] | 175 | static int |
| 176 | cifs_nt_open(char *full_path, struct inode *inode, struct cifs_sb_info *cifs_sb, |
Pavel Shilovsky | fb1214e | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 177 | struct cifs_tcon *tcon, unsigned int f_flags, __u32 *oplock, |
| 178 | struct cifs_fid *fid, unsigned int xid) |
Pavel Shilovsky | eeb910a | 2010-11-25 15:12:39 +0300 | [diff] [blame] | 179 | { |
| 180 | int rc; |
Pavel Shilovsky | fb1214e | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 181 | int desired_access; |
Pavel Shilovsky | eeb910a | 2010-11-25 15:12:39 +0300 | [diff] [blame] | 182 | int disposition; |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 183 | int create_options = CREATE_NOT_DIR; |
Pavel Shilovsky | eeb910a | 2010-11-25 15:12:39 +0300 | [diff] [blame] | 184 | FILE_ALL_INFO *buf; |
Pavel Shilovsky | b8c32db | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 185 | struct TCP_Server_Info *server = tcon->ses->server; |
Pavel Shilovsky | 226730b | 2013-07-05 12:00:30 +0400 | [diff] [blame] | 186 | struct cifs_open_parms oparms; |
Pavel Shilovsky | eeb910a | 2010-11-25 15:12:39 +0300 | [diff] [blame] | 187 | |
Pavel Shilovsky | b8c32db | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 188 | if (!server->ops->open) |
Pavel Shilovsky | fb1214e | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 189 | return -ENOSYS; |
| 190 | |
| 191 | desired_access = cifs_convert_flags(f_flags); |
Pavel Shilovsky | eeb910a | 2010-11-25 15:12:39 +0300 | [diff] [blame] | 192 | |
| 193 | /********************************************************************* |
| 194 | * open flag mapping table: |
| 195 | * |
| 196 | * POSIX Flag CIFS Disposition |
| 197 | * ---------- ---------------- |
| 198 | * O_CREAT FILE_OPEN_IF |
| 199 | * O_CREAT | O_EXCL FILE_CREATE |
| 200 | * O_CREAT | O_TRUNC FILE_OVERWRITE_IF |
| 201 | * O_TRUNC FILE_OVERWRITE |
| 202 | * none of the above FILE_OPEN |
| 203 | * |
| 204 | * Note that there is not a direct match between disposition |
| 205 | * FILE_SUPERSEDE (ie create whether or not file exists although |
| 206 | * O_CREAT | O_TRUNC is similar but truncates the existing |
| 207 | * file rather than creating a new file as FILE_SUPERSEDE does |
| 208 | * (which uses the attributes / metadata passed in on open call) |
| 209 | *? |
| 210 | *? O_SYNC is a reasonable match to CIFS writethrough flag |
| 211 | *? and the read write flags match reasonably. O_LARGEFILE |
| 212 | *? is irrelevant because largefile support is always used |
| 213 | *? by this client. Flags O_APPEND, O_DIRECT, O_DIRECTORY, |
| 214 | * O_FASYNC, O_NOFOLLOW, O_NONBLOCK need further investigation |
| 215 | *********************************************************************/ |
| 216 | |
| 217 | disposition = cifs_get_disposition(f_flags); |
| 218 | |
| 219 | /* BB pass O_SYNC flag through on file attributes .. BB */ |
| 220 | |
| 221 | buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); |
| 222 | if (!buf) |
| 223 | return -ENOMEM; |
| 224 | |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 225 | if (backup_cred(cifs_sb)) |
| 226 | create_options |= CREATE_OPEN_BACKUP_INTENT; |
| 227 | |
Steve French | 1013e76 | 2017-09-22 01:40:27 -0500 | [diff] [blame] | 228 | /* O_SYNC also has bit for O_DSYNC so following check picks up either */ |
| 229 | if (f_flags & O_SYNC) |
| 230 | create_options |= CREATE_WRITE_THROUGH; |
| 231 | |
| 232 | if (f_flags & O_DIRECT) |
| 233 | create_options |= CREATE_NO_BUFFER; |
| 234 | |
Pavel Shilovsky | 226730b | 2013-07-05 12:00:30 +0400 | [diff] [blame] | 235 | oparms.tcon = tcon; |
| 236 | oparms.cifs_sb = cifs_sb; |
| 237 | oparms.desired_access = desired_access; |
| 238 | oparms.create_options = create_options; |
| 239 | oparms.disposition = disposition; |
| 240 | oparms.path = full_path; |
| 241 | oparms.fid = fid; |
Pavel Shilovsky | 9cbc0b7 | 2013-07-09 18:40:58 +0400 | [diff] [blame] | 242 | oparms.reconnect = false; |
Pavel Shilovsky | 226730b | 2013-07-05 12:00:30 +0400 | [diff] [blame] | 243 | |
| 244 | rc = server->ops->open(xid, &oparms, oplock, buf); |
Pavel Shilovsky | eeb910a | 2010-11-25 15:12:39 +0300 | [diff] [blame] | 245 | |
| 246 | if (rc) |
| 247 | goto out; |
| 248 | |
| 249 | if (tcon->unix_ext) |
| 250 | rc = cifs_get_inode_info_unix(&inode, full_path, inode->i_sb, |
| 251 | xid); |
| 252 | else |
| 253 | rc = cifs_get_inode_info(&inode, full_path, buf, inode->i_sb, |
Steve French | 42eacf9 | 2014-02-10 14:08:16 -0600 | [diff] [blame] | 254 | xid, fid); |
Pavel Shilovsky | eeb910a | 2010-11-25 15:12:39 +0300 | [diff] [blame] | 255 | |
| 256 | out: |
| 257 | kfree(buf); |
| 258 | return rc; |
| 259 | } |
| 260 | |
Pavel Shilovsky | 63b7d3a | 2012-12-24 14:41:19 +0400 | [diff] [blame] | 261 | static bool |
| 262 | cifs_has_mand_locks(struct cifsInodeInfo *cinode) |
| 263 | { |
| 264 | struct cifs_fid_locks *cur; |
| 265 | bool has_locks = false; |
| 266 | |
| 267 | down_read(&cinode->lock_sem); |
| 268 | list_for_each_entry(cur, &cinode->llist, llist) { |
| 269 | if (!list_empty(&cur->locks)) { |
| 270 | has_locks = true; |
| 271 | break; |
| 272 | } |
| 273 | } |
| 274 | up_read(&cinode->lock_sem); |
| 275 | return has_locks; |
| 276 | } |
| 277 | |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 278 | struct cifsFileInfo * |
Pavel Shilovsky | fb1214e | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 279 | cifs_new_fileinfo(struct cifs_fid *fid, struct file *file, |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 280 | struct tcon_link *tlink, __u32 oplock) |
| 281 | { |
Goldwyn Rodrigues | 1f1735c | 2016-04-18 06:41:52 -0500 | [diff] [blame] | 282 | struct dentry *dentry = file_dentry(file); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 283 | struct inode *inode = d_inode(dentry); |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 284 | struct cifsInodeInfo *cinode = CIFS_I(inode); |
| 285 | struct cifsFileInfo *cfile; |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 286 | struct cifs_fid_locks *fdlocks; |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 287 | struct cifs_tcon *tcon = tlink_tcon(tlink); |
Pavel Shilovsky | 63b7d3a | 2012-12-24 14:41:19 +0400 | [diff] [blame] | 288 | struct TCP_Server_Info *server = tcon->ses->server; |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 289 | |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 290 | cfile = kzalloc(sizeof(struct cifsFileInfo), GFP_KERNEL); |
| 291 | if (cfile == NULL) |
| 292 | return cfile; |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 293 | |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 294 | fdlocks = kzalloc(sizeof(struct cifs_fid_locks), GFP_KERNEL); |
| 295 | if (!fdlocks) { |
| 296 | kfree(cfile); |
| 297 | return NULL; |
| 298 | } |
| 299 | |
| 300 | INIT_LIST_HEAD(&fdlocks->locks); |
| 301 | fdlocks->cfile = cfile; |
| 302 | cfile->llist = fdlocks; |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 303 | down_write(&cinode->lock_sem); |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 304 | list_add(&fdlocks->llist, &cinode->llist); |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 305 | up_write(&cinode->lock_sem); |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 306 | |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 307 | cfile->count = 1; |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 308 | cfile->pid = current->tgid; |
| 309 | cfile->uid = current_fsuid(); |
| 310 | cfile->dentry = dget(dentry); |
| 311 | cfile->f_flags = file->f_flags; |
| 312 | cfile->invalidHandle = false; |
| 313 | cfile->tlink = cifs_get_tlink(tlink); |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 314 | INIT_WORK(&cfile->oplock_break, cifs_oplock_break); |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 315 | mutex_init(&cfile->fh_mutex); |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 316 | spin_lock_init(&cfile->file_info_lock); |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 317 | |
Mateusz Guzik | 24261fc | 2013-03-08 16:30:03 +0100 | [diff] [blame] | 318 | cifs_sb_active(inode->i_sb); |
| 319 | |
Pavel Shilovsky | 63b7d3a | 2012-12-24 14:41:19 +0400 | [diff] [blame] | 320 | /* |
| 321 | * If the server returned a read oplock and we have mandatory brlocks, |
| 322 | * set oplock level to None. |
| 323 | */ |
Pavel Shilovsky | 53ef101 | 2013-09-05 16:11:28 +0400 | [diff] [blame] | 324 | if (server->ops->is_read_op(oplock) && cifs_has_mand_locks(cinode)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 325 | cifs_dbg(FYI, "Reset oplock val from read to None due to mand locks\n"); |
Pavel Shilovsky | 63b7d3a | 2012-12-24 14:41:19 +0400 | [diff] [blame] | 326 | oplock = 0; |
| 327 | } |
| 328 | |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 329 | spin_lock(&tcon->open_file_lock); |
Pavel Shilovsky | 63b7d3a | 2012-12-24 14:41:19 +0400 | [diff] [blame] | 330 | if (fid->pending_open->oplock != CIFS_OPLOCK_NO_CHANGE && oplock) |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 331 | oplock = fid->pending_open->oplock; |
| 332 | list_del(&fid->pending_open->olist); |
| 333 | |
Pavel Shilovsky | 42873b0 | 2013-09-05 21:30:16 +0400 | [diff] [blame] | 334 | fid->purge_cache = false; |
Pavel Shilovsky | 63b7d3a | 2012-12-24 14:41:19 +0400 | [diff] [blame] | 335 | server->ops->set_fid(cfile, fid, oplock); |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 336 | |
| 337 | list_add(&cfile->tlist, &tcon->openFileList); |
Steve French | fae8044 | 2018-10-19 17:14:32 -0500 | [diff] [blame] | 338 | atomic_inc(&tcon->num_local_opens); |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 339 | |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 340 | /* if readable file instance put first in list*/ |
| 341 | if (file->f_mode & FMODE_READ) |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 342 | list_add(&cfile->flist, &cinode->openFileList); |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 343 | else |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 344 | list_add_tail(&cfile->flist, &cinode->openFileList); |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 345 | spin_unlock(&tcon->open_file_lock); |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 346 | |
Pavel Shilovsky | 42873b0 | 2013-09-05 21:30:16 +0400 | [diff] [blame] | 347 | if (fid->purge_cache) |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 348 | cifs_zap_mapping(inode); |
Pavel Shilovsky | 42873b0 | 2013-09-05 21:30:16 +0400 | [diff] [blame] | 349 | |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 350 | file->private_data = cfile; |
| 351 | return cfile; |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 352 | } |
| 353 | |
Jeff Layton | 764a1b1 | 2012-07-25 14:59:54 -0400 | [diff] [blame] | 354 | struct cifsFileInfo * |
| 355 | cifsFileInfo_get(struct cifsFileInfo *cifs_file) |
| 356 | { |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 357 | spin_lock(&cifs_file->file_info_lock); |
Jeff Layton | 764a1b1 | 2012-07-25 14:59:54 -0400 | [diff] [blame] | 358 | cifsFileInfo_get_locked(cifs_file); |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 359 | spin_unlock(&cifs_file->file_info_lock); |
Jeff Layton | 764a1b1 | 2012-07-25 14:59:54 -0400 | [diff] [blame] | 360 | return cifs_file; |
| 361 | } |
| 362 | |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 363 | /* |
| 364 | * Release a reference on the file private data. This may involve closing |
Jeff Layton | 5f6dbc9 | 2010-10-15 15:34:06 -0400 | [diff] [blame] | 365 | * the filehandle out on the server. Must be called without holding |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 366 | * tcon->open_file_lock and cifs_file->file_info_lock. |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 367 | */ |
Jeff Layton | b33879a | 2010-10-15 15:34:04 -0400 | [diff] [blame] | 368 | void cifsFileInfo_put(struct cifsFileInfo *cifs_file) |
| 369 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 370 | struct inode *inode = d_inode(cifs_file->dentry); |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 371 | struct cifs_tcon *tcon = tlink_tcon(cifs_file->tlink); |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 372 | struct TCP_Server_Info *server = tcon->ses->server; |
Pavel Shilovsky | e66673e | 2010-11-02 12:00:42 +0300 | [diff] [blame] | 373 | struct cifsInodeInfo *cifsi = CIFS_I(inode); |
Mateusz Guzik | 24261fc | 2013-03-08 16:30:03 +0100 | [diff] [blame] | 374 | struct super_block *sb = inode->i_sb; |
| 375 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 376 | struct cifsLockInfo *li, *tmp; |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 377 | struct cifs_fid fid; |
| 378 | struct cifs_pending_open open; |
Sachin Prabhu | ca7df8e | 2015-01-15 12:22:04 +0000 | [diff] [blame] | 379 | bool oplock_break_cancelled; |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 380 | |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 381 | spin_lock(&tcon->open_file_lock); |
| 382 | |
| 383 | spin_lock(&cifs_file->file_info_lock); |
Jeff Layton | 5f6dbc9 | 2010-10-15 15:34:06 -0400 | [diff] [blame] | 384 | if (--cifs_file->count > 0) { |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 385 | spin_unlock(&cifs_file->file_info_lock); |
| 386 | spin_unlock(&tcon->open_file_lock); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 387 | return; |
Jeff Layton | b33879a | 2010-10-15 15:34:04 -0400 | [diff] [blame] | 388 | } |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 389 | spin_unlock(&cifs_file->file_info_lock); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 390 | |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 391 | if (server->ops->get_lease_key) |
| 392 | server->ops->get_lease_key(inode, &fid); |
| 393 | |
| 394 | /* store open in pending opens to make sure we don't miss lease break */ |
| 395 | cifs_add_pending_open_locked(&fid, cifs_file->tlink, &open); |
| 396 | |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 397 | /* remove it from the lists */ |
| 398 | list_del(&cifs_file->flist); |
| 399 | list_del(&cifs_file->tlist); |
Steve French | fae8044 | 2018-10-19 17:14:32 -0500 | [diff] [blame] | 400 | atomic_dec(&tcon->num_local_opens); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 401 | |
| 402 | if (list_empty(&cifsi->openFileList)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 403 | cifs_dbg(FYI, "closing last open instance for inode %p\n", |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 404 | d_inode(cifs_file->dentry)); |
Pavel Shilovsky | 2536413 | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 405 | /* |
| 406 | * In strict cache mode we need invalidate mapping on the last |
| 407 | * close because it may cause a error when we open this file |
| 408 | * again and get at least level II oplock. |
| 409 | */ |
Pavel Shilovsky | 4f8ba8a | 2010-11-21 22:36:12 +0300 | [diff] [blame] | 410 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO) |
Jeff Layton | aff8d5c | 2014-04-30 09:31:45 -0400 | [diff] [blame] | 411 | set_bit(CIFS_INO_INVALID_MAPPING, &cifsi->flags); |
Pavel Shilovsky | c672362 | 2010-11-03 10:58:57 +0300 | [diff] [blame] | 412 | cifs_set_oplock_level(cifsi, 0); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 413 | } |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 414 | |
| 415 | spin_unlock(&tcon->open_file_lock); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 416 | |
Sachin Prabhu | ca7df8e | 2015-01-15 12:22:04 +0000 | [diff] [blame] | 417 | oplock_break_cancelled = cancel_work_sync(&cifs_file->oplock_break); |
Jeff Layton | ad63594 | 2011-07-26 12:20:17 -0400 | [diff] [blame] | 418 | |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 419 | if (!tcon->need_reconnect && !cifs_file->invalidHandle) { |
Pavel Shilovsky | 0ff78a2 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 420 | struct TCP_Server_Info *server = tcon->ses->server; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 421 | unsigned int xid; |
Pavel Shilovsky | 0ff78a2 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 422 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 423 | xid = get_xid(); |
Pavel Shilovsky | 0ff78a2 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 424 | if (server->ops->close) |
Pavel Shilovsky | 760ad0c | 2012-09-25 11:00:07 +0400 | [diff] [blame] | 425 | server->ops->close(xid, tcon, &cifs_file->fid); |
| 426 | _free_xid(xid); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 427 | } |
| 428 | |
Sachin Prabhu | ca7df8e | 2015-01-15 12:22:04 +0000 | [diff] [blame] | 429 | if (oplock_break_cancelled) |
| 430 | cifs_done_oplock_break(cifsi); |
| 431 | |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 432 | cifs_del_pending_open(&open); |
| 433 | |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 434 | /* |
| 435 | * Delete any outstanding lock records. We'll lose them when the file |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 436 | * is closed anyway. |
| 437 | */ |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 438 | down_write(&cifsi->lock_sem); |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 439 | list_for_each_entry_safe(li, tmp, &cifs_file->llist->locks, llist) { |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 440 | list_del(&li->llist); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 441 | cifs_del_lock_waiters(li); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 442 | kfree(li); |
| 443 | } |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 444 | list_del(&cifs_file->llist->llist); |
| 445 | kfree(cifs_file->llist); |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 446 | up_write(&cifsi->lock_sem); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 447 | |
| 448 | cifs_put_tlink(cifs_file->tlink); |
| 449 | dput(cifs_file->dentry); |
Mateusz Guzik | 24261fc | 2013-03-08 16:30:03 +0100 | [diff] [blame] | 450 | cifs_sb_deactive(sb); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 451 | kfree(cifs_file); |
Jeff Layton | b33879a | 2010-10-15 15:34:04 -0400 | [diff] [blame] | 452 | } |
| 453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | int cifs_open(struct inode *inode, struct file *file) |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 455 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | { |
| 457 | int rc = -EACCES; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 458 | unsigned int xid; |
Jeff Layton | 590a3fe | 2009-09-12 11:54:28 -0400 | [diff] [blame] | 459 | __u32 oplock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | struct cifs_sb_info *cifs_sb; |
Pavel Shilovsky | b8c32db | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 461 | struct TCP_Server_Info *server; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 462 | struct cifs_tcon *tcon; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 463 | struct tcon_link *tlink; |
Pavel Shilovsky | fb1214e | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 464 | struct cifsFileInfo *cfile = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | char *full_path = NULL; |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 466 | bool posix_open_ok = false; |
Pavel Shilovsky | fb1214e | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 467 | struct cifs_fid fid; |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 468 | struct cifs_pending_open open; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 470 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | |
| 472 | cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 473 | tlink = cifs_sb_tlink(cifs_sb); |
| 474 | if (IS_ERR(tlink)) { |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 475 | free_xid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 476 | return PTR_ERR(tlink); |
| 477 | } |
| 478 | tcon = tlink_tcon(tlink); |
Pavel Shilovsky | b8c32db | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 479 | server = tcon->ses->server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | |
Goldwyn Rodrigues | 1f1735c | 2016-04-18 06:41:52 -0500 | [diff] [blame] | 481 | full_path = build_path_from_dentry(file_dentry(file)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 483 | rc = -ENOMEM; |
Jeff Layton | 232341b | 2010-08-05 13:58:38 -0400 | [diff] [blame] | 484 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | } |
| 486 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 487 | cifs_dbg(FYI, "inode = 0x%p file flags are 0x%x for %s\n", |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 488 | inode, file->f_flags, full_path); |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 489 | |
Namjae Jeon | 787aded | 2014-08-22 14:22:51 +0900 | [diff] [blame] | 490 | if (file->f_flags & O_DIRECT && |
| 491 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO) { |
| 492 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
| 493 | file->f_op = &cifs_file_direct_nobrl_ops; |
| 494 | else |
| 495 | file->f_op = &cifs_file_direct_ops; |
| 496 | } |
| 497 | |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 498 | if (server->oplocks) |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 499 | oplock = REQ_OPLOCK; |
| 500 | else |
| 501 | oplock = 0; |
| 502 | |
Steve French | 64cc2c6 | 2009-03-04 19:54:08 +0000 | [diff] [blame] | 503 | if (!tcon->broken_posix_open && tcon->unix_ext && |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 504 | cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP & |
| 505 | le64_to_cpu(tcon->fsUnixInfo.Capability))) { |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 506 | /* can not refresh inode info since size could be stale */ |
Jeff Layton | 2422f67 | 2010-06-16 13:40:16 -0400 | [diff] [blame] | 507 | rc = cifs_posix_open(full_path, &inode, inode->i_sb, |
Steve French | fa588e0 | 2010-04-22 19:21:55 +0000 | [diff] [blame] | 508 | cifs_sb->mnt_file_mode /* ignored */, |
Pavel Shilovsky | fb1214e | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 509 | file->f_flags, &oplock, &fid.netfid, xid); |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 510 | if (rc == 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 511 | cifs_dbg(FYI, "posix open succeeded\n"); |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 512 | posix_open_ok = true; |
Steve French | 64cc2c6 | 2009-03-04 19:54:08 +0000 | [diff] [blame] | 513 | } else if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) { |
| 514 | if (tcon->ses->serverNOS) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 515 | cifs_dbg(VFS, "server %s of type %s returned unexpected error on SMB posix open, disabling posix open support. Check if server update available.\n", |
| 516 | tcon->ses->serverName, |
| 517 | tcon->ses->serverNOS); |
Steve French | 64cc2c6 | 2009-03-04 19:54:08 +0000 | [diff] [blame] | 518 | tcon->broken_posix_open = true; |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 519 | } else if ((rc != -EIO) && (rc != -EREMOTE) && |
| 520 | (rc != -EOPNOTSUPP)) /* path not found or net err */ |
| 521 | goto out; |
Pavel Shilovsky | fb1214e | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 522 | /* |
| 523 | * Else fallthrough to retry open the old way on network i/o |
| 524 | * or DFS errors. |
| 525 | */ |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 526 | } |
| 527 | |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 528 | if (server->ops->get_lease_key) |
| 529 | server->ops->get_lease_key(inode, &fid); |
| 530 | |
| 531 | cifs_add_pending_open(&fid, tlink, &open); |
| 532 | |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 533 | if (!posix_open_ok) { |
Pavel Shilovsky | b8c32db | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 534 | if (server->ops->get_lease_key) |
| 535 | server->ops->get_lease_key(inode, &fid); |
| 536 | |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 537 | rc = cifs_nt_open(full_path, inode, cifs_sb, tcon, |
Pavel Shilovsky | fb1214e | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 538 | file->f_flags, &oplock, &fid, xid); |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 539 | if (rc) { |
| 540 | cifs_del_pending_open(&open); |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 541 | goto out; |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 542 | } |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 543 | } |
Jeff Layton | 47c78b7 | 2010-06-16 13:40:17 -0400 | [diff] [blame] | 544 | |
Pavel Shilovsky | fb1214e | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 545 | cfile = cifs_new_fileinfo(&fid, file, tlink, oplock); |
| 546 | if (cfile == NULL) { |
Pavel Shilovsky | b8c32db | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 547 | if (server->ops->close) |
| 548 | server->ops->close(xid, tcon, &fid); |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 549 | cifs_del_pending_open(&open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | rc = -ENOMEM; |
| 551 | goto out; |
| 552 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
Suresh Jayaraman | 9451a9a | 2010-07-05 18:12:45 +0530 | [diff] [blame] | 554 | cifs_fscache_set_inode_cookie(inode, file); |
| 555 | |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 556 | if ((oplock & CIFS_CREATE_ACTION) && !posix_open_ok && tcon->unix_ext) { |
Pavel Shilovsky | fb1214e | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 557 | /* |
| 558 | * Time to set mode which we can not set earlier due to |
| 559 | * problems creating new read-only files. |
| 560 | */ |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 561 | struct cifs_unix_set_info_args args = { |
| 562 | .mode = inode->i_mode, |
Eric W. Biederman | 49418b2 | 2013-02-06 00:57:56 -0800 | [diff] [blame] | 563 | .uid = INVALID_UID, /* no change */ |
| 564 | .gid = INVALID_GID, /* no change */ |
Pavel Shilovsky | 7e12edd | 2010-11-25 17:20:20 +0300 | [diff] [blame] | 565 | .ctime = NO_CHANGE_64, |
| 566 | .atime = NO_CHANGE_64, |
| 567 | .mtime = NO_CHANGE_64, |
| 568 | .device = 0, |
| 569 | }; |
Pavel Shilovsky | fb1214e | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 570 | CIFSSMBUnixSetFileInfo(xid, tcon, &args, fid.netfid, |
| 571 | cfile->pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | kfree(full_path); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 576 | free_xid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 577 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | return rc; |
| 579 | } |
| 580 | |
Pavel Shilovsky | f152fd5 | 2012-11-22 17:10:57 +0400 | [diff] [blame] | 581 | static int cifs_push_posix_locks(struct cifsFileInfo *cfile); |
| 582 | |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 583 | /* |
| 584 | * Try to reacquire byte range locks that were released when session |
Pavel Shilovsky | f152fd5 | 2012-11-22 17:10:57 +0400 | [diff] [blame] | 585 | * to server was lost. |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 586 | */ |
Pavel Shilovsky | f152fd5 | 2012-11-22 17:10:57 +0400 | [diff] [blame] | 587 | static int |
| 588 | cifs_relock_file(struct cifsFileInfo *cfile) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | { |
Pavel Shilovsky | f152fd5 | 2012-11-22 17:10:57 +0400 | [diff] [blame] | 590 | struct cifs_sb_info *cifs_sb = CIFS_SB(cfile->dentry->d_sb); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 591 | struct cifsInodeInfo *cinode = CIFS_I(d_inode(cfile->dentry)); |
Pavel Shilovsky | f152fd5 | 2012-11-22 17:10:57 +0400 | [diff] [blame] | 592 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | int rc = 0; |
| 594 | |
Rabin Vincent | 560d388 | 2017-05-03 17:17:21 +0200 | [diff] [blame] | 595 | down_read_nested(&cinode->lock_sem, SINGLE_DEPTH_NESTING); |
Pavel Shilovsky | f152fd5 | 2012-11-22 17:10:57 +0400 | [diff] [blame] | 596 | if (cinode->can_cache_brlcks) { |
Pavel Shilovsky | 689c3db | 2013-07-11 11:17:45 +0400 | [diff] [blame] | 597 | /* can cache locks - no need to relock */ |
| 598 | up_read(&cinode->lock_sem); |
Pavel Shilovsky | f152fd5 | 2012-11-22 17:10:57 +0400 | [diff] [blame] | 599 | return rc; |
| 600 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
Pavel Shilovsky | f152fd5 | 2012-11-22 17:10:57 +0400 | [diff] [blame] | 602 | if (cap_unix(tcon->ses) && |
| 603 | (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) && |
| 604 | ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0)) |
| 605 | rc = cifs_push_posix_locks(cfile); |
| 606 | else |
| 607 | rc = tcon->ses->server->ops->push_mand_locks(cfile); |
| 608 | |
Pavel Shilovsky | 689c3db | 2013-07-11 11:17:45 +0400 | [diff] [blame] | 609 | up_read(&cinode->lock_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | return rc; |
| 611 | } |
| 612 | |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 613 | static int |
| 614 | cifs_reopen_file(struct cifsFileInfo *cfile, bool can_flush) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | { |
| 616 | int rc = -EACCES; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 617 | unsigned int xid; |
Jeff Layton | 590a3fe | 2009-09-12 11:54:28 -0400 | [diff] [blame] | 618 | __u32 oplock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | struct cifs_sb_info *cifs_sb; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 620 | struct cifs_tcon *tcon; |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 621 | struct TCP_Server_Info *server; |
| 622 | struct cifsInodeInfo *cinode; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 623 | struct inode *inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | char *full_path = NULL; |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 625 | int desired_access; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | int disposition = FILE_OPEN; |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 627 | int create_options = CREATE_NOT_DIR; |
Pavel Shilovsky | 226730b | 2013-07-05 12:00:30 +0400 | [diff] [blame] | 628 | struct cifs_open_parms oparms; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 630 | xid = get_xid(); |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 631 | mutex_lock(&cfile->fh_mutex); |
| 632 | if (!cfile->invalidHandle) { |
| 633 | mutex_unlock(&cfile->fh_mutex); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 634 | rc = 0; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 635 | free_xid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 636 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | } |
| 638 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 639 | inode = d_inode(cfile->dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | cifs_sb = CIFS_SB(inode->i_sb); |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 641 | tcon = tlink_tcon(cfile->tlink); |
| 642 | server = tcon->ses->server; |
Steve French | 3a9f462 | 2007-04-04 17:10:24 +0000 | [diff] [blame] | 643 | |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 644 | /* |
| 645 | * Can not grab rename sem here because various ops, including those |
| 646 | * that already have the rename sem can end up causing writepage to get |
| 647 | * called and if the server was down that means we end up here, and we |
| 648 | * can never tell if the caller already has the rename_sem. |
| 649 | */ |
| 650 | full_path = build_path_from_dentry(cfile->dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | if (full_path == NULL) { |
Steve French | 3a9f462 | 2007-04-04 17:10:24 +0000 | [diff] [blame] | 652 | rc = -ENOMEM; |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 653 | mutex_unlock(&cfile->fh_mutex); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 654 | free_xid(xid); |
Steve French | 3a9f462 | 2007-04-04 17:10:24 +0000 | [diff] [blame] | 655 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | } |
| 657 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 658 | cifs_dbg(FYI, "inode = 0x%p file flags 0x%x for %s\n", |
| 659 | inode, cfile->f_flags, full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
Pavel Shilovsky | 10b9b98 | 2012-03-20 12:55:09 +0300 | [diff] [blame] | 661 | if (tcon->ses->server->oplocks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | oplock = REQ_OPLOCK; |
| 663 | else |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 664 | oplock = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 666 | if (tcon->unix_ext && cap_unix(tcon->ses) && |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 667 | (CIFS_UNIX_POSIX_PATH_OPS_CAP & |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 668 | le64_to_cpu(tcon->fsUnixInfo.Capability))) { |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 669 | /* |
| 670 | * O_CREAT, O_EXCL and O_TRUNC already had their effect on the |
| 671 | * original open. Must mask them off for a reopen. |
| 672 | */ |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 673 | unsigned int oflags = cfile->f_flags & |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 674 | ~(O_CREAT | O_EXCL | O_TRUNC); |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 675 | |
Jeff Layton | 2422f67 | 2010-06-16 13:40:16 -0400 | [diff] [blame] | 676 | rc = cifs_posix_open(full_path, NULL, inode->i_sb, |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 677 | cifs_sb->mnt_file_mode /* ignored */, |
Pavel Shilovsky | 9cbc0b7 | 2013-07-09 18:40:58 +0400 | [diff] [blame] | 678 | oflags, &oplock, &cfile->fid.netfid, xid); |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 679 | if (rc == 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 680 | cifs_dbg(FYI, "posix reopen succeeded\n"); |
Andi Shyti | fe090e4 | 2013-07-29 20:04:35 +0200 | [diff] [blame] | 681 | oparms.reconnect = true; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 682 | goto reopen_success; |
| 683 | } |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 684 | /* |
| 685 | * fallthrough to retry open the old way on errors, especially |
| 686 | * in the reconnect path it is important to retry hard |
| 687 | */ |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 688 | } |
| 689 | |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 690 | desired_access = cifs_convert_flags(cfile->f_flags); |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 691 | |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 692 | if (backup_cred(cifs_sb)) |
| 693 | create_options |= CREATE_OPEN_BACKUP_INTENT; |
| 694 | |
Pavel Shilovsky | b8c32db | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 695 | if (server->ops->get_lease_key) |
Pavel Shilovsky | 9cbc0b7 | 2013-07-09 18:40:58 +0400 | [diff] [blame] | 696 | server->ops->get_lease_key(inode, &cfile->fid); |
Pavel Shilovsky | b8c32db | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 697 | |
Pavel Shilovsky | 226730b | 2013-07-05 12:00:30 +0400 | [diff] [blame] | 698 | oparms.tcon = tcon; |
| 699 | oparms.cifs_sb = cifs_sb; |
| 700 | oparms.desired_access = desired_access; |
| 701 | oparms.create_options = create_options; |
| 702 | oparms.disposition = disposition; |
| 703 | oparms.path = full_path; |
Pavel Shilovsky | 9cbc0b7 | 2013-07-09 18:40:58 +0400 | [diff] [blame] | 704 | oparms.fid = &cfile->fid; |
| 705 | oparms.reconnect = true; |
Pavel Shilovsky | 226730b | 2013-07-05 12:00:30 +0400 | [diff] [blame] | 706 | |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 707 | /* |
| 708 | * Can not refresh inode by passing in file_info buf to be returned by |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 709 | * ops->open and then calling get_inode_info with returned buf since |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 710 | * file might have write behind data that needs to be flushed and server |
| 711 | * version of file size can be stale. If we knew for sure that inode was |
| 712 | * not dirty locally we could do this. |
| 713 | */ |
Pavel Shilovsky | 226730b | 2013-07-05 12:00:30 +0400 | [diff] [blame] | 714 | rc = server->ops->open(xid, &oparms, &oplock, NULL); |
Pavel Shilovsky | b33fcf1 | 2013-07-11 10:58:30 +0400 | [diff] [blame] | 715 | if (rc == -ENOENT && oparms.reconnect == false) { |
| 716 | /* durable handle timeout is expired - open the file again */ |
| 717 | rc = server->ops->open(xid, &oparms, &oplock, NULL); |
| 718 | /* indicate that we need to relock the file */ |
| 719 | oparms.reconnect = true; |
| 720 | } |
| 721 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | if (rc) { |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 723 | mutex_unlock(&cfile->fh_mutex); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 724 | cifs_dbg(FYI, "cifs_reopen returned 0x%x\n", rc); |
| 725 | cifs_dbg(FYI, "oplock: %d\n", oplock); |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 726 | goto reopen_error_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | } |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 728 | |
| 729 | reopen_success: |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 730 | cfile->invalidHandle = false; |
| 731 | mutex_unlock(&cfile->fh_mutex); |
| 732 | cinode = CIFS_I(inode); |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 733 | |
| 734 | if (can_flush) { |
| 735 | rc = filemap_write_and_wait(inode->i_mapping); |
Pavel Shilovsky | 9a66396 | 2019-01-08 11:15:28 -0800 | [diff] [blame] | 736 | if (!is_interrupt_error(rc)) |
| 737 | mapping_set_error(inode->i_mapping, rc); |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 738 | |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 739 | if (tcon->unix_ext) |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 740 | rc = cifs_get_inode_info_unix(&inode, full_path, |
| 741 | inode->i_sb, xid); |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 742 | else |
Pavel Shilovsky | 2ae78ba | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 743 | rc = cifs_get_inode_info(&inode, full_path, NULL, |
| 744 | inode->i_sb, xid, NULL); |
| 745 | } |
| 746 | /* |
| 747 | * Else we are writing out data to server already and could deadlock if |
| 748 | * we tried to flush data, and since we do not know if we have data that |
| 749 | * would invalidate the current end of file on the server we can not go |
| 750 | * to the server to get the new inode info. |
| 751 | */ |
Pavel Shilovsky | e66673e | 2010-11-02 12:00:42 +0300 | [diff] [blame] | 752 | |
Pavel Shilovsky | de74025 | 2016-10-11 15:34:07 -0700 | [diff] [blame] | 753 | /* |
| 754 | * If the server returned a read oplock and we have mandatory brlocks, |
| 755 | * set oplock level to None. |
| 756 | */ |
| 757 | if (server->ops->is_read_op(oplock) && cifs_has_mand_locks(cinode)) { |
| 758 | cifs_dbg(FYI, "Reset oplock val from read to None due to mand locks\n"); |
| 759 | oplock = 0; |
| 760 | } |
| 761 | |
Pavel Shilovsky | 9cbc0b7 | 2013-07-09 18:40:58 +0400 | [diff] [blame] | 762 | server->ops->set_fid(cfile, &cfile->fid, oplock); |
| 763 | if (oparms.reconnect) |
| 764 | cifs_relock_file(cfile); |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 765 | |
| 766 | reopen_error_exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | kfree(full_path); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 768 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | return rc; |
| 770 | } |
| 771 | |
| 772 | int cifs_close(struct inode *inode, struct file *file) |
| 773 | { |
Jeff Layton | 7797069 | 2011-04-05 16:23:47 -0700 | [diff] [blame] | 774 | if (file->private_data != NULL) { |
| 775 | cifsFileInfo_put(file->private_data); |
| 776 | file->private_data = NULL; |
| 777 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 779 | /* return code from the ->release op is always ignored */ |
| 780 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | } |
| 782 | |
Steve French | 52ace1e | 2016-09-22 19:23:56 -0500 | [diff] [blame] | 783 | void |
| 784 | cifs_reopen_persistent_handles(struct cifs_tcon *tcon) |
| 785 | { |
Pavel Shilovsky | f2cca6a | 2016-10-07 17:26:36 -0700 | [diff] [blame] | 786 | struct cifsFileInfo *open_file; |
Steve French | 52ace1e | 2016-09-22 19:23:56 -0500 | [diff] [blame] | 787 | struct list_head *tmp; |
| 788 | struct list_head *tmp1; |
Pavel Shilovsky | f2cca6a | 2016-10-07 17:26:36 -0700 | [diff] [blame] | 789 | struct list_head tmp_list; |
| 790 | |
Pavel Shilovsky | 96a988f | 2016-11-29 11:31:23 -0800 | [diff] [blame] | 791 | if (!tcon->use_persistent || !tcon->need_reopen_files) |
| 792 | return; |
| 793 | |
| 794 | tcon->need_reopen_files = false; |
| 795 | |
Pavel Shilovsky | f2cca6a | 2016-10-07 17:26:36 -0700 | [diff] [blame] | 796 | cifs_dbg(FYI, "Reopen persistent handles"); |
| 797 | INIT_LIST_HEAD(&tmp_list); |
Steve French | 52ace1e | 2016-09-22 19:23:56 -0500 | [diff] [blame] | 798 | |
| 799 | /* list all files open on tree connection, reopen resilient handles */ |
| 800 | spin_lock(&tcon->open_file_lock); |
Pavel Shilovsky | f2cca6a | 2016-10-07 17:26:36 -0700 | [diff] [blame] | 801 | list_for_each(tmp, &tcon->openFileList) { |
Steve French | 52ace1e | 2016-09-22 19:23:56 -0500 | [diff] [blame] | 802 | open_file = list_entry(tmp, struct cifsFileInfo, tlist); |
Pavel Shilovsky | f2cca6a | 2016-10-07 17:26:36 -0700 | [diff] [blame] | 803 | if (!open_file->invalidHandle) |
| 804 | continue; |
| 805 | cifsFileInfo_get(open_file); |
| 806 | list_add_tail(&open_file->rlist, &tmp_list); |
Steve French | 52ace1e | 2016-09-22 19:23:56 -0500 | [diff] [blame] | 807 | } |
| 808 | spin_unlock(&tcon->open_file_lock); |
Pavel Shilovsky | f2cca6a | 2016-10-07 17:26:36 -0700 | [diff] [blame] | 809 | |
| 810 | list_for_each_safe(tmp, tmp1, &tmp_list) { |
| 811 | open_file = list_entry(tmp, struct cifsFileInfo, rlist); |
Pavel Shilovsky | 96a988f | 2016-11-29 11:31:23 -0800 | [diff] [blame] | 812 | if (cifs_reopen_file(open_file, false /* do not flush */)) |
| 813 | tcon->need_reopen_files = true; |
Pavel Shilovsky | f2cca6a | 2016-10-07 17:26:36 -0700 | [diff] [blame] | 814 | list_del_init(&open_file->rlist); |
| 815 | cifsFileInfo_put(open_file); |
| 816 | } |
Steve French | 52ace1e | 2016-09-22 19:23:56 -0500 | [diff] [blame] | 817 | } |
| 818 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | int cifs_closedir(struct inode *inode, struct file *file) |
| 820 | { |
| 821 | int rc = 0; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 822 | unsigned int xid; |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 823 | struct cifsFileInfo *cfile = file->private_data; |
Pavel Shilovsky | 92fc65a | 2012-09-18 16:20:32 -0700 | [diff] [blame] | 824 | struct cifs_tcon *tcon; |
| 825 | struct TCP_Server_Info *server; |
| 826 | char *buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 828 | cifs_dbg(FYI, "Closedir inode = 0x%p\n", inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
Pavel Shilovsky | 92fc65a | 2012-09-18 16:20:32 -0700 | [diff] [blame] | 830 | if (cfile == NULL) |
| 831 | return rc; |
| 832 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 833 | xid = get_xid(); |
Pavel Shilovsky | 92fc65a | 2012-09-18 16:20:32 -0700 | [diff] [blame] | 834 | tcon = tlink_tcon(cfile->tlink); |
| 835 | server = tcon->ses->server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 837 | cifs_dbg(FYI, "Freeing private data in close dir\n"); |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 838 | spin_lock(&cfile->file_info_lock); |
Pavel Shilovsky | 5275580 | 2014-08-18 20:49:57 +0400 | [diff] [blame] | 839 | if (server->ops->dir_needs_close(cfile)) { |
Pavel Shilovsky | 92fc65a | 2012-09-18 16:20:32 -0700 | [diff] [blame] | 840 | cfile->invalidHandle = true; |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 841 | spin_unlock(&cfile->file_info_lock); |
Pavel Shilovsky | 92fc65a | 2012-09-18 16:20:32 -0700 | [diff] [blame] | 842 | if (server->ops->close_dir) |
| 843 | rc = server->ops->close_dir(xid, tcon, &cfile->fid); |
| 844 | else |
| 845 | rc = -ENOSYS; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 846 | cifs_dbg(FYI, "Closing uncompleted readdir with rc %d\n", rc); |
Pavel Shilovsky | 92fc65a | 2012-09-18 16:20:32 -0700 | [diff] [blame] | 847 | /* not much we can do if it fails anyway, ignore rc */ |
| 848 | rc = 0; |
| 849 | } else |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 850 | spin_unlock(&cfile->file_info_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | |
Pavel Shilovsky | 92fc65a | 2012-09-18 16:20:32 -0700 | [diff] [blame] | 852 | buf = cfile->srch_inf.ntwrk_buf_start; |
| 853 | if (buf) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 854 | cifs_dbg(FYI, "closedir free smb buf in srch struct\n"); |
Pavel Shilovsky | 92fc65a | 2012-09-18 16:20:32 -0700 | [diff] [blame] | 855 | cfile->srch_inf.ntwrk_buf_start = NULL; |
| 856 | if (cfile->srch_inf.smallBuf) |
| 857 | cifs_small_buf_release(buf); |
| 858 | else |
| 859 | cifs_buf_release(buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | } |
Pavel Shilovsky | 92fc65a | 2012-09-18 16:20:32 -0700 | [diff] [blame] | 861 | |
| 862 | cifs_put_tlink(cfile->tlink); |
| 863 | kfree(file->private_data); |
| 864 | file->private_data = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | /* BB can we lock the filestruct while this is going on? */ |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 866 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | return rc; |
| 868 | } |
| 869 | |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 870 | static struct cifsLockInfo * |
Ronnie Sahlberg | 9645759 | 2018-10-04 09:24:38 +1000 | [diff] [blame] | 871 | cifs_lock_init(__u64 offset, __u64 length, __u8 type, __u16 flags) |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 872 | { |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 873 | struct cifsLockInfo *lock = |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 874 | kmalloc(sizeof(struct cifsLockInfo), GFP_KERNEL); |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 875 | if (!lock) |
| 876 | return lock; |
| 877 | lock->offset = offset; |
| 878 | lock->length = length; |
| 879 | lock->type = type; |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 880 | lock->pid = current->tgid; |
Ronnie Sahlberg | 9645759 | 2018-10-04 09:24:38 +1000 | [diff] [blame] | 881 | lock->flags = flags; |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 882 | INIT_LIST_HEAD(&lock->blist); |
| 883 | init_waitqueue_head(&lock->block_q); |
| 884 | return lock; |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 885 | } |
| 886 | |
Pavel Shilovsky | f7ba7fe | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 887 | void |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 888 | cifs_del_lock_waiters(struct cifsLockInfo *lock) |
| 889 | { |
| 890 | struct cifsLockInfo *li, *tmp; |
| 891 | list_for_each_entry_safe(li, tmp, &lock->blist, blist) { |
| 892 | list_del_init(&li->blist); |
| 893 | wake_up(&li->block_q); |
| 894 | } |
| 895 | } |
| 896 | |
Pavel Shilovsky | 081c041 | 2012-11-27 18:38:53 +0400 | [diff] [blame] | 897 | #define CIFS_LOCK_OP 0 |
| 898 | #define CIFS_READ_OP 1 |
| 899 | #define CIFS_WRITE_OP 2 |
| 900 | |
| 901 | /* @rw_check : 0 - no op, 1 - read, 2 - write */ |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 902 | static bool |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 903 | cifs_find_fid_lock_conflict(struct cifs_fid_locks *fdlocks, __u64 offset, |
Ronnie Sahlberg | 9645759 | 2018-10-04 09:24:38 +1000 | [diff] [blame] | 904 | __u64 length, __u8 type, __u16 flags, |
| 905 | struct cifsFileInfo *cfile, |
Pavel Shilovsky | 081c041 | 2012-11-27 18:38:53 +0400 | [diff] [blame] | 906 | struct cifsLockInfo **conf_lock, int rw_check) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 907 | { |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 908 | struct cifsLockInfo *li; |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 909 | struct cifsFileInfo *cur_cfile = fdlocks->cfile; |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 910 | struct TCP_Server_Info *server = tlink_tcon(cfile->tlink)->ses->server; |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 911 | |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 912 | list_for_each_entry(li, &fdlocks->locks, llist) { |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 913 | if (offset + length <= li->offset || |
| 914 | offset >= li->offset + li->length) |
| 915 | continue; |
Pavel Shilovsky | 081c041 | 2012-11-27 18:38:53 +0400 | [diff] [blame] | 916 | if (rw_check != CIFS_LOCK_OP && current->tgid == li->pid && |
| 917 | server->ops->compare_fids(cfile, cur_cfile)) { |
| 918 | /* shared lock prevents write op through the same fid */ |
| 919 | if (!(li->type & server->vals->shared_lock_type) || |
| 920 | rw_check != CIFS_WRITE_OP) |
| 921 | continue; |
| 922 | } |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 923 | if ((type & server->vals->shared_lock_type) && |
| 924 | ((server->ops->compare_fids(cfile, cur_cfile) && |
| 925 | current->tgid == li->pid) || type == li->type)) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 926 | continue; |
Ronnie Sahlberg | 9645759 | 2018-10-04 09:24:38 +1000 | [diff] [blame] | 927 | if (rw_check == CIFS_LOCK_OP && |
| 928 | (flags & FL_OFDLCK) && (li->flags & FL_OFDLCK) && |
| 929 | server->ops->compare_fids(cfile, cur_cfile)) |
| 930 | continue; |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 931 | if (conf_lock) |
| 932 | *conf_lock = li; |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 933 | return true; |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 934 | } |
| 935 | return false; |
| 936 | } |
| 937 | |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 938 | bool |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 939 | cifs_find_lock_conflict(struct cifsFileInfo *cfile, __u64 offset, __u64 length, |
Ronnie Sahlberg | 9645759 | 2018-10-04 09:24:38 +1000 | [diff] [blame] | 940 | __u8 type, __u16 flags, |
| 941 | struct cifsLockInfo **conf_lock, int rw_check) |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 942 | { |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 943 | bool rc = false; |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 944 | struct cifs_fid_locks *cur; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 945 | struct cifsInodeInfo *cinode = CIFS_I(d_inode(cfile->dentry)); |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 946 | |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 947 | list_for_each_entry(cur, &cinode->llist, llist) { |
| 948 | rc = cifs_find_fid_lock_conflict(cur, offset, length, type, |
Ronnie Sahlberg | 9645759 | 2018-10-04 09:24:38 +1000 | [diff] [blame] | 949 | flags, cfile, conf_lock, |
| 950 | rw_check); |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 951 | if (rc) |
| 952 | break; |
| 953 | } |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 954 | |
| 955 | return rc; |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 956 | } |
| 957 | |
Pavel Shilovsky | 9a5101c | 2011-11-07 16:11:24 +0300 | [diff] [blame] | 958 | /* |
| 959 | * Check if there is another lock that prevents us to set the lock (mandatory |
| 960 | * style). If such a lock exists, update the flock structure with its |
| 961 | * properties. Otherwise, set the flock type to F_UNLCK if we can cache brlocks |
| 962 | * or leave it the same if we can't. Returns 0 if we don't need to request to |
| 963 | * the server or 1 otherwise. |
| 964 | */ |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 965 | static int |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 966 | cifs_lock_test(struct cifsFileInfo *cfile, __u64 offset, __u64 length, |
| 967 | __u8 type, struct file_lock *flock) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 968 | { |
| 969 | int rc = 0; |
| 970 | struct cifsLockInfo *conf_lock; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 971 | struct cifsInodeInfo *cinode = CIFS_I(d_inode(cfile->dentry)); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 972 | struct TCP_Server_Info *server = tlink_tcon(cfile->tlink)->ses->server; |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 973 | bool exist; |
| 974 | |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 975 | down_read(&cinode->lock_sem); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 976 | |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 977 | exist = cifs_find_lock_conflict(cfile, offset, length, type, |
Ronnie Sahlberg | 9645759 | 2018-10-04 09:24:38 +1000 | [diff] [blame] | 978 | flock->fl_flags, &conf_lock, |
| 979 | CIFS_LOCK_OP); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 980 | if (exist) { |
| 981 | flock->fl_start = conf_lock->offset; |
| 982 | flock->fl_end = conf_lock->offset + conf_lock->length - 1; |
| 983 | flock->fl_pid = conf_lock->pid; |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 984 | if (conf_lock->type & server->vals->shared_lock_type) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 985 | flock->fl_type = F_RDLCK; |
| 986 | else |
| 987 | flock->fl_type = F_WRLCK; |
| 988 | } else if (!cinode->can_cache_brlcks) |
| 989 | rc = 1; |
| 990 | else |
| 991 | flock->fl_type = F_UNLCK; |
| 992 | |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 993 | up_read(&cinode->lock_sem); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 994 | return rc; |
| 995 | } |
| 996 | |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 997 | static void |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 998 | cifs_lock_add(struct cifsFileInfo *cfile, struct cifsLockInfo *lock) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 999 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1000 | struct cifsInodeInfo *cinode = CIFS_I(d_inode(cfile->dentry)); |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1001 | down_write(&cinode->lock_sem); |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1002 | list_add_tail(&lock->llist, &cfile->llist->locks); |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1003 | up_write(&cinode->lock_sem); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1004 | } |
| 1005 | |
Pavel Shilovsky | 9a5101c | 2011-11-07 16:11:24 +0300 | [diff] [blame] | 1006 | /* |
| 1007 | * Set the byte-range lock (mandatory style). Returns: |
| 1008 | * 1) 0, if we set the lock and don't need to request to the server; |
| 1009 | * 2) 1, if no locks prevent us but we need to request to the server; |
Colin Ian King | 413d610 | 2018-10-26 19:07:21 +0100 | [diff] [blame] | 1010 | * 3) -EACCES, if there is a lock that prevents us and wait is false. |
Pavel Shilovsky | 9a5101c | 2011-11-07 16:11:24 +0300 | [diff] [blame] | 1011 | */ |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1012 | static int |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1013 | cifs_lock_add_if(struct cifsFileInfo *cfile, struct cifsLockInfo *lock, |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 1014 | bool wait) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1015 | { |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 1016 | struct cifsLockInfo *conf_lock; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1017 | struct cifsInodeInfo *cinode = CIFS_I(d_inode(cfile->dentry)); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1018 | bool exist; |
| 1019 | int rc = 0; |
| 1020 | |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1021 | try_again: |
| 1022 | exist = false; |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1023 | down_write(&cinode->lock_sem); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1024 | |
Pavel Shilovsky | 55157df | 2012-02-28 14:04:17 +0300 | [diff] [blame] | 1025 | exist = cifs_find_lock_conflict(cfile, lock->offset, lock->length, |
Ronnie Sahlberg | 9645759 | 2018-10-04 09:24:38 +1000 | [diff] [blame] | 1026 | lock->type, lock->flags, &conf_lock, |
| 1027 | CIFS_LOCK_OP); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1028 | if (!exist && cinode->can_cache_brlcks) { |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1029 | list_add_tail(&lock->llist, &cfile->llist->locks); |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1030 | up_write(&cinode->lock_sem); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1031 | return rc; |
| 1032 | } |
| 1033 | |
| 1034 | if (!exist) |
| 1035 | rc = 1; |
| 1036 | else if (!wait) |
| 1037 | rc = -EACCES; |
| 1038 | else { |
| 1039 | list_add_tail(&lock->blist, &conf_lock->blist); |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1040 | up_write(&cinode->lock_sem); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1041 | rc = wait_event_interruptible(lock->block_q, |
| 1042 | (lock->blist.prev == &lock->blist) && |
| 1043 | (lock->blist.next == &lock->blist)); |
| 1044 | if (!rc) |
| 1045 | goto try_again; |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1046 | down_write(&cinode->lock_sem); |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 1047 | list_del_init(&lock->blist); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1048 | } |
| 1049 | |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1050 | up_write(&cinode->lock_sem); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1051 | return rc; |
| 1052 | } |
| 1053 | |
Pavel Shilovsky | 9a5101c | 2011-11-07 16:11:24 +0300 | [diff] [blame] | 1054 | /* |
| 1055 | * Check if there is another lock that prevents us to set the lock (posix |
| 1056 | * style). If such a lock exists, update the flock structure with its |
| 1057 | * properties. Otherwise, set the flock type to F_UNLCK if we can cache brlocks |
| 1058 | * or leave it the same if we can't. Returns 0 if we don't need to request to |
| 1059 | * the server or 1 otherwise. |
| 1060 | */ |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1061 | static int |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1062 | cifs_posix_lock_test(struct file *file, struct file_lock *flock) |
| 1063 | { |
| 1064 | int rc = 0; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1065 | struct cifsInodeInfo *cinode = CIFS_I(file_inode(file)); |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1066 | unsigned char saved_type = flock->fl_type; |
| 1067 | |
Pavel Shilovsky | 5079276 | 2011-10-29 17:17:57 +0400 | [diff] [blame] | 1068 | if ((flock->fl_flags & FL_POSIX) == 0) |
| 1069 | return 1; |
| 1070 | |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1071 | down_read(&cinode->lock_sem); |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1072 | posix_test_lock(file, flock); |
| 1073 | |
| 1074 | if (flock->fl_type == F_UNLCK && !cinode->can_cache_brlcks) { |
| 1075 | flock->fl_type = saved_type; |
| 1076 | rc = 1; |
| 1077 | } |
| 1078 | |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1079 | up_read(&cinode->lock_sem); |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1080 | return rc; |
| 1081 | } |
| 1082 | |
Pavel Shilovsky | 9a5101c | 2011-11-07 16:11:24 +0300 | [diff] [blame] | 1083 | /* |
| 1084 | * Set the byte-range lock (posix style). Returns: |
| 1085 | * 1) 0, if we set the lock and don't need to request to the server; |
| 1086 | * 2) 1, if we need to request to the server; |
| 1087 | * 3) <0, if the error occurs while setting the lock. |
| 1088 | */ |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1089 | static int |
| 1090 | cifs_posix_lock_set(struct file *file, struct file_lock *flock) |
| 1091 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1092 | struct cifsInodeInfo *cinode = CIFS_I(file_inode(file)); |
Pavel Shilovsky | 5079276 | 2011-10-29 17:17:57 +0400 | [diff] [blame] | 1093 | int rc = 1; |
| 1094 | |
| 1095 | if ((flock->fl_flags & FL_POSIX) == 0) |
| 1096 | return rc; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1097 | |
Pavel Shilovsky | 66189be | 2012-03-28 21:56:19 +0400 | [diff] [blame] | 1098 | try_again: |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1099 | down_write(&cinode->lock_sem); |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1100 | if (!cinode->can_cache_brlcks) { |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1101 | up_write(&cinode->lock_sem); |
Pavel Shilovsky | 5079276 | 2011-10-29 17:17:57 +0400 | [diff] [blame] | 1102 | return rc; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1103 | } |
Pavel Shilovsky | 66189be | 2012-03-28 21:56:19 +0400 | [diff] [blame] | 1104 | |
| 1105 | rc = posix_lock_file(file, flock, NULL); |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1106 | up_write(&cinode->lock_sem); |
Pavel Shilovsky | 66189be | 2012-03-28 21:56:19 +0400 | [diff] [blame] | 1107 | if (rc == FILE_LOCK_DEFERRED) { |
NeilBrown | ada5c1d | 2018-11-30 10:04:08 +1100 | [diff] [blame] | 1108 | rc = wait_event_interruptible(flock->fl_wait, !flock->fl_blocker); |
Pavel Shilovsky | 66189be | 2012-03-28 21:56:19 +0400 | [diff] [blame] | 1109 | if (!rc) |
| 1110 | goto try_again; |
NeilBrown | cb03f94 | 2018-11-30 10:04:08 +1100 | [diff] [blame] | 1111 | locks_delete_block(flock); |
Pavel Shilovsky | 66189be | 2012-03-28 21:56:19 +0400 | [diff] [blame] | 1112 | } |
Steve French | 9ebb389 | 2012-04-01 13:52:54 -0500 | [diff] [blame] | 1113 | return rc; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1114 | } |
| 1115 | |
Pavel Shilovsky | d39a4f7 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1116 | int |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1117 | cifs_push_mandatory_locks(struct cifsFileInfo *cfile) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1118 | { |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1119 | unsigned int xid; |
| 1120 | int rc = 0, stored_rc; |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1121 | struct cifsLockInfo *li, *tmp; |
| 1122 | struct cifs_tcon *tcon; |
Pavel Shilovsky | 0013fb4 | 2012-05-31 13:03:26 +0400 | [diff] [blame] | 1123 | unsigned int num, max_num, max_buf; |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 1124 | LOCKING_ANDX_RANGE *buf, *cur; |
Colin Ian King | 4d61eda | 2017-09-19 16:27:39 +0100 | [diff] [blame] | 1125 | static const int types[] = { |
| 1126 | LOCKING_ANDX_LARGE_FILES, |
| 1127 | LOCKING_ANDX_SHARED_LOCK | LOCKING_ANDX_LARGE_FILES |
| 1128 | }; |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 1129 | int i; |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1130 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1131 | xid = get_xid(); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1132 | tcon = tlink_tcon(cfile->tlink); |
| 1133 | |
Pavel Shilovsky | 0013fb4 | 2012-05-31 13:03:26 +0400 | [diff] [blame] | 1134 | /* |
| 1135 | * Accessing maxBuf is racy with cifs_reconnect - need to store value |
Ross Lagerwall | b9a74cd | 2019-01-08 18:30:57 +0000 | [diff] [blame] | 1136 | * and check it before using. |
Pavel Shilovsky | 0013fb4 | 2012-05-31 13:03:26 +0400 | [diff] [blame] | 1137 | */ |
| 1138 | max_buf = tcon->ses->server->maxBuf; |
Ross Lagerwall | b9a74cd | 2019-01-08 18:30:57 +0000 | [diff] [blame] | 1139 | if (max_buf < (sizeof(struct smb_hdr) + sizeof(LOCKING_ANDX_RANGE))) { |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1140 | free_xid(xid); |
Pavel Shilovsky | 0013fb4 | 2012-05-31 13:03:26 +0400 | [diff] [blame] | 1141 | return -EINVAL; |
| 1142 | } |
| 1143 | |
Ross Lagerwall | 92a8109 | 2019-01-08 18:30:56 +0000 | [diff] [blame] | 1144 | BUILD_BUG_ON(sizeof(struct smb_hdr) + sizeof(LOCKING_ANDX_RANGE) > |
| 1145 | PAGE_SIZE); |
| 1146 | max_buf = min_t(unsigned int, max_buf - sizeof(struct smb_hdr), |
| 1147 | PAGE_SIZE); |
Pavel Shilovsky | 0013fb4 | 2012-05-31 13:03:26 +0400 | [diff] [blame] | 1148 | max_num = (max_buf - sizeof(struct smb_hdr)) / |
| 1149 | sizeof(LOCKING_ANDX_RANGE); |
Fabian Frederick | 4b99d39 | 2014-12-10 15:41:17 -0800 | [diff] [blame] | 1150 | buf = kcalloc(max_num, sizeof(LOCKING_ANDX_RANGE), GFP_KERNEL); |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 1151 | if (!buf) { |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1152 | free_xid(xid); |
Pavel Shilovsky | e2f2886 | 2012-08-29 21:13:38 +0400 | [diff] [blame] | 1153 | return -ENOMEM; |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 1154 | } |
| 1155 | |
| 1156 | for (i = 0; i < 2; i++) { |
| 1157 | cur = buf; |
| 1158 | num = 0; |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1159 | list_for_each_entry_safe(li, tmp, &cfile->llist->locks, llist) { |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 1160 | if (li->type != types[i]) |
| 1161 | continue; |
| 1162 | cur->Pid = cpu_to_le16(li->pid); |
| 1163 | cur->LengthLow = cpu_to_le32((u32)li->length); |
| 1164 | cur->LengthHigh = cpu_to_le32((u32)(li->length>>32)); |
| 1165 | cur->OffsetLow = cpu_to_le32((u32)li->offset); |
| 1166 | cur->OffsetHigh = cpu_to_le32((u32)(li->offset>>32)); |
| 1167 | if (++num == max_num) { |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 1168 | stored_rc = cifs_lockv(xid, tcon, |
| 1169 | cfile->fid.netfid, |
Pavel Shilovsky | 04a6aa8 | 2012-02-28 14:16:55 +0300 | [diff] [blame] | 1170 | (__u8)li->type, 0, num, |
| 1171 | buf); |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 1172 | if (stored_rc) |
| 1173 | rc = stored_rc; |
| 1174 | cur = buf; |
| 1175 | num = 0; |
| 1176 | } else |
| 1177 | cur++; |
| 1178 | } |
| 1179 | |
| 1180 | if (num) { |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 1181 | stored_rc = cifs_lockv(xid, tcon, cfile->fid.netfid, |
Pavel Shilovsky | 04a6aa8 | 2012-02-28 14:16:55 +0300 | [diff] [blame] | 1182 | (__u8)types[i], 0, num, buf); |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 1183 | if (stored_rc) |
| 1184 | rc = stored_rc; |
| 1185 | } |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1186 | } |
| 1187 | |
Pavel Shilovsky | 32b9aaf | 2011-10-22 15:33:32 +0400 | [diff] [blame] | 1188 | kfree(buf); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1189 | free_xid(xid); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1190 | return rc; |
| 1191 | } |
| 1192 | |
Jeff Layton | 3d22462 | 2016-05-24 06:27:44 -0400 | [diff] [blame] | 1193 | static __u32 |
| 1194 | hash_lockowner(fl_owner_t owner) |
| 1195 | { |
| 1196 | return cifs_lock_secret ^ hash32_ptr((const void *)owner); |
| 1197 | } |
| 1198 | |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1199 | struct lock_to_push { |
| 1200 | struct list_head llist; |
| 1201 | __u64 offset; |
| 1202 | __u64 length; |
| 1203 | __u32 pid; |
| 1204 | __u16 netfid; |
| 1205 | __u8 type; |
| 1206 | }; |
| 1207 | |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1208 | static int |
Pavel Shilovsky | b8db928 | 2012-11-22 17:07:16 +0400 | [diff] [blame] | 1209 | cifs_push_posix_locks(struct cifsFileInfo *cfile) |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1210 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1211 | struct inode *inode = d_inode(cfile->dentry); |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1212 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1213 | struct file_lock *flock; |
| 1214 | struct file_lock_context *flctx = inode->i_flctx; |
Jeff Layton | e084c1b | 2015-02-16 14:32:03 -0500 | [diff] [blame] | 1215 | unsigned int count = 0, i; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1216 | int rc = 0, xid, type; |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1217 | struct list_head locks_to_send, *el; |
| 1218 | struct lock_to_push *lck, *tmp; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1219 | __u64 length; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1220 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1221 | xid = get_xid(); |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1222 | |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1223 | if (!flctx) |
| 1224 | goto out; |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1225 | |
Jeff Layton | e084c1b | 2015-02-16 14:32:03 -0500 | [diff] [blame] | 1226 | spin_lock(&flctx->flc_lock); |
| 1227 | list_for_each(el, &flctx->flc_posix) { |
| 1228 | count++; |
| 1229 | } |
| 1230 | spin_unlock(&flctx->flc_lock); |
| 1231 | |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1232 | INIT_LIST_HEAD(&locks_to_send); |
| 1233 | |
| 1234 | /* |
Jeff Layton | e084c1b | 2015-02-16 14:32:03 -0500 | [diff] [blame] | 1235 | * Allocating count locks is enough because no FL_POSIX locks can be |
| 1236 | * added to the list while we are holding cinode->lock_sem that |
Pavel Shilovsky | ce85852 | 2012-03-17 09:46:55 +0300 | [diff] [blame] | 1237 | * protects locking operations of this inode. |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1238 | */ |
Jeff Layton | e084c1b | 2015-02-16 14:32:03 -0500 | [diff] [blame] | 1239 | for (i = 0; i < count; i++) { |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1240 | lck = kmalloc(sizeof(struct lock_to_push), GFP_KERNEL); |
| 1241 | if (!lck) { |
| 1242 | rc = -ENOMEM; |
| 1243 | goto err_out; |
| 1244 | } |
| 1245 | list_add_tail(&lck->llist, &locks_to_send); |
| 1246 | } |
| 1247 | |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1248 | el = locks_to_send.next; |
Jeff Layton | 6109c85 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 1249 | spin_lock(&flctx->flc_lock); |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1250 | list_for_each_entry(flock, &flctx->flc_posix, fl_list) { |
Pavel Shilovsky | ce85852 | 2012-03-17 09:46:55 +0300 | [diff] [blame] | 1251 | if (el == &locks_to_send) { |
| 1252 | /* |
| 1253 | * The list ended. We don't have enough allocated |
| 1254 | * structures - something is really wrong. |
| 1255 | */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1256 | cifs_dbg(VFS, "Can't push all brlocks!\n"); |
Pavel Shilovsky | ce85852 | 2012-03-17 09:46:55 +0300 | [diff] [blame] | 1257 | break; |
| 1258 | } |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1259 | length = 1 + flock->fl_end - flock->fl_start; |
| 1260 | if (flock->fl_type == F_RDLCK || flock->fl_type == F_SHLCK) |
| 1261 | type = CIFS_RDLCK; |
| 1262 | else |
| 1263 | type = CIFS_WRLCK; |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1264 | lck = list_entry(el, struct lock_to_push, llist); |
Jeff Layton | 3d22462 | 2016-05-24 06:27:44 -0400 | [diff] [blame] | 1265 | lck->pid = hash_lockowner(flock->fl_owner); |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 1266 | lck->netfid = cfile->fid.netfid; |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1267 | lck->length = length; |
| 1268 | lck->type = type; |
| 1269 | lck->offset = flock->fl_start; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1270 | } |
Jeff Layton | 6109c85 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 1271 | spin_unlock(&flctx->flc_lock); |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1272 | |
| 1273 | list_for_each_entry_safe(lck, tmp, &locks_to_send, llist) { |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1274 | int stored_rc; |
| 1275 | |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1276 | stored_rc = CIFSSMBPosixLock(xid, tcon, lck->netfid, lck->pid, |
Jeff Layton | c5fd363 | 2012-07-23 13:28:37 -0400 | [diff] [blame] | 1277 | lck->offset, lck->length, NULL, |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1278 | lck->type, 0); |
| 1279 | if (stored_rc) |
| 1280 | rc = stored_rc; |
| 1281 | list_del(&lck->llist); |
| 1282 | kfree(lck); |
| 1283 | } |
| 1284 | |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1285 | out: |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1286 | free_xid(xid); |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1287 | return rc; |
Pavel Shilovsky | d575146 | 2012-03-05 09:39:20 +0300 | [diff] [blame] | 1288 | err_out: |
| 1289 | list_for_each_entry_safe(lck, tmp, &locks_to_send, llist) { |
| 1290 | list_del(&lck->llist); |
| 1291 | kfree(lck); |
| 1292 | } |
| 1293 | goto out; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1294 | } |
| 1295 | |
| 1296 | static int |
Pavel Shilovsky | b8db928 | 2012-11-22 17:07:16 +0400 | [diff] [blame] | 1297 | cifs_push_locks(struct cifsFileInfo *cfile) |
Pavel Shilovsky | 9ec3c88 | 2012-11-22 17:00:10 +0400 | [diff] [blame] | 1298 | { |
Pavel Shilovsky | b8db928 | 2012-11-22 17:07:16 +0400 | [diff] [blame] | 1299 | struct cifs_sb_info *cifs_sb = CIFS_SB(cfile->dentry->d_sb); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1300 | struct cifsInodeInfo *cinode = CIFS_I(d_inode(cfile->dentry)); |
Pavel Shilovsky | b8db928 | 2012-11-22 17:07:16 +0400 | [diff] [blame] | 1301 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
Pavel Shilovsky | 9ec3c88 | 2012-11-22 17:00:10 +0400 | [diff] [blame] | 1302 | int rc = 0; |
| 1303 | |
| 1304 | /* we are going to update can_cache_brlcks here - need a write access */ |
| 1305 | down_write(&cinode->lock_sem); |
| 1306 | if (!cinode->can_cache_brlcks) { |
| 1307 | up_write(&cinode->lock_sem); |
| 1308 | return rc; |
| 1309 | } |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1310 | |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 1311 | if (cap_unix(tcon->ses) && |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1312 | (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) && |
| 1313 | ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0)) |
Pavel Shilovsky | b8db928 | 2012-11-22 17:07:16 +0400 | [diff] [blame] | 1314 | rc = cifs_push_posix_locks(cfile); |
| 1315 | else |
| 1316 | rc = tcon->ses->server->ops->push_mand_locks(cfile); |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1317 | |
Pavel Shilovsky | b8db928 | 2012-11-22 17:07:16 +0400 | [diff] [blame] | 1318 | cinode->can_cache_brlcks = false; |
| 1319 | up_write(&cinode->lock_sem); |
| 1320 | return rc; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1321 | } |
| 1322 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1323 | static void |
Pavel Shilovsky | 04a6aa8 | 2012-02-28 14:16:55 +0300 | [diff] [blame] | 1324 | 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] | 1325 | bool *wait_flag, struct TCP_Server_Info *server) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | { |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1327 | if (flock->fl_flags & FL_POSIX) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1328 | cifs_dbg(FYI, "Posix\n"); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1329 | if (flock->fl_flags & FL_FLOCK) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1330 | cifs_dbg(FYI, "Flock\n"); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1331 | if (flock->fl_flags & FL_SLEEP) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1332 | cifs_dbg(FYI, "Blocking lock\n"); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1333 | *wait_flag = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | } |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1335 | if (flock->fl_flags & FL_ACCESS) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1336 | cifs_dbg(FYI, "Process suspended by mandatory locking - not implemented yet\n"); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1337 | if (flock->fl_flags & FL_LEASE) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1338 | cifs_dbg(FYI, "Lease on file - not implemented yet\n"); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1339 | if (flock->fl_flags & |
Jeff Layton | 3d6d854 | 2012-09-19 06:22:46 -0700 | [diff] [blame] | 1340 | (~(FL_POSIX | FL_FLOCK | FL_SLEEP | |
Ronnie Sahlberg | 9645759 | 2018-10-04 09:24:38 +1000 | [diff] [blame] | 1341 | FL_ACCESS | FL_LEASE | FL_CLOSE | FL_OFDLCK))) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1342 | cifs_dbg(FYI, "Unknown lock flags 0x%x\n", flock->fl_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1344 | *type = server->vals->large_lock_type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1345 | if (flock->fl_type == F_WRLCK) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1346 | cifs_dbg(FYI, "F_WRLCK\n"); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1347 | *type |= server->vals->exclusive_lock_type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1348 | *lock = 1; |
| 1349 | } else if (flock->fl_type == F_UNLCK) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1350 | cifs_dbg(FYI, "F_UNLCK\n"); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1351 | *type |= server->vals->unlock_lock_type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1352 | *unlock = 1; |
| 1353 | /* Check if unlock includes more than one lock range */ |
| 1354 | } else if (flock->fl_type == F_RDLCK) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1355 | cifs_dbg(FYI, "F_RDLCK\n"); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1356 | *type |= server->vals->shared_lock_type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1357 | *lock = 1; |
| 1358 | } else if (flock->fl_type == F_EXLCK) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1359 | cifs_dbg(FYI, "F_EXLCK\n"); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1360 | *type |= server->vals->exclusive_lock_type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1361 | *lock = 1; |
| 1362 | } else if (flock->fl_type == F_SHLCK) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1363 | cifs_dbg(FYI, "F_SHLCK\n"); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1364 | *type |= server->vals->shared_lock_type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1365 | *lock = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | } else |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1367 | cifs_dbg(FYI, "Unknown type of lock\n"); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1368 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1370 | static int |
Pavel Shilovsky | 04a6aa8 | 2012-02-28 14:16:55 +0300 | [diff] [blame] | 1371 | cifs_getlk(struct file *file, struct file_lock *flock, __u32 type, |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1372 | bool wait_flag, bool posix_lck, unsigned int xid) |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1373 | { |
| 1374 | int rc = 0; |
| 1375 | __u64 length = 1 + flock->fl_end - flock->fl_start; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1376 | struct cifsFileInfo *cfile = (struct cifsFileInfo *)file->private_data; |
| 1377 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1378 | struct TCP_Server_Info *server = tcon->ses->server; |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 1379 | __u16 netfid = cfile->fid.netfid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1381 | if (posix_lck) { |
| 1382 | int posix_lock_type; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1383 | |
| 1384 | rc = cifs_posix_lock_test(file, flock); |
| 1385 | if (!rc) |
| 1386 | return rc; |
| 1387 | |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1388 | if (type & server->vals->shared_lock_type) |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1389 | posix_lock_type = CIFS_RDLCK; |
| 1390 | else |
| 1391 | posix_lock_type = CIFS_WRLCK; |
Jeff Layton | 3d22462 | 2016-05-24 06:27:44 -0400 | [diff] [blame] | 1392 | rc = CIFSSMBPosixLock(xid, tcon, netfid, |
| 1393 | hash_lockowner(flock->fl_owner), |
Jeff Layton | c5fd363 | 2012-07-23 13:28:37 -0400 | [diff] [blame] | 1394 | flock->fl_start, length, flock, |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1395 | posix_lock_type, wait_flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | return rc; |
| 1397 | } |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1398 | |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1399 | rc = cifs_lock_test(cfile, flock->fl_start, length, type, flock); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1400 | if (!rc) |
| 1401 | return rc; |
| 1402 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1403 | /* BB we could chain these into one lock request BB */ |
Pavel Shilovsky | d39a4f7 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1404 | rc = server->ops->mand_lock(xid, cfile, flock->fl_start, length, type, |
| 1405 | 1, 0, false); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1406 | if (rc == 0) { |
Pavel Shilovsky | d39a4f7 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1407 | rc = server->ops->mand_lock(xid, cfile, flock->fl_start, length, |
| 1408 | type, 0, 1, false); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1409 | flock->fl_type = F_UNLCK; |
| 1410 | if (rc != 0) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1411 | cifs_dbg(VFS, "Error unlocking previously locked range %d during test of lock\n", |
| 1412 | rc); |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 1413 | return 0; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1414 | } |
| 1415 | |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1416 | if (type & server->vals->shared_lock_type) { |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1417 | flock->fl_type = F_WRLCK; |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 1418 | return 0; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1419 | } |
| 1420 | |
Pavel Shilovsky | d39a4f7 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1421 | type &= ~server->vals->exclusive_lock_type; |
| 1422 | |
| 1423 | rc = server->ops->mand_lock(xid, cfile, flock->fl_start, length, |
| 1424 | type | server->vals->shared_lock_type, |
| 1425 | 1, 0, false); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1426 | if (rc == 0) { |
Pavel Shilovsky | d39a4f7 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1427 | rc = server->ops->mand_lock(xid, cfile, flock->fl_start, length, |
| 1428 | type | server->vals->shared_lock_type, 0, 1, false); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1429 | flock->fl_type = F_RDLCK; |
| 1430 | if (rc != 0) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1431 | cifs_dbg(VFS, "Error unlocking previously locked range %d during test of lock\n", |
| 1432 | rc); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1433 | } else |
| 1434 | flock->fl_type = F_WRLCK; |
| 1435 | |
Pavel Shilovsky | a88b470 | 2011-10-29 17:17:59 +0400 | [diff] [blame] | 1436 | return 0; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1437 | } |
| 1438 | |
Pavel Shilovsky | f7ba7fe | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1439 | void |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1440 | cifs_move_llist(struct list_head *source, struct list_head *dest) |
| 1441 | { |
| 1442 | struct list_head *li, *tmp; |
| 1443 | list_for_each_safe(li, tmp, source) |
| 1444 | list_move(li, dest); |
| 1445 | } |
| 1446 | |
Pavel Shilovsky | f7ba7fe | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1447 | void |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1448 | cifs_free_llist(struct list_head *llist) |
| 1449 | { |
| 1450 | struct cifsLockInfo *li, *tmp; |
| 1451 | list_for_each_entry_safe(li, tmp, llist, llist) { |
| 1452 | cifs_del_lock_waiters(li); |
| 1453 | list_del(&li->llist); |
| 1454 | kfree(li); |
| 1455 | } |
| 1456 | } |
| 1457 | |
Pavel Shilovsky | d39a4f7 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1458 | int |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1459 | cifs_unlock_range(struct cifsFileInfo *cfile, struct file_lock *flock, |
| 1460 | unsigned int xid) |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1461 | { |
| 1462 | int rc = 0, stored_rc; |
Colin Ian King | 4d61eda | 2017-09-19 16:27:39 +0100 | [diff] [blame] | 1463 | static const int types[] = { |
| 1464 | LOCKING_ANDX_LARGE_FILES, |
| 1465 | LOCKING_ANDX_SHARED_LOCK | LOCKING_ANDX_LARGE_FILES |
| 1466 | }; |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1467 | unsigned int i; |
Pavel Shilovsky | 0013fb4 | 2012-05-31 13:03:26 +0400 | [diff] [blame] | 1468 | unsigned int max_num, num, max_buf; |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1469 | LOCKING_ANDX_RANGE *buf, *cur; |
| 1470 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1471 | struct cifsInodeInfo *cinode = CIFS_I(d_inode(cfile->dentry)); |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1472 | struct cifsLockInfo *li, *tmp; |
| 1473 | __u64 length = 1 + flock->fl_end - flock->fl_start; |
| 1474 | struct list_head tmp_llist; |
| 1475 | |
| 1476 | INIT_LIST_HEAD(&tmp_llist); |
| 1477 | |
Pavel Shilovsky | 0013fb4 | 2012-05-31 13:03:26 +0400 | [diff] [blame] | 1478 | /* |
| 1479 | * Accessing maxBuf is racy with cifs_reconnect - need to store value |
Ross Lagerwall | b9a74cd | 2019-01-08 18:30:57 +0000 | [diff] [blame] | 1480 | * and check it before using. |
Pavel Shilovsky | 0013fb4 | 2012-05-31 13:03:26 +0400 | [diff] [blame] | 1481 | */ |
| 1482 | max_buf = tcon->ses->server->maxBuf; |
Ross Lagerwall | b9a74cd | 2019-01-08 18:30:57 +0000 | [diff] [blame] | 1483 | if (max_buf < (sizeof(struct smb_hdr) + sizeof(LOCKING_ANDX_RANGE))) |
Pavel Shilovsky | 0013fb4 | 2012-05-31 13:03:26 +0400 | [diff] [blame] | 1484 | return -EINVAL; |
| 1485 | |
Ross Lagerwall | 92a8109 | 2019-01-08 18:30:56 +0000 | [diff] [blame] | 1486 | BUILD_BUG_ON(sizeof(struct smb_hdr) + sizeof(LOCKING_ANDX_RANGE) > |
| 1487 | PAGE_SIZE); |
| 1488 | max_buf = min_t(unsigned int, max_buf - sizeof(struct smb_hdr), |
| 1489 | PAGE_SIZE); |
Pavel Shilovsky | 0013fb4 | 2012-05-31 13:03:26 +0400 | [diff] [blame] | 1490 | max_num = (max_buf - sizeof(struct smb_hdr)) / |
| 1491 | sizeof(LOCKING_ANDX_RANGE); |
Fabian Frederick | 4b99d39 | 2014-12-10 15:41:17 -0800 | [diff] [blame] | 1492 | buf = kcalloc(max_num, sizeof(LOCKING_ANDX_RANGE), GFP_KERNEL); |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1493 | if (!buf) |
| 1494 | return -ENOMEM; |
| 1495 | |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1496 | down_write(&cinode->lock_sem); |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1497 | for (i = 0; i < 2; i++) { |
| 1498 | cur = buf; |
| 1499 | num = 0; |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1500 | list_for_each_entry_safe(li, tmp, &cfile->llist->locks, llist) { |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1501 | if (flock->fl_start > li->offset || |
| 1502 | (flock->fl_start + length) < |
| 1503 | (li->offset + li->length)) |
| 1504 | continue; |
| 1505 | if (current->tgid != li->pid) |
| 1506 | continue; |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1507 | if (types[i] != li->type) |
| 1508 | continue; |
Pavel Shilovsky | ea319d5 | 2012-05-31 13:59:36 +0400 | [diff] [blame] | 1509 | if (cinode->can_cache_brlcks) { |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1510 | /* |
| 1511 | * We can cache brlock requests - simply remove |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1512 | * a lock from the file's list. |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1513 | */ |
| 1514 | list_del(&li->llist); |
| 1515 | cifs_del_lock_waiters(li); |
| 1516 | kfree(li); |
Pavel Shilovsky | ea319d5 | 2012-05-31 13:59:36 +0400 | [diff] [blame] | 1517 | continue; |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1518 | } |
Pavel Shilovsky | ea319d5 | 2012-05-31 13:59:36 +0400 | [diff] [blame] | 1519 | cur->Pid = cpu_to_le16(li->pid); |
| 1520 | cur->LengthLow = cpu_to_le32((u32)li->length); |
| 1521 | cur->LengthHigh = cpu_to_le32((u32)(li->length>>32)); |
| 1522 | cur->OffsetLow = cpu_to_le32((u32)li->offset); |
| 1523 | cur->OffsetHigh = cpu_to_le32((u32)(li->offset>>32)); |
| 1524 | /* |
| 1525 | * We need to save a lock here to let us add it again to |
| 1526 | * the file's list if the unlock range request fails on |
| 1527 | * the server. |
| 1528 | */ |
| 1529 | list_move(&li->llist, &tmp_llist); |
| 1530 | if (++num == max_num) { |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 1531 | stored_rc = cifs_lockv(xid, tcon, |
| 1532 | cfile->fid.netfid, |
Pavel Shilovsky | ea319d5 | 2012-05-31 13:59:36 +0400 | [diff] [blame] | 1533 | li->type, num, 0, buf); |
| 1534 | if (stored_rc) { |
| 1535 | /* |
| 1536 | * We failed on the unlock range |
| 1537 | * request - add all locks from the tmp |
| 1538 | * list to the head of the file's list. |
| 1539 | */ |
| 1540 | cifs_move_llist(&tmp_llist, |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1541 | &cfile->llist->locks); |
Pavel Shilovsky | ea319d5 | 2012-05-31 13:59:36 +0400 | [diff] [blame] | 1542 | rc = stored_rc; |
| 1543 | } else |
| 1544 | /* |
| 1545 | * The unlock range request succeed - |
| 1546 | * free the tmp list. |
| 1547 | */ |
| 1548 | cifs_free_llist(&tmp_llist); |
| 1549 | cur = buf; |
| 1550 | num = 0; |
| 1551 | } else |
| 1552 | cur++; |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1553 | } |
| 1554 | if (num) { |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 1555 | stored_rc = cifs_lockv(xid, tcon, cfile->fid.netfid, |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1556 | types[i], num, 0, buf); |
| 1557 | if (stored_rc) { |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1558 | cifs_move_llist(&tmp_llist, |
| 1559 | &cfile->llist->locks); |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1560 | rc = stored_rc; |
| 1561 | } else |
| 1562 | cifs_free_llist(&tmp_llist); |
| 1563 | } |
| 1564 | } |
| 1565 | |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1566 | up_write(&cinode->lock_sem); |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1567 | kfree(buf); |
| 1568 | return rc; |
| 1569 | } |
| 1570 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1571 | static int |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1572 | cifs_setlk(struct file *file, struct file_lock *flock, __u32 type, |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1573 | bool wait_flag, bool posix_lck, int lock, int unlock, |
| 1574 | unsigned int xid) |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1575 | { |
| 1576 | int rc = 0; |
| 1577 | __u64 length = 1 + flock->fl_end - flock->fl_start; |
| 1578 | struct cifsFileInfo *cfile = (struct cifsFileInfo *)file->private_data; |
| 1579 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1580 | struct TCP_Server_Info *server = tcon->ses->server; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1581 | struct inode *inode = d_inode(cfile->dentry); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1582 | |
| 1583 | if (posix_lck) { |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1584 | int posix_lock_type; |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1585 | |
| 1586 | rc = cifs_posix_lock_set(file, flock); |
| 1587 | if (!rc || rc < 0) |
| 1588 | return rc; |
| 1589 | |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1590 | if (type & server->vals->shared_lock_type) |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 1591 | posix_lock_type = CIFS_RDLCK; |
| 1592 | else |
| 1593 | posix_lock_type = CIFS_WRLCK; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1594 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1595 | if (unlock == 1) |
Steve French | beb84dc | 2006-03-03 23:36:34 +0000 | [diff] [blame] | 1596 | posix_lock_type = CIFS_UNLCK; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1597 | |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1598 | rc = CIFSSMBPosixLock(xid, tcon, cfile->fid.netfid, |
Jeff Layton | 3d22462 | 2016-05-24 06:27:44 -0400 | [diff] [blame] | 1599 | hash_lockowner(flock->fl_owner), |
| 1600 | flock->fl_start, length, |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1601 | NULL, posix_lock_type, wait_flag); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1602 | goto out; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 1603 | } |
| 1604 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1605 | if (lock) { |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 1606 | struct cifsLockInfo *lock; |
| 1607 | |
Ronnie Sahlberg | 9645759 | 2018-10-04 09:24:38 +1000 | [diff] [blame] | 1608 | lock = cifs_lock_init(flock->fl_start, length, type, |
| 1609 | flock->fl_flags); |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 1610 | if (!lock) |
| 1611 | return -ENOMEM; |
| 1612 | |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1613 | rc = cifs_lock_add_if(cfile, lock, wait_flag); |
Pavel Shilovsky | 21cb2d9 | 2012-11-22 18:56:39 +0400 | [diff] [blame] | 1614 | if (rc < 0) { |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 1615 | kfree(lock); |
Pavel Shilovsky | 21cb2d9 | 2012-11-22 18:56:39 +0400 | [diff] [blame] | 1616 | return rc; |
| 1617 | } |
| 1618 | if (!rc) |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 1619 | goto out; |
| 1620 | |
Pavel Shilovsky | 63b7d3a | 2012-12-24 14:41:19 +0400 | [diff] [blame] | 1621 | /* |
| 1622 | * Windows 7 server can delay breaking lease from read to None |
| 1623 | * if we set a byte-range lock on a file - break it explicitly |
| 1624 | * before sending the lock to the server to be sure the next |
| 1625 | * read won't conflict with non-overlapted locks due to |
| 1626 | * pagereading. |
| 1627 | */ |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 1628 | if (!CIFS_CACHE_WRITE(CIFS_I(inode)) && |
| 1629 | CIFS_CACHE_READ(CIFS_I(inode))) { |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 1630 | cifs_zap_mapping(inode); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1631 | cifs_dbg(FYI, "Set no oplock for inode=%p due to mand locks\n", |
| 1632 | inode); |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 1633 | CIFS_I(inode)->oplock = 0; |
Pavel Shilovsky | 63b7d3a | 2012-12-24 14:41:19 +0400 | [diff] [blame] | 1634 | } |
| 1635 | |
Pavel Shilovsky | d39a4f7 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1636 | rc = server->ops->mand_lock(xid, cfile, flock->fl_start, length, |
| 1637 | type, 1, 0, wait_flag); |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 1638 | if (rc) { |
| 1639 | kfree(lock); |
Pavel Shilovsky | 21cb2d9 | 2012-11-22 18:56:39 +0400 | [diff] [blame] | 1640 | return rc; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1641 | } |
Pavel Shilovsky | 161ebf9 | 2011-10-29 17:17:58 +0400 | [diff] [blame] | 1642 | |
Pavel Shilovsky | fbd35ac | 2012-02-24 15:41:06 +0300 | [diff] [blame] | 1643 | cifs_lock_add(cfile, lock); |
Pavel Shilovsky | 9ee305b | 2011-10-22 15:33:31 +0400 | [diff] [blame] | 1644 | } else if (unlock) |
Pavel Shilovsky | d39a4f7 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 1645 | rc = server->ops->mand_unlock_range(cfile, flock, xid); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1646 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1647 | out: |
Chengyu Song | 00b8c95 | 2015-03-24 20:18:49 -0400 | [diff] [blame] | 1648 | if (flock->fl_flags & FL_POSIX && !rc) |
Benjamin Coddington | 4f65636 | 2015-10-22 13:38:14 -0400 | [diff] [blame] | 1649 | rc = locks_lock_file_wait(file, flock); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1650 | return rc; |
| 1651 | } |
| 1652 | |
| 1653 | int cifs_lock(struct file *file, int cmd, struct file_lock *flock) |
| 1654 | { |
| 1655 | int rc, xid; |
| 1656 | int lock = 0, unlock = 0; |
| 1657 | bool wait_flag = false; |
| 1658 | bool posix_lck = false; |
| 1659 | struct cifs_sb_info *cifs_sb; |
| 1660 | struct cifs_tcon *tcon; |
| 1661 | struct cifsInodeInfo *cinode; |
| 1662 | struct cifsFileInfo *cfile; |
| 1663 | __u16 netfid; |
Pavel Shilovsky | 04a6aa8 | 2012-02-28 14:16:55 +0300 | [diff] [blame] | 1664 | __u32 type; |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1665 | |
| 1666 | rc = -EACCES; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1667 | xid = get_xid(); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1668 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1669 | cifs_dbg(FYI, "Lock parm: 0x%x flockflags: 0x%x flocktype: 0x%x start: %lld end: %lld\n", |
| 1670 | cmd, flock->fl_flags, flock->fl_type, |
| 1671 | flock->fl_start, flock->fl_end); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1672 | |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1673 | cfile = (struct cifsFileInfo *)file->private_data; |
| 1674 | tcon = tlink_tcon(cfile->tlink); |
Pavel Shilovsky | 106dc53 | 2012-02-28 14:23:34 +0300 | [diff] [blame] | 1675 | |
| 1676 | cifs_read_flock(flock, &type, &lock, &unlock, &wait_flag, |
| 1677 | tcon->ses->server); |
Al Viro | 7119e22 | 2014-10-22 00:25:12 -0400 | [diff] [blame] | 1678 | cifs_sb = CIFS_FILE_SB(file); |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 1679 | netfid = cfile->fid.netfid; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1680 | cinode = CIFS_I(file_inode(file)); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1681 | |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 1682 | if (cap_unix(tcon->ses) && |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1683 | (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) && |
| 1684 | ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0)) |
| 1685 | posix_lck = true; |
| 1686 | /* |
| 1687 | * BB add code here to normalize offset and length to account for |
| 1688 | * negative length which we can not accept over the wire. |
| 1689 | */ |
| 1690 | if (IS_GETLK(cmd)) { |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 1691 | rc = cifs_getlk(file, flock, type, wait_flag, posix_lck, xid); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1692 | free_xid(xid); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1693 | return rc; |
| 1694 | } |
| 1695 | |
| 1696 | if (!lock && !unlock) { |
| 1697 | /* |
| 1698 | * if no lock or unlock then nothing to do since we do not |
| 1699 | * know what it is |
| 1700 | */ |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1701 | free_xid(xid); |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 1702 | return -EOPNOTSUPP; |
| 1703 | } |
| 1704 | |
| 1705 | rc = cifs_setlk(file, flock, type, wait_flag, posix_lck, lock, unlock, |
| 1706 | xid); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1707 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | return rc; |
| 1709 | } |
| 1710 | |
Jeff Layton | 597b027 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1711 | /* |
| 1712 | * update the file size (if needed) after a write. Should be called with |
| 1713 | * the inode->i_lock held |
| 1714 | */ |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 1715 | void |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1716 | cifs_update_eof(struct cifsInodeInfo *cifsi, loff_t offset, |
| 1717 | unsigned int bytes_written) |
| 1718 | { |
| 1719 | loff_t end_of_write = offset + bytes_written; |
| 1720 | |
| 1721 | if (end_of_write > cifsi->server_eof) |
| 1722 | cifsi->server_eof = end_of_write; |
| 1723 | } |
| 1724 | |
Pavel Shilovsky | ba9ad725 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1725 | static ssize_t |
| 1726 | cifs_write(struct cifsFileInfo *open_file, __u32 pid, const char *write_data, |
| 1727 | size_t write_size, loff_t *offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | { |
| 1729 | int rc = 0; |
| 1730 | unsigned int bytes_written = 0; |
| 1731 | unsigned int total_written; |
| 1732 | struct cifs_sb_info *cifs_sb; |
Pavel Shilovsky | ba9ad725 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1733 | struct cifs_tcon *tcon; |
| 1734 | struct TCP_Server_Info *server; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1735 | unsigned int xid; |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1736 | struct dentry *dentry = open_file->dentry; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1737 | struct cifsInodeInfo *cifsi = CIFS_I(d_inode(dentry)); |
Pavel Shilovsky | fa2989f | 2011-05-26 10:01:59 +0400 | [diff] [blame] | 1738 | struct cifs_io_parms io_parms; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1740 | cifs_sb = CIFS_SB(dentry->d_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1741 | |
Al Viro | 35c265e | 2014-08-19 20:25:34 -0400 | [diff] [blame] | 1742 | cifs_dbg(FYI, "write %zd bytes to offset %lld of %pd\n", |
| 1743 | write_size, *offset, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | |
Pavel Shilovsky | ba9ad725 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1745 | tcon = tlink_tcon(open_file->tlink); |
| 1746 | server = tcon->ses->server; |
| 1747 | |
| 1748 | if (!server->ops->sync_write) |
| 1749 | return -ENOSYS; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1750 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1751 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | for (total_written = 0; write_size > total_written; |
| 1754 | total_written += bytes_written) { |
| 1755 | rc = -EAGAIN; |
| 1756 | while (rc == -EAGAIN) { |
Jeff Layton | ca83ce3 | 2011-04-12 09:13:44 -0400 | [diff] [blame] | 1757 | struct kvec iov[2]; |
| 1758 | unsigned int len; |
| 1759 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | if (open_file->invalidHandle) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | /* we could deadlock if we called |
| 1762 | filemap_fdatawait from here so tell |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1763 | reopen_file not to flush data to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | server now */ |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 1765 | rc = cifs_reopen_file(open_file, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1766 | if (rc != 0) |
| 1767 | break; |
| 1768 | } |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 1769 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1770 | len = min(server->ops->wp_retry_size(d_inode(dentry)), |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 1771 | (unsigned int)write_size - total_written); |
Jeff Layton | ca83ce3 | 2011-04-12 09:13:44 -0400 | [diff] [blame] | 1772 | /* iov[0] is reserved for smb header */ |
| 1773 | iov[1].iov_base = (char *)write_data + total_written; |
| 1774 | iov[1].iov_len = len; |
Pavel Shilovsky | fa2989f | 2011-05-26 10:01:59 +0400 | [diff] [blame] | 1775 | io_parms.pid = pid; |
Pavel Shilovsky | ba9ad725 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1776 | io_parms.tcon = tcon; |
| 1777 | io_parms.offset = *offset; |
Pavel Shilovsky | fa2989f | 2011-05-26 10:01:59 +0400 | [diff] [blame] | 1778 | io_parms.length = len; |
Steve French | db8b631 | 2014-09-22 05:13:55 -0500 | [diff] [blame] | 1779 | rc = server->ops->sync_write(xid, &open_file->fid, |
| 1780 | &io_parms, &bytes_written, iov, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | } |
| 1782 | if (rc || (bytes_written == 0)) { |
| 1783 | if (total_written) |
| 1784 | break; |
| 1785 | else { |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1786 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1787 | return rc; |
| 1788 | } |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1789 | } else { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1790 | spin_lock(&d_inode(dentry)->i_lock); |
Pavel Shilovsky | ba9ad725 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1791 | cifs_update_eof(cifsi, *offset, bytes_written); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1792 | spin_unlock(&d_inode(dentry)->i_lock); |
Pavel Shilovsky | ba9ad725 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1793 | *offset += bytes_written; |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1794 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | } |
| 1796 | |
Pavel Shilovsky | ba9ad725 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 1797 | cifs_stats_bytes_written(tcon, total_written); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1799 | if (total_written > 0) { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1800 | spin_lock(&d_inode(dentry)->i_lock); |
| 1801 | if (*offset > d_inode(dentry)->i_size) |
| 1802 | i_size_write(d_inode(dentry), *offset); |
| 1803 | spin_unlock(&d_inode(dentry)->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | } |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1805 | mark_inode_dirty_sync(d_inode(dentry)); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 1806 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | return total_written; |
| 1808 | } |
| 1809 | |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1810 | struct cifsFileInfo *find_readable_file(struct cifsInodeInfo *cifs_inode, |
| 1811 | bool fsuid_only) |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1812 | { |
| 1813 | struct cifsFileInfo *open_file = NULL; |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1814 | struct cifs_sb_info *cifs_sb = CIFS_SB(cifs_inode->vfs_inode.i_sb); |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1815 | struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1816 | |
| 1817 | /* only filter by fsuid on multiuser mounts */ |
| 1818 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER)) |
| 1819 | fsuid_only = false; |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1820 | |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1821 | spin_lock(&tcon->open_file_lock); |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1822 | /* we could simply get the first_list_entry since write-only entries |
| 1823 | are always at the end of the list but since the first entry might |
| 1824 | have a close pending, we go through the whole list */ |
| 1825 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { |
Eric W. Biederman | fef59fd | 2013-02-06 02:23:02 -0800 | [diff] [blame] | 1826 | if (fsuid_only && !uid_eq(open_file->uid, current_fsuid())) |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1827 | continue; |
Jeff Layton | 2e396b8 | 2010-10-15 15:34:01 -0400 | [diff] [blame] | 1828 | if (OPEN_FMODE(open_file->f_flags) & FMODE_READ) { |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1829 | if (!open_file->invalidHandle) { |
| 1830 | /* found a good file */ |
| 1831 | /* lock it so it will not be closed on us */ |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1832 | cifsFileInfo_get(open_file); |
| 1833 | spin_unlock(&tcon->open_file_lock); |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1834 | return open_file; |
| 1835 | } /* else might as well continue, and look for |
| 1836 | another, or simply have the caller reopen it |
| 1837 | again rather than trying to fix this handle */ |
| 1838 | } else /* write only file */ |
| 1839 | break; /* write only files are last so must be done */ |
| 1840 | } |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1841 | spin_unlock(&tcon->open_file_lock); |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1842 | return NULL; |
| 1843 | } |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1844 | |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1845 | struct cifsFileInfo *find_writable_file(struct cifsInodeInfo *cifs_inode, |
| 1846 | bool fsuid_only) |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1847 | { |
Shirish Pargaonkar | 2c0c2a0 | 2012-05-21 09:20:12 -0500 | [diff] [blame] | 1848 | struct cifsFileInfo *open_file, *inv_file = NULL; |
Jeff Layton | d389229 | 2010-11-02 16:22:50 -0400 | [diff] [blame] | 1849 | struct cifs_sb_info *cifs_sb; |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1850 | struct cifs_tcon *tcon; |
Jeff Layton | 2846d38 | 2008-09-22 21:33:33 -0400 | [diff] [blame] | 1851 | bool any_available = false; |
Steve French | dd99cd8 | 2005-10-05 19:32:49 -0700 | [diff] [blame] | 1852 | int rc; |
Shirish Pargaonkar | 2c0c2a0 | 2012-05-21 09:20:12 -0500 | [diff] [blame] | 1853 | unsigned int refind = 0; |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1854 | |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1855 | /* Having a null inode here (because mapping->host was set to zero by |
| 1856 | the VFS or MM) should not happen but we had reports of on oops (due to |
| 1857 | it being zero) during stress testcases so we need to check for it */ |
| 1858 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1859 | if (cifs_inode == NULL) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1860 | cifs_dbg(VFS, "Null inode passed to cifs_writeable_file\n"); |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1861 | dump_stack(); |
| 1862 | return NULL; |
| 1863 | } |
| 1864 | |
Jeff Layton | d389229 | 2010-11-02 16:22:50 -0400 | [diff] [blame] | 1865 | cifs_sb = CIFS_SB(cifs_inode->vfs_inode.i_sb); |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1866 | tcon = cifs_sb_master_tcon(cifs_sb); |
Jeff Layton | d389229 | 2010-11-02 16:22:50 -0400 | [diff] [blame] | 1867 | |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1868 | /* only filter by fsuid on multiuser mounts */ |
| 1869 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER)) |
| 1870 | fsuid_only = false; |
| 1871 | |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1872 | spin_lock(&tcon->open_file_lock); |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1873 | refind_writable: |
Shirish Pargaonkar | 2c0c2a0 | 2012-05-21 09:20:12 -0500 | [diff] [blame] | 1874 | if (refind > MAX_REOPEN_ATT) { |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1875 | spin_unlock(&tcon->open_file_lock); |
Shirish Pargaonkar | 2c0c2a0 | 2012-05-21 09:20:12 -0500 | [diff] [blame] | 1876 | return NULL; |
| 1877 | } |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1878 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1879 | if (!any_available && open_file->pid != current->tgid) |
| 1880 | continue; |
Eric W. Biederman | fef59fd | 2013-02-06 02:23:02 -0800 | [diff] [blame] | 1881 | if (fsuid_only && !uid_eq(open_file->uid, current_fsuid())) |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1882 | continue; |
Jeff Layton | 2e396b8 | 2010-10-15 15:34:01 -0400 | [diff] [blame] | 1883 | if (OPEN_FMODE(open_file->f_flags) & FMODE_WRITE) { |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1884 | if (!open_file->invalidHandle) { |
| 1885 | /* found a good writable file */ |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1886 | cifsFileInfo_get(open_file); |
| 1887 | spin_unlock(&tcon->open_file_lock); |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1888 | return open_file; |
Shirish Pargaonkar | 2c0c2a0 | 2012-05-21 09:20:12 -0500 | [diff] [blame] | 1889 | } else { |
| 1890 | if (!inv_file) |
| 1891 | inv_file = open_file; |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1892 | } |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1893 | } |
| 1894 | } |
Jeff Layton | 2846d38 | 2008-09-22 21:33:33 -0400 | [diff] [blame] | 1895 | /* couldn't find useable FH with same pid, try any available */ |
| 1896 | if (!any_available) { |
| 1897 | any_available = true; |
| 1898 | goto refind_writable; |
| 1899 | } |
Shirish Pargaonkar | 2c0c2a0 | 2012-05-21 09:20:12 -0500 | [diff] [blame] | 1900 | |
| 1901 | if (inv_file) { |
| 1902 | any_available = false; |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1903 | cifsFileInfo_get(inv_file); |
Shirish Pargaonkar | 2c0c2a0 | 2012-05-21 09:20:12 -0500 | [diff] [blame] | 1904 | } |
| 1905 | |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1906 | spin_unlock(&tcon->open_file_lock); |
Shirish Pargaonkar | 2c0c2a0 | 2012-05-21 09:20:12 -0500 | [diff] [blame] | 1907 | |
| 1908 | if (inv_file) { |
| 1909 | rc = cifs_reopen_file(inv_file, false); |
| 1910 | if (!rc) |
| 1911 | return inv_file; |
| 1912 | else { |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1913 | spin_lock(&tcon->open_file_lock); |
Shirish Pargaonkar | 2c0c2a0 | 2012-05-21 09:20:12 -0500 | [diff] [blame] | 1914 | list_move_tail(&inv_file->flist, |
| 1915 | &cifs_inode->openFileList); |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1916 | spin_unlock(&tcon->open_file_lock); |
Shirish Pargaonkar | 2c0c2a0 | 2012-05-21 09:20:12 -0500 | [diff] [blame] | 1917 | cifsFileInfo_put(inv_file); |
Shirish Pargaonkar | 2c0c2a0 | 2012-05-21 09:20:12 -0500 | [diff] [blame] | 1918 | ++refind; |
David Disseldorp | e1e9bda | 2015-03-13 14:20:29 +0100 | [diff] [blame] | 1919 | inv_file = NULL; |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 1920 | spin_lock(&tcon->open_file_lock); |
Shirish Pargaonkar | 2c0c2a0 | 2012-05-21 09:20:12 -0500 | [diff] [blame] | 1921 | goto refind_writable; |
| 1922 | } |
| 1923 | } |
| 1924 | |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1925 | return NULL; |
| 1926 | } |
| 1927 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to) |
| 1929 | { |
| 1930 | struct address_space *mapping = page->mapping; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1931 | loff_t offset = (loff_t)page->index << PAGE_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | char *write_data; |
| 1933 | int rc = -EFAULT; |
| 1934 | int bytes_written = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1935 | struct inode *inode; |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1936 | struct cifsFileInfo *open_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | |
| 1938 | if (!mapping || !mapping->host) |
| 1939 | return -EFAULT; |
| 1940 | |
| 1941 | inode = page->mapping->host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | |
| 1943 | offset += (loff_t)from; |
| 1944 | write_data = kmap(page); |
| 1945 | write_data += from; |
| 1946 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1947 | if ((to > PAGE_SIZE) || (from > to)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | kunmap(page); |
| 1949 | return -EIO; |
| 1950 | } |
| 1951 | |
| 1952 | /* racing with truncate? */ |
| 1953 | if (offset > mapping->host->i_size) { |
| 1954 | kunmap(page); |
| 1955 | return 0; /* don't care */ |
| 1956 | } |
| 1957 | |
| 1958 | /* check to make sure that we are not extending the file */ |
| 1959 | if (mapping->host->i_size - offset < (loff_t)to) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1960 | to = (unsigned)(mapping->host->i_size - offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1962 | open_file = find_writable_file(CIFS_I(mapping->host), false); |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1963 | if (open_file) { |
Pavel Shilovsky | fa2989f | 2011-05-26 10:01:59 +0400 | [diff] [blame] | 1964 | bytes_written = cifs_write(open_file, open_file->pid, |
| 1965 | write_data, to - from, &offset); |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 1966 | cifsFileInfo_put(open_file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1967 | /* Does mm or vfs already set times? */ |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 1968 | inode->i_atime = inode->i_mtime = current_time(inode); |
Steve French | bb5a9a0 | 2007-12-31 04:21:29 +0000 | [diff] [blame] | 1969 | if ((bytes_written > 0) && (offset)) |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1970 | rc = 0; |
Steve French | bb5a9a0 | 2007-12-31 04:21:29 +0000 | [diff] [blame] | 1971 | else if (bytes_written < 0) |
| 1972 | rc = bytes_written; |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1973 | } else { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1974 | cifs_dbg(FYI, "No writeable filehandles for inode\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | rc = -EIO; |
| 1976 | } |
| 1977 | |
| 1978 | kunmap(page); |
| 1979 | return rc; |
| 1980 | } |
| 1981 | |
Pavel Shilovsky | 90ac138 | 2014-06-19 16:11:00 +0400 | [diff] [blame] | 1982 | static struct cifs_writedata * |
| 1983 | wdata_alloc_and_fillpages(pgoff_t tofind, struct address_space *mapping, |
| 1984 | pgoff_t end, pgoff_t *index, |
| 1985 | unsigned int *found_pages) |
| 1986 | { |
Pavel Shilovsky | 90ac138 | 2014-06-19 16:11:00 +0400 | [diff] [blame] | 1987 | struct cifs_writedata *wdata; |
| 1988 | |
| 1989 | wdata = cifs_writedata_alloc((unsigned int)tofind, |
| 1990 | cifs_writev_complete); |
| 1991 | if (!wdata) |
| 1992 | return NULL; |
| 1993 | |
Jan Kara | 9c19a9c | 2017-11-15 17:35:26 -0800 | [diff] [blame] | 1994 | *found_pages = find_get_pages_range_tag(mapping, index, end, |
| 1995 | PAGECACHE_TAG_DIRTY, tofind, wdata->pages); |
Pavel Shilovsky | 90ac138 | 2014-06-19 16:11:00 +0400 | [diff] [blame] | 1996 | return wdata; |
| 1997 | } |
| 1998 | |
Pavel Shilovsky | 7e48ff8 | 2014-06-19 15:01:03 +0400 | [diff] [blame] | 1999 | static unsigned int |
| 2000 | wdata_prepare_pages(struct cifs_writedata *wdata, unsigned int found_pages, |
| 2001 | struct address_space *mapping, |
| 2002 | struct writeback_control *wbc, |
| 2003 | pgoff_t end, pgoff_t *index, pgoff_t *next, bool *done) |
| 2004 | { |
| 2005 | unsigned int nr_pages = 0, i; |
| 2006 | struct page *page; |
| 2007 | |
| 2008 | for (i = 0; i < found_pages; i++) { |
| 2009 | page = wdata->pages[i]; |
| 2010 | /* |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 2011 | * At this point we hold neither the i_pages lock nor the |
| 2012 | * page lock: the page may be truncated or invalidated |
| 2013 | * (changing page->mapping to NULL), or even swizzled |
| 2014 | * back from swapper_space to tmpfs file mapping |
Pavel Shilovsky | 7e48ff8 | 2014-06-19 15:01:03 +0400 | [diff] [blame] | 2015 | */ |
| 2016 | |
| 2017 | if (nr_pages == 0) |
| 2018 | lock_page(page); |
| 2019 | else if (!trylock_page(page)) |
| 2020 | break; |
| 2021 | |
| 2022 | if (unlikely(page->mapping != mapping)) { |
| 2023 | unlock_page(page); |
| 2024 | break; |
| 2025 | } |
| 2026 | |
| 2027 | if (!wbc->range_cyclic && page->index > end) { |
| 2028 | *done = true; |
| 2029 | unlock_page(page); |
| 2030 | break; |
| 2031 | } |
| 2032 | |
| 2033 | if (*next && (page->index != *next)) { |
| 2034 | /* Not next consecutive page */ |
| 2035 | unlock_page(page); |
| 2036 | break; |
| 2037 | } |
| 2038 | |
| 2039 | if (wbc->sync_mode != WB_SYNC_NONE) |
| 2040 | wait_on_page_writeback(page); |
| 2041 | |
| 2042 | if (PageWriteback(page) || |
| 2043 | !clear_page_dirty_for_io(page)) { |
| 2044 | unlock_page(page); |
| 2045 | break; |
| 2046 | } |
| 2047 | |
| 2048 | /* |
| 2049 | * This actually clears the dirty bit in the radix tree. |
| 2050 | * See cifs_writepage() for more commentary. |
| 2051 | */ |
| 2052 | set_page_writeback(page); |
| 2053 | if (page_offset(page) >= i_size_read(mapping->host)) { |
| 2054 | *done = true; |
| 2055 | unlock_page(page); |
| 2056 | end_page_writeback(page); |
| 2057 | break; |
| 2058 | } |
| 2059 | |
| 2060 | wdata->pages[i] = page; |
| 2061 | *next = page->index + 1; |
| 2062 | ++nr_pages; |
| 2063 | } |
| 2064 | |
| 2065 | /* reset index to refind any pages skipped */ |
| 2066 | if (nr_pages == 0) |
| 2067 | *index = wdata->pages[0]->index + 1; |
| 2068 | |
| 2069 | /* put any pages we aren't going to use */ |
| 2070 | for (i = nr_pages; i < found_pages; i++) { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2071 | put_page(wdata->pages[i]); |
Pavel Shilovsky | 7e48ff8 | 2014-06-19 15:01:03 +0400 | [diff] [blame] | 2072 | wdata->pages[i] = NULL; |
| 2073 | } |
| 2074 | |
| 2075 | return nr_pages; |
| 2076 | } |
| 2077 | |
Pavel Shilovsky | 619aa48 | 2014-06-19 15:28:37 +0400 | [diff] [blame] | 2078 | static int |
| 2079 | wdata_send_pages(struct cifs_writedata *wdata, unsigned int nr_pages, |
| 2080 | struct address_space *mapping, struct writeback_control *wbc) |
| 2081 | { |
| 2082 | int rc = 0; |
| 2083 | struct TCP_Server_Info *server; |
| 2084 | unsigned int i; |
| 2085 | |
| 2086 | wdata->sync_mode = wbc->sync_mode; |
| 2087 | wdata->nr_pages = nr_pages; |
| 2088 | wdata->offset = page_offset(wdata->pages[0]); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2089 | wdata->pagesz = PAGE_SIZE; |
Pavel Shilovsky | 619aa48 | 2014-06-19 15:28:37 +0400 | [diff] [blame] | 2090 | wdata->tailsz = min(i_size_read(mapping->host) - |
| 2091 | page_offset(wdata->pages[nr_pages - 1]), |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2092 | (loff_t)PAGE_SIZE); |
| 2093 | wdata->bytes = ((nr_pages - 1) * PAGE_SIZE) + wdata->tailsz; |
Pavel Shilovsky | 619aa48 | 2014-06-19 15:28:37 +0400 | [diff] [blame] | 2094 | |
Pavel Shilovsky | 66231a4 | 2014-06-19 16:15:16 +0400 | [diff] [blame] | 2095 | if (wdata->cfile != NULL) |
| 2096 | cifsFileInfo_put(wdata->cfile); |
| 2097 | wdata->cfile = find_writable_file(CIFS_I(mapping->host), false); |
| 2098 | if (!wdata->cfile) { |
| 2099 | cifs_dbg(VFS, "No writable handles for inode\n"); |
| 2100 | rc = -EBADF; |
| 2101 | } else { |
Pavel Shilovsky | 619aa48 | 2014-06-19 15:28:37 +0400 | [diff] [blame] | 2102 | wdata->pid = wdata->cfile->pid; |
| 2103 | server = tlink_tcon(wdata->cfile->tlink)->ses->server; |
| 2104 | rc = server->ops->async_writev(wdata, cifs_writedata_release); |
Pavel Shilovsky | 66231a4 | 2014-06-19 16:15:16 +0400 | [diff] [blame] | 2105 | } |
Pavel Shilovsky | 619aa48 | 2014-06-19 15:28:37 +0400 | [diff] [blame] | 2106 | |
| 2107 | for (i = 0; i < nr_pages; ++i) |
| 2108 | unlock_page(wdata->pages[i]); |
| 2109 | |
| 2110 | return rc; |
| 2111 | } |
| 2112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2113 | static int cifs_writepages(struct address_space *mapping, |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2114 | struct writeback_control *wbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | { |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2116 | struct cifs_sb_info *cifs_sb = CIFS_SB(mapping->host->i_sb); |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 2117 | struct TCP_Server_Info *server; |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2118 | bool done = false, scanned = false, range_whole = false; |
| 2119 | pgoff_t end, index; |
| 2120 | struct cifs_writedata *wdata; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2121 | int rc = 0; |
Pavel Shilovsky | 9a66396 | 2019-01-08 11:15:28 -0800 | [diff] [blame] | 2122 | int saved_rc = 0; |
Steve French | 0cb012d | 2018-10-11 01:01:02 -0500 | [diff] [blame] | 2123 | unsigned int xid; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2124 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2125 | /* |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2126 | * If wsize is smaller than the page cache size, default to writing |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2127 | * one page at a time via cifs_writepage |
| 2128 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2129 | if (cifs_sb->wsize < PAGE_SIZE) |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2130 | return generic_writepages(mapping, wbc); |
| 2131 | |
Steve French | 0cb012d | 2018-10-11 01:01:02 -0500 | [diff] [blame] | 2132 | xid = get_xid(); |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 2133 | if (wbc->range_cyclic) { |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2134 | index = mapping->writeback_index; /* Start from prev offset */ |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 2135 | end = -1; |
| 2136 | } else { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2137 | index = wbc->range_start >> PAGE_SHIFT; |
| 2138 | end = wbc->range_end >> PAGE_SHIFT; |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 2139 | if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2140 | range_whole = true; |
| 2141 | scanned = true; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2142 | } |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 2143 | server = cifs_sb_master_tcon(cifs_sb)->ses->server; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2144 | retry: |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2145 | while (!done && index <= end) { |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 2146 | unsigned int i, nr_pages, found_pages, wsize, credits; |
Pavel Shilovsky | 66231a4 | 2014-06-19 16:15:16 +0400 | [diff] [blame] | 2147 | pgoff_t next = 0, tofind, saved_index = index; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2148 | |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 2149 | rc = server->ops->wait_mtu_credits(server, cifs_sb->wsize, |
| 2150 | &wsize, &credits); |
Pavel Shilovsky | 9a66396 | 2019-01-08 11:15:28 -0800 | [diff] [blame] | 2151 | if (rc != 0) { |
| 2152 | done = true; |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 2153 | break; |
Pavel Shilovsky | 9a66396 | 2019-01-08 11:15:28 -0800 | [diff] [blame] | 2154 | } |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2155 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2156 | tofind = min((wsize / PAGE_SIZE) - 1, end - index) + 1; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2157 | |
Pavel Shilovsky | 90ac138 | 2014-06-19 16:11:00 +0400 | [diff] [blame] | 2158 | wdata = wdata_alloc_and_fillpages(tofind, mapping, end, &index, |
| 2159 | &found_pages); |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2160 | if (!wdata) { |
| 2161 | rc = -ENOMEM; |
Pavel Shilovsky | 9a66396 | 2019-01-08 11:15:28 -0800 | [diff] [blame] | 2162 | done = true; |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 2163 | add_credits_and_wake_if(server, credits, 0); |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2164 | break; |
| 2165 | } |
| 2166 | |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2167 | if (found_pages == 0) { |
| 2168 | kref_put(&wdata->refcount, cifs_writedata_release); |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 2169 | add_credits_and_wake_if(server, credits, 0); |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2170 | break; |
| 2171 | } |
| 2172 | |
Pavel Shilovsky | 7e48ff8 | 2014-06-19 15:01:03 +0400 | [diff] [blame] | 2173 | nr_pages = wdata_prepare_pages(wdata, found_pages, mapping, wbc, |
| 2174 | end, &index, &next, &done); |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2175 | |
| 2176 | /* nothing to write? */ |
| 2177 | if (nr_pages == 0) { |
| 2178 | kref_put(&wdata->refcount, cifs_writedata_release); |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 2179 | add_credits_and_wake_if(server, credits, 0); |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2180 | continue; |
| 2181 | } |
| 2182 | |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 2183 | wdata->credits = credits; |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2184 | |
Pavel Shilovsky | 619aa48 | 2014-06-19 15:28:37 +0400 | [diff] [blame] | 2185 | rc = wdata_send_pages(wdata, nr_pages, mapping, wbc); |
Jeff Layton | 941b853 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 2186 | |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2187 | /* send failure -- clean up the mess */ |
| 2188 | if (rc != 0) { |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 2189 | add_credits_and_wake_if(server, wdata->credits, 0); |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2190 | for (i = 0; i < nr_pages; ++i) { |
Pavel Shilovsky | 9a66396 | 2019-01-08 11:15:28 -0800 | [diff] [blame] | 2191 | if (is_retryable_error(rc)) |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2192 | redirty_page_for_writepage(wbc, |
| 2193 | wdata->pages[i]); |
| 2194 | else |
| 2195 | SetPageError(wdata->pages[i]); |
| 2196 | end_page_writeback(wdata->pages[i]); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2197 | put_page(wdata->pages[i]); |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2198 | } |
Pavel Shilovsky | 9a66396 | 2019-01-08 11:15:28 -0800 | [diff] [blame] | 2199 | if (!is_retryable_error(rc)) |
Jeff Layton | 941b853 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 2200 | mapping_set_error(mapping, rc); |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2201 | } |
| 2202 | kref_put(&wdata->refcount, cifs_writedata_release); |
Jeff Layton | 941b853 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 2203 | |
Pavel Shilovsky | 66231a4 | 2014-06-19 16:15:16 +0400 | [diff] [blame] | 2204 | if (wbc->sync_mode == WB_SYNC_ALL && rc == -EAGAIN) { |
| 2205 | index = saved_index; |
| 2206 | continue; |
| 2207 | } |
| 2208 | |
Pavel Shilovsky | 9a66396 | 2019-01-08 11:15:28 -0800 | [diff] [blame] | 2209 | /* Return immediately if we received a signal during writing */ |
| 2210 | if (is_interrupt_error(rc)) { |
| 2211 | done = true; |
| 2212 | break; |
| 2213 | } |
| 2214 | |
| 2215 | if (rc != 0 && saved_rc == 0) |
| 2216 | saved_rc = rc; |
| 2217 | |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2218 | wbc->nr_to_write -= nr_pages; |
| 2219 | if (wbc->nr_to_write <= 0) |
| 2220 | done = true; |
Dave Kleikamp | b066a48 | 2008-11-18 03:49:05 +0000 | [diff] [blame] | 2221 | |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2222 | index = next; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2223 | } |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2224 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2225 | if (!scanned && !done) { |
| 2226 | /* |
| 2227 | * We hit the last page and there is more work to be done: wrap |
| 2228 | * back to the start of the file |
| 2229 | */ |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2230 | scanned = true; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2231 | index = 0; |
| 2232 | goto retry; |
| 2233 | } |
Jeff Layton | c3d17b6 | 2011-05-19 16:22:57 -0400 | [diff] [blame] | 2234 | |
Pavel Shilovsky | 9a66396 | 2019-01-08 11:15:28 -0800 | [diff] [blame] | 2235 | if (saved_rc != 0) |
| 2236 | rc = saved_rc; |
| 2237 | |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 2238 | if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2239 | mapping->writeback_index = index; |
| 2240 | |
Steve French | 0cb012d | 2018-10-11 01:01:02 -0500 | [diff] [blame] | 2241 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2242 | return rc; |
| 2243 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2244 | |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 2245 | static int |
| 2246 | cifs_writepage_locked(struct page *page, struct writeback_control *wbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2247 | { |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 2248 | int rc; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2249 | unsigned int xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2250 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2251 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2252 | /* BB add check for wbc flags */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2253 | get_page(page); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 2254 | if (!PageUptodate(page)) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2255 | cifs_dbg(FYI, "ppw - page not up to date\n"); |
Linus Torvalds | cb876f4 | 2006-12-23 16:19:07 -0800 | [diff] [blame] | 2256 | |
| 2257 | /* |
| 2258 | * Set the "writeback" flag, and clear "dirty" in the radix tree. |
| 2259 | * |
| 2260 | * A writepage() implementation always needs to do either this, |
| 2261 | * or re-dirty the page with "redirty_page_for_writepage()" in |
| 2262 | * the case of a failure. |
| 2263 | * |
| 2264 | * Just unlocking the page will cause the radix tree tag-bits |
| 2265 | * to fail to update with the state of the page correctly. |
| 2266 | */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2267 | set_page_writeback(page); |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 2268 | retry_write: |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2269 | rc = cifs_partialpagewrite(page, 0, PAGE_SIZE); |
Pavel Shilovsky | 9a66396 | 2019-01-08 11:15:28 -0800 | [diff] [blame] | 2270 | if (is_retryable_error(rc)) { |
| 2271 | if (wbc->sync_mode == WB_SYNC_ALL && rc == -EAGAIN) |
Jeff Layton | 97b37f2 | 2017-05-25 06:59:52 -0400 | [diff] [blame] | 2272 | goto retry_write; |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 2273 | redirty_page_for_writepage(wbc, page); |
Jeff Layton | 97b37f2 | 2017-05-25 06:59:52 -0400 | [diff] [blame] | 2274 | } else if (rc != 0) { |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 2275 | SetPageError(page); |
Jeff Layton | 97b37f2 | 2017-05-25 06:59:52 -0400 | [diff] [blame] | 2276 | mapping_set_error(page->mapping, rc); |
| 2277 | } else { |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 2278 | SetPageUptodate(page); |
Jeff Layton | 97b37f2 | 2017-05-25 06:59:52 -0400 | [diff] [blame] | 2279 | } |
Linus Torvalds | cb876f4 | 2006-12-23 16:19:07 -0800 | [diff] [blame] | 2280 | end_page_writeback(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2281 | put_page(page); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2282 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | return rc; |
| 2284 | } |
| 2285 | |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 2286 | static int cifs_writepage(struct page *page, struct writeback_control *wbc) |
| 2287 | { |
| 2288 | int rc = cifs_writepage_locked(page, wbc); |
| 2289 | unlock_page(page); |
| 2290 | return rc; |
| 2291 | } |
| 2292 | |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2293 | static int cifs_write_end(struct file *file, struct address_space *mapping, |
| 2294 | loff_t pos, unsigned len, unsigned copied, |
| 2295 | struct page *page, void *fsdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2296 | { |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2297 | int rc; |
| 2298 | struct inode *inode = mapping->host; |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 2299 | struct cifsFileInfo *cfile = file->private_data; |
| 2300 | struct cifs_sb_info *cifs_sb = CIFS_SB(cfile->dentry->d_sb); |
| 2301 | __u32 pid; |
| 2302 | |
| 2303 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD) |
| 2304 | pid = cfile->pid; |
| 2305 | else |
| 2306 | pid = current->tgid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2307 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2308 | cifs_dbg(FYI, "write_end for page %p from pos %lld with %d bytes\n", |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2309 | page, pos, copied); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 2310 | |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 2311 | if (PageChecked(page)) { |
| 2312 | if (copied == len) |
| 2313 | SetPageUptodate(page); |
| 2314 | ClearPageChecked(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2315 | } else if (!PageUptodate(page) && copied == PAGE_SIZE) |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2316 | SetPageUptodate(page); |
| 2317 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2318 | if (!PageUptodate(page)) { |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2319 | char *page_data; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2320 | unsigned offset = pos & (PAGE_SIZE - 1); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2321 | unsigned int xid; |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2322 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2323 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2324 | /* this is probably better than directly calling |
| 2325 | partialpage_write since in this function the file handle is |
| 2326 | known which we might as well leverage */ |
| 2327 | /* BB check if anything else missing out of ppw |
| 2328 | such as updating last write time */ |
| 2329 | page_data = kmap(page); |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 2330 | rc = cifs_write(cfile, pid, page_data + offset, copied, &pos); |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2331 | /* if (rc < 0) should we set writebehind rc? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2332 | kunmap(page); |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2333 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2334 | free_xid(xid); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2335 | } else { |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2336 | rc = copied; |
| 2337 | pos += copied; |
Pavel Shilovsky | ca8aa29 | 2012-12-21 15:05:47 +0400 | [diff] [blame] | 2338 | set_page_dirty(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2339 | } |
| 2340 | |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2341 | if (rc > 0) { |
| 2342 | spin_lock(&inode->i_lock); |
| 2343 | if (pos > inode->i_size) |
| 2344 | i_size_write(inode, pos); |
| 2345 | spin_unlock(&inode->i_lock); |
| 2346 | } |
| 2347 | |
| 2348 | unlock_page(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2349 | put_page(page); |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2351 | return rc; |
| 2352 | } |
| 2353 | |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 2354 | int cifs_strict_fsync(struct file *file, loff_t start, loff_t end, |
| 2355 | int datasync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2356 | { |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2357 | unsigned int xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2358 | int rc = 0; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2359 | struct cifs_tcon *tcon; |
Pavel Shilovsky | 1d8c4c0 | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 2360 | struct TCP_Server_Info *server; |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 2361 | struct cifsFileInfo *smbfile = file->private_data; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 2362 | struct inode *inode = file_inode(file); |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2363 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2364 | |
Jeff Layton | 3b49c9a | 2017-07-07 15:20:52 -0400 | [diff] [blame] | 2365 | rc = file_write_and_wait_range(file, start, end); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 2366 | if (rc) |
| 2367 | return rc; |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2368 | inode_lock(inode); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 2369 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2370 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2371 | |
Al Viro | 35c265e | 2014-08-19 20:25:34 -0400 | [diff] [blame] | 2372 | cifs_dbg(FYI, "Sync file - name: %pD datasync: 0x%x\n", |
| 2373 | file, datasync); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2374 | |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 2375 | if (!CIFS_CACHE_READ(CIFS_I(inode))) { |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 2376 | rc = cifs_zap_mapping(inode); |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 2377 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2378 | cifs_dbg(FYI, "rc: %d during invalidate phase\n", rc); |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 2379 | rc = 0; /* don't care about it in fsync */ |
| 2380 | } |
| 2381 | } |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 2382 | |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2383 | tcon = tlink_tcon(smbfile->tlink); |
Pavel Shilovsky | 1d8c4c0 | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 2384 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)) { |
| 2385 | server = tcon->ses->server; |
| 2386 | if (server->ops->flush) |
| 2387 | rc = server->ops->flush(xid, tcon, &smbfile->fid); |
| 2388 | else |
| 2389 | rc = -ENOSYS; |
| 2390 | } |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2391 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2392 | free_xid(xid); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2393 | inode_unlock(inode); |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2394 | return rc; |
| 2395 | } |
| 2396 | |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 2397 | 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] | 2398 | { |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2399 | unsigned int xid; |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2400 | int rc = 0; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2401 | struct cifs_tcon *tcon; |
Pavel Shilovsky | 1d8c4c0 | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 2402 | struct TCP_Server_Info *server; |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2403 | struct cifsFileInfo *smbfile = file->private_data; |
Al Viro | 7119e22 | 2014-10-22 00:25:12 -0400 | [diff] [blame] | 2404 | struct cifs_sb_info *cifs_sb = CIFS_FILE_SB(file); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 2405 | struct inode *inode = file->f_mapping->host; |
| 2406 | |
Jeff Layton | 3b49c9a | 2017-07-07 15:20:52 -0400 | [diff] [blame] | 2407 | rc = file_write_and_wait_range(file, start, end); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 2408 | if (rc) |
| 2409 | return rc; |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2410 | inode_lock(inode); |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2411 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2412 | xid = get_xid(); |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2413 | |
Al Viro | 35c265e | 2014-08-19 20:25:34 -0400 | [diff] [blame] | 2414 | cifs_dbg(FYI, "Sync file - name: %pD datasync: 0x%x\n", |
| 2415 | file, datasync); |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 2416 | |
| 2417 | tcon = tlink_tcon(smbfile->tlink); |
Pavel Shilovsky | 1d8c4c0 | 2012-09-18 16:20:27 -0700 | [diff] [blame] | 2418 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)) { |
| 2419 | server = tcon->ses->server; |
| 2420 | if (server->ops->flush) |
| 2421 | rc = server->ops->flush(xid, tcon, &smbfile->fid); |
| 2422 | else |
| 2423 | rc = -ENOSYS; |
| 2424 | } |
Steve French | b298f22 | 2009-02-21 21:17:43 +0000 | [diff] [blame] | 2425 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 2426 | free_xid(xid); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2427 | inode_unlock(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2428 | return rc; |
| 2429 | } |
| 2430 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2431 | /* |
| 2432 | * As file closes, flush all cached write data for this inode checking |
| 2433 | * for write behind errors. |
| 2434 | */ |
Miklos Szeredi | 75e1fcc | 2006-06-23 02:05:12 -0700 | [diff] [blame] | 2435 | int cifs_flush(struct file *file, fl_owner_t id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2436 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 2437 | struct inode *inode = file_inode(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2438 | int rc = 0; |
| 2439 | |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 2440 | if (file->f_mode & FMODE_WRITE) |
Jeff Layton | d3f1322 | 2010-10-15 15:34:07 -0400 | [diff] [blame] | 2441 | rc = filemap_write_and_wait(inode->i_mapping); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2442 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2443 | cifs_dbg(FYI, "Flush inode %p file %p rc %d\n", inode, file, rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2444 | |
| 2445 | return rc; |
| 2446 | } |
| 2447 | |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2448 | static int |
| 2449 | cifs_write_allocate_pages(struct page **pages, unsigned long num_pages) |
| 2450 | { |
| 2451 | int rc = 0; |
| 2452 | unsigned long i; |
| 2453 | |
| 2454 | for (i = 0; i < num_pages; i++) { |
Jeff Layton | e94f7ba | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2455 | pages[i] = alloc_page(GFP_KERNEL|__GFP_HIGHMEM); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2456 | if (!pages[i]) { |
| 2457 | /* |
| 2458 | * save number of pages we have already allocated and |
| 2459 | * return with ENOMEM error |
| 2460 | */ |
| 2461 | num_pages = i; |
| 2462 | rc = -ENOMEM; |
Jeff Layton | e94f7ba | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2463 | break; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2464 | } |
| 2465 | } |
| 2466 | |
Jeff Layton | e94f7ba | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2467 | if (rc) { |
| 2468 | for (i = 0; i < num_pages; i++) |
| 2469 | put_page(pages[i]); |
| 2470 | } |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2471 | return rc; |
| 2472 | } |
| 2473 | |
| 2474 | static inline |
| 2475 | size_t get_numpages(const size_t wsize, const size_t len, size_t *cur_len) |
| 2476 | { |
| 2477 | size_t num_pages; |
| 2478 | size_t clen; |
| 2479 | |
| 2480 | clen = min_t(const size_t, len, wsize); |
Jeff Layton | a7103b9 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2481 | num_pages = DIV_ROUND_UP(clen, PAGE_SIZE); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2482 | |
| 2483 | if (cur_len) |
| 2484 | *cur_len = clen; |
| 2485 | |
| 2486 | return num_pages; |
| 2487 | } |
| 2488 | |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2489 | static void |
Steve French | 4a5c80d | 2014-02-07 20:45:12 -0600 | [diff] [blame] | 2490 | cifs_uncached_writedata_release(struct kref *refcount) |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2491 | { |
| 2492 | int i; |
Steve French | 4a5c80d | 2014-02-07 20:45:12 -0600 | [diff] [blame] | 2493 | struct cifs_writedata *wdata = container_of(refcount, |
| 2494 | struct cifs_writedata, refcount); |
| 2495 | |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2496 | kref_put(&wdata->ctx->refcount, cifs_aio_ctx_release); |
Steve French | 4a5c80d | 2014-02-07 20:45:12 -0600 | [diff] [blame] | 2497 | for (i = 0; i < wdata->nr_pages; i++) |
| 2498 | put_page(wdata->pages[i]); |
| 2499 | cifs_writedata_release(refcount); |
| 2500 | } |
| 2501 | |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2502 | static void collect_uncached_write_data(struct cifs_aio_ctx *ctx); |
| 2503 | |
Steve French | 4a5c80d | 2014-02-07 20:45:12 -0600 | [diff] [blame] | 2504 | static void |
| 2505 | cifs_uncached_writev_complete(struct work_struct *work) |
| 2506 | { |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2507 | struct cifs_writedata *wdata = container_of(work, |
| 2508 | struct cifs_writedata, work); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2509 | struct inode *inode = d_inode(wdata->cfile->dentry); |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2510 | struct cifsInodeInfo *cifsi = CIFS_I(inode); |
| 2511 | |
| 2512 | spin_lock(&inode->i_lock); |
| 2513 | cifs_update_eof(cifsi, wdata->offset, wdata->bytes); |
| 2514 | if (cifsi->server_eof > inode->i_size) |
| 2515 | i_size_write(inode, cifsi->server_eof); |
| 2516 | spin_unlock(&inode->i_lock); |
| 2517 | |
| 2518 | complete(&wdata->done); |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2519 | collect_uncached_write_data(wdata->ctx); |
| 2520 | /* the below call can possibly free the last ref to aio ctx */ |
Steve French | 4a5c80d | 2014-02-07 20:45:12 -0600 | [diff] [blame] | 2521 | kref_put(&wdata->refcount, cifs_uncached_writedata_release); |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2522 | } |
| 2523 | |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2524 | static int |
Pavel Shilovsky | 66386c0 | 2014-06-20 15:48:40 +0400 | [diff] [blame] | 2525 | wdata_fill_from_iovec(struct cifs_writedata *wdata, struct iov_iter *from, |
| 2526 | size_t *len, unsigned long *num_pages) |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2527 | { |
Pavel Shilovsky | 66386c0 | 2014-06-20 15:48:40 +0400 | [diff] [blame] | 2528 | size_t save_len, copied, bytes, cur_len = *len; |
| 2529 | unsigned long i, nr_pages = *num_pages; |
| 2530 | |
| 2531 | save_len = cur_len; |
| 2532 | for (i = 0; i < nr_pages; i++) { |
| 2533 | bytes = min_t(const size_t, cur_len, PAGE_SIZE); |
| 2534 | copied = copy_page_from_iter(wdata->pages[i], 0, bytes, from); |
| 2535 | cur_len -= copied; |
| 2536 | /* |
| 2537 | * If we didn't copy as much as we expected, then that |
| 2538 | * may mean we trod into an unmapped area. Stop copying |
| 2539 | * at that point. On the next pass through the big |
| 2540 | * loop, we'll likely end up getting a zero-length |
| 2541 | * write and bailing out of it. |
| 2542 | */ |
| 2543 | if (copied < bytes) |
| 2544 | break; |
| 2545 | } |
| 2546 | cur_len = save_len - cur_len; |
| 2547 | *len = cur_len; |
| 2548 | |
| 2549 | /* |
| 2550 | * If we have no data to send, then that probably means that |
| 2551 | * the copy above failed altogether. That's most likely because |
| 2552 | * the address in the iovec was bogus. Return -EFAULT and let |
| 2553 | * the caller free anything we allocated and bail out. |
| 2554 | */ |
| 2555 | if (!cur_len) |
| 2556 | return -EFAULT; |
| 2557 | |
| 2558 | /* |
| 2559 | * i + 1 now represents the number of pages we actually used in |
| 2560 | * the copy phase above. |
| 2561 | */ |
| 2562 | *num_pages = i + 1; |
| 2563 | return 0; |
| 2564 | } |
| 2565 | |
Pavel Shilovsky | 43de94e | 2014-06-20 16:10:52 +0400 | [diff] [blame] | 2566 | static int |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2567 | cifs_resend_wdata(struct cifs_writedata *wdata, struct list_head *wdata_list, |
| 2568 | struct cifs_aio_ctx *ctx) |
| 2569 | { |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2570 | unsigned int wsize, credits; |
| 2571 | int rc; |
| 2572 | struct TCP_Server_Info *server = |
| 2573 | tlink_tcon(wdata->cfile->tlink)->ses->server; |
| 2574 | |
| 2575 | /* |
Long Li | 6ac7929 | 2018-12-06 04:51:06 +0000 | [diff] [blame] | 2576 | * Wait for credits to resend this wdata. |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2577 | * Note: we are attempting to resend the whole wdata not in segments |
| 2578 | */ |
| 2579 | do { |
| 2580 | rc = server->ops->wait_mtu_credits( |
| 2581 | server, wdata->bytes, &wsize, &credits); |
| 2582 | |
| 2583 | if (rc) |
Long Li | 6ac7929 | 2018-12-06 04:51:06 +0000 | [diff] [blame] | 2584 | goto out; |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2585 | |
| 2586 | if (wsize < wdata->bytes) { |
| 2587 | add_credits_and_wake_if(server, credits, 0); |
| 2588 | msleep(1000); |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2589 | } |
Long Li | 6ac7929 | 2018-12-06 04:51:06 +0000 | [diff] [blame] | 2590 | } while (wsize < wdata->bytes); |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2591 | |
| 2592 | rc = -EAGAIN; |
| 2593 | while (rc == -EAGAIN) { |
| 2594 | rc = 0; |
| 2595 | if (wdata->cfile->invalidHandle) |
| 2596 | rc = cifs_reopen_file(wdata->cfile, false); |
| 2597 | if (!rc) |
| 2598 | rc = server->ops->async_writev(wdata, |
| 2599 | cifs_uncached_writedata_release); |
| 2600 | } |
| 2601 | |
| 2602 | if (!rc) { |
| 2603 | list_add_tail(&wdata->list, wdata_list); |
| 2604 | return 0; |
| 2605 | } |
| 2606 | |
| 2607 | add_credits_and_wake_if(server, wdata->credits, 0); |
| 2608 | out: |
| 2609 | kref_put(&wdata->refcount, cifs_uncached_writedata_release); |
| 2610 | |
| 2611 | return rc; |
| 2612 | } |
| 2613 | |
| 2614 | static int |
Pavel Shilovsky | 43de94e | 2014-06-20 16:10:52 +0400 | [diff] [blame] | 2615 | cifs_write_from_iter(loff_t offset, size_t len, struct iov_iter *from, |
| 2616 | struct cifsFileInfo *open_file, |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2617 | struct cifs_sb_info *cifs_sb, struct list_head *wdata_list, |
| 2618 | struct cifs_aio_ctx *ctx) |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2619 | { |
Pavel Shilovsky | 43de94e | 2014-06-20 16:10:52 +0400 | [diff] [blame] | 2620 | int rc = 0; |
| 2621 | size_t cur_len; |
Pavel Shilovsky | 66386c0 | 2014-06-20 15:48:40 +0400 | [diff] [blame] | 2622 | unsigned long nr_pages, num_pages, i; |
Pavel Shilovsky | 43de94e | 2014-06-20 16:10:52 +0400 | [diff] [blame] | 2623 | struct cifs_writedata *wdata; |
Al Viro | fc56b98 | 2016-09-21 18:18:23 -0400 | [diff] [blame] | 2624 | struct iov_iter saved_from = *from; |
Pavel Shilovsky | 6ec0b01 | 2014-06-20 16:30:46 +0400 | [diff] [blame] | 2625 | loff_t saved_offset = offset; |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2626 | pid_t pid; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2627 | struct TCP_Server_Info *server; |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2628 | struct page **pagevec; |
| 2629 | size_t start; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2630 | |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 2631 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD) |
| 2632 | pid = open_file->pid; |
| 2633 | else |
| 2634 | pid = current->tgid; |
| 2635 | |
Pavel Shilovsky | 6ec0b01 | 2014-06-20 16:30:46 +0400 | [diff] [blame] | 2636 | server = tlink_tcon(open_file->tlink)->ses->server; |
Pavel Shilovsky | 76429c1 | 2011-01-31 16:03:08 +0300 | [diff] [blame] | 2637 | |
| 2638 | do { |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 2639 | unsigned int wsize, credits; |
| 2640 | |
| 2641 | rc = server->ops->wait_mtu_credits(server, cifs_sb->wsize, |
| 2642 | &wsize, &credits); |
| 2643 | if (rc) |
| 2644 | break; |
| 2645 | |
Long Li | b6bc8a7 | 2018-12-16 23:17:04 +0000 | [diff] [blame] | 2646 | cur_len = min_t(const size_t, len, wsize); |
| 2647 | |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2648 | if (ctx->direct_io) { |
Steve French | b98e26d | 2018-11-01 10:54:32 -0500 | [diff] [blame] | 2649 | ssize_t result; |
| 2650 | |
| 2651 | result = iov_iter_get_pages_alloc( |
Long Li | b6bc8a7 | 2018-12-16 23:17:04 +0000 | [diff] [blame] | 2652 | from, &pagevec, cur_len, &start); |
Steve French | b98e26d | 2018-11-01 10:54:32 -0500 | [diff] [blame] | 2653 | if (result < 0) { |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2654 | cifs_dbg(VFS, |
| 2655 | "direct_writev couldn't get user pages " |
| 2656 | "(rc=%zd) iter type %d iov_offset %zd " |
| 2657 | "count %zd\n", |
Steve French | b98e26d | 2018-11-01 10:54:32 -0500 | [diff] [blame] | 2658 | result, from->type, |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2659 | from->iov_offset, from->count); |
| 2660 | dump_stack(); |
Long Li | 54e94ff | 2018-12-16 22:41:07 +0000 | [diff] [blame] | 2661 | |
| 2662 | rc = result; |
| 2663 | add_credits_and_wake_if(server, credits, 0); |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2664 | break; |
| 2665 | } |
Steve French | b98e26d | 2018-11-01 10:54:32 -0500 | [diff] [blame] | 2666 | cur_len = (size_t)result; |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2667 | iov_iter_advance(from, cur_len); |
| 2668 | |
| 2669 | nr_pages = |
| 2670 | (cur_len + start + PAGE_SIZE - 1) / PAGE_SIZE; |
| 2671 | |
| 2672 | wdata = cifs_writedata_direct_alloc(pagevec, |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2673 | cifs_uncached_writev_complete); |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2674 | if (!wdata) { |
| 2675 | rc = -ENOMEM; |
| 2676 | add_credits_and_wake_if(server, credits, 0); |
| 2677 | break; |
| 2678 | } |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2679 | |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2680 | |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2681 | wdata->page_offset = start; |
| 2682 | wdata->tailsz = |
| 2683 | nr_pages > 1 ? |
| 2684 | cur_len - (PAGE_SIZE - start) - |
| 2685 | (nr_pages - 2) * PAGE_SIZE : |
| 2686 | cur_len; |
| 2687 | } else { |
| 2688 | nr_pages = get_numpages(wsize, len, &cur_len); |
| 2689 | wdata = cifs_writedata_alloc(nr_pages, |
| 2690 | cifs_uncached_writev_complete); |
| 2691 | if (!wdata) { |
| 2692 | rc = -ENOMEM; |
| 2693 | add_credits_and_wake_if(server, credits, 0); |
| 2694 | break; |
| 2695 | } |
Jeff Layton | 5d81de8 | 2014-02-14 07:20:35 -0500 | [diff] [blame] | 2696 | |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2697 | rc = cifs_write_allocate_pages(wdata->pages, nr_pages); |
| 2698 | if (rc) { |
Pavel Shilovsky | 9bda872 | 2019-01-23 17:12:09 -0800 | [diff] [blame] | 2699 | kvfree(wdata->pages); |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2700 | kfree(wdata); |
| 2701 | add_credits_and_wake_if(server, credits, 0); |
| 2702 | break; |
| 2703 | } |
| 2704 | |
| 2705 | num_pages = nr_pages; |
| 2706 | rc = wdata_fill_from_iovec( |
| 2707 | wdata, from, &cur_len, &num_pages); |
| 2708 | if (rc) { |
| 2709 | for (i = 0; i < nr_pages; i++) |
| 2710 | put_page(wdata->pages[i]); |
Pavel Shilovsky | 9bda872 | 2019-01-23 17:12:09 -0800 | [diff] [blame] | 2711 | kvfree(wdata->pages); |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2712 | kfree(wdata); |
| 2713 | add_credits_and_wake_if(server, credits, 0); |
| 2714 | break; |
| 2715 | } |
| 2716 | |
| 2717 | /* |
| 2718 | * Bring nr_pages down to the number of pages we |
| 2719 | * actually used, and free any pages that we didn't use. |
| 2720 | */ |
| 2721 | for ( ; nr_pages > num_pages; nr_pages--) |
| 2722 | put_page(wdata->pages[nr_pages - 1]); |
| 2723 | |
| 2724 | wdata->tailsz = cur_len - ((nr_pages - 1) * PAGE_SIZE); |
| 2725 | } |
Jeff Layton | 5d81de8 | 2014-02-14 07:20:35 -0500 | [diff] [blame] | 2726 | |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2727 | wdata->sync_mode = WB_SYNC_ALL; |
| 2728 | wdata->nr_pages = nr_pages; |
| 2729 | wdata->offset = (__u64)offset; |
| 2730 | wdata->cfile = cifsFileInfo_get(open_file); |
| 2731 | wdata->pid = pid; |
| 2732 | wdata->bytes = cur_len; |
Jeff Layton | eddb079 | 2012-09-18 16:20:35 -0700 | [diff] [blame] | 2733 | wdata->pagesz = PAGE_SIZE; |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 2734 | wdata->credits = credits; |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2735 | wdata->ctx = ctx; |
| 2736 | kref_get(&ctx->refcount); |
Pavel Shilovsky | 6ec0b01 | 2014-06-20 16:30:46 +0400 | [diff] [blame] | 2737 | |
| 2738 | if (!wdata->cfile->invalidHandle || |
Germano Percossi | 1fa839b | 2017-04-07 12:29:38 +0100 | [diff] [blame] | 2739 | !(rc = cifs_reopen_file(wdata->cfile, false))) |
Pavel Shilovsky | 6ec0b01 | 2014-06-20 16:30:46 +0400 | [diff] [blame] | 2740 | rc = server->ops->async_writev(wdata, |
| 2741 | cifs_uncached_writedata_release); |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2742 | if (rc) { |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 2743 | add_credits_and_wake_if(server, wdata->credits, 0); |
Steve French | 4a5c80d | 2014-02-07 20:45:12 -0600 | [diff] [blame] | 2744 | kref_put(&wdata->refcount, |
| 2745 | cifs_uncached_writedata_release); |
Pavel Shilovsky | 6ec0b01 | 2014-06-20 16:30:46 +0400 | [diff] [blame] | 2746 | if (rc == -EAGAIN) { |
Al Viro | fc56b98 | 2016-09-21 18:18:23 -0400 | [diff] [blame] | 2747 | *from = saved_from; |
Pavel Shilovsky | 6ec0b01 | 2014-06-20 16:30:46 +0400 | [diff] [blame] | 2748 | iov_iter_advance(from, offset - saved_offset); |
| 2749 | continue; |
| 2750 | } |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2751 | break; |
| 2752 | } |
| 2753 | |
Pavel Shilovsky | 43de94e | 2014-06-20 16:10:52 +0400 | [diff] [blame] | 2754 | list_add_tail(&wdata->list, wdata_list); |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2755 | offset += cur_len; |
| 2756 | len -= cur_len; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2757 | } while (len > 0); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2758 | |
| 2759 | return rc; |
| 2760 | } |
| 2761 | |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2762 | static void collect_uncached_write_data(struct cifs_aio_ctx *ctx) |
| 2763 | { |
| 2764 | struct cifs_writedata *wdata, *tmp; |
| 2765 | struct cifs_tcon *tcon; |
| 2766 | struct cifs_sb_info *cifs_sb; |
| 2767 | struct dentry *dentry = ctx->cfile->dentry; |
| 2768 | unsigned int i; |
| 2769 | int rc; |
| 2770 | |
| 2771 | tcon = tlink_tcon(ctx->cfile->tlink); |
| 2772 | cifs_sb = CIFS_SB(dentry->d_sb); |
| 2773 | |
| 2774 | mutex_lock(&ctx->aio_mutex); |
| 2775 | |
| 2776 | if (list_empty(&ctx->list)) { |
| 2777 | mutex_unlock(&ctx->aio_mutex); |
| 2778 | return; |
| 2779 | } |
| 2780 | |
| 2781 | rc = ctx->rc; |
| 2782 | /* |
| 2783 | * Wait for and collect replies for any successful sends in order of |
| 2784 | * increasing offset. Once an error is hit, then return without waiting |
| 2785 | * for any more replies. |
| 2786 | */ |
| 2787 | restart_loop: |
| 2788 | list_for_each_entry_safe(wdata, tmp, &ctx->list, list) { |
| 2789 | if (!rc) { |
| 2790 | if (!try_wait_for_completion(&wdata->done)) { |
| 2791 | mutex_unlock(&ctx->aio_mutex); |
| 2792 | return; |
| 2793 | } |
| 2794 | |
| 2795 | if (wdata->result) |
| 2796 | rc = wdata->result; |
| 2797 | else |
| 2798 | ctx->total_len += wdata->bytes; |
| 2799 | |
| 2800 | /* resend call if it's a retryable error */ |
| 2801 | if (rc == -EAGAIN) { |
| 2802 | struct list_head tmp_list; |
| 2803 | struct iov_iter tmp_from = ctx->iter; |
| 2804 | |
| 2805 | INIT_LIST_HEAD(&tmp_list); |
| 2806 | list_del_init(&wdata->list); |
| 2807 | |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2808 | if (ctx->direct_io) |
| 2809 | rc = cifs_resend_wdata( |
| 2810 | wdata, &tmp_list, ctx); |
| 2811 | else { |
| 2812 | iov_iter_advance(&tmp_from, |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2813 | wdata->offset - ctx->pos); |
| 2814 | |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2815 | rc = cifs_write_from_iter(wdata->offset, |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2816 | wdata->bytes, &tmp_from, |
| 2817 | ctx->cfile, cifs_sb, &tmp_list, |
| 2818 | ctx); |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2819 | } |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2820 | |
| 2821 | list_splice(&tmp_list, &ctx->list); |
| 2822 | |
| 2823 | kref_put(&wdata->refcount, |
| 2824 | cifs_uncached_writedata_release); |
| 2825 | goto restart_loop; |
| 2826 | } |
| 2827 | } |
| 2828 | list_del_init(&wdata->list); |
| 2829 | kref_put(&wdata->refcount, cifs_uncached_writedata_release); |
| 2830 | } |
| 2831 | |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2832 | if (!ctx->direct_io) |
| 2833 | for (i = 0; i < ctx->npages; i++) |
| 2834 | put_page(ctx->bv[i].bv_page); |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2835 | |
| 2836 | cifs_stats_bytes_written(tcon, ctx->total_len); |
| 2837 | set_bit(CIFS_INO_INVALID_MAPPING, &CIFS_I(dentry->d_inode)->flags); |
| 2838 | |
| 2839 | ctx->rc = (rc == 0) ? ctx->total_len : rc; |
| 2840 | |
| 2841 | mutex_unlock(&ctx->aio_mutex); |
| 2842 | |
| 2843 | if (ctx->iocb && ctx->iocb->ki_complete) |
| 2844 | ctx->iocb->ki_complete(ctx->iocb, ctx->rc, 0); |
| 2845 | else |
| 2846 | complete(&ctx->done); |
| 2847 | } |
| 2848 | |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2849 | static ssize_t __cifs_writev( |
| 2850 | struct kiocb *iocb, struct iov_iter *from, bool direct) |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2851 | { |
Al Viro | e9d1593 | 2015-04-06 22:44:11 -0400 | [diff] [blame] | 2852 | struct file *file = iocb->ki_filp; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2853 | ssize_t total_written = 0; |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2854 | struct cifsFileInfo *cfile; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2855 | struct cifs_tcon *tcon; |
| 2856 | struct cifs_sb_info *cifs_sb; |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2857 | struct cifs_aio_ctx *ctx; |
Al Viro | fc56b98 | 2016-09-21 18:18:23 -0400 | [diff] [blame] | 2858 | struct iov_iter saved_from = *from; |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2859 | size_t len = iov_iter_count(from); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2860 | int rc; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2861 | |
Al Viro | e9d1593 | 2015-04-06 22:44:11 -0400 | [diff] [blame] | 2862 | /* |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2863 | * iov_iter_get_pages_alloc doesn't work with ITER_KVEC. |
| 2864 | * In this case, fall back to non-direct write function. |
| 2865 | * this could be improved by getting pages directly in ITER_KVEC |
Al Viro | e9d1593 | 2015-04-06 22:44:11 -0400 | [diff] [blame] | 2866 | */ |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2867 | if (direct && from->type & ITER_KVEC) { |
| 2868 | cifs_dbg(FYI, "use non-direct cifs_writev for kvec I/O\n"); |
| 2869 | direct = false; |
| 2870 | } |
Al Viro | e9d1593 | 2015-04-06 22:44:11 -0400 | [diff] [blame] | 2871 | |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2872 | rc = generic_write_checks(iocb, from); |
| 2873 | if (rc <= 0) |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2874 | return rc; |
| 2875 | |
Al Viro | 7119e22 | 2014-10-22 00:25:12 -0400 | [diff] [blame] | 2876 | cifs_sb = CIFS_FILE_SB(file); |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2877 | cfile = file->private_data; |
| 2878 | tcon = tlink_tcon(cfile->tlink); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2879 | |
| 2880 | if (!tcon->ses->server->ops->async_writev) |
| 2881 | return -ENOSYS; |
| 2882 | |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2883 | ctx = cifs_aio_ctx_alloc(); |
| 2884 | if (!ctx) |
| 2885 | return -ENOMEM; |
| 2886 | |
| 2887 | ctx->cfile = cifsFileInfo_get(cfile); |
| 2888 | |
| 2889 | if (!is_sync_kiocb(iocb)) |
| 2890 | ctx->iocb = iocb; |
| 2891 | |
| 2892 | ctx->pos = iocb->ki_pos; |
| 2893 | |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2894 | if (direct) { |
| 2895 | ctx->direct_io = true; |
| 2896 | ctx->iter = *from; |
| 2897 | ctx->len = len; |
| 2898 | } else { |
| 2899 | rc = setup_aio_ctx_iter(ctx, from, WRITE); |
| 2900 | if (rc) { |
| 2901 | kref_put(&ctx->refcount, cifs_aio_ctx_release); |
| 2902 | return rc; |
| 2903 | } |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2904 | } |
| 2905 | |
| 2906 | /* grab a lock here due to read response handlers can access ctx */ |
| 2907 | mutex_lock(&ctx->aio_mutex); |
| 2908 | |
| 2909 | rc = cifs_write_from_iter(iocb->ki_pos, ctx->len, &saved_from, |
| 2910 | cfile, cifs_sb, &ctx->list, ctx); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2911 | |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2912 | /* |
| 2913 | * If at least one write was successfully sent, then discard any rc |
| 2914 | * value from the later writes. If the other write succeeds, then |
| 2915 | * we'll end up returning whatever was written. If it fails, then |
| 2916 | * we'll get a new rc value from that. |
| 2917 | */ |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2918 | if (!list_empty(&ctx->list)) |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2919 | rc = 0; |
| 2920 | |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2921 | mutex_unlock(&ctx->aio_mutex); |
Jeff Layton | da82f7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2922 | |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2923 | if (rc) { |
| 2924 | kref_put(&ctx->refcount, cifs_aio_ctx_release); |
| 2925 | return rc; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2926 | } |
| 2927 | |
Pavel Shilovsky | c610c4b | 2017-04-25 11:52:31 -0700 | [diff] [blame] | 2928 | if (!is_sync_kiocb(iocb)) { |
| 2929 | kref_put(&ctx->refcount, cifs_aio_ctx_release); |
| 2930 | return -EIOCBQUEUED; |
| 2931 | } |
| 2932 | |
| 2933 | rc = wait_for_completion_killable(&ctx->done); |
| 2934 | if (rc) { |
| 2935 | mutex_lock(&ctx->aio_mutex); |
| 2936 | ctx->rc = rc = -EINTR; |
| 2937 | total_written = ctx->total_len; |
| 2938 | mutex_unlock(&ctx->aio_mutex); |
| 2939 | } else { |
| 2940 | rc = ctx->rc; |
| 2941 | total_written = ctx->total_len; |
| 2942 | } |
| 2943 | |
| 2944 | kref_put(&ctx->refcount, cifs_aio_ctx_release); |
| 2945 | |
Al Viro | e9d1593 | 2015-04-06 22:44:11 -0400 | [diff] [blame] | 2946 | if (unlikely(!total_written)) |
| 2947 | return rc; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2948 | |
Al Viro | e9d1593 | 2015-04-06 22:44:11 -0400 | [diff] [blame] | 2949 | iocb->ki_pos += total_written; |
Al Viro | e9d1593 | 2015-04-06 22:44:11 -0400 | [diff] [blame] | 2950 | return total_written; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2951 | } |
| 2952 | |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 2953 | ssize_t cifs_direct_writev(struct kiocb *iocb, struct iov_iter *from) |
| 2954 | { |
| 2955 | return __cifs_writev(iocb, from, true); |
| 2956 | } |
| 2957 | |
| 2958 | ssize_t cifs_user_writev(struct kiocb *iocb, struct iov_iter *from) |
| 2959 | { |
| 2960 | return __cifs_writev(iocb, from, false); |
| 2961 | } |
| 2962 | |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 2963 | static ssize_t |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 2964 | cifs_writev(struct kiocb *iocb, struct iov_iter *from) |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2965 | { |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 2966 | struct file *file = iocb->ki_filp; |
| 2967 | struct cifsFileInfo *cfile = (struct cifsFileInfo *)file->private_data; |
| 2968 | struct inode *inode = file->f_mapping->host; |
| 2969 | struct cifsInodeInfo *cinode = CIFS_I(inode); |
| 2970 | struct TCP_Server_Info *server = tlink_tcon(cfile->tlink)->ses->server; |
Al Viro | 5f380c7 | 2015-04-07 11:28:12 -0400 | [diff] [blame] | 2971 | ssize_t rc; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 2972 | |
Rabin Vincent | 966681c | 2017-06-29 16:01:42 +0200 | [diff] [blame] | 2973 | inode_lock(inode); |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 2974 | /* |
| 2975 | * We need to hold the sem to be sure nobody modifies lock list |
| 2976 | * with a brlock that prevents writing. |
| 2977 | */ |
| 2978 | down_read(&cinode->lock_sem); |
Al Viro | 5f380c7 | 2015-04-07 11:28:12 -0400 | [diff] [blame] | 2979 | |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2980 | rc = generic_write_checks(iocb, from); |
| 2981 | if (rc <= 0) |
Al Viro | 5f380c7 | 2015-04-07 11:28:12 -0400 | [diff] [blame] | 2982 | goto out; |
| 2983 | |
Al Viro | 5f380c7 | 2015-04-07 11:28:12 -0400 | [diff] [blame] | 2984 | if (!cifs_find_lock_conflict(cfile, iocb->ki_pos, iov_iter_count(from), |
Ronnie Sahlberg | 9645759 | 2018-10-04 09:24:38 +1000 | [diff] [blame] | 2985 | server->vals->exclusive_lock_type, 0, |
| 2986 | NULL, CIFS_WRITE_OP)) |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 2987 | rc = __generic_file_write_iter(iocb, from); |
Al Viro | 5f380c7 | 2015-04-07 11:28:12 -0400 | [diff] [blame] | 2988 | else |
| 2989 | rc = -EACCES; |
| 2990 | out: |
Rabin Vincent | 966681c | 2017-06-29 16:01:42 +0200 | [diff] [blame] | 2991 | up_read(&cinode->lock_sem); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2992 | inode_unlock(inode); |
Al Viro | 19dfc1f | 2014-04-03 10:27:17 -0400 | [diff] [blame] | 2993 | |
Christoph Hellwig | e259221 | 2016-04-07 08:52:01 -0700 | [diff] [blame] | 2994 | if (rc > 0) |
| 2995 | rc = generic_write_sync(iocb, rc); |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 2996 | return rc; |
| 2997 | } |
| 2998 | |
| 2999 | ssize_t |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 3000 | cifs_strict_writev(struct kiocb *iocb, struct iov_iter *from) |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 3001 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 3002 | struct inode *inode = file_inode(iocb->ki_filp); |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 3003 | struct cifsInodeInfo *cinode = CIFS_I(inode); |
| 3004 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 3005 | struct cifsFileInfo *cfile = (struct cifsFileInfo *) |
| 3006 | iocb->ki_filp->private_data; |
| 3007 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
Pavel Shilovsky | 88cf75a | 2012-12-21 15:07:52 +0400 | [diff] [blame] | 3008 | ssize_t written; |
Pavel Shilovsky | ca8aa29 | 2012-12-21 15:05:47 +0400 | [diff] [blame] | 3009 | |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 3010 | written = cifs_get_writer(cinode); |
| 3011 | if (written) |
| 3012 | return written; |
| 3013 | |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 3014 | if (CIFS_CACHE_WRITE(cinode)) { |
Pavel Shilovsky | 88cf75a | 2012-12-21 15:07:52 +0400 | [diff] [blame] | 3015 | if (cap_unix(tcon->ses) && |
| 3016 | (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 3017 | && ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0)) { |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 3018 | written = generic_file_write_iter(iocb, from); |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 3019 | goto out; |
| 3020 | } |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 3021 | written = cifs_writev(iocb, from); |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 3022 | goto out; |
Pavel Shilovsky | c299dd0 | 2012-12-06 22:07:52 +0400 | [diff] [blame] | 3023 | } |
Pavel Shilovsky | ca8aa29 | 2012-12-21 15:05:47 +0400 | [diff] [blame] | 3024 | /* |
| 3025 | * For non-oplocked files in strict cache mode we need to write the data |
| 3026 | * to the server exactly from the pos to pos+len-1 rather than flush all |
| 3027 | * affected pages because it may cause a error with mandatory locks on |
| 3028 | * these pages but not on the region from pos to ppos+len-1. |
| 3029 | */ |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 3030 | written = cifs_user_writev(iocb, from); |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 3031 | if (written > 0 && CIFS_CACHE_READ(cinode)) { |
Pavel Shilovsky | 88cf75a | 2012-12-21 15:07:52 +0400 | [diff] [blame] | 3032 | /* |
| 3033 | * Windows 7 server can delay breaking level2 oplock if a write |
| 3034 | * request comes - break it on the client to prevent reading |
| 3035 | * an old data. |
| 3036 | */ |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 3037 | cifs_zap_mapping(inode); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3038 | cifs_dbg(FYI, "Set no oplock for inode=%p after a write operation\n", |
| 3039 | inode); |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 3040 | cinode->oplock = 0; |
Pavel Shilovsky | 88cf75a | 2012-12-21 15:07:52 +0400 | [diff] [blame] | 3041 | } |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 3042 | out: |
| 3043 | cifs_put_writer(cinode); |
Pavel Shilovsky | 88cf75a | 2012-12-21 15:07:52 +0400 | [diff] [blame] | 3044 | return written; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 3045 | } |
| 3046 | |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3047 | static struct cifs_readdata * |
Long Li | f9f5aca | 2018-05-30 12:47:54 -0700 | [diff] [blame] | 3048 | cifs_readdata_direct_alloc(struct page **pages, work_func_t complete) |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3049 | { |
| 3050 | struct cifs_readdata *rdata; |
Jeff Layton | f4e49cd | 2012-09-18 16:20:36 -0700 | [diff] [blame] | 3051 | |
Long Li | f9f5aca | 2018-05-30 12:47:54 -0700 | [diff] [blame] | 3052 | rdata = kzalloc(sizeof(*rdata), GFP_KERNEL); |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3053 | if (rdata != NULL) { |
Long Li | f9f5aca | 2018-05-30 12:47:54 -0700 | [diff] [blame] | 3054 | rdata->pages = pages; |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3055 | kref_init(&rdata->refcount); |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3056 | INIT_LIST_HEAD(&rdata->list); |
| 3057 | init_completion(&rdata->done); |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3058 | INIT_WORK(&rdata->work, complete); |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3059 | } |
Jeff Layton | f4e49cd | 2012-09-18 16:20:36 -0700 | [diff] [blame] | 3060 | |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3061 | return rdata; |
| 3062 | } |
| 3063 | |
Long Li | f9f5aca | 2018-05-30 12:47:54 -0700 | [diff] [blame] | 3064 | static struct cifs_readdata * |
| 3065 | cifs_readdata_alloc(unsigned int nr_pages, work_func_t complete) |
| 3066 | { |
| 3067 | struct page **pages = |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 3068 | kcalloc(nr_pages, sizeof(struct page *), GFP_KERNEL); |
Long Li | f9f5aca | 2018-05-30 12:47:54 -0700 | [diff] [blame] | 3069 | struct cifs_readdata *ret = NULL; |
| 3070 | |
| 3071 | if (pages) { |
| 3072 | ret = cifs_readdata_direct_alloc(pages, complete); |
| 3073 | if (!ret) |
| 3074 | kfree(pages); |
| 3075 | } |
| 3076 | |
| 3077 | return ret; |
| 3078 | } |
| 3079 | |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3080 | void |
| 3081 | cifs_readdata_release(struct kref *refcount) |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3082 | { |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3083 | struct cifs_readdata *rdata = container_of(refcount, |
| 3084 | struct cifs_readdata, refcount); |
Long Li | bd3dcc6 | 2017-11-22 17:38:47 -0700 | [diff] [blame] | 3085 | #ifdef CONFIG_CIFS_SMB_DIRECT |
| 3086 | if (rdata->mr) { |
| 3087 | smbd_deregister_mr(rdata->mr); |
| 3088 | rdata->mr = NULL; |
| 3089 | } |
| 3090 | #endif |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3091 | if (rdata->cfile) |
| 3092 | cifsFileInfo_put(rdata->cfile); |
| 3093 | |
Long Li | f9f5aca | 2018-05-30 12:47:54 -0700 | [diff] [blame] | 3094 | kvfree(rdata->pages); |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3095 | kfree(rdata); |
| 3096 | } |
| 3097 | |
Jeff Layton | 2a1bb13 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3098 | static int |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3099 | cifs_read_allocate_pages(struct cifs_readdata *rdata, unsigned int nr_pages) |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3100 | { |
| 3101 | int rc = 0; |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3102 | struct page *page; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3103 | unsigned int i; |
| 3104 | |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3105 | for (i = 0; i < nr_pages; i++) { |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3106 | page = alloc_page(GFP_KERNEL|__GFP_HIGHMEM); |
| 3107 | if (!page) { |
| 3108 | rc = -ENOMEM; |
| 3109 | break; |
| 3110 | } |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3111 | rdata->pages[i] = page; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3112 | } |
| 3113 | |
| 3114 | if (rc) { |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3115 | for (i = 0; i < nr_pages; i++) { |
| 3116 | put_page(rdata->pages[i]); |
| 3117 | rdata->pages[i] = NULL; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3118 | } |
| 3119 | } |
| 3120 | return rc; |
| 3121 | } |
| 3122 | |
| 3123 | static void |
| 3124 | cifs_uncached_readdata_release(struct kref *refcount) |
| 3125 | { |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3126 | struct cifs_readdata *rdata = container_of(refcount, |
| 3127 | struct cifs_readdata, refcount); |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3128 | unsigned int i; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3129 | |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3130 | kref_put(&rdata->ctx->refcount, cifs_aio_ctx_release); |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3131 | for (i = 0; i < rdata->nr_pages; i++) { |
| 3132 | put_page(rdata->pages[i]); |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3133 | } |
| 3134 | cifs_readdata_release(refcount); |
| 3135 | } |
| 3136 | |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3137 | /** |
| 3138 | * cifs_readdata_to_iov - copy data from pages in response to an iovec |
| 3139 | * @rdata: the readdata response with list of pages holding data |
Al Viro | 7f25bba | 2014-02-04 14:07:43 -0500 | [diff] [blame] | 3140 | * @iter: destination for our data |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3141 | * |
| 3142 | * This function copies data from a list of pages in a readdata response into |
| 3143 | * an array of iovecs. It will first calculate where the data should go |
| 3144 | * based on the info in the readdata and then copy the data into that spot. |
| 3145 | */ |
Al Viro | 7f25bba | 2014-02-04 14:07:43 -0500 | [diff] [blame] | 3146 | static int |
| 3147 | cifs_readdata_to_iov(struct cifs_readdata *rdata, struct iov_iter *iter) |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3148 | { |
Pavel Shilovsky | 34a54d6 | 2014-07-10 10:03:29 +0400 | [diff] [blame] | 3149 | size_t remaining = rdata->got_bytes; |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3150 | unsigned int i; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3151 | |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3152 | for (i = 0; i < rdata->nr_pages; i++) { |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3153 | struct page *page = rdata->pages[i]; |
Geert Uytterhoeven | e686bd8 | 2014-04-13 20:46:21 +0200 | [diff] [blame] | 3154 | size_t copy = min_t(size_t, remaining, PAGE_SIZE); |
Pavel Shilovsky | 9c25702 | 2017-01-19 13:53:15 -0800 | [diff] [blame] | 3155 | size_t written; |
| 3156 | |
David Howells | 00e2370 | 2018-10-22 13:07:28 +0100 | [diff] [blame] | 3157 | if (unlikely(iov_iter_is_pipe(iter))) { |
Pavel Shilovsky | 9c25702 | 2017-01-19 13:53:15 -0800 | [diff] [blame] | 3158 | void *addr = kmap_atomic(page); |
| 3159 | |
| 3160 | written = copy_to_iter(addr, copy, iter); |
| 3161 | kunmap_atomic(addr); |
| 3162 | } else |
| 3163 | written = copy_page_to_iter(page, 0, copy, iter); |
Al Viro | 7f25bba | 2014-02-04 14:07:43 -0500 | [diff] [blame] | 3164 | remaining -= written; |
| 3165 | if (written < copy && iov_iter_count(iter) > 0) |
| 3166 | break; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3167 | } |
Al Viro | 7f25bba | 2014-02-04 14:07:43 -0500 | [diff] [blame] | 3168 | return remaining ? -EFAULT : 0; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3169 | } |
| 3170 | |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3171 | static void collect_uncached_read_data(struct cifs_aio_ctx *ctx); |
| 3172 | |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3173 | static void |
| 3174 | cifs_uncached_readv_complete(struct work_struct *work) |
| 3175 | { |
| 3176 | struct cifs_readdata *rdata = container_of(work, |
| 3177 | struct cifs_readdata, work); |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3178 | |
| 3179 | complete(&rdata->done); |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3180 | collect_uncached_read_data(rdata->ctx); |
| 3181 | /* the below call can possibly free the last ref to aio ctx */ |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3182 | kref_put(&rdata->refcount, cifs_uncached_readdata_release); |
| 3183 | } |
| 3184 | |
| 3185 | static int |
Pavel Shilovsky | d70b910 | 2016-11-17 16:20:18 -0800 | [diff] [blame] | 3186 | uncached_fill_pages(struct TCP_Server_Info *server, |
| 3187 | struct cifs_readdata *rdata, struct iov_iter *iter, |
| 3188 | unsigned int len) |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3189 | { |
Pavel Shilovsky | b3160ae | 2014-07-10 10:16:25 +0400 | [diff] [blame] | 3190 | int result = 0; |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3191 | unsigned int i; |
| 3192 | unsigned int nr_pages = rdata->nr_pages; |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3193 | unsigned int page_offset = rdata->page_offset; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3194 | |
Pavel Shilovsky | b3160ae | 2014-07-10 10:16:25 +0400 | [diff] [blame] | 3195 | rdata->got_bytes = 0; |
Jeff Layton | 8321fec | 2012-09-19 06:22:32 -0700 | [diff] [blame] | 3196 | rdata->tailsz = PAGE_SIZE; |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3197 | for (i = 0; i < nr_pages; i++) { |
| 3198 | struct page *page = rdata->pages[i]; |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 3199 | size_t n; |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3200 | unsigned int segment_size = rdata->pagesz; |
| 3201 | |
| 3202 | if (i == 0) |
| 3203 | segment_size -= page_offset; |
| 3204 | else |
| 3205 | page_offset = 0; |
| 3206 | |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3207 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 3208 | if (len <= 0) { |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3209 | /* no need to hold page hostage */ |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3210 | rdata->pages[i] = NULL; |
| 3211 | rdata->nr_pages--; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3212 | put_page(page); |
Jeff Layton | 8321fec | 2012-09-19 06:22:32 -0700 | [diff] [blame] | 3213 | continue; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3214 | } |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3215 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 3216 | n = len; |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3217 | if (len >= segment_size) |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 3218 | /* enough data to fill the page */ |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3219 | n = segment_size; |
| 3220 | else |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 3221 | rdata->tailsz = len; |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3222 | len -= n; |
| 3223 | |
Pavel Shilovsky | d70b910 | 2016-11-17 16:20:18 -0800 | [diff] [blame] | 3224 | if (iter) |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3225 | result = copy_page_from_iter( |
| 3226 | page, page_offset, n, iter); |
Long Li | bd3dcc6 | 2017-11-22 17:38:47 -0700 | [diff] [blame] | 3227 | #ifdef CONFIG_CIFS_SMB_DIRECT |
| 3228 | else if (rdata->mr) |
| 3229 | result = n; |
| 3230 | #endif |
Pavel Shilovsky | d70b910 | 2016-11-17 16:20:18 -0800 | [diff] [blame] | 3231 | else |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3232 | result = cifs_read_page_from_socket( |
| 3233 | server, page, page_offset, n); |
Jeff Layton | 8321fec | 2012-09-19 06:22:32 -0700 | [diff] [blame] | 3234 | if (result < 0) |
| 3235 | break; |
| 3236 | |
Pavel Shilovsky | b3160ae | 2014-07-10 10:16:25 +0400 | [diff] [blame] | 3237 | rdata->got_bytes += result; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3238 | } |
| 3239 | |
Pavel Shilovsky | b3160ae | 2014-07-10 10:16:25 +0400 | [diff] [blame] | 3240 | return rdata->got_bytes > 0 && result != -ECONNABORTED ? |
| 3241 | rdata->got_bytes : result; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3242 | } |
| 3243 | |
Pavel Shilovsky | 0ada36b | 2014-06-25 10:42:28 +0400 | [diff] [blame] | 3244 | static int |
Pavel Shilovsky | d70b910 | 2016-11-17 16:20:18 -0800 | [diff] [blame] | 3245 | cifs_uncached_read_into_pages(struct TCP_Server_Info *server, |
| 3246 | struct cifs_readdata *rdata, unsigned int len) |
| 3247 | { |
| 3248 | return uncached_fill_pages(server, rdata, NULL, len); |
| 3249 | } |
| 3250 | |
| 3251 | static int |
| 3252 | cifs_uncached_copy_into_pages(struct TCP_Server_Info *server, |
| 3253 | struct cifs_readdata *rdata, |
| 3254 | struct iov_iter *iter) |
| 3255 | { |
| 3256 | return uncached_fill_pages(server, rdata, iter, iter->count); |
| 3257 | } |
| 3258 | |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3259 | static int cifs_resend_rdata(struct cifs_readdata *rdata, |
| 3260 | struct list_head *rdata_list, |
| 3261 | struct cifs_aio_ctx *ctx) |
| 3262 | { |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3263 | unsigned int rsize, credits; |
| 3264 | int rc; |
| 3265 | struct TCP_Server_Info *server = |
| 3266 | tlink_tcon(rdata->cfile->tlink)->ses->server; |
| 3267 | |
| 3268 | /* |
Long Li | 6ac7929 | 2018-12-06 04:51:06 +0000 | [diff] [blame] | 3269 | * Wait for credits to resend this rdata. |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3270 | * Note: we are attempting to resend the whole rdata not in segments |
| 3271 | */ |
| 3272 | do { |
| 3273 | rc = server->ops->wait_mtu_credits(server, rdata->bytes, |
| 3274 | &rsize, &credits); |
| 3275 | |
| 3276 | if (rc) |
Long Li | 6ac7929 | 2018-12-06 04:51:06 +0000 | [diff] [blame] | 3277 | goto out; |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3278 | |
| 3279 | if (rsize < rdata->bytes) { |
| 3280 | add_credits_and_wake_if(server, credits, 0); |
| 3281 | msleep(1000); |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3282 | } |
Long Li | 6ac7929 | 2018-12-06 04:51:06 +0000 | [diff] [blame] | 3283 | } while (rsize < rdata->bytes); |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3284 | |
| 3285 | rc = -EAGAIN; |
| 3286 | while (rc == -EAGAIN) { |
| 3287 | rc = 0; |
| 3288 | if (rdata->cfile->invalidHandle) |
| 3289 | rc = cifs_reopen_file(rdata->cfile, true); |
| 3290 | if (!rc) |
| 3291 | rc = server->ops->async_readv(rdata); |
| 3292 | } |
| 3293 | |
| 3294 | if (!rc) { |
| 3295 | /* Add to aio pending list */ |
| 3296 | list_add_tail(&rdata->list, rdata_list); |
| 3297 | return 0; |
| 3298 | } |
| 3299 | |
| 3300 | add_credits_and_wake_if(server, rdata->credits, 0); |
| 3301 | out: |
| 3302 | kref_put(&rdata->refcount, |
| 3303 | cifs_uncached_readdata_release); |
| 3304 | |
| 3305 | return rc; |
| 3306 | } |
| 3307 | |
Pavel Shilovsky | d70b910 | 2016-11-17 16:20:18 -0800 | [diff] [blame] | 3308 | static int |
Pavel Shilovsky | 0ada36b | 2014-06-25 10:42:28 +0400 | [diff] [blame] | 3309 | cifs_send_async_read(loff_t offset, size_t len, struct cifsFileInfo *open_file, |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3310 | struct cifs_sb_info *cifs_sb, struct list_head *rdata_list, |
| 3311 | struct cifs_aio_ctx *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3312 | { |
Pavel Shilovsky | 0ada36b | 2014-06-25 10:42:28 +0400 | [diff] [blame] | 3313 | struct cifs_readdata *rdata; |
Pavel Shilovsky | bed9da0 | 2014-06-25 11:28:57 +0400 | [diff] [blame] | 3314 | unsigned int npages, rsize, credits; |
Pavel Shilovsky | 0ada36b | 2014-06-25 10:42:28 +0400 | [diff] [blame] | 3315 | size_t cur_len; |
| 3316 | int rc; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3317 | pid_t pid; |
Pavel Shilovsky | 25f4025 | 2014-06-25 10:45:07 +0400 | [diff] [blame] | 3318 | struct TCP_Server_Info *server; |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3319 | struct page **pagevec; |
| 3320 | size_t start; |
| 3321 | struct iov_iter direct_iov = ctx->iter; |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 3322 | |
Pavel Shilovsky | 25f4025 | 2014-06-25 10:45:07 +0400 | [diff] [blame] | 3323 | server = tlink_tcon(open_file->tlink)->ses->server; |
Pavel Shilovsky | fc9c596 | 2012-09-18 16:20:28 -0700 | [diff] [blame] | 3324 | |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 3325 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD) |
| 3326 | pid = open_file->pid; |
| 3327 | else |
| 3328 | pid = current->tgid; |
| 3329 | |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3330 | if (ctx->direct_io) |
| 3331 | iov_iter_advance(&direct_iov, offset - ctx->pos); |
| 3332 | |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3333 | do { |
Pavel Shilovsky | bed9da0 | 2014-06-25 11:28:57 +0400 | [diff] [blame] | 3334 | rc = server->ops->wait_mtu_credits(server, cifs_sb->rsize, |
| 3335 | &rsize, &credits); |
| 3336 | if (rc) |
| 3337 | break; |
| 3338 | |
| 3339 | cur_len = min_t(const size_t, len, rsize); |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 3340 | |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3341 | if (ctx->direct_io) { |
Steve French | b98e26d | 2018-11-01 10:54:32 -0500 | [diff] [blame] | 3342 | ssize_t result; |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3343 | |
Steve French | b98e26d | 2018-11-01 10:54:32 -0500 | [diff] [blame] | 3344 | result = iov_iter_get_pages_alloc( |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3345 | &direct_iov, &pagevec, |
| 3346 | cur_len, &start); |
Steve French | b98e26d | 2018-11-01 10:54:32 -0500 | [diff] [blame] | 3347 | if (result < 0) { |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3348 | cifs_dbg(VFS, |
Long Li | 54e94ff | 2018-12-16 22:41:07 +0000 | [diff] [blame] | 3349 | "couldn't get user pages (rc=%zd)" |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3350 | " iter type %d" |
| 3351 | " iov_offset %zd count %zd\n", |
Steve French | b98e26d | 2018-11-01 10:54:32 -0500 | [diff] [blame] | 3352 | result, direct_iov.type, |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3353 | direct_iov.iov_offset, |
| 3354 | direct_iov.count); |
| 3355 | dump_stack(); |
Long Li | 54e94ff | 2018-12-16 22:41:07 +0000 | [diff] [blame] | 3356 | |
| 3357 | rc = result; |
| 3358 | add_credits_and_wake_if(server, credits, 0); |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3359 | break; |
| 3360 | } |
Steve French | b98e26d | 2018-11-01 10:54:32 -0500 | [diff] [blame] | 3361 | cur_len = (size_t)result; |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3362 | iov_iter_advance(&direct_iov, cur_len); |
| 3363 | |
| 3364 | rdata = cifs_readdata_direct_alloc( |
| 3365 | pagevec, cifs_uncached_readv_complete); |
| 3366 | if (!rdata) { |
| 3367 | add_credits_and_wake_if(server, credits, 0); |
| 3368 | rc = -ENOMEM; |
| 3369 | break; |
| 3370 | } |
| 3371 | |
| 3372 | npages = (cur_len + start + PAGE_SIZE-1) / PAGE_SIZE; |
| 3373 | rdata->page_offset = start; |
| 3374 | rdata->tailsz = npages > 1 ? |
| 3375 | cur_len-(PAGE_SIZE-start)-(npages-2)*PAGE_SIZE : |
| 3376 | cur_len; |
| 3377 | |
| 3378 | } else { |
| 3379 | |
| 3380 | npages = DIV_ROUND_UP(cur_len, PAGE_SIZE); |
| 3381 | /* allocate a readdata struct */ |
| 3382 | rdata = cifs_readdata_alloc(npages, |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3383 | cifs_uncached_readv_complete); |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3384 | if (!rdata) { |
| 3385 | add_credits_and_wake_if(server, credits, 0); |
| 3386 | rc = -ENOMEM; |
| 3387 | break; |
| 3388 | } |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 3389 | |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3390 | rc = cifs_read_allocate_pages(rdata, npages); |
Pavel Shilovsky | 9bda872 | 2019-01-23 17:12:09 -0800 | [diff] [blame] | 3391 | if (rc) { |
| 3392 | kvfree(rdata->pages); |
| 3393 | kfree(rdata); |
| 3394 | add_credits_and_wake_if(server, credits, 0); |
| 3395 | break; |
| 3396 | } |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3397 | |
| 3398 | rdata->tailsz = PAGE_SIZE; |
| 3399 | } |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3400 | |
| 3401 | rdata->cfile = cifsFileInfo_get(open_file); |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3402 | rdata->nr_pages = npages; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3403 | rdata->offset = offset; |
| 3404 | rdata->bytes = cur_len; |
| 3405 | rdata->pid = pid; |
Jeff Layton | 8321fec | 2012-09-19 06:22:32 -0700 | [diff] [blame] | 3406 | rdata->pagesz = PAGE_SIZE; |
| 3407 | rdata->read_into_pages = cifs_uncached_read_into_pages; |
Pavel Shilovsky | d70b910 | 2016-11-17 16:20:18 -0800 | [diff] [blame] | 3408 | rdata->copy_into_pages = cifs_uncached_copy_into_pages; |
Pavel Shilovsky | bed9da0 | 2014-06-25 11:28:57 +0400 | [diff] [blame] | 3409 | rdata->credits = credits; |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3410 | rdata->ctx = ctx; |
| 3411 | kref_get(&ctx->refcount); |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3412 | |
Pavel Shilovsky | 25f4025 | 2014-06-25 10:45:07 +0400 | [diff] [blame] | 3413 | if (!rdata->cfile->invalidHandle || |
Germano Percossi | 1fa839b | 2017-04-07 12:29:38 +0100 | [diff] [blame] | 3414 | !(rc = cifs_reopen_file(rdata->cfile, true))) |
Pavel Shilovsky | 25f4025 | 2014-06-25 10:45:07 +0400 | [diff] [blame] | 3415 | rc = server->ops->async_readv(rdata); |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3416 | if (rc) { |
Pavel Shilovsky | bed9da0 | 2014-06-25 11:28:57 +0400 | [diff] [blame] | 3417 | add_credits_and_wake_if(server, rdata->credits, 0); |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3418 | kref_put(&rdata->refcount, |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3419 | cifs_uncached_readdata_release); |
| 3420 | if (rc == -EAGAIN) { |
| 3421 | iov_iter_revert(&direct_iov, cur_len); |
Pavel Shilovsky | 25f4025 | 2014-06-25 10:45:07 +0400 | [diff] [blame] | 3422 | continue; |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3423 | } |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3424 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3425 | } |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3426 | |
Pavel Shilovsky | 0ada36b | 2014-06-25 10:42:28 +0400 | [diff] [blame] | 3427 | list_add_tail(&rdata->list, rdata_list); |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3428 | offset += cur_len; |
| 3429 | len -= cur_len; |
| 3430 | } while (len > 0); |
| 3431 | |
Pavel Shilovsky | 0ada36b | 2014-06-25 10:42:28 +0400 | [diff] [blame] | 3432 | return rc; |
| 3433 | } |
| 3434 | |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3435 | static void |
| 3436 | collect_uncached_read_data(struct cifs_aio_ctx *ctx) |
Pavel Shilovsky | 0ada36b | 2014-06-25 10:42:28 +0400 | [diff] [blame] | 3437 | { |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3438 | struct cifs_readdata *rdata, *tmp; |
| 3439 | struct iov_iter *to = &ctx->iter; |
Pavel Shilovsky | 0ada36b | 2014-06-25 10:42:28 +0400 | [diff] [blame] | 3440 | struct cifs_sb_info *cifs_sb; |
| 3441 | struct cifs_tcon *tcon; |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3442 | unsigned int i; |
| 3443 | int rc; |
Pavel Shilovsky | 0ada36b | 2014-06-25 10:42:28 +0400 | [diff] [blame] | 3444 | |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3445 | tcon = tlink_tcon(ctx->cfile->tlink); |
| 3446 | cifs_sb = CIFS_SB(ctx->cfile->dentry->d_sb); |
Pavel Shilovsky | 0ada36b | 2014-06-25 10:42:28 +0400 | [diff] [blame] | 3447 | |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3448 | mutex_lock(&ctx->aio_mutex); |
Pavel Shilovsky | 0ada36b | 2014-06-25 10:42:28 +0400 | [diff] [blame] | 3449 | |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3450 | if (list_empty(&ctx->list)) { |
| 3451 | mutex_unlock(&ctx->aio_mutex); |
| 3452 | return; |
| 3453 | } |
Pavel Shilovsky | 0ada36b | 2014-06-25 10:42:28 +0400 | [diff] [blame] | 3454 | |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3455 | rc = ctx->rc; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3456 | /* the loop below should proceed in the order of increasing offsets */ |
Pavel Shilovsky | 25f4025 | 2014-06-25 10:45:07 +0400 | [diff] [blame] | 3457 | again: |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3458 | list_for_each_entry_safe(rdata, tmp, &ctx->list, list) { |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3459 | if (!rc) { |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3460 | if (!try_wait_for_completion(&rdata->done)) { |
| 3461 | mutex_unlock(&ctx->aio_mutex); |
| 3462 | return; |
| 3463 | } |
| 3464 | |
| 3465 | if (rdata->result == -EAGAIN) { |
Al Viro | 74027f4 | 2014-02-04 13:47:26 -0500 | [diff] [blame] | 3466 | /* resend call if it's a retryable error */ |
Pavel Shilovsky | fb8a3e5 | 2014-07-10 11:50:39 +0400 | [diff] [blame] | 3467 | struct list_head tmp_list; |
Pavel Shilovsky | d913ed1 | 2014-07-10 11:31:48 +0400 | [diff] [blame] | 3468 | unsigned int got_bytes = rdata->got_bytes; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3469 | |
Pavel Shilovsky | fb8a3e5 | 2014-07-10 11:50:39 +0400 | [diff] [blame] | 3470 | list_del_init(&rdata->list); |
| 3471 | INIT_LIST_HEAD(&tmp_list); |
Pavel Shilovsky | 25f4025 | 2014-06-25 10:45:07 +0400 | [diff] [blame] | 3472 | |
Pavel Shilovsky | d913ed1 | 2014-07-10 11:31:48 +0400 | [diff] [blame] | 3473 | /* |
| 3474 | * Got a part of data and then reconnect has |
| 3475 | * happened -- fill the buffer and continue |
| 3476 | * reading. |
| 3477 | */ |
| 3478 | if (got_bytes && got_bytes < rdata->bytes) { |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3479 | rc = 0; |
| 3480 | if (!ctx->direct_io) |
| 3481 | rc = cifs_readdata_to_iov(rdata, to); |
Pavel Shilovsky | d913ed1 | 2014-07-10 11:31:48 +0400 | [diff] [blame] | 3482 | if (rc) { |
| 3483 | kref_put(&rdata->refcount, |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3484 | cifs_uncached_readdata_release); |
Pavel Shilovsky | d913ed1 | 2014-07-10 11:31:48 +0400 | [diff] [blame] | 3485 | continue; |
| 3486 | } |
| 3487 | } |
| 3488 | |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3489 | if (ctx->direct_io) { |
| 3490 | /* |
| 3491 | * Re-use rdata as this is a |
| 3492 | * direct I/O |
| 3493 | */ |
| 3494 | rc = cifs_resend_rdata( |
| 3495 | rdata, |
| 3496 | &tmp_list, ctx); |
| 3497 | } else { |
| 3498 | rc = cifs_send_async_read( |
Pavel Shilovsky | d913ed1 | 2014-07-10 11:31:48 +0400 | [diff] [blame] | 3499 | rdata->offset + got_bytes, |
| 3500 | rdata->bytes - got_bytes, |
| 3501 | rdata->cfile, cifs_sb, |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3502 | &tmp_list, ctx); |
Pavel Shilovsky | 25f4025 | 2014-06-25 10:45:07 +0400 | [diff] [blame] | 3503 | |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3504 | kref_put(&rdata->refcount, |
| 3505 | cifs_uncached_readdata_release); |
| 3506 | } |
| 3507 | |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3508 | list_splice(&tmp_list, &ctx->list); |
Pavel Shilovsky | 25f4025 | 2014-06-25 10:45:07 +0400 | [diff] [blame] | 3509 | |
Pavel Shilovsky | fb8a3e5 | 2014-07-10 11:50:39 +0400 | [diff] [blame] | 3510 | goto again; |
| 3511 | } else if (rdata->result) |
| 3512 | rc = rdata->result; |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3513 | else if (!ctx->direct_io) |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3514 | rc = cifs_readdata_to_iov(rdata, to); |
Pavel Shilovsky | fb8a3e5 | 2014-07-10 11:50:39 +0400 | [diff] [blame] | 3515 | |
Pavel Shilovsky | 2e8a05d | 2014-07-10 10:21:15 +0400 | [diff] [blame] | 3516 | /* if there was a short read -- discard anything left */ |
| 3517 | if (rdata->got_bytes && rdata->got_bytes < rdata->bytes) |
| 3518 | rc = -ENODATA; |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3519 | |
| 3520 | ctx->total_len += rdata->got_bytes; |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3521 | } |
| 3522 | list_del_init(&rdata->list); |
| 3523 | kref_put(&rdata->refcount, cifs_uncached_readdata_release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3524 | } |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 3525 | |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3526 | if (!ctx->direct_io) { |
| 3527 | for (i = 0; i < ctx->npages; i++) { |
| 3528 | if (ctx->should_dirty) |
| 3529 | set_page_dirty(ctx->bv[i].bv_page); |
| 3530 | put_page(ctx->bv[i].bv_page); |
| 3531 | } |
Al Viro | 7f25bba | 2014-02-04 14:07:43 -0500 | [diff] [blame] | 3532 | |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3533 | ctx->total_len = ctx->len - iov_iter_count(to); |
| 3534 | } |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3535 | |
| 3536 | cifs_stats_bytes_read(tcon, ctx->total_len); |
Jeff Layton | 1c89254 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3537 | |
Pavel Shilovsky | 09a4707 | 2012-09-18 16:20:29 -0700 | [diff] [blame] | 3538 | /* mask nodata case */ |
| 3539 | if (rc == -ENODATA) |
| 3540 | rc = 0; |
| 3541 | |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3542 | ctx->rc = (rc == 0) ? ctx->total_len : rc; |
| 3543 | |
| 3544 | mutex_unlock(&ctx->aio_mutex); |
| 3545 | |
| 3546 | if (ctx->iocb && ctx->iocb->ki_complete) |
| 3547 | ctx->iocb->ki_complete(ctx->iocb, ctx->rc, 0); |
| 3548 | else |
| 3549 | complete(&ctx->done); |
| 3550 | } |
| 3551 | |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3552 | static ssize_t __cifs_readv( |
| 3553 | struct kiocb *iocb, struct iov_iter *to, bool direct) |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3554 | { |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3555 | size_t len; |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3556 | struct file *file = iocb->ki_filp; |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3557 | struct cifs_sb_info *cifs_sb; |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3558 | struct cifsFileInfo *cfile; |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3559 | struct cifs_tcon *tcon; |
| 3560 | ssize_t rc, total_read = 0; |
| 3561 | loff_t offset = iocb->ki_pos; |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3562 | struct cifs_aio_ctx *ctx; |
| 3563 | |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3564 | /* |
| 3565 | * iov_iter_get_pages_alloc() doesn't work with ITER_KVEC, |
| 3566 | * fall back to data copy read path |
| 3567 | * this could be improved by getting pages directly in ITER_KVEC |
| 3568 | */ |
| 3569 | if (direct && to->type & ITER_KVEC) { |
| 3570 | cifs_dbg(FYI, "use non-direct cifs_user_readv for kvec I/O\n"); |
| 3571 | direct = false; |
| 3572 | } |
| 3573 | |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3574 | len = iov_iter_count(to); |
| 3575 | if (!len) |
| 3576 | return 0; |
| 3577 | |
| 3578 | cifs_sb = CIFS_FILE_SB(file); |
| 3579 | cfile = file->private_data; |
| 3580 | tcon = tlink_tcon(cfile->tlink); |
| 3581 | |
| 3582 | if (!tcon->ses->server->ops->async_readv) |
| 3583 | return -ENOSYS; |
| 3584 | |
| 3585 | if ((file->f_flags & O_ACCMODE) == O_WRONLY) |
| 3586 | cifs_dbg(FYI, "attempting read on write only file instance\n"); |
| 3587 | |
| 3588 | ctx = cifs_aio_ctx_alloc(); |
| 3589 | if (!ctx) |
| 3590 | return -ENOMEM; |
| 3591 | |
| 3592 | ctx->cfile = cifsFileInfo_get(cfile); |
| 3593 | |
| 3594 | if (!is_sync_kiocb(iocb)) |
| 3595 | ctx->iocb = iocb; |
| 3596 | |
David Howells | 00e2370 | 2018-10-22 13:07:28 +0100 | [diff] [blame] | 3597 | if (iter_is_iovec(to)) |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3598 | ctx->should_dirty = true; |
| 3599 | |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3600 | if (direct) { |
| 3601 | ctx->pos = offset; |
| 3602 | ctx->direct_io = true; |
| 3603 | ctx->iter = *to; |
| 3604 | ctx->len = len; |
| 3605 | } else { |
| 3606 | rc = setup_aio_ctx_iter(ctx, to, READ); |
| 3607 | if (rc) { |
| 3608 | kref_put(&ctx->refcount, cifs_aio_ctx_release); |
| 3609 | return rc; |
| 3610 | } |
| 3611 | len = ctx->len; |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3612 | } |
| 3613 | |
Pavel Shilovsky | 6685c5e | 2017-04-25 11:52:30 -0700 | [diff] [blame] | 3614 | /* grab a lock here due to read response handlers can access ctx */ |
| 3615 | mutex_lock(&ctx->aio_mutex); |
| 3616 | |
| 3617 | rc = cifs_send_async_read(offset, len, cfile, cifs_sb, &ctx->list, ctx); |
| 3618 | |
| 3619 | /* if at least one read request send succeeded, then reset rc */ |
| 3620 | if (!list_empty(&ctx->list)) |
| 3621 | rc = 0; |
| 3622 | |
| 3623 | mutex_unlock(&ctx->aio_mutex); |
| 3624 | |
| 3625 | if (rc) { |
| 3626 | kref_put(&ctx->refcount, cifs_aio_ctx_release); |
| 3627 | return rc; |
| 3628 | } |
| 3629 | |
| 3630 | if (!is_sync_kiocb(iocb)) { |
| 3631 | kref_put(&ctx->refcount, cifs_aio_ctx_release); |
| 3632 | return -EIOCBQUEUED; |
| 3633 | } |
| 3634 | |
| 3635 | rc = wait_for_completion_killable(&ctx->done); |
| 3636 | if (rc) { |
| 3637 | mutex_lock(&ctx->aio_mutex); |
| 3638 | ctx->rc = rc = -EINTR; |
| 3639 | total_read = ctx->total_len; |
| 3640 | mutex_unlock(&ctx->aio_mutex); |
| 3641 | } else { |
| 3642 | rc = ctx->rc; |
| 3643 | total_read = ctx->total_len; |
| 3644 | } |
| 3645 | |
| 3646 | kref_put(&ctx->refcount, cifs_aio_ctx_release); |
| 3647 | |
Al Viro | 0165e81 | 2014-02-04 14:19:48 -0500 | [diff] [blame] | 3648 | if (total_read) { |
Al Viro | e6a7bcb | 2014-04-02 19:53:36 -0400 | [diff] [blame] | 3649 | iocb->ki_pos += total_read; |
Al Viro | 0165e81 | 2014-02-04 14:19:48 -0500 | [diff] [blame] | 3650 | return total_read; |
| 3651 | } |
| 3652 | return rc; |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 3653 | } |
| 3654 | |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 3655 | ssize_t cifs_direct_readv(struct kiocb *iocb, struct iov_iter *to) |
| 3656 | { |
| 3657 | return __cifs_readv(iocb, to, true); |
| 3658 | } |
| 3659 | |
| 3660 | ssize_t cifs_user_readv(struct kiocb *iocb, struct iov_iter *to) |
| 3661 | { |
| 3662 | return __cifs_readv(iocb, to, false); |
| 3663 | } |
| 3664 | |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 3665 | ssize_t |
Al Viro | e6a7bcb | 2014-04-02 19:53:36 -0400 | [diff] [blame] | 3666 | cifs_strict_readv(struct kiocb *iocb, struct iov_iter *to) |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 3667 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 3668 | struct inode *inode = file_inode(iocb->ki_filp); |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 3669 | struct cifsInodeInfo *cinode = CIFS_I(inode); |
| 3670 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 3671 | struct cifsFileInfo *cfile = (struct cifsFileInfo *) |
| 3672 | iocb->ki_filp->private_data; |
| 3673 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
| 3674 | int rc = -EACCES; |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 3675 | |
| 3676 | /* |
| 3677 | * In strict cache mode we need to read from the server all the time |
| 3678 | * if we don't have level II oplock because the server can delay mtime |
| 3679 | * change - so we can't make a decision about inode invalidating. |
| 3680 | * And we can also fail with pagereading if there are mandatory locks |
| 3681 | * on pages affected by this read but not on the region from pos to |
| 3682 | * pos+len-1. |
| 3683 | */ |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 3684 | if (!CIFS_CACHE_READ(cinode)) |
Al Viro | e6a7bcb | 2014-04-02 19:53:36 -0400 | [diff] [blame] | 3685 | return cifs_user_readv(iocb, to); |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 3686 | |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 3687 | if (cap_unix(tcon->ses) && |
| 3688 | (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) && |
| 3689 | ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0)) |
Al Viro | e6a7bcb | 2014-04-02 19:53:36 -0400 | [diff] [blame] | 3690 | return generic_file_read_iter(iocb, to); |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 3691 | |
| 3692 | /* |
| 3693 | * We need to hold the sem to be sure nobody modifies lock list |
| 3694 | * with a brlock that prevents reading. |
| 3695 | */ |
| 3696 | down_read(&cinode->lock_sem); |
Al Viro | e6a7bcb | 2014-04-02 19:53:36 -0400 | [diff] [blame] | 3697 | if (!cifs_find_lock_conflict(cfile, iocb->ki_pos, iov_iter_count(to), |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 3698 | tcon->ses->server->vals->shared_lock_type, |
Ronnie Sahlberg | 9645759 | 2018-10-04 09:24:38 +1000 | [diff] [blame] | 3699 | 0, NULL, CIFS_READ_OP)) |
Al Viro | e6a7bcb | 2014-04-02 19:53:36 -0400 | [diff] [blame] | 3700 | rc = generic_file_read_iter(iocb, to); |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 3701 | up_read(&cinode->lock_sem); |
| 3702 | return rc; |
Pavel Shilovsky | a70307e | 2010-12-14 11:50:41 +0300 | [diff] [blame] | 3703 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3704 | |
Pavel Shilovsky | f9c6e23 | 2012-09-18 16:20:29 -0700 | [diff] [blame] | 3705 | static ssize_t |
| 3706 | cifs_read(struct file *file, char *read_data, size_t read_size, loff_t *offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3707 | { |
| 3708 | int rc = -EACCES; |
| 3709 | unsigned int bytes_read = 0; |
| 3710 | unsigned int total_read; |
| 3711 | unsigned int current_read_size; |
Jeff Layton | 5eba8ab | 2011-10-19 15:30:26 -0400 | [diff] [blame] | 3712 | unsigned int rsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3713 | struct cifs_sb_info *cifs_sb; |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 3714 | struct cifs_tcon *tcon; |
Pavel Shilovsky | f9c6e23 | 2012-09-18 16:20:29 -0700 | [diff] [blame] | 3715 | struct TCP_Server_Info *server; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3716 | unsigned int xid; |
Pavel Shilovsky | f9c6e23 | 2012-09-18 16:20:29 -0700 | [diff] [blame] | 3717 | char *cur_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3718 | struct cifsFileInfo *open_file; |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 3719 | struct cifs_io_parms io_parms; |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 3720 | int buf_type = CIFS_NO_BUFFER; |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 3721 | __u32 pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3722 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3723 | xid = get_xid(); |
Al Viro | 7119e22 | 2014-10-22 00:25:12 -0400 | [diff] [blame] | 3724 | cifs_sb = CIFS_FILE_SB(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3725 | |
Jeff Layton | 5eba8ab | 2011-10-19 15:30:26 -0400 | [diff] [blame] | 3726 | /* FIXME: set up handlers for larger reads and/or convert to async */ |
| 3727 | rsize = min_t(unsigned int, cifs_sb->rsize, CIFSMaxBufSize); |
| 3728 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3729 | if (file->private_data == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 3730 | rc = -EBADF; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3731 | free_xid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 3732 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3733 | } |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 3734 | open_file = file->private_data; |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 3735 | tcon = tlink_tcon(open_file->tlink); |
Pavel Shilovsky | f9c6e23 | 2012-09-18 16:20:29 -0700 | [diff] [blame] | 3736 | server = tcon->ses->server; |
| 3737 | |
| 3738 | if (!server->ops->sync_read) { |
| 3739 | free_xid(xid); |
| 3740 | return -ENOSYS; |
| 3741 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3742 | |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 3743 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD) |
| 3744 | pid = open_file->pid; |
| 3745 | else |
| 3746 | pid = current->tgid; |
| 3747 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3748 | if ((file->f_flags & O_ACCMODE) == O_WRONLY) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3749 | cifs_dbg(FYI, "attempting read on write only file instance\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3750 | |
Pavel Shilovsky | f9c6e23 | 2012-09-18 16:20:29 -0700 | [diff] [blame] | 3751 | for (total_read = 0, cur_offset = read_data; read_size > total_read; |
| 3752 | total_read += bytes_read, cur_offset += bytes_read) { |
Pavel Shilovsky | e374d90 | 2014-06-25 16:19:02 +0400 | [diff] [blame] | 3753 | do { |
| 3754 | current_read_size = min_t(uint, read_size - total_read, |
| 3755 | rsize); |
| 3756 | /* |
| 3757 | * For windows me and 9x we do not want to request more |
| 3758 | * than it negotiated since it will refuse the read |
| 3759 | * then. |
| 3760 | */ |
| 3761 | if ((tcon->ses) && !(tcon->ses->capabilities & |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 3762 | tcon->ses->server->vals->cap_large_files)) { |
Pavel Shilovsky | e374d90 | 2014-06-25 16:19:02 +0400 | [diff] [blame] | 3763 | current_read_size = min_t(uint, |
| 3764 | current_read_size, CIFSMaxBufSize); |
| 3765 | } |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 3766 | if (open_file->invalidHandle) { |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 3767 | rc = cifs_reopen_file(open_file, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3768 | if (rc != 0) |
| 3769 | break; |
| 3770 | } |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 3771 | io_parms.pid = pid; |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 3772 | io_parms.tcon = tcon; |
Pavel Shilovsky | f9c6e23 | 2012-09-18 16:20:29 -0700 | [diff] [blame] | 3773 | io_parms.offset = *offset; |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 3774 | io_parms.length = current_read_size; |
Steve French | db8b631 | 2014-09-22 05:13:55 -0500 | [diff] [blame] | 3775 | rc = server->ops->sync_read(xid, &open_file->fid, &io_parms, |
Pavel Shilovsky | f9c6e23 | 2012-09-18 16:20:29 -0700 | [diff] [blame] | 3776 | &bytes_read, &cur_offset, |
| 3777 | &buf_type); |
Pavel Shilovsky | e374d90 | 2014-06-25 16:19:02 +0400 | [diff] [blame] | 3778 | } while (rc == -EAGAIN); |
| 3779 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3780 | if (rc || (bytes_read == 0)) { |
| 3781 | if (total_read) { |
| 3782 | break; |
| 3783 | } else { |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3784 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3785 | return rc; |
| 3786 | } |
| 3787 | } else { |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 3788 | cifs_stats_bytes_read(tcon, total_read); |
Pavel Shilovsky | f9c6e23 | 2012-09-18 16:20:29 -0700 | [diff] [blame] | 3789 | *offset += bytes_read; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3790 | } |
| 3791 | } |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3792 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3793 | return total_read; |
| 3794 | } |
| 3795 | |
Jeff Layton | ca83ce3 | 2011-04-12 09:13:44 -0400 | [diff] [blame] | 3796 | /* |
| 3797 | * If the page is mmap'ed into a process' page tables, then we need to make |
| 3798 | * sure that it doesn't change while being written back. |
| 3799 | */ |
Souptick Joarder | a5240cb | 2018-04-15 00:58:25 +0530 | [diff] [blame] | 3800 | static vm_fault_t |
Dave Jiang | 11bac80 | 2017-02-24 14:56:41 -0800 | [diff] [blame] | 3801 | cifs_page_mkwrite(struct vm_fault *vmf) |
Jeff Layton | ca83ce3 | 2011-04-12 09:13:44 -0400 | [diff] [blame] | 3802 | { |
| 3803 | struct page *page = vmf->page; |
| 3804 | |
| 3805 | lock_page(page); |
| 3806 | return VM_FAULT_LOCKED; |
| 3807 | } |
| 3808 | |
Kirill A. Shutemov | 7cbea8d | 2015-09-09 15:39:26 -0700 | [diff] [blame] | 3809 | static const struct vm_operations_struct cifs_file_vm_ops = { |
Jeff Layton | ca83ce3 | 2011-04-12 09:13:44 -0400 | [diff] [blame] | 3810 | .fault = filemap_fault, |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 3811 | .map_pages = filemap_map_pages, |
Jeff Layton | ca83ce3 | 2011-04-12 09:13:44 -0400 | [diff] [blame] | 3812 | .page_mkwrite = cifs_page_mkwrite, |
| 3813 | }; |
| 3814 | |
Pavel Shilovsky | 7a6a19b | 2010-12-14 11:29:51 +0300 | [diff] [blame] | 3815 | int cifs_file_strict_mmap(struct file *file, struct vm_area_struct *vma) |
| 3816 | { |
Matthew Wilcox | f04a703 | 2017-12-15 12:48:32 -0800 | [diff] [blame] | 3817 | int xid, rc = 0; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 3818 | struct inode *inode = file_inode(file); |
Pavel Shilovsky | 7a6a19b | 2010-12-14 11:29:51 +0300 | [diff] [blame] | 3819 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3820 | xid = get_xid(); |
Pavel Shilovsky | 7a6a19b | 2010-12-14 11:29:51 +0300 | [diff] [blame] | 3821 | |
Matthew Wilcox | f04a703 | 2017-12-15 12:48:32 -0800 | [diff] [blame] | 3822 | if (!CIFS_CACHE_READ(CIFS_I(inode))) |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 3823 | rc = cifs_zap_mapping(inode); |
Matthew Wilcox | f04a703 | 2017-12-15 12:48:32 -0800 | [diff] [blame] | 3824 | if (!rc) |
| 3825 | rc = generic_file_mmap(file, vma); |
| 3826 | if (!rc) |
Jeff Layton | ca83ce3 | 2011-04-12 09:13:44 -0400 | [diff] [blame] | 3827 | vma->vm_ops = &cifs_file_vm_ops; |
Matthew Wilcox | f04a703 | 2017-12-15 12:48:32 -0800 | [diff] [blame] | 3828 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3829 | free_xid(xid); |
Pavel Shilovsky | 7a6a19b | 2010-12-14 11:29:51 +0300 | [diff] [blame] | 3830 | return rc; |
| 3831 | } |
| 3832 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3833 | int cifs_file_mmap(struct file *file, struct vm_area_struct *vma) |
| 3834 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3835 | int rc, xid; |
| 3836 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3837 | xid = get_xid(); |
Matthew Wilcox | f04a703 | 2017-12-15 12:48:32 -0800 | [diff] [blame] | 3838 | |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 3839 | rc = cifs_revalidate_file(file); |
Matthew Wilcox | f04a703 | 2017-12-15 12:48:32 -0800 | [diff] [blame] | 3840 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3841 | cifs_dbg(FYI, "Validation prior to mmap failed, error=%d\n", |
| 3842 | rc); |
Matthew Wilcox | f04a703 | 2017-12-15 12:48:32 -0800 | [diff] [blame] | 3843 | if (!rc) |
| 3844 | rc = generic_file_mmap(file, vma); |
| 3845 | if (!rc) |
Jeff Layton | ca83ce3 | 2011-04-12 09:13:44 -0400 | [diff] [blame] | 3846 | vma->vm_ops = &cifs_file_vm_ops; |
Matthew Wilcox | f04a703 | 2017-12-15 12:48:32 -0800 | [diff] [blame] | 3847 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3848 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3849 | return rc; |
| 3850 | } |
| 3851 | |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3852 | static void |
| 3853 | cifs_readv_complete(struct work_struct *work) |
| 3854 | { |
Pavel Shilovsky | b770ddf | 2014-07-10 11:31:53 +0400 | [diff] [blame] | 3855 | unsigned int i, got_bytes; |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3856 | struct cifs_readdata *rdata = container_of(work, |
| 3857 | struct cifs_readdata, work); |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3858 | |
Pavel Shilovsky | b770ddf | 2014-07-10 11:31:53 +0400 | [diff] [blame] | 3859 | got_bytes = rdata->got_bytes; |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3860 | for (i = 0; i < rdata->nr_pages; i++) { |
| 3861 | struct page *page = rdata->pages[i]; |
| 3862 | |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3863 | lru_cache_add_file(page); |
| 3864 | |
Pavel Shilovsky | b770ddf | 2014-07-10 11:31:53 +0400 | [diff] [blame] | 3865 | if (rdata->result == 0 || |
| 3866 | (rdata->result == -EAGAIN && got_bytes)) { |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3867 | flush_dcache_page(page); |
| 3868 | SetPageUptodate(page); |
| 3869 | } |
| 3870 | |
| 3871 | unlock_page(page); |
| 3872 | |
Pavel Shilovsky | b770ddf | 2014-07-10 11:31:53 +0400 | [diff] [blame] | 3873 | if (rdata->result == 0 || |
| 3874 | (rdata->result == -EAGAIN && got_bytes)) |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3875 | cifs_readpage_to_fscache(rdata->mapping->host, page); |
| 3876 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3877 | got_bytes -= min_t(unsigned int, PAGE_SIZE, got_bytes); |
Pavel Shilovsky | b770ddf | 2014-07-10 11:31:53 +0400 | [diff] [blame] | 3878 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3879 | put_page(page); |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3880 | rdata->pages[i] = NULL; |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3881 | } |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 3882 | kref_put(&rdata->refcount, cifs_readdata_release); |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3883 | } |
| 3884 | |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3885 | static int |
Pavel Shilovsky | d70b910 | 2016-11-17 16:20:18 -0800 | [diff] [blame] | 3886 | readpages_fill_pages(struct TCP_Server_Info *server, |
| 3887 | struct cifs_readdata *rdata, struct iov_iter *iter, |
| 3888 | unsigned int len) |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3889 | { |
Pavel Shilovsky | b3160ae | 2014-07-10 10:16:25 +0400 | [diff] [blame] | 3890 | int result = 0; |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3891 | unsigned int i; |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3892 | u64 eof; |
| 3893 | pgoff_t eof_index; |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3894 | unsigned int nr_pages = rdata->nr_pages; |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3895 | unsigned int page_offset = rdata->page_offset; |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3896 | |
| 3897 | /* determine the eof that the server (probably) has */ |
| 3898 | eof = CIFS_I(rdata->mapping->host)->server_eof; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3899 | eof_index = eof ? (eof - 1) >> PAGE_SHIFT : 0; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3900 | cifs_dbg(FYI, "eof=%llu eof_index=%lu\n", eof, eof_index); |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3901 | |
Pavel Shilovsky | b3160ae | 2014-07-10 10:16:25 +0400 | [diff] [blame] | 3902 | rdata->got_bytes = 0; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3903 | rdata->tailsz = PAGE_SIZE; |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3904 | for (i = 0; i < nr_pages; i++) { |
| 3905 | struct page *page = rdata->pages[i]; |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3906 | unsigned int to_read = rdata->pagesz; |
| 3907 | size_t n; |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3908 | |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3909 | if (i == 0) |
| 3910 | to_read -= page_offset; |
| 3911 | else |
| 3912 | page_offset = 0; |
| 3913 | |
| 3914 | n = to_read; |
| 3915 | |
| 3916 | if (len >= to_read) { |
| 3917 | len -= to_read; |
Jeff Layton | 8321fec | 2012-09-19 06:22:32 -0700 | [diff] [blame] | 3918 | } else if (len > 0) { |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3919 | /* enough for partial page, fill and zero the rest */ |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3920 | zero_user(page, len + page_offset, to_read - len); |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 3921 | n = rdata->tailsz = len; |
Jeff Layton | 8321fec | 2012-09-19 06:22:32 -0700 | [diff] [blame] | 3922 | len = 0; |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3923 | } else if (page->index > eof_index) { |
| 3924 | /* |
| 3925 | * The VFS will not try to do readahead past the |
| 3926 | * i_size, but it's possible that we have outstanding |
| 3927 | * writes with gaps in the middle and the i_size hasn't |
| 3928 | * caught up yet. Populate those with zeroed out pages |
| 3929 | * to prevent the VFS from repeatedly attempting to |
| 3930 | * fill them until the writes are flushed. |
| 3931 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3932 | zero_user(page, 0, PAGE_SIZE); |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3933 | lru_cache_add_file(page); |
| 3934 | flush_dcache_page(page); |
| 3935 | SetPageUptodate(page); |
| 3936 | unlock_page(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3937 | put_page(page); |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3938 | rdata->pages[i] = NULL; |
| 3939 | rdata->nr_pages--; |
Jeff Layton | 8321fec | 2012-09-19 06:22:32 -0700 | [diff] [blame] | 3940 | continue; |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3941 | } else { |
| 3942 | /* no need to hold page hostage */ |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3943 | lru_cache_add_file(page); |
| 3944 | unlock_page(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3945 | put_page(page); |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 3946 | rdata->pages[i] = NULL; |
| 3947 | rdata->nr_pages--; |
Jeff Layton | 8321fec | 2012-09-19 06:22:32 -0700 | [diff] [blame] | 3948 | continue; |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3949 | } |
Jeff Layton | 8321fec | 2012-09-19 06:22:32 -0700 | [diff] [blame] | 3950 | |
Pavel Shilovsky | d70b910 | 2016-11-17 16:20:18 -0800 | [diff] [blame] | 3951 | if (iter) |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3952 | result = copy_page_from_iter( |
| 3953 | page, page_offset, n, iter); |
Long Li | bd3dcc6 | 2017-11-22 17:38:47 -0700 | [diff] [blame] | 3954 | #ifdef CONFIG_CIFS_SMB_DIRECT |
| 3955 | else if (rdata->mr) |
| 3956 | result = n; |
| 3957 | #endif |
Pavel Shilovsky | d70b910 | 2016-11-17 16:20:18 -0800 | [diff] [blame] | 3958 | else |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 3959 | result = cifs_read_page_from_socket( |
| 3960 | server, page, page_offset, n); |
Jeff Layton | 8321fec | 2012-09-19 06:22:32 -0700 | [diff] [blame] | 3961 | if (result < 0) |
| 3962 | break; |
| 3963 | |
Pavel Shilovsky | b3160ae | 2014-07-10 10:16:25 +0400 | [diff] [blame] | 3964 | rdata->got_bytes += result; |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3965 | } |
| 3966 | |
Pavel Shilovsky | b3160ae | 2014-07-10 10:16:25 +0400 | [diff] [blame] | 3967 | return rdata->got_bytes > 0 && result != -ECONNABORTED ? |
| 3968 | rdata->got_bytes : result; |
Jeff Layton | 8d5ce4d | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 3969 | } |
| 3970 | |
Pavel Shilovsky | 387eb92 | 2014-06-24 13:08:54 +0400 | [diff] [blame] | 3971 | static int |
Pavel Shilovsky | d70b910 | 2016-11-17 16:20:18 -0800 | [diff] [blame] | 3972 | cifs_readpages_read_into_pages(struct TCP_Server_Info *server, |
| 3973 | struct cifs_readdata *rdata, unsigned int len) |
| 3974 | { |
| 3975 | return readpages_fill_pages(server, rdata, NULL, len); |
| 3976 | } |
| 3977 | |
| 3978 | static int |
| 3979 | cifs_readpages_copy_into_pages(struct TCP_Server_Info *server, |
| 3980 | struct cifs_readdata *rdata, |
| 3981 | struct iov_iter *iter) |
| 3982 | { |
| 3983 | return readpages_fill_pages(server, rdata, iter, iter->count); |
| 3984 | } |
| 3985 | |
| 3986 | static int |
Pavel Shilovsky | 387eb92 | 2014-06-24 13:08:54 +0400 | [diff] [blame] | 3987 | readpages_get_pages(struct address_space *mapping, struct list_head *page_list, |
| 3988 | unsigned int rsize, struct list_head *tmplist, |
| 3989 | unsigned int *nr_pages, loff_t *offset, unsigned int *bytes) |
| 3990 | { |
| 3991 | struct page *page, *tpage; |
| 3992 | unsigned int expected_index; |
| 3993 | int rc; |
Michal Hocko | 8a5c743 | 2016-07-26 15:24:53 -0700 | [diff] [blame] | 3994 | gfp_t gfp = readahead_gfp_mask(mapping); |
Pavel Shilovsky | 387eb92 | 2014-06-24 13:08:54 +0400 | [diff] [blame] | 3995 | |
Pavel Shilovsky | 69cebd7 | 2014-06-24 13:42:03 +0400 | [diff] [blame] | 3996 | INIT_LIST_HEAD(tmplist); |
| 3997 | |
Nikolay Borisov | f86196e | 2019-01-03 15:29:02 -0800 | [diff] [blame] | 3998 | page = lru_to_page(page_list); |
Pavel Shilovsky | 387eb92 | 2014-06-24 13:08:54 +0400 | [diff] [blame] | 3999 | |
| 4000 | /* |
| 4001 | * Lock the page and put it in the cache. Since no one else |
| 4002 | * should have access to this page, we're safe to simply set |
| 4003 | * PG_locked without checking it first. |
| 4004 | */ |
Kirill A. Shutemov | 48c935a | 2016-01-15 16:51:24 -0800 | [diff] [blame] | 4005 | __SetPageLocked(page); |
Pavel Shilovsky | 387eb92 | 2014-06-24 13:08:54 +0400 | [diff] [blame] | 4006 | rc = add_to_page_cache_locked(page, mapping, |
Michal Hocko | 063d99b | 2015-10-15 15:28:24 -0700 | [diff] [blame] | 4007 | page->index, gfp); |
Pavel Shilovsky | 387eb92 | 2014-06-24 13:08:54 +0400 | [diff] [blame] | 4008 | |
| 4009 | /* give up if we can't stick it in the cache */ |
| 4010 | if (rc) { |
Kirill A. Shutemov | 48c935a | 2016-01-15 16:51:24 -0800 | [diff] [blame] | 4011 | __ClearPageLocked(page); |
Pavel Shilovsky | 387eb92 | 2014-06-24 13:08:54 +0400 | [diff] [blame] | 4012 | return rc; |
| 4013 | } |
| 4014 | |
| 4015 | /* move first page to the tmplist */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4016 | *offset = (loff_t)page->index << PAGE_SHIFT; |
| 4017 | *bytes = PAGE_SIZE; |
Pavel Shilovsky | 387eb92 | 2014-06-24 13:08:54 +0400 | [diff] [blame] | 4018 | *nr_pages = 1; |
| 4019 | list_move_tail(&page->lru, tmplist); |
| 4020 | |
| 4021 | /* now try and add more pages onto the request */ |
| 4022 | expected_index = page->index + 1; |
| 4023 | list_for_each_entry_safe_reverse(page, tpage, page_list, lru) { |
| 4024 | /* discontinuity ? */ |
| 4025 | if (page->index != expected_index) |
| 4026 | break; |
| 4027 | |
| 4028 | /* would this page push the read over the rsize? */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4029 | if (*bytes + PAGE_SIZE > rsize) |
Pavel Shilovsky | 387eb92 | 2014-06-24 13:08:54 +0400 | [diff] [blame] | 4030 | break; |
| 4031 | |
Kirill A. Shutemov | 48c935a | 2016-01-15 16:51:24 -0800 | [diff] [blame] | 4032 | __SetPageLocked(page); |
Michal Hocko | 063d99b | 2015-10-15 15:28:24 -0700 | [diff] [blame] | 4033 | if (add_to_page_cache_locked(page, mapping, page->index, gfp)) { |
Kirill A. Shutemov | 48c935a | 2016-01-15 16:51:24 -0800 | [diff] [blame] | 4034 | __ClearPageLocked(page); |
Pavel Shilovsky | 387eb92 | 2014-06-24 13:08:54 +0400 | [diff] [blame] | 4035 | break; |
| 4036 | } |
| 4037 | list_move_tail(&page->lru, tmplist); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4038 | (*bytes) += PAGE_SIZE; |
Pavel Shilovsky | 387eb92 | 2014-06-24 13:08:54 +0400 | [diff] [blame] | 4039 | expected_index++; |
| 4040 | (*nr_pages)++; |
| 4041 | } |
| 4042 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4043 | } |
| 4044 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4045 | static int cifs_readpages(struct file *file, struct address_space *mapping, |
| 4046 | struct list_head *page_list, unsigned num_pages) |
| 4047 | { |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4048 | int rc; |
| 4049 | struct list_head tmplist; |
| 4050 | struct cifsFileInfo *open_file = file->private_data; |
Al Viro | 7119e22 | 2014-10-22 00:25:12 -0400 | [diff] [blame] | 4051 | struct cifs_sb_info *cifs_sb = CIFS_FILE_SB(file); |
Pavel Shilovsky | 69cebd7 | 2014-06-24 13:42:03 +0400 | [diff] [blame] | 4052 | struct TCP_Server_Info *server; |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4053 | pid_t pid; |
Steve French | 0cb012d | 2018-10-11 01:01:02 -0500 | [diff] [blame] | 4054 | unsigned int xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4055 | |
Steve French | 0cb012d | 2018-10-11 01:01:02 -0500 | [diff] [blame] | 4056 | xid = get_xid(); |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4057 | /* |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 4058 | * Reads as many pages as possible from fscache. Returns -ENOBUFS |
| 4059 | * immediately if the cookie is negative |
David Howells | 54afa99 | 2013-09-04 17:10:39 +0000 | [diff] [blame] | 4060 | * |
| 4061 | * After this point, every page in the list might have PG_fscache set, |
| 4062 | * so we will need to clean that up off of every page we don't use. |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 4063 | */ |
| 4064 | rc = cifs_readpages_from_fscache(mapping->host, mapping, page_list, |
| 4065 | &num_pages); |
Steve French | 0cb012d | 2018-10-11 01:01:02 -0500 | [diff] [blame] | 4066 | if (rc == 0) { |
| 4067 | free_xid(xid); |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4068 | return rc; |
Steve French | 0cb012d | 2018-10-11 01:01:02 -0500 | [diff] [blame] | 4069 | } |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 4070 | |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 4071 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD) |
| 4072 | pid = open_file->pid; |
| 4073 | else |
| 4074 | pid = current->tgid; |
| 4075 | |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4076 | rc = 0; |
Pavel Shilovsky | 69cebd7 | 2014-06-24 13:42:03 +0400 | [diff] [blame] | 4077 | server = tlink_tcon(open_file->tlink)->ses->server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4078 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4079 | cifs_dbg(FYI, "%s: file=%p mapping=%p num_pages=%u\n", |
| 4080 | __func__, file, mapping, num_pages); |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4081 | |
| 4082 | /* |
| 4083 | * Start with the page at end of list and move it to private |
| 4084 | * list. Do the same with any following pages until we hit |
| 4085 | * the rsize limit, hit an index discontinuity, or run out of |
| 4086 | * pages. Issue the async read and then start the loop again |
| 4087 | * until the list is empty. |
| 4088 | * |
| 4089 | * Note that list order is important. The page_list is in |
| 4090 | * the order of declining indexes. When we put the pages in |
| 4091 | * the rdata->pages, then we want them in increasing order. |
| 4092 | */ |
| 4093 | while (!list_empty(page_list)) { |
Pavel Shilovsky | bed9da0 | 2014-06-25 11:28:57 +0400 | [diff] [blame] | 4094 | unsigned int i, nr_pages, bytes, rsize; |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4095 | loff_t offset; |
| 4096 | struct page *page, *tpage; |
| 4097 | struct cifs_readdata *rdata; |
Pavel Shilovsky | bed9da0 | 2014-06-25 11:28:57 +0400 | [diff] [blame] | 4098 | unsigned credits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4099 | |
Pavel Shilovsky | bed9da0 | 2014-06-25 11:28:57 +0400 | [diff] [blame] | 4100 | rc = server->ops->wait_mtu_credits(server, cifs_sb->rsize, |
| 4101 | &rsize, &credits); |
| 4102 | if (rc) |
| 4103 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4104 | |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4105 | /* |
Pavel Shilovsky | 69cebd7 | 2014-06-24 13:42:03 +0400 | [diff] [blame] | 4106 | * Give up immediately if rsize is too small to read an entire |
| 4107 | * page. The VFS will fall back to readpage. We should never |
| 4108 | * reach this point however since we set ra_pages to 0 when the |
| 4109 | * rsize is smaller than a cache page. |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4110 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4111 | if (unlikely(rsize < PAGE_SIZE)) { |
Pavel Shilovsky | bed9da0 | 2014-06-25 11:28:57 +0400 | [diff] [blame] | 4112 | add_credits_and_wake_if(server, credits, 0); |
Steve French | 0cb012d | 2018-10-11 01:01:02 -0500 | [diff] [blame] | 4113 | free_xid(xid); |
Pavel Shilovsky | 69cebd7 | 2014-06-24 13:42:03 +0400 | [diff] [blame] | 4114 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4115 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4116 | |
Pavel Shilovsky | bed9da0 | 2014-06-25 11:28:57 +0400 | [diff] [blame] | 4117 | rc = readpages_get_pages(mapping, page_list, rsize, &tmplist, |
| 4118 | &nr_pages, &offset, &bytes); |
| 4119 | if (rc) { |
| 4120 | add_credits_and_wake_if(server, credits, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4121 | break; |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4122 | } |
| 4123 | |
Jeff Layton | 0471ca3 | 2012-05-16 07:13:16 -0400 | [diff] [blame] | 4124 | rdata = cifs_readdata_alloc(nr_pages, cifs_readv_complete); |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4125 | if (!rdata) { |
| 4126 | /* best to give up if we're out of mem */ |
| 4127 | list_for_each_entry_safe(page, tpage, &tmplist, lru) { |
| 4128 | list_del(&page->lru); |
| 4129 | lru_cache_add_file(page); |
| 4130 | unlock_page(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4131 | put_page(page); |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4132 | } |
| 4133 | rc = -ENOMEM; |
Pavel Shilovsky | bed9da0 | 2014-06-25 11:28:57 +0400 | [diff] [blame] | 4134 | add_credits_and_wake_if(server, credits, 0); |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4135 | break; |
| 4136 | } |
| 4137 | |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 4138 | rdata->cfile = cifsFileInfo_get(open_file); |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4139 | rdata->mapping = mapping; |
| 4140 | rdata->offset = offset; |
| 4141 | rdata->bytes = bytes; |
| 4142 | rdata->pid = pid; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4143 | rdata->pagesz = PAGE_SIZE; |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 4144 | rdata->tailsz = PAGE_SIZE; |
Jeff Layton | 8321fec | 2012-09-19 06:22:32 -0700 | [diff] [blame] | 4145 | rdata->read_into_pages = cifs_readpages_read_into_pages; |
Pavel Shilovsky | d70b910 | 2016-11-17 16:20:18 -0800 | [diff] [blame] | 4146 | rdata->copy_into_pages = cifs_readpages_copy_into_pages; |
Pavel Shilovsky | bed9da0 | 2014-06-25 11:28:57 +0400 | [diff] [blame] | 4147 | rdata->credits = credits; |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 4148 | |
| 4149 | list_for_each_entry_safe(page, tpage, &tmplist, lru) { |
| 4150 | list_del(&page->lru); |
| 4151 | rdata->pages[rdata->nr_pages++] = page; |
| 4152 | } |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4153 | |
Pavel Shilovsky | 69cebd7 | 2014-06-24 13:42:03 +0400 | [diff] [blame] | 4154 | if (!rdata->cfile->invalidHandle || |
Germano Percossi | 1fa839b | 2017-04-07 12:29:38 +0100 | [diff] [blame] | 4155 | !(rc = cifs_reopen_file(rdata->cfile, true))) |
Pavel Shilovsky | 69cebd7 | 2014-06-24 13:42:03 +0400 | [diff] [blame] | 4156 | rc = server->ops->async_readv(rdata); |
| 4157 | if (rc) { |
Pavel Shilovsky | bed9da0 | 2014-06-25 11:28:57 +0400 | [diff] [blame] | 4158 | add_credits_and_wake_if(server, rdata->credits, 0); |
Jeff Layton | c5fab6f | 2012-09-19 06:22:30 -0700 | [diff] [blame] | 4159 | for (i = 0; i < rdata->nr_pages; i++) { |
| 4160 | page = rdata->pages[i]; |
Jeff Layton | 690c5e3 | 2011-10-19 15:30:16 -0400 | [diff] [blame] | 4161 | lru_cache_add_file(page); |
| 4162 | unlock_page(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4163 | put_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4164 | } |
Pavel Shilovsky | 1209bbd | 2014-10-02 20:13:35 +0400 | [diff] [blame] | 4165 | /* Fallback to the readpage in error/reconnect cases */ |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 4166 | kref_put(&rdata->refcount, cifs_readdata_release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4167 | break; |
| 4168 | } |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 4169 | |
| 4170 | kref_put(&rdata->refcount, cifs_readdata_release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4171 | } |
| 4172 | |
David Howells | 54afa99 | 2013-09-04 17:10:39 +0000 | [diff] [blame] | 4173 | /* Any pages that have been shown to fscache but didn't get added to |
| 4174 | * the pagecache must be uncached before they get returned to the |
| 4175 | * allocator. |
| 4176 | */ |
| 4177 | cifs_fscache_readpages_cancel(mapping->host, page_list); |
Steve French | 0cb012d | 2018-10-11 01:01:02 -0500 | [diff] [blame] | 4178 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4179 | return rc; |
| 4180 | } |
| 4181 | |
Sachin Prabhu | a9e9b7b | 2013-09-13 14:11:56 +0100 | [diff] [blame] | 4182 | /* |
| 4183 | * cifs_readpage_worker must be called with the page pinned |
| 4184 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4185 | static int cifs_readpage_worker(struct file *file, struct page *page, |
| 4186 | loff_t *poffset) |
| 4187 | { |
| 4188 | char *read_data; |
| 4189 | int rc; |
| 4190 | |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 4191 | /* Is the page cached? */ |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 4192 | rc = cifs_readpage_from_fscache(file_inode(file), page); |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 4193 | if (rc == 0) |
| 4194 | goto read_complete; |
| 4195 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4196 | read_data = kmap(page); |
| 4197 | /* for reads over a certain size could initiate async read ahead */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 4198 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4199 | rc = cifs_read(file, read_data, PAGE_SIZE, poffset); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 4200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4201 | if (rc < 0) |
| 4202 | goto io_error; |
| 4203 | else |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4204 | cifs_dbg(FYI, "Bytes read %d\n", rc); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 4205 | |
Steve French | 9b9c5be | 2018-09-22 12:07:06 -0500 | [diff] [blame] | 4206 | /* we do not want atime to be less than mtime, it broke some apps */ |
| 4207 | file_inode(file)->i_atime = current_time(file_inode(file)); |
| 4208 | if (timespec64_compare(&(file_inode(file)->i_atime), &(file_inode(file)->i_mtime))) |
| 4209 | file_inode(file)->i_atime = file_inode(file)->i_mtime; |
| 4210 | else |
| 4211 | file_inode(file)->i_atime = current_time(file_inode(file)); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 4212 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4213 | if (PAGE_SIZE > rc) |
| 4214 | memset(read_data + rc, 0, PAGE_SIZE - rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4215 | |
| 4216 | flush_dcache_page(page); |
| 4217 | SetPageUptodate(page); |
Suresh Jayaraman | 9dc0655 | 2010-07-05 18:13:11 +0530 | [diff] [blame] | 4218 | |
| 4219 | /* send this page to the cache */ |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 4220 | cifs_readpage_to_fscache(file_inode(file), page); |
Suresh Jayaraman | 9dc0655 | 2010-07-05 18:13:11 +0530 | [diff] [blame] | 4221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4222 | rc = 0; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 4223 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4224 | io_error: |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 4225 | kunmap(page); |
Sachin Prabhu | 466bd31 | 2013-09-13 14:11:57 +0100 | [diff] [blame] | 4226 | unlock_page(page); |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 4227 | |
| 4228 | read_complete: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4229 | return rc; |
| 4230 | } |
| 4231 | |
| 4232 | static int cifs_readpage(struct file *file, struct page *page) |
| 4233 | { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4234 | loff_t offset = (loff_t)page->index << PAGE_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4235 | int rc = -EACCES; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 4236 | unsigned int xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4237 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 4238 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4239 | |
| 4240 | if (file->private_data == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 4241 | rc = -EBADF; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 4242 | free_xid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 4243 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4244 | } |
| 4245 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4246 | cifs_dbg(FYI, "readpage %p at offset %d 0x%x\n", |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 4247 | page, (int)offset, (int)offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4248 | |
| 4249 | rc = cifs_readpage_worker(file, page, &offset); |
| 4250 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 4251 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4252 | return rc; |
| 4253 | } |
| 4254 | |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 4255 | static int is_inode_writable(struct cifsInodeInfo *cifs_inode) |
| 4256 | { |
| 4257 | struct cifsFileInfo *open_file; |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 4258 | struct cifs_tcon *tcon = |
| 4259 | cifs_sb_master_tcon(CIFS_SB(cifs_inode->vfs_inode.i_sb)); |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 4260 | |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 4261 | spin_lock(&tcon->open_file_lock); |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 4262 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { |
Jeff Layton | 2e396b8 | 2010-10-15 15:34:01 -0400 | [diff] [blame] | 4263 | if (OPEN_FMODE(open_file->f_flags) & FMODE_WRITE) { |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 4264 | spin_unlock(&tcon->open_file_lock); |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 4265 | return 1; |
| 4266 | } |
| 4267 | } |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 4268 | spin_unlock(&tcon->open_file_lock); |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 4269 | return 0; |
| 4270 | } |
| 4271 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4272 | /* We do not want to update the file size from server for inodes |
| 4273 | open for write - to avoid races with writepage extending |
| 4274 | the file - in the future we could consider allowing |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 4275 | refreshing the inode only on increases in the file size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4276 | but this is tricky to do without racing with writebehind |
| 4277 | page caching in the current Linux kernel design */ |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 4278 | 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] | 4279 | { |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 4280 | if (!cifsInode) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 4281 | return true; |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 4282 | |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 4283 | if (is_inode_writable(cifsInode)) { |
| 4284 | /* This inode is open for write at least once */ |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 4285 | struct cifs_sb_info *cifs_sb; |
| 4286 | |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 4287 | cifs_sb = CIFS_SB(cifsInode->vfs_inode.i_sb); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 4288 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 4289 | /* since no page cache to corrupt on directio |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 4290 | we can change size safely */ |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 4291 | return true; |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 4292 | } |
| 4293 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 4294 | if (i_size_read(&cifsInode->vfs_inode) < end_of_file) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 4295 | return true; |
Steve French | 7ba52631 | 2007-02-08 18:14:13 +0000 | [diff] [blame] | 4296 | |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 4297 | return false; |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 4298 | } else |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 4299 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4300 | } |
| 4301 | |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 4302 | static int cifs_write_begin(struct file *file, struct address_space *mapping, |
| 4303 | loff_t pos, unsigned len, unsigned flags, |
| 4304 | struct page **pagep, void **fsdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4305 | { |
Sachin Prabhu | 466bd31 | 2013-09-13 14:11:57 +0100 | [diff] [blame] | 4306 | int oncethru = 0; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4307 | pgoff_t index = pos >> PAGE_SHIFT; |
| 4308 | loff_t offset = pos & (PAGE_SIZE - 1); |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 4309 | loff_t page_start = pos & PAGE_MASK; |
| 4310 | loff_t i_size; |
| 4311 | struct page *page; |
| 4312 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4313 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4314 | cifs_dbg(FYI, "write_begin from %lld len %d\n", (long long)pos, len); |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 4315 | |
Sachin Prabhu | 466bd31 | 2013-09-13 14:11:57 +0100 | [diff] [blame] | 4316 | start: |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 4317 | page = grab_cache_page_write_begin(mapping, index, flags); |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 4318 | if (!page) { |
| 4319 | rc = -ENOMEM; |
| 4320 | goto out; |
| 4321 | } |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 4322 | |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 4323 | if (PageUptodate(page)) |
| 4324 | goto out; |
Steve French | 8a23626 | 2007-03-06 00:31:00 +0000 | [diff] [blame] | 4325 | |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 4326 | /* |
| 4327 | * If we write a full page it will be up to date, no need to read from |
| 4328 | * the server. If the write is short, we'll end up doing a sync write |
| 4329 | * instead. |
| 4330 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4331 | if (len == PAGE_SIZE) |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 4332 | goto out; |
| 4333 | |
| 4334 | /* |
| 4335 | * optimize away the read when we have an oplock, and we're not |
| 4336 | * expecting to use any of the data we'd be reading in. That |
| 4337 | * is, when the page lies beyond the EOF, or straddles the EOF |
| 4338 | * and the write will cover all of the existing data. |
| 4339 | */ |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 4340 | if (CIFS_CACHE_READ(CIFS_I(mapping->host))) { |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 4341 | i_size = i_size_read(mapping->host); |
| 4342 | if (page_start >= i_size || |
| 4343 | (offset == 0 && (pos + len) >= i_size)) { |
| 4344 | zero_user_segments(page, 0, offset, |
| 4345 | offset + len, |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4346 | PAGE_SIZE); |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 4347 | /* |
| 4348 | * PageChecked means that the parts of the page |
| 4349 | * to which we're not writing are considered up |
| 4350 | * to date. Once the data is copied to the |
| 4351 | * page, it can be set uptodate. |
| 4352 | */ |
| 4353 | SetPageChecked(page); |
| 4354 | goto out; |
| 4355 | } |
| 4356 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4357 | |
Sachin Prabhu | 466bd31 | 2013-09-13 14:11:57 +0100 | [diff] [blame] | 4358 | if ((file->f_flags & O_ACCMODE) != O_WRONLY && !oncethru) { |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 4359 | /* |
| 4360 | * might as well read a page, it is fast enough. If we get |
| 4361 | * an error, we don't need to return it. cifs_write_end will |
| 4362 | * do a sync write instead since PG_uptodate isn't set. |
| 4363 | */ |
| 4364 | cifs_readpage_worker(file, page, &page_start); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4365 | put_page(page); |
Sachin Prabhu | 466bd31 | 2013-09-13 14:11:57 +0100 | [diff] [blame] | 4366 | oncethru = 1; |
| 4367 | goto start; |
Steve French | 8a23626 | 2007-03-06 00:31:00 +0000 | [diff] [blame] | 4368 | } else { |
| 4369 | /* we could try using another file handle if there is one - |
| 4370 | but how would we lock it to prevent close of that handle |
| 4371 | racing with this read? In any case |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 4372 | this will be written out by write_end so is fine */ |
Steve French | 8a23626 | 2007-03-06 00:31:00 +0000 | [diff] [blame] | 4373 | } |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 4374 | out: |
| 4375 | *pagep = page; |
| 4376 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4377 | } |
| 4378 | |
Suresh Jayaraman | 85f2d6b | 2010-07-05 18:13:00 +0530 | [diff] [blame] | 4379 | static int cifs_release_page(struct page *page, gfp_t gfp) |
| 4380 | { |
| 4381 | if (PagePrivate(page)) |
| 4382 | return 0; |
| 4383 | |
| 4384 | return cifs_fscache_release_page(page, gfp); |
| 4385 | } |
| 4386 | |
Lukas Czerner | d47992f | 2013-05-21 23:17:23 -0400 | [diff] [blame] | 4387 | static void cifs_invalidate_page(struct page *page, unsigned int offset, |
| 4388 | unsigned int length) |
Suresh Jayaraman | 85f2d6b | 2010-07-05 18:13:00 +0530 | [diff] [blame] | 4389 | { |
| 4390 | struct cifsInodeInfo *cifsi = CIFS_I(page->mapping->host); |
| 4391 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4392 | if (offset == 0 && length == PAGE_SIZE) |
Suresh Jayaraman | 85f2d6b | 2010-07-05 18:13:00 +0530 | [diff] [blame] | 4393 | cifs_fscache_invalidate_page(page, &cifsi->vfs_inode); |
| 4394 | } |
| 4395 | |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 4396 | static int cifs_launder_page(struct page *page) |
| 4397 | { |
| 4398 | int rc = 0; |
| 4399 | loff_t range_start = page_offset(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4400 | loff_t range_end = range_start + (loff_t)(PAGE_SIZE - 1); |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 4401 | struct writeback_control wbc = { |
| 4402 | .sync_mode = WB_SYNC_ALL, |
| 4403 | .nr_to_write = 0, |
| 4404 | .range_start = range_start, |
| 4405 | .range_end = range_end, |
| 4406 | }; |
| 4407 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4408 | cifs_dbg(FYI, "Launder page: %p\n", page); |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 4409 | |
| 4410 | if (clear_page_dirty_for_io(page)) |
| 4411 | rc = cifs_writepage_locked(page, &wbc); |
| 4412 | |
| 4413 | cifs_fscache_invalidate_page(page, page->mapping->host); |
| 4414 | return rc; |
| 4415 | } |
| 4416 | |
Tejun Heo | 9b64697 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 4417 | void cifs_oplock_break(struct work_struct *work) |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 4418 | { |
| 4419 | struct cifsFileInfo *cfile = container_of(work, struct cifsFileInfo, |
| 4420 | oplock_break); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 4421 | struct inode *inode = d_inode(cfile->dentry); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 4422 | struct cifsInodeInfo *cinode = CIFS_I(inode); |
Pavel Shilovsky | 95a3f2f | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 4423 | struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 4424 | struct TCP_Server_Info *server = tcon->ses->server; |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 4425 | int rc = 0; |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 4426 | |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 4427 | wait_on_bit(&cinode->flags, CIFS_INODE_PENDING_WRITERS, |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 4428 | TASK_UNINTERRUPTIBLE); |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 4429 | |
| 4430 | server->ops->downgrade_oplock(server, cinode, |
| 4431 | test_bit(CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2, &cinode->flags)); |
| 4432 | |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 4433 | if (!CIFS_CACHE_WRITE(cinode) && CIFS_CACHE_READ(cinode) && |
Pavel Shilovsky | 63b7d3a | 2012-12-24 14:41:19 +0400 | [diff] [blame] | 4434 | cifs_has_mand_locks(cinode)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4435 | cifs_dbg(FYI, "Reset oplock to None for inode=%p due to mand locks\n", |
| 4436 | inode); |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 4437 | cinode->oplock = 0; |
Pavel Shilovsky | 63b7d3a | 2012-12-24 14:41:19 +0400 | [diff] [blame] | 4438 | } |
| 4439 | |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 4440 | if (inode && S_ISREG(inode->i_mode)) { |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 4441 | if (CIFS_CACHE_READ(cinode)) |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 4442 | break_lease(inode, O_RDONLY); |
Steve French | d54ff73 | 2010-04-27 04:38:15 +0000 | [diff] [blame] | 4443 | else |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 4444 | break_lease(inode, O_WRONLY); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 4445 | rc = filemap_fdatawrite(inode->i_mapping); |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 4446 | if (!CIFS_CACHE_READ(cinode)) { |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 4447 | rc = filemap_fdatawait(inode->i_mapping); |
| 4448 | mapping_set_error(inode->i_mapping, rc); |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 4449 | cifs_zap_mapping(inode); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 4450 | } |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4451 | cifs_dbg(FYI, "Oplock flush inode %p rc %d\n", inode, rc); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 4452 | } |
| 4453 | |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 4454 | rc = cifs_push_locks(cfile); |
| 4455 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4456 | cifs_dbg(VFS, "Push locks rc = %d\n", rc); |
Pavel Shilovsky | 85160e0 | 2011-10-22 15:33:29 +0400 | [diff] [blame] | 4457 | |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 4458 | /* |
| 4459 | * releasing stale oplock after recent reconnect of smb session using |
| 4460 | * a now incorrect file handle is not a data integrity issue but do |
| 4461 | * not bother sending an oplock release if session to server still is |
| 4462 | * disconnected since oplock already released by the server |
| 4463 | */ |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 4464 | if (!cfile->oplock_break_cancelled) { |
Pavel Shilovsky | 95a3f2f | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 4465 | rc = tcon->ses->server->ops->oplock_response(tcon, &cfile->fid, |
| 4466 | cinode); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4467 | cifs_dbg(FYI, "Oplock release rc = %d\n", rc); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 4468 | } |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 4469 | cifs_done_oplock_break(cinode); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 4470 | } |
| 4471 | |
Steve French | dca6928 | 2013-11-11 16:42:37 -0600 | [diff] [blame] | 4472 | /* |
| 4473 | * The presence of cifs_direct_io() in the address space ops vector |
| 4474 | * allowes open() O_DIRECT flags which would have failed otherwise. |
| 4475 | * |
| 4476 | * In the non-cached mode (mount with cache=none), we shunt off direct read and write requests |
| 4477 | * so this method should never be called. |
| 4478 | * |
| 4479 | * Direct IO is not yet supported in the cached mode. |
| 4480 | */ |
| 4481 | static ssize_t |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 4482 | cifs_direct_io(struct kiocb *iocb, struct iov_iter *iter) |
Steve French | dca6928 | 2013-11-11 16:42:37 -0600 | [diff] [blame] | 4483 | { |
| 4484 | /* |
| 4485 | * FIXME |
| 4486 | * Eventually need to support direct IO for non forcedirectio mounts |
| 4487 | */ |
| 4488 | return -EINVAL; |
| 4489 | } |
| 4490 | |
| 4491 | |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 4492 | const struct address_space_operations cifs_addr_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4493 | .readpage = cifs_readpage, |
| 4494 | .readpages = cifs_readpages, |
| 4495 | .writepage = cifs_writepage, |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 4496 | .writepages = cifs_writepages, |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 4497 | .write_begin = cifs_write_begin, |
| 4498 | .write_end = cifs_write_end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4499 | .set_page_dirty = __set_page_dirty_nobuffers, |
Suresh Jayaraman | 85f2d6b | 2010-07-05 18:13:00 +0530 | [diff] [blame] | 4500 | .releasepage = cifs_release_page, |
Steve French | dca6928 | 2013-11-11 16:42:37 -0600 | [diff] [blame] | 4501 | .direct_IO = cifs_direct_io, |
Suresh Jayaraman | 85f2d6b | 2010-07-05 18:13:00 +0530 | [diff] [blame] | 4502 | .invalidatepage = cifs_invalidate_page, |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 4503 | .launder_page = cifs_launder_page, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4504 | }; |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 4505 | |
| 4506 | /* |
| 4507 | * cifs_readpages requires the server to support a buffer large enough to |
| 4508 | * contain the header plus one complete page of data. Otherwise, we need |
| 4509 | * to leave cifs_readpages out of the address space operations. |
| 4510 | */ |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 4511 | const struct address_space_operations cifs_addr_ops_smallbuf = { |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 4512 | .readpage = cifs_readpage, |
| 4513 | .writepage = cifs_writepage, |
| 4514 | .writepages = cifs_writepages, |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 4515 | .write_begin = cifs_write_begin, |
| 4516 | .write_end = cifs_write_end, |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 4517 | .set_page_dirty = __set_page_dirty_nobuffers, |
Suresh Jayaraman | 85f2d6b | 2010-07-05 18:13:00 +0530 | [diff] [blame] | 4518 | .releasepage = cifs_release_page, |
| 4519 | .invalidatepage = cifs_invalidate_page, |
Pavel Shilovsky | 9ad1506 | 2011-04-08 05:29:10 +0400 | [diff] [blame] | 4520 | .launder_page = cifs_launder_page, |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 4521 | }; |