blob: 81747acca4c4774b48431eb0313d80d97ecc1c6c [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 *
6 * Copyright (C) International Business Machines Corp., 2002,2007
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/div64.h>
34#include "cifsfs.h"
35#include "cifspdu.h"
36#include "cifsglob.h"
37#include "cifsproto.h"
38#include "cifs_unicode.h"
39#include "cifs_debug.h"
40#include "cifs_fs_sb.h"
41
42static inline struct cifsFileInfo *cifs_init_private(
43 struct cifsFileInfo *private_data, struct inode *inode,
44 struct file *file, __u16 netfid)
45{
46 memset(private_data, 0, sizeof(struct cifsFileInfo));
47 private_data->netfid = netfid;
Steve Frenchfb8c4b12007-07-10 01:16:18 +000048 private_data->pid = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 init_MUTEX(&private_data->fh_sem);
Roland Dreier796e5662007-05-03 04:33:45 +000050 mutex_init(&private_data->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +000051 INIT_LIST_HEAD(&private_data->llist);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 private_data->pfile = file; /* needed for writepage */
53 private_data->pInode = inode;
Steve French4b18f2a2008-04-29 00:06:05 +000054 private_data->invalidHandle = false;
55 private_data->closePend = false;
Steve French23e7dd72005-10-20 13:44:56 -070056 /* we have to track num writers to the inode, since writepages
57 does not tell us which handle the write is for so there can
58 be a close (overlapping with write) of the filehandle that
59 cifs_writepages chose to use */
Steve Frenchfb8c4b12007-07-10 01:16:18 +000060 atomic_set(&private_data->wrtPending, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 return private_data;
63}
64
65static inline int cifs_convert_flags(unsigned int flags)
66{
67 if ((flags & O_ACCMODE) == O_RDONLY)
68 return GENERIC_READ;
69 else if ((flags & O_ACCMODE) == O_WRONLY)
70 return GENERIC_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 return (GENERIC_READ | GENERIC_WRITE);
76 }
77
Jeff Laytone10f7b52008-05-14 10:21:33 -070078 return (READ_CONTROL | FILE_WRITE_ATTRIBUTES | FILE_READ_ATTRIBUTES |
79 FILE_WRITE_EA | FILE_APPEND_DATA | FILE_WRITE_DATA |
80 FILE_READ_DATA);
Steve French7fc8f4e2009-02-23 20:43:11 +000081}
Jeff Laytone10f7b52008-05-14 10:21:33 -070082
Steve French7fc8f4e2009-02-23 20:43:11 +000083static inline fmode_t cifs_posix_convert_flags(unsigned int flags)
84{
85 fmode_t posix_flags = 0;
Jeff Laytone10f7b52008-05-14 10:21:33 -070086
Steve French7fc8f4e2009-02-23 20:43:11 +000087 if ((flags & O_ACCMODE) == O_RDONLY)
88 posix_flags = FMODE_READ;
89 else if ((flags & O_ACCMODE) == O_WRONLY)
90 posix_flags = FMODE_WRITE;
91 else if ((flags & O_ACCMODE) == O_RDWR) {
92 /* GENERIC_ALL is too much permission to request
93 can cause unnecessary access denied on create */
94 /* return GENERIC_ALL; */
95 posix_flags = FMODE_READ | FMODE_WRITE;
96 }
97 /* can not map O_CREAT or O_EXCL or O_TRUNC flags when
98 reopening a file. They had their effect on the original open */
99 if (flags & O_APPEND)
100 posix_flags |= (fmode_t)O_APPEND;
101 if (flags & O_SYNC)
102 posix_flags |= (fmode_t)O_SYNC;
103 if (flags & O_DIRECTORY)
104 posix_flags |= (fmode_t)O_DIRECTORY;
105 if (flags & O_NOFOLLOW)
106 posix_flags |= (fmode_t)O_NOFOLLOW;
107 if (flags & O_DIRECT)
108 posix_flags |= (fmode_t)O_DIRECT;
109
110 return posix_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113static inline int cifs_get_disposition(unsigned int flags)
114{
115 if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
116 return FILE_CREATE;
117 else if ((flags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC))
118 return FILE_OVERWRITE_IF;
119 else if ((flags & O_CREAT) == O_CREAT)
120 return FILE_OPEN_IF;
Steve French55aa2e02006-05-30 18:09:31 +0000121 else if ((flags & O_TRUNC) == O_TRUNC)
122 return FILE_OVERWRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 else
124 return FILE_OPEN;
125}
126
127/* all arguments to this function must be checked for validity in caller */
Steve French276a74a2009-03-03 18:00:34 +0000128static inline int cifs_posix_open_inode_helper(struct inode *inode,
129 struct file *file, struct cifsInodeInfo *pCifsInode,
130 struct cifsFileInfo *pCifsFile, int oplock, u16 netfid)
131{
132 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
133/* struct timespec temp; */ /* BB REMOVEME BB */
134
135 file->private_data = kmalloc(sizeof(struct cifsFileInfo), GFP_KERNEL);
136 if (file->private_data == NULL)
137 return -ENOMEM;
138 pCifsFile = cifs_init_private(file->private_data, inode, file, netfid);
139 write_lock(&GlobalSMBSeslock);
140 list_add(&pCifsFile->tlist, &cifs_sb->tcon->openFileList);
141
142 pCifsInode = CIFS_I(file->f_path.dentry->d_inode);
143 if (pCifsInode == NULL) {
144 write_unlock(&GlobalSMBSeslock);
145 return -EINVAL;
146 }
147
148 /* want handles we can use to read with first
149 in the list so we do not have to walk the
150 list to search for one in write_begin */
151 if ((file->f_flags & O_ACCMODE) == O_WRONLY) {
152 list_add_tail(&pCifsFile->flist,
153 &pCifsInode->openFileList);
154 } else {
155 list_add(&pCifsFile->flist,
156 &pCifsInode->openFileList);
157 }
158
159 if (pCifsInode->clientCanCacheRead) {
160 /* we have the inode open somewhere else
161 no need to discard cache data */
162 goto psx_client_can_cache;
163 }
164
165 /* BB FIXME need to fix this check to move it earlier into posix_open
166 BB fIX following section BB FIXME */
167
168 /* if not oplocked, invalidate inode pages if mtime or file
169 size changed */
170/* temp = cifs_NTtimeToUnix(le64_to_cpu(buf->LastWriteTime));
171 if (timespec_equal(&file->f_path.dentry->d_inode->i_mtime, &temp) &&
172 (file->f_path.dentry->d_inode->i_size ==
173 (loff_t)le64_to_cpu(buf->EndOfFile))) {
174 cFYI(1, ("inode unchanged on server"));
175 } else {
176 if (file->f_path.dentry->d_inode->i_mapping) {
177 rc = filemap_write_and_wait(file->f_path.dentry->d_inode->i_mapping);
178 if (rc != 0)
179 CIFS_I(file->f_path.dentry->d_inode)->write_behind_rc = rc;
180 }
181 cFYI(1, ("invalidating remote inode since open detected it "
182 "changed"));
183 invalidate_remote_inode(file->f_path.dentry->d_inode);
184 } */
185
186psx_client_can_cache:
187 if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
188 pCifsInode->clientCanCacheAll = true;
189 pCifsInode->clientCanCacheRead = true;
190 cFYI(1, ("Exclusive Oplock granted on inode %p",
191 file->f_path.dentry->d_inode));
192 } else if ((oplock & 0xF) == OPLOCK_READ)
193 pCifsInode->clientCanCacheRead = true;
194
195 /* will have to change the unlock if we reenable the
196 filemap_fdatawrite (which does not seem necessary */
197 write_unlock(&GlobalSMBSeslock);
198 return 0;
199}
200
201/* all arguments to this function must be checked for validity in caller */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static inline int cifs_open_inode_helper(struct inode *inode, struct file *file,
203 struct cifsInodeInfo *pCifsInode, struct cifsFileInfo *pCifsFile,
204 struct cifsTconInfo *pTcon, int *oplock, FILE_ALL_INFO *buf,
205 char *full_path, int xid)
206{
207 struct timespec temp;
208 int rc;
209
210 /* want handles we can use to read with first
211 in the list so we do not have to walk the
Nick Piggind9414772008-09-24 11:32:59 -0400212 list to search for one in write_begin */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if ((file->f_flags & O_ACCMODE) == O_WRONLY) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000214 list_add_tail(&pCifsFile->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 &pCifsInode->openFileList);
216 } else {
217 list_add(&pCifsFile->flist,
218 &pCifsInode->openFileList);
219 }
220 write_unlock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (pCifsInode->clientCanCacheRead) {
222 /* we have the inode open somewhere else
223 no need to discard cache data */
224 goto client_can_cache;
225 }
226
227 /* BB need same check in cifs_create too? */
228 /* if not oplocked, invalidate inode pages if mtime or file
229 size changed */
230 temp = cifs_NTtimeToUnix(le64_to_cpu(buf->LastWriteTime));
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800231 if (timespec_equal(&file->f_path.dentry->d_inode->i_mtime, &temp) &&
232 (file->f_path.dentry->d_inode->i_size ==
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 (loff_t)le64_to_cpu(buf->EndOfFile))) {
234 cFYI(1, ("inode unchanged on server"));
235 } else {
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800236 if (file->f_path.dentry->d_inode->i_mapping) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 /* BB no need to lock inode until after invalidate
238 since namei code should already have it locked? */
Jeff Laytoncea21802007-11-20 23:19:03 +0000239 rc = filemap_write_and_wait(file->f_path.dentry->d_inode->i_mapping);
240 if (rc != 0)
241 CIFS_I(file->f_path.dentry->d_inode)->write_behind_rc = rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243 cFYI(1, ("invalidating remote inode since open detected it "
244 "changed"));
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800245 invalidate_remote_inode(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247
248client_can_cache:
Steve Frenchc18c8422007-07-18 23:21:09 +0000249 if (pTcon->unix_ext)
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800250 rc = cifs_get_inode_info_unix(&file->f_path.dentry->d_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 full_path, inode->i_sb, xid);
252 else
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800253 rc = cifs_get_inode_info(&file->f_path.dentry->d_inode,
Steve French8b1327f2008-03-14 22:37:16 +0000254 full_path, buf, inode->i_sb, xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 if ((*oplock & 0xF) == OPLOCK_EXCLUSIVE) {
Steve French4b18f2a2008-04-29 00:06:05 +0000257 pCifsInode->clientCanCacheAll = true;
258 pCifsInode->clientCanCacheRead = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 cFYI(1, ("Exclusive Oplock granted on inode %p",
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800260 file->f_path.dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 } else if ((*oplock & 0xF) == OPLOCK_READ)
Steve French4b18f2a2008-04-29 00:06:05 +0000262 pCifsInode->clientCanCacheRead = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 return rc;
265}
266
267int cifs_open(struct inode *inode, struct file *file)
268{
269 int rc = -EACCES;
270 int xid, oplock;
271 struct cifs_sb_info *cifs_sb;
Steve French276a74a2009-03-03 18:00:34 +0000272 struct cifsTconInfo *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 struct cifsFileInfo *pCifsFile;
274 struct cifsInodeInfo *pCifsInode;
275 struct list_head *tmp;
276 char *full_path = NULL;
277 int desiredAccess;
278 int disposition;
279 __u16 netfid;
280 FILE_ALL_INFO *buf = NULL;
281
282 xid = GetXid();
283
284 cifs_sb = CIFS_SB(inode->i_sb);
Steve French276a74a2009-03-03 18:00:34 +0000285 tcon = cifs_sb->tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 if (file->f_flags & O_CREAT) {
288 /* search inode for this file and fill in file->private_data */
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800289 pCifsInode = CIFS_I(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 read_lock(&GlobalSMBSeslock);
291 list_for_each(tmp, &pCifsInode->openFileList) {
292 pCifsFile = list_entry(tmp, struct cifsFileInfo,
293 flist);
294 if ((pCifsFile->pfile == NULL) &&
295 (pCifsFile->pid == current->tgid)) {
296 /* mode set in cifs_create */
297
298 /* needed for writepage */
299 pCifsFile->pfile = file;
Steve French50c2f752007-07-13 00:33:32 +0000300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 file->private_data = pCifsFile;
302 break;
303 }
304 }
305 read_unlock(&GlobalSMBSeslock);
306 if (file->private_data != NULL) {
307 rc = 0;
308 FreeXid(xid);
309 return rc;
310 } else {
311 if (file->f_flags & O_EXCL)
312 cERROR(1, ("could not find file instance for "
Steve French26a21b92006-05-31 18:05:34 +0000313 "new file %p", file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
315 }
316
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800317 full_path = build_path_from_dentry(file->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (full_path == NULL) {
319 FreeXid(xid);
320 return -ENOMEM;
321 }
322
Steve French7521a3c2007-07-11 18:30:34 +0000323 cFYI(1, ("inode = 0x%p file flags are 0x%x for %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 inode, file->f_flags, full_path));
Steve French276a74a2009-03-03 18:00:34 +0000325
326 if (oplockEnabled)
327 oplock = REQ_OPLOCK;
328 else
329 oplock = 0;
330
Steve French64cc2c62009-03-04 19:54:08 +0000331 if (!tcon->broken_posix_open && tcon->unix_ext &&
332 (tcon->ses->capabilities & CAP_UNIX) &&
Steve French276a74a2009-03-03 18:00:34 +0000333 (CIFS_UNIX_POSIX_PATH_OPS_CAP &
334 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
335 int oflags = (int) cifs_posix_convert_flags(file->f_flags);
336 /* can not refresh inode info since size could be stale */
337 rc = cifs_posix_open(full_path, &inode, inode->i_sb,
338 cifs_sb->mnt_file_mode /* ignored */,
339 oflags, &oplock, &netfid, xid);
340 if (rc == 0) {
341 cFYI(1, ("posix open succeeded"));
342 /* no need for special case handling of setting mode
343 on read only files needed here */
344
345 cifs_posix_open_inode_helper(inode, file, pCifsInode,
346 pCifsFile, oplock, netfid);
347 goto out;
Steve French64cc2c62009-03-04 19:54:08 +0000348 } else if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
349 if (tcon->ses->serverNOS)
350 cERROR(1, ("server %s of type %s returned"
351 " unexpected error on SMB posix open"
352 ", disabling posix open support."
353 " Check if server update available.",
354 tcon->ses->serverName,
355 tcon->ses->serverNOS));
356 tcon->broken_posix_open = true;
Steve French276a74a2009-03-03 18:00:34 +0000357 } else if ((rc != -EIO) && (rc != -EREMOTE) &&
358 (rc != -EOPNOTSUPP)) /* path not found or net err */
359 goto out;
Steve French64cc2c62009-03-04 19:54:08 +0000360 /* else fallthrough to retry open the old way on network i/o
361 or DFS errors */
Steve French276a74a2009-03-03 18:00:34 +0000362 }
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 desiredAccess = cifs_convert_flags(file->f_flags);
365
366/*********************************************************************
367 * open flag mapping table:
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000368 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * POSIX Flag CIFS Disposition
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000370 * ---------- ----------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 * O_CREAT FILE_OPEN_IF
372 * O_CREAT | O_EXCL FILE_CREATE
373 * O_CREAT | O_TRUNC FILE_OVERWRITE_IF
374 * O_TRUNC FILE_OVERWRITE
375 * none of the above FILE_OPEN
376 *
377 * Note that there is not a direct match between disposition
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000378 * FILE_SUPERSEDE (ie create whether or not file exists although
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 * O_CREAT | O_TRUNC is similar but truncates the existing
380 * file rather than creating a new file as FILE_SUPERSEDE does
381 * (which uses the attributes / metadata passed in on open call)
382 *?
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000383 *? O_SYNC is a reasonable match to CIFS writethrough flag
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 *? and the read write flags match reasonably. O_LARGEFILE
385 *? is irrelevant because largefile support is always used
386 *? by this client. Flags O_APPEND, O_DIRECT, O_DIRECTORY,
387 * O_FASYNC, O_NOFOLLOW, O_NONBLOCK need further investigation
388 *********************************************************************/
389
390 disposition = cifs_get_disposition(file->f_flags);
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /* BB pass O_SYNC flag through on file attributes .. BB */
393
394 /* Also refresh inode by passing in file_info buf returned by SMBOpen
395 and calling get_inode_info with returned buf (at least helps
396 non-Unix server case) */
397
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000398 /* BB we can not do this if this is the second open of a file
399 and the first handle has writebehind data, we might be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 able to simply do a filemap_fdatawrite/filemap_fdatawait first */
401 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
402 if (!buf) {
403 rc = -ENOMEM;
404 goto out;
405 }
Steve French5bafd762006-06-07 00:18:43 +0000406
407 if (cifs_sb->tcon->ses->capabilities & CAP_NT_SMBS)
Steve French276a74a2009-03-03 18:00:34 +0000408 rc = CIFSSMBOpen(xid, tcon, full_path, disposition,
Steve French5bafd762006-06-07 00:18:43 +0000409 desiredAccess, CREATE_NOT_DIR, &netfid, &oplock, buf,
Steve French737b7582005-04-28 22:41:06 -0700410 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags
411 & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French5bafd762006-06-07 00:18:43 +0000412 else
413 rc = -EIO; /* no NT SMB support fall into legacy open below */
414
Steve Frencha9d02ad2005-08-24 23:06:05 -0700415 if (rc == -EIO) {
416 /* Old server, try legacy style OpenX */
Steve French276a74a2009-03-03 18:00:34 +0000417 rc = SMBLegacyOpen(xid, tcon, full_path, disposition,
Steve Frencha9d02ad2005-08-24 23:06:05 -0700418 desiredAccess, CREATE_NOT_DIR, &netfid, &oplock, buf,
419 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags
420 & CIFS_MOUNT_MAP_SPECIAL_CHR);
421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (rc) {
Steve French26a21b92006-05-31 18:05:34 +0000423 cFYI(1, ("cifs_open returned 0x%x", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 goto out;
425 }
426 file->private_data =
427 kmalloc(sizeof(struct cifsFileInfo), GFP_KERNEL);
428 if (file->private_data == NULL) {
429 rc = -ENOMEM;
430 goto out;
431 }
432 pCifsFile = cifs_init_private(file->private_data, inode, file, netfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 write_lock(&GlobalSMBSeslock);
Steve French276a74a2009-03-03 18:00:34 +0000434 list_add(&pCifsFile->tlist, &tcon->openFileList);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800436 pCifsInode = CIFS_I(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (pCifsInode) {
438 rc = cifs_open_inode_helper(inode, file, pCifsInode,
Steve French276a74a2009-03-03 18:00:34 +0000439 pCifsFile, tcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 &oplock, buf, full_path, xid);
441 } else {
442 write_unlock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000445 if (oplock & CIFS_CREATE_ACTION) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 /* time to set mode which we can not set earlier due to
447 problems creating new read-only files */
Steve French276a74a2009-03-03 18:00:34 +0000448 if (tcon->unix_ext) {
Jeff Layton4e1e7fb2008-08-02 07:26:12 -0400449 struct cifs_unix_set_info_args args = {
450 .mode = inode->i_mode,
451 .uid = NO_CHANGE_64,
452 .gid = NO_CHANGE_64,
453 .ctime = NO_CHANGE_64,
454 .atime = NO_CHANGE_64,
455 .mtime = NO_CHANGE_64,
456 .device = 0,
457 };
Steve French276a74a2009-03-03 18:00:34 +0000458 CIFSSMBUnixSetInfo(xid, tcon, full_path, &args,
Steve French737b7582005-04-28 22:41:06 -0700459 cifs_sb->local_nls,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000460 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700461 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463 }
464
465out:
466 kfree(buf);
467 kfree(full_path);
468 FreeXid(xid);
469 return rc;
470}
471
Adrian Bunk04187262006-06-30 18:23:04 +0200472/* Try to reacquire byte range locks that were released when session */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473/* to server was lost */
474static int cifs_relock_file(struct cifsFileInfo *cifsFile)
475{
476 int rc = 0;
477
478/* BB list all locks open on this file and relock */
479
480 return rc;
481}
482
Steve French4b18f2a2008-04-29 00:06:05 +0000483static int cifs_reopen_file(struct file *file, bool can_flush)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 int rc = -EACCES;
486 int xid, oplock;
487 struct cifs_sb_info *cifs_sb;
Steve French7fc8f4e2009-02-23 20:43:11 +0000488 struct cifsTconInfo *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 struct cifsFileInfo *pCifsFile;
490 struct cifsInodeInfo *pCifsInode;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000491 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 char *full_path = NULL;
493 int desiredAccess;
494 int disposition = FILE_OPEN;
495 __u16 netfid;
496
Steve Frenchad7a2922008-02-07 23:25:02 +0000497 if (file->private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 pCifsFile = (struct cifsFileInfo *)file->private_data;
Steve Frenchad7a2922008-02-07 23:25:02 +0000499 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return -EBADF;
501
502 xid = GetXid();
503 down(&pCifsFile->fh_sem);
Steve French4b18f2a2008-04-29 00:06:05 +0000504 if (!pCifsFile->invalidHandle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 up(&pCifsFile->fh_sem);
506 FreeXid(xid);
507 return 0;
508 }
509
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800510 if (file->f_path.dentry == NULL) {
Steve French3a9f4622007-04-04 17:10:24 +0000511 cERROR(1, ("no valid name if dentry freed"));
512 dump_stack();
513 rc = -EBADF;
514 goto reopen_error_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
Steve French3a9f4622007-04-04 17:10:24 +0000516
517 inode = file->f_path.dentry->d_inode;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000518 if (inode == NULL) {
Steve French3a9f4622007-04-04 17:10:24 +0000519 cERROR(1, ("inode not valid"));
520 dump_stack();
521 rc = -EBADF;
522 goto reopen_error_exit;
523 }
Steve French50c2f752007-07-13 00:33:32 +0000524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 cifs_sb = CIFS_SB(inode->i_sb);
Steve French7fc8f4e2009-02-23 20:43:11 +0000526 tcon = cifs_sb->tcon;
Steve French3a9f4622007-04-04 17:10:24 +0000527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528/* can not grab rename sem here because various ops, including
529 those that already have the rename sem can end up causing writepage
530 to get called and if the server was down that means we end up here,
531 and we can never tell if the caller already has the rename_sem */
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800532 full_path = build_path_from_dentry(file->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (full_path == NULL) {
Steve French3a9f4622007-04-04 17:10:24 +0000534 rc = -ENOMEM;
535reopen_error_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 up(&pCifsFile->fh_sem);
537 FreeXid(xid);
Steve French3a9f4622007-04-04 17:10:24 +0000538 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540
Steve French3a9f4622007-04-04 17:10:24 +0000541 cFYI(1, ("inode = 0x%p file flags 0x%x for %s",
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000542 inode, file->f_flags, full_path));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 if (oplockEnabled)
545 oplock = REQ_OPLOCK;
546 else
Steve French4b18f2a2008-04-29 00:06:05 +0000547 oplock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Steve French7fc8f4e2009-02-23 20:43:11 +0000549 if (tcon->unix_ext && (tcon->ses->capabilities & CAP_UNIX) &&
550 (CIFS_UNIX_POSIX_PATH_OPS_CAP &
551 le64_to_cpu(tcon->fsUnixInfo.Capability))) {
552 int oflags = (int) cifs_posix_convert_flags(file->f_flags);
553 /* can not refresh inode info since size could be stale */
554 rc = cifs_posix_open(full_path, NULL, inode->i_sb,
555 cifs_sb->mnt_file_mode /* ignored */,
556 oflags, &oplock, &netfid, xid);
557 if (rc == 0) {
558 cFYI(1, ("posix reopen succeeded"));
559 goto reopen_success;
560 }
561 /* fallthrough to retry open the old way on errors, especially
562 in the reconnect path it is important to retry hard */
563 }
564
565 desiredAccess = cifs_convert_flags(file->f_flags);
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 /* Can not refresh inode by passing in file_info buf to be returned
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000568 by SMBOpen and then calling get_inode_info with returned buf
569 since file might have write behind data that needs to be flushed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 and server version of file size can be stale. If we knew for sure
571 that inode was not dirty locally we could do this */
572
Steve French7fc8f4e2009-02-23 20:43:11 +0000573 rc = CIFSSMBOpen(xid, tcon, full_path, disposition, desiredAccess,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 CREATE_NOT_DIR, &netfid, &oplock, NULL,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000575 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700576 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (rc) {
578 up(&pCifsFile->fh_sem);
Steve French26a21b92006-05-31 18:05:34 +0000579 cFYI(1, ("cifs_open returned 0x%x", rc));
580 cFYI(1, ("oplock: %d", oplock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 } else {
Steve French7fc8f4e2009-02-23 20:43:11 +0000582reopen_success:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 pCifsFile->netfid = netfid;
Steve French4b18f2a2008-04-29 00:06:05 +0000584 pCifsFile->invalidHandle = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 up(&pCifsFile->fh_sem);
586 pCifsInode = CIFS_I(inode);
587 if (pCifsInode) {
588 if (can_flush) {
Jeff Laytoncea21802007-11-20 23:19:03 +0000589 rc = filemap_write_and_wait(inode->i_mapping);
590 if (rc != 0)
591 CIFS_I(inode)->write_behind_rc = rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /* temporarily disable caching while we
593 go to server to get inode info */
Steve French4b18f2a2008-04-29 00:06:05 +0000594 pCifsInode->clientCanCacheAll = false;
595 pCifsInode->clientCanCacheRead = false;
Steve French7fc8f4e2009-02-23 20:43:11 +0000596 if (tcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 rc = cifs_get_inode_info_unix(&inode,
598 full_path, inode->i_sb, xid);
599 else
600 rc = cifs_get_inode_info(&inode,
601 full_path, NULL, inode->i_sb,
Steve French8b1327f2008-03-14 22:37:16 +0000602 xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 } /* else we are writing out data to server already
604 and could deadlock if we tried to flush data, and
605 since we do not know if we have data that would
606 invalidate the current end of file on the server
607 we can not go to the server to get the new inod
608 info */
609 if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
Steve French4b18f2a2008-04-29 00:06:05 +0000610 pCifsInode->clientCanCacheAll = true;
611 pCifsInode->clientCanCacheRead = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 cFYI(1, ("Exclusive Oplock granted on inode %p",
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800613 file->f_path.dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 } else if ((oplock & 0xF) == OPLOCK_READ) {
Steve French4b18f2a2008-04-29 00:06:05 +0000615 pCifsInode->clientCanCacheRead = true;
616 pCifsInode->clientCanCacheAll = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 } else {
Steve French4b18f2a2008-04-29 00:06:05 +0000618 pCifsInode->clientCanCacheRead = false;
619 pCifsInode->clientCanCacheAll = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621 cifs_relock_file(pCifsFile);
622 }
623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 kfree(full_path);
625 FreeXid(xid);
626 return rc;
627}
628
629int cifs_close(struct inode *inode, struct file *file)
630{
631 int rc = 0;
Steve French15745322007-09-07 22:23:48 +0000632 int xid, timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 struct cifs_sb_info *cifs_sb;
634 struct cifsTconInfo *pTcon;
635 struct cifsFileInfo *pSMBFile =
636 (struct cifsFileInfo *)file->private_data;
637
638 xid = GetXid();
639
640 cifs_sb = CIFS_SB(inode->i_sb);
641 pTcon = cifs_sb->tcon;
642 if (pSMBFile) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000643 struct cifsLockInfo *li, *tmp;
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000644 write_lock(&GlobalSMBSeslock);
Steve French4b18f2a2008-04-29 00:06:05 +0000645 pSMBFile->closePend = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (pTcon) {
647 /* no sense reconnecting to close a file that is
648 already closed */
Steve French3b795212008-11-13 19:45:32 +0000649 if (!pTcon->need_reconnect) {
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000650 write_unlock(&GlobalSMBSeslock);
Steve French15745322007-09-07 22:23:48 +0000651 timeout = 2;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000652 while ((atomic_read(&pSMBFile->wrtPending) != 0)
Steve French15745322007-09-07 22:23:48 +0000653 && (timeout <= 2048)) {
Steve French23e7dd72005-10-20 13:44:56 -0700654 /* Give write a better chance to get to
655 server ahead of the close. We do not
656 want to add a wait_q here as it would
657 increase the memory utilization as
658 the struct would be in each open file,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000659 but this should give enough time to
Steve French23e7dd72005-10-20 13:44:56 -0700660 clear the socket */
Steve French90c81e02008-02-12 20:32:36 +0000661 cFYI(DBG2,
662 ("close delay, write pending"));
Steve French23e7dd72005-10-20 13:44:56 -0700663 msleep(timeout);
664 timeout *= 4;
Steve French4891d532006-11-07 16:31:16 +0000665 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000666 if (atomic_read(&pSMBFile->wrtPending))
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000667 cERROR(1, ("close with pending write"));
668 if (!pTcon->need_reconnect &&
669 !pSMBFile->invalidHandle)
670 rc = CIFSSMBClose(xid, pTcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 pSMBFile->netfid);
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000672 } else
673 write_unlock(&GlobalSMBSeslock);
674 } else
675 write_unlock(&GlobalSMBSeslock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000676
677 /* Delete any outstanding lock records.
678 We'll lose them when the file is closed anyway. */
Roland Dreier796e5662007-05-03 04:33:45 +0000679 mutex_lock(&pSMBFile->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000680 list_for_each_entry_safe(li, tmp, &pSMBFile->llist, llist) {
681 list_del(&li->llist);
682 kfree(li);
683 }
Roland Dreier796e5662007-05-03 04:33:45 +0000684 mutex_unlock(&pSMBFile->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000685
Steve Frenchcbe04762005-04-28 22:41:05 -0700686 write_lock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 list_del(&pSMBFile->flist);
688 list_del(&pSMBFile->tlist);
Steve Frenchcbe04762005-04-28 22:41:05 -0700689 write_unlock(&GlobalSMBSeslock);
Steve French15745322007-09-07 22:23:48 +0000690 timeout = 10;
691 /* We waited above to give the SMBWrite a chance to issue
692 on the wire (so we do not get SMBWrite returning EBADF
693 if writepages is racing with close. Note that writepages
694 does not specify a file handle, so it is possible for a file
695 to be opened twice, and the application close the "wrong"
696 file handle - in these cases we delay long enough to allow
697 the SMBWrite to get on the wire before the SMB Close.
698 We allow total wait here over 45 seconds, more than
699 oplock break time, and more than enough to allow any write
700 to complete on the server, or to time out on the client */
701 while ((atomic_read(&pSMBFile->wrtPending) != 0)
702 && (timeout <= 50000)) {
703 cERROR(1, ("writes pending, delay free of handle"));
704 msleep(timeout);
705 timeout *= 8;
706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 kfree(file->private_data);
708 file->private_data = NULL;
709 } else
710 rc = -EBADF;
711
Steve French4efa53f2007-09-11 05:50:53 +0000712 read_lock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (list_empty(&(CIFS_I(inode)->openFileList))) {
714 cFYI(1, ("closing last open instance for inode %p", inode));
715 /* if the file is not open we do not know if we can cache info
716 on this inode, much less write behind and read ahead */
Steve French4b18f2a2008-04-29 00:06:05 +0000717 CIFS_I(inode)->clientCanCacheRead = false;
718 CIFS_I(inode)->clientCanCacheAll = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
Steve French4efa53f2007-09-11 05:50:53 +0000720 read_unlock(&GlobalSMBSeslock);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000721 if ((rc == 0) && CIFS_I(inode)->write_behind_rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 rc = CIFS_I(inode)->write_behind_rc;
723 FreeXid(xid);
724 return rc;
725}
726
727int cifs_closedir(struct inode *inode, struct file *file)
728{
729 int rc = 0;
730 int xid;
731 struct cifsFileInfo *pCFileStruct =
732 (struct cifsFileInfo *)file->private_data;
733 char *ptmp;
734
Steve French26a21b92006-05-31 18:05:34 +0000735 cFYI(1, ("Closedir inode = 0x%p", inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 xid = GetXid();
738
739 if (pCFileStruct) {
740 struct cifsTconInfo *pTcon;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000741 struct cifs_sb_info *cifs_sb =
742 CIFS_SB(file->f_path.dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 pTcon = cifs_sb->tcon;
745
746 cFYI(1, ("Freeing private data in close dir"));
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000747 write_lock(&GlobalSMBSeslock);
Steve French4b18f2a2008-04-29 00:06:05 +0000748 if (!pCFileStruct->srch_inf.endOfSearch &&
749 !pCFileStruct->invalidHandle) {
750 pCFileStruct->invalidHandle = true;
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000751 write_unlock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 rc = CIFSFindClose(xid, pTcon, pCFileStruct->netfid);
753 cFYI(1, ("Closing uncompleted readdir with rc %d",
754 rc));
755 /* not much we can do if it fails anyway, ignore rc */
756 rc = 0;
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000757 } else
758 write_unlock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 ptmp = pCFileStruct->srch_inf.ntwrk_buf_start;
760 if (ptmp) {
Steve Frenchec637e32005-12-12 20:53:18 -0800761 cFYI(1, ("closedir free smb buf in srch struct"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 pCFileStruct->srch_inf.ntwrk_buf_start = NULL;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000763 if (pCFileStruct->srch_inf.smallBuf)
Steve Frenchd47d7c12006-02-28 03:45:48 +0000764 cifs_small_buf_release(ptmp);
765 else
766 cifs_buf_release(ptmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 kfree(file->private_data);
769 file->private_data = NULL;
770 }
771 /* BB can we lock the filestruct while this is going on? */
772 FreeXid(xid);
773 return rc;
774}
775
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000776static int store_file_lock(struct cifsFileInfo *fid, __u64 len,
777 __u64 offset, __u8 lockType)
778{
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000779 struct cifsLockInfo *li =
780 kmalloc(sizeof(struct cifsLockInfo), GFP_KERNEL);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000781 if (li == NULL)
782 return -ENOMEM;
783 li->offset = offset;
784 li->length = len;
785 li->type = lockType;
Roland Dreier796e5662007-05-03 04:33:45 +0000786 mutex_lock(&fid->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000787 list_add(&li->llist, &fid->llist);
Roland Dreier796e5662007-05-03 04:33:45 +0000788 mutex_unlock(&fid->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000789 return 0;
790}
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792int cifs_lock(struct file *file, int cmd, struct file_lock *pfLock)
793{
794 int rc, xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 __u32 numLock = 0;
796 __u32 numUnlock = 0;
797 __u64 length;
Steve French4b18f2a2008-04-29 00:06:05 +0000798 bool wait_flag = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 struct cifs_sb_info *cifs_sb;
Steve French13a6e422008-12-02 17:24:33 +0000800 struct cifsTconInfo *tcon;
Steve French08547b02006-02-28 22:39:25 +0000801 __u16 netfid;
802 __u8 lockType = LOCKING_ANDX_LARGE_FILES;
Steve French13a6e422008-12-02 17:24:33 +0000803 bool posix_locking = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 length = 1 + pfLock->fl_end - pfLock->fl_start;
806 rc = -EACCES;
807 xid = GetXid();
808
809 cFYI(1, ("Lock parm: 0x%x flockflags: "
810 "0x%x flocktype: 0x%x start: %lld end: %lld",
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000811 cmd, pfLock->fl_flags, pfLock->fl_type, pfLock->fl_start,
812 pfLock->fl_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 if (pfLock->fl_flags & FL_POSIX)
Steve Frenchd47d7c12006-02-28 03:45:48 +0000815 cFYI(1, ("Posix"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (pfLock->fl_flags & FL_FLOCK)
Steve Frenchd47d7c12006-02-28 03:45:48 +0000817 cFYI(1, ("Flock"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (pfLock->fl_flags & FL_SLEEP) {
Steve Frenchd47d7c12006-02-28 03:45:48 +0000819 cFYI(1, ("Blocking lock"));
Steve French4b18f2a2008-04-29 00:06:05 +0000820 wait_flag = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822 if (pfLock->fl_flags & FL_ACCESS)
823 cFYI(1, ("Process suspended by mandatory locking - "
Steve French26a21b92006-05-31 18:05:34 +0000824 "not implemented yet"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (pfLock->fl_flags & FL_LEASE)
826 cFYI(1, ("Lease on file - not implemented yet"));
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000827 if (pfLock->fl_flags &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 (~(FL_POSIX | FL_FLOCK | FL_SLEEP | FL_ACCESS | FL_LEASE)))
829 cFYI(1, ("Unknown lock flags 0x%x", pfLock->fl_flags));
830
831 if (pfLock->fl_type == F_WRLCK) {
832 cFYI(1, ("F_WRLCK "));
833 numLock = 1;
834 } else if (pfLock->fl_type == F_UNLCK) {
Steve Frenchd47d7c12006-02-28 03:45:48 +0000835 cFYI(1, ("F_UNLCK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 numUnlock = 1;
Steve Frenchd47d7c12006-02-28 03:45:48 +0000837 /* Check if unlock includes more than
838 one lock range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 } else if (pfLock->fl_type == F_RDLCK) {
Steve Frenchd47d7c12006-02-28 03:45:48 +0000840 cFYI(1, ("F_RDLCK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 lockType |= LOCKING_ANDX_SHARED_LOCK;
842 numLock = 1;
843 } else if (pfLock->fl_type == F_EXLCK) {
Steve Frenchd47d7c12006-02-28 03:45:48 +0000844 cFYI(1, ("F_EXLCK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 numLock = 1;
846 } else if (pfLock->fl_type == F_SHLCK) {
Steve Frenchd47d7c12006-02-28 03:45:48 +0000847 cFYI(1, ("F_SHLCK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 lockType |= LOCKING_ANDX_SHARED_LOCK;
849 numLock = 1;
850 } else
Steve Frenchd47d7c12006-02-28 03:45:48 +0000851 cFYI(1, ("Unknown type of lock"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800853 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Steve French13a6e422008-12-02 17:24:33 +0000854 tcon = cifs_sb->tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 if (file->private_data == NULL) {
857 FreeXid(xid);
858 return -EBADF;
859 }
Steve French08547b02006-02-28 22:39:25 +0000860 netfid = ((struct cifsFileInfo *)file->private_data)->netfid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Steve French13a6e422008-12-02 17:24:33 +0000862 if ((tcon->ses->capabilities & CAP_UNIX) &&
863 (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) &&
Steve Frenchacc18aa2008-12-02 18:53:55 +0000864 ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0))
Steve French13a6e422008-12-02 17:24:33 +0000865 posix_locking = 1;
Steve French08547b02006-02-28 22:39:25 +0000866 /* BB add code here to normalize offset and length to
867 account for negative length which we can not accept over the
868 wire */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (IS_GETLK(cmd)) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000870 if (posix_locking) {
Steve French08547b02006-02-28 22:39:25 +0000871 int posix_lock_type;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000872 if (lockType & LOCKING_ANDX_SHARED_LOCK)
Steve French08547b02006-02-28 22:39:25 +0000873 posix_lock_type = CIFS_RDLCK;
874 else
875 posix_lock_type = CIFS_WRLCK;
Steve French13a6e422008-12-02 17:24:33 +0000876 rc = CIFSSMBPosixLock(xid, tcon, netfid, 1 /* get */,
Steve Frenchfc94cdb2006-05-30 18:03:32 +0000877 length, pfLock,
Steve French08547b02006-02-28 22:39:25 +0000878 posix_lock_type, wait_flag);
879 FreeXid(xid);
880 return rc;
881 }
882
883 /* BB we could chain these into one lock request BB */
Steve French13a6e422008-12-02 17:24:33 +0000884 rc = CIFSSMBLock(xid, tcon, netfid, length, pfLock->fl_start,
Steve French08547b02006-02-28 22:39:25 +0000885 0, 1, lockType, 0 /* wait flag */ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (rc == 0) {
Steve French13a6e422008-12-02 17:24:33 +0000887 rc = CIFSSMBLock(xid, tcon, netfid, length,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 pfLock->fl_start, 1 /* numUnlock */ ,
889 0 /* numLock */ , lockType,
890 0 /* wait flag */ );
891 pfLock->fl_type = F_UNLCK;
892 if (rc != 0)
893 cERROR(1, ("Error unlocking previously locked "
Steve French08547b02006-02-28 22:39:25 +0000894 "range %d during test of lock", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 rc = 0;
896
897 } else {
898 /* if rc == ERR_SHARING_VIOLATION ? */
899 rc = 0; /* do not change lock type to unlock
900 since range in use */
901 }
902
903 FreeXid(xid);
904 return rc;
905 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000906
907 if (!numLock && !numUnlock) {
908 /* if no lock or unlock then nothing
909 to do since we do not know what it is */
910 FreeXid(xid);
911 return -EOPNOTSUPP;
912 }
913
914 if (posix_locking) {
Steve French08547b02006-02-28 22:39:25 +0000915 int posix_lock_type;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000916 if (lockType & LOCKING_ANDX_SHARED_LOCK)
Steve French08547b02006-02-28 22:39:25 +0000917 posix_lock_type = CIFS_RDLCK;
918 else
919 posix_lock_type = CIFS_WRLCK;
Steve French50c2f752007-07-13 00:33:32 +0000920
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000921 if (numUnlock == 1)
Steve Frenchbeb84dc2006-03-03 23:36:34 +0000922 posix_lock_type = CIFS_UNLCK;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000923
Steve French13a6e422008-12-02 17:24:33 +0000924 rc = CIFSSMBPosixLock(xid, tcon, netfid, 0 /* set */,
Steve Frenchfc94cdb2006-05-30 18:03:32 +0000925 length, pfLock,
Steve French08547b02006-02-28 22:39:25 +0000926 posix_lock_type, wait_flag);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000927 } else {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000928 struct cifsFileInfo *fid =
929 (struct cifsFileInfo *)file->private_data;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000930
931 if (numLock) {
Steve French13a6e422008-12-02 17:24:33 +0000932 rc = CIFSSMBLock(xid, tcon, netfid, length,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000933 pfLock->fl_start,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000934 0, numLock, lockType, wait_flag);
935
936 if (rc == 0) {
937 /* For Windows locks we must store them. */
938 rc = store_file_lock(fid, length,
939 pfLock->fl_start, lockType);
940 }
941 } else if (numUnlock) {
942 /* For each stored lock that this unlock overlaps
943 completely, unlock it. */
944 int stored_rc = 0;
945 struct cifsLockInfo *li, *tmp;
946
Steve French6b70c952006-09-21 07:35:29 +0000947 rc = 0;
Roland Dreier796e5662007-05-03 04:33:45 +0000948 mutex_lock(&fid->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000949 list_for_each_entry_safe(li, tmp, &fid->llist, llist) {
950 if (pfLock->fl_start <= li->offset &&
Steve Frenchc19eb712007-08-24 03:22:48 +0000951 (pfLock->fl_start + length) >=
Jeff Layton39db8102007-08-24 03:16:51 +0000952 (li->offset + li->length)) {
Steve French13a6e422008-12-02 17:24:33 +0000953 stored_rc = CIFSSMBLock(xid, tcon,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000954 netfid,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000955 li->length, li->offset,
Steve French4b18f2a2008-04-29 00:06:05 +0000956 1, 0, li->type, false);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000957 if (stored_rc)
958 rc = stored_rc;
959
960 list_del(&li->llist);
961 kfree(li);
962 }
963 }
Roland Dreier796e5662007-05-03 04:33:45 +0000964 mutex_unlock(&fid->lock_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000965 }
966 }
967
Steve Frenchd634cc12005-08-26 14:42:59 -0500968 if (pfLock->fl_flags & FL_POSIX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 posix_lock_file_wait(file, pfLock);
970 FreeXid(xid);
971 return rc;
972}
973
974ssize_t cifs_user_write(struct file *file, const char __user *write_data,
975 size_t write_size, loff_t *poffset)
976{
977 int rc = 0;
978 unsigned int bytes_written = 0;
979 unsigned int total_written;
980 struct cifs_sb_info *cifs_sb;
981 struct cifsTconInfo *pTcon;
982 int xid, long_op;
983 struct cifsFileInfo *open_file;
984
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800985 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 pTcon = cifs_sb->tcon;
988
989 /* cFYI(1,
990 (" write %d bytes to offset %lld of %s", write_size,
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800991 *poffset, file->f_path.dentry->d_name.name)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 if (file->private_data == NULL)
994 return -EBADF;
Christoph Hellwigc33f8d32007-04-02 18:47:20 +0000995 open_file = (struct cifsFileInfo *) file->private_data;
Steve French50c2f752007-07-13 00:33:32 +0000996
Jeff Layton838726c2008-08-28 07:54:59 -0400997 rc = generic_write_checks(file, poffset, &write_size, 0);
998 if (rc)
999 return rc;
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 xid = GetXid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08001003 if (*poffset > file->f_path.dentry->d_inode->i_size)
Steve French133672e2007-11-13 22:41:37 +00001004 long_op = CIFS_VLONG_OP; /* writes past EOF take long time */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 else
Steve French133672e2007-11-13 22:41:37 +00001006 long_op = CIFS_LONG_OP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 for (total_written = 0; write_size > total_written;
1009 total_written += bytes_written) {
1010 rc = -EAGAIN;
1011 while (rc == -EAGAIN) {
1012 if (file->private_data == NULL) {
1013 /* file has been closed on us */
1014 FreeXid(xid);
1015 /* if we have gotten here we have written some data
1016 and blocked, and the file has been freed on us while
1017 we blocked so return what we managed to write */
1018 return total_written;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (open_file->closePend) {
1021 FreeXid(xid);
1022 if (total_written)
1023 return total_written;
1024 else
1025 return -EBADF;
1026 }
1027 if (open_file->invalidHandle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 /* we could deadlock if we called
1029 filemap_fdatawait from here so tell
1030 reopen_file not to flush data to server
1031 now */
Steve French4b18f2a2008-04-29 00:06:05 +00001032 rc = cifs_reopen_file(file, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (rc != 0)
1034 break;
1035 }
1036
1037 rc = CIFSSMBWrite(xid, pTcon,
1038 open_file->netfid,
1039 min_t(const int, cifs_sb->wsize,
1040 write_size - total_written),
1041 *poffset, &bytes_written,
1042 NULL, write_data + total_written, long_op);
1043 }
1044 if (rc || (bytes_written == 0)) {
1045 if (total_written)
1046 break;
1047 else {
1048 FreeXid(xid);
1049 return rc;
1050 }
1051 } else
1052 *poffset += bytes_written;
Steve French133672e2007-11-13 22:41:37 +00001053 long_op = CIFS_STD_OP; /* subsequent writes fast -
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 15 seconds is plenty */
1055 }
1056
Steve Frencha4544342005-08-24 13:59:35 -07001057 cifs_stats_bytes_written(pTcon, total_written);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 /* since the write may have blocked check these pointers again */
Steve French3677db12007-02-26 16:46:11 +00001060 if ((file->f_path.dentry) && (file->f_path.dentry->d_inode)) {
1061 struct inode *inode = file->f_path.dentry->d_inode;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001062/* Do not update local mtime - server will set its actual value on write
1063 * inode->i_ctime = inode->i_mtime =
Steve French3677db12007-02-26 16:46:11 +00001064 * current_fs_time(inode->i_sb);*/
1065 if (total_written > 0) {
1066 spin_lock(&inode->i_lock);
1067 if (*poffset > file->f_path.dentry->d_inode->i_size)
1068 i_size_write(file->f_path.dentry->d_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 *poffset);
Steve French3677db12007-02-26 16:46:11 +00001070 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001072 mark_inode_dirty_sync(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
1074 FreeXid(xid);
1075 return total_written;
1076}
1077
1078static ssize_t cifs_write(struct file *file, const char *write_data,
Nick Piggind9414772008-09-24 11:32:59 -04001079 size_t write_size, loff_t *poffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
1081 int rc = 0;
1082 unsigned int bytes_written = 0;
1083 unsigned int total_written;
1084 struct cifs_sb_info *cifs_sb;
1085 struct cifsTconInfo *pTcon;
1086 int xid, long_op;
1087 struct cifsFileInfo *open_file;
1088
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08001089 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 pTcon = cifs_sb->tcon;
1092
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001093 cFYI(1, ("write %zd bytes to offset %lld of %s", write_size,
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08001094 *poffset, file->f_path.dentry->d_name.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 if (file->private_data == NULL)
1097 return -EBADF;
Christoph Hellwigc33f8d32007-04-02 18:47:20 +00001098 open_file = (struct cifsFileInfo *)file->private_data;
Steve French50c2f752007-07-13 00:33:32 +00001099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 xid = GetXid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08001102 if (*poffset > file->f_path.dentry->d_inode->i_size)
Steve French133672e2007-11-13 22:41:37 +00001103 long_op = CIFS_VLONG_OP; /* writes past EOF can be slow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 else
Steve French133672e2007-11-13 22:41:37 +00001105 long_op = CIFS_LONG_OP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107 for (total_written = 0; write_size > total_written;
1108 total_written += bytes_written) {
1109 rc = -EAGAIN;
1110 while (rc == -EAGAIN) {
1111 if (file->private_data == NULL) {
1112 /* file has been closed on us */
1113 FreeXid(xid);
1114 /* if we have gotten here we have written some data
1115 and blocked, and the file has been freed on us
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001116 while we blocked so return what we managed to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 write */
1118 return total_written;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (open_file->closePend) {
1121 FreeXid(xid);
1122 if (total_written)
1123 return total_written;
1124 else
1125 return -EBADF;
1126 }
1127 if (open_file->invalidHandle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 /* we could deadlock if we called
1129 filemap_fdatawait from here so tell
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001130 reopen_file not to flush data to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 server now */
Steve French4b18f2a2008-04-29 00:06:05 +00001132 rc = cifs_reopen_file(file, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (rc != 0)
1134 break;
1135 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001136 if (experimEnabled || (pTcon->ses->server &&
1137 ((pTcon->ses->server->secMode &
Steve French08775832006-05-30 18:08:26 +00001138 (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED))
Steve Frenchc01f36a2006-05-30 18:05:10 +00001139 == 0))) {
Steve French3e844692005-10-03 13:37:24 -07001140 struct kvec iov[2];
1141 unsigned int len;
1142
Steve French0ae0efa2005-10-10 10:57:19 -07001143 len = min((size_t)cifs_sb->wsize,
Steve French3e844692005-10-03 13:37:24 -07001144 write_size - total_written);
1145 /* iov[0] is reserved for smb header */
1146 iov[1].iov_base = (char *)write_data +
1147 total_written;
1148 iov[1].iov_len = len;
Steve Frenchd6e04ae2005-06-13 13:24:43 -05001149 rc = CIFSSMBWrite2(xid, pTcon,
Steve French3e844692005-10-03 13:37:24 -07001150 open_file->netfid, len,
Steve Frenchd6e04ae2005-06-13 13:24:43 -05001151 *poffset, &bytes_written,
Steve French3e844692005-10-03 13:37:24 -07001152 iov, 1, long_op);
Steve Frenchd6e04ae2005-06-13 13:24:43 -05001153 } else
Steve French60808232006-04-22 15:53:05 +00001154 rc = CIFSSMBWrite(xid, pTcon,
1155 open_file->netfid,
1156 min_t(const int, cifs_sb->wsize,
1157 write_size - total_written),
1158 *poffset, &bytes_written,
1159 write_data + total_written,
1160 NULL, long_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162 if (rc || (bytes_written == 0)) {
1163 if (total_written)
1164 break;
1165 else {
1166 FreeXid(xid);
1167 return rc;
1168 }
1169 } else
1170 *poffset += bytes_written;
Steve French133672e2007-11-13 22:41:37 +00001171 long_op = CIFS_STD_OP; /* subsequent writes fast -
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 15 seconds is plenty */
1173 }
1174
Steve Frencha4544342005-08-24 13:59:35 -07001175 cifs_stats_bytes_written(pTcon, total_written);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 /* since the write may have blocked check these pointers again */
Steve French3677db12007-02-26 16:46:11 +00001178 if ((file->f_path.dentry) && (file->f_path.dentry->d_inode)) {
Steve French004c46b2007-02-17 04:34:13 +00001179/*BB We could make this contingent on superblock ATIME flag too */
Steve French3677db12007-02-26 16:46:11 +00001180/* file->f_path.dentry->d_inode->i_ctime =
1181 file->f_path.dentry->d_inode->i_mtime = CURRENT_TIME;*/
1182 if (total_written > 0) {
1183 spin_lock(&file->f_path.dentry->d_inode->i_lock);
1184 if (*poffset > file->f_path.dentry->d_inode->i_size)
1185 i_size_write(file->f_path.dentry->d_inode,
1186 *poffset);
1187 spin_unlock(&file->f_path.dentry->d_inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 }
Steve French3677db12007-02-26 16:46:11 +00001189 mark_inode_dirty_sync(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
1191 FreeXid(xid);
1192 return total_written;
1193}
1194
Steve French630f3f0c2007-10-25 21:17:17 +00001195#ifdef CONFIG_CIFS_EXPERIMENTAL
1196struct cifsFileInfo *find_readable_file(struct cifsInodeInfo *cifs_inode)
1197{
1198 struct cifsFileInfo *open_file = NULL;
1199
1200 read_lock(&GlobalSMBSeslock);
1201 /* we could simply get the first_list_entry since write-only entries
1202 are always at the end of the list but since the first entry might
1203 have a close pending, we go through the whole list */
1204 list_for_each_entry(open_file, &cifs_inode->openFileList, flist) {
1205 if (open_file->closePend)
1206 continue;
1207 if (open_file->pfile && ((open_file->pfile->f_flags & O_RDWR) ||
1208 (open_file->pfile->f_flags & O_RDONLY))) {
1209 if (!open_file->invalidHandle) {
1210 /* found a good file */
1211 /* lock it so it will not be closed on us */
1212 atomic_inc(&open_file->wrtPending);
1213 read_unlock(&GlobalSMBSeslock);
1214 return open_file;
1215 } /* else might as well continue, and look for
1216 another, or simply have the caller reopen it
1217 again rather than trying to fix this handle */
1218 } else /* write only file */
1219 break; /* write only files are last so must be done */
1220 }
1221 read_unlock(&GlobalSMBSeslock);
1222 return NULL;
1223}
1224#endif
1225
Steve Frenchdd99cd82005-10-05 19:32:49 -07001226struct cifsFileInfo *find_writable_file(struct cifsInodeInfo *cifs_inode)
Steve French6148a742005-10-05 12:23:19 -07001227{
1228 struct cifsFileInfo *open_file;
Jeff Layton2846d382008-09-22 21:33:33 -04001229 bool any_available = false;
Steve Frenchdd99cd82005-10-05 19:32:49 -07001230 int rc;
Steve French6148a742005-10-05 12:23:19 -07001231
Steve French60808232006-04-22 15:53:05 +00001232 /* Having a null inode here (because mapping->host was set to zero by
1233 the VFS or MM) should not happen but we had reports of on oops (due to
1234 it being zero) during stress testcases so we need to check for it */
1235
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001236 if (cifs_inode == NULL) {
1237 cERROR(1, ("Null inode passed to cifs_writeable_file"));
Steve French60808232006-04-22 15:53:05 +00001238 dump_stack();
1239 return NULL;
1240 }
1241
Steve French6148a742005-10-05 12:23:19 -07001242 read_lock(&GlobalSMBSeslock);
Steve French9b22b0b2007-10-02 01:11:08 +00001243refind_writable:
Steve French6148a742005-10-05 12:23:19 -07001244 list_for_each_entry(open_file, &cifs_inode->openFileList, flist) {
Jeff Layton2846d382008-09-22 21:33:33 -04001245 if (open_file->closePend ||
1246 (!any_available && open_file->pid != current->tgid))
Steve French6148a742005-10-05 12:23:19 -07001247 continue;
Jeff Layton2846d382008-09-22 21:33:33 -04001248
Steve French6148a742005-10-05 12:23:19 -07001249 if (open_file->pfile &&
1250 ((open_file->pfile->f_flags & O_RDWR) ||
1251 (open_file->pfile->f_flags & O_WRONLY))) {
Steve French23e7dd72005-10-20 13:44:56 -07001252 atomic_inc(&open_file->wrtPending);
Steve French9b22b0b2007-10-02 01:11:08 +00001253
1254 if (!open_file->invalidHandle) {
1255 /* found a good writable file */
1256 read_unlock(&GlobalSMBSeslock);
1257 return open_file;
1258 }
Steve French8840dee2007-11-16 23:05:52 +00001259
Steve French6148a742005-10-05 12:23:19 -07001260 read_unlock(&GlobalSMBSeslock);
Steve French9b22b0b2007-10-02 01:11:08 +00001261 /* Had to unlock since following call can block */
Steve French4b18f2a2008-04-29 00:06:05 +00001262 rc = cifs_reopen_file(open_file->pfile, false);
Steve French8840dee2007-11-16 23:05:52 +00001263 if (!rc) {
Steve French9b22b0b2007-10-02 01:11:08 +00001264 if (!open_file->closePend)
1265 return open_file;
1266 else { /* start over in case this was deleted */
1267 /* since the list could be modified */
Steve French37c0eb42005-10-05 14:50:29 -07001268 read_lock(&GlobalSMBSeslock);
Steve French15745322007-09-07 22:23:48 +00001269 atomic_dec(&open_file->wrtPending);
Steve French9b22b0b2007-10-02 01:11:08 +00001270 goto refind_writable;
Steve French37c0eb42005-10-05 14:50:29 -07001271 }
1272 }
Steve French9b22b0b2007-10-02 01:11:08 +00001273
1274 /* if it fails, try another handle if possible -
1275 (we can not do this if closePending since
1276 loop could be modified - in which case we
1277 have to start at the beginning of the list
1278 again. Note that it would be bad
1279 to hold up writepages here (rather than
1280 in caller) with continuous retries */
1281 cFYI(1, ("wp failed on reopen file"));
1282 read_lock(&GlobalSMBSeslock);
1283 /* can not use this handle, no write
1284 pending on this one after all */
1285 atomic_dec(&open_file->wrtPending);
Steve French8840dee2007-11-16 23:05:52 +00001286
Steve French9b22b0b2007-10-02 01:11:08 +00001287 if (open_file->closePend) /* list could have changed */
1288 goto refind_writable;
1289 /* else we simply continue to the next entry. Thus
1290 we do not loop on reopen errors. If we
1291 can not reopen the file, for example if we
1292 reconnected to a server with another client
1293 racing to delete or lock the file we would not
1294 make progress if we restarted before the beginning
1295 of the loop here. */
Steve French6148a742005-10-05 12:23:19 -07001296 }
1297 }
Jeff Layton2846d382008-09-22 21:33:33 -04001298 /* couldn't find useable FH with same pid, try any available */
1299 if (!any_available) {
1300 any_available = true;
1301 goto refind_writable;
1302 }
Steve French6148a742005-10-05 12:23:19 -07001303 read_unlock(&GlobalSMBSeslock);
1304 return NULL;
1305}
1306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to)
1308{
1309 struct address_space *mapping = page->mapping;
1310 loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
1311 char *write_data;
1312 int rc = -EFAULT;
1313 int bytes_written = 0;
1314 struct cifs_sb_info *cifs_sb;
1315 struct cifsTconInfo *pTcon;
1316 struct inode *inode;
Steve French6148a742005-10-05 12:23:19 -07001317 struct cifsFileInfo *open_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319 if (!mapping || !mapping->host)
1320 return -EFAULT;
1321
1322 inode = page->mapping->host;
1323 cifs_sb = CIFS_SB(inode->i_sb);
1324 pTcon = cifs_sb->tcon;
1325
1326 offset += (loff_t)from;
1327 write_data = kmap(page);
1328 write_data += from;
1329
1330 if ((to > PAGE_CACHE_SIZE) || (from > to)) {
1331 kunmap(page);
1332 return -EIO;
1333 }
1334
1335 /* racing with truncate? */
1336 if (offset > mapping->host->i_size) {
1337 kunmap(page);
1338 return 0; /* don't care */
1339 }
1340
1341 /* check to make sure that we are not extending the file */
1342 if (mapping->host->i_size - offset < (loff_t)to)
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001343 to = (unsigned)(mapping->host->i_size - offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Steve French6148a742005-10-05 12:23:19 -07001345 open_file = find_writable_file(CIFS_I(mapping->host));
1346 if (open_file) {
1347 bytes_written = cifs_write(open_file->pfile, write_data,
1348 to-from, &offset);
Steve French23e7dd72005-10-20 13:44:56 -07001349 atomic_dec(&open_file->wrtPending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 /* Does mm or vfs already set times? */
Steve French6148a742005-10-05 12:23:19 -07001351 inode->i_atime = inode->i_mtime = current_fs_time(inode->i_sb);
Steve Frenchbb5a9a02007-12-31 04:21:29 +00001352 if ((bytes_written > 0) && (offset))
Steve French6148a742005-10-05 12:23:19 -07001353 rc = 0;
Steve Frenchbb5a9a02007-12-31 04:21:29 +00001354 else if (bytes_written < 0)
1355 rc = bytes_written;
Steve French6148a742005-10-05 12:23:19 -07001356 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 cFYI(1, ("No writeable filehandles for inode"));
1358 rc = -EIO;
1359 }
1360
1361 kunmap(page);
1362 return rc;
1363}
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365static int cifs_writepages(struct address_space *mapping,
Steve French37c0eb42005-10-05 14:50:29 -07001366 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Steve French37c0eb42005-10-05 14:50:29 -07001368 struct backing_dev_info *bdi = mapping->backing_dev_info;
1369 unsigned int bytes_to_write;
1370 unsigned int bytes_written;
1371 struct cifs_sb_info *cifs_sb;
1372 int done = 0;
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -07001373 pgoff_t end;
Steve French37c0eb42005-10-05 14:50:29 -07001374 pgoff_t index;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001375 int range_whole = 0;
1376 struct kvec *iov;
Steve French84d2f072005-10-12 15:32:05 -07001377 int len;
Steve French37c0eb42005-10-05 14:50:29 -07001378 int n_iov = 0;
1379 pgoff_t next;
1380 int nr_pages;
1381 __u64 offset = 0;
Steve French23e7dd72005-10-20 13:44:56 -07001382 struct cifsFileInfo *open_file;
Steve French37c0eb42005-10-05 14:50:29 -07001383 struct page *page;
1384 struct pagevec pvec;
1385 int rc = 0;
1386 int scanned = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 int xid;
1388
Steve French37c0eb42005-10-05 14:50:29 -07001389 cifs_sb = CIFS_SB(mapping->host->i_sb);
Steve French50c2f752007-07-13 00:33:32 +00001390
Steve French37c0eb42005-10-05 14:50:29 -07001391 /*
1392 * If wsize is smaller that the page cache size, default to writing
1393 * one page at a time via cifs_writepage
1394 */
1395 if (cifs_sb->wsize < PAGE_CACHE_SIZE)
1396 return generic_writepages(mapping, wbc);
1397
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001398 if ((cifs_sb->tcon->ses) && (cifs_sb->tcon->ses->server))
1399 if (cifs_sb->tcon->ses->server->secMode &
1400 (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED))
1401 if (!experimEnabled)
Steve French60808232006-04-22 15:53:05 +00001402 return generic_writepages(mapping, wbc);
Steve French4a771182005-10-05 15:14:33 -07001403
Steve French9a0c8232007-02-02 04:21:57 +00001404 iov = kmalloc(32 * sizeof(struct kvec), GFP_KERNEL);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001405 if (iov == NULL)
Steve French9a0c8232007-02-02 04:21:57 +00001406 return generic_writepages(mapping, wbc);
1407
1408
Steve French37c0eb42005-10-05 14:50:29 -07001409 /*
1410 * BB: Is this meaningful for a non-block-device file system?
1411 * If it is, we should test it again after we do I/O
1412 */
1413 if (wbc->nonblocking && bdi_write_congested(bdi)) {
1414 wbc->encountered_congestion = 1;
Steve French9a0c8232007-02-02 04:21:57 +00001415 kfree(iov);
Steve French37c0eb42005-10-05 14:50:29 -07001416 return 0;
1417 }
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 xid = GetXid();
1420
Steve French37c0eb42005-10-05 14:50:29 -07001421 pagevec_init(&pvec, 0);
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -07001422 if (wbc->range_cyclic) {
Steve French37c0eb42005-10-05 14:50:29 -07001423 index = mapping->writeback_index; /* Start from prev offset */
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -07001424 end = -1;
1425 } else {
1426 index = wbc->range_start >> PAGE_CACHE_SHIFT;
1427 end = wbc->range_end >> PAGE_CACHE_SHIFT;
1428 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
1429 range_whole = 1;
Steve French37c0eb42005-10-05 14:50:29 -07001430 scanned = 1;
1431 }
1432retry:
1433 while (!done && (index <= end) &&
1434 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
1435 PAGECACHE_TAG_DIRTY,
1436 min(end - index, (pgoff_t)PAGEVEC_SIZE - 1) + 1))) {
1437 int first;
1438 unsigned int i;
1439
Steve French37c0eb42005-10-05 14:50:29 -07001440 first = -1;
1441 next = 0;
1442 n_iov = 0;
1443 bytes_to_write = 0;
1444
1445 for (i = 0; i < nr_pages; i++) {
1446 page = pvec.pages[i];
1447 /*
1448 * At this point we hold neither mapping->tree_lock nor
1449 * lock on the page itself: the page may be truncated or
1450 * invalidated (changing page->mapping to NULL), or even
1451 * swizzled back from swapper_space to tmpfs file
1452 * mapping
1453 */
1454
1455 if (first < 0)
1456 lock_page(page);
Nick Piggin529ae9a2008-08-02 12:01:03 +02001457 else if (!trylock_page(page))
Steve French37c0eb42005-10-05 14:50:29 -07001458 break;
1459
1460 if (unlikely(page->mapping != mapping)) {
1461 unlock_page(page);
1462 break;
1463 }
1464
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -07001465 if (!wbc->range_cyclic && page->index > end) {
Steve French37c0eb42005-10-05 14:50:29 -07001466 done = 1;
1467 unlock_page(page);
1468 break;
1469 }
1470
1471 if (next && (page->index != next)) {
1472 /* Not next consecutive page */
1473 unlock_page(page);
1474 break;
1475 }
1476
1477 if (wbc->sync_mode != WB_SYNC_NONE)
1478 wait_on_page_writeback(page);
1479
1480 if (PageWriteback(page) ||
Linus Torvaldscb876f42006-12-23 16:19:07 -08001481 !clear_page_dirty_for_io(page)) {
Steve French37c0eb42005-10-05 14:50:29 -07001482 unlock_page(page);
1483 break;
1484 }
Steve French84d2f072005-10-12 15:32:05 -07001485
Linus Torvaldscb876f42006-12-23 16:19:07 -08001486 /*
1487 * This actually clears the dirty bit in the radix tree.
1488 * See cifs_writepage() for more commentary.
1489 */
1490 set_page_writeback(page);
1491
Steve French84d2f072005-10-12 15:32:05 -07001492 if (page_offset(page) >= mapping->host->i_size) {
1493 done = 1;
1494 unlock_page(page);
Linus Torvaldscb876f42006-12-23 16:19:07 -08001495 end_page_writeback(page);
Steve French84d2f072005-10-12 15:32:05 -07001496 break;
1497 }
1498
Steve French37c0eb42005-10-05 14:50:29 -07001499 /*
1500 * BB can we get rid of this? pages are held by pvec
1501 */
1502 page_cache_get(page);
1503
Steve French84d2f072005-10-12 15:32:05 -07001504 len = min(mapping->host->i_size - page_offset(page),
1505 (loff_t)PAGE_CACHE_SIZE);
1506
Steve French37c0eb42005-10-05 14:50:29 -07001507 /* reserve iov[0] for the smb header */
1508 n_iov++;
1509 iov[n_iov].iov_base = kmap(page);
Steve French84d2f072005-10-12 15:32:05 -07001510 iov[n_iov].iov_len = len;
1511 bytes_to_write += len;
Steve French37c0eb42005-10-05 14:50:29 -07001512
1513 if (first < 0) {
1514 first = i;
1515 offset = page_offset(page);
1516 }
1517 next = page->index + 1;
1518 if (bytes_to_write + PAGE_CACHE_SIZE > cifs_sb->wsize)
1519 break;
1520 }
1521 if (n_iov) {
Steve French23e7dd72005-10-20 13:44:56 -07001522 /* Search for a writable handle every time we call
1523 * CIFSSMBWrite2. We can't rely on the last handle
1524 * we used to still be valid
1525 */
1526 open_file = find_writable_file(CIFS_I(mapping->host));
1527 if (!open_file) {
1528 cERROR(1, ("No writable handles for inode"));
1529 rc = -EBADF;
Steve French1047abc2005-10-11 19:58:06 -07001530 } else {
Steve French23e7dd72005-10-20 13:44:56 -07001531 rc = CIFSSMBWrite2(xid, cifs_sb->tcon,
1532 open_file->netfid,
1533 bytes_to_write, offset,
1534 &bytes_written, iov, n_iov,
Steve French133672e2007-11-13 22:41:37 +00001535 CIFS_LONG_OP);
Steve French23e7dd72005-10-20 13:44:56 -07001536 atomic_dec(&open_file->wrtPending);
1537 if (rc || bytes_written < bytes_to_write) {
Steve French63135e02007-07-17 17:34:02 +00001538 cERROR(1, ("Write2 ret %d, wrote %d",
Steve French23e7dd72005-10-20 13:44:56 -07001539 rc, bytes_written));
1540 /* BB what if continued retry is
1541 requested via mount flags? */
Jeff Laytoncea21802007-11-20 23:19:03 +00001542 if (rc == -ENOSPC)
1543 set_bit(AS_ENOSPC, &mapping->flags);
1544 else
1545 set_bit(AS_EIO, &mapping->flags);
Steve French23e7dd72005-10-20 13:44:56 -07001546 } else {
1547 cifs_stats_bytes_written(cifs_sb->tcon,
1548 bytes_written);
1549 }
Steve French37c0eb42005-10-05 14:50:29 -07001550 }
1551 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))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 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
Nick Piggind9414772008-09-24 11:32:59 -04001629 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
1675int cifs_fsync(struct file *file, struct dentry *dentry, int datasync)
1676{
1677 int xid;
1678 int rc = 0;
Steve Frenchb298f222009-02-21 21:17:43 +00001679 struct cifsTconInfo *tcon;
1680 struct cifsFileInfo *smbfile =
1681 (struct cifsFileInfo *)file->private_data;
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08001682 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 xid = GetXid();
1685
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001686 cFYI(1, ("Sync file - name: %s datasync: 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 dentry->d_name.name, datasync));
Steve French50c2f752007-07-13 00:33:32 +00001688
Jeff Laytoncea21802007-11-20 23:19:03 +00001689 rc = filemap_write_and_wait(inode->i_mapping);
1690 if (rc == 0) {
1691 rc = CIFS_I(inode)->write_behind_rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 CIFS_I(inode)->write_behind_rc = 0;
Steve Frenchb298f222009-02-21 21:17:43 +00001693 tcon = CIFS_SB(inode->i_sb)->tcon;
Steve Frenchbe652442009-02-23 15:21:59 +00001694 if (!rc && tcon && smbfile &&
Steve French4717bed2009-02-24 14:44:19 +00001695 !(CIFS_SB(inode->i_sb)->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC))
Steve Frenchb298f222009-02-21 21:17:43 +00001696 rc = CIFSSMBFlush(xid, tcon, smbfile->netfid);
Jeff Laytoncea21802007-11-20 23:19:03 +00001697 }
Steve Frenchb298f222009-02-21 21:17:43 +00001698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 FreeXid(xid);
1700 return rc;
1701}
1702
NeilBrown3978d7172006-03-26 01:37:17 -08001703/* static void cifs_sync_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
1705 struct address_space *mapping;
1706 struct inode *inode;
1707 unsigned long index = page->index;
1708 unsigned int rpages = 0;
1709 int rc = 0;
1710
1711 cFYI(1, ("sync page %p",page));
1712 mapping = page->mapping;
1713 if (!mapping)
1714 return 0;
1715 inode = mapping->host;
1716 if (!inode)
NeilBrown3978d7172006-03-26 01:37:17 -08001717 return; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001719/* fill in rpages then
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 result = cifs_pagein_inode(inode, index, rpages); */ /* BB finish */
1721
Steve French26a21b92006-05-31 18:05:34 +00001722/* cFYI(1, ("rpages is %d for sync page of Index %ld", rpages, index));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
NeilBrown3978d7172006-03-26 01:37:17 -08001724#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (rc < 0)
1726 return rc;
1727 return 0;
NeilBrown3978d7172006-03-26 01:37:17 -08001728#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729} */
1730
1731/*
1732 * As file closes, flush all cached write data for this inode checking
1733 * for write behind errors.
1734 */
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -07001735int cifs_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736{
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001737 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 int rc = 0;
1739
1740 /* Rather than do the steps manually:
1741 lock the inode for writing
1742 loop through pages looking for write behind data (dirty pages)
1743 coalesce into contiguous 16K (or smaller) chunks to write to server
1744 send to server (prefer in parallel)
1745 deal with writebehind errors
1746 unlock inode for writing
1747 filemapfdatawrite appears easier for the time being */
1748
1749 rc = filemap_fdatawrite(inode->i_mapping);
Jeff Laytoncea21802007-11-20 23:19:03 +00001750 /* reset wb rc if we were able to write out dirty pages */
1751 if (!rc) {
1752 rc = CIFS_I(inode)->write_behind_rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 CIFS_I(inode)->write_behind_rc = 0;
Jeff Laytoncea21802007-11-20 23:19:03 +00001754 }
Steve French50c2f752007-07-13 00:33:32 +00001755
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001756 cFYI(1, ("Flush inode %p file %p rc %d", inode, file, rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 return rc;
1759}
1760
1761ssize_t cifs_user_read(struct file *file, char __user *read_data,
1762 size_t read_size, loff_t *poffset)
1763{
1764 int rc = -EACCES;
1765 unsigned int bytes_read = 0;
1766 unsigned int total_read = 0;
1767 unsigned int current_read_size;
1768 struct cifs_sb_info *cifs_sb;
1769 struct cifsTconInfo *pTcon;
1770 int xid;
1771 struct cifsFileInfo *open_file;
1772 char *smb_read_data;
1773 char __user *current_offset;
1774 struct smb_com_read_rsp *pSMBr;
1775
1776 xid = GetXid();
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08001777 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 pTcon = cifs_sb->tcon;
1779
1780 if (file->private_data == NULL) {
1781 FreeXid(xid);
1782 return -EBADF;
1783 }
1784 open_file = (struct cifsFileInfo *)file->private_data;
1785
Steve Frenchad7a2922008-02-07 23:25:02 +00001786 if ((file->f_flags & O_ACCMODE) == O_WRONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 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 pTcon = cifs_sb->tcon;
1859
1860 if (file->private_data == NULL) {
1861 FreeXid(xid);
1862 return -EBADF;
1863 }
1864 open_file = (struct cifsFileInfo *)file->private_data;
1865
1866 if ((file->f_flags & O_ACCMODE) == O_WRONLY)
1867 cFYI(1, ("attempting read on write only file instance"));
1868
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001869 for (total_read = 0, current_offset = read_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 read_size > total_read;
1871 total_read += bytes_read, current_offset += bytes_read) {
1872 current_read_size = min_t(const int, read_size - total_read,
1873 cifs_sb->rsize);
Steve Frenchf9f5c8172005-09-15 23:06:38 -07001874 /* For windows me and 9x we do not want to request more
1875 than it negotiated since it will refuse the read then */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001876 if ((pTcon->ses) &&
Steve Frenchf9f5c8172005-09-15 23:06:38 -07001877 !(pTcon->ses->capabilities & CAP_LARGE_FILES)) {
1878 current_read_size = min_t(const int, current_read_size,
1879 pTcon->ses->server->maxBuf - 128);
1880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 rc = -EAGAIN;
1882 while (rc == -EAGAIN) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001883 if ((open_file->invalidHandle) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 (!open_file->closePend)) {
Steve French4b18f2a2008-04-29 00:06:05 +00001885 rc = cifs_reopen_file(file, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 if (rc != 0)
1887 break;
1888 }
Steve Frenchbfa0d752005-08-31 21:50:37 -07001889 rc = CIFSSMBRead(xid, pTcon,
Steve Frenchec637e32005-12-12 20:53:18 -08001890 open_file->netfid,
1891 current_read_size, *poffset,
1892 &bytes_read, &current_offset,
1893 &buf_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 }
1895 if (rc || (bytes_read == 0)) {
1896 if (total_read) {
1897 break;
1898 } else {
1899 FreeXid(xid);
1900 return rc;
1901 }
1902 } else {
Steve Frencha4544342005-08-24 13:59:35 -07001903 cifs_stats_bytes_read(pTcon, total_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 *poffset += bytes_read;
1905 }
1906 }
1907 FreeXid(xid);
1908 return total_read;
1909}
1910
1911int cifs_file_mmap(struct file *file, struct vm_area_struct *vma)
1912{
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08001913 struct dentry *dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 int rc, xid;
1915
1916 xid = GetXid();
1917 rc = cifs_revalidate(dentry);
1918 if (rc) {
1919 cFYI(1, ("Validation prior to mmap failed, error=%d", rc));
1920 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,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 struct list_head *pages, int bytes_read, char *data,
1931 struct pagevec *plru_pvec)
1932{
1933 struct page *page;
1934 char *target;
1935
1936 while (bytes_read > 0) {
1937 if (list_empty(pages))
1938 break;
1939
1940 page = list_entry(pages->prev, struct page, lru);
1941 list_del(&page->lru);
1942
1943 if (add_to_page_cache(page, mapping, page->index,
1944 GFP_KERNEL)) {
1945 page_cache_release(page);
1946 cFYI(1, ("Add page cache failed"));
Steve French3079ca62005-06-09 14:44:07 -07001947 data += PAGE_CACHE_SIZE;
1948 bytes_read -= PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 continue;
1950 }
1951
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);
1969 if (!pagevec_add(plru_pvec, page))
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001970 __pagevec_lru_add_file(plru_pvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 data += PAGE_CACHE_SIZE;
1972 }
1973 return;
1974}
1975
1976static int cifs_readpages(struct file *file, struct address_space *mapping,
1977 struct list_head *page_list, unsigned num_pages)
1978{
1979 int rc = -EACCES;
1980 int xid;
1981 loff_t offset;
1982 struct page *page;
1983 struct cifs_sb_info *cifs_sb;
1984 struct cifsTconInfo *pTcon;
Steve French2c2130e2007-10-12 19:10:28 +00001985 unsigned int bytes_read = 0;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001986 unsigned int read_size, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 char *smb_read_data = NULL;
1988 struct smb_com_read_rsp *pSMBr;
1989 struct pagevec lru_pvec;
1990 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) {
1995 FreeXid(xid);
1996 return -EBADF;
1997 }
1998 open_file = (struct cifsFileInfo *)file->private_data;
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08001999 cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 pTcon = cifs_sb->tcon;
Steve Frenchbfa0d752005-08-31 21:50:37 -07002001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 pagevec_init(&lru_pvec, 0);
Steve French61de8002008-10-30 20:15:22 +00002003 cFYI(DBG2, ("rpages: num pages %d", num_pages));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 for (i = 0; i < num_pages; ) {
2005 unsigned contig_pages;
2006 struct page *tmp_page;
2007 unsigned long expected_index;
2008
2009 if (list_empty(page_list))
2010 break;
2011
2012 page = list_entry(page_list->prev, struct page, lru);
2013 offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
2014
2015 /* count adjacent pages that we will read into */
2016 contig_pages = 0;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002017 expected_index =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 list_entry(page_list->prev, struct page, lru)->index;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002019 list_for_each_entry_reverse(tmp_page, page_list, lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 if (tmp_page->index == expected_index) {
2021 contig_pages++;
2022 expected_index++;
2023 } else
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002024 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 }
2026 if (contig_pages + i > num_pages)
2027 contig_pages = num_pages - i;
2028
2029 /* for reads over a certain size could initiate async
2030 read ahead */
2031
2032 read_size = contig_pages * PAGE_CACHE_SIZE;
2033 /* Read size needs to be in multiples of one page */
2034 read_size = min_t(const unsigned int, read_size,
2035 cifs_sb->rsize & PAGE_CACHE_MASK);
Steve French90c81e02008-02-12 20:32:36 +00002036 cFYI(DBG2, ("rpages: read size 0x%x contiguous pages %d",
Steve French75865f8c2007-06-24 18:30:48 +00002037 read_size, contig_pages));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 rc = -EAGAIN;
2039 while (rc == -EAGAIN) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002040 if ((open_file->invalidHandle) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 (!open_file->closePend)) {
Steve French4b18f2a2008-04-29 00:06:05 +00002042 rc = cifs_reopen_file(file, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 if (rc != 0)
2044 break;
2045 }
2046
Steve Frenchbfa0d752005-08-31 21:50:37 -07002047 rc = CIFSSMBRead(xid, pTcon,
Steve Frenchec637e32005-12-12 20:53:18 -08002048 open_file->netfid,
2049 read_size, offset,
2050 &bytes_read, &smb_read_data,
2051 &buf_type);
Steve Frencha9d02ad2005-08-24 23:06:05 -07002052 /* BB more RC checks ? */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002053 if (rc == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 if (smb_read_data) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002055 if (buf_type == CIFS_SMALL_BUFFER)
Steve Frenchec637e32005-12-12 20:53:18 -08002056 cifs_small_buf_release(smb_read_data);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002057 else if (buf_type == CIFS_LARGE_BUFFER)
Steve Frenchec637e32005-12-12 20:53:18 -08002058 cifs_buf_release(smb_read_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 smb_read_data = NULL;
2060 }
2061 }
2062 }
2063 if ((rc < 0) || (smb_read_data == NULL)) {
2064 cFYI(1, ("Read error in readpages: %d", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 break;
2066 } else if (bytes_read > 0) {
Andrew Morton6f88cc22006-12-10 02:19:44 -08002067 task_io_account_read(bytes_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 pSMBr = (struct smb_com_read_rsp *)smb_read_data;
2069 cifs_copy_cache_pages(mapping, page_list, bytes_read,
2070 smb_read_data + 4 /* RFC1001 hdr */ +
2071 le16_to_cpu(pSMBr->DataOffset), &lru_pvec);
2072
2073 i += bytes_read >> PAGE_CACHE_SHIFT;
Steve Frencha4544342005-08-24 13:59:35 -07002074 cifs_stats_bytes_read(pTcon, bytes_read);
Steve French2c2130e2007-10-12 19:10:28 +00002075 if ((bytes_read & PAGE_CACHE_MASK) != bytes_read) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 i++; /* account for partial page */
2077
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002078 /* server copy of file can have smaller size
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 than client */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002080 /* BB do we need to verify this common case ?
2081 this case is ok - if we are at server EOF
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 we will hit it on next read */
2083
OGAWA Hirofumi05ac9d42006-11-02 22:07:08 -08002084 /* break; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 }
2086 } else {
2087 cFYI(1, ("No bytes read (%d) at offset %lld . "
2088 "Cleaning remaining pages from readahead list",
2089 bytes_read, offset));
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002090 /* BB turn off caching and do new lookup on
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 file size at server? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 break;
2093 }
2094 if (smb_read_data) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002095 if (buf_type == CIFS_SMALL_BUFFER)
Steve Frenchec637e32005-12-12 20:53:18 -08002096 cifs_small_buf_release(smb_read_data);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002097 else if (buf_type == CIFS_LARGE_BUFFER)
Steve Frenchec637e32005-12-12 20:53:18 -08002098 cifs_buf_release(smb_read_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 smb_read_data = NULL;
2100 }
2101 bytes_read = 0;
2102 }
2103
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002104 pagevec_lru_add_file(&lru_pvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106/* need to free smb_read_data buf before exit */
2107 if (smb_read_data) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002108 if (buf_type == CIFS_SMALL_BUFFER)
Steve French47c886b2006-01-18 14:20:39 -08002109 cifs_small_buf_release(smb_read_data);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002110 else if (buf_type == CIFS_LARGE_BUFFER)
Steve French47c886b2006-01-18 14:20:39 -08002111 cifs_buf_release(smb_read_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 smb_read_data = NULL;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115 FreeXid(xid);
2116 return rc;
2117}
2118
2119static int cifs_readpage_worker(struct file *file, struct page *page,
2120 loff_t *poffset)
2121{
2122 char *read_data;
2123 int rc;
2124
2125 page_cache_get(page);
2126 read_data = kmap(page);
2127 /* for reads over a certain size could initiate async read ahead */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 rc = cifs_read(file, read_data, PAGE_CACHE_SIZE, poffset);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 if (rc < 0)
2132 goto io_error;
2133 else
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002134 cFYI(1, ("Bytes read %d", rc));
2135
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -08002136 file->f_path.dentry->d_inode->i_atime =
2137 current_fs_time(file->f_path.dentry->d_inode->i_sb);
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 if (PAGE_CACHE_SIZE > rc)
2140 memset(read_data + rc, 0, PAGE_CACHE_SIZE - rc);
2141
2142 flush_dcache_page(page);
2143 SetPageUptodate(page);
2144 rc = 0;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146io_error:
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002147 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 page_cache_release(page);
2149 return rc;
2150}
2151
2152static int cifs_readpage(struct file *file, struct page *page)
2153{
2154 loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
2155 int rc = -EACCES;
2156 int xid;
2157
2158 xid = GetXid();
2159
2160 if (file->private_data == NULL) {
2161 FreeXid(xid);
2162 return -EBADF;
2163 }
2164
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002165 cFYI(1, ("readpage %p at offset %d 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 page, (int)offset, (int)offset));
2167
2168 rc = cifs_readpage_worker(file, page, &offset);
2169
2170 unlock_page(page);
2171
2172 FreeXid(xid);
2173 return rc;
2174}
2175
Steve Frencha403a0a2007-07-26 15:54:16 +00002176static int is_inode_writable(struct cifsInodeInfo *cifs_inode)
2177{
2178 struct cifsFileInfo *open_file;
2179
2180 read_lock(&GlobalSMBSeslock);
2181 list_for_each_entry(open_file, &cifs_inode->openFileList, flist) {
2182 if (open_file->closePend)
2183 continue;
2184 if (open_file->pfile &&
2185 ((open_file->pfile->f_flags & O_RDWR) ||
2186 (open_file->pfile->f_flags & O_WRONLY))) {
2187 read_unlock(&GlobalSMBSeslock);
2188 return 1;
2189 }
2190 }
2191 read_unlock(&GlobalSMBSeslock);
2192 return 0;
2193}
2194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195/* We do not want to update the file size from server for inodes
2196 open for write - to avoid races with writepage extending
2197 the file - in the future we could consider allowing
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002198 refreshing the inode only on increases in the file size
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 but this is tricky to do without racing with writebehind
2200 page caching in the current Linux kernel design */
Steve French4b18f2a2008-04-29 00:06:05 +00002201bool is_size_safe_to_change(struct cifsInodeInfo *cifsInode, __u64 end_of_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
Steve Frencha403a0a2007-07-26 15:54:16 +00002203 if (!cifsInode)
Steve French4b18f2a2008-04-29 00:06:05 +00002204 return true;
Steve French23e7dd72005-10-20 13:44:56 -07002205
Steve Frencha403a0a2007-07-26 15:54:16 +00002206 if (is_inode_writable(cifsInode)) {
2207 /* This inode is open for write at least once */
Steve Frenchc32a0b62006-01-12 14:41:28 -08002208 struct cifs_sb_info *cifs_sb;
2209
Steve Frenchc32a0b62006-01-12 14:41:28 -08002210 cifs_sb = CIFS_SB(cifsInode->vfs_inode.i_sb);
Steve Frenchad7a2922008-02-07 23:25:02 +00002211 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002212 /* since no page cache to corrupt on directio
Steve Frenchc32a0b62006-01-12 14:41:28 -08002213 we can change size safely */
Steve French4b18f2a2008-04-29 00:06:05 +00002214 return true;
Steve Frenchc32a0b62006-01-12 14:41:28 -08002215 }
2216
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002217 if (i_size_read(&cifsInode->vfs_inode) < end_of_file)
Steve French4b18f2a2008-04-29 00:06:05 +00002218 return true;
Steve French7ba52632007-02-08 18:14:13 +00002219
Steve French4b18f2a2008-04-29 00:06:05 +00002220 return false;
Steve French23e7dd72005-10-20 13:44:56 -07002221 } else
Steve French4b18f2a2008-04-29 00:06:05 +00002222 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223}
2224
Nick Piggind9414772008-09-24 11:32:59 -04002225static int cifs_write_begin(struct file *file, struct address_space *mapping,
2226 loff_t pos, unsigned len, unsigned flags,
2227 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228{
Nick Piggind9414772008-09-24 11:32:59 -04002229 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
2230 loff_t offset = pos & (PAGE_CACHE_SIZE - 1);
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002231 loff_t page_start = pos & PAGE_MASK;
2232 loff_t i_size;
2233 struct page *page;
2234 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Nick Piggind9414772008-09-24 11:32:59 -04002236 cFYI(1, ("write_begin from %lld len %d", (long long)pos, len));
2237
Nick Piggin54566b22009-01-04 12:00:53 -08002238 page = grab_cache_page_write_begin(mapping, index, flags);
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002239 if (!page) {
2240 rc = -ENOMEM;
2241 goto out;
2242 }
Nick Piggind9414772008-09-24 11:32:59 -04002243
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002244 if (PageUptodate(page))
2245 goto out;
Steve French8a236262007-03-06 00:31:00 +00002246
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002247 /*
2248 * If we write a full page it will be up to date, no need to read from
2249 * the server. If the write is short, we'll end up doing a sync write
2250 * instead.
2251 */
2252 if (len == PAGE_CACHE_SIZE)
2253 goto out;
2254
2255 /*
2256 * optimize away the read when we have an oplock, and we're not
2257 * expecting to use any of the data we'd be reading in. That
2258 * is, when the page lies beyond the EOF, or straddles the EOF
2259 * and the write will cover all of the existing data.
2260 */
2261 if (CIFS_I(mapping->host)->clientCanCacheRead) {
2262 i_size = i_size_read(mapping->host);
2263 if (page_start >= i_size ||
2264 (offset == 0 && (pos + len) >= i_size)) {
2265 zero_user_segments(page, 0, offset,
2266 offset + len,
2267 PAGE_CACHE_SIZE);
2268 /*
2269 * PageChecked means that the parts of the page
2270 * to which we're not writing are considered up
2271 * to date. Once the data is copied to the
2272 * page, it can be set uptodate.
2273 */
2274 SetPageChecked(page);
2275 goto out;
2276 }
2277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
Nick Piggind9414772008-09-24 11:32:59 -04002279 if ((file->f_flags & O_ACCMODE) != O_WRONLY) {
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002280 /*
2281 * might as well read a page, it is fast enough. If we get
2282 * an error, we don't need to return it. cifs_write_end will
2283 * do a sync write instead since PG_uptodate isn't set.
2284 */
2285 cifs_readpage_worker(file, page, &page_start);
Steve French8a236262007-03-06 00:31:00 +00002286 } else {
2287 /* we could try using another file handle if there is one -
2288 but how would we lock it to prevent close of that handle
2289 racing with this read? In any case
Nick Piggind9414772008-09-24 11:32:59 -04002290 this will be written out by write_end so is fine */
Steve French8a236262007-03-06 00:31:00 +00002291 }
Jeff Laytona98ee8c2008-11-26 19:32:33 +00002292out:
2293 *pagep = page;
2294 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295}
2296
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07002297const struct address_space_operations cifs_addr_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 .readpage = cifs_readpage,
2299 .readpages = cifs_readpages,
2300 .writepage = cifs_writepage,
Steve French37c0eb42005-10-05 14:50:29 -07002301 .writepages = cifs_writepages,
Nick Piggind9414772008-09-24 11:32:59 -04002302 .write_begin = cifs_write_begin,
2303 .write_end = cifs_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 .set_page_dirty = __set_page_dirty_nobuffers,
2305 /* .sync_page = cifs_sync_page, */
2306 /* .direct_IO = */
2307};
Dave Kleikamp273d81d2006-06-01 19:41:23 +00002308
2309/*
2310 * cifs_readpages requires the server to support a buffer large enough to
2311 * contain the header plus one complete page of data. Otherwise, we need
2312 * to leave cifs_readpages out of the address space operations.
2313 */
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07002314const struct address_space_operations cifs_addr_ops_smallbuf = {
Dave Kleikamp273d81d2006-06-01 19:41:23 +00002315 .readpage = cifs_readpage,
2316 .writepage = cifs_writepage,
2317 .writepages = cifs_writepages,
Nick Piggind9414772008-09-24 11:32:59 -04002318 .write_begin = cifs_write_begin,
2319 .write_end = cifs_write_end,
Dave Kleikamp273d81d2006-06-01 19:41:23 +00002320 .set_page_dirty = __set_page_dirty_nobuffers,
2321 /* .sync_page = cifs_sync_page, */
2322 /* .direct_IO = */
2323};