1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#include <linux/fs.h>
25#include <linux/init.h>
26#include <linux/vfs.h>
27#include <linux/mount.h>
28#include <linux/pagemap.h>
29#include <linux/file.h>
30#include <linux/mm.h>
31#include <linux/export.h>
32#include <linux/swap.h>
33
34static struct vfsmount *shm_mnt;
35
36#ifdef CONFIG_SHMEM
37
38
39
40
41
42
43#include <linux/xattr.h>
44#include <linux/exportfs.h>
45#include <linux/posix_acl.h>
46#include <linux/generic_acl.h>
47#include <linux/mman.h>
48#include <linux/string.h>
49#include <linux/slab.h>
50#include <linux/backing-dev.h>
51#include <linux/shmem_fs.h>
52#include <linux/writeback.h>
53#include <linux/blkdev.h>
54#include <linux/pagevec.h>
55#include <linux/percpu_counter.h>
56#include <linux/falloc.h>
57#include <linux/splice.h>
58#include <linux/security.h>
59#include <linux/swapops.h>
60#include <linux/mempolicy.h>
61#include <linux/namei.h>
62#include <linux/ctype.h>
63#include <linux/migrate.h>
64#include <linux/highmem.h>
65#include <linux/seq_file.h>
66#include <linux/magic.h>
67
68#include <asm/uaccess.h>
69#include <asm/pgtable.h>
70
71#define BLOCKS_PER_PAGE (PAGE_CACHE_SIZE/512)
72#define VM_ACCT(size) (PAGE_CACHE_ALIGN(size) >> PAGE_SHIFT)
73
74
75#define BOGO_DIRENT_SIZE 20
76
77
78#define SHORT_SYMLINK_LEN 128
79
80struct shmem_xattr {
81 struct list_head list;
82 char *name;
83 size_t size;
84 char value[0];
85};
86
87
88
89
90
91
92struct shmem_falloc {
93 pgoff_t start;
94 pgoff_t next;
95 pgoff_t nr_falloced;
96 pgoff_t nr_unswapped;
97};
98
99
100enum sgp_type {
101 SGP_READ,
102 SGP_CACHE,
103 SGP_DIRTY,
104 SGP_WRITE,
105 SGP_FALLOC,
106};
107
108#ifdef CONFIG_TMPFS
109static unsigned long shmem_default_max_blocks(void)
110{
111 return totalram_pages / 2;
112}
113
114static unsigned long shmem_default_max_inodes(void)
115{
116 return min(totalram_pages - totalhigh_pages, totalram_pages / 2);
117}
118#endif
119
120static bool shmem_should_replace_page(struct page *page, gfp_t gfp);
121static int shmem_replace_page(struct page **pagep, gfp_t gfp,
122 struct shmem_inode_info *info, pgoff_t index);
123static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
124 struct page **pagep, enum sgp_type sgp, gfp_t gfp, int *fault_type);
125
126static inline int shmem_getpage(struct inode *inode, pgoff_t index,
127 struct page **pagep, enum sgp_type sgp, int *fault_type)
128{
129 return shmem_getpage_gfp(inode, index, pagep, sgp,
130 mapping_gfp_mask(inode->i_mapping), fault_type);
131}
132
133static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
134{
135 return sb->s_fs_info;
136}
137
138
139
140
141
142
143
144static inline int shmem_acct_size(unsigned long flags, loff_t size)
145{
146 return (flags & VM_NORESERVE) ?
147 0 : security_vm_enough_memory_mm(current->mm, VM_ACCT(size));
148}
149
150static inline void shmem_unacct_size(unsigned long flags, loff_t size)
151{
152 if (!(flags & VM_NORESERVE))
153 vm_unacct_memory(VM_ACCT(size));
154}
155
156
157
158
159
160
161
162static inline int shmem_acct_block(unsigned long flags)
163{
164 return (flags & VM_NORESERVE) ?
165 security_vm_enough_memory_mm(current->mm, VM_ACCT(PAGE_CACHE_SIZE)) : 0;
166}
167
168static inline void shmem_unacct_blocks(unsigned long flags, long pages)
169{
170 if (flags & VM_NORESERVE)
171 vm_unacct_memory(pages * VM_ACCT(PAGE_CACHE_SIZE));
172}
173
174static const struct super_operations shmem_ops;
175static const struct address_space_operations shmem_aops;
176static const struct file_operations shmem_file_operations;
177static const struct inode_operations shmem_inode_operations;
178static const struct inode_operations shmem_dir_inode_operations;
179static const struct inode_operations shmem_special_inode_operations;
180static const struct vm_operations_struct shmem_vm_ops;
181
182static struct backing_dev_info shmem_backing_dev_info __read_mostly = {
183 .ra_pages = 0,
184 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK | BDI_CAP_SWAP_BACKED,
185};
186
187static LIST_HEAD(shmem_swaplist);
188static DEFINE_MUTEX(shmem_swaplist_mutex);
189
190static int shmem_reserve_inode(struct super_block *sb)
191{
192 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
193 if (sbinfo->max_inodes) {
194 spin_lock(&sbinfo->stat_lock);
195 if (!sbinfo->free_inodes) {
196 spin_unlock(&sbinfo->stat_lock);
197 return -ENOSPC;
198 }
199 sbinfo->free_inodes--;
200 spin_unlock(&sbinfo->stat_lock);
201 }
202 return 0;
203}
204
205static void shmem_free_inode(struct super_block *sb)
206{
207 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
208 if (sbinfo->max_inodes) {
209 spin_lock(&sbinfo->stat_lock);
210 sbinfo->free_inodes++;
211 spin_unlock(&sbinfo->stat_lock);
212 }
213}
214
215
216
217
218
219
220
221
222
223
224
225
226
227static void shmem_recalc_inode(struct inode *inode)
228{
229 struct shmem_inode_info *info = SHMEM_I(inode);
230 long freed;
231
232 freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
233 if (freed > 0) {
234 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
235 if (sbinfo->max_blocks)
236 percpu_counter_add(&sbinfo->used_blocks, -freed);
237 info->alloced -= freed;
238 inode->i_blocks -= freed * BLOCKS_PER_PAGE;
239 shmem_unacct_blocks(info->flags, freed);
240 }
241}
242
243
244
245
246static int shmem_radix_tree_replace(struct address_space *mapping,
247 pgoff_t index, void *expected, void *replacement)
248{
249 void **pslot;
250 void *item = NULL;
251
252 VM_BUG_ON(!expected);
253 pslot = radix_tree_lookup_slot(&mapping->page_tree, index);
254 if (pslot)
255 item = radix_tree_deref_slot_protected(pslot,
256 &mapping->tree_lock);
257 if (item != expected)
258 return -ENOENT;
259 if (replacement)
260 radix_tree_replace_slot(pslot, replacement);
261 else
262 radix_tree_delete(&mapping->page_tree, index);
263 return 0;
264}
265
266
267
268
269
270
271
272
273static bool shmem_confirm_swap(struct address_space *mapping,
274 pgoff_t index, swp_entry_t swap)
275{
276 void *item;
277
278 rcu_read_lock();
279 item = radix_tree_lookup(&mapping->page_tree, index);
280 rcu_read_unlock();
281 return item == swp_to_radix_entry(swap);
282}
283
284
285
286
287static int shmem_add_to_page_cache(struct page *page,
288 struct address_space *mapping,
289 pgoff_t index, gfp_t gfp, void *expected)
290{
291 int error;
292
293 VM_BUG_ON(!PageLocked(page));
294 VM_BUG_ON(!PageSwapBacked(page));
295
296 page_cache_get(page);
297 page->mapping = mapping;
298 page->index = index;
299
300 spin_lock_irq(&mapping->tree_lock);
301 if (!expected)
302 error = radix_tree_insert(&mapping->page_tree, index, page);
303 else
304 error = shmem_radix_tree_replace(mapping, index, expected,
305 page);
306 if (!error) {
307 mapping->nrpages++;
308 __inc_zone_page_state(page, NR_FILE_PAGES);
309 __inc_zone_page_state(page, NR_SHMEM);
310 spin_unlock_irq(&mapping->tree_lock);
311 } else {
312 page->mapping = NULL;
313 spin_unlock_irq(&mapping->tree_lock);
314 page_cache_release(page);
315 }
316 return error;
317}
318
319
320
321
322static void shmem_delete_from_page_cache(struct page *page, void *radswap)
323{
324 struct address_space *mapping = page->mapping;
325 int error;
326
327 spin_lock_irq(&mapping->tree_lock);
328 error = shmem_radix_tree_replace(mapping, page->index, page, radswap);
329 page->mapping = NULL;
330 mapping->nrpages--;
331 __dec_zone_page_state(page, NR_FILE_PAGES);
332 __dec_zone_page_state(page, NR_SHMEM);
333 spin_unlock_irq(&mapping->tree_lock);
334 page_cache_release(page);
335 BUG_ON(error);
336}
337
338
339
340
341static unsigned shmem_find_get_pages_and_swap(struct address_space *mapping,
342 pgoff_t start, unsigned int nr_pages,
343 struct page **pages, pgoff_t *indices)
344{
345 unsigned int i;
346 unsigned int ret;
347 unsigned int nr_found;
348
349 rcu_read_lock();
350restart:
351 nr_found = radix_tree_gang_lookup_slot(&mapping->page_tree,
352 (void ***)pages, indices, start, nr_pages);
353 ret = 0;
354 for (i = 0; i < nr_found; i++) {
355 struct page *page;
356repeat:
357 page = radix_tree_deref_slot((void **)pages[i]);
358 if (unlikely(!page))
359 continue;
360 if (radix_tree_exception(page)) {
361 if (radix_tree_deref_retry(page))
362 goto restart;
363
364
365
366
367
368 goto export;
369 }
370 if (!page_cache_get_speculative(page))
371 goto repeat;
372
373
374 if (unlikely(page != *((void **)pages[i]))) {
375 page_cache_release(page);
376 goto repeat;
377 }
378export:
379 indices[ret] = indices[i];
380 pages[ret] = page;
381 ret++;
382 }
383 if (unlikely(!ret && nr_found))
384 goto restart;
385 rcu_read_unlock();
386 return ret;
387}
388
389
390
391
392static int shmem_free_swap(struct address_space *mapping,
393 pgoff_t index, void *radswap)
394{
395 int error;
396
397 spin_lock_irq(&mapping->tree_lock);
398 error = shmem_radix_tree_replace(mapping, index, radswap, NULL);
399 spin_unlock_irq(&mapping->tree_lock);
400 if (!error)
401 free_swap_and_cache(radix_to_swp_entry(radswap));
402 return error;
403}
404
405
406
407
408static void shmem_deswap_pagevec(struct pagevec *pvec)
409{
410 int i, j;
411
412 for (i = 0, j = 0; i < pagevec_count(pvec); i++) {
413 struct page *page = pvec->pages[i];
414 if (!radix_tree_exceptional_entry(page))
415 pvec->pages[j++] = page;
416 }
417 pvec->nr = j;
418}
419
420
421
422
423void shmem_unlock_mapping(struct address_space *mapping)
424{
425 struct pagevec pvec;
426 pgoff_t indices[PAGEVEC_SIZE];
427 pgoff_t index = 0;
428
429 pagevec_init(&pvec, 0);
430
431
432
433 while (!mapping_unevictable(mapping)) {
434
435
436
437
438 pvec.nr = shmem_find_get_pages_and_swap(mapping, index,
439 PAGEVEC_SIZE, pvec.pages, indices);
440 if (!pvec.nr)
441 break;
442 index = indices[pvec.nr - 1] + 1;
443 shmem_deswap_pagevec(&pvec);
444 check_move_unevictable_pages(pvec.pages, pvec.nr);
445 pagevec_release(&pvec);
446 cond_resched();
447 }
448}
449
450
451
452
453
454static void shmem_undo_range(struct inode *inode, loff_t lstart, loff_t lend,
455 bool unfalloc)
456{
457 struct address_space *mapping = inode->i_mapping;
458 struct shmem_inode_info *info = SHMEM_I(inode);
459 pgoff_t start = (lstart + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
460 pgoff_t end = (lend + 1) >> PAGE_CACHE_SHIFT;
461 unsigned int partial_start = lstart & (PAGE_CACHE_SIZE - 1);
462 unsigned int partial_end = (lend + 1) & (PAGE_CACHE_SIZE - 1);
463 struct pagevec pvec;
464 pgoff_t indices[PAGEVEC_SIZE];
465 long nr_swaps_freed = 0;
466 pgoff_t index;
467 int i;
468
469 if (lend == -1)
470 end = -1;
471
472 pagevec_init(&pvec, 0);
473 index = start;
474 while (index < end) {
475 pvec.nr = shmem_find_get_pages_and_swap(mapping, index,
476 min(end - index, (pgoff_t)PAGEVEC_SIZE),
477 pvec.pages, indices);
478 if (!pvec.nr)
479 break;
480 mem_cgroup_uncharge_start();
481 for (i = 0; i < pagevec_count(&pvec); i++) {
482 struct page *page = pvec.pages[i];
483
484 index = indices[i];
485 if (index >= end)
486 break;
487
488 if (radix_tree_exceptional_entry(page)) {
489 if (unfalloc)
490 continue;
491 nr_swaps_freed += !shmem_free_swap(mapping,
492 index, page);
493 continue;
494 }
495
496 if (!trylock_page(page))
497 continue;
498 if (!unfalloc || !PageUptodate(page)) {
499 if (page->mapping == mapping) {
500 VM_BUG_ON(PageWriteback(page));
501 truncate_inode_page(mapping, page);
502 }
503 }
504 unlock_page(page);
505 }
506 shmem_deswap_pagevec(&pvec);
507 pagevec_release(&pvec);
508 mem_cgroup_uncharge_end();
509 cond_resched();
510 index++;
511 }
512
513 if (partial_start) {
514 struct page *page = NULL;
515 shmem_getpage(inode, start - 1, &page, SGP_READ, NULL);
516 if (page) {
517 unsigned int top = PAGE_CACHE_SIZE;
518 if (start > end) {
519 top = partial_end;
520 partial_end = 0;
521 }
522 zero_user_segment(page, partial_start, top);
523 set_page_dirty(page);
524 unlock_page(page);
525 page_cache_release(page);
526 }
527 }
528 if (partial_end) {
529 struct page *page = NULL;
530 shmem_getpage(inode, end, &page, SGP_READ, NULL);
531 if (page) {
532 zero_user_segment(page, 0, partial_end);
533 set_page_dirty(page);
534 unlock_page(page);
535 page_cache_release(page);
536 }
537 }
538 if (start >= end)
539 return;
540
541 index = start;
542 for ( ; ; ) {
543 cond_resched();
544 pvec.nr = shmem_find_get_pages_and_swap(mapping, index,
545 min(end - index, (pgoff_t)PAGEVEC_SIZE),
546 pvec.pages, indices);
547 if (!pvec.nr) {
548 if (index == start || unfalloc)
549 break;
550 index = start;
551 continue;
552 }
553 if ((index == start || unfalloc) && indices[0] >= end) {
554 shmem_deswap_pagevec(&pvec);
555 pagevec_release(&pvec);
556 break;
557 }
558 mem_cgroup_uncharge_start();
559 for (i = 0; i < pagevec_count(&pvec); i++) {
560 struct page *page = pvec.pages[i];
561
562 index = indices[i];
563 if (index >= end)
564 break;
565
566 if (radix_tree_exceptional_entry(page)) {
567 if (unfalloc)
568 continue;
569 nr_swaps_freed += !shmem_free_swap(mapping,
570 index, page);
571 continue;
572 }
573
574 lock_page(page);
575 if (!unfalloc || !PageUptodate(page)) {
576 if (page->mapping == mapping) {
577 VM_BUG_ON(PageWriteback(page));
578 truncate_inode_page(mapping, page);
579 }
580 }
581 unlock_page(page);
582 }
583 shmem_deswap_pagevec(&pvec);
584 pagevec_release(&pvec);
585 mem_cgroup_uncharge_end();
586 index++;
587 }
588
589 spin_lock(&info->lock);
590 info->swapped -= nr_swaps_freed;
591 shmem_recalc_inode(inode);
592 spin_unlock(&info->lock);
593}
594
595void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
596{
597 shmem_undo_range(inode, lstart, lend, false);
598 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
599}
600EXPORT_SYMBOL_GPL(shmem_truncate_range);
601
602static int shmem_setattr(struct dentry *dentry, struct iattr *attr)
603{
604 struct inode *inode = dentry->d_inode;
605 int error;
606
607 error = inode_change_ok(inode, attr);
608 if (error)
609 return error;
610
611 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
612 loff_t oldsize = inode->i_size;
613 loff_t newsize = attr->ia_size;
614
615 if (newsize != oldsize) {
616 i_size_write(inode, newsize);
617 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
618 }
619 if (newsize < oldsize) {
620 loff_t holebegin = round_up(newsize, PAGE_SIZE);
621 unmap_mapping_range(inode->i_mapping, holebegin, 0, 1);
622 shmem_truncate_range(inode, newsize, (loff_t)-1);
623
624 unmap_mapping_range(inode->i_mapping, holebegin, 0, 1);
625 }
626 }
627
628 setattr_copy(inode, attr);
629#ifdef CONFIG_TMPFS_POSIX_ACL
630 if (attr->ia_valid & ATTR_MODE)
631 error = generic_acl_chmod(inode);
632#endif
633 return error;
634}
635
636static void shmem_evict_inode(struct inode *inode)
637{
638 struct shmem_inode_info *info = SHMEM_I(inode);
639 struct shmem_xattr *xattr, *nxattr;
640
641 if (inode->i_mapping->a_ops == &shmem_aops) {
642 shmem_unacct_size(info->flags, inode->i_size);
643 inode->i_size = 0;
644 shmem_truncate_range(inode, 0, (loff_t)-1);
645 if (!list_empty(&info->swaplist)) {
646 mutex_lock(&shmem_swaplist_mutex);
647 list_del_init(&info->swaplist);
648 mutex_unlock(&shmem_swaplist_mutex);
649 }
650 } else
651 kfree(info->symlink);
652
653 list_for_each_entry_safe(xattr, nxattr, &info->xattr_list, list) {
654 kfree(xattr->name);
655 kfree(xattr);
656 }
657 WARN_ON(inode->i_blocks);
658 shmem_free_inode(inode->i_sb);
659 clear_inode(inode);
660}
661
662
663
664
665static int shmem_unuse_inode(struct shmem_inode_info *info,
666 swp_entry_t swap, struct page **pagep)
667{
668 struct address_space *mapping = info->vfs_inode.i_mapping;
669 void *radswap;
670 pgoff_t index;
671 gfp_t gfp;
672 int error = 0;
673
674 radswap = swp_to_radix_entry(swap);
675 index = radix_tree_locate_item(&mapping->page_tree, radswap);
676 if (index == -1)
677 return 0;
678
679
680
681
682
683
684
685 if (shmem_swaplist.next != &info->swaplist)
686 list_move_tail(&shmem_swaplist, &info->swaplist);
687
688 gfp = mapping_gfp_mask(mapping);
689 if (shmem_should_replace_page(*pagep, gfp)) {
690 mutex_unlock(&shmem_swaplist_mutex);
691 error = shmem_replace_page(pagep, gfp, info, index);
692 mutex_lock(&shmem_swaplist_mutex);
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711 if (!page_swapcount(*pagep))
712 error = -ENOENT;
713 }
714
715
716
717
718
719
720 if (!error)
721 error = shmem_add_to_page_cache(*pagep, mapping, index,
722 GFP_NOWAIT, radswap);
723 if (error != -ENOMEM) {
724
725
726
727
728 delete_from_swap_cache(*pagep);
729 set_page_dirty(*pagep);
730 if (!error) {
731 spin_lock(&info->lock);
732 info->swapped--;
733 spin_unlock(&info->lock);
734 swap_free(swap);
735 }
736 error = 1;
737 }
738 return error;
739}
740
741
742
743
744int shmem_unuse(swp_entry_t swap, struct page *page)
745{
746 struct list_head *this, *next;
747 struct shmem_inode_info *info;
748 int found = 0;
749 int error = 0;
750
751
752
753
754
755 if (unlikely(!PageSwapCache(page) || page_private(page) != swap.val))
756 goto out;
757
758
759
760
761
762
763 error = mem_cgroup_cache_charge(page, current->mm, GFP_KERNEL);
764 if (error)
765 goto out;
766
767
768 mutex_lock(&shmem_swaplist_mutex);
769 list_for_each_safe(this, next, &shmem_swaplist) {
770 info = list_entry(this, struct shmem_inode_info, swaplist);
771 if (info->swapped)
772 found = shmem_unuse_inode(info, swap, &page);
773 else
774 list_del_init(&info->swaplist);
775 cond_resched();
776 if (found)
777 break;
778 }
779 mutex_unlock(&shmem_swaplist_mutex);
780
781 if (found < 0)
782 error = found;
783out:
784 unlock_page(page);
785 page_cache_release(page);
786 return error;
787}
788
789
790
791
792static int shmem_writepage(struct page *page, struct writeback_control *wbc)
793{
794 struct shmem_inode_info *info;
795 struct address_space *mapping;
796 struct inode *inode;
797 swp_entry_t swap;
798 pgoff_t index;
799
800 BUG_ON(!PageLocked(page));
801 mapping = page->mapping;
802 index = page->index;
803 inode = mapping->host;
804 info = SHMEM_I(inode);
805 if (info->flags & VM_LOCKED)
806 goto redirty;
807 if (!total_swap_pages)
808 goto redirty;
809
810
811
812
813
814
815
816
817 if (!wbc->for_reclaim) {
818 WARN_ON_ONCE(1);
819 goto redirty;
820 }
821
822
823
824
825
826
827
828
829
830
831
832
833 if (!PageUptodate(page)) {
834 if (inode->i_private) {
835 struct shmem_falloc *shmem_falloc;
836 spin_lock(&inode->i_lock);
837 shmem_falloc = inode->i_private;
838 if (shmem_falloc &&
839 index >= shmem_falloc->start &&
840 index < shmem_falloc->next)
841 shmem_falloc->nr_unswapped++;
842 else
843 shmem_falloc = NULL;
844 spin_unlock(&inode->i_lock);
845 if (shmem_falloc)
846 goto redirty;
847 }
848 clear_highpage(page);
849 flush_dcache_page(page);
850 SetPageUptodate(page);
851 }
852
853 swap = get_swap_page();
854 if (!swap.val)
855 goto redirty;
856
857
858
859
860
861
862
863
864
865 mutex_lock(&shmem_swaplist_mutex);
866 if (list_empty(&info->swaplist))
867 list_add_tail(&info->swaplist, &shmem_swaplist);
868
869 if (add_to_swap_cache(page, swap, GFP_ATOMIC) == 0) {
870 swap_shmem_alloc(swap);
871 shmem_delete_from_page_cache(page, swp_to_radix_entry(swap));
872
873 spin_lock(&info->lock);
874 info->swapped++;
875 shmem_recalc_inode(inode);
876 spin_unlock(&info->lock);
877
878 mutex_unlock(&shmem_swaplist_mutex);
879 BUG_ON(page_mapped(page));
880 swap_writepage(page, wbc);
881 return 0;
882 }
883
884 mutex_unlock(&shmem_swaplist_mutex);
885 swapcache_free(swap, NULL);
886redirty:
887 set_page_dirty(page);
888 if (wbc->for_reclaim)
889 return AOP_WRITEPAGE_ACTIVATE;
890 unlock_page(page);
891 return 0;
892}
893
894#ifdef CONFIG_NUMA
895#ifdef CONFIG_TMPFS
896static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
897{
898 char buffer[64];
899
900 if (!mpol || mpol->mode == MPOL_DEFAULT)
901 return;
902
903 mpol_to_str(buffer, sizeof(buffer), mpol, 1);
904
905 seq_printf(seq, ",mpol=%s", buffer);
906}
907
908static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
909{
910 struct mempolicy *mpol = NULL;
911 if (sbinfo->mpol) {
912 spin_lock(&sbinfo->stat_lock);
913 mpol = sbinfo->mpol;
914 mpol_get(mpol);
915 spin_unlock(&sbinfo->stat_lock);
916 }
917 return mpol;
918}
919#endif
920
921static struct page *shmem_swapin(swp_entry_t swap, gfp_t gfp,
922 struct shmem_inode_info *info, pgoff_t index)
923{
924 struct mempolicy mpol, *spol;
925 struct vm_area_struct pvma;
926
927 spol = mpol_cond_copy(&mpol,
928 mpol_shared_policy_lookup(&info->policy, index));
929
930
931 pvma.vm_start = 0;
932
933 pvma.vm_pgoff = index + info->vfs_inode.i_ino;
934 pvma.vm_ops = NULL;
935 pvma.vm_policy = spol;
936 return swapin_readahead(swap, gfp, &pvma, 0);
937}
938
939static struct page *shmem_alloc_page(gfp_t gfp,
940 struct shmem_inode_info *info, pgoff_t index)
941{
942 struct vm_area_struct pvma;
943
944
945 pvma.vm_start = 0;
946
947 pvma.vm_pgoff = index + info->vfs_inode.i_ino;
948 pvma.vm_ops = NULL;
949 pvma.vm_policy = mpol_shared_policy_lookup(&info->policy, index);
950
951
952
953
954 return alloc_page_vma(gfp, &pvma, 0);
955}
956#else
957#ifdef CONFIG_TMPFS
958static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
959{
960}
961#endif
962
963static inline struct page *shmem_swapin(swp_entry_t swap, gfp_t gfp,
964 struct shmem_inode_info *info, pgoff_t index)
965{
966 return swapin_readahead(swap, gfp, NULL, 0);
967}
968
969static inline struct page *shmem_alloc_page(gfp_t gfp,
970 struct shmem_inode_info *info, pgoff_t index)
971{
972 return alloc_page(gfp);
973}
974#endif
975
976#if !defined(CONFIG_NUMA) || !defined(CONFIG_TMPFS)
977static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
978{
979 return NULL;
980}
981#endif
982
983
984
985
986
987
988
989
990
991
992
993
994
995static bool shmem_should_replace_page(struct page *page, gfp_t gfp)
996{
997 return page_zonenum(page) > gfp_zone(gfp);
998}
999
1000static int shmem_replace_page(struct page **pagep, gfp_t gfp,
1001 struct shmem_inode_info *info, pgoff_t index)
1002{
1003 struct page *oldpage, *newpage;
1004 struct address_space *swap_mapping;
1005 pgoff_t swap_index;
1006 int error;
1007
1008 oldpage = *pagep;
1009 swap_index = page_private(oldpage);
1010 swap_mapping = page_mapping(oldpage);
1011
1012
1013
1014
1015
1016 gfp &= ~GFP_CONSTRAINT_MASK;
1017 newpage = shmem_alloc_page(gfp, info, index);
1018 if (!newpage)
1019 return -ENOMEM;
1020
1021 page_cache_get(newpage);
1022 copy_highpage(newpage, oldpage);
1023 flush_dcache_page(newpage);
1024
1025 __set_page_locked(newpage);
1026 SetPageUptodate(newpage);
1027 SetPageSwapBacked(newpage);
1028 set_page_private(newpage, swap_index);
1029 SetPageSwapCache(newpage);
1030
1031
1032
1033
1034
1035 spin_lock_irq(&swap_mapping->tree_lock);
1036 error = shmem_radix_tree_replace(swap_mapping, swap_index, oldpage,
1037 newpage);
1038 if (!error) {
1039 __inc_zone_page_state(newpage, NR_FILE_PAGES);
1040 __dec_zone_page_state(oldpage, NR_FILE_PAGES);
1041 }
1042 spin_unlock_irq(&swap_mapping->tree_lock);
1043
1044 if (unlikely(error)) {
1045
1046
1047
1048
1049
1050 oldpage = newpage;
1051 } else {
1052 mem_cgroup_replace_page_cache(oldpage, newpage);
1053 lru_cache_add_anon(newpage);
1054 *pagep = newpage;
1055 }
1056
1057 ClearPageSwapCache(oldpage);
1058 set_page_private(oldpage, 0);
1059
1060 unlock_page(oldpage);
1061 page_cache_release(oldpage);
1062 page_cache_release(oldpage);
1063 return error;
1064}
1065
1066
1067
1068
1069
1070
1071
1072
1073static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
1074 struct page **pagep, enum sgp_type sgp, gfp_t gfp, int *fault_type)
1075{
1076 struct address_space *mapping = inode->i_mapping;
1077 struct shmem_inode_info *info;
1078 struct shmem_sb_info *sbinfo;
1079 struct page *page;
1080 swp_entry_t swap;
1081 int error;
1082 int once = 0;
1083 int alloced = 0;
1084
1085 if (index > (MAX_LFS_FILESIZE >> PAGE_CACHE_SHIFT))
1086 return -EFBIG;
1087repeat:
1088 swap.val = 0;
1089 page = find_lock_page(mapping, index);
1090 if (radix_tree_exceptional_entry(page)) {
1091 swap = radix_to_swp_entry(page);
1092 page = NULL;
1093 }
1094
1095 if (sgp != SGP_WRITE && sgp != SGP_FALLOC &&
1096 ((loff_t)index << PAGE_CACHE_SHIFT) >= i_size_read(inode)) {
1097 error = -EINVAL;
1098 goto failed;
1099 }
1100
1101
1102 if (page && !PageUptodate(page)) {
1103 if (sgp != SGP_READ)
1104 goto clear;
1105 unlock_page(page);
1106 page_cache_release(page);
1107 page = NULL;
1108 }
1109 if (page || (sgp == SGP_READ && !swap.val)) {
1110 *pagep = page;
1111 return 0;
1112 }
1113
1114
1115
1116
1117
1118 info = SHMEM_I(inode);
1119 sbinfo = SHMEM_SB(inode->i_sb);
1120
1121 if (swap.val) {
1122
1123 page = lookup_swap_cache(swap);
1124 if (!page) {
1125
1126 if (fault_type)
1127 *fault_type |= VM_FAULT_MAJOR;
1128 page = shmem_swapin(swap, gfp, info, index);
1129 if (!page) {
1130 error = -ENOMEM;
1131 goto failed;
1132 }
1133 }
1134
1135
1136 lock_page(page);
1137 if (!PageSwapCache(page) || page_private(page) != swap.val ||
1138 !shmem_confirm_swap(mapping, index, swap)) {
1139 error = -EEXIST;
1140 goto unlock;
1141 }
1142 if (!PageUptodate(page)) {
1143 error = -EIO;
1144 goto failed;
1145 }
1146 wait_on_page_writeback(page);
1147
1148 if (shmem_should_replace_page(page, gfp)) {
1149 error = shmem_replace_page(&page, gfp, info, index);
1150 if (error)
1151 goto failed;
1152 }
1153
1154 error = mem_cgroup_cache_charge(page, current->mm,
1155 gfp & GFP_RECLAIM_MASK);
1156 if (!error) {
1157 error = shmem_add_to_page_cache(page, mapping, index,
1158 gfp, swp_to_radix_entry(swap));
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171 if (error)
1172 delete_from_swap_cache(page);
1173 }
1174 if (error)
1175 goto failed;
1176
1177 spin_lock(&info->lock);
1178 info->swapped--;
1179 shmem_recalc_inode(inode);
1180 spin_unlock(&info->lock);
1181
1182 delete_from_swap_cache(page);
1183 set_page_dirty(page);
1184 swap_free(swap);
1185
1186 } else {
1187 if (shmem_acct_block(info->flags)) {
1188 error = -ENOSPC;
1189 goto failed;
1190 }
1191 if (sbinfo->max_blocks) {
1192 if (percpu_counter_compare(&sbinfo->used_blocks,
1193 sbinfo->max_blocks) >= 0) {
1194 error = -ENOSPC;
1195 goto unacct;
1196 }
1197 percpu_counter_inc(&sbinfo->used_blocks);
1198 }
1199
1200 page = shmem_alloc_page(gfp, info, index);
1201 if (!page) {
1202 error = -ENOMEM;
1203 goto decused;
1204 }
1205
1206 SetPageSwapBacked(page);
1207 __set_page_locked(page);
1208 error = mem_cgroup_cache_charge(page, current->mm,
1209 gfp & GFP_RECLAIM_MASK);
1210 if (error)
1211 goto decused;
1212 error = radix_tree_preload(gfp & GFP_RECLAIM_MASK);
1213 if (!error) {
1214 error = shmem_add_to_page_cache(page, mapping, index,
1215 gfp, NULL);
1216 radix_tree_preload_end();
1217 }
1218 if (error) {
1219 mem_cgroup_uncharge_cache_page(page);
1220 goto decused;
1221 }
1222 lru_cache_add_anon(page);
1223
1224 spin_lock(&info->lock);
1225 info->alloced++;
1226 inode->i_blocks += BLOCKS_PER_PAGE;
1227 shmem_recalc_inode(inode);
1228 spin_unlock(&info->lock);
1229 alloced = true;
1230
1231
1232
1233
1234 if (sgp == SGP_FALLOC)
1235 sgp = SGP_WRITE;
1236clear:
1237
1238
1239
1240
1241
1242 if (sgp != SGP_WRITE) {
1243 clear_highpage(page);
1244 flush_dcache_page(page);
1245 SetPageUptodate(page);
1246 }
1247 if (sgp == SGP_DIRTY)
1248 set_page_dirty(page);
1249 }
1250
1251
1252 if (sgp != SGP_WRITE && sgp != SGP_FALLOC &&
1253 ((loff_t)index << PAGE_CACHE_SHIFT) >= i_size_read(inode)) {
1254 error = -EINVAL;
1255 if (alloced)
1256 goto trunc;
1257 else
1258 goto failed;
1259 }
1260 *pagep = page;
1261 return 0;
1262
1263
1264
1265
1266trunc:
1267 info = SHMEM_I(inode);
1268 ClearPageDirty(page);
1269 delete_from_page_cache(page);
1270 spin_lock(&info->lock);
1271 info->alloced--;
1272 inode->i_blocks -= BLOCKS_PER_PAGE;
1273 spin_unlock(&info->lock);
1274decused:
1275 sbinfo = SHMEM_SB(inode->i_sb);
1276 if (sbinfo->max_blocks)
1277 percpu_counter_add(&sbinfo->used_blocks, -1);
1278unacct:
1279 shmem_unacct_blocks(info->flags, 1);
1280failed:
1281 if (swap.val && error != -EINVAL &&
1282 !shmem_confirm_swap(mapping, index, swap))
1283 error = -EEXIST;
1284unlock:
1285 if (page) {
1286 unlock_page(page);
1287 page_cache_release(page);
1288 }
1289 if (error == -ENOSPC && !once++) {
1290 info = SHMEM_I(inode);
1291 spin_lock(&info->lock);
1292 shmem_recalc_inode(inode);
1293 spin_unlock(&info->lock);
1294 goto repeat;
1295 }
1296 if (error == -EEXIST)
1297 goto repeat;
1298 return error;
1299}
1300
1301static int shmem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1302{
1303 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
1304 int error;
1305 int ret = VM_FAULT_LOCKED;
1306
1307 error = shmem_getpage(inode, vmf->pgoff, &vmf->page, SGP_CACHE, &ret);
1308 if (error)
1309 return ((error == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS);
1310
1311 if (ret & VM_FAULT_MAJOR) {
1312 count_vm_event(PGMAJFAULT);
1313 mem_cgroup_count_vm_event(vma->vm_mm, PGMAJFAULT);
1314 }
1315 return ret;
1316}
1317
1318#ifdef CONFIG_NUMA
1319static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *mpol)
1320{
1321 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
1322 return mpol_set_shared_policy(&SHMEM_I(inode)->policy, vma, mpol);
1323}
1324
1325static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
1326 unsigned long addr)
1327{
1328 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
1329 pgoff_t index;
1330
1331 index = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
1332 return mpol_shared_policy_lookup(&SHMEM_I(inode)->policy, index);
1333}
1334#endif
1335
1336int shmem_lock(struct file *file, int lock, struct user_struct *user)
1337{
1338 struct inode *inode = file->f_path.dentry->d_inode;
1339 struct shmem_inode_info *info = SHMEM_I(inode);
1340 int retval = -ENOMEM;
1341
1342 spin_lock(&info->lock);
1343 if (lock && !(info->flags & VM_LOCKED)) {
1344 if (!user_shm_lock(inode->i_size, user))
1345 goto out_nomem;
1346 info->flags |= VM_LOCKED;
1347 mapping_set_unevictable(file->f_mapping);
1348 }
1349 if (!lock && (info->flags & VM_LOCKED) && user) {
1350 user_shm_unlock(inode->i_size, user);
1351 info->flags &= ~VM_LOCKED;
1352 mapping_clear_unevictable(file->f_mapping);
1353 }
1354 retval = 0;
1355
1356out_nomem:
1357 spin_unlock(&info->lock);
1358 return retval;
1359}
1360
1361static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
1362{
1363 file_accessed(file);
1364 vma->vm_ops = &shmem_vm_ops;
1365 vma->vm_flags |= VM_CAN_NONLINEAR;
1366 return 0;
1367}
1368
1369static struct inode *shmem_get_inode(struct super_block *sb, const struct inode *dir,
1370 umode_t mode, dev_t dev, unsigned long flags)
1371{
1372 struct inode *inode;
1373 struct shmem_inode_info *info;
1374 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1375
1376 if (shmem_reserve_inode(sb))
1377 return NULL;
1378
1379 inode = new_inode(sb);
1380 if (inode) {
1381 inode->i_ino = get_next_ino();
1382 inode_init_owner(inode, dir, mode);
1383 inode->i_blocks = 0;
1384 inode->i_mapping->backing_dev_info = &shmem_backing_dev_info;
1385 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
1386 inode->i_generation = get_seconds();
1387 info = SHMEM_I(inode);
1388 memset(info, 0, (char *)inode - (char *)info);
1389 spin_lock_init(&info->lock);
1390 info->flags = flags & VM_NORESERVE;
1391 INIT_LIST_HEAD(&info->swaplist);
1392 INIT_LIST_HEAD(&info->xattr_list);
1393 cache_no_acl(inode);
1394
1395 switch (mode & S_IFMT) {
1396 default:
1397 inode->i_op = &shmem_special_inode_operations;
1398 init_special_inode(inode, mode, dev);
1399 break;
1400 case S_IFREG:
1401 inode->i_mapping->a_ops = &shmem_aops;
1402 inode->i_op = &shmem_inode_operations;
1403 inode->i_fop = &shmem_file_operations;
1404 mpol_shared_policy_init(&info->policy,
1405 shmem_get_sbmpol(sbinfo));
1406 break;
1407 case S_IFDIR:
1408 inc_nlink(inode);
1409
1410 inode->i_size = 2 * BOGO_DIRENT_SIZE;
1411 inode->i_op = &shmem_dir_inode_operations;
1412 inode->i_fop = &simple_dir_operations;
1413 break;
1414 case S_IFLNK:
1415
1416
1417
1418
1419 mpol_shared_policy_init(&info->policy, NULL);
1420 break;
1421 }
1422 } else
1423 shmem_free_inode(sb);
1424 return inode;
1425}
1426
1427#ifdef CONFIG_TMPFS
1428static const struct inode_operations shmem_symlink_inode_operations;
1429static const struct inode_operations shmem_short_symlink_operations;
1430
1431#ifdef CONFIG_TMPFS_XATTR
1432static int shmem_initxattrs(struct inode *, const struct xattr *, void *);
1433#else
1434#define shmem_initxattrs NULL
1435#endif
1436
1437static int
1438shmem_write_begin(struct file *file, struct address_space *mapping,
1439 loff_t pos, unsigned len, unsigned flags,
1440 struct page **pagep, void **fsdata)
1441{
1442 struct inode *inode = mapping->host;
1443 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1444 return shmem_getpage(inode, index, pagep, SGP_WRITE, NULL);
1445}
1446
1447static int
1448shmem_write_end(struct file *file, struct address_space *mapping,
1449 loff_t pos, unsigned len, unsigned copied,
1450 struct page *page, void *fsdata)
1451{
1452 struct inode *inode = mapping->host;
1453
1454 if (pos + copied > inode->i_size)
1455 i_size_write(inode, pos + copied);
1456
1457 if (!PageUptodate(page)) {
1458 if (copied < PAGE_CACHE_SIZE) {
1459 unsigned from = pos & (PAGE_CACHE_SIZE - 1);
1460 zero_user_segments(page, 0, from,
1461 from + copied, PAGE_CACHE_SIZE);
1462 }
1463 SetPageUptodate(page);
1464 }
1465 set_page_dirty(page);
1466 unlock_page(page);
1467 page_cache_release(page);
1468
1469 return copied;
1470}
1471
1472static void do_shmem_file_read(struct file *filp, loff_t *ppos, read_descriptor_t *desc, read_actor_t actor)
1473{
1474 struct inode *inode = filp->f_path.dentry->d_inode;
1475 struct address_space *mapping = inode->i_mapping;
1476 pgoff_t index;
1477 unsigned long offset;
1478 enum sgp_type sgp = SGP_READ;
1479
1480
1481
1482
1483
1484
1485 if (segment_eq(get_fs(), KERNEL_DS))
1486 sgp = SGP_DIRTY;
1487
1488 index = *ppos >> PAGE_CACHE_SHIFT;
1489 offset = *ppos & ~PAGE_CACHE_MASK;
1490
1491 for (;;) {
1492 struct page *page = NULL;
1493 pgoff_t end_index;
1494 unsigned long nr, ret;
1495 loff_t i_size = i_size_read(inode);
1496
1497 end_index = i_size >> PAGE_CACHE_SHIFT;
1498 if (index > end_index)
1499 break;
1500 if (index == end_index) {
1501 nr = i_size & ~PAGE_CACHE_MASK;
1502 if (nr <= offset)
1503 break;
1504 }
1505
1506 desc->error = shmem_getpage(inode, index, &page, sgp, NULL);
1507 if (desc->error) {
1508 if (desc->error == -EINVAL)
1509 desc->error = 0;
1510 break;
1511 }
1512 if (page)
1513 unlock_page(page);
1514
1515
1516
1517
1518
1519 nr = PAGE_CACHE_SIZE;
1520 i_size = i_size_read(inode);
1521 end_index = i_size >> PAGE_CACHE_SHIFT;
1522 if (index == end_index) {
1523 nr = i_size & ~PAGE_CACHE_MASK;
1524 if (nr <= offset) {
1525 if (page)
1526 page_cache_release(page);
1527 break;
1528 }
1529 }
1530 nr -= offset;
1531
1532 if (page) {
1533
1534
1535
1536
1537
1538 if (mapping_writably_mapped(mapping))
1539 flush_dcache_page(page);
1540
1541
1542
1543 if (!offset)
1544 mark_page_accessed(page);
1545 } else {
1546 page = ZERO_PAGE(0);
1547 page_cache_get(page);
1548 }
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560 ret = actor(desc, page, offset, nr);
1561 offset += ret;
1562 index += offset >> PAGE_CACHE_SHIFT;
1563 offset &= ~PAGE_CACHE_MASK;
1564
1565 page_cache_release(page);
1566 if (ret != nr || !desc->count)
1567 break;
1568
1569 cond_resched();
1570 }
1571
1572 *ppos = ((loff_t) index << PAGE_CACHE_SHIFT) + offset;
1573 file_accessed(filp);
1574}
1575
1576static ssize_t shmem_file_aio_read(struct kiocb *iocb,
1577 const struct iovec *iov, unsigned long nr_segs, loff_t pos)
1578{
1579 struct file *filp = iocb->ki_filp;
1580 ssize_t retval;
1581 unsigned long seg;
1582 size_t count;
1583 loff_t *ppos = &iocb->ki_pos;
1584
1585 retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
1586 if (retval)
1587 return retval;
1588
1589 for (seg = 0; seg < nr_segs; seg++) {
1590 read_descriptor_t desc;
1591
1592 desc.written = 0;
1593 desc.arg.buf = iov[seg].iov_base;
1594 desc.count = iov[seg].iov_len;
1595 if (desc.count == 0)
1596 continue;
1597 desc.error = 0;
1598 do_shmem_file_read(filp, ppos, &desc, file_read_actor);
1599 retval += desc.written;
1600 if (desc.error) {
1601 retval = retval ?: desc.error;
1602 break;
1603 }
1604 if (desc.count > 0)
1605 break;
1606 }
1607 return retval;
1608}
1609
1610static ssize_t shmem_file_splice_read(struct file *in, loff_t *ppos,
1611 struct pipe_inode_info *pipe, size_t len,
1612 unsigned int flags)
1613{
1614 struct address_space *mapping = in->f_mapping;
1615 struct inode *inode = mapping->host;
1616 unsigned int loff, nr_pages, req_pages;
1617 struct page *pages[PIPE_DEF_BUFFERS];
1618 struct partial_page partial[PIPE_DEF_BUFFERS];
1619 struct page *page;
1620 pgoff_t index, end_index;
1621 loff_t isize, left;
1622 int error, page_nr;
1623 struct splice_pipe_desc spd = {
1624 .pages = pages,
1625 .partial = partial,
1626 .nr_pages_max = PIPE_DEF_BUFFERS,
1627 .flags = flags,
1628 .ops = &page_cache_pipe_buf_ops,
1629 .spd_release = spd_release_page,
1630 };
1631
1632 isize = i_size_read(inode);
1633 if (unlikely(*ppos >= isize))
1634 return 0;
1635
1636 left = isize - *ppos;
1637 if (unlikely(left < len))
1638 len = left;
1639
1640 if (splice_grow_spd(pipe, &spd))
1641 return -ENOMEM;
1642
1643 index = *ppos >> PAGE_CACHE_SHIFT;
1644 loff = *ppos & ~PAGE_CACHE_MASK;
1645 req_pages = (len + loff + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1646 nr_pages = min(req_pages, pipe->buffers);
1647
1648 spd.nr_pages = find_get_pages_contig(mapping, index,
1649 nr_pages, spd.pages);
1650 index += spd.nr_pages;
1651 error = 0;
1652
1653 while (spd.nr_pages < nr_pages) {
1654 error = shmem_getpage(inode, index, &page, SGP_CACHE, NULL);
1655 if (error)
1656 break;
1657 unlock_page(page);
1658 spd.pages[spd.nr_pages++] = page;
1659 index++;
1660 }
1661
1662 index = *ppos >> PAGE_CACHE_SHIFT;
1663 nr_pages = spd.nr_pages;
1664 spd.nr_pages = 0;
1665
1666 for (page_nr = 0; page_nr < nr_pages; page_nr++) {
1667 unsigned int this_len;
1668
1669 if (!len)
1670 break;
1671
1672 this_len = min_t(unsigned long, len, PAGE_CACHE_SIZE - loff);
1673 page = spd.pages[page_nr];
1674
1675 if (!PageUptodate(page) || page->mapping != mapping) {
1676 error = shmem_getpage(inode, index, &page,
1677 SGP_CACHE, NULL);
1678 if (error)
1679 break;
1680 unlock_page(page);
1681 page_cache_release(spd.pages[page_nr]);
1682 spd.pages[page_nr] = page;
1683 }
1684
1685 isize = i_size_read(inode);
1686 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
1687 if (unlikely(!isize || index > end_index))
1688 break;
1689
1690 if (end_index == index) {
1691 unsigned int plen;
1692
1693 plen = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
1694 if (plen <= loff)
1695 break;
1696
1697 this_len = min(this_len, plen - loff);
1698 len = this_len;
1699 }
1700
1701 spd.partial[page_nr].offset = loff;
1702 spd.partial[page_nr].len = this_len;
1703 len -= this_len;
1704 loff = 0;
1705 spd.nr_pages++;
1706 index++;
1707 }
1708
1709 while (page_nr < nr_pages)
1710 page_cache_release(spd.pages[page_nr++]);
1711
1712 if (spd.nr_pages)
1713 error = splice_to_pipe(pipe, &spd);
1714
1715 splice_shrink_spd(&spd);
1716
1717 if (error > 0) {
1718 *ppos += error;
1719 file_accessed(in);
1720 }
1721 return error;
1722}
1723
1724static long shmem_fallocate(struct file *file, int mode, loff_t offset,
1725 loff_t len)
1726{
1727 struct inode *inode = file->f_path.dentry->d_inode;
1728 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
1729 struct shmem_falloc shmem_falloc;
1730 pgoff_t start, index, end;
1731 int error;
1732
1733 mutex_lock(&inode->i_mutex);
1734
1735 if (mode & FALLOC_FL_PUNCH_HOLE) {
1736 struct address_space *mapping = file->f_mapping;
1737 loff_t unmap_start = round_up(offset, PAGE_SIZE);
1738 loff_t unmap_end = round_down(offset + len, PAGE_SIZE) - 1;
1739
1740 if ((u64)unmap_end > (u64)unmap_start)
1741 unmap_mapping_range(mapping, unmap_start,
1742 1 + unmap_end - unmap_start, 0);
1743 shmem_truncate_range(inode, offset, offset + len - 1);
1744
1745 error = 0;
1746 goto out;
1747 }
1748
1749
1750 error = inode_newsize_ok(inode, offset + len);
1751 if (error)
1752 goto out;
1753
1754 start = offset >> PAGE_CACHE_SHIFT;
1755 end = (offset + len + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1756
1757 if (sbinfo->max_blocks && end - start > sbinfo->max_blocks) {
1758 error = -ENOSPC;
1759 goto out;
1760 }
1761
1762 shmem_falloc.start = start;
1763 shmem_falloc.next = start;
1764 shmem_falloc.nr_falloced = 0;
1765 shmem_falloc.nr_unswapped = 0;
1766 spin_lock(&inode->i_lock);
1767 inode->i_private = &shmem_falloc;
1768 spin_unlock(&inode->i_lock);
1769
1770 for (index = start; index < end; index++) {
1771 struct page *page;
1772
1773
1774
1775
1776
1777 if (signal_pending(current))
1778 error = -EINTR;
1779 else if (shmem_falloc.nr_unswapped > shmem_falloc.nr_falloced)
1780 error = -ENOMEM;
1781 else
1782 error = shmem_getpage(inode, index, &page, SGP_FALLOC,
1783 NULL);
1784 if (error) {
1785
1786 shmem_undo_range(inode,
1787 (loff_t)start << PAGE_CACHE_SHIFT,
1788 (loff_t)index << PAGE_CACHE_SHIFT, true);
1789 goto undone;
1790 }
1791
1792
1793
1794
1795
1796 shmem_falloc.next++;
1797 if (!PageUptodate(page))
1798 shmem_falloc.nr_falloced++;
1799
1800
1801
1802
1803
1804
1805
1806
1807 set_page_dirty(page);
1808 unlock_page(page);
1809 page_cache_release(page);
1810 cond_resched();
1811 }
1812
1813 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size)
1814 i_size_write(inode, offset + len);
1815 inode->i_ctime = CURRENT_TIME;
1816undone:
1817 spin_lock(&inode->i_lock);
1818 inode->i_private = NULL;
1819 spin_unlock(&inode->i_lock);
1820out:
1821 mutex_unlock(&inode->i_mutex);
1822 return error;
1823}
1824
1825static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
1826{
1827 struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
1828
1829 buf->f_type = TMPFS_MAGIC;
1830 buf->f_bsize = PAGE_CACHE_SIZE;
1831 buf->f_namelen = NAME_MAX;
1832 if (sbinfo->max_blocks) {
1833 buf->f_blocks = sbinfo->max_blocks;
1834 buf->f_bavail =
1835 buf->f_bfree = sbinfo->max_blocks -
1836 percpu_counter_sum(&sbinfo->used_blocks);
1837 }
1838 if (sbinfo->max_inodes) {
1839 buf->f_files = sbinfo->max_inodes;
1840 buf->f_ffree = sbinfo->free_inodes;
1841 }
1842
1843 return 0;
1844}
1845
1846
1847
1848
1849static int
1850shmem_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
1851{
1852 struct inode *inode;
1853 int error = -ENOSPC;
1854
1855 inode = shmem_get_inode(dir->i_sb, dir, mode, dev, VM_NORESERVE);
1856 if (inode) {
1857 error = security_inode_init_security(inode, dir,
1858 &dentry->d_name,
1859 shmem_initxattrs, NULL);
1860 if (error) {
1861 if (error != -EOPNOTSUPP) {
1862 iput(inode);
1863 return error;
1864 }
1865 }
1866#ifdef CONFIG_TMPFS_POSIX_ACL
1867 error = generic_acl_init(inode, dir);
1868 if (error) {
1869 iput(inode);
1870 return error;
1871 }
1872#else
1873 error = 0;
1874#endif
1875 dir->i_size += BOGO_DIRENT_SIZE;
1876 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1877 d_instantiate(dentry, inode);
1878 dget(dentry);
1879 }
1880 return error;
1881}
1882
1883static int shmem_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1884{
1885 int error;
1886
1887 if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
1888 return error;
1889 inc_nlink(dir);
1890 return 0;
1891}
1892
1893static int shmem_create(struct inode *dir, struct dentry *dentry, umode_t mode,
1894 bool excl)
1895{
1896 return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
1897}
1898
1899
1900
1901
1902static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1903{
1904 struct inode *inode = old_dentry->d_inode;
1905 int ret;
1906
1907
1908
1909
1910
1911
1912 ret = shmem_reserve_inode(inode->i_sb);
1913 if (ret)
1914 goto out;
1915
1916 dir->i_size += BOGO_DIRENT_SIZE;
1917 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1918 inc_nlink(inode);
1919 ihold(inode);
1920 dget(dentry);
1921 d_instantiate(dentry, inode);
1922out:
1923 return ret;
1924}
1925
1926static int shmem_unlink(struct inode *dir, struct dentry *dentry)
1927{
1928 struct inode *inode = dentry->d_inode;
1929
1930 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
1931 shmem_free_inode(inode->i_sb);
1932
1933 dir->i_size -= BOGO_DIRENT_SIZE;
1934 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1935 drop_nlink(inode);
1936 dput(dentry);
1937 return 0;
1938}
1939
1940static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
1941{
1942 if (!simple_empty(dentry))
1943 return -ENOTEMPTY;
1944
1945 drop_nlink(dentry->d_inode);
1946 drop_nlink(dir);
1947 return shmem_unlink(dir, dentry);
1948}
1949
1950
1951
1952
1953
1954
1955
1956static int shmem_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
1957{
1958 struct inode *inode = old_dentry->d_inode;
1959 int they_are_dirs = S_ISDIR(inode->i_mode);
1960
1961 if (!simple_empty(new_dentry))
1962 return -ENOTEMPTY;
1963
1964 if (new_dentry->d_inode) {
1965 (void) shmem_unlink(new_dir, new_dentry);
1966 if (they_are_dirs)
1967 drop_nlink(old_dir);
1968 } else if (they_are_dirs) {
1969 drop_nlink(old_dir);
1970 inc_nlink(new_dir);
1971 }
1972
1973 old_dir->i_size -= BOGO_DIRENT_SIZE;
1974 new_dir->i_size += BOGO_DIRENT_SIZE;
1975 old_dir->i_ctime = old_dir->i_mtime =
1976 new_dir->i_ctime = new_dir->i_mtime =
1977 inode->i_ctime = CURRENT_TIME;
1978 return 0;
1979}
1980
1981static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1982{
1983 int error;
1984 int len;
1985 struct inode *inode;
1986 struct page *page;
1987 char *kaddr;
1988 struct shmem_inode_info *info;
1989
1990 len = strlen(symname) + 1;
1991 if (len > PAGE_CACHE_SIZE)
1992 return -ENAMETOOLONG;
1993
1994 inode = shmem_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0, VM_NORESERVE);
1995 if (!inode)
1996 return -ENOSPC;
1997
1998 error = security_inode_init_security(inode, dir, &dentry->d_name,
1999 shmem_initxattrs, NULL);
2000 if (error) {
2001 if (error != -EOPNOTSUPP) {
2002 iput(inode);
2003 return error;
2004 }
2005 error = 0;
2006 }
2007
2008 info = SHMEM_I(inode);
2009 inode->i_size = len-1;
2010 if (len <= SHORT_SYMLINK_LEN) {
2011 info->symlink = kmemdup(symname, len, GFP_KERNEL);
2012 if (!info->symlink) {
2013 iput(inode);
2014 return -ENOMEM;
2015 }
2016 inode->i_op = &shmem_short_symlink_operations;
2017 } else {
2018 error = shmem_getpage(inode, 0, &page, SGP_WRITE, NULL);
2019 if (error) {
2020 iput(inode);
2021 return error;
2022 }
2023 inode->i_mapping->a_ops = &shmem_aops;
2024 inode->i_op = &shmem_symlink_inode_operations;
2025 kaddr = kmap_atomic(page);
2026 memcpy(kaddr, symname, len);
2027 kunmap_atomic(kaddr);
2028 SetPageUptodate(page);
2029 set_page_dirty(page);
2030 unlock_page(page);
2031 page_cache_release(page);
2032 }
2033 dir->i_size += BOGO_DIRENT_SIZE;
2034 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
2035 d_instantiate(dentry, inode);
2036 dget(dentry);
2037 return 0;
2038}
2039
2040static void *shmem_follow_short_symlink(struct dentry *dentry, struct nameidata *nd)
2041{
2042 nd_set_link(nd, SHMEM_I(dentry->d_inode)->symlink);
2043 return NULL;
2044}
2045
2046static void *shmem_follow_link(struct dentry *dentry, struct nameidata *nd)
2047{
2048 struct page *page = NULL;
2049 int error = shmem_getpage(dentry->d_inode, 0, &page, SGP_READ, NULL);
2050 nd_set_link(nd, error ? ERR_PTR(error) : kmap(page));
2051 if (page)
2052 unlock_page(page);
2053 return page;
2054}
2055
2056static void shmem_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
2057{
2058 if (!IS_ERR(nd_get_link(nd))) {
2059 struct page *page = cookie;
2060 kunmap(page);
2061 mark_page_accessed(page);
2062 page_cache_release(page);
2063 }
2064}
2065
2066#ifdef CONFIG_TMPFS_XATTR
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077static struct shmem_xattr *shmem_xattr_alloc(const void *value, size_t size)
2078{
2079 struct shmem_xattr *new_xattr;
2080 size_t len;
2081
2082
2083 len = sizeof(*new_xattr) + size;
2084 if (len <= sizeof(*new_xattr))
2085 return NULL;
2086
2087 new_xattr = kmalloc(len, GFP_KERNEL);
2088 if (!new_xattr)
2089 return NULL;
2090
2091 new_xattr->size = size;
2092 memcpy(new_xattr->value, value, size);
2093 return new_xattr;
2094}
2095
2096
2097
2098
2099static int shmem_initxattrs(struct inode *inode,
2100 const struct xattr *xattr_array,
2101 void *fs_info)
2102{
2103 struct shmem_inode_info *info = SHMEM_I(inode);
2104 const struct xattr *xattr;
2105 struct shmem_xattr *new_xattr;
2106 size_t len;
2107
2108 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
2109 new_xattr = shmem_xattr_alloc(xattr->value, xattr->value_len);
2110 if (!new_xattr)
2111 return -ENOMEM;
2112
2113 len = strlen(xattr->name) + 1;
2114 new_xattr->name = kmalloc(XATTR_SECURITY_PREFIX_LEN + len,
2115 GFP_KERNEL);
2116 if (!new_xattr->name) {
2117 kfree(new_xattr);
2118 return -ENOMEM;
2119 }
2120
2121 memcpy(new_xattr->name, XATTR_SECURITY_PREFIX,
2122 XATTR_SECURITY_PREFIX_LEN);
2123 memcpy(new_xattr->name + XATTR_SECURITY_PREFIX_LEN,
2124 xattr->name, len);
2125
2126 spin_lock(&info->lock);
2127 list_add(&new_xattr->list, &info->xattr_list);
2128 spin_unlock(&info->lock);
2129 }
2130
2131 return 0;
2132}
2133
2134static int shmem_xattr_get(struct dentry *dentry, const char *name,
2135 void *buffer, size_t size)
2136{
2137 struct shmem_inode_info *info;
2138 struct shmem_xattr *xattr;
2139 int ret = -ENODATA;
2140
2141 info = SHMEM_I(dentry->d_inode);
2142
2143 spin_lock(&info->lock);
2144 list_for_each_entry(xattr, &info->xattr_list, list) {
2145 if (strcmp(name, xattr->name))
2146 continue;
2147
2148 ret = xattr->size;
2149 if (buffer) {
2150 if (size < xattr->size)
2151 ret = -ERANGE;
2152 else
2153 memcpy(buffer, xattr->value, xattr->size);
2154 }
2155 break;
2156 }
2157 spin_unlock(&info->lock);
2158 return ret;
2159}
2160
2161static int shmem_xattr_set(struct inode *inode, const char *name,
2162 const void *value, size_t size, int flags)
2163{
2164 struct shmem_inode_info *info = SHMEM_I(inode);
2165 struct shmem_xattr *xattr;
2166 struct shmem_xattr *new_xattr = NULL;
2167 int err = 0;
2168
2169
2170 if (value) {
2171 new_xattr = shmem_xattr_alloc(value, size);
2172 if (!new_xattr)
2173 return -ENOMEM;
2174
2175 new_xattr->name = kstrdup(name, GFP_KERNEL);
2176 if (!new_xattr->name) {
2177 kfree(new_xattr);
2178 return -ENOMEM;
2179 }
2180 }
2181
2182 spin_lock(&info->lock);
2183 list_for_each_entry(xattr, &info->xattr_list, list) {
2184 if (!strcmp(name, xattr->name)) {
2185 if (flags & XATTR_CREATE) {
2186 xattr = new_xattr;
2187 err = -EEXIST;
2188 } else if (new_xattr) {
2189 list_replace(&xattr->list, &new_xattr->list);
2190 } else {
2191 list_del(&xattr->list);
2192 }
2193 goto out;
2194 }
2195 }
2196 if (flags & XATTR_REPLACE) {
2197 xattr = new_xattr;
2198 err = -ENODATA;
2199 } else {
2200 list_add(&new_xattr->list, &info->xattr_list);
2201 xattr = NULL;
2202 }
2203out:
2204 spin_unlock(&info->lock);
2205 if (xattr)
2206 kfree(xattr->name);
2207 kfree(xattr);
2208 return err;
2209}
2210
2211static const struct xattr_handler *shmem_xattr_handlers[] = {
2212#ifdef CONFIG_TMPFS_POSIX_ACL
2213 &generic_acl_access_handler,
2214 &generic_acl_default_handler,
2215#endif
2216 NULL
2217};
2218
2219static int shmem_xattr_validate(const char *name)
2220{
2221 struct { const char *prefix; size_t len; } arr[] = {
2222 { XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN },
2223 { XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN }
2224 };
2225 int i;
2226
2227 for (i = 0; i < ARRAY_SIZE(arr); i++) {
2228 size_t preflen = arr[i].len;
2229 if (strncmp(name, arr[i].prefix, preflen) == 0) {
2230 if (!name[preflen])
2231 return -EINVAL;
2232 return 0;
2233 }
2234 }
2235 return -EOPNOTSUPP;
2236}
2237
2238static ssize_t shmem_getxattr(struct dentry *dentry, const char *name,
2239 void *buffer, size_t size)
2240{
2241 int err;
2242
2243
2244
2245
2246
2247
2248 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
2249 return generic_getxattr(dentry, name, buffer, size);
2250
2251 err = shmem_xattr_validate(name);
2252 if (err)
2253 return err;
2254
2255 return shmem_xattr_get(dentry, name, buffer, size);
2256}
2257
2258static int shmem_setxattr(struct dentry *dentry, const char *name,
2259 const void *value, size_t size, int flags)
2260{
2261 int err;
2262
2263
2264
2265
2266
2267
2268 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
2269 return generic_setxattr(dentry, name, value, size, flags);
2270
2271 err = shmem_xattr_validate(name);
2272 if (err)
2273 return err;
2274
2275 if (size == 0)
2276 value = "";
2277
2278 return shmem_xattr_set(dentry->d_inode, name, value, size, flags);
2279
2280}
2281
2282static int shmem_removexattr(struct dentry *dentry, const char *name)
2283{
2284 int err;
2285
2286
2287
2288
2289
2290
2291 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
2292 return generic_removexattr(dentry, name);
2293
2294 err = shmem_xattr_validate(name);
2295 if (err)
2296 return err;
2297
2298 return shmem_xattr_set(dentry->d_inode, name, NULL, 0, XATTR_REPLACE);
2299}
2300
2301static bool xattr_is_trusted(const char *name)
2302{
2303 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
2304}
2305
2306static ssize_t shmem_listxattr(struct dentry *dentry, char *buffer, size_t size)
2307{
2308 bool trusted = capable(CAP_SYS_ADMIN);
2309 struct shmem_xattr *xattr;
2310 struct shmem_inode_info *info;
2311 size_t used = 0;
2312
2313 info = SHMEM_I(dentry->d_inode);
2314
2315 spin_lock(&info->lock);
2316 list_for_each_entry(xattr, &info->xattr_list, list) {
2317 size_t len;
2318
2319
2320 if (!trusted && xattr_is_trusted(xattr->name))
2321 continue;
2322
2323 len = strlen(xattr->name) + 1;
2324 used += len;
2325 if (buffer) {
2326 if (size < used) {
2327 used = -ERANGE;
2328 break;
2329 }
2330 memcpy(buffer, xattr->name, len);
2331 buffer += len;
2332 }
2333 }
2334 spin_unlock(&info->lock);
2335
2336 return used;
2337}
2338#endif
2339
2340static const struct inode_operations shmem_short_symlink_operations = {
2341 .readlink = generic_readlink,
2342 .follow_link = shmem_follow_short_symlink,
2343#ifdef CONFIG_TMPFS_XATTR
2344 .setxattr = shmem_setxattr,
2345 .getxattr = shmem_getxattr,
2346 .listxattr = shmem_listxattr,
2347 .removexattr = shmem_removexattr,
2348#endif
2349};
2350
2351static const struct inode_operations shmem_symlink_inode_operations = {
2352 .readlink = generic_readlink,
2353 .follow_link = shmem_follow_link,
2354 .put_link = shmem_put_link,
2355#ifdef CONFIG_TMPFS_XATTR
2356 .setxattr = shmem_setxattr,
2357 .getxattr = shmem_getxattr,
2358 .listxattr = shmem_listxattr,
2359 .removexattr = shmem_removexattr,
2360#endif
2361};
2362
2363static struct dentry *shmem_get_parent(struct dentry *child)
2364{
2365 return ERR_PTR(-ESTALE);
2366}
2367
2368static int shmem_match(struct inode *ino, void *vfh)
2369{
2370 __u32 *fh = vfh;
2371 __u64 inum = fh[2];
2372 inum = (inum << 32) | fh[1];
2373 return ino->i_ino == inum && fh[0] == ino->i_generation;
2374}
2375
2376static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
2377 struct fid *fid, int fh_len, int fh_type)
2378{
2379 struct inode *inode;
2380 struct dentry *dentry = NULL;
2381 u64 inum;
2382
2383 if (fh_len < 3)
2384 return NULL;
2385
2386 inum = fid->raw[2];
2387 inum = (inum << 32) | fid->raw[1];
2388
2389 inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
2390 shmem_match, fid->raw);
2391 if (inode) {
2392 dentry = d_find_alias(inode);
2393 iput(inode);
2394 }
2395
2396 return dentry;
2397}
2398
2399static int shmem_encode_fh(struct inode *inode, __u32 *fh, int *len,
2400 struct inode *parent)
2401{
2402 if (*len < 3) {
2403 *len = 3;
2404 return 255;
2405 }
2406
2407 if (inode_unhashed(inode)) {
2408
2409
2410
2411
2412
2413 static DEFINE_SPINLOCK(lock);
2414 spin_lock(&lock);
2415 if (inode_unhashed(inode))
2416 __insert_inode_hash(inode,
2417 inode->i_ino + inode->i_generation);
2418 spin_unlock(&lock);
2419 }
2420
2421 fh[0] = inode->i_generation;
2422 fh[1] = inode->i_ino;
2423 fh[2] = ((__u64)inode->i_ino) >> 32;
2424
2425 *len = 3;
2426 return 1;
2427}
2428
2429static const struct export_operations shmem_export_ops = {
2430 .get_parent = shmem_get_parent,
2431 .encode_fh = shmem_encode_fh,
2432 .fh_to_dentry = shmem_fh_to_dentry,
2433};
2434
2435static int shmem_parse_options(char *options, struct shmem_sb_info *sbinfo,
2436 bool remount)
2437{
2438 char *this_char, *value, *rest;
2439 uid_t uid;
2440 gid_t gid;
2441
2442 while (options != NULL) {
2443 this_char = options;
2444 for (;;) {
2445
2446
2447
2448
2449
2450 options = strchr(options, ',');
2451 if (options == NULL)
2452 break;
2453 options++;
2454 if (!isdigit(*options)) {
2455 options[-1] = '\0';
2456 break;
2457 }
2458 }
2459 if (!*this_char)
2460 continue;
2461 if ((value = strchr(this_char,'=')) != NULL) {
2462 *value++ = 0;
2463 } else {
2464 printk(KERN_ERR
2465 "tmpfs: No value for mount option '%s'\n",
2466 this_char);
2467 return 1;
2468 }
2469
2470 if (!strcmp(this_char,"size")) {
2471 unsigned long long size;
2472 size = memparse(value,&rest);
2473 if (*rest == '%') {
2474 size <<= PAGE_SHIFT;
2475 size *= totalram_pages;
2476 do_div(size, 100);
2477 rest++;
2478 }
2479 if (*rest)
2480 goto bad_val;
2481 sbinfo->max_blocks =
2482 DIV_ROUND_UP(size, PAGE_CACHE_SIZE);
2483 } else if (!strcmp(this_char,"nr_blocks")) {
2484 sbinfo->max_blocks = memparse(value, &rest);
2485 if (*rest)
2486 goto bad_val;
2487 } else if (!strcmp(this_char,"nr_inodes")) {
2488 sbinfo->max_inodes = memparse(value, &rest);
2489 if (*rest)
2490 goto bad_val;
2491 } else if (!strcmp(this_char,"mode")) {
2492 if (remount)
2493 continue;
2494 sbinfo->mode = simple_strtoul(value, &rest, 8) & 07777;
2495 if (*rest)
2496 goto bad_val;
2497 } else if (!strcmp(this_char,"uid")) {
2498 if (remount)
2499 continue;
2500 uid = simple_strtoul(value, &rest, 0);
2501 if (*rest)
2502 goto bad_val;
2503 sbinfo->uid = make_kuid(current_user_ns(), uid);
2504 if (!uid_valid(sbinfo->uid))
2505 goto bad_val;
2506 } else if (!strcmp(this_char,"gid")) {
2507 if (remount)
2508 continue;
2509 gid = simple_strtoul(value, &rest, 0);
2510 if (*rest)
2511 goto bad_val;
2512 sbinfo->gid = make_kgid(current_user_ns(), gid);
2513 if (!gid_valid(sbinfo->gid))
2514 goto bad_val;
2515 } else if (!strcmp(this_char,"mpol")) {
2516 if (mpol_parse_str(value, &sbinfo->mpol, 1))
2517 goto bad_val;
2518 } else {
2519 printk(KERN_ERR "tmpfs: Bad mount option %s\n",
2520 this_char);
2521 return 1;
2522 }
2523 }
2524 return 0;
2525
2526bad_val:
2527 printk(KERN_ERR "tmpfs: Bad value '%s' for mount option '%s'\n",
2528 value, this_char);
2529 return 1;
2530
2531}
2532
2533static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
2534{
2535 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2536 struct shmem_sb_info config = *sbinfo;
2537 unsigned long inodes;
2538 int error = -EINVAL;
2539
2540 if (shmem_parse_options(data, &config, true))
2541 return error;
2542
2543 spin_lock(&sbinfo->stat_lock);
2544 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
2545 if (percpu_counter_compare(&sbinfo->used_blocks, config.max_blocks) > 0)
2546 goto out;
2547 if (config.max_inodes < inodes)
2548 goto out;
2549
2550
2551
2552
2553
2554 if (config.max_blocks && !sbinfo->max_blocks)
2555 goto out;
2556 if (config.max_inodes && !sbinfo->max_inodes)
2557 goto out;
2558
2559 error = 0;
2560 sbinfo->max_blocks = config.max_blocks;
2561 sbinfo->max_inodes = config.max_inodes;
2562 sbinfo->free_inodes = config.max_inodes - inodes;
2563
2564 mpol_put(sbinfo->mpol);
2565 sbinfo->mpol = config.mpol;
2566out:
2567 spin_unlock(&sbinfo->stat_lock);
2568 return error;
2569}
2570
2571static int shmem_show_options(struct seq_file *seq, struct dentry *root)
2572{
2573 struct shmem_sb_info *sbinfo = SHMEM_SB(root->d_sb);
2574
2575 if (sbinfo->max_blocks != shmem_default_max_blocks())
2576 seq_printf(seq, ",size=%luk",
2577 sbinfo->max_blocks << (PAGE_CACHE_SHIFT - 10));
2578 if (sbinfo->max_inodes != shmem_default_max_inodes())
2579 seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
2580 if (sbinfo->mode != (S_IRWXUGO | S_ISVTX))
2581 seq_printf(seq, ",mode=%03ho", sbinfo->mode);
2582 if (!uid_eq(sbinfo->uid, GLOBAL_ROOT_UID))
2583 seq_printf(seq, ",uid=%u",
2584 from_kuid_munged(&init_user_ns, sbinfo->uid));
2585 if (!gid_eq(sbinfo->gid, GLOBAL_ROOT_GID))
2586 seq_printf(seq, ",gid=%u",
2587 from_kgid_munged(&init_user_ns, sbinfo->gid));
2588 shmem_show_mpol(seq, sbinfo->mpol);
2589 return 0;
2590}
2591#endif
2592
2593static void shmem_put_super(struct super_block *sb)
2594{
2595 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2596
2597 percpu_counter_destroy(&sbinfo->used_blocks);
2598 kfree(sbinfo);
2599 sb->s_fs_info = NULL;
2600}
2601
2602int shmem_fill_super(struct super_block *sb, void *data, int silent)
2603{
2604 struct inode *inode;
2605 struct shmem_sb_info *sbinfo;
2606 int err = -ENOMEM;
2607
2608
2609 sbinfo = kzalloc(max((int)sizeof(struct shmem_sb_info),
2610 L1_CACHE_BYTES), GFP_KERNEL);
2611 if (!sbinfo)
2612 return -ENOMEM;
2613
2614 sbinfo->mode = S_IRWXUGO | S_ISVTX;
2615 sbinfo->uid = current_fsuid();
2616 sbinfo->gid = current_fsgid();
2617 sb->s_fs_info = sbinfo;
2618
2619#ifdef CONFIG_TMPFS
2620
2621
2622
2623
2624
2625 if (!(sb->s_flags & MS_NOUSER)) {
2626 sbinfo->max_blocks = shmem_default_max_blocks();
2627 sbinfo->max_inodes = shmem_default_max_inodes();
2628 if (shmem_parse_options(data, sbinfo, false)) {
2629 err = -EINVAL;
2630 goto failed;
2631 }
2632 }
2633 sb->s_export_op = &shmem_export_ops;
2634 sb->s_flags |= MS_NOSEC;
2635#else
2636 sb->s_flags |= MS_NOUSER;
2637#endif
2638
2639 spin_lock_init(&sbinfo->stat_lock);
2640 if (percpu_counter_init(&sbinfo->used_blocks, 0))
2641 goto failed;
2642 sbinfo->free_inodes = sbinfo->max_inodes;
2643
2644 sb->s_maxbytes = MAX_LFS_FILESIZE;
2645 sb->s_blocksize = PAGE_CACHE_SIZE;
2646 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
2647 sb->s_magic = TMPFS_MAGIC;
2648 sb->s_op = &shmem_ops;
2649 sb->s_time_gran = 1;
2650#ifdef CONFIG_TMPFS_XATTR
2651 sb->s_xattr = shmem_xattr_handlers;
2652#endif
2653#ifdef CONFIG_TMPFS_POSIX_ACL
2654 sb->s_flags |= MS_POSIXACL;
2655#endif
2656
2657 inode = shmem_get_inode(sb, NULL, S_IFDIR | sbinfo->mode, 0, VM_NORESERVE);
2658 if (!inode)
2659 goto failed;
2660 inode->i_uid = sbinfo->uid;
2661 inode->i_gid = sbinfo->gid;
2662 sb->s_root = d_make_root(inode);
2663 if (!sb->s_root)
2664 goto failed;
2665 return 0;
2666
2667failed:
2668 shmem_put_super(sb);
2669 return err;
2670}
2671
2672static struct kmem_cache *shmem_inode_cachep;
2673
2674static struct inode *shmem_alloc_inode(struct super_block *sb)
2675{
2676 struct shmem_inode_info *info;
2677 info = kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL);
2678 if (!info)
2679 return NULL;
2680 return &info->vfs_inode;
2681}
2682
2683static void shmem_destroy_callback(struct rcu_head *head)
2684{
2685 struct inode *inode = container_of(head, struct inode, i_rcu);
2686 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
2687}
2688
2689static void shmem_destroy_inode(struct inode *inode)
2690{
2691 if (S_ISREG(inode->i_mode))
2692 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
2693 call_rcu(&inode->i_rcu, shmem_destroy_callback);
2694}
2695
2696static void shmem_init_inode(void *foo)
2697{
2698 struct shmem_inode_info *info = foo;
2699 inode_init_once(&info->vfs_inode);
2700}
2701
2702static int shmem_init_inodecache(void)
2703{
2704 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
2705 sizeof(struct shmem_inode_info),
2706 0, SLAB_PANIC, shmem_init_inode);
2707 return 0;
2708}
2709
2710static void shmem_destroy_inodecache(void)
2711{
2712 kmem_cache_destroy(shmem_inode_cachep);
2713}
2714
2715static const struct address_space_operations shmem_aops = {
2716 .writepage = shmem_writepage,
2717 .set_page_dirty = __set_page_dirty_no_writeback,
2718#ifdef CONFIG_TMPFS
2719 .write_begin = shmem_write_begin,
2720 .write_end = shmem_write_end,
2721#endif
2722 .migratepage = migrate_page,
2723 .error_remove_page = generic_error_remove_page,
2724};
2725
2726static const struct file_operations shmem_file_operations = {
2727 .mmap = shmem_mmap,
2728#ifdef CONFIG_TMPFS
2729 .llseek = generic_file_llseek,
2730 .read = do_sync_read,
2731 .write = do_sync_write,
2732 .aio_read = shmem_file_aio_read,
2733 .aio_write = generic_file_aio_write,
2734 .fsync = noop_fsync,
2735 .splice_read = shmem_file_splice_read,
2736 .splice_write = generic_file_splice_write,
2737 .fallocate = shmem_fallocate,
2738#endif
2739};
2740
2741static const struct inode_operations shmem_inode_operations = {
2742 .setattr = shmem_setattr,
2743#ifdef CONFIG_TMPFS_XATTR
2744 .setxattr = shmem_setxattr,
2745 .getxattr = shmem_getxattr,
2746 .listxattr = shmem_listxattr,
2747 .removexattr = shmem_removexattr,
2748#endif
2749};
2750
2751static const struct inode_operations shmem_dir_inode_operations = {
2752#ifdef CONFIG_TMPFS
2753 .create = shmem_create,
2754 .lookup = simple_lookup,
2755 .link = shmem_link,
2756 .unlink = shmem_unlink,
2757 .symlink = shmem_symlink,
2758 .mkdir = shmem_mkdir,
2759 .rmdir = shmem_rmdir,
2760 .mknod = shmem_mknod,
2761 .rename = shmem_rename,
2762#endif
2763#ifdef CONFIG_TMPFS_XATTR
2764 .setxattr = shmem_setxattr,
2765 .getxattr = shmem_getxattr,
2766 .listxattr = shmem_listxattr,
2767 .removexattr = shmem_removexattr,
2768#endif
2769#ifdef CONFIG_TMPFS_POSIX_ACL
2770 .setattr = shmem_setattr,
2771#endif
2772};
2773
2774static const struct inode_operations shmem_special_inode_operations = {
2775#ifdef CONFIG_TMPFS_XATTR
2776 .setxattr = shmem_setxattr,
2777 .getxattr = shmem_getxattr,
2778 .listxattr = shmem_listxattr,
2779 .removexattr = shmem_removexattr,
2780#endif
2781#ifdef CONFIG_TMPFS_POSIX_ACL
2782 .setattr = shmem_setattr,
2783#endif
2784};
2785
2786static const struct super_operations shmem_ops = {
2787 .alloc_inode = shmem_alloc_inode,
2788 .destroy_inode = shmem_destroy_inode,
2789#ifdef CONFIG_TMPFS
2790 .statfs = shmem_statfs,
2791 .remount_fs = shmem_remount_fs,
2792 .show_options = shmem_show_options,
2793#endif
2794 .evict_inode = shmem_evict_inode,
2795 .drop_inode = generic_delete_inode,
2796 .put_super = shmem_put_super,
2797};
2798
2799static const struct vm_operations_struct shmem_vm_ops = {
2800 .fault = shmem_fault,
2801#ifdef CONFIG_NUMA
2802 .set_policy = shmem_set_policy,
2803 .get_policy = shmem_get_policy,
2804#endif
2805};
2806
2807static struct dentry *shmem_mount(struct file_system_type *fs_type,
2808 int flags, const char *dev_name, void *data)
2809{
2810 return mount_nodev(fs_type, flags, data, shmem_fill_super);
2811}
2812
2813static struct file_system_type shmem_fs_type = {
2814 .owner = THIS_MODULE,
2815 .name = "tmpfs",
2816 .mount = shmem_mount,
2817 .kill_sb = kill_litter_super,
2818};
2819
2820int __init shmem_init(void)
2821{
2822 int error;
2823
2824 error = bdi_init(&shmem_backing_dev_info);
2825 if (error)
2826 goto out4;
2827
2828 error = shmem_init_inodecache();
2829 if (error)
2830 goto out3;
2831
2832 error = register_filesystem(&shmem_fs_type);
2833 if (error) {
2834 printk(KERN_ERR "Could not register tmpfs\n");
2835 goto out2;
2836 }
2837
2838 shm_mnt = vfs_kern_mount(&shmem_fs_type, MS_NOUSER,
2839 shmem_fs_type.name, NULL);
2840 if (IS_ERR(shm_mnt)) {
2841 error = PTR_ERR(shm_mnt);
2842 printk(KERN_ERR "Could not kern_mount tmpfs\n");
2843 goto out1;
2844 }
2845 return 0;
2846
2847out1:
2848 unregister_filesystem(&shmem_fs_type);
2849out2:
2850 shmem_destroy_inodecache();
2851out3:
2852 bdi_destroy(&shmem_backing_dev_info);
2853out4:
2854 shm_mnt = ERR_PTR(error);
2855 return error;
2856}
2857
2858#else
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869#include <linux/ramfs.h>
2870
2871static struct file_system_type shmem_fs_type = {
2872 .name = "tmpfs",
2873 .mount = ramfs_mount,
2874 .kill_sb = kill_litter_super,
2875};
2876
2877int __init shmem_init(void)
2878{
2879 BUG_ON(register_filesystem(&shmem_fs_type) != 0);
2880
2881 shm_mnt = kern_mount(&shmem_fs_type);
2882 BUG_ON(IS_ERR(shm_mnt));
2883
2884 return 0;
2885}
2886
2887int shmem_unuse(swp_entry_t swap, struct page *page)
2888{
2889 return 0;
2890}
2891
2892int shmem_lock(struct file *file, int lock, struct user_struct *user)
2893{
2894 return 0;
2895}
2896
2897void shmem_unlock_mapping(struct address_space *mapping)
2898{
2899}
2900
2901void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
2902{
2903 truncate_inode_pages_range(inode->i_mapping, lstart, lend);
2904}
2905EXPORT_SYMBOL_GPL(shmem_truncate_range);
2906
2907#define shmem_vm_ops generic_file_vm_ops
2908#define shmem_file_operations ramfs_file_operations
2909#define shmem_get_inode(sb, dir, mode, dev, flags) ramfs_get_inode(sb, dir, mode, dev)
2910#define shmem_acct_size(flags, size) 0
2911#define shmem_unacct_size(flags, size) do {} while (0)
2912
2913#endif
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags)
2924{
2925 int error;
2926 struct file *file;
2927 struct inode *inode;
2928 struct path path;
2929 struct dentry *root;
2930 struct qstr this;
2931
2932 if (IS_ERR(shm_mnt))
2933 return (void *)shm_mnt;
2934
2935 if (size < 0 || size > MAX_LFS_FILESIZE)
2936 return ERR_PTR(-EINVAL);
2937
2938 if (shmem_acct_size(flags, size))
2939 return ERR_PTR(-ENOMEM);
2940
2941 error = -ENOMEM;
2942 this.name = name;
2943 this.len = strlen(name);
2944 this.hash = 0;
2945 root = shm_mnt->mnt_root;
2946 path.dentry = d_alloc(root, &this);
2947 if (!path.dentry)
2948 goto put_memory;
2949 path.mnt = mntget(shm_mnt);
2950
2951 error = -ENOSPC;
2952 inode = shmem_get_inode(root->d_sb, NULL, S_IFREG | S_IRWXUGO, 0, flags);
2953 if (!inode)
2954 goto put_dentry;
2955
2956 d_instantiate(path.dentry, inode);
2957 inode->i_size = size;
2958 clear_nlink(inode);
2959#ifndef CONFIG_MMU
2960 error = ramfs_nommu_expand_for_mapping(inode, size);
2961 if (error)
2962 goto put_dentry;
2963#endif
2964
2965 error = -ENFILE;
2966 file = alloc_file(&path, FMODE_WRITE | FMODE_READ,
2967 &shmem_file_operations);
2968 if (!file)
2969 goto put_dentry;
2970
2971 return file;
2972
2973put_dentry:
2974 path_put(&path);
2975put_memory:
2976 shmem_unacct_size(flags, size);
2977 return ERR_PTR(error);
2978}
2979EXPORT_SYMBOL_GPL(shmem_file_setup);
2980
2981
2982
2983
2984
2985int shmem_zero_setup(struct vm_area_struct *vma)
2986{
2987 struct file *file;
2988 loff_t size = vma->vm_end - vma->vm_start;
2989
2990 file = shmem_file_setup("dev/zero", size, vma->vm_flags);
2991 if (IS_ERR(file))
2992 return PTR_ERR(file);
2993
2994 if (vma->vm_file)
2995 fput(vma->vm_file);
2996 vma->vm_file = file;
2997 vma->vm_ops = &shmem_vm_ops;
2998 vma->vm_flags |= VM_CAN_NONLINEAR;
2999 return 0;
3000}
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
3018 pgoff_t index, gfp_t gfp)
3019{
3020#ifdef CONFIG_SHMEM
3021 struct inode *inode = mapping->host;
3022 struct page *page;
3023 int error;
3024
3025 BUG_ON(mapping->a_ops != &shmem_aops);
3026 error = shmem_getpage_gfp(inode, index, &page, SGP_CACHE, gfp, NULL);
3027 if (error)
3028 page = ERR_PTR(error);
3029 else
3030 unlock_page(page);
3031 return page;
3032#else
3033
3034
3035
3036 return read_cache_page_gfp(mapping, index, gfp);
3037#endif
3038}
3039EXPORT_SYMBOL_GPL(shmem_read_mapping_page_gfp);
3040