6997eb62fbba264827f34f1a2b1299f6c4ba43ab
[deliverable/linux.git] / fs / 9p / vfs_file.c
1 /*
2 * linux/fs/9p/vfs_file.c
3 *
4 * This file contians vfs file ops for 9P2000.
5 *
6 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
7 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to:
20 * Free Software Foundation
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02111-1301 USA
23 *
24 */
25
26 #include <linux/module.h>
27 #include <linux/errno.h>
28 #include <linux/fs.h>
29 #include <linux/sched.h>
30 #include <linux/file.h>
31 #include <linux/stat.h>
32 #include <linux/string.h>
33 #include <linux/inet.h>
34 #include <linux/list.h>
35 #include <linux/pagemap.h>
36 #include <linux/utsname.h>
37 #include <asm/uaccess.h>
38 #include <linux/idr.h>
39 #include <net/9p/9p.h>
40 #include <net/9p/client.h>
41
42 #include "v9fs.h"
43 #include "v9fs_vfs.h"
44 #include "fid.h"
45 #include "cache.h"
46
47 static const struct vm_operations_struct v9fs_file_vm_ops;
48
49 /**
50 * v9fs_file_open - open a file (or directory)
51 * @inode: inode to be opened
52 * @file: file being opened
53 *
54 */
55
56 int v9fs_file_open(struct inode *inode, struct file *file)
57 {
58 int err;
59 struct v9fs_inode *v9inode;
60 struct v9fs_session_info *v9ses;
61 struct p9_fid *fid;
62 int omode;
63
64 P9_DPRINTK(P9_DEBUG_VFS, "inode: %p file: %p\n", inode, file);
65 v9inode = V9FS_I(inode);
66 v9ses = v9fs_inode2v9ses(inode);
67 if (v9fs_proto_dotl(v9ses))
68 omode = file->f_flags;
69 else
70 omode = v9fs_uflags2omode(file->f_flags,
71 v9fs_proto_dotu(v9ses));
72 fid = file->private_data;
73 if (!fid) {
74 fid = v9fs_fid_clone(file->f_path.dentry);
75 if (IS_ERR(fid))
76 return PTR_ERR(fid);
77
78 err = p9_client_open(fid, omode);
79 if (err < 0) {
80 p9_client_clunk(fid);
81 return err;
82 }
83 if (file->f_flags & O_TRUNC) {
84 i_size_write(inode, 0);
85 inode->i_blocks = 0;
86 }
87 if ((file->f_flags & O_APPEND) &&
88 (!v9fs_proto_dotu(v9ses) && !v9fs_proto_dotl(v9ses)))
89 generic_file_llseek(file, 0, SEEK_END);
90 }
91
92 file->private_data = fid;
93 mutex_lock(&v9inode->v_mutex);
94 if (v9ses->cache && !v9inode->writeback_fid &&
95 ((file->f_flags & O_ACCMODE) != O_RDONLY)) {
96 /*
97 * clone a fid and add it to writeback_fid
98 * we do it during open time instead of
99 * page dirty time via write_begin/page_mkwrite
100 * because we want write after unlink usecase
101 * to work.
102 */
103 fid = v9fs_writeback_fid(file->f_path.dentry);
104 if (IS_ERR(fid)) {
105 err = PTR_ERR(fid);
106 mutex_unlock(&v9inode->v_mutex);
107 goto out_error;
108 }
109 v9inode->writeback_fid = (void *) fid;
110 }
111 mutex_unlock(&v9inode->v_mutex);
112 #ifdef CONFIG_9P_FSCACHE
113 if (v9ses->cache)
114 v9fs_cache_inode_set_cookie(inode, file);
115 #endif
116 return 0;
117 out_error:
118 p9_client_clunk(file->private_data);
119 file->private_data = NULL;
120 return err;
121 }
122
123 /**
124 * v9fs_file_lock - lock a file (or directory)
125 * @filp: file to be locked
126 * @cmd: lock command
127 * @fl: file lock structure
128 *
129 * Bugs: this looks like a local only lock, we should extend into 9P
130 * by using open exclusive
131 */
132
133 static int v9fs_file_lock(struct file *filp, int cmd, struct file_lock *fl)
134 {
135 int res = 0;
136 struct inode *inode = filp->f_path.dentry->d_inode;
137
138 P9_DPRINTK(P9_DEBUG_VFS, "filp: %p lock: %p\n", filp, fl);
139
140 /* No mandatory locks */
141 if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
142 return -ENOLCK;
143
144 if ((IS_SETLK(cmd) || IS_SETLKW(cmd)) && fl->fl_type != F_UNLCK) {
145 filemap_write_and_wait(inode->i_mapping);
146 invalidate_mapping_pages(&inode->i_data, 0, -1);
147 }
148
149 return res;
150 }
151
152 static int v9fs_file_do_lock(struct file *filp, int cmd, struct file_lock *fl)
153 {
154 struct p9_flock flock;
155 struct p9_fid *fid;
156 uint8_t status;
157 int res = 0;
158 unsigned char fl_type;
159
160 fid = filp->private_data;
161 BUG_ON(fid == NULL);
162
163 if ((fl->fl_flags & FL_POSIX) != FL_POSIX)
164 BUG();
165
166 res = posix_lock_file_wait(filp, fl);
167 if (res < 0)
168 goto out;
169
170 /* convert posix lock to p9 tlock args */
171 memset(&flock, 0, sizeof(flock));
172 flock.type = fl->fl_type;
173 flock.start = fl->fl_start;
174 if (fl->fl_end == OFFSET_MAX)
175 flock.length = 0;
176 else
177 flock.length = fl->fl_end - fl->fl_start + 1;
178 flock.proc_id = fl->fl_pid;
179 flock.client_id = utsname()->nodename;
180 if (IS_SETLKW(cmd))
181 flock.flags = P9_LOCK_FLAGS_BLOCK;
182
183 /*
184 * if its a blocked request and we get P9_LOCK_BLOCKED as the status
185 * for lock request, keep on trying
186 */
187 for (;;) {
188 res = p9_client_lock_dotl(fid, &flock, &status);
189 if (res < 0)
190 break;
191
192 if (status != P9_LOCK_BLOCKED)
193 break;
194 if (status == P9_LOCK_BLOCKED && !IS_SETLKW(cmd))
195 break;
196 schedule_timeout_interruptible(P9_LOCK_TIMEOUT);
197 }
198
199 /* map 9p status to VFS status */
200 switch (status) {
201 case P9_LOCK_SUCCESS:
202 res = 0;
203 break;
204 case P9_LOCK_BLOCKED:
205 res = -EAGAIN;
206 break;
207 case P9_LOCK_ERROR:
208 case P9_LOCK_GRACE:
209 res = -ENOLCK;
210 break;
211 default:
212 BUG();
213 }
214
215 /*
216 * incase server returned error for lock request, revert
217 * it locally
218 */
219 if (res < 0 && fl->fl_type != F_UNLCK) {
220 fl_type = fl->fl_type;
221 fl->fl_type = F_UNLCK;
222 res = posix_lock_file_wait(filp, fl);
223 fl->fl_type = fl_type;
224 }
225 out:
226 return res;
227 }
228
229 static int v9fs_file_getlock(struct file *filp, struct file_lock *fl)
230 {
231 struct p9_getlock glock;
232 struct p9_fid *fid;
233 int res = 0;
234
235 fid = filp->private_data;
236 BUG_ON(fid == NULL);
237
238 posix_test_lock(filp, fl);
239 /*
240 * if we have a conflicting lock locally, no need to validate
241 * with server
242 */
243 if (fl->fl_type != F_UNLCK)
244 return res;
245
246 /* convert posix lock to p9 tgetlock args */
247 memset(&glock, 0, sizeof(glock));
248 glock.type = fl->fl_type;
249 glock.start = fl->fl_start;
250 if (fl->fl_end == OFFSET_MAX)
251 glock.length = 0;
252 else
253 glock.length = fl->fl_end - fl->fl_start + 1;
254 glock.proc_id = fl->fl_pid;
255 glock.client_id = utsname()->nodename;
256
257 res = p9_client_getlock_dotl(fid, &glock);
258 if (res < 0)
259 return res;
260 if (glock.type != F_UNLCK) {
261 fl->fl_type = glock.type;
262 fl->fl_start = glock.start;
263 if (glock.length == 0)
264 fl->fl_end = OFFSET_MAX;
265 else
266 fl->fl_end = glock.start + glock.length - 1;
267 fl->fl_pid = glock.proc_id;
268 } else
269 fl->fl_type = F_UNLCK;
270
271 return res;
272 }
273
274 /**
275 * v9fs_file_lock_dotl - lock a file (or directory)
276 * @filp: file to be locked
277 * @cmd: lock command
278 * @fl: file lock structure
279 *
280 */
281
282 static int v9fs_file_lock_dotl(struct file *filp, int cmd, struct file_lock *fl)
283 {
284 struct inode *inode = filp->f_path.dentry->d_inode;
285 int ret = -ENOLCK;
286
287 P9_DPRINTK(P9_DEBUG_VFS, "filp: %p cmd:%d lock: %p name: %s\n", filp,
288 cmd, fl, filp->f_path.dentry->d_name.name);
289
290 /* No mandatory locks */
291 if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
292 goto out_err;
293
294 if ((IS_SETLK(cmd) || IS_SETLKW(cmd)) && fl->fl_type != F_UNLCK) {
295 filemap_write_and_wait(inode->i_mapping);
296 invalidate_mapping_pages(&inode->i_data, 0, -1);
297 }
298
299 if (IS_SETLK(cmd) || IS_SETLKW(cmd))
300 ret = v9fs_file_do_lock(filp, cmd, fl);
301 else if (IS_GETLK(cmd))
302 ret = v9fs_file_getlock(filp, fl);
303 else
304 ret = -EINVAL;
305 out_err:
306 return ret;
307 }
308
309 /**
310 * v9fs_file_flock_dotl - lock a file
311 * @filp: file to be locked
312 * @cmd: lock command
313 * @fl: file lock structure
314 *
315 */
316
317 static int v9fs_file_flock_dotl(struct file *filp, int cmd,
318 struct file_lock *fl)
319 {
320 struct inode *inode = filp->f_path.dentry->d_inode;
321 int ret = -ENOLCK;
322
323 P9_DPRINTK(P9_DEBUG_VFS, "filp: %p cmd:%d lock: %p name: %s\n", filp,
324 cmd, fl, filp->f_path.dentry->d_name.name);
325
326 /* No mandatory locks */
327 if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
328 goto out_err;
329
330 if (!(fl->fl_flags & FL_FLOCK))
331 goto out_err;
332
333 if ((IS_SETLK(cmd) || IS_SETLKW(cmd)) && fl->fl_type != F_UNLCK) {
334 filemap_write_and_wait(inode->i_mapping);
335 invalidate_mapping_pages(&inode->i_data, 0, -1);
336 }
337 /* Convert flock to posix lock */
338 fl->fl_owner = (fl_owner_t)filp;
339 fl->fl_start = 0;
340 fl->fl_end = OFFSET_MAX;
341 fl->fl_flags |= FL_POSIX;
342 fl->fl_flags ^= FL_FLOCK;
343
344 if (IS_SETLK(cmd) | IS_SETLKW(cmd))
345 ret = v9fs_file_do_lock(filp, cmd, fl);
346 else
347 ret = -EINVAL;
348 out_err:
349 return ret;
350 }
351
352 /**
353 * v9fs_fid_readn - read from a fid
354 * @fid: fid to read
355 * @data: data buffer to read data into
356 * @udata: user data buffer to read data into
357 * @count: size of buffer
358 * @offset: offset at which to read data
359 *
360 */
361 ssize_t
362 v9fs_fid_readn(struct p9_fid *fid, char *data, char __user *udata, u32 count,
363 u64 offset)
364 {
365 int n, total, size;
366
367 P9_DPRINTK(P9_DEBUG_VFS, "fid %d offset %llu count %d\n", fid->fid,
368 (long long unsigned) offset, count);
369 n = 0;
370 total = 0;
371 size = fid->iounit ? fid->iounit : fid->clnt->msize - P9_IOHDRSZ;
372 do {
373 n = p9_client_read(fid, data, udata, offset, count);
374 if (n <= 0)
375 break;
376
377 if (data)
378 data += n;
379 if (udata)
380 udata += n;
381
382 offset += n;
383 count -= n;
384 total += n;
385 } while (count > 0 && n == size);
386
387 if (n < 0)
388 total = n;
389
390 return total;
391 }
392
393 /**
394 * v9fs_file_readn - read from a file
395 * @filp: file pointer to read
396 * @data: data buffer to read data into
397 * @udata: user data buffer to read data into
398 * @count: size of buffer
399 * @offset: offset at which to read data
400 *
401 */
402 ssize_t
403 v9fs_file_readn(struct file *filp, char *data, char __user *udata, u32 count,
404 u64 offset)
405 {
406 return v9fs_fid_readn(filp->private_data, data, udata, count, offset);
407 }
408
409 /**
410 * v9fs_file_read - read from a file
411 * @filp: file pointer to read
412 * @udata: user data buffer to read data into
413 * @count: size of buffer
414 * @offset: offset at which to read data
415 *
416 */
417
418 static ssize_t
419 v9fs_file_read(struct file *filp, char __user *udata, size_t count,
420 loff_t * offset)
421 {
422 int ret;
423 struct p9_fid *fid;
424 size_t size;
425
426 P9_DPRINTK(P9_DEBUG_VFS, "count %zu offset %lld\n", count, *offset);
427 fid = filp->private_data;
428
429 size = fid->iounit ? fid->iounit : fid->clnt->msize - P9_IOHDRSZ;
430 if (count > size)
431 ret = v9fs_file_readn(filp, NULL, udata, count, *offset);
432 else
433 ret = p9_client_read(fid, NULL, udata, *offset, count);
434
435 if (ret > 0)
436 *offset += ret;
437
438 return ret;
439 }
440
441 ssize_t
442 v9fs_file_write_internal(struct inode *inode, struct p9_fid *fid,
443 const char __user *data, size_t count,
444 loff_t *offset, int invalidate)
445 {
446 int n;
447 loff_t i_size;
448 size_t total = 0;
449 struct p9_client *clnt;
450 loff_t origin = *offset;
451 unsigned long pg_start, pg_end;
452
453 P9_DPRINTK(P9_DEBUG_VFS, "data %p count %d offset %x\n", data,
454 (int)count, (int)*offset);
455
456 clnt = fid->clnt;
457 do {
458 n = p9_client_write(fid, NULL, data+total, origin+total, count);
459 if (n <= 0)
460 break;
461 count -= n;
462 total += n;
463 } while (count > 0);
464
465 if (invalidate && (total > 0)) {
466 pg_start = origin >> PAGE_CACHE_SHIFT;
467 pg_end = (origin + total - 1) >> PAGE_CACHE_SHIFT;
468 if (inode->i_mapping && inode->i_mapping->nrpages)
469 invalidate_inode_pages2_range(inode->i_mapping,
470 pg_start, pg_end);
471 *offset += total;
472 i_size = i_size_read(inode);
473 if (*offset > i_size) {
474 inode_add_bytes(inode, *offset - i_size);
475 i_size_write(inode, *offset);
476 }
477 }
478 if (n < 0)
479 return n;
480
481 return total;
482 }
483
484 /**
485 * v9fs_file_write - write to a file
486 * @filp: file pointer to write
487 * @data: data buffer to write data from
488 * @count: size of buffer
489 * @offset: offset at which to write data
490 *
491 */
492 static ssize_t
493 v9fs_file_write(struct file *filp, const char __user * data,
494 size_t count, loff_t *offset)
495 {
496 ssize_t retval = 0;
497 loff_t origin = *offset;
498
499
500 retval = generic_write_checks(filp, &origin, &count, 0);
501 if (retval)
502 goto out;
503
504 retval = -EINVAL;
505 if ((ssize_t) count < 0)
506 goto out;
507 retval = 0;
508 if (!count)
509 goto out;
510
511 return v9fs_file_write_internal(filp->f_path.dentry->d_inode,
512 filp->private_data,
513 data, count, offset, 1);
514 out:
515 return retval;
516 }
517
518
519 static int v9fs_file_fsync(struct file *filp, int datasync)
520 {
521 struct p9_fid *fid;
522 struct p9_wstat wstat;
523 int retval;
524
525 P9_DPRINTK(P9_DEBUG_VFS, "filp %p datasync %x\n", filp, datasync);
526
527 fid = filp->private_data;
528 v9fs_blank_wstat(&wstat);
529
530 retval = p9_client_wstat(fid, &wstat);
531 return retval;
532 }
533
534 int v9fs_file_fsync_dotl(struct file *filp, int datasync)
535 {
536 struct p9_fid *fid;
537 int retval;
538
539 P9_DPRINTK(P9_DEBUG_VFS, "v9fs_file_fsync_dotl: filp %p datasync %x\n",
540 filp, datasync);
541
542 fid = filp->private_data;
543
544 retval = p9_client_fsync(fid, datasync);
545 return retval;
546 }
547
548 static int
549 v9fs_file_mmap(struct file *file, struct vm_area_struct *vma)
550 {
551 int retval;
552
553 retval = generic_file_mmap(file, vma);
554 if (!retval)
555 vma->vm_ops = &v9fs_file_vm_ops;
556
557 return retval;
558 }
559
560 static int
561 v9fs_vm_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
562 {
563 struct v9fs_inode *v9inode;
564 struct page *page = vmf->page;
565 struct file *filp = vma->vm_file;
566 struct inode *inode = filp->f_path.dentry->d_inode;
567
568
569 P9_DPRINTK(P9_DEBUG_VFS, "page %p fid %lx\n",
570 page, (unsigned long)filp->private_data);
571
572 v9inode = V9FS_I(inode);
573 /* make sure the cache has finished storing the page */
574 v9fs_fscache_wait_on_page_write(inode, page);
575 BUG_ON(!v9inode->writeback_fid);
576 lock_page(page);
577 if (page->mapping != inode->i_mapping)
578 goto out_unlock;
579
580 return VM_FAULT_LOCKED;
581 out_unlock:
582 unlock_page(page);
583 return VM_FAULT_NOPAGE;
584 }
585
586 static ssize_t
587 v9fs_direct_read(struct file *filp, char __user *udata, size_t count,
588 loff_t *offsetp)
589 {
590 loff_t size, offset;
591 struct inode *inode;
592 struct address_space *mapping;
593
594 offset = *offsetp;
595 mapping = filp->f_mapping;
596 inode = mapping->host;
597 if (!count)
598 return 0;
599 size = i_size_read(inode);
600 if (offset < size)
601 filemap_write_and_wait_range(mapping, offset,
602 offset + count - 1);
603
604 return v9fs_file_read(filp, udata, count, offsetp);
605 }
606
607 /**
608 * v9fs_cached_file_read - read from a file
609 * @filp: file pointer to read
610 * @udata: user data buffer to read data into
611 * @count: size of buffer
612 * @offset: offset at which to read data
613 *
614 */
615 static ssize_t
616 v9fs_cached_file_read(struct file *filp, char __user *data, size_t count,
617 loff_t *offset)
618 {
619 if (filp->f_flags & O_DIRECT)
620 return v9fs_direct_read(filp, data, count, offset);
621 return do_sync_read(filp, data, count, offset);
622 }
623
624 static ssize_t
625 v9fs_direct_write(struct file *filp, const char __user * data,
626 size_t count, loff_t *offsetp)
627 {
628 loff_t offset;
629 ssize_t retval;
630 struct inode *inode;
631 struct address_space *mapping;
632
633 offset = *offsetp;
634 mapping = filp->f_mapping;
635 inode = mapping->host;
636 if (!count)
637 return 0;
638
639 mutex_lock(&inode->i_mutex);
640 retval = filemap_write_and_wait_range(mapping, offset,
641 offset + count - 1);
642 if (retval)
643 goto err_out;
644 /*
645 * After a write we want buffered reads to be sure to go to disk to get
646 * the new data. We invalidate clean cached page from the region we're
647 * about to write. We do this *before* the write so that if we fail
648 * here we fall back to buffered write
649 */
650 if (mapping->nrpages) {
651 pgoff_t pg_start = offset >> PAGE_CACHE_SHIFT;
652 pgoff_t pg_end = (offset + count - 1) >> PAGE_CACHE_SHIFT;
653
654 retval = invalidate_inode_pages2_range(mapping,
655 pg_start, pg_end);
656 /*
657 * If a page can not be invalidated, fall back
658 * to buffered write.
659 */
660 if (retval) {
661 if (retval == -EBUSY)
662 goto buff_write;
663 goto err_out;
664 }
665 }
666 retval = v9fs_file_write(filp, data, count, offsetp);
667 err_out:
668 mutex_unlock(&inode->i_mutex);
669 return retval;
670
671 buff_write:
672 mutex_unlock(&inode->i_mutex);
673 return do_sync_write(filp, data, count, offsetp);
674 }
675
676 /**
677 * v9fs_cached_file_write - write to a file
678 * @filp: file pointer to write
679 * @data: data buffer to write data from
680 * @count: size of buffer
681 * @offset: offset at which to write data
682 *
683 */
684 static ssize_t
685 v9fs_cached_file_write(struct file *filp, const char __user * data,
686 size_t count, loff_t *offset)
687 {
688
689 if (filp->f_flags & O_DIRECT)
690 return v9fs_direct_write(filp, data, count, offset);
691 return do_sync_write(filp, data, count, offset);
692 }
693
694 static const struct vm_operations_struct v9fs_file_vm_ops = {
695 .fault = filemap_fault,
696 .page_mkwrite = v9fs_vm_page_mkwrite,
697 };
698
699
700 const struct file_operations v9fs_cached_file_operations = {
701 .llseek = generic_file_llseek,
702 .read = v9fs_cached_file_read,
703 .write = v9fs_cached_file_write,
704 .aio_read = generic_file_aio_read,
705 .aio_write = generic_file_aio_write,
706 .open = v9fs_file_open,
707 .release = v9fs_dir_release,
708 .lock = v9fs_file_lock,
709 .mmap = v9fs_file_mmap,
710 .fsync = v9fs_file_fsync,
711 };
712
713 const struct file_operations v9fs_cached_file_operations_dotl = {
714 .llseek = generic_file_llseek,
715 .read = v9fs_cached_file_read,
716 .write = v9fs_cached_file_write,
717 .aio_read = generic_file_aio_read,
718 .aio_write = generic_file_aio_write,
719 .open = v9fs_file_open,
720 .release = v9fs_dir_release,
721 .lock = v9fs_file_lock_dotl,
722 .flock = v9fs_file_flock_dotl,
723 .mmap = v9fs_file_mmap,
724 .fsync = v9fs_file_fsync_dotl,
725 };
726
727 const struct file_operations v9fs_file_operations = {
728 .llseek = generic_file_llseek,
729 .read = v9fs_file_read,
730 .write = v9fs_file_write,
731 .open = v9fs_file_open,
732 .release = v9fs_dir_release,
733 .lock = v9fs_file_lock,
734 .mmap = generic_file_readonly_mmap,
735 .fsync = v9fs_file_fsync,
736 };
737
738 const struct file_operations v9fs_file_operations_dotl = {
739 .llseek = generic_file_llseek,
740 .read = v9fs_file_read,
741 .write = v9fs_file_write,
742 .open = v9fs_file_open,
743 .release = v9fs_dir_release,
744 .lock = v9fs_file_lock_dotl,
745 .flock = v9fs_file_flock_dotl,
746 .mmap = generic_file_readonly_mmap,
747 .fsync = v9fs_file_fsync_dotl,
748 };
This page took 0.045696 seconds and 4 git commands to generate.