xref: /openbmc/linux/mm/shmem.c (revision 853ac43ab194f5051b27a55060215d696dc9480d)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * Resizable virtual memory filesystem for Linux.
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * Copyright (C) 2000 Linus Torvalds.
51da177e4SLinus Torvalds  *		 2000 Transmeta Corp.
61da177e4SLinus Torvalds  *		 2000-2001 Christoph Rohland
71da177e4SLinus Torvalds  *		 2000-2001 SAP AG
81da177e4SLinus Torvalds  *		 2002 Red Hat Inc.
90edd73b3SHugh Dickins  * Copyright (C) 2002-2005 Hugh Dickins.
100edd73b3SHugh Dickins  * Copyright (C) 2002-2005 VERITAS Software Corporation.
111da177e4SLinus Torvalds  * Copyright (C) 2004 Andi Kleen, SuSE Labs
121da177e4SLinus Torvalds  *
131da177e4SLinus Torvalds  * Extended attribute support for tmpfs:
141da177e4SLinus Torvalds  * Copyright (c) 2004, Luke Kenneth Casson Leighton <lkcl@lkcl.net>
151da177e4SLinus Torvalds  * Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
161da177e4SLinus Torvalds  *
17*853ac43aSMatt Mackall  * tiny-shmem:
18*853ac43aSMatt Mackall  * Copyright (c) 2004, 2008 Matt Mackall <mpm@selenic.com>
19*853ac43aSMatt Mackall  *
201da177e4SLinus Torvalds  * This file is released under the GPL.
211da177e4SLinus Torvalds  */
221da177e4SLinus Torvalds 
23*853ac43aSMatt Mackall #include <linux/fs.h>
24*853ac43aSMatt Mackall #include <linux/init.h>
25*853ac43aSMatt Mackall #include <linux/vfs.h>
26*853ac43aSMatt Mackall #include <linux/mount.h>
27*853ac43aSMatt Mackall #include <linux/file.h>
28*853ac43aSMatt Mackall #include <linux/mm.h>
29*853ac43aSMatt Mackall #include <linux/module.h>
30*853ac43aSMatt Mackall #include <linux/swap.h>
31*853ac43aSMatt Mackall 
32*853ac43aSMatt Mackall static struct vfsmount *shm_mnt;
33*853ac43aSMatt Mackall 
34*853ac43aSMatt Mackall #ifdef CONFIG_SHMEM
351da177e4SLinus Torvalds /*
361da177e4SLinus Torvalds  * This virtual memory filesystem is heavily based on the ramfs. It
371da177e4SLinus Torvalds  * extends ramfs by the ability to use swap and honor resource limits
381da177e4SLinus Torvalds  * which makes it a completely usable filesystem.
391da177e4SLinus Torvalds  */
401da177e4SLinus Torvalds 
4139f0247dSAndreas Gruenbacher #include <linux/xattr.h>
42a5694255SChristoph Hellwig #include <linux/exportfs.h>
4339f0247dSAndreas Gruenbacher #include <linux/generic_acl.h>
441da177e4SLinus Torvalds #include <linux/mman.h>
451da177e4SLinus Torvalds #include <linux/pagemap.h>
461da177e4SLinus Torvalds #include <linux/string.h>
471da177e4SLinus Torvalds #include <linux/slab.h>
481da177e4SLinus Torvalds #include <linux/backing-dev.h>
491da177e4SLinus Torvalds #include <linux/shmem_fs.h>
501da177e4SLinus Torvalds #include <linux/writeback.h>
511da177e4SLinus Torvalds #include <linux/vfs.h>
521da177e4SLinus Torvalds #include <linux/blkdev.h>
531da177e4SLinus Torvalds #include <linux/security.h>
541da177e4SLinus Torvalds #include <linux/swapops.h>
551da177e4SLinus Torvalds #include <linux/mempolicy.h>
561da177e4SLinus Torvalds #include <linux/namei.h>
57b00dc3adSHugh Dickins #include <linux/ctype.h>
58304dbdb7SLee Schermerhorn #include <linux/migrate.h>
59c1f60a5aSChristoph Lameter #include <linux/highmem.h>
60680d794bSakpm@linux-foundation.org #include <linux/seq_file.h>
6192562927SMimi Zohar #include <linux/magic.h>
62304dbdb7SLee Schermerhorn 
631da177e4SLinus Torvalds #include <asm/uaccess.h>
641da177e4SLinus Torvalds #include <asm/div64.h>
651da177e4SLinus Torvalds #include <asm/pgtable.h>
661da177e4SLinus Torvalds 
671da177e4SLinus Torvalds #define ENTRIES_PER_PAGE (PAGE_CACHE_SIZE/sizeof(unsigned long))
681da177e4SLinus Torvalds #define ENTRIES_PER_PAGEPAGE (ENTRIES_PER_PAGE*ENTRIES_PER_PAGE)
691da177e4SLinus Torvalds #define BLOCKS_PER_PAGE  (PAGE_CACHE_SIZE/512)
701da177e4SLinus Torvalds 
711da177e4SLinus Torvalds #define SHMEM_MAX_INDEX  (SHMEM_NR_DIRECT + (ENTRIES_PER_PAGEPAGE/2) * (ENTRIES_PER_PAGE+1))
721da177e4SLinus Torvalds #define SHMEM_MAX_BYTES  ((unsigned long long)SHMEM_MAX_INDEX << PAGE_CACHE_SHIFT)
731da177e4SLinus Torvalds 
741da177e4SLinus Torvalds #define VM_ACCT(size)    (PAGE_CACHE_ALIGN(size) >> PAGE_SHIFT)
751da177e4SLinus Torvalds 
761da177e4SLinus Torvalds /* info->flags needs VM_flags to handle pagein/truncate races efficiently */
771da177e4SLinus Torvalds #define SHMEM_PAGEIN	 VM_READ
781da177e4SLinus Torvalds #define SHMEM_TRUNCATE	 VM_WRITE
791da177e4SLinus Torvalds 
801da177e4SLinus Torvalds /* Definition to limit shmem_truncate's steps between cond_rescheds */
811da177e4SLinus Torvalds #define LATENCY_LIMIT	 64
821da177e4SLinus Torvalds 
831da177e4SLinus Torvalds /* Pretend that each entry is of this size in directory's i_size */
841da177e4SLinus Torvalds #define BOGO_DIRENT_SIZE 20
851da177e4SLinus Torvalds 
861da177e4SLinus Torvalds /* Flag allocation requirements to shmem_getpage and shmem_swp_alloc */
871da177e4SLinus Torvalds enum sgp_type {
881da177e4SLinus Torvalds 	SGP_READ,	/* don't exceed i_size, don't allocate page */
891da177e4SLinus Torvalds 	SGP_CACHE,	/* don't exceed i_size, may allocate page */
90a0ee5ec5SHugh Dickins 	SGP_DIRTY,	/* like SGP_CACHE, but set new page dirty */
911da177e4SLinus Torvalds 	SGP_WRITE,	/* may exceed i_size, may allocate page */
921da177e4SLinus Torvalds };
931da177e4SLinus Torvalds 
94b76db735SAndrew Morton #ifdef CONFIG_TMPFS
95680d794bSakpm@linux-foundation.org static unsigned long shmem_default_max_blocks(void)
96680d794bSakpm@linux-foundation.org {
97680d794bSakpm@linux-foundation.org 	return totalram_pages / 2;
98680d794bSakpm@linux-foundation.org }
99680d794bSakpm@linux-foundation.org 
100680d794bSakpm@linux-foundation.org static unsigned long shmem_default_max_inodes(void)
101680d794bSakpm@linux-foundation.org {
102680d794bSakpm@linux-foundation.org 	return min(totalram_pages - totalhigh_pages, totalram_pages / 2);
103680d794bSakpm@linux-foundation.org }
104b76db735SAndrew Morton #endif
105680d794bSakpm@linux-foundation.org 
1061da177e4SLinus Torvalds static int shmem_getpage(struct inode *inode, unsigned long idx,
1071da177e4SLinus Torvalds 			 struct page **pagep, enum sgp_type sgp, int *type);
1081da177e4SLinus Torvalds 
1096daa0e28SAl Viro static inline struct page *shmem_dir_alloc(gfp_t gfp_mask)
1101da177e4SLinus Torvalds {
1111da177e4SLinus Torvalds 	/*
1121da177e4SLinus Torvalds 	 * The above definition of ENTRIES_PER_PAGE, and the use of
1131da177e4SLinus Torvalds 	 * BLOCKS_PER_PAGE on indirect pages, assume PAGE_CACHE_SIZE:
1141da177e4SLinus Torvalds 	 * might be reconsidered if it ever diverges from PAGE_SIZE.
115769848c0SMel Gorman 	 *
116e12ba74dSMel Gorman 	 * Mobility flags are masked out as swap vectors cannot move
1171da177e4SLinus Torvalds 	 */
118e12ba74dSMel Gorman 	return alloc_pages((gfp_mask & ~GFP_MOVABLE_MASK) | __GFP_ZERO,
119769848c0SMel Gorman 				PAGE_CACHE_SHIFT-PAGE_SHIFT);
1201da177e4SLinus Torvalds }
1211da177e4SLinus Torvalds 
1221da177e4SLinus Torvalds static inline void shmem_dir_free(struct page *page)
1231da177e4SLinus Torvalds {
1241da177e4SLinus Torvalds 	__free_pages(page, PAGE_CACHE_SHIFT-PAGE_SHIFT);
1251da177e4SLinus Torvalds }
1261da177e4SLinus Torvalds 
1271da177e4SLinus Torvalds static struct page **shmem_dir_map(struct page *page)
1281da177e4SLinus Torvalds {
1291da177e4SLinus Torvalds 	return (struct page **)kmap_atomic(page, KM_USER0);
1301da177e4SLinus Torvalds }
1311da177e4SLinus Torvalds 
1321da177e4SLinus Torvalds static inline void shmem_dir_unmap(struct page **dir)
1331da177e4SLinus Torvalds {
1341da177e4SLinus Torvalds 	kunmap_atomic(dir, KM_USER0);
1351da177e4SLinus Torvalds }
1361da177e4SLinus Torvalds 
1371da177e4SLinus Torvalds static swp_entry_t *shmem_swp_map(struct page *page)
1381da177e4SLinus Torvalds {
1391da177e4SLinus Torvalds 	return (swp_entry_t *)kmap_atomic(page, KM_USER1);
1401da177e4SLinus Torvalds }
1411da177e4SLinus Torvalds 
1421da177e4SLinus Torvalds static inline void shmem_swp_balance_unmap(void)
1431da177e4SLinus Torvalds {
1441da177e4SLinus Torvalds 	/*
1451da177e4SLinus Torvalds 	 * When passing a pointer to an i_direct entry, to code which
1461da177e4SLinus Torvalds 	 * also handles indirect entries and so will shmem_swp_unmap,
1471da177e4SLinus Torvalds 	 * we must arrange for the preempt count to remain in balance.
1481da177e4SLinus Torvalds 	 * What kmap_atomic of a lowmem page does depends on config
1491da177e4SLinus Torvalds 	 * and architecture, so pretend to kmap_atomic some lowmem page.
1501da177e4SLinus Torvalds 	 */
1511da177e4SLinus Torvalds 	(void) kmap_atomic(ZERO_PAGE(0), KM_USER1);
1521da177e4SLinus Torvalds }
1531da177e4SLinus Torvalds 
1541da177e4SLinus Torvalds static inline void shmem_swp_unmap(swp_entry_t *entry)
1551da177e4SLinus Torvalds {
1561da177e4SLinus Torvalds 	kunmap_atomic(entry, KM_USER1);
1571da177e4SLinus Torvalds }
1581da177e4SLinus Torvalds 
1591da177e4SLinus Torvalds static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
1601da177e4SLinus Torvalds {
1611da177e4SLinus Torvalds 	return sb->s_fs_info;
1621da177e4SLinus Torvalds }
1631da177e4SLinus Torvalds 
1641da177e4SLinus Torvalds /*
1651da177e4SLinus Torvalds  * shmem_file_setup pre-accounts the whole fixed size of a VM object,
1661da177e4SLinus Torvalds  * for shared memory and for shared anonymous (/dev/zero) mappings
1671da177e4SLinus Torvalds  * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
1681da177e4SLinus Torvalds  * consistent with the pre-accounting of private mappings ...
1691da177e4SLinus Torvalds  */
1701da177e4SLinus Torvalds static inline int shmem_acct_size(unsigned long flags, loff_t size)
1711da177e4SLinus Torvalds {
1721da177e4SLinus Torvalds 	return (flags & VM_ACCOUNT) ?
173731572d3SAlan Cox 		security_vm_enough_memory_kern(VM_ACCT(size)) : 0;
1741da177e4SLinus Torvalds }
1751da177e4SLinus Torvalds 
1761da177e4SLinus Torvalds static inline void shmem_unacct_size(unsigned long flags, loff_t size)
1771da177e4SLinus Torvalds {
1781da177e4SLinus Torvalds 	if (flags & VM_ACCOUNT)
1791da177e4SLinus Torvalds 		vm_unacct_memory(VM_ACCT(size));
1801da177e4SLinus Torvalds }
1811da177e4SLinus Torvalds 
1821da177e4SLinus Torvalds /*
1831da177e4SLinus Torvalds  * ... whereas tmpfs objects are accounted incrementally as
1841da177e4SLinus Torvalds  * pages are allocated, in order to allow huge sparse files.
1851da177e4SLinus Torvalds  * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM,
1861da177e4SLinus Torvalds  * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
1871da177e4SLinus Torvalds  */
1881da177e4SLinus Torvalds static inline int shmem_acct_block(unsigned long flags)
1891da177e4SLinus Torvalds {
1901da177e4SLinus Torvalds 	return (flags & VM_ACCOUNT) ?
191731572d3SAlan Cox 		0 : security_vm_enough_memory_kern(VM_ACCT(PAGE_CACHE_SIZE));
1921da177e4SLinus Torvalds }
1931da177e4SLinus Torvalds 
1941da177e4SLinus Torvalds static inline void shmem_unacct_blocks(unsigned long flags, long pages)
1951da177e4SLinus Torvalds {
1961da177e4SLinus Torvalds 	if (!(flags & VM_ACCOUNT))
1971da177e4SLinus Torvalds 		vm_unacct_memory(pages * VM_ACCT(PAGE_CACHE_SIZE));
1981da177e4SLinus Torvalds }
1991da177e4SLinus Torvalds 
200759b9775SHugh Dickins static const struct super_operations shmem_ops;
201f5e54d6eSChristoph Hellwig static const struct address_space_operations shmem_aops;
20215ad7cdcSHelge Deller static const struct file_operations shmem_file_operations;
20392e1d5beSArjan van de Ven static const struct inode_operations shmem_inode_operations;
20492e1d5beSArjan van de Ven static const struct inode_operations shmem_dir_inode_operations;
20592e1d5beSArjan van de Ven static const struct inode_operations shmem_special_inode_operations;
2061da177e4SLinus Torvalds static struct vm_operations_struct shmem_vm_ops;
2071da177e4SLinus Torvalds 
2086c231b7bSRavikiran G Thirumalai static struct backing_dev_info shmem_backing_dev_info  __read_mostly = {
2091da177e4SLinus Torvalds 	.ra_pages	= 0,	/* No readahead */
2104f98a2feSRik van Riel 	.capabilities	= BDI_CAP_NO_ACCT_AND_WRITEBACK | BDI_CAP_SWAP_BACKED,
2111da177e4SLinus Torvalds 	.unplug_io_fn	= default_unplug_io_fn,
2121da177e4SLinus Torvalds };
2131da177e4SLinus Torvalds 
2141da177e4SLinus Torvalds static LIST_HEAD(shmem_swaplist);
215cb5f7b9aSHugh Dickins static DEFINE_MUTEX(shmem_swaplist_mutex);
2161da177e4SLinus Torvalds 
2171da177e4SLinus Torvalds static void shmem_free_blocks(struct inode *inode, long pages)
2181da177e4SLinus Torvalds {
2191da177e4SLinus Torvalds 	struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
2200edd73b3SHugh Dickins 	if (sbinfo->max_blocks) {
2211da177e4SLinus Torvalds 		spin_lock(&sbinfo->stat_lock);
2221da177e4SLinus Torvalds 		sbinfo->free_blocks += pages;
2231da177e4SLinus Torvalds 		inode->i_blocks -= pages*BLOCKS_PER_PAGE;
2241da177e4SLinus Torvalds 		spin_unlock(&sbinfo->stat_lock);
2251da177e4SLinus Torvalds 	}
2261da177e4SLinus Torvalds }
2271da177e4SLinus Torvalds 
2285b04c689SPavel Emelyanov static int shmem_reserve_inode(struct super_block *sb)
2295b04c689SPavel Emelyanov {
2305b04c689SPavel Emelyanov 	struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2315b04c689SPavel Emelyanov 	if (sbinfo->max_inodes) {
2325b04c689SPavel Emelyanov 		spin_lock(&sbinfo->stat_lock);
2335b04c689SPavel Emelyanov 		if (!sbinfo->free_inodes) {
2345b04c689SPavel Emelyanov 			spin_unlock(&sbinfo->stat_lock);
2355b04c689SPavel Emelyanov 			return -ENOSPC;
2365b04c689SPavel Emelyanov 		}
2375b04c689SPavel Emelyanov 		sbinfo->free_inodes--;
2385b04c689SPavel Emelyanov 		spin_unlock(&sbinfo->stat_lock);
2395b04c689SPavel Emelyanov 	}
2405b04c689SPavel Emelyanov 	return 0;
2415b04c689SPavel Emelyanov }
2425b04c689SPavel Emelyanov 
2435b04c689SPavel Emelyanov static void shmem_free_inode(struct super_block *sb)
2445b04c689SPavel Emelyanov {
2455b04c689SPavel Emelyanov 	struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2465b04c689SPavel Emelyanov 	if (sbinfo->max_inodes) {
2475b04c689SPavel Emelyanov 		spin_lock(&sbinfo->stat_lock);
2485b04c689SPavel Emelyanov 		sbinfo->free_inodes++;
2495b04c689SPavel Emelyanov 		spin_unlock(&sbinfo->stat_lock);
2505b04c689SPavel Emelyanov 	}
2515b04c689SPavel Emelyanov }
2525b04c689SPavel Emelyanov 
25346711810SRandy Dunlap /**
2541da177e4SLinus Torvalds  * shmem_recalc_inode - recalculate the size of an inode
2551da177e4SLinus Torvalds  * @inode: inode to recalc
2561da177e4SLinus Torvalds  *
2571da177e4SLinus Torvalds  * We have to calculate the free blocks since the mm can drop
2581da177e4SLinus Torvalds  * undirtied hole pages behind our back.
2591da177e4SLinus Torvalds  *
2601da177e4SLinus Torvalds  * But normally   info->alloced == inode->i_mapping->nrpages + info->swapped
2611da177e4SLinus Torvalds  * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
2621da177e4SLinus Torvalds  *
2631da177e4SLinus Torvalds  * It has to be called with the spinlock held.
2641da177e4SLinus Torvalds  */
2651da177e4SLinus Torvalds static void shmem_recalc_inode(struct inode *inode)
2661da177e4SLinus Torvalds {
2671da177e4SLinus Torvalds 	struct shmem_inode_info *info = SHMEM_I(inode);
2681da177e4SLinus Torvalds 	long freed;
2691da177e4SLinus Torvalds 
2701da177e4SLinus Torvalds 	freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
2711da177e4SLinus Torvalds 	if (freed > 0) {
2721da177e4SLinus Torvalds 		info->alloced -= freed;
2731da177e4SLinus Torvalds 		shmem_unacct_blocks(info->flags, freed);
2741da177e4SLinus Torvalds 		shmem_free_blocks(inode, freed);
2751da177e4SLinus Torvalds 	}
2761da177e4SLinus Torvalds }
2771da177e4SLinus Torvalds 
27846711810SRandy Dunlap /**
2791da177e4SLinus Torvalds  * shmem_swp_entry - find the swap vector position in the info structure
2801da177e4SLinus Torvalds  * @info:  info structure for the inode
2811da177e4SLinus Torvalds  * @index: index of the page to find
2821da177e4SLinus Torvalds  * @page:  optional page to add to the structure. Has to be preset to
2831da177e4SLinus Torvalds  *         all zeros
2841da177e4SLinus Torvalds  *
2851da177e4SLinus Torvalds  * If there is no space allocated yet it will return NULL when
2861da177e4SLinus Torvalds  * page is NULL, else it will use the page for the needed block,
2871da177e4SLinus Torvalds  * setting it to NULL on return to indicate that it has been used.
2881da177e4SLinus Torvalds  *
2891da177e4SLinus Torvalds  * The swap vector is organized the following way:
2901da177e4SLinus Torvalds  *
2911da177e4SLinus Torvalds  * There are SHMEM_NR_DIRECT entries directly stored in the
2921da177e4SLinus Torvalds  * shmem_inode_info structure. So small files do not need an addional
2931da177e4SLinus Torvalds  * allocation.
2941da177e4SLinus Torvalds  *
2951da177e4SLinus Torvalds  * For pages with index > SHMEM_NR_DIRECT there is the pointer
2961da177e4SLinus Torvalds  * i_indirect which points to a page which holds in the first half
2971da177e4SLinus Torvalds  * doubly indirect blocks, in the second half triple indirect blocks:
2981da177e4SLinus Torvalds  *
2991da177e4SLinus Torvalds  * For an artificial ENTRIES_PER_PAGE = 4 this would lead to the
3001da177e4SLinus Torvalds  * following layout (for SHMEM_NR_DIRECT == 16):
3011da177e4SLinus Torvalds  *
3021da177e4SLinus Torvalds  * i_indirect -> dir --> 16-19
3031da177e4SLinus Torvalds  * 	      |	     +-> 20-23
3041da177e4SLinus Torvalds  * 	      |
3051da177e4SLinus Torvalds  * 	      +-->dir2 --> 24-27
3061da177e4SLinus Torvalds  * 	      |	       +-> 28-31
3071da177e4SLinus Torvalds  * 	      |	       +-> 32-35
3081da177e4SLinus Torvalds  * 	      |	       +-> 36-39
3091da177e4SLinus Torvalds  * 	      |
3101da177e4SLinus Torvalds  * 	      +-->dir3 --> 40-43
3111da177e4SLinus Torvalds  * 	       	       +-> 44-47
3121da177e4SLinus Torvalds  * 	      	       +-> 48-51
3131da177e4SLinus Torvalds  * 	      	       +-> 52-55
3141da177e4SLinus Torvalds  */
3151da177e4SLinus Torvalds static swp_entry_t *shmem_swp_entry(struct shmem_inode_info *info, unsigned long index, struct page **page)
3161da177e4SLinus Torvalds {
3171da177e4SLinus Torvalds 	unsigned long offset;
3181da177e4SLinus Torvalds 	struct page **dir;
3191da177e4SLinus Torvalds 	struct page *subdir;
3201da177e4SLinus Torvalds 
3211da177e4SLinus Torvalds 	if (index < SHMEM_NR_DIRECT) {
3221da177e4SLinus Torvalds 		shmem_swp_balance_unmap();
3231da177e4SLinus Torvalds 		return info->i_direct+index;
3241da177e4SLinus Torvalds 	}
3251da177e4SLinus Torvalds 	if (!info->i_indirect) {
3261da177e4SLinus Torvalds 		if (page) {
3271da177e4SLinus Torvalds 			info->i_indirect = *page;
3281da177e4SLinus Torvalds 			*page = NULL;
3291da177e4SLinus Torvalds 		}
3301da177e4SLinus Torvalds 		return NULL;			/* need another page */
3311da177e4SLinus Torvalds 	}
3321da177e4SLinus Torvalds 
3331da177e4SLinus Torvalds 	index -= SHMEM_NR_DIRECT;
3341da177e4SLinus Torvalds 	offset = index % ENTRIES_PER_PAGE;
3351da177e4SLinus Torvalds 	index /= ENTRIES_PER_PAGE;
3361da177e4SLinus Torvalds 	dir = shmem_dir_map(info->i_indirect);
3371da177e4SLinus Torvalds 
3381da177e4SLinus Torvalds 	if (index >= ENTRIES_PER_PAGE/2) {
3391da177e4SLinus Torvalds 		index -= ENTRIES_PER_PAGE/2;
3401da177e4SLinus Torvalds 		dir += ENTRIES_PER_PAGE/2 + index/ENTRIES_PER_PAGE;
3411da177e4SLinus Torvalds 		index %= ENTRIES_PER_PAGE;
3421da177e4SLinus Torvalds 		subdir = *dir;
3431da177e4SLinus Torvalds 		if (!subdir) {
3441da177e4SLinus Torvalds 			if (page) {
3451da177e4SLinus Torvalds 				*dir = *page;
3461da177e4SLinus Torvalds 				*page = NULL;
3471da177e4SLinus Torvalds 			}
3481da177e4SLinus Torvalds 			shmem_dir_unmap(dir);
3491da177e4SLinus Torvalds 			return NULL;		/* need another page */
3501da177e4SLinus Torvalds 		}
3511da177e4SLinus Torvalds 		shmem_dir_unmap(dir);
3521da177e4SLinus Torvalds 		dir = shmem_dir_map(subdir);
3531da177e4SLinus Torvalds 	}
3541da177e4SLinus Torvalds 
3551da177e4SLinus Torvalds 	dir += index;
3561da177e4SLinus Torvalds 	subdir = *dir;
3571da177e4SLinus Torvalds 	if (!subdir) {
3581da177e4SLinus Torvalds 		if (!page || !(subdir = *page)) {
3591da177e4SLinus Torvalds 			shmem_dir_unmap(dir);
3601da177e4SLinus Torvalds 			return NULL;		/* need a page */
3611da177e4SLinus Torvalds 		}
3621da177e4SLinus Torvalds 		*dir = subdir;
3631da177e4SLinus Torvalds 		*page = NULL;
3641da177e4SLinus Torvalds 	}
3651da177e4SLinus Torvalds 	shmem_dir_unmap(dir);
3661da177e4SLinus Torvalds 	return shmem_swp_map(subdir) + offset;
3671da177e4SLinus Torvalds }
3681da177e4SLinus Torvalds 
3691da177e4SLinus Torvalds static void shmem_swp_set(struct shmem_inode_info *info, swp_entry_t *entry, unsigned long value)
3701da177e4SLinus Torvalds {
3711da177e4SLinus Torvalds 	long incdec = value? 1: -1;
3721da177e4SLinus Torvalds 
3731da177e4SLinus Torvalds 	entry->val = value;
3741da177e4SLinus Torvalds 	info->swapped += incdec;
3754c21e2f2SHugh Dickins 	if ((unsigned long)(entry - info->i_direct) >= SHMEM_NR_DIRECT) {
3764c21e2f2SHugh Dickins 		struct page *page = kmap_atomic_to_page(entry);
3774c21e2f2SHugh Dickins 		set_page_private(page, page_private(page) + incdec);
3784c21e2f2SHugh Dickins 	}
3791da177e4SLinus Torvalds }
3801da177e4SLinus Torvalds 
38146711810SRandy Dunlap /**
3821da177e4SLinus Torvalds  * shmem_swp_alloc - get the position of the swap entry for the page.
3831da177e4SLinus Torvalds  * @info:	info structure for the inode
3841da177e4SLinus Torvalds  * @index:	index of the page to find
3851da177e4SLinus Torvalds  * @sgp:	check and recheck i_size? skip allocation?
38646711810SRandy Dunlap  *
38746711810SRandy Dunlap  * If the entry does not exist, allocate it.
3881da177e4SLinus Torvalds  */
3891da177e4SLinus Torvalds static swp_entry_t *shmem_swp_alloc(struct shmem_inode_info *info, unsigned long index, enum sgp_type sgp)
3901da177e4SLinus Torvalds {
3911da177e4SLinus Torvalds 	struct inode *inode = &info->vfs_inode;
3921da177e4SLinus Torvalds 	struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
3931da177e4SLinus Torvalds 	struct page *page = NULL;
3941da177e4SLinus Torvalds 	swp_entry_t *entry;
3951da177e4SLinus Torvalds 
3961da177e4SLinus Torvalds 	if (sgp != SGP_WRITE &&
3971da177e4SLinus Torvalds 	    ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode))
3981da177e4SLinus Torvalds 		return ERR_PTR(-EINVAL);
3991da177e4SLinus Torvalds 
4001da177e4SLinus Torvalds 	while (!(entry = shmem_swp_entry(info, index, &page))) {
4011da177e4SLinus Torvalds 		if (sgp == SGP_READ)
4021da177e4SLinus Torvalds 			return shmem_swp_map(ZERO_PAGE(0));
4031da177e4SLinus Torvalds 		/*
4041da177e4SLinus Torvalds 		 * Test free_blocks against 1 not 0, since we have 1 data
4051da177e4SLinus Torvalds 		 * page (and perhaps indirect index pages) yet to allocate:
4061da177e4SLinus Torvalds 		 * a waste to allocate index if we cannot allocate data.
4071da177e4SLinus Torvalds 		 */
4080edd73b3SHugh Dickins 		if (sbinfo->max_blocks) {
4091da177e4SLinus Torvalds 			spin_lock(&sbinfo->stat_lock);
4101da177e4SLinus Torvalds 			if (sbinfo->free_blocks <= 1) {
4111da177e4SLinus Torvalds 				spin_unlock(&sbinfo->stat_lock);
4121da177e4SLinus Torvalds 				return ERR_PTR(-ENOSPC);
4131da177e4SLinus Torvalds 			}
4141da177e4SLinus Torvalds 			sbinfo->free_blocks--;
4151da177e4SLinus Torvalds 			inode->i_blocks += BLOCKS_PER_PAGE;
4161da177e4SLinus Torvalds 			spin_unlock(&sbinfo->stat_lock);
4171da177e4SLinus Torvalds 		}
4181da177e4SLinus Torvalds 
4191da177e4SLinus Torvalds 		spin_unlock(&info->lock);
420769848c0SMel Gorman 		page = shmem_dir_alloc(mapping_gfp_mask(inode->i_mapping));
4214c21e2f2SHugh Dickins 		if (page)
4224c21e2f2SHugh Dickins 			set_page_private(page, 0);
4231da177e4SLinus Torvalds 		spin_lock(&info->lock);
4241da177e4SLinus Torvalds 
4251da177e4SLinus Torvalds 		if (!page) {
4261da177e4SLinus Torvalds 			shmem_free_blocks(inode, 1);
4271da177e4SLinus Torvalds 			return ERR_PTR(-ENOMEM);
4281da177e4SLinus Torvalds 		}
4291da177e4SLinus Torvalds 		if (sgp != SGP_WRITE &&
4301da177e4SLinus Torvalds 		    ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode)) {
4311da177e4SLinus Torvalds 			entry = ERR_PTR(-EINVAL);
4321da177e4SLinus Torvalds 			break;
4331da177e4SLinus Torvalds 		}
4341da177e4SLinus Torvalds 		if (info->next_index <= index)
4351da177e4SLinus Torvalds 			info->next_index = index + 1;
4361da177e4SLinus Torvalds 	}
4371da177e4SLinus Torvalds 	if (page) {
4381da177e4SLinus Torvalds 		/* another task gave its page, or truncated the file */
4391da177e4SLinus Torvalds 		shmem_free_blocks(inode, 1);
4401da177e4SLinus Torvalds 		shmem_dir_free(page);
4411da177e4SLinus Torvalds 	}
4421da177e4SLinus Torvalds 	if (info->next_index <= index && !IS_ERR(entry))
4431da177e4SLinus Torvalds 		info->next_index = index + 1;
4441da177e4SLinus Torvalds 	return entry;
4451da177e4SLinus Torvalds }
4461da177e4SLinus Torvalds 
44746711810SRandy Dunlap /**
4481da177e4SLinus Torvalds  * shmem_free_swp - free some swap entries in a directory
4491da177e4SLinus Torvalds  * @dir:        pointer to the directory
4501da177e4SLinus Torvalds  * @edir:       pointer after last entry of the directory
4511ae70006SHugh Dickins  * @punch_lock: pointer to spinlock when needed for the holepunch case
4521da177e4SLinus Torvalds  */
4531ae70006SHugh Dickins static int shmem_free_swp(swp_entry_t *dir, swp_entry_t *edir,
4541ae70006SHugh Dickins 						spinlock_t *punch_lock)
4551da177e4SLinus Torvalds {
4561ae70006SHugh Dickins 	spinlock_t *punch_unlock = NULL;
4571da177e4SLinus Torvalds 	swp_entry_t *ptr;
4581da177e4SLinus Torvalds 	int freed = 0;
4591da177e4SLinus Torvalds 
4601da177e4SLinus Torvalds 	for (ptr = dir; ptr < edir; ptr++) {
4611da177e4SLinus Torvalds 		if (ptr->val) {
4621ae70006SHugh Dickins 			if (unlikely(punch_lock)) {
4631ae70006SHugh Dickins 				punch_unlock = punch_lock;
4641ae70006SHugh Dickins 				punch_lock = NULL;
4651ae70006SHugh Dickins 				spin_lock(punch_unlock);
4661ae70006SHugh Dickins 				if (!ptr->val)
4671ae70006SHugh Dickins 					continue;
4681ae70006SHugh Dickins 			}
4691da177e4SLinus Torvalds 			free_swap_and_cache(*ptr);
4701da177e4SLinus Torvalds 			*ptr = (swp_entry_t){0};
4711da177e4SLinus Torvalds 			freed++;
4721da177e4SLinus Torvalds 		}
4731da177e4SLinus Torvalds 	}
4741ae70006SHugh Dickins 	if (punch_unlock)
4751ae70006SHugh Dickins 		spin_unlock(punch_unlock);
4761da177e4SLinus Torvalds 	return freed;
4771da177e4SLinus Torvalds }
4781da177e4SLinus Torvalds 
4791ae70006SHugh Dickins static int shmem_map_and_free_swp(struct page *subdir, int offset,
4801ae70006SHugh Dickins 		int limit, struct page ***dir, spinlock_t *punch_lock)
4811da177e4SLinus Torvalds {
4821da177e4SLinus Torvalds 	swp_entry_t *ptr;
4831da177e4SLinus Torvalds 	int freed = 0;
4841da177e4SLinus Torvalds 
4851da177e4SLinus Torvalds 	ptr = shmem_swp_map(subdir);
4861da177e4SLinus Torvalds 	for (; offset < limit; offset += LATENCY_LIMIT) {
4871da177e4SLinus Torvalds 		int size = limit - offset;
4881da177e4SLinus Torvalds 		if (size > LATENCY_LIMIT)
4891da177e4SLinus Torvalds 			size = LATENCY_LIMIT;
4901ae70006SHugh Dickins 		freed += shmem_free_swp(ptr+offset, ptr+offset+size,
4911ae70006SHugh Dickins 							punch_lock);
4921da177e4SLinus Torvalds 		if (need_resched()) {
4931da177e4SLinus Torvalds 			shmem_swp_unmap(ptr);
4941da177e4SLinus Torvalds 			if (*dir) {
4951da177e4SLinus Torvalds 				shmem_dir_unmap(*dir);
4961da177e4SLinus Torvalds 				*dir = NULL;
4971da177e4SLinus Torvalds 			}
4981da177e4SLinus Torvalds 			cond_resched();
4991da177e4SLinus Torvalds 			ptr = shmem_swp_map(subdir);
5001da177e4SLinus Torvalds 		}
5011da177e4SLinus Torvalds 	}
5021da177e4SLinus Torvalds 	shmem_swp_unmap(ptr);
5031da177e4SLinus Torvalds 	return freed;
5041da177e4SLinus Torvalds }
5051da177e4SLinus Torvalds 
5061da177e4SLinus Torvalds static void shmem_free_pages(struct list_head *next)
5071da177e4SLinus Torvalds {
5081da177e4SLinus Torvalds 	struct page *page;
5091da177e4SLinus Torvalds 	int freed = 0;
5101da177e4SLinus Torvalds 
5111da177e4SLinus Torvalds 	do {
5121da177e4SLinus Torvalds 		page = container_of(next, struct page, lru);
5131da177e4SLinus Torvalds 		next = next->next;
5141da177e4SLinus Torvalds 		shmem_dir_free(page);
5151da177e4SLinus Torvalds 		freed++;
5161da177e4SLinus Torvalds 		if (freed >= LATENCY_LIMIT) {
5171da177e4SLinus Torvalds 			cond_resched();
5181da177e4SLinus Torvalds 			freed = 0;
5191da177e4SLinus Torvalds 		}
5201da177e4SLinus Torvalds 	} while (next);
5211da177e4SLinus Torvalds }
5221da177e4SLinus Torvalds 
523f6b3ec23SBadari Pulavarty static void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end)
5241da177e4SLinus Torvalds {
5251da177e4SLinus Torvalds 	struct shmem_inode_info *info = SHMEM_I(inode);
5261da177e4SLinus Torvalds 	unsigned long idx;
5271da177e4SLinus Torvalds 	unsigned long size;
5281da177e4SLinus Torvalds 	unsigned long limit;
5291da177e4SLinus Torvalds 	unsigned long stage;
5301da177e4SLinus Torvalds 	unsigned long diroff;
5311da177e4SLinus Torvalds 	struct page **dir;
5321da177e4SLinus Torvalds 	struct page *topdir;
5331da177e4SLinus Torvalds 	struct page *middir;
5341da177e4SLinus Torvalds 	struct page *subdir;
5351da177e4SLinus Torvalds 	swp_entry_t *ptr;
5361da177e4SLinus Torvalds 	LIST_HEAD(pages_to_free);
5371da177e4SLinus Torvalds 	long nr_pages_to_free = 0;
5381da177e4SLinus Torvalds 	long nr_swaps_freed = 0;
5391da177e4SLinus Torvalds 	int offset;
5401da177e4SLinus Torvalds 	int freed;
541a2646d1eSHugh Dickins 	int punch_hole;
5421ae70006SHugh Dickins 	spinlock_t *needs_lock;
5431ae70006SHugh Dickins 	spinlock_t *punch_lock;
544a2646d1eSHugh Dickins 	unsigned long upper_limit;
5451da177e4SLinus Torvalds 
5461da177e4SLinus Torvalds 	inode->i_ctime = inode->i_mtime = CURRENT_TIME;
547f6b3ec23SBadari Pulavarty 	idx = (start + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
5481da177e4SLinus Torvalds 	if (idx >= info->next_index)
5491da177e4SLinus Torvalds 		return;
5501da177e4SLinus Torvalds 
5511da177e4SLinus Torvalds 	spin_lock(&info->lock);
5521da177e4SLinus Torvalds 	info->flags |= SHMEM_TRUNCATE;
553f6b3ec23SBadari Pulavarty 	if (likely(end == (loff_t) -1)) {
5541da177e4SLinus Torvalds 		limit = info->next_index;
555a2646d1eSHugh Dickins 		upper_limit = SHMEM_MAX_INDEX;
5561da177e4SLinus Torvalds 		info->next_index = idx;
5571ae70006SHugh Dickins 		needs_lock = NULL;
558a2646d1eSHugh Dickins 		punch_hole = 0;
559f6b3ec23SBadari Pulavarty 	} else {
560a2646d1eSHugh Dickins 		if (end + 1 >= inode->i_size) {	/* we may free a little more */
561a2646d1eSHugh Dickins 			limit = (inode->i_size + PAGE_CACHE_SIZE - 1) >>
562a2646d1eSHugh Dickins 							PAGE_CACHE_SHIFT;
563a2646d1eSHugh Dickins 			upper_limit = SHMEM_MAX_INDEX;
564a2646d1eSHugh Dickins 		} else {
565a2646d1eSHugh Dickins 			limit = (end + 1) >> PAGE_CACHE_SHIFT;
566a2646d1eSHugh Dickins 			upper_limit = limit;
567a2646d1eSHugh Dickins 		}
5681ae70006SHugh Dickins 		needs_lock = &info->lock;
569f6b3ec23SBadari Pulavarty 		punch_hole = 1;
570f6b3ec23SBadari Pulavarty 	}
571f6b3ec23SBadari Pulavarty 
5721da177e4SLinus Torvalds 	topdir = info->i_indirect;
573f6b3ec23SBadari Pulavarty 	if (topdir && idx <= SHMEM_NR_DIRECT && !punch_hole) {
5741da177e4SLinus Torvalds 		info->i_indirect = NULL;
5751da177e4SLinus Torvalds 		nr_pages_to_free++;
5761da177e4SLinus Torvalds 		list_add(&topdir->lru, &pages_to_free);
5771da177e4SLinus Torvalds 	}
5781da177e4SLinus Torvalds 	spin_unlock(&info->lock);
5791da177e4SLinus Torvalds 
5801da177e4SLinus Torvalds 	if (info->swapped && idx < SHMEM_NR_DIRECT) {
5811da177e4SLinus Torvalds 		ptr = info->i_direct;
5821da177e4SLinus Torvalds 		size = limit;
5831da177e4SLinus Torvalds 		if (size > SHMEM_NR_DIRECT)
5841da177e4SLinus Torvalds 			size = SHMEM_NR_DIRECT;
5851ae70006SHugh Dickins 		nr_swaps_freed = shmem_free_swp(ptr+idx, ptr+size, needs_lock);
5861da177e4SLinus Torvalds 	}
58792a3d03aSBadari Pulavarty 
58892a3d03aSBadari Pulavarty 	/*
58992a3d03aSBadari Pulavarty 	 * If there are no indirect blocks or we are punching a hole
59092a3d03aSBadari Pulavarty 	 * below indirect blocks, nothing to be done.
59192a3d03aSBadari Pulavarty 	 */
592a2646d1eSHugh Dickins 	if (!topdir || limit <= SHMEM_NR_DIRECT)
5931da177e4SLinus Torvalds 		goto done2;
5941da177e4SLinus Torvalds 
5951ae70006SHugh Dickins 	/*
5961ae70006SHugh Dickins 	 * The truncation case has already dropped info->lock, and we're safe
5971ae70006SHugh Dickins 	 * because i_size and next_index have already been lowered, preventing
5981ae70006SHugh Dickins 	 * access beyond.  But in the punch_hole case, we still need to take
5991ae70006SHugh Dickins 	 * the lock when updating the swap directory, because there might be
6001ae70006SHugh Dickins 	 * racing accesses by shmem_getpage(SGP_CACHE), shmem_unuse_inode or
6011ae70006SHugh Dickins 	 * shmem_writepage.  However, whenever we find we can remove a whole
6021ae70006SHugh Dickins 	 * directory page (not at the misaligned start or end of the range),
6031ae70006SHugh Dickins 	 * we first NULLify its pointer in the level above, and then have no
6041ae70006SHugh Dickins 	 * need to take the lock when updating its contents: needs_lock and
6051ae70006SHugh Dickins 	 * punch_lock (either pointing to info->lock or NULL) manage this.
6061ae70006SHugh Dickins 	 */
6071ae70006SHugh Dickins 
608a2646d1eSHugh Dickins 	upper_limit -= SHMEM_NR_DIRECT;
6091da177e4SLinus Torvalds 	limit -= SHMEM_NR_DIRECT;
6101da177e4SLinus Torvalds 	idx = (idx > SHMEM_NR_DIRECT)? (idx - SHMEM_NR_DIRECT): 0;
6111da177e4SLinus Torvalds 	offset = idx % ENTRIES_PER_PAGE;
6121da177e4SLinus Torvalds 	idx -= offset;
6131da177e4SLinus Torvalds 
6141da177e4SLinus Torvalds 	dir = shmem_dir_map(topdir);
6151da177e4SLinus Torvalds 	stage = ENTRIES_PER_PAGEPAGE/2;
6161da177e4SLinus Torvalds 	if (idx < ENTRIES_PER_PAGEPAGE/2) {
6171da177e4SLinus Torvalds 		middir = topdir;
6181da177e4SLinus Torvalds 		diroff = idx/ENTRIES_PER_PAGE;
6191da177e4SLinus Torvalds 	} else {
6201da177e4SLinus Torvalds 		dir += ENTRIES_PER_PAGE/2;
6211da177e4SLinus Torvalds 		dir += (idx - ENTRIES_PER_PAGEPAGE/2)/ENTRIES_PER_PAGEPAGE;
6221da177e4SLinus Torvalds 		while (stage <= idx)
6231da177e4SLinus Torvalds 			stage += ENTRIES_PER_PAGEPAGE;
6241da177e4SLinus Torvalds 		middir = *dir;
6251da177e4SLinus Torvalds 		if (*dir) {
6261da177e4SLinus Torvalds 			diroff = ((idx - ENTRIES_PER_PAGEPAGE/2) %
6271da177e4SLinus Torvalds 				ENTRIES_PER_PAGEPAGE) / ENTRIES_PER_PAGE;
628a2646d1eSHugh Dickins 			if (!diroff && !offset && upper_limit >= stage) {
6291ae70006SHugh Dickins 				if (needs_lock) {
6301ae70006SHugh Dickins 					spin_lock(needs_lock);
6311ae70006SHugh Dickins 					*dir = NULL;
6321ae70006SHugh Dickins 					spin_unlock(needs_lock);
6331ae70006SHugh Dickins 					needs_lock = NULL;
6341ae70006SHugh Dickins 				} else
6351da177e4SLinus Torvalds 					*dir = NULL;
6361da177e4SLinus Torvalds 				nr_pages_to_free++;
6371da177e4SLinus Torvalds 				list_add(&middir->lru, &pages_to_free);
6381da177e4SLinus Torvalds 			}
6391da177e4SLinus Torvalds 			shmem_dir_unmap(dir);
6401da177e4SLinus Torvalds 			dir = shmem_dir_map(middir);
6411da177e4SLinus Torvalds 		} else {
6421da177e4SLinus Torvalds 			diroff = 0;
6431da177e4SLinus Torvalds 			offset = 0;
6441da177e4SLinus Torvalds 			idx = stage;
6451da177e4SLinus Torvalds 		}
6461da177e4SLinus Torvalds 	}
6471da177e4SLinus Torvalds 
6481da177e4SLinus Torvalds 	for (; idx < limit; idx += ENTRIES_PER_PAGE, diroff++) {
6491da177e4SLinus Torvalds 		if (unlikely(idx == stage)) {
6501da177e4SLinus Torvalds 			shmem_dir_unmap(dir);
6511da177e4SLinus Torvalds 			dir = shmem_dir_map(topdir) +
6521da177e4SLinus Torvalds 			    ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
6531da177e4SLinus Torvalds 			while (!*dir) {
6541da177e4SLinus Torvalds 				dir++;
6551da177e4SLinus Torvalds 				idx += ENTRIES_PER_PAGEPAGE;
6561da177e4SLinus Torvalds 				if (idx >= limit)
6571da177e4SLinus Torvalds 					goto done1;
6581da177e4SLinus Torvalds 			}
6591da177e4SLinus Torvalds 			stage = idx + ENTRIES_PER_PAGEPAGE;
6601da177e4SLinus Torvalds 			middir = *dir;
6611ae70006SHugh Dickins 			if (punch_hole)
6621ae70006SHugh Dickins 				needs_lock = &info->lock;
663a2646d1eSHugh Dickins 			if (upper_limit >= stage) {
6641ae70006SHugh Dickins 				if (needs_lock) {
6651ae70006SHugh Dickins 					spin_lock(needs_lock);
6661ae70006SHugh Dickins 					*dir = NULL;
6671ae70006SHugh Dickins 					spin_unlock(needs_lock);
6681ae70006SHugh Dickins 					needs_lock = NULL;
6691ae70006SHugh Dickins 				} else
6701da177e4SLinus Torvalds 					*dir = NULL;
6711da177e4SLinus Torvalds 				nr_pages_to_free++;
6721da177e4SLinus Torvalds 				list_add(&middir->lru, &pages_to_free);
673a2646d1eSHugh Dickins 			}
6741da177e4SLinus Torvalds 			shmem_dir_unmap(dir);
6751da177e4SLinus Torvalds 			cond_resched();
6761da177e4SLinus Torvalds 			dir = shmem_dir_map(middir);
6771da177e4SLinus Torvalds 			diroff = 0;
6781da177e4SLinus Torvalds 		}
6791ae70006SHugh Dickins 		punch_lock = needs_lock;
6801da177e4SLinus Torvalds 		subdir = dir[diroff];
6811ae70006SHugh Dickins 		if (subdir && !offset && upper_limit-idx >= ENTRIES_PER_PAGE) {
6821ae70006SHugh Dickins 			if (needs_lock) {
6831ae70006SHugh Dickins 				spin_lock(needs_lock);
6841ae70006SHugh Dickins 				dir[diroff] = NULL;
6851ae70006SHugh Dickins 				spin_unlock(needs_lock);
6861ae70006SHugh Dickins 				punch_lock = NULL;
6871ae70006SHugh Dickins 			} else
6881da177e4SLinus Torvalds 				dir[diroff] = NULL;
6891da177e4SLinus Torvalds 			nr_pages_to_free++;
6901da177e4SLinus Torvalds 			list_add(&subdir->lru, &pages_to_free);
6911da177e4SLinus Torvalds 		}
6921ae70006SHugh Dickins 		if (subdir && page_private(subdir) /* has swap entries */) {
6931ae70006SHugh Dickins 			size = limit - idx;
6941ae70006SHugh Dickins 			if (size > ENTRIES_PER_PAGE)
6951ae70006SHugh Dickins 				size = ENTRIES_PER_PAGE;
6961ae70006SHugh Dickins 			freed = shmem_map_and_free_swp(subdir,
6971ae70006SHugh Dickins 					offset, size, &dir, punch_lock);
6981ae70006SHugh Dickins 			if (!dir)
6991ae70006SHugh Dickins 				dir = shmem_dir_map(middir);
7001ae70006SHugh Dickins 			nr_swaps_freed += freed;
7011ae70006SHugh Dickins 			if (offset || punch_lock) {
7021ae70006SHugh Dickins 				spin_lock(&info->lock);
7031ae70006SHugh Dickins 				set_page_private(subdir,
7041ae70006SHugh Dickins 					page_private(subdir) - freed);
7051ae70006SHugh Dickins 				spin_unlock(&info->lock);
7061ae70006SHugh Dickins 			} else
7071ae70006SHugh Dickins 				BUG_ON(page_private(subdir) != freed);
7081ae70006SHugh Dickins 		}
7091ae70006SHugh Dickins 		offset = 0;
7101da177e4SLinus Torvalds 	}
7111da177e4SLinus Torvalds done1:
7121da177e4SLinus Torvalds 	shmem_dir_unmap(dir);
7131da177e4SLinus Torvalds done2:
7141da177e4SLinus Torvalds 	if (inode->i_mapping->nrpages && (info->flags & SHMEM_PAGEIN)) {
7151da177e4SLinus Torvalds 		/*
7161da177e4SLinus Torvalds 		 * Call truncate_inode_pages again: racing shmem_unuse_inode
7171da177e4SLinus Torvalds 		 * may have swizzled a page in from swap since vmtruncate or
7181da177e4SLinus Torvalds 		 * generic_delete_inode did it, before we lowered next_index.
7191da177e4SLinus Torvalds 		 * Also, though shmem_getpage checks i_size before adding to
7201da177e4SLinus Torvalds 		 * cache, no recheck after: so fix the narrow window there too.
72116a10019SHugh Dickins 		 *
72216a10019SHugh Dickins 		 * Recalling truncate_inode_pages_range and unmap_mapping_range
72316a10019SHugh Dickins 		 * every time for punch_hole (which never got a chance to clear
72416a10019SHugh Dickins 		 * SHMEM_PAGEIN at the start of vmtruncate_range) is expensive,
72516a10019SHugh Dickins 		 * yet hardly ever necessary: try to optimize them out later.
7261da177e4SLinus Torvalds 		 */
727f6b3ec23SBadari Pulavarty 		truncate_inode_pages_range(inode->i_mapping, start, end);
72816a10019SHugh Dickins 		if (punch_hole)
72916a10019SHugh Dickins 			unmap_mapping_range(inode->i_mapping, start,
73016a10019SHugh Dickins 							end - start, 1);
7311da177e4SLinus Torvalds 	}
7321da177e4SLinus Torvalds 
7331da177e4SLinus Torvalds 	spin_lock(&info->lock);
7341da177e4SLinus Torvalds 	info->flags &= ~SHMEM_TRUNCATE;
7351da177e4SLinus Torvalds 	info->swapped -= nr_swaps_freed;
7361da177e4SLinus Torvalds 	if (nr_pages_to_free)
7371da177e4SLinus Torvalds 		shmem_free_blocks(inode, nr_pages_to_free);
7381da177e4SLinus Torvalds 	shmem_recalc_inode(inode);
7391da177e4SLinus Torvalds 	spin_unlock(&info->lock);
7401da177e4SLinus Torvalds 
7411da177e4SLinus Torvalds 	/*
7421da177e4SLinus Torvalds 	 * Empty swap vector directory pages to be freed?
7431da177e4SLinus Torvalds 	 */
7441da177e4SLinus Torvalds 	if (!list_empty(&pages_to_free)) {
7451da177e4SLinus Torvalds 		pages_to_free.prev->next = NULL;
7461da177e4SLinus Torvalds 		shmem_free_pages(pages_to_free.next);
7471da177e4SLinus Torvalds 	}
7481da177e4SLinus Torvalds }
7491da177e4SLinus Torvalds 
750f6b3ec23SBadari Pulavarty static void shmem_truncate(struct inode *inode)
751f6b3ec23SBadari Pulavarty {
752f6b3ec23SBadari Pulavarty 	shmem_truncate_range(inode, inode->i_size, (loff_t)-1);
753f6b3ec23SBadari Pulavarty }
754f6b3ec23SBadari Pulavarty 
7551da177e4SLinus Torvalds static int shmem_notify_change(struct dentry *dentry, struct iattr *attr)
7561da177e4SLinus Torvalds {
7571da177e4SLinus Torvalds 	struct inode *inode = dentry->d_inode;
7581da177e4SLinus Torvalds 	struct page *page = NULL;
7591da177e4SLinus Torvalds 	int error;
7601da177e4SLinus Torvalds 
76139f0247dSAndreas Gruenbacher 	if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
7621da177e4SLinus Torvalds 		if (attr->ia_size < inode->i_size) {
7631da177e4SLinus Torvalds 			/*
7641da177e4SLinus Torvalds 			 * If truncating down to a partial page, then
7651da177e4SLinus Torvalds 			 * if that page is already allocated, hold it
7661da177e4SLinus Torvalds 			 * in memory until the truncation is over, so
7671da177e4SLinus Torvalds 			 * truncate_partial_page cannnot miss it were
7681da177e4SLinus Torvalds 			 * it assigned to swap.
7691da177e4SLinus Torvalds 			 */
7701da177e4SLinus Torvalds 			if (attr->ia_size & (PAGE_CACHE_SIZE-1)) {
7711da177e4SLinus Torvalds 				(void) shmem_getpage(inode,
7721da177e4SLinus Torvalds 					attr->ia_size>>PAGE_CACHE_SHIFT,
7731da177e4SLinus Torvalds 						&page, SGP_READ, NULL);
774d3602444SHugh Dickins 				if (page)
775d3602444SHugh Dickins 					unlock_page(page);
7761da177e4SLinus Torvalds 			}
7771da177e4SLinus Torvalds 			/*
7781da177e4SLinus Torvalds 			 * Reset SHMEM_PAGEIN flag so that shmem_truncate can
7791da177e4SLinus Torvalds 			 * detect if any pages might have been added to cache
7801da177e4SLinus Torvalds 			 * after truncate_inode_pages.  But we needn't bother
7811da177e4SLinus Torvalds 			 * if it's being fully truncated to zero-length: the
7821da177e4SLinus Torvalds 			 * nrpages check is efficient enough in that case.
7831da177e4SLinus Torvalds 			 */
7841da177e4SLinus Torvalds 			if (attr->ia_size) {
7851da177e4SLinus Torvalds 				struct shmem_inode_info *info = SHMEM_I(inode);
7861da177e4SLinus Torvalds 				spin_lock(&info->lock);
7871da177e4SLinus Torvalds 				info->flags &= ~SHMEM_PAGEIN;
7881da177e4SLinus Torvalds 				spin_unlock(&info->lock);
7891da177e4SLinus Torvalds 			}
7901da177e4SLinus Torvalds 		}
7911da177e4SLinus Torvalds 	}
7921da177e4SLinus Torvalds 
7931da177e4SLinus Torvalds 	error = inode_change_ok(inode, attr);
7941da177e4SLinus Torvalds 	if (!error)
7951da177e4SLinus Torvalds 		error = inode_setattr(inode, attr);
79639f0247dSAndreas Gruenbacher #ifdef CONFIG_TMPFS_POSIX_ACL
79739f0247dSAndreas Gruenbacher 	if (!error && (attr->ia_valid & ATTR_MODE))
79839f0247dSAndreas Gruenbacher 		error = generic_acl_chmod(inode, &shmem_acl_ops);
79939f0247dSAndreas Gruenbacher #endif
8001da177e4SLinus Torvalds 	if (page)
8011da177e4SLinus Torvalds 		page_cache_release(page);
8021da177e4SLinus Torvalds 	return error;
8031da177e4SLinus Torvalds }
8041da177e4SLinus Torvalds 
8051da177e4SLinus Torvalds static void shmem_delete_inode(struct inode *inode)
8061da177e4SLinus Torvalds {
8071da177e4SLinus Torvalds 	struct shmem_inode_info *info = SHMEM_I(inode);
8081da177e4SLinus Torvalds 
8091da177e4SLinus Torvalds 	if (inode->i_op->truncate == shmem_truncate) {
810fef26658SMark Fasheh 		truncate_inode_pages(inode->i_mapping, 0);
8111da177e4SLinus Torvalds 		shmem_unacct_size(info->flags, inode->i_size);
8121da177e4SLinus Torvalds 		inode->i_size = 0;
8131da177e4SLinus Torvalds 		shmem_truncate(inode);
8141da177e4SLinus Torvalds 		if (!list_empty(&info->swaplist)) {
815cb5f7b9aSHugh Dickins 			mutex_lock(&shmem_swaplist_mutex);
8161da177e4SLinus Torvalds 			list_del_init(&info->swaplist);
817cb5f7b9aSHugh Dickins 			mutex_unlock(&shmem_swaplist_mutex);
8181da177e4SLinus Torvalds 		}
8191da177e4SLinus Torvalds 	}
8201da177e4SLinus Torvalds 	BUG_ON(inode->i_blocks);
8215b04c689SPavel Emelyanov 	shmem_free_inode(inode->i_sb);
8221da177e4SLinus Torvalds 	clear_inode(inode);
8231da177e4SLinus Torvalds }
8241da177e4SLinus Torvalds 
8251da177e4SLinus Torvalds static inline int shmem_find_swp(swp_entry_t entry, swp_entry_t *dir, swp_entry_t *edir)
8261da177e4SLinus Torvalds {
8271da177e4SLinus Torvalds 	swp_entry_t *ptr;
8281da177e4SLinus Torvalds 
8291da177e4SLinus Torvalds 	for (ptr = dir; ptr < edir; ptr++) {
8301da177e4SLinus Torvalds 		if (ptr->val == entry.val)
8311da177e4SLinus Torvalds 			return ptr - dir;
8321da177e4SLinus Torvalds 	}
8331da177e4SLinus Torvalds 	return -1;
8341da177e4SLinus Torvalds }
8351da177e4SLinus Torvalds 
8361da177e4SLinus Torvalds static int shmem_unuse_inode(struct shmem_inode_info *info, swp_entry_t entry, struct page *page)
8371da177e4SLinus Torvalds {
8381da177e4SLinus Torvalds 	struct inode *inode;
8391da177e4SLinus Torvalds 	unsigned long idx;
8401da177e4SLinus Torvalds 	unsigned long size;
8411da177e4SLinus Torvalds 	unsigned long limit;
8421da177e4SLinus Torvalds 	unsigned long stage;
8431da177e4SLinus Torvalds 	struct page **dir;
8441da177e4SLinus Torvalds 	struct page *subdir;
8451da177e4SLinus Torvalds 	swp_entry_t *ptr;
8461da177e4SLinus Torvalds 	int offset;
847d9fe526aSHugh Dickins 	int error;
8481da177e4SLinus Torvalds 
8491da177e4SLinus Torvalds 	idx = 0;
8501da177e4SLinus Torvalds 	ptr = info->i_direct;
8511da177e4SLinus Torvalds 	spin_lock(&info->lock);
8521b1b32f2SHugh Dickins 	if (!info->swapped) {
8531b1b32f2SHugh Dickins 		list_del_init(&info->swaplist);
8541b1b32f2SHugh Dickins 		goto lost2;
8551b1b32f2SHugh Dickins 	}
8561da177e4SLinus Torvalds 	limit = info->next_index;
8571da177e4SLinus Torvalds 	size = limit;
8581da177e4SLinus Torvalds 	if (size > SHMEM_NR_DIRECT)
8591da177e4SLinus Torvalds 		size = SHMEM_NR_DIRECT;
8601da177e4SLinus Torvalds 	offset = shmem_find_swp(entry, ptr, ptr+size);
8612e0e26c7SHugh Dickins 	if (offset >= 0)
8621da177e4SLinus Torvalds 		goto found;
8631da177e4SLinus Torvalds 	if (!info->i_indirect)
8641da177e4SLinus Torvalds 		goto lost2;
8651da177e4SLinus Torvalds 
8661da177e4SLinus Torvalds 	dir = shmem_dir_map(info->i_indirect);
8671da177e4SLinus Torvalds 	stage = SHMEM_NR_DIRECT + ENTRIES_PER_PAGEPAGE/2;
8681da177e4SLinus Torvalds 
8691da177e4SLinus Torvalds 	for (idx = SHMEM_NR_DIRECT; idx < limit; idx += ENTRIES_PER_PAGE, dir++) {
8701da177e4SLinus Torvalds 		if (unlikely(idx == stage)) {
8711da177e4SLinus Torvalds 			shmem_dir_unmap(dir-1);
872cb5f7b9aSHugh Dickins 			if (cond_resched_lock(&info->lock)) {
873cb5f7b9aSHugh Dickins 				/* check it has not been truncated */
874cb5f7b9aSHugh Dickins 				if (limit > info->next_index) {
875cb5f7b9aSHugh Dickins 					limit = info->next_index;
876cb5f7b9aSHugh Dickins 					if (idx >= limit)
877cb5f7b9aSHugh Dickins 						goto lost2;
878cb5f7b9aSHugh Dickins 				}
879cb5f7b9aSHugh Dickins 			}
8801da177e4SLinus Torvalds 			dir = shmem_dir_map(info->i_indirect) +
8811da177e4SLinus Torvalds 			    ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
8821da177e4SLinus Torvalds 			while (!*dir) {
8831da177e4SLinus Torvalds 				dir++;
8841da177e4SLinus Torvalds 				idx += ENTRIES_PER_PAGEPAGE;
8851da177e4SLinus Torvalds 				if (idx >= limit)
8861da177e4SLinus Torvalds 					goto lost1;
8871da177e4SLinus Torvalds 			}
8881da177e4SLinus Torvalds 			stage = idx + ENTRIES_PER_PAGEPAGE;
8891da177e4SLinus Torvalds 			subdir = *dir;
8901da177e4SLinus Torvalds 			shmem_dir_unmap(dir);
8911da177e4SLinus Torvalds 			dir = shmem_dir_map(subdir);
8921da177e4SLinus Torvalds 		}
8931da177e4SLinus Torvalds 		subdir = *dir;
8944c21e2f2SHugh Dickins 		if (subdir && page_private(subdir)) {
8951da177e4SLinus Torvalds 			ptr = shmem_swp_map(subdir);
8961da177e4SLinus Torvalds 			size = limit - idx;
8971da177e4SLinus Torvalds 			if (size > ENTRIES_PER_PAGE)
8981da177e4SLinus Torvalds 				size = ENTRIES_PER_PAGE;
8991da177e4SLinus Torvalds 			offset = shmem_find_swp(entry, ptr, ptr+size);
9002e0e26c7SHugh Dickins 			shmem_swp_unmap(ptr);
9011da177e4SLinus Torvalds 			if (offset >= 0) {
9021da177e4SLinus Torvalds 				shmem_dir_unmap(dir);
9031da177e4SLinus Torvalds 				goto found;
9041da177e4SLinus Torvalds 			}
9051da177e4SLinus Torvalds 		}
9061da177e4SLinus Torvalds 	}
9071da177e4SLinus Torvalds lost1:
9081da177e4SLinus Torvalds 	shmem_dir_unmap(dir-1);
9091da177e4SLinus Torvalds lost2:
9101da177e4SLinus Torvalds 	spin_unlock(&info->lock);
9111da177e4SLinus Torvalds 	return 0;
9121da177e4SLinus Torvalds found:
9131da177e4SLinus Torvalds 	idx += offset;
9142e0e26c7SHugh Dickins 	inode = igrab(&info->vfs_inode);
9152e0e26c7SHugh Dickins 	spin_unlock(&info->lock);
9162e0e26c7SHugh Dickins 
9171b1b32f2SHugh Dickins 	/*
9181b1b32f2SHugh Dickins 	 * Move _head_ to start search for next from here.
9191b1b32f2SHugh Dickins 	 * But be careful: shmem_delete_inode checks list_empty without taking
9201b1b32f2SHugh Dickins 	 * mutex, and there's an instant in list_move_tail when info->swaplist
9211b1b32f2SHugh Dickins 	 * would appear empty, if it were the only one on shmem_swaplist.  We
9221b1b32f2SHugh Dickins 	 * could avoid doing it if inode NULL; or use this minor optimization.
9231b1b32f2SHugh Dickins 	 */
9241b1b32f2SHugh Dickins 	if (shmem_swaplist.next != &info->swaplist)
9252e0e26c7SHugh Dickins 		list_move_tail(&shmem_swaplist, &info->swaplist);
9262e0e26c7SHugh Dickins 	mutex_unlock(&shmem_swaplist_mutex);
9272e0e26c7SHugh Dickins 
9282e0e26c7SHugh Dickins 	error = 1;
9292e0e26c7SHugh Dickins 	if (!inode)
9302e0e26c7SHugh Dickins 		goto out;
93169029cd5SKAMEZAWA Hiroyuki 	/* Precharge page using GFP_KERNEL while we can wait */
93282369553SHugh Dickins 	error = mem_cgroup_cache_charge(page, current->mm, GFP_KERNEL);
933b409f9fcSHugh Dickins 	if (error)
934b409f9fcSHugh Dickins 		goto out;
93582369553SHugh Dickins 	error = radix_tree_preload(GFP_KERNEL);
93669029cd5SKAMEZAWA Hiroyuki 	if (error) {
93769029cd5SKAMEZAWA Hiroyuki 		mem_cgroup_uncharge_cache_page(page);
93869029cd5SKAMEZAWA Hiroyuki 		goto out;
93969029cd5SKAMEZAWA Hiroyuki 	}
940b409f9fcSHugh Dickins 	error = 1;
9412e0e26c7SHugh Dickins 
9422e0e26c7SHugh Dickins 	spin_lock(&info->lock);
9432e0e26c7SHugh Dickins 	ptr = shmem_swp_entry(info, idx, NULL);
94469029cd5SKAMEZAWA Hiroyuki 	if (ptr && ptr->val == entry.val) {
945e286781dSNick Piggin 		error = add_to_page_cache_locked(page, inode->i_mapping,
946b409f9fcSHugh Dickins 						idx, GFP_NOWAIT);
94769029cd5SKAMEZAWA Hiroyuki 		/* does mem_cgroup_uncharge_cache_page on error */
94869029cd5SKAMEZAWA Hiroyuki 	} else	/* we must compensate for our precharge above */
94969029cd5SKAMEZAWA Hiroyuki 		mem_cgroup_uncharge_cache_page(page);
95069029cd5SKAMEZAWA Hiroyuki 
951d9fe526aSHugh Dickins 	if (error == -EEXIST) {
952d9fe526aSHugh Dickins 		struct page *filepage = find_get_page(inode->i_mapping, idx);
9532e0e26c7SHugh Dickins 		error = 1;
954d9fe526aSHugh Dickins 		if (filepage) {
955d9fe526aSHugh Dickins 			/*
956d9fe526aSHugh Dickins 			 * There might be a more uptodate page coming down
957d9fe526aSHugh Dickins 			 * from a stacked writepage: forget our swappage if so.
958d9fe526aSHugh Dickins 			 */
959d9fe526aSHugh Dickins 			if (PageUptodate(filepage))
960d9fe526aSHugh Dickins 				error = 0;
961d9fe526aSHugh Dickins 			page_cache_release(filepage);
962d9fe526aSHugh Dickins 		}
963d9fe526aSHugh Dickins 	}
964d9fe526aSHugh Dickins 	if (!error) {
96573b1262fSHugh Dickins 		delete_from_swap_cache(page);
96673b1262fSHugh Dickins 		set_page_dirty(page);
9671da177e4SLinus Torvalds 		info->flags |= SHMEM_PAGEIN;
9682e0e26c7SHugh Dickins 		shmem_swp_set(info, ptr, 0);
9692e0e26c7SHugh Dickins 		swap_free(entry);
9702e0e26c7SHugh Dickins 		error = 1;	/* not an error, but entry was found */
9711da177e4SLinus Torvalds 	}
9722e0e26c7SHugh Dickins 	if (ptr)
9731da177e4SLinus Torvalds 		shmem_swp_unmap(ptr);
9741da177e4SLinus Torvalds 	spin_unlock(&info->lock);
975b409f9fcSHugh Dickins 	radix_tree_preload_end();
9762e0e26c7SHugh Dickins out:
9772e0e26c7SHugh Dickins 	unlock_page(page);
9782e0e26c7SHugh Dickins 	page_cache_release(page);
9792e0e26c7SHugh Dickins 	iput(inode);		/* allows for NULL */
9802e0e26c7SHugh Dickins 	return error;
9811da177e4SLinus Torvalds }
9821da177e4SLinus Torvalds 
9831da177e4SLinus Torvalds /*
9841da177e4SLinus Torvalds  * shmem_unuse() search for an eventually swapped out shmem page.
9851da177e4SLinus Torvalds  */
9861da177e4SLinus Torvalds int shmem_unuse(swp_entry_t entry, struct page *page)
9871da177e4SLinus Torvalds {
9881da177e4SLinus Torvalds 	struct list_head *p, *next;
9891da177e4SLinus Torvalds 	struct shmem_inode_info *info;
9901da177e4SLinus Torvalds 	int found = 0;
9911da177e4SLinus Torvalds 
992cb5f7b9aSHugh Dickins 	mutex_lock(&shmem_swaplist_mutex);
9931da177e4SLinus Torvalds 	list_for_each_safe(p, next, &shmem_swaplist) {
9941da177e4SLinus Torvalds 		info = list_entry(p, struct shmem_inode_info, swaplist);
9952e0e26c7SHugh Dickins 		found = shmem_unuse_inode(info, entry, page);
996cb5f7b9aSHugh Dickins 		cond_resched();
9972e0e26c7SHugh Dickins 		if (found)
9982e0e26c7SHugh Dickins 			goto out;
9991da177e4SLinus Torvalds 	}
1000cb5f7b9aSHugh Dickins 	mutex_unlock(&shmem_swaplist_mutex);
10012e0e26c7SHugh Dickins out:	return found;	/* 0 or 1 or -ENOMEM */
10021da177e4SLinus Torvalds }
10031da177e4SLinus Torvalds 
10041da177e4SLinus Torvalds /*
10051da177e4SLinus Torvalds  * Move the page from the page cache to the swap cache.
10061da177e4SLinus Torvalds  */
10071da177e4SLinus Torvalds static int shmem_writepage(struct page *page, struct writeback_control *wbc)
10081da177e4SLinus Torvalds {
10091da177e4SLinus Torvalds 	struct shmem_inode_info *info;
10101da177e4SLinus Torvalds 	swp_entry_t *entry, swap;
10111da177e4SLinus Torvalds 	struct address_space *mapping;
10121da177e4SLinus Torvalds 	unsigned long index;
10131da177e4SLinus Torvalds 	struct inode *inode;
10141da177e4SLinus Torvalds 
10151da177e4SLinus Torvalds 	BUG_ON(!PageLocked(page));
10161da177e4SLinus Torvalds 	mapping = page->mapping;
10171da177e4SLinus Torvalds 	index = page->index;
10181da177e4SLinus Torvalds 	inode = mapping->host;
10191da177e4SLinus Torvalds 	info = SHMEM_I(inode);
10201da177e4SLinus Torvalds 	if (info->flags & VM_LOCKED)
10211da177e4SLinus Torvalds 		goto redirty;
1022d9fe526aSHugh Dickins 	if (!total_swap_pages)
10231da177e4SLinus Torvalds 		goto redirty;
10241da177e4SLinus Torvalds 
1025d9fe526aSHugh Dickins 	/*
1026d9fe526aSHugh Dickins 	 * shmem_backing_dev_info's capabilities prevent regular writeback or
1027d9fe526aSHugh Dickins 	 * sync from ever calling shmem_writepage; but a stacking filesystem
1028d9fe526aSHugh Dickins 	 * may use the ->writepage of its underlying filesystem, in which case
1029d9fe526aSHugh Dickins 	 * tmpfs should write out to swap only in response to memory pressure,
1030d9fe526aSHugh Dickins 	 * and not for pdflush or sync.  However, in those cases, we do still
1031d9fe526aSHugh Dickins 	 * want to check if there's a redundant swappage to be discarded.
1032d9fe526aSHugh Dickins 	 */
1033d9fe526aSHugh Dickins 	if (wbc->for_reclaim)
1034d9fe526aSHugh Dickins 		swap = get_swap_page();
1035d9fe526aSHugh Dickins 	else
1036d9fe526aSHugh Dickins 		swap.val = 0;
1037d9fe526aSHugh Dickins 
10381da177e4SLinus Torvalds 	spin_lock(&info->lock);
10391da177e4SLinus Torvalds 	if (index >= info->next_index) {
10401da177e4SLinus Torvalds 		BUG_ON(!(info->flags & SHMEM_TRUNCATE));
10411da177e4SLinus Torvalds 		goto unlock;
10421da177e4SLinus Torvalds 	}
10431da177e4SLinus Torvalds 	entry = shmem_swp_entry(info, index, NULL);
1044d9fe526aSHugh Dickins 	if (entry->val) {
1045d9fe526aSHugh Dickins 		/*
1046d9fe526aSHugh Dickins 		 * The more uptodate page coming down from a stacked
1047d9fe526aSHugh Dickins 		 * writepage should replace our old swappage.
1048d9fe526aSHugh Dickins 		 */
1049d9fe526aSHugh Dickins 		free_swap_and_cache(*entry);
1050d9fe526aSHugh Dickins 		shmem_swp_set(info, entry, 0);
1051d9fe526aSHugh Dickins 	}
1052d9fe526aSHugh Dickins 	shmem_recalc_inode(inode);
10531da177e4SLinus Torvalds 
1054d9fe526aSHugh Dickins 	if (swap.val && add_to_swap_cache(page, swap, GFP_ATOMIC) == 0) {
105573b1262fSHugh Dickins 		remove_from_page_cache(page);
10561da177e4SLinus Torvalds 		shmem_swp_set(info, entry, swap.val);
10571da177e4SLinus Torvalds 		shmem_swp_unmap(entry);
10581b1b32f2SHugh Dickins 		if (list_empty(&info->swaplist))
10591b1b32f2SHugh Dickins 			inode = igrab(inode);
10601b1b32f2SHugh Dickins 		else
10611b1b32f2SHugh Dickins 			inode = NULL;
10621da177e4SLinus Torvalds 		spin_unlock(&info->lock);
106373b1262fSHugh Dickins 		swap_duplicate(swap);
1064d9fe526aSHugh Dickins 		BUG_ON(page_mapped(page));
106573b1262fSHugh Dickins 		page_cache_release(page);	/* pagecache ref */
106673b1262fSHugh Dickins 		set_page_dirty(page);
10671da177e4SLinus Torvalds 		unlock_page(page);
10681b1b32f2SHugh Dickins 		if (inode) {
10691b1b32f2SHugh Dickins 			mutex_lock(&shmem_swaplist_mutex);
10701b1b32f2SHugh Dickins 			/* move instead of add in case we're racing */
10711b1b32f2SHugh Dickins 			list_move_tail(&info->swaplist, &shmem_swaplist);
10721b1b32f2SHugh Dickins 			mutex_unlock(&shmem_swaplist_mutex);
10731b1b32f2SHugh Dickins 			iput(inode);
10741b1b32f2SHugh Dickins 		}
10751da177e4SLinus Torvalds 		return 0;
10761da177e4SLinus Torvalds 	}
10771da177e4SLinus Torvalds 
10781da177e4SLinus Torvalds 	shmem_swp_unmap(entry);
10791da177e4SLinus Torvalds unlock:
10801da177e4SLinus Torvalds 	spin_unlock(&info->lock);
10811da177e4SLinus Torvalds 	swap_free(swap);
10821da177e4SLinus Torvalds redirty:
10831da177e4SLinus Torvalds 	set_page_dirty(page);
1084d9fe526aSHugh Dickins 	if (wbc->for_reclaim)
1085d9fe526aSHugh Dickins 		return AOP_WRITEPAGE_ACTIVATE;	/* Return with page locked */
1086d9fe526aSHugh Dickins 	unlock_page(page);
1087d9fe526aSHugh Dickins 	return 0;
10881da177e4SLinus Torvalds }
10891da177e4SLinus Torvalds 
10901da177e4SLinus Torvalds #ifdef CONFIG_NUMA
1091680d794bSakpm@linux-foundation.org #ifdef CONFIG_TMPFS
109271fe804bSLee Schermerhorn static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
1093680d794bSakpm@linux-foundation.org {
1094680d794bSakpm@linux-foundation.org 	char buffer[64];
1095680d794bSakpm@linux-foundation.org 
109671fe804bSLee Schermerhorn 	if (!mpol || mpol->mode == MPOL_DEFAULT)
1097095f1fc4SLee Schermerhorn 		return;		/* show nothing */
1098095f1fc4SLee Schermerhorn 
109971fe804bSLee Schermerhorn 	mpol_to_str(buffer, sizeof(buffer), mpol, 1);
1100095f1fc4SLee Schermerhorn 
1101095f1fc4SLee Schermerhorn 	seq_printf(seq, ",mpol=%s", buffer);
1102680d794bSakpm@linux-foundation.org }
110371fe804bSLee Schermerhorn 
110471fe804bSLee Schermerhorn static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
110571fe804bSLee Schermerhorn {
110671fe804bSLee Schermerhorn 	struct mempolicy *mpol = NULL;
110771fe804bSLee Schermerhorn 	if (sbinfo->mpol) {
110871fe804bSLee Schermerhorn 		spin_lock(&sbinfo->stat_lock);	/* prevent replace/use races */
110971fe804bSLee Schermerhorn 		mpol = sbinfo->mpol;
111071fe804bSLee Schermerhorn 		mpol_get(mpol);
111171fe804bSLee Schermerhorn 		spin_unlock(&sbinfo->stat_lock);
111271fe804bSLee Schermerhorn 	}
111371fe804bSLee Schermerhorn 	return mpol;
111471fe804bSLee Schermerhorn }
1115680d794bSakpm@linux-foundation.org #endif /* CONFIG_TMPFS */
1116680d794bSakpm@linux-foundation.org 
111702098feaSHugh Dickins static struct page *shmem_swapin(swp_entry_t entry, gfp_t gfp,
111802098feaSHugh Dickins 			struct shmem_inode_info *info, unsigned long idx)
11191da177e4SLinus Torvalds {
112052cd3b07SLee Schermerhorn 	struct mempolicy mpol, *spol;
11211da177e4SLinus Torvalds 	struct vm_area_struct pvma;
1122c4cc6d07SHugh Dickins 	struct page *page;
11231da177e4SLinus Torvalds 
112452cd3b07SLee Schermerhorn 	spol = mpol_cond_copy(&mpol,
112552cd3b07SLee Schermerhorn 				mpol_shared_policy_lookup(&info->policy, idx));
112652cd3b07SLee Schermerhorn 
11271da177e4SLinus Torvalds 	/* Create a pseudo vma that just contains the policy */
1128c4cc6d07SHugh Dickins 	pvma.vm_start = 0;
11291da177e4SLinus Torvalds 	pvma.vm_pgoff = idx;
1130c4cc6d07SHugh Dickins 	pvma.vm_ops = NULL;
113152cd3b07SLee Schermerhorn 	pvma.vm_policy = spol;
113202098feaSHugh Dickins 	page = swapin_readahead(entry, gfp, &pvma, 0);
11331da177e4SLinus Torvalds 	return page;
11341da177e4SLinus Torvalds }
11351da177e4SLinus Torvalds 
113602098feaSHugh Dickins static struct page *shmem_alloc_page(gfp_t gfp,
113702098feaSHugh Dickins 			struct shmem_inode_info *info, unsigned long idx)
11381da177e4SLinus Torvalds {
11391da177e4SLinus Torvalds 	struct vm_area_struct pvma;
11401da177e4SLinus Torvalds 
1141c4cc6d07SHugh Dickins 	/* Create a pseudo vma that just contains the policy */
1142c4cc6d07SHugh Dickins 	pvma.vm_start = 0;
11431da177e4SLinus Torvalds 	pvma.vm_pgoff = idx;
1144c4cc6d07SHugh Dickins 	pvma.vm_ops = NULL;
1145c4cc6d07SHugh Dickins 	pvma.vm_policy = mpol_shared_policy_lookup(&info->policy, idx);
114652cd3b07SLee Schermerhorn 
114752cd3b07SLee Schermerhorn 	/*
114852cd3b07SLee Schermerhorn 	 * alloc_page_vma() will drop the shared policy reference
114952cd3b07SLee Schermerhorn 	 */
115052cd3b07SLee Schermerhorn 	return alloc_page_vma(gfp, &pvma, 0);
11511da177e4SLinus Torvalds }
1152680d794bSakpm@linux-foundation.org #else /* !CONFIG_NUMA */
1153680d794bSakpm@linux-foundation.org #ifdef CONFIG_TMPFS
115471fe804bSLee Schermerhorn static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *p)
1155680d794bSakpm@linux-foundation.org {
1156680d794bSakpm@linux-foundation.org }
1157680d794bSakpm@linux-foundation.org #endif /* CONFIG_TMPFS */
1158680d794bSakpm@linux-foundation.org 
115902098feaSHugh Dickins static inline struct page *shmem_swapin(swp_entry_t entry, gfp_t gfp,
116002098feaSHugh Dickins 			struct shmem_inode_info *info, unsigned long idx)
11611da177e4SLinus Torvalds {
116202098feaSHugh Dickins 	return swapin_readahead(entry, gfp, NULL, 0);
11631da177e4SLinus Torvalds }
11641da177e4SLinus Torvalds 
116502098feaSHugh Dickins static inline struct page *shmem_alloc_page(gfp_t gfp,
116602098feaSHugh Dickins 			struct shmem_inode_info *info, unsigned long idx)
11671da177e4SLinus Torvalds {
1168e84e2e13SHugh Dickins 	return alloc_page(gfp);
11691da177e4SLinus Torvalds }
1170680d794bSakpm@linux-foundation.org #endif /* CONFIG_NUMA */
11711da177e4SLinus Torvalds 
117271fe804bSLee Schermerhorn #if !defined(CONFIG_NUMA) || !defined(CONFIG_TMPFS)
117371fe804bSLee Schermerhorn static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
117471fe804bSLee Schermerhorn {
117571fe804bSLee Schermerhorn 	return NULL;
117671fe804bSLee Schermerhorn }
117771fe804bSLee Schermerhorn #endif
117871fe804bSLee Schermerhorn 
11791da177e4SLinus Torvalds /*
11801da177e4SLinus Torvalds  * shmem_getpage - either get the page from swap or allocate a new one
11811da177e4SLinus Torvalds  *
11821da177e4SLinus Torvalds  * If we allocate a new one we do not mark it dirty. That's up to the
11831da177e4SLinus Torvalds  * vm. If we swap it in we mark it dirty since we also free the swap
11841da177e4SLinus Torvalds  * entry since a page cannot live in both the swap and page cache
11851da177e4SLinus Torvalds  */
11861da177e4SLinus Torvalds static int shmem_getpage(struct inode *inode, unsigned long idx,
11871da177e4SLinus Torvalds 			struct page **pagep, enum sgp_type sgp, int *type)
11881da177e4SLinus Torvalds {
11891da177e4SLinus Torvalds 	struct address_space *mapping = inode->i_mapping;
11901da177e4SLinus Torvalds 	struct shmem_inode_info *info = SHMEM_I(inode);
11911da177e4SLinus Torvalds 	struct shmem_sb_info *sbinfo;
11921da177e4SLinus Torvalds 	struct page *filepage = *pagep;
11931da177e4SLinus Torvalds 	struct page *swappage;
11941da177e4SLinus Torvalds 	swp_entry_t *entry;
11951da177e4SLinus Torvalds 	swp_entry_t swap;
119602098feaSHugh Dickins 	gfp_t gfp;
11971da177e4SLinus Torvalds 	int error;
11981da177e4SLinus Torvalds 
11991da177e4SLinus Torvalds 	if (idx >= SHMEM_MAX_INDEX)
12001da177e4SLinus Torvalds 		return -EFBIG;
120154cb8821SNick Piggin 
120254cb8821SNick Piggin 	if (type)
120383c54070SNick Piggin 		*type = 0;
120454cb8821SNick Piggin 
12051da177e4SLinus Torvalds 	/*
12061da177e4SLinus Torvalds 	 * Normally, filepage is NULL on entry, and either found
12071da177e4SLinus Torvalds 	 * uptodate immediately, or allocated and zeroed, or read
12081da177e4SLinus Torvalds 	 * in under swappage, which is then assigned to filepage.
12095402b976SHugh Dickins 	 * But shmem_readpage (required for splice) passes in a locked
1210ae976416SHugh Dickins 	 * filepage, which may be found not uptodate by other callers
1211ae976416SHugh Dickins 	 * too, and may need to be copied from the swappage read in.
12121da177e4SLinus Torvalds 	 */
12131da177e4SLinus Torvalds repeat:
12141da177e4SLinus Torvalds 	if (!filepage)
12151da177e4SLinus Torvalds 		filepage = find_lock_page(mapping, idx);
12161da177e4SLinus Torvalds 	if (filepage && PageUptodate(filepage))
12171da177e4SLinus Torvalds 		goto done;
12181da177e4SLinus Torvalds 	error = 0;
121902098feaSHugh Dickins 	gfp = mapping_gfp_mask(mapping);
1220b409f9fcSHugh Dickins 	if (!filepage) {
1221b409f9fcSHugh Dickins 		/*
1222b409f9fcSHugh Dickins 		 * Try to preload while we can wait, to not make a habit of
1223b409f9fcSHugh Dickins 		 * draining atomic reserves; but don't latch on to this cpu.
1224b409f9fcSHugh Dickins 		 */
1225b409f9fcSHugh Dickins 		error = radix_tree_preload(gfp & ~__GFP_HIGHMEM);
1226b409f9fcSHugh Dickins 		if (error)
1227b409f9fcSHugh Dickins 			goto failed;
1228b409f9fcSHugh Dickins 		radix_tree_preload_end();
1229b409f9fcSHugh Dickins 	}
12301da177e4SLinus Torvalds 
12311da177e4SLinus Torvalds 	spin_lock(&info->lock);
12321da177e4SLinus Torvalds 	shmem_recalc_inode(inode);
12331da177e4SLinus Torvalds 	entry = shmem_swp_alloc(info, idx, sgp);
12341da177e4SLinus Torvalds 	if (IS_ERR(entry)) {
12351da177e4SLinus Torvalds 		spin_unlock(&info->lock);
12361da177e4SLinus Torvalds 		error = PTR_ERR(entry);
12371da177e4SLinus Torvalds 		goto failed;
12381da177e4SLinus Torvalds 	}
12391da177e4SLinus Torvalds 	swap = *entry;
12401da177e4SLinus Torvalds 
12411da177e4SLinus Torvalds 	if (swap.val) {
12421da177e4SLinus Torvalds 		/* Look it up and read it in.. */
12431da177e4SLinus Torvalds 		swappage = lookup_swap_cache(swap);
12441da177e4SLinus Torvalds 		if (!swappage) {
12451da177e4SLinus Torvalds 			shmem_swp_unmap(entry);
12461da177e4SLinus Torvalds 			/* here we actually do the io */
124783c54070SNick Piggin 			if (type && !(*type & VM_FAULT_MAJOR)) {
1248f8891e5eSChristoph Lameter 				__count_vm_event(PGMAJFAULT);
124983c54070SNick Piggin 				*type |= VM_FAULT_MAJOR;
12501da177e4SLinus Torvalds 			}
1251f8891e5eSChristoph Lameter 			spin_unlock(&info->lock);
125202098feaSHugh Dickins 			swappage = shmem_swapin(swap, gfp, info, idx);
12531da177e4SLinus Torvalds 			if (!swappage) {
12541da177e4SLinus Torvalds 				spin_lock(&info->lock);
12551da177e4SLinus Torvalds 				entry = shmem_swp_alloc(info, idx, sgp);
12561da177e4SLinus Torvalds 				if (IS_ERR(entry))
12571da177e4SLinus Torvalds 					error = PTR_ERR(entry);
12581da177e4SLinus Torvalds 				else {
12591da177e4SLinus Torvalds 					if (entry->val == swap.val)
12601da177e4SLinus Torvalds 						error = -ENOMEM;
12611da177e4SLinus Torvalds 					shmem_swp_unmap(entry);
12621da177e4SLinus Torvalds 				}
12631da177e4SLinus Torvalds 				spin_unlock(&info->lock);
12641da177e4SLinus Torvalds 				if (error)
12651da177e4SLinus Torvalds 					goto failed;
12661da177e4SLinus Torvalds 				goto repeat;
12671da177e4SLinus Torvalds 			}
12681da177e4SLinus Torvalds 			wait_on_page_locked(swappage);
12691da177e4SLinus Torvalds 			page_cache_release(swappage);
12701da177e4SLinus Torvalds 			goto repeat;
12711da177e4SLinus Torvalds 		}
12721da177e4SLinus Torvalds 
12731da177e4SLinus Torvalds 		/* We have to do this with page locked to prevent races */
1274529ae9aaSNick Piggin 		if (!trylock_page(swappage)) {
12751da177e4SLinus Torvalds 			shmem_swp_unmap(entry);
12761da177e4SLinus Torvalds 			spin_unlock(&info->lock);
12771da177e4SLinus Torvalds 			wait_on_page_locked(swappage);
12781da177e4SLinus Torvalds 			page_cache_release(swappage);
12791da177e4SLinus Torvalds 			goto repeat;
12801da177e4SLinus Torvalds 		}
12811da177e4SLinus Torvalds 		if (PageWriteback(swappage)) {
12821da177e4SLinus Torvalds 			shmem_swp_unmap(entry);
12831da177e4SLinus Torvalds 			spin_unlock(&info->lock);
12841da177e4SLinus Torvalds 			wait_on_page_writeback(swappage);
12851da177e4SLinus Torvalds 			unlock_page(swappage);
12861da177e4SLinus Torvalds 			page_cache_release(swappage);
12871da177e4SLinus Torvalds 			goto repeat;
12881da177e4SLinus Torvalds 		}
12891da177e4SLinus Torvalds 		if (!PageUptodate(swappage)) {
12901da177e4SLinus Torvalds 			shmem_swp_unmap(entry);
12911da177e4SLinus Torvalds 			spin_unlock(&info->lock);
12921da177e4SLinus Torvalds 			unlock_page(swappage);
12931da177e4SLinus Torvalds 			page_cache_release(swappage);
12941da177e4SLinus Torvalds 			error = -EIO;
12951da177e4SLinus Torvalds 			goto failed;
12961da177e4SLinus Torvalds 		}
12971da177e4SLinus Torvalds 
12981da177e4SLinus Torvalds 		if (filepage) {
12991da177e4SLinus Torvalds 			shmem_swp_set(info, entry, 0);
13001da177e4SLinus Torvalds 			shmem_swp_unmap(entry);
13011da177e4SLinus Torvalds 			delete_from_swap_cache(swappage);
13021da177e4SLinus Torvalds 			spin_unlock(&info->lock);
13031da177e4SLinus Torvalds 			copy_highpage(filepage, swappage);
13041da177e4SLinus Torvalds 			unlock_page(swappage);
13051da177e4SLinus Torvalds 			page_cache_release(swappage);
13061da177e4SLinus Torvalds 			flush_dcache_page(filepage);
13071da177e4SLinus Torvalds 			SetPageUptodate(filepage);
13081da177e4SLinus Torvalds 			set_page_dirty(filepage);
13091da177e4SLinus Torvalds 			swap_free(swap);
1310e286781dSNick Piggin 		} else if (!(error = add_to_page_cache_locked(swappage, mapping,
1311e286781dSNick Piggin 					idx, GFP_NOWAIT))) {
13121da177e4SLinus Torvalds 			info->flags |= SHMEM_PAGEIN;
13131da177e4SLinus Torvalds 			shmem_swp_set(info, entry, 0);
13141da177e4SLinus Torvalds 			shmem_swp_unmap(entry);
131573b1262fSHugh Dickins 			delete_from_swap_cache(swappage);
13161da177e4SLinus Torvalds 			spin_unlock(&info->lock);
13171da177e4SLinus Torvalds 			filepage = swappage;
131873b1262fSHugh Dickins 			set_page_dirty(filepage);
13191da177e4SLinus Torvalds 			swap_free(swap);
13201da177e4SLinus Torvalds 		} else {
13211da177e4SLinus Torvalds 			shmem_swp_unmap(entry);
13221da177e4SLinus Torvalds 			spin_unlock(&info->lock);
13231da177e4SLinus Torvalds 			unlock_page(swappage);
1324c9b0ed51SKAMEZAWA Hiroyuki 			page_cache_release(swappage);
132582369553SHugh Dickins 			if (error == -ENOMEM) {
132682369553SHugh Dickins 				/* allow reclaim from this memory cgroup */
1327c9b0ed51SKAMEZAWA Hiroyuki 				error = mem_cgroup_shrink_usage(current->mm,
1328c9b0ed51SKAMEZAWA Hiroyuki 								gfp);
1329c9b0ed51SKAMEZAWA Hiroyuki 				if (error)
133082369553SHugh Dickins 					goto failed;
133182369553SHugh Dickins 			}
13321da177e4SLinus Torvalds 			goto repeat;
13331da177e4SLinus Torvalds 		}
13341da177e4SLinus Torvalds 	} else if (sgp == SGP_READ && !filepage) {
13351da177e4SLinus Torvalds 		shmem_swp_unmap(entry);
13361da177e4SLinus Torvalds 		filepage = find_get_page(mapping, idx);
13371da177e4SLinus Torvalds 		if (filepage &&
1338529ae9aaSNick Piggin 		    (!PageUptodate(filepage) || !trylock_page(filepage))) {
13391da177e4SLinus Torvalds 			spin_unlock(&info->lock);
13401da177e4SLinus Torvalds 			wait_on_page_locked(filepage);
13411da177e4SLinus Torvalds 			page_cache_release(filepage);
13421da177e4SLinus Torvalds 			filepage = NULL;
13431da177e4SLinus Torvalds 			goto repeat;
13441da177e4SLinus Torvalds 		}
13451da177e4SLinus Torvalds 		spin_unlock(&info->lock);
13461da177e4SLinus Torvalds 	} else {
13471da177e4SLinus Torvalds 		shmem_swp_unmap(entry);
13481da177e4SLinus Torvalds 		sbinfo = SHMEM_SB(inode->i_sb);
13490edd73b3SHugh Dickins 		if (sbinfo->max_blocks) {
13501da177e4SLinus Torvalds 			spin_lock(&sbinfo->stat_lock);
13511da177e4SLinus Torvalds 			if (sbinfo->free_blocks == 0 ||
13521da177e4SLinus Torvalds 			    shmem_acct_block(info->flags)) {
13531da177e4SLinus Torvalds 				spin_unlock(&sbinfo->stat_lock);
13541da177e4SLinus Torvalds 				spin_unlock(&info->lock);
13551da177e4SLinus Torvalds 				error = -ENOSPC;
13561da177e4SLinus Torvalds 				goto failed;
13571da177e4SLinus Torvalds 			}
13581da177e4SLinus Torvalds 			sbinfo->free_blocks--;
13591da177e4SLinus Torvalds 			inode->i_blocks += BLOCKS_PER_PAGE;
13601da177e4SLinus Torvalds 			spin_unlock(&sbinfo->stat_lock);
13611da177e4SLinus Torvalds 		} else if (shmem_acct_block(info->flags)) {
13621da177e4SLinus Torvalds 			spin_unlock(&info->lock);
13631da177e4SLinus Torvalds 			error = -ENOSPC;
13641da177e4SLinus Torvalds 			goto failed;
13651da177e4SLinus Torvalds 		}
13661da177e4SLinus Torvalds 
13671da177e4SLinus Torvalds 		if (!filepage) {
136869029cd5SKAMEZAWA Hiroyuki 			int ret;
136969029cd5SKAMEZAWA Hiroyuki 
13701da177e4SLinus Torvalds 			spin_unlock(&info->lock);
137102098feaSHugh Dickins 			filepage = shmem_alloc_page(gfp, info, idx);
13721da177e4SLinus Torvalds 			if (!filepage) {
13731da177e4SLinus Torvalds 				shmem_unacct_blocks(info->flags, 1);
13741da177e4SLinus Torvalds 				shmem_free_blocks(inode, 1);
13751da177e4SLinus Torvalds 				error = -ENOMEM;
13761da177e4SLinus Torvalds 				goto failed;
13771da177e4SLinus Torvalds 			}
1378b2e18538SRik van Riel 			SetPageSwapBacked(filepage);
13791da177e4SLinus Torvalds 
138082369553SHugh Dickins 			/* Precharge page while we can wait, compensate after */
138182369553SHugh Dickins 			error = mem_cgroup_cache_charge(filepage, current->mm,
138282369553SHugh Dickins 							gfp & ~__GFP_HIGHMEM);
138382369553SHugh Dickins 			if (error) {
138482369553SHugh Dickins 				page_cache_release(filepage);
138582369553SHugh Dickins 				shmem_unacct_blocks(info->flags, 1);
138682369553SHugh Dickins 				shmem_free_blocks(inode, 1);
138782369553SHugh Dickins 				filepage = NULL;
138882369553SHugh Dickins 				goto failed;
138982369553SHugh Dickins 			}
139082369553SHugh Dickins 
13911da177e4SLinus Torvalds 			spin_lock(&info->lock);
13921da177e4SLinus Torvalds 			entry = shmem_swp_alloc(info, idx, sgp);
13931da177e4SLinus Torvalds 			if (IS_ERR(entry))
13941da177e4SLinus Torvalds 				error = PTR_ERR(entry);
13951da177e4SLinus Torvalds 			else {
13961da177e4SLinus Torvalds 				swap = *entry;
13971da177e4SLinus Torvalds 				shmem_swp_unmap(entry);
13981da177e4SLinus Torvalds 			}
139969029cd5SKAMEZAWA Hiroyuki 			ret = error || swap.val;
140069029cd5SKAMEZAWA Hiroyuki 			if (ret)
140169029cd5SKAMEZAWA Hiroyuki 				mem_cgroup_uncharge_cache_page(filepage);
140269029cd5SKAMEZAWA Hiroyuki 			else
140369029cd5SKAMEZAWA Hiroyuki 				ret = add_to_page_cache_lru(filepage, mapping,
140469029cd5SKAMEZAWA Hiroyuki 						idx, GFP_NOWAIT);
140569029cd5SKAMEZAWA Hiroyuki 			/*
140669029cd5SKAMEZAWA Hiroyuki 			 * At add_to_page_cache_lru() failure, uncharge will
140769029cd5SKAMEZAWA Hiroyuki 			 * be done automatically.
140869029cd5SKAMEZAWA Hiroyuki 			 */
140969029cd5SKAMEZAWA Hiroyuki 			if (ret) {
14101da177e4SLinus Torvalds 				spin_unlock(&info->lock);
14111da177e4SLinus Torvalds 				page_cache_release(filepage);
14121da177e4SLinus Torvalds 				shmem_unacct_blocks(info->flags, 1);
14131da177e4SLinus Torvalds 				shmem_free_blocks(inode, 1);
14141da177e4SLinus Torvalds 				filepage = NULL;
14151da177e4SLinus Torvalds 				if (error)
14161da177e4SLinus Torvalds 					goto failed;
14171da177e4SLinus Torvalds 				goto repeat;
14181da177e4SLinus Torvalds 			}
14191da177e4SLinus Torvalds 			info->flags |= SHMEM_PAGEIN;
14201da177e4SLinus Torvalds 		}
14211da177e4SLinus Torvalds 
14221da177e4SLinus Torvalds 		info->alloced++;
14231da177e4SLinus Torvalds 		spin_unlock(&info->lock);
1424e84e2e13SHugh Dickins 		clear_highpage(filepage);
14251da177e4SLinus Torvalds 		flush_dcache_page(filepage);
14261da177e4SLinus Torvalds 		SetPageUptodate(filepage);
1427a0ee5ec5SHugh Dickins 		if (sgp == SGP_DIRTY)
1428a0ee5ec5SHugh Dickins 			set_page_dirty(filepage);
14291da177e4SLinus Torvalds 	}
14301da177e4SLinus Torvalds done:
14311da177e4SLinus Torvalds 	*pagep = filepage;
14321da177e4SLinus Torvalds 	return 0;
14331da177e4SLinus Torvalds 
14341da177e4SLinus Torvalds failed:
14351da177e4SLinus Torvalds 	if (*pagep != filepage) {
14361da177e4SLinus Torvalds 		unlock_page(filepage);
14371da177e4SLinus Torvalds 		page_cache_release(filepage);
14381da177e4SLinus Torvalds 	}
14391da177e4SLinus Torvalds 	return error;
14401da177e4SLinus Torvalds }
14411da177e4SLinus Torvalds 
1442d0217ac0SNick Piggin static int shmem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
14431da177e4SLinus Torvalds {
1444d3ac7f89SJosef "Jeff" Sipek 	struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
14451da177e4SLinus Torvalds 	int error;
1446d0217ac0SNick Piggin 	int ret;
14471da177e4SLinus Torvalds 
1448d0217ac0SNick Piggin 	if (((loff_t)vmf->pgoff << PAGE_CACHE_SHIFT) >= i_size_read(inode))
1449d0217ac0SNick Piggin 		return VM_FAULT_SIGBUS;
1450d00806b1SNick Piggin 
145127d54b39SHugh Dickins 	error = shmem_getpage(inode, vmf->pgoff, &vmf->page, SGP_CACHE, &ret);
1452d0217ac0SNick Piggin 	if (error)
1453d0217ac0SNick Piggin 		return ((error == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS);
14541da177e4SLinus Torvalds 
145583c54070SNick Piggin 	return ret | VM_FAULT_LOCKED;
14561da177e4SLinus Torvalds }
14571da177e4SLinus Torvalds 
14581da177e4SLinus Torvalds #ifdef CONFIG_NUMA
1459d8dc74f2SAdrian Bunk static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
14601da177e4SLinus Torvalds {
1461d3ac7f89SJosef "Jeff" Sipek 	struct inode *i = vma->vm_file->f_path.dentry->d_inode;
14621da177e4SLinus Torvalds 	return mpol_set_shared_policy(&SHMEM_I(i)->policy, vma, new);
14631da177e4SLinus Torvalds }
14641da177e4SLinus Torvalds 
1465d8dc74f2SAdrian Bunk static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
1466d8dc74f2SAdrian Bunk 					  unsigned long addr)
14671da177e4SLinus Torvalds {
1468d3ac7f89SJosef "Jeff" Sipek 	struct inode *i = vma->vm_file->f_path.dentry->d_inode;
14691da177e4SLinus Torvalds 	unsigned long idx;
14701da177e4SLinus Torvalds 
14711da177e4SLinus Torvalds 	idx = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
14721da177e4SLinus Torvalds 	return mpol_shared_policy_lookup(&SHMEM_I(i)->policy, idx);
14731da177e4SLinus Torvalds }
14741da177e4SLinus Torvalds #endif
14751da177e4SLinus Torvalds 
14761da177e4SLinus Torvalds int shmem_lock(struct file *file, int lock, struct user_struct *user)
14771da177e4SLinus Torvalds {
1478d3ac7f89SJosef "Jeff" Sipek 	struct inode *inode = file->f_path.dentry->d_inode;
14791da177e4SLinus Torvalds 	struct shmem_inode_info *info = SHMEM_I(inode);
14801da177e4SLinus Torvalds 	int retval = -ENOMEM;
14811da177e4SLinus Torvalds 
14821da177e4SLinus Torvalds 	spin_lock(&info->lock);
14831da177e4SLinus Torvalds 	if (lock && !(info->flags & VM_LOCKED)) {
14841da177e4SLinus Torvalds 		if (!user_shm_lock(inode->i_size, user))
14851da177e4SLinus Torvalds 			goto out_nomem;
14861da177e4SLinus Torvalds 		info->flags |= VM_LOCKED;
148789e004eaSLee Schermerhorn 		mapping_set_unevictable(file->f_mapping);
14881da177e4SLinus Torvalds 	}
14891da177e4SLinus Torvalds 	if (!lock && (info->flags & VM_LOCKED) && user) {
14901da177e4SLinus Torvalds 		user_shm_unlock(inode->i_size, user);
14911da177e4SLinus Torvalds 		info->flags &= ~VM_LOCKED;
149289e004eaSLee Schermerhorn 		mapping_clear_unevictable(file->f_mapping);
149389e004eaSLee Schermerhorn 		scan_mapping_unevictable_pages(file->f_mapping);
14941da177e4SLinus Torvalds 	}
14951da177e4SLinus Torvalds 	retval = 0;
149689e004eaSLee Schermerhorn 
14971da177e4SLinus Torvalds out_nomem:
14981da177e4SLinus Torvalds 	spin_unlock(&info->lock);
14991da177e4SLinus Torvalds 	return retval;
15001da177e4SLinus Torvalds }
15011da177e4SLinus Torvalds 
15029b83a6a8SAdrian Bunk static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
15031da177e4SLinus Torvalds {
15041da177e4SLinus Torvalds 	file_accessed(file);
15051da177e4SLinus Torvalds 	vma->vm_ops = &shmem_vm_ops;
1506d0217ac0SNick Piggin 	vma->vm_flags |= VM_CAN_NONLINEAR;
15071da177e4SLinus Torvalds 	return 0;
15081da177e4SLinus Torvalds }
15091da177e4SLinus Torvalds 
15101da177e4SLinus Torvalds static struct inode *
15111da177e4SLinus Torvalds shmem_get_inode(struct super_block *sb, int mode, dev_t dev)
15121da177e4SLinus Torvalds {
15131da177e4SLinus Torvalds 	struct inode *inode;
15141da177e4SLinus Torvalds 	struct shmem_inode_info *info;
15151da177e4SLinus Torvalds 	struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
15161da177e4SLinus Torvalds 
15175b04c689SPavel Emelyanov 	if (shmem_reserve_inode(sb))
15181da177e4SLinus Torvalds 		return NULL;
15191da177e4SLinus Torvalds 
15201da177e4SLinus Torvalds 	inode = new_inode(sb);
15211da177e4SLinus Torvalds 	if (inode) {
15221da177e4SLinus Torvalds 		inode->i_mode = mode;
152376aac0e9SDavid Howells 		inode->i_uid = current_fsuid();
152476aac0e9SDavid Howells 		inode->i_gid = current_fsgid();
15251da177e4SLinus Torvalds 		inode->i_blocks = 0;
15261da177e4SLinus Torvalds 		inode->i_mapping->backing_dev_info = &shmem_backing_dev_info;
15271da177e4SLinus Torvalds 		inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
152891828a40SDavid M. Grimes 		inode->i_generation = get_seconds();
15291da177e4SLinus Torvalds 		info = SHMEM_I(inode);
15301da177e4SLinus Torvalds 		memset(info, 0, (char *)inode - (char *)info);
15311da177e4SLinus Torvalds 		spin_lock_init(&info->lock);
15321da177e4SLinus Torvalds 		INIT_LIST_HEAD(&info->swaplist);
15331da177e4SLinus Torvalds 
15341da177e4SLinus Torvalds 		switch (mode & S_IFMT) {
15351da177e4SLinus Torvalds 		default:
153639f0247dSAndreas Gruenbacher 			inode->i_op = &shmem_special_inode_operations;
15371da177e4SLinus Torvalds 			init_special_inode(inode, mode, dev);
15381da177e4SLinus Torvalds 			break;
15391da177e4SLinus Torvalds 		case S_IFREG:
154014fcc23fSHugh Dickins 			inode->i_mapping->a_ops = &shmem_aops;
15411da177e4SLinus Torvalds 			inode->i_op = &shmem_inode_operations;
15421da177e4SLinus Torvalds 			inode->i_fop = &shmem_file_operations;
154371fe804bSLee Schermerhorn 			mpol_shared_policy_init(&info->policy,
154471fe804bSLee Schermerhorn 						 shmem_get_sbmpol(sbinfo));
15451da177e4SLinus Torvalds 			break;
15461da177e4SLinus Torvalds 		case S_IFDIR:
1547d8c76e6fSDave Hansen 			inc_nlink(inode);
15481da177e4SLinus Torvalds 			/* Some things misbehave if size == 0 on a directory */
15491da177e4SLinus Torvalds 			inode->i_size = 2 * BOGO_DIRENT_SIZE;
15501da177e4SLinus Torvalds 			inode->i_op = &shmem_dir_inode_operations;
15511da177e4SLinus Torvalds 			inode->i_fop = &simple_dir_operations;
15521da177e4SLinus Torvalds 			break;
15531da177e4SLinus Torvalds 		case S_IFLNK:
15541da177e4SLinus Torvalds 			/*
15551da177e4SLinus Torvalds 			 * Must not load anything in the rbtree,
15561da177e4SLinus Torvalds 			 * mpol_free_shared_policy will not be called.
15571da177e4SLinus Torvalds 			 */
155871fe804bSLee Schermerhorn 			mpol_shared_policy_init(&info->policy, NULL);
15591da177e4SLinus Torvalds 			break;
15601da177e4SLinus Torvalds 		}
15615b04c689SPavel Emelyanov 	} else
15625b04c689SPavel Emelyanov 		shmem_free_inode(sb);
15631da177e4SLinus Torvalds 	return inode;
15641da177e4SLinus Torvalds }
15651da177e4SLinus Torvalds 
15661da177e4SLinus Torvalds #ifdef CONFIG_TMPFS
156792e1d5beSArjan van de Ven static const struct inode_operations shmem_symlink_inode_operations;
156892e1d5beSArjan van de Ven static const struct inode_operations shmem_symlink_inline_operations;
15691da177e4SLinus Torvalds 
15701da177e4SLinus Torvalds /*
1571800d15a5SNick Piggin  * Normally tmpfs avoids the use of shmem_readpage and shmem_write_begin;
1572ae976416SHugh Dickins  * but providing them allows a tmpfs file to be used for splice, sendfile, and
1573ae976416SHugh Dickins  * below the loop driver, in the generic fashion that many filesystems support.
15741da177e4SLinus Torvalds  */
1575ae976416SHugh Dickins static int shmem_readpage(struct file *file, struct page *page)
1576ae976416SHugh Dickins {
1577ae976416SHugh Dickins 	struct inode *inode = page->mapping->host;
1578ae976416SHugh Dickins 	int error = shmem_getpage(inode, page->index, &page, SGP_CACHE, NULL);
1579ae976416SHugh Dickins 	unlock_page(page);
1580ae976416SHugh Dickins 	return error;
1581ae976416SHugh Dickins }
1582ae976416SHugh Dickins 
15831da177e4SLinus Torvalds static int
1584800d15a5SNick Piggin shmem_write_begin(struct file *file, struct address_space *mapping,
1585800d15a5SNick Piggin 			loff_t pos, unsigned len, unsigned flags,
1586800d15a5SNick Piggin 			struct page **pagep, void **fsdata)
15871da177e4SLinus Torvalds {
1588800d15a5SNick Piggin 	struct inode *inode = mapping->host;
1589800d15a5SNick Piggin 	pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1590800d15a5SNick Piggin 	*pagep = NULL;
1591800d15a5SNick Piggin 	return shmem_getpage(inode, index, pagep, SGP_WRITE, NULL);
1592800d15a5SNick Piggin }
1593800d15a5SNick Piggin 
1594800d15a5SNick Piggin static int
1595800d15a5SNick Piggin shmem_write_end(struct file *file, struct address_space *mapping,
1596800d15a5SNick Piggin 			loff_t pos, unsigned len, unsigned copied,
1597800d15a5SNick Piggin 			struct page *page, void *fsdata)
1598800d15a5SNick Piggin {
1599800d15a5SNick Piggin 	struct inode *inode = mapping->host;
1600800d15a5SNick Piggin 
1601800d15a5SNick Piggin 	if (pos + copied > inode->i_size)
1602800d15a5SNick Piggin 		i_size_write(inode, pos + copied);
1603800d15a5SNick Piggin 
1604d3602444SHugh Dickins 	unlock_page(page);
1605d3602444SHugh Dickins 	set_page_dirty(page);
1606d3602444SHugh Dickins 	page_cache_release(page);
1607d3602444SHugh Dickins 
1608800d15a5SNick Piggin 	return copied;
16091da177e4SLinus Torvalds }
16101da177e4SLinus Torvalds 
16111da177e4SLinus Torvalds static void do_shmem_file_read(struct file *filp, loff_t *ppos, read_descriptor_t *desc, read_actor_t actor)
16121da177e4SLinus Torvalds {
1613d3ac7f89SJosef "Jeff" Sipek 	struct inode *inode = filp->f_path.dentry->d_inode;
16141da177e4SLinus Torvalds 	struct address_space *mapping = inode->i_mapping;
16151da177e4SLinus Torvalds 	unsigned long index, offset;
1616a0ee5ec5SHugh Dickins 	enum sgp_type sgp = SGP_READ;
1617a0ee5ec5SHugh Dickins 
1618a0ee5ec5SHugh Dickins 	/*
1619a0ee5ec5SHugh Dickins 	 * Might this read be for a stacking filesystem?  Then when reading
1620a0ee5ec5SHugh Dickins 	 * holes of a sparse file, we actually need to allocate those pages,
1621a0ee5ec5SHugh Dickins 	 * and even mark them dirty, so it cannot exceed the max_blocks limit.
1622a0ee5ec5SHugh Dickins 	 */
1623a0ee5ec5SHugh Dickins 	if (segment_eq(get_fs(), KERNEL_DS))
1624a0ee5ec5SHugh Dickins 		sgp = SGP_DIRTY;
16251da177e4SLinus Torvalds 
16261da177e4SLinus Torvalds 	index = *ppos >> PAGE_CACHE_SHIFT;
16271da177e4SLinus Torvalds 	offset = *ppos & ~PAGE_CACHE_MASK;
16281da177e4SLinus Torvalds 
16291da177e4SLinus Torvalds 	for (;;) {
16301da177e4SLinus Torvalds 		struct page *page = NULL;
16311da177e4SLinus Torvalds 		unsigned long end_index, nr, ret;
16321da177e4SLinus Torvalds 		loff_t i_size = i_size_read(inode);
16331da177e4SLinus Torvalds 
16341da177e4SLinus Torvalds 		end_index = i_size >> PAGE_CACHE_SHIFT;
16351da177e4SLinus Torvalds 		if (index > end_index)
16361da177e4SLinus Torvalds 			break;
16371da177e4SLinus Torvalds 		if (index == end_index) {
16381da177e4SLinus Torvalds 			nr = i_size & ~PAGE_CACHE_MASK;
16391da177e4SLinus Torvalds 			if (nr <= offset)
16401da177e4SLinus Torvalds 				break;
16411da177e4SLinus Torvalds 		}
16421da177e4SLinus Torvalds 
1643a0ee5ec5SHugh Dickins 		desc->error = shmem_getpage(inode, index, &page, sgp, NULL);
16441da177e4SLinus Torvalds 		if (desc->error) {
16451da177e4SLinus Torvalds 			if (desc->error == -EINVAL)
16461da177e4SLinus Torvalds 				desc->error = 0;
16471da177e4SLinus Torvalds 			break;
16481da177e4SLinus Torvalds 		}
1649d3602444SHugh Dickins 		if (page)
1650d3602444SHugh Dickins 			unlock_page(page);
16511da177e4SLinus Torvalds 
16521da177e4SLinus Torvalds 		/*
16531da177e4SLinus Torvalds 		 * We must evaluate after, since reads (unlike writes)
16541b1dcc1bSJes Sorensen 		 * are called without i_mutex protection against truncate
16551da177e4SLinus Torvalds 		 */
16561da177e4SLinus Torvalds 		nr = PAGE_CACHE_SIZE;
16571da177e4SLinus Torvalds 		i_size = i_size_read(inode);
16581da177e4SLinus Torvalds 		end_index = i_size >> PAGE_CACHE_SHIFT;
16591da177e4SLinus Torvalds 		if (index == end_index) {
16601da177e4SLinus Torvalds 			nr = i_size & ~PAGE_CACHE_MASK;
16611da177e4SLinus Torvalds 			if (nr <= offset) {
16621da177e4SLinus Torvalds 				if (page)
16631da177e4SLinus Torvalds 					page_cache_release(page);
16641da177e4SLinus Torvalds 				break;
16651da177e4SLinus Torvalds 			}
16661da177e4SLinus Torvalds 		}
16671da177e4SLinus Torvalds 		nr -= offset;
16681da177e4SLinus Torvalds 
16691da177e4SLinus Torvalds 		if (page) {
16701da177e4SLinus Torvalds 			/*
16711da177e4SLinus Torvalds 			 * If users can be writing to this page using arbitrary
16721da177e4SLinus Torvalds 			 * virtual addresses, take care about potential aliasing
16731da177e4SLinus Torvalds 			 * before reading the page on the kernel side.
16741da177e4SLinus Torvalds 			 */
16751da177e4SLinus Torvalds 			if (mapping_writably_mapped(mapping))
16761da177e4SLinus Torvalds 				flush_dcache_page(page);
16771da177e4SLinus Torvalds 			/*
16781da177e4SLinus Torvalds 			 * Mark the page accessed if we read the beginning.
16791da177e4SLinus Torvalds 			 */
16801da177e4SLinus Torvalds 			if (!offset)
16811da177e4SLinus Torvalds 				mark_page_accessed(page);
1682b5810039SNick Piggin 		} else {
16831da177e4SLinus Torvalds 			page = ZERO_PAGE(0);
1684b5810039SNick Piggin 			page_cache_get(page);
1685b5810039SNick Piggin 		}
16861da177e4SLinus Torvalds 
16871da177e4SLinus Torvalds 		/*
16881da177e4SLinus Torvalds 		 * Ok, we have the page, and it's up-to-date, so
16891da177e4SLinus Torvalds 		 * now we can copy it to user space...
16901da177e4SLinus Torvalds 		 *
16911da177e4SLinus Torvalds 		 * The actor routine returns how many bytes were actually used..
16921da177e4SLinus Torvalds 		 * NOTE! This may not be the same as how much of a user buffer
16931da177e4SLinus Torvalds 		 * we filled up (we may be padding etc), so we can only update
16941da177e4SLinus Torvalds 		 * "pos" here (the actor routine has to update the user buffer
16951da177e4SLinus Torvalds 		 * pointers and the remaining count).
16961da177e4SLinus Torvalds 		 */
16971da177e4SLinus Torvalds 		ret = actor(desc, page, offset, nr);
16981da177e4SLinus Torvalds 		offset += ret;
16991da177e4SLinus Torvalds 		index += offset >> PAGE_CACHE_SHIFT;
17001da177e4SLinus Torvalds 		offset &= ~PAGE_CACHE_MASK;
17011da177e4SLinus Torvalds 
17021da177e4SLinus Torvalds 		page_cache_release(page);
17031da177e4SLinus Torvalds 		if (ret != nr || !desc->count)
17041da177e4SLinus Torvalds 			break;
17051da177e4SLinus Torvalds 
17061da177e4SLinus Torvalds 		cond_resched();
17071da177e4SLinus Torvalds 	}
17081da177e4SLinus Torvalds 
17091da177e4SLinus Torvalds 	*ppos = ((loff_t) index << PAGE_CACHE_SHIFT) + offset;
17101da177e4SLinus Torvalds 	file_accessed(filp);
17111da177e4SLinus Torvalds }
17121da177e4SLinus Torvalds 
1713bcd78e49SHugh Dickins static ssize_t shmem_file_aio_read(struct kiocb *iocb,
1714bcd78e49SHugh Dickins 		const struct iovec *iov, unsigned long nr_segs, loff_t pos)
17151da177e4SLinus Torvalds {
1716bcd78e49SHugh Dickins 	struct file *filp = iocb->ki_filp;
1717bcd78e49SHugh Dickins 	ssize_t retval;
1718bcd78e49SHugh Dickins 	unsigned long seg;
1719bcd78e49SHugh Dickins 	size_t count;
1720bcd78e49SHugh Dickins 	loff_t *ppos = &iocb->ki_pos;
1721bcd78e49SHugh Dickins 
1722bcd78e49SHugh Dickins 	retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
1723bcd78e49SHugh Dickins 	if (retval)
1724bcd78e49SHugh Dickins 		return retval;
1725bcd78e49SHugh Dickins 
1726bcd78e49SHugh Dickins 	for (seg = 0; seg < nr_segs; seg++) {
17271da177e4SLinus Torvalds 		read_descriptor_t desc;
17281da177e4SLinus Torvalds 
17291da177e4SLinus Torvalds 		desc.written = 0;
1730bcd78e49SHugh Dickins 		desc.arg.buf = iov[seg].iov_base;
1731bcd78e49SHugh Dickins 		desc.count = iov[seg].iov_len;
1732bcd78e49SHugh Dickins 		if (desc.count == 0)
1733bcd78e49SHugh Dickins 			continue;
17341da177e4SLinus Torvalds 		desc.error = 0;
17351da177e4SLinus Torvalds 		do_shmem_file_read(filp, ppos, &desc, file_read_actor);
1736bcd78e49SHugh Dickins 		retval += desc.written;
1737bcd78e49SHugh Dickins 		if (desc.error) {
1738bcd78e49SHugh Dickins 			retval = retval ?: desc.error;
1739bcd78e49SHugh Dickins 			break;
1740bcd78e49SHugh Dickins 		}
1741bcd78e49SHugh Dickins 		if (desc.count > 0)
1742bcd78e49SHugh Dickins 			break;
1743bcd78e49SHugh Dickins 	}
1744bcd78e49SHugh Dickins 	return retval;
17451da177e4SLinus Torvalds }
17461da177e4SLinus Torvalds 
1747726c3342SDavid Howells static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
17481da177e4SLinus Torvalds {
1749726c3342SDavid Howells 	struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
17501da177e4SLinus Torvalds 
17511da177e4SLinus Torvalds 	buf->f_type = TMPFS_MAGIC;
17521da177e4SLinus Torvalds 	buf->f_bsize = PAGE_CACHE_SIZE;
17531da177e4SLinus Torvalds 	buf->f_namelen = NAME_MAX;
17541da177e4SLinus Torvalds 	spin_lock(&sbinfo->stat_lock);
17550edd73b3SHugh Dickins 	if (sbinfo->max_blocks) {
17561da177e4SLinus Torvalds 		buf->f_blocks = sbinfo->max_blocks;
17571da177e4SLinus Torvalds 		buf->f_bavail = buf->f_bfree = sbinfo->free_blocks;
17580edd73b3SHugh Dickins 	}
17590edd73b3SHugh Dickins 	if (sbinfo->max_inodes) {
17601da177e4SLinus Torvalds 		buf->f_files = sbinfo->max_inodes;
17611da177e4SLinus Torvalds 		buf->f_ffree = sbinfo->free_inodes;
17621da177e4SLinus Torvalds 	}
17631da177e4SLinus Torvalds 	/* else leave those fields 0 like simple_statfs */
17640edd73b3SHugh Dickins 	spin_unlock(&sbinfo->stat_lock);
17651da177e4SLinus Torvalds 	return 0;
17661da177e4SLinus Torvalds }
17671da177e4SLinus Torvalds 
17681da177e4SLinus Torvalds /*
17691da177e4SLinus Torvalds  * File creation. Allocate an inode, and we're done..
17701da177e4SLinus Torvalds  */
17711da177e4SLinus Torvalds static int
17721da177e4SLinus Torvalds shmem_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
17731da177e4SLinus Torvalds {
17741da177e4SLinus Torvalds 	struct inode *inode = shmem_get_inode(dir->i_sb, mode, dev);
17751da177e4SLinus Torvalds 	int error = -ENOSPC;
17761da177e4SLinus Torvalds 
17771da177e4SLinus Torvalds 	if (inode) {
1778570bc1c2SStephen Smalley 		error = security_inode_init_security(inode, dir, NULL, NULL,
1779570bc1c2SStephen Smalley 						     NULL);
1780570bc1c2SStephen Smalley 		if (error) {
1781570bc1c2SStephen Smalley 			if (error != -EOPNOTSUPP) {
1782570bc1c2SStephen Smalley 				iput(inode);
1783570bc1c2SStephen Smalley 				return error;
1784570bc1c2SStephen Smalley 			}
178539f0247dSAndreas Gruenbacher 		}
178639f0247dSAndreas Gruenbacher 		error = shmem_acl_init(inode, dir);
178739f0247dSAndreas Gruenbacher 		if (error) {
178839f0247dSAndreas Gruenbacher 			iput(inode);
178939f0247dSAndreas Gruenbacher 			return error;
1790570bc1c2SStephen Smalley 		}
17911da177e4SLinus Torvalds 		if (dir->i_mode & S_ISGID) {
17921da177e4SLinus Torvalds 			inode->i_gid = dir->i_gid;
17931da177e4SLinus Torvalds 			if (S_ISDIR(mode))
17941da177e4SLinus Torvalds 				inode->i_mode |= S_ISGID;
17951da177e4SLinus Torvalds 		}
17961da177e4SLinus Torvalds 		dir->i_size += BOGO_DIRENT_SIZE;
17971da177e4SLinus Torvalds 		dir->i_ctime = dir->i_mtime = CURRENT_TIME;
17981da177e4SLinus Torvalds 		d_instantiate(dentry, inode);
17991da177e4SLinus Torvalds 		dget(dentry); /* Extra count - pin the dentry in core */
18001da177e4SLinus Torvalds 	}
18011da177e4SLinus Torvalds 	return error;
18021da177e4SLinus Torvalds }
18031da177e4SLinus Torvalds 
18041da177e4SLinus Torvalds static int shmem_mkdir(struct inode *dir, struct dentry *dentry, int mode)
18051da177e4SLinus Torvalds {
18061da177e4SLinus Torvalds 	int error;
18071da177e4SLinus Torvalds 
18081da177e4SLinus Torvalds 	if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
18091da177e4SLinus Torvalds 		return error;
1810d8c76e6fSDave Hansen 	inc_nlink(dir);
18111da177e4SLinus Torvalds 	return 0;
18121da177e4SLinus Torvalds }
18131da177e4SLinus Torvalds 
18141da177e4SLinus Torvalds static int shmem_create(struct inode *dir, struct dentry *dentry, int mode,
18151da177e4SLinus Torvalds 		struct nameidata *nd)
18161da177e4SLinus Torvalds {
18171da177e4SLinus Torvalds 	return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
18181da177e4SLinus Torvalds }
18191da177e4SLinus Torvalds 
18201da177e4SLinus Torvalds /*
18211da177e4SLinus Torvalds  * Link a file..
18221da177e4SLinus Torvalds  */
18231da177e4SLinus Torvalds static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
18241da177e4SLinus Torvalds {
18251da177e4SLinus Torvalds 	struct inode *inode = old_dentry->d_inode;
18265b04c689SPavel Emelyanov 	int ret;
18271da177e4SLinus Torvalds 
18281da177e4SLinus Torvalds 	/*
18291da177e4SLinus Torvalds 	 * No ordinary (disk based) filesystem counts links as inodes;
18301da177e4SLinus Torvalds 	 * but each new link needs a new dentry, pinning lowmem, and
18311da177e4SLinus Torvalds 	 * tmpfs dentries cannot be pruned until they are unlinked.
18321da177e4SLinus Torvalds 	 */
18335b04c689SPavel Emelyanov 	ret = shmem_reserve_inode(inode->i_sb);
18345b04c689SPavel Emelyanov 	if (ret)
18355b04c689SPavel Emelyanov 		goto out;
18361da177e4SLinus Torvalds 
18371da177e4SLinus Torvalds 	dir->i_size += BOGO_DIRENT_SIZE;
18381da177e4SLinus Torvalds 	inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1839d8c76e6fSDave Hansen 	inc_nlink(inode);
18401da177e4SLinus Torvalds 	atomic_inc(&inode->i_count);	/* New dentry reference */
18411da177e4SLinus Torvalds 	dget(dentry);		/* Extra pinning count for the created dentry */
18421da177e4SLinus Torvalds 	d_instantiate(dentry, inode);
18435b04c689SPavel Emelyanov out:
18445b04c689SPavel Emelyanov 	return ret;
18451da177e4SLinus Torvalds }
18461da177e4SLinus Torvalds 
18471da177e4SLinus Torvalds static int shmem_unlink(struct inode *dir, struct dentry *dentry)
18481da177e4SLinus Torvalds {
18491da177e4SLinus Torvalds 	struct inode *inode = dentry->d_inode;
18501da177e4SLinus Torvalds 
18515b04c689SPavel Emelyanov 	if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
18525b04c689SPavel Emelyanov 		shmem_free_inode(inode->i_sb);
18531da177e4SLinus Torvalds 
18541da177e4SLinus Torvalds 	dir->i_size -= BOGO_DIRENT_SIZE;
18551da177e4SLinus Torvalds 	inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
18569a53c3a7SDave Hansen 	drop_nlink(inode);
18571da177e4SLinus Torvalds 	dput(dentry);	/* Undo the count from "create" - this does all the work */
18581da177e4SLinus Torvalds 	return 0;
18591da177e4SLinus Torvalds }
18601da177e4SLinus Torvalds 
18611da177e4SLinus Torvalds static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
18621da177e4SLinus Torvalds {
18631da177e4SLinus Torvalds 	if (!simple_empty(dentry))
18641da177e4SLinus Torvalds 		return -ENOTEMPTY;
18651da177e4SLinus Torvalds 
18669a53c3a7SDave Hansen 	drop_nlink(dentry->d_inode);
18679a53c3a7SDave Hansen 	drop_nlink(dir);
18681da177e4SLinus Torvalds 	return shmem_unlink(dir, dentry);
18691da177e4SLinus Torvalds }
18701da177e4SLinus Torvalds 
18711da177e4SLinus Torvalds /*
18721da177e4SLinus Torvalds  * The VFS layer already does all the dentry stuff for rename,
18731da177e4SLinus Torvalds  * we just have to decrement the usage count for the target if
18741da177e4SLinus Torvalds  * it exists so that the VFS layer correctly free's it when it
18751da177e4SLinus Torvalds  * gets overwritten.
18761da177e4SLinus Torvalds  */
18771da177e4SLinus Torvalds static int shmem_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
18781da177e4SLinus Torvalds {
18791da177e4SLinus Torvalds 	struct inode *inode = old_dentry->d_inode;
18801da177e4SLinus Torvalds 	int they_are_dirs = S_ISDIR(inode->i_mode);
18811da177e4SLinus Torvalds 
18821da177e4SLinus Torvalds 	if (!simple_empty(new_dentry))
18831da177e4SLinus Torvalds 		return -ENOTEMPTY;
18841da177e4SLinus Torvalds 
18851da177e4SLinus Torvalds 	if (new_dentry->d_inode) {
18861da177e4SLinus Torvalds 		(void) shmem_unlink(new_dir, new_dentry);
18871da177e4SLinus Torvalds 		if (they_are_dirs)
18889a53c3a7SDave Hansen 			drop_nlink(old_dir);
18891da177e4SLinus Torvalds 	} else if (they_are_dirs) {
18909a53c3a7SDave Hansen 		drop_nlink(old_dir);
1891d8c76e6fSDave Hansen 		inc_nlink(new_dir);
18921da177e4SLinus Torvalds 	}
18931da177e4SLinus Torvalds 
18941da177e4SLinus Torvalds 	old_dir->i_size -= BOGO_DIRENT_SIZE;
18951da177e4SLinus Torvalds 	new_dir->i_size += BOGO_DIRENT_SIZE;
18961da177e4SLinus Torvalds 	old_dir->i_ctime = old_dir->i_mtime =
18971da177e4SLinus Torvalds 	new_dir->i_ctime = new_dir->i_mtime =
18981da177e4SLinus Torvalds 	inode->i_ctime = CURRENT_TIME;
18991da177e4SLinus Torvalds 	return 0;
19001da177e4SLinus Torvalds }
19011da177e4SLinus Torvalds 
19021da177e4SLinus Torvalds static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
19031da177e4SLinus Torvalds {
19041da177e4SLinus Torvalds 	int error;
19051da177e4SLinus Torvalds 	int len;
19061da177e4SLinus Torvalds 	struct inode *inode;
19071da177e4SLinus Torvalds 	struct page *page = NULL;
19081da177e4SLinus Torvalds 	char *kaddr;
19091da177e4SLinus Torvalds 	struct shmem_inode_info *info;
19101da177e4SLinus Torvalds 
19111da177e4SLinus Torvalds 	len = strlen(symname) + 1;
19121da177e4SLinus Torvalds 	if (len > PAGE_CACHE_SIZE)
19131da177e4SLinus Torvalds 		return -ENAMETOOLONG;
19141da177e4SLinus Torvalds 
19151da177e4SLinus Torvalds 	inode = shmem_get_inode(dir->i_sb, S_IFLNK|S_IRWXUGO, 0);
19161da177e4SLinus Torvalds 	if (!inode)
19171da177e4SLinus Torvalds 		return -ENOSPC;
19181da177e4SLinus Torvalds 
1919570bc1c2SStephen Smalley 	error = security_inode_init_security(inode, dir, NULL, NULL,
1920570bc1c2SStephen Smalley 					     NULL);
1921570bc1c2SStephen Smalley 	if (error) {
1922570bc1c2SStephen Smalley 		if (error != -EOPNOTSUPP) {
1923570bc1c2SStephen Smalley 			iput(inode);
1924570bc1c2SStephen Smalley 			return error;
1925570bc1c2SStephen Smalley 		}
1926570bc1c2SStephen Smalley 		error = 0;
1927570bc1c2SStephen Smalley 	}
1928570bc1c2SStephen Smalley 
19291da177e4SLinus Torvalds 	info = SHMEM_I(inode);
19301da177e4SLinus Torvalds 	inode->i_size = len-1;
19311da177e4SLinus Torvalds 	if (len <= (char *)inode - (char *)info) {
19321da177e4SLinus Torvalds 		/* do it inline */
19331da177e4SLinus Torvalds 		memcpy(info, symname, len);
19341da177e4SLinus Torvalds 		inode->i_op = &shmem_symlink_inline_operations;
19351da177e4SLinus Torvalds 	} else {
19361da177e4SLinus Torvalds 		error = shmem_getpage(inode, 0, &page, SGP_WRITE, NULL);
19371da177e4SLinus Torvalds 		if (error) {
19381da177e4SLinus Torvalds 			iput(inode);
19391da177e4SLinus Torvalds 			return error;
19401da177e4SLinus Torvalds 		}
1941d3602444SHugh Dickins 		unlock_page(page);
194214fcc23fSHugh Dickins 		inode->i_mapping->a_ops = &shmem_aops;
19431da177e4SLinus Torvalds 		inode->i_op = &shmem_symlink_inode_operations;
19441da177e4SLinus Torvalds 		kaddr = kmap_atomic(page, KM_USER0);
19451da177e4SLinus Torvalds 		memcpy(kaddr, symname, len);
19461da177e4SLinus Torvalds 		kunmap_atomic(kaddr, KM_USER0);
19471da177e4SLinus Torvalds 		set_page_dirty(page);
19481da177e4SLinus Torvalds 		page_cache_release(page);
19491da177e4SLinus Torvalds 	}
19501da177e4SLinus Torvalds 	if (dir->i_mode & S_ISGID)
19511da177e4SLinus Torvalds 		inode->i_gid = dir->i_gid;
19521da177e4SLinus Torvalds 	dir->i_size += BOGO_DIRENT_SIZE;
19531da177e4SLinus Torvalds 	dir->i_ctime = dir->i_mtime = CURRENT_TIME;
19541da177e4SLinus Torvalds 	d_instantiate(dentry, inode);
19551da177e4SLinus Torvalds 	dget(dentry);
19561da177e4SLinus Torvalds 	return 0;
19571da177e4SLinus Torvalds }
19581da177e4SLinus Torvalds 
1959cc314eefSLinus Torvalds static void *shmem_follow_link_inline(struct dentry *dentry, struct nameidata *nd)
19601da177e4SLinus Torvalds {
19611da177e4SLinus Torvalds 	nd_set_link(nd, (char *)SHMEM_I(dentry->d_inode));
1962cc314eefSLinus Torvalds 	return NULL;
19631da177e4SLinus Torvalds }
19641da177e4SLinus Torvalds 
1965cc314eefSLinus Torvalds static void *shmem_follow_link(struct dentry *dentry, struct nameidata *nd)
19661da177e4SLinus Torvalds {
19671da177e4SLinus Torvalds 	struct page *page = NULL;
19681da177e4SLinus Torvalds 	int res = shmem_getpage(dentry->d_inode, 0, &page, SGP_READ, NULL);
19691da177e4SLinus Torvalds 	nd_set_link(nd, res ? ERR_PTR(res) : kmap(page));
1970d3602444SHugh Dickins 	if (page)
1971d3602444SHugh Dickins 		unlock_page(page);
1972cc314eefSLinus Torvalds 	return page;
19731da177e4SLinus Torvalds }
19741da177e4SLinus Torvalds 
1975cc314eefSLinus Torvalds static void shmem_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
19761da177e4SLinus Torvalds {
19771da177e4SLinus Torvalds 	if (!IS_ERR(nd_get_link(nd))) {
1978cc314eefSLinus Torvalds 		struct page *page = cookie;
19791da177e4SLinus Torvalds 		kunmap(page);
19801da177e4SLinus Torvalds 		mark_page_accessed(page);
19811da177e4SLinus Torvalds 		page_cache_release(page);
19821da177e4SLinus Torvalds 	}
19831da177e4SLinus Torvalds }
19841da177e4SLinus Torvalds 
198592e1d5beSArjan van de Ven static const struct inode_operations shmem_symlink_inline_operations = {
19861da177e4SLinus Torvalds 	.readlink	= generic_readlink,
19871da177e4SLinus Torvalds 	.follow_link	= shmem_follow_link_inline,
19881da177e4SLinus Torvalds };
19891da177e4SLinus Torvalds 
199092e1d5beSArjan van de Ven static const struct inode_operations shmem_symlink_inode_operations = {
19911da177e4SLinus Torvalds 	.truncate	= shmem_truncate,
19921da177e4SLinus Torvalds 	.readlink	= generic_readlink,
19931da177e4SLinus Torvalds 	.follow_link	= shmem_follow_link,
19941da177e4SLinus Torvalds 	.put_link	= shmem_put_link,
19951da177e4SLinus Torvalds };
19961da177e4SLinus Torvalds 
199739f0247dSAndreas Gruenbacher #ifdef CONFIG_TMPFS_POSIX_ACL
199846711810SRandy Dunlap /*
199939f0247dSAndreas Gruenbacher  * Superblocks without xattr inode operations will get security.* xattr
200039f0247dSAndreas Gruenbacher  * support from the VFS "for free". As soon as we have any other xattrs
200139f0247dSAndreas Gruenbacher  * like ACLs, we also need to implement the security.* handlers at
200239f0247dSAndreas Gruenbacher  * filesystem level, though.
200339f0247dSAndreas Gruenbacher  */
200439f0247dSAndreas Gruenbacher 
200539f0247dSAndreas Gruenbacher static size_t shmem_xattr_security_list(struct inode *inode, char *list,
200639f0247dSAndreas Gruenbacher 					size_t list_len, const char *name,
200739f0247dSAndreas Gruenbacher 					size_t name_len)
200839f0247dSAndreas Gruenbacher {
200939f0247dSAndreas Gruenbacher 	return security_inode_listsecurity(inode, list, list_len);
201039f0247dSAndreas Gruenbacher }
201139f0247dSAndreas Gruenbacher 
201239f0247dSAndreas Gruenbacher static int shmem_xattr_security_get(struct inode *inode, const char *name,
201339f0247dSAndreas Gruenbacher 				    void *buffer, size_t size)
201439f0247dSAndreas Gruenbacher {
201539f0247dSAndreas Gruenbacher 	if (strcmp(name, "") == 0)
201639f0247dSAndreas Gruenbacher 		return -EINVAL;
201742492594SDavid P. Quigley 	return xattr_getsecurity(inode, name, buffer, size);
201839f0247dSAndreas Gruenbacher }
201939f0247dSAndreas Gruenbacher 
202039f0247dSAndreas Gruenbacher static int shmem_xattr_security_set(struct inode *inode, const char *name,
202139f0247dSAndreas Gruenbacher 				    const void *value, size_t size, int flags)
202239f0247dSAndreas Gruenbacher {
202339f0247dSAndreas Gruenbacher 	if (strcmp(name, "") == 0)
202439f0247dSAndreas Gruenbacher 		return -EINVAL;
202539f0247dSAndreas Gruenbacher 	return security_inode_setsecurity(inode, name, value, size, flags);
202639f0247dSAndreas Gruenbacher }
202739f0247dSAndreas Gruenbacher 
20281f370a23SAdrian Bunk static struct xattr_handler shmem_xattr_security_handler = {
202939f0247dSAndreas Gruenbacher 	.prefix = XATTR_SECURITY_PREFIX,
203039f0247dSAndreas Gruenbacher 	.list   = shmem_xattr_security_list,
203139f0247dSAndreas Gruenbacher 	.get    = shmem_xattr_security_get,
203239f0247dSAndreas Gruenbacher 	.set    = shmem_xattr_security_set,
203339f0247dSAndreas Gruenbacher };
203439f0247dSAndreas Gruenbacher 
203539f0247dSAndreas Gruenbacher static struct xattr_handler *shmem_xattr_handlers[] = {
203639f0247dSAndreas Gruenbacher 	&shmem_xattr_acl_access_handler,
203739f0247dSAndreas Gruenbacher 	&shmem_xattr_acl_default_handler,
203839f0247dSAndreas Gruenbacher 	&shmem_xattr_security_handler,
203939f0247dSAndreas Gruenbacher 	NULL
204039f0247dSAndreas Gruenbacher };
204139f0247dSAndreas Gruenbacher #endif
204239f0247dSAndreas Gruenbacher 
204391828a40SDavid M. Grimes static struct dentry *shmem_get_parent(struct dentry *child)
204491828a40SDavid M. Grimes {
204591828a40SDavid M. Grimes 	return ERR_PTR(-ESTALE);
204691828a40SDavid M. Grimes }
204791828a40SDavid M. Grimes 
204891828a40SDavid M. Grimes static int shmem_match(struct inode *ino, void *vfh)
204991828a40SDavid M. Grimes {
205091828a40SDavid M. Grimes 	__u32 *fh = vfh;
205191828a40SDavid M. Grimes 	__u64 inum = fh[2];
205291828a40SDavid M. Grimes 	inum = (inum << 32) | fh[1];
205391828a40SDavid M. Grimes 	return ino->i_ino == inum && fh[0] == ino->i_generation;
205491828a40SDavid M. Grimes }
205591828a40SDavid M. Grimes 
2056480b116cSChristoph Hellwig static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
2057480b116cSChristoph Hellwig 		struct fid *fid, int fh_len, int fh_type)
205891828a40SDavid M. Grimes {
205991828a40SDavid M. Grimes 	struct inode *inode;
2060480b116cSChristoph Hellwig 	struct dentry *dentry = NULL;
2061480b116cSChristoph Hellwig 	u64 inum = fid->raw[2];
2062480b116cSChristoph Hellwig 	inum = (inum << 32) | fid->raw[1];
206391828a40SDavid M. Grimes 
2064480b116cSChristoph Hellwig 	if (fh_len < 3)
2065480b116cSChristoph Hellwig 		return NULL;
2066480b116cSChristoph Hellwig 
2067480b116cSChristoph Hellwig 	inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
2068480b116cSChristoph Hellwig 			shmem_match, fid->raw);
206991828a40SDavid M. Grimes 	if (inode) {
2070480b116cSChristoph Hellwig 		dentry = d_find_alias(inode);
207191828a40SDavid M. Grimes 		iput(inode);
207291828a40SDavid M. Grimes 	}
207391828a40SDavid M. Grimes 
2074480b116cSChristoph Hellwig 	return dentry;
207591828a40SDavid M. Grimes }
207691828a40SDavid M. Grimes 
207791828a40SDavid M. Grimes static int shmem_encode_fh(struct dentry *dentry, __u32 *fh, int *len,
207891828a40SDavid M. Grimes 				int connectable)
207991828a40SDavid M. Grimes {
208091828a40SDavid M. Grimes 	struct inode *inode = dentry->d_inode;
208191828a40SDavid M. Grimes 
208291828a40SDavid M. Grimes 	if (*len < 3)
208391828a40SDavid M. Grimes 		return 255;
208491828a40SDavid M. Grimes 
208591828a40SDavid M. Grimes 	if (hlist_unhashed(&inode->i_hash)) {
208691828a40SDavid M. Grimes 		/* Unfortunately insert_inode_hash is not idempotent,
208791828a40SDavid M. Grimes 		 * so as we hash inodes here rather than at creation
208891828a40SDavid M. Grimes 		 * time, we need a lock to ensure we only try
208991828a40SDavid M. Grimes 		 * to do it once
209091828a40SDavid M. Grimes 		 */
209191828a40SDavid M. Grimes 		static DEFINE_SPINLOCK(lock);
209291828a40SDavid M. Grimes 		spin_lock(&lock);
209391828a40SDavid M. Grimes 		if (hlist_unhashed(&inode->i_hash))
209491828a40SDavid M. Grimes 			__insert_inode_hash(inode,
209591828a40SDavid M. Grimes 					    inode->i_ino + inode->i_generation);
209691828a40SDavid M. Grimes 		spin_unlock(&lock);
209791828a40SDavid M. Grimes 	}
209891828a40SDavid M. Grimes 
209991828a40SDavid M. Grimes 	fh[0] = inode->i_generation;
210091828a40SDavid M. Grimes 	fh[1] = inode->i_ino;
210191828a40SDavid M. Grimes 	fh[2] = ((__u64)inode->i_ino) >> 32;
210291828a40SDavid M. Grimes 
210391828a40SDavid M. Grimes 	*len = 3;
210491828a40SDavid M. Grimes 	return 1;
210591828a40SDavid M. Grimes }
210691828a40SDavid M. Grimes 
210739655164SChristoph Hellwig static const struct export_operations shmem_export_ops = {
210891828a40SDavid M. Grimes 	.get_parent     = shmem_get_parent,
210991828a40SDavid M. Grimes 	.encode_fh      = shmem_encode_fh,
2110480b116cSChristoph Hellwig 	.fh_to_dentry	= shmem_fh_to_dentry,
211191828a40SDavid M. Grimes };
211291828a40SDavid M. Grimes 
2113680d794bSakpm@linux-foundation.org static int shmem_parse_options(char *options, struct shmem_sb_info *sbinfo,
2114680d794bSakpm@linux-foundation.org 			       bool remount)
21151da177e4SLinus Torvalds {
21161da177e4SLinus Torvalds 	char *this_char, *value, *rest;
21171da177e4SLinus Torvalds 
2118b00dc3adSHugh Dickins 	while (options != NULL) {
2119b00dc3adSHugh Dickins 		this_char = options;
2120b00dc3adSHugh Dickins 		for (;;) {
2121b00dc3adSHugh Dickins 			/*
2122b00dc3adSHugh Dickins 			 * NUL-terminate this option: unfortunately,
2123b00dc3adSHugh Dickins 			 * mount options form a comma-separated list,
2124b00dc3adSHugh Dickins 			 * but mpol's nodelist may also contain commas.
2125b00dc3adSHugh Dickins 			 */
2126b00dc3adSHugh Dickins 			options = strchr(options, ',');
2127b00dc3adSHugh Dickins 			if (options == NULL)
2128b00dc3adSHugh Dickins 				break;
2129b00dc3adSHugh Dickins 			options++;
2130b00dc3adSHugh Dickins 			if (!isdigit(*options)) {
2131b00dc3adSHugh Dickins 				options[-1] = '\0';
2132b00dc3adSHugh Dickins 				break;
2133b00dc3adSHugh Dickins 			}
2134b00dc3adSHugh Dickins 		}
21351da177e4SLinus Torvalds 		if (!*this_char)
21361da177e4SLinus Torvalds 			continue;
21371da177e4SLinus Torvalds 		if ((value = strchr(this_char,'=')) != NULL) {
21381da177e4SLinus Torvalds 			*value++ = 0;
21391da177e4SLinus Torvalds 		} else {
21401da177e4SLinus Torvalds 			printk(KERN_ERR
21411da177e4SLinus Torvalds 			    "tmpfs: No value for mount option '%s'\n",
21421da177e4SLinus Torvalds 			    this_char);
21431da177e4SLinus Torvalds 			return 1;
21441da177e4SLinus Torvalds 		}
21451da177e4SLinus Torvalds 
21461da177e4SLinus Torvalds 		if (!strcmp(this_char,"size")) {
21471da177e4SLinus Torvalds 			unsigned long long size;
21481da177e4SLinus Torvalds 			size = memparse(value,&rest);
21491da177e4SLinus Torvalds 			if (*rest == '%') {
21501da177e4SLinus Torvalds 				size <<= PAGE_SHIFT;
21511da177e4SLinus Torvalds 				size *= totalram_pages;
21521da177e4SLinus Torvalds 				do_div(size, 100);
21531da177e4SLinus Torvalds 				rest++;
21541da177e4SLinus Torvalds 			}
21551da177e4SLinus Torvalds 			if (*rest)
21561da177e4SLinus Torvalds 				goto bad_val;
2157680d794bSakpm@linux-foundation.org 			sbinfo->max_blocks =
2158680d794bSakpm@linux-foundation.org 				DIV_ROUND_UP(size, PAGE_CACHE_SIZE);
21591da177e4SLinus Torvalds 		} else if (!strcmp(this_char,"nr_blocks")) {
2160680d794bSakpm@linux-foundation.org 			sbinfo->max_blocks = memparse(value, &rest);
21611da177e4SLinus Torvalds 			if (*rest)
21621da177e4SLinus Torvalds 				goto bad_val;
21631da177e4SLinus Torvalds 		} else if (!strcmp(this_char,"nr_inodes")) {
2164680d794bSakpm@linux-foundation.org 			sbinfo->max_inodes = memparse(value, &rest);
21651da177e4SLinus Torvalds 			if (*rest)
21661da177e4SLinus Torvalds 				goto bad_val;
21671da177e4SLinus Torvalds 		} else if (!strcmp(this_char,"mode")) {
2168680d794bSakpm@linux-foundation.org 			if (remount)
21691da177e4SLinus Torvalds 				continue;
2170680d794bSakpm@linux-foundation.org 			sbinfo->mode = simple_strtoul(value, &rest, 8) & 07777;
21711da177e4SLinus Torvalds 			if (*rest)
21721da177e4SLinus Torvalds 				goto bad_val;
21731da177e4SLinus Torvalds 		} else if (!strcmp(this_char,"uid")) {
2174680d794bSakpm@linux-foundation.org 			if (remount)
21751da177e4SLinus Torvalds 				continue;
2176680d794bSakpm@linux-foundation.org 			sbinfo->uid = simple_strtoul(value, &rest, 0);
21771da177e4SLinus Torvalds 			if (*rest)
21781da177e4SLinus Torvalds 				goto bad_val;
21791da177e4SLinus Torvalds 		} else if (!strcmp(this_char,"gid")) {
2180680d794bSakpm@linux-foundation.org 			if (remount)
21811da177e4SLinus Torvalds 				continue;
2182680d794bSakpm@linux-foundation.org 			sbinfo->gid = simple_strtoul(value, &rest, 0);
21831da177e4SLinus Torvalds 			if (*rest)
21841da177e4SLinus Torvalds 				goto bad_val;
21857339ff83SRobin Holt 		} else if (!strcmp(this_char,"mpol")) {
218671fe804bSLee Schermerhorn 			if (mpol_parse_str(value, &sbinfo->mpol, 1))
21877339ff83SRobin Holt 				goto bad_val;
21881da177e4SLinus Torvalds 		} else {
21891da177e4SLinus Torvalds 			printk(KERN_ERR "tmpfs: Bad mount option %s\n",
21901da177e4SLinus Torvalds 			       this_char);
21911da177e4SLinus Torvalds 			return 1;
21921da177e4SLinus Torvalds 		}
21931da177e4SLinus Torvalds 	}
21941da177e4SLinus Torvalds 	return 0;
21951da177e4SLinus Torvalds 
21961da177e4SLinus Torvalds bad_val:
21971da177e4SLinus Torvalds 	printk(KERN_ERR "tmpfs: Bad value '%s' for mount option '%s'\n",
21981da177e4SLinus Torvalds 	       value, this_char);
21991da177e4SLinus Torvalds 	return 1;
22001da177e4SLinus Torvalds 
22011da177e4SLinus Torvalds }
22021da177e4SLinus Torvalds 
22031da177e4SLinus Torvalds static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
22041da177e4SLinus Torvalds {
22051da177e4SLinus Torvalds 	struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2206680d794bSakpm@linux-foundation.org 	struct shmem_sb_info config = *sbinfo;
22070edd73b3SHugh Dickins 	unsigned long blocks;
22080edd73b3SHugh Dickins 	unsigned long inodes;
22090edd73b3SHugh Dickins 	int error = -EINVAL;
22101da177e4SLinus Torvalds 
2211680d794bSakpm@linux-foundation.org 	if (shmem_parse_options(data, &config, true))
22120edd73b3SHugh Dickins 		return error;
22130edd73b3SHugh Dickins 
22140edd73b3SHugh Dickins 	spin_lock(&sbinfo->stat_lock);
22150edd73b3SHugh Dickins 	blocks = sbinfo->max_blocks - sbinfo->free_blocks;
22160edd73b3SHugh Dickins 	inodes = sbinfo->max_inodes - sbinfo->free_inodes;
2217680d794bSakpm@linux-foundation.org 	if (config.max_blocks < blocks)
22180edd73b3SHugh Dickins 		goto out;
2219680d794bSakpm@linux-foundation.org 	if (config.max_inodes < inodes)
22200edd73b3SHugh Dickins 		goto out;
22210edd73b3SHugh Dickins 	/*
22220edd73b3SHugh Dickins 	 * Those tests also disallow limited->unlimited while any are in
22230edd73b3SHugh Dickins 	 * use, so i_blocks will always be zero when max_blocks is zero;
22240edd73b3SHugh Dickins 	 * but we must separately disallow unlimited->limited, because
22250edd73b3SHugh Dickins 	 * in that case we have no record of how much is already in use.
22260edd73b3SHugh Dickins 	 */
2227680d794bSakpm@linux-foundation.org 	if (config.max_blocks && !sbinfo->max_blocks)
22280edd73b3SHugh Dickins 		goto out;
2229680d794bSakpm@linux-foundation.org 	if (config.max_inodes && !sbinfo->max_inodes)
22300edd73b3SHugh Dickins 		goto out;
22310edd73b3SHugh Dickins 
22320edd73b3SHugh Dickins 	error = 0;
2233680d794bSakpm@linux-foundation.org 	sbinfo->max_blocks  = config.max_blocks;
2234680d794bSakpm@linux-foundation.org 	sbinfo->free_blocks = config.max_blocks - blocks;
2235680d794bSakpm@linux-foundation.org 	sbinfo->max_inodes  = config.max_inodes;
2236680d794bSakpm@linux-foundation.org 	sbinfo->free_inodes = config.max_inodes - inodes;
223771fe804bSLee Schermerhorn 
223871fe804bSLee Schermerhorn 	mpol_put(sbinfo->mpol);
223971fe804bSLee Schermerhorn 	sbinfo->mpol        = config.mpol;	/* transfers initial ref */
22400edd73b3SHugh Dickins out:
22410edd73b3SHugh Dickins 	spin_unlock(&sbinfo->stat_lock);
22420edd73b3SHugh Dickins 	return error;
22431da177e4SLinus Torvalds }
2244680d794bSakpm@linux-foundation.org 
2245680d794bSakpm@linux-foundation.org static int shmem_show_options(struct seq_file *seq, struct vfsmount *vfs)
2246680d794bSakpm@linux-foundation.org {
2247680d794bSakpm@linux-foundation.org 	struct shmem_sb_info *sbinfo = SHMEM_SB(vfs->mnt_sb);
2248680d794bSakpm@linux-foundation.org 
2249680d794bSakpm@linux-foundation.org 	if (sbinfo->max_blocks != shmem_default_max_blocks())
2250680d794bSakpm@linux-foundation.org 		seq_printf(seq, ",size=%luk",
2251680d794bSakpm@linux-foundation.org 			sbinfo->max_blocks << (PAGE_CACHE_SHIFT - 10));
2252680d794bSakpm@linux-foundation.org 	if (sbinfo->max_inodes != shmem_default_max_inodes())
2253680d794bSakpm@linux-foundation.org 		seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
2254680d794bSakpm@linux-foundation.org 	if (sbinfo->mode != (S_IRWXUGO | S_ISVTX))
2255680d794bSakpm@linux-foundation.org 		seq_printf(seq, ",mode=%03o", sbinfo->mode);
2256680d794bSakpm@linux-foundation.org 	if (sbinfo->uid != 0)
2257680d794bSakpm@linux-foundation.org 		seq_printf(seq, ",uid=%u", sbinfo->uid);
2258680d794bSakpm@linux-foundation.org 	if (sbinfo->gid != 0)
2259680d794bSakpm@linux-foundation.org 		seq_printf(seq, ",gid=%u", sbinfo->gid);
226071fe804bSLee Schermerhorn 	shmem_show_mpol(seq, sbinfo->mpol);
2261680d794bSakpm@linux-foundation.org 	return 0;
2262680d794bSakpm@linux-foundation.org }
2263680d794bSakpm@linux-foundation.org #endif /* CONFIG_TMPFS */
22641da177e4SLinus Torvalds 
22651da177e4SLinus Torvalds static void shmem_put_super(struct super_block *sb)
22661da177e4SLinus Torvalds {
22671da177e4SLinus Torvalds 	kfree(sb->s_fs_info);
22681da177e4SLinus Torvalds 	sb->s_fs_info = NULL;
22691da177e4SLinus Torvalds }
22701da177e4SLinus Torvalds 
22711da177e4SLinus Torvalds static int shmem_fill_super(struct super_block *sb,
22721da177e4SLinus Torvalds 			    void *data, int silent)
22731da177e4SLinus Torvalds {
22741da177e4SLinus Torvalds 	struct inode *inode;
22751da177e4SLinus Torvalds 	struct dentry *root;
22760edd73b3SHugh Dickins 	struct shmem_sb_info *sbinfo;
2277680d794bSakpm@linux-foundation.org 	int err = -ENOMEM;
2278680d794bSakpm@linux-foundation.org 
2279680d794bSakpm@linux-foundation.org 	/* Round up to L1_CACHE_BYTES to resist false sharing */
2280680d794bSakpm@linux-foundation.org 	sbinfo = kmalloc(max((int)sizeof(struct shmem_sb_info),
2281680d794bSakpm@linux-foundation.org 				L1_CACHE_BYTES), GFP_KERNEL);
2282680d794bSakpm@linux-foundation.org 	if (!sbinfo)
2283680d794bSakpm@linux-foundation.org 		return -ENOMEM;
2284680d794bSakpm@linux-foundation.org 
2285680d794bSakpm@linux-foundation.org 	sbinfo->max_blocks = 0;
2286680d794bSakpm@linux-foundation.org 	sbinfo->max_inodes = 0;
2287680d794bSakpm@linux-foundation.org 	sbinfo->mode = S_IRWXUGO | S_ISVTX;
228876aac0e9SDavid Howells 	sbinfo->uid = current_fsuid();
228976aac0e9SDavid Howells 	sbinfo->gid = current_fsgid();
229071fe804bSLee Schermerhorn 	sbinfo->mpol = NULL;
2291680d794bSakpm@linux-foundation.org 	sb->s_fs_info = sbinfo;
22921da177e4SLinus Torvalds 
22930edd73b3SHugh Dickins #ifdef CONFIG_TMPFS
22941da177e4SLinus Torvalds 	/*
22951da177e4SLinus Torvalds 	 * Per default we only allow half of the physical ram per
22961da177e4SLinus Torvalds 	 * tmpfs instance, limiting inodes to one per page of lowmem;
22971da177e4SLinus Torvalds 	 * but the internal instance is left unlimited.
22981da177e4SLinus Torvalds 	 */
22991da177e4SLinus Torvalds 	if (!(sb->s_flags & MS_NOUSER)) {
2300680d794bSakpm@linux-foundation.org 		sbinfo->max_blocks = shmem_default_max_blocks();
2301680d794bSakpm@linux-foundation.org 		sbinfo->max_inodes = shmem_default_max_inodes();
2302680d794bSakpm@linux-foundation.org 		if (shmem_parse_options(data, sbinfo, false)) {
2303680d794bSakpm@linux-foundation.org 			err = -EINVAL;
2304680d794bSakpm@linux-foundation.org 			goto failed;
2305680d794bSakpm@linux-foundation.org 		}
23061da177e4SLinus Torvalds 	}
230791828a40SDavid M. Grimes 	sb->s_export_op = &shmem_export_ops;
23080edd73b3SHugh Dickins #else
23090edd73b3SHugh Dickins 	sb->s_flags |= MS_NOUSER;
23100edd73b3SHugh Dickins #endif
23111da177e4SLinus Torvalds 
23121da177e4SLinus Torvalds 	spin_lock_init(&sbinfo->stat_lock);
2313680d794bSakpm@linux-foundation.org 	sbinfo->free_blocks = sbinfo->max_blocks;
2314680d794bSakpm@linux-foundation.org 	sbinfo->free_inodes = sbinfo->max_inodes;
23151da177e4SLinus Torvalds 
23161da177e4SLinus Torvalds 	sb->s_maxbytes = SHMEM_MAX_BYTES;
23171da177e4SLinus Torvalds 	sb->s_blocksize = PAGE_CACHE_SIZE;
23181da177e4SLinus Torvalds 	sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
23191da177e4SLinus Torvalds 	sb->s_magic = TMPFS_MAGIC;
23201da177e4SLinus Torvalds 	sb->s_op = &shmem_ops;
2321cfd95a9cSRobin H. Johnson 	sb->s_time_gran = 1;
232239f0247dSAndreas Gruenbacher #ifdef CONFIG_TMPFS_POSIX_ACL
232339f0247dSAndreas Gruenbacher 	sb->s_xattr = shmem_xattr_handlers;
232439f0247dSAndreas Gruenbacher 	sb->s_flags |= MS_POSIXACL;
232539f0247dSAndreas Gruenbacher #endif
23260edd73b3SHugh Dickins 
2327680d794bSakpm@linux-foundation.org 	inode = shmem_get_inode(sb, S_IFDIR | sbinfo->mode, 0);
23281da177e4SLinus Torvalds 	if (!inode)
23291da177e4SLinus Torvalds 		goto failed;
2330680d794bSakpm@linux-foundation.org 	inode->i_uid = sbinfo->uid;
2331680d794bSakpm@linux-foundation.org 	inode->i_gid = sbinfo->gid;
23321da177e4SLinus Torvalds 	root = d_alloc_root(inode);
23331da177e4SLinus Torvalds 	if (!root)
23341da177e4SLinus Torvalds 		goto failed_iput;
23351da177e4SLinus Torvalds 	sb->s_root = root;
23361da177e4SLinus Torvalds 	return 0;
23371da177e4SLinus Torvalds 
23381da177e4SLinus Torvalds failed_iput:
23391da177e4SLinus Torvalds 	iput(inode);
23401da177e4SLinus Torvalds failed:
23411da177e4SLinus Torvalds 	shmem_put_super(sb);
23421da177e4SLinus Torvalds 	return err;
23431da177e4SLinus Torvalds }
23441da177e4SLinus Torvalds 
2345fcc234f8SPekka Enberg static struct kmem_cache *shmem_inode_cachep;
23461da177e4SLinus Torvalds 
23471da177e4SLinus Torvalds static struct inode *shmem_alloc_inode(struct super_block *sb)
23481da177e4SLinus Torvalds {
23491da177e4SLinus Torvalds 	struct shmem_inode_info *p;
2350e94b1766SChristoph Lameter 	p = (struct shmem_inode_info *)kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL);
23511da177e4SLinus Torvalds 	if (!p)
23521da177e4SLinus Torvalds 		return NULL;
23531da177e4SLinus Torvalds 	return &p->vfs_inode;
23541da177e4SLinus Torvalds }
23551da177e4SLinus Torvalds 
23561da177e4SLinus Torvalds static void shmem_destroy_inode(struct inode *inode)
23571da177e4SLinus Torvalds {
23581da177e4SLinus Torvalds 	if ((inode->i_mode & S_IFMT) == S_IFREG) {
23591da177e4SLinus Torvalds 		/* only struct inode is valid if it's an inline symlink */
23601da177e4SLinus Torvalds 		mpol_free_shared_policy(&SHMEM_I(inode)->policy);
23611da177e4SLinus Torvalds 	}
236239f0247dSAndreas Gruenbacher 	shmem_acl_destroy_inode(inode);
23631da177e4SLinus Torvalds 	kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
23641da177e4SLinus Torvalds }
23651da177e4SLinus Torvalds 
236651cc5068SAlexey Dobriyan static void init_once(void *foo)
23671da177e4SLinus Torvalds {
23681da177e4SLinus Torvalds 	struct shmem_inode_info *p = (struct shmem_inode_info *) foo;
23691da177e4SLinus Torvalds 
23701da177e4SLinus Torvalds 	inode_init_once(&p->vfs_inode);
237139f0247dSAndreas Gruenbacher #ifdef CONFIG_TMPFS_POSIX_ACL
237239f0247dSAndreas Gruenbacher 	p->i_acl = NULL;
237339f0247dSAndreas Gruenbacher 	p->i_default_acl = NULL;
237439f0247dSAndreas Gruenbacher #endif
23751da177e4SLinus Torvalds }
23761da177e4SLinus Torvalds 
23771da177e4SLinus Torvalds static int init_inodecache(void)
23781da177e4SLinus Torvalds {
23791da177e4SLinus Torvalds 	shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
23801da177e4SLinus Torvalds 				sizeof(struct shmem_inode_info),
2381040b5c6fSAlexey Dobriyan 				0, SLAB_PANIC, init_once);
23821da177e4SLinus Torvalds 	return 0;
23831da177e4SLinus Torvalds }
23841da177e4SLinus Torvalds 
23851da177e4SLinus Torvalds static void destroy_inodecache(void)
23861da177e4SLinus Torvalds {
23871a1d92c1SAlexey Dobriyan 	kmem_cache_destroy(shmem_inode_cachep);
23881da177e4SLinus Torvalds }
23891da177e4SLinus Torvalds 
2390f5e54d6eSChristoph Hellwig static const struct address_space_operations shmem_aops = {
23911da177e4SLinus Torvalds 	.writepage	= shmem_writepage,
239276719325SKen Chen 	.set_page_dirty	= __set_page_dirty_no_writeback,
23931da177e4SLinus Torvalds #ifdef CONFIG_TMPFS
2394ae976416SHugh Dickins 	.readpage	= shmem_readpage,
2395800d15a5SNick Piggin 	.write_begin	= shmem_write_begin,
2396800d15a5SNick Piggin 	.write_end	= shmem_write_end,
23971da177e4SLinus Torvalds #endif
2398304dbdb7SLee Schermerhorn 	.migratepage	= migrate_page,
23991da177e4SLinus Torvalds };
24001da177e4SLinus Torvalds 
240115ad7cdcSHelge Deller static const struct file_operations shmem_file_operations = {
24021da177e4SLinus Torvalds 	.mmap		= shmem_mmap,
24031da177e4SLinus Torvalds #ifdef CONFIG_TMPFS
24041da177e4SLinus Torvalds 	.llseek		= generic_file_llseek,
2405bcd78e49SHugh Dickins 	.read		= do_sync_read,
24065402b976SHugh Dickins 	.write		= do_sync_write,
2407bcd78e49SHugh Dickins 	.aio_read	= shmem_file_aio_read,
24085402b976SHugh Dickins 	.aio_write	= generic_file_aio_write,
24091da177e4SLinus Torvalds 	.fsync		= simple_sync_file,
2410ae976416SHugh Dickins 	.splice_read	= generic_file_splice_read,
2411ae976416SHugh Dickins 	.splice_write	= generic_file_splice_write,
24121da177e4SLinus Torvalds #endif
24131da177e4SLinus Torvalds };
24141da177e4SLinus Torvalds 
241592e1d5beSArjan van de Ven static const struct inode_operations shmem_inode_operations = {
24161da177e4SLinus Torvalds 	.truncate	= shmem_truncate,
24171da177e4SLinus Torvalds 	.setattr	= shmem_notify_change,
2418f6b3ec23SBadari Pulavarty 	.truncate_range	= shmem_truncate_range,
241939f0247dSAndreas Gruenbacher #ifdef CONFIG_TMPFS_POSIX_ACL
242039f0247dSAndreas Gruenbacher 	.setxattr	= generic_setxattr,
242139f0247dSAndreas Gruenbacher 	.getxattr	= generic_getxattr,
242239f0247dSAndreas Gruenbacher 	.listxattr	= generic_listxattr,
242339f0247dSAndreas Gruenbacher 	.removexattr	= generic_removexattr,
242439f0247dSAndreas Gruenbacher 	.permission	= shmem_permission,
242539f0247dSAndreas Gruenbacher #endif
242639f0247dSAndreas Gruenbacher 
24271da177e4SLinus Torvalds };
24281da177e4SLinus Torvalds 
242992e1d5beSArjan van de Ven static const struct inode_operations shmem_dir_inode_operations = {
24301da177e4SLinus Torvalds #ifdef CONFIG_TMPFS
24311da177e4SLinus Torvalds 	.create		= shmem_create,
24321da177e4SLinus Torvalds 	.lookup		= simple_lookup,
24331da177e4SLinus Torvalds 	.link		= shmem_link,
24341da177e4SLinus Torvalds 	.unlink		= shmem_unlink,
24351da177e4SLinus Torvalds 	.symlink	= shmem_symlink,
24361da177e4SLinus Torvalds 	.mkdir		= shmem_mkdir,
24371da177e4SLinus Torvalds 	.rmdir		= shmem_rmdir,
24381da177e4SLinus Torvalds 	.mknod		= shmem_mknod,
24391da177e4SLinus Torvalds 	.rename		= shmem_rename,
24401da177e4SLinus Torvalds #endif
244139f0247dSAndreas Gruenbacher #ifdef CONFIG_TMPFS_POSIX_ACL
244239f0247dSAndreas Gruenbacher 	.setattr	= shmem_notify_change,
244339f0247dSAndreas Gruenbacher 	.setxattr	= generic_setxattr,
244439f0247dSAndreas Gruenbacher 	.getxattr	= generic_getxattr,
244539f0247dSAndreas Gruenbacher 	.listxattr	= generic_listxattr,
244639f0247dSAndreas Gruenbacher 	.removexattr	= generic_removexattr,
244739f0247dSAndreas Gruenbacher 	.permission	= shmem_permission,
244839f0247dSAndreas Gruenbacher #endif
244939f0247dSAndreas Gruenbacher };
245039f0247dSAndreas Gruenbacher 
245192e1d5beSArjan van de Ven static const struct inode_operations shmem_special_inode_operations = {
245239f0247dSAndreas Gruenbacher #ifdef CONFIG_TMPFS_POSIX_ACL
245339f0247dSAndreas Gruenbacher 	.setattr	= shmem_notify_change,
245439f0247dSAndreas Gruenbacher 	.setxattr	= generic_setxattr,
245539f0247dSAndreas Gruenbacher 	.getxattr	= generic_getxattr,
245639f0247dSAndreas Gruenbacher 	.listxattr	= generic_listxattr,
245739f0247dSAndreas Gruenbacher 	.removexattr	= generic_removexattr,
245839f0247dSAndreas Gruenbacher 	.permission	= shmem_permission,
245939f0247dSAndreas Gruenbacher #endif
24601da177e4SLinus Torvalds };
24611da177e4SLinus Torvalds 
2462759b9775SHugh Dickins static const struct super_operations shmem_ops = {
24631da177e4SLinus Torvalds 	.alloc_inode	= shmem_alloc_inode,
24641da177e4SLinus Torvalds 	.destroy_inode	= shmem_destroy_inode,
24651da177e4SLinus Torvalds #ifdef CONFIG_TMPFS
24661da177e4SLinus Torvalds 	.statfs		= shmem_statfs,
24671da177e4SLinus Torvalds 	.remount_fs	= shmem_remount_fs,
2468680d794bSakpm@linux-foundation.org 	.show_options	= shmem_show_options,
24691da177e4SLinus Torvalds #endif
24701da177e4SLinus Torvalds 	.delete_inode	= shmem_delete_inode,
24711da177e4SLinus Torvalds 	.drop_inode	= generic_delete_inode,
24721da177e4SLinus Torvalds 	.put_super	= shmem_put_super,
24731da177e4SLinus Torvalds };
24741da177e4SLinus Torvalds 
24751da177e4SLinus Torvalds static struct vm_operations_struct shmem_vm_ops = {
247654cb8821SNick Piggin 	.fault		= shmem_fault,
24771da177e4SLinus Torvalds #ifdef CONFIG_NUMA
24781da177e4SLinus Torvalds 	.set_policy     = shmem_set_policy,
24791da177e4SLinus Torvalds 	.get_policy     = shmem_get_policy,
24801da177e4SLinus Torvalds #endif
24811da177e4SLinus Torvalds };
24821da177e4SLinus Torvalds 
24831da177e4SLinus Torvalds 
2484454e2398SDavid Howells static int shmem_get_sb(struct file_system_type *fs_type,
2485454e2398SDavid Howells 	int flags, const char *dev_name, void *data, struct vfsmount *mnt)
24861da177e4SLinus Torvalds {
2487454e2398SDavid Howells 	return get_sb_nodev(fs_type, flags, data, shmem_fill_super, mnt);
24881da177e4SLinus Torvalds }
24891da177e4SLinus Torvalds 
24901da177e4SLinus Torvalds static struct file_system_type tmpfs_fs_type = {
24911da177e4SLinus Torvalds 	.owner		= THIS_MODULE,
24921da177e4SLinus Torvalds 	.name		= "tmpfs",
24931da177e4SLinus Torvalds 	.get_sb		= shmem_get_sb,
24941da177e4SLinus Torvalds 	.kill_sb	= kill_litter_super,
24951da177e4SLinus Torvalds };
24961da177e4SLinus Torvalds 
24971da177e4SLinus Torvalds static int __init init_tmpfs(void)
24981da177e4SLinus Torvalds {
24991da177e4SLinus Torvalds 	int error;
25001da177e4SLinus Torvalds 
2501e0bf68ddSPeter Zijlstra 	error = bdi_init(&shmem_backing_dev_info);
2502e0bf68ddSPeter Zijlstra 	if (error)
2503e0bf68ddSPeter Zijlstra 		goto out4;
2504e0bf68ddSPeter Zijlstra 
25051da177e4SLinus Torvalds 	error = init_inodecache();
25061da177e4SLinus Torvalds 	if (error)
25071da177e4SLinus Torvalds 		goto out3;
25081da177e4SLinus Torvalds 
25091da177e4SLinus Torvalds 	error = register_filesystem(&tmpfs_fs_type);
25101da177e4SLinus Torvalds 	if (error) {
25111da177e4SLinus Torvalds 		printk(KERN_ERR "Could not register tmpfs\n");
25121da177e4SLinus Torvalds 		goto out2;
25131da177e4SLinus Torvalds 	}
251495dc112aSGreg Kroah-Hartman 
25151f5ce9e9STrond Myklebust 	shm_mnt = vfs_kern_mount(&tmpfs_fs_type, MS_NOUSER,
25161da177e4SLinus Torvalds 				tmpfs_fs_type.name, NULL);
25171da177e4SLinus Torvalds 	if (IS_ERR(shm_mnt)) {
25181da177e4SLinus Torvalds 		error = PTR_ERR(shm_mnt);
25191da177e4SLinus Torvalds 		printk(KERN_ERR "Could not kern_mount tmpfs\n");
25201da177e4SLinus Torvalds 		goto out1;
25211da177e4SLinus Torvalds 	}
25221da177e4SLinus Torvalds 	return 0;
25231da177e4SLinus Torvalds 
25241da177e4SLinus Torvalds out1:
25251da177e4SLinus Torvalds 	unregister_filesystem(&tmpfs_fs_type);
25261da177e4SLinus Torvalds out2:
25271da177e4SLinus Torvalds 	destroy_inodecache();
25281da177e4SLinus Torvalds out3:
2529e0bf68ddSPeter Zijlstra 	bdi_destroy(&shmem_backing_dev_info);
2530e0bf68ddSPeter Zijlstra out4:
25311da177e4SLinus Torvalds 	shm_mnt = ERR_PTR(error);
25321da177e4SLinus Torvalds 	return error;
25331da177e4SLinus Torvalds }
2534*853ac43aSMatt Mackall 
2535*853ac43aSMatt Mackall #else /* !CONFIG_SHMEM */
2536*853ac43aSMatt Mackall 
2537*853ac43aSMatt Mackall /*
2538*853ac43aSMatt Mackall  * tiny-shmem: simple shmemfs and tmpfs using ramfs code
2539*853ac43aSMatt Mackall  *
2540*853ac43aSMatt Mackall  * This is intended for small system where the benefits of the full
2541*853ac43aSMatt Mackall  * shmem code (swap-backed and resource-limited) are outweighed by
2542*853ac43aSMatt Mackall  * their complexity. On systems without swap this code should be
2543*853ac43aSMatt Mackall  * effectively equivalent, but much lighter weight.
2544*853ac43aSMatt Mackall  */
2545*853ac43aSMatt Mackall 
2546*853ac43aSMatt Mackall #include <linux/ramfs.h>
2547*853ac43aSMatt Mackall 
2548*853ac43aSMatt Mackall static struct file_system_type tmpfs_fs_type = {
2549*853ac43aSMatt Mackall 	.name		= "tmpfs",
2550*853ac43aSMatt Mackall 	.get_sb		= ramfs_get_sb,
2551*853ac43aSMatt Mackall 	.kill_sb	= kill_litter_super,
2552*853ac43aSMatt Mackall };
2553*853ac43aSMatt Mackall 
2554*853ac43aSMatt Mackall static int __init init_tmpfs(void)
2555*853ac43aSMatt Mackall {
2556*853ac43aSMatt Mackall 	BUG_ON(register_filesystem(&tmpfs_fs_type) != 0);
2557*853ac43aSMatt Mackall 
2558*853ac43aSMatt Mackall 	shm_mnt = kern_mount(&tmpfs_fs_type);
2559*853ac43aSMatt Mackall 	BUG_ON(IS_ERR(shm_mnt));
2560*853ac43aSMatt Mackall 
2561*853ac43aSMatt Mackall 	return 0;
2562*853ac43aSMatt Mackall }
2563*853ac43aSMatt Mackall 
2564*853ac43aSMatt Mackall int shmem_unuse(swp_entry_t entry, struct page *page)
2565*853ac43aSMatt Mackall {
2566*853ac43aSMatt Mackall 	return 0;
2567*853ac43aSMatt Mackall }
2568*853ac43aSMatt Mackall 
2569*853ac43aSMatt Mackall #define shmem_file_operations ramfs_file_operations
2570*853ac43aSMatt Mackall #define shmem_vm_ops generic_file_vm_ops
2571*853ac43aSMatt Mackall #define shmem_get_inode ramfs_get_inode
2572*853ac43aSMatt Mackall #define shmem_acct_size(a, b) 0
2573*853ac43aSMatt Mackall #define shmem_unacct_size(a, b) do {} while (0)
2574*853ac43aSMatt Mackall #define SHMEM_MAX_BYTES LLONG_MAX
2575*853ac43aSMatt Mackall 
2576*853ac43aSMatt Mackall #endif /* CONFIG_SHMEM */
2577*853ac43aSMatt Mackall 
2578*853ac43aSMatt Mackall /* common code */
25791da177e4SLinus Torvalds 
258046711810SRandy Dunlap /**
25811da177e4SLinus Torvalds  * shmem_file_setup - get an unlinked file living in tmpfs
25821da177e4SLinus Torvalds  * @name: name for dentry (to be seen in /proc/<pid>/maps
25831da177e4SLinus Torvalds  * @size: size to be set for the file
258446711810SRandy Dunlap  * @flags: vm_flags
25851da177e4SLinus Torvalds  */
25861da177e4SLinus Torvalds struct file *shmem_file_setup(char *name, loff_t size, unsigned long flags)
25871da177e4SLinus Torvalds {
25881da177e4SLinus Torvalds 	int error;
25891da177e4SLinus Torvalds 	struct file *file;
25901da177e4SLinus Torvalds 	struct inode *inode;
25911da177e4SLinus Torvalds 	struct dentry *dentry, *root;
25921da177e4SLinus Torvalds 	struct qstr this;
25931da177e4SLinus Torvalds 
25941da177e4SLinus Torvalds 	if (IS_ERR(shm_mnt))
25951da177e4SLinus Torvalds 		return (void *)shm_mnt;
25961da177e4SLinus Torvalds 
25971da177e4SLinus Torvalds 	if (size < 0 || size > SHMEM_MAX_BYTES)
25981da177e4SLinus Torvalds 		return ERR_PTR(-EINVAL);
25991da177e4SLinus Torvalds 
26001da177e4SLinus Torvalds 	if (shmem_acct_size(flags, size))
26011da177e4SLinus Torvalds 		return ERR_PTR(-ENOMEM);
26021da177e4SLinus Torvalds 
26031da177e4SLinus Torvalds 	error = -ENOMEM;
26041da177e4SLinus Torvalds 	this.name = name;
26051da177e4SLinus Torvalds 	this.len = strlen(name);
26061da177e4SLinus Torvalds 	this.hash = 0; /* will go */
26071da177e4SLinus Torvalds 	root = shm_mnt->mnt_root;
26081da177e4SLinus Torvalds 	dentry = d_alloc(root, &this);
26091da177e4SLinus Torvalds 	if (!dentry)
26101da177e4SLinus Torvalds 		goto put_memory;
26111da177e4SLinus Torvalds 
26121da177e4SLinus Torvalds 	error = -ENFILE;
26131da177e4SLinus Torvalds 	file = get_empty_filp();
26141da177e4SLinus Torvalds 	if (!file)
26151da177e4SLinus Torvalds 		goto put_dentry;
26161da177e4SLinus Torvalds 
26171da177e4SLinus Torvalds 	error = -ENOSPC;
26181da177e4SLinus Torvalds 	inode = shmem_get_inode(root->d_sb, S_IFREG | S_IRWXUGO, 0);
26191da177e4SLinus Torvalds 	if (!inode)
26201da177e4SLinus Torvalds 		goto close_file;
26211da177e4SLinus Torvalds 
2622*853ac43aSMatt Mackall #ifdef CONFIG_SHMEM
26231da177e4SLinus Torvalds 	SHMEM_I(inode)->flags = flags & VM_ACCOUNT;
2624*853ac43aSMatt Mackall #endif
26251da177e4SLinus Torvalds 	d_instantiate(dentry, inode);
26261da177e4SLinus Torvalds 	inode->i_size = size;
26271da177e4SLinus Torvalds 	inode->i_nlink = 0;	/* It is unlinked */
2628ce8d2cdfSDave Hansen 	init_file(file, shm_mnt, dentry, FMODE_WRITE | FMODE_READ,
2629ce8d2cdfSDave Hansen 		  &shmem_file_operations);
2630*853ac43aSMatt Mackall 
2631*853ac43aSMatt Mackall #ifndef CONFIG_MMU
2632*853ac43aSMatt Mackall 	error = ramfs_nommu_expand_for_mapping(inode, size);
2633*853ac43aSMatt Mackall 	if (error)
2634*853ac43aSMatt Mackall 		goto close_file;
2635*853ac43aSMatt Mackall #endif
26361da177e4SLinus Torvalds 	return file;
26371da177e4SLinus Torvalds 
26381da177e4SLinus Torvalds close_file:
26391da177e4SLinus Torvalds 	put_filp(file);
26401da177e4SLinus Torvalds put_dentry:
26411da177e4SLinus Torvalds 	dput(dentry);
26421da177e4SLinus Torvalds put_memory:
26431da177e4SLinus Torvalds 	shmem_unacct_size(flags, size);
26441da177e4SLinus Torvalds 	return ERR_PTR(error);
26451da177e4SLinus Torvalds }
2646395e0ddcSKeith Packard EXPORT_SYMBOL_GPL(shmem_file_setup);
26471da177e4SLinus Torvalds 
264846711810SRandy Dunlap /**
26491da177e4SLinus Torvalds  * shmem_zero_setup - setup a shared anonymous mapping
26501da177e4SLinus Torvalds  * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
26511da177e4SLinus Torvalds  */
26521da177e4SLinus Torvalds int shmem_zero_setup(struct vm_area_struct *vma)
26531da177e4SLinus Torvalds {
26541da177e4SLinus Torvalds 	struct file *file;
26551da177e4SLinus Torvalds 	loff_t size = vma->vm_end - vma->vm_start;
26561da177e4SLinus Torvalds 
26571da177e4SLinus Torvalds 	file = shmem_file_setup("dev/zero", size, vma->vm_flags);
26581da177e4SLinus Torvalds 	if (IS_ERR(file))
26591da177e4SLinus Torvalds 		return PTR_ERR(file);
26601da177e4SLinus Torvalds 
26611da177e4SLinus Torvalds 	if (vma->vm_file)
26621da177e4SLinus Torvalds 		fput(vma->vm_file);
26631da177e4SLinus Torvalds 	vma->vm_file = file;
26641da177e4SLinus Torvalds 	vma->vm_ops = &shmem_vm_ops;
26651da177e4SLinus Torvalds 	return 0;
26661da177e4SLinus Torvalds }
2667*853ac43aSMatt Mackall 
2668*853ac43aSMatt Mackall module_init(init_tmpfs)
2669