blob: fd78a355f634d921e62a197778158b8ada7f9fba [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/div64.h>
36#include "cifsfs.h"
37#include "cifspdu.h"
38#include "cifsglob.h"
39#include "cifsproto.h"
40#include "cifs_unicode.h"
41#include "cifs_debug.h"
42#include "cifs_fs_sb.h"
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +053043#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static inline int cifs_convert_flags(unsigned int flags)
46{
47 if ((flags & O_ACCMODE) == O_RDONLY)
48 return GENERIC_READ;
49 else if ((flags & O_ACCMODE) == O_WRONLY)
50 return GENERIC_WRITE;
51 else if ((flags & O_ACCMODE) == O_RDWR) {
52 /* GENERIC_ALL is too much permission to request
53 can cause unnecessary access denied on create */
54 /* return GENERIC_ALL; */
55 return (GENERIC_READ | GENERIC_WRITE);
56 }
57
Jeff Laytone10f7b52008-05-14 10:21:33 -070058 return (READ_CONTROL | FILE_WRITE_ATTRIBUTES | FILE_READ_ATTRIBUTES |
59 FILE_WRITE_EA | FILE_APPEND_DATA | FILE_WRITE_DATA |
60 FILE_READ_DATA);
Steve French7fc8f4e2009-02-23 20:43:11 +000061}
Jeff Laytone10f7b52008-05-14 10:21:33 -070062
Steve French7fc8f4e2009-02-23 20:43:11 +000063static inline fmode_t cifs_posix_convert_flags(unsigned int flags)
64{
65 fmode_t posix_flags = 0;
Jeff Laytone10f7b52008-05-14 10:21:33 -070066
Steve French7fc8f4e2009-02-23 20:43:11 +000067 if ((flags & O_ACCMODE) == O_RDONLY)
68 posix_flags = FMODE_READ;
69 else if ((flags & O_ACCMODE) == O_WRONLY)
70 posix_flags = FMODE_WRITE;
71 else if ((flags & O_ACCMODE) == O_RDWR) {
72 /* GENERIC_ALL is too much permission to request
73 can cause unnecessary access denied on create */
74 /* return GENERIC_ALL; */
75 posix_flags = FMODE_READ | FMODE_WRITE;
76 }
77 /* can not map O_CREAT or O_EXCL or O_TRUNC flags when
78 reopening a file. They had their effect on the original open */
79 if (flags & O_APPEND)
80 posix_flags |= (fmode_t)O_APPEND;
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +010081 if (flags & O_DSYNC)
82 posix_flags |= (fmode_t)O_DSYNC;
83 if (flags & __O_SYNC)
84 posix_flags |= (fmode_t)__O_SYNC;
Steve French7fc8f4e2009-02-23 20:43:11 +000085 if (flags & O_DIRECTORY)
86 posix_flags |= (fmode_t)O_DIRECTORY;
87 if (flags & O_NOFOLLOW)
88 posix_flags |= (fmode_t)O_NOFOLLOW;
89 if (flags & O_DIRECT)
90 posix_flags |= (fmode_t)O_DIRECT;
91
92 return posix_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95static inline int cifs_get_disposition(unsigned int flags)
96{
97 if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
98 return FILE_CREATE;
99 else if ((flags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC))
100 return FILE_OVERWRITE_IF;
101 else if ((flags & O_CREAT) == O_CREAT)
102 return FILE_OPEN_IF;
Steve French55aa2e02006-05-30 18:09:31 +0000103 else if ((flags & O_TRUNC) == O_TRUNC)
104 return FILE_OVERWRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 else
106 return FILE_OPEN;
107}
108
109/* all arguments to this function must be checked for validity in caller */
Jeff Layton590a3fe2009-09-12 11:54:28 -0400110static inline int
111cifs_posix_open_inode_helper(struct inode *inode, struct file *file,
Suresh Jayaraman51c81762010-05-10 15:15:24 +0530112 struct cifsInodeInfo *pCifsInode, __u32 oplock,
Jeff Layton590a3fe2009-09-12 11:54:28 -0400113 u16 netfid)
Steve French276a74a2009-03-03 18:00:34 +0000114{
Steve French276a74a2009-03-03 18:00:34 +0000115
Steve French276a74a2009-03-03 18:00:34 +0000116 write_lock(&GlobalSMBSeslock);
Steve French276a74a2009-03-03 18:00:34 +0000117
118 pCifsInode = CIFS_I(file->f_path.dentry->d_inode);
119 if (pCifsInode == NULL) {
120 write_unlock(&GlobalSMBSeslock);
121 return -EINVAL;
122 }
123
Steve French276a74a2009-03-03 18:00:34 +0000124 if (pCifsInode->clientCanCacheRead) {
125 /* we have the inode open somewhere else
126 no need to discard cache data */
127 goto psx_client_can_cache;
128 }
129
130 /* BB FIXME need to fix this check to move it earlier into posix_open
131 BB fIX following section BB FIXME */
132
133 /* if not oplocked, invalidate inode pages if mtime or file
134 size changed */
135/* temp = cifs_NTtimeToUnix(le64_to_cpu(buf->LastWriteTime));
136 if (timespec_equal(&file->f_path.dentry->d_inode->i_mtime, &temp) &&
137 (file->f_path.dentry->d_inode->i_size ==
138 (loff_t)le64_to_cpu(buf->EndOfFile))) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000139 cFYI(1, "inode unchanged on server");
Steve French276a74a2009-03-03 18:00:34 +0000140 } else {
141 if (file->f_path.dentry->d_inode->i_mapping) {
142 rc = filemap_write_and_wait(file->f_path.dentry->d_inode->i_mapping);
143 if (rc != 0)
144 CIFS_I(file->f_path.dentry->d_inode)->write_behind_rc = rc;
145 }
Joe Perchesb6b38f72010-04-21 03:50:45 +0000146 cFYI(1, "invalidating remote inode since open detected it "
147 "changed");
Steve French276a74a2009-03-03 18:00:34 +0000148 invalidate_remote_inode(file->f_path.dentry->d_inode);
149 } */
150
151psx_client_can_cache:
152 if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
153 pCifsInode->clientCanCacheAll = true;
154 pCifsInode->clientCanCacheRead = true;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000155 cFYI(1, "Exclusive Oplock granted on inode %p",
156 file->f_path.dentry->d_inode);
Steve French276a74a2009-03-03 18:00:34 +0000157 } else if ((oplock & 0xF) == OPLOCK_READ)
158 pCifsInode->clientCanCacheRead = true;
159
160 /* will have to change the unlock if we reenable the
161 filemap_fdatawrite (which does not seem necessary */
162 write_unlock(&GlobalSMBSeslock);
163 return 0;
164}
165
166/* all arguments to this function must be checked for validity in caller */
Jeff Laytondb460242010-06-16 13:40:17 -0400167static inline int cifs_open_inode_helper(struct inode *inode,
Suresh Jayaramana347ecb2010-09-17 19:43:10 +0530168 struct cifsTconInfo *pTcon, __u32 oplock, FILE_ALL_INFO *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 char *full_path, int xid)
170{
Jeff Laytondb460242010-06-16 13:40:17 -0400171 struct cifsInodeInfo *pCifsInode = CIFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 struct timespec temp;
173 int rc;
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (pCifsInode->clientCanCacheRead) {
176 /* we have the inode open somewhere else
177 no need to discard cache data */
178 goto client_can_cache;
179 }
180
181 /* BB need same check in cifs_create too? */
182 /* if not oplocked, invalidate inode pages if mtime or file
183 size changed */
Jeff Layton07119a42009-05-27 09:37:33 -0400184 temp = cifs_NTtimeToUnix(buf->LastWriteTime);
Jeff Laytondb460242010-06-16 13:40:17 -0400185 if (timespec_equal(&inode->i_mtime, &temp) &&
186 (inode->i_size ==
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 (loff_t)le64_to_cpu(buf->EndOfFile))) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000188 cFYI(1, "inode unchanged on server");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 } else {
Jeff Laytondb460242010-06-16 13:40:17 -0400190 if (inode->i_mapping) {
Steve Frenchff2157132010-03-09 20:30:42 +0000191 /* BB no need to lock inode until after invalidate
192 since namei code should already have it locked? */
Jeff Laytondb460242010-06-16 13:40:17 -0400193 rc = filemap_write_and_wait(inode->i_mapping);
Jeff Laytoncea21802007-11-20 23:19:03 +0000194 if (rc != 0)
Jeff Laytondb460242010-06-16 13:40:17 -0400195 pCifsInode->write_behind_rc = rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
Joe Perchesb6b38f72010-04-21 03:50:45 +0000197 cFYI(1, "invalidating remote inode since open detected it "
198 "changed");
Jeff Laytondb460242010-06-16 13:40:17 -0400199 invalidate_remote_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202client_can_cache:
Steve Frenchc18c8422007-07-18 23:21:09 +0000203 if (pTcon->unix_ext)
Jeff Laytondb460242010-06-16 13:40:17 -0400204 rc = cifs_get_inode_info_unix(&inode, full_path, inode->i_sb,
205 xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 else
Jeff Laytondb460242010-06-16 13:40:17 -0400207 rc = cifs_get_inode_info(&inode, full_path, buf, inode->i_sb,
208 xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Suresh Jayaramana347ecb2010-09-17 19:43:10 +0530210 if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
Steve French4b18f2a2008-04-29 00:06:05 +0000211 pCifsInode->clientCanCacheAll = true;
212 pCifsInode->clientCanCacheRead = true;
Jeff Laytondb460242010-06-16 13:40:17 -0400213 cFYI(1, "Exclusive Oplock granted on inode %p", inode);
Suresh Jayaramana347ecb2010-09-17 19:43:10 +0530214 } else if ((oplock & 0xF) == OPLOCK_READ)
Steve French4b18f2a2008-04-29 00:06:05 +0000215 pCifsInode->clientCanCacheRead = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 return rc;
218}
219
220int cifs_open(struct inode *inode, struct file *file)
221{
222 int rc = -EACCES;
Jeff Layton590a3fe2009-09-12 11:54:28 -0400223 int xid;
224 __u32 oplock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 struct cifs_sb_info *cifs_sb;
Steve French276a74a2009-03-03 18:00:34 +0000226 struct cifsTconInfo *tcon;
Jeff Layton7ffec372010-09-29 19:51:11 -0400227 struct tcon_link *tlink;
Jeff Layton6ca9f3b2010-06-16 13:40:16 -0400228 struct cifsFileInfo *pCifsFile = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 struct cifsInodeInfo *pCifsInode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 char *full_path = NULL;
231 int desiredAccess;
232 int disposition;
233 __u16 netfid;
234 FILE_ALL_INFO *buf = NULL;
235
236 xid = GetXid();
237
238 cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -0400239 tlink = cifs_sb_tlink(cifs_sb);
240 if (IS_ERR(tlink)) {
241 FreeXid(xid);
242 return PTR_ERR(tlink);
243 }
244 tcon = tlink_tcon(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Steve Frencha6ce4932009-04-09 01:14:32 +0000246 pCifsInode = CIFS_I(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800248 full_path = build_path_from_dentry(file->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530250 rc = -ENOMEM;
Jeff Layton232341b2010-08-05 13:58:38 -0400251 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253
Joe Perchesb6b38f72010-04-21 03:50:45 +0000254 cFYI(1, "inode = 0x%p file flags are 0x%x for %s",
255 inode, file->f_flags, full_path);
Steve French276a74a2009-03-03 18:00:34 +0000256
257 if (oplockEnabled)
258 oplock = REQ_OPLOCK;
259 else
260 oplock = 0;
261
Steve French64cc2c62009-03-04 19:54:08 +0000262 if (!tcon->broken_posix_open && tcon->unix_ext &&
263 (tcon->ses->capabilities & CAP_UNIX) &&
Steve French276a74a2009-03-03 18:00:34 +0000264 (CIFS_UNIX_POSIX_PATH_OPS_CAP &
265 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
266 int oflags = (int) cifs_posix_convert_flags(file->f_flags);
Steve Frenchfa588e02010-04-22 19:21:55 +0000267 oflags |= SMB_O_CREAT;
Steve French276a74a2009-03-03 18:00:34 +0000268 /* can not refresh inode info since size could be stale */
Jeff Layton2422f6762010-06-16 13:40:16 -0400269 rc = cifs_posix_open(full_path, &inode, inode->i_sb,
Steve Frenchfa588e02010-04-22 19:21:55 +0000270 cifs_sb->mnt_file_mode /* ignored */,
271 oflags, &oplock, &netfid, xid);
Steve French276a74a2009-03-03 18:00:34 +0000272 if (rc == 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000273 cFYI(1, "posix open succeeded");
Steve French276a74a2009-03-03 18:00:34 +0000274 /* no need for special case handling of setting mode
275 on read only files needed here */
276
Jeff Layton47c78b72010-06-16 13:40:17 -0400277 rc = cifs_posix_open_inode_helper(inode, file,
278 pCifsInode, oplock, netfid);
279 if (rc != 0) {
280 CIFSSMBClose(xid, tcon, netfid);
281 goto out;
282 }
283
Jeff Layton2422f6762010-06-16 13:40:16 -0400284 pCifsFile = cifs_new_fileinfo(inode, netfid, file,
Jeff Layton13cfb732010-09-29 19:51:11 -0400285 tlink, oflags, oplock);
Jeff Layton2422f6762010-06-16 13:40:16 -0400286 if (pCifsFile == NULL) {
287 CIFSSMBClose(xid, tcon, netfid);
288 rc = -ENOMEM;
Jeff Layton2422f6762010-06-16 13:40:16 -0400289 }
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530290
291 cifs_fscache_set_inode_cookie(inode, file);
292
Steve French276a74a2009-03-03 18:00:34 +0000293 goto out;
Steve French64cc2c62009-03-04 19:54:08 +0000294 } else if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
295 if (tcon->ses->serverNOS)
Joe Perchesb6b38f72010-04-21 03:50:45 +0000296 cERROR(1, "server %s of type %s returned"
Steve French64cc2c62009-03-04 19:54:08 +0000297 " unexpected error on SMB posix open"
298 ", disabling posix open support."
299 " Check if server update available.",
300 tcon->ses->serverName,
Joe Perchesb6b38f72010-04-21 03:50:45 +0000301 tcon->ses->serverNOS);
Steve French64cc2c62009-03-04 19:54:08 +0000302 tcon->broken_posix_open = true;
Steve French276a74a2009-03-03 18:00:34 +0000303 } else if ((rc != -EIO) && (rc != -EREMOTE) &&
304 (rc != -EOPNOTSUPP)) /* path not found or net err */
305 goto out;
Steve French64cc2c62009-03-04 19:54:08 +0000306 /* else fallthrough to retry open the old way on network i/o
307 or DFS errors */
Steve French276a74a2009-03-03 18:00:34 +0000308 }
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 desiredAccess = cifs_convert_flags(file->f_flags);
311
312/*********************************************************************
313 * open flag mapping table:
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000314 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 * POSIX Flag CIFS Disposition
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000316 * ---------- ----------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 * O_CREAT FILE_OPEN_IF
318 * O_CREAT | O_EXCL FILE_CREATE
319 * O_CREAT | O_TRUNC FILE_OVERWRITE_IF
320 * O_TRUNC FILE_OVERWRITE
321 * none of the above FILE_OPEN
322 *
323 * Note that there is not a direct match between disposition
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000324 * FILE_SUPERSEDE (ie create whether or not file exists although
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * O_CREAT | O_TRUNC is similar but truncates the existing
326 * file rather than creating a new file as FILE_SUPERSEDE does
327 * (which uses the attributes / metadata passed in on open call)
328 *?
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000329 *? O_SYNC is a reasonable match to CIFS writethrough flag
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 *? and the read write flags match reasonably. O_LARGEFILE
331 *? is irrelevant because largefile support is always used
332 *? by this client. Flags O_APPEND, O_DIRECT, O_DIRECTORY,
333 * O_FASYNC, O_NOFOLLOW, O_NONBLOCK need further investigation
334 *********************************************************************/
335
336 disposition = cifs_get_disposition(file->f_flags);
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 /* BB pass O_SYNC flag through on file attributes .. BB */
339
340 /* Also refresh inode by passing in file_info buf returned by SMBOpen
341 and calling get_inode_info with returned buf (at least helps
342 non-Unix server case) */
343
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000344 /* BB we can not do this if this is the second open of a file
345 and the first handle has writebehind data, we might be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 able to simply do a filemap_fdatawrite/filemap_fdatawait first */
347 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
348 if (!buf) {
349 rc = -ENOMEM;
350 goto out;
351 }
Steve French5bafd762006-06-07 00:18:43 +0000352
Jeff Laytona6e8a842010-09-20 16:01:33 -0700353 if (tcon->ses->capabilities & CAP_NT_SMBS)
Steve French276a74a2009-03-03 18:00:34 +0000354 rc = CIFSSMBOpen(xid, tcon, full_path, disposition,
Steve French5bafd762006-06-07 00:18:43 +0000355 desiredAccess, CREATE_NOT_DIR, &netfid, &oplock, buf,
Steve French737b7582005-04-28 22:41:06 -0700356 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags
357 & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French5bafd762006-06-07 00:18:43 +0000358 else
359 rc = -EIO; /* no NT SMB support fall into legacy open below */
360
Steve Frencha9d02ad2005-08-24 23:06:05 -0700361 if (rc == -EIO) {
362 /* Old server, try legacy style OpenX */
Steve French276a74a2009-03-03 18:00:34 +0000363 rc = SMBLegacyOpen(xid, tcon, full_path, disposition,
Steve Frencha9d02ad2005-08-24 23:06:05 -0700364 desiredAccess, CREATE_NOT_DIR, &netfid, &oplock, buf,
365 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags
366 & CIFS_MOUNT_MAP_SPECIAL_CHR);
367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (rc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000369 cFYI(1, "cifs_open returned 0x%x", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 goto out;
371 }
Jeff Layton3321b792009-09-25 09:53:37 -0400372
Suresh Jayaramana347ecb2010-09-17 19:43:10 +0530373 rc = cifs_open_inode_helper(inode, tcon, oplock, buf, full_path, xid);
Jeff Layton47c78b72010-06-16 13:40:17 -0400374 if (rc != 0)
375 goto out;
376
Jeff Laytond7c86ff2010-10-11 15:07:19 -0400377 pCifsFile = cifs_new_fileinfo(inode, netfid, file, tlink,
378 file->f_flags, oplock);
Jeff Layton6ca9f3b2010-06-16 13:40:16 -0400379 if (pCifsFile == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 rc = -ENOMEM;
381 goto out;
382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530384 cifs_fscache_set_inode_cookie(inode, file);
385
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000386 if (oplock & CIFS_CREATE_ACTION) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /* time to set mode which we can not set earlier due to
388 problems creating new read-only files */
Steve French276a74a2009-03-03 18:00:34 +0000389 if (tcon->unix_ext) {
Jeff Layton4e1e7fb2008-08-02 07:26:12 -0400390 struct cifs_unix_set_info_args args = {
391 .mode = inode->i_mode,
392 .uid = NO_CHANGE_64,
393 .gid = NO_CHANGE_64,
394 .ctime = NO_CHANGE_64,
395 .atime = NO_CHANGE_64,
396 .mtime = NO_CHANGE_64,
397 .device = 0,
398 };
Jeff Layton01ea95e2009-07-09 20:02:49 -0400399 CIFSSMBUnixSetPathInfo(xid, tcon, full_path, &args,
400 cifs_sb->local_nls,
401 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700402 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404 }
405
406out:
407 kfree(buf);
408 kfree(full_path);
409 FreeXid(xid);
Jeff Layton7ffec372010-09-29 19:51:11 -0400410 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return rc;
412}
413
Adrian Bunk04187262006-06-30 18:23:04 +0200414/* Try to reacquire byte range locks that were released when session */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/* to server was lost */
416static int cifs_relock_file(struct cifsFileInfo *cifsFile)
417{
418 int rc = 0;
419
420/* BB list all locks open on this file and relock */
421
422 return rc;
423}
424
Steve French4b18f2a2008-04-29 00:06:05 +0000425static int cifs_reopen_file(struct file *file, bool can_flush)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 int rc = -EACCES;
Jeff Layton590a3fe2009-09-12 11:54:28 -0400428 int xid;
429 __u32 oplock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 struct cifs_sb_info *cifs_sb;
Steve French7fc8f4e2009-02-23 20:43:11 +0000431 struct cifsTconInfo *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct cifsFileInfo *pCifsFile;
433 struct cifsInodeInfo *pCifsInode;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000434 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 char *full_path = NULL;
436 int desiredAccess;
437 int disposition = FILE_OPEN;
438 __u16 netfid;
439
Steve Frenchad7a2922008-02-07 23:25:02 +0000440 if (file->private_data)
Joe Perchesc21dfb62010-07-12 13:50:14 -0700441 pCifsFile = file->private_data;
Steve Frenchad7a2922008-02-07 23:25:02 +0000442 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return -EBADF;
444
445 xid = GetXid();
Jeff Laytonf0a71eb2009-06-27 07:04:55 -0400446 mutex_lock(&pCifsFile->fh_mutex);
Steve French4b18f2a2008-04-29 00:06:05 +0000447 if (!pCifsFile->invalidHandle) {
Jeff Laytonf0a71eb2009-06-27 07:04:55 -0400448 mutex_unlock(&pCifsFile->fh_mutex);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530449 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530451 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800454 if (file->f_path.dentry == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000455 cERROR(1, "no valid name if dentry freed");
Steve French3a9f4622007-04-04 17:10:24 +0000456 dump_stack();
457 rc = -EBADF;
458 goto reopen_error_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
Steve French3a9f4622007-04-04 17:10:24 +0000460
461 inode = file->f_path.dentry->d_inode;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000462 if (inode == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000463 cERROR(1, "inode not valid");
Steve French3a9f4622007-04-04 17:10:24 +0000464 dump_stack();
465 rc = -EBADF;
466 goto reopen_error_exit;
467 }
Steve French50c2f752007-07-13 00:33:32 +0000468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton13cfb732010-09-29 19:51:11 -0400470 tcon = tlink_tcon(pCifsFile->tlink);
Steve French3a9f4622007-04-04 17:10:24 +0000471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472/* can not grab rename sem here because various ops, including
473 those that already have the rename sem can end up causing writepage
474 to get called and if the server was down that means we end up here,
475 and we can never tell if the caller already has the rename_sem */
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800476 full_path = build_path_from_dentry(file->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (full_path == NULL) {
Steve French3a9f4622007-04-04 17:10:24 +0000478 rc = -ENOMEM;
479reopen_error_exit:
Jeff Laytonf0a71eb2009-06-27 07:04:55 -0400480 mutex_unlock(&pCifsFile->fh_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 FreeXid(xid);
Steve French3a9f4622007-04-04 17:10:24 +0000482 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484
Joe Perchesb6b38f72010-04-21 03:50:45 +0000485 cFYI(1, "inode = 0x%p file flags 0x%x for %s",
486 inode, file->f_flags, full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 if (oplockEnabled)
489 oplock = REQ_OPLOCK;
490 else
Steve French4b18f2a2008-04-29 00:06:05 +0000491 oplock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Steve French7fc8f4e2009-02-23 20:43:11 +0000493 if (tcon->unix_ext && (tcon->ses->capabilities & CAP_UNIX) &&
494 (CIFS_UNIX_POSIX_PATH_OPS_CAP &
495 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
496 int oflags = (int) cifs_posix_convert_flags(file->f_flags);
497 /* can not refresh inode info since size could be stale */
Jeff Layton2422f6762010-06-16 13:40:16 -0400498 rc = cifs_posix_open(full_path, NULL, inode->i_sb,
Steve Frenchfa588e02010-04-22 19:21:55 +0000499 cifs_sb->mnt_file_mode /* ignored */,
500 oflags, &oplock, &netfid, xid);
Steve French7fc8f4e2009-02-23 20:43:11 +0000501 if (rc == 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000502 cFYI(1, "posix reopen succeeded");
Steve French7fc8f4e2009-02-23 20:43:11 +0000503 goto reopen_success;
504 }
505 /* fallthrough to retry open the old way on errors, especially
506 in the reconnect path it is important to retry hard */
507 }
508
509 desiredAccess = cifs_convert_flags(file->f_flags);
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 /* Can not refresh inode by passing in file_info buf to be returned
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000512 by SMBOpen and then calling get_inode_info with returned buf
513 since file might have write behind data that needs to be flushed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 and server version of file size can be stale. If we knew for sure
515 that inode was not dirty locally we could do this */
516
Steve French7fc8f4e2009-02-23 20:43:11 +0000517 rc = CIFSSMBOpen(xid, tcon, full_path, disposition, desiredAccess,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 CREATE_NOT_DIR, &netfid, &oplock, NULL,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000519 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700520 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (rc) {
Jeff Laytonf0a71eb2009-06-27 07:04:55 -0400522 mutex_unlock(&pCifsFile->fh_mutex);
Joe Perchesb6b38f72010-04-21 03:50:45 +0000523 cFYI(1, "cifs_open returned 0x%x", rc);
524 cFYI(1, "oplock: %d", oplock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 } else {
Steve French7fc8f4e2009-02-23 20:43:11 +0000526reopen_success:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 pCifsFile->netfid = netfid;
Steve French4b18f2a2008-04-29 00:06:05 +0000528 pCifsFile->invalidHandle = false;
Jeff Laytonf0a71eb2009-06-27 07:04:55 -0400529 mutex_unlock(&pCifsFile->fh_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 pCifsInode = CIFS_I(inode);
531 if (pCifsInode) {
532 if (can_flush) {
Jeff Laytoncea21802007-11-20 23:19:03 +0000533 rc = filemap_write_and_wait(inode->i_mapping);
534 if (rc != 0)
535 CIFS_I(inode)->write_behind_rc = rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 /* temporarily disable caching while we
537 go to server to get inode info */
Steve French4b18f2a2008-04-29 00:06:05 +0000538 pCifsInode->clientCanCacheAll = false;
539 pCifsInode->clientCanCacheRead = false;
Steve French7fc8f4e2009-02-23 20:43:11 +0000540 if (tcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 rc = cifs_get_inode_info_unix(&inode,
542 full_path, inode->i_sb, xid);
543 else
544 rc = cifs_get_inode_info(&inode,
545 full_path, NULL, inode->i_sb,
Steve French8b1327f2008-03-14 22:37:16 +0000546 xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 } /* else we are writing out data to server already
548 and could deadlock if we tried to flush data, and
549 since we do not know if we have data that would
550 invalidate the current end of file on the server
551 we can not go to the server to get the new inod
552 info */
553 if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
Steve French4b18f2a2008-04-29 00:06:05 +0000554 pCifsInode->clientCanCacheAll = true;
555 pCifsInode->clientCanCacheRead = true;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000556 cFYI(1, "Exclusive Oplock granted on inode %p",
557 file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 } else if ((oplock & 0xF) == OPLOCK_READ) {
Steve French4b18f2a2008-04-29 00:06:05 +0000559 pCifsInode->clientCanCacheRead = true;
560 pCifsInode->clientCanCacheAll = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 } else {
Steve French4b18f2a2008-04-29 00:06:05 +0000562 pCifsInode->clientCanCacheRead = false;
563 pCifsInode->clientCanCacheAll = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565 cifs_relock_file(pCifsFile);
566 }
567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 kfree(full_path);
569 FreeXid(xid);
570 return rc;
571}
572
573int cifs_close(struct inode *inode, struct file *file)
574{
575 int rc = 0;
Steve French15745322007-09-07 22:23:48 +0000576 int xid, timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 struct cifs_sb_info *cifs_sb;
578 struct cifsTconInfo *pTcon;
Joe Perchesc21dfb62010-07-12 13:50:14 -0700579 struct cifsFileInfo *pSMBFile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 xid = GetXid();
582
583 cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton13cfb732010-09-29 19:51:11 -0400584 pTcon = tlink_tcon(pSMBFile->tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (pSMBFile) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000586 struct cifsLockInfo *li, *tmp;
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000587 write_lock(&GlobalSMBSeslock);
Steve French4b18f2a2008-04-29 00:06:05 +0000588 pSMBFile->closePend = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (pTcon) {
590 /* no sense reconnecting to close a file that is
591 already closed */
Steve French3b795212008-11-13 19:45:32 +0000592 if (!pTcon->need_reconnect) {
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000593 write_unlock(&GlobalSMBSeslock);
Steve French15745322007-09-07 22:23:48 +0000594 timeout = 2;
Dave Kleikamp6ab409b2009-08-31 11:07:12 -0400595 while ((atomic_read(&pSMBFile->count) != 1)
Steve French15745322007-09-07 22:23:48 +0000596 && (timeout <= 2048)) {
Steve French23e7dd72005-10-20 13:44:56 -0700597 /* Give write a better chance to get to
598 server ahead of the close. We do not
599 want to add a wait_q here as it would
600 increase the memory utilization as
601 the struct would be in each open file,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000602 but this should give enough time to
Steve French23e7dd72005-10-20 13:44:56 -0700603 clear the socket */
Joe Perchesb6b38f72010-04-21 03:50:45 +0000604 cFYI(DBG2, "close delay, write pending");
Steve French23e7dd72005-10-20 13:44:56 -0700605 msleep(timeout);
606 timeout *= 4;
Steve French4891d532006-11-07 16:31:16 +0000607 }
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000608 if (!pTcon->need_reconnect &&
609 !pSMBFile->invalidHandle)
610 rc = CIFSSMBClose(xid, pTcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 pSMBFile->netfid);
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000612 } else
613 write_unlock(&GlobalSMBSeslock);
614 } else
615 write_unlock(&GlobalSMBSeslock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000616
617 /* Delete any outstanding lock records.
618 We'll lose them when the file is closed anyway. */
Roland Dreier796e5662007-05-03 04:33:45 +0000619 mutex_lock(&pSMBFile->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000620 list_for_each_entry_safe(li, tmp, &pSMBFile->llist, llist) {
621 list_del(&li->llist);
622 kfree(li);
623 }
Roland Dreier796e5662007-05-03 04:33:45 +0000624 mutex_unlock(&pSMBFile->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000625
Steve Frenchcbe04762005-04-28 22:41:05 -0700626 write_lock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 list_del(&pSMBFile->flist);
628 list_del(&pSMBFile->tlist);
Steve Frenchcbe04762005-04-28 22:41:05 -0700629 write_unlock(&GlobalSMBSeslock);
Dave Kleikamp6ab409b2009-08-31 11:07:12 -0400630 cifsFileInfo_put(file->private_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 file->private_data = NULL;
632 } else
633 rc = -EBADF;
634
Steve French4efa53f2007-09-11 05:50:53 +0000635 read_lock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (list_empty(&(CIFS_I(inode)->openFileList))) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000637 cFYI(1, "closing last open instance for inode %p", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 /* if the file is not open we do not know if we can cache info
639 on this inode, much less write behind and read ahead */
Steve French4b18f2a2008-04-29 00:06:05 +0000640 CIFS_I(inode)->clientCanCacheRead = false;
641 CIFS_I(inode)->clientCanCacheAll = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
Steve French4efa53f2007-09-11 05:50:53 +0000643 read_unlock(&GlobalSMBSeslock);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000644 if ((rc == 0) && CIFS_I(inode)->write_behind_rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 rc = CIFS_I(inode)->write_behind_rc;
646 FreeXid(xid);
647 return rc;
648}
649
650int cifs_closedir(struct inode *inode, struct file *file)
651{
652 int rc = 0;
653 int xid;
Joe Perchesc21dfb62010-07-12 13:50:14 -0700654 struct cifsFileInfo *pCFileStruct = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 char *ptmp;
656
Joe Perchesb6b38f72010-04-21 03:50:45 +0000657 cFYI(1, "Closedir inode = 0x%p", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 xid = GetXid();
660
661 if (pCFileStruct) {
Jeff Layton13cfb732010-09-29 19:51:11 -0400662 struct cifsTconInfo *pTcon = tlink_tcon(pCFileStruct->tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Joe Perchesb6b38f72010-04-21 03:50:45 +0000664 cFYI(1, "Freeing private data in close dir");
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000665 write_lock(&GlobalSMBSeslock);
Steve French4b18f2a2008-04-29 00:06:05 +0000666 if (!pCFileStruct->srch_inf.endOfSearch &&
667 !pCFileStruct->invalidHandle) {
668 pCFileStruct->invalidHandle = true;
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000669 write_unlock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 rc = CIFSFindClose(xid, pTcon, pCFileStruct->netfid);
Joe Perchesb6b38f72010-04-21 03:50:45 +0000671 cFYI(1, "Closing uncompleted readdir with rc %d",
672 rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 /* not much we can do if it fails anyway, ignore rc */
674 rc = 0;
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000675 } else
676 write_unlock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 ptmp = pCFileStruct->srch_inf.ntwrk_buf_start;
678 if (ptmp) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000679 cFYI(1, "closedir free smb buf in srch struct");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 pCFileStruct->srch_inf.ntwrk_buf_start = NULL;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000681 if (pCFileStruct->srch_inf.smallBuf)
Steve Frenchd47d7c12006-02-28 03:45:48 +0000682 cifs_small_buf_release(ptmp);
683 else
684 cifs_buf_release(ptmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
Jeff Layton13cfb732010-09-29 19:51:11 -0400686 cifs_put_tlink(pCFileStruct->tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 kfree(file->private_data);
688 file->private_data = NULL;
689 }
690 /* BB can we lock the filestruct while this is going on? */
691 FreeXid(xid);
692 return rc;
693}
694
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000695static int store_file_lock(struct cifsFileInfo *fid, __u64 len,
696 __u64 offset, __u8 lockType)
697{
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000698 struct cifsLockInfo *li =
699 kmalloc(sizeof(struct cifsLockInfo), GFP_KERNEL);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000700 if (li == NULL)
701 return -ENOMEM;
702 li->offset = offset;
703 li->length = len;
704 li->type = lockType;
Roland Dreier796e5662007-05-03 04:33:45 +0000705 mutex_lock(&fid->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000706 list_add(&li->llist, &fid->llist);
Roland Dreier796e5662007-05-03 04:33:45 +0000707 mutex_unlock(&fid->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000708 return 0;
709}
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711int cifs_lock(struct file *file, int cmd, struct file_lock *pfLock)
712{
713 int rc, xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 __u32 numLock = 0;
715 __u32 numUnlock = 0;
716 __u64 length;
Steve French4b18f2a2008-04-29 00:06:05 +0000717 bool wait_flag = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 struct cifs_sb_info *cifs_sb;
Steve French13a6e422008-12-02 17:24:33 +0000719 struct cifsTconInfo *tcon;
Steve French08547b02006-02-28 22:39:25 +0000720 __u16 netfid;
721 __u8 lockType = LOCKING_ANDX_LARGE_FILES;
Steve French13a6e422008-12-02 17:24:33 +0000722 bool posix_locking = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 length = 1 + pfLock->fl_end - pfLock->fl_start;
725 rc = -EACCES;
726 xid = GetXid();
727
Joe Perchesb6b38f72010-04-21 03:50:45 +0000728 cFYI(1, "Lock parm: 0x%x flockflags: "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 "0x%x flocktype: 0x%x start: %lld end: %lld",
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000730 cmd, pfLock->fl_flags, pfLock->fl_type, pfLock->fl_start,
Joe Perchesb6b38f72010-04-21 03:50:45 +0000731 pfLock->fl_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 if (pfLock->fl_flags & FL_POSIX)
Joe Perchesb6b38f72010-04-21 03:50:45 +0000734 cFYI(1, "Posix");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (pfLock->fl_flags & FL_FLOCK)
Joe Perchesb6b38f72010-04-21 03:50:45 +0000736 cFYI(1, "Flock");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (pfLock->fl_flags & FL_SLEEP) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000738 cFYI(1, "Blocking lock");
Steve French4b18f2a2008-04-29 00:06:05 +0000739 wait_flag = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
741 if (pfLock->fl_flags & FL_ACCESS)
Joe Perchesb6b38f72010-04-21 03:50:45 +0000742 cFYI(1, "Process suspended by mandatory locking - "
743 "not implemented yet");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (pfLock->fl_flags & FL_LEASE)
Joe Perchesb6b38f72010-04-21 03:50:45 +0000745 cFYI(1, "Lease on file - not implemented yet");
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000746 if (pfLock->fl_flags &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 (~(FL_POSIX | FL_FLOCK | FL_SLEEP | FL_ACCESS | FL_LEASE)))
Joe Perchesb6b38f72010-04-21 03:50:45 +0000748 cFYI(1, "Unknown lock flags 0x%x", pfLock->fl_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 if (pfLock->fl_type == F_WRLCK) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000751 cFYI(1, "F_WRLCK ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 numLock = 1;
753 } else if (pfLock->fl_type == F_UNLCK) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000754 cFYI(1, "F_UNLCK");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 numUnlock = 1;
Steve Frenchd47d7c12006-02-28 03:45:48 +0000756 /* Check if unlock includes more than
757 one lock range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 } else if (pfLock->fl_type == F_RDLCK) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000759 cFYI(1, "F_RDLCK");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 lockType |= LOCKING_ANDX_SHARED_LOCK;
761 numLock = 1;
762 } else if (pfLock->fl_type == F_EXLCK) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000763 cFYI(1, "F_EXLCK");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 numLock = 1;
765 } else if (pfLock->fl_type == F_SHLCK) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000766 cFYI(1, "F_SHLCK");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 lockType |= LOCKING_ANDX_SHARED_LOCK;
768 numLock = 1;
769 } else
Joe Perchesb6b38f72010-04-21 03:50:45 +0000770 cFYI(1, "Unknown type of lock");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800772 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Jeff Layton13cfb732010-09-29 19:51:11 -0400773 tcon = tlink_tcon(((struct cifsFileInfo *)file->private_data)->tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 if (file->private_data == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530776 rc = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530778 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
Steve French08547b02006-02-28 22:39:25 +0000780 netfid = ((struct cifsFileInfo *)file->private_data)->netfid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Steve French13a6e422008-12-02 17:24:33 +0000782 if ((tcon->ses->capabilities & CAP_UNIX) &&
783 (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) &&
Steve Frenchacc18aa2008-12-02 18:53:55 +0000784 ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0))
Steve French13a6e422008-12-02 17:24:33 +0000785 posix_locking = 1;
Steve French08547b02006-02-28 22:39:25 +0000786 /* BB add code here to normalize offset and length to
787 account for negative length which we can not accept over the
788 wire */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (IS_GETLK(cmd)) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000790 if (posix_locking) {
Steve French08547b02006-02-28 22:39:25 +0000791 int posix_lock_type;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000792 if (lockType & LOCKING_ANDX_SHARED_LOCK)
Steve French08547b02006-02-28 22:39:25 +0000793 posix_lock_type = CIFS_RDLCK;
794 else
795 posix_lock_type = CIFS_WRLCK;
Steve French13a6e422008-12-02 17:24:33 +0000796 rc = CIFSSMBPosixLock(xid, tcon, netfid, 1 /* get */,
Steve Frenchfc94cdb2006-05-30 18:03:32 +0000797 length, pfLock,
Steve French08547b02006-02-28 22:39:25 +0000798 posix_lock_type, wait_flag);
799 FreeXid(xid);
800 return rc;
801 }
802
803 /* BB we could chain these into one lock request BB */
Steve French13a6e422008-12-02 17:24:33 +0000804 rc = CIFSSMBLock(xid, tcon, netfid, length, pfLock->fl_start,
Steve French08547b02006-02-28 22:39:25 +0000805 0, 1, lockType, 0 /* wait flag */ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (rc == 0) {
Steve French13a6e422008-12-02 17:24:33 +0000807 rc = CIFSSMBLock(xid, tcon, netfid, length,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 pfLock->fl_start, 1 /* numUnlock */ ,
809 0 /* numLock */ , lockType,
810 0 /* wait flag */ );
811 pfLock->fl_type = F_UNLCK;
812 if (rc != 0)
Joe Perchesb6b38f72010-04-21 03:50:45 +0000813 cERROR(1, "Error unlocking previously locked "
814 "range %d during test of lock", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 rc = 0;
816
817 } else {
818 /* if rc == ERR_SHARING_VIOLATION ? */
Pavel Shilovskyf05337c2010-04-05 09:59:14 +0400819 rc = 0;
820
821 if (lockType & LOCKING_ANDX_SHARED_LOCK) {
822 pfLock->fl_type = F_WRLCK;
823 } else {
824 rc = CIFSSMBLock(xid, tcon, netfid, length,
825 pfLock->fl_start, 0, 1,
826 lockType | LOCKING_ANDX_SHARED_LOCK,
827 0 /* wait flag */);
828 if (rc == 0) {
829 rc = CIFSSMBLock(xid, tcon, netfid,
830 length, pfLock->fl_start, 1, 0,
831 lockType |
832 LOCKING_ANDX_SHARED_LOCK,
833 0 /* wait flag */);
834 pfLock->fl_type = F_RDLCK;
835 if (rc != 0)
Steve Frenchf19159d2010-04-21 04:12:10 +0000836 cERROR(1, "Error unlocking "
Pavel Shilovskyf05337c2010-04-05 09:59:14 +0400837 "previously locked range %d "
Steve Frenchf19159d2010-04-21 04:12:10 +0000838 "during test of lock", rc);
Pavel Shilovskyf05337c2010-04-05 09:59:14 +0400839 rc = 0;
840 } else {
841 pfLock->fl_type = F_WRLCK;
842 rc = 0;
843 }
844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846
847 FreeXid(xid);
848 return rc;
849 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000850
851 if (!numLock && !numUnlock) {
852 /* if no lock or unlock then nothing
853 to do since we do not know what it is */
854 FreeXid(xid);
855 return -EOPNOTSUPP;
856 }
857
858 if (posix_locking) {
Steve French08547b02006-02-28 22:39:25 +0000859 int posix_lock_type;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000860 if (lockType & LOCKING_ANDX_SHARED_LOCK)
Steve French08547b02006-02-28 22:39:25 +0000861 posix_lock_type = CIFS_RDLCK;
862 else
863 posix_lock_type = CIFS_WRLCK;
Steve French50c2f752007-07-13 00:33:32 +0000864
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000865 if (numUnlock == 1)
Steve Frenchbeb84dc2006-03-03 23:36:34 +0000866 posix_lock_type = CIFS_UNLCK;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000867
Steve French13a6e422008-12-02 17:24:33 +0000868 rc = CIFSSMBPosixLock(xid, tcon, netfid, 0 /* set */,
Steve Frenchfc94cdb2006-05-30 18:03:32 +0000869 length, pfLock,
Steve French08547b02006-02-28 22:39:25 +0000870 posix_lock_type, wait_flag);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000871 } else {
Joe Perchesc21dfb62010-07-12 13:50:14 -0700872 struct cifsFileInfo *fid = file->private_data;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000873
874 if (numLock) {
Steve French13a6e422008-12-02 17:24:33 +0000875 rc = CIFSSMBLock(xid, tcon, netfid, length,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000876 pfLock->fl_start,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000877 0, numLock, lockType, wait_flag);
878
879 if (rc == 0) {
880 /* For Windows locks we must store them. */
881 rc = store_file_lock(fid, length,
882 pfLock->fl_start, lockType);
883 }
884 } else if (numUnlock) {
885 /* For each stored lock that this unlock overlaps
886 completely, unlock it. */
887 int stored_rc = 0;
888 struct cifsLockInfo *li, *tmp;
889
Steve French6b70c952006-09-21 07:35:29 +0000890 rc = 0;
Roland Dreier796e5662007-05-03 04:33:45 +0000891 mutex_lock(&fid->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000892 list_for_each_entry_safe(li, tmp, &fid->llist, llist) {
893 if (pfLock->fl_start <= li->offset &&
Steve Frenchc19eb712007-08-24 03:22:48 +0000894 (pfLock->fl_start + length) >=
Jeff Layton39db8102007-08-24 03:16:51 +0000895 (li->offset + li->length)) {
Steve French13a6e422008-12-02 17:24:33 +0000896 stored_rc = CIFSSMBLock(xid, tcon,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000897 netfid,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000898 li->length, li->offset,
Steve French4b18f2a2008-04-29 00:06:05 +0000899 1, 0, li->type, false);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000900 if (stored_rc)
901 rc = stored_rc;
Pavel Shilovsky2c964d12010-04-21 19:44:24 +0000902 else {
903 list_del(&li->llist);
904 kfree(li);
905 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000906 }
907 }
Roland Dreier796e5662007-05-03 04:33:45 +0000908 mutex_unlock(&fid->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000909 }
910 }
911
Steve Frenchd634cc12005-08-26 14:42:59 -0500912 if (pfLock->fl_flags & FL_POSIX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 posix_lock_file_wait(file, pfLock);
914 FreeXid(xid);
915 return rc;
916}
917
Jeff Laytonfbec9ab2009-04-03 13:44:00 -0400918/*
919 * Set the timeout on write requests past EOF. For some servers (Windows)
920 * these calls can be very long.
921 *
922 * If we're writing >10M past the EOF we give a 180s timeout. Anything less
923 * than that gets a 45s timeout. Writes not past EOF get 15s timeouts.
924 * The 10M cutoff is totally arbitrary. A better scheme for this would be
925 * welcome if someone wants to suggest one.
926 *
927 * We may be able to do a better job with this if there were some way to
928 * declare that a file should be sparse.
929 */
930static int
931cifs_write_timeout(struct cifsInodeInfo *cifsi, loff_t offset)
932{
933 if (offset <= cifsi->server_eof)
934 return CIFS_STD_OP;
935 else if (offset > (cifsi->server_eof + (10 * 1024 * 1024)))
936 return CIFS_VLONG_OP;
937 else
938 return CIFS_LONG_OP;
939}
940
941/* update the file size (if needed) after a write */
942static void
943cifs_update_eof(struct cifsInodeInfo *cifsi, loff_t offset,
944 unsigned int bytes_written)
945{
946 loff_t end_of_write = offset + bytes_written;
947
948 if (end_of_write > cifsi->server_eof)
949 cifsi->server_eof = end_of_write;
950}
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952ssize_t cifs_user_write(struct file *file, const char __user *write_data,
953 size_t write_size, loff_t *poffset)
954{
955 int rc = 0;
956 unsigned int bytes_written = 0;
957 unsigned int total_written;
958 struct cifs_sb_info *cifs_sb;
959 struct cifsTconInfo *pTcon;
960 int xid, long_op;
961 struct cifsFileInfo *open_file;
Jeff Laytonfbec9ab2009-04-03 13:44:00 -0400962 struct cifsInodeInfo *cifsi = CIFS_I(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800964 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Joe Perchesb6b38f72010-04-21 03:50:45 +0000966 /* cFYI(1, " write %d bytes to offset %lld of %s", write_size,
967 *poffset, file->f_path.dentry->d_name.name); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 if (file->private_data == NULL)
970 return -EBADF;
Jeff Laytonba00ba62010-09-20 16:01:31 -0700971
Joe Perchesc21dfb62010-07-12 13:50:14 -0700972 open_file = file->private_data;
Jeff Layton13cfb732010-09-29 19:51:11 -0400973 pTcon = tlink_tcon(open_file->tlink);
Steve French50c2f752007-07-13 00:33:32 +0000974
Jeff Layton838726c2008-08-28 07:54:59 -0400975 rc = generic_write_checks(file, poffset, &write_size, 0);
976 if (rc)
977 return rc;
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 xid = GetXid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Jeff Laytonfbec9ab2009-04-03 13:44:00 -0400981 long_op = cifs_write_timeout(cifsi, *poffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 for (total_written = 0; write_size > total_written;
983 total_written += bytes_written) {
984 rc = -EAGAIN;
985 while (rc == -EAGAIN) {
986 if (file->private_data == NULL) {
987 /* file has been closed on us */
988 FreeXid(xid);
989 /* if we have gotten here we have written some data
990 and blocked, and the file has been freed on us while
991 we blocked so return what we managed to write */
992 return total_written;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (open_file->closePend) {
995 FreeXid(xid);
996 if (total_written)
997 return total_written;
998 else
999 return -EBADF;
1000 }
1001 if (open_file->invalidHandle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /* we could deadlock if we called
1003 filemap_fdatawait from here so tell
1004 reopen_file not to flush data to server
1005 now */
Steve French4b18f2a2008-04-29 00:06:05 +00001006 rc = cifs_reopen_file(file, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (rc != 0)
1008 break;
1009 }
1010
1011 rc = CIFSSMBWrite(xid, pTcon,
1012 open_file->netfid,
1013 min_t(const int, cifs_sb->wsize,
1014 write_size - total_written),
1015 *poffset, &bytes_written,
1016 NULL, write_data + total_written, long_op);
1017 }
1018 if (rc || (bytes_written == 0)) {
1019 if (total_written)
1020 break;
1021 else {
1022 FreeXid(xid);
1023 return rc;
1024 }
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001025 } else {
1026 cifs_update_eof(cifsi, *poffset, bytes_written);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 *poffset += bytes_written;
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001028 }
Steve French133672e2007-11-13 22:41:37 +00001029 long_op = CIFS_STD_OP; /* subsequent writes fast -
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 15 seconds is plenty */
1031 }
1032
Steve Frencha4544342005-08-24 13:59:35 -07001033 cifs_stats_bytes_written(pTcon, total_written);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 /* since the write may have blocked check these pointers again */
Steve French3677db12007-02-26 16:46:11 +00001036 if ((file->f_path.dentry) && (file->f_path.dentry->d_inode)) {
1037 struct inode *inode = file->f_path.dentry->d_inode;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001038/* Do not update local mtime - server will set its actual value on write
1039 * inode->i_ctime = inode->i_mtime =
Steve French3677db12007-02-26 16:46:11 +00001040 * current_fs_time(inode->i_sb);*/
1041 if (total_written > 0) {
1042 spin_lock(&inode->i_lock);
1043 if (*poffset > file->f_path.dentry->d_inode->i_size)
1044 i_size_write(file->f_path.dentry->d_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 *poffset);
Steve French3677db12007-02-26 16:46:11 +00001046 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001048 mark_inode_dirty_sync(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050 FreeXid(xid);
1051 return total_written;
1052}
1053
1054static ssize_t cifs_write(struct file *file, const char *write_data,
Nick Piggind9414772008-09-24 11:32:59 -04001055 size_t write_size, loff_t *poffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
1057 int rc = 0;
1058 unsigned int bytes_written = 0;
1059 unsigned int total_written;
1060 struct cifs_sb_info *cifs_sb;
1061 struct cifsTconInfo *pTcon;
1062 int xid, long_op;
1063 struct cifsFileInfo *open_file;
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001064 struct cifsInodeInfo *cifsi = CIFS_I(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08001066 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Joe Perchesb6b38f72010-04-21 03:50:45 +00001068 cFYI(1, "write %zd bytes to offset %lld of %s", write_size,
1069 *poffset, file->f_path.dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 if (file->private_data == NULL)
1072 return -EBADF;
Joe Perchesc21dfb62010-07-12 13:50:14 -07001073 open_file = file->private_data;
Jeff Layton13cfb732010-09-29 19:51:11 -04001074 pTcon = tlink_tcon(open_file->tlink);
Steve French50c2f752007-07-13 00:33:32 +00001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 xid = GetXid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001078 long_op = cifs_write_timeout(cifsi, *poffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 for (total_written = 0; write_size > total_written;
1080 total_written += bytes_written) {
1081 rc = -EAGAIN;
1082 while (rc == -EAGAIN) {
1083 if (file->private_data == NULL) {
1084 /* file has been closed on us */
1085 FreeXid(xid);
1086 /* if we have gotten here we have written some data
1087 and blocked, and the file has been freed on us
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001088 while we blocked so return what we managed to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 write */
1090 return total_written;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (open_file->closePend) {
1093 FreeXid(xid);
1094 if (total_written)
1095 return total_written;
1096 else
1097 return -EBADF;
1098 }
1099 if (open_file->invalidHandle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 /* we could deadlock if we called
1101 filemap_fdatawait from here so tell
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001102 reopen_file not to flush data to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 server now */
Steve French4b18f2a2008-04-29 00:06:05 +00001104 rc = cifs_reopen_file(file, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (rc != 0)
1106 break;
1107 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001108 if (experimEnabled || (pTcon->ses->server &&
1109 ((pTcon->ses->server->secMode &
Steve French08775832006-05-30 18:08:26 +00001110 (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED))
Steve Frenchc01f36a2006-05-30 18:05:10 +00001111 == 0))) {
Steve French3e844692005-10-03 13:37:24 -07001112 struct kvec iov[2];
1113 unsigned int len;
1114
Steve French0ae0efa2005-10-10 10:57:19 -07001115 len = min((size_t)cifs_sb->wsize,
Steve French3e844692005-10-03 13:37:24 -07001116 write_size - total_written);
1117 /* iov[0] is reserved for smb header */
1118 iov[1].iov_base = (char *)write_data +
1119 total_written;
1120 iov[1].iov_len = len;
Steve Frenchd6e04ae2005-06-13 13:24:43 -05001121 rc = CIFSSMBWrite2(xid, pTcon,
Steve French3e844692005-10-03 13:37:24 -07001122 open_file->netfid, len,
Steve Frenchd6e04ae2005-06-13 13:24:43 -05001123 *poffset, &bytes_written,
Steve French3e844692005-10-03 13:37:24 -07001124 iov, 1, long_op);
Steve Frenchd6e04ae2005-06-13 13:24:43 -05001125 } else
Steve French60808232006-04-22 15:53:05 +00001126 rc = CIFSSMBWrite(xid, pTcon,
1127 open_file->netfid,
1128 min_t(const int, cifs_sb->wsize,
1129 write_size - total_written),
1130 *poffset, &bytes_written,
1131 write_data + total_written,
1132 NULL, long_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134 if (rc || (bytes_written == 0)) {
1135 if (total_written)
1136 break;
1137 else {
1138 FreeXid(xid);
1139 return rc;
1140 }
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001141 } else {
1142 cifs_update_eof(cifsi, *poffset, bytes_written);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 *poffset += bytes_written;
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001144 }
Steve French133672e2007-11-13 22:41:37 +00001145 long_op = CIFS_STD_OP; /* subsequent writes fast -
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 15 seconds is plenty */
1147 }
1148
Steve Frencha4544342005-08-24 13:59:35 -07001149 cifs_stats_bytes_written(pTcon, total_written);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 /* since the write may have blocked check these pointers again */
Steve French3677db12007-02-26 16:46:11 +00001152 if ((file->f_path.dentry) && (file->f_path.dentry->d_inode)) {
Steve French004c46b2007-02-17 04:34:13 +00001153/*BB We could make this contingent on superblock ATIME flag too */
Steve French3677db12007-02-26 16:46:11 +00001154/* file->f_path.dentry->d_inode->i_ctime =
1155 file->f_path.dentry->d_inode->i_mtime = CURRENT_TIME;*/
1156 if (total_written > 0) {
1157 spin_lock(&file->f_path.dentry->d_inode->i_lock);
1158 if (*poffset > file->f_path.dentry->d_inode->i_size)
1159 i_size_write(file->f_path.dentry->d_inode,
1160 *poffset);
1161 spin_unlock(&file->f_path.dentry->d_inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 }
Steve French3677db12007-02-26 16:46:11 +00001163 mark_inode_dirty_sync(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
1165 FreeXid(xid);
1166 return total_written;
1167}
1168
Steve French630f3f0c2007-10-25 21:17:17 +00001169#ifdef CONFIG_CIFS_EXPERIMENTAL
Jeff Layton6508d902010-09-29 19:51:11 -04001170struct cifsFileInfo *find_readable_file(struct cifsInodeInfo *cifs_inode,
1171 bool fsuid_only)
Steve French630f3f0c2007-10-25 21:17:17 +00001172{
1173 struct cifsFileInfo *open_file = NULL;
Jeff Layton6508d902010-09-29 19:51:11 -04001174 struct cifs_sb_info *cifs_sb = CIFS_SB(cifs_inode->vfs_inode.i_sb);
1175
1176 /* only filter by fsuid on multiuser mounts */
1177 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
1178 fsuid_only = false;
Steve French630f3f0c2007-10-25 21:17:17 +00001179
1180 read_lock(&GlobalSMBSeslock);
1181 /* we could simply get the first_list_entry since write-only entries
1182 are always at the end of the list but since the first entry might
1183 have a close pending, we go through the whole list */
1184 list_for_each_entry(open_file, &cifs_inode->openFileList, flist) {
1185 if (open_file->closePend)
1186 continue;
Jeff Layton6508d902010-09-29 19:51:11 -04001187 if (fsuid_only && open_file->uid != current_fsuid())
1188 continue;
Steve French630f3f0c2007-10-25 21:17:17 +00001189 if (open_file->pfile && ((open_file->pfile->f_flags & O_RDWR) ||
1190 (open_file->pfile->f_flags & O_RDONLY))) {
1191 if (!open_file->invalidHandle) {
1192 /* found a good file */
1193 /* lock it so it will not be closed on us */
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04001194 cifsFileInfo_get(open_file);
Steve French630f3f0c2007-10-25 21:17:17 +00001195 read_unlock(&GlobalSMBSeslock);
1196 return open_file;
1197 } /* else might as well continue, and look for
1198 another, or simply have the caller reopen it
1199 again rather than trying to fix this handle */
1200 } else /* write only file */
1201 break; /* write only files are last so must be done */
1202 }
1203 read_unlock(&GlobalSMBSeslock);
1204 return NULL;
1205}
1206#endif
1207
Jeff Layton6508d902010-09-29 19:51:11 -04001208struct cifsFileInfo *find_writable_file(struct cifsInodeInfo *cifs_inode,
1209 bool fsuid_only)
Steve French6148a742005-10-05 12:23:19 -07001210{
1211 struct cifsFileInfo *open_file;
Jeff Layton6508d902010-09-29 19:51:11 -04001212 struct cifs_sb_info *cifs_sb = CIFS_SB(cifs_inode->vfs_inode.i_sb);
Jeff Layton2846d382008-09-22 21:33:33 -04001213 bool any_available = false;
Steve Frenchdd99cd82005-10-05 19:32:49 -07001214 int rc;
Steve French6148a742005-10-05 12:23:19 -07001215
Steve French60808232006-04-22 15:53:05 +00001216 /* Having a null inode here (because mapping->host was set to zero by
1217 the VFS or MM) should not happen but we had reports of on oops (due to
1218 it being zero) during stress testcases so we need to check for it */
1219
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001220 if (cifs_inode == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001221 cERROR(1, "Null inode passed to cifs_writeable_file");
Steve French60808232006-04-22 15:53:05 +00001222 dump_stack();
1223 return NULL;
1224 }
1225
Jeff Layton6508d902010-09-29 19:51:11 -04001226 /* only filter by fsuid on multiuser mounts */
1227 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
1228 fsuid_only = false;
1229
Steve French6148a742005-10-05 12:23:19 -07001230 read_lock(&GlobalSMBSeslock);
Steve French9b22b0b2007-10-02 01:11:08 +00001231refind_writable:
Steve French6148a742005-10-05 12:23:19 -07001232 list_for_each_entry(open_file, &cifs_inode->openFileList, flist) {
Jeff Layton6508d902010-09-29 19:51:11 -04001233 if (open_file->closePend)
Steve French6148a742005-10-05 12:23:19 -07001234 continue;
Jeff Layton6508d902010-09-29 19:51:11 -04001235 if (!any_available && open_file->pid != current->tgid)
1236 continue;
1237 if (fsuid_only && open_file->uid != current_fsuid())
1238 continue;
Steve French6148a742005-10-05 12:23:19 -07001239 if (open_file->pfile &&
1240 ((open_file->pfile->f_flags & O_RDWR) ||
1241 (open_file->pfile->f_flags & O_WRONLY))) {
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04001242 cifsFileInfo_get(open_file);
Steve French9b22b0b2007-10-02 01:11:08 +00001243
1244 if (!open_file->invalidHandle) {
1245 /* found a good writable file */
1246 read_unlock(&GlobalSMBSeslock);
1247 return open_file;
1248 }
Steve French8840dee2007-11-16 23:05:52 +00001249
Steve French6148a742005-10-05 12:23:19 -07001250 read_unlock(&GlobalSMBSeslock);
Steve French9b22b0b2007-10-02 01:11:08 +00001251 /* Had to unlock since following call can block */
Steve French4b18f2a2008-04-29 00:06:05 +00001252 rc = cifs_reopen_file(open_file->pfile, false);
Steve French8840dee2007-11-16 23:05:52 +00001253 if (!rc) {
Steve French9b22b0b2007-10-02 01:11:08 +00001254 if (!open_file->closePend)
1255 return open_file;
1256 else { /* start over in case this was deleted */
1257 /* since the list could be modified */
Steve French37c0eb42005-10-05 14:50:29 -07001258 read_lock(&GlobalSMBSeslock);
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04001259 cifsFileInfo_put(open_file);
Steve French9b22b0b2007-10-02 01:11:08 +00001260 goto refind_writable;
Steve French37c0eb42005-10-05 14:50:29 -07001261 }
1262 }
Steve French9b22b0b2007-10-02 01:11:08 +00001263
1264 /* if it fails, try another handle if possible -
1265 (we can not do this if closePending since
1266 loop could be modified - in which case we
1267 have to start at the beginning of the list
1268 again. Note that it would be bad
1269 to hold up writepages here (rather than
1270 in caller) with continuous retries */
Joe Perchesb6b38f72010-04-21 03:50:45 +00001271 cFYI(1, "wp failed on reopen file");
Steve French9b22b0b2007-10-02 01:11:08 +00001272 read_lock(&GlobalSMBSeslock);
1273 /* can not use this handle, no write
1274 pending on this one after all */
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04001275 cifsFileInfo_put(open_file);
Steve French8840dee2007-11-16 23:05:52 +00001276
Steve French9b22b0b2007-10-02 01:11:08 +00001277 if (open_file->closePend) /* list could have changed */
1278 goto refind_writable;
1279 /* else we simply continue to the next entry. Thus
1280 we do not loop on reopen errors. If we
1281 can not reopen the file, for example if we
1282 reconnected to a server with another client
1283 racing to delete or lock the file we would not
1284 make progress if we restarted before the beginning
1285 of the loop here. */
Steve French6148a742005-10-05 12:23:19 -07001286 }
1287 }
Jeff Layton2846d382008-09-22 21:33:33 -04001288 /* couldn't find useable FH with same pid, try any available */
1289 if (!any_available) {
1290 any_available = true;
1291 goto refind_writable;
1292 }
Steve French6148a742005-10-05 12:23:19 -07001293 read_unlock(&GlobalSMBSeslock);
1294 return NULL;
1295}
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to)
1298{
1299 struct address_space *mapping = page->mapping;
1300 loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
1301 char *write_data;
1302 int rc = -EFAULT;
1303 int bytes_written = 0;
1304 struct cifs_sb_info *cifs_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 struct inode *inode;
Steve French6148a742005-10-05 12:23:19 -07001306 struct cifsFileInfo *open_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 if (!mapping || !mapping->host)
1309 return -EFAULT;
1310
1311 inode = page->mapping->host;
1312 cifs_sb = CIFS_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 offset += (loff_t)from;
1315 write_data = kmap(page);
1316 write_data += from;
1317
1318 if ((to > PAGE_CACHE_SIZE) || (from > to)) {
1319 kunmap(page);
1320 return -EIO;
1321 }
1322
1323 /* racing with truncate? */
1324 if (offset > mapping->host->i_size) {
1325 kunmap(page);
1326 return 0; /* don't care */
1327 }
1328
1329 /* check to make sure that we are not extending the file */
1330 if (mapping->host->i_size - offset < (loff_t)to)
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001331 to = (unsigned)(mapping->host->i_size - offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Jeff Layton6508d902010-09-29 19:51:11 -04001333 open_file = find_writable_file(CIFS_I(mapping->host), false);
Steve French6148a742005-10-05 12:23:19 -07001334 if (open_file) {
1335 bytes_written = cifs_write(open_file->pfile, write_data,
1336 to-from, &offset);
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04001337 cifsFileInfo_put(open_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 /* Does mm or vfs already set times? */
Steve French6148a742005-10-05 12:23:19 -07001339 inode->i_atime = inode->i_mtime = current_fs_time(inode->i_sb);
Steve Frenchbb5a9a02007-12-31 04:21:29 +00001340 if ((bytes_written > 0) && (offset))
Steve French6148a742005-10-05 12:23:19 -07001341 rc = 0;
Steve Frenchbb5a9a02007-12-31 04:21:29 +00001342 else if (bytes_written < 0)
1343 rc = bytes_written;
Steve French6148a742005-10-05 12:23:19 -07001344 } else {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001345 cFYI(1, "No writeable filehandles for inode");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 rc = -EIO;
1347 }
1348
1349 kunmap(page);
1350 return rc;
1351}
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353static int cifs_writepages(struct address_space *mapping,
Steve French37c0eb42005-10-05 14:50:29 -07001354 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
Steve French37c0eb42005-10-05 14:50:29 -07001356 struct backing_dev_info *bdi = mapping->backing_dev_info;
1357 unsigned int bytes_to_write;
1358 unsigned int bytes_written;
1359 struct cifs_sb_info *cifs_sb;
1360 int done = 0;
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -07001361 pgoff_t end;
Steve French37c0eb42005-10-05 14:50:29 -07001362 pgoff_t index;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001363 int range_whole = 0;
1364 struct kvec *iov;
Steve French84d2f072005-10-12 15:32:05 -07001365 int len;
Steve French37c0eb42005-10-05 14:50:29 -07001366 int n_iov = 0;
1367 pgoff_t next;
1368 int nr_pages;
1369 __u64 offset = 0;
Steve French23e7dd72005-10-20 13:44:56 -07001370 struct cifsFileInfo *open_file;
Jeff Laytonba00ba62010-09-20 16:01:31 -07001371 struct cifsTconInfo *tcon;
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001372 struct cifsInodeInfo *cifsi = CIFS_I(mapping->host);
Steve French37c0eb42005-10-05 14:50:29 -07001373 struct page *page;
1374 struct pagevec pvec;
1375 int rc = 0;
1376 int scanned = 0;
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001377 int xid, long_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Jeff Laytonf3983c22010-09-22 16:17:40 -07001379 /*
1380 * BB: Is this meaningful for a non-block-device file system?
1381 * If it is, we should test it again after we do I/O
1382 */
1383 if (wbc->nonblocking && bdi_write_congested(bdi)) {
1384 wbc->encountered_congestion = 1;
1385 return 0;
1386 }
1387
Steve French37c0eb42005-10-05 14:50:29 -07001388 cifs_sb = CIFS_SB(mapping->host->i_sb);
Steve French50c2f752007-07-13 00:33:32 +00001389
Steve French37c0eb42005-10-05 14:50:29 -07001390 /*
1391 * If wsize is smaller that the page cache size, default to writing
1392 * one page at a time via cifs_writepage
1393 */
1394 if (cifs_sb->wsize < PAGE_CACHE_SIZE)
1395 return generic_writepages(mapping, wbc);
1396
Steve French9a0c8232007-02-02 04:21:57 +00001397 iov = kmalloc(32 * sizeof(struct kvec), GFP_KERNEL);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001398 if (iov == NULL)
Steve French9a0c8232007-02-02 04:21:57 +00001399 return generic_writepages(mapping, wbc);
1400
Steve French37c0eb42005-10-05 14:50:29 -07001401 /*
Jeff Laytonf3983c22010-09-22 16:17:40 -07001402 * if there's no open file, then this is likely to fail too,
1403 * but it'll at least handle the return. Maybe it should be
1404 * a BUG() instead?
Steve French37c0eb42005-10-05 14:50:29 -07001405 */
Jeff Layton6508d902010-09-29 19:51:11 -04001406 open_file = find_writable_file(CIFS_I(mapping->host), false);
Jeff Laytonf3983c22010-09-22 16:17:40 -07001407 if (!open_file) {
Steve French9a0c8232007-02-02 04:21:57 +00001408 kfree(iov);
Jeff Laytonf3983c22010-09-22 16:17:40 -07001409 return generic_writepages(mapping, wbc);
Steve French37c0eb42005-10-05 14:50:29 -07001410 }
1411
Jeff Layton13cfb732010-09-29 19:51:11 -04001412 tcon = tlink_tcon(open_file->tlink);
Jeff Laytonf3983c22010-09-22 16:17:40 -07001413 if (!experimEnabled && tcon->ses->server->secMode &
1414 (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) {
1415 cifsFileInfo_put(open_file);
1416 return generic_writepages(mapping, wbc);
1417 }
1418 cifsFileInfo_put(open_file);
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 xid = GetXid();
1421
Steve French37c0eb42005-10-05 14:50:29 -07001422 pagevec_init(&pvec, 0);
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -07001423 if (wbc->range_cyclic) {
Steve French37c0eb42005-10-05 14:50:29 -07001424 index = mapping->writeback_index; /* Start from prev offset */
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -07001425 end = -1;
1426 } else {
1427 index = wbc->range_start >> PAGE_CACHE_SHIFT;
1428 end = wbc->range_end >> PAGE_CACHE_SHIFT;
1429 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
1430 range_whole = 1;
Steve French37c0eb42005-10-05 14:50:29 -07001431 scanned = 1;
1432 }
1433retry:
1434 while (!done && (index <= end) &&
1435 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
1436 PAGECACHE_TAG_DIRTY,
1437 min(end - index, (pgoff_t)PAGEVEC_SIZE - 1) + 1))) {
1438 int first;
1439 unsigned int i;
1440
Steve French37c0eb42005-10-05 14:50:29 -07001441 first = -1;
1442 next = 0;
1443 n_iov = 0;
1444 bytes_to_write = 0;
1445
1446 for (i = 0; i < nr_pages; i++) {
1447 page = pvec.pages[i];
1448 /*
1449 * At this point we hold neither mapping->tree_lock nor
1450 * lock on the page itself: the page may be truncated or
1451 * invalidated (changing page->mapping to NULL), or even
1452 * swizzled back from swapper_space to tmpfs file
1453 * mapping
1454 */
1455
1456 if (first < 0)
1457 lock_page(page);
Nick Piggin529ae9a2008-08-02 12:01:03 +02001458 else if (!trylock_page(page))
Steve French37c0eb42005-10-05 14:50:29 -07001459 break;
1460
1461 if (unlikely(page->mapping != mapping)) {
1462 unlock_page(page);
1463 break;
1464 }
1465
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -07001466 if (!wbc->range_cyclic && page->index > end) {
Steve French37c0eb42005-10-05 14:50:29 -07001467 done = 1;
1468 unlock_page(page);
1469 break;
1470 }
1471
1472 if (next && (page->index != next)) {
1473 /* Not next consecutive page */
1474 unlock_page(page);
1475 break;
1476 }
1477
1478 if (wbc->sync_mode != WB_SYNC_NONE)
1479 wait_on_page_writeback(page);
1480
1481 if (PageWriteback(page) ||
Linus Torvaldscb876f42006-12-23 16:19:07 -08001482 !clear_page_dirty_for_io(page)) {
Steve French37c0eb42005-10-05 14:50:29 -07001483 unlock_page(page);
1484 break;
1485 }
Steve French84d2f072005-10-12 15:32:05 -07001486
Linus Torvaldscb876f42006-12-23 16:19:07 -08001487 /*
1488 * This actually clears the dirty bit in the radix tree.
1489 * See cifs_writepage() for more commentary.
1490 */
1491 set_page_writeback(page);
1492
Steve French84d2f072005-10-12 15:32:05 -07001493 if (page_offset(page) >= mapping->host->i_size) {
1494 done = 1;
1495 unlock_page(page);
Linus Torvaldscb876f42006-12-23 16:19:07 -08001496 end_page_writeback(page);
Steve French84d2f072005-10-12 15:32:05 -07001497 break;
1498 }
1499
Steve French37c0eb42005-10-05 14:50:29 -07001500 /*
1501 * BB can we get rid of this? pages are held by pvec
1502 */
1503 page_cache_get(page);
1504
Steve French84d2f072005-10-12 15:32:05 -07001505 len = min(mapping->host->i_size - page_offset(page),
1506 (loff_t)PAGE_CACHE_SIZE);
1507
Steve French37c0eb42005-10-05 14:50:29 -07001508 /* reserve iov[0] for the smb header */
1509 n_iov++;
1510 iov[n_iov].iov_base = kmap(page);
Steve French84d2f072005-10-12 15:32:05 -07001511 iov[n_iov].iov_len = len;
1512 bytes_to_write += len;
Steve French37c0eb42005-10-05 14:50:29 -07001513
1514 if (first < 0) {
1515 first = i;
1516 offset = page_offset(page);
1517 }
1518 next = page->index + 1;
1519 if (bytes_to_write + PAGE_CACHE_SIZE > cifs_sb->wsize)
1520 break;
1521 }
1522 if (n_iov) {
Jeff Layton6508d902010-09-29 19:51:11 -04001523 open_file = find_writable_file(CIFS_I(mapping->host),
1524 false);
Steve French23e7dd72005-10-20 13:44:56 -07001525 if (!open_file) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001526 cERROR(1, "No writable handles for inode");
Steve French23e7dd72005-10-20 13:44:56 -07001527 rc = -EBADF;
Steve French1047abc2005-10-11 19:58:06 -07001528 } else {
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001529 long_op = cifs_write_timeout(cifsi, offset);
Jeff Laytonf3983c22010-09-22 16:17:40 -07001530 rc = CIFSSMBWrite2(xid, tcon, open_file->netfid,
Steve French23e7dd72005-10-20 13:44:56 -07001531 bytes_to_write, offset,
1532 &bytes_written, iov, n_iov,
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001533 long_op);
Dave Kleikamp6ab409b2009-08-31 11:07:12 -04001534 cifsFileInfo_put(open_file);
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04001535 cifs_update_eof(cifsi, offset, bytes_written);
Steve French37c0eb42005-10-05 14:50:29 -07001536 }
Jeff Laytonf3983c22010-09-22 16:17:40 -07001537
1538 if (rc || bytes_written < bytes_to_write) {
1539 cERROR(1, "Write2 ret %d, wrote %d",
1540 rc, bytes_written);
1541 /* BB what if continued retry is
1542 requested via mount flags? */
1543 if (rc == -ENOSPC)
1544 set_bit(AS_ENOSPC, &mapping->flags);
1545 else
1546 set_bit(AS_EIO, &mapping->flags);
1547 } else {
1548 cifs_stats_bytes_written(tcon, bytes_written);
1549 }
1550
Steve French37c0eb42005-10-05 14:50:29 -07001551 for (i = 0; i < n_iov; i++) {
1552 page = pvec.pages[first + i];
Steve Frencheb9bdaa2006-01-27 15:11:47 -08001553 /* Should we also set page error on
1554 success rc but too little data written? */
1555 /* BB investigate retry logic on temporary
1556 server crash cases and how recovery works
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001557 when page marked as error */
1558 if (rc)
Steve Frencheb9bdaa2006-01-27 15:11:47 -08001559 SetPageError(page);
Steve French37c0eb42005-10-05 14:50:29 -07001560 kunmap(page);
1561 unlock_page(page);
Linus Torvaldscb876f42006-12-23 16:19:07 -08001562 end_page_writeback(page);
Steve French37c0eb42005-10-05 14:50:29 -07001563 page_cache_release(page);
1564 }
1565 if ((wbc->nr_to_write -= n_iov) <= 0)
1566 done = 1;
1567 index = next;
Dave Kleikampb066a482008-11-18 03:49:05 +00001568 } else
1569 /* Need to re-find the pages we skipped */
1570 index = pvec.pages[0]->index + 1;
1571
Steve French37c0eb42005-10-05 14:50:29 -07001572 pagevec_release(&pvec);
1573 }
1574 if (!scanned && !done) {
1575 /*
1576 * We hit the last page and there is more work to be done: wrap
1577 * back to the start of the file
1578 */
1579 scanned = 1;
1580 index = 0;
1581 goto retry;
1582 }
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -07001583 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
Steve French37c0eb42005-10-05 14:50:29 -07001584 mapping->writeback_index = index;
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 FreeXid(xid);
Steve French9a0c8232007-02-02 04:21:57 +00001587 kfree(iov);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 return rc;
1589}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001591static int cifs_writepage(struct page *page, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 int rc = -EFAULT;
1594 int xid;
1595
1596 xid = GetXid();
1597/* BB add check for wbc flags */
1598 page_cache_get(page);
Steve Frenchad7a2922008-02-07 23:25:02 +00001599 if (!PageUptodate(page))
Joe Perchesb6b38f72010-04-21 03:50:45 +00001600 cFYI(1, "ppw - page not up to date");
Linus Torvaldscb876f42006-12-23 16:19:07 -08001601
1602 /*
1603 * Set the "writeback" flag, and clear "dirty" in the radix tree.
1604 *
1605 * A writepage() implementation always needs to do either this,
1606 * or re-dirty the page with "redirty_page_for_writepage()" in
1607 * the case of a failure.
1608 *
1609 * Just unlocking the page will cause the radix tree tag-bits
1610 * to fail to update with the state of the page correctly.
1611 */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001612 set_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 rc = cifs_partialpagewrite(page, 0, PAGE_CACHE_SIZE);
1614 SetPageUptodate(page); /* BB add check for error and Clearuptodate? */
1615 unlock_page(page);
Linus Torvaldscb876f42006-12-23 16:19:07 -08001616 end_page_writeback(page);
1617 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 FreeXid(xid);
1619 return rc;
1620}
1621
Nick Piggind9414772008-09-24 11:32:59 -04001622static int cifs_write_end(struct file *file, struct address_space *mapping,
1623 loff_t pos, unsigned len, unsigned copied,
1624 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625{
Nick Piggind9414772008-09-24 11:32:59 -04001626 int rc;
1627 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Joe Perchesb6b38f72010-04-21 03:50:45 +00001629 cFYI(1, "write_end for page %p from pos %lld with %d bytes",
1630 page, pos, copied);
Steve Frenchad7a2922008-02-07 23:25:02 +00001631
Jeff Laytona98ee8c2008-11-26 19:32:33 +00001632 if (PageChecked(page)) {
1633 if (copied == len)
1634 SetPageUptodate(page);
1635 ClearPageChecked(page);
1636 } else if (!PageUptodate(page) && copied == PAGE_CACHE_SIZE)
Nick Piggind9414772008-09-24 11:32:59 -04001637 SetPageUptodate(page);
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (!PageUptodate(page)) {
Nick Piggind9414772008-09-24 11:32:59 -04001640 char *page_data;
1641 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
1642 int xid;
1643
1644 xid = GetXid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 /* this is probably better than directly calling
1646 partialpage_write since in this function the file handle is
1647 known which we might as well leverage */
1648 /* BB check if anything else missing out of ppw
1649 such as updating last write time */
1650 page_data = kmap(page);
Nick Piggind9414772008-09-24 11:32:59 -04001651 rc = cifs_write(file, page_data + offset, copied, &pos);
1652 /* if (rc < 0) should we set writebehind rc? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 kunmap(page);
Nick Piggind9414772008-09-24 11:32:59 -04001654
1655 FreeXid(xid);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001656 } else {
Nick Piggind9414772008-09-24 11:32:59 -04001657 rc = copied;
1658 pos += copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 set_page_dirty(page);
1660 }
1661
Nick Piggind9414772008-09-24 11:32:59 -04001662 if (rc > 0) {
1663 spin_lock(&inode->i_lock);
1664 if (pos > inode->i_size)
1665 i_size_write(inode, pos);
1666 spin_unlock(&inode->i_lock);
1667 }
1668
1669 unlock_page(page);
1670 page_cache_release(page);
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return rc;
1673}
1674
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001675int cifs_fsync(struct file *file, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
1677 int xid;
1678 int rc = 0;
Steve Frenchb298f222009-02-21 21:17:43 +00001679 struct cifsTconInfo *tcon;
Joe Perchesc21dfb62010-07-12 13:50:14 -07001680 struct cifsFileInfo *smbfile = file->private_data;
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08001681 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
1683 xid = GetXid();
1684
Joe Perchesb6b38f72010-04-21 03:50:45 +00001685 cFYI(1, "Sync file - name: %s datasync: 0x%x",
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001686 file->f_path.dentry->d_name.name, datasync);
Steve French50c2f752007-07-13 00:33:32 +00001687
Jeff Laytoncea21802007-11-20 23:19:03 +00001688 rc = filemap_write_and_wait(inode->i_mapping);
1689 if (rc == 0) {
1690 rc = CIFS_I(inode)->write_behind_rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 CIFS_I(inode)->write_behind_rc = 0;
Jeff Layton13cfb732010-09-29 19:51:11 -04001692 tcon = tlink_tcon(smbfile->tlink);
Steve Frenchbe652442009-02-23 15:21:59 +00001693 if (!rc && tcon && smbfile &&
Steve French4717bed2009-02-24 14:44:19 +00001694 !(CIFS_SB(inode->i_sb)->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC))
Steve Frenchb298f222009-02-21 21:17:43 +00001695 rc = CIFSSMBFlush(xid, tcon, smbfile->netfid);
Jeff Laytoncea21802007-11-20 23:19:03 +00001696 }
Steve Frenchb298f222009-02-21 21:17:43 +00001697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 FreeXid(xid);
1699 return rc;
1700}
1701
NeilBrown3978d712006-03-26 01:37:17 -08001702/* static void cifs_sync_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703{
1704 struct address_space *mapping;
1705 struct inode *inode;
1706 unsigned long index = page->index;
1707 unsigned int rpages = 0;
1708 int rc = 0;
1709
Steve Frenchf19159d2010-04-21 04:12:10 +00001710 cFYI(1, "sync page %p", page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 mapping = page->mapping;
1712 if (!mapping)
1713 return 0;
1714 inode = mapping->host;
1715 if (!inode)
NeilBrown3978d712006-03-26 01:37:17 -08001716 return; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001718/* fill in rpages then
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 result = cifs_pagein_inode(inode, index, rpages); */ /* BB finish */
1720
Joe Perchesb6b38f72010-04-21 03:50:45 +00001721/* cFYI(1, "rpages is %d for sync page of Index %ld", rpages, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
NeilBrown3978d712006-03-26 01:37:17 -08001723#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 if (rc < 0)
1725 return rc;
1726 return 0;
NeilBrown3978d712006-03-26 01:37:17 -08001727#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728} */
1729
1730/*
1731 * As file closes, flush all cached write data for this inode checking
1732 * for write behind errors.
1733 */
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -07001734int cifs_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001736 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 int rc = 0;
1738
1739 /* Rather than do the steps manually:
1740 lock the inode for writing
1741 loop through pages looking for write behind data (dirty pages)
1742 coalesce into contiguous 16K (or smaller) chunks to write to server
1743 send to server (prefer in parallel)
1744 deal with writebehind errors
1745 unlock inode for writing
1746 filemapfdatawrite appears easier for the time being */
1747
1748 rc = filemap_fdatawrite(inode->i_mapping);
Jeff Laytoncea21802007-11-20 23:19:03 +00001749 /* reset wb rc if we were able to write out dirty pages */
1750 if (!rc) {
1751 rc = CIFS_I(inode)->write_behind_rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 CIFS_I(inode)->write_behind_rc = 0;
Jeff Laytoncea21802007-11-20 23:19:03 +00001753 }
Steve French50c2f752007-07-13 00:33:32 +00001754
Joe Perchesb6b38f72010-04-21 03:50:45 +00001755 cFYI(1, "Flush inode %p file %p rc %d", inode, file, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757 return rc;
1758}
1759
1760ssize_t cifs_user_read(struct file *file, char __user *read_data,
1761 size_t read_size, loff_t *poffset)
1762{
1763 int rc = -EACCES;
1764 unsigned int bytes_read = 0;
1765 unsigned int total_read = 0;
1766 unsigned int current_read_size;
1767 struct cifs_sb_info *cifs_sb;
1768 struct cifsTconInfo *pTcon;
1769 int xid;
1770 struct cifsFileInfo *open_file;
1771 char *smb_read_data;
1772 char __user *current_offset;
1773 struct smb_com_read_rsp *pSMBr;
1774
1775 xid = GetXid();
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08001776 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778 if (file->private_data == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301779 rc = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301781 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 }
Joe Perchesc21dfb62010-07-12 13:50:14 -07001783 open_file = file->private_data;
Jeff Layton13cfb732010-09-29 19:51:11 -04001784 pTcon = tlink_tcon(open_file->tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Steve Frenchad7a2922008-02-07 23:25:02 +00001786 if ((file->f_flags & O_ACCMODE) == O_WRONLY)
Joe Perchesb6b38f72010-04-21 03:50:45 +00001787 cFYI(1, "attempting read on write only file instance");
Steve Frenchad7a2922008-02-07 23:25:02 +00001788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 for (total_read = 0, current_offset = read_data;
1790 read_size > total_read;
1791 total_read += bytes_read, current_offset += bytes_read) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001792 current_read_size = min_t(const int, read_size - total_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 cifs_sb->rsize);
1794 rc = -EAGAIN;
1795 smb_read_data = NULL;
1796 while (rc == -EAGAIN) {
Steve Frenchec637e32005-12-12 20:53:18 -08001797 int buf_type = CIFS_NO_BUFFER;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001798 if ((open_file->invalidHandle) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 (!open_file->closePend)) {
Steve French4b18f2a2008-04-29 00:06:05 +00001800 rc = cifs_reopen_file(file, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 if (rc != 0)
1802 break;
1803 }
Steve Frenchbfa0d752005-08-31 21:50:37 -07001804 rc = CIFSSMBRead(xid, pTcon,
Steve Frenchec637e32005-12-12 20:53:18 -08001805 open_file->netfid,
1806 current_read_size, *poffset,
1807 &bytes_read, &smb_read_data,
1808 &buf_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 pSMBr = (struct smb_com_read_rsp *)smb_read_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 if (smb_read_data) {
Steve French93544cc2006-02-14 22:30:52 -06001811 if (copy_to_user(current_offset,
1812 smb_read_data +
1813 4 /* RFC1001 length field */ +
1814 le16_to_cpu(pSMBr->DataOffset),
Steve Frenchad7a2922008-02-07 23:25:02 +00001815 bytes_read))
Steve French93544cc2006-02-14 22:30:52 -06001816 rc = -EFAULT;
Steve French93544cc2006-02-14 22:30:52 -06001817
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001818 if (buf_type == CIFS_SMALL_BUFFER)
Steve Frenchec637e32005-12-12 20:53:18 -08001819 cifs_small_buf_release(smb_read_data);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001820 else if (buf_type == CIFS_LARGE_BUFFER)
Steve Frenchec637e32005-12-12 20:53:18 -08001821 cifs_buf_release(smb_read_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 smb_read_data = NULL;
1823 }
1824 }
1825 if (rc || (bytes_read == 0)) {
1826 if (total_read) {
1827 break;
1828 } else {
1829 FreeXid(xid);
1830 return rc;
1831 }
1832 } else {
Steve Frencha4544342005-08-24 13:59:35 -07001833 cifs_stats_bytes_read(pTcon, bytes_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 *poffset += bytes_read;
1835 }
1836 }
1837 FreeXid(xid);
1838 return total_read;
1839}
1840
1841
1842static ssize_t cifs_read(struct file *file, char *read_data, size_t read_size,
1843 loff_t *poffset)
1844{
1845 int rc = -EACCES;
1846 unsigned int bytes_read = 0;
1847 unsigned int total_read;
1848 unsigned int current_read_size;
1849 struct cifs_sb_info *cifs_sb;
1850 struct cifsTconInfo *pTcon;
1851 int xid;
1852 char *current_offset;
1853 struct cifsFileInfo *open_file;
Steve Frenchec637e32005-12-12 20:53:18 -08001854 int buf_type = CIFS_NO_BUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 xid = GetXid();
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08001857 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859 if (file->private_data == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301860 rc = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301862 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 }
Joe Perchesc21dfb62010-07-12 13:50:14 -07001864 open_file = file->private_data;
Jeff Layton13cfb732010-09-29 19:51:11 -04001865 pTcon = tlink_tcon(open_file->tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 if ((file->f_flags & O_ACCMODE) == O_WRONLY)
Joe Perchesb6b38f72010-04-21 03:50:45 +00001868 cFYI(1, "attempting read on write only file instance");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001870 for (total_read = 0, current_offset = read_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 read_size > total_read;
1872 total_read += bytes_read, current_offset += bytes_read) {
1873 current_read_size = min_t(const int, read_size - total_read,
1874 cifs_sb->rsize);
Steve Frenchf9f5c812005-09-15 23:06:38 -07001875 /* For windows me and 9x we do not want to request more
1876 than it negotiated since it will refuse the read then */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001877 if ((pTcon->ses) &&
Steve Frenchf9f5c812005-09-15 23:06:38 -07001878 !(pTcon->ses->capabilities & CAP_LARGE_FILES)) {
1879 current_read_size = min_t(const int, current_read_size,
1880 pTcon->ses->server->maxBuf - 128);
1881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 rc = -EAGAIN;
1883 while (rc == -EAGAIN) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001884 if ((open_file->invalidHandle) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 (!open_file->closePend)) {
Steve French4b18f2a2008-04-29 00:06:05 +00001886 rc = cifs_reopen_file(file, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (rc != 0)
1888 break;
1889 }
Steve Frenchbfa0d752005-08-31 21:50:37 -07001890 rc = CIFSSMBRead(xid, pTcon,
Steve Frenchec637e32005-12-12 20:53:18 -08001891 open_file->netfid,
1892 current_read_size, *poffset,
1893 &bytes_read, &current_offset,
1894 &buf_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 }
1896 if (rc || (bytes_read == 0)) {
1897 if (total_read) {
1898 break;
1899 } else {
1900 FreeXid(xid);
1901 return rc;
1902 }
1903 } else {
Steve Frencha4544342005-08-24 13:59:35 -07001904 cifs_stats_bytes_read(pTcon, total_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 *poffset += bytes_read;
1906 }
1907 }
1908 FreeXid(xid);
1909 return total_read;
1910}
1911
1912int cifs_file_mmap(struct file *file, struct vm_area_struct *vma)
1913{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 int rc, xid;
1915
1916 xid = GetXid();
Jeff Laytonabab0952010-02-12 07:44:18 -05001917 rc = cifs_revalidate_file(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 if (rc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001919 cFYI(1, "Validation prior to mmap failed, error=%d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 FreeXid(xid);
1921 return rc;
1922 }
1923 rc = generic_file_mmap(file, vma);
1924 FreeXid(xid);
1925 return rc;
1926}
1927
1928
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001929static void cifs_copy_cache_pages(struct address_space *mapping,
Nick Piggin315e9952010-04-21 03:18:28 +00001930 struct list_head *pages, int bytes_read, char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931{
1932 struct page *page;
1933 char *target;
1934
1935 while (bytes_read > 0) {
1936 if (list_empty(pages))
1937 break;
1938
1939 page = list_entry(pages->prev, struct page, lru);
1940 list_del(&page->lru);
1941
Nick Piggin315e9952010-04-21 03:18:28 +00001942 if (add_to_page_cache_lru(page, mapping, page->index,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 GFP_KERNEL)) {
1944 page_cache_release(page);
Joe Perchesb6b38f72010-04-21 03:50:45 +00001945 cFYI(1, "Add page cache failed");
Steve French3079ca62005-06-09 14:44:07 -07001946 data += PAGE_CACHE_SIZE;
1947 bytes_read -= PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 continue;
1949 }
Jeff Layton06b43672010-06-01 10:54:45 -04001950 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001952 target = kmap_atomic(page, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954 if (PAGE_CACHE_SIZE > bytes_read) {
1955 memcpy(target, data, bytes_read);
1956 /* zero the tail end of this partial page */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001957 memset(target + bytes_read, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 PAGE_CACHE_SIZE - bytes_read);
1959 bytes_read = 0;
1960 } else {
1961 memcpy(target, data, PAGE_CACHE_SIZE);
1962 bytes_read -= PAGE_CACHE_SIZE;
1963 }
1964 kunmap_atomic(target, KM_USER0);
1965
1966 flush_dcache_page(page);
1967 SetPageUptodate(page);
1968 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 data += PAGE_CACHE_SIZE;
Suresh Jayaraman9dc06552010-07-05 18:13:11 +05301970
1971 /* add page to FS-Cache */
1972 cifs_readpage_to_fscache(mapping->host, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 }
1974 return;
1975}
1976
1977static int cifs_readpages(struct file *file, struct address_space *mapping,
1978 struct list_head *page_list, unsigned num_pages)
1979{
1980 int rc = -EACCES;
1981 int xid;
1982 loff_t offset;
1983 struct page *page;
1984 struct cifs_sb_info *cifs_sb;
1985 struct cifsTconInfo *pTcon;
Steve French2c2130e2007-10-12 19:10:28 +00001986 unsigned int bytes_read = 0;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001987 unsigned int read_size, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 char *smb_read_data = NULL;
1989 struct smb_com_read_rsp *pSMBr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 struct cifsFileInfo *open_file;
Steve Frenchec637e32005-12-12 20:53:18 -08001991 int buf_type = CIFS_NO_BUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
1993 xid = GetXid();
1994 if (file->private_data == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301995 rc = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05301997 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 }
Joe Perchesc21dfb62010-07-12 13:50:14 -07001999 open_file = file->private_data;
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08002000 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Jeff Layton13cfb732010-09-29 19:51:11 -04002001 pTcon = tlink_tcon(open_file->tlink);
Steve Frenchbfa0d752005-08-31 21:50:37 -07002002
Suresh Jayaraman56698232010-07-05 18:13:25 +05302003 /*
2004 * Reads as many pages as possible from fscache. Returns -ENOBUFS
2005 * immediately if the cookie is negative
2006 */
2007 rc = cifs_readpages_from_fscache(mapping->host, mapping, page_list,
2008 &num_pages);
2009 if (rc == 0)
2010 goto read_complete;
2011
Steve Frenchf19159d2010-04-21 04:12:10 +00002012 cFYI(DBG2, "rpages: num pages %d", num_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 for (i = 0; i < num_pages; ) {
2014 unsigned contig_pages;
2015 struct page *tmp_page;
2016 unsigned long expected_index;
2017
2018 if (list_empty(page_list))
2019 break;
2020
2021 page = list_entry(page_list->prev, struct page, lru);
2022 offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
2023
2024 /* count adjacent pages that we will read into */
2025 contig_pages = 0;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002026 expected_index =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 list_entry(page_list->prev, struct page, lru)->index;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002028 list_for_each_entry_reverse(tmp_page, page_list, lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 if (tmp_page->index == expected_index) {
2030 contig_pages++;
2031 expected_index++;
2032 } else
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002033 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 }
2035 if (contig_pages + i > num_pages)
2036 contig_pages = num_pages - i;
2037
2038 /* for reads over a certain size could initiate async
2039 read ahead */
2040
2041 read_size = contig_pages * PAGE_CACHE_SIZE;
2042 /* Read size needs to be in multiples of one page */
2043 read_size = min_t(const unsigned int, read_size,
2044 cifs_sb->rsize & PAGE_CACHE_MASK);
Joe Perchesb6b38f72010-04-21 03:50:45 +00002045 cFYI(DBG2, "rpages: read size 0x%x contiguous pages %d",
2046 read_size, contig_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 rc = -EAGAIN;
2048 while (rc == -EAGAIN) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002049 if ((open_file->invalidHandle) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 (!open_file->closePend)) {
Steve French4b18f2a2008-04-29 00:06:05 +00002051 rc = cifs_reopen_file(file, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 if (rc != 0)
2053 break;
2054 }
2055
Steve Frenchbfa0d752005-08-31 21:50:37 -07002056 rc = CIFSSMBRead(xid, pTcon,
Steve Frenchec637e32005-12-12 20:53:18 -08002057 open_file->netfid,
2058 read_size, offset,
2059 &bytes_read, &smb_read_data,
2060 &buf_type);
Steve Frencha9d02ad2005-08-24 23:06:05 -07002061 /* BB more RC checks ? */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002062 if (rc == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 if (smb_read_data) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002064 if (buf_type == CIFS_SMALL_BUFFER)
Steve Frenchec637e32005-12-12 20:53:18 -08002065 cifs_small_buf_release(smb_read_data);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002066 else if (buf_type == CIFS_LARGE_BUFFER)
Steve Frenchec637e32005-12-12 20:53:18 -08002067 cifs_buf_release(smb_read_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 smb_read_data = NULL;
2069 }
2070 }
2071 }
2072 if ((rc < 0) || (smb_read_data == NULL)) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00002073 cFYI(1, "Read error in readpages: %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 break;
2075 } else if (bytes_read > 0) {
Andrew Morton6f88cc22006-12-10 02:19:44 -08002076 task_io_account_read(bytes_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 pSMBr = (struct smb_com_read_rsp *)smb_read_data;
2078 cifs_copy_cache_pages(mapping, page_list, bytes_read,
2079 smb_read_data + 4 /* RFC1001 hdr */ +
Nick Piggin315e9952010-04-21 03:18:28 +00002080 le16_to_cpu(pSMBr->DataOffset));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 i += bytes_read >> PAGE_CACHE_SHIFT;
Steve Frencha4544342005-08-24 13:59:35 -07002083 cifs_stats_bytes_read(pTcon, bytes_read);
Steve French2c2130e2007-10-12 19:10:28 +00002084 if ((bytes_read & PAGE_CACHE_MASK) != bytes_read) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 i++; /* account for partial page */
2086
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002087 /* server copy of file can have smaller size
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 than client */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002089 /* BB do we need to verify this common case ?
2090 this case is ok - if we are at server EOF
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 we will hit it on next read */
2092
OGAWA Hirofumi05ac9d42006-11-02 22:07:08 -08002093 /* break; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 }
2095 } else {
Joe Perchesb6b38f72010-04-21 03:50:45 +00002096 cFYI(1, "No bytes read (%d) at offset %lld . "
Steve Frenchf19159d2010-04-21 04:12:10 +00002097 "Cleaning remaining pages from readahead list",
Joe Perchesb6b38f72010-04-21 03:50:45 +00002098 bytes_read, offset);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002099 /* BB turn off caching and do new lookup on
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 file size at server? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 break;
2102 }
2103 if (smb_read_data) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002104 if (buf_type == CIFS_SMALL_BUFFER)
Steve Frenchec637e32005-12-12 20:53:18 -08002105 cifs_small_buf_release(smb_read_data);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002106 else if (buf_type == CIFS_LARGE_BUFFER)
Steve Frenchec637e32005-12-12 20:53:18 -08002107 cifs_buf_release(smb_read_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 smb_read_data = NULL;
2109 }
2110 bytes_read = 0;
2111 }
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113/* need to free smb_read_data buf before exit */
2114 if (smb_read_data) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002115 if (buf_type == CIFS_SMALL_BUFFER)
Steve French47c886b2006-01-18 14:20:39 -08002116 cifs_small_buf_release(smb_read_data);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002117 else if (buf_type == CIFS_LARGE_BUFFER)
Steve French47c886b2006-01-18 14:20:39 -08002118 cifs_buf_release(smb_read_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 smb_read_data = NULL;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Suresh Jayaraman56698232010-07-05 18:13:25 +05302122read_complete:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 FreeXid(xid);
2124 return rc;
2125}
2126
2127static int cifs_readpage_worker(struct file *file, struct page *page,
2128 loff_t *poffset)
2129{
2130 char *read_data;
2131 int rc;
2132
Suresh Jayaraman56698232010-07-05 18:13:25 +05302133 /* Is the page cached? */
2134 rc = cifs_readpage_from_fscache(file->f_path.dentry->d_inode, page);
2135 if (rc == 0)
2136 goto read_complete;
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 page_cache_get(page);
2139 read_data = kmap(page);
2140 /* for reads over a certain size could initiate async read ahead */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 rc = cifs_read(file, read_data, PAGE_CACHE_SIZE, poffset);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 if (rc < 0)
2145 goto io_error;
2146 else
Joe Perchesb6b38f72010-04-21 03:50:45 +00002147 cFYI(1, "Bytes read %d", rc);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002148
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08002149 file->f_path.dentry->d_inode->i_atime =
2150 current_fs_time(file->f_path.dentry->d_inode->i_sb);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002151
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 if (PAGE_CACHE_SIZE > rc)
2153 memset(read_data + rc, 0, PAGE_CACHE_SIZE - rc);
2154
2155 flush_dcache_page(page);
2156 SetPageUptodate(page);
Suresh Jayaraman9dc06552010-07-05 18:13:11 +05302157
2158 /* send this page to the cache */
2159 cifs_readpage_to_fscache(file->f_path.dentry->d_inode, page);
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 rc = 0;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163io_error:
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002164 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 page_cache_release(page);
Suresh Jayaraman56698232010-07-05 18:13:25 +05302166
2167read_complete:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 return rc;
2169}
2170
2171static int cifs_readpage(struct file *file, struct page *page)
2172{
2173 loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
2174 int rc = -EACCES;
2175 int xid;
2176
2177 xid = GetXid();
2178
2179 if (file->private_data == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05302180 rc = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +05302182 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
2184
Joe Perchesb6b38f72010-04-21 03:50:45 +00002185 cFYI(1, "readpage %p at offset %d 0x%x\n",
2186 page, (int)offset, (int)offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188 rc = cifs_readpage_worker(file, page, &offset);
2189
2190 unlock_page(page);
2191
2192 FreeXid(xid);
2193 return rc;
2194}
2195
Steve Frencha403a0a2007-07-26 15:54:16 +00002196static int is_inode_writable(struct cifsInodeInfo *cifs_inode)
2197{
2198 struct cifsFileInfo *open_file;
2199
2200 read_lock(&GlobalSMBSeslock);
2201 list_for_each_entry(open_file, &cifs_inode->openFileList, flist) {
2202 if (open_file->closePend)
2203 continue;
2204 if (open_file->pfile &&
2205 ((open_file->pfile->f_flags & O_RDWR) ||
2206 (open_file->pfile->f_flags & O_WRONLY))) {
2207 read_unlock(&GlobalSMBSeslock);
2208 return 1;
2209 }
2210 }
2211 read_unlock(&GlobalSMBSeslock);
2212 return 0;
2213}
2214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215/* We do not want to update the file size from server for inodes
2216 open for write - to avoid races with writepage extending
2217 the file - in the future we could consider allowing
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002218 refreshing the inode only on increases in the file size
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 but this is tricky to do without racing with writebehind
2220 page caching in the current Linux kernel design */
Steve French4b18f2a2008-04-29 00:06:05 +00002221bool is_size_safe_to_change(struct cifsInodeInfo *cifsInode, __u64 end_of_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222{
Steve Frencha403a0a2007-07-26 15:54:16 +00002223 if (!cifsInode)
Steve French4b18f2a2008-04-29 00:06:05 +00002224 return true;
Steve French23e7dd72005-10-20 13:44:56 -07002225
Steve Frencha403a0a2007-07-26 15:54:16 +00002226 if (is_inode_writable(cifsInode)) {
2227 /* This inode is open for write at least once */
Steve Frenchc32a0b62006-01-12 14:41:28 -08002228 struct cifs_sb_info *cifs_sb;
2229
Steve Frenchc32a0b62006-01-12 14:41:28 -08002230 cifs_sb = CIFS_SB(cifsInode->vfs_inode.i_sb);
Steve Frenchad7a2922008-02-07 23:25:02 +00002231 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002232 /* since no page cache to corrupt on directio
Steve Frenchc32a0b62006-01-12 14:41:28 -08002233 we can change size safely */
Steve French4b18f2a2008-04-29 00:06:05 +00002234 return true;
Steve Frenchc32a0b62006-01-12 14:41:28 -08002235 }
2236
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002237 if (i_size_read(&cifsInode->vfs_inode) < end_of_file)
Steve French4b18f2a2008-04-29 00:06:05 +00002238 return true;
Steve French7ba52632007-02-08 18:14:13 +00002239
Steve French4b18f2a2008-04-29 00:06:05 +00002240 return false;
Steve French23e7dd72005-10-20 13:44:56 -07002241 } else
Steve French4b18f2a2008-04-29 00:06:05 +00002242 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243}
2244
Nick Piggind9414772008-09-24 11:32:59 -04002245static int cifs_write_begin(struct file *file, struct address_space *mapping,
2246 loff_t pos, unsigned len, unsigned flags,
2247 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248{
Nick Piggind9414772008-09-24 11:32:59 -04002249 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
2250 loff_t offset = pos & (PAGE_CACHE_SIZE - 1);
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002251 loff_t page_start = pos & PAGE_MASK;
2252 loff_t i_size;
2253 struct page *page;
2254 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
Joe Perchesb6b38f72010-04-21 03:50:45 +00002256 cFYI(1, "write_begin from %lld len %d", (long long)pos, len);
Nick Piggind9414772008-09-24 11:32:59 -04002257
Nick Piggin54566b22009-01-04 12:00:53 -08002258 page = grab_cache_page_write_begin(mapping, index, flags);
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002259 if (!page) {
2260 rc = -ENOMEM;
2261 goto out;
2262 }
Nick Piggind9414772008-09-24 11:32:59 -04002263
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002264 if (PageUptodate(page))
2265 goto out;
Steve French8a236262007-03-06 00:31:00 +00002266
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002267 /*
2268 * If we write a full page it will be up to date, no need to read from
2269 * the server. If the write is short, we'll end up doing a sync write
2270 * instead.
2271 */
2272 if (len == PAGE_CACHE_SIZE)
2273 goto out;
2274
2275 /*
2276 * optimize away the read when we have an oplock, and we're not
2277 * expecting to use any of the data we'd be reading in. That
2278 * is, when the page lies beyond the EOF, or straddles the EOF
2279 * and the write will cover all of the existing data.
2280 */
2281 if (CIFS_I(mapping->host)->clientCanCacheRead) {
2282 i_size = i_size_read(mapping->host);
2283 if (page_start >= i_size ||
2284 (offset == 0 && (pos + len) >= i_size)) {
2285 zero_user_segments(page, 0, offset,
2286 offset + len,
2287 PAGE_CACHE_SIZE);
2288 /*
2289 * PageChecked means that the parts of the page
2290 * to which we're not writing are considered up
2291 * to date. Once the data is copied to the
2292 * page, it can be set uptodate.
2293 */
2294 SetPageChecked(page);
2295 goto out;
2296 }
2297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Nick Piggind9414772008-09-24 11:32:59 -04002299 if ((file->f_flags & O_ACCMODE) != O_WRONLY) {
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002300 /*
2301 * might as well read a page, it is fast enough. If we get
2302 * an error, we don't need to return it. cifs_write_end will
2303 * do a sync write instead since PG_uptodate isn't set.
2304 */
2305 cifs_readpage_worker(file, page, &page_start);
Steve French8a236262007-03-06 00:31:00 +00002306 } else {
2307 /* we could try using another file handle if there is one -
2308 but how would we lock it to prevent close of that handle
2309 racing with this read? In any case
Nick Piggind9414772008-09-24 11:32:59 -04002310 this will be written out by write_end so is fine */
Steve French8a236262007-03-06 00:31:00 +00002311 }
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002312out:
2313 *pagep = page;
2314 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315}
2316
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +05302317static int cifs_release_page(struct page *page, gfp_t gfp)
2318{
2319 if (PagePrivate(page))
2320 return 0;
2321
2322 return cifs_fscache_release_page(page, gfp);
2323}
2324
2325static void cifs_invalidate_page(struct page *page, unsigned long offset)
2326{
2327 struct cifsInodeInfo *cifsi = CIFS_I(page->mapping->host);
2328
2329 if (offset == 0)
2330 cifs_fscache_invalidate_page(page, &cifsi->vfs_inode);
2331}
2332
Tejun Heo9b646972010-07-20 22:09:02 +02002333void cifs_oplock_break(struct work_struct *work)
Jeff Layton3bc303c2009-09-21 06:47:50 -04002334{
2335 struct cifsFileInfo *cfile = container_of(work, struct cifsFileInfo,
2336 oplock_break);
Jeff Laytona5e18bc2010-10-11 15:07:18 -04002337 struct inode *inode = cfile->dentry->d_inode;
Jeff Layton3bc303c2009-09-21 06:47:50 -04002338 struct cifsInodeInfo *cinode = CIFS_I(inode);
Jeff Layton3bc303c2009-09-21 06:47:50 -04002339 int rc, waitrc = 0;
2340
2341 if (inode && S_ISREG(inode->i_mode)) {
Steve Frenchd54ff732010-04-27 04:38:15 +00002342 if (cinode->clientCanCacheRead)
Al Viro8737c932009-12-24 06:47:55 -05002343 break_lease(inode, O_RDONLY);
Steve Frenchd54ff732010-04-27 04:38:15 +00002344 else
Al Viro8737c932009-12-24 06:47:55 -05002345 break_lease(inode, O_WRONLY);
Jeff Layton3bc303c2009-09-21 06:47:50 -04002346 rc = filemap_fdatawrite(inode->i_mapping);
2347 if (cinode->clientCanCacheRead == 0) {
2348 waitrc = filemap_fdatawait(inode->i_mapping);
2349 invalidate_remote_inode(inode);
2350 }
2351 if (!rc)
2352 rc = waitrc;
2353 if (rc)
2354 cinode->write_behind_rc = rc;
Joe Perchesb6b38f72010-04-21 03:50:45 +00002355 cFYI(1, "Oplock flush inode %p rc %d", inode, rc);
Jeff Layton3bc303c2009-09-21 06:47:50 -04002356 }
2357
2358 /*
2359 * releasing stale oplock after recent reconnect of smb session using
2360 * a now incorrect file handle is not a data integrity issue but do
2361 * not bother sending an oplock release if session to server still is
2362 * disconnected since oplock already released by the server
2363 */
2364 if (!cfile->closePend && !cfile->oplock_break_cancelled) {
Jeff Layton13cfb732010-09-29 19:51:11 -04002365 rc = CIFSSMBLock(0, tlink_tcon(cfile->tlink), cfile->netfid, 0,
2366 0, 0, 0, LOCKING_ANDX_OPLOCK_RELEASE, false);
Joe Perchesb6b38f72010-04-21 03:50:45 +00002367 cFYI(1, "Oplock release rc = %d", rc);
Jeff Layton3bc303c2009-09-21 06:47:50 -04002368 }
Tejun Heo9b646972010-07-20 22:09:02 +02002369
2370 /*
2371 * We might have kicked in before is_valid_oplock_break()
2372 * finished grabbing reference for us. Make sure it's done by
2373 * waiting for GlobalSMSSeslock.
2374 */
2375 write_lock(&GlobalSMBSeslock);
2376 write_unlock(&GlobalSMBSeslock);
2377
2378 cifs_oplock_break_put(cfile);
Jeff Layton3bc303c2009-09-21 06:47:50 -04002379}
2380
Tejun Heo9b646972010-07-20 22:09:02 +02002381void cifs_oplock_break_get(struct cifsFileInfo *cfile)
Jeff Layton3bc303c2009-09-21 06:47:50 -04002382{
Jeff Laytond7c86ff2010-10-11 15:07:19 -04002383 cifs_sb_active(cfile->dentry->d_sb);
Jeff Layton3bc303c2009-09-21 06:47:50 -04002384 cifsFileInfo_get(cfile);
Jeff Layton3bc303c2009-09-21 06:47:50 -04002385}
2386
Tejun Heo9b646972010-07-20 22:09:02 +02002387void cifs_oplock_break_put(struct cifsFileInfo *cfile)
Jeff Layton3bc303c2009-09-21 06:47:50 -04002388{
Jeff Layton3bc303c2009-09-21 06:47:50 -04002389 cifsFileInfo_put(cfile);
Jeff Laytond7c86ff2010-10-11 15:07:19 -04002390 cifs_sb_deactive(cfile->dentry->d_sb);
Jeff Layton3bc303c2009-09-21 06:47:50 -04002391}
2392
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07002393const struct address_space_operations cifs_addr_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 .readpage = cifs_readpage,
2395 .readpages = cifs_readpages,
2396 .writepage = cifs_writepage,
Steve French37c0eb42005-10-05 14:50:29 -07002397 .writepages = cifs_writepages,
Nick Piggind9414772008-09-24 11:32:59 -04002398 .write_begin = cifs_write_begin,
2399 .write_end = cifs_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 .set_page_dirty = __set_page_dirty_nobuffers,
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +05302401 .releasepage = cifs_release_page,
2402 .invalidatepage = cifs_invalidate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 /* .sync_page = cifs_sync_page, */
2404 /* .direct_IO = */
2405};
Dave Kleikamp273d81d2006-06-01 19:41:23 +00002406
2407/*
2408 * cifs_readpages requires the server to support a buffer large enough to
2409 * contain the header plus one complete page of data. Otherwise, we need
2410 * to leave cifs_readpages out of the address space operations.
2411 */
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07002412const struct address_space_operations cifs_addr_ops_smallbuf = {
Dave Kleikamp273d81d2006-06-01 19:41:23 +00002413 .readpage = cifs_readpage,
2414 .writepage = cifs_writepage,
2415 .writepages = cifs_writepages,
Nick Piggind9414772008-09-24 11:32:59 -04002416 .write_begin = cifs_write_begin,
2417 .write_end = cifs_write_end,
Dave Kleikamp273d81d2006-06-01 19:41:23 +00002418 .set_page_dirty = __set_page_dirty_nobuffers,
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +05302419 .releasepage = cifs_release_page,
2420 .invalidatepage = cifs_invalidate_page,
Dave Kleikamp273d81d2006-06-01 19:41:23 +00002421 /* .sync_page = cifs_sync_page, */
2422 /* .direct_IO = */
2423};