2 * Resizable virtual memory filesystem for Linux.
4 * Copyright (C) 2000 Linus Torvalds.
6 * 2000-2001 Christoph Rohland
9 * Copyright (C) 2002-2005 Hugh Dickins.
10 * Copyright (C) 2002-2005 VERITAS Software Corporation.
11 * Copyright (C) 2004 Andi Kleen, SuSE Labs
13 * Extended attribute support for tmpfs:
20 * This file is released under the GPL.
24 #include <linux/init.h>
25 #include <linux/vfs.h>
26 #include <linux/mount.h>
27 #include <linux/pagemap.h>
28 #include <linux/file.h>
30 #include <linux/module.h>
31 #include <linux/percpu_counter.h>
32 #include <linux/swap.h>
34 static struct vfsmount *shm_mnt;
38 * This virtual memory filesystem is heavily based on the ramfs. It
39 * extends ramfs by the ability to use swap and honor resource limits
40 * which makes it a completely usable filesystem.
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/security.h>
55 #include <linux/swapops.h>
56 #include <linux/mempolicy.h>
57 #include <linux/namei.h>
58 #include <linux/ctype.h>
59 #include <linux/migrate.h>
60 #include <linux/highmem.h>
61 #include <linux/seq_file.h>
62 #include <linux/magic.h>
64 #include <asm/uaccess.h>
65 #include <asm/div64.h>
66 #include <asm/pgtable.h>
69 * The maximum size of a shmem/tmpfs file is limited by the maximum size of
70 * its triple-indirect swap vector - see illustration at shmem_swp_entry().
72 * With 4kB page size, maximum file size is just over 2TB on a 32-bit kernel,
73 * but one eighth of that on a 64-bit kernel. With 8kB page size, maximum
74 * file size is just over 4TB on a 64-bit kernel, but 16TB on a 32-bit kernel,
75 * MAX_LFS_FILESIZE being then more restrictive than swap vector layout.
77 * We use / and * instead of shifts in the definitions below, so that the swap
78 * vector can be tested with small even values (e.g. 20) for ENTRIES_PER_PAGE.
80 #define ENTRIES_PER_PAGE (PAGE_CACHE_SIZE/sizeof(unsigned long))
81 #define ENTRIES_PER_PAGEPAGE ((unsigned long long)ENTRIES_PER_PAGE*ENTRIES_PER_PAGE)
83 #define SHMSWP_MAX_INDEX (SHMEM_NR_DIRECT + (ENTRIES_PER_PAGEPAGE/2) * (ENTRIES_PER_PAGE+1))
84 #define SHMSWP_MAX_BYTES (SHMSWP_MAX_INDEX << PAGE_CACHE_SHIFT)
86 #define SHMEM_MAX_BYTES min_t(unsigned long long, SHMSWP_MAX_BYTES, MAX_LFS_FILESIZE)
87 #define SHMEM_MAX_INDEX ((unsigned long)((SHMEM_MAX_BYTES+1) >> PAGE_CACHE_SHIFT))
89 #define BLOCKS_PER_PAGE (PAGE_CACHE_SIZE/512)
90 #define VM_ACCT(size) (PAGE_CACHE_ALIGN(size) >> PAGE_SHIFT)
92 /* info->flags needs VM_flags to handle pagein/truncate races efficiently */
93 #define SHMEM_PAGEIN VM_READ
94 #define SHMEM_TRUNCATE VM_WRITE
96 /* Definition to limit shmem_truncate's steps between cond_rescheds */
97 #define LATENCY_LIMIT 64
99 /* Pretend that each entry is of this size in directory's i_size */
100 #define BOGO_DIRENT_SIZE 20
103 struct list_head list; /* anchored by shmem_inode_info->xattr_list */
104 char *name; /* xattr name */
109 /* Flag allocation requirements to shmem_getpage and shmem_swp_alloc */
111 SGP_READ, /* don't exceed i_size, don't allocate page */
112 SGP_CACHE, /* don't exceed i_size, may allocate page */
113 SGP_DIRTY, /* like SGP_CACHE, but set new page dirty */
114 SGP_WRITE, /* may exceed i_size, may allocate page */
118 static unsigned long shmem_default_max_blocks(void)
120 return totalram_pages / 2;
123 static unsigned long shmem_default_max_inodes(void)
125 return min(totalram_pages - totalhigh_pages, totalram_pages / 2);
129 static int shmem_getpage(struct inode *inode, unsigned long idx,
130 struct page **pagep, enum sgp_type sgp, int *type);
132 static inline struct page *shmem_dir_alloc(gfp_t gfp_mask)
135 * The above definition of ENTRIES_PER_PAGE, and the use of
136 * BLOCKS_PER_PAGE on indirect pages, assume PAGE_CACHE_SIZE:
137 * might be reconsidered if it ever diverges from PAGE_SIZE.
139 * Mobility flags are masked out as swap vectors cannot move
141 return alloc_pages((gfp_mask & ~GFP_MOVABLE_MASK) | __GFP_ZERO,
142 PAGE_CACHE_SHIFT-PAGE_SHIFT);
145 static inline void shmem_dir_free(struct page *page)
147 __free_pages(page, PAGE_CACHE_SHIFT-PAGE_SHIFT);
150 static struct page **shmem_dir_map(struct page *page)
152 return (struct page **)kmap_atomic(page, KM_USER0);
155 static inline void shmem_dir_unmap(struct page **dir)
157 kunmap_atomic(dir, KM_USER0);
160 static swp_entry_t *shmem_swp_map(struct page *page)
162 return (swp_entry_t *)kmap_atomic(page, KM_USER1);
165 static inline void shmem_swp_balance_unmap(void)
168 * When passing a pointer to an i_direct entry, to code which
169 * also handles indirect entries and so will shmem_swp_unmap,
170 * we must arrange for the preempt count to remain in balance.
171 * What kmap_atomic of a lowmem page does depends on config
172 * and architecture, so pretend to kmap_atomic some lowmem page.
174 (void) kmap_atomic(ZERO_PAGE(0), KM_USER1);
177 static inline void shmem_swp_unmap(swp_entry_t *entry)
179 kunmap_atomic(entry, KM_USER1);
182 static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
184 return sb->s_fs_info;
188 * shmem_file_setup pre-accounts the whole fixed size of a VM object,
189 * for shared memory and for shared anonymous (/dev/zero) mappings
190 * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
191 * consistent with the pre-accounting of private mappings ...
193 static inline int shmem_acct_size(unsigned long flags, loff_t size)
195 return (flags & VM_NORESERVE) ?
196 0 : security_vm_enough_memory_kern(VM_ACCT(size));
199 static inline void shmem_unacct_size(unsigned long flags, loff_t size)
201 if (!(flags & VM_NORESERVE))
202 vm_unacct_memory(VM_ACCT(size));
206 * ... whereas tmpfs objects are accounted incrementally as
207 * pages are allocated, in order to allow huge sparse files.
208 * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM,
209 * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
211 static inline int shmem_acct_block(unsigned long flags)
213 return (flags & VM_NORESERVE) ?
214 security_vm_enough_memory_kern(VM_ACCT(PAGE_CACHE_SIZE)) : 0;
217 static inline void shmem_unacct_blocks(unsigned long flags, long pages)
219 if (flags & VM_NORESERVE)
220 vm_unacct_memory(pages * VM_ACCT(PAGE_CACHE_SIZE));
223 static const struct super_operations shmem_ops;
224 static const struct address_space_operations shmem_aops;
225 static const struct file_operations shmem_file_operations;
226 static const struct inode_operations shmem_inode_operations;
227 static const struct inode_operations shmem_dir_inode_operations;
228 static const struct inode_operations shmem_special_inode_operations;
229 static const struct vm_operations_struct shmem_vm_ops;
231 static struct backing_dev_info shmem_backing_dev_info __read_mostly = {
232 .ra_pages = 0, /* No readahead */
233 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK | BDI_CAP_SWAP_BACKED,
236 static LIST_HEAD(shmem_swaplist);
237 static DEFINE_MUTEX(shmem_swaplist_mutex);
239 static void shmem_free_blocks(struct inode *inode, long pages)
241 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
242 if (sbinfo->max_blocks) {
243 percpu_counter_add(&sbinfo->used_blocks, -pages);
244 spin_lock(&inode->i_lock);
245 inode->i_blocks -= pages*BLOCKS_PER_PAGE;
246 spin_unlock(&inode->i_lock);
250 static int shmem_reserve_inode(struct super_block *sb)
252 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
253 if (sbinfo->max_inodes) {
254 spin_lock(&sbinfo->stat_lock);
255 if (!sbinfo->free_inodes) {
256 spin_unlock(&sbinfo->stat_lock);
259 sbinfo->free_inodes--;
260 spin_unlock(&sbinfo->stat_lock);
265 static void shmem_free_inode(struct super_block *sb)
267 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
268 if (sbinfo->max_inodes) {
269 spin_lock(&sbinfo->stat_lock);
270 sbinfo->free_inodes++;
271 spin_unlock(&sbinfo->stat_lock);
276 * shmem_recalc_inode - recalculate the size of an inode
277 * @inode: inode to recalc
279 * We have to calculate the free blocks since the mm can drop
280 * undirtied hole pages behind our back.
282 * But normally info->alloced == inode->i_mapping->nrpages + info->swapped
283 * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
285 * It has to be called with the spinlock held.
287 static void shmem_recalc_inode(struct inode *inode)
289 struct shmem_inode_info *info = SHMEM_I(inode);
292 freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
294 info->alloced -= freed;
295 shmem_unacct_blocks(info->flags, freed);
296 shmem_free_blocks(inode, freed);
301 * shmem_swp_entry - find the swap vector position in the info structure
302 * @info: info structure for the inode
303 * @index: index of the page to find
304 * @page: optional page to add to the structure. Has to be preset to
307 * If there is no space allocated yet it will return NULL when
308 * page is NULL, else it will use the page for the needed block,
309 * setting it to NULL on return to indicate that it has been used.
311 * The swap vector is organized the following way:
313 * There are SHMEM_NR_DIRECT entries directly stored in the
314 * shmem_inode_info structure. So small files do not need an addional
317 * For pages with index > SHMEM_NR_DIRECT there is the pointer
318 * i_indirect which points to a page which holds in the first half
319 * doubly indirect blocks, in the second half triple indirect blocks:
321 * For an artificial ENTRIES_PER_PAGE = 4 this would lead to the
322 * following layout (for SHMEM_NR_DIRECT == 16):
324 * i_indirect -> dir --> 16-19
337 static swp_entry_t *shmem_swp_entry(struct shmem_inode_info *info, unsigned long index, struct page **page)
339 unsigned long offset;
343 if (index < SHMEM_NR_DIRECT) {
344 shmem_swp_balance_unmap();
345 return info->i_direct+index;
347 if (!info->i_indirect) {
349 info->i_indirect = *page;
352 return NULL; /* need another page */
355 index -= SHMEM_NR_DIRECT;
356 offset = index % ENTRIES_PER_PAGE;
357 index /= ENTRIES_PER_PAGE;
358 dir = shmem_dir_map(info->i_indirect);
360 if (index >= ENTRIES_PER_PAGE/2) {
361 index -= ENTRIES_PER_PAGE/2;
362 dir += ENTRIES_PER_PAGE/2 + index/ENTRIES_PER_PAGE;
363 index %= ENTRIES_PER_PAGE;
370 shmem_dir_unmap(dir);
371 return NULL; /* need another page */
373 shmem_dir_unmap(dir);
374 dir = shmem_dir_map(subdir);
380 if (!page || !(subdir = *page)) {
381 shmem_dir_unmap(dir);
382 return NULL; /* need a page */
387 shmem_dir_unmap(dir);
388 return shmem_swp_map(subdir) + offset;
391 static void shmem_swp_set(struct shmem_inode_info *info, swp_entry_t *entry, unsigned long value)
393 long incdec = value? 1: -1;
396 info->swapped += incdec;
397 if ((unsigned long)(entry - info->i_direct) >= SHMEM_NR_DIRECT) {
398 struct page *page = kmap_atomic_to_page(entry);
399 set_page_private(page, page_private(page) + incdec);
404 * shmem_swp_alloc - get the position of the swap entry for the page.
405 * @info: info structure for the inode
406 * @index: index of the page to find
407 * @sgp: check and recheck i_size? skip allocation?
409 * If the entry does not exist, allocate it.
411 static swp_entry_t *shmem_swp_alloc(struct shmem_inode_info *info, unsigned long index, enum sgp_type sgp)
413 struct inode *inode = &info->vfs_inode;
414 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
415 struct page *page = NULL;
418 if (sgp != SGP_WRITE &&
419 ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode))
420 return ERR_PTR(-EINVAL);
422 while (!(entry = shmem_swp_entry(info, index, &page))) {
424 return shmem_swp_map(ZERO_PAGE(0));
426 * Test used_blocks against 1 less max_blocks, since we have 1 data
427 * page (and perhaps indirect index pages) yet to allocate:
428 * a waste to allocate index if we cannot allocate data.
430 if (sbinfo->max_blocks) {
431 if (percpu_counter_compare(&sbinfo->used_blocks,
432 sbinfo->max_blocks - 1) >= 0)
433 return ERR_PTR(-ENOSPC);
434 percpu_counter_inc(&sbinfo->used_blocks);
435 spin_lock(&inode->i_lock);
436 inode->i_blocks += BLOCKS_PER_PAGE;
437 spin_unlock(&inode->i_lock);
440 spin_unlock(&info->lock);
441 page = shmem_dir_alloc(mapping_gfp_mask(inode->i_mapping));
442 spin_lock(&info->lock);
445 shmem_free_blocks(inode, 1);
446 return ERR_PTR(-ENOMEM);
448 if (sgp != SGP_WRITE &&
449 ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode)) {
450 entry = ERR_PTR(-EINVAL);
453 if (info->next_index <= index)
454 info->next_index = index + 1;
457 /* another task gave its page, or truncated the file */
458 shmem_free_blocks(inode, 1);
459 shmem_dir_free(page);
461 if (info->next_index <= index && !IS_ERR(entry))
462 info->next_index = index + 1;
467 * shmem_free_swp - free some swap entries in a directory
468 * @dir: pointer to the directory
469 * @edir: pointer after last entry of the directory
470 * @punch_lock: pointer to spinlock when needed for the holepunch case
472 static int shmem_free_swp(swp_entry_t *dir, swp_entry_t *edir,
473 spinlock_t *punch_lock)
475 spinlock_t *punch_unlock = NULL;
479 for (ptr = dir; ptr < edir; ptr++) {
481 if (unlikely(punch_lock)) {
482 punch_unlock = punch_lock;
484 spin_lock(punch_unlock);
488 free_swap_and_cache(*ptr);
489 *ptr = (swp_entry_t){0};
494 spin_unlock(punch_unlock);
498 static int shmem_map_and_free_swp(struct page *subdir, int offset,
499 int limit, struct page ***dir, spinlock_t *punch_lock)
504 ptr = shmem_swp_map(subdir);
505 for (; offset < limit; offset += LATENCY_LIMIT) {
506 int size = limit - offset;
507 if (size > LATENCY_LIMIT)
508 size = LATENCY_LIMIT;
509 freed += shmem_free_swp(ptr+offset, ptr+offset+size,
511 if (need_resched()) {
512 shmem_swp_unmap(ptr);
514 shmem_dir_unmap(*dir);
518 ptr = shmem_swp_map(subdir);
521 shmem_swp_unmap(ptr);
525 static void shmem_free_pages(struct list_head *next)
531 page = container_of(next, struct page, lru);
533 shmem_dir_free(page);
535 if (freed >= LATENCY_LIMIT) {
542 static void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end)
544 struct shmem_inode_info *info = SHMEM_I(inode);
549 unsigned long diroff;
555 LIST_HEAD(pages_to_free);
556 long nr_pages_to_free = 0;
557 long nr_swaps_freed = 0;
561 spinlock_t *needs_lock;
562 spinlock_t *punch_lock;
563 unsigned long upper_limit;
565 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
566 idx = (start + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
567 if (idx >= info->next_index)
570 spin_lock(&info->lock);
571 info->flags |= SHMEM_TRUNCATE;
572 if (likely(end == (loff_t) -1)) {
573 limit = info->next_index;
574 upper_limit = SHMEM_MAX_INDEX;
575 info->next_index = idx;
579 if (end + 1 >= inode->i_size) { /* we may free a little more */
580 limit = (inode->i_size + PAGE_CACHE_SIZE - 1) >>
582 upper_limit = SHMEM_MAX_INDEX;
584 limit = (end + 1) >> PAGE_CACHE_SHIFT;
587 needs_lock = &info->lock;
591 topdir = info->i_indirect;
592 if (topdir && idx <= SHMEM_NR_DIRECT && !punch_hole) {
593 info->i_indirect = NULL;
595 list_add(&topdir->lru, &pages_to_free);
597 spin_unlock(&info->lock);
599 if (info->swapped && idx < SHMEM_NR_DIRECT) {
600 ptr = info->i_direct;
602 if (size > SHMEM_NR_DIRECT)
603 size = SHMEM_NR_DIRECT;
604 nr_swaps_freed = shmem_free_swp(ptr+idx, ptr+size, needs_lock);
608 * If there are no indirect blocks or we are punching a hole
609 * below indirect blocks, nothing to be done.
611 if (!topdir || limit <= SHMEM_NR_DIRECT)
615 * The truncation case has already dropped info->lock, and we're safe
616 * because i_size and next_index have already been lowered, preventing
617 * access beyond. But in the punch_hole case, we still need to take
618 * the lock when updating the swap directory, because there might be
619 * racing accesses by shmem_getpage(SGP_CACHE), shmem_unuse_inode or
620 * shmem_writepage. However, whenever we find we can remove a whole
621 * directory page (not at the misaligned start or end of the range),
622 * we first NULLify its pointer in the level above, and then have no
623 * need to take the lock when updating its contents: needs_lock and
624 * punch_lock (either pointing to info->lock or NULL) manage this.
627 upper_limit -= SHMEM_NR_DIRECT;
628 limit -= SHMEM_NR_DIRECT;
629 idx = (idx > SHMEM_NR_DIRECT)? (idx - SHMEM_NR_DIRECT): 0;
630 offset = idx % ENTRIES_PER_PAGE;
633 dir = shmem_dir_map(topdir);
634 stage = ENTRIES_PER_PAGEPAGE/2;
635 if (idx < ENTRIES_PER_PAGEPAGE/2) {
637 diroff = idx/ENTRIES_PER_PAGE;
639 dir += ENTRIES_PER_PAGE/2;
640 dir += (idx - ENTRIES_PER_PAGEPAGE/2)/ENTRIES_PER_PAGEPAGE;
642 stage += ENTRIES_PER_PAGEPAGE;
645 diroff = ((idx - ENTRIES_PER_PAGEPAGE/2) %
646 ENTRIES_PER_PAGEPAGE) / ENTRIES_PER_PAGE;
647 if (!diroff && !offset && upper_limit >= stage) {
649 spin_lock(needs_lock);
651 spin_unlock(needs_lock);
656 list_add(&middir->lru, &pages_to_free);
658 shmem_dir_unmap(dir);
659 dir = shmem_dir_map(middir);
667 for (; idx < limit; idx += ENTRIES_PER_PAGE, diroff++) {
668 if (unlikely(idx == stage)) {
669 shmem_dir_unmap(dir);
670 dir = shmem_dir_map(topdir) +
671 ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
674 idx += ENTRIES_PER_PAGEPAGE;
678 stage = idx + ENTRIES_PER_PAGEPAGE;
681 needs_lock = &info->lock;
682 if (upper_limit >= stage) {
684 spin_lock(needs_lock);
686 spin_unlock(needs_lock);
691 list_add(&middir->lru, &pages_to_free);
693 shmem_dir_unmap(dir);
695 dir = shmem_dir_map(middir);
698 punch_lock = needs_lock;
699 subdir = dir[diroff];
700 if (subdir && !offset && upper_limit-idx >= ENTRIES_PER_PAGE) {
702 spin_lock(needs_lock);
704 spin_unlock(needs_lock);
709 list_add(&subdir->lru, &pages_to_free);
711 if (subdir && page_private(subdir) /* has swap entries */) {
713 if (size > ENTRIES_PER_PAGE)
714 size = ENTRIES_PER_PAGE;
715 freed = shmem_map_and_free_swp(subdir,
716 offset, size, &dir, punch_lock);
718 dir = shmem_dir_map(middir);
719 nr_swaps_freed += freed;
720 if (offset || punch_lock) {
721 spin_lock(&info->lock);
722 set_page_private(subdir,
723 page_private(subdir) - freed);
724 spin_unlock(&info->lock);
726 BUG_ON(page_private(subdir) != freed);
731 shmem_dir_unmap(dir);
733 if (inode->i_mapping->nrpages && (info->flags & SHMEM_PAGEIN)) {
735 * Call truncate_inode_pages again: racing shmem_unuse_inode
736 * may have swizzled a page in from swap since
737 * truncate_pagecache or generic_delete_inode did it, before we
738 * lowered next_index. Also, though shmem_getpage checks
739 * i_size before adding to cache, no recheck after: so fix the
740 * narrow window there too.
742 * Recalling truncate_inode_pages_range and unmap_mapping_range
743 * every time for punch_hole (which never got a chance to clear
744 * SHMEM_PAGEIN at the start of vmtruncate_range) is expensive,
745 * yet hardly ever necessary: try to optimize them out later.
747 truncate_inode_pages_range(inode->i_mapping, start, end);
749 unmap_mapping_range(inode->i_mapping, start,
753 spin_lock(&info->lock);
754 info->flags &= ~SHMEM_TRUNCATE;
755 info->swapped -= nr_swaps_freed;
756 if (nr_pages_to_free)
757 shmem_free_blocks(inode, nr_pages_to_free);
758 shmem_recalc_inode(inode);
759 spin_unlock(&info->lock);
762 * Empty swap vector directory pages to be freed?
764 if (!list_empty(&pages_to_free)) {
765 pages_to_free.prev->next = NULL;
766 shmem_free_pages(pages_to_free.next);
770 static int shmem_notify_change(struct dentry *dentry, struct iattr *attr)
772 struct inode *inode = dentry->d_inode;
773 loff_t newsize = attr->ia_size;
776 error = inode_change_ok(inode, attr);
780 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)
781 && newsize != inode->i_size) {
782 struct page *page = NULL;
784 if (newsize < inode->i_size) {
786 * If truncating down to a partial page, then
787 * if that page is already allocated, hold it
788 * in memory until the truncation is over, so
789 * truncate_partial_page cannot miss it were
790 * it assigned to swap.
792 if (newsize & (PAGE_CACHE_SIZE-1)) {
793 (void) shmem_getpage(inode,
794 newsize >> PAGE_CACHE_SHIFT,
795 &page, SGP_READ, NULL);
800 * Reset SHMEM_PAGEIN flag so that shmem_truncate can
801 * detect if any pages might have been added to cache
802 * after truncate_inode_pages. But we needn't bother
803 * if it's being fully truncated to zero-length: the
804 * nrpages check is efficient enough in that case.
807 struct shmem_inode_info *info = SHMEM_I(inode);
808 spin_lock(&info->lock);
809 info->flags &= ~SHMEM_PAGEIN;
810 spin_unlock(&info->lock);
814 /* XXX(truncate): truncate_setsize should be called last */
815 truncate_setsize(inode, newsize);
817 page_cache_release(page);
818 shmem_truncate_range(inode, newsize, (loff_t)-1);
821 setattr_copy(inode, attr);
822 #ifdef CONFIG_TMPFS_POSIX_ACL
823 if (attr->ia_valid & ATTR_MODE)
824 error = generic_acl_chmod(inode);
829 static void shmem_evict_inode(struct inode *inode)
831 struct shmem_inode_info *info = SHMEM_I(inode);
832 struct shmem_xattr *xattr, *nxattr;
834 if (inode->i_mapping->a_ops == &shmem_aops) {
835 truncate_inode_pages(inode->i_mapping, 0);
836 shmem_unacct_size(info->flags, inode->i_size);
838 shmem_truncate_range(inode, 0, (loff_t)-1);
839 if (!list_empty(&info->swaplist)) {
840 mutex_lock(&shmem_swaplist_mutex);
841 list_del_init(&info->swaplist);
842 mutex_unlock(&shmem_swaplist_mutex);
846 list_for_each_entry_safe(xattr, nxattr, &info->xattr_list, list) {
850 BUG_ON(inode->i_blocks);
851 shmem_free_inode(inode->i_sb);
852 end_writeback(inode);
855 static inline int shmem_find_swp(swp_entry_t entry, swp_entry_t *dir, swp_entry_t *edir)
859 for (ptr = dir; ptr < edir; ptr++) {
860 if (ptr->val == entry.val)
866 static int shmem_unuse_inode(struct shmem_inode_info *info, swp_entry_t entry, struct page *page)
868 struct address_space *mapping;
880 ptr = info->i_direct;
881 spin_lock(&info->lock);
882 if (!info->swapped) {
883 list_del_init(&info->swaplist);
886 limit = info->next_index;
888 if (size > SHMEM_NR_DIRECT)
889 size = SHMEM_NR_DIRECT;
890 offset = shmem_find_swp(entry, ptr, ptr+size);
892 shmem_swp_balance_unmap();
895 if (!info->i_indirect)
898 dir = shmem_dir_map(info->i_indirect);
899 stage = SHMEM_NR_DIRECT + ENTRIES_PER_PAGEPAGE/2;
901 for (idx = SHMEM_NR_DIRECT; idx < limit; idx += ENTRIES_PER_PAGE, dir++) {
902 if (unlikely(idx == stage)) {
903 shmem_dir_unmap(dir-1);
904 if (cond_resched_lock(&info->lock)) {
905 /* check it has not been truncated */
906 if (limit > info->next_index) {
907 limit = info->next_index;
912 dir = shmem_dir_map(info->i_indirect) +
913 ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
916 idx += ENTRIES_PER_PAGEPAGE;
920 stage = idx + ENTRIES_PER_PAGEPAGE;
922 shmem_dir_unmap(dir);
923 dir = shmem_dir_map(subdir);
926 if (subdir && page_private(subdir)) {
927 ptr = shmem_swp_map(subdir);
929 if (size > ENTRIES_PER_PAGE)
930 size = ENTRIES_PER_PAGE;
931 offset = shmem_find_swp(entry, ptr, ptr+size);
932 shmem_swp_unmap(ptr);
934 shmem_dir_unmap(dir);
935 ptr = shmem_swp_map(subdir);
941 shmem_dir_unmap(dir-1);
943 spin_unlock(&info->lock);
950 * Move _head_ to start search for next from here.
951 * But be careful: shmem_evict_inode checks list_empty without taking
952 * mutex, and there's an instant in list_move_tail when info->swaplist
953 * would appear empty, if it were the only one on shmem_swaplist. We
954 * could avoid doing it if inode NULL; or use this minor optimization.
956 if (shmem_swaplist.next != &info->swaplist)
957 list_move_tail(&shmem_swaplist, &info->swaplist);
960 * We rely on shmem_swaplist_mutex, not only to protect the swaplist,
961 * but also to hold up shmem_evict_inode(): so inode cannot be freed
962 * beneath us (pagelock doesn't help until the page is in pagecache).
964 mapping = info->vfs_inode.i_mapping;
965 error = add_to_page_cache_locked(page, mapping, idx, GFP_NOWAIT);
966 /* which does mem_cgroup_uncharge_cache_page on error */
968 if (error == -EEXIST) {
969 struct page *filepage = find_get_page(mapping, idx);
973 * There might be a more uptodate page coming down
974 * from a stacked writepage: forget our swappage if so.
976 if (PageUptodate(filepage))
978 page_cache_release(filepage);
982 delete_from_swap_cache(page);
983 set_page_dirty(page);
984 info->flags |= SHMEM_PAGEIN;
985 shmem_swp_set(info, ptr, 0);
987 error = 1; /* not an error, but entry was found */
989 shmem_swp_unmap(ptr);
990 spin_unlock(&info->lock);
995 * shmem_unuse() search for an eventually swapped out shmem page.
997 int shmem_unuse(swp_entry_t entry, struct page *page)
999 struct list_head *p, *next;
1000 struct shmem_inode_info *info;
1005 * Charge page using GFP_KERNEL while we can wait, before taking
1006 * the shmem_swaplist_mutex which might hold up shmem_writepage().
1007 * Charged back to the user (not to caller) when swap account is used.
1008 * add_to_page_cache() will be called with GFP_NOWAIT.
1010 error = mem_cgroup_cache_charge(page, current->mm, GFP_KERNEL);
1014 * Try to preload while we can wait, to not make a habit of
1015 * draining atomic reserves; but don't latch on to this cpu,
1016 * it's okay if sometimes we get rescheduled after this.
1018 error = radix_tree_preload(GFP_KERNEL);
1021 radix_tree_preload_end();
1023 mutex_lock(&shmem_swaplist_mutex);
1024 list_for_each_safe(p, next, &shmem_swaplist) {
1025 info = list_entry(p, struct shmem_inode_info, swaplist);
1026 found = shmem_unuse_inode(info, entry, page);
1031 mutex_unlock(&shmem_swaplist_mutex);
1035 mem_cgroup_uncharge_cache_page(page);
1040 page_cache_release(page);
1045 * Move the page from the page cache to the swap cache.
1047 static int shmem_writepage(struct page *page, struct writeback_control *wbc)
1049 struct shmem_inode_info *info;
1050 swp_entry_t *entry, swap;
1051 struct address_space *mapping;
1052 unsigned long index;
1053 struct inode *inode;
1055 BUG_ON(!PageLocked(page));
1056 mapping = page->mapping;
1057 index = page->index;
1058 inode = mapping->host;
1059 info = SHMEM_I(inode);
1060 if (info->flags & VM_LOCKED)
1062 if (!total_swap_pages)
1066 * shmem_backing_dev_info's capabilities prevent regular writeback or
1067 * sync from ever calling shmem_writepage; but a stacking filesystem
1068 * may use the ->writepage of its underlying filesystem, in which case
1069 * tmpfs should write out to swap only in response to memory pressure,
1070 * and not for the writeback threads or sync. However, in those cases,
1071 * we do still want to check if there's a redundant swappage to be
1074 if (wbc->for_reclaim)
1075 swap = get_swap_page();
1080 * Add inode to shmem_unuse()'s list of swapped-out inodes,
1081 * if it's not already there. Do it now because we cannot take
1082 * mutex while holding spinlock, and must do so before the page
1083 * is moved to swap cache, when its pagelock no longer protects
1084 * the inode from eviction. But don't unlock the mutex until
1085 * we've taken the spinlock, because shmem_unuse_inode() will
1086 * prune a !swapped inode from the swaplist under both locks.
1089 mutex_lock(&shmem_swaplist_mutex);
1090 if (list_empty(&info->swaplist))
1091 list_add_tail(&info->swaplist, &shmem_swaplist);
1094 spin_lock(&info->lock);
1096 mutex_unlock(&shmem_swaplist_mutex);
1098 if (index >= info->next_index) {
1099 BUG_ON(!(info->flags & SHMEM_TRUNCATE));
1102 entry = shmem_swp_entry(info, index, NULL);
1105 * The more uptodate page coming down from a stacked
1106 * writepage should replace our old swappage.
1108 free_swap_and_cache(*entry);
1109 shmem_swp_set(info, entry, 0);
1111 shmem_recalc_inode(inode);
1113 if (swap.val && add_to_swap_cache(page, swap, GFP_ATOMIC) == 0) {
1114 delete_from_page_cache(page);
1115 shmem_swp_set(info, entry, swap.val);
1116 shmem_swp_unmap(entry);
1117 spin_unlock(&info->lock);
1118 swap_shmem_alloc(swap);
1119 BUG_ON(page_mapped(page));
1120 swap_writepage(page, wbc);
1124 shmem_swp_unmap(entry);
1126 spin_unlock(&info->lock);
1128 * add_to_swap_cache() doesn't return -EEXIST, so we can safely
1129 * clear SWAP_HAS_CACHE flag.
1131 swapcache_free(swap, NULL);
1133 set_page_dirty(page);
1134 if (wbc->for_reclaim)
1135 return AOP_WRITEPAGE_ACTIVATE; /* Return with page locked */
1142 static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
1146 if (!mpol || mpol->mode == MPOL_DEFAULT)
1147 return; /* show nothing */
1149 mpol_to_str(buffer, sizeof(buffer), mpol, 1);
1151 seq_printf(seq, ",mpol=%s", buffer);
1154 static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1156 struct mempolicy *mpol = NULL;
1158 spin_lock(&sbinfo->stat_lock); /* prevent replace/use races */
1159 mpol = sbinfo->mpol;
1161 spin_unlock(&sbinfo->stat_lock);
1165 #endif /* CONFIG_TMPFS */
1167 static struct page *shmem_swapin(swp_entry_t entry, gfp_t gfp,
1168 struct shmem_inode_info *info, unsigned long idx)
1170 struct mempolicy mpol, *spol;
1171 struct vm_area_struct pvma;
1174 spol = mpol_cond_copy(&mpol,
1175 mpol_shared_policy_lookup(&info->policy, idx));
1177 /* Create a pseudo vma that just contains the policy */
1179 pvma.vm_pgoff = idx;
1181 pvma.vm_policy = spol;
1182 page = swapin_readahead(entry, gfp, &pvma, 0);
1186 static struct page *shmem_alloc_page(gfp_t gfp,
1187 struct shmem_inode_info *info, unsigned long idx)
1189 struct vm_area_struct pvma;
1191 /* Create a pseudo vma that just contains the policy */
1193 pvma.vm_pgoff = idx;
1195 pvma.vm_policy = mpol_shared_policy_lookup(&info->policy, idx);
1198 * alloc_page_vma() will drop the shared policy reference
1200 return alloc_page_vma(gfp, &pvma, 0);
1202 #else /* !CONFIG_NUMA */
1204 static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *p)
1207 #endif /* CONFIG_TMPFS */
1209 static inline struct page *shmem_swapin(swp_entry_t entry, gfp_t gfp,
1210 struct shmem_inode_info *info, unsigned long idx)
1212 return swapin_readahead(entry, gfp, NULL, 0);
1215 static inline struct page *shmem_alloc_page(gfp_t gfp,
1216 struct shmem_inode_info *info, unsigned long idx)
1218 return alloc_page(gfp);
1220 #endif /* CONFIG_NUMA */
1222 #if !defined(CONFIG_NUMA) || !defined(CONFIG_TMPFS)
1223 static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1230 * shmem_getpage - either get the page from swap or allocate a new one
1232 * If we allocate a new one we do not mark it dirty. That's up to the
1233 * vm. If we swap it in we mark it dirty since we also free the swap
1234 * entry since a page cannot live in both the swap and page cache
1236 static int shmem_getpage(struct inode *inode, unsigned long idx,
1237 struct page **pagep, enum sgp_type sgp, int *type)
1239 struct address_space *mapping = inode->i_mapping;
1240 struct shmem_inode_info *info = SHMEM_I(inode);
1241 struct shmem_sb_info *sbinfo;
1242 struct page *filepage = *pagep;
1243 struct page *swappage;
1244 struct page *prealloc_page = NULL;
1250 if (idx >= SHMEM_MAX_INDEX)
1257 * Normally, filepage is NULL on entry, and either found
1258 * uptodate immediately, or allocated and zeroed, or read
1259 * in under swappage, which is then assigned to filepage.
1260 * But shmem_readpage (required for splice) passes in a locked
1261 * filepage, which may be found not uptodate by other callers
1262 * too, and may need to be copied from the swappage read in.
1266 filepage = find_lock_page(mapping, idx);
1267 if (filepage && PageUptodate(filepage))
1269 gfp = mapping_gfp_mask(mapping);
1272 * Try to preload while we can wait, to not make a habit of
1273 * draining atomic reserves; but don't latch on to this cpu.
1275 error = radix_tree_preload(gfp & ~__GFP_HIGHMEM);
1278 radix_tree_preload_end();
1279 if (sgp != SGP_READ && !prealloc_page) {
1280 /* We don't care if this fails */
1281 prealloc_page = shmem_alloc_page(gfp, info, idx);
1282 if (prealloc_page) {
1283 if (mem_cgroup_cache_charge(prealloc_page,
1284 current->mm, GFP_KERNEL)) {
1285 page_cache_release(prealloc_page);
1286 prealloc_page = NULL;
1293 spin_lock(&info->lock);
1294 shmem_recalc_inode(inode);
1295 entry = shmem_swp_alloc(info, idx, sgp);
1296 if (IS_ERR(entry)) {
1297 spin_unlock(&info->lock);
1298 error = PTR_ERR(entry);
1304 /* Look it up and read it in.. */
1305 swappage = lookup_swap_cache(swap);
1307 shmem_swp_unmap(entry);
1308 /* here we actually do the io */
1309 if (type && !(*type & VM_FAULT_MAJOR)) {
1310 __count_vm_event(PGMAJFAULT);
1311 *type |= VM_FAULT_MAJOR;
1313 spin_unlock(&info->lock);
1314 swappage = shmem_swapin(swap, gfp, info, idx);
1316 spin_lock(&info->lock);
1317 entry = shmem_swp_alloc(info, idx, sgp);
1319 error = PTR_ERR(entry);
1321 if (entry->val == swap.val)
1323 shmem_swp_unmap(entry);
1325 spin_unlock(&info->lock);
1330 wait_on_page_locked(swappage);
1331 page_cache_release(swappage);
1335 /* We have to do this with page locked to prevent races */
1336 if (!trylock_page(swappage)) {
1337 shmem_swp_unmap(entry);
1338 spin_unlock(&info->lock);
1339 wait_on_page_locked(swappage);
1340 page_cache_release(swappage);
1343 if (PageWriteback(swappage)) {
1344 shmem_swp_unmap(entry);
1345 spin_unlock(&info->lock);
1346 wait_on_page_writeback(swappage);
1347 unlock_page(swappage);
1348 page_cache_release(swappage);
1351 if (!PageUptodate(swappage)) {
1352 shmem_swp_unmap(entry);
1353 spin_unlock(&info->lock);
1354 unlock_page(swappage);
1355 page_cache_release(swappage);
1361 shmem_swp_set(info, entry, 0);
1362 shmem_swp_unmap(entry);
1363 delete_from_swap_cache(swappage);
1364 spin_unlock(&info->lock);
1365 copy_highpage(filepage, swappage);
1366 unlock_page(swappage);
1367 page_cache_release(swappage);
1368 flush_dcache_page(filepage);
1369 SetPageUptodate(filepage);
1370 set_page_dirty(filepage);
1372 } else if (!(error = add_to_page_cache_locked(swappage, mapping,
1373 idx, GFP_NOWAIT))) {
1374 info->flags |= SHMEM_PAGEIN;
1375 shmem_swp_set(info, entry, 0);
1376 shmem_swp_unmap(entry);
1377 delete_from_swap_cache(swappage);
1378 spin_unlock(&info->lock);
1379 filepage = swappage;
1380 set_page_dirty(filepage);
1383 shmem_swp_unmap(entry);
1384 spin_unlock(&info->lock);
1385 if (error == -ENOMEM) {
1387 * reclaim from proper memory cgroup and
1388 * call memcg's OOM if needed.
1390 error = mem_cgroup_shmem_charge_fallback(
1395 unlock_page(swappage);
1396 page_cache_release(swappage);
1400 unlock_page(swappage);
1401 page_cache_release(swappage);
1404 } else if (sgp == SGP_READ && !filepage) {
1405 shmem_swp_unmap(entry);
1406 filepage = find_get_page(mapping, idx);
1408 (!PageUptodate(filepage) || !trylock_page(filepage))) {
1409 spin_unlock(&info->lock);
1410 wait_on_page_locked(filepage);
1411 page_cache_release(filepage);
1415 spin_unlock(&info->lock);
1417 shmem_swp_unmap(entry);
1418 sbinfo = SHMEM_SB(inode->i_sb);
1419 if (sbinfo->max_blocks) {
1420 if (percpu_counter_compare(&sbinfo->used_blocks,
1421 sbinfo->max_blocks) >= 0 ||
1422 shmem_acct_block(info->flags))
1424 percpu_counter_inc(&sbinfo->used_blocks);
1425 spin_lock(&inode->i_lock);
1426 inode->i_blocks += BLOCKS_PER_PAGE;
1427 spin_unlock(&inode->i_lock);
1428 } else if (shmem_acct_block(info->flags))
1434 if (!prealloc_page) {
1435 spin_unlock(&info->lock);
1436 filepage = shmem_alloc_page(gfp, info, idx);
1438 shmem_unacct_blocks(info->flags, 1);
1439 shmem_free_blocks(inode, 1);
1443 SetPageSwapBacked(filepage);
1446 * Precharge page while we can wait, compensate
1449 error = mem_cgroup_cache_charge(filepage,
1450 current->mm, GFP_KERNEL);
1452 page_cache_release(filepage);
1453 shmem_unacct_blocks(info->flags, 1);
1454 shmem_free_blocks(inode, 1);
1459 spin_lock(&info->lock);
1461 filepage = prealloc_page;
1462 prealloc_page = NULL;
1463 SetPageSwapBacked(filepage);
1466 entry = shmem_swp_alloc(info, idx, sgp);
1468 error = PTR_ERR(entry);
1471 shmem_swp_unmap(entry);
1473 ret = error || swap.val;
1475 mem_cgroup_uncharge_cache_page(filepage);
1477 ret = add_to_page_cache_lru(filepage, mapping,
1480 * At add_to_page_cache_lru() failure, uncharge will
1481 * be done automatically.
1484 spin_unlock(&info->lock);
1485 page_cache_release(filepage);
1486 shmem_unacct_blocks(info->flags, 1);
1487 shmem_free_blocks(inode, 1);
1493 info->flags |= SHMEM_PAGEIN;
1497 spin_unlock(&info->lock);
1498 clear_highpage(filepage);
1499 flush_dcache_page(filepage);
1500 SetPageUptodate(filepage);
1501 if (sgp == SGP_DIRTY)
1502 set_page_dirty(filepage);
1511 * Perhaps the page was brought in from swap between find_lock_page
1512 * and taking info->lock? We allow for that at add_to_page_cache_lru,
1513 * but must also avoid reporting a spurious ENOSPC while working on a
1514 * full tmpfs. (When filepage has been passed in to shmem_getpage, it
1515 * is already in page cache, which prevents this race from occurring.)
1518 struct page *page = find_get_page(mapping, idx);
1520 spin_unlock(&info->lock);
1521 page_cache_release(page);
1525 spin_unlock(&info->lock);
1528 if (*pagep != filepage) {
1529 unlock_page(filepage);
1530 page_cache_release(filepage);
1533 if (prealloc_page) {
1534 mem_cgroup_uncharge_cache_page(prealloc_page);
1535 page_cache_release(prealloc_page);
1540 static int shmem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1542 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
1546 if (((loff_t)vmf->pgoff << PAGE_CACHE_SHIFT) >= i_size_read(inode))
1547 return VM_FAULT_SIGBUS;
1549 error = shmem_getpage(inode, vmf->pgoff, &vmf->page, SGP_CACHE, &ret);
1551 return ((error == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS);
1553 return ret | VM_FAULT_LOCKED;
1557 static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
1559 struct inode *i = vma->vm_file->f_path.dentry->d_inode;
1560 return mpol_set_shared_policy(&SHMEM_I(i)->policy, vma, new);
1563 static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
1566 struct inode *i = vma->vm_file->f_path.dentry->d_inode;
1569 idx = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
1570 return mpol_shared_policy_lookup(&SHMEM_I(i)->policy, idx);
1574 int shmem_lock(struct file *file, int lock, struct user_struct *user)
1576 struct inode *inode = file->f_path.dentry->d_inode;
1577 struct shmem_inode_info *info = SHMEM_I(inode);
1578 int retval = -ENOMEM;
1580 spin_lock(&info->lock);
1581 if (lock && !(info->flags & VM_LOCKED)) {
1582 if (!user_shm_lock(inode->i_size, user))
1584 info->flags |= VM_LOCKED;
1585 mapping_set_unevictable(file->f_mapping);
1587 if (!lock && (info->flags & VM_LOCKED) && user) {
1588 user_shm_unlock(inode->i_size, user);
1589 info->flags &= ~VM_LOCKED;
1590 mapping_clear_unevictable(file->f_mapping);
1591 scan_mapping_unevictable_pages(file->f_mapping);
1596 spin_unlock(&info->lock);
1600 static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
1602 file_accessed(file);
1603 vma->vm_ops = &shmem_vm_ops;
1604 vma->vm_flags |= VM_CAN_NONLINEAR;
1608 static struct inode *shmem_get_inode(struct super_block *sb, const struct inode *dir,
1609 int mode, dev_t dev, unsigned long flags)
1611 struct inode *inode;
1612 struct shmem_inode_info *info;
1613 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1615 if (shmem_reserve_inode(sb))
1618 inode = new_inode(sb);
1620 inode->i_ino = get_next_ino();
1621 inode_init_owner(inode, dir, mode);
1622 inode->i_blocks = 0;
1623 inode->i_mapping->backing_dev_info = &shmem_backing_dev_info;
1624 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
1625 inode->i_generation = get_seconds();
1626 info = SHMEM_I(inode);
1627 memset(info, 0, (char *)inode - (char *)info);
1628 spin_lock_init(&info->lock);
1629 info->flags = flags & VM_NORESERVE;
1630 INIT_LIST_HEAD(&info->swaplist);
1631 INIT_LIST_HEAD(&info->xattr_list);
1632 cache_no_acl(inode);
1634 switch (mode & S_IFMT) {
1636 inode->i_op = &shmem_special_inode_operations;
1637 init_special_inode(inode, mode, dev);
1640 inode->i_mapping->a_ops = &shmem_aops;
1641 inode->i_op = &shmem_inode_operations;
1642 inode->i_fop = &shmem_file_operations;
1643 mpol_shared_policy_init(&info->policy,
1644 shmem_get_sbmpol(sbinfo));
1648 /* Some things misbehave if size == 0 on a directory */
1649 inode->i_size = 2 * BOGO_DIRENT_SIZE;
1650 inode->i_op = &shmem_dir_inode_operations;
1651 inode->i_fop = &simple_dir_operations;
1655 * Must not load anything in the rbtree,
1656 * mpol_free_shared_policy will not be called.
1658 mpol_shared_policy_init(&info->policy, NULL);
1662 shmem_free_inode(sb);
1667 static const struct inode_operations shmem_symlink_inode_operations;
1668 static const struct inode_operations shmem_symlink_inline_operations;
1671 * Normally tmpfs avoids the use of shmem_readpage and shmem_write_begin;
1672 * but providing them allows a tmpfs file to be used for splice, sendfile, and
1673 * below the loop driver, in the generic fashion that many filesystems support.
1675 static int shmem_readpage(struct file *file, struct page *page)
1677 struct inode *inode = page->mapping->host;
1678 int error = shmem_getpage(inode, page->index, &page, SGP_CACHE, NULL);
1684 shmem_write_begin(struct file *file, struct address_space *mapping,
1685 loff_t pos, unsigned len, unsigned flags,
1686 struct page **pagep, void **fsdata)
1688 struct inode *inode = mapping->host;
1689 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1691 return shmem_getpage(inode, index, pagep, SGP_WRITE, NULL);
1695 shmem_write_end(struct file *file, struct address_space *mapping,
1696 loff_t pos, unsigned len, unsigned copied,
1697 struct page *page, void *fsdata)
1699 struct inode *inode = mapping->host;
1701 if (pos + copied > inode->i_size)
1702 i_size_write(inode, pos + copied);
1704 set_page_dirty(page);
1706 page_cache_release(page);
1711 static void do_shmem_file_read(struct file *filp, loff_t *ppos, read_descriptor_t *desc, read_actor_t actor)
1713 struct inode *inode = filp->f_path.dentry->d_inode;
1714 struct address_space *mapping = inode->i_mapping;
1715 unsigned long index, offset;
1716 enum sgp_type sgp = SGP_READ;
1719 * Might this read be for a stacking filesystem? Then when reading
1720 * holes of a sparse file, we actually need to allocate those pages,
1721 * and even mark them dirty, so it cannot exceed the max_blocks limit.
1723 if (segment_eq(get_fs(), KERNEL_DS))
1726 index = *ppos >> PAGE_CACHE_SHIFT;
1727 offset = *ppos & ~PAGE_CACHE_MASK;
1730 struct page *page = NULL;
1731 unsigned long end_index, nr, ret;
1732 loff_t i_size = i_size_read(inode);
1734 end_index = i_size >> PAGE_CACHE_SHIFT;
1735 if (index > end_index)
1737 if (index == end_index) {
1738 nr = i_size & ~PAGE_CACHE_MASK;
1743 desc->error = shmem_getpage(inode, index, &page, sgp, NULL);
1745 if (desc->error == -EINVAL)
1753 * We must evaluate after, since reads (unlike writes)
1754 * are called without i_mutex protection against truncate
1756 nr = PAGE_CACHE_SIZE;
1757 i_size = i_size_read(inode);
1758 end_index = i_size >> PAGE_CACHE_SHIFT;
1759 if (index == end_index) {
1760 nr = i_size & ~PAGE_CACHE_MASK;
1763 page_cache_release(page);
1771 * If users can be writing to this page using arbitrary
1772 * virtual addresses, take care about potential aliasing
1773 * before reading the page on the kernel side.
1775 if (mapping_writably_mapped(mapping))
1776 flush_dcache_page(page);
1778 * Mark the page accessed if we read the beginning.
1781 mark_page_accessed(page);
1783 page = ZERO_PAGE(0);
1784 page_cache_get(page);
1788 * Ok, we have the page, and it's up-to-date, so
1789 * now we can copy it to user space...
1791 * The actor routine returns how many bytes were actually used..
1792 * NOTE! This may not be the same as how much of a user buffer
1793 * we filled up (we may be padding etc), so we can only update
1794 * "pos" here (the actor routine has to update the user buffer
1795 * pointers and the remaining count).
1797 ret = actor(desc, page, offset, nr);
1799 index += offset >> PAGE_CACHE_SHIFT;
1800 offset &= ~PAGE_CACHE_MASK;
1802 page_cache_release(page);
1803 if (ret != nr || !desc->count)
1809 *ppos = ((loff_t) index << PAGE_CACHE_SHIFT) + offset;
1810 file_accessed(filp);
1813 static ssize_t shmem_file_aio_read(struct kiocb *iocb,
1814 const struct iovec *iov, unsigned long nr_segs, loff_t pos)
1816 struct file *filp = iocb->ki_filp;
1820 loff_t *ppos = &iocb->ki_pos;
1822 retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
1826 for (seg = 0; seg < nr_segs; seg++) {
1827 read_descriptor_t desc;
1830 desc.arg.buf = iov[seg].iov_base;
1831 desc.count = iov[seg].iov_len;
1832 if (desc.count == 0)
1835 do_shmem_file_read(filp, ppos, &desc, file_read_actor);
1836 retval += desc.written;
1838 retval = retval ?: desc.error;
1847 static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
1849 struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
1851 buf->f_type = TMPFS_MAGIC;
1852 buf->f_bsize = PAGE_CACHE_SIZE;
1853 buf->f_namelen = NAME_MAX;
1854 if (sbinfo->max_blocks) {
1855 buf->f_blocks = sbinfo->max_blocks;
1856 buf->f_bavail = buf->f_bfree =
1857 sbinfo->max_blocks - percpu_counter_sum(&sbinfo->used_blocks);
1859 if (sbinfo->max_inodes) {
1860 buf->f_files = sbinfo->max_inodes;
1861 buf->f_ffree = sbinfo->free_inodes;
1863 /* else leave those fields 0 like simple_statfs */
1868 * File creation. Allocate an inode, and we're done..
1871 shmem_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1873 struct inode *inode;
1874 int error = -ENOSPC;
1876 inode = shmem_get_inode(dir->i_sb, dir, mode, dev, VM_NORESERVE);
1878 error = security_inode_init_security(inode, dir,
1879 &dentry->d_name, NULL,
1882 if (error != -EOPNOTSUPP) {
1887 #ifdef CONFIG_TMPFS_POSIX_ACL
1888 error = generic_acl_init(inode, dir);
1896 dir->i_size += BOGO_DIRENT_SIZE;
1897 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1898 d_instantiate(dentry, inode);
1899 dget(dentry); /* Extra count - pin the dentry in core */
1904 static int shmem_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1908 if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
1914 static int shmem_create(struct inode *dir, struct dentry *dentry, int mode,
1915 struct nameidata *nd)
1917 return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
1923 static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1925 struct inode *inode = old_dentry->d_inode;
1929 * No ordinary (disk based) filesystem counts links as inodes;
1930 * but each new link needs a new dentry, pinning lowmem, and
1931 * tmpfs dentries cannot be pruned until they are unlinked.
1933 ret = shmem_reserve_inode(inode->i_sb);
1937 dir->i_size += BOGO_DIRENT_SIZE;
1938 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1940 ihold(inode); /* New dentry reference */
1941 dget(dentry); /* Extra pinning count for the created dentry */
1942 d_instantiate(dentry, inode);
1947 static int shmem_unlink(struct inode *dir, struct dentry *dentry)
1949 struct inode *inode = dentry->d_inode;
1951 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
1952 shmem_free_inode(inode->i_sb);
1954 dir->i_size -= BOGO_DIRENT_SIZE;
1955 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1957 dput(dentry); /* Undo the count from "create" - this does all the work */
1961 static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
1963 if (!simple_empty(dentry))
1966 drop_nlink(dentry->d_inode);
1968 return shmem_unlink(dir, dentry);
1972 * The VFS layer already does all the dentry stuff for rename,
1973 * we just have to decrement the usage count for the target if
1974 * it exists so that the VFS layer correctly free's it when it
1977 static int shmem_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
1979 struct inode *inode = old_dentry->d_inode;
1980 int they_are_dirs = S_ISDIR(inode->i_mode);
1982 if (!simple_empty(new_dentry))
1985 if (new_dentry->d_inode) {
1986 (void) shmem_unlink(new_dir, new_dentry);
1988 drop_nlink(old_dir);
1989 } else if (they_are_dirs) {
1990 drop_nlink(old_dir);
1994 old_dir->i_size -= BOGO_DIRENT_SIZE;
1995 new_dir->i_size += BOGO_DIRENT_SIZE;
1996 old_dir->i_ctime = old_dir->i_mtime =
1997 new_dir->i_ctime = new_dir->i_mtime =
1998 inode->i_ctime = CURRENT_TIME;
2002 static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
2006 struct inode *inode;
2007 struct page *page = NULL;
2009 struct shmem_inode_info *info;
2011 len = strlen(symname) + 1;
2012 if (len > PAGE_CACHE_SIZE)
2013 return -ENAMETOOLONG;
2015 inode = shmem_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0, VM_NORESERVE);
2019 error = security_inode_init_security(inode, dir, &dentry->d_name, NULL,
2022 if (error != -EOPNOTSUPP) {
2029 info = SHMEM_I(inode);
2030 inode->i_size = len-1;
2031 if (len <= SHMEM_SYMLINK_INLINE_LEN) {
2033 memcpy(info->inline_symlink, symname, len);
2034 inode->i_op = &shmem_symlink_inline_operations;
2036 error = shmem_getpage(inode, 0, &page, SGP_WRITE, NULL);
2041 inode->i_mapping->a_ops = &shmem_aops;
2042 inode->i_op = &shmem_symlink_inode_operations;
2043 kaddr = kmap_atomic(page, KM_USER0);
2044 memcpy(kaddr, symname, len);
2045 kunmap_atomic(kaddr, KM_USER0);
2046 set_page_dirty(page);
2048 page_cache_release(page);
2050 dir->i_size += BOGO_DIRENT_SIZE;
2051 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
2052 d_instantiate(dentry, inode);
2057 static void *shmem_follow_link_inline(struct dentry *dentry, struct nameidata *nd)
2059 nd_set_link(nd, SHMEM_I(dentry->d_inode)->inline_symlink);
2063 static void *shmem_follow_link(struct dentry *dentry, struct nameidata *nd)
2065 struct page *page = NULL;
2066 int res = shmem_getpage(dentry->d_inode, 0, &page, SGP_READ, NULL);
2067 nd_set_link(nd, res ? ERR_PTR(res) : kmap(page));
2073 static void shmem_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
2075 if (!IS_ERR(nd_get_link(nd))) {
2076 struct page *page = cookie;
2078 mark_page_accessed(page);
2079 page_cache_release(page);
2083 #ifdef CONFIG_TMPFS_XATTR
2085 * Superblocks without xattr inode operations may get some security.* xattr
2086 * support from the LSM "for free". As soon as we have any other xattrs
2087 * like ACLs, we also need to implement the security.* handlers at
2088 * filesystem level, though.
2091 static int shmem_xattr_get(struct dentry *dentry, const char *name,
2092 void *buffer, size_t size)
2094 struct shmem_inode_info *info;
2095 struct shmem_xattr *xattr;
2098 info = SHMEM_I(dentry->d_inode);
2100 spin_lock(&info->lock);
2101 list_for_each_entry(xattr, &info->xattr_list, list) {
2102 if (strcmp(name, xattr->name))
2107 if (size < xattr->size)
2110 memcpy(buffer, xattr->value, xattr->size);
2114 spin_unlock(&info->lock);
2118 static int shmem_xattr_set(struct dentry *dentry, const char *name,
2119 const void *value, size_t size, int flags)
2121 struct inode *inode = dentry->d_inode;
2122 struct shmem_inode_info *info = SHMEM_I(inode);
2123 struct shmem_xattr *xattr;
2124 struct shmem_xattr *new_xattr = NULL;
2128 /* value == NULL means remove */
2131 len = sizeof(*new_xattr) + size;
2132 if (len <= sizeof(*new_xattr))
2135 new_xattr = kmalloc(len, GFP_KERNEL);
2139 new_xattr->name = kstrdup(name, GFP_KERNEL);
2140 if (!new_xattr->name) {
2145 new_xattr->size = size;
2146 memcpy(new_xattr->value, value, size);
2149 spin_lock(&info->lock);
2150 list_for_each_entry(xattr, &info->xattr_list, list) {
2151 if (!strcmp(name, xattr->name)) {
2152 if (flags & XATTR_CREATE) {
2155 } else if (new_xattr) {
2156 list_replace(&xattr->list, &new_xattr->list);
2158 list_del(&xattr->list);
2163 if (flags & XATTR_REPLACE) {
2167 list_add(&new_xattr->list, &info->xattr_list);
2171 spin_unlock(&info->lock);
2179 static const struct xattr_handler *shmem_xattr_handlers[] = {
2180 #ifdef CONFIG_TMPFS_POSIX_ACL
2181 &generic_acl_access_handler,
2182 &generic_acl_default_handler,
2187 static int shmem_xattr_validate(const char *name)
2189 struct { const char *prefix; size_t len; } arr[] = {
2190 { XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN },
2191 { XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN }
2195 for (i = 0; i < ARRAY_SIZE(arr); i++) {
2196 size_t preflen = arr[i].len;
2197 if (strncmp(name, arr[i].prefix, preflen) == 0) {
2206 static ssize_t shmem_getxattr(struct dentry *dentry, const char *name,
2207 void *buffer, size_t size)
2212 * If this is a request for a synthetic attribute in the system.*
2213 * namespace use the generic infrastructure to resolve a handler
2214 * for it via sb->s_xattr.
2216 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
2217 return generic_getxattr(dentry, name, buffer, size);
2219 err = shmem_xattr_validate(name);
2223 return shmem_xattr_get(dentry, name, buffer, size);
2226 static int shmem_setxattr(struct dentry *dentry, const char *name,
2227 const void *value, size_t size, int flags)
2232 * If this is a request for a synthetic attribute in the system.*
2233 * namespace use the generic infrastructure to resolve a handler
2234 * for it via sb->s_xattr.
2236 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
2237 return generic_setxattr(dentry, name, value, size, flags);
2239 err = shmem_xattr_validate(name);
2244 value = ""; /* empty EA, do not remove */
2246 return shmem_xattr_set(dentry, name, value, size, flags);
2250 static int shmem_removexattr(struct dentry *dentry, const char *name)
2255 * If this is a request for a synthetic attribute in the system.*
2256 * namespace use the generic infrastructure to resolve a handler
2257 * for it via sb->s_xattr.
2259 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
2260 return generic_removexattr(dentry, name);
2262 err = shmem_xattr_validate(name);
2266 return shmem_xattr_set(dentry, name, NULL, 0, XATTR_REPLACE);
2269 static bool xattr_is_trusted(const char *name)
2271 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
2274 static ssize_t shmem_listxattr(struct dentry *dentry, char *buffer, size_t size)
2276 bool trusted = capable(CAP_SYS_ADMIN);
2277 struct shmem_xattr *xattr;
2278 struct shmem_inode_info *info;
2281 info = SHMEM_I(dentry->d_inode);
2283 spin_lock(&info->lock);
2284 list_for_each_entry(xattr, &info->xattr_list, list) {
2287 /* skip "trusted." attributes for unprivileged callers */
2288 if (!trusted && xattr_is_trusted(xattr->name))
2291 len = strlen(xattr->name) + 1;
2298 memcpy(buffer, xattr->name, len);
2302 spin_unlock(&info->lock);
2306 #endif /* CONFIG_TMPFS_XATTR */
2308 static const struct inode_operations shmem_symlink_inline_operations = {
2309 .readlink = generic_readlink,
2310 .follow_link = shmem_follow_link_inline,
2311 #ifdef CONFIG_TMPFS_XATTR
2312 .setxattr = shmem_setxattr,
2313 .getxattr = shmem_getxattr,
2314 .listxattr = shmem_listxattr,
2315 .removexattr = shmem_removexattr,
2319 static const struct inode_operations shmem_symlink_inode_operations = {
2320 .readlink = generic_readlink,
2321 .follow_link = shmem_follow_link,
2322 .put_link = shmem_put_link,
2323 #ifdef CONFIG_TMPFS_XATTR
2324 .setxattr = shmem_setxattr,
2325 .getxattr = shmem_getxattr,
2326 .listxattr = shmem_listxattr,
2327 .removexattr = shmem_removexattr,
2331 static struct dentry *shmem_get_parent(struct dentry *child)
2333 return ERR_PTR(-ESTALE);
2336 static int shmem_match(struct inode *ino, void *vfh)
2340 inum = (inum << 32) | fh[1];
2341 return ino->i_ino == inum && fh[0] == ino->i_generation;
2344 static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
2345 struct fid *fid, int fh_len, int fh_type)
2347 struct inode *inode;
2348 struct dentry *dentry = NULL;
2349 u64 inum = fid->raw[2];
2350 inum = (inum << 32) | fid->raw[1];
2355 inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
2356 shmem_match, fid->raw);
2358 dentry = d_find_alias(inode);
2365 static int shmem_encode_fh(struct dentry *dentry, __u32 *fh, int *len,
2368 struct inode *inode = dentry->d_inode;
2375 if (inode_unhashed(inode)) {
2376 /* Unfortunately insert_inode_hash is not idempotent,
2377 * so as we hash inodes here rather than at creation
2378 * time, we need a lock to ensure we only try
2381 static DEFINE_SPINLOCK(lock);
2383 if (inode_unhashed(inode))
2384 __insert_inode_hash(inode,
2385 inode->i_ino + inode->i_generation);
2389 fh[0] = inode->i_generation;
2390 fh[1] = inode->i_ino;
2391 fh[2] = ((__u64)inode->i_ino) >> 32;
2397 static const struct export_operations shmem_export_ops = {
2398 .get_parent = shmem_get_parent,
2399 .encode_fh = shmem_encode_fh,
2400 .fh_to_dentry = shmem_fh_to_dentry,
2403 static int shmem_parse_options(char *options, struct shmem_sb_info *sbinfo,
2406 char *this_char, *value, *rest;
2408 while (options != NULL) {
2409 this_char = options;
2412 * NUL-terminate this option: unfortunately,
2413 * mount options form a comma-separated list,
2414 * but mpol's nodelist may also contain commas.
2416 options = strchr(options, ',');
2417 if (options == NULL)
2420 if (!isdigit(*options)) {
2427 if ((value = strchr(this_char,'=')) != NULL) {
2431 "tmpfs: No value for mount option '%s'\n",
2436 if (!strcmp(this_char,"size")) {
2437 unsigned long long size;
2438 size = memparse(value,&rest);
2440 size <<= PAGE_SHIFT;
2441 size *= totalram_pages;
2447 sbinfo->max_blocks =
2448 DIV_ROUND_UP(size, PAGE_CACHE_SIZE);
2449 } else if (!strcmp(this_char,"nr_blocks")) {
2450 sbinfo->max_blocks = memparse(value, &rest);
2453 } else if (!strcmp(this_char,"nr_inodes")) {
2454 sbinfo->max_inodes = memparse(value, &rest);
2457 } else if (!strcmp(this_char,"mode")) {
2460 sbinfo->mode = simple_strtoul(value, &rest, 8) & 07777;
2463 } else if (!strcmp(this_char,"uid")) {
2466 sbinfo->uid = simple_strtoul(value, &rest, 0);
2469 } else if (!strcmp(this_char,"gid")) {
2472 sbinfo->gid = simple_strtoul(value, &rest, 0);
2475 } else if (!strcmp(this_char,"mpol")) {
2476 if (mpol_parse_str(value, &sbinfo->mpol, 1))
2479 printk(KERN_ERR "tmpfs: Bad mount option %s\n",
2487 printk(KERN_ERR "tmpfs: Bad value '%s' for mount option '%s'\n",
2493 static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
2495 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2496 struct shmem_sb_info config = *sbinfo;
2497 unsigned long inodes;
2498 int error = -EINVAL;
2500 if (shmem_parse_options(data, &config, true))
2503 spin_lock(&sbinfo->stat_lock);
2504 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
2505 if (percpu_counter_compare(&sbinfo->used_blocks, config.max_blocks) > 0)
2507 if (config.max_inodes < inodes)
2510 * Those tests also disallow limited->unlimited while any are in
2511 * use, so i_blocks will always be zero when max_blocks is zero;
2512 * but we must separately disallow unlimited->limited, because
2513 * in that case we have no record of how much is already in use.
2515 if (config.max_blocks && !sbinfo->max_blocks)
2517 if (config.max_inodes && !sbinfo->max_inodes)
2521 sbinfo->max_blocks = config.max_blocks;
2522 sbinfo->max_inodes = config.max_inodes;
2523 sbinfo->free_inodes = config.max_inodes - inodes;
2525 mpol_put(sbinfo->mpol);
2526 sbinfo->mpol = config.mpol; /* transfers initial ref */
2528 spin_unlock(&sbinfo->stat_lock);
2532 static int shmem_show_options(struct seq_file *seq, struct vfsmount *vfs)
2534 struct shmem_sb_info *sbinfo = SHMEM_SB(vfs->mnt_sb);
2536 if (sbinfo->max_blocks != shmem_default_max_blocks())
2537 seq_printf(seq, ",size=%luk",
2538 sbinfo->max_blocks << (PAGE_CACHE_SHIFT - 10));
2539 if (sbinfo->max_inodes != shmem_default_max_inodes())
2540 seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
2541 if (sbinfo->mode != (S_IRWXUGO | S_ISVTX))
2542 seq_printf(seq, ",mode=%03o", sbinfo->mode);
2543 if (sbinfo->uid != 0)
2544 seq_printf(seq, ",uid=%u", sbinfo->uid);
2545 if (sbinfo->gid != 0)
2546 seq_printf(seq, ",gid=%u", sbinfo->gid);
2547 shmem_show_mpol(seq, sbinfo->mpol);
2550 #endif /* CONFIG_TMPFS */
2552 static void shmem_put_super(struct super_block *sb)
2554 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2556 percpu_counter_destroy(&sbinfo->used_blocks);
2558 sb->s_fs_info = NULL;
2561 int shmem_fill_super(struct super_block *sb, void *data, int silent)
2563 struct inode *inode;
2564 struct dentry *root;
2565 struct shmem_sb_info *sbinfo;
2568 /* Round up to L1_CACHE_BYTES to resist false sharing */
2569 sbinfo = kzalloc(max((int)sizeof(struct shmem_sb_info),
2570 L1_CACHE_BYTES), GFP_KERNEL);
2574 sbinfo->mode = S_IRWXUGO | S_ISVTX;
2575 sbinfo->uid = current_fsuid();
2576 sbinfo->gid = current_fsgid();
2577 sb->s_fs_info = sbinfo;
2581 * Per default we only allow half of the physical ram per
2582 * tmpfs instance, limiting inodes to one per page of lowmem;
2583 * but the internal instance is left unlimited.
2585 if (!(sb->s_flags & MS_NOUSER)) {
2586 sbinfo->max_blocks = shmem_default_max_blocks();
2587 sbinfo->max_inodes = shmem_default_max_inodes();
2588 if (shmem_parse_options(data, sbinfo, false)) {
2593 sb->s_export_op = &shmem_export_ops;
2595 sb->s_flags |= MS_NOUSER;
2598 spin_lock_init(&sbinfo->stat_lock);
2599 if (percpu_counter_init(&sbinfo->used_blocks, 0))
2601 sbinfo->free_inodes = sbinfo->max_inodes;
2603 sb->s_maxbytes = SHMEM_MAX_BYTES;
2604 sb->s_blocksize = PAGE_CACHE_SIZE;
2605 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
2606 sb->s_magic = TMPFS_MAGIC;
2607 sb->s_op = &shmem_ops;
2608 sb->s_time_gran = 1;
2609 #ifdef CONFIG_TMPFS_XATTR
2610 sb->s_xattr = shmem_xattr_handlers;
2612 #ifdef CONFIG_TMPFS_POSIX_ACL
2613 sb->s_flags |= MS_POSIXACL;
2616 inode = shmem_get_inode(sb, NULL, S_IFDIR | sbinfo->mode, 0, VM_NORESERVE);
2619 inode->i_uid = sbinfo->uid;
2620 inode->i_gid = sbinfo->gid;
2621 root = d_alloc_root(inode);
2630 shmem_put_super(sb);
2634 static struct kmem_cache *shmem_inode_cachep;
2636 static struct inode *shmem_alloc_inode(struct super_block *sb)
2638 struct shmem_inode_info *p;
2639 p = (struct shmem_inode_info *)kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL);
2642 return &p->vfs_inode;
2645 static void shmem_i_callback(struct rcu_head *head)
2647 struct inode *inode = container_of(head, struct inode, i_rcu);
2648 INIT_LIST_HEAD(&inode->i_dentry);
2649 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
2652 static void shmem_destroy_inode(struct inode *inode)
2654 if ((inode->i_mode & S_IFMT) == S_IFREG) {
2655 /* only struct inode is valid if it's an inline symlink */
2656 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
2658 call_rcu(&inode->i_rcu, shmem_i_callback);
2661 static void init_once(void *foo)
2663 struct shmem_inode_info *p = (struct shmem_inode_info *) foo;
2665 inode_init_once(&p->vfs_inode);
2668 static int init_inodecache(void)
2670 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
2671 sizeof(struct shmem_inode_info),
2672 0, SLAB_PANIC, init_once);
2676 static void destroy_inodecache(void)
2678 kmem_cache_destroy(shmem_inode_cachep);
2681 static const struct address_space_operations shmem_aops = {
2682 .writepage = shmem_writepage,
2683 .set_page_dirty = __set_page_dirty_no_writeback,
2685 .readpage = shmem_readpage,
2686 .write_begin = shmem_write_begin,
2687 .write_end = shmem_write_end,
2689 .migratepage = migrate_page,
2690 .error_remove_page = generic_error_remove_page,
2693 static const struct file_operations shmem_file_operations = {
2696 .llseek = generic_file_llseek,
2697 .read = do_sync_read,
2698 .write = do_sync_write,
2699 .aio_read = shmem_file_aio_read,
2700 .aio_write = generic_file_aio_write,
2701 .fsync = noop_fsync,
2702 .splice_read = generic_file_splice_read,
2703 .splice_write = generic_file_splice_write,
2707 static const struct inode_operations shmem_inode_operations = {
2708 .setattr = shmem_notify_change,
2709 .truncate_range = shmem_truncate_range,
2710 #ifdef CONFIG_TMPFS_XATTR
2711 .setxattr = shmem_setxattr,
2712 .getxattr = shmem_getxattr,
2713 .listxattr = shmem_listxattr,
2714 .removexattr = shmem_removexattr,
2716 #ifdef CONFIG_TMPFS_POSIX_ACL
2717 .check_acl = generic_check_acl,
2722 static const struct inode_operations shmem_dir_inode_operations = {
2724 .create = shmem_create,
2725 .lookup = simple_lookup,
2727 .unlink = shmem_unlink,
2728 .symlink = shmem_symlink,
2729 .mkdir = shmem_mkdir,
2730 .rmdir = shmem_rmdir,
2731 .mknod = shmem_mknod,
2732 .rename = shmem_rename,
2734 #ifdef CONFIG_TMPFS_XATTR
2735 .setxattr = shmem_setxattr,
2736 .getxattr = shmem_getxattr,
2737 .listxattr = shmem_listxattr,
2738 .removexattr = shmem_removexattr,
2740 #ifdef CONFIG_TMPFS_POSIX_ACL
2741 .setattr = shmem_notify_change,
2742 .check_acl = generic_check_acl,
2746 static const struct inode_operations shmem_special_inode_operations = {
2747 #ifdef CONFIG_TMPFS_XATTR
2748 .setxattr = shmem_setxattr,
2749 .getxattr = shmem_getxattr,
2750 .listxattr = shmem_listxattr,
2751 .removexattr = shmem_removexattr,
2753 #ifdef CONFIG_TMPFS_POSIX_ACL
2754 .setattr = shmem_notify_change,
2755 .check_acl = generic_check_acl,
2759 static const struct super_operations shmem_ops = {
2760 .alloc_inode = shmem_alloc_inode,
2761 .destroy_inode = shmem_destroy_inode,
2763 .statfs = shmem_statfs,
2764 .remount_fs = shmem_remount_fs,
2765 .show_options = shmem_show_options,
2767 .evict_inode = shmem_evict_inode,
2768 .drop_inode = generic_delete_inode,
2769 .put_super = shmem_put_super,
2772 static const struct vm_operations_struct shmem_vm_ops = {
2773 .fault = shmem_fault,
2775 .set_policy = shmem_set_policy,
2776 .get_policy = shmem_get_policy,
2781 static struct dentry *shmem_mount(struct file_system_type *fs_type,
2782 int flags, const char *dev_name, void *data)
2784 return mount_nodev(fs_type, flags, data, shmem_fill_super);
2787 static struct file_system_type tmpfs_fs_type = {
2788 .owner = THIS_MODULE,
2790 .mount = shmem_mount,
2791 .kill_sb = kill_litter_super,
2794 int __init init_tmpfs(void)
2798 error = bdi_init(&shmem_backing_dev_info);
2802 error = init_inodecache();
2806 error = register_filesystem(&tmpfs_fs_type);
2808 printk(KERN_ERR "Could not register tmpfs\n");
2812 shm_mnt = vfs_kern_mount(&tmpfs_fs_type, MS_NOUSER,
2813 tmpfs_fs_type.name, NULL);
2814 if (IS_ERR(shm_mnt)) {
2815 error = PTR_ERR(shm_mnt);
2816 printk(KERN_ERR "Could not kern_mount tmpfs\n");
2822 unregister_filesystem(&tmpfs_fs_type);
2824 destroy_inodecache();
2826 bdi_destroy(&shmem_backing_dev_info);
2828 shm_mnt = ERR_PTR(error);
2832 #ifdef CONFIG_CGROUP_MEM_RES_CTLR
2834 * mem_cgroup_get_shmem_target - find a page or entry assigned to the shmem file
2835 * @inode: the inode to be searched
2836 * @pgoff: the offset to be searched
2837 * @pagep: the pointer for the found page to be stored
2838 * @ent: the pointer for the found swap entry to be stored
2840 * If a page is found, refcount of it is incremented. Callers should handle
2843 void mem_cgroup_get_shmem_target(struct inode *inode, pgoff_t pgoff,
2844 struct page **pagep, swp_entry_t *ent)
2846 swp_entry_t entry = { .val = 0 }, *ptr;
2847 struct page *page = NULL;
2848 struct shmem_inode_info *info = SHMEM_I(inode);
2850 if ((pgoff << PAGE_CACHE_SHIFT) >= i_size_read(inode))
2853 spin_lock(&info->lock);
2854 ptr = shmem_swp_entry(info, pgoff, NULL);
2856 if (ptr && ptr->val) {
2857 entry.val = ptr->val;
2858 page = find_get_page(&swapper_space, entry.val);
2861 page = find_get_page(inode->i_mapping, pgoff);
2863 shmem_swp_unmap(ptr);
2864 spin_unlock(&info->lock);
2871 #else /* !CONFIG_SHMEM */
2874 * tiny-shmem: simple shmemfs and tmpfs using ramfs code
2876 * This is intended for small system where the benefits of the full
2877 * shmem code (swap-backed and resource-limited) are outweighed by
2878 * their complexity. On systems without swap this code should be
2879 * effectively equivalent, but much lighter weight.
2882 #include <linux/ramfs.h>
2884 static struct file_system_type tmpfs_fs_type = {
2886 .mount = ramfs_mount,
2887 .kill_sb = kill_litter_super,
2890 int __init init_tmpfs(void)
2892 BUG_ON(register_filesystem(&tmpfs_fs_type) != 0);
2894 shm_mnt = kern_mount(&tmpfs_fs_type);
2895 BUG_ON(IS_ERR(shm_mnt));
2900 int shmem_unuse(swp_entry_t entry, struct page *page)
2905 int shmem_lock(struct file *file, int lock, struct user_struct *user)
2910 #ifdef CONFIG_CGROUP_MEM_RES_CTLR
2912 * mem_cgroup_get_shmem_target - find a page or entry assigned to the shmem file
2913 * @inode: the inode to be searched
2914 * @pgoff: the offset to be searched
2915 * @pagep: the pointer for the found page to be stored
2916 * @ent: the pointer for the found swap entry to be stored
2918 * If a page is found, refcount of it is incremented. Callers should handle
2921 void mem_cgroup_get_shmem_target(struct inode *inode, pgoff_t pgoff,
2922 struct page **pagep, swp_entry_t *ent)
2924 struct page *page = NULL;
2926 if ((pgoff << PAGE_CACHE_SHIFT) >= i_size_read(inode))
2928 page = find_get_page(inode->i_mapping, pgoff);
2931 *ent = (swp_entry_t){ .val = 0 };
2935 #define shmem_vm_ops generic_file_vm_ops
2936 #define shmem_file_operations ramfs_file_operations
2937 #define shmem_get_inode(sb, dir, mode, dev, flags) ramfs_get_inode(sb, dir, mode, dev)
2938 #define shmem_acct_size(flags, size) 0
2939 #define shmem_unacct_size(flags, size) do {} while (0)
2940 #define SHMEM_MAX_BYTES MAX_LFS_FILESIZE
2942 #endif /* CONFIG_SHMEM */
2947 * shmem_file_setup - get an unlinked file living in tmpfs
2948 * @name: name for dentry (to be seen in /proc/<pid>/maps
2949 * @size: size to be set for the file
2950 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
2952 struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags)
2956 struct inode *inode;
2958 struct dentry *root;
2961 if (IS_ERR(shm_mnt))
2962 return (void *)shm_mnt;
2964 if (size < 0 || size > SHMEM_MAX_BYTES)
2965 return ERR_PTR(-EINVAL);
2967 if (shmem_acct_size(flags, size))
2968 return ERR_PTR(-ENOMEM);
2972 this.len = strlen(name);
2973 this.hash = 0; /* will go */
2974 root = shm_mnt->mnt_root;
2975 path.dentry = d_alloc(root, &this);
2978 path.mnt = mntget(shm_mnt);
2981 inode = shmem_get_inode(root->d_sb, NULL, S_IFREG | S_IRWXUGO, 0, flags);
2985 d_instantiate(path.dentry, inode);
2986 inode->i_size = size;
2987 inode->i_nlink = 0; /* It is unlinked */
2989 error = ramfs_nommu_expand_for_mapping(inode, size);
2995 file = alloc_file(&path, FMODE_WRITE | FMODE_READ,
2996 &shmem_file_operations);
3005 shmem_unacct_size(flags, size);
3006 return ERR_PTR(error);
3008 EXPORT_SYMBOL_GPL(shmem_file_setup);
3011 * shmem_zero_setup - setup a shared anonymous mapping
3012 * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
3014 int shmem_zero_setup(struct vm_area_struct *vma)
3017 loff_t size = vma->vm_end - vma->vm_start;
3019 file = shmem_file_setup("dev/zero", size, vma->vm_flags);
3021 return PTR_ERR(file);
3025 vma->vm_file = file;
3026 vma->vm_ops = &shmem_vm_ops;
3027 vma->vm_flags |= VM_CAN_NONLINEAR;