blob: f069765b5f79a811ecdd1c62de137ea935a1a1c7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/file.c
3 *
4 * vfs operations that deal with files
Steve Frenchfb8c4b12007-07-10 01:16:18 +00005 *
Steve Frenchf19159d2010-04-21 04:12:10 +00006 * Copyright (C) International Business Machines Corp., 2002,2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Author(s): Steve French (sfrench@us.ibm.com)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00008 * Jeremy Allison (jra@samba.org)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
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 French37c0eb42005-10-05 14:50:29 -070025#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/stat.h>
27#include <linux/fcntl.h>
28#include <linux/pagemap.h>
29#include <linux/pagevec.h>
Steve French37c0eb42005-10-05 14:50:29 -070030#include <linux/writeback.h>
Andrew Morton6f88cc22006-12-10 02:19:44 -080031#include <linux/task_io_accounting_ops.h>
Steve French23e7dd72005-10-20 13:44:56 -070032#include <linux/delay.h>
Jeff Layton3bc303c2009-09-21 06:47:50 -040033#include <linux/mount.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Jeff Layton690c5e32011-10-19 15:30:16 -040035#include <linux/swap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/div64.h>
37#include "cifsfs.h"
38#include "cifspdu.h"
39#include "cifsglob.h"
40#include "cifsproto.h"
41#include "cifs_unicode.h"
42#include "cifs_debug.h"
43#include "cifs_fs_sb.h"
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +053044#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static inline int cifs_convert_flags(unsigned int flags)
47{
48 if ((flags & O_ACCMODE) == O_RDONLY)
49 return GENERIC_READ;
50 else if ((flags & O_ACCMODE) == O_WRONLY)
51 return GENERIC_WRITE;
52 else if ((flags & O_ACCMODE) == O_RDWR) {
53 /* GENERIC_ALL is too much permission to request
54 can cause unnecessary access denied on create */
55 /* return GENERIC_ALL; */
56 return (GENERIC_READ | GENERIC_WRITE);
57 }
58
Jeff Laytone10f7b52008-05-14 10:21:33 -070059 return (READ_CONTROL | FILE_WRITE_ATTRIBUTES | FILE_READ_ATTRIBUTES |
60 FILE_WRITE_EA | FILE_APPEND_DATA | FILE_WRITE_DATA |
61 FILE_READ_DATA);
Steve French7fc8f4e2009-02-23 20:43:11 +000062}
Jeff Laytone10f7b52008-05-14 10:21:33 -070063
Jeff Layton608712f2010-10-15 15:33:56 -040064static u32 cifs_posix_convert_flags(unsigned int flags)
Steve French7fc8f4e2009-02-23 20:43:11 +000065{
Jeff Layton608712f2010-10-15 15:33:56 -040066 u32 posix_flags = 0;
Jeff Laytone10f7b52008-05-14 10:21:33 -070067
Steve French7fc8f4e2009-02-23 20:43:11 +000068 if ((flags & O_ACCMODE) == O_RDONLY)
Jeff Layton608712f2010-10-15 15:33:56 -040069 posix_flags = SMB_O_RDONLY;
Steve French7fc8f4e2009-02-23 20:43:11 +000070 else if ((flags & O_ACCMODE) == O_WRONLY)
Jeff Layton608712f2010-10-15 15:33:56 -040071 posix_flags = SMB_O_WRONLY;
72 else if ((flags & O_ACCMODE) == O_RDWR)
73 posix_flags = SMB_O_RDWR;
74
75 if (flags & O_CREAT)
76 posix_flags |= SMB_O_CREAT;
77 if (flags & O_EXCL)
78 posix_flags |= SMB_O_EXCL;
79 if (flags & O_TRUNC)
80 posix_flags |= SMB_O_TRUNC;
81 /* be safe and imply O_SYNC for O_DSYNC */
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +010082 if (flags & O_DSYNC)
Jeff Layton608712f2010-10-15 15:33:56 -040083 posix_flags |= SMB_O_SYNC;
Steve French7fc8f4e2009-02-23 20:43:11 +000084 if (flags & O_DIRECTORY)
Jeff Layton608712f2010-10-15 15:33:56 -040085 posix_flags |= SMB_O_DIRECTORY;
Steve French7fc8f4e2009-02-23 20:43:11 +000086 if (flags & O_NOFOLLOW)
Jeff Layton608712f2010-10-15 15:33:56 -040087 posix_flags |= SMB_O_NOFOLLOW;
Steve French7fc8f4e2009-02-23 20:43:11 +000088 if (flags & O_DIRECT)
Jeff Layton608712f2010-10-15 15:33:56 -040089 posix_flags |= SMB_O_DIRECT;
Steve French7fc8f4e2009-02-23 20:43:11 +000090
91 return posix_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94static inline int cifs_get_disposition(unsigned int flags)
95{
96 if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
97 return FILE_CREATE;
98 else if ((flags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC))
99 return FILE_OVERWRITE_IF;
100 else if ((flags & O_CREAT) == O_CREAT)
101 return FILE_OPEN_IF;
Steve French55aa2e02006-05-30 18:09:31 +0000102 else if ((flags & O_TRUNC) == O_TRUNC)
103 return FILE_OVERWRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 else
105 return FILE_OPEN;
106}
107
Jeff Layton608712f2010-10-15 15:33:56 -0400108int cifs_posix_open(char *full_path, struct inode **pinode,
109 struct super_block *sb, int mode, unsigned int f_flags,
110 __u32 *poplock, __u16 *pnetfid, int xid)
111{
112 int rc;
113 FILE_UNIX_BASIC_INFO *presp_data;
114 __u32 posix_flags = 0;
115 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
116 struct cifs_fattr fattr;
117 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +0000118 struct cifs_tcon *tcon;
Jeff Layton608712f2010-10-15 15:33:56 -0400119
120 cFYI(1, "posix open %s", full_path);
121
122 presp_data = kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL);
123 if (presp_data == NULL)
124 return -ENOMEM;
125
126 tlink = cifs_sb_tlink(cifs_sb);
127 if (IS_ERR(tlink)) {
128 rc = PTR_ERR(tlink);
129 goto posix_open_ret;
130 }
131
132 tcon = tlink_tcon(tlink);
133 mode &= ~current_umask();
134
135 posix_flags = cifs_posix_convert_flags(f_flags);
136 rc = CIFSPOSIXCreate(xid, tcon, posix_flags, mode, pnetfid, presp_data,
137 poplock, full_path, cifs_sb->local_nls,
138 cifs_sb->mnt_cifs_flags &
139 CIFS_MOUNT_MAP_SPECIAL_CHR);
140 cifs_put_tlink(tlink);
141
142 if (rc)
143 goto posix_open_ret;
144
145 if (presp_data->Type == cpu_to_le32(-1))
146 goto posix_open_ret; /* open ok, caller does qpathinfo */
147
148 if (!pinode)
149 goto posix_open_ret; /* caller does not need info */
150
151 cifs_unix_basic_to_fattr(&fattr, presp_data, cifs_sb);
152
153 /* get new inode and set it up */
154 if (*pinode == NULL) {
155 cifs_fill_uniqueid(sb, &fattr);
156 *pinode = cifs_iget(sb, &fattr);
157 if (!*pinode) {
158 rc = -ENOMEM;
159 goto posix_open_ret;
160 }
161 } else {
162 cifs_fattr_to_inode(*pinode, &fattr);
163 }
164
165posix_open_ret:
166 kfree(presp_data);
167 return rc;
168}
169
Pavel Shilovskyeeb910a2010-11-25 15:12:39 +0300170static int
171cifs_nt_open(char *full_path, struct inode *inode, struct cifs_sb_info *cifs_sb,
Steve French96daf2b2011-05-27 04:34:02 +0000172 struct cifs_tcon *tcon, unsigned int f_flags, __u32 *poplock,
Pavel Shilovskyeeb910a2010-11-25 15:12:39 +0300173 __u16 *pnetfid, int xid)
174{
175 int rc;
176 int desiredAccess;
177 int disposition;
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500178 int create_options = CREATE_NOT_DIR;
Pavel Shilovskyeeb910a2010-11-25 15:12:39 +0300179 FILE_ALL_INFO *buf;
180
181 desiredAccess = cifs_convert_flags(f_flags);
182
183/*********************************************************************
184 * open flag mapping table:
185 *
186 * POSIX Flag CIFS Disposition
187 * ---------- ----------------
188 * O_CREAT FILE_OPEN_IF
189 * O_CREAT | O_EXCL FILE_CREATE
190 * O_CREAT | O_TRUNC FILE_OVERWRITE_IF
191 * O_TRUNC FILE_OVERWRITE
192 * none of the above FILE_OPEN
193 *
194 * Note that there is not a direct match between disposition
195 * FILE_SUPERSEDE (ie create whether or not file exists although
196 * O_CREAT | O_TRUNC is similar but truncates the existing
197 * file rather than creating a new file as FILE_SUPERSEDE does
198 * (which uses the attributes / metadata passed in on open call)
199 *?
200 *? O_SYNC is a reasonable match to CIFS writethrough flag
201 *? and the read write flags match reasonably. O_LARGEFILE
202 *? is irrelevant because largefile support is always used
203 *? by this client. Flags O_APPEND, O_DIRECT, O_DIRECTORY,
204 * O_FASYNC, O_NOFOLLOW, O_NONBLOCK need further investigation
205 *********************************************************************/
206
207 disposition = cifs_get_disposition(f_flags);
208
209 /* BB pass O_SYNC flag through on file attributes .. BB */
210
211 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
212 if (!buf)
213 return -ENOMEM;
214
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500215 if (backup_cred(cifs_sb))
216 create_options |= CREATE_OPEN_BACKUP_INTENT;
217
Pavel Shilovskyeeb910a2010-11-25 15:12:39 +0300218 if (tcon->ses->capabilities & CAP_NT_SMBS)
219 rc = CIFSSMBOpen(xid, tcon, full_path, disposition,
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500220 desiredAccess, create_options, pnetfid, poplock, buf,
Pavel Shilovskyeeb910a2010-11-25 15:12:39 +0300221 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags
222 & CIFS_MOUNT_MAP_SPECIAL_CHR);
223 else
224 rc = SMBLegacyOpen(xid, tcon, full_path, disposition,
225 desiredAccess, CREATE_NOT_DIR, pnetfid, poplock, buf,
226 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags
227 & CIFS_MOUNT_MAP_SPECIAL_CHR);
228
229 if (rc)
230 goto out;
231
232 if (tcon->unix_ext)
233 rc = cifs_get_inode_info_unix(&inode, full_path, inode->i_sb,
234 xid);
235 else
236 rc = cifs_get_inode_info(&inode, full_path, buf, inode->i_sb,
237 xid, pnetfid);
238
239out:
240 kfree(buf);
241 return rc;
242}
243
Jeff Layton15ecb432010-10-15 15:34:02 -0400244struct cifsFileInfo *
245cifs_new_fileinfo(__u16 fileHandle, struct file *file,
246 struct tcon_link *tlink, __u32 oplock)
247{
248 struct dentry *dentry = file->f_path.dentry;
249 struct inode *inode = dentry->d_inode;
250 struct cifsInodeInfo *pCifsInode = CIFS_I(inode);
251 struct cifsFileInfo *pCifsFile;
252
253 pCifsFile = kzalloc(sizeof(struct cifsFileInfo), GFP_KERNEL);
254 if (pCifsFile == NULL)
255 return pCifsFile;
256
Jeff Layton5f6dbc92010-10-15 15:34:06 -0400257 pCifsFile->count = 1;
Jeff Layton15ecb432010-10-15 15:34:02 -0400258 pCifsFile->netfid = fileHandle;
259 pCifsFile->pid = current->tgid;
260 pCifsFile->uid = current_fsuid();
261 pCifsFile->dentry = dget(dentry);
262 pCifsFile->f_flags = file->f_flags;
263 pCifsFile->invalidHandle = false;
Jeff Layton15ecb432010-10-15 15:34:02 -0400264 pCifsFile->tlink = cifs_get_tlink(tlink);
265 mutex_init(&pCifsFile->fh_mutex);
Jeff Layton15ecb432010-10-15 15:34:02 -0400266 INIT_WORK(&pCifsFile->oplock_break, cifs_oplock_break);
267
Mateusz Guzik64ac0802013-03-08 16:30:03 +0100268 cifs_sb_active(inode->i_sb);
269
Jeff Layton44772882010-10-15 15:34:03 -0400270 spin_lock(&cifs_file_list_lock);
Jeff Layton15ecb432010-10-15 15:34:02 -0400271 list_add(&pCifsFile->tlist, &(tlink_tcon(tlink)->openFileList));
272 /* if readable file instance put first in list*/
273 if (file->f_mode & FMODE_READ)
274 list_add(&pCifsFile->flist, &pCifsInode->openFileList);
275 else
276 list_add_tail(&pCifsFile->flist, &pCifsInode->openFileList);
Jeff Layton44772882010-10-15 15:34:03 -0400277 spin_unlock(&cifs_file_list_lock);
Jeff Layton15ecb432010-10-15 15:34:02 -0400278
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300279 cifs_set_oplock_level(pCifsInode, oplock);
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400280 pCifsInode->can_cache_brlcks = pCifsInode->clientCanCacheAll;
Jeff Layton15ecb432010-10-15 15:34:02 -0400281
282 file->private_data = pCifsFile;
283 return pCifsFile;
284}
285
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400286static void cifs_del_lock_waiters(struct cifsLockInfo *lock);
287
Steve Frenchcdff08e2010-10-21 22:46:14 +0000288/*
289 * Release a reference on the file private data. This may involve closing
Jeff Layton5f6dbc92010-10-15 15:34:06 -0400290 * the filehandle out on the server. Must be called without holding
291 * cifs_file_list_lock.
Steve Frenchcdff08e2010-10-21 22:46:14 +0000292 */
Jeff Laytonb33879a2010-10-15 15:34:04 -0400293void cifsFileInfo_put(struct cifsFileInfo *cifs_file)
294{
Pavel Shilovskye66673e2010-11-02 12:00:42 +0300295 struct inode *inode = cifs_file->dentry->d_inode;
Steve French96daf2b2011-05-27 04:34:02 +0000296 struct cifs_tcon *tcon = tlink_tcon(cifs_file->tlink);
Pavel Shilovskye66673e2010-11-02 12:00:42 +0300297 struct cifsInodeInfo *cifsi = CIFS_I(inode);
Mateusz Guzik64ac0802013-03-08 16:30:03 +0100298 struct super_block *sb = inode->i_sb;
299 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Steve Frenchcdff08e2010-10-21 22:46:14 +0000300 struct cifsLockInfo *li, *tmp;
301
302 spin_lock(&cifs_file_list_lock);
Jeff Layton5f6dbc92010-10-15 15:34:06 -0400303 if (--cifs_file->count > 0) {
Steve Frenchcdff08e2010-10-21 22:46:14 +0000304 spin_unlock(&cifs_file_list_lock);
305 return;
Jeff Laytonb33879a2010-10-15 15:34:04 -0400306 }
Steve Frenchcdff08e2010-10-21 22:46:14 +0000307
308 /* remove it from the lists */
309 list_del(&cifs_file->flist);
310 list_del(&cifs_file->tlist);
311
312 if (list_empty(&cifsi->openFileList)) {
313 cFYI(1, "closing last open instance for inode %p",
314 cifs_file->dentry->d_inode);
Pavel Shilovsky4f8ba8a2010-11-21 22:36:12 +0300315
316 /* in strict cache mode we need invalidate mapping on the last
317 close because it may cause a error when we open this file
318 again and get at least level II oplock */
319 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO)
320 CIFS_I(inode)->invalid_mapping = true;
321
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300322 cifs_set_oplock_level(cifsi, 0);
Steve Frenchcdff08e2010-10-21 22:46:14 +0000323 }
324 spin_unlock(&cifs_file_list_lock);
325
Jeff Laytonad635942011-07-26 12:20:17 -0400326 cancel_work_sync(&cifs_file->oplock_break);
327
Steve Frenchcdff08e2010-10-21 22:46:14 +0000328 if (!tcon->need_reconnect && !cifs_file->invalidHandle) {
329 int xid, rc;
330
331 xid = GetXid();
332 rc = CIFSSMBClose(xid, tcon, cifs_file->netfid);
333 FreeXid(xid);
334 }
335
336 /* Delete any outstanding lock records. We'll lose them when the file
337 * is closed anyway.
338 */
Pavel Shilovskyd59dad22011-09-22 09:53:59 +0400339 mutex_lock(&cifsi->lock_mutex);
340 list_for_each_entry_safe(li, tmp, &cifsi->llist, llist) {
341 if (li->netfid != cifs_file->netfid)
342 continue;
Steve Frenchcdff08e2010-10-21 22:46:14 +0000343 list_del(&li->llist);
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400344 cifs_del_lock_waiters(li);
Steve Frenchcdff08e2010-10-21 22:46:14 +0000345 kfree(li);
346 }
Pavel Shilovskyd59dad22011-09-22 09:53:59 +0400347 mutex_unlock(&cifsi->lock_mutex);
Steve Frenchcdff08e2010-10-21 22:46:14 +0000348
349 cifs_put_tlink(cifs_file->tlink);
350 dput(cifs_file->dentry);
Mateusz Guzik64ac0802013-03-08 16:30:03 +0100351 cifs_sb_deactive(sb);
Steve Frenchcdff08e2010-10-21 22:46:14 +0000352 kfree(cifs_file);
Jeff Laytonb33879a2010-10-15 15:34:04 -0400353}
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355int cifs_open(struct inode *inode, struct file *file)
356{
357 int rc = -EACCES;
Jeff Layton590a3fe2009-09-12 11:54:28 -0400358 int xid;
359 __u32 oplock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 struct cifs_sb_info *cifs_sb;
Steve French96daf2b2011-05-27 04:34:02 +0000361 struct cifs_tcon *tcon;
Jeff Layton7ffec372010-09-29 19:51:11 -0400362 struct tcon_link *tlink;
Jeff Layton6ca9f3b2010-06-16 13:40:16 -0400363 struct cifsFileInfo *pCifsFile = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 char *full_path = NULL;
Pavel Shilovsky7e12edd2010-11-25 17:20:20 +0300365 bool posix_open_ok = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 __u16 netfid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 xid = GetXid();
369
370 cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -0400371 tlink = cifs_sb_tlink(cifs_sb);
372 if (IS_ERR(tlink)) {
373 FreeXid(xid);
374 return PTR_ERR(tlink);
375 }
376 tcon = tlink_tcon(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800378 full_path = build_path_from_dentry(file->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530380 rc = -ENOMEM;
Jeff Layton232341b2010-08-05 13:58:38 -0400381 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
Joe Perchesb6b38f72010-04-21 03:50:45 +0000384 cFYI(1, "inode = 0x%p file flags are 0x%x for %s",
385 inode, file->f_flags, full_path);
Steve French276a74a2009-03-03 18:00:34 +0000386
Pavel Shilovsky10b9b982012-03-20 12:55:09 +0300387 if (tcon->ses->server->oplocks)
Steve French276a74a2009-03-03 18:00:34 +0000388 oplock = REQ_OPLOCK;
389 else
390 oplock = 0;
391
Steve French64cc2c62009-03-04 19:54:08 +0000392 if (!tcon->broken_posix_open && tcon->unix_ext &&
393 (tcon->ses->capabilities & CAP_UNIX) &&
Steve French276a74a2009-03-03 18:00:34 +0000394 (CIFS_UNIX_POSIX_PATH_OPS_CAP &
395 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
Steve French276a74a2009-03-03 18:00:34 +0000396 /* can not refresh inode info since size could be stale */
Jeff Layton2422f672010-06-16 13:40:16 -0400397 rc = cifs_posix_open(full_path, &inode, inode->i_sb,
Steve Frenchfa588e02010-04-22 19:21:55 +0000398 cifs_sb->mnt_file_mode /* ignored */,
Jeff Layton608712f2010-10-15 15:33:56 -0400399 file->f_flags, &oplock, &netfid, xid);
Steve French276a74a2009-03-03 18:00:34 +0000400 if (rc == 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000401 cFYI(1, "posix open succeeded");
Pavel Shilovsky7e12edd2010-11-25 17:20:20 +0300402 posix_open_ok = true;
Steve French64cc2c62009-03-04 19:54:08 +0000403 } else if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
404 if (tcon->ses->serverNOS)
Joe Perchesb6b38f72010-04-21 03:50:45 +0000405 cERROR(1, "server %s of type %s returned"
Steve French64cc2c62009-03-04 19:54:08 +0000406 " unexpected error on SMB posix open"
407 ", disabling posix open support."
408 " Check if server update available.",
409 tcon->ses->serverName,
Joe Perchesb6b38f72010-04-21 03:50:45 +0000410 tcon->ses->serverNOS);
Steve French64cc2c62009-03-04 19:54:08 +0000411 tcon->broken_posix_open = true;
Steve French276a74a2009-03-03 18:00:34 +0000412 } else if ((rc != -EIO) && (rc != -EREMOTE) &&
413 (rc != -EOPNOTSUPP)) /* path not found or net err */
414 goto out;
Steve French64cc2c62009-03-04 19:54:08 +0000415 /* else fallthrough to retry open the old way on network i/o
416 or DFS errors */
Steve French276a74a2009-03-03 18:00:34 +0000417 }
418
Pavel Shilovsky7e12edd2010-11-25 17:20:20 +0300419 if (!posix_open_ok) {
420 rc = cifs_nt_open(full_path, inode, cifs_sb, tcon,
421 file->f_flags, &oplock, &netfid, xid);
422 if (rc)
423 goto out;
424 }
Jeff Layton47c78b72010-06-16 13:40:17 -0400425
Jeff Laytonabfe1ee2010-10-15 15:33:58 -0400426 pCifsFile = cifs_new_fileinfo(netfid, file, tlink, oplock);
Jeff Layton6ca9f3b2010-06-16 13:40:16 -0400427 if (pCifsFile == NULL) {
Pavel Shilovsky7e12edd2010-11-25 17:20:20 +0300428 CIFSSMBClose(xid, tcon, netfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 rc = -ENOMEM;
430 goto out;
431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530433 cifs_fscache_set_inode_cookie(inode, file);
434
Pavel Shilovsky7e12edd2010-11-25 17:20:20 +0300435 if ((oplock & CIFS_CREATE_ACTION) && !posix_open_ok && tcon->unix_ext) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /* time to set mode which we can not set earlier due to
437 problems creating new read-only files */
Pavel Shilovsky7e12edd2010-11-25 17:20:20 +0300438 struct cifs_unix_set_info_args args = {
439 .mode = inode->i_mode,
440 .uid = NO_CHANGE_64,
441 .gid = NO_CHANGE_64,
442 .ctime = NO_CHANGE_64,
443 .atime = NO_CHANGE_64,
444 .mtime = NO_CHANGE_64,
445 .device = 0,
446 };
Jeff Laytond44a9fe2011-01-07 11:30:29 -0500447 CIFSSMBUnixSetFileInfo(xid, tcon, &args, netfid,
448 pCifsFile->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
451out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 kfree(full_path);
453 FreeXid(xid);
Jeff Layton7ffec372010-09-29 19:51:11 -0400454 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return rc;
456}
457
Adrian Bunk04187262006-06-30 18:23:04 +0200458/* Try to reacquire byte range locks that were released when session */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459/* to server was lost */
460static int cifs_relock_file(struct cifsFileInfo *cifsFile)
461{
462 int rc = 0;
463
464/* BB list all locks open on this file and relock */
465
466 return rc;
467}
468
Jeff Layton15886172010-10-15 15:33:59 -0400469static int cifs_reopen_file(struct cifsFileInfo *pCifsFile, bool can_flush)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 int rc = -EACCES;
Jeff Layton590a3fe2009-09-12 11:54:28 -0400472 int xid;
473 __u32 oplock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct cifs_sb_info *cifs_sb;
Steve French96daf2b2011-05-27 04:34:02 +0000475 struct cifs_tcon *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct cifsInodeInfo *pCifsInode;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000477 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 char *full_path = NULL;
479 int desiredAccess;
480 int disposition = FILE_OPEN;
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500481 int create_options = CREATE_NOT_DIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 __u16 netfid;
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 xid = GetXid();
Jeff Laytonf0a71eb2009-06-27 07:04:55 -0400485 mutex_lock(&pCifsFile->fh_mutex);
Steve French4b18f2a2008-04-29 00:06:05 +0000486 if (!pCifsFile->invalidHandle) {
Jeff Laytonf0a71eb2009-06-27 07:04:55 -0400487 mutex_unlock(&pCifsFile->fh_mutex);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530488 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530490 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
492
Jeff Layton15886172010-10-15 15:33:59 -0400493 inode = pCifsFile->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton13cfb732010-09-29 19:51:11 -0400495 tcon = tlink_tcon(pCifsFile->tlink);
Steve French3a9f4622007-04-04 17:10:24 +0000496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497/* can not grab rename sem here because various ops, including
498 those that already have the rename sem can end up causing writepage
499 to get called and if the server was down that means we end up here,
500 and we can never tell if the caller already has the rename_sem */
Jeff Layton15886172010-10-15 15:33:59 -0400501 full_path = build_path_from_dentry(pCifsFile->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (full_path == NULL) {
Steve French3a9f4622007-04-04 17:10:24 +0000503 rc = -ENOMEM;
Jeff Laytonf0a71eb2009-06-27 07:04:55 -0400504 mutex_unlock(&pCifsFile->fh_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 FreeXid(xid);
Steve French3a9f4622007-04-04 17:10:24 +0000506 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508
Joe Perchesb6b38f72010-04-21 03:50:45 +0000509 cFYI(1, "inode = 0x%p file flags 0x%x for %s",
Jeff Layton15886172010-10-15 15:33:59 -0400510 inode, pCifsFile->f_flags, full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Pavel Shilovsky10b9b982012-03-20 12:55:09 +0300512 if (tcon->ses->server->oplocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 oplock = REQ_OPLOCK;
514 else
Steve French4b18f2a2008-04-29 00:06:05 +0000515 oplock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Steve French7fc8f4e2009-02-23 20:43:11 +0000517 if (tcon->unix_ext && (tcon->ses->capabilities & CAP_UNIX) &&
518 (CIFS_UNIX_POSIX_PATH_OPS_CAP &
519 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
Jeff Layton608712f2010-10-15 15:33:56 -0400520
521 /*
522 * O_CREAT, O_EXCL and O_TRUNC already had their effect on the
523 * original open. Must mask them off for a reopen.
524 */
Jeff Layton15886172010-10-15 15:33:59 -0400525 unsigned int oflags = pCifsFile->f_flags &
526 ~(O_CREAT | O_EXCL | O_TRUNC);
Jeff Layton608712f2010-10-15 15:33:56 -0400527
Jeff Layton2422f672010-06-16 13:40:16 -0400528 rc = cifs_posix_open(full_path, NULL, inode->i_sb,
Steve Frenchfa588e02010-04-22 19:21:55 +0000529 cifs_sb->mnt_file_mode /* ignored */,
530 oflags, &oplock, &netfid, xid);
Steve French7fc8f4e2009-02-23 20:43:11 +0000531 if (rc == 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000532 cFYI(1, "posix reopen succeeded");
Steve French7fc8f4e2009-02-23 20:43:11 +0000533 goto reopen_success;
534 }
535 /* fallthrough to retry open the old way on errors, especially
536 in the reconnect path it is important to retry hard */
537 }
538
Jeff Layton15886172010-10-15 15:33:59 -0400539 desiredAccess = cifs_convert_flags(pCifsFile->f_flags);
Steve French7fc8f4e2009-02-23 20:43:11 +0000540
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500541 if (backup_cred(cifs_sb))
542 create_options |= CREATE_OPEN_BACKUP_INTENT;
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* Can not refresh inode by passing in file_info buf to be returned
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000545 by SMBOpen and then calling get_inode_info with returned buf
546 since file might have write behind data that needs to be flushed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 and server version of file size can be stale. If we knew for sure
548 that inode was not dirty locally we could do this */
549
Steve French7fc8f4e2009-02-23 20:43:11 +0000550 rc = CIFSSMBOpen(xid, tcon, full_path, disposition, desiredAccess,
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500551 create_options, &netfid, &oplock, NULL,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000552 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700553 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (rc) {
Jeff Laytonf0a71eb2009-06-27 07:04:55 -0400555 mutex_unlock(&pCifsFile->fh_mutex);
Joe Perchesb6b38f72010-04-21 03:50:45 +0000556 cFYI(1, "cifs_open returned 0x%x", rc);
557 cFYI(1, "oplock: %d", oplock);
Jeff Layton15886172010-10-15 15:33:59 -0400558 goto reopen_error_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
Jeff Layton15886172010-10-15 15:33:59 -0400560
561reopen_success:
562 pCifsFile->netfid = netfid;
563 pCifsFile->invalidHandle = false;
564 mutex_unlock(&pCifsFile->fh_mutex);
565 pCifsInode = CIFS_I(inode);
566
567 if (can_flush) {
568 rc = filemap_write_and_wait(inode->i_mapping);
Jeff Laytoneb4b7562010-10-22 14:52:29 -0400569 mapping_set_error(inode->i_mapping, rc);
Jeff Layton15886172010-10-15 15:33:59 -0400570
Jeff Layton15886172010-10-15 15:33:59 -0400571 if (tcon->unix_ext)
572 rc = cifs_get_inode_info_unix(&inode,
573 full_path, inode->i_sb, xid);
574 else
575 rc = cifs_get_inode_info(&inode,
576 full_path, NULL, inode->i_sb,
577 xid, NULL);
578 } /* else we are writing out data to server already
579 and could deadlock if we tried to flush data, and
580 since we do not know if we have data that would
581 invalidate the current end of file on the server
582 we can not go to the server to get the new inod
583 info */
Pavel Shilovskye66673e2010-11-02 12:00:42 +0300584
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300585 cifs_set_oplock_level(pCifsInode, oplock);
Pavel Shilovskye66673e2010-11-02 12:00:42 +0300586
Jeff Layton15886172010-10-15 15:33:59 -0400587 cifs_relock_file(pCifsFile);
588
589reopen_error_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 kfree(full_path);
591 FreeXid(xid);
592 return rc;
593}
594
595int cifs_close(struct inode *inode, struct file *file)
596{
Jeff Layton77970692011-04-05 16:23:47 -0700597 if (file->private_data != NULL) {
598 cifsFileInfo_put(file->private_data);
599 file->private_data = NULL;
600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Steve Frenchcdff08e2010-10-21 22:46:14 +0000602 /* return code from the ->release op is always ignored */
603 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
606int cifs_closedir(struct inode *inode, struct file *file)
607{
608 int rc = 0;
609 int xid;
Joe Perchesc21dfb62010-07-12 13:50:14 -0700610 struct cifsFileInfo *pCFileStruct = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 char *ptmp;
612
Joe Perchesb6b38f72010-04-21 03:50:45 +0000613 cFYI(1, "Closedir inode = 0x%p", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 xid = GetXid();
616
617 if (pCFileStruct) {
Steve French96daf2b2011-05-27 04:34:02 +0000618 struct cifs_tcon *pTcon = tlink_tcon(pCFileStruct->tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Joe Perchesb6b38f72010-04-21 03:50:45 +0000620 cFYI(1, "Freeing private data in close dir");
Jeff Layton44772882010-10-15 15:34:03 -0400621 spin_lock(&cifs_file_list_lock);
Steve French4b18f2a2008-04-29 00:06:05 +0000622 if (!pCFileStruct->srch_inf.endOfSearch &&
623 !pCFileStruct->invalidHandle) {
624 pCFileStruct->invalidHandle = true;
Jeff Layton44772882010-10-15 15:34:03 -0400625 spin_unlock(&cifs_file_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 rc = CIFSFindClose(xid, pTcon, pCFileStruct->netfid);
Joe Perchesb6b38f72010-04-21 03:50:45 +0000627 cFYI(1, "Closing uncompleted readdir with rc %d",
628 rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /* not much we can do if it fails anyway, ignore rc */
630 rc = 0;
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000631 } else
Jeff Layton44772882010-10-15 15:34:03 -0400632 spin_unlock(&cifs_file_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 ptmp = pCFileStruct->srch_inf.ntwrk_buf_start;
634 if (ptmp) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000635 cFYI(1, "closedir free smb buf in srch struct");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 pCFileStruct->srch_inf.ntwrk_buf_start = NULL;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000637 if (pCFileStruct->srch_inf.smallBuf)
Steve Frenchd47d7c12006-02-28 03:45:48 +0000638 cifs_small_buf_release(ptmp);
639 else
640 cifs_buf_release(ptmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
Jeff Layton13cfb732010-09-29 19:51:11 -0400642 cifs_put_tlink(pCFileStruct->tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 kfree(file->private_data);
644 file->private_data = NULL;
645 }
646 /* BB can we lock the filestruct while this is going on? */
647 FreeXid(xid);
648 return rc;
649}
650
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400651static struct cifsLockInfo *
Pavel Shilovskya88b4702011-10-29 17:17:59 +0400652cifs_lock_init(__u64 offset, __u64 length, __u8 type, __u16 netfid)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000653{
Pavel Shilovskya88b4702011-10-29 17:17:59 +0400654 struct cifsLockInfo *lock =
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000655 kmalloc(sizeof(struct cifsLockInfo), GFP_KERNEL);
Pavel Shilovskya88b4702011-10-29 17:17:59 +0400656 if (!lock)
657 return lock;
658 lock->offset = offset;
659 lock->length = length;
660 lock->type = type;
661 lock->netfid = netfid;
662 lock->pid = current->tgid;
663 INIT_LIST_HEAD(&lock->blist);
664 init_waitqueue_head(&lock->block_q);
665 return lock;
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400666}
667
668static void
669cifs_del_lock_waiters(struct cifsLockInfo *lock)
670{
671 struct cifsLockInfo *li, *tmp;
672 list_for_each_entry_safe(li, tmp, &lock->blist, blist) {
673 list_del_init(&li->blist);
674 wake_up(&li->block_q);
675 }
676}
677
678static bool
Pavel Shilovsky161ebf92011-10-29 17:17:58 +0400679__cifs_find_lock_conflict(struct cifsInodeInfo *cinode, __u64 offset,
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400680 __u64 length, __u8 type, __u16 netfid,
681 struct cifsLockInfo **conf_lock)
682{
683 struct cifsLockInfo *li, *tmp;
684
685 list_for_each_entry_safe(li, tmp, &cinode->llist, llist) {
686 if (offset + length <= li->offset ||
687 offset >= li->offset + li->length)
688 continue;
689 else if ((type & LOCKING_ANDX_SHARED_LOCK) &&
690 ((netfid == li->netfid && current->tgid == li->pid) ||
691 type == li->type))
692 continue;
693 else {
694 *conf_lock = li;
695 return true;
696 }
697 }
698 return false;
699}
700
Pavel Shilovsky161ebf92011-10-29 17:17:58 +0400701static bool
702cifs_find_lock_conflict(struct cifsInodeInfo *cinode, struct cifsLockInfo *lock,
703 struct cifsLockInfo **conf_lock)
704{
705 return __cifs_find_lock_conflict(cinode, lock->offset, lock->length,
706 lock->type, lock->netfid, conf_lock);
707}
708
Pavel Shilovsky9a5101c2011-11-07 16:11:24 +0300709/*
710 * Check if there is another lock that prevents us to set the lock (mandatory
711 * style). If such a lock exists, update the flock structure with its
712 * properties. Otherwise, set the flock type to F_UNLCK if we can cache brlocks
713 * or leave it the same if we can't. Returns 0 if we don't need to request to
714 * the server or 1 otherwise.
715 */
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400716static int
717cifs_lock_test(struct cifsInodeInfo *cinode, __u64 offset, __u64 length,
718 __u8 type, __u16 netfid, struct file_lock *flock)
719{
720 int rc = 0;
721 struct cifsLockInfo *conf_lock;
722 bool exist;
723
724 mutex_lock(&cinode->lock_mutex);
725
Pavel Shilovsky161ebf92011-10-29 17:17:58 +0400726 exist = __cifs_find_lock_conflict(cinode, offset, length, type, netfid,
727 &conf_lock);
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400728 if (exist) {
729 flock->fl_start = conf_lock->offset;
730 flock->fl_end = conf_lock->offset + conf_lock->length - 1;
731 flock->fl_pid = conf_lock->pid;
732 if (conf_lock->type & LOCKING_ANDX_SHARED_LOCK)
733 flock->fl_type = F_RDLCK;
734 else
735 flock->fl_type = F_WRLCK;
736 } else if (!cinode->can_cache_brlcks)
737 rc = 1;
738 else
739 flock->fl_type = F_UNLCK;
740
741 mutex_unlock(&cinode->lock_mutex);
742 return rc;
743}
744
Pavel Shilovsky161ebf92011-10-29 17:17:58 +0400745static void
746cifs_lock_add(struct cifsInodeInfo *cinode, struct cifsLockInfo *lock)
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400747{
Pavel Shilovskyd59dad22011-09-22 09:53:59 +0400748 mutex_lock(&cinode->lock_mutex);
Pavel Shilovsky161ebf92011-10-29 17:17:58 +0400749 list_add_tail(&lock->llist, &cinode->llist);
Pavel Shilovskyd59dad22011-09-22 09:53:59 +0400750 mutex_unlock(&cinode->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000751}
752
Pavel Shilovsky9a5101c2011-11-07 16:11:24 +0300753/*
754 * Set the byte-range lock (mandatory style). Returns:
755 * 1) 0, if we set the lock and don't need to request to the server;
756 * 2) 1, if no locks prevent us but we need to request to the server;
757 * 3) -EACCESS, if there is a lock that prevents us and wait is false.
758 */
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400759static int
Pavel Shilovsky161ebf92011-10-29 17:17:58 +0400760cifs_lock_add_if(struct cifsInodeInfo *cinode, struct cifsLockInfo *lock,
761 bool wait)
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400762{
Pavel Shilovsky161ebf92011-10-29 17:17:58 +0400763 struct cifsLockInfo *conf_lock;
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400764 bool exist;
765 int rc = 0;
766
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400767try_again:
768 exist = false;
769 mutex_lock(&cinode->lock_mutex);
770
Pavel Shilovsky161ebf92011-10-29 17:17:58 +0400771 exist = cifs_find_lock_conflict(cinode, lock, &conf_lock);
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400772 if (!exist && cinode->can_cache_brlcks) {
773 list_add_tail(&lock->llist, &cinode->llist);
774 mutex_unlock(&cinode->lock_mutex);
775 return rc;
776 }
777
778 if (!exist)
779 rc = 1;
780 else if (!wait)
781 rc = -EACCES;
782 else {
783 list_add_tail(&lock->blist, &conf_lock->blist);
784 mutex_unlock(&cinode->lock_mutex);
785 rc = wait_event_interruptible(lock->block_q,
786 (lock->blist.prev == &lock->blist) &&
787 (lock->blist.next == &lock->blist));
788 if (!rc)
789 goto try_again;
Pavel Shilovskya88b4702011-10-29 17:17:59 +0400790 mutex_lock(&cinode->lock_mutex);
791 list_del_init(&lock->blist);
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400792 }
793
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400794 mutex_unlock(&cinode->lock_mutex);
795 return rc;
796}
797
Pavel Shilovsky9a5101c2011-11-07 16:11:24 +0300798/*
799 * Check if there is another lock that prevents us to set the lock (posix
800 * style). If such a lock exists, update the flock structure with its
801 * properties. Otherwise, set the flock type to F_UNLCK if we can cache brlocks
802 * or leave it the same if we can't. Returns 0 if we don't need to request to
803 * the server or 1 otherwise.
804 */
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400805static int
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400806cifs_posix_lock_test(struct file *file, struct file_lock *flock)
807{
808 int rc = 0;
809 struct cifsInodeInfo *cinode = CIFS_I(file->f_path.dentry->d_inode);
810 unsigned char saved_type = flock->fl_type;
811
Pavel Shilovsky50792762011-10-29 17:17:57 +0400812 if ((flock->fl_flags & FL_POSIX) == 0)
813 return 1;
814
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400815 mutex_lock(&cinode->lock_mutex);
816 posix_test_lock(file, flock);
817
818 if (flock->fl_type == F_UNLCK && !cinode->can_cache_brlcks) {
819 flock->fl_type = saved_type;
820 rc = 1;
821 }
822
823 mutex_unlock(&cinode->lock_mutex);
824 return rc;
825}
826
Pavel Shilovsky9a5101c2011-11-07 16:11:24 +0300827/*
828 * Set the byte-range lock (posix style). Returns:
829 * 1) 0, if we set the lock and don't need to request to the server;
830 * 2) 1, if we need to request to the server;
831 * 3) <0, if the error occurs while setting the lock.
832 */
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400833static int
834cifs_posix_lock_set(struct file *file, struct file_lock *flock)
835{
836 struct cifsInodeInfo *cinode = CIFS_I(file->f_path.dentry->d_inode);
Pavel Shilovsky50792762011-10-29 17:17:57 +0400837 int rc = 1;
838
839 if ((flock->fl_flags & FL_POSIX) == 0)
840 return rc;
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400841
Pavel Shilovsky66189be2012-03-28 21:56:19 +0400842try_again:
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400843 mutex_lock(&cinode->lock_mutex);
844 if (!cinode->can_cache_brlcks) {
845 mutex_unlock(&cinode->lock_mutex);
Pavel Shilovsky50792762011-10-29 17:17:57 +0400846 return rc;
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400847 }
Pavel Shilovsky66189be2012-03-28 21:56:19 +0400848
849 rc = posix_lock_file(file, flock, NULL);
Steve French9ebb3892012-04-01 13:52:54 -0500850 mutex_unlock(&cinode->lock_mutex);
Pavel Shilovsky66189be2012-03-28 21:56:19 +0400851 if (rc == FILE_LOCK_DEFERRED) {
852 rc = wait_event_interruptible(flock->fl_wait, !flock->fl_next);
853 if (!rc)
854 goto try_again;
855 locks_delete_block(flock);
856 }
Steve French9ebb3892012-04-01 13:52:54 -0500857 return rc;
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400858}
859
860static int
861cifs_push_mandatory_locks(struct cifsFileInfo *cfile)
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400862{
863 int xid, rc = 0, stored_rc;
864 struct cifsLockInfo *li, *tmp;
865 struct cifs_tcon *tcon;
866 struct cifsInodeInfo *cinode = CIFS_I(cfile->dentry->d_inode);
Pavel Shilovsky32b9aaf2011-10-22 15:33:32 +0400867 unsigned int num, max_num;
868 LOCKING_ANDX_RANGE *buf, *cur;
869 int types[] = {LOCKING_ANDX_LARGE_FILES,
870 LOCKING_ANDX_SHARED_LOCK | LOCKING_ANDX_LARGE_FILES};
871 int i;
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400872
873 xid = GetXid();
874 tcon = tlink_tcon(cfile->tlink);
875
876 mutex_lock(&cinode->lock_mutex);
877 if (!cinode->can_cache_brlcks) {
878 mutex_unlock(&cinode->lock_mutex);
879 FreeXid(xid);
880 return rc;
881 }
882
Pavel Shilovsky32b9aaf2011-10-22 15:33:32 +0400883 max_num = (tcon->ses->server->maxBuf - sizeof(struct smb_hdr)) /
884 sizeof(LOCKING_ANDX_RANGE);
885 buf = kzalloc(max_num * sizeof(LOCKING_ANDX_RANGE), GFP_KERNEL);
886 if (!buf) {
887 mutex_unlock(&cinode->lock_mutex);
888 FreeXid(xid);
Pavel Shilovsky49487ca2012-08-29 21:13:38 +0400889 return -ENOMEM;
Pavel Shilovsky32b9aaf2011-10-22 15:33:32 +0400890 }
891
892 for (i = 0; i < 2; i++) {
893 cur = buf;
894 num = 0;
895 list_for_each_entry_safe(li, tmp, &cinode->llist, llist) {
896 if (li->type != types[i])
897 continue;
898 cur->Pid = cpu_to_le16(li->pid);
899 cur->LengthLow = cpu_to_le32((u32)li->length);
900 cur->LengthHigh = cpu_to_le32((u32)(li->length>>32));
901 cur->OffsetLow = cpu_to_le32((u32)li->offset);
902 cur->OffsetHigh = cpu_to_le32((u32)(li->offset>>32));
903 if (++num == max_num) {
904 stored_rc = cifs_lockv(xid, tcon, cfile->netfid,
905 li->type, 0, num, buf);
906 if (stored_rc)
907 rc = stored_rc;
908 cur = buf;
909 num = 0;
910 } else
911 cur++;
912 }
913
914 if (num) {
915 stored_rc = cifs_lockv(xid, tcon, cfile->netfid,
916 types[i], 0, num, buf);
917 if (stored_rc)
918 rc = stored_rc;
919 }
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400920 }
921
922 cinode->can_cache_brlcks = false;
923 mutex_unlock(&cinode->lock_mutex);
924
Pavel Shilovsky32b9aaf2011-10-22 15:33:32 +0400925 kfree(buf);
Pavel Shilovsky85160e02011-10-22 15:33:29 +0400926 FreeXid(xid);
927 return rc;
928}
929
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400930/* copied from fs/locks.c with a name change */
931#define cifs_for_each_lock(inode, lockp) \
932 for (lockp = &inode->i_flock; *lockp != NULL; \
933 lockp = &(*lockp)->fl_next)
934
Pavel Shilovskyd5751462012-03-05 09:39:20 +0300935struct lock_to_push {
936 struct list_head llist;
937 __u64 offset;
938 __u64 length;
939 __u32 pid;
940 __u16 netfid;
941 __u8 type;
942};
943
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400944static int
945cifs_push_posix_locks(struct cifsFileInfo *cfile)
946{
947 struct cifsInodeInfo *cinode = CIFS_I(cfile->dentry->d_inode);
948 struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
949 struct file_lock *flock, **before;
Pavel Shilovskyd5751462012-03-05 09:39:20 +0300950 unsigned int count = 0, i = 0;
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400951 int rc = 0, xid, type;
Pavel Shilovskyd5751462012-03-05 09:39:20 +0300952 struct list_head locks_to_send, *el;
953 struct lock_to_push *lck, *tmp;
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400954 __u64 length;
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400955
956 xid = GetXid();
957
958 mutex_lock(&cinode->lock_mutex);
959 if (!cinode->can_cache_brlcks) {
960 mutex_unlock(&cinode->lock_mutex);
961 FreeXid(xid);
962 return rc;
963 }
964
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400965 lock_flocks();
966 cifs_for_each_lock(cfile->dentry->d_inode, before) {
Pavel Shilovskyd5751462012-03-05 09:39:20 +0300967 if ((*before)->fl_flags & FL_POSIX)
968 count++;
969 }
970 unlock_flocks();
971
972 INIT_LIST_HEAD(&locks_to_send);
973
974 /*
Pavel Shilovskyce858522012-03-17 09:46:55 +0300975 * Allocating count locks is enough because no FL_POSIX locks can be
976 * added to the list while we are holding cinode->lock_mutex that
977 * protects locking operations of this inode.
Pavel Shilovskyd5751462012-03-05 09:39:20 +0300978 */
979 for (; i < count; i++) {
980 lck = kmalloc(sizeof(struct lock_to_push), GFP_KERNEL);
981 if (!lck) {
982 rc = -ENOMEM;
983 goto err_out;
984 }
985 list_add_tail(&lck->llist, &locks_to_send);
986 }
987
Pavel Shilovskyd5751462012-03-05 09:39:20 +0300988 el = locks_to_send.next;
989 lock_flocks();
990 cifs_for_each_lock(cfile->dentry->d_inode, before) {
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +0400991 flock = *before;
Pavel Shilovskyd5751462012-03-05 09:39:20 +0300992 if ((flock->fl_flags & FL_POSIX) == 0)
993 continue;
Pavel Shilovskyce858522012-03-17 09:46:55 +0300994 if (el == &locks_to_send) {
995 /*
996 * The list ended. We don't have enough allocated
997 * structures - something is really wrong.
998 */
999 cERROR(1, "Can't push all brlocks!");
1000 break;
1001 }
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04001002 length = 1 + flock->fl_end - flock->fl_start;
1003 if (flock->fl_type == F_RDLCK || flock->fl_type == F_SHLCK)
1004 type = CIFS_RDLCK;
1005 else
1006 type = CIFS_WRLCK;
Pavel Shilovskyd5751462012-03-05 09:39:20 +03001007 lck = list_entry(el, struct lock_to_push, llist);
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04001008 lck->pid = flock->fl_pid;
Pavel Shilovskyd5751462012-03-05 09:39:20 +03001009 lck->netfid = cfile->netfid;
1010 lck->length = length;
1011 lck->type = type;
1012 lck->offset = flock->fl_start;
Pavel Shilovskyd5751462012-03-05 09:39:20 +03001013 el = el->next;
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04001014 }
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04001015 unlock_flocks();
1016
1017 list_for_each_entry_safe(lck, tmp, &locks_to_send, llist) {
1018 struct file_lock tmp_lock;
1019 int stored_rc;
1020
1021 tmp_lock.fl_start = lck->offset;
1022 stored_rc = CIFSSMBPosixLock(xid, tcon, lck->netfid, lck->pid,
1023 0, lck->length, &tmp_lock,
1024 lck->type, 0);
1025 if (stored_rc)
1026 rc = stored_rc;
1027 list_del(&lck->llist);
1028 kfree(lck);
1029 }
1030
Pavel Shilovskyd5751462012-03-05 09:39:20 +03001031out:
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04001032 cinode->can_cache_brlcks = false;
1033 mutex_unlock(&cinode->lock_mutex);
1034
1035 FreeXid(xid);
1036 return rc;
Pavel Shilovskyd5751462012-03-05 09:39:20 +03001037err_out:
1038 list_for_each_entry_safe(lck, tmp, &locks_to_send, llist) {
1039 list_del(&lck->llist);
1040 kfree(lck);
1041 }
1042 goto out;
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04001043}
1044
1045static int
1046cifs_push_locks(struct cifsFileInfo *cfile)
1047{
1048 struct cifs_sb_info *cifs_sb = CIFS_SB(cfile->dentry->d_sb);
1049 struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
1050
1051 if ((tcon->ses->capabilities & CAP_UNIX) &&
1052 (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) &&
1053 ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0))
1054 return cifs_push_posix_locks(cfile);
1055
1056 return cifs_push_mandatory_locks(cfile);
1057}
1058
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001059static void
1060cifs_read_flock(struct file_lock *flock, __u8 *type, int *lock, int *unlock,
1061 bool *wait_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001063 if (flock->fl_flags & FL_POSIX)
Joe Perchesb6b38f72010-04-21 03:50:45 +00001064 cFYI(1, "Posix");
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001065 if (flock->fl_flags & FL_FLOCK)
Joe Perchesb6b38f72010-04-21 03:50:45 +00001066 cFYI(1, "Flock");
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001067 if (flock->fl_flags & FL_SLEEP) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001068 cFYI(1, "Blocking lock");
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001069 *wait_flag = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 }
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001071 if (flock->fl_flags & FL_ACCESS)
Joe Perchesb6b38f72010-04-21 03:50:45 +00001072 cFYI(1, "Process suspended by mandatory locking - "
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001073 "not implemented yet");
1074 if (flock->fl_flags & FL_LEASE)
Joe Perchesb6b38f72010-04-21 03:50:45 +00001075 cFYI(1, "Lease on file - not implemented yet");
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001076 if (flock->fl_flags &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 (~(FL_POSIX | FL_FLOCK | FL_SLEEP | FL_ACCESS | FL_LEASE)))
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001078 cFYI(1, "Unknown lock flags 0x%x", flock->fl_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001080 *type = LOCKING_ANDX_LARGE_FILES;
1081 if (flock->fl_type == F_WRLCK) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001082 cFYI(1, "F_WRLCK ");
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001083 *lock = 1;
1084 } else if (flock->fl_type == F_UNLCK) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001085 cFYI(1, "F_UNLCK");
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001086 *unlock = 1;
1087 /* Check if unlock includes more than one lock range */
1088 } else if (flock->fl_type == F_RDLCK) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001089 cFYI(1, "F_RDLCK");
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001090 *type |= LOCKING_ANDX_SHARED_LOCK;
1091 *lock = 1;
1092 } else if (flock->fl_type == F_EXLCK) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001093 cFYI(1, "F_EXLCK");
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001094 *lock = 1;
1095 } else if (flock->fl_type == F_SHLCK) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001096 cFYI(1, "F_SHLCK");
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001097 *type |= LOCKING_ANDX_SHARED_LOCK;
1098 *lock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 } else
Joe Perchesb6b38f72010-04-21 03:50:45 +00001100 cFYI(1, "Unknown type of lock");
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001101}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001103static int
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04001104cifs_getlk(struct file *file, struct file_lock *flock, __u8 type,
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001105 bool wait_flag, bool posix_lck, int xid)
1106{
1107 int rc = 0;
1108 __u64 length = 1 + flock->fl_end - flock->fl_start;
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04001109 struct cifsFileInfo *cfile = (struct cifsFileInfo *)file->private_data;
1110 struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
Pavel Shilovsky85160e02011-10-22 15:33:29 +04001111 struct cifsInodeInfo *cinode = CIFS_I(cfile->dentry->d_inode);
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001112 __u16 netfid = cfile->netfid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001114 if (posix_lck) {
1115 int posix_lock_type;
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04001116
1117 rc = cifs_posix_lock_test(file, flock);
1118 if (!rc)
1119 return rc;
1120
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001121 if (type & LOCKING_ANDX_SHARED_LOCK)
1122 posix_lock_type = CIFS_RDLCK;
1123 else
1124 posix_lock_type = CIFS_WRLCK;
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04001125 rc = CIFSSMBPosixLock(xid, tcon, netfid, current->tgid,
1126 1 /* get */, length, flock,
1127 posix_lock_type, wait_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return rc;
1129 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001130
Pavel Shilovsky85160e02011-10-22 15:33:29 +04001131 rc = cifs_lock_test(cinode, flock->fl_start, length, type, netfid,
1132 flock);
1133 if (!rc)
1134 return rc;
1135
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001136 /* BB we could chain these into one lock request BB */
1137 rc = CIFSSMBLock(xid, tcon, netfid, current->tgid, length,
1138 flock->fl_start, 0, 1, type, 0, 0);
1139 if (rc == 0) {
1140 rc = CIFSSMBLock(xid, tcon, netfid, current->tgid,
1141 length, flock->fl_start, 1, 0,
1142 type, 0, 0);
1143 flock->fl_type = F_UNLCK;
1144 if (rc != 0)
1145 cERROR(1, "Error unlocking previously locked "
1146 "range %d during test of lock", rc);
Pavel Shilovskya88b4702011-10-29 17:17:59 +04001147 return 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001148 }
1149
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001150 if (type & LOCKING_ANDX_SHARED_LOCK) {
1151 flock->fl_type = F_WRLCK;
Pavel Shilovskya88b4702011-10-29 17:17:59 +04001152 return 0;
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001153 }
1154
1155 rc = CIFSSMBLock(xid, tcon, netfid, current->tgid, length,
1156 flock->fl_start, 0, 1,
1157 type | LOCKING_ANDX_SHARED_LOCK, 0, 0);
1158 if (rc == 0) {
1159 rc = CIFSSMBLock(xid, tcon, netfid, current->tgid,
1160 length, flock->fl_start, 1, 0,
1161 type | LOCKING_ANDX_SHARED_LOCK,
1162 0, 0);
1163 flock->fl_type = F_RDLCK;
1164 if (rc != 0)
1165 cERROR(1, "Error unlocking previously locked "
1166 "range %d during test of lock", rc);
1167 } else
1168 flock->fl_type = F_WRLCK;
1169
Pavel Shilovskya88b4702011-10-29 17:17:59 +04001170 return 0;
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001171}
1172
Pavel Shilovsky9ee305b2011-10-22 15:33:31 +04001173static void
1174cifs_move_llist(struct list_head *source, struct list_head *dest)
1175{
1176 struct list_head *li, *tmp;
1177 list_for_each_safe(li, tmp, source)
1178 list_move(li, dest);
1179}
1180
1181static void
1182cifs_free_llist(struct list_head *llist)
1183{
1184 struct cifsLockInfo *li, *tmp;
1185 list_for_each_entry_safe(li, tmp, llist, llist) {
1186 cifs_del_lock_waiters(li);
1187 list_del(&li->llist);
1188 kfree(li);
1189 }
1190}
1191
1192static int
1193cifs_unlock_range(struct cifsFileInfo *cfile, struct file_lock *flock, int xid)
1194{
1195 int rc = 0, stored_rc;
1196 int types[] = {LOCKING_ANDX_LARGE_FILES,
1197 LOCKING_ANDX_SHARED_LOCK | LOCKING_ANDX_LARGE_FILES};
1198 unsigned int i;
1199 unsigned int max_num, num;
1200 LOCKING_ANDX_RANGE *buf, *cur;
1201 struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
1202 struct cifsInodeInfo *cinode = CIFS_I(cfile->dentry->d_inode);
1203 struct cifsLockInfo *li, *tmp;
1204 __u64 length = 1 + flock->fl_end - flock->fl_start;
1205 struct list_head tmp_llist;
1206
1207 INIT_LIST_HEAD(&tmp_llist);
1208
1209 max_num = (tcon->ses->server->maxBuf - sizeof(struct smb_hdr)) /
1210 sizeof(LOCKING_ANDX_RANGE);
1211 buf = kzalloc(max_num * sizeof(LOCKING_ANDX_RANGE), GFP_KERNEL);
1212 if (!buf)
1213 return -ENOMEM;
1214
1215 mutex_lock(&cinode->lock_mutex);
1216 for (i = 0; i < 2; i++) {
1217 cur = buf;
1218 num = 0;
1219 list_for_each_entry_safe(li, tmp, &cinode->llist, llist) {
1220 if (flock->fl_start > li->offset ||
1221 (flock->fl_start + length) <
1222 (li->offset + li->length))
1223 continue;
1224 if (current->tgid != li->pid)
1225 continue;
1226 if (cfile->netfid != li->netfid)
1227 continue;
1228 if (types[i] != li->type)
1229 continue;
1230 if (!cinode->can_cache_brlcks) {
1231 cur->Pid = cpu_to_le16(li->pid);
1232 cur->LengthLow = cpu_to_le32((u32)li->length);
1233 cur->LengthHigh =
1234 cpu_to_le32((u32)(li->length>>32));
1235 cur->OffsetLow = cpu_to_le32((u32)li->offset);
1236 cur->OffsetHigh =
1237 cpu_to_le32((u32)(li->offset>>32));
1238 /*
1239 * We need to save a lock here to let us add
1240 * it again to the inode list if the unlock
1241 * range request fails on the server.
1242 */
1243 list_move(&li->llist, &tmp_llist);
1244 if (++num == max_num) {
1245 stored_rc = cifs_lockv(xid, tcon,
1246 cfile->netfid,
1247 li->type, num,
1248 0, buf);
1249 if (stored_rc) {
1250 /*
1251 * We failed on the unlock range
1252 * request - add all locks from
1253 * the tmp list to the head of
1254 * the inode list.
1255 */
1256 cifs_move_llist(&tmp_llist,
1257 &cinode->llist);
1258 rc = stored_rc;
1259 } else
1260 /*
1261 * The unlock range request
1262 * succeed - free the tmp list.
1263 */
1264 cifs_free_llist(&tmp_llist);
1265 cur = buf;
1266 num = 0;
1267 } else
1268 cur++;
1269 } else {
1270 /*
1271 * We can cache brlock requests - simply remove
1272 * a lock from the inode list.
1273 */
1274 list_del(&li->llist);
1275 cifs_del_lock_waiters(li);
1276 kfree(li);
1277 }
1278 }
1279 if (num) {
1280 stored_rc = cifs_lockv(xid, tcon, cfile->netfid,
1281 types[i], num, 0, buf);
1282 if (stored_rc) {
1283 cifs_move_llist(&tmp_llist, &cinode->llist);
1284 rc = stored_rc;
1285 } else
1286 cifs_free_llist(&tmp_llist);
1287 }
1288 }
1289
1290 mutex_unlock(&cinode->lock_mutex);
1291 kfree(buf);
1292 return rc;
1293}
1294
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001295static int
1296cifs_setlk(struct file *file, struct file_lock *flock, __u8 type,
1297 bool wait_flag, bool posix_lck, int lock, int unlock, int xid)
1298{
1299 int rc = 0;
1300 __u64 length = 1 + flock->fl_end - flock->fl_start;
1301 struct cifsFileInfo *cfile = (struct cifsFileInfo *)file->private_data;
1302 struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
Pavel Shilovskyd59dad22011-09-22 09:53:59 +04001303 struct cifsInodeInfo *cinode = CIFS_I(file->f_path.dentry->d_inode);
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001304 __u16 netfid = cfile->netfid;
1305
1306 if (posix_lck) {
Steve French08547b02006-02-28 22:39:25 +00001307 int posix_lock_type;
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04001308
1309 rc = cifs_posix_lock_set(file, flock);
1310 if (!rc || rc < 0)
1311 return rc;
1312
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001313 if (type & LOCKING_ANDX_SHARED_LOCK)
Steve French08547b02006-02-28 22:39:25 +00001314 posix_lock_type = CIFS_RDLCK;
1315 else
1316 posix_lock_type = CIFS_WRLCK;
Steve French50c2f752007-07-13 00:33:32 +00001317
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001318 if (unlock == 1)
Steve Frenchbeb84dc2006-03-03 23:36:34 +00001319 posix_lock_type = CIFS_UNLCK;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001320
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04001321 rc = CIFSSMBPosixLock(xid, tcon, netfid, current->tgid,
1322 0 /* set */, length, flock,
1323 posix_lock_type, wait_flag);
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001324 goto out;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001325 }
1326
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001327 if (lock) {
Pavel Shilovsky161ebf92011-10-29 17:17:58 +04001328 struct cifsLockInfo *lock;
1329
Pavel Shilovskya88b4702011-10-29 17:17:59 +04001330 lock = cifs_lock_init(flock->fl_start, length, type, netfid);
Pavel Shilovsky161ebf92011-10-29 17:17:58 +04001331 if (!lock)
1332 return -ENOMEM;
1333
1334 rc = cifs_lock_add_if(cinode, lock, wait_flag);
Pavel Shilovsky85160e02011-10-22 15:33:29 +04001335 if (rc < 0)
Pavel Shilovsky161ebf92011-10-29 17:17:58 +04001336 kfree(lock);
1337 if (rc <= 0)
Pavel Shilovsky85160e02011-10-22 15:33:29 +04001338 goto out;
1339
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001340 rc = CIFSSMBLock(xid, tcon, netfid, current->tgid, length,
Pavel Shilovsky85160e02011-10-22 15:33:29 +04001341 flock->fl_start, 0, 1, type, wait_flag, 0);
Pavel Shilovsky161ebf92011-10-29 17:17:58 +04001342 if (rc) {
1343 kfree(lock);
1344 goto out;
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001345 }
Pavel Shilovsky161ebf92011-10-29 17:17:58 +04001346
1347 cifs_lock_add(cinode, lock);
Pavel Shilovsky9ee305b2011-10-22 15:33:31 +04001348 } else if (unlock)
1349 rc = cifs_unlock_range(cfile, flock, xid);
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001350
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001351out:
1352 if (flock->fl_flags & FL_POSIX)
Steve French9ebb3892012-04-01 13:52:54 -05001353 posix_lock_file_wait(file, flock);
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001354 return rc;
1355}
1356
1357int cifs_lock(struct file *file, int cmd, struct file_lock *flock)
1358{
1359 int rc, xid;
1360 int lock = 0, unlock = 0;
1361 bool wait_flag = false;
1362 bool posix_lck = false;
1363 struct cifs_sb_info *cifs_sb;
1364 struct cifs_tcon *tcon;
1365 struct cifsInodeInfo *cinode;
1366 struct cifsFileInfo *cfile;
1367 __u16 netfid;
1368 __u8 type;
1369
1370 rc = -EACCES;
1371 xid = GetXid();
1372
1373 cFYI(1, "Lock parm: 0x%x flockflags: 0x%x flocktype: 0x%x start: %lld "
1374 "end: %lld", cmd, flock->fl_flags, flock->fl_type,
1375 flock->fl_start, flock->fl_end);
1376
1377 cifs_read_flock(flock, &type, &lock, &unlock, &wait_flag);
1378
1379 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
1380 cfile = (struct cifsFileInfo *)file->private_data;
1381 tcon = tlink_tcon(cfile->tlink);
1382 netfid = cfile->netfid;
1383 cinode = CIFS_I(file->f_path.dentry->d_inode);
1384
1385 if ((tcon->ses->capabilities & CAP_UNIX) &&
1386 (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) &&
1387 ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0))
1388 posix_lck = true;
1389 /*
1390 * BB add code here to normalize offset and length to account for
1391 * negative length which we can not accept over the wire.
1392 */
1393 if (IS_GETLK(cmd)) {
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04001394 rc = cifs_getlk(file, flock, type, wait_flag, posix_lck, xid);
Pavel Shilovsky03776f42010-08-17 11:26:00 +04001395 FreeXid(xid);
1396 return rc;
1397 }
1398
1399 if (!lock && !unlock) {
1400 /*
1401 * if no lock or unlock then nothing to do since we do not
1402 * know what it is
1403 */
1404 FreeXid(xid);
1405 return -EOPNOTSUPP;
1406 }
1407
1408 rc = cifs_setlk(file, flock, type, wait_flag, posix_lck, lock, unlock,
1409 xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 FreeXid(xid);
1411 return rc;
1412}
1413
Jeff Layton597b0272012-03-23 14:40:56 -04001414/*
1415 * update the file size (if needed) after a write. Should be called with
1416 * the inode->i_lock held
1417 */
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05001418void
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001419cifs_update_eof(struct cifsInodeInfo *cifsi, loff_t offset,
1420 unsigned int bytes_written)
1421{
1422 loff_t end_of_write = offset + bytes_written;
1423
1424 if (end_of_write > cifsi->server_eof)
1425 cifsi->server_eof = end_of_write;
1426}
1427
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04001428static ssize_t cifs_write(struct cifsFileInfo *open_file, __u32 pid,
Jeff Layton7da4b492010-10-15 15:34:00 -04001429 const char *write_data, size_t write_size,
1430 loff_t *poffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
1432 int rc = 0;
1433 unsigned int bytes_written = 0;
1434 unsigned int total_written;
1435 struct cifs_sb_info *cifs_sb;
Steve French96daf2b2011-05-27 04:34:02 +00001436 struct cifs_tcon *pTcon;
Jeff Layton77499812011-01-11 07:24:23 -05001437 int xid;
Jeff Layton7da4b492010-10-15 15:34:00 -04001438 struct dentry *dentry = open_file->dentry;
1439 struct cifsInodeInfo *cifsi = CIFS_I(dentry->d_inode);
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04001440 struct cifs_io_parms io_parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Jeff Layton7da4b492010-10-15 15:34:00 -04001442 cifs_sb = CIFS_SB(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Joe Perchesb6b38f72010-04-21 03:50:45 +00001444 cFYI(1, "write %zd bytes to offset %lld of %s", write_size,
Jeff Layton7da4b492010-10-15 15:34:00 -04001445 *poffset, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Jeff Layton13cfb732010-09-29 19:51:11 -04001447 pTcon = tlink_tcon(open_file->tlink);
Steve French50c2f752007-07-13 00:33:32 +00001448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 xid = GetXid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 for (total_written = 0; write_size > total_written;
1452 total_written += bytes_written) {
1453 rc = -EAGAIN;
1454 while (rc == -EAGAIN) {
Jeff Laytonca83ce32011-04-12 09:13:44 -04001455 struct kvec iov[2];
1456 unsigned int len;
1457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 if (open_file->invalidHandle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 /* we could deadlock if we called
1460 filemap_fdatawait from here so tell
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001461 reopen_file not to flush data to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 server now */
Jeff Layton15886172010-10-15 15:33:59 -04001463 rc = cifs_reopen_file(open_file, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (rc != 0)
1465 break;
1466 }
Steve French3e844692005-10-03 13:37:24 -07001467
Jeff Laytonca83ce32011-04-12 09:13:44 -04001468 len = min((size_t)cifs_sb->wsize,
1469 write_size - total_written);
1470 /* iov[0] is reserved for smb header */
1471 iov[1].iov_base = (char *)write_data + total_written;
1472 iov[1].iov_len = len;
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04001473 io_parms.netfid = open_file->netfid;
1474 io_parms.pid = pid;
1475 io_parms.tcon = pTcon;
1476 io_parms.offset = *poffset;
1477 io_parms.length = len;
1478 rc = CIFSSMBWrite2(xid, &io_parms, &bytes_written, iov,
1479 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 }
1481 if (rc || (bytes_written == 0)) {
1482 if (total_written)
1483 break;
1484 else {
1485 FreeXid(xid);
1486 return rc;
1487 }
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001488 } else {
Jeff Layton597b0272012-03-23 14:40:56 -04001489 spin_lock(&dentry->d_inode->i_lock);
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001490 cifs_update_eof(cifsi, *poffset, bytes_written);
Jeff Layton597b0272012-03-23 14:40:56 -04001491 spin_unlock(&dentry->d_inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 *poffset += bytes_written;
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 }
1495
Steve Frencha4544342005-08-24 13:59:35 -07001496 cifs_stats_bytes_written(pTcon, total_written);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Jeff Layton7da4b492010-10-15 15:34:00 -04001498 if (total_written > 0) {
1499 spin_lock(&dentry->d_inode->i_lock);
1500 if (*poffset > dentry->d_inode->i_size)
1501 i_size_write(dentry->d_inode, *poffset);
1502 spin_unlock(&dentry->d_inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 }
Jeff Layton7da4b492010-10-15 15:34:00 -04001504 mark_inode_dirty_sync(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 FreeXid(xid);
1506 return total_written;
1507}
1508
Jeff Layton6508d902010-09-29 19:51:11 -04001509struct cifsFileInfo *find_readable_file(struct cifsInodeInfo *cifs_inode,
1510 bool fsuid_only)
Steve French630f3f02007-10-25 21:17:17 +00001511{
1512 struct cifsFileInfo *open_file = NULL;
Jeff Layton6508d902010-09-29 19:51:11 -04001513 struct cifs_sb_info *cifs_sb = CIFS_SB(cifs_inode->vfs_inode.i_sb);
1514
1515 /* only filter by fsuid on multiuser mounts */
1516 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
1517 fsuid_only = false;
Steve French630f3f02007-10-25 21:17:17 +00001518
Jeff Layton44772882010-10-15 15:34:03 -04001519 spin_lock(&cifs_file_list_lock);
Steve French630f3f02007-10-25 21:17:17 +00001520 /* we could simply get the first_list_entry since write-only entries
1521 are always at the end of the list but since the first entry might
1522 have a close pending, we go through the whole list */
1523 list_for_each_entry(open_file, &cifs_inode->openFileList, flist) {
Jeff Layton6508d902010-09-29 19:51:11 -04001524 if (fsuid_only && open_file->uid != current_fsuid())
1525 continue;
Jeff Layton2e396b82010-10-15 15:34:01 -04001526 if (OPEN_FMODE(open_file->f_flags) & FMODE_READ) {
Steve French630f3f02007-10-25 21:17:17 +00001527 if (!open_file->invalidHandle) {
1528 /* found a good file */
1529 /* lock it so it will not be closed on us */
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04001530 cifsFileInfo_get(open_file);
Jeff Layton44772882010-10-15 15:34:03 -04001531 spin_unlock(&cifs_file_list_lock);
Steve French630f3f02007-10-25 21:17:17 +00001532 return open_file;
1533 } /* else might as well continue, and look for
1534 another, or simply have the caller reopen it
1535 again rather than trying to fix this handle */
1536 } else /* write only file */
1537 break; /* write only files are last so must be done */
1538 }
Jeff Layton44772882010-10-15 15:34:03 -04001539 spin_unlock(&cifs_file_list_lock);
Steve French630f3f02007-10-25 21:17:17 +00001540 return NULL;
1541}
Steve French630f3f02007-10-25 21:17:17 +00001542
Jeff Layton6508d902010-09-29 19:51:11 -04001543struct cifsFileInfo *find_writable_file(struct cifsInodeInfo *cifs_inode,
1544 bool fsuid_only)
Steve French6148a742005-10-05 12:23:19 -07001545{
Shirish Pargaonkarf56a1612012-05-21 09:20:12 -05001546 struct cifsFileInfo *open_file, *inv_file = NULL;
Jeff Laytond3892292010-11-02 16:22:50 -04001547 struct cifs_sb_info *cifs_sb;
Jeff Layton2846d382008-09-22 21:33:33 -04001548 bool any_available = false;
Steve Frenchdd99cd82005-10-05 19:32:49 -07001549 int rc;
Shirish Pargaonkarf56a1612012-05-21 09:20:12 -05001550 unsigned int refind = 0;
Steve French6148a742005-10-05 12:23:19 -07001551
Steve French60808232006-04-22 15:53:05 +00001552 /* Having a null inode here (because mapping->host was set to zero by
1553 the VFS or MM) should not happen but we had reports of on oops (due to
1554 it being zero) during stress testcases so we need to check for it */
1555
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001556 if (cifs_inode == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001557 cERROR(1, "Null inode passed to cifs_writeable_file");
Steve French60808232006-04-22 15:53:05 +00001558 dump_stack();
1559 return NULL;
1560 }
1561
Jeff Laytond3892292010-11-02 16:22:50 -04001562 cifs_sb = CIFS_SB(cifs_inode->vfs_inode.i_sb);
1563
Jeff Layton6508d902010-09-29 19:51:11 -04001564 /* only filter by fsuid on multiuser mounts */
1565 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
1566 fsuid_only = false;
1567
Jeff Layton44772882010-10-15 15:34:03 -04001568 spin_lock(&cifs_file_list_lock);
Steve French9b22b0b2007-10-02 01:11:08 +00001569refind_writable:
Shirish Pargaonkarf56a1612012-05-21 09:20:12 -05001570 if (refind > MAX_REOPEN_ATT) {
1571 spin_unlock(&cifs_file_list_lock);
1572 return NULL;
1573 }
Steve French6148a742005-10-05 12:23:19 -07001574 list_for_each_entry(open_file, &cifs_inode->openFileList, flist) {
Jeff Layton6508d902010-09-29 19:51:11 -04001575 if (!any_available && open_file->pid != current->tgid)
1576 continue;
1577 if (fsuid_only && open_file->uid != current_fsuid())
1578 continue;
Jeff Layton2e396b82010-10-15 15:34:01 -04001579 if (OPEN_FMODE(open_file->f_flags) & FMODE_WRITE) {
Steve French9b22b0b2007-10-02 01:11:08 +00001580 if (!open_file->invalidHandle) {
1581 /* found a good writable file */
Shirish Pargaonkarf56a1612012-05-21 09:20:12 -05001582 cifsFileInfo_get(open_file);
Jeff Layton44772882010-10-15 15:34:03 -04001583 spin_unlock(&cifs_file_list_lock);
Steve French9b22b0b2007-10-02 01:11:08 +00001584 return open_file;
Shirish Pargaonkarf56a1612012-05-21 09:20:12 -05001585 } else {
1586 if (!inv_file)
1587 inv_file = open_file;
Steve French9b22b0b2007-10-02 01:11:08 +00001588 }
Steve French6148a742005-10-05 12:23:19 -07001589 }
1590 }
Jeff Layton2846d382008-09-22 21:33:33 -04001591 /* couldn't find useable FH with same pid, try any available */
1592 if (!any_available) {
1593 any_available = true;
1594 goto refind_writable;
1595 }
Shirish Pargaonkarf56a1612012-05-21 09:20:12 -05001596
1597 if (inv_file) {
1598 any_available = false;
1599 cifsFileInfo_get(inv_file);
1600 }
1601
Jeff Layton44772882010-10-15 15:34:03 -04001602 spin_unlock(&cifs_file_list_lock);
Shirish Pargaonkarf56a1612012-05-21 09:20:12 -05001603
1604 if (inv_file) {
1605 rc = cifs_reopen_file(inv_file, false);
1606 if (!rc)
1607 return inv_file;
1608 else {
1609 spin_lock(&cifs_file_list_lock);
1610 list_move_tail(&inv_file->flist,
1611 &cifs_inode->openFileList);
1612 spin_unlock(&cifs_file_list_lock);
1613 cifsFileInfo_put(inv_file);
1614 spin_lock(&cifs_file_list_lock);
1615 ++refind;
David Disseldorpe2abbcf2015-03-13 14:20:29 +01001616 inv_file = NULL;
Shirish Pargaonkarf56a1612012-05-21 09:20:12 -05001617 goto refind_writable;
1618 }
1619 }
1620
Steve French6148a742005-10-05 12:23:19 -07001621 return NULL;
1622}
1623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to)
1625{
1626 struct address_space *mapping = page->mapping;
1627 loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
1628 char *write_data;
1629 int rc = -EFAULT;
1630 int bytes_written = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 struct inode *inode;
Steve French6148a742005-10-05 12:23:19 -07001632 struct cifsFileInfo *open_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 if (!mapping || !mapping->host)
1635 return -EFAULT;
1636
1637 inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 offset += (loff_t)from;
1640 write_data = kmap(page);
1641 write_data += from;
1642
1643 if ((to > PAGE_CACHE_SIZE) || (from > to)) {
1644 kunmap(page);
1645 return -EIO;
1646 }
1647
1648 /* racing with truncate? */
1649 if (offset > mapping->host->i_size) {
1650 kunmap(page);
1651 return 0; /* don't care */
1652 }
1653
1654 /* check to make sure that we are not extending the file */
1655 if (mapping->host->i_size - offset < (loff_t)to)
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001656 to = (unsigned)(mapping->host->i_size - offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Jeff Layton6508d902010-09-29 19:51:11 -04001658 open_file = find_writable_file(CIFS_I(mapping->host), false);
Steve French6148a742005-10-05 12:23:19 -07001659 if (open_file) {
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04001660 bytes_written = cifs_write(open_file, open_file->pid,
1661 write_data, to - from, &offset);
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04001662 cifsFileInfo_put(open_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 /* Does mm or vfs already set times? */
Steve French6148a742005-10-05 12:23:19 -07001664 inode->i_atime = inode->i_mtime = current_fs_time(inode->i_sb);
Steve Frenchbb5a9a02007-12-31 04:21:29 +00001665 if ((bytes_written > 0) && (offset))
Steve French6148a742005-10-05 12:23:19 -07001666 rc = 0;
Steve Frenchbb5a9a02007-12-31 04:21:29 +00001667 else if (bytes_written < 0)
1668 rc = bytes_written;
Steve French6148a742005-10-05 12:23:19 -07001669 } else {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001670 cFYI(1, "No writeable filehandles for inode");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 rc = -EIO;
1672 }
1673
1674 kunmap(page);
1675 return rc;
1676}
1677
Jeff Laytone9492872012-03-23 14:40:56 -04001678/*
1679 * Marshal up the iov array, reserving the first one for the header. Also,
1680 * set wdata->bytes.
1681 */
1682static void
1683cifs_writepages_marshal_iov(struct kvec *iov, struct cifs_writedata *wdata)
1684{
1685 int i;
1686 struct inode *inode = wdata->cfile->dentry->d_inode;
1687 loff_t size = i_size_read(inode);
1688
1689 /* marshal up the pages into iov array */
1690 wdata->bytes = 0;
1691 for (i = 0; i < wdata->nr_pages; i++) {
1692 iov[i + 1].iov_len = min(size - page_offset(wdata->pages[i]),
1693 (loff_t)PAGE_CACHE_SIZE);
1694 iov[i + 1].iov_base = kmap(wdata->pages[i]);
1695 wdata->bytes += iov[i + 1].iov_len;
1696 }
1697}
1698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699static int cifs_writepages(struct address_space *mapping,
Steve French37c0eb42005-10-05 14:50:29 -07001700 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001702 struct cifs_sb_info *cifs_sb = CIFS_SB(mapping->host->i_sb);
1703 bool done = false, scanned = false, range_whole = false;
1704 pgoff_t end, index;
1705 struct cifs_writedata *wdata;
Steve French37c0eb42005-10-05 14:50:29 -07001706 struct page *page;
Steve French37c0eb42005-10-05 14:50:29 -07001707 int rc = 0;
Steve French50c2f752007-07-13 00:33:32 +00001708
Steve French37c0eb42005-10-05 14:50:29 -07001709 /*
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001710 * If wsize is smaller than the page cache size, default to writing
Steve French37c0eb42005-10-05 14:50:29 -07001711 * one page at a time via cifs_writepage
1712 */
1713 if (cifs_sb->wsize < PAGE_CACHE_SIZE)
1714 return generic_writepages(mapping, wbc);
1715
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -07001716 if (wbc->range_cyclic) {
Steve French37c0eb42005-10-05 14:50:29 -07001717 index = mapping->writeback_index; /* Start from prev offset */
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -07001718 end = -1;
1719 } else {
1720 index = wbc->range_start >> PAGE_CACHE_SHIFT;
1721 end = wbc->range_end >> PAGE_CACHE_SHIFT;
1722 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001723 range_whole = true;
1724 scanned = true;
Steve French37c0eb42005-10-05 14:50:29 -07001725 }
1726retry:
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001727 while (!done && index <= end) {
1728 unsigned int i, nr_pages, found_pages;
1729 pgoff_t next = 0, tofind;
1730 struct page **pages;
Steve French37c0eb42005-10-05 14:50:29 -07001731
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001732 tofind = min((cifs_sb->wsize / PAGE_CACHE_SIZE) - 1,
1733 end - index) + 1;
Steve French37c0eb42005-10-05 14:50:29 -07001734
Jeff Laytonc2e87642012-03-23 14:40:55 -04001735 wdata = cifs_writedata_alloc((unsigned int)tofind,
1736 cifs_writev_complete);
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001737 if (!wdata) {
1738 rc = -ENOMEM;
1739 break;
1740 }
1741
1742 /*
1743 * find_get_pages_tag seems to return a max of 256 on each
1744 * iteration, so we must call it several times in order to
1745 * fill the array or the wsize is effectively limited to
1746 * 256 * PAGE_CACHE_SIZE.
1747 */
1748 found_pages = 0;
1749 pages = wdata->pages;
1750 do {
1751 nr_pages = find_get_pages_tag(mapping, &index,
1752 PAGECACHE_TAG_DIRTY,
1753 tofind, pages);
1754 found_pages += nr_pages;
1755 tofind -= nr_pages;
1756 pages += nr_pages;
1757 } while (nr_pages && tofind && index <= end);
1758
1759 if (found_pages == 0) {
1760 kref_put(&wdata->refcount, cifs_writedata_release);
1761 break;
1762 }
1763
1764 nr_pages = 0;
1765 for (i = 0; i < found_pages; i++) {
1766 page = wdata->pages[i];
Steve French37c0eb42005-10-05 14:50:29 -07001767 /*
1768 * At this point we hold neither mapping->tree_lock nor
1769 * lock on the page itself: the page may be truncated or
1770 * invalidated (changing page->mapping to NULL), or even
1771 * swizzled back from swapper_space to tmpfs file
1772 * mapping
1773 */
1774
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001775 if (nr_pages == 0)
Steve French37c0eb42005-10-05 14:50:29 -07001776 lock_page(page);
Nick Piggin529ae9a2008-08-02 12:01:03 +02001777 else if (!trylock_page(page))
Steve French37c0eb42005-10-05 14:50:29 -07001778 break;
1779
1780 if (unlikely(page->mapping != mapping)) {
1781 unlock_page(page);
1782 break;
1783 }
1784
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -07001785 if (!wbc->range_cyclic && page->index > end) {
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001786 done = true;
Steve French37c0eb42005-10-05 14:50:29 -07001787 unlock_page(page);
1788 break;
1789 }
1790
1791 if (next && (page->index != next)) {
1792 /* Not next consecutive page */
1793 unlock_page(page);
1794 break;
1795 }
1796
1797 if (wbc->sync_mode != WB_SYNC_NONE)
1798 wait_on_page_writeback(page);
1799
1800 if (PageWriteback(page) ||
Linus Torvaldscb876f42006-12-23 16:19:07 -08001801 !clear_page_dirty_for_io(page)) {
Steve French37c0eb42005-10-05 14:50:29 -07001802 unlock_page(page);
1803 break;
1804 }
Steve French84d2f072005-10-12 15:32:05 -07001805
Linus Torvaldscb876f42006-12-23 16:19:07 -08001806 /*
1807 * This actually clears the dirty bit in the radix tree.
1808 * See cifs_writepage() for more commentary.
1809 */
1810 set_page_writeback(page);
1811
Steve French84d2f072005-10-12 15:32:05 -07001812 if (page_offset(page) >= mapping->host->i_size) {
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001813 done = true;
Steve French84d2f072005-10-12 15:32:05 -07001814 unlock_page(page);
Linus Torvaldscb876f42006-12-23 16:19:07 -08001815 end_page_writeback(page);
Steve French84d2f072005-10-12 15:32:05 -07001816 break;
1817 }
1818
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001819 wdata->pages[i] = page;
Steve French37c0eb42005-10-05 14:50:29 -07001820 next = page->index + 1;
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001821 ++nr_pages;
Steve French37c0eb42005-10-05 14:50:29 -07001822 }
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001823
1824 /* reset index to refind any pages skipped */
1825 if (nr_pages == 0)
1826 index = wdata->pages[0]->index + 1;
1827
1828 /* put any pages we aren't going to use */
1829 for (i = nr_pages; i < found_pages; i++) {
1830 page_cache_release(wdata->pages[i]);
1831 wdata->pages[i] = NULL;
1832 }
1833
1834 /* nothing to write? */
1835 if (nr_pages == 0) {
1836 kref_put(&wdata->refcount, cifs_writedata_release);
1837 continue;
1838 }
1839
1840 wdata->sync_mode = wbc->sync_mode;
1841 wdata->nr_pages = nr_pages;
1842 wdata->offset = page_offset(wdata->pages[0]);
Jeff Laytone9492872012-03-23 14:40:56 -04001843 wdata->marshal_iov = cifs_writepages_marshal_iov;
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001844
1845 do {
1846 if (wdata->cfile != NULL)
1847 cifsFileInfo_put(wdata->cfile);
1848 wdata->cfile = find_writable_file(CIFS_I(mapping->host),
1849 false);
1850 if (!wdata->cfile) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001851 cERROR(1, "No writable handles for inode");
Steve French23e7dd72005-10-20 13:44:56 -07001852 rc = -EBADF;
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001853 break;
Steve French37c0eb42005-10-05 14:50:29 -07001854 }
Jeff Laytonfe5f5d22012-03-23 14:40:55 -04001855 wdata->pid = wdata->cfile->pid;
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001856 rc = cifs_async_writev(wdata);
1857 } while (wbc->sync_mode == WB_SYNC_ALL && rc == -EAGAIN);
Jeff Laytonf3983c22010-09-22 16:17:40 -07001858
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001859 for (i = 0; i < nr_pages; ++i)
1860 unlock_page(wdata->pages[i]);
Jeff Layton941b8532011-01-11 07:24:01 -05001861
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001862 /* send failure -- clean up the mess */
1863 if (rc != 0) {
1864 for (i = 0; i < nr_pages; ++i) {
Jeff Layton941b8532011-01-11 07:24:01 -05001865 if (rc == -EAGAIN)
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001866 redirty_page_for_writepage(wbc,
1867 wdata->pages[i]);
1868 else
1869 SetPageError(wdata->pages[i]);
1870 end_page_writeback(wdata->pages[i]);
1871 page_cache_release(wdata->pages[i]);
Steve French37c0eb42005-10-05 14:50:29 -07001872 }
Jeff Layton941b8532011-01-11 07:24:01 -05001873 if (rc != -EAGAIN)
1874 mapping_set_error(mapping, rc);
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001875 }
1876 kref_put(&wdata->refcount, cifs_writedata_release);
Jeff Layton941b8532011-01-11 07:24:01 -05001877
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001878 wbc->nr_to_write -= nr_pages;
1879 if (wbc->nr_to_write <= 0)
1880 done = true;
Dave Kleikampb066a482008-11-18 03:49:05 +00001881
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001882 index = next;
Steve French37c0eb42005-10-05 14:50:29 -07001883 }
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001884
Steve French37c0eb42005-10-05 14:50:29 -07001885 if (!scanned && !done) {
1886 /*
1887 * We hit the last page and there is more work to be done: wrap
1888 * back to the start of the file
1889 */
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001890 scanned = true;
Steve French37c0eb42005-10-05 14:50:29 -07001891 index = 0;
1892 goto retry;
1893 }
Jeff Laytonc3d17b62011-05-19 16:22:57 -04001894
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -07001895 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
Steve French37c0eb42005-10-05 14:50:29 -07001896 mapping->writeback_index = index;
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 return rc;
1899}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Pavel Shilovsky9ad15062011-04-08 05:29:10 +04001901static int
1902cifs_writepage_locked(struct page *page, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
Pavel Shilovsky9ad15062011-04-08 05:29:10 +04001904 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 int xid;
1906
1907 xid = GetXid();
1908/* BB add check for wbc flags */
1909 page_cache_get(page);
Steve Frenchad7a2922008-02-07 23:25:02 +00001910 if (!PageUptodate(page))
Joe Perchesb6b38f72010-04-21 03:50:45 +00001911 cFYI(1, "ppw - page not up to date");
Linus Torvaldscb876f42006-12-23 16:19:07 -08001912
1913 /*
1914 * Set the "writeback" flag, and clear "dirty" in the radix tree.
1915 *
1916 * A writepage() implementation always needs to do either this,
1917 * or re-dirty the page with "redirty_page_for_writepage()" in
1918 * the case of a failure.
1919 *
1920 * Just unlocking the page will cause the radix tree tag-bits
1921 * to fail to update with the state of the page correctly.
1922 */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001923 set_page_writeback(page);
Pavel Shilovsky9ad15062011-04-08 05:29:10 +04001924retry_write:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 rc = cifs_partialpagewrite(page, 0, PAGE_CACHE_SIZE);
Pavel Shilovsky9ad15062011-04-08 05:29:10 +04001926 if (rc == -EAGAIN && wbc->sync_mode == WB_SYNC_ALL)
1927 goto retry_write;
1928 else if (rc == -EAGAIN)
1929 redirty_page_for_writepage(wbc, page);
1930 else if (rc != 0)
1931 SetPageError(page);
1932 else
1933 SetPageUptodate(page);
Linus Torvaldscb876f42006-12-23 16:19:07 -08001934 end_page_writeback(page);
1935 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 FreeXid(xid);
1937 return rc;
1938}
1939
Pavel Shilovsky9ad15062011-04-08 05:29:10 +04001940static int cifs_writepage(struct page *page, struct writeback_control *wbc)
1941{
1942 int rc = cifs_writepage_locked(page, wbc);
1943 unlock_page(page);
1944 return rc;
1945}
1946
Nick Piggind9414772008-09-24 11:32:59 -04001947static int cifs_write_end(struct file *file, struct address_space *mapping,
1948 loff_t pos, unsigned len, unsigned copied,
1949 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950{
Nick Piggind9414772008-09-24 11:32:59 -04001951 int rc;
1952 struct inode *inode = mapping->host;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001953 struct cifsFileInfo *cfile = file->private_data;
1954 struct cifs_sb_info *cifs_sb = CIFS_SB(cfile->dentry->d_sb);
1955 __u32 pid;
1956
1957 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD)
1958 pid = cfile->pid;
1959 else
1960 pid = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Joe Perchesb6b38f72010-04-21 03:50:45 +00001962 cFYI(1, "write_end for page %p from pos %lld with %d bytes",
1963 page, pos, copied);
Steve Frenchad7a2922008-02-07 23:25:02 +00001964
Jeff Laytona98ee8c2008-11-26 19:32:33 +00001965 if (PageChecked(page)) {
1966 if (copied == len)
1967 SetPageUptodate(page);
1968 ClearPageChecked(page);
1969 } else if (!PageUptodate(page) && copied == PAGE_CACHE_SIZE)
Nick Piggind9414772008-09-24 11:32:59 -04001970 SetPageUptodate(page);
1971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 if (!PageUptodate(page)) {
Nick Piggind9414772008-09-24 11:32:59 -04001973 char *page_data;
1974 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
1975 int xid;
1976
1977 xid = GetXid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 /* this is probably better than directly calling
1979 partialpage_write since in this function the file handle is
1980 known which we might as well leverage */
1981 /* BB check if anything else missing out of ppw
1982 such as updating last write time */
1983 page_data = kmap(page);
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001984 rc = cifs_write(cfile, pid, page_data + offset, copied, &pos);
Nick Piggind9414772008-09-24 11:32:59 -04001985 /* if (rc < 0) should we set writebehind rc? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 kunmap(page);
Nick Piggind9414772008-09-24 11:32:59 -04001987
1988 FreeXid(xid);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001989 } else {
Nick Piggind9414772008-09-24 11:32:59 -04001990 rc = copied;
1991 pos += copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 set_page_dirty(page);
1993 }
1994
Nick Piggind9414772008-09-24 11:32:59 -04001995 if (rc > 0) {
1996 spin_lock(&inode->i_lock);
1997 if (pos > inode->i_size)
1998 i_size_write(inode, pos);
1999 spin_unlock(&inode->i_lock);
2000 }
2001
2002 unlock_page(page);
2003 page_cache_release(page);
2004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 return rc;
2006}
2007
Josef Bacik02c24a82011-07-16 20:44:56 -04002008int cifs_strict_fsync(struct file *file, loff_t start, loff_t end,
2009 int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
2011 int xid;
2012 int rc = 0;
Steve French96daf2b2011-05-27 04:34:02 +00002013 struct cifs_tcon *tcon;
Joe Perchesc21dfb62010-07-12 13:50:14 -07002014 struct cifsFileInfo *smbfile = file->private_data;
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08002015 struct inode *inode = file->f_path.dentry->d_inode;
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03002016 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Josef Bacik02c24a82011-07-16 20:44:56 -04002018 rc = filemap_write_and_wait_range(inode->i_mapping, start, end);
2019 if (rc)
2020 return rc;
2021 mutex_lock(&inode->i_mutex);
2022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 xid = GetXid();
2024
Joe Perchesb6b38f72010-04-21 03:50:45 +00002025 cFYI(1, "Sync file - name: %s datasync: 0x%x",
Christoph Hellwig7ea80852010-05-26 17:53:25 +02002026 file->f_path.dentry->d_name.name, datasync);
Steve French50c2f752007-07-13 00:33:32 +00002027
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04002028 if (!CIFS_I(inode)->clientCanCacheRead) {
2029 rc = cifs_invalidate_mapping(inode);
2030 if (rc) {
2031 cFYI(1, "rc: %d during invalidate phase", rc);
2032 rc = 0; /* don't care about it in fsync */
2033 }
2034 }
Jeff Laytoneb4b7562010-10-22 14:52:29 -04002035
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03002036 tcon = tlink_tcon(smbfile->tlink);
2037 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC))
2038 rc = CIFSSMBFlush(xid, tcon, smbfile->netfid);
2039
2040 FreeXid(xid);
Josef Bacik02c24a82011-07-16 20:44:56 -04002041 mutex_unlock(&inode->i_mutex);
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03002042 return rc;
2043}
2044
Josef Bacik02c24a82011-07-16 20:44:56 -04002045int cifs_fsync(struct file *file, loff_t start, loff_t end, int datasync)
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03002046{
2047 int xid;
2048 int rc = 0;
Steve French96daf2b2011-05-27 04:34:02 +00002049 struct cifs_tcon *tcon;
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03002050 struct cifsFileInfo *smbfile = file->private_data;
2051 struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Josef Bacik02c24a82011-07-16 20:44:56 -04002052 struct inode *inode = file->f_mapping->host;
2053
2054 rc = filemap_write_and_wait_range(inode->i_mapping, start, end);
2055 if (rc)
2056 return rc;
2057 mutex_lock(&inode->i_mutex);
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03002058
2059 xid = GetXid();
2060
2061 cFYI(1, "Sync file - name: %s datasync: 0x%x",
2062 file->f_path.dentry->d_name.name, datasync);
2063
2064 tcon = tlink_tcon(smbfile->tlink);
2065 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC))
2066 rc = CIFSSMBFlush(xid, tcon, smbfile->netfid);
Steve Frenchb298f222009-02-21 21:17:43 +00002067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 FreeXid(xid);
Josef Bacik02c24a82011-07-16 20:44:56 -04002069 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 return rc;
2071}
2072
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073/*
2074 * As file closes, flush all cached write data for this inode checking
2075 * for write behind errors.
2076 */
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -07002077int cifs_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078{
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002079 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 int rc = 0;
2081
Jeff Laytoneb4b7562010-10-22 14:52:29 -04002082 if (file->f_mode & FMODE_WRITE)
Jeff Laytond3f13222010-10-15 15:34:07 -04002083 rc = filemap_write_and_wait(inode->i_mapping);
Steve French50c2f752007-07-13 00:33:32 +00002084
Joe Perchesb6b38f72010-04-21 03:50:45 +00002085 cFYI(1, "Flush inode %p file %p rc %d", inode, file, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087 return rc;
2088}
2089
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002090static int
2091cifs_write_allocate_pages(struct page **pages, unsigned long num_pages)
2092{
2093 int rc = 0;
2094 unsigned long i;
2095
2096 for (i = 0; i < num_pages; i++) {
Jeff Laytone94f7ba2012-03-23 14:40:56 -04002097 pages[i] = alloc_page(GFP_KERNEL|__GFP_HIGHMEM);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002098 if (!pages[i]) {
2099 /*
2100 * save number of pages we have already allocated and
2101 * return with ENOMEM error
2102 */
2103 num_pages = i;
2104 rc = -ENOMEM;
Jeff Laytone94f7ba2012-03-23 14:40:56 -04002105 break;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002106 }
2107 }
2108
Jeff Laytone94f7ba2012-03-23 14:40:56 -04002109 if (rc) {
2110 for (i = 0; i < num_pages; i++)
2111 put_page(pages[i]);
2112 }
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002113 return rc;
2114}
2115
2116static inline
2117size_t get_numpages(const size_t wsize, const size_t len, size_t *cur_len)
2118{
2119 size_t num_pages;
2120 size_t clen;
2121
2122 clen = min_t(const size_t, len, wsize);
Jeff Laytona7103b92012-03-23 14:40:56 -04002123 num_pages = DIV_ROUND_UP(clen, PAGE_SIZE);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002124
2125 if (cur_len)
2126 *cur_len = clen;
2127
2128 return num_pages;
2129}
2130
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002131static void
2132cifs_uncached_marshal_iov(struct kvec *iov, struct cifs_writedata *wdata)
2133{
2134 int i;
2135 size_t bytes = wdata->bytes;
2136
2137 /* marshal up the pages into iov array */
2138 for (i = 0; i < wdata->nr_pages; i++) {
Steve Frenchc7ad42b2012-03-23 16:30:56 -05002139 iov[i + 1].iov_len = min_t(size_t, bytes, PAGE_SIZE);
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002140 iov[i + 1].iov_base = kmap(wdata->pages[i]);
2141 bytes -= iov[i + 1].iov_len;
2142 }
2143}
2144
2145static void
2146cifs_uncached_writev_complete(struct work_struct *work)
2147{
2148 int i;
2149 struct cifs_writedata *wdata = container_of(work,
2150 struct cifs_writedata, work);
2151 struct inode *inode = wdata->cfile->dentry->d_inode;
2152 struct cifsInodeInfo *cifsi = CIFS_I(inode);
2153
2154 spin_lock(&inode->i_lock);
2155 cifs_update_eof(cifsi, wdata->offset, wdata->bytes);
2156 if (cifsi->server_eof > inode->i_size)
2157 i_size_write(inode, cifsi->server_eof);
2158 spin_unlock(&inode->i_lock);
2159
2160 complete(&wdata->done);
2161
2162 if (wdata->result != -EAGAIN) {
2163 for (i = 0; i < wdata->nr_pages; i++)
2164 put_page(wdata->pages[i]);
2165 }
2166
2167 kref_put(&wdata->refcount, cifs_writedata_release);
2168}
2169
2170/* attempt to send write to server, retry on any -EAGAIN errors */
2171static int
2172cifs_uncached_retry_writev(struct cifs_writedata *wdata)
2173{
2174 int rc;
2175
2176 do {
2177 if (wdata->cfile->invalidHandle) {
2178 rc = cifs_reopen_file(wdata->cfile, false);
2179 if (rc != 0)
2180 continue;
2181 }
2182 rc = cifs_async_writev(wdata);
2183 } while (rc == -EAGAIN);
2184
2185 return rc;
2186}
2187
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002188static ssize_t
2189cifs_iovec_write(struct file *file, const struct iovec *iov,
2190 unsigned long nr_segs, loff_t *poffset)
2191{
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002192 unsigned long nr_pages, i;
Jeff Layton13714ad2014-02-14 07:20:35 -05002193 size_t bytes, copied, len, cur_len;
Pavel Shilovsky76429c12011-01-31 16:03:08 +03002194 ssize_t total_written = 0;
Jeff Layton3af9d8f2012-04-13 17:16:59 -04002195 loff_t offset;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002196 struct iov_iter it;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002197 struct cifsFileInfo *open_file;
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002198 struct cifs_tcon *tcon;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002199 struct cifs_sb_info *cifs_sb;
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002200 struct cifs_writedata *wdata, *tmp;
2201 struct list_head wdata_list;
2202 int rc;
2203 pid_t pid;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002204
2205 len = iov_length(iov, nr_segs);
2206 if (!len)
2207 return 0;
2208
2209 rc = generic_write_checks(file, poffset, &len, 0);
2210 if (rc)
2211 return rc;
2212
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002213 INIT_LIST_HEAD(&wdata_list);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002214 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002215 open_file = file->private_data;
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002216 tcon = tlink_tcon(open_file->tlink);
Jeff Layton3af9d8f2012-04-13 17:16:59 -04002217 offset = *poffset;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00002218
2219 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD)
2220 pid = open_file->pid;
2221 else
2222 pid = current->tgid;
2223
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002224 iov_iter_init(&it, iov, nr_segs, len, 0);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002225 do {
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002226 size_t save_len;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002227
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002228 nr_pages = get_numpages(cifs_sb->wsize, len, &cur_len);
2229 wdata = cifs_writedata_alloc(nr_pages,
2230 cifs_uncached_writev_complete);
2231 if (!wdata) {
2232 rc = -ENOMEM;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002233 break;
2234 }
2235
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002236 rc = cifs_write_allocate_pages(wdata->pages, nr_pages);
2237 if (rc) {
2238 kfree(wdata);
2239 break;
2240 }
2241
2242 save_len = cur_len;
2243 for (i = 0; i < nr_pages; i++) {
Jeff Layton13714ad2014-02-14 07:20:35 -05002244 bytes = min_t(const size_t, cur_len, PAGE_SIZE);
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002245 copied = iov_iter_copy_from_user(wdata->pages[i], &it,
Jeff Layton13714ad2014-02-14 07:20:35 -05002246 0, bytes);
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002247 cur_len -= copied;
2248 iov_iter_advance(&it, copied);
Jeff Layton13714ad2014-02-14 07:20:35 -05002249 /*
2250 * If we didn't copy as much as we expected, then that
2251 * may mean we trod into an unmapped area. Stop copying
2252 * at that point. On the next pass through the big
2253 * loop, we'll likely end up getting a zero-length
2254 * write and bailing out of it.
2255 */
2256 if (copied < bytes)
2257 break;
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002258 }
2259 cur_len = save_len - cur_len;
2260
Jeff Layton13714ad2014-02-14 07:20:35 -05002261 /*
2262 * If we have no data to send, then that probably means that
2263 * the copy above failed altogether. That's most likely because
2264 * the address in the iovec was bogus. Set the rc to -EFAULT,
2265 * free anything we allocated and bail out.
2266 */
2267 if (!cur_len) {
2268 for (i = 0; i < nr_pages; i++)
2269 put_page(wdata->pages[i]);
2270 kfree(wdata);
2271 rc = -EFAULT;
2272 break;
2273 }
2274
2275 /*
2276 * i + 1 now represents the number of pages we actually used in
2277 * the copy phase above. Bring nr_pages down to that, and free
2278 * any pages that we didn't use.
2279 */
2280 for ( ; nr_pages > i + 1; nr_pages--)
2281 put_page(wdata->pages[nr_pages - 1]);
2282
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002283 wdata->sync_mode = WB_SYNC_ALL;
2284 wdata->nr_pages = nr_pages;
2285 wdata->offset = (__u64)offset;
2286 wdata->cfile = cifsFileInfo_get(open_file);
2287 wdata->pid = pid;
2288 wdata->bytes = cur_len;
2289 wdata->marshal_iov = cifs_uncached_marshal_iov;
2290 rc = cifs_uncached_retry_writev(wdata);
2291 if (rc) {
2292 kref_put(&wdata->refcount, cifs_writedata_release);
2293 break;
2294 }
2295
2296 list_add_tail(&wdata->list, &wdata_list);
2297 offset += cur_len;
2298 len -= cur_len;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002299 } while (len > 0);
2300
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002301 /*
2302 * If at least one write was successfully sent, then discard any rc
2303 * value from the later writes. If the other write succeeds, then
2304 * we'll end up returning whatever was written. If it fails, then
2305 * we'll get a new rc value from that.
2306 */
2307 if (!list_empty(&wdata_list))
2308 rc = 0;
2309
2310 /*
2311 * Wait for and collect replies for any successful sends in order of
2312 * increasing offset. Once an error is hit or we get a fatal signal
2313 * while waiting, then return without waiting for any more replies.
2314 */
2315restart_loop:
2316 list_for_each_entry_safe(wdata, tmp, &wdata_list, list) {
2317 if (!rc) {
2318 /* FIXME: freezable too? */
2319 rc = wait_for_completion_killable(&wdata->done);
2320 if (rc)
2321 rc = -EINTR;
2322 else if (wdata->result)
2323 rc = wdata->result;
2324 else
2325 total_written += wdata->bytes;
2326
2327 /* resend call if it's a retryable error */
2328 if (rc == -EAGAIN) {
2329 rc = cifs_uncached_retry_writev(wdata);
2330 goto restart_loop;
2331 }
2332 }
2333 list_del_init(&wdata->list);
2334 kref_put(&wdata->refcount, cifs_writedata_release);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002335 }
2336
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002337 if (total_written > 0)
2338 *poffset += total_written;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002339
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002340 cifs_stats_bytes_written(tcon, total_written);
2341 return total_written ? total_written : (ssize_t)rc;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002342}
2343
Pavel Shilovsky0b81c1c2011-03-10 10:11:05 +03002344ssize_t cifs_user_writev(struct kiocb *iocb, const struct iovec *iov,
Pavel Shilovsky72432ff2011-01-24 14:16:35 -05002345 unsigned long nr_segs, loff_t pos)
2346{
2347 ssize_t written;
2348 struct inode *inode;
2349
2350 inode = iocb->ki_filp->f_path.dentry->d_inode;
2351
2352 /*
2353 * BB - optimize the way when signing is disabled. We can drop this
2354 * extra memory-to-memory copying and use iovec buffers for constructing
2355 * write request.
2356 */
2357
2358 written = cifs_iovec_write(iocb->ki_filp, iov, nr_segs, &pos);
2359 if (written > 0) {
2360 CIFS_I(inode)->invalid_mapping = true;
2361 iocb->ki_pos = pos;
2362 }
2363
2364 return written;
2365}
2366
2367ssize_t cifs_strict_writev(struct kiocb *iocb, const struct iovec *iov,
2368 unsigned long nr_segs, loff_t pos)
2369{
2370 struct inode *inode;
2371
2372 inode = iocb->ki_filp->f_path.dentry->d_inode;
2373
2374 if (CIFS_I(inode)->clientCanCacheAll)
2375 return generic_file_aio_write(iocb, iov, nr_segs, pos);
2376
2377 /*
2378 * In strict cache mode we need to write the data to the server exactly
2379 * from the pos to pos+len-1 rather than flush all affected pages
2380 * because it may cause a error with mandatory locks on these pages but
2381 * not on the region from pos to ppos+len-1.
2382 */
2383
2384 return cifs_user_writev(iocb, iov, nr_segs, pos);
2385}
2386
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002387static ssize_t
2388cifs_iovec_read(struct file *file, const struct iovec *iov,
2389 unsigned long nr_segs, loff_t *poffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390{
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002391 int rc;
2392 int xid;
Pavel Shilovsky76429c12011-01-31 16:03:08 +03002393 ssize_t total_read;
2394 unsigned int bytes_read = 0;
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002395 size_t len, cur_len;
2396 int iov_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 struct cifs_sb_info *cifs_sb;
Steve French96daf2b2011-05-27 04:34:02 +00002398 struct cifs_tcon *pTcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 struct cifsFileInfo *open_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 struct smb_com_read_rsp *pSMBr;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00002401 struct cifs_io_parms io_parms;
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002402 char *read_data;
Jeff Layton5eba8ab2011-10-19 15:30:26 -04002403 unsigned int rsize;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00002404 __u32 pid;
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002405
2406 if (!nr_segs)
2407 return 0;
2408
2409 len = iov_length(iov, nr_segs);
2410 if (!len)
2411 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
2413 xid = GetXid();
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08002414 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Jeff Layton5eba8ab2011-10-19 15:30:26 -04002416 /* FIXME: set up handlers for larger reads and/or convert to async */
2417 rsize = min_t(unsigned int, cifs_sb->rsize, CIFSMaxBufSize);
2418
Joe Perchesc21dfb62010-07-12 13:50:14 -07002419 open_file = file->private_data;
Jeff Layton13cfb732010-09-29 19:51:11 -04002420 pTcon = tlink_tcon(open_file->tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00002422 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD)
2423 pid = open_file->pid;
2424 else
2425 pid = current->tgid;
2426
Steve Frenchad7a2922008-02-07 23:25:02 +00002427 if ((file->f_flags & O_ACCMODE) == O_WRONLY)
Joe Perchesb6b38f72010-04-21 03:50:45 +00002428 cFYI(1, "attempting read on write only file instance");
Steve Frenchad7a2922008-02-07 23:25:02 +00002429
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002430 for (total_read = 0; total_read < len; total_read += bytes_read) {
Jeff Layton5eba8ab2011-10-19 15:30:26 -04002431 cur_len = min_t(const size_t, len - total_read, rsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 rc = -EAGAIN;
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002433 read_data = NULL;
2434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 while (rc == -EAGAIN) {
Steve Frenchec637e32005-12-12 20:53:18 -08002436 int buf_type = CIFS_NO_BUFFER;
Steve Frenchcdff08e2010-10-21 22:46:14 +00002437 if (open_file->invalidHandle) {
Jeff Layton15886172010-10-15 15:33:59 -04002438 rc = cifs_reopen_file(open_file, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 if (rc != 0)
2440 break;
2441 }
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00002442 io_parms.netfid = open_file->netfid;
2443 io_parms.pid = pid;
2444 io_parms.tcon = pTcon;
2445 io_parms.offset = *poffset;
Pavel Shilovsky2cebaa52011-07-20 18:24:09 +04002446 io_parms.length = cur_len;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00002447 rc = CIFSSMBRead(xid, &io_parms, &bytes_read,
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002448 &read_data, &buf_type);
2449 pSMBr = (struct smb_com_read_rsp *)read_data;
2450 if (read_data) {
2451 char *data_offset = read_data + 4 +
2452 le16_to_cpu(pSMBr->DataOffset);
2453 if (memcpy_toiovecend(iov, data_offset,
2454 iov_offset, bytes_read))
Steve French93544cc2006-02-14 22:30:52 -06002455 rc = -EFAULT;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002456 if (buf_type == CIFS_SMALL_BUFFER)
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002457 cifs_small_buf_release(read_data);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002458 else if (buf_type == CIFS_LARGE_BUFFER)
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002459 cifs_buf_release(read_data);
2460 read_data = NULL;
2461 iov_offset += bytes_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 }
2463 }
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002464
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 if (rc || (bytes_read == 0)) {
2466 if (total_read) {
2467 break;
2468 } else {
2469 FreeXid(xid);
2470 return rc;
2471 }
2472 } else {
Steve Frencha4544342005-08-24 13:59:35 -07002473 cifs_stats_bytes_read(pTcon, bytes_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 *poffset += bytes_read;
2475 }
2476 }
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002477
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 FreeXid(xid);
2479 return total_read;
2480}
2481
Pavel Shilovsky0b81c1c2011-03-10 10:11:05 +03002482ssize_t cifs_user_readv(struct kiocb *iocb, const struct iovec *iov,
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002483 unsigned long nr_segs, loff_t pos)
2484{
2485 ssize_t read;
2486
2487 read = cifs_iovec_read(iocb->ki_filp, iov, nr_segs, &pos);
2488 if (read > 0)
2489 iocb->ki_pos = pos;
2490
2491 return read;
2492}
2493
2494ssize_t cifs_strict_readv(struct kiocb *iocb, const struct iovec *iov,
2495 unsigned long nr_segs, loff_t pos)
2496{
2497 struct inode *inode;
2498
2499 inode = iocb->ki_filp->f_path.dentry->d_inode;
2500
2501 if (CIFS_I(inode)->clientCanCacheRead)
2502 return generic_file_aio_read(iocb, iov, nr_segs, pos);
2503
2504 /*
2505 * In strict cache mode we need to read from the server all the time
2506 * if we don't have level II oplock because the server can delay mtime
2507 * change - so we can't make a decision about inode invalidating.
2508 * And we can also fail with pagereading if there are mandatory locks
2509 * on pages affected by this read but not on the region from pos to
2510 * pos+len-1.
2511 */
2512
2513 return cifs_user_readv(iocb, iov, nr_segs, pos);
2514}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516static ssize_t cifs_read(struct file *file, char *read_data, size_t read_size,
Pavel Shilovskya70307e2010-12-14 11:50:41 +03002517 loff_t *poffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518{
2519 int rc = -EACCES;
2520 unsigned int bytes_read = 0;
2521 unsigned int total_read;
2522 unsigned int current_read_size;
Jeff Layton5eba8ab2011-10-19 15:30:26 -04002523 unsigned int rsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 struct cifs_sb_info *cifs_sb;
Steve French96daf2b2011-05-27 04:34:02 +00002525 struct cifs_tcon *pTcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 int xid;
2527 char *current_offset;
2528 struct cifsFileInfo *open_file;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00002529 struct cifs_io_parms io_parms;
Steve Frenchec637e32005-12-12 20:53:18 -08002530 int buf_type = CIFS_NO_BUFFER;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00002531 __u32 pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533 xid = GetXid();
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08002534 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
Jeff Layton5eba8ab2011-10-19 15:30:26 -04002536 /* FIXME: set up handlers for larger reads and/or convert to async */
2537 rsize = min_t(unsigned int, cifs_sb->rsize, CIFSMaxBufSize);
2538
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 if (file->private_data == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05302540 rc = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05302542 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 }
Joe Perchesc21dfb62010-07-12 13:50:14 -07002544 open_file = file->private_data;
Jeff Layton13cfb732010-09-29 19:51:11 -04002545 pTcon = tlink_tcon(open_file->tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00002547 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD)
2548 pid = open_file->pid;
2549 else
2550 pid = current->tgid;
2551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 if ((file->f_flags & O_ACCMODE) == O_WRONLY)
Joe Perchesb6b38f72010-04-21 03:50:45 +00002553 cFYI(1, "attempting read on write only file instance");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002555 for (total_read = 0, current_offset = read_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 read_size > total_read;
2557 total_read += bytes_read, current_offset += bytes_read) {
Jeff Layton5eba8ab2011-10-19 15:30:26 -04002558 current_read_size = min_t(uint, read_size - total_read, rsize);
2559
Steve Frenchf9f5c812005-09-15 23:06:38 -07002560 /* For windows me and 9x we do not want to request more
2561 than it negotiated since it will refuse the read then */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002562 if ((pTcon->ses) &&
Steve Frenchf9f5c812005-09-15 23:06:38 -07002563 !(pTcon->ses->capabilities & CAP_LARGE_FILES)) {
Dan Carpenter7748dd62011-10-18 12:41:35 +03002564 current_read_size = min_t(uint, current_read_size,
Jeff Laytonc974bef2011-10-11 06:41:32 -04002565 CIFSMaxBufSize);
Steve Frenchf9f5c812005-09-15 23:06:38 -07002566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 rc = -EAGAIN;
2568 while (rc == -EAGAIN) {
Steve Frenchcdff08e2010-10-21 22:46:14 +00002569 if (open_file->invalidHandle) {
Jeff Layton15886172010-10-15 15:33:59 -04002570 rc = cifs_reopen_file(open_file, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 if (rc != 0)
2572 break;
2573 }
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00002574 io_parms.netfid = open_file->netfid;
2575 io_parms.pid = pid;
2576 io_parms.tcon = pTcon;
2577 io_parms.offset = *poffset;
2578 io_parms.length = current_read_size;
2579 rc = CIFSSMBRead(xid, &io_parms, &bytes_read,
2580 &current_offset, &buf_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 }
2582 if (rc || (bytes_read == 0)) {
2583 if (total_read) {
2584 break;
2585 } else {
2586 FreeXid(xid);
2587 return rc;
2588 }
2589 } else {
Steve Frencha4544342005-08-24 13:59:35 -07002590 cifs_stats_bytes_read(pTcon, total_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 *poffset += bytes_read;
2592 }
2593 }
2594 FreeXid(xid);
2595 return total_read;
2596}
2597
Jeff Laytonca83ce32011-04-12 09:13:44 -04002598/*
2599 * If the page is mmap'ed into a process' page tables, then we need to make
2600 * sure that it doesn't change while being written back.
2601 */
2602static int
2603cifs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
2604{
2605 struct page *page = vmf->page;
2606
2607 lock_page(page);
2608 return VM_FAULT_LOCKED;
2609}
2610
2611static struct vm_operations_struct cifs_file_vm_ops = {
2612 .fault = filemap_fault,
2613 .page_mkwrite = cifs_page_mkwrite,
2614};
2615
Pavel Shilovsky7a6a19b2010-12-14 11:29:51 +03002616int cifs_file_strict_mmap(struct file *file, struct vm_area_struct *vma)
2617{
2618 int rc, xid;
2619 struct inode *inode = file->f_path.dentry->d_inode;
2620
2621 xid = GetXid();
2622
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04002623 if (!CIFS_I(inode)->clientCanCacheRead) {
2624 rc = cifs_invalidate_mapping(inode);
2625 if (rc)
2626 return rc;
2627 }
Pavel Shilovsky7a6a19b2010-12-14 11:29:51 +03002628
2629 rc = generic_file_mmap(file, vma);
Jeff Laytonca83ce32011-04-12 09:13:44 -04002630 if (rc == 0)
2631 vma->vm_ops = &cifs_file_vm_ops;
Pavel Shilovsky7a6a19b2010-12-14 11:29:51 +03002632 FreeXid(xid);
2633 return rc;
2634}
2635
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636int cifs_file_mmap(struct file *file, struct vm_area_struct *vma)
2637{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 int rc, xid;
2639
2640 xid = GetXid();
Jeff Laytonabab0952010-02-12 07:44:18 -05002641 rc = cifs_revalidate_file(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 if (rc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00002643 cFYI(1, "Validation prior to mmap failed, error=%d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 FreeXid(xid);
2645 return rc;
2646 }
2647 rc = generic_file_mmap(file, vma);
Jeff Laytonca83ce32011-04-12 09:13:44 -04002648 if (rc == 0)
2649 vma->vm_ops = &cifs_file_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 FreeXid(xid);
2651 return rc;
2652}
2653
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654static int cifs_readpages(struct file *file, struct address_space *mapping,
2655 struct list_head *page_list, unsigned num_pages)
2656{
Jeff Layton690c5e32011-10-19 15:30:16 -04002657 int rc;
2658 struct list_head tmplist;
2659 struct cifsFileInfo *open_file = file->private_data;
2660 struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
2661 unsigned int rsize = cifs_sb->rsize;
2662 pid_t pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
Jeff Layton690c5e32011-10-19 15:30:16 -04002664 /*
2665 * Give up immediately if rsize is too small to read an entire page.
2666 * The VFS will fall back to readpage. We should never reach this
2667 * point however since we set ra_pages to 0 when the rsize is smaller
2668 * than a cache page.
2669 */
2670 if (unlikely(rsize < PAGE_CACHE_SIZE))
2671 return 0;
Steve Frenchbfa0d752005-08-31 21:50:37 -07002672
Suresh Jayaraman56698232010-07-05 18:13:25 +05302673 /*
2674 * Reads as many pages as possible from fscache. Returns -ENOBUFS
2675 * immediately if the cookie is negative
2676 */
2677 rc = cifs_readpages_from_fscache(mapping->host, mapping, page_list,
2678 &num_pages);
2679 if (rc == 0)
Jeff Layton690c5e32011-10-19 15:30:16 -04002680 return rc;
Suresh Jayaraman56698232010-07-05 18:13:25 +05302681
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00002682 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD)
2683 pid = open_file->pid;
2684 else
2685 pid = current->tgid;
2686
Jeff Layton690c5e32011-10-19 15:30:16 -04002687 rc = 0;
2688 INIT_LIST_HEAD(&tmplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
Jeff Layton690c5e32011-10-19 15:30:16 -04002690 cFYI(1, "%s: file=%p mapping=%p num_pages=%u", __func__, file,
2691 mapping, num_pages);
2692
2693 /*
2694 * Start with the page at end of list and move it to private
2695 * list. Do the same with any following pages until we hit
2696 * the rsize limit, hit an index discontinuity, or run out of
2697 * pages. Issue the async read and then start the loop again
2698 * until the list is empty.
2699 *
2700 * Note that list order is important. The page_list is in
2701 * the order of declining indexes. When we put the pages in
2702 * the rdata->pages, then we want them in increasing order.
2703 */
2704 while (!list_empty(page_list)) {
2705 unsigned int bytes = PAGE_CACHE_SIZE;
2706 unsigned int expected_index;
2707 unsigned int nr_pages = 1;
2708 loff_t offset;
2709 struct page *page, *tpage;
2710 struct cifs_readdata *rdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
2712 page = list_entry(page_list->prev, struct page, lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
Jeff Layton690c5e32011-10-19 15:30:16 -04002714 /*
2715 * Lock the page and put it in the cache. Since no one else
2716 * should have access to this page, we're safe to simply set
2717 * PG_locked without checking it first.
2718 */
2719 __set_page_locked(page);
2720 rc = add_to_page_cache_locked(page, mapping,
2721 page->index, GFP_KERNEL);
2722
2723 /* give up if we can't stick it in the cache */
2724 if (rc) {
2725 __clear_page_locked(page);
2726 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
Jeff Layton690c5e32011-10-19 15:30:16 -04002729 /* move first page to the tmplist */
2730 offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
2731 list_move_tail(&page->lru, &tmplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
Jeff Layton690c5e32011-10-19 15:30:16 -04002733 /* now try and add more pages onto the request */
2734 expected_index = page->index + 1;
2735 list_for_each_entry_safe_reverse(page, tpage, page_list, lru) {
2736 /* discontinuity ? */
2737 if (page->index != expected_index)
2738 break;
2739
2740 /* would this page push the read over the rsize? */
2741 if (bytes + PAGE_CACHE_SIZE > rsize)
2742 break;
2743
2744 __set_page_locked(page);
2745 if (add_to_page_cache_locked(page, mapping,
2746 page->index, GFP_KERNEL)) {
2747 __clear_page_locked(page);
2748 break;
2749 }
2750 list_move_tail(&page->lru, &tmplist);
2751 bytes += PAGE_CACHE_SIZE;
2752 expected_index++;
2753 nr_pages++;
2754 }
2755
2756 rdata = cifs_readdata_alloc(nr_pages);
2757 if (!rdata) {
2758 /* best to give up if we're out of mem */
2759 list_for_each_entry_safe(page, tpage, &tmplist, lru) {
2760 list_del(&page->lru);
2761 lru_cache_add_file(page);
2762 unlock_page(page);
2763 page_cache_release(page);
2764 }
2765 rc = -ENOMEM;
2766 break;
2767 }
2768
2769 spin_lock(&cifs_file_list_lock);
2770 cifsFileInfo_get(open_file);
2771 spin_unlock(&cifs_file_list_lock);
2772 rdata->cfile = open_file;
2773 rdata->mapping = mapping;
2774 rdata->offset = offset;
2775 rdata->bytes = bytes;
2776 rdata->pid = pid;
2777 list_splice_init(&tmplist, &rdata->pages);
2778
2779 do {
Steve Frenchcdff08e2010-10-21 22:46:14 +00002780 if (open_file->invalidHandle) {
Jeff Layton15886172010-10-15 15:33:59 -04002781 rc = cifs_reopen_file(open_file, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 if (rc != 0)
Jeff Layton690c5e32011-10-19 15:30:16 -04002783 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 }
Jeff Layton690c5e32011-10-19 15:30:16 -04002785 rc = cifs_async_readv(rdata);
2786 } while (rc == -EAGAIN);
2787
2788 if (rc != 0) {
2789 list_for_each_entry_safe(page, tpage, &rdata->pages,
2790 lru) {
2791 list_del(&page->lru);
2792 lru_cache_add_file(page);
2793 unlock_page(page);
2794 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 }
Jeff Layton690c5e32011-10-19 15:30:16 -04002796 cifs_readdata_free(rdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 break;
2798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 }
2800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 return rc;
2802}
2803
2804static int cifs_readpage_worker(struct file *file, struct page *page,
2805 loff_t *poffset)
2806{
2807 char *read_data;
2808 int rc;
2809
Suresh Jayaraman56698232010-07-05 18:13:25 +05302810 /* Is the page cached? */
2811 rc = cifs_readpage_from_fscache(file->f_path.dentry->d_inode, page);
2812 if (rc == 0)
2813 goto read_complete;
2814
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 page_cache_get(page);
2816 read_data = kmap(page);
2817 /* for reads over a certain size could initiate async read ahead */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002818
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 rc = cifs_read(file, read_data, PAGE_CACHE_SIZE, poffset);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002820
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 if (rc < 0)
2822 goto io_error;
2823 else
Joe Perchesb6b38f72010-04-21 03:50:45 +00002824 cFYI(1, "Bytes read %d", rc);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002825
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08002826 file->f_path.dentry->d_inode->i_atime =
2827 current_fs_time(file->f_path.dentry->d_inode->i_sb);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002828
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 if (PAGE_CACHE_SIZE > rc)
2830 memset(read_data + rc, 0, PAGE_CACHE_SIZE - rc);
2831
2832 flush_dcache_page(page);
2833 SetPageUptodate(page);
Suresh Jayaraman9dc06552010-07-05 18:13:11 +05302834
2835 /* send this page to the cache */
2836 cifs_readpage_to_fscache(file->f_path.dentry->d_inode, page);
2837
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 rc = 0;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840io_error:
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002841 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 page_cache_release(page);
Suresh Jayaraman56698232010-07-05 18:13:25 +05302843
2844read_complete:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 return rc;
2846}
2847
2848static int cifs_readpage(struct file *file, struct page *page)
2849{
2850 loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
2851 int rc = -EACCES;
2852 int xid;
2853
2854 xid = GetXid();
2855
2856 if (file->private_data == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05302857 rc = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05302859 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 }
2861
Joe Perchesb6b38f72010-04-21 03:50:45 +00002862 cFYI(1, "readpage %p at offset %d 0x%x\n",
2863 page, (int)offset, (int)offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
2865 rc = cifs_readpage_worker(file, page, &offset);
2866
2867 unlock_page(page);
2868
2869 FreeXid(xid);
2870 return rc;
2871}
2872
Steve Frencha403a0a2007-07-26 15:54:16 +00002873static int is_inode_writable(struct cifsInodeInfo *cifs_inode)
2874{
2875 struct cifsFileInfo *open_file;
2876
Jeff Layton44772882010-10-15 15:34:03 -04002877 spin_lock(&cifs_file_list_lock);
Steve Frencha403a0a2007-07-26 15:54:16 +00002878 list_for_each_entry(open_file, &cifs_inode->openFileList, flist) {
Jeff Layton2e396b82010-10-15 15:34:01 -04002879 if (OPEN_FMODE(open_file->f_flags) & FMODE_WRITE) {
Jeff Layton44772882010-10-15 15:34:03 -04002880 spin_unlock(&cifs_file_list_lock);
Steve Frencha403a0a2007-07-26 15:54:16 +00002881 return 1;
2882 }
2883 }
Jeff Layton44772882010-10-15 15:34:03 -04002884 spin_unlock(&cifs_file_list_lock);
Steve Frencha403a0a2007-07-26 15:54:16 +00002885 return 0;
2886}
2887
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888/* We do not want to update the file size from server for inodes
2889 open for write - to avoid races with writepage extending
2890 the file - in the future we could consider allowing
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002891 refreshing the inode only on increases in the file size
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 but this is tricky to do without racing with writebehind
2893 page caching in the current Linux kernel design */
Steve French4b18f2a2008-04-29 00:06:05 +00002894bool is_size_safe_to_change(struct cifsInodeInfo *cifsInode, __u64 end_of_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895{
Steve Frencha403a0a2007-07-26 15:54:16 +00002896 if (!cifsInode)
Steve French4b18f2a2008-04-29 00:06:05 +00002897 return true;
Steve French23e7dd72005-10-20 13:44:56 -07002898
Steve Frencha403a0a2007-07-26 15:54:16 +00002899 if (is_inode_writable(cifsInode)) {
2900 /* This inode is open for write at least once */
Steve Frenchc32a0b62006-01-12 14:41:28 -08002901 struct cifs_sb_info *cifs_sb;
2902
Steve Frenchc32a0b62006-01-12 14:41:28 -08002903 cifs_sb = CIFS_SB(cifsInode->vfs_inode.i_sb);
Steve Frenchad7a2922008-02-07 23:25:02 +00002904 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002905 /* since no page cache to corrupt on directio
Steve Frenchc32a0b62006-01-12 14:41:28 -08002906 we can change size safely */
Steve French4b18f2a2008-04-29 00:06:05 +00002907 return true;
Steve Frenchc32a0b62006-01-12 14:41:28 -08002908 }
2909
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002910 if (i_size_read(&cifsInode->vfs_inode) < end_of_file)
Steve French4b18f2a2008-04-29 00:06:05 +00002911 return true;
Steve French7ba52632007-02-08 18:14:13 +00002912
Steve French4b18f2a2008-04-29 00:06:05 +00002913 return false;
Steve French23e7dd72005-10-20 13:44:56 -07002914 } else
Steve French4b18f2a2008-04-29 00:06:05 +00002915 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916}
2917
Nick Piggind9414772008-09-24 11:32:59 -04002918static int cifs_write_begin(struct file *file, struct address_space *mapping,
2919 loff_t pos, unsigned len, unsigned flags,
2920 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921{
Nick Piggind9414772008-09-24 11:32:59 -04002922 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
2923 loff_t offset = pos & (PAGE_CACHE_SIZE - 1);
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002924 loff_t page_start = pos & PAGE_MASK;
2925 loff_t i_size;
2926 struct page *page;
2927 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
Joe Perchesb6b38f72010-04-21 03:50:45 +00002929 cFYI(1, "write_begin from %lld len %d", (long long)pos, len);
Nick Piggind9414772008-09-24 11:32:59 -04002930
Nick Piggin54566b22009-01-04 12:00:53 -08002931 page = grab_cache_page_write_begin(mapping, index, flags);
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002932 if (!page) {
2933 rc = -ENOMEM;
2934 goto out;
2935 }
Nick Piggind9414772008-09-24 11:32:59 -04002936
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002937 if (PageUptodate(page))
2938 goto out;
Steve French8a236262007-03-06 00:31:00 +00002939
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002940 /*
2941 * If we write a full page it will be up to date, no need to read from
2942 * the server. If the write is short, we'll end up doing a sync write
2943 * instead.
2944 */
2945 if (len == PAGE_CACHE_SIZE)
2946 goto out;
2947
2948 /*
2949 * optimize away the read when we have an oplock, and we're not
2950 * expecting to use any of the data we'd be reading in. That
2951 * is, when the page lies beyond the EOF, or straddles the EOF
2952 * and the write will cover all of the existing data.
2953 */
2954 if (CIFS_I(mapping->host)->clientCanCacheRead) {
2955 i_size = i_size_read(mapping->host);
2956 if (page_start >= i_size ||
2957 (offset == 0 && (pos + len) >= i_size)) {
2958 zero_user_segments(page, 0, offset,
2959 offset + len,
2960 PAGE_CACHE_SIZE);
2961 /*
2962 * PageChecked means that the parts of the page
2963 * to which we're not writing are considered up
2964 * to date. Once the data is copied to the
2965 * page, it can be set uptodate.
2966 */
2967 SetPageChecked(page);
2968 goto out;
2969 }
2970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
Nick Piggind9414772008-09-24 11:32:59 -04002972 if ((file->f_flags & O_ACCMODE) != O_WRONLY) {
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002973 /*
2974 * might as well read a page, it is fast enough. If we get
2975 * an error, we don't need to return it. cifs_write_end will
2976 * do a sync write instead since PG_uptodate isn't set.
2977 */
2978 cifs_readpage_worker(file, page, &page_start);
Steve French8a236262007-03-06 00:31:00 +00002979 } else {
2980 /* we could try using another file handle if there is one -
2981 but how would we lock it to prevent close of that handle
2982 racing with this read? In any case
Nick Piggind9414772008-09-24 11:32:59 -04002983 this will be written out by write_end so is fine */
Steve French8a236262007-03-06 00:31:00 +00002984 }
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002985out:
2986 *pagep = page;
2987 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988}
2989
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +05302990static int cifs_release_page(struct page *page, gfp_t gfp)
2991{
2992 if (PagePrivate(page))
2993 return 0;
2994
2995 return cifs_fscache_release_page(page, gfp);
2996}
2997
2998static void cifs_invalidate_page(struct page *page, unsigned long offset)
2999{
3000 struct cifsInodeInfo *cifsi = CIFS_I(page->mapping->host);
3001
3002 if (offset == 0)
3003 cifs_fscache_invalidate_page(page, &cifsi->vfs_inode);
3004}
3005
Pavel Shilovsky9ad15062011-04-08 05:29:10 +04003006static int cifs_launder_page(struct page *page)
3007{
3008 int rc = 0;
3009 loff_t range_start = page_offset(page);
3010 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
3011 struct writeback_control wbc = {
3012 .sync_mode = WB_SYNC_ALL,
3013 .nr_to_write = 0,
3014 .range_start = range_start,
3015 .range_end = range_end,
3016 };
3017
3018 cFYI(1, "Launder page: %p", page);
3019
3020 if (clear_page_dirty_for_io(page))
3021 rc = cifs_writepage_locked(page, &wbc);
3022
3023 cifs_fscache_invalidate_page(page, page->mapping->host);
3024 return rc;
3025}
3026
Tejun Heo9b646972010-07-20 22:09:02 +02003027void cifs_oplock_break(struct work_struct *work)
Jeff Layton3bc303c2009-09-21 06:47:50 -04003028{
3029 struct cifsFileInfo *cfile = container_of(work, struct cifsFileInfo,
3030 oplock_break);
Jeff Laytona5e18bc2010-10-11 15:07:18 -04003031 struct inode *inode = cfile->dentry->d_inode;
Jeff Layton3bc303c2009-09-21 06:47:50 -04003032 struct cifsInodeInfo *cinode = CIFS_I(inode);
Jeff Laytoneb4b7562010-10-22 14:52:29 -04003033 int rc = 0;
Jeff Layton3bc303c2009-09-21 06:47:50 -04003034
3035 if (inode && S_ISREG(inode->i_mode)) {
Steve Frenchd54ff732010-04-27 04:38:15 +00003036 if (cinode->clientCanCacheRead)
Al Viro8737c932009-12-24 06:47:55 -05003037 break_lease(inode, O_RDONLY);
Steve Frenchd54ff732010-04-27 04:38:15 +00003038 else
Al Viro8737c932009-12-24 06:47:55 -05003039 break_lease(inode, O_WRONLY);
Jeff Layton3bc303c2009-09-21 06:47:50 -04003040 rc = filemap_fdatawrite(inode->i_mapping);
3041 if (cinode->clientCanCacheRead == 0) {
Jeff Laytoneb4b7562010-10-22 14:52:29 -04003042 rc = filemap_fdatawait(inode->i_mapping);
3043 mapping_set_error(inode->i_mapping, rc);
Jeff Layton3bc303c2009-09-21 06:47:50 -04003044 invalidate_remote_inode(inode);
3045 }
Joe Perchesb6b38f72010-04-21 03:50:45 +00003046 cFYI(1, "Oplock flush inode %p rc %d", inode, rc);
Jeff Layton3bc303c2009-09-21 06:47:50 -04003047 }
3048
Pavel Shilovsky85160e02011-10-22 15:33:29 +04003049 rc = cifs_push_locks(cfile);
3050 if (rc)
3051 cERROR(1, "Push locks rc = %d", rc);
3052
Jeff Layton3bc303c2009-09-21 06:47:50 -04003053 /*
3054 * releasing stale oplock after recent reconnect of smb session using
3055 * a now incorrect file handle is not a data integrity issue but do
3056 * not bother sending an oplock release if session to server still is
3057 * disconnected since oplock already released by the server
3058 */
Steve Frenchcdff08e2010-10-21 22:46:14 +00003059 if (!cfile->oplock_break_cancelled) {
Pavel Shilovsky03776f42010-08-17 11:26:00 +04003060 rc = CIFSSMBLock(0, tlink_tcon(cfile->tlink), cfile->netfid,
3061 current->tgid, 0, 0, 0, 0,
3062 LOCKING_ANDX_OPLOCK_RELEASE, false,
Pavel Shilovsky12fed002011-01-17 20:15:44 +03003063 cinode->clientCanCacheRead ? 1 : 0);
Joe Perchesb6b38f72010-04-21 03:50:45 +00003064 cFYI(1, "Oplock release rc = %d", rc);
Jeff Layton3bc303c2009-09-21 06:47:50 -04003065 }
Jeff Layton3bc303c2009-09-21 06:47:50 -04003066}
3067
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003068const struct address_space_operations cifs_addr_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 .readpage = cifs_readpage,
3070 .readpages = cifs_readpages,
3071 .writepage = cifs_writepage,
Steve French37c0eb42005-10-05 14:50:29 -07003072 .writepages = cifs_writepages,
Nick Piggind9414772008-09-24 11:32:59 -04003073 .write_begin = cifs_write_begin,
3074 .write_end = cifs_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 .set_page_dirty = __set_page_dirty_nobuffers,
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +05303076 .releasepage = cifs_release_page,
3077 .invalidatepage = cifs_invalidate_page,
Pavel Shilovsky9ad15062011-04-08 05:29:10 +04003078 .launder_page = cifs_launder_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079};
Dave Kleikamp273d81d2006-06-01 19:41:23 +00003080
3081/*
3082 * cifs_readpages requires the server to support a buffer large enough to
3083 * contain the header plus one complete page of data. Otherwise, we need
3084 * to leave cifs_readpages out of the address space operations.
3085 */
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003086const struct address_space_operations cifs_addr_ops_smallbuf = {
Dave Kleikamp273d81d2006-06-01 19:41:23 +00003087 .readpage = cifs_readpage,
3088 .writepage = cifs_writepage,
3089 .writepages = cifs_writepages,
Nick Piggind9414772008-09-24 11:32:59 -04003090 .write_begin = cifs_write_begin,
3091 .write_end = cifs_write_end,
Dave Kleikamp273d81d2006-06-01 19:41:23 +00003092 .set_page_dirty = __set_page_dirty_nobuffers,
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +05303093 .releasepage = cifs_release_page,
3094 .invalidatepage = cifs_invalidate_page,
Pavel Shilovsky9ad15062011-04-08 05:29:10 +04003095 .launder_page = cifs_launder_page,
Dave Kleikamp273d81d2006-06-01 19:41:23 +00003096};