1
2
3
4
5
6
7
8
9
10
11
12#include <linux/module.h>
13#include <linux/slab.h>
14#include <linux/compiler.h>
15#include <linux/fs.h>
16#include <linux/uaccess.h>
17#include <linux/aio.h>
18#include <linux/capability.h>
19#include <linux/kernel_stat.h>
20#include <linux/mm.h>
21#include <linux/swap.h>
22#include <linux/mman.h>
23#include <linux/pagemap.h>
24#include <linux/file.h>
25#include <linux/uio.h>
26#include <linux/hash.h>
27#include <linux/writeback.h>
28#include <linux/backing-dev.h>
29#include <linux/pagevec.h>
30#include <linux/blkdev.h>
31#include <linux/security.h>
32#include <linux/syscalls.h>
33#include <linux/cpuset.h>
34#include <linux/hardirq.h>
35#include <linux/memcontrol.h>
36#include <linux/mm_inline.h>
37#include "internal.h"
38
39
40
41
42#include <linux/buffer_head.h>
43
44#include <asm/mman.h>
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115void __remove_from_page_cache(struct page *page)
116{
117 struct address_space *mapping = page->mapping;
118
119 radix_tree_delete(&mapping->page_tree, page->index);
120 page->mapping = NULL;
121 mapping->nrpages--;
122 __dec_zone_page_state(page, NR_FILE_PAGES);
123 BUG_ON(page_mapped(page));
124 mem_cgroup_uncharge_cache_page(page);
125
126
127
128
129
130
131
132
133 if (PageDirty(page) && mapping_cap_account_dirty(mapping)) {
134 dec_zone_page_state(page, NR_FILE_DIRTY);
135 dec_bdi_stat(mapping->backing_dev_info, BDI_RECLAIMABLE);
136 }
137}
138
139void remove_from_page_cache(struct page *page)
140{
141 struct address_space *mapping = page->mapping;
142
143 BUG_ON(!PageLocked(page));
144
145 spin_lock_irq(&mapping->tree_lock);
146 __remove_from_page_cache(page);
147 spin_unlock_irq(&mapping->tree_lock);
148}
149
150static int sync_page(void *word)
151{
152 struct address_space *mapping;
153 struct page *page;
154
155 page = container_of((unsigned long *)word, struct page, flags);
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178 smp_mb();
179 mapping = page_mapping(page);
180 if (mapping && mapping->a_ops && mapping->a_ops->sync_page)
181 mapping->a_ops->sync_page(page);
182 io_schedule();
183 return 0;
184}
185
186static int sync_page_killable(void *word)
187{
188 sync_page(word);
189 return fatal_signal_pending(current) ? -EINTR : 0;
190}
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
208 loff_t end, int sync_mode)
209{
210 int ret;
211 struct writeback_control wbc = {
212 .sync_mode = sync_mode,
213 .nr_to_write = LONG_MAX,
214 .range_start = start,
215 .range_end = end,
216 };
217
218 if (!mapping_cap_writeback_dirty(mapping))
219 return 0;
220
221 ret = do_writepages(mapping, &wbc);
222 return ret;
223}
224
225static inline int __filemap_fdatawrite(struct address_space *mapping,
226 int sync_mode)
227{
228 return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode);
229}
230
231int filemap_fdatawrite(struct address_space *mapping)
232{
233 return __filemap_fdatawrite(mapping, WB_SYNC_ALL);
234}
235EXPORT_SYMBOL(filemap_fdatawrite);
236
237int filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
238 loff_t end)
239{
240 return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL);
241}
242EXPORT_SYMBOL(filemap_fdatawrite_range);
243
244
245
246
247
248
249
250
251int filemap_flush(struct address_space *mapping)
252{
253 return __filemap_fdatawrite(mapping, WB_SYNC_NONE);
254}
255EXPORT_SYMBOL(filemap_flush);
256
257
258
259
260
261
262
263
264
265
266int wait_on_page_writeback_range(struct address_space *mapping,
267 pgoff_t start, pgoff_t end)
268{
269 struct pagevec pvec;
270 int nr_pages;
271 int ret = 0;
272 pgoff_t index;
273
274 if (end < start)
275 return 0;
276
277 pagevec_init(&pvec, 0);
278 index = start;
279 while ((index <= end) &&
280 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
281 PAGECACHE_TAG_WRITEBACK,
282 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1)) != 0) {
283 unsigned i;
284
285 for (i = 0; i < nr_pages; i++) {
286 struct page *page = pvec.pages[i];
287
288
289 if (page->index > end)
290 continue;
291
292 wait_on_page_writeback(page);
293 if (PageError(page))
294 ret = -EIO;
295 }
296 pagevec_release(&pvec);
297 cond_resched();
298 }
299
300
301 if (test_and_clear_bit(AS_ENOSPC, &mapping->flags))
302 ret = -ENOSPC;
303 if (test_and_clear_bit(AS_EIO, &mapping->flags))
304 ret = -EIO;
305
306 return ret;
307}
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323int sync_page_range(struct inode *inode, struct address_space *mapping,
324 loff_t pos, loff_t count)
325{
326 pgoff_t start = pos >> PAGE_CACHE_SHIFT;
327 pgoff_t end = (pos + count - 1) >> PAGE_CACHE_SHIFT;
328 int ret;
329
330 if (!mapping_cap_writeback_dirty(mapping) || !count)
331 return 0;
332 ret = filemap_fdatawrite_range(mapping, pos, pos + count - 1);
333 if (ret == 0) {
334 mutex_lock(&inode->i_mutex);
335 ret = generic_osync_inode(inode, mapping, OSYNC_METADATA);
336 mutex_unlock(&inode->i_mutex);
337 }
338 if (ret == 0)
339 ret = wait_on_page_writeback_range(mapping, start, end);
340 return ret;
341}
342EXPORT_SYMBOL(sync_page_range);
343
344
345
346
347
348
349
350
351
352
353
354
355int sync_page_range_nolock(struct inode *inode, struct address_space *mapping,
356 loff_t pos, loff_t count)
357{
358 pgoff_t start = pos >> PAGE_CACHE_SHIFT;
359 pgoff_t end = (pos + count - 1) >> PAGE_CACHE_SHIFT;
360 int ret;
361
362 if (!mapping_cap_writeback_dirty(mapping) || !count)
363 return 0;
364 ret = filemap_fdatawrite_range(mapping, pos, pos + count - 1);
365 if (ret == 0)
366 ret = generic_osync_inode(inode, mapping, OSYNC_METADATA);
367 if (ret == 0)
368 ret = wait_on_page_writeback_range(mapping, start, end);
369 return ret;
370}
371EXPORT_SYMBOL(sync_page_range_nolock);
372
373
374
375
376
377
378
379
380int filemap_fdatawait(struct address_space *mapping)
381{
382 loff_t i_size = i_size_read(mapping->host);
383
384 if (i_size == 0)
385 return 0;
386
387 return wait_on_page_writeback_range(mapping, 0,
388 (i_size - 1) >> PAGE_CACHE_SHIFT);
389}
390EXPORT_SYMBOL(filemap_fdatawait);
391
392int filemap_write_and_wait(struct address_space *mapping)
393{
394 int err = 0;
395
396 if (mapping->nrpages) {
397 err = filemap_fdatawrite(mapping);
398
399
400
401
402
403
404 if (err != -EIO) {
405 int err2 = filemap_fdatawait(mapping);
406 if (!err)
407 err = err2;
408 }
409 }
410 return err;
411}
412EXPORT_SYMBOL(filemap_write_and_wait);
413
414
415
416
417
418
419
420
421
422
423
424
425int filemap_write_and_wait_range(struct address_space *mapping,
426 loff_t lstart, loff_t lend)
427{
428 int err = 0;
429
430 if (mapping->nrpages) {
431 err = __filemap_fdatawrite_range(mapping, lstart, lend,
432 WB_SYNC_ALL);
433
434 if (err != -EIO) {
435 int err2 = wait_on_page_writeback_range(mapping,
436 lstart >> PAGE_CACHE_SHIFT,
437 lend >> PAGE_CACHE_SHIFT);
438 if (!err)
439 err = err2;
440 }
441 }
442 return err;
443}
444
445
446
447
448
449
450
451
452
453
454
455int add_to_page_cache_locked(struct page *page, struct address_space *mapping,
456 pgoff_t offset, gfp_t gfp_mask)
457{
458 int error;
459
460 VM_BUG_ON(!PageLocked(page));
461
462 error = mem_cgroup_cache_charge(page, current->mm,
463 gfp_mask & ~__GFP_HIGHMEM);
464 if (error)
465 goto out;
466
467 error = radix_tree_preload(gfp_mask & ~__GFP_HIGHMEM);
468 if (error == 0) {
469 page_cache_get(page);
470 page->mapping = mapping;
471 page->index = offset;
472
473 spin_lock_irq(&mapping->tree_lock);
474 error = radix_tree_insert(&mapping->page_tree, offset, page);
475 if (likely(!error)) {
476 mapping->nrpages++;
477 __inc_zone_page_state(page, NR_FILE_PAGES);
478 } else {
479 page->mapping = NULL;
480 mem_cgroup_uncharge_cache_page(page);
481 page_cache_release(page);
482 }
483
484 spin_unlock_irq(&mapping->tree_lock);
485 radix_tree_preload_end();
486 } else
487 mem_cgroup_uncharge_cache_page(page);
488out:
489 return error;
490}
491EXPORT_SYMBOL(add_to_page_cache_locked);
492
493int add_to_page_cache_lru(struct page *page, struct address_space *mapping,
494 pgoff_t offset, gfp_t gfp_mask)
495{
496 int ret;
497
498
499
500
501
502
503
504 if (mapping_cap_swap_backed(mapping))
505 SetPageSwapBacked(page);
506
507 ret = add_to_page_cache(page, mapping, offset, gfp_mask);
508 if (ret == 0) {
509 if (page_is_file_cache(page))
510 lru_cache_add_file(page);
511 else
512 lru_cache_add_active_anon(page);
513 }
514 return ret;
515}
516
517#ifdef CONFIG_NUMA
518struct page *__page_cache_alloc(gfp_t gfp)
519{
520 if (cpuset_do_page_mem_spread()) {
521 int n = cpuset_mem_spread_node();
522 return alloc_pages_node(n, gfp, 0);
523 }
524 return alloc_pages(gfp, 0);
525}
526EXPORT_SYMBOL(__page_cache_alloc);
527#endif
528
529static int __sleep_on_page_lock(void *word)
530{
531 io_schedule();
532 return 0;
533}
534
535
536
537
538
539
540
541
542
543
544
545static wait_queue_head_t *page_waitqueue(struct page *page)
546{
547 const struct zone *zone = page_zone(page);
548
549 return &zone->wait_table[hash_ptr(page, zone->wait_table_bits)];
550}
551
552static inline void wake_up_page(struct page *page, int bit)
553{
554 __wake_up_bit(page_waitqueue(page), &page->flags, bit);
555}
556
557void wait_on_page_bit(struct page *page, int bit_nr)
558{
559 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
560
561 if (test_bit(bit_nr, &page->flags))
562 __wait_on_bit(page_waitqueue(page), &wait, sync_page,
563 TASK_UNINTERRUPTIBLE);
564}
565EXPORT_SYMBOL(wait_on_page_bit);
566
567
568
569
570
571
572
573
574
575
576
577
578
579void unlock_page(struct page *page)
580{
581 VM_BUG_ON(!PageLocked(page));
582 clear_bit_unlock(PG_locked, &page->flags);
583 smp_mb__after_clear_bit();
584 wake_up_page(page, PG_locked);
585}
586EXPORT_SYMBOL(unlock_page);
587
588
589
590
591
592void end_page_writeback(struct page *page)
593{
594 if (TestClearPageReclaim(page))
595 rotate_reclaimable_page(page);
596
597 if (!test_clear_page_writeback(page))
598 BUG();
599
600 smp_mb__after_clear_bit();
601 wake_up_page(page, PG_writeback);
602}
603EXPORT_SYMBOL(end_page_writeback);
604
605
606
607
608
609
610
611
612
613
614void __lock_page(struct page *page)
615{
616 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
617
618 __wait_on_bit_lock(page_waitqueue(page), &wait, sync_page,
619 TASK_UNINTERRUPTIBLE);
620}
621EXPORT_SYMBOL(__lock_page);
622
623int __lock_page_killable(struct page *page)
624{
625 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
626
627 return __wait_on_bit_lock(page_waitqueue(page), &wait,
628 sync_page_killable, TASK_KILLABLE);
629}
630
631
632
633
634
635
636
637
638void __lock_page_nosync(struct page *page)
639{
640 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
641 __wait_on_bit_lock(page_waitqueue(page), &wait, __sleep_on_page_lock,
642 TASK_UNINTERRUPTIBLE);
643}
644
645
646
647
648
649
650
651
652
653struct page *find_get_page(struct address_space *mapping, pgoff_t offset)
654{
655 void **pagep;
656 struct page *page;
657
658 rcu_read_lock();
659repeat:
660 page = NULL;
661 pagep = radix_tree_lookup_slot(&mapping->page_tree, offset);
662 if (pagep) {
663 page = radix_tree_deref_slot(pagep);
664 if (unlikely(!page || page == RADIX_TREE_RETRY))
665 goto repeat;
666
667 if (!page_cache_get_speculative(page))
668 goto repeat;
669
670
671
672
673
674
675 if (unlikely(page != *pagep)) {
676 page_cache_release(page);
677 goto repeat;
678 }
679 }
680 rcu_read_unlock();
681
682 return page;
683}
684EXPORT_SYMBOL(find_get_page);
685
686
687
688
689
690
691
692
693
694
695
696struct page *find_lock_page(struct address_space *mapping, pgoff_t offset)
697{
698 struct page *page;
699
700repeat:
701 page = find_get_page(mapping, offset);
702 if (page) {
703 lock_page(page);
704
705 if (unlikely(page->mapping != mapping)) {
706 unlock_page(page);
707 page_cache_release(page);
708 goto repeat;
709 }
710 VM_BUG_ON(page->index != offset);
711 }
712 return page;
713}
714EXPORT_SYMBOL(find_lock_page);
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733struct page *find_or_create_page(struct address_space *mapping,
734 pgoff_t index, gfp_t gfp_mask)
735{
736 struct page *page;
737 int err;
738repeat:
739 page = find_lock_page(mapping, index);
740 if (!page) {
741 page = __page_cache_alloc(gfp_mask);
742 if (!page)
743 return NULL;
744 err = add_to_page_cache_lru(page, mapping, index, gfp_mask);
745 if (unlikely(err)) {
746 page_cache_release(page);
747 page = NULL;
748 if (err == -EEXIST)
749 goto repeat;
750 }
751 }
752 return page;
753}
754EXPORT_SYMBOL(find_or_create_page);
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772unsigned find_get_pages(struct address_space *mapping, pgoff_t start,
773 unsigned int nr_pages, struct page **pages)
774{
775 unsigned int i;
776 unsigned int ret;
777 unsigned int nr_found;
778
779 rcu_read_lock();
780restart:
781 nr_found = radix_tree_gang_lookup_slot(&mapping->page_tree,
782 (void ***)pages, start, nr_pages);
783 ret = 0;
784 for (i = 0; i < nr_found; i++) {
785 struct page *page;
786repeat:
787 page = radix_tree_deref_slot((void **)pages[i]);
788 if (unlikely(!page))
789 continue;
790
791
792
793
794 if (unlikely(page == RADIX_TREE_RETRY))
795 goto restart;
796
797 if (!page_cache_get_speculative(page))
798 goto repeat;
799
800
801 if (unlikely(page != *((void **)pages[i]))) {
802 page_cache_release(page);
803 goto repeat;
804 }
805
806 pages[ret] = page;
807 ret++;
808 }
809 rcu_read_unlock();
810 return ret;
811}
812
813
814
815
816
817
818
819
820
821
822
823
824
825unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t index,
826 unsigned int nr_pages, struct page **pages)
827{
828 unsigned int i;
829 unsigned int ret;
830 unsigned int nr_found;
831
832 rcu_read_lock();
833restart:
834 nr_found = radix_tree_gang_lookup_slot(&mapping->page_tree,
835 (void ***)pages, index, nr_pages);
836 ret = 0;
837 for (i = 0; i < nr_found; i++) {
838 struct page *page;
839repeat:
840 page = radix_tree_deref_slot((void **)pages[i]);
841 if (unlikely(!page))
842 continue;
843
844
845
846
847 if (unlikely(page == RADIX_TREE_RETRY))
848 goto restart;
849
850 if (page->mapping == NULL || page->index != index)
851 break;
852
853 if (!page_cache_get_speculative(page))
854 goto repeat;
855
856
857 if (unlikely(page != *((void **)pages[i]))) {
858 page_cache_release(page);
859 goto repeat;
860 }
861
862 pages[ret] = page;
863 ret++;
864 index++;
865 }
866 rcu_read_unlock();
867 return ret;
868}
869EXPORT_SYMBOL(find_get_pages_contig);
870
871
872
873
874
875
876
877
878
879
880
881
882unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index,
883 int tag, unsigned int nr_pages, struct page **pages)
884{
885 unsigned int i;
886 unsigned int ret;
887 unsigned int nr_found;
888
889 rcu_read_lock();
890restart:
891 nr_found = radix_tree_gang_lookup_tag_slot(&mapping->page_tree,
892 (void ***)pages, *index, nr_pages, tag);
893 ret = 0;
894 for (i = 0; i < nr_found; i++) {
895 struct page *page;
896repeat:
897 page = radix_tree_deref_slot((void **)pages[i]);
898 if (unlikely(!page))
899 continue;
900
901
902
903
904 if (unlikely(page == RADIX_TREE_RETRY))
905 goto restart;
906
907 if (!page_cache_get_speculative(page))
908 goto repeat;
909
910
911 if (unlikely(page != *((void **)pages[i]))) {
912 page_cache_release(page);
913 goto repeat;
914 }
915
916 pages[ret] = page;
917 ret++;
918 }
919 rcu_read_unlock();
920
921 if (ret)
922 *index = pages[ret - 1]->index + 1;
923
924 return ret;
925}
926EXPORT_SYMBOL(find_get_pages_tag);
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941struct page *
942grab_cache_page_nowait(struct address_space *mapping, pgoff_t index)
943{
944 struct page *page = find_get_page(mapping, index);
945
946 if (page) {
947 if (trylock_page(page))
948 return page;
949 page_cache_release(page);
950 return NULL;
951 }
952 page = __page_cache_alloc(mapping_gfp_mask(mapping) & ~__GFP_FS);
953 if (page && add_to_page_cache_lru(page, mapping, index, GFP_KERNEL)) {
954 page_cache_release(page);
955 page = NULL;
956 }
957 return page;
958}
959EXPORT_SYMBOL(grab_cache_page_nowait);
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976static void shrink_readahead_size_eio(struct file *filp,
977 struct file_ra_state *ra)
978{
979 if (!ra->ra_pages)
980 return;
981
982 ra->ra_pages /= 4;
983}
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998static void do_generic_file_read(struct file *filp, loff_t *ppos,
999 read_descriptor_t *desc, read_actor_t actor)
1000{
1001 struct address_space *mapping = filp->f_mapping;
1002 struct inode *inode = mapping->host;
1003 struct file_ra_state *ra = &filp->f_ra;
1004 pgoff_t index;
1005 pgoff_t last_index;
1006 pgoff_t prev_index;
1007 unsigned long offset;
1008 unsigned int prev_offset;
1009 int error;
1010
1011 index = *ppos >> PAGE_CACHE_SHIFT;
1012 prev_index = ra->prev_pos >> PAGE_CACHE_SHIFT;
1013 prev_offset = ra->prev_pos & (PAGE_CACHE_SIZE-1);
1014 last_index = (*ppos + desc->count + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
1015 offset = *ppos & ~PAGE_CACHE_MASK;
1016
1017 for (;;) {
1018 struct page *page;
1019 pgoff_t end_index;
1020 loff_t isize;
1021 unsigned long nr, ret;
1022
1023 cond_resched();
1024find_page:
1025 page = find_get_page(mapping, index);
1026 if (!page) {
1027 page_cache_sync_readahead(mapping,
1028 ra, filp,
1029 index, last_index - index);
1030 page = find_get_page(mapping, index);
1031 if (unlikely(page == NULL))
1032 goto no_cached_page;
1033 }
1034 if (PageReadahead(page)) {
1035 page_cache_async_readahead(mapping,
1036 ra, filp, page,
1037 index, last_index - index);
1038 }
1039 if (!PageUptodate(page)) {
1040 if (inode->i_blkbits == PAGE_CACHE_SHIFT ||
1041 !mapping->a_ops->is_partially_uptodate)
1042 goto page_not_up_to_date;
1043 if (!trylock_page(page))
1044 goto page_not_up_to_date;
1045 if (!mapping->a_ops->is_partially_uptodate(page,
1046 desc, offset))
1047 goto page_not_up_to_date_locked;
1048 unlock_page(page);
1049 }
1050page_ok:
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060 isize = i_size_read(inode);
1061 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
1062 if (unlikely(!isize || index > end_index)) {
1063 page_cache_release(page);
1064 goto out;
1065 }
1066
1067
1068 nr = PAGE_CACHE_SIZE;
1069 if (index == end_index) {
1070 nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
1071 if (nr <= offset) {
1072 page_cache_release(page);
1073 goto out;
1074 }
1075 }
1076 nr = nr - offset;
1077
1078
1079
1080
1081
1082 if (mapping_writably_mapped(mapping))
1083 flush_dcache_page(page);
1084
1085
1086
1087
1088
1089 if (prev_index != index || offset != prev_offset)
1090 mark_page_accessed(page);
1091 prev_index = index;
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103 ret = actor(desc, page, offset, nr);
1104 offset += ret;
1105 index += offset >> PAGE_CACHE_SHIFT;
1106 offset &= ~PAGE_CACHE_MASK;
1107 prev_offset = offset;
1108
1109 page_cache_release(page);
1110 if (ret == nr && desc->count)
1111 continue;
1112 goto out;
1113
1114page_not_up_to_date:
1115
1116 error = lock_page_killable(page);
1117 if (unlikely(error))
1118 goto readpage_error;
1119
1120page_not_up_to_date_locked:
1121
1122 if (!page->mapping) {
1123 unlock_page(page);
1124 page_cache_release(page);
1125 continue;
1126 }
1127
1128
1129 if (PageUptodate(page)) {
1130 unlock_page(page);
1131 goto page_ok;
1132 }
1133
1134readpage:
1135
1136 error = mapping->a_ops->readpage(filp, page);
1137
1138 if (unlikely(error)) {
1139 if (error == AOP_TRUNCATED_PAGE) {
1140 page_cache_release(page);
1141 goto find_page;
1142 }
1143 goto readpage_error;
1144 }
1145
1146 if (!PageUptodate(page)) {
1147 error = lock_page_killable(page);
1148 if (unlikely(error))
1149 goto readpage_error;
1150 if (!PageUptodate(page)) {
1151 if (page->mapping == NULL) {
1152
1153
1154
1155 unlock_page(page);
1156 page_cache_release(page);
1157 goto find_page;
1158 }
1159 unlock_page(page);
1160 shrink_readahead_size_eio(filp, ra);
1161 error = -EIO;
1162 goto readpage_error;
1163 }
1164 unlock_page(page);
1165 }
1166
1167 goto page_ok;
1168
1169readpage_error:
1170
1171 desc->error = error;
1172 page_cache_release(page);
1173 goto out;
1174
1175no_cached_page:
1176
1177
1178
1179
1180 page = page_cache_alloc_cold(mapping);
1181 if (!page) {
1182 desc->error = -ENOMEM;
1183 goto out;
1184 }
1185 error = add_to_page_cache_lru(page, mapping,
1186 index, GFP_KERNEL);
1187 if (error) {
1188 page_cache_release(page);
1189 if (error == -EEXIST)
1190 goto find_page;
1191 desc->error = error;
1192 goto out;
1193 }
1194 goto readpage;
1195 }
1196
1197out:
1198 ra->prev_pos = prev_index;
1199 ra->prev_pos <<= PAGE_CACHE_SHIFT;
1200 ra->prev_pos |= prev_offset;
1201
1202 *ppos = ((loff_t)index << PAGE_CACHE_SHIFT) + offset;
1203 file_accessed(filp);
1204}
1205
1206int file_read_actor(read_descriptor_t *desc, struct page *page,
1207 unsigned long offset, unsigned long size)
1208{
1209 char *kaddr;
1210 unsigned long left, count = desc->count;
1211
1212 if (size > count)
1213 size = count;
1214
1215
1216
1217
1218
1219 if (!fault_in_pages_writeable(desc->arg.buf, size)) {
1220 kaddr = kmap_atomic(page, KM_USER0);
1221 left = __copy_to_user_inatomic(desc->arg.buf,
1222 kaddr + offset, size);
1223 kunmap_atomic(kaddr, KM_USER0);
1224 if (left == 0)
1225 goto success;
1226 }
1227
1228
1229 kaddr = kmap(page);
1230 left = __copy_to_user(desc->arg.buf, kaddr + offset, size);
1231 kunmap(page);
1232
1233 if (left) {
1234 size -= left;
1235 desc->error = -EFAULT;
1236 }
1237success:
1238 desc->count = count - size;
1239 desc->written += size;
1240 desc->arg.buf += size;
1241 return size;
1242}
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255int generic_segment_checks(const struct iovec *iov,
1256 unsigned long *nr_segs, size_t *count, int access_flags)
1257{
1258 unsigned long seg;
1259 size_t cnt = 0;
1260 for (seg = 0; seg < *nr_segs; seg++) {
1261 const struct iovec *iv = &iov[seg];
1262
1263
1264
1265
1266
1267 cnt += iv->iov_len;
1268 if (unlikely((ssize_t)(cnt|iv->iov_len) < 0))
1269 return -EINVAL;
1270 if (access_ok(access_flags, iv->iov_base, iv->iov_len))
1271 continue;
1272 if (seg == 0)
1273 return -EFAULT;
1274 *nr_segs = seg;
1275 cnt -= iv->iov_len;
1276 break;
1277 }
1278 *count = cnt;
1279 return 0;
1280}
1281EXPORT_SYMBOL(generic_segment_checks);
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293ssize_t
1294generic_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
1295 unsigned long nr_segs, loff_t pos)
1296{
1297 struct file *filp = iocb->ki_filp;
1298 ssize_t retval;
1299 unsigned long seg;
1300 size_t count;
1301 loff_t *ppos = &iocb->ki_pos;
1302
1303 count = 0;
1304 retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
1305 if (retval)
1306 return retval;
1307
1308
1309 if (filp->f_flags & O_DIRECT) {
1310 loff_t size;
1311 struct address_space *mapping;
1312 struct inode *inode;
1313
1314 mapping = filp->f_mapping;
1315 inode = mapping->host;
1316 if (!count)
1317 goto out;
1318 size = i_size_read(inode);
1319 if (pos < size) {
1320 retval = filemap_write_and_wait_range(mapping, pos,
1321 pos + iov_length(iov, nr_segs) - 1);
1322 if (!retval) {
1323 retval = mapping->a_ops->direct_IO(READ, iocb,
1324 iov, pos, nr_segs);
1325 }
1326 if (retval > 0)
1327 *ppos = pos + retval;
1328 if (retval) {
1329 file_accessed(filp);
1330 goto out;
1331 }
1332 }
1333 }
1334
1335 for (seg = 0; seg < nr_segs; seg++) {
1336 read_descriptor_t desc;
1337
1338 desc.written = 0;
1339 desc.arg.buf = iov[seg].iov_base;
1340 desc.count = iov[seg].iov_len;
1341 if (desc.count == 0)
1342 continue;
1343 desc.error = 0;
1344 do_generic_file_read(filp, ppos, &desc, file_read_actor);
1345 retval += desc.written;
1346 if (desc.error) {
1347 retval = retval ?: desc.error;
1348 break;
1349 }
1350 if (desc.count > 0)
1351 break;
1352 }
1353out:
1354 return retval;
1355}
1356EXPORT_SYMBOL(generic_file_aio_read);
1357
1358static ssize_t
1359do_readahead(struct address_space *mapping, struct file *filp,
1360 pgoff_t index, unsigned long nr)
1361{
1362 if (!mapping || !mapping->a_ops || !mapping->a_ops->readpage)
1363 return -EINVAL;
1364
1365 force_page_cache_readahead(mapping, filp, index,
1366 max_sane_readahead(nr));
1367 return 0;
1368}
1369
1370SYSCALL_DEFINE(readahead)(int fd, loff_t offset, size_t count)
1371{
1372 ssize_t ret;
1373 struct file *file;
1374
1375 ret = -EBADF;
1376 file = fget(fd);
1377 if (file) {
1378 if (file->f_mode & FMODE_READ) {
1379 struct address_space *mapping = file->f_mapping;
1380 pgoff_t start = offset >> PAGE_CACHE_SHIFT;
1381 pgoff_t end = (offset + count - 1) >> PAGE_CACHE_SHIFT;
1382 unsigned long len = end - start + 1;
1383 ret = do_readahead(mapping, file, start, len);
1384 }
1385 fput(file);
1386 }
1387 return ret;
1388}
1389#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
1390asmlinkage long SyS_readahead(long fd, loff_t offset, long count)
1391{
1392 return SYSC_readahead((int) fd, offset, (size_t) count);
1393}
1394SYSCALL_ALIAS(sys_readahead, SyS_readahead);
1395#endif
1396
1397#ifdef CONFIG_MMU
1398
1399
1400
1401
1402
1403
1404
1405
1406static int page_cache_read(struct file *file, pgoff_t offset)
1407{
1408 struct address_space *mapping = file->f_mapping;
1409 struct page *page;
1410 int ret;
1411
1412 do {
1413 page = page_cache_alloc_cold(mapping);
1414 if (!page)
1415 return -ENOMEM;
1416
1417 ret = add_to_page_cache_lru(page, mapping, offset, GFP_KERNEL);
1418 if (ret == 0)
1419 ret = mapping->a_ops->readpage(file, page);
1420 else if (ret == -EEXIST)
1421 ret = 0;
1422
1423 page_cache_release(page);
1424
1425 } while (ret == AOP_TRUNCATED_PAGE);
1426
1427 return ret;
1428}
1429
1430#define MMAP_LOTSAMISS (100)
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1445{
1446 int error;
1447 struct file *file = vma->vm_file;
1448 struct address_space *mapping = file->f_mapping;
1449 struct file_ra_state *ra = &file->f_ra;
1450 struct inode *inode = mapping->host;
1451 struct page *page;
1452 pgoff_t size;
1453 int did_readaround = 0;
1454 int ret = 0;
1455
1456 size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1457 if (vmf->pgoff >= size)
1458 return VM_FAULT_SIGBUS;
1459
1460
1461 if (VM_RandomReadHint(vma))
1462 goto no_cached_page;
1463
1464
1465
1466
1467retry_find:
1468 page = find_lock_page(mapping, vmf->pgoff);
1469
1470
1471
1472 if (VM_SequentialReadHint(vma)) {
1473 if (!page) {
1474 page_cache_sync_readahead(mapping, ra, file,
1475 vmf->pgoff, 1);
1476 page = find_lock_page(mapping, vmf->pgoff);
1477 if (!page)
1478 goto no_cached_page;
1479 }
1480 if (PageReadahead(page)) {
1481 page_cache_async_readahead(mapping, ra, file, page,
1482 vmf->pgoff, 1);
1483 }
1484 }
1485
1486 if (!page) {
1487 unsigned long ra_pages;
1488
1489 ra->mmap_miss++;
1490
1491
1492
1493
1494
1495 if (ra->mmap_miss > MMAP_LOTSAMISS)
1496 goto no_cached_page;
1497
1498
1499
1500
1501
1502 if (!did_readaround) {
1503 ret = VM_FAULT_MAJOR;
1504 count_vm_event(PGMAJFAULT);
1505 }
1506 did_readaround = 1;
1507 ra_pages = max_sane_readahead(file->f_ra.ra_pages);
1508 if (ra_pages) {
1509 pgoff_t start = 0;
1510
1511 if (vmf->pgoff > ra_pages / 2)
1512 start = vmf->pgoff - ra_pages / 2;
1513 do_page_cache_readahead(mapping, file, start, ra_pages);
1514 }
1515 page = find_lock_page(mapping, vmf->pgoff);
1516 if (!page)
1517 goto no_cached_page;
1518 }
1519
1520 if (!did_readaround)
1521 ra->mmap_miss--;
1522
1523
1524
1525
1526
1527 if (unlikely(!PageUptodate(page)))
1528 goto page_not_uptodate;
1529
1530
1531 size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1532 if (unlikely(vmf->pgoff >= size)) {
1533 unlock_page(page);
1534 page_cache_release(page);
1535 return VM_FAULT_SIGBUS;
1536 }
1537
1538
1539
1540
1541 mark_page_accessed(page);
1542 ra->prev_pos = (loff_t)page->index << PAGE_CACHE_SHIFT;
1543 vmf->page = page;
1544 return ret | VM_FAULT_LOCKED;
1545
1546no_cached_page:
1547
1548
1549
1550
1551 error = page_cache_read(file, vmf->pgoff);
1552
1553
1554
1555
1556
1557
1558 if (error >= 0)
1559 goto retry_find;
1560
1561
1562
1563
1564
1565
1566 if (error == -ENOMEM)
1567 return VM_FAULT_OOM;
1568 return VM_FAULT_SIGBUS;
1569
1570page_not_uptodate:
1571
1572 if (!did_readaround) {
1573 ret = VM_FAULT_MAJOR;
1574 count_vm_event(PGMAJFAULT);
1575 }
1576
1577
1578
1579
1580
1581
1582
1583 ClearPageError(page);
1584 error = mapping->a_ops->readpage(file, page);
1585 if (!error) {
1586 wait_on_page_locked(page);
1587 if (!PageUptodate(page))
1588 error = -EIO;
1589 }
1590 page_cache_release(page);
1591
1592 if (!error || error == AOP_TRUNCATED_PAGE)
1593 goto retry_find;
1594
1595
1596 shrink_readahead_size_eio(file, ra);
1597 return VM_FAULT_SIGBUS;
1598}
1599EXPORT_SYMBOL(filemap_fault);
1600
1601struct vm_operations_struct generic_file_vm_ops = {
1602 .fault = filemap_fault,
1603};
1604
1605
1606
1607int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
1608{
1609 struct address_space *mapping = file->f_mapping;
1610
1611 if (!mapping->a_ops->readpage)
1612 return -ENOEXEC;
1613 file_accessed(file);
1614 vma->vm_ops = &generic_file_vm_ops;
1615 vma->vm_flags |= VM_CAN_NONLINEAR;
1616 return 0;
1617}
1618
1619
1620
1621
1622int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
1623{
1624 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
1625 return -EINVAL;
1626 return generic_file_mmap(file, vma);
1627}
1628#else
1629int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
1630{
1631 return -ENOSYS;
1632}
1633int generic_file_readonly_mmap(struct file * file, struct vm_area_struct * vma)
1634{
1635 return -ENOSYS;
1636}
1637#endif
1638
1639EXPORT_SYMBOL(generic_file_mmap);
1640EXPORT_SYMBOL(generic_file_readonly_mmap);
1641
1642static struct page *__read_cache_page(struct address_space *mapping,
1643 pgoff_t index,
1644 int (*filler)(void *,struct page*),
1645 void *data)
1646{
1647 struct page *page;
1648 int err;
1649repeat:
1650 page = find_get_page(mapping, index);
1651 if (!page) {
1652 page = page_cache_alloc_cold(mapping);
1653 if (!page)
1654 return ERR_PTR(-ENOMEM);
1655 err = add_to_page_cache_lru(page, mapping, index, GFP_KERNEL);
1656 if (unlikely(err)) {
1657 page_cache_release(page);
1658 if (err == -EEXIST)
1659 goto repeat;
1660
1661 return ERR_PTR(err);
1662 }
1663 err = filler(data, page);
1664 if (err < 0) {
1665 page_cache_release(page);
1666 page = ERR_PTR(err);
1667 }
1668 }
1669 return page;
1670}
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687struct page *read_cache_page_async(struct address_space *mapping,
1688 pgoff_t index,
1689 int (*filler)(void *,struct page*),
1690 void *data)
1691{
1692 struct page *page;
1693 int err;
1694
1695retry:
1696 page = __read_cache_page(mapping, index, filler, data);
1697 if (IS_ERR(page))
1698 return page;
1699 if (PageUptodate(page))
1700 goto out;
1701
1702 lock_page(page);
1703 if (!page->mapping) {
1704 unlock_page(page);
1705 page_cache_release(page);
1706 goto retry;
1707 }
1708 if (PageUptodate(page)) {
1709 unlock_page(page);
1710 goto out;
1711 }
1712 err = filler(data, page);
1713 if (err < 0) {
1714 page_cache_release(page);
1715 return ERR_PTR(err);
1716 }
1717out:
1718 mark_page_accessed(page);
1719 return page;
1720}
1721EXPORT_SYMBOL(read_cache_page_async);
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735struct page *read_cache_page(struct address_space *mapping,
1736 pgoff_t index,
1737 int (*filler)(void *,struct page*),
1738 void *data)
1739{
1740 struct page *page;
1741
1742 page = read_cache_page_async(mapping, index, filler, data);
1743 if (IS_ERR(page))
1744 goto out;
1745 wait_on_page_locked(page);
1746 if (!PageUptodate(page)) {
1747 page_cache_release(page);
1748 page = ERR_PTR(-EIO);
1749 }
1750 out:
1751 return page;
1752}
1753EXPORT_SYMBOL(read_cache_page);
1754
1755
1756
1757
1758
1759
1760
1761int should_remove_suid(struct dentry *dentry)
1762{
1763 mode_t mode = dentry->d_inode->i_mode;
1764 int kill = 0;
1765
1766
1767 if (unlikely(mode & S_ISUID))
1768 kill = ATTR_KILL_SUID;
1769
1770
1771
1772
1773
1774 if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
1775 kill |= ATTR_KILL_SGID;
1776
1777 if (unlikely(kill && !capable(CAP_FSETID)))
1778 return kill;
1779
1780 return 0;
1781}
1782EXPORT_SYMBOL(should_remove_suid);
1783
1784static int __remove_suid(struct dentry *dentry, int kill)
1785{
1786 struct iattr newattrs;
1787
1788 newattrs.ia_valid = ATTR_FORCE | kill;
1789 return notify_change(dentry, &newattrs);
1790}
1791
1792int file_remove_suid(struct file *file)
1793{
1794 struct dentry *dentry = file->f_path.dentry;
1795 int killsuid = should_remove_suid(dentry);
1796 int killpriv = security_inode_need_killpriv(dentry);
1797 int error = 0;
1798
1799 if (killpriv < 0)
1800 return killpriv;
1801 if (killpriv)
1802 error = security_inode_killpriv(dentry);
1803 if (!error && killsuid)
1804 error = __remove_suid(dentry, killsuid);
1805
1806 return error;
1807}
1808EXPORT_SYMBOL(file_remove_suid);
1809
1810static size_t __iovec_copy_from_user_inatomic(char *vaddr,
1811 const struct iovec *iov, size_t base, size_t bytes)
1812{
1813 size_t copied = 0, left = 0;
1814
1815 while (bytes) {
1816 char __user *buf = iov->iov_base + base;
1817 int copy = min(bytes, iov->iov_len - base);
1818
1819 base = 0;
1820 left = __copy_from_user_inatomic_nocache(vaddr, buf, copy);
1821 copied += copy;
1822 bytes -= copy;
1823 vaddr += copy;
1824 iov++;
1825
1826 if (unlikely(left))
1827 break;
1828 }
1829 return copied - left;
1830}
1831
1832
1833
1834
1835
1836
1837size_t iov_iter_copy_from_user_atomic(struct page *page,
1838 struct iov_iter *i, unsigned long offset, size_t bytes)
1839{
1840 char *kaddr;
1841 size_t copied;
1842
1843 BUG_ON(!in_atomic());
1844 kaddr = kmap_atomic(page, KM_USER0);
1845 if (likely(i->nr_segs == 1)) {
1846 int left;
1847 char __user *buf = i->iov->iov_base + i->iov_offset;
1848 left = __copy_from_user_inatomic_nocache(kaddr + offset,
1849 buf, bytes);
1850 copied = bytes - left;
1851 } else {
1852 copied = __iovec_copy_from_user_inatomic(kaddr + offset,
1853 i->iov, i->iov_offset, bytes);
1854 }
1855 kunmap_atomic(kaddr, KM_USER0);
1856
1857 return copied;
1858}
1859EXPORT_SYMBOL(iov_iter_copy_from_user_atomic);
1860
1861
1862
1863
1864
1865
1866
1867size_t iov_iter_copy_from_user(struct page *page,
1868 struct iov_iter *i, unsigned long offset, size_t bytes)
1869{
1870 char *kaddr;
1871 size_t copied;
1872
1873 kaddr = kmap(page);
1874 if (likely(i->nr_segs == 1)) {
1875 int left;
1876 char __user *buf = i->iov->iov_base + i->iov_offset;
1877 left = __copy_from_user_nocache(kaddr + offset, buf, bytes);
1878 copied = bytes - left;
1879 } else {
1880 copied = __iovec_copy_from_user_inatomic(kaddr + offset,
1881 i->iov, i->iov_offset, bytes);
1882 }
1883 kunmap(page);
1884 return copied;
1885}
1886EXPORT_SYMBOL(iov_iter_copy_from_user);
1887
1888void iov_iter_advance(struct iov_iter *i, size_t bytes)
1889{
1890 BUG_ON(i->count < bytes);
1891
1892 if (likely(i->nr_segs == 1)) {
1893 i->iov_offset += bytes;
1894 i->count -= bytes;
1895 } else {
1896 const struct iovec *iov = i->iov;
1897 size_t base = i->iov_offset;
1898
1899
1900
1901
1902
1903 while (bytes || unlikely(i->count && !iov->iov_len)) {
1904 int copy;
1905
1906 copy = min(bytes, iov->iov_len - base);
1907 BUG_ON(!i->count || i->count < copy);
1908 i->count -= copy;
1909 bytes -= copy;
1910 base += copy;
1911 if (iov->iov_len == base) {
1912 iov++;
1913 base = 0;
1914 }
1915 }
1916 i->iov = iov;
1917 i->iov_offset = base;
1918 }
1919}
1920EXPORT_SYMBOL(iov_iter_advance);
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes)
1932{
1933 char __user *buf = i->iov->iov_base + i->iov_offset;
1934 bytes = min(bytes, i->iov->iov_len - i->iov_offset);
1935 return fault_in_pages_readable(buf, bytes);
1936}
1937EXPORT_SYMBOL(iov_iter_fault_in_readable);
1938
1939
1940
1941
1942size_t iov_iter_single_seg_count(struct iov_iter *i)
1943{
1944 const struct iovec *iov = i->iov;
1945 if (i->nr_segs == 1)
1946 return i->count;
1947 else
1948 return min(i->count, iov->iov_len - i->iov_offset);
1949}
1950EXPORT_SYMBOL(iov_iter_single_seg_count);
1951
1952
1953
1954
1955
1956
1957
1958
1959inline int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk)
1960{
1961 struct inode *inode = file->f_mapping->host;
1962 unsigned long limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
1963
1964 if (unlikely(*pos < 0))
1965 return -EINVAL;
1966
1967 if (!isblk) {
1968
1969 if (file->f_flags & O_APPEND)
1970 *pos = i_size_read(inode);
1971
1972 if (limit != RLIM_INFINITY) {
1973 if (*pos >= limit) {
1974 send_sig(SIGXFSZ, current, 0);
1975 return -EFBIG;
1976 }
1977 if (*count > limit - (typeof(limit))*pos) {
1978 *count = limit - (typeof(limit))*pos;
1979 }
1980 }
1981 }
1982
1983
1984
1985
1986 if (unlikely(*pos + *count > MAX_NON_LFS &&
1987 !(file->f_flags & O_LARGEFILE))) {
1988 if (*pos >= MAX_NON_LFS) {
1989 return -EFBIG;
1990 }
1991 if (*count > MAX_NON_LFS - (unsigned long)*pos) {
1992 *count = MAX_NON_LFS - (unsigned long)*pos;
1993 }
1994 }
1995
1996
1997
1998
1999
2000
2001
2002
2003 if (likely(!isblk)) {
2004 if (unlikely(*pos >= inode->i_sb->s_maxbytes)) {
2005 if (*count || *pos > inode->i_sb->s_maxbytes) {
2006 return -EFBIG;
2007 }
2008
2009 }
2010
2011 if (unlikely(*pos + *count > inode->i_sb->s_maxbytes))
2012 *count = inode->i_sb->s_maxbytes - *pos;
2013 } else {
2014#ifdef CONFIG_BLOCK
2015 loff_t isize;
2016 if (bdev_read_only(I_BDEV(inode)))
2017 return -EPERM;
2018 isize = i_size_read(inode);
2019 if (*pos >= isize) {
2020 if (*count || *pos > isize)
2021 return -ENOSPC;
2022 }
2023
2024 if (*pos + *count > isize)
2025 *count = isize - *pos;
2026#else
2027 return -EPERM;
2028#endif
2029 }
2030 return 0;
2031}
2032EXPORT_SYMBOL(generic_write_checks);
2033
2034int pagecache_write_begin(struct file *file, struct address_space *mapping,
2035 loff_t pos, unsigned len, unsigned flags,
2036 struct page **pagep, void **fsdata)
2037{
2038 const struct address_space_operations *aops = mapping->a_ops;
2039
2040 return aops->write_begin(file, mapping, pos, len, flags,
2041 pagep, fsdata);
2042}
2043EXPORT_SYMBOL(pagecache_write_begin);
2044
2045int pagecache_write_end(struct file *file, struct address_space *mapping,
2046 loff_t pos, unsigned len, unsigned copied,
2047 struct page *page, void *fsdata)
2048{
2049 const struct address_space_operations *aops = mapping->a_ops;
2050
2051 mark_page_accessed(page);
2052 return aops->write_end(file, mapping, pos, len, copied, page, fsdata);
2053}
2054EXPORT_SYMBOL(pagecache_write_end);
2055
2056ssize_t
2057generic_file_direct_write(struct kiocb *iocb, const struct iovec *iov,
2058 unsigned long *nr_segs, loff_t pos, loff_t *ppos,
2059 size_t count, size_t ocount)
2060{
2061 struct file *file = iocb->ki_filp;
2062 struct address_space *mapping = file->f_mapping;
2063 struct inode *inode = mapping->host;
2064 ssize_t written;
2065 size_t write_len;
2066 pgoff_t end;
2067
2068 if (count != ocount)
2069 *nr_segs = iov_shorten((struct iovec *)iov, *nr_segs, count);
2070
2071 write_len = iov_length(iov, *nr_segs);
2072 end = (pos + write_len - 1) >> PAGE_CACHE_SHIFT;
2073
2074 written = filemap_write_and_wait_range(mapping, pos, pos + write_len - 1);
2075 if (written)
2076 goto out;
2077
2078
2079
2080
2081
2082
2083
2084 if (mapping->nrpages) {
2085 written = invalidate_inode_pages2_range(mapping,
2086 pos >> PAGE_CACHE_SHIFT, end);
2087
2088
2089
2090
2091 if (written) {
2092 if (written == -EBUSY)
2093 return 0;
2094 goto out;
2095 }
2096 }
2097
2098 written = mapping->a_ops->direct_IO(WRITE, iocb, iov, pos, *nr_segs);
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108 if (mapping->nrpages) {
2109 invalidate_inode_pages2_range(mapping,
2110 pos >> PAGE_CACHE_SHIFT, end);
2111 }
2112
2113 if (written > 0) {
2114 loff_t end = pos + written;
2115 if (end > i_size_read(inode) && !S_ISBLK(inode->i_mode)) {
2116 i_size_write(inode, end);
2117 mark_inode_dirty(inode);
2118 }
2119 *ppos = end;
2120 }
2121
2122
2123
2124
2125
2126
2127
2128out:
2129 if ((written >= 0 || written == -EIOCBQUEUED) &&
2130 ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
2131 int err = generic_osync_inode(inode, mapping, OSYNC_METADATA);
2132 if (err < 0)
2133 written = err;
2134 }
2135 return written;
2136}
2137EXPORT_SYMBOL(generic_file_direct_write);
2138
2139
2140
2141
2142
2143struct page *grab_cache_page_write_begin(struct address_space *mapping,
2144 pgoff_t index, unsigned flags)
2145{
2146 int status;
2147 struct page *page;
2148 gfp_t gfp_notmask = 0;
2149 if (flags & AOP_FLAG_NOFS)
2150 gfp_notmask = __GFP_FS;
2151repeat:
2152 page = find_lock_page(mapping, index);
2153 if (likely(page))
2154 return page;
2155
2156 page = __page_cache_alloc(mapping_gfp_mask(mapping) & ~gfp_notmask);
2157 if (!page)
2158 return NULL;
2159 status = add_to_page_cache_lru(page, mapping, index,
2160 GFP_KERNEL & ~gfp_notmask);
2161 if (unlikely(status)) {
2162 page_cache_release(page);
2163 if (status == -EEXIST)
2164 goto repeat;
2165 return NULL;
2166 }
2167 return page;
2168}
2169EXPORT_SYMBOL(grab_cache_page_write_begin);
2170
2171static ssize_t generic_perform_write(struct file *file,
2172 struct iov_iter *i, loff_t pos)
2173{
2174 struct address_space *mapping = file->f_mapping;
2175 const struct address_space_operations *a_ops = mapping->a_ops;
2176 long status = 0;
2177 ssize_t written = 0;
2178 unsigned int flags = 0;
2179
2180
2181
2182
2183 if (segment_eq(get_fs(), KERNEL_DS))
2184 flags |= AOP_FLAG_UNINTERRUPTIBLE;
2185
2186 do {
2187 struct page *page;
2188 pgoff_t index;
2189 unsigned long offset;
2190 unsigned long bytes;
2191 size_t copied;
2192 void *fsdata;
2193
2194 offset = (pos & (PAGE_CACHE_SIZE - 1));
2195 index = pos >> PAGE_CACHE_SHIFT;
2196 bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2197 iov_iter_count(i));
2198
2199again:
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211 if (unlikely(iov_iter_fault_in_readable(i, bytes))) {
2212 status = -EFAULT;
2213 break;
2214 }
2215
2216 status = a_ops->write_begin(file, mapping, pos, bytes, flags,
2217 &page, &fsdata);
2218 if (unlikely(status))
2219 break;
2220
2221 pagefault_disable();
2222 copied = iov_iter_copy_from_user_atomic(page, i, offset, bytes);
2223 pagefault_enable();
2224 flush_dcache_page(page);
2225
2226 status = a_ops->write_end(file, mapping, pos, bytes, copied,
2227 page, fsdata);
2228 if (unlikely(status < 0))
2229 break;
2230 copied = status;
2231
2232 cond_resched();
2233
2234 iov_iter_advance(i, copied);
2235 if (unlikely(copied == 0)) {
2236
2237
2238
2239
2240
2241
2242
2243
2244 bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2245 iov_iter_single_seg_count(i));
2246 goto again;
2247 }
2248 pos += copied;
2249 written += copied;
2250
2251 balance_dirty_pages_ratelimited(mapping);
2252
2253 } while (iov_iter_count(i));
2254
2255 return written ? written : status;
2256}
2257
2258ssize_t
2259generic_file_buffered_write(struct kiocb *iocb, const struct iovec *iov,
2260 unsigned long nr_segs, loff_t pos, loff_t *ppos,
2261 size_t count, ssize_t written)
2262{
2263 struct file *file = iocb->ki_filp;
2264 struct address_space *mapping = file->f_mapping;
2265 const struct address_space_operations *a_ops = mapping->a_ops;
2266 struct inode *inode = mapping->host;
2267 ssize_t status;
2268 struct iov_iter i;
2269
2270 iov_iter_init(&i, iov, nr_segs, count, written);
2271 status = generic_perform_write(file, &i, pos);
2272
2273 if (likely(status >= 0)) {
2274 written += status;
2275 *ppos = pos + status;
2276
2277
2278
2279
2280
2281 if (unlikely((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
2282 if (!a_ops->writepage || !is_sync_kiocb(iocb))
2283 status = generic_osync_inode(inode, mapping,
2284 OSYNC_METADATA|OSYNC_DATA);
2285 }
2286 }
2287
2288
2289
2290
2291
2292
2293 if (unlikely(file->f_flags & O_DIRECT) && written)
2294 status = filemap_write_and_wait_range(mapping,
2295 pos, pos + written - 1);
2296
2297 return written ? written : status;
2298}
2299EXPORT_SYMBOL(generic_file_buffered_write);
2300
2301static ssize_t
2302__generic_file_aio_write_nolock(struct kiocb *iocb, const struct iovec *iov,
2303 unsigned long nr_segs, loff_t *ppos)
2304{
2305 struct file *file = iocb->ki_filp;
2306 struct address_space * mapping = file->f_mapping;
2307 size_t ocount;
2308 size_t count;
2309 struct inode *inode = mapping->host;
2310 loff_t pos;
2311 ssize_t written;
2312 ssize_t err;
2313
2314 ocount = 0;
2315 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
2316 if (err)
2317 return err;
2318
2319 count = ocount;
2320 pos = *ppos;
2321
2322 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
2323
2324
2325 current->backing_dev_info = mapping->backing_dev_info;
2326 written = 0;
2327
2328 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
2329 if (err)
2330 goto out;
2331
2332 if (count == 0)
2333 goto out;
2334
2335 err = file_remove_suid(file);
2336 if (err)
2337 goto out;
2338
2339 file_update_time(file);
2340
2341
2342 if (unlikely(file->f_flags & O_DIRECT)) {
2343 loff_t endbyte;
2344 ssize_t written_buffered;
2345
2346 written = generic_file_direct_write(iocb, iov, &nr_segs, pos,
2347 ppos, count, ocount);
2348 if (written < 0 || written == count)
2349 goto out;
2350
2351
2352
2353
2354 pos += written;
2355 count -= written;
2356 written_buffered = generic_file_buffered_write(iocb, iov,
2357 nr_segs, pos, ppos, count,
2358 written);
2359
2360
2361
2362
2363
2364
2365
2366 if (written_buffered < 0) {
2367 err = written_buffered;
2368 goto out;
2369 }
2370
2371
2372
2373
2374
2375
2376 endbyte = pos + written_buffered - written - 1;
2377 err = do_sync_mapping_range(file->f_mapping, pos, endbyte,
2378 SYNC_FILE_RANGE_WAIT_BEFORE|
2379 SYNC_FILE_RANGE_WRITE|
2380 SYNC_FILE_RANGE_WAIT_AFTER);
2381 if (err == 0) {
2382 written = written_buffered;
2383 invalidate_mapping_pages(mapping,
2384 pos >> PAGE_CACHE_SHIFT,
2385 endbyte >> PAGE_CACHE_SHIFT);
2386 } else {
2387
2388
2389
2390
2391 }
2392 } else {
2393 written = generic_file_buffered_write(iocb, iov, nr_segs,
2394 pos, ppos, count, written);
2395 }
2396out:
2397 current->backing_dev_info = NULL;
2398 return written ? written : err;
2399}
2400
2401ssize_t generic_file_aio_write_nolock(struct kiocb *iocb,
2402 const struct iovec *iov, unsigned long nr_segs, loff_t pos)
2403{
2404 struct file *file = iocb->ki_filp;
2405 struct address_space *mapping = file->f_mapping;
2406 struct inode *inode = mapping->host;
2407 ssize_t ret;
2408
2409 BUG_ON(iocb->ki_pos != pos);
2410
2411 ret = __generic_file_aio_write_nolock(iocb, iov, nr_segs,
2412 &iocb->ki_pos);
2413
2414 if (ret > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
2415 ssize_t err;
2416
2417 err = sync_page_range_nolock(inode, mapping, pos, ret);
2418 if (err < 0)
2419 ret = err;
2420 }
2421 return ret;
2422}
2423EXPORT_SYMBOL(generic_file_aio_write_nolock);
2424
2425ssize_t generic_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
2426 unsigned long nr_segs, loff_t pos)
2427{
2428 struct file *file = iocb->ki_filp;
2429 struct address_space *mapping = file->f_mapping;
2430 struct inode *inode = mapping->host;
2431 ssize_t ret;
2432
2433 BUG_ON(iocb->ki_pos != pos);
2434
2435 mutex_lock(&inode->i_mutex);
2436 ret = __generic_file_aio_write_nolock(iocb, iov, nr_segs,
2437 &iocb->ki_pos);
2438 mutex_unlock(&inode->i_mutex);
2439
2440 if (ret > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
2441 ssize_t err;
2442
2443 err = sync_page_range(inode, mapping, pos, ret);
2444 if (err < 0)
2445 ret = err;
2446 }
2447 return ret;
2448}
2449EXPORT_SYMBOL(generic_file_aio_write);
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465int try_to_release_page(struct page *page, gfp_t gfp_mask)
2466{
2467 struct address_space * const mapping = page->mapping;
2468
2469 BUG_ON(!PageLocked(page));
2470 if (PageWriteback(page))
2471 return 0;
2472
2473 if (mapping && mapping->a_ops->releasepage)
2474 return mapping->a_ops->releasepage(page, gfp_mask);
2475 return try_to_free_buffers(page);
2476}
2477
2478EXPORT_SYMBOL(try_to_release_page);
2479