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:
14 * Copyright (c) 2004, Luke Kenneth Casson Leighton <lkcl@lkcl.net>
15 * Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
17 * This file is released under the GPL.
21 * This virtual memory filesystem is heavily based on the ramfs. It
22 * extends ramfs by the ability to use swap and honor resource limits
23 * which makes it a completely usable filesystem.
26 #include <linux/config.h>
27 #include <linux/module.h>
28 #include <linux/init.h>
29 #include <linux/devfs_fs_kernel.h>
32 #include <linux/mman.h>
33 #include <linux/file.h>
34 #include <linux/swap.h>
35 #include <linux/pagemap.h>
36 #include <linux/string.h>
37 #include <linux/slab.h>
38 #include <linux/backing-dev.h>
39 #include <linux/shmem_fs.h>
40 #include <linux/mount.h>
41 #include <linux/writeback.h>
42 #include <linux/vfs.h>
43 #include <linux/blkdev.h>
44 #include <linux/security.h>
45 #include <linux/swapops.h>
46 #include <linux/mempolicy.h>
47 #include <linux/namei.h>
48 #include <asm/uaccess.h>
49 #include <asm/div64.h>
50 #include <asm/pgtable.h>
52 /* This magic number is used in glibc for posix shared memory */
53 #define TMPFS_MAGIC 0x01021994
55 #define ENTRIES_PER_PAGE (PAGE_CACHE_SIZE/sizeof(unsigned long))
56 #define ENTRIES_PER_PAGEPAGE (ENTRIES_PER_PAGE*ENTRIES_PER_PAGE)
57 #define BLOCKS_PER_PAGE (PAGE_CACHE_SIZE/512)
59 #define SHMEM_MAX_INDEX (SHMEM_NR_DIRECT + (ENTRIES_PER_PAGEPAGE/2) * (ENTRIES_PER_PAGE+1))
60 #define SHMEM_MAX_BYTES ((unsigned long long)SHMEM_MAX_INDEX << PAGE_CACHE_SHIFT)
62 #define VM_ACCT(size) (PAGE_CACHE_ALIGN(size) >> PAGE_SHIFT)
64 /* info->flags needs VM_flags to handle pagein/truncate races efficiently */
65 #define SHMEM_PAGEIN VM_READ
66 #define SHMEM_TRUNCATE VM_WRITE
68 /* Definition to limit shmem_truncate's steps between cond_rescheds */
69 #define LATENCY_LIMIT 64
71 /* Pretend that each entry is of this size in directory's i_size */
72 #define BOGO_DIRENT_SIZE 20
74 /* Keep swapped page count in private field of indirect struct page */
75 #define nr_swapped private
77 /* Flag allocation requirements to shmem_getpage and shmem_swp_alloc */
79 SGP_QUICK, /* don't try more than file page cache lookup */
80 SGP_READ, /* don't exceed i_size, don't allocate page */
81 SGP_CACHE, /* don't exceed i_size, may allocate page */
82 SGP_WRITE, /* may exceed i_size, may allocate page */
85 static int shmem_getpage(struct inode *inode, unsigned long idx,
86 struct page **pagep, enum sgp_type sgp, int *type);
88 static inline struct page *shmem_dir_alloc(unsigned int gfp_mask)
91 * The above definition of ENTRIES_PER_PAGE, and the use of
92 * BLOCKS_PER_PAGE on indirect pages, assume PAGE_CACHE_SIZE:
93 * might be reconsidered if it ever diverges from PAGE_SIZE.
95 return alloc_pages(gfp_mask, PAGE_CACHE_SHIFT-PAGE_SHIFT);
98 static inline void shmem_dir_free(struct page *page)
100 __free_pages(page, PAGE_CACHE_SHIFT-PAGE_SHIFT);
103 static struct page **shmem_dir_map(struct page *page)
105 return (struct page **)kmap_atomic(page, KM_USER0);
108 static inline void shmem_dir_unmap(struct page **dir)
110 kunmap_atomic(dir, KM_USER0);
113 static swp_entry_t *shmem_swp_map(struct page *page)
115 return (swp_entry_t *)kmap_atomic(page, KM_USER1);
118 static inline void shmem_swp_balance_unmap(void)
121 * When passing a pointer to an i_direct entry, to code which
122 * also handles indirect entries and so will shmem_swp_unmap,
123 * we must arrange for the preempt count to remain in balance.
124 * What kmap_atomic of a lowmem page does depends on config
125 * and architecture, so pretend to kmap_atomic some lowmem page.
127 (void) kmap_atomic(ZERO_PAGE(0), KM_USER1);
130 static inline void shmem_swp_unmap(swp_entry_t *entry)
132 kunmap_atomic(entry, KM_USER1);
135 static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
137 return sb->s_fs_info;
141 * shmem_file_setup pre-accounts the whole fixed size of a VM object,
142 * for shared memory and for shared anonymous (/dev/zero) mappings
143 * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
144 * consistent with the pre-accounting of private mappings ...
146 static inline int shmem_acct_size(unsigned long flags, loff_t size)
148 return (flags & VM_ACCOUNT)?
149 security_vm_enough_memory(VM_ACCT(size)): 0;
152 static inline void shmem_unacct_size(unsigned long flags, loff_t size)
154 if (flags & VM_ACCOUNT)
155 vm_unacct_memory(VM_ACCT(size));
159 * ... whereas tmpfs objects are accounted incrementally as
160 * pages are allocated, in order to allow huge sparse files.
161 * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM,
162 * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
164 static inline int shmem_acct_block(unsigned long flags)
166 return (flags & VM_ACCOUNT)?
167 0: security_vm_enough_memory(VM_ACCT(PAGE_CACHE_SIZE));
170 static inline void shmem_unacct_blocks(unsigned long flags, long pages)
172 if (!(flags & VM_ACCOUNT))
173 vm_unacct_memory(pages * VM_ACCT(PAGE_CACHE_SIZE));
176 static struct super_operations shmem_ops;
177 static struct address_space_operations shmem_aops;
178 static struct file_operations shmem_file_operations;
179 static struct inode_operations shmem_inode_operations;
180 static struct inode_operations shmem_dir_inode_operations;
181 static struct vm_operations_struct shmem_vm_ops;
183 static struct backing_dev_info shmem_backing_dev_info = {
184 .ra_pages = 0, /* No readahead */
185 .capabilities = BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_WRITEBACK,
186 .unplug_io_fn = default_unplug_io_fn,
189 static LIST_HEAD(shmem_swaplist);
190 static DEFINE_SPINLOCK(shmem_swaplist_lock);
192 static void shmem_free_blocks(struct inode *inode, long pages)
194 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
195 if (sbinfo->max_blocks) {
196 spin_lock(&sbinfo->stat_lock);
197 sbinfo->free_blocks += pages;
198 inode->i_blocks -= pages*BLOCKS_PER_PAGE;
199 spin_unlock(&sbinfo->stat_lock);
204 * shmem_recalc_inode - recalculate the size of an inode
206 * @inode: inode to recalc
208 * We have to calculate the free blocks since the mm can drop
209 * undirtied hole pages behind our back.
211 * But normally info->alloced == inode->i_mapping->nrpages + info->swapped
212 * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
214 * It has to be called with the spinlock held.
216 static void shmem_recalc_inode(struct inode *inode)
218 struct shmem_inode_info *info = SHMEM_I(inode);
221 freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
223 info->alloced -= freed;
224 shmem_unacct_blocks(info->flags, freed);
225 shmem_free_blocks(inode, freed);
230 * shmem_swp_entry - find the swap vector position in the info structure
232 * @info: info structure for the inode
233 * @index: index of the page to find
234 * @page: optional page to add to the structure. Has to be preset to
237 * If there is no space allocated yet it will return NULL when
238 * page is NULL, else it will use the page for the needed block,
239 * setting it to NULL on return to indicate that it has been used.
241 * The swap vector is organized the following way:
243 * There are SHMEM_NR_DIRECT entries directly stored in the
244 * shmem_inode_info structure. So small files do not need an addional
247 * For pages with index > SHMEM_NR_DIRECT there is the pointer
248 * i_indirect which points to a page which holds in the first half
249 * doubly indirect blocks, in the second half triple indirect blocks:
251 * For an artificial ENTRIES_PER_PAGE = 4 this would lead to the
252 * following layout (for SHMEM_NR_DIRECT == 16):
254 * i_indirect -> dir --> 16-19
267 static swp_entry_t *shmem_swp_entry(struct shmem_inode_info *info, unsigned long index, struct page **page)
269 unsigned long offset;
273 if (index < SHMEM_NR_DIRECT) {
274 shmem_swp_balance_unmap();
275 return info->i_direct+index;
277 if (!info->i_indirect) {
279 info->i_indirect = *page;
282 return NULL; /* need another page */
285 index -= SHMEM_NR_DIRECT;
286 offset = index % ENTRIES_PER_PAGE;
287 index /= ENTRIES_PER_PAGE;
288 dir = shmem_dir_map(info->i_indirect);
290 if (index >= ENTRIES_PER_PAGE/2) {
291 index -= ENTRIES_PER_PAGE/2;
292 dir += ENTRIES_PER_PAGE/2 + index/ENTRIES_PER_PAGE;
293 index %= ENTRIES_PER_PAGE;
300 shmem_dir_unmap(dir);
301 return NULL; /* need another page */
303 shmem_dir_unmap(dir);
304 dir = shmem_dir_map(subdir);
310 if (!page || !(subdir = *page)) {
311 shmem_dir_unmap(dir);
312 return NULL; /* need a page */
317 shmem_dir_unmap(dir);
318 return shmem_swp_map(subdir) + offset;
321 static void shmem_swp_set(struct shmem_inode_info *info, swp_entry_t *entry, unsigned long value)
323 long incdec = value? 1: -1;
326 info->swapped += incdec;
327 if ((unsigned long)(entry - info->i_direct) >= SHMEM_NR_DIRECT)
328 kmap_atomic_to_page(entry)->nr_swapped += incdec;
332 * shmem_swp_alloc - get the position of the swap entry for the page.
333 * If it does not exist allocate the entry.
335 * @info: info structure for the inode
336 * @index: index of the page to find
337 * @sgp: check and recheck i_size? skip allocation?
339 static swp_entry_t *shmem_swp_alloc(struct shmem_inode_info *info, unsigned long index, enum sgp_type sgp)
341 struct inode *inode = &info->vfs_inode;
342 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
343 struct page *page = NULL;
346 if (sgp != SGP_WRITE &&
347 ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode))
348 return ERR_PTR(-EINVAL);
350 while (!(entry = shmem_swp_entry(info, index, &page))) {
352 return shmem_swp_map(ZERO_PAGE(0));
354 * Test free_blocks against 1 not 0, since we have 1 data
355 * page (and perhaps indirect index pages) yet to allocate:
356 * a waste to allocate index if we cannot allocate data.
358 if (sbinfo->max_blocks) {
359 spin_lock(&sbinfo->stat_lock);
360 if (sbinfo->free_blocks <= 1) {
361 spin_unlock(&sbinfo->stat_lock);
362 return ERR_PTR(-ENOSPC);
364 sbinfo->free_blocks--;
365 inode->i_blocks += BLOCKS_PER_PAGE;
366 spin_unlock(&sbinfo->stat_lock);
369 spin_unlock(&info->lock);
370 page = shmem_dir_alloc(mapping_gfp_mask(inode->i_mapping) | __GFP_ZERO);
372 page->nr_swapped = 0;
374 spin_lock(&info->lock);
377 shmem_free_blocks(inode, 1);
378 return ERR_PTR(-ENOMEM);
380 if (sgp != SGP_WRITE &&
381 ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode)) {
382 entry = ERR_PTR(-EINVAL);
385 if (info->next_index <= index)
386 info->next_index = index + 1;
389 /* another task gave its page, or truncated the file */
390 shmem_free_blocks(inode, 1);
391 shmem_dir_free(page);
393 if (info->next_index <= index && !IS_ERR(entry))
394 info->next_index = index + 1;
399 * shmem_free_swp - free some swap entries in a directory
401 * @dir: pointer to the directory
402 * @edir: pointer after last entry of the directory
404 static int shmem_free_swp(swp_entry_t *dir, swp_entry_t *edir)
409 for (ptr = dir; ptr < edir; ptr++) {
411 free_swap_and_cache(*ptr);
412 *ptr = (swp_entry_t){0};
419 static int shmem_map_and_free_swp(struct page *subdir,
420 int offset, int limit, struct page ***dir)
425 ptr = shmem_swp_map(subdir);
426 for (; offset < limit; offset += LATENCY_LIMIT) {
427 int size = limit - offset;
428 if (size > LATENCY_LIMIT)
429 size = LATENCY_LIMIT;
430 freed += shmem_free_swp(ptr+offset, ptr+offset+size);
431 if (need_resched()) {
432 shmem_swp_unmap(ptr);
434 shmem_dir_unmap(*dir);
438 ptr = shmem_swp_map(subdir);
441 shmem_swp_unmap(ptr);
445 static void shmem_free_pages(struct list_head *next)
451 page = container_of(next, struct page, lru);
453 shmem_dir_free(page);
455 if (freed >= LATENCY_LIMIT) {
462 static void shmem_truncate(struct inode *inode)
464 struct shmem_inode_info *info = SHMEM_I(inode);
469 unsigned long diroff;
475 LIST_HEAD(pages_to_free);
476 long nr_pages_to_free = 0;
477 long nr_swaps_freed = 0;
481 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
482 idx = (inode->i_size + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
483 if (idx >= info->next_index)
486 spin_lock(&info->lock);
487 info->flags |= SHMEM_TRUNCATE;
488 limit = info->next_index;
489 info->next_index = idx;
490 topdir = info->i_indirect;
491 if (topdir && idx <= SHMEM_NR_DIRECT) {
492 info->i_indirect = NULL;
494 list_add(&topdir->lru, &pages_to_free);
496 spin_unlock(&info->lock);
498 if (info->swapped && idx < SHMEM_NR_DIRECT) {
499 ptr = info->i_direct;
501 if (size > SHMEM_NR_DIRECT)
502 size = SHMEM_NR_DIRECT;
503 nr_swaps_freed = shmem_free_swp(ptr+idx, ptr+size);
508 BUG_ON(limit <= SHMEM_NR_DIRECT);
509 limit -= SHMEM_NR_DIRECT;
510 idx = (idx > SHMEM_NR_DIRECT)? (idx - SHMEM_NR_DIRECT): 0;
511 offset = idx % ENTRIES_PER_PAGE;
514 dir = shmem_dir_map(topdir);
515 stage = ENTRIES_PER_PAGEPAGE/2;
516 if (idx < ENTRIES_PER_PAGEPAGE/2) {
518 diroff = idx/ENTRIES_PER_PAGE;
520 dir += ENTRIES_PER_PAGE/2;
521 dir += (idx - ENTRIES_PER_PAGEPAGE/2)/ENTRIES_PER_PAGEPAGE;
523 stage += ENTRIES_PER_PAGEPAGE;
526 diroff = ((idx - ENTRIES_PER_PAGEPAGE/2) %
527 ENTRIES_PER_PAGEPAGE) / ENTRIES_PER_PAGE;
528 if (!diroff && !offset) {
531 list_add(&middir->lru, &pages_to_free);
533 shmem_dir_unmap(dir);
534 dir = shmem_dir_map(middir);
542 for (; idx < limit; idx += ENTRIES_PER_PAGE, diroff++) {
543 if (unlikely(idx == stage)) {
544 shmem_dir_unmap(dir);
545 dir = shmem_dir_map(topdir) +
546 ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
549 idx += ENTRIES_PER_PAGEPAGE;
553 stage = idx + ENTRIES_PER_PAGEPAGE;
557 list_add(&middir->lru, &pages_to_free);
558 shmem_dir_unmap(dir);
560 dir = shmem_dir_map(middir);
563 subdir = dir[diroff];
564 if (subdir && subdir->nr_swapped) {
566 if (size > ENTRIES_PER_PAGE)
567 size = ENTRIES_PER_PAGE;
568 freed = shmem_map_and_free_swp(subdir,
571 dir = shmem_dir_map(middir);
572 nr_swaps_freed += freed;
574 spin_lock(&info->lock);
575 subdir->nr_swapped -= freed;
577 spin_unlock(&info->lock);
578 BUG_ON(subdir->nr_swapped > offset);
585 list_add(&subdir->lru, &pages_to_free);
589 shmem_dir_unmap(dir);
591 if (inode->i_mapping->nrpages && (info->flags & SHMEM_PAGEIN)) {
593 * Call truncate_inode_pages again: racing shmem_unuse_inode
594 * may have swizzled a page in from swap since vmtruncate or
595 * generic_delete_inode did it, before we lowered next_index.
596 * Also, though shmem_getpage checks i_size before adding to
597 * cache, no recheck after: so fix the narrow window there too.
599 truncate_inode_pages(inode->i_mapping, inode->i_size);
602 spin_lock(&info->lock);
603 info->flags &= ~SHMEM_TRUNCATE;
604 info->swapped -= nr_swaps_freed;
605 if (nr_pages_to_free)
606 shmem_free_blocks(inode, nr_pages_to_free);
607 shmem_recalc_inode(inode);
608 spin_unlock(&info->lock);
611 * Empty swap vector directory pages to be freed?
613 if (!list_empty(&pages_to_free)) {
614 pages_to_free.prev->next = NULL;
615 shmem_free_pages(pages_to_free.next);
619 static int shmem_notify_change(struct dentry *dentry, struct iattr *attr)
621 struct inode *inode = dentry->d_inode;
622 struct page *page = NULL;
625 if (attr->ia_valid & ATTR_SIZE) {
626 if (attr->ia_size < inode->i_size) {
628 * If truncating down to a partial page, then
629 * if that page is already allocated, hold it
630 * in memory until the truncation is over, so
631 * truncate_partial_page cannnot miss it were
632 * it assigned to swap.
634 if (attr->ia_size & (PAGE_CACHE_SIZE-1)) {
635 (void) shmem_getpage(inode,
636 attr->ia_size>>PAGE_CACHE_SHIFT,
637 &page, SGP_READ, NULL);
640 * Reset SHMEM_PAGEIN flag so that shmem_truncate can
641 * detect if any pages might have been added to cache
642 * after truncate_inode_pages. But we needn't bother
643 * if it's being fully truncated to zero-length: the
644 * nrpages check is efficient enough in that case.
647 struct shmem_inode_info *info = SHMEM_I(inode);
648 spin_lock(&info->lock);
649 info->flags &= ~SHMEM_PAGEIN;
650 spin_unlock(&info->lock);
655 error = inode_change_ok(inode, attr);
657 error = inode_setattr(inode, attr);
659 page_cache_release(page);
663 static void shmem_delete_inode(struct inode *inode)
665 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
666 struct shmem_inode_info *info = SHMEM_I(inode);
668 if (inode->i_op->truncate == shmem_truncate) {
669 shmem_unacct_size(info->flags, inode->i_size);
671 shmem_truncate(inode);
672 if (!list_empty(&info->swaplist)) {
673 spin_lock(&shmem_swaplist_lock);
674 list_del_init(&info->swaplist);
675 spin_unlock(&shmem_swaplist_lock);
678 BUG_ON(inode->i_blocks);
679 if (sbinfo->max_inodes) {
680 spin_lock(&sbinfo->stat_lock);
681 sbinfo->free_inodes++;
682 spin_unlock(&sbinfo->stat_lock);
687 static inline int shmem_find_swp(swp_entry_t entry, swp_entry_t *dir, swp_entry_t *edir)
691 for (ptr = dir; ptr < edir; ptr++) {
692 if (ptr->val == entry.val)
698 static int shmem_unuse_inode(struct shmem_inode_info *info, swp_entry_t entry, struct page *page)
711 ptr = info->i_direct;
712 spin_lock(&info->lock);
713 limit = info->next_index;
715 if (size > SHMEM_NR_DIRECT)
716 size = SHMEM_NR_DIRECT;
717 offset = shmem_find_swp(entry, ptr, ptr+size);
719 shmem_swp_balance_unmap();
722 if (!info->i_indirect)
725 dir = shmem_dir_map(info->i_indirect);
726 stage = SHMEM_NR_DIRECT + ENTRIES_PER_PAGEPAGE/2;
728 for (idx = SHMEM_NR_DIRECT; idx < limit; idx += ENTRIES_PER_PAGE, dir++) {
729 if (unlikely(idx == stage)) {
730 shmem_dir_unmap(dir-1);
731 dir = shmem_dir_map(info->i_indirect) +
732 ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
735 idx += ENTRIES_PER_PAGEPAGE;
739 stage = idx + ENTRIES_PER_PAGEPAGE;
741 shmem_dir_unmap(dir);
742 dir = shmem_dir_map(subdir);
745 if (subdir && subdir->nr_swapped) {
746 ptr = shmem_swp_map(subdir);
748 if (size > ENTRIES_PER_PAGE)
749 size = ENTRIES_PER_PAGE;
750 offset = shmem_find_swp(entry, ptr, ptr+size);
752 shmem_dir_unmap(dir);
755 shmem_swp_unmap(ptr);
759 shmem_dir_unmap(dir-1);
761 spin_unlock(&info->lock);
765 inode = &info->vfs_inode;
766 if (move_from_swap_cache(page, idx, inode->i_mapping) == 0) {
767 info->flags |= SHMEM_PAGEIN;
768 shmem_swp_set(info, ptr + offset, 0);
770 shmem_swp_unmap(ptr);
771 spin_unlock(&info->lock);
773 * Decrement swap count even when the entry is left behind:
774 * try_to_unuse will skip over mms, then reincrement count.
781 * shmem_unuse() search for an eventually swapped out shmem page.
783 int shmem_unuse(swp_entry_t entry, struct page *page)
785 struct list_head *p, *next;
786 struct shmem_inode_info *info;
789 spin_lock(&shmem_swaplist_lock);
790 list_for_each_safe(p, next, &shmem_swaplist) {
791 info = list_entry(p, struct shmem_inode_info, swaplist);
793 list_del_init(&info->swaplist);
794 else if (shmem_unuse_inode(info, entry, page)) {
795 /* move head to start search for next from here */
796 list_move_tail(&shmem_swaplist, &info->swaplist);
801 spin_unlock(&shmem_swaplist_lock);
806 * Move the page from the page cache to the swap cache.
808 static int shmem_writepage(struct page *page, struct writeback_control *wbc)
810 struct shmem_inode_info *info;
811 swp_entry_t *entry, swap;
812 struct address_space *mapping;
816 BUG_ON(!PageLocked(page));
817 BUG_ON(page_mapped(page));
819 mapping = page->mapping;
821 inode = mapping->host;
822 info = SHMEM_I(inode);
823 if (info->flags & VM_LOCKED)
825 swap = get_swap_page();
829 spin_lock(&info->lock);
830 shmem_recalc_inode(inode);
831 if (index >= info->next_index) {
832 BUG_ON(!(info->flags & SHMEM_TRUNCATE));
835 entry = shmem_swp_entry(info, index, NULL);
839 if (move_to_swap_cache(page, swap) == 0) {
840 shmem_swp_set(info, entry, swap.val);
841 shmem_swp_unmap(entry);
842 spin_unlock(&info->lock);
843 if (list_empty(&info->swaplist)) {
844 spin_lock(&shmem_swaplist_lock);
845 /* move instead of add in case we're racing */
846 list_move_tail(&info->swaplist, &shmem_swaplist);
847 spin_unlock(&shmem_swaplist_lock);
853 shmem_swp_unmap(entry);
855 spin_unlock(&info->lock);
858 set_page_dirty(page);
859 return WRITEPAGE_ACTIVATE; /* Return with the page locked */
863 static struct page *shmem_swapin_async(struct shared_policy *p,
864 swp_entry_t entry, unsigned long idx)
867 struct vm_area_struct pvma;
869 /* Create a pseudo vma that just contains the policy */
870 memset(&pvma, 0, sizeof(struct vm_area_struct));
871 pvma.vm_end = PAGE_SIZE;
873 pvma.vm_policy = mpol_shared_policy_lookup(p, idx);
874 page = read_swap_cache_async(entry, &pvma, 0);
875 mpol_free(pvma.vm_policy);
879 struct page *shmem_swapin(struct shmem_inode_info *info, swp_entry_t entry,
882 struct shared_policy *p = &info->policy;
885 unsigned long offset;
887 num = valid_swaphandles(entry, &offset);
888 for (i = 0; i < num; offset++, i++) {
889 page = shmem_swapin_async(p,
890 swp_entry(swp_type(entry), offset), idx);
893 page_cache_release(page);
895 lru_add_drain(); /* Push any new pages onto the LRU now */
896 return shmem_swapin_async(p, entry, idx);
900 shmem_alloc_page(unsigned long gfp, struct shmem_inode_info *info,
903 struct vm_area_struct pvma;
906 memset(&pvma, 0, sizeof(struct vm_area_struct));
907 pvma.vm_policy = mpol_shared_policy_lookup(&info->policy, idx);
909 pvma.vm_end = PAGE_SIZE;
910 page = alloc_page_vma(gfp | __GFP_ZERO, &pvma, 0);
911 mpol_free(pvma.vm_policy);
915 static inline struct page *
916 shmem_swapin(struct shmem_inode_info *info,swp_entry_t entry,unsigned long idx)
918 swapin_readahead(entry, 0, NULL);
919 return read_swap_cache_async(entry, NULL, 0);
922 static inline struct page *
923 shmem_alloc_page(unsigned int __nocast gfp,struct shmem_inode_info *info,
926 return alloc_page(gfp | __GFP_ZERO);
931 * shmem_getpage - either get the page from swap or allocate a new one
933 * If we allocate a new one we do not mark it dirty. That's up to the
934 * vm. If we swap it in we mark it dirty since we also free the swap
935 * entry since a page cannot live in both the swap and page cache
937 static int shmem_getpage(struct inode *inode, unsigned long idx,
938 struct page **pagep, enum sgp_type sgp, int *type)
940 struct address_space *mapping = inode->i_mapping;
941 struct shmem_inode_info *info = SHMEM_I(inode);
942 struct shmem_sb_info *sbinfo;
943 struct page *filepage = *pagep;
944 struct page *swappage;
949 if (idx >= SHMEM_MAX_INDEX)
952 * Normally, filepage is NULL on entry, and either found
953 * uptodate immediately, or allocated and zeroed, or read
954 * in under swappage, which is then assigned to filepage.
955 * But shmem_prepare_write passes in a locked filepage,
956 * which may be found not uptodate by other callers too,
957 * and may need to be copied from the swappage read in.
961 filepage = find_lock_page(mapping, idx);
962 if (filepage && PageUptodate(filepage))
965 if (sgp == SGP_QUICK)
968 spin_lock(&info->lock);
969 shmem_recalc_inode(inode);
970 entry = shmem_swp_alloc(info, idx, sgp);
972 spin_unlock(&info->lock);
973 error = PTR_ERR(entry);
979 /* Look it up and read it in.. */
980 swappage = lookup_swap_cache(swap);
982 shmem_swp_unmap(entry);
983 spin_unlock(&info->lock);
984 /* here we actually do the io */
985 if (type && *type == VM_FAULT_MINOR) {
986 inc_page_state(pgmajfault);
987 *type = VM_FAULT_MAJOR;
989 swappage = shmem_swapin(info, swap, idx);
991 spin_lock(&info->lock);
992 entry = shmem_swp_alloc(info, idx, sgp);
994 error = PTR_ERR(entry);
996 if (entry->val == swap.val)
998 shmem_swp_unmap(entry);
1000 spin_unlock(&info->lock);
1005 wait_on_page_locked(swappage);
1006 page_cache_release(swappage);
1010 /* We have to do this with page locked to prevent races */
1011 if (TestSetPageLocked(swappage)) {
1012 shmem_swp_unmap(entry);
1013 spin_unlock(&info->lock);
1014 wait_on_page_locked(swappage);
1015 page_cache_release(swappage);
1018 if (PageWriteback(swappage)) {
1019 shmem_swp_unmap(entry);
1020 spin_unlock(&info->lock);
1021 wait_on_page_writeback(swappage);
1022 unlock_page(swappage);
1023 page_cache_release(swappage);
1026 if (!PageUptodate(swappage)) {
1027 shmem_swp_unmap(entry);
1028 spin_unlock(&info->lock);
1029 unlock_page(swappage);
1030 page_cache_release(swappage);
1036 shmem_swp_set(info, entry, 0);
1037 shmem_swp_unmap(entry);
1038 delete_from_swap_cache(swappage);
1039 spin_unlock(&info->lock);
1040 copy_highpage(filepage, swappage);
1041 unlock_page(swappage);
1042 page_cache_release(swappage);
1043 flush_dcache_page(filepage);
1044 SetPageUptodate(filepage);
1045 set_page_dirty(filepage);
1047 } else if (!(error = move_from_swap_cache(
1048 swappage, idx, mapping))) {
1049 info->flags |= SHMEM_PAGEIN;
1050 shmem_swp_set(info, entry, 0);
1051 shmem_swp_unmap(entry);
1052 spin_unlock(&info->lock);
1053 filepage = swappage;
1056 shmem_swp_unmap(entry);
1057 spin_unlock(&info->lock);
1058 unlock_page(swappage);
1059 page_cache_release(swappage);
1060 if (error == -ENOMEM) {
1061 /* let kswapd refresh zone for GFP_ATOMICs */
1062 blk_congestion_wait(WRITE, HZ/50);
1066 } else if (sgp == SGP_READ && !filepage) {
1067 shmem_swp_unmap(entry);
1068 filepage = find_get_page(mapping, idx);
1070 (!PageUptodate(filepage) || TestSetPageLocked(filepage))) {
1071 spin_unlock(&info->lock);
1072 wait_on_page_locked(filepage);
1073 page_cache_release(filepage);
1077 spin_unlock(&info->lock);
1079 shmem_swp_unmap(entry);
1080 sbinfo = SHMEM_SB(inode->i_sb);
1081 if (sbinfo->max_blocks) {
1082 spin_lock(&sbinfo->stat_lock);
1083 if (sbinfo->free_blocks == 0 ||
1084 shmem_acct_block(info->flags)) {
1085 spin_unlock(&sbinfo->stat_lock);
1086 spin_unlock(&info->lock);
1090 sbinfo->free_blocks--;
1091 inode->i_blocks += BLOCKS_PER_PAGE;
1092 spin_unlock(&sbinfo->stat_lock);
1093 } else if (shmem_acct_block(info->flags)) {
1094 spin_unlock(&info->lock);
1100 spin_unlock(&info->lock);
1101 filepage = shmem_alloc_page(mapping_gfp_mask(mapping),
1105 shmem_unacct_blocks(info->flags, 1);
1106 shmem_free_blocks(inode, 1);
1111 spin_lock(&info->lock);
1112 entry = shmem_swp_alloc(info, idx, sgp);
1114 error = PTR_ERR(entry);
1117 shmem_swp_unmap(entry);
1119 if (error || swap.val || 0 != add_to_page_cache_lru(
1120 filepage, mapping, idx, GFP_ATOMIC)) {
1121 spin_unlock(&info->lock);
1122 page_cache_release(filepage);
1123 shmem_unacct_blocks(info->flags, 1);
1124 shmem_free_blocks(inode, 1);
1130 info->flags |= SHMEM_PAGEIN;
1134 spin_unlock(&info->lock);
1135 flush_dcache_page(filepage);
1136 SetPageUptodate(filepage);
1139 if (*pagep != filepage) {
1140 unlock_page(filepage);
1146 if (*pagep != filepage) {
1147 unlock_page(filepage);
1148 page_cache_release(filepage);
1153 struct page *shmem_nopage(struct vm_area_struct *vma, unsigned long address, int *type)
1155 struct inode *inode = vma->vm_file->f_dentry->d_inode;
1156 struct page *page = NULL;
1160 idx = (address - vma->vm_start) >> PAGE_SHIFT;
1161 idx += vma->vm_pgoff;
1162 idx >>= PAGE_CACHE_SHIFT - PAGE_SHIFT;
1163 if (((loff_t) idx << PAGE_CACHE_SHIFT) >= i_size_read(inode))
1164 return NOPAGE_SIGBUS;
1166 error = shmem_getpage(inode, idx, &page, SGP_CACHE, type);
1168 return (error == -ENOMEM)? NOPAGE_OOM: NOPAGE_SIGBUS;
1170 mark_page_accessed(page);
1174 static int shmem_populate(struct vm_area_struct *vma,
1175 unsigned long addr, unsigned long len,
1176 pgprot_t prot, unsigned long pgoff, int nonblock)
1178 struct inode *inode = vma->vm_file->f_dentry->d_inode;
1179 struct mm_struct *mm = vma->vm_mm;
1180 enum sgp_type sgp = nonblock? SGP_QUICK: SGP_CACHE;
1183 size = (i_size_read(inode) + PAGE_SIZE - 1) >> PAGE_SHIFT;
1184 if (pgoff >= size || pgoff + (len >> PAGE_SHIFT) > size)
1187 while ((long) len > 0) {
1188 struct page *page = NULL;
1191 * Will need changing if PAGE_CACHE_SIZE != PAGE_SIZE
1193 err = shmem_getpage(inode, pgoff, &page, sgp, NULL);
1196 /* Page may still be null, but only if nonblock was set. */
1198 mark_page_accessed(page);
1199 err = install_page(mm, vma, addr, page, prot);
1201 page_cache_release(page);
1205 /* No page was found just because we can't read it in
1206 * now (being here implies nonblock != 0), but the page
1207 * may exist, so set the PTE to fault it in later. */
1208 err = install_file_pte(mm, vma, addr, pgoff, prot);
1221 int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
1223 struct inode *i = vma->vm_file->f_dentry->d_inode;
1224 return mpol_set_shared_policy(&SHMEM_I(i)->policy, vma, new);
1228 shmem_get_policy(struct vm_area_struct *vma, unsigned long addr)
1230 struct inode *i = vma->vm_file->f_dentry->d_inode;
1233 idx = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
1234 return mpol_shared_policy_lookup(&SHMEM_I(i)->policy, idx);
1238 int shmem_lock(struct file *file, int lock, struct user_struct *user)
1240 struct inode *inode = file->f_dentry->d_inode;
1241 struct shmem_inode_info *info = SHMEM_I(inode);
1242 int retval = -ENOMEM;
1244 spin_lock(&info->lock);
1245 if (lock && !(info->flags & VM_LOCKED)) {
1246 if (!user_shm_lock(inode->i_size, user))
1248 info->flags |= VM_LOCKED;
1250 if (!lock && (info->flags & VM_LOCKED) && user) {
1251 user_shm_unlock(inode->i_size, user);
1252 info->flags &= ~VM_LOCKED;
1256 spin_unlock(&info->lock);
1260 static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
1262 file_accessed(file);
1263 vma->vm_ops = &shmem_vm_ops;
1267 static struct inode *
1268 shmem_get_inode(struct super_block *sb, int mode, dev_t dev)
1270 struct inode *inode;
1271 struct shmem_inode_info *info;
1272 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1274 if (sbinfo->max_inodes) {
1275 spin_lock(&sbinfo->stat_lock);
1276 if (!sbinfo->free_inodes) {
1277 spin_unlock(&sbinfo->stat_lock);
1280 sbinfo->free_inodes--;
1281 spin_unlock(&sbinfo->stat_lock);
1284 inode = new_inode(sb);
1286 inode->i_mode = mode;
1287 inode->i_uid = current->fsuid;
1288 inode->i_gid = current->fsgid;
1289 inode->i_blksize = PAGE_CACHE_SIZE;
1290 inode->i_blocks = 0;
1291 inode->i_mapping->a_ops = &shmem_aops;
1292 inode->i_mapping->backing_dev_info = &shmem_backing_dev_info;
1293 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
1294 info = SHMEM_I(inode);
1295 memset(info, 0, (char *)inode - (char *)info);
1296 spin_lock_init(&info->lock);
1297 INIT_LIST_HEAD(&info->swaplist);
1299 switch (mode & S_IFMT) {
1301 init_special_inode(inode, mode, dev);
1304 inode->i_op = &shmem_inode_operations;
1305 inode->i_fop = &shmem_file_operations;
1306 mpol_shared_policy_init(&info->policy);
1310 /* Some things misbehave if size == 0 on a directory */
1311 inode->i_size = 2 * BOGO_DIRENT_SIZE;
1312 inode->i_op = &shmem_dir_inode_operations;
1313 inode->i_fop = &simple_dir_operations;
1317 * Must not load anything in the rbtree,
1318 * mpol_free_shared_policy will not be called.
1320 mpol_shared_policy_init(&info->policy);
1323 } else if (sbinfo->max_inodes) {
1324 spin_lock(&sbinfo->stat_lock);
1325 sbinfo->free_inodes++;
1326 spin_unlock(&sbinfo->stat_lock);
1332 static struct inode_operations shmem_symlink_inode_operations;
1333 static struct inode_operations shmem_symlink_inline_operations;
1336 * Normally tmpfs makes no use of shmem_prepare_write, but it
1337 * lets a tmpfs file be used read-write below the loop driver.
1340 shmem_prepare_write(struct file *file, struct page *page, unsigned offset, unsigned to)
1342 struct inode *inode = page->mapping->host;
1343 return shmem_getpage(inode, page->index, &page, SGP_WRITE, NULL);
1347 shmem_file_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
1349 struct inode *inode = file->f_dentry->d_inode;
1351 unsigned long written;
1354 if ((ssize_t) count < 0)
1357 if (!access_ok(VERIFY_READ, buf, count))
1360 down(&inode->i_sem);
1365 err = generic_write_checks(file, &pos, &count, 0);
1369 err = remove_suid(file->f_dentry);
1373 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
1376 struct page *page = NULL;
1377 unsigned long bytes, index, offset;
1381 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
1382 index = pos >> PAGE_CACHE_SHIFT;
1383 bytes = PAGE_CACHE_SIZE - offset;
1388 * We don't hold page lock across copy from user -
1389 * what would it guard against? - so no deadlock here.
1390 * But it still may be a good idea to prefault below.
1393 err = shmem_getpage(inode, index, &page, SGP_WRITE, NULL);
1398 if (PageHighMem(page)) {
1399 volatile unsigned char dummy;
1400 __get_user(dummy, buf);
1401 __get_user(dummy, buf + bytes - 1);
1403 kaddr = kmap_atomic(page, KM_USER0);
1404 left = __copy_from_user_inatomic(kaddr + offset,
1406 kunmap_atomic(kaddr, KM_USER0);
1410 left = __copy_from_user(kaddr + offset, buf, bytes);
1418 if (pos > inode->i_size)
1419 i_size_write(inode, pos);
1421 flush_dcache_page(page);
1422 set_page_dirty(page);
1423 mark_page_accessed(page);
1424 page_cache_release(page);
1434 * Our dirty pages are not counted in nr_dirty,
1435 * and we do not attempt to balance dirty pages.
1449 static void do_shmem_file_read(struct file *filp, loff_t *ppos, read_descriptor_t *desc, read_actor_t actor)
1451 struct inode *inode = filp->f_dentry->d_inode;
1452 struct address_space *mapping = inode->i_mapping;
1453 unsigned long index, offset;
1455 index = *ppos >> PAGE_CACHE_SHIFT;
1456 offset = *ppos & ~PAGE_CACHE_MASK;
1459 struct page *page = NULL;
1460 unsigned long end_index, nr, ret;
1461 loff_t i_size = i_size_read(inode);
1463 end_index = i_size >> PAGE_CACHE_SHIFT;
1464 if (index > end_index)
1466 if (index == end_index) {
1467 nr = i_size & ~PAGE_CACHE_MASK;
1472 desc->error = shmem_getpage(inode, index, &page, SGP_READ, NULL);
1474 if (desc->error == -EINVAL)
1480 * We must evaluate after, since reads (unlike writes)
1481 * are called without i_sem protection against truncate
1483 nr = PAGE_CACHE_SIZE;
1484 i_size = i_size_read(inode);
1485 end_index = i_size >> PAGE_CACHE_SHIFT;
1486 if (index == end_index) {
1487 nr = i_size & ~PAGE_CACHE_MASK;
1490 page_cache_release(page);
1498 * If users can be writing to this page using arbitrary
1499 * virtual addresses, take care about potential aliasing
1500 * before reading the page on the kernel side.
1502 if (mapping_writably_mapped(mapping))
1503 flush_dcache_page(page);
1505 * Mark the page accessed if we read the beginning.
1508 mark_page_accessed(page);
1510 page = ZERO_PAGE(0);
1513 * Ok, we have the page, and it's up-to-date, so
1514 * now we can copy it to user space...
1516 * The actor routine returns how many bytes were actually used..
1517 * NOTE! This may not be the same as how much of a user buffer
1518 * we filled up (we may be padding etc), so we can only update
1519 * "pos" here (the actor routine has to update the user buffer
1520 * pointers and the remaining count).
1522 ret = actor(desc, page, offset, nr);
1524 index += offset >> PAGE_CACHE_SHIFT;
1525 offset &= ~PAGE_CACHE_MASK;
1527 page_cache_release(page);
1528 if (ret != nr || !desc->count)
1534 *ppos = ((loff_t) index << PAGE_CACHE_SHIFT) + offset;
1535 file_accessed(filp);
1538 static ssize_t shmem_file_read(struct file *filp, char __user *buf, size_t count, loff_t *ppos)
1540 read_descriptor_t desc;
1542 if ((ssize_t) count < 0)
1544 if (!access_ok(VERIFY_WRITE, buf, count))
1554 do_shmem_file_read(filp, ppos, &desc, file_read_actor);
1556 return desc.written;
1560 static ssize_t shmem_file_sendfile(struct file *in_file, loff_t *ppos,
1561 size_t count, read_actor_t actor, void *target)
1563 read_descriptor_t desc;
1570 desc.arg.data = target;
1573 do_shmem_file_read(in_file, ppos, &desc, actor);
1575 return desc.written;
1579 static int shmem_statfs(struct super_block *sb, struct kstatfs *buf)
1581 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1583 buf->f_type = TMPFS_MAGIC;
1584 buf->f_bsize = PAGE_CACHE_SIZE;
1585 buf->f_namelen = NAME_MAX;
1586 spin_lock(&sbinfo->stat_lock);
1587 if (sbinfo->max_blocks) {
1588 buf->f_blocks = sbinfo->max_blocks;
1589 buf->f_bavail = buf->f_bfree = sbinfo->free_blocks;
1591 if (sbinfo->max_inodes) {
1592 buf->f_files = sbinfo->max_inodes;
1593 buf->f_ffree = sbinfo->free_inodes;
1595 /* else leave those fields 0 like simple_statfs */
1596 spin_unlock(&sbinfo->stat_lock);
1601 * File creation. Allocate an inode, and we're done..
1604 shmem_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1606 struct inode *inode = shmem_get_inode(dir->i_sb, mode, dev);
1607 int error = -ENOSPC;
1610 if (dir->i_mode & S_ISGID) {
1611 inode->i_gid = dir->i_gid;
1613 inode->i_mode |= S_ISGID;
1615 dir->i_size += BOGO_DIRENT_SIZE;
1616 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1617 d_instantiate(dentry, inode);
1618 dget(dentry); /* Extra count - pin the dentry in core */
1624 static int shmem_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1628 if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
1634 static int shmem_create(struct inode *dir, struct dentry *dentry, int mode,
1635 struct nameidata *nd)
1637 return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
1643 static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1645 struct inode *inode = old_dentry->d_inode;
1646 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
1649 * No ordinary (disk based) filesystem counts links as inodes;
1650 * but each new link needs a new dentry, pinning lowmem, and
1651 * tmpfs dentries cannot be pruned until they are unlinked.
1653 if (sbinfo->max_inodes) {
1654 spin_lock(&sbinfo->stat_lock);
1655 if (!sbinfo->free_inodes) {
1656 spin_unlock(&sbinfo->stat_lock);
1659 sbinfo->free_inodes--;
1660 spin_unlock(&sbinfo->stat_lock);
1663 dir->i_size += BOGO_DIRENT_SIZE;
1664 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1666 atomic_inc(&inode->i_count); /* New dentry reference */
1667 dget(dentry); /* Extra pinning count for the created dentry */
1668 d_instantiate(dentry, inode);
1672 static int shmem_unlink(struct inode *dir, struct dentry *dentry)
1674 struct inode *inode = dentry->d_inode;
1676 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode)) {
1677 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
1678 if (sbinfo->max_inodes) {
1679 spin_lock(&sbinfo->stat_lock);
1680 sbinfo->free_inodes++;
1681 spin_unlock(&sbinfo->stat_lock);
1685 dir->i_size -= BOGO_DIRENT_SIZE;
1686 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1688 dput(dentry); /* Undo the count from "create" - this does all the work */
1692 static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
1694 if (!simple_empty(dentry))
1698 return shmem_unlink(dir, dentry);
1702 * The VFS layer already does all the dentry stuff for rename,
1703 * we just have to decrement the usage count for the target if
1704 * it exists so that the VFS layer correctly free's it when it
1707 static int shmem_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
1709 struct inode *inode = old_dentry->d_inode;
1710 int they_are_dirs = S_ISDIR(inode->i_mode);
1712 if (!simple_empty(new_dentry))
1715 if (new_dentry->d_inode) {
1716 (void) shmem_unlink(new_dir, new_dentry);
1719 } else if (they_are_dirs) {
1724 old_dir->i_size -= BOGO_DIRENT_SIZE;
1725 new_dir->i_size += BOGO_DIRENT_SIZE;
1726 old_dir->i_ctime = old_dir->i_mtime =
1727 new_dir->i_ctime = new_dir->i_mtime =
1728 inode->i_ctime = CURRENT_TIME;
1732 static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1736 struct inode *inode;
1737 struct page *page = NULL;
1739 struct shmem_inode_info *info;
1741 len = strlen(symname) + 1;
1742 if (len > PAGE_CACHE_SIZE)
1743 return -ENAMETOOLONG;
1745 inode = shmem_get_inode(dir->i_sb, S_IFLNK|S_IRWXUGO, 0);
1749 info = SHMEM_I(inode);
1750 inode->i_size = len-1;
1751 if (len <= (char *)inode - (char *)info) {
1753 memcpy(info, symname, len);
1754 inode->i_op = &shmem_symlink_inline_operations;
1756 error = shmem_getpage(inode, 0, &page, SGP_WRITE, NULL);
1761 inode->i_op = &shmem_symlink_inode_operations;
1762 kaddr = kmap_atomic(page, KM_USER0);
1763 memcpy(kaddr, symname, len);
1764 kunmap_atomic(kaddr, KM_USER0);
1765 set_page_dirty(page);
1766 page_cache_release(page);
1768 if (dir->i_mode & S_ISGID)
1769 inode->i_gid = dir->i_gid;
1770 dir->i_size += BOGO_DIRENT_SIZE;
1771 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1772 d_instantiate(dentry, inode);
1777 static void *shmem_follow_link_inline(struct dentry *dentry, struct nameidata *nd)
1779 nd_set_link(nd, (char *)SHMEM_I(dentry->d_inode));
1783 static void *shmem_follow_link(struct dentry *dentry, struct nameidata *nd)
1785 struct page *page = NULL;
1786 int res = shmem_getpage(dentry->d_inode, 0, &page, SGP_READ, NULL);
1787 nd_set_link(nd, res ? ERR_PTR(res) : kmap(page));
1791 static void shmem_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
1793 if (!IS_ERR(nd_get_link(nd))) {
1794 struct page *page = cookie;
1796 mark_page_accessed(page);
1797 page_cache_release(page);
1801 static struct inode_operations shmem_symlink_inline_operations = {
1802 .readlink = generic_readlink,
1803 .follow_link = shmem_follow_link_inline,
1806 static struct inode_operations shmem_symlink_inode_operations = {
1807 .truncate = shmem_truncate,
1808 .readlink = generic_readlink,
1809 .follow_link = shmem_follow_link,
1810 .put_link = shmem_put_link,
1813 static int shmem_parse_options(char *options, int *mode, uid_t *uid, gid_t *gid, unsigned long *blocks, unsigned long *inodes)
1815 char *this_char, *value, *rest;
1817 while ((this_char = strsep(&options, ",")) != NULL) {
1820 if ((value = strchr(this_char,'=')) != NULL) {
1824 "tmpfs: No value for mount option '%s'\n",
1829 if (!strcmp(this_char,"size")) {
1830 unsigned long long size;
1831 size = memparse(value,&rest);
1833 size <<= PAGE_SHIFT;
1834 size *= totalram_pages;
1840 *blocks = size >> PAGE_CACHE_SHIFT;
1841 } else if (!strcmp(this_char,"nr_blocks")) {
1842 *blocks = memparse(value,&rest);
1845 } else if (!strcmp(this_char,"nr_inodes")) {
1846 *inodes = memparse(value,&rest);
1849 } else if (!strcmp(this_char,"mode")) {
1852 *mode = simple_strtoul(value,&rest,8);
1855 } else if (!strcmp(this_char,"uid")) {
1858 *uid = simple_strtoul(value,&rest,0);
1861 } else if (!strcmp(this_char,"gid")) {
1864 *gid = simple_strtoul(value,&rest,0);
1868 printk(KERN_ERR "tmpfs: Bad mount option %s\n",
1876 printk(KERN_ERR "tmpfs: Bad value '%s' for mount option '%s'\n",
1882 static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
1884 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1885 unsigned long max_blocks = sbinfo->max_blocks;
1886 unsigned long max_inodes = sbinfo->max_inodes;
1887 unsigned long blocks;
1888 unsigned long inodes;
1889 int error = -EINVAL;
1891 if (shmem_parse_options(data, NULL, NULL, NULL,
1892 &max_blocks, &max_inodes))
1895 spin_lock(&sbinfo->stat_lock);
1896 blocks = sbinfo->max_blocks - sbinfo->free_blocks;
1897 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
1898 if (max_blocks < blocks)
1900 if (max_inodes < inodes)
1903 * Those tests also disallow limited->unlimited while any are in
1904 * use, so i_blocks will always be zero when max_blocks is zero;
1905 * but we must separately disallow unlimited->limited, because
1906 * in that case we have no record of how much is already in use.
1908 if (max_blocks && !sbinfo->max_blocks)
1910 if (max_inodes && !sbinfo->max_inodes)
1914 sbinfo->max_blocks = max_blocks;
1915 sbinfo->free_blocks = max_blocks - blocks;
1916 sbinfo->max_inodes = max_inodes;
1917 sbinfo->free_inodes = max_inodes - inodes;
1919 spin_unlock(&sbinfo->stat_lock);
1924 static void shmem_put_super(struct super_block *sb)
1926 kfree(sb->s_fs_info);
1927 sb->s_fs_info = NULL;
1930 static int shmem_fill_super(struct super_block *sb,
1931 void *data, int silent)
1933 struct inode *inode;
1934 struct dentry *root;
1935 int mode = S_IRWXUGO | S_ISVTX;
1936 uid_t uid = current->fsuid;
1937 gid_t gid = current->fsgid;
1939 struct shmem_sb_info *sbinfo;
1940 unsigned long blocks = 0;
1941 unsigned long inodes = 0;
1945 * Per default we only allow half of the physical ram per
1946 * tmpfs instance, limiting inodes to one per page of lowmem;
1947 * but the internal instance is left unlimited.
1949 if (!(sb->s_flags & MS_NOUSER)) {
1950 blocks = totalram_pages / 2;
1951 inodes = totalram_pages - totalhigh_pages;
1952 if (inodes > blocks)
1954 if (shmem_parse_options(data, &mode, &uid, &gid,
1959 sb->s_flags |= MS_NOUSER;
1962 /* Round up to L1_CACHE_BYTES to resist false sharing */
1963 sbinfo = kmalloc(max((int)sizeof(struct shmem_sb_info),
1964 L1_CACHE_BYTES), GFP_KERNEL);
1968 spin_lock_init(&sbinfo->stat_lock);
1969 sbinfo->max_blocks = blocks;
1970 sbinfo->free_blocks = blocks;
1971 sbinfo->max_inodes = inodes;
1972 sbinfo->free_inodes = inodes;
1974 sb->s_fs_info = sbinfo;
1975 sb->s_maxbytes = SHMEM_MAX_BYTES;
1976 sb->s_blocksize = PAGE_CACHE_SIZE;
1977 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1978 sb->s_magic = TMPFS_MAGIC;
1979 sb->s_op = &shmem_ops;
1981 inode = shmem_get_inode(sb, S_IFDIR | mode, 0);
1986 root = d_alloc_root(inode);
1995 shmem_put_super(sb);
1999 static kmem_cache_t *shmem_inode_cachep;
2001 static struct inode *shmem_alloc_inode(struct super_block *sb)
2003 struct shmem_inode_info *p;
2004 p = (struct shmem_inode_info *)kmem_cache_alloc(shmem_inode_cachep, SLAB_KERNEL);
2007 return &p->vfs_inode;
2010 static void shmem_destroy_inode(struct inode *inode)
2012 if ((inode->i_mode & S_IFMT) == S_IFREG) {
2013 /* only struct inode is valid if it's an inline symlink */
2014 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
2016 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
2019 static void init_once(void *foo, kmem_cache_t *cachep, unsigned long flags)
2021 struct shmem_inode_info *p = (struct shmem_inode_info *) foo;
2023 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
2024 SLAB_CTOR_CONSTRUCTOR) {
2025 inode_init_once(&p->vfs_inode);
2029 static int init_inodecache(void)
2031 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
2032 sizeof(struct shmem_inode_info),
2033 0, 0, init_once, NULL);
2034 if (shmem_inode_cachep == NULL)
2039 static void destroy_inodecache(void)
2041 if (kmem_cache_destroy(shmem_inode_cachep))
2042 printk(KERN_INFO "shmem_inode_cache: not all structures were freed\n");
2045 static struct address_space_operations shmem_aops = {
2046 .writepage = shmem_writepage,
2047 .set_page_dirty = __set_page_dirty_nobuffers,
2049 .prepare_write = shmem_prepare_write,
2050 .commit_write = simple_commit_write,
2054 static struct file_operations shmem_file_operations = {
2057 .llseek = generic_file_llseek,
2058 .read = shmem_file_read,
2059 .write = shmem_file_write,
2060 .fsync = simple_sync_file,
2061 .sendfile = shmem_file_sendfile,
2065 static struct inode_operations shmem_inode_operations = {
2066 .truncate = shmem_truncate,
2067 .setattr = shmem_notify_change,
2070 static struct inode_operations shmem_dir_inode_operations = {
2072 .create = shmem_create,
2073 .lookup = simple_lookup,
2075 .unlink = shmem_unlink,
2076 .symlink = shmem_symlink,
2077 .mkdir = shmem_mkdir,
2078 .rmdir = shmem_rmdir,
2079 .mknod = shmem_mknod,
2080 .rename = shmem_rename,
2084 static struct super_operations shmem_ops = {
2085 .alloc_inode = shmem_alloc_inode,
2086 .destroy_inode = shmem_destroy_inode,
2088 .statfs = shmem_statfs,
2089 .remount_fs = shmem_remount_fs,
2091 .delete_inode = shmem_delete_inode,
2092 .drop_inode = generic_delete_inode,
2093 .put_super = shmem_put_super,
2096 static struct vm_operations_struct shmem_vm_ops = {
2097 .nopage = shmem_nopage,
2098 .populate = shmem_populate,
2100 .set_policy = shmem_set_policy,
2101 .get_policy = shmem_get_policy,
2106 static struct super_block *shmem_get_sb(struct file_system_type *fs_type,
2107 int flags, const char *dev_name, void *data)
2109 return get_sb_nodev(fs_type, flags, data, shmem_fill_super);
2112 static struct file_system_type tmpfs_fs_type = {
2113 .owner = THIS_MODULE,
2115 .get_sb = shmem_get_sb,
2116 .kill_sb = kill_litter_super,
2118 static struct vfsmount *shm_mnt;
2120 static int __init init_tmpfs(void)
2124 error = init_inodecache();
2128 error = register_filesystem(&tmpfs_fs_type);
2130 printk(KERN_ERR "Could not register tmpfs\n");
2134 devfs_mk_dir("shm");
2136 shm_mnt = do_kern_mount(tmpfs_fs_type.name, MS_NOUSER,
2137 tmpfs_fs_type.name, NULL);
2138 if (IS_ERR(shm_mnt)) {
2139 error = PTR_ERR(shm_mnt);
2140 printk(KERN_ERR "Could not kern_mount tmpfs\n");
2146 unregister_filesystem(&tmpfs_fs_type);
2148 destroy_inodecache();
2150 shm_mnt = ERR_PTR(error);
2153 module_init(init_tmpfs)
2156 * shmem_file_setup - get an unlinked file living in tmpfs
2158 * @name: name for dentry (to be seen in /proc/<pid>/maps
2159 * @size: size to be set for the file
2162 struct file *shmem_file_setup(char *name, loff_t size, unsigned long flags)
2166 struct inode *inode;
2167 struct dentry *dentry, *root;
2170 if (IS_ERR(shm_mnt))
2171 return (void *)shm_mnt;
2173 if (size < 0 || size > SHMEM_MAX_BYTES)
2174 return ERR_PTR(-EINVAL);
2176 if (shmem_acct_size(flags, size))
2177 return ERR_PTR(-ENOMEM);
2181 this.len = strlen(name);
2182 this.hash = 0; /* will go */
2183 root = shm_mnt->mnt_root;
2184 dentry = d_alloc(root, &this);
2189 file = get_empty_filp();
2194 inode = shmem_get_inode(root->d_sb, S_IFREG | S_IRWXUGO, 0);
2198 SHMEM_I(inode)->flags = flags & VM_ACCOUNT;
2199 d_instantiate(dentry, inode);
2200 inode->i_size = size;
2201 inode->i_nlink = 0; /* It is unlinked */
2202 file->f_vfsmnt = mntget(shm_mnt);
2203 file->f_dentry = dentry;
2204 file->f_mapping = inode->i_mapping;
2205 file->f_op = &shmem_file_operations;
2206 file->f_mode = FMODE_WRITE | FMODE_READ;
2214 shmem_unacct_size(flags, size);
2215 return ERR_PTR(error);
2219 * shmem_zero_setup - setup a shared anonymous mapping
2221 * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
2223 int shmem_zero_setup(struct vm_area_struct *vma)
2226 loff_t size = vma->vm_end - vma->vm_start;
2228 file = shmem_file_setup("dev/zero", size, vma->vm_flags);
2230 return PTR_ERR(file);
2234 vma->vm_file = file;
2235 vma->vm_ops = &shmem_vm_ops;