blob: b054df2dee1eac8461ad4675dedb21307d847c70 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/file.c
3 *
4 * vfs operations that deal with files
5 *
6 * Copyright (C) International Business Machines Corp., 2002,2003
7 * Author(s): Steve French (sfrench@us.ibm.com)
8 *
9 * This library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published
11 * by the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23#include <linux/fs.h>
24#include <linux/stat.h>
25#include <linux/fcntl.h>
26#include <linux/pagemap.h>
27#include <linux/pagevec.h>
28#include <linux/smp_lock.h>
29#include <asm/div64.h>
30#include "cifsfs.h"
31#include "cifspdu.h"
32#include "cifsglob.h"
33#include "cifsproto.h"
34#include "cifs_unicode.h"
35#include "cifs_debug.h"
36#include "cifs_fs_sb.h"
37
38static inline struct cifsFileInfo *cifs_init_private(
39 struct cifsFileInfo *private_data, struct inode *inode,
40 struct file *file, __u16 netfid)
41{
42 memset(private_data, 0, sizeof(struct cifsFileInfo));
43 private_data->netfid = netfid;
44 private_data->pid = current->tgid;
45 init_MUTEX(&private_data->fh_sem);
46 private_data->pfile = file; /* needed for writepage */
47 private_data->pInode = inode;
48 private_data->invalidHandle = FALSE;
49 private_data->closePend = FALSE;
50
51 return private_data;
52}
53
54static inline int cifs_convert_flags(unsigned int flags)
55{
56 if ((flags & O_ACCMODE) == O_RDONLY)
57 return GENERIC_READ;
58 else if ((flags & O_ACCMODE) == O_WRONLY)
59 return GENERIC_WRITE;
60 else if ((flags & O_ACCMODE) == O_RDWR) {
61 /* GENERIC_ALL is too much permission to request
62 can cause unnecessary access denied on create */
63 /* return GENERIC_ALL; */
64 return (GENERIC_READ | GENERIC_WRITE);
65 }
66
67 return 0x20197;
68}
69
70static inline int cifs_get_disposition(unsigned int flags)
71{
72 if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
73 return FILE_CREATE;
74 else if ((flags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC))
75 return FILE_OVERWRITE_IF;
76 else if ((flags & O_CREAT) == O_CREAT)
77 return FILE_OPEN_IF;
78 else
79 return FILE_OPEN;
80}
81
82/* all arguments to this function must be checked for validity in caller */
83static inline int cifs_open_inode_helper(struct inode *inode, struct file *file,
84 struct cifsInodeInfo *pCifsInode, struct cifsFileInfo *pCifsFile,
85 struct cifsTconInfo *pTcon, int *oplock, FILE_ALL_INFO *buf,
86 char *full_path, int xid)
87{
88 struct timespec temp;
89 int rc;
90
91 /* want handles we can use to read with first
92 in the list so we do not have to walk the
93 list to search for one in prepare_write */
94 if ((file->f_flags & O_ACCMODE) == O_WRONLY) {
95 list_add_tail(&pCifsFile->flist,
96 &pCifsInode->openFileList);
97 } else {
98 list_add(&pCifsFile->flist,
99 &pCifsInode->openFileList);
100 }
101 write_unlock(&GlobalSMBSeslock);
102 write_unlock(&file->f_owner.lock);
103 if (pCifsInode->clientCanCacheRead) {
104 /* we have the inode open somewhere else
105 no need to discard cache data */
106 goto client_can_cache;
107 }
108
109 /* BB need same check in cifs_create too? */
110 /* if not oplocked, invalidate inode pages if mtime or file
111 size changed */
112 temp = cifs_NTtimeToUnix(le64_to_cpu(buf->LastWriteTime));
113 if (timespec_equal(&file->f_dentry->d_inode->i_mtime, &temp) &&
114 (file->f_dentry->d_inode->i_size ==
115 (loff_t)le64_to_cpu(buf->EndOfFile))) {
116 cFYI(1, ("inode unchanged on server"));
117 } else {
118 if (file->f_dentry->d_inode->i_mapping) {
119 /* BB no need to lock inode until after invalidate
120 since namei code should already have it locked? */
121 filemap_fdatawrite(file->f_dentry->d_inode->i_mapping);
122 filemap_fdatawait(file->f_dentry->d_inode->i_mapping);
123 }
124 cFYI(1, ("invalidating remote inode since open detected it "
125 "changed"));
126 invalidate_remote_inode(file->f_dentry->d_inode);
127 }
128
129client_can_cache:
130 if (pTcon->ses->capabilities & CAP_UNIX)
131 rc = cifs_get_inode_info_unix(&file->f_dentry->d_inode,
132 full_path, inode->i_sb, xid);
133 else
134 rc = cifs_get_inode_info(&file->f_dentry->d_inode,
135 full_path, buf, inode->i_sb, xid);
136
137 if ((*oplock & 0xF) == OPLOCK_EXCLUSIVE) {
138 pCifsInode->clientCanCacheAll = TRUE;
139 pCifsInode->clientCanCacheRead = TRUE;
140 cFYI(1, ("Exclusive Oplock granted on inode %p",
141 file->f_dentry->d_inode));
142 } else if ((*oplock & 0xF) == OPLOCK_READ)
143 pCifsInode->clientCanCacheRead = TRUE;
144
145 return rc;
146}
147
148int cifs_open(struct inode *inode, struct file *file)
149{
150 int rc = -EACCES;
151 int xid, oplock;
152 struct cifs_sb_info *cifs_sb;
153 struct cifsTconInfo *pTcon;
154 struct cifsFileInfo *pCifsFile;
155 struct cifsInodeInfo *pCifsInode;
156 struct list_head *tmp;
157 char *full_path = NULL;
158 int desiredAccess;
159 int disposition;
160 __u16 netfid;
161 FILE_ALL_INFO *buf = NULL;
162
163 xid = GetXid();
164
165 cifs_sb = CIFS_SB(inode->i_sb);
166 pTcon = cifs_sb->tcon;
167
168 if (file->f_flags & O_CREAT) {
169 /* search inode for this file and fill in file->private_data */
170 pCifsInode = CIFS_I(file->f_dentry->d_inode);
171 read_lock(&GlobalSMBSeslock);
172 list_for_each(tmp, &pCifsInode->openFileList) {
173 pCifsFile = list_entry(tmp, struct cifsFileInfo,
174 flist);
175 if ((pCifsFile->pfile == NULL) &&
176 (pCifsFile->pid == current->tgid)) {
177 /* mode set in cifs_create */
178
179 /* needed for writepage */
180 pCifsFile->pfile = file;
181
182 file->private_data = pCifsFile;
183 break;
184 }
185 }
186 read_unlock(&GlobalSMBSeslock);
187 if (file->private_data != NULL) {
188 rc = 0;
189 FreeXid(xid);
190 return rc;
191 } else {
192 if (file->f_flags & O_EXCL)
193 cERROR(1, ("could not find file instance for "
194 "new file %p ", file));
195 }
196 }
197
198 down(&inode->i_sb->s_vfs_rename_sem);
Jeremy Allisonac670552005-06-22 17:26:35 -0700199 full_path = build_path_from_dentry(file->f_dentry, cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 up(&inode->i_sb->s_vfs_rename_sem);
201 if (full_path == NULL) {
202 FreeXid(xid);
203 return -ENOMEM;
204 }
205
206 cFYI(1, (" inode = 0x%p file flags are 0x%x for %s",
207 inode, file->f_flags, full_path));
208 desiredAccess = cifs_convert_flags(file->f_flags);
209
210/*********************************************************************
211 * open flag mapping table:
212 *
213 * POSIX Flag CIFS Disposition
214 * ---------- ----------------
215 * O_CREAT FILE_OPEN_IF
216 * O_CREAT | O_EXCL FILE_CREATE
217 * O_CREAT | O_TRUNC FILE_OVERWRITE_IF
218 * O_TRUNC FILE_OVERWRITE
219 * none of the above FILE_OPEN
220 *
221 * Note that there is not a direct match between disposition
222 * FILE_SUPERSEDE (ie create whether or not file exists although
223 * O_CREAT | O_TRUNC is similar but truncates the existing
224 * file rather than creating a new file as FILE_SUPERSEDE does
225 * (which uses the attributes / metadata passed in on open call)
226 *?
227 *? O_SYNC is a reasonable match to CIFS writethrough flag
228 *? and the read write flags match reasonably. O_LARGEFILE
229 *? is irrelevant because largefile support is always used
230 *? by this client. Flags O_APPEND, O_DIRECT, O_DIRECTORY,
231 * O_FASYNC, O_NOFOLLOW, O_NONBLOCK need further investigation
232 *********************************************************************/
233
234 disposition = cifs_get_disposition(file->f_flags);
235
236 if (oplockEnabled)
237 oplock = REQ_OPLOCK;
238 else
239 oplock = FALSE;
240
241 /* BB pass O_SYNC flag through on file attributes .. BB */
242
243 /* Also refresh inode by passing in file_info buf returned by SMBOpen
244 and calling get_inode_info with returned buf (at least helps
245 non-Unix server case) */
246
247 /* BB we can not do this if this is the second open of a file
248 and the first handle has writebehind data, we might be
249 able to simply do a filemap_fdatawrite/filemap_fdatawait first */
250 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
251 if (!buf) {
252 rc = -ENOMEM;
253 goto out;
254 }
255 rc = CIFSSMBOpen(xid, pTcon, full_path, disposition, desiredAccess,
256 CREATE_NOT_DIR, &netfid, &oplock, buf,
Steve French737b7582005-04-28 22:41:06 -0700257 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags
258 & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (rc) {
260 cFYI(1, ("cifs_open returned 0x%x ", rc));
261 goto out;
262 }
263 file->private_data =
264 kmalloc(sizeof(struct cifsFileInfo), GFP_KERNEL);
265 if (file->private_data == NULL) {
266 rc = -ENOMEM;
267 goto out;
268 }
269 pCifsFile = cifs_init_private(file->private_data, inode, file, netfid);
270 write_lock(&file->f_owner.lock);
271 write_lock(&GlobalSMBSeslock);
272 list_add(&pCifsFile->tlist, &pTcon->openFileList);
273
274 pCifsInode = CIFS_I(file->f_dentry->d_inode);
275 if (pCifsInode) {
276 rc = cifs_open_inode_helper(inode, file, pCifsInode,
277 pCifsFile, pTcon,
278 &oplock, buf, full_path, xid);
279 } else {
280 write_unlock(&GlobalSMBSeslock);
281 write_unlock(&file->f_owner.lock);
282 }
283
284 if (oplock & CIFS_CREATE_ACTION) {
285 /* time to set mode which we can not set earlier due to
286 problems creating new read-only files */
287 if (cifs_sb->tcon->ses->capabilities & CAP_UNIX) {
288 CIFSSMBUnixSetPerms(xid, pTcon, full_path,
289 inode->i_mode,
290 (__u64)-1, (__u64)-1, 0 /* dev */,
Steve French737b7582005-04-28 22:41:06 -0700291 cifs_sb->local_nls,
292 cifs_sb->mnt_cifs_flags &
293 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 } else {
295 /* BB implement via Windows security descriptors eg
296 CIFSSMBWinSetPerms(xid, pTcon, full_path, mode,
297 -1, -1, local_nls);
298 in the meantime could set r/o dos attribute when
299 perms are eg: mode & 0222 == 0 */
300 }
301 }
302
303out:
304 kfree(buf);
305 kfree(full_path);
306 FreeXid(xid);
307 return rc;
308}
309
310/* Try to reaquire byte range locks that were released when session */
311/* to server was lost */
312static int cifs_relock_file(struct cifsFileInfo *cifsFile)
313{
314 int rc = 0;
315
316/* BB list all locks open on this file and relock */
317
318 return rc;
319}
320
321static int cifs_reopen_file(struct inode *inode, struct file *file,
322 int can_flush)
323{
324 int rc = -EACCES;
325 int xid, oplock;
326 struct cifs_sb_info *cifs_sb;
327 struct cifsTconInfo *pTcon;
328 struct cifsFileInfo *pCifsFile;
329 struct cifsInodeInfo *pCifsInode;
330 char *full_path = NULL;
331 int desiredAccess;
332 int disposition = FILE_OPEN;
333 __u16 netfid;
334
335 if (inode == NULL)
336 return -EBADF;
337 if (file->private_data) {
338 pCifsFile = (struct cifsFileInfo *)file->private_data;
339 } else
340 return -EBADF;
341
342 xid = GetXid();
343 down(&pCifsFile->fh_sem);
344 if (pCifsFile->invalidHandle == FALSE) {
345 up(&pCifsFile->fh_sem);
346 FreeXid(xid);
347 return 0;
348 }
349
350 if (file->f_dentry == NULL) {
351 up(&pCifsFile->fh_sem);
352 cFYI(1, ("failed file reopen, no valid name if dentry freed"));
353 FreeXid(xid);
354 return -EBADF;
355 }
356 cifs_sb = CIFS_SB(inode->i_sb);
357 pTcon = cifs_sb->tcon;
358/* can not grab rename sem here because various ops, including
359 those that already have the rename sem can end up causing writepage
360 to get called and if the server was down that means we end up here,
361 and we can never tell if the caller already has the rename_sem */
Jeremy Allisonac670552005-06-22 17:26:35 -0700362 full_path = build_path_from_dentry(file->f_dentry, cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (full_path == NULL) {
364 up(&pCifsFile->fh_sem);
365 FreeXid(xid);
366 return -ENOMEM;
367 }
368
369 cFYI(1, (" inode = 0x%p file flags are 0x%x for %s",
370 inode, file->f_flags,full_path));
371 desiredAccess = cifs_convert_flags(file->f_flags);
372
373 if (oplockEnabled)
374 oplock = REQ_OPLOCK;
375 else
376 oplock = FALSE;
377
378 /* Can not refresh inode by passing in file_info buf to be returned
379 by SMBOpen and then calling get_inode_info with returned buf
380 since file might have write behind data that needs to be flushed
381 and server version of file size can be stale. If we knew for sure
382 that inode was not dirty locally we could do this */
383
384/* buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
385 if (buf == 0) {
386 up(&pCifsFile->fh_sem);
387 kfree(full_path);
388 FreeXid(xid);
389 return -ENOMEM;
390 } */
391 rc = CIFSSMBOpen(xid, pTcon, full_path, disposition, desiredAccess,
392 CREATE_NOT_DIR, &netfid, &oplock, NULL,
Steve French737b7582005-04-28 22:41:06 -0700393 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
394 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (rc) {
396 up(&pCifsFile->fh_sem);
397 cFYI(1, ("cifs_open returned 0x%x ", rc));
398 cFYI(1, ("oplock: %d ", oplock));
399 } else {
400 pCifsFile->netfid = netfid;
401 pCifsFile->invalidHandle = FALSE;
402 up(&pCifsFile->fh_sem);
403 pCifsInode = CIFS_I(inode);
404 if (pCifsInode) {
405 if (can_flush) {
406 filemap_fdatawrite(inode->i_mapping);
407 filemap_fdatawait(inode->i_mapping);
408 /* temporarily disable caching while we
409 go to server to get inode info */
410 pCifsInode->clientCanCacheAll = FALSE;
411 pCifsInode->clientCanCacheRead = FALSE;
412 if (pTcon->ses->capabilities & CAP_UNIX)
413 rc = cifs_get_inode_info_unix(&inode,
414 full_path, inode->i_sb, xid);
415 else
416 rc = cifs_get_inode_info(&inode,
417 full_path, NULL, inode->i_sb,
418 xid);
419 } /* else we are writing out data to server already
420 and could deadlock if we tried to flush data, and
421 since we do not know if we have data that would
422 invalidate the current end of file on the server
423 we can not go to the server to get the new inod
424 info */
425 if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
426 pCifsInode->clientCanCacheAll = TRUE;
427 pCifsInode->clientCanCacheRead = TRUE;
428 cFYI(1, ("Exclusive Oplock granted on inode %p",
429 file->f_dentry->d_inode));
430 } else if ((oplock & 0xF) == OPLOCK_READ) {
431 pCifsInode->clientCanCacheRead = TRUE;
432 pCifsInode->clientCanCacheAll = FALSE;
433 } else {
434 pCifsInode->clientCanCacheRead = FALSE;
435 pCifsInode->clientCanCacheAll = FALSE;
436 }
437 cifs_relock_file(pCifsFile);
438 }
439 }
440
441 kfree(full_path);
442 FreeXid(xid);
443 return rc;
444}
445
446int cifs_close(struct inode *inode, struct file *file)
447{
448 int rc = 0;
449 int xid;
450 struct cifs_sb_info *cifs_sb;
451 struct cifsTconInfo *pTcon;
452 struct cifsFileInfo *pSMBFile =
453 (struct cifsFileInfo *)file->private_data;
454
455 xid = GetXid();
456
457 cifs_sb = CIFS_SB(inode->i_sb);
458 pTcon = cifs_sb->tcon;
459 if (pSMBFile) {
460 pSMBFile->closePend = TRUE;
461 write_lock(&file->f_owner.lock);
462 if (pTcon) {
463 /* no sense reconnecting to close a file that is
464 already closed */
465 if (pTcon->tidStatus != CifsNeedReconnect) {
466 write_unlock(&file->f_owner.lock);
467 rc = CIFSSMBClose(xid, pTcon,
468 pSMBFile->netfid);
469 write_lock(&file->f_owner.lock);
470 }
471 }
Steve Frenchcbe04762005-04-28 22:41:05 -0700472 write_lock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 list_del(&pSMBFile->flist);
474 list_del(&pSMBFile->tlist);
Steve Frenchcbe04762005-04-28 22:41:05 -0700475 write_unlock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 write_unlock(&file->f_owner.lock);
477 kfree(pSMBFile->search_resume_name);
478 kfree(file->private_data);
479 file->private_data = NULL;
480 } else
481 rc = -EBADF;
482
483 if (list_empty(&(CIFS_I(inode)->openFileList))) {
484 cFYI(1, ("closing last open instance for inode %p", inode));
485 /* if the file is not open we do not know if we can cache info
486 on this inode, much less write behind and read ahead */
487 CIFS_I(inode)->clientCanCacheRead = FALSE;
488 CIFS_I(inode)->clientCanCacheAll = FALSE;
489 }
490 if ((rc ==0) && CIFS_I(inode)->write_behind_rc)
491 rc = CIFS_I(inode)->write_behind_rc;
492 FreeXid(xid);
493 return rc;
494}
495
496int cifs_closedir(struct inode *inode, struct file *file)
497{
498 int rc = 0;
499 int xid;
500 struct cifsFileInfo *pCFileStruct =
501 (struct cifsFileInfo *)file->private_data;
502 char *ptmp;
503
504 cFYI(1, ("Closedir inode = 0x%p with ", inode));
505
506 xid = GetXid();
507
508 if (pCFileStruct) {
509 struct cifsTconInfo *pTcon;
510 struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_dentry->d_sb);
511
512 pTcon = cifs_sb->tcon;
513
514 cFYI(1, ("Freeing private data in close dir"));
Steve French31ca3bc2005-04-28 22:41:11 -0700515 if ((pCFileStruct->srch_inf.endOfSearch == FALSE) &&
516 (pCFileStruct->invalidHandle == FALSE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 pCFileStruct->invalidHandle = TRUE;
518 rc = CIFSFindClose(xid, pTcon, pCFileStruct->netfid);
519 cFYI(1, ("Closing uncompleted readdir with rc %d",
520 rc));
521 /* not much we can do if it fails anyway, ignore rc */
522 rc = 0;
523 }
524 ptmp = pCFileStruct->srch_inf.ntwrk_buf_start;
525 if (ptmp) {
526 /* BB removeme BB */ cFYI(1, ("freeing smb buf in srch struct in closedir"));
527 pCFileStruct->srch_inf.ntwrk_buf_start = NULL;
528 cifs_buf_release(ptmp);
529 }
530 ptmp = pCFileStruct->search_resume_name;
531 if (ptmp) {
532 /* BB removeme BB */ cFYI(1, ("freeing resume name in closedir"));
533 pCFileStruct->search_resume_name = NULL;
534 kfree(ptmp);
535 }
536 kfree(file->private_data);
537 file->private_data = NULL;
538 }
539 /* BB can we lock the filestruct while this is going on? */
540 FreeXid(xid);
541 return rc;
542}
543
544int cifs_lock(struct file *file, int cmd, struct file_lock *pfLock)
545{
546 int rc, xid;
547 __u32 lockType = LOCKING_ANDX_LARGE_FILES;
548 __u32 numLock = 0;
549 __u32 numUnlock = 0;
550 __u64 length;
551 int wait_flag = FALSE;
552 struct cifs_sb_info *cifs_sb;
553 struct cifsTconInfo *pTcon;
554
555 length = 1 + pfLock->fl_end - pfLock->fl_start;
556 rc = -EACCES;
557 xid = GetXid();
558
559 cFYI(1, ("Lock parm: 0x%x flockflags: "
560 "0x%x flocktype: 0x%x start: %lld end: %lld",
561 cmd, pfLock->fl_flags, pfLock->fl_type, pfLock->fl_start,
562 pfLock->fl_end));
563
564 if (pfLock->fl_flags & FL_POSIX)
565 cFYI(1, ("Posix "));
566 if (pfLock->fl_flags & FL_FLOCK)
567 cFYI(1, ("Flock "));
568 if (pfLock->fl_flags & FL_SLEEP) {
569 cFYI(1, ("Blocking lock "));
570 wait_flag = TRUE;
571 }
572 if (pfLock->fl_flags & FL_ACCESS)
573 cFYI(1, ("Process suspended by mandatory locking - "
574 "not implemented yet "));
575 if (pfLock->fl_flags & FL_LEASE)
576 cFYI(1, ("Lease on file - not implemented yet"));
577 if (pfLock->fl_flags &
578 (~(FL_POSIX | FL_FLOCK | FL_SLEEP | FL_ACCESS | FL_LEASE)))
579 cFYI(1, ("Unknown lock flags 0x%x", pfLock->fl_flags));
580
581 if (pfLock->fl_type == F_WRLCK) {
582 cFYI(1, ("F_WRLCK "));
583 numLock = 1;
584 } else if (pfLock->fl_type == F_UNLCK) {
585 cFYI(1, ("F_UNLCK "));
586 numUnlock = 1;
587 } else if (pfLock->fl_type == F_RDLCK) {
588 cFYI(1, ("F_RDLCK "));
589 lockType |= LOCKING_ANDX_SHARED_LOCK;
590 numLock = 1;
591 } else if (pfLock->fl_type == F_EXLCK) {
592 cFYI(1, ("F_EXLCK "));
593 numLock = 1;
594 } else if (pfLock->fl_type == F_SHLCK) {
595 cFYI(1, ("F_SHLCK "));
596 lockType |= LOCKING_ANDX_SHARED_LOCK;
597 numLock = 1;
598 } else
599 cFYI(1, ("Unknown type of lock "));
600
601 cifs_sb = CIFS_SB(file->f_dentry->d_sb);
602 pTcon = cifs_sb->tcon;
603
604 if (file->private_data == NULL) {
605 FreeXid(xid);
606 return -EBADF;
607 }
608
609 if (IS_GETLK(cmd)) {
610 rc = CIFSSMBLock(xid, pTcon,
611 ((struct cifsFileInfo *)file->
612 private_data)->netfid,
613 length,
614 pfLock->fl_start, 0, 1, lockType,
615 0 /* wait flag */ );
616 if (rc == 0) {
617 rc = CIFSSMBLock(xid, pTcon,
618 ((struct cifsFileInfo *) file->
619 private_data)->netfid,
620 length,
621 pfLock->fl_start, 1 /* numUnlock */ ,
622 0 /* numLock */ , lockType,
623 0 /* wait flag */ );
624 pfLock->fl_type = F_UNLCK;
625 if (rc != 0)
626 cERROR(1, ("Error unlocking previously locked "
627 "range %d during test of lock ",
628 rc));
629 rc = 0;
630
631 } else {
632 /* if rc == ERR_SHARING_VIOLATION ? */
633 rc = 0; /* do not change lock type to unlock
634 since range in use */
635 }
636
637 FreeXid(xid);
638 return rc;
639 }
640
641 rc = CIFSSMBLock(xid, pTcon,
642 ((struct cifsFileInfo *) file->private_data)->
643 netfid, length,
644 pfLock->fl_start, numUnlock, numLock, lockType,
645 wait_flag);
646 if (rc == 0 && (pfLock->fl_flags & FL_POSIX))
647 posix_lock_file_wait(file, pfLock);
648 FreeXid(xid);
649 return rc;
650}
651
652ssize_t cifs_user_write(struct file *file, const char __user *write_data,
653 size_t write_size, loff_t *poffset)
654{
655 int rc = 0;
656 unsigned int bytes_written = 0;
657 unsigned int total_written;
658 struct cifs_sb_info *cifs_sb;
659 struct cifsTconInfo *pTcon;
660 int xid, long_op;
661 struct cifsFileInfo *open_file;
662
663 if (file->f_dentry == NULL)
664 return -EBADF;
665
666 cifs_sb = CIFS_SB(file->f_dentry->d_sb);
667 if (cifs_sb == NULL)
668 return -EBADF;
669
670 pTcon = cifs_sb->tcon;
671
672 /* cFYI(1,
673 (" write %d bytes to offset %lld of %s", write_size,
674 *poffset, file->f_dentry->d_name.name)); */
675
676 if (file->private_data == NULL)
677 return -EBADF;
678 else
679 open_file = (struct cifsFileInfo *) file->private_data;
680
681 xid = GetXid();
682 if (file->f_dentry->d_inode == NULL) {
683 FreeXid(xid);
684 return -EBADF;
685 }
686
687 if (*poffset > file->f_dentry->d_inode->i_size)
688 long_op = 2; /* writes past end of file can take a long time */
689 else
690 long_op = 1;
691
692 for (total_written = 0; write_size > total_written;
693 total_written += bytes_written) {
694 rc = -EAGAIN;
695 while (rc == -EAGAIN) {
696 if (file->private_data == NULL) {
697 /* file has been closed on us */
698 FreeXid(xid);
699 /* if we have gotten here we have written some data
700 and blocked, and the file has been freed on us while
701 we blocked so return what we managed to write */
702 return total_written;
703 }
704 if (open_file->closePend) {
705 FreeXid(xid);
706 if (total_written)
707 return total_written;
708 else
709 return -EBADF;
710 }
711 if (open_file->invalidHandle) {
712 if ((file->f_dentry == NULL) ||
713 (file->f_dentry->d_inode == NULL)) {
714 FreeXid(xid);
715 return total_written;
716 }
717 /* we could deadlock if we called
718 filemap_fdatawait from here so tell
719 reopen_file not to flush data to server
720 now */
721 rc = cifs_reopen_file(file->f_dentry->d_inode,
722 file, FALSE);
723 if (rc != 0)
724 break;
725 }
726
727 rc = CIFSSMBWrite(xid, pTcon,
728 open_file->netfid,
729 min_t(const int, cifs_sb->wsize,
730 write_size - total_written),
731 *poffset, &bytes_written,
732 NULL, write_data + total_written, long_op);
733 }
734 if (rc || (bytes_written == 0)) {
735 if (total_written)
736 break;
737 else {
738 FreeXid(xid);
739 return rc;
740 }
741 } else
742 *poffset += bytes_written;
743 long_op = FALSE; /* subsequent writes fast -
744 15 seconds is plenty */
745 }
746
747#ifdef CONFIG_CIFS_STATS
748 if (total_written > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 spin_lock(&pTcon->stat_lock);
750 pTcon->bytes_written += total_written;
751 spin_unlock(&pTcon->stat_lock);
752 }
753#endif
754
755 /* since the write may have blocked check these pointers again */
756 if (file->f_dentry) {
757 if (file->f_dentry->d_inode) {
758 struct inode *inode = file->f_dentry->d_inode;
759 inode->i_ctime = inode->i_mtime =
760 current_fs_time(inode->i_sb);
761 if (total_written > 0) {
762 if (*poffset > file->f_dentry->d_inode->i_size)
763 i_size_write(file->f_dentry->d_inode,
764 *poffset);
765 }
766 mark_inode_dirty_sync(file->f_dentry->d_inode);
767 }
768 }
769 FreeXid(xid);
770 return total_written;
771}
772
773static ssize_t cifs_write(struct file *file, const char *write_data,
774 size_t write_size, loff_t *poffset)
775{
776 int rc = 0;
777 unsigned int bytes_written = 0;
778 unsigned int total_written;
779 struct cifs_sb_info *cifs_sb;
780 struct cifsTconInfo *pTcon;
781 int xid, long_op;
782 struct cifsFileInfo *open_file;
783
784 if (file->f_dentry == NULL)
785 return -EBADF;
786
787 cifs_sb = CIFS_SB(file->f_dentry->d_sb);
788 if (cifs_sb == NULL)
789 return -EBADF;
790
791 pTcon = cifs_sb->tcon;
792
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500793 cFYI(1,(" write %d bytes to offset %lld of %s", write_size,
794 *poffset, file->f_dentry->d_name.name)); /* BB removeme BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 if (file->private_data == NULL)
797 return -EBADF;
798 else
799 open_file = (struct cifsFileInfo *)file->private_data;
800
801 xid = GetXid();
802 if (file->f_dentry->d_inode == NULL) {
803 FreeXid(xid);
804 return -EBADF;
805 }
806
807 if (*poffset > file->f_dentry->d_inode->i_size)
808 long_op = 2; /* writes past end of file can take a long time */
809 else
810 long_op = 1;
811
812 for (total_written = 0; write_size > total_written;
813 total_written += bytes_written) {
814 rc = -EAGAIN;
815 while (rc == -EAGAIN) {
816 if (file->private_data == NULL) {
817 /* file has been closed on us */
818 FreeXid(xid);
819 /* if we have gotten here we have written some data
820 and blocked, and the file has been freed on us
821 while we blocked so return what we managed to
822 write */
823 return total_written;
824 }
825 if (open_file->closePend) {
826 FreeXid(xid);
827 if (total_written)
828 return total_written;
829 else
830 return -EBADF;
831 }
832 if (open_file->invalidHandle) {
833 if ((file->f_dentry == NULL) ||
834 (file->f_dentry->d_inode == NULL)) {
835 FreeXid(xid);
836 return total_written;
837 }
838 /* we could deadlock if we called
839 filemap_fdatawait from here so tell
840 reopen_file not to flush data to
841 server now */
842 rc = cifs_reopen_file(file->f_dentry->d_inode,
843 file, FALSE);
844 if (rc != 0)
845 break;
846 }
Steve French0c0ff092005-06-23 19:31:17 -0500847#ifdef CONFIG_CIFS_EXPERIMENTAL
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500848 /* BB FIXME We can not sign across two buffers yet */
Steve French0c0ff092005-06-23 19:31:17 -0500849 if((experimEnabled) && ((pTcon->ses->server->secMode &
850 (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) == 0)) {
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500851 rc = CIFSSMBWrite2(xid, pTcon,
852 open_file->netfid,
853 min_t(const int, cifs_sb->wsize,
854 write_size - total_written),
855 *poffset, &bytes_written,
856 write_data + total_written,
857 long_op);
858 } else
859 /* BB FIXME fixup indentation of line below */
860#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 rc = CIFSSMBWrite(xid, pTcon,
862 open_file->netfid,
863 min_t(const int, cifs_sb->wsize,
864 write_size - total_written),
865 *poffset, &bytes_written,
866 write_data + total_written, NULL, long_op);
867 }
868 if (rc || (bytes_written == 0)) {
869 if (total_written)
870 break;
871 else {
872 FreeXid(xid);
873 return rc;
874 }
875 } else
876 *poffset += bytes_written;
877 long_op = FALSE; /* subsequent writes fast -
878 15 seconds is plenty */
879 }
880
881#ifdef CONFIG_CIFS_STATS
882 if (total_written > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 spin_lock(&pTcon->stat_lock);
884 pTcon->bytes_written += total_written;
885 spin_unlock(&pTcon->stat_lock);
886 }
887#endif
888
889 /* since the write may have blocked check these pointers again */
890 if (file->f_dentry) {
891 if (file->f_dentry->d_inode) {
892 file->f_dentry->d_inode->i_ctime =
893 file->f_dentry->d_inode->i_mtime = CURRENT_TIME;
894 if (total_written > 0) {
895 if (*poffset > file->f_dentry->d_inode->i_size)
896 i_size_write(file->f_dentry->d_inode,
897 *poffset);
898 }
899 mark_inode_dirty_sync(file->f_dentry->d_inode);
900 }
901 }
902 FreeXid(xid);
903 return total_written;
904}
905
906static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to)
907{
908 struct address_space *mapping = page->mapping;
909 loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
910 char *write_data;
911 int rc = -EFAULT;
912 int bytes_written = 0;
913 struct cifs_sb_info *cifs_sb;
914 struct cifsTconInfo *pTcon;
915 struct inode *inode;
916 struct cifsInodeInfo *cifsInode;
917 struct cifsFileInfo *open_file = NULL;
918 struct list_head *tmp;
919 struct list_head *tmp1;
920
921 if (!mapping || !mapping->host)
922 return -EFAULT;
923
924 inode = page->mapping->host;
925 cifs_sb = CIFS_SB(inode->i_sb);
926 pTcon = cifs_sb->tcon;
927
928 offset += (loff_t)from;
929 write_data = kmap(page);
930 write_data += from;
931
932 if ((to > PAGE_CACHE_SIZE) || (from > to)) {
933 kunmap(page);
934 return -EIO;
935 }
936
937 /* racing with truncate? */
938 if (offset > mapping->host->i_size) {
939 kunmap(page);
940 return 0; /* don't care */
941 }
942
943 /* check to make sure that we are not extending the file */
944 if (mapping->host->i_size - offset < (loff_t)to)
945 to = (unsigned)(mapping->host->i_size - offset);
946
947 cifsInode = CIFS_I(mapping->host);
948 read_lock(&GlobalSMBSeslock);
949 /* BB we should start at the end */
950 list_for_each_safe(tmp, tmp1, &cifsInode->openFileList) {
951 open_file = list_entry(tmp, struct cifsFileInfo, flist);
952 if (open_file->closePend)
953 continue;
954 /* We check if file is open for writing first */
955 if ((open_file->pfile) &&
956 ((open_file->pfile->f_flags & O_RDWR) ||
957 (open_file->pfile->f_flags & O_WRONLY))) {
958 read_unlock(&GlobalSMBSeslock);
959 bytes_written = cifs_write(open_file->pfile,
960 write_data, to-from,
961 &offset);
962 read_lock(&GlobalSMBSeslock);
963 /* Does mm or vfs already set times? */
964 inode->i_atime =
965 inode->i_mtime = current_fs_time(inode->i_sb);
966 if ((bytes_written > 0) && (offset)) {
967 rc = 0;
968 } else if (bytes_written < 0) {
969 if (rc == -EBADF) {
970 /* have seen a case in which kernel seemed to
971 have closed/freed a file even with writes
972 active so we might as well see if there are
973 other file structs to try for the same
974 inode before giving up */
975 continue;
976 } else
977 rc = bytes_written;
978 }
979 break; /* now that we found a valid file handle and
980 tried to write to it we are done, no sense
981 continuing to loop looking for another */
982 }
983 if (tmp->next == NULL) {
984 cFYI(1, ("File instance %p removed", tmp));
985 break;
986 }
987 }
988 read_unlock(&GlobalSMBSeslock);
989 if (open_file == NULL) {
990 cFYI(1, ("No writeable filehandles for inode"));
991 rc = -EIO;
992 }
993
994 kunmap(page);
995 return rc;
996}
997
998#if 0
999static int cifs_writepages(struct address_space *mapping,
1000 struct writeback_control *wbc)
1001{
1002 int rc = -EFAULT;
1003 int xid;
1004
1005 xid = GetXid();
1006
1007 /* Find contiguous pages then iterate through repeating
1008 call 16K write then Setpageuptodate or if LARGE_WRITE_X
1009 support then send larger writes via kevec so as to eliminate
1010 a memcpy */
1011 FreeXid(xid);
1012 return rc;
1013}
1014#endif
1015
1016static int cifs_writepage(struct page* page, struct writeback_control *wbc)
1017{
1018 int rc = -EFAULT;
1019 int xid;
1020
1021 xid = GetXid();
1022/* BB add check for wbc flags */
1023 page_cache_get(page);
1024 if (!PageUptodate(page)) {
1025 cFYI(1, ("ppw - page not up to date"));
1026 }
1027
1028 rc = cifs_partialpagewrite(page, 0, PAGE_CACHE_SIZE);
1029 SetPageUptodate(page); /* BB add check for error and Clearuptodate? */
1030 unlock_page(page);
1031 page_cache_release(page);
1032 FreeXid(xid);
1033 return rc;
1034}
1035
1036static int cifs_commit_write(struct file *file, struct page *page,
1037 unsigned offset, unsigned to)
1038{
1039 int xid;
1040 int rc = 0;
1041 struct inode *inode = page->mapping->host;
1042 loff_t position = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
1043 char *page_data;
1044
1045 xid = GetXid();
1046 cFYI(1, ("commit write for page %p up to position %lld for %d",
1047 page, position, to));
1048 if (position > inode->i_size) {
1049 i_size_write(inode, position);
1050 /* if (file->private_data == NULL) {
1051 rc = -EBADF;
1052 } else {
1053 open_file = (struct cifsFileInfo *)file->private_data;
1054 cifs_sb = CIFS_SB(inode->i_sb);
1055 rc = -EAGAIN;
1056 while (rc == -EAGAIN) {
1057 if ((open_file->invalidHandle) &&
1058 (!open_file->closePend)) {
1059 rc = cifs_reopen_file(
1060 file->f_dentry->d_inode, file);
1061 if (rc != 0)
1062 break;
1063 }
1064 if (!open_file->closePend) {
1065 rc = CIFSSMBSetFileSize(xid,
1066 cifs_sb->tcon, position,
1067 open_file->netfid,
1068 open_file->pid, FALSE);
1069 } else {
1070 rc = -EBADF;
1071 break;
1072 }
1073 }
1074 cFYI(1, (" SetEOF (commit write) rc = %d", rc));
1075 } */
1076 }
1077 if (!PageUptodate(page)) {
1078 position = ((loff_t)page->index << PAGE_CACHE_SHIFT) + offset;
1079 /* can not rely on (or let) writepage write this data */
1080 if (to < offset) {
1081 cFYI(1, ("Illegal offsets, can not copy from %d to %d",
1082 offset, to));
1083 FreeXid(xid);
1084 return rc;
1085 }
1086 /* this is probably better than directly calling
1087 partialpage_write since in this function the file handle is
1088 known which we might as well leverage */
1089 /* BB check if anything else missing out of ppw
1090 such as updating last write time */
1091 page_data = kmap(page);
1092 rc = cifs_write(file, page_data + offset, to-offset,
1093 &position);
1094 if (rc > 0)
1095 rc = 0;
1096 /* else if (rc < 0) should we set writebehind rc? */
1097 kunmap(page);
1098 } else {
1099 set_page_dirty(page);
1100 }
1101
1102 FreeXid(xid);
1103 return rc;
1104}
1105
1106int cifs_fsync(struct file *file, struct dentry *dentry, int datasync)
1107{
1108 int xid;
1109 int rc = 0;
1110 struct inode *inode = file->f_dentry->d_inode;
1111
1112 xid = GetXid();
1113
1114 cFYI(1, ("Sync file - name: %s datasync: 0x%x ",
1115 dentry->d_name.name, datasync));
1116
1117 rc = filemap_fdatawrite(inode->i_mapping);
1118 if (rc == 0)
1119 CIFS_I(inode)->write_behind_rc = 0;
1120 FreeXid(xid);
1121 return rc;
1122}
1123
1124/* static int cifs_sync_page(struct page *page)
1125{
1126 struct address_space *mapping;
1127 struct inode *inode;
1128 unsigned long index = page->index;
1129 unsigned int rpages = 0;
1130 int rc = 0;
1131
1132 cFYI(1, ("sync page %p",page));
1133 mapping = page->mapping;
1134 if (!mapping)
1135 return 0;
1136 inode = mapping->host;
1137 if (!inode)
1138 return 0; */
1139
1140/* fill in rpages then
1141 result = cifs_pagein_inode(inode, index, rpages); */ /* BB finish */
1142
1143/* cFYI(1, ("rpages is %d for sync page of Index %ld ", rpages, index));
1144
1145 if (rc < 0)
1146 return rc;
1147 return 0;
1148} */
1149
1150/*
1151 * As file closes, flush all cached write data for this inode checking
1152 * for write behind errors.
1153 */
1154int cifs_flush(struct file *file)
1155{
1156 struct inode * inode = file->f_dentry->d_inode;
1157 int rc = 0;
1158
1159 /* Rather than do the steps manually:
1160 lock the inode for writing
1161 loop through pages looking for write behind data (dirty pages)
1162 coalesce into contiguous 16K (or smaller) chunks to write to server
1163 send to server (prefer in parallel)
1164 deal with writebehind errors
1165 unlock inode for writing
1166 filemapfdatawrite appears easier for the time being */
1167
1168 rc = filemap_fdatawrite(inode->i_mapping);
1169 if (!rc) /* reset wb rc if we were able to write out dirty pages */
1170 CIFS_I(inode)->write_behind_rc = 0;
1171
1172 cFYI(1, ("Flush inode %p file %p rc %d",inode,file,rc));
1173
1174 return rc;
1175}
1176
1177ssize_t cifs_user_read(struct file *file, char __user *read_data,
1178 size_t read_size, loff_t *poffset)
1179{
1180 int rc = -EACCES;
1181 unsigned int bytes_read = 0;
1182 unsigned int total_read = 0;
1183 unsigned int current_read_size;
1184 struct cifs_sb_info *cifs_sb;
1185 struct cifsTconInfo *pTcon;
1186 int xid;
1187 struct cifsFileInfo *open_file;
1188 char *smb_read_data;
1189 char __user *current_offset;
1190 struct smb_com_read_rsp *pSMBr;
1191
1192 xid = GetXid();
1193 cifs_sb = CIFS_SB(file->f_dentry->d_sb);
1194 pTcon = cifs_sb->tcon;
1195
1196 if (file->private_data == NULL) {
1197 FreeXid(xid);
1198 return -EBADF;
1199 }
1200 open_file = (struct cifsFileInfo *)file->private_data;
1201
1202 if ((file->f_flags & O_ACCMODE) == O_WRONLY) {
1203 cFYI(1, ("attempting read on write only file instance"));
1204 }
1205 for (total_read = 0, current_offset = read_data;
1206 read_size > total_read;
1207 total_read += bytes_read, current_offset += bytes_read) {
1208 current_read_size = min_t(const int, read_size - total_read,
1209 cifs_sb->rsize);
1210 rc = -EAGAIN;
1211 smb_read_data = NULL;
1212 while (rc == -EAGAIN) {
1213 if ((open_file->invalidHandle) &&
1214 (!open_file->closePend)) {
1215 rc = cifs_reopen_file(file->f_dentry->d_inode,
1216 file, TRUE);
1217 if (rc != 0)
1218 break;
1219 }
1220
1221 rc = CIFSSMBRead(xid, pTcon,
1222 open_file->netfid,
1223 current_read_size, *poffset,
1224 &bytes_read, &smb_read_data);
1225
1226 pSMBr = (struct smb_com_read_rsp *)smb_read_data;
1227 if (copy_to_user(current_offset,
1228 smb_read_data + 4 /* RFC1001 hdr */
1229 + le16_to_cpu(pSMBr->DataOffset),
1230 bytes_read)) {
1231 rc = -EFAULT;
1232 FreeXid(xid);
1233 return rc;
1234 }
1235 if (smb_read_data) {
1236 cifs_buf_release(smb_read_data);
1237 smb_read_data = NULL;
1238 }
1239 }
1240 if (rc || (bytes_read == 0)) {
1241 if (total_read) {
1242 break;
1243 } else {
1244 FreeXid(xid);
1245 return rc;
1246 }
1247 } else {
1248#ifdef CONFIG_CIFS_STATS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 spin_lock(&pTcon->stat_lock);
1250 pTcon->bytes_read += total_read;
1251 spin_unlock(&pTcon->stat_lock);
1252#endif
1253 *poffset += bytes_read;
1254 }
1255 }
1256 FreeXid(xid);
1257 return total_read;
1258}
1259
1260
1261static ssize_t cifs_read(struct file *file, char *read_data, size_t read_size,
1262 loff_t *poffset)
1263{
1264 int rc = -EACCES;
1265 unsigned int bytes_read = 0;
1266 unsigned int total_read;
1267 unsigned int current_read_size;
1268 struct cifs_sb_info *cifs_sb;
1269 struct cifsTconInfo *pTcon;
1270 int xid;
1271 char *current_offset;
1272 struct cifsFileInfo *open_file;
1273
1274 xid = GetXid();
1275 cifs_sb = CIFS_SB(file->f_dentry->d_sb);
1276 pTcon = cifs_sb->tcon;
1277
1278 if (file->private_data == NULL) {
1279 FreeXid(xid);
1280 return -EBADF;
1281 }
1282 open_file = (struct cifsFileInfo *)file->private_data;
1283
1284 if ((file->f_flags & O_ACCMODE) == O_WRONLY)
1285 cFYI(1, ("attempting read on write only file instance"));
1286
1287 for (total_read = 0, current_offset = read_data;
1288 read_size > total_read;
1289 total_read += bytes_read, current_offset += bytes_read) {
1290 current_read_size = min_t(const int, read_size - total_read,
1291 cifs_sb->rsize);
1292 rc = -EAGAIN;
1293 while (rc == -EAGAIN) {
1294 if ((open_file->invalidHandle) &&
1295 (!open_file->closePend)) {
1296 rc = cifs_reopen_file(file->f_dentry->d_inode,
1297 file, TRUE);
1298 if (rc != 0)
1299 break;
1300 }
1301
1302 rc = CIFSSMBRead(xid, pTcon,
1303 open_file->netfid,
1304 current_read_size, *poffset,
1305 &bytes_read, &current_offset);
1306 }
1307 if (rc || (bytes_read == 0)) {
1308 if (total_read) {
1309 break;
1310 } else {
1311 FreeXid(xid);
1312 return rc;
1313 }
1314 } else {
1315#ifdef CONFIG_CIFS_STATS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 spin_lock(&pTcon->stat_lock);
1317 pTcon->bytes_read += total_read;
1318 spin_unlock(&pTcon->stat_lock);
1319#endif
1320 *poffset += bytes_read;
1321 }
1322 }
1323 FreeXid(xid);
1324 return total_read;
1325}
1326
1327int cifs_file_mmap(struct file *file, struct vm_area_struct *vma)
1328{
1329 struct dentry *dentry = file->f_dentry;
1330 int rc, xid;
1331
1332 xid = GetXid();
1333 rc = cifs_revalidate(dentry);
1334 if (rc) {
1335 cFYI(1, ("Validation prior to mmap failed, error=%d", rc));
1336 FreeXid(xid);
1337 return rc;
1338 }
1339 rc = generic_file_mmap(file, vma);
1340 FreeXid(xid);
1341 return rc;
1342}
1343
1344
1345static void cifs_copy_cache_pages(struct address_space *mapping,
1346 struct list_head *pages, int bytes_read, char *data,
1347 struct pagevec *plru_pvec)
1348{
1349 struct page *page;
1350 char *target;
1351
1352 while (bytes_read > 0) {
1353 if (list_empty(pages))
1354 break;
1355
1356 page = list_entry(pages->prev, struct page, lru);
1357 list_del(&page->lru);
1358
1359 if (add_to_page_cache(page, mapping, page->index,
1360 GFP_KERNEL)) {
1361 page_cache_release(page);
1362 cFYI(1, ("Add page cache failed"));
Steve French3079ca62005-06-09 14:44:07 -07001363 data += PAGE_CACHE_SIZE;
1364 bytes_read -= PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 continue;
1366 }
1367
1368 target = kmap_atomic(page,KM_USER0);
1369
1370 if (PAGE_CACHE_SIZE > bytes_read) {
1371 memcpy(target, data, bytes_read);
1372 /* zero the tail end of this partial page */
1373 memset(target + bytes_read, 0,
1374 PAGE_CACHE_SIZE - bytes_read);
1375 bytes_read = 0;
1376 } else {
1377 memcpy(target, data, PAGE_CACHE_SIZE);
1378 bytes_read -= PAGE_CACHE_SIZE;
1379 }
1380 kunmap_atomic(target, KM_USER0);
1381
1382 flush_dcache_page(page);
1383 SetPageUptodate(page);
1384 unlock_page(page);
1385 if (!pagevec_add(plru_pvec, page))
1386 __pagevec_lru_add(plru_pvec);
1387 data += PAGE_CACHE_SIZE;
1388 }
1389 return;
1390}
1391
1392static int cifs_readpages(struct file *file, struct address_space *mapping,
1393 struct list_head *page_list, unsigned num_pages)
1394{
1395 int rc = -EACCES;
1396 int xid;
1397 loff_t offset;
1398 struct page *page;
1399 struct cifs_sb_info *cifs_sb;
1400 struct cifsTconInfo *pTcon;
1401 int bytes_read = 0;
1402 unsigned int read_size,i;
1403 char *smb_read_data = NULL;
1404 struct smb_com_read_rsp *pSMBr;
1405 struct pagevec lru_pvec;
1406 struct cifsFileInfo *open_file;
1407
1408 xid = GetXid();
1409 if (file->private_data == NULL) {
1410 FreeXid(xid);
1411 return -EBADF;
1412 }
1413 open_file = (struct cifsFileInfo *)file->private_data;
1414 cifs_sb = CIFS_SB(file->f_dentry->d_sb);
1415 pTcon = cifs_sb->tcon;
1416
1417 pagevec_init(&lru_pvec, 0);
1418
1419 for (i = 0; i < num_pages; ) {
1420 unsigned contig_pages;
1421 struct page *tmp_page;
1422 unsigned long expected_index;
1423
1424 if (list_empty(page_list))
1425 break;
1426
1427 page = list_entry(page_list->prev, struct page, lru);
1428 offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
1429
1430 /* count adjacent pages that we will read into */
1431 contig_pages = 0;
1432 expected_index =
1433 list_entry(page_list->prev, struct page, lru)->index;
1434 list_for_each_entry_reverse(tmp_page,page_list,lru) {
1435 if (tmp_page->index == expected_index) {
1436 contig_pages++;
1437 expected_index++;
1438 } else
1439 break;
1440 }
1441 if (contig_pages + i > num_pages)
1442 contig_pages = num_pages - i;
1443
1444 /* for reads over a certain size could initiate async
1445 read ahead */
1446
1447 read_size = contig_pages * PAGE_CACHE_SIZE;
1448 /* Read size needs to be in multiples of one page */
1449 read_size = min_t(const unsigned int, read_size,
1450 cifs_sb->rsize & PAGE_CACHE_MASK);
1451
1452 rc = -EAGAIN;
1453 while (rc == -EAGAIN) {
1454 if ((open_file->invalidHandle) &&
1455 (!open_file->closePend)) {
1456 rc = cifs_reopen_file(file->f_dentry->d_inode,
1457 file, TRUE);
1458 if (rc != 0)
1459 break;
1460 }
1461
1462 rc = CIFSSMBRead(xid, pTcon,
1463 open_file->netfid,
1464 read_size, offset,
1465 &bytes_read, &smb_read_data);
1466 /* BB need to check return code here */
1467 if (rc== -EAGAIN) {
1468 if (smb_read_data) {
1469 cifs_buf_release(smb_read_data);
1470 smb_read_data = NULL;
1471 }
1472 }
1473 }
1474 if ((rc < 0) || (smb_read_data == NULL)) {
1475 cFYI(1, ("Read error in readpages: %d", rc));
1476 /* clean up remaing pages off list */
1477 while (!list_empty(page_list) && (i < num_pages)) {
1478 page = list_entry(page_list->prev, struct page,
1479 lru);
1480 list_del(&page->lru);
1481 page_cache_release(page);
1482 }
1483 break;
1484 } else if (bytes_read > 0) {
1485 pSMBr = (struct smb_com_read_rsp *)smb_read_data;
1486 cifs_copy_cache_pages(mapping, page_list, bytes_read,
1487 smb_read_data + 4 /* RFC1001 hdr */ +
1488 le16_to_cpu(pSMBr->DataOffset), &lru_pvec);
1489
1490 i += bytes_read >> PAGE_CACHE_SHIFT;
1491#ifdef CONFIG_CIFS_STATS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 spin_lock(&pTcon->stat_lock);
1493 pTcon->bytes_read += bytes_read;
1494 spin_unlock(&pTcon->stat_lock);
1495#endif
1496 if ((int)(bytes_read & PAGE_CACHE_MASK) != bytes_read) {
1497 i++; /* account for partial page */
1498
1499 /* server copy of file can have smaller size
1500 than client */
1501 /* BB do we need to verify this common case ?
1502 this case is ok - if we are at server EOF
1503 we will hit it on next read */
1504
1505 /* while (!list_empty(page_list) && (i < num_pages)) {
1506 page = list_entry(page_list->prev,
1507 struct page, list);
1508 list_del(&page->list);
1509 page_cache_release(page);
1510 }
1511 break; */
1512 }
1513 } else {
1514 cFYI(1, ("No bytes read (%d) at offset %lld . "
1515 "Cleaning remaining pages from readahead list",
1516 bytes_read, offset));
1517 /* BB turn off caching and do new lookup on
1518 file size at server? */
1519 while (!list_empty(page_list) && (i < num_pages)) {
1520 page = list_entry(page_list->prev, struct page,
1521 lru);
1522 list_del(&page->lru);
1523
1524 /* BB removeme - replace with zero of page? */
1525 page_cache_release(page);
1526 }
1527 break;
1528 }
1529 if (smb_read_data) {
1530 cifs_buf_release(smb_read_data);
1531 smb_read_data = NULL;
1532 }
1533 bytes_read = 0;
1534 }
1535
1536 pagevec_lru_add(&lru_pvec);
1537
1538/* need to free smb_read_data buf before exit */
1539 if (smb_read_data) {
1540 cifs_buf_release(smb_read_data);
1541 smb_read_data = NULL;
1542 }
1543
1544 FreeXid(xid);
1545 return rc;
1546}
1547
1548static int cifs_readpage_worker(struct file *file, struct page *page,
1549 loff_t *poffset)
1550{
1551 char *read_data;
1552 int rc;
1553
1554 page_cache_get(page);
1555 read_data = kmap(page);
1556 /* for reads over a certain size could initiate async read ahead */
1557
1558 rc = cifs_read(file, read_data, PAGE_CACHE_SIZE, poffset);
1559
1560 if (rc < 0)
1561 goto io_error;
1562 else
1563 cFYI(1, ("Bytes read %d ",rc));
1564
1565 file->f_dentry->d_inode->i_atime =
1566 current_fs_time(file->f_dentry->d_inode->i_sb);
1567
1568 if (PAGE_CACHE_SIZE > rc)
1569 memset(read_data + rc, 0, PAGE_CACHE_SIZE - rc);
1570
1571 flush_dcache_page(page);
1572 SetPageUptodate(page);
1573 rc = 0;
1574
1575io_error:
1576 kunmap(page);
1577 page_cache_release(page);
1578 return rc;
1579}
1580
1581static int cifs_readpage(struct file *file, struct page *page)
1582{
1583 loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
1584 int rc = -EACCES;
1585 int xid;
1586
1587 xid = GetXid();
1588
1589 if (file->private_data == NULL) {
1590 FreeXid(xid);
1591 return -EBADF;
1592 }
1593
1594 cFYI(1, ("readpage %p at offset %d 0x%x\n",
1595 page, (int)offset, (int)offset));
1596
1597 rc = cifs_readpage_worker(file, page, &offset);
1598
1599 unlock_page(page);
1600
1601 FreeXid(xid);
1602 return rc;
1603}
1604
1605/* We do not want to update the file size from server for inodes
1606 open for write - to avoid races with writepage extending
1607 the file - in the future we could consider allowing
1608 refreshing the inode only on increases in the file size
1609 but this is tricky to do without racing with writebehind
1610 page caching in the current Linux kernel design */
1611int is_size_safe_to_change(struct cifsInodeInfo *cifsInode)
1612{
1613 struct list_head *tmp;
1614 struct list_head *tmp1;
1615 struct cifsFileInfo *open_file = NULL;
1616 int rc = TRUE;
1617
1618 if (cifsInode == NULL)
1619 return rc;
1620
1621 read_lock(&GlobalSMBSeslock);
1622 list_for_each_safe(tmp, tmp1, &cifsInode->openFileList) {
1623 open_file = list_entry(tmp, struct cifsFileInfo, flist);
1624 if (open_file == NULL)
1625 break;
1626 if (open_file->closePend)
1627 continue;
1628 /* We check if file is open for writing,
1629 BB we could supplement this with a check to see if file size
1630 changes have been flushed to server - ie inode metadata dirty */
1631 if ((open_file->pfile) &&
1632 ((open_file->pfile->f_flags & O_RDWR) ||
1633 (open_file->pfile->f_flags & O_WRONLY))) {
1634 rc = FALSE;
1635 break;
1636 }
1637 if (tmp->next == NULL) {
1638 cFYI(1, ("File instance %p removed", tmp));
1639 break;
1640 }
1641 }
1642 read_unlock(&GlobalSMBSeslock);
1643 return rc;
1644}
1645
1646
1647static int cifs_prepare_write(struct file *file, struct page *page,
1648 unsigned from, unsigned to)
1649{
1650 int rc = 0;
1651 loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
1652 cFYI(1, ("prepare write for page %p from %d to %d",page,from,to));
1653 if (!PageUptodate(page)) {
1654 /* if (to - from != PAGE_CACHE_SIZE) {
1655 void *kaddr = kmap_atomic(page, KM_USER0);
1656 memset(kaddr, 0, from);
1657 memset(kaddr + to, 0, PAGE_CACHE_SIZE - to);
1658 flush_dcache_page(page);
1659 kunmap_atomic(kaddr, KM_USER0);
1660 } */
1661 /* If we are writing a full page it will be up to date,
1662 no need to read from the server */
1663 if ((to == PAGE_CACHE_SIZE) && (from == 0))
1664 SetPageUptodate(page);
1665
1666 /* might as well read a page, it is fast enough */
1667 if ((file->f_flags & O_ACCMODE) != O_WRONLY) {
1668 rc = cifs_readpage_worker(file, page, &offset);
1669 } else {
1670 /* should we try using another file handle if there is one -
1671 how would we lock it to prevent close of that handle
1672 racing with this read?
1673 In any case this will be written out by commit_write */
1674 }
1675 }
1676
1677 /* BB should we pass any errors back?
1678 e.g. if we do not have read access to the file */
1679 return 0;
1680}
1681
1682struct address_space_operations cifs_addr_ops = {
1683 .readpage = cifs_readpage,
1684 .readpages = cifs_readpages,
1685 .writepage = cifs_writepage,
1686 .prepare_write = cifs_prepare_write,
1687 .commit_write = cifs_commit_write,
1688 .set_page_dirty = __set_page_dirty_nobuffers,
1689 /* .sync_page = cifs_sync_page, */
1690 /* .direct_IO = */
1691};