[PATCH] reiserfs: eliminate minimum window size for bitmap searching
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / nfs / file.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/nfs/file.c
3 *
4 * Copyright (C) 1992 Rick Sladkey
5 *
6 * Changes Copyright (C) 1994 by Florian La Roche
7 * - Do not copy data too often around in the kernel.
8 * - In nfs_file_read the return value of kmalloc wasn't checked.
9 * - Put in a better version of read look-ahead buffering. Original idea
10 * and implementation by Wai S Kok elekokws@ee.nus.sg.
11 *
12 * Expire cache on write to a file by Wai S Kok (Oct 1994).
13 *
14 * Total rewrite of read side for new NFS buffer cache.. Linus.
15 *
16 * nfs regular file handling functions
17 */
18
19#include <linux/time.h>
20#include <linux/kernel.h>
21#include <linux/errno.h>
22#include <linux/fcntl.h>
23#include <linux/stat.h>
24#include <linux/nfs_fs.h>
25#include <linux/nfs_mount.h>
26#include <linux/mm.h>
27#include <linux/slab.h>
28#include <linux/pagemap.h>
29#include <linux/smp_lock.h>
30
31#include <asm/uaccess.h>
32#include <asm/system.h>
33
34#include "delegation.h"
91d5b470 35#include "iostat.h"
1da177e4
LT
36
37#define NFSDBG_FACILITY NFSDBG_FILE
38
39static int nfs_file_open(struct inode *, struct file *);
40static int nfs_file_release(struct inode *, struct file *);
980802e3 41static loff_t nfs_file_llseek(struct file *file, loff_t offset, int origin);
1da177e4
LT
42static int nfs_file_mmap(struct file *, struct vm_area_struct *);
43static ssize_t nfs_file_sendfile(struct file *, loff_t *, size_t, read_actor_t, void *);
44static ssize_t nfs_file_read(struct kiocb *, char __user *, size_t, loff_t);
45static ssize_t nfs_file_write(struct kiocb *, const char __user *, size_t, loff_t);
75e1fcc0 46static int nfs_file_flush(struct file *, fl_owner_t id);
1da177e4
LT
47static int nfs_fsync(struct file *, struct dentry *dentry, int datasync);
48static int nfs_check_flags(int flags);
49static int nfs_lock(struct file *filp, int cmd, struct file_lock *fl);
50static int nfs_flock(struct file *filp, int cmd, struct file_lock *fl);
51
4b6f5d20 52const struct file_operations nfs_file_operations = {
980802e3 53 .llseek = nfs_file_llseek,
1da177e4
LT
54 .read = do_sync_read,
55 .write = do_sync_write,
56 .aio_read = nfs_file_read,
57 .aio_write = nfs_file_write,
58 .mmap = nfs_file_mmap,
59 .open = nfs_file_open,
60 .flush = nfs_file_flush,
61 .release = nfs_file_release,
62 .fsync = nfs_fsync,
63 .lock = nfs_lock,
64 .flock = nfs_flock,
65 .sendfile = nfs_file_sendfile,
66 .check_flags = nfs_check_flags,
67};
68
69struct inode_operations nfs_file_inode_operations = {
70 .permission = nfs_permission,
71 .getattr = nfs_getattr,
72 .setattr = nfs_setattr,
73};
74
b7fa0554
AG
75#ifdef CONFIG_NFS_V3
76struct inode_operations nfs3_file_inode_operations = {
77 .permission = nfs_permission,
78 .getattr = nfs_getattr,
79 .setattr = nfs_setattr,
80 .listxattr = nfs3_listxattr,
81 .getxattr = nfs3_getxattr,
82 .setxattr = nfs3_setxattr,
83 .removexattr = nfs3_removexattr,
84};
85#endif /* CONFIG_NFS_v3 */
86
1da177e4
LT
87/* Hack for future NFS swap support */
88#ifndef IS_SWAPFILE
89# define IS_SWAPFILE(inode) (0)
90#endif
91
92static int nfs_check_flags(int flags)
93{
94 if ((flags & (O_APPEND | O_DIRECT)) == (O_APPEND | O_DIRECT))
95 return -EINVAL;
96
97 return 0;
98}
99
100/*
101 * Open file
102 */
103static int
104nfs_file_open(struct inode *inode, struct file *filp)
105{
1da177e4
LT
106 int res;
107
108 res = nfs_check_flags(filp->f_flags);
109 if (res)
110 return res;
111
91d5b470 112 nfs_inc_stats(inode, NFSIOS_VFSOPEN);
1da177e4 113 lock_kernel();
1f163415 114 res = NFS_PROTO(inode)->file_open(inode, filp);
1da177e4
LT
115 unlock_kernel();
116 return res;
117}
118
119static int
120nfs_file_release(struct inode *inode, struct file *filp)
121{
122 /* Ensure that dirty pages are flushed out with the right creds */
123 if (filp->f_mode & FMODE_WRITE)
124 filemap_fdatawrite(filp->f_mapping);
91d5b470 125 nfs_inc_stats(inode, NFSIOS_VFSRELEASE);
1da177e4
LT
126 return NFS_PROTO(inode)->file_release(inode, filp);
127}
128
980802e3
TM
129/**
130 * nfs_revalidate_size - Revalidate the file size
131 * @inode - pointer to inode struct
132 * @file - pointer to struct file
133 *
134 * Revalidates the file length. This is basically a wrapper around
135 * nfs_revalidate_inode() that takes into account the fact that we may
136 * have cached writes (in which case we don't care about the server's
137 * idea of what the file length is), or O_DIRECT (in which case we
138 * shouldn't trust the cache).
139 */
140static int nfs_revalidate_file_size(struct inode *inode, struct file *filp)
141{
142 struct nfs_server *server = NFS_SERVER(inode);
143 struct nfs_inode *nfsi = NFS_I(inode);
144
145 if (server->flags & NFS_MOUNT_NOAC)
146 goto force_reval;
147 if (filp->f_flags & O_DIRECT)
148 goto force_reval;
149 if (nfsi->npages != 0)
150 return 0;
55296809 151 if (!(nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE) && !nfs_attribute_timeout(inode))
fe51beec 152 return 0;
980802e3
TM
153force_reval:
154 return __nfs_revalidate_inode(server, inode);
155}
156
157static loff_t nfs_file_llseek(struct file *filp, loff_t offset, int origin)
158{
159 /* origin == SEEK_END => we must revalidate the cached file length */
aec5e175 160 if (origin == SEEK_END) {
980802e3
TM
161 struct inode *inode = filp->f_mapping->host;
162 int retval = nfs_revalidate_file_size(inode, filp);
163 if (retval < 0)
164 return (loff_t)retval;
165 }
166 return remote_llseek(filp, offset, origin);
167}
168
1da177e4
LT
169/*
170 * Flush all dirty pages, and check for write errors.
171 *
172 */
173static int
75e1fcc0 174nfs_file_flush(struct file *file, fl_owner_t id)
1da177e4
LT
175{
176 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
177 struct inode *inode = file->f_dentry->d_inode;
178 int status;
179
180 dfprintk(VFS, "nfs: flush(%s/%ld)\n", inode->i_sb->s_id, inode->i_ino);
181
182 if ((file->f_mode & FMODE_WRITE) == 0)
183 return 0;
91d5b470 184 nfs_inc_stats(inode, NFSIOS_VFSFLUSH);
1da177e4
LT
185 lock_kernel();
186 /* Ensure that data+attribute caches are up to date after close() */
187 status = nfs_wb_all(inode);
188 if (!status) {
189 status = ctx->error;
190 ctx->error = 0;
3338c143
TM
191 if (!status)
192 nfs_revalidate_inode(NFS_SERVER(inode), inode);
1da177e4
LT
193 }
194 unlock_kernel();
195 return status;
196}
197
198static ssize_t
199nfs_file_read(struct kiocb *iocb, char __user * buf, size_t count, loff_t pos)
200{
201 struct dentry * dentry = iocb->ki_filp->f_dentry;
202 struct inode * inode = dentry->d_inode;
203 ssize_t result;
204
205#ifdef CONFIG_NFS_DIRECTIO
206 if (iocb->ki_filp->f_flags & O_DIRECT)
207 return nfs_file_direct_read(iocb, buf, count, pos);
208#endif
209
210 dfprintk(VFS, "nfs: read(%s/%s, %lu@%lu)\n",
211 dentry->d_parent->d_name.name, dentry->d_name.name,
212 (unsigned long) count, (unsigned long) pos);
213
44b11874 214 result = nfs_revalidate_mapping(inode, iocb->ki_filp->f_mapping);
91d5b470 215 nfs_add_stats(inode, NFSIOS_NORMALREADBYTES, count);
1da177e4
LT
216 if (!result)
217 result = generic_file_aio_read(iocb, buf, count, pos);
218 return result;
219}
220
221static ssize_t
222nfs_file_sendfile(struct file *filp, loff_t *ppos, size_t count,
223 read_actor_t actor, void *target)
224{
225 struct dentry *dentry = filp->f_dentry;
226 struct inode *inode = dentry->d_inode;
227 ssize_t res;
228
229 dfprintk(VFS, "nfs: sendfile(%s/%s, %lu@%Lu)\n",
230 dentry->d_parent->d_name.name, dentry->d_name.name,
231 (unsigned long) count, (unsigned long long) *ppos);
232
44b11874 233 res = nfs_revalidate_mapping(inode, filp->f_mapping);
1da177e4
LT
234 if (!res)
235 res = generic_file_sendfile(filp, ppos, count, actor, target);
236 return res;
237}
238
239static int
240nfs_file_mmap(struct file * file, struct vm_area_struct * vma)
241{
242 struct dentry *dentry = file->f_dentry;
243 struct inode *inode = dentry->d_inode;
244 int status;
245
246 dfprintk(VFS, "nfs: mmap(%s/%s)\n",
247 dentry->d_parent->d_name.name, dentry->d_name.name);
248
44b11874 249 status = nfs_revalidate_mapping(inode, file->f_mapping);
1da177e4
LT
250 if (!status)
251 status = generic_file_mmap(file, vma);
252 return status;
253}
254
255/*
256 * Flush any dirty pages for this process, and check for write errors.
257 * The return status from this call provides a reliable indication of
258 * whether any write errors occurred for this process.
259 */
260static int
261nfs_fsync(struct file *file, struct dentry *dentry, int datasync)
262{
263 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
264 struct inode *inode = dentry->d_inode;
265 int status;
266
267 dfprintk(VFS, "nfs: fsync(%s/%ld)\n", inode->i_sb->s_id, inode->i_ino);
268
91d5b470 269 nfs_inc_stats(inode, NFSIOS_VFSFSYNC);
1da177e4
LT
270 lock_kernel();
271 status = nfs_wb_all(inode);
272 if (!status) {
273 status = ctx->error;
274 ctx->error = 0;
275 }
276 unlock_kernel();
277 return status;
278}
279
280/*
281 * This does the "real" work of the write. The generic routine has
282 * allocated the page, locked it, done all the page alignment stuff
283 * calculations etc. Now we should just copy the data from user
284 * space and write it back to the real medium..
285 *
286 * If the writer ends up delaying the write, the writer needs to
287 * increment the page use counts until he is done with the page.
288 */
289static int nfs_prepare_write(struct file *file, struct page *page, unsigned offset, unsigned to)
290{
291 return nfs_flush_incompatible(file, page);
292}
293
294static int nfs_commit_write(struct file *file, struct page *page, unsigned offset, unsigned to)
295{
296 long status;
297
298 lock_kernel();
299 status = nfs_updatepage(file, page, offset, to-offset);
300 unlock_kernel();
301 return status;
302}
303
2ff28e22 304static void nfs_invalidate_page(struct page *page, unsigned long offset)
cd52ed35 305{
d2ccddf0
TM
306 struct inode *inode = page->mapping->host;
307
308 /* Cancel any unstarted writes on this page */
309 if (offset == 0)
310 nfs_sync_inode_wait(inode, page->index, 1, FLUSH_INVALIDATE);
cd52ed35
TM
311}
312
313static int nfs_release_page(struct page *page, gfp_t gfp)
314{
ddeff520
ND
315 if (gfp & __GFP_FS)
316 return !nfs_wb_page(page->mapping->host, page);
317 else
318 /*
319 * Avoid deadlock on nfs_wait_on_request().
320 */
321 return 0;
cd52ed35
TM
322}
323
f5e54d6e 324const struct address_space_operations nfs_file_aops = {
1da177e4
LT
325 .readpage = nfs_readpage,
326 .readpages = nfs_readpages,
327 .set_page_dirty = __set_page_dirty_nobuffers,
328 .writepage = nfs_writepage,
329 .writepages = nfs_writepages,
330 .prepare_write = nfs_prepare_write,
331 .commit_write = nfs_commit_write,
cd52ed35
TM
332 .invalidatepage = nfs_invalidate_page,
333 .releasepage = nfs_release_page,
1da177e4
LT
334#ifdef CONFIG_NFS_DIRECTIO
335 .direct_IO = nfs_direct_IO,
336#endif
337};
338
339/*
340 * Write to a file (through the page cache).
341 */
342static ssize_t
343nfs_file_write(struct kiocb *iocb, const char __user *buf, size_t count, loff_t pos)
344{
345 struct dentry * dentry = iocb->ki_filp->f_dentry;
346 struct inode * inode = dentry->d_inode;
347 ssize_t result;
348
349#ifdef CONFIG_NFS_DIRECTIO
350 if (iocb->ki_filp->f_flags & O_DIRECT)
351 return nfs_file_direct_write(iocb, buf, count, pos);
352#endif
353
354 dfprintk(VFS, "nfs: write(%s/%s(%ld), %lu@%lu)\n",
355 dentry->d_parent->d_name.name, dentry->d_name.name,
356 inode->i_ino, (unsigned long) count, (unsigned long) pos);
357
358 result = -EBUSY;
359 if (IS_SWAPFILE(inode))
360 goto out_swapfile;
7d52e862
TM
361 /*
362 * O_APPEND implies that we must revalidate the file length.
363 */
364 if (iocb->ki_filp->f_flags & O_APPEND) {
365 result = nfs_revalidate_file_size(inode, iocb->ki_filp);
366 if (result)
367 goto out;
fe51beec 368 }
1da177e4
LT
369
370 result = count;
371 if (!count)
372 goto out;
373
91d5b470 374 nfs_add_stats(inode, NFSIOS_NORMALWRITTENBYTES, count);
1da177e4
LT
375 result = generic_file_aio_write(iocb, buf, count, pos);
376out:
377 return result;
378
379out_swapfile:
380 printk(KERN_INFO "NFS: attempt to write to active swap file!\n");
381 goto out;
382}
383
384static int do_getlk(struct file *filp, int cmd, struct file_lock *fl)
385{
8dc7c311 386 struct file_lock cfl;
1da177e4
LT
387 struct inode *inode = filp->f_mapping->host;
388 int status = 0;
389
390 lock_kernel();
039c4d7a 391 /* Try local locking first */
8dc7c311 392 if (posix_test_lock(filp, fl, &cfl)) {
e4cd038a
TM
393 fl->fl_start = cfl.fl_start;
394 fl->fl_end = cfl.fl_end;
395 fl->fl_type = cfl.fl_type;
396 fl->fl_pid = cfl.fl_pid;
039c4d7a 397 goto out;
1da177e4 398 }
039c4d7a
TM
399
400 if (nfs_have_delegation(inode, FMODE_READ))
401 goto out_noconflict;
402
403 if (NFS_SERVER(inode)->flags & NFS_MOUNT_NONLM)
404 goto out_noconflict;
405
406 status = NFS_PROTO(inode)->lock(filp, cmd, fl);
407out:
1da177e4
LT
408 unlock_kernel();
409 return status;
039c4d7a
TM
410out_noconflict:
411 fl->fl_type = F_UNLCK;
412 goto out;
1da177e4
LT
413}
414
415static int do_vfs_lock(struct file *file, struct file_lock *fl)
416{
417 int res = 0;
418 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
419 case FL_POSIX:
420 res = posix_lock_file_wait(file, fl);
421 break;
422 case FL_FLOCK:
423 res = flock_lock_file_wait(file, fl);
424 break;
425 default:
426 BUG();
427 }
428 if (res < 0)
429 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n",
430 __FUNCTION__);
431 return res;
432}
433
434static int do_unlk(struct file *filp, int cmd, struct file_lock *fl)
435{
436 struct inode *inode = filp->f_mapping->host;
1da177e4
LT
437 int status;
438
1da177e4
LT
439 /*
440 * Flush all pending writes before doing anything
441 * with locks..
442 */
29884df0 443 nfs_sync_mapping(filp->f_mapping);
1da177e4
LT
444
445 /* NOTE: special case
446 * If we're signalled while cleaning up locks on process exit, we
447 * still need to complete the unlock.
448 */
449 lock_kernel();
450 /* Use local locking if mounted with "-onolock" */
451 if (!(NFS_SERVER(inode)->flags & NFS_MOUNT_NONLM))
452 status = NFS_PROTO(inode)->lock(filp, cmd, fl);
453 else
454 status = do_vfs_lock(filp, fl);
455 unlock_kernel();
1da177e4
LT
456 return status;
457}
458
459static int do_setlk(struct file *filp, int cmd, struct file_lock *fl)
460{
461 struct inode *inode = filp->f_mapping->host;
1da177e4
LT
462 int status;
463
1da177e4
LT
464 /*
465 * Flush all pending writes before doing anything
466 * with locks..
467 */
29884df0
TM
468 status = nfs_sync_mapping(filp->f_mapping);
469 if (status != 0)
1da177e4
LT
470 goto out;
471
472 lock_kernel();
473 /* Use local locking if mounted with "-onolock" */
474 if (!(NFS_SERVER(inode)->flags & NFS_MOUNT_NONLM)) {
475 status = NFS_PROTO(inode)->lock(filp, cmd, fl);
476 /* If we were signalled we still need to ensure that
477 * we clean up any state on the server. We therefore
478 * record the lock call as having succeeded in order to
479 * ensure that locks_remove_posix() cleans it out when
480 * the process exits.
481 */
482 if (status == -EINTR || status == -ERESTARTSYS)
483 do_vfs_lock(filp, fl);
484 } else
485 status = do_vfs_lock(filp, fl);
486 unlock_kernel();
487 if (status < 0)
488 goto out;
489 /*
490 * Make sure we clear the cache whenever we try to get the lock.
491 * This makes locking act as a cache coherency point.
492 */
29884df0 493 nfs_sync_mapping(filp->f_mapping);
1da177e4
LT
494 nfs_zap_caches(inode);
495out:
1da177e4
LT
496 return status;
497}
498
499/*
500 * Lock a (portion of) a file
501 */
502static int nfs_lock(struct file *filp, int cmd, struct file_lock *fl)
503{
504 struct inode * inode = filp->f_mapping->host;
505
506 dprintk("NFS: nfs_lock(f=%s/%ld, t=%x, fl=%x, r=%Ld:%Ld)\n",
507 inode->i_sb->s_id, inode->i_ino,
508 fl->fl_type, fl->fl_flags,
509 (long long)fl->fl_start, (long long)fl->fl_end);
91d5b470 510 nfs_inc_stats(inode, NFSIOS_VFSLOCK);
1da177e4
LT
511
512 /* No mandatory locks over NFS */
0800c5f7
AM
513 if ((inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID &&
514 fl->fl_type != F_UNLCK)
1da177e4
LT
515 return -ENOLCK;
516
517 if (IS_GETLK(cmd))
518 return do_getlk(filp, cmd, fl);
519 if (fl->fl_type == F_UNLCK)
520 return do_unlk(filp, cmd, fl);
521 return do_setlk(filp, cmd, fl);
522}
523
524/*
525 * Lock a (portion of) a file
526 */
527static int nfs_flock(struct file *filp, int cmd, struct file_lock *fl)
528{
1da177e4 529 dprintk("NFS: nfs_flock(f=%s/%ld, t=%x, fl=%x)\n",
e99170ff
TM
530 filp->f_dentry->d_inode->i_sb->s_id,
531 filp->f_dentry->d_inode->i_ino,
1da177e4
LT
532 fl->fl_type, fl->fl_flags);
533
1da177e4
LT
534 /*
535 * No BSD flocks over NFS allowed.
536 * Note: we could try to fake a POSIX lock request here by
537 * using ((u32) filp | 0x80000000) or some such as the pid.
538 * Not sure whether that would be unique, though, or whether
539 * that would break in other places.
540 */
541 if (!(fl->fl_flags & FL_FLOCK))
542 return -ENOLCK;
543
544 /* We're simulating flock() locks using posix locks on the server */
545 fl->fl_owner = (fl_owner_t)filp;
546 fl->fl_start = 0;
547 fl->fl_end = OFFSET_MAX;
548
549 if (fl->fl_type == F_UNLCK)
550 return do_unlk(filp, cmd, fl);
551 return do_setlk(filp, cmd, fl);
552}