blob: 45c26476f0fca9c3a94642d4c07e847379365765 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Resizable virtual memory filesystem for Linux.
3 *
4 * Copyright (C) 2000 Linus Torvalds.
5 * 2000 Transmeta Corp.
6 * 2000-2001 Christoph Rohland
7 * 2000-2001 SAP AG
8 * 2002 Red Hat Inc.
Hugh Dickins6922c0c2011-08-03 16:21:25 -07009 * Copyright (C) 2002-2011 Hugh Dickins.
10 * Copyright (C) 2011 Google Inc.
Hugh Dickins0edd73b2005-06-21 17:15:04 -070011 * Copyright (C) 2002-2005 VERITAS Software Corporation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Copyright (C) 2004 Andi Kleen, SuSE Labs
13 *
14 * Extended attribute support for tmpfs:
15 * Copyright (c) 2004, Luke Kenneth Casson Leighton <lkcl@lkcl.net>
16 * Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
17 *
Matt Mackall853ac432009-01-06 14:40:20 -080018 * tiny-shmem:
19 * Copyright (c) 2004, 2008 Matt Mackall <mpm@selenic.com>
20 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * This file is released under the GPL.
22 */
23
Matt Mackall853ac432009-01-06 14:40:20 -080024#include <linux/fs.h>
25#include <linux/init.h>
26#include <linux/vfs.h>
27#include <linux/mount.h>
Hugh Dickinscaefba12009-04-13 14:40:12 -070028#include <linux/pagemap.h>
Matt Mackall853ac432009-01-06 14:40:20 -080029#include <linux/file.h>
30#include <linux/mm.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040031#include <linux/export.h>
Matt Mackall853ac432009-01-06 14:40:20 -080032#include <linux/swap.h>
33
34static struct vfsmount *shm_mnt;
35
36#ifdef CONFIG_SHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/*
38 * This virtual memory filesystem is heavily based on the ramfs. It
39 * extends ramfs by the ability to use swap and honor resource limits
40 * which makes it a completely usable filesystem.
41 */
42
Andreas Gruenbacher39f02472006-09-29 02:01:35 -070043#include <linux/xattr.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070044#include <linux/exportfs.h>
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010045#include <linux/posix_acl.h>
Andreas Gruenbacher39f02472006-09-29 02:01:35 -070046#include <linux/generic_acl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/string.h>
49#include <linux/slab.h>
50#include <linux/backing-dev.h>
51#include <linux/shmem_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/blkdev.h>
Hugh Dickinsbda97ea2011-08-03 16:21:21 -070054#include <linux/pagevec.h>
Hugh Dickins41ffe5d2011-08-03 16:21:21 -070055#include <linux/percpu_counter.h>
Hugh Dickins708e3502011-07-25 17:12:32 -070056#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/security.h>
58#include <linux/swapops.h>
59#include <linux/mempolicy.h>
60#include <linux/namei.h>
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +000061#include <linux/ctype.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070062#include <linux/migrate.h>
Christoph Lameterc1f60a52006-09-25 23:31:11 -070063#include <linux/highmem.h>
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -080064#include <linux/seq_file.h>
Mimi Zohar92562922008-10-07 14:00:12 -040065#include <linux/magic.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <asm/pgtable.h>
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define BLOCKS_PER_PAGE (PAGE_CACHE_SIZE/512)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define VM_ACCT(size) (PAGE_CACHE_ALIGN(size) >> PAGE_SHIFT)
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/* Pretend that each entry is of this size in directory's i_size */
74#define BOGO_DIRENT_SIZE 20
75
Hugh Dickins69f07ec2011-08-03 16:21:26 -070076/* Symlink up to this size is kmalloc'ed instead of using a swappable page */
77#define SHORT_SYMLINK_LEN 128
78
Eric Parisb09e0fa2011-05-24 17:12:39 -070079struct shmem_xattr {
80 struct list_head list; /* anchored by shmem_inode_info->xattr_list */
81 char *name; /* xattr name */
82 size_t size;
83 char value[0];
84};
85
Hugh Dickins285b2c42011-08-03 16:21:20 -070086/* Flag allocation requirements to shmem_getpage */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087enum sgp_type {
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 SGP_READ, /* don't exceed i_size, don't allocate page */
89 SGP_CACHE, /* don't exceed i_size, may allocate page */
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -080090 SGP_DIRTY, /* like SGP_CACHE, but set new page dirty */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 SGP_WRITE, /* may exceed i_size, may allocate page */
92};
93
Andrew Mortonb76db7352008-02-08 04:21:49 -080094#ifdef CONFIG_TMPFS
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -080095static unsigned long shmem_default_max_blocks(void)
96{
97 return totalram_pages / 2;
98}
99
100static unsigned long shmem_default_max_inodes(void)
101{
102 return min(totalram_pages - totalhigh_pages, totalram_pages / 2);
103}
Andrew Mortonb76db7352008-02-08 04:21:49 -0800104#endif
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800105
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700106static bool shmem_should_replace_page(struct page *page, gfp_t gfp);
107static int shmem_replace_page(struct page **pagep, gfp_t gfp,
108 struct shmem_inode_info *info, pgoff_t index);
Hugh Dickins68da9f02011-07-25 17:12:34 -0700109static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
110 struct page **pagep, enum sgp_type sgp, gfp_t gfp, int *fault_type);
111
112static inline int shmem_getpage(struct inode *inode, pgoff_t index,
113 struct page **pagep, enum sgp_type sgp, int *fault_type)
114{
115 return shmem_getpage_gfp(inode, index, pagep, sgp,
116 mapping_gfp_mask(inode->i_mapping), fault_type);
117}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
120{
121 return sb->s_fs_info;
122}
123
124/*
125 * shmem_file_setup pre-accounts the whole fixed size of a VM object,
126 * for shared memory and for shared anonymous (/dev/zero) mappings
127 * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
128 * consistent with the pre-accounting of private mappings ...
129 */
130static inline int shmem_acct_size(unsigned long flags, loff_t size)
131{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000132 return (flags & VM_NORESERVE) ?
Al Viro191c5422012-02-13 03:58:52 +0000133 0 : security_vm_enough_memory_mm(current->mm, VM_ACCT(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
136static inline void shmem_unacct_size(unsigned long flags, loff_t size)
137{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000138 if (!(flags & VM_NORESERVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 vm_unacct_memory(VM_ACCT(size));
140}
141
142/*
143 * ... whereas tmpfs objects are accounted incrementally as
144 * pages are allocated, in order to allow huge sparse files.
145 * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM,
146 * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
147 */
148static inline int shmem_acct_block(unsigned long flags)
149{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000150 return (flags & VM_NORESERVE) ?
Al Viro191c5422012-02-13 03:58:52 +0000151 security_vm_enough_memory_mm(current->mm, VM_ACCT(PAGE_CACHE_SIZE)) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
154static inline void shmem_unacct_blocks(unsigned long flags, long pages)
155{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000156 if (flags & VM_NORESERVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 vm_unacct_memory(pages * VM_ACCT(PAGE_CACHE_SIZE));
158}
159
Hugh Dickins759b9772007-03-05 00:30:28 -0800160static const struct super_operations shmem_ops;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700161static const struct address_space_operations shmem_aops;
Helge Deller15ad7cd2006-12-06 20:40:36 -0800162static const struct file_operations shmem_file_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800163static const struct inode_operations shmem_inode_operations;
164static const struct inode_operations shmem_dir_inode_operations;
165static const struct inode_operations shmem_special_inode_operations;
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +0400166static const struct vm_operations_struct shmem_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -0700168static struct backing_dev_info shmem_backing_dev_info __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 .ra_pages = 0, /* No readahead */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700170 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK | BDI_CAP_SWAP_BACKED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171};
172
173static LIST_HEAD(shmem_swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800174static DEFINE_MUTEX(shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Pavel Emelyanov5b04c682008-02-04 22:28:47 -0800176static int shmem_reserve_inode(struct super_block *sb)
177{
178 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
179 if (sbinfo->max_inodes) {
180 spin_lock(&sbinfo->stat_lock);
181 if (!sbinfo->free_inodes) {
182 spin_unlock(&sbinfo->stat_lock);
183 return -ENOSPC;
184 }
185 sbinfo->free_inodes--;
186 spin_unlock(&sbinfo->stat_lock);
187 }
188 return 0;
189}
190
191static void shmem_free_inode(struct super_block *sb)
192{
193 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
194 if (sbinfo->max_inodes) {
195 spin_lock(&sbinfo->stat_lock);
196 sbinfo->free_inodes++;
197 spin_unlock(&sbinfo->stat_lock);
198 }
199}
200
Randy Dunlap46711812008-03-19 17:00:41 -0700201/**
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700202 * shmem_recalc_inode - recalculate the block usage of an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 * @inode: inode to recalc
204 *
205 * We have to calculate the free blocks since the mm can drop
206 * undirtied hole pages behind our back.
207 *
208 * But normally info->alloced == inode->i_mapping->nrpages + info->swapped
209 * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
210 *
211 * It has to be called with the spinlock held.
212 */
213static void shmem_recalc_inode(struct inode *inode)
214{
215 struct shmem_inode_info *info = SHMEM_I(inode);
216 long freed;
217
218 freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
219 if (freed > 0) {
Hugh Dickins54af60422011-08-03 16:21:24 -0700220 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
221 if (sbinfo->max_blocks)
222 percpu_counter_add(&sbinfo->used_blocks, -freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 info->alloced -= freed;
Hugh Dickins54af60422011-08-03 16:21:24 -0700224 inode->i_blocks -= freed * BLOCKS_PER_PAGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 shmem_unacct_blocks(info->flags, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227}
228
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700229/*
230 * Replace item expected in radix tree by a new item, while holding tree lock.
231 */
232static int shmem_radix_tree_replace(struct address_space *mapping,
233 pgoff_t index, void *expected, void *replacement)
234{
235 void **pslot;
236 void *item = NULL;
237
238 VM_BUG_ON(!expected);
239 pslot = radix_tree_lookup_slot(&mapping->page_tree, index);
240 if (pslot)
241 item = radix_tree_deref_slot_protected(pslot,
242 &mapping->tree_lock);
243 if (item != expected)
244 return -ENOENT;
245 if (replacement)
246 radix_tree_replace_slot(pslot, replacement);
247 else
248 radix_tree_delete(&mapping->page_tree, index);
249 return 0;
250}
251
252/*
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700253 * Like add_to_page_cache_locked, but error if expected item has gone.
254 */
255static int shmem_add_to_page_cache(struct page *page,
256 struct address_space *mapping,
257 pgoff_t index, gfp_t gfp, void *expected)
258{
Hugh Dickinsaa3b1892011-08-03 16:21:24 -0700259 int error = 0;
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700260
261 VM_BUG_ON(!PageLocked(page));
262 VM_BUG_ON(!PageSwapBacked(page));
263
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700264 if (!expected)
265 error = radix_tree_preload(gfp & GFP_RECLAIM_MASK);
266 if (!error) {
267 page_cache_get(page);
268 page->mapping = mapping;
269 page->index = index;
270
271 spin_lock_irq(&mapping->tree_lock);
272 if (!expected)
273 error = radix_tree_insert(&mapping->page_tree,
274 index, page);
275 else
276 error = shmem_radix_tree_replace(mapping, index,
277 expected, page);
278 if (!error) {
279 mapping->nrpages++;
280 __inc_zone_page_state(page, NR_FILE_PAGES);
281 __inc_zone_page_state(page, NR_SHMEM);
282 spin_unlock_irq(&mapping->tree_lock);
283 } else {
284 page->mapping = NULL;
285 spin_unlock_irq(&mapping->tree_lock);
286 page_cache_release(page);
287 }
288 if (!expected)
289 radix_tree_preload_end();
290 }
291 if (error)
292 mem_cgroup_uncharge_cache_page(page);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700293 return error;
294}
295
296/*
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700297 * Like delete_from_page_cache, but substitutes swap for page.
298 */
299static void shmem_delete_from_page_cache(struct page *page, void *radswap)
300{
301 struct address_space *mapping = page->mapping;
302 int error;
303
304 spin_lock_irq(&mapping->tree_lock);
305 error = shmem_radix_tree_replace(mapping, page->index, page, radswap);
306 page->mapping = NULL;
307 mapping->nrpages--;
308 __dec_zone_page_state(page, NR_FILE_PAGES);
309 __dec_zone_page_state(page, NR_SHMEM);
310 spin_unlock_irq(&mapping->tree_lock);
311 page_cache_release(page);
312 BUG_ON(error);
313}
314
315/*
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700316 * Like find_get_pages, but collecting swap entries as well as pages.
317 */
318static unsigned shmem_find_get_pages_and_swap(struct address_space *mapping,
319 pgoff_t start, unsigned int nr_pages,
320 struct page **pages, pgoff_t *indices)
321{
322 unsigned int i;
323 unsigned int ret;
324 unsigned int nr_found;
325
326 rcu_read_lock();
327restart:
328 nr_found = radix_tree_gang_lookup_slot(&mapping->page_tree,
329 (void ***)pages, indices, start, nr_pages);
330 ret = 0;
331 for (i = 0; i < nr_found; i++) {
332 struct page *page;
333repeat:
334 page = radix_tree_deref_slot((void **)pages[i]);
335 if (unlikely(!page))
336 continue;
337 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -0700338 if (radix_tree_deref_retry(page))
339 goto restart;
340 /*
341 * Otherwise, we must be storing a swap entry
342 * here as an exceptional entry: so return it
343 * without attempting to raise page count.
344 */
345 goto export;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700346 }
347 if (!page_cache_get_speculative(page))
348 goto repeat;
349
350 /* Has the page moved? */
351 if (unlikely(page != *((void **)pages[i]))) {
352 page_cache_release(page);
353 goto repeat;
354 }
355export:
356 indices[ret] = indices[i];
357 pages[ret] = page;
358 ret++;
359 }
360 if (unlikely(!ret && nr_found))
361 goto restart;
362 rcu_read_unlock();
363 return ret;
364}
365
366/*
367 * Remove swap entry from radix tree, free the swap and its page cache.
368 */
369static int shmem_free_swap(struct address_space *mapping,
370 pgoff_t index, void *radswap)
371{
372 int error;
373
374 spin_lock_irq(&mapping->tree_lock);
375 error = shmem_radix_tree_replace(mapping, index, radswap, NULL);
376 spin_unlock_irq(&mapping->tree_lock);
377 if (!error)
378 free_swap_and_cache(radix_to_swp_entry(radswap));
379 return error;
380}
381
382/*
383 * Pagevec may contain swap entries, so shuffle up pages before releasing.
384 */
Hugh Dickins24513262012-01-20 14:34:21 -0800385static void shmem_deswap_pagevec(struct pagevec *pvec)
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700386{
387 int i, j;
388
389 for (i = 0, j = 0; i < pagevec_count(pvec); i++) {
390 struct page *page = pvec->pages[i];
391 if (!radix_tree_exceptional_entry(page))
392 pvec->pages[j++] = page;
393 }
394 pvec->nr = j;
Hugh Dickins24513262012-01-20 14:34:21 -0800395}
396
397/*
398 * SysV IPC SHM_UNLOCK restore Unevictable pages to their evictable lists.
399 */
400void shmem_unlock_mapping(struct address_space *mapping)
401{
402 struct pagevec pvec;
403 pgoff_t indices[PAGEVEC_SIZE];
404 pgoff_t index = 0;
405
406 pagevec_init(&pvec, 0);
407 /*
408 * Minor point, but we might as well stop if someone else SHM_LOCKs it.
409 */
410 while (!mapping_unevictable(mapping)) {
411 /*
412 * Avoid pagevec_lookup(): find_get_pages() returns 0 as if it
413 * has finished, if it hits a row of PAGEVEC_SIZE swap entries.
414 */
415 pvec.nr = shmem_find_get_pages_and_swap(mapping, index,
416 PAGEVEC_SIZE, pvec.pages, indices);
417 if (!pvec.nr)
418 break;
419 index = indices[pvec.nr - 1] + 1;
420 shmem_deswap_pagevec(&pvec);
421 check_move_unevictable_pages(pvec.pages, pvec.nr);
422 pagevec_release(&pvec);
423 cond_resched();
424 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700425}
426
427/*
428 * Remove range of pages and swap entries from radix tree, and free them.
429 */
Hugh Dickins285b2c42011-08-03 16:21:20 -0700430void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Hugh Dickins285b2c42011-08-03 16:21:20 -0700432 struct address_space *mapping = inode->i_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 struct shmem_inode_info *info = SHMEM_I(inode);
Hugh Dickins285b2c42011-08-03 16:21:20 -0700434 pgoff_t start = (lstart + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700435 unsigned partial = lstart & (PAGE_CACHE_SIZE - 1);
Hugh Dickins285b2c42011-08-03 16:21:20 -0700436 pgoff_t end = (lend >> PAGE_CACHE_SHIFT);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700437 struct pagevec pvec;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700438 pgoff_t indices[PAGEVEC_SIZE];
439 long nr_swaps_freed = 0;
Hugh Dickins285b2c42011-08-03 16:21:20 -0700440 pgoff_t index;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700441 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700443 BUG_ON((lend & (PAGE_CACHE_SIZE - 1)) != (PAGE_CACHE_SIZE - 1));
444
445 pagevec_init(&pvec, 0);
446 index = start;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700447 while (index <= end) {
448 pvec.nr = shmem_find_get_pages_and_swap(mapping, index,
449 min(end - index, (pgoff_t)PAGEVEC_SIZE - 1) + 1,
450 pvec.pages, indices);
451 if (!pvec.nr)
452 break;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700453 mem_cgroup_uncharge_start();
454 for (i = 0; i < pagevec_count(&pvec); i++) {
455 struct page *page = pvec.pages[i];
456
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700457 index = indices[i];
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700458 if (index > end)
459 break;
460
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700461 if (radix_tree_exceptional_entry(page)) {
462 nr_swaps_freed += !shmem_free_swap(mapping,
463 index, page);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700464 continue;
465 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700466
467 if (!trylock_page(page))
468 continue;
469 if (page->mapping == mapping) {
470 VM_BUG_ON(PageWriteback(page));
471 truncate_inode_page(mapping, page);
472 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700473 unlock_page(page);
474 }
Hugh Dickins24513262012-01-20 14:34:21 -0800475 shmem_deswap_pagevec(&pvec);
476 pagevec_release(&pvec);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700477 mem_cgroup_uncharge_end();
478 cond_resched();
479 index++;
480 }
481
482 if (partial) {
483 struct page *page = NULL;
484 shmem_getpage(inode, start - 1, &page, SGP_READ, NULL);
485 if (page) {
486 zero_user_segment(page, partial, PAGE_CACHE_SIZE);
487 set_page_dirty(page);
488 unlock_page(page);
489 page_cache_release(page);
490 }
491 }
492
493 index = start;
494 for ( ; ; ) {
495 cond_resched();
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700496 pvec.nr = shmem_find_get_pages_and_swap(mapping, index,
497 min(end - index, (pgoff_t)PAGEVEC_SIZE - 1) + 1,
498 pvec.pages, indices);
499 if (!pvec.nr) {
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700500 if (index == start)
501 break;
502 index = start;
503 continue;
504 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700505 if (index == start && indices[0] > end) {
Hugh Dickins24513262012-01-20 14:34:21 -0800506 shmem_deswap_pagevec(&pvec);
507 pagevec_release(&pvec);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700508 break;
509 }
510 mem_cgroup_uncharge_start();
511 for (i = 0; i < pagevec_count(&pvec); i++) {
512 struct page *page = pvec.pages[i];
513
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700514 index = indices[i];
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700515 if (index > end)
516 break;
517
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700518 if (radix_tree_exceptional_entry(page)) {
519 nr_swaps_freed += !shmem_free_swap(mapping,
520 index, page);
521 continue;
522 }
523
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700524 lock_page(page);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700525 if (page->mapping == mapping) {
526 VM_BUG_ON(PageWriteback(page));
527 truncate_inode_page(mapping, page);
528 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700529 unlock_page(page);
530 }
Hugh Dickins24513262012-01-20 14:34:21 -0800531 shmem_deswap_pagevec(&pvec);
532 pagevec_release(&pvec);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700533 mem_cgroup_uncharge_end();
534 index++;
535 }
Hugh Dickins94c1e622011-06-27 16:18:03 -0700536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 spin_lock(&info->lock);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700538 info->swapped -= nr_swaps_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 shmem_recalc_inode(inode);
540 spin_unlock(&info->lock);
541
Hugh Dickins285b2c42011-08-03 16:21:20 -0700542 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
Hugh Dickins94c1e622011-06-27 16:18:03 -0700544EXPORT_SYMBOL_GPL(shmem_truncate_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Hugh Dickins94c1e622011-06-27 16:18:03 -0700546static int shmem_setattr(struct dentry *dentry, struct iattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 int error;
550
Christoph Hellwigdb78b872010-06-04 11:30:03 +0200551 error = inode_change_ok(inode, attr);
552 if (error)
553 return error;
554
Hugh Dickins94c1e622011-06-27 16:18:03 -0700555 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
556 loff_t oldsize = inode->i_size;
557 loff_t newsize = attr->ia_size;
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000558
Hugh Dickins94c1e622011-06-27 16:18:03 -0700559 if (newsize != oldsize) {
560 i_size_write(inode, newsize);
561 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
562 }
563 if (newsize < oldsize) {
564 loff_t holebegin = round_up(newsize, PAGE_SIZE);
565 unmap_mapping_range(inode->i_mapping, holebegin, 0, 1);
566 shmem_truncate_range(inode, newsize, (loff_t)-1);
567 /* unmap again to remove racily COWed private pages */
568 unmap_mapping_range(inode->i_mapping, holebegin, 0, 1);
569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
Christoph Hellwigdb78b872010-06-04 11:30:03 +0200572 setattr_copy(inode, attr);
Andreas Gruenbacher39f02472006-09-29 02:01:35 -0700573#ifdef CONFIG_TMPFS_POSIX_ACL
Christoph Hellwigdb78b872010-06-04 11:30:03 +0200574 if (attr->ia_valid & ATTR_MODE)
Christoph Hellwig1c7c4742009-11-03 16:44:44 +0100575 error = generic_acl_chmod(inode);
Andreas Gruenbacher39f02472006-09-29 02:01:35 -0700576#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return error;
578}
579
Al Viro1f895f72010-06-05 19:10:41 -0400580static void shmem_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 struct shmem_inode_info *info = SHMEM_I(inode);
Eric Parisb09e0fa2011-05-24 17:12:39 -0700583 struct shmem_xattr *xattr, *nxattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000585 if (inode->i_mapping->a_ops == &shmem_aops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 shmem_unacct_size(info->flags, inode->i_size);
587 inode->i_size = 0;
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000588 shmem_truncate_range(inode, 0, (loff_t)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (!list_empty(&info->swaplist)) {
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800590 mutex_lock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 list_del_init(&info->swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800592 mutex_unlock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
Hugh Dickins69f07ec2011-08-03 16:21:26 -0700594 } else
595 kfree(info->symlink);
Eric Parisb09e0fa2011-05-24 17:12:39 -0700596
597 list_for_each_entry_safe(xattr, nxattr, &info->xattr_list, list) {
598 kfree(xattr->name);
599 kfree(xattr);
600 }
Hugh Dickins0edd73b2005-06-21 17:15:04 -0700601 BUG_ON(inode->i_blocks);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -0800602 shmem_free_inode(inode->i_sb);
Jan Karadbd57682012-05-03 14:48:02 +0200603 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700606/*
607 * If swap found in inode, free it and move page from swapcache to filecache.
608 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700609static int shmem_unuse_inode(struct shmem_inode_info *info,
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700610 swp_entry_t swap, struct page **pagep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Hugh Dickins285b2c42011-08-03 16:21:20 -0700612 struct address_space *mapping = info->vfs_inode.i_mapping;
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700613 void *radswap;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700614 pgoff_t index;
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700615 gfp_t gfp;
616 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700618 radswap = swp_to_radix_entry(swap);
Hugh Dickinse504f3f2011-08-03 16:21:27 -0700619 index = radix_tree_locate_item(&mapping->page_tree, radswap);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700620 if (index == -1)
Hugh Dickins285b2c42011-08-03 16:21:20 -0700621 return 0;
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800622
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800623 /*
624 * Move _head_ to start search for next from here.
Al Viro1f895f72010-06-05 19:10:41 -0400625 * But be careful: shmem_evict_inode checks list_empty without taking
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800626 * mutex, and there's an instant in list_move_tail when info->swaplist
Hugh Dickins285b2c42011-08-03 16:21:20 -0700627 * would appear empty, if it were the only one on shmem_swaplist.
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800628 */
629 if (shmem_swaplist.next != &info->swaplist)
630 list_move_tail(&shmem_swaplist, &info->swaplist);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800631
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700632 gfp = mapping_gfp_mask(mapping);
633 if (shmem_should_replace_page(*pagep, gfp)) {
634 mutex_unlock(&shmem_swaplist_mutex);
635 error = shmem_replace_page(pagep, gfp, info, index);
636 mutex_lock(&shmem_swaplist_mutex);
637 /*
638 * We needed to drop mutex to make that restrictive page
639 * allocation; but the inode might already be freed by now,
640 * and we cannot refer to inode or mapping or info to check.
641 * However, we do hold page lock on the PageSwapCache page,
642 * so can check if that still has our reference remaining.
643 */
644 if (!page_swapcount(*pagep))
645 error = -ENOENT;
646 }
647
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800648 /*
Hugh Dickins778dd892011-05-11 15:13:37 -0700649 * We rely on shmem_swaplist_mutex, not only to protect the swaplist,
650 * but also to hold up shmem_evict_inode(): so inode cannot be freed
651 * beneath us (pagelock doesn't help until the page is in pagecache).
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800652 */
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700653 if (!error)
654 error = shmem_add_to_page_cache(*pagep, mapping, index,
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700655 GFP_NOWAIT, radswap);
Hugh Dickins48f170f2011-07-25 17:12:37 -0700656 if (error != -ENOMEM) {
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700657 /*
658 * Truncation and eviction use free_swap_and_cache(), which
659 * only does trylock page: if we raced, best clean up here.
660 */
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700661 delete_from_swap_cache(*pagep);
662 set_page_dirty(*pagep);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700663 if (!error) {
664 spin_lock(&info->lock);
665 info->swapped--;
666 spin_unlock(&info->lock);
667 swap_free(swap);
668 }
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800669 error = 1; /* not an error, but entry was found */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800671 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672}
673
674/*
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700675 * Search through swapped inodes to find and replace swap by page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700677int shmem_unuse(swp_entry_t swap, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700679 struct list_head *this, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 struct shmem_inode_info *info;
681 int found = 0;
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700682 int error = 0;
683
684 /*
685 * There's a faint possibility that swap page was replaced before
686 * caller locked it: it will come back later with the right page.
687 */
688 if (unlikely(!PageSwapCache(page)))
689 goto out;
Hugh Dickins778dd892011-05-11 15:13:37 -0700690
691 /*
692 * Charge page using GFP_KERNEL while we can wait, before taking
693 * the shmem_swaplist_mutex which might hold up shmem_writepage().
694 * Charged back to the user (not to caller) when swap account is used.
Hugh Dickins778dd892011-05-11 15:13:37 -0700695 */
696 error = mem_cgroup_cache_charge(page, current->mm, GFP_KERNEL);
697 if (error)
698 goto out;
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700699 /* No radix_tree_preload: swap entry keeps a place for page in tree */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800701 mutex_lock(&shmem_swaplist_mutex);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700702 list_for_each_safe(this, next, &shmem_swaplist) {
703 info = list_entry(this, struct shmem_inode_info, swaplist);
Hugh Dickins285b2c42011-08-03 16:21:20 -0700704 if (info->swapped)
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700705 found = shmem_unuse_inode(info, swap, &page);
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700706 else
707 list_del_init(&info->swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800708 cond_resched();
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800709 if (found)
Hugh Dickins778dd892011-05-11 15:13:37 -0700710 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800712 mutex_unlock(&shmem_swaplist_mutex);
Hugh Dickins778dd892011-05-11 15:13:37 -0700713
Hugh Dickins778dd892011-05-11 15:13:37 -0700714 if (found < 0)
715 error = found;
716out:
Hugh Dickinsaaa46862009-12-14 17:58:47 -0800717 unlock_page(page);
718 page_cache_release(page);
Hugh Dickins778dd892011-05-11 15:13:37 -0700719 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
722/*
723 * Move the page from the page cache to the swap cache.
724 */
725static int shmem_writepage(struct page *page, struct writeback_control *wbc)
726{
727 struct shmem_inode_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 struct address_space *mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 struct inode *inode;
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700730 swp_entry_t swap;
731 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 mapping = page->mapping;
735 index = page->index;
736 inode = mapping->host;
737 info = SHMEM_I(inode);
738 if (info->flags & VM_LOCKED)
739 goto redirty;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800740 if (!total_swap_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 goto redirty;
742
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800743 /*
744 * shmem_backing_dev_info's capabilities prevent regular writeback or
745 * sync from ever calling shmem_writepage; but a stacking filesystem
Hugh Dickins48f170f2011-07-25 17:12:37 -0700746 * might use ->writepage of its underlying filesystem, in which case
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800747 * tmpfs should write out to swap only in response to memory pressure,
Hugh Dickins48f170f2011-07-25 17:12:37 -0700748 * and not for the writeback threads or sync.
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800749 */
Hugh Dickins48f170f2011-07-25 17:12:37 -0700750 if (!wbc->for_reclaim) {
751 WARN_ON_ONCE(1); /* Still happens? Tell us about it! */
752 goto redirty;
753 }
754 swap = get_swap_page();
755 if (!swap.val)
756 goto redirty;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800757
Hugh Dickinsb1dea802011-05-11 15:13:36 -0700758 /*
759 * Add inode to shmem_unuse()'s list of swapped-out inodes,
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700760 * if it's not already there. Do it now before the page is
761 * moved to swap cache, when its pagelock no longer protects
Hugh Dickinsb1dea802011-05-11 15:13:36 -0700762 * the inode from eviction. But don't unlock the mutex until
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700763 * we've incremented swapped, because shmem_unuse_inode() will
764 * prune a !swapped inode from the swaplist under this mutex.
Hugh Dickinsb1dea802011-05-11 15:13:36 -0700765 */
Hugh Dickins48f170f2011-07-25 17:12:37 -0700766 mutex_lock(&shmem_swaplist_mutex);
767 if (list_empty(&info->swaplist))
768 list_add_tail(&info->swaplist, &shmem_swaplist);
Hugh Dickinsb1dea802011-05-11 15:13:36 -0700769
Hugh Dickins48f170f2011-07-25 17:12:37 -0700770 if (add_to_swap_cache(page, swap, GFP_ATOMIC) == 0) {
Hugh Dickinsaaa46862009-12-14 17:58:47 -0800771 swap_shmem_alloc(swap);
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700772 shmem_delete_from_page_cache(page, swp_to_radix_entry(swap));
773
774 spin_lock(&info->lock);
775 info->swapped++;
776 shmem_recalc_inode(inode);
Hugh Dickins826267c2011-05-28 13:14:09 -0700777 spin_unlock(&info->lock);
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700778
779 mutex_unlock(&shmem_swaplist_mutex);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800780 BUG_ON(page_mapped(page));
Hugh Dickins9fab5612009-03-31 15:23:33 -0700781 swap_writepage(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return 0;
783 }
784
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700785 mutex_unlock(&shmem_swaplist_mutex);
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -0700786 swapcache_free(swap, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787redirty:
788 set_page_dirty(page);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800789 if (wbc->for_reclaim)
790 return AOP_WRITEPAGE_ACTIVATE; /* Return with page locked */
791 unlock_page(page);
792 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
795#ifdef CONFIG_NUMA
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800796#ifdef CONFIG_TMPFS
Lee Schermerhorn71fe8042008-04-28 02:13:26 -0700797static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800798{
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -0700799 char buffer[64];
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800800
Lee Schermerhorn71fe8042008-04-28 02:13:26 -0700801 if (!mpol || mpol->mode == MPOL_DEFAULT)
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -0700802 return; /* show nothing */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800803
Lee Schermerhorn71fe8042008-04-28 02:13:26 -0700804 mpol_to_str(buffer, sizeof(buffer), mpol, 1);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800805
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -0700806 seq_printf(seq, ",mpol=%s", buffer);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800807}
Lee Schermerhorn71fe8042008-04-28 02:13:26 -0700808
809static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
810{
811 struct mempolicy *mpol = NULL;
812 if (sbinfo->mpol) {
813 spin_lock(&sbinfo->stat_lock); /* prevent replace/use races */
814 mpol = sbinfo->mpol;
815 mpol_get(mpol);
816 spin_unlock(&sbinfo->stat_lock);
817 }
818 return mpol;
819}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800820#endif /* CONFIG_TMPFS */
821
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700822static struct page *shmem_swapin(swp_entry_t swap, gfp_t gfp,
823 struct shmem_inode_info *info, pgoff_t index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700825 struct mempolicy mpol, *spol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 struct vm_area_struct pvma;
827
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700828 spol = mpol_cond_copy(&mpol,
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700829 mpol_shared_policy_lookup(&info->policy, index));
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 /* Create a pseudo vma that just contains the policy */
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -0800832 pvma.vm_start = 0;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700833 pvma.vm_pgoff = index;
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -0800834 pvma.vm_ops = NULL;
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700835 pvma.vm_policy = spol;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700836 return swapin_readahead(swap, gfp, &pvma, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
Hugh Dickins02098fe2008-02-04 22:28:42 -0800839static struct page *shmem_alloc_page(gfp_t gfp,
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700840 struct shmem_inode_info *info, pgoff_t index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
842 struct vm_area_struct pvma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -0800844 /* Create a pseudo vma that just contains the policy */
845 pvma.vm_start = 0;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700846 pvma.vm_pgoff = index;
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -0800847 pvma.vm_ops = NULL;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700848 pvma.vm_policy = mpol_shared_policy_lookup(&info->policy, index);
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700849
850 /*
851 * alloc_page_vma() will drop the shared policy reference
852 */
853 return alloc_page_vma(gfp, &pvma, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800855#else /* !CONFIG_NUMA */
856#ifdef CONFIG_TMPFS
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700857static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800858{
859}
860#endif /* CONFIG_TMPFS */
861
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700862static inline struct page *shmem_swapin(swp_entry_t swap, gfp_t gfp,
863 struct shmem_inode_info *info, pgoff_t index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700865 return swapin_readahead(swap, gfp, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
867
Hugh Dickins02098fe2008-02-04 22:28:42 -0800868static inline struct page *shmem_alloc_page(gfp_t gfp,
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700869 struct shmem_inode_info *info, pgoff_t index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Hugh Dickinse84e2e12007-11-28 18:55:10 +0000871 return alloc_page(gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800873#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Lee Schermerhorn71fe8042008-04-28 02:13:26 -0700875#if !defined(CONFIG_NUMA) || !defined(CONFIG_TMPFS)
876static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
877{
878 return NULL;
879}
880#endif
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882/*
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700883 * When a page is moved from swapcache to shmem filecache (either by the
884 * usual swapin of shmem_getpage_gfp(), or by the less common swapoff of
885 * shmem_unuse_inode()), it may have been read in earlier from swap, in
886 * ignorance of the mapping it belongs to. If that mapping has special
887 * constraints (like the gma500 GEM driver, which requires RAM below 4GB),
888 * we may need to copy to a suitable page before moving to filecache.
889 *
890 * In a future release, this may well be extended to respect cpuset and
891 * NUMA mempolicy, and applied also to anonymous pages in do_swap_page();
892 * but for now it is a simple matter of zone.
893 */
894static bool shmem_should_replace_page(struct page *page, gfp_t gfp)
895{
896 return page_zonenum(page) > gfp_zone(gfp);
897}
898
899static int shmem_replace_page(struct page **pagep, gfp_t gfp,
900 struct shmem_inode_info *info, pgoff_t index)
901{
902 struct page *oldpage, *newpage;
903 struct address_space *swap_mapping;
904 pgoff_t swap_index;
905 int error;
906
907 oldpage = *pagep;
908 swap_index = page_private(oldpage);
909 swap_mapping = page_mapping(oldpage);
910
911 /*
912 * We have arrived here because our zones are constrained, so don't
913 * limit chance of success by further cpuset and node constraints.
914 */
915 gfp &= ~GFP_CONSTRAINT_MASK;
916 newpage = shmem_alloc_page(gfp, info, index);
917 if (!newpage)
918 return -ENOMEM;
919 VM_BUG_ON(shmem_should_replace_page(newpage, gfp));
920
921 *pagep = newpage;
922 page_cache_get(newpage);
923 copy_highpage(newpage, oldpage);
924
925 VM_BUG_ON(!PageLocked(oldpage));
926 __set_page_locked(newpage);
927 VM_BUG_ON(!PageUptodate(oldpage));
928 SetPageUptodate(newpage);
929 VM_BUG_ON(!PageSwapBacked(oldpage));
930 SetPageSwapBacked(newpage);
931 VM_BUG_ON(!swap_index);
932 set_page_private(newpage, swap_index);
933 VM_BUG_ON(!PageSwapCache(oldpage));
934 SetPageSwapCache(newpage);
935
936 /*
937 * Our caller will very soon move newpage out of swapcache, but it's
938 * a nice clean interface for us to replace oldpage by newpage there.
939 */
940 spin_lock_irq(&swap_mapping->tree_lock);
941 error = shmem_radix_tree_replace(swap_mapping, swap_index, oldpage,
942 newpage);
943 __inc_zone_page_state(newpage, NR_FILE_PAGES);
944 __dec_zone_page_state(oldpage, NR_FILE_PAGES);
945 spin_unlock_irq(&swap_mapping->tree_lock);
946 BUG_ON(error);
947
948 mem_cgroup_replace_page_cache(oldpage, newpage);
949 lru_cache_add_anon(newpage);
950
951 ClearPageSwapCache(oldpage);
952 set_page_private(oldpage, 0);
953
954 unlock_page(oldpage);
955 page_cache_release(oldpage);
956 page_cache_release(oldpage);
957 return 0;
958}
959
960/*
Hugh Dickins68da9f02011-07-25 17:12:34 -0700961 * shmem_getpage_gfp - find page in cache, or get from swap, or allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 *
963 * If we allocate a new one we do not mark it dirty. That's up to the
964 * vm. If we swap it in we mark it dirty since we also free the swap
965 * entry since a page cannot live in both the swap and page cache
966 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700967static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
Hugh Dickins68da9f02011-07-25 17:12:34 -0700968 struct page **pagep, enum sgp_type sgp, gfp_t gfp, int *fault_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
970 struct address_space *mapping = inode->i_mapping;
Hugh Dickins54af60422011-08-03 16:21:24 -0700971 struct shmem_inode_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 struct shmem_sb_info *sbinfo;
Hugh Dickins27ab7002011-07-25 17:12:36 -0700973 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 swp_entry_t swap;
975 int error;
Hugh Dickins54af60422011-08-03 16:21:24 -0700976 int once = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700978 if (index > (MAX_LFS_FILESIZE >> PAGE_CACHE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980repeat:
Hugh Dickins54af60422011-08-03 16:21:24 -0700981 swap.val = 0;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700982 page = find_lock_page(mapping, index);
Hugh Dickins54af60422011-08-03 16:21:24 -0700983 if (radix_tree_exceptional_entry(page)) {
984 swap = radix_to_swp_entry(page);
985 page = NULL;
986 }
987
988 if (sgp != SGP_WRITE &&
989 ((loff_t)index << PAGE_CACHE_SHIFT) >= i_size_read(inode)) {
990 error = -EINVAL;
991 goto failed;
992 }
993
994 if (page || (sgp == SGP_READ && !swap.val)) {
Hugh Dickinsb409f9f2008-02-04 22:28:54 -0800995 /*
Hugh Dickins27ab7002011-07-25 17:12:36 -0700996 * Once we can get the page lock, it must be uptodate:
997 * if there were an error in reading back from swap,
998 * the page would not be inserted into the filecache.
Hugh Dickinsb409f9f2008-02-04 22:28:54 -0800999 */
Hugh Dickins54af60422011-08-03 16:21:24 -07001000 BUG_ON(page && !PageUptodate(page));
1001 *pagep = page;
1002 return 0;
Hugh Dickins27ab7002011-07-25 17:12:36 -07001003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07001006 * Fast cache lookup did not find it:
1007 * bring it back from swap or allocate.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 */
Hugh Dickins54af60422011-08-03 16:21:24 -07001009 info = SHMEM_I(inode);
1010 sbinfo = SHMEM_SB(inode->i_sb);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (swap.val) {
1013 /* Look it up and read it in.. */
Hugh Dickins27ab7002011-07-25 17:12:36 -07001014 page = lookup_swap_cache(swap);
1015 if (!page) {
Ying Han456f9982011-05-26 16:25:38 -07001016 /* here we actually do the io */
Hugh Dickins68da9f02011-07-25 17:12:34 -07001017 if (fault_type)
1018 *fault_type |= VM_FAULT_MAJOR;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001019 page = shmem_swapin(swap, gfp, info, index);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001020 if (!page) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001021 error = -ENOMEM;
1022 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025
1026 /* We have to do this with page locked to prevent races */
Hugh Dickins54af60422011-08-03 16:21:24 -07001027 lock_page(page);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001028 if (!PageSwapCache(page) || page->mapping) {
1029 error = -EEXIST; /* try again */
1030 goto failed;
1031 }
Hugh Dickins27ab7002011-07-25 17:12:36 -07001032 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 error = -EIO;
Hugh Dickins54af60422011-08-03 16:21:24 -07001034 goto failed;
1035 }
1036 wait_on_page_writeback(page);
1037
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001038 if (shmem_should_replace_page(page, gfp)) {
1039 error = shmem_replace_page(&page, gfp, info, index);
1040 if (error)
1041 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07001044 error = mem_cgroup_cache_charge(page, current->mm,
1045 gfp & GFP_RECLAIM_MASK);
1046 if (!error)
1047 error = shmem_add_to_page_cache(page, mapping, index,
1048 gfp, swp_to_radix_entry(swap));
Hugh Dickins54af60422011-08-03 16:21:24 -07001049 if (error)
1050 goto failed;
1051
1052 spin_lock(&info->lock);
1053 info->swapped--;
1054 shmem_recalc_inode(inode);
1055 spin_unlock(&info->lock);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001056
Hugh Dickins27ab7002011-07-25 17:12:36 -07001057 delete_from_swap_cache(page);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001058 set_page_dirty(page);
1059 swap_free(swap);
1060
Hugh Dickins54af60422011-08-03 16:21:24 -07001061 } else {
1062 if (shmem_acct_block(info->flags)) {
1063 error = -ENOSPC;
1064 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001066 if (sbinfo->max_blocks) {
Hugh Dickinsfc5da222011-04-14 15:22:07 -07001067 if (percpu_counter_compare(&sbinfo->used_blocks,
Hugh Dickins54af60422011-08-03 16:21:24 -07001068 sbinfo->max_blocks) >= 0) {
1069 error = -ENOSPC;
1070 goto unacct;
1071 }
Tim Chen7e496292010-08-09 17:19:05 -07001072 percpu_counter_inc(&sbinfo->used_blocks);
Hugh Dickins59a16ea2011-05-11 15:13:38 -07001073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Hugh Dickins54af60422011-08-03 16:21:24 -07001075 page = shmem_alloc_page(gfp, info, index);
1076 if (!page) {
1077 error = -ENOMEM;
1078 goto decused;
1079 }
1080
1081 SetPageSwapBacked(page);
1082 __set_page_locked(page);
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07001083 error = mem_cgroup_cache_charge(page, current->mm,
1084 gfp & GFP_RECLAIM_MASK);
1085 if (!error)
1086 error = shmem_add_to_page_cache(page, mapping, index,
1087 gfp, NULL);
Hugh Dickins54af60422011-08-03 16:21:24 -07001088 if (error)
1089 goto decused;
1090 lru_cache_add_anon(page);
1091
1092 spin_lock(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 info->alloced++;
Hugh Dickins54af60422011-08-03 16:21:24 -07001094 inode->i_blocks += BLOCKS_PER_PAGE;
1095 shmem_recalc_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 spin_unlock(&info->lock);
Hugh Dickins54af60422011-08-03 16:21:24 -07001097
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001098 /*
1099 * Let SGP_WRITE caller clear ends if write does not fill page
1100 */
1101 if (sgp != SGP_WRITE) {
1102 clear_highpage(page);
1103 flush_dcache_page(page);
1104 SetPageUptodate(page);
1105 }
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08001106 if (sgp == SGP_DIRTY)
Hugh Dickins27ab7002011-07-25 17:12:36 -07001107 set_page_dirty(page);
Hugh Dickins59a16ea2011-05-11 15:13:38 -07001108 }
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001109
Hugh Dickins54af60422011-08-03 16:21:24 -07001110 /* Perhaps the file has been truncated since we checked */
1111 if (sgp != SGP_WRITE &&
1112 ((loff_t)index << PAGE_CACHE_SHIFT) >= i_size_read(inode)) {
1113 error = -EINVAL;
1114 goto trunc;
Shaohua Liff36b8012010-08-09 17:19:06 -07001115 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001116 *pagep = page;
1117 return 0;
Nick Piggind00806b2007-07-19 01:46:57 -07001118
Nick Piggind0217ac2007-07-19 01:47:03 -07001119 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07001120 * Error recovery.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 */
Hugh Dickins54af60422011-08-03 16:21:24 -07001122trunc:
1123 ClearPageDirty(page);
1124 delete_from_page_cache(page);
1125 spin_lock(&info->lock);
1126 info->alloced--;
1127 inode->i_blocks -= BLOCKS_PER_PAGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 spin_unlock(&info->lock);
Hugh Dickins54af60422011-08-03 16:21:24 -07001129decused:
1130 if (sbinfo->max_blocks)
1131 percpu_counter_add(&sbinfo->used_blocks, -1);
1132unacct:
1133 shmem_unacct_blocks(info->flags, 1);
1134failed:
1135 if (swap.val && error != -EINVAL) {
1136 struct page *test = find_get_page(mapping, index);
1137 if (test && !radix_tree_exceptional_entry(test))
1138 page_cache_release(test);
1139 /* Have another try if the entry has changed */
1140 if (test != swp_to_radix_entry(swap))
1141 error = -EEXIST;
1142 }
Hugh Dickins27ab7002011-07-25 17:12:36 -07001143 if (page) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001144 unlock_page(page);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001145 page_cache_release(page);
Hugh Dickins54af60422011-08-03 16:21:24 -07001146 }
1147 if (error == -ENOSPC && !once++) {
1148 info = SHMEM_I(inode);
1149 spin_lock(&info->lock);
1150 shmem_recalc_inode(inode);
1151 spin_unlock(&info->lock);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001152 goto repeat;
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001153 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001154 if (error == -EEXIST)
1155 goto repeat;
1156 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
1159static int shmem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1160{
1161 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
1162 int error;
Hugh Dickins68da9f02011-07-25 17:12:34 -07001163 int ret = VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 error = shmem_getpage(inode, vmf->pgoff, &vmf->page, SGP_CACHE, &ret);
1166 if (error)
1167 return ((error == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS);
Hugh Dickins68da9f02011-07-25 17:12:34 -07001168
Ying Han456f9982011-05-26 16:25:38 -07001169 if (ret & VM_FAULT_MAJOR) {
1170 count_vm_event(PGMAJFAULT);
1171 mem_cgroup_count_vm_event(vma->vm_mm, PGMAJFAULT);
1172 }
Hugh Dickins68da9f02011-07-25 17:12:34 -07001173 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
1175
1176#ifdef CONFIG_NUMA
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001177static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *mpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001179 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
1180 return mpol_set_shared_policy(&SHMEM_I(inode)->policy, vma, mpol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
Adrian Bunkd8dc74f2007-10-16 01:26:26 -07001183static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
1184 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001186 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
1187 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001189 index = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
1190 return mpol_shared_policy_lookup(&SHMEM_I(inode)->policy, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191}
1192#endif
1193
1194int shmem_lock(struct file *file, int lock, struct user_struct *user)
1195{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001196 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 struct shmem_inode_info *info = SHMEM_I(inode);
1198 int retval = -ENOMEM;
1199
1200 spin_lock(&info->lock);
1201 if (lock && !(info->flags & VM_LOCKED)) {
1202 if (!user_shm_lock(inode->i_size, user))
1203 goto out_nomem;
1204 info->flags |= VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001205 mapping_set_unevictable(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 }
1207 if (!lock && (info->flags & VM_LOCKED) && user) {
1208 user_shm_unlock(inode->i_size, user);
1209 info->flags &= ~VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001210 mapping_clear_unevictable(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 }
1212 retval = 0;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214out_nomem:
1215 spin_unlock(&info->lock);
1216 return retval;
1217}
1218
Adrian Bunk9b83a6a2007-02-28 20:11:03 -08001219static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
1221 file_accessed(file);
1222 vma->vm_ops = &shmem_vm_ops;
Nick Piggind0217ac2007-07-19 01:47:03 -07001223 vma->vm_flags |= VM_CAN_NONLINEAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 return 0;
1225}
1226
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03001227static struct inode *shmem_get_inode(struct super_block *sb, const struct inode *dir,
Al Viro09208d12011-07-26 03:15:03 -04001228 umode_t mode, dev_t dev, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
1230 struct inode *inode;
1231 struct shmem_inode_info *info;
1232 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1233
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001234 if (shmem_reserve_inode(sb))
1235 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 inode = new_inode(sb);
1238 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001239 inode->i_ino = get_next_ino();
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03001240 inode_init_owner(inode, dir, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 inode->i_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 inode->i_mapping->backing_dev_info = &shmem_backing_dev_info;
1243 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
David M. Grimes91828a42006-10-17 00:09:45 -07001244 inode->i_generation = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 info = SHMEM_I(inode);
1246 memset(info, 0, (char *)inode - (char *)info);
1247 spin_lock_init(&info->lock);
Hugh Dickins0b0a0802009-02-24 20:51:52 +00001248 info->flags = flags & VM_NORESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 INIT_LIST_HEAD(&info->swaplist);
Eric Parisb09e0fa2011-05-24 17:12:39 -07001250 INIT_LIST_HEAD(&info->xattr_list);
Al Viro72c04902009-06-24 16:58:48 -04001251 cache_no_acl(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 switch (mode & S_IFMT) {
1254 default:
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07001255 inode->i_op = &shmem_special_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 init_special_inode(inode, mode, dev);
1257 break;
1258 case S_IFREG:
Hugh Dickins14fcc232008-07-28 15:46:19 -07001259 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 inode->i_op = &shmem_inode_operations;
1261 inode->i_fop = &shmem_file_operations;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001262 mpol_shared_policy_init(&info->policy,
1263 shmem_get_sbmpol(sbinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 break;
1265 case S_IFDIR:
Dave Hansend8c76e62006-09-30 23:29:04 -07001266 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 /* Some things misbehave if size == 0 on a directory */
1268 inode->i_size = 2 * BOGO_DIRENT_SIZE;
1269 inode->i_op = &shmem_dir_inode_operations;
1270 inode->i_fop = &simple_dir_operations;
1271 break;
1272 case S_IFLNK:
1273 /*
1274 * Must not load anything in the rbtree,
1275 * mpol_free_shared_policy will not be called.
1276 */
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001277 mpol_shared_policy_init(&info->policy, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 break;
1279 }
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001280 } else
1281 shmem_free_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 return inode;
1283}
1284
1285#ifdef CONFIG_TMPFS
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001286static const struct inode_operations shmem_symlink_inode_operations;
Hugh Dickins69f07ec2011-08-03 16:21:26 -07001287static const struct inode_operations shmem_short_symlink_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07001289#ifdef CONFIG_TMPFS_XATTR
1290static int shmem_initxattrs(struct inode *, const struct xattr *, void *);
1291#else
1292#define shmem_initxattrs NULL
1293#endif
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295static int
Nick Piggin800d15a2007-10-16 01:25:03 -07001296shmem_write_begin(struct file *file, struct address_space *mapping,
1297 loff_t pos, unsigned len, unsigned flags,
1298 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
Nick Piggin800d15a2007-10-16 01:25:03 -07001300 struct inode *inode = mapping->host;
1301 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
Nick Piggin800d15a2007-10-16 01:25:03 -07001302 return shmem_getpage(inode, index, pagep, SGP_WRITE, NULL);
1303}
1304
1305static int
1306shmem_write_end(struct file *file, struct address_space *mapping,
1307 loff_t pos, unsigned len, unsigned copied,
1308 struct page *page, void *fsdata)
1309{
1310 struct inode *inode = mapping->host;
1311
Hugh Dickinsd3602442008-02-04 22:28:44 -08001312 if (pos + copied > inode->i_size)
1313 i_size_write(inode, pos + copied);
1314
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001315 if (!PageUptodate(page)) {
1316 if (copied < PAGE_CACHE_SIZE) {
1317 unsigned from = pos & (PAGE_CACHE_SIZE - 1);
1318 zero_user_segments(page, 0, from,
1319 from + copied, PAGE_CACHE_SIZE);
1320 }
1321 SetPageUptodate(page);
1322 }
Nick Piggin800d15a2007-10-16 01:25:03 -07001323 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02001324 unlock_page(page);
Nick Piggin800d15a2007-10-16 01:25:03 -07001325 page_cache_release(page);
1326
Nick Piggin800d15a2007-10-16 01:25:03 -07001327 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330static void do_shmem_file_read(struct file *filp, loff_t *ppos, read_descriptor_t *desc, read_actor_t actor)
1331{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001332 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 struct address_space *mapping = inode->i_mapping;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001334 pgoff_t index;
1335 unsigned long offset;
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08001336 enum sgp_type sgp = SGP_READ;
1337
1338 /*
1339 * Might this read be for a stacking filesystem? Then when reading
1340 * holes of a sparse file, we actually need to allocate those pages,
1341 * and even mark them dirty, so it cannot exceed the max_blocks limit.
1342 */
1343 if (segment_eq(get_fs(), KERNEL_DS))
1344 sgp = SGP_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 index = *ppos >> PAGE_CACHE_SHIFT;
1347 offset = *ppos & ~PAGE_CACHE_MASK;
1348
1349 for (;;) {
1350 struct page *page = NULL;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001351 pgoff_t end_index;
1352 unsigned long nr, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 loff_t i_size = i_size_read(inode);
1354
1355 end_index = i_size >> PAGE_CACHE_SHIFT;
1356 if (index > end_index)
1357 break;
1358 if (index == end_index) {
1359 nr = i_size & ~PAGE_CACHE_MASK;
1360 if (nr <= offset)
1361 break;
1362 }
1363
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08001364 desc->error = shmem_getpage(inode, index, &page, sgp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 if (desc->error) {
1366 if (desc->error == -EINVAL)
1367 desc->error = 0;
1368 break;
1369 }
Hugh Dickinsd3602442008-02-04 22:28:44 -08001370 if (page)
1371 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 /*
1374 * We must evaluate after, since reads (unlike writes)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001375 * are called without i_mutex protection against truncate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 */
1377 nr = PAGE_CACHE_SIZE;
1378 i_size = i_size_read(inode);
1379 end_index = i_size >> PAGE_CACHE_SHIFT;
1380 if (index == end_index) {
1381 nr = i_size & ~PAGE_CACHE_MASK;
1382 if (nr <= offset) {
1383 if (page)
1384 page_cache_release(page);
1385 break;
1386 }
1387 }
1388 nr -= offset;
1389
1390 if (page) {
1391 /*
1392 * If users can be writing to this page using arbitrary
1393 * virtual addresses, take care about potential aliasing
1394 * before reading the page on the kernel side.
1395 */
1396 if (mapping_writably_mapped(mapping))
1397 flush_dcache_page(page);
1398 /*
1399 * Mark the page accessed if we read the beginning.
1400 */
1401 if (!offset)
1402 mark_page_accessed(page);
Nick Pigginb5810032005-10-29 18:16:12 -07001403 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 page = ZERO_PAGE(0);
Nick Pigginb5810032005-10-29 18:16:12 -07001405 page_cache_get(page);
1406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 /*
1409 * Ok, we have the page, and it's up-to-date, so
1410 * now we can copy it to user space...
1411 *
1412 * The actor routine returns how many bytes were actually used..
1413 * NOTE! This may not be the same as how much of a user buffer
1414 * we filled up (we may be padding etc), so we can only update
1415 * "pos" here (the actor routine has to update the user buffer
1416 * pointers and the remaining count).
1417 */
1418 ret = actor(desc, page, offset, nr);
1419 offset += ret;
1420 index += offset >> PAGE_CACHE_SHIFT;
1421 offset &= ~PAGE_CACHE_MASK;
1422
1423 page_cache_release(page);
1424 if (ret != nr || !desc->count)
1425 break;
1426
1427 cond_resched();
1428 }
1429
1430 *ppos = ((loff_t) index << PAGE_CACHE_SHIFT) + offset;
1431 file_accessed(filp);
1432}
1433
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001434static ssize_t shmem_file_aio_read(struct kiocb *iocb,
1435 const struct iovec *iov, unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001437 struct file *filp = iocb->ki_filp;
1438 ssize_t retval;
1439 unsigned long seg;
1440 size_t count;
1441 loff_t *ppos = &iocb->ki_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001443 retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
1444 if (retval)
1445 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001447 for (seg = 0; seg < nr_segs; seg++) {
1448 read_descriptor_t desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001450 desc.written = 0;
1451 desc.arg.buf = iov[seg].iov_base;
1452 desc.count = iov[seg].iov_len;
1453 if (desc.count == 0)
1454 continue;
1455 desc.error = 0;
1456 do_shmem_file_read(filp, ppos, &desc, file_read_actor);
1457 retval += desc.written;
1458 if (desc.error) {
1459 retval = retval ?: desc.error;
1460 break;
1461 }
1462 if (desc.count > 0)
1463 break;
1464 }
1465 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466}
1467
Hugh Dickins708e3502011-07-25 17:12:32 -07001468static ssize_t shmem_file_splice_read(struct file *in, loff_t *ppos,
1469 struct pipe_inode_info *pipe, size_t len,
1470 unsigned int flags)
1471{
1472 struct address_space *mapping = in->f_mapping;
Hugh Dickins71f0e072011-07-25 17:12:33 -07001473 struct inode *inode = mapping->host;
Hugh Dickins708e3502011-07-25 17:12:32 -07001474 unsigned int loff, nr_pages, req_pages;
1475 struct page *pages[PIPE_DEF_BUFFERS];
1476 struct partial_page partial[PIPE_DEF_BUFFERS];
1477 struct page *page;
1478 pgoff_t index, end_index;
1479 loff_t isize, left;
1480 int error, page_nr;
1481 struct splice_pipe_desc spd = {
1482 .pages = pages,
1483 .partial = partial,
1484 .flags = flags,
1485 .ops = &page_cache_pipe_buf_ops,
1486 .spd_release = spd_release_page,
1487 };
1488
Hugh Dickins71f0e072011-07-25 17:12:33 -07001489 isize = i_size_read(inode);
Hugh Dickins708e3502011-07-25 17:12:32 -07001490 if (unlikely(*ppos >= isize))
1491 return 0;
1492
1493 left = isize - *ppos;
1494 if (unlikely(left < len))
1495 len = left;
1496
1497 if (splice_grow_spd(pipe, &spd))
1498 return -ENOMEM;
1499
1500 index = *ppos >> PAGE_CACHE_SHIFT;
1501 loff = *ppos & ~PAGE_CACHE_MASK;
1502 req_pages = (len + loff + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1503 nr_pages = min(req_pages, pipe->buffers);
1504
Hugh Dickins708e3502011-07-25 17:12:32 -07001505 spd.nr_pages = find_get_pages_contig(mapping, index,
1506 nr_pages, spd.pages);
1507 index += spd.nr_pages;
Hugh Dickins708e3502011-07-25 17:12:32 -07001508 error = 0;
Hugh Dickins71f0e072011-07-25 17:12:33 -07001509
Hugh Dickins708e3502011-07-25 17:12:32 -07001510 while (spd.nr_pages < nr_pages) {
Hugh Dickins71f0e072011-07-25 17:12:33 -07001511 error = shmem_getpage(inode, index, &page, SGP_CACHE, NULL);
1512 if (error)
1513 break;
1514 unlock_page(page);
Hugh Dickins708e3502011-07-25 17:12:32 -07001515 spd.pages[spd.nr_pages++] = page;
1516 index++;
1517 }
1518
Hugh Dickins708e3502011-07-25 17:12:32 -07001519 index = *ppos >> PAGE_CACHE_SHIFT;
1520 nr_pages = spd.nr_pages;
1521 spd.nr_pages = 0;
Hugh Dickins71f0e072011-07-25 17:12:33 -07001522
Hugh Dickins708e3502011-07-25 17:12:32 -07001523 for (page_nr = 0; page_nr < nr_pages; page_nr++) {
1524 unsigned int this_len;
1525
1526 if (!len)
1527 break;
1528
Hugh Dickins708e3502011-07-25 17:12:32 -07001529 this_len = min_t(unsigned long, len, PAGE_CACHE_SIZE - loff);
1530 page = spd.pages[page_nr];
1531
Hugh Dickins71f0e072011-07-25 17:12:33 -07001532 if (!PageUptodate(page) || page->mapping != mapping) {
Hugh Dickins71f0e072011-07-25 17:12:33 -07001533 error = shmem_getpage(inode, index, &page,
1534 SGP_CACHE, NULL);
1535 if (error)
Hugh Dickins708e3502011-07-25 17:12:32 -07001536 break;
Hugh Dickins71f0e072011-07-25 17:12:33 -07001537 unlock_page(page);
1538 page_cache_release(spd.pages[page_nr]);
1539 spd.pages[page_nr] = page;
Hugh Dickins708e3502011-07-25 17:12:32 -07001540 }
Hugh Dickins71f0e072011-07-25 17:12:33 -07001541
1542 isize = i_size_read(inode);
Hugh Dickins708e3502011-07-25 17:12:32 -07001543 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
1544 if (unlikely(!isize || index > end_index))
1545 break;
1546
Hugh Dickins708e3502011-07-25 17:12:32 -07001547 if (end_index == index) {
1548 unsigned int plen;
1549
Hugh Dickins708e3502011-07-25 17:12:32 -07001550 plen = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
1551 if (plen <= loff)
1552 break;
1553
Hugh Dickins708e3502011-07-25 17:12:32 -07001554 this_len = min(this_len, plen - loff);
1555 len = this_len;
1556 }
1557
1558 spd.partial[page_nr].offset = loff;
1559 spd.partial[page_nr].len = this_len;
1560 len -= this_len;
1561 loff = 0;
1562 spd.nr_pages++;
1563 index++;
1564 }
1565
Hugh Dickins708e3502011-07-25 17:12:32 -07001566 while (page_nr < nr_pages)
1567 page_cache_release(spd.pages[page_nr++]);
Hugh Dickins708e3502011-07-25 17:12:32 -07001568
1569 if (spd.nr_pages)
1570 error = splice_to_pipe(pipe, &spd);
1571
1572 splice_shrink_spd(pipe, &spd);
1573
1574 if (error > 0) {
1575 *ppos += error;
1576 file_accessed(in);
1577 }
1578 return error;
1579}
1580
David Howells726c3342006-06-23 02:02:58 -07001581static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
David Howells726c3342006-06-23 02:02:58 -07001583 struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 buf->f_type = TMPFS_MAGIC;
1586 buf->f_bsize = PAGE_CACHE_SIZE;
1587 buf->f_namelen = NAME_MAX;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001588 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 buf->f_blocks = sbinfo->max_blocks;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001590 buf->f_bavail =
1591 buf->f_bfree = sbinfo->max_blocks -
1592 percpu_counter_sum(&sbinfo->used_blocks);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001593 }
1594 if (sbinfo->max_inodes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 buf->f_files = sbinfo->max_inodes;
1596 buf->f_ffree = sbinfo->free_inodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 }
1598 /* else leave those fields 0 like simple_statfs */
1599 return 0;
1600}
1601
1602/*
1603 * File creation. Allocate an inode, and we're done..
1604 */
1605static int
Al Viro1a67aaf2011-07-26 01:52:52 -04001606shmem_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
Hugh Dickins0b0a0802009-02-24 20:51:52 +00001608 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 int error = -ENOSPC;
1610
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03001611 inode = shmem_get_inode(dir->i_sb, dir, mode, dev, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (inode) {
Eric Paris2a7dba32011-02-01 11:05:39 -05001613 error = security_inode_init_security(inode, dir,
Mimi Zohar9d8f13b2011-06-06 15:29:25 -04001614 &dentry->d_name,
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07001615 shmem_initxattrs, NULL);
Stephen Smalley570bc1c2005-09-09 13:01:43 -07001616 if (error) {
1617 if (error != -EOPNOTSUPP) {
1618 iput(inode);
1619 return error;
1620 }
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07001621 }
Christoph Hellwig1c7c4742009-11-03 16:44:44 +01001622#ifdef CONFIG_TMPFS_POSIX_ACL
1623 error = generic_acl_init(inode, dir);
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07001624 if (error) {
1625 iput(inode);
1626 return error;
Stephen Smalley570bc1c2005-09-09 13:01:43 -07001627 }
Al Viro718deb62009-12-16 19:35:36 -05001628#else
1629 error = 0;
Christoph Hellwig1c7c4742009-11-03 16:44:44 +01001630#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 dir->i_size += BOGO_DIRENT_SIZE;
1632 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1633 d_instantiate(dentry, inode);
1634 dget(dentry); /* Extra count - pin the dentry in core */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 }
1636 return error;
1637}
1638
Al Viro18bb1db2011-07-26 01:41:39 -04001639static int shmem_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640{
1641 int error;
1642
1643 if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
1644 return error;
Dave Hansend8c76e62006-09-30 23:29:04 -07001645 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 return 0;
1647}
1648
Al Viro4acdaf22011-07-26 01:42:34 -04001649static int shmem_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 struct nameidata *nd)
1651{
1652 return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
1653}
1654
1655/*
1656 * Link a file..
1657 */
1658static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1659{
1660 struct inode *inode = old_dentry->d_inode;
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001661 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
1663 /*
1664 * No ordinary (disk based) filesystem counts links as inodes;
1665 * but each new link needs a new dentry, pinning lowmem, and
1666 * tmpfs dentries cannot be pruned until they are unlinked.
1667 */
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001668 ret = shmem_reserve_inode(inode->i_sb);
1669 if (ret)
1670 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
1672 dir->i_size += BOGO_DIRENT_SIZE;
1673 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansend8c76e62006-09-30 23:29:04 -07001674 inc_nlink(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04001675 ihold(inode); /* New dentry reference */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 dget(dentry); /* Extra pinning count for the created dentry */
1677 d_instantiate(dentry, inode);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001678out:
1679 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680}
1681
1682static int shmem_unlink(struct inode *dir, struct dentry *dentry)
1683{
1684 struct inode *inode = dentry->d_inode;
1685
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001686 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
1687 shmem_free_inode(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
1689 dir->i_size -= BOGO_DIRENT_SIZE;
1690 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001691 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 dput(dentry); /* Undo the count from "create" - this does all the work */
1693 return 0;
1694}
1695
1696static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
1697{
1698 if (!simple_empty(dentry))
1699 return -ENOTEMPTY;
1700
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001701 drop_nlink(dentry->d_inode);
1702 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 return shmem_unlink(dir, dentry);
1704}
1705
1706/*
1707 * The VFS layer already does all the dentry stuff for rename,
1708 * we just have to decrement the usage count for the target if
1709 * it exists so that the VFS layer correctly free's it when it
1710 * gets overwritten.
1711 */
1712static int shmem_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
1713{
1714 struct inode *inode = old_dentry->d_inode;
1715 int they_are_dirs = S_ISDIR(inode->i_mode);
1716
1717 if (!simple_empty(new_dentry))
1718 return -ENOTEMPTY;
1719
1720 if (new_dentry->d_inode) {
1721 (void) shmem_unlink(new_dir, new_dentry);
1722 if (they_are_dirs)
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001723 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 } else if (they_are_dirs) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001725 drop_nlink(old_dir);
Dave Hansend8c76e62006-09-30 23:29:04 -07001726 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 }
1728
1729 old_dir->i_size -= BOGO_DIRENT_SIZE;
1730 new_dir->i_size += BOGO_DIRENT_SIZE;
1731 old_dir->i_ctime = old_dir->i_mtime =
1732 new_dir->i_ctime = new_dir->i_mtime =
1733 inode->i_ctime = CURRENT_TIME;
1734 return 0;
1735}
1736
1737static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1738{
1739 int error;
1740 int len;
1741 struct inode *inode;
Hugh Dickins9276aad2011-07-25 17:12:34 -07001742 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 char *kaddr;
1744 struct shmem_inode_info *info;
1745
1746 len = strlen(symname) + 1;
1747 if (len > PAGE_CACHE_SIZE)
1748 return -ENAMETOOLONG;
1749
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03001750 inode = shmem_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 if (!inode)
1752 return -ENOSPC;
1753
Mimi Zohar9d8f13b2011-06-06 15:29:25 -04001754 error = security_inode_init_security(inode, dir, &dentry->d_name,
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07001755 shmem_initxattrs, NULL);
Stephen Smalley570bc1c2005-09-09 13:01:43 -07001756 if (error) {
1757 if (error != -EOPNOTSUPP) {
1758 iput(inode);
1759 return error;
1760 }
1761 error = 0;
1762 }
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 info = SHMEM_I(inode);
1765 inode->i_size = len-1;
Hugh Dickins69f07ec2011-08-03 16:21:26 -07001766 if (len <= SHORT_SYMLINK_LEN) {
1767 info->symlink = kmemdup(symname, len, GFP_KERNEL);
1768 if (!info->symlink) {
1769 iput(inode);
1770 return -ENOMEM;
1771 }
1772 inode->i_op = &shmem_short_symlink_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 } else {
1774 error = shmem_getpage(inode, 0, &page, SGP_WRITE, NULL);
1775 if (error) {
1776 iput(inode);
1777 return error;
1778 }
Hugh Dickins14fcc232008-07-28 15:46:19 -07001779 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 inode->i_op = &shmem_symlink_inode_operations;
Cong Wang9b04c5f2011-11-25 23:14:39 +08001781 kaddr = kmap_atomic(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 memcpy(kaddr, symname, len);
Cong Wang9b04c5f2011-11-25 23:14:39 +08001783 kunmap_atomic(kaddr);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001784 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02001786 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 page_cache_release(page);
1788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 dir->i_size += BOGO_DIRENT_SIZE;
1790 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1791 d_instantiate(dentry, inode);
1792 dget(dentry);
1793 return 0;
1794}
1795
Hugh Dickins69f07ec2011-08-03 16:21:26 -07001796static void *shmem_follow_short_symlink(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
Hugh Dickins69f07ec2011-08-03 16:21:26 -07001798 nd_set_link(nd, SHMEM_I(dentry->d_inode)->symlink);
Linus Torvaldscc314ee2005-08-19 18:02:56 -07001799 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800}
1801
Linus Torvaldscc314ee2005-08-19 18:02:56 -07001802static void *shmem_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
1804 struct page *page = NULL;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001805 int error = shmem_getpage(dentry->d_inode, 0, &page, SGP_READ, NULL);
1806 nd_set_link(nd, error ? ERR_PTR(error) : kmap(page));
Hugh Dickinsd3602442008-02-04 22:28:44 -08001807 if (page)
1808 unlock_page(page);
Linus Torvaldscc314ee2005-08-19 18:02:56 -07001809 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810}
1811
Linus Torvaldscc314ee2005-08-19 18:02:56 -07001812static void shmem_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813{
1814 if (!IS_ERR(nd_get_link(nd))) {
Linus Torvaldscc314ee2005-08-19 18:02:56 -07001815 struct page *page = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 kunmap(page);
1817 mark_page_accessed(page);
1818 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 }
1820}
1821
Eric Parisb09e0fa2011-05-24 17:12:39 -07001822#ifdef CONFIG_TMPFS_XATTR
1823/*
1824 * Superblocks without xattr inode operations may get some security.* xattr
1825 * support from the LSM "for free". As soon as we have any other xattrs
1826 * like ACLs, we also need to implement the security.* handlers at
1827 * filesystem level, though.
1828 */
1829
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07001830/*
1831 * Allocate new xattr and copy in the value; but leave the name to callers.
1832 */
1833static struct shmem_xattr *shmem_xattr_alloc(const void *value, size_t size)
1834{
1835 struct shmem_xattr *new_xattr;
1836 size_t len;
1837
1838 /* wrap around? */
1839 len = sizeof(*new_xattr) + size;
1840 if (len <= sizeof(*new_xattr))
1841 return NULL;
1842
1843 new_xattr = kmalloc(len, GFP_KERNEL);
1844 if (!new_xattr)
1845 return NULL;
1846
1847 new_xattr->size = size;
1848 memcpy(new_xattr->value, value, size);
1849 return new_xattr;
1850}
1851
1852/*
1853 * Callback for security_inode_init_security() for acquiring xattrs.
1854 */
1855static int shmem_initxattrs(struct inode *inode,
1856 const struct xattr *xattr_array,
1857 void *fs_info)
1858{
1859 struct shmem_inode_info *info = SHMEM_I(inode);
1860 const struct xattr *xattr;
1861 struct shmem_xattr *new_xattr;
1862 size_t len;
1863
1864 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
1865 new_xattr = shmem_xattr_alloc(xattr->value, xattr->value_len);
1866 if (!new_xattr)
1867 return -ENOMEM;
1868
1869 len = strlen(xattr->name) + 1;
1870 new_xattr->name = kmalloc(XATTR_SECURITY_PREFIX_LEN + len,
1871 GFP_KERNEL);
1872 if (!new_xattr->name) {
1873 kfree(new_xattr);
1874 return -ENOMEM;
1875 }
1876
1877 memcpy(new_xattr->name, XATTR_SECURITY_PREFIX,
1878 XATTR_SECURITY_PREFIX_LEN);
1879 memcpy(new_xattr->name + XATTR_SECURITY_PREFIX_LEN,
1880 xattr->name, len);
1881
1882 spin_lock(&info->lock);
1883 list_add(&new_xattr->list, &info->xattr_list);
1884 spin_unlock(&info->lock);
1885 }
1886
1887 return 0;
1888}
1889
Eric Parisb09e0fa2011-05-24 17:12:39 -07001890static int shmem_xattr_get(struct dentry *dentry, const char *name,
1891 void *buffer, size_t size)
1892{
1893 struct shmem_inode_info *info;
1894 struct shmem_xattr *xattr;
1895 int ret = -ENODATA;
1896
1897 info = SHMEM_I(dentry->d_inode);
1898
1899 spin_lock(&info->lock);
1900 list_for_each_entry(xattr, &info->xattr_list, list) {
1901 if (strcmp(name, xattr->name))
1902 continue;
1903
1904 ret = xattr->size;
1905 if (buffer) {
1906 if (size < xattr->size)
1907 ret = -ERANGE;
1908 else
1909 memcpy(buffer, xattr->value, xattr->size);
1910 }
1911 break;
1912 }
1913 spin_unlock(&info->lock);
1914 return ret;
1915}
1916
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07001917static int shmem_xattr_set(struct inode *inode, const char *name,
Eric Parisb09e0fa2011-05-24 17:12:39 -07001918 const void *value, size_t size, int flags)
1919{
Eric Parisb09e0fa2011-05-24 17:12:39 -07001920 struct shmem_inode_info *info = SHMEM_I(inode);
1921 struct shmem_xattr *xattr;
1922 struct shmem_xattr *new_xattr = NULL;
Eric Parisb09e0fa2011-05-24 17:12:39 -07001923 int err = 0;
1924
1925 /* value == NULL means remove */
1926 if (value) {
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07001927 new_xattr = shmem_xattr_alloc(value, size);
Eric Parisb09e0fa2011-05-24 17:12:39 -07001928 if (!new_xattr)
1929 return -ENOMEM;
1930
1931 new_xattr->name = kstrdup(name, GFP_KERNEL);
1932 if (!new_xattr->name) {
1933 kfree(new_xattr);
1934 return -ENOMEM;
1935 }
Eric Parisb09e0fa2011-05-24 17:12:39 -07001936 }
1937
1938 spin_lock(&info->lock);
1939 list_for_each_entry(xattr, &info->xattr_list, list) {
1940 if (!strcmp(name, xattr->name)) {
1941 if (flags & XATTR_CREATE) {
1942 xattr = new_xattr;
1943 err = -EEXIST;
1944 } else if (new_xattr) {
1945 list_replace(&xattr->list, &new_xattr->list);
1946 } else {
1947 list_del(&xattr->list);
1948 }
1949 goto out;
1950 }
1951 }
1952 if (flags & XATTR_REPLACE) {
1953 xattr = new_xattr;
1954 err = -ENODATA;
1955 } else {
1956 list_add(&new_xattr->list, &info->xattr_list);
1957 xattr = NULL;
1958 }
1959out:
1960 spin_unlock(&info->lock);
1961 if (xattr)
1962 kfree(xattr->name);
1963 kfree(xattr);
1964 return err;
1965}
1966
Eric Parisb09e0fa2011-05-24 17:12:39 -07001967static const struct xattr_handler *shmem_xattr_handlers[] = {
1968#ifdef CONFIG_TMPFS_POSIX_ACL
1969 &generic_acl_access_handler,
1970 &generic_acl_default_handler,
1971#endif
1972 NULL
1973};
1974
1975static int shmem_xattr_validate(const char *name)
1976{
1977 struct { const char *prefix; size_t len; } arr[] = {
1978 { XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN },
1979 { XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN }
1980 };
1981 int i;
1982
1983 for (i = 0; i < ARRAY_SIZE(arr); i++) {
1984 size_t preflen = arr[i].len;
1985 if (strncmp(name, arr[i].prefix, preflen) == 0) {
1986 if (!name[preflen])
1987 return -EINVAL;
1988 return 0;
1989 }
1990 }
1991 return -EOPNOTSUPP;
1992}
1993
1994static ssize_t shmem_getxattr(struct dentry *dentry, const char *name,
1995 void *buffer, size_t size)
1996{
1997 int err;
1998
1999 /*
2000 * If this is a request for a synthetic attribute in the system.*
2001 * namespace use the generic infrastructure to resolve a handler
2002 * for it via sb->s_xattr.
2003 */
2004 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
2005 return generic_getxattr(dentry, name, buffer, size);
2006
2007 err = shmem_xattr_validate(name);
2008 if (err)
2009 return err;
2010
2011 return shmem_xattr_get(dentry, name, buffer, size);
2012}
2013
2014static int shmem_setxattr(struct dentry *dentry, const char *name,
2015 const void *value, size_t size, int flags)
2016{
2017 int err;
2018
2019 /*
2020 * If this is a request for a synthetic attribute in the system.*
2021 * namespace use the generic infrastructure to resolve a handler
2022 * for it via sb->s_xattr.
2023 */
2024 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
2025 return generic_setxattr(dentry, name, value, size, flags);
2026
2027 err = shmem_xattr_validate(name);
2028 if (err)
2029 return err;
2030
2031 if (size == 0)
2032 value = ""; /* empty EA, do not remove */
2033
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07002034 return shmem_xattr_set(dentry->d_inode, name, value, size, flags);
Eric Parisb09e0fa2011-05-24 17:12:39 -07002035
2036}
2037
2038static int shmem_removexattr(struct dentry *dentry, const char *name)
2039{
2040 int err;
2041
2042 /*
2043 * If this is a request for a synthetic attribute in the system.*
2044 * namespace use the generic infrastructure to resolve a handler
2045 * for it via sb->s_xattr.
2046 */
2047 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
2048 return generic_removexattr(dentry, name);
2049
2050 err = shmem_xattr_validate(name);
2051 if (err)
2052 return err;
2053
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07002054 return shmem_xattr_set(dentry->d_inode, name, NULL, 0, XATTR_REPLACE);
Eric Parisb09e0fa2011-05-24 17:12:39 -07002055}
2056
2057static bool xattr_is_trusted(const char *name)
2058{
2059 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
2060}
2061
2062static ssize_t shmem_listxattr(struct dentry *dentry, char *buffer, size_t size)
2063{
2064 bool trusted = capable(CAP_SYS_ADMIN);
2065 struct shmem_xattr *xattr;
2066 struct shmem_inode_info *info;
2067 size_t used = 0;
2068
2069 info = SHMEM_I(dentry->d_inode);
2070
2071 spin_lock(&info->lock);
2072 list_for_each_entry(xattr, &info->xattr_list, list) {
2073 size_t len;
2074
2075 /* skip "trusted." attributes for unprivileged callers */
2076 if (!trusted && xattr_is_trusted(xattr->name))
2077 continue;
2078
2079 len = strlen(xattr->name) + 1;
2080 used += len;
2081 if (buffer) {
2082 if (size < used) {
2083 used = -ERANGE;
2084 break;
2085 }
2086 memcpy(buffer, xattr->name, len);
2087 buffer += len;
2088 }
2089 }
2090 spin_unlock(&info->lock);
2091
2092 return used;
2093}
2094#endif /* CONFIG_TMPFS_XATTR */
2095
Hugh Dickins69f07ec2011-08-03 16:21:26 -07002096static const struct inode_operations shmem_short_symlink_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 .readlink = generic_readlink,
Hugh Dickins69f07ec2011-08-03 16:21:26 -07002098 .follow_link = shmem_follow_short_symlink,
Eric Parisb09e0fa2011-05-24 17:12:39 -07002099#ifdef CONFIG_TMPFS_XATTR
2100 .setxattr = shmem_setxattr,
2101 .getxattr = shmem_getxattr,
2102 .listxattr = shmem_listxattr,
2103 .removexattr = shmem_removexattr,
2104#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105};
2106
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002107static const struct inode_operations shmem_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 .readlink = generic_readlink,
2109 .follow_link = shmem_follow_link,
2110 .put_link = shmem_put_link,
Eric Parisb09e0fa2011-05-24 17:12:39 -07002111#ifdef CONFIG_TMPFS_XATTR
2112 .setxattr = shmem_setxattr,
2113 .getxattr = shmem_getxattr,
2114 .listxattr = shmem_listxattr,
2115 .removexattr = shmem_removexattr,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002116#endif
Eric Parisb09e0fa2011-05-24 17:12:39 -07002117};
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002118
David M. Grimes91828a42006-10-17 00:09:45 -07002119static struct dentry *shmem_get_parent(struct dentry *child)
2120{
2121 return ERR_PTR(-ESTALE);
2122}
2123
2124static int shmem_match(struct inode *ino, void *vfh)
2125{
2126 __u32 *fh = vfh;
2127 __u64 inum = fh[2];
2128 inum = (inum << 32) | fh[1];
2129 return ino->i_ino == inum && fh[0] == ino->i_generation;
2130}
2131
Christoph Hellwig480b1162007-10-21 16:42:13 -07002132static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
2133 struct fid *fid, int fh_len, int fh_type)
David M. Grimes91828a42006-10-17 00:09:45 -07002134{
David M. Grimes91828a42006-10-17 00:09:45 -07002135 struct inode *inode;
Christoph Hellwig480b1162007-10-21 16:42:13 -07002136 struct dentry *dentry = NULL;
2137 u64 inum = fid->raw[2];
2138 inum = (inum << 32) | fid->raw[1];
David M. Grimes91828a42006-10-17 00:09:45 -07002139
Christoph Hellwig480b1162007-10-21 16:42:13 -07002140 if (fh_len < 3)
2141 return NULL;
2142
2143 inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
2144 shmem_match, fid->raw);
David M. Grimes91828a42006-10-17 00:09:45 -07002145 if (inode) {
Christoph Hellwig480b1162007-10-21 16:42:13 -07002146 dentry = d_find_alias(inode);
David M. Grimes91828a42006-10-17 00:09:45 -07002147 iput(inode);
2148 }
2149
Christoph Hellwig480b1162007-10-21 16:42:13 -07002150 return dentry;
David M. Grimes91828a42006-10-17 00:09:45 -07002151}
2152
2153static int shmem_encode_fh(struct dentry *dentry, __u32 *fh, int *len,
2154 int connectable)
2155{
2156 struct inode *inode = dentry->d_inode;
2157
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05302158 if (*len < 3) {
2159 *len = 3;
David M. Grimes91828a42006-10-17 00:09:45 -07002160 return 255;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05302161 }
David M. Grimes91828a42006-10-17 00:09:45 -07002162
Al Viro1d3382cb2010-10-23 15:19:20 -04002163 if (inode_unhashed(inode)) {
David M. Grimes91828a42006-10-17 00:09:45 -07002164 /* Unfortunately insert_inode_hash is not idempotent,
2165 * so as we hash inodes here rather than at creation
2166 * time, we need a lock to ensure we only try
2167 * to do it once
2168 */
2169 static DEFINE_SPINLOCK(lock);
2170 spin_lock(&lock);
Al Viro1d3382cb2010-10-23 15:19:20 -04002171 if (inode_unhashed(inode))
David M. Grimes91828a42006-10-17 00:09:45 -07002172 __insert_inode_hash(inode,
2173 inode->i_ino + inode->i_generation);
2174 spin_unlock(&lock);
2175 }
2176
2177 fh[0] = inode->i_generation;
2178 fh[1] = inode->i_ino;
2179 fh[2] = ((__u64)inode->i_ino) >> 32;
2180
2181 *len = 3;
2182 return 1;
2183}
2184
Christoph Hellwig39655162007-10-21 16:42:17 -07002185static const struct export_operations shmem_export_ops = {
David M. Grimes91828a42006-10-17 00:09:45 -07002186 .get_parent = shmem_get_parent,
David M. Grimes91828a42006-10-17 00:09:45 -07002187 .encode_fh = shmem_encode_fh,
Christoph Hellwig480b1162007-10-21 16:42:13 -07002188 .fh_to_dentry = shmem_fh_to_dentry,
David M. Grimes91828a42006-10-17 00:09:45 -07002189};
2190
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002191static int shmem_parse_options(char *options, struct shmem_sb_info *sbinfo,
2192 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
2194 char *this_char, *value, *rest;
Eric W. Biederman8751e032012-02-07 16:46:12 -08002195 uid_t uid;
2196 gid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +00002198 while (options != NULL) {
2199 this_char = options;
2200 for (;;) {
2201 /*
2202 * NUL-terminate this option: unfortunately,
2203 * mount options form a comma-separated list,
2204 * but mpol's nodelist may also contain commas.
2205 */
2206 options = strchr(options, ',');
2207 if (options == NULL)
2208 break;
2209 options++;
2210 if (!isdigit(*options)) {
2211 options[-1] = '\0';
2212 break;
2213 }
2214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 if (!*this_char)
2216 continue;
2217 if ((value = strchr(this_char,'=')) != NULL) {
2218 *value++ = 0;
2219 } else {
2220 printk(KERN_ERR
2221 "tmpfs: No value for mount option '%s'\n",
2222 this_char);
2223 return 1;
2224 }
2225
2226 if (!strcmp(this_char,"size")) {
2227 unsigned long long size;
2228 size = memparse(value,&rest);
2229 if (*rest == '%') {
2230 size <<= PAGE_SHIFT;
2231 size *= totalram_pages;
2232 do_div(size, 100);
2233 rest++;
2234 }
2235 if (*rest)
2236 goto bad_val;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002237 sbinfo->max_blocks =
2238 DIV_ROUND_UP(size, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 } else if (!strcmp(this_char,"nr_blocks")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002240 sbinfo->max_blocks = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 if (*rest)
2242 goto bad_val;
2243 } else if (!strcmp(this_char,"nr_inodes")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002244 sbinfo->max_inodes = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 if (*rest)
2246 goto bad_val;
2247 } else if (!strcmp(this_char,"mode")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002248 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002250 sbinfo->mode = simple_strtoul(value, &rest, 8) & 07777;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 if (*rest)
2252 goto bad_val;
2253 } else if (!strcmp(this_char,"uid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002254 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 continue;
Eric W. Biederman8751e032012-02-07 16:46:12 -08002256 uid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 if (*rest)
2258 goto bad_val;
Eric W. Biederman8751e032012-02-07 16:46:12 -08002259 sbinfo->uid = make_kuid(current_user_ns(), uid);
2260 if (!uid_valid(sbinfo->uid))
2261 goto bad_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 } else if (!strcmp(this_char,"gid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002263 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 continue;
Eric W. Biederman8751e032012-02-07 16:46:12 -08002265 gid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 if (*rest)
2267 goto bad_val;
Eric W. Biederman8751e032012-02-07 16:46:12 -08002268 sbinfo->gid = make_kgid(current_user_ns(), gid);
2269 if (!gid_valid(sbinfo->gid))
2270 goto bad_val;
Robin Holt7339ff82006-01-14 13:20:48 -08002271 } else if (!strcmp(this_char,"mpol")) {
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002272 if (mpol_parse_str(value, &sbinfo->mpol, 1))
Robin Holt7339ff82006-01-14 13:20:48 -08002273 goto bad_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 } else {
2275 printk(KERN_ERR "tmpfs: Bad mount option %s\n",
2276 this_char);
2277 return 1;
2278 }
2279 }
2280 return 0;
2281
2282bad_val:
2283 printk(KERN_ERR "tmpfs: Bad value '%s' for mount option '%s'\n",
2284 value, this_char);
2285 return 1;
2286
2287}
2288
2289static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
2290{
2291 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002292 struct shmem_sb_info config = *sbinfo;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002293 unsigned long inodes;
2294 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002296 if (shmem_parse_options(data, &config, true))
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002297 return error;
2298
2299 spin_lock(&sbinfo->stat_lock);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002300 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
Tim Chen7e496292010-08-09 17:19:05 -07002301 if (percpu_counter_compare(&sbinfo->used_blocks, config.max_blocks) > 0)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002302 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002303 if (config.max_inodes < inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002304 goto out;
2305 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07002306 * Those tests disallow limited->unlimited while any are in use;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002307 * but we must separately disallow unlimited->limited, because
2308 * in that case we have no record of how much is already in use.
2309 */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002310 if (config.max_blocks && !sbinfo->max_blocks)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002311 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002312 if (config.max_inodes && !sbinfo->max_inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002313 goto out;
2314
2315 error = 0;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002316 sbinfo->max_blocks = config.max_blocks;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002317 sbinfo->max_inodes = config.max_inodes;
2318 sbinfo->free_inodes = config.max_inodes - inodes;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002319
2320 mpol_put(sbinfo->mpol);
2321 sbinfo->mpol = config.mpol; /* transfers initial ref */
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002322out:
2323 spin_unlock(&sbinfo->stat_lock);
2324 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002326
Al Viro34c80b12011-12-08 21:32:45 -05002327static int shmem_show_options(struct seq_file *seq, struct dentry *root)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002328{
Al Viro34c80b12011-12-08 21:32:45 -05002329 struct shmem_sb_info *sbinfo = SHMEM_SB(root->d_sb);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002330
2331 if (sbinfo->max_blocks != shmem_default_max_blocks())
2332 seq_printf(seq, ",size=%luk",
2333 sbinfo->max_blocks << (PAGE_CACHE_SHIFT - 10));
2334 if (sbinfo->max_inodes != shmem_default_max_inodes())
2335 seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
2336 if (sbinfo->mode != (S_IRWXUGO | S_ISVTX))
Al Viro09208d12011-07-26 03:15:03 -04002337 seq_printf(seq, ",mode=%03ho", sbinfo->mode);
Eric W. Biederman8751e032012-02-07 16:46:12 -08002338 if (!uid_eq(sbinfo->uid, GLOBAL_ROOT_UID))
2339 seq_printf(seq, ",uid=%u",
2340 from_kuid_munged(&init_user_ns, sbinfo->uid));
2341 if (!gid_eq(sbinfo->gid, GLOBAL_ROOT_GID))
2342 seq_printf(seq, ",gid=%u",
2343 from_kgid_munged(&init_user_ns, sbinfo->gid));
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002344 shmem_show_mpol(seq, sbinfo->mpol);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002345 return 0;
2346}
2347#endif /* CONFIG_TMPFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
2349static void shmem_put_super(struct super_block *sb)
2350{
Hugh Dickins602586a2010-08-17 15:23:56 -07002351 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2352
2353 percpu_counter_destroy(&sbinfo->used_blocks);
2354 kfree(sbinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 sb->s_fs_info = NULL;
2356}
2357
Kay Sievers2b2af542009-04-30 15:23:42 +02002358int shmem_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359{
2360 struct inode *inode;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002361 struct shmem_sb_info *sbinfo;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002362 int err = -ENOMEM;
2363
2364 /* Round up to L1_CACHE_BYTES to resist false sharing */
Pekka Enberg425fbf02009-09-21 17:03:50 -07002365 sbinfo = kzalloc(max((int)sizeof(struct shmem_sb_info),
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002366 L1_CACHE_BYTES), GFP_KERNEL);
2367 if (!sbinfo)
2368 return -ENOMEM;
2369
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002370 sbinfo->mode = S_IRWXUGO | S_ISVTX;
David Howells76aac0e2008-11-14 10:39:12 +11002371 sbinfo->uid = current_fsuid();
2372 sbinfo->gid = current_fsgid();
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002373 sb->s_fs_info = sbinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002375#ifdef CONFIG_TMPFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 /*
2377 * Per default we only allow half of the physical ram per
2378 * tmpfs instance, limiting inodes to one per page of lowmem;
2379 * but the internal instance is left unlimited.
2380 */
2381 if (!(sb->s_flags & MS_NOUSER)) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002382 sbinfo->max_blocks = shmem_default_max_blocks();
2383 sbinfo->max_inodes = shmem_default_max_inodes();
2384 if (shmem_parse_options(data, sbinfo, false)) {
2385 err = -EINVAL;
2386 goto failed;
2387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 }
David M. Grimes91828a42006-10-17 00:09:45 -07002389 sb->s_export_op = &shmem_export_ops;
Hugh Dickins2f6e38f2012-05-29 15:06:38 -07002390 sb->s_flags |= MS_NOSEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391#else
2392 sb->s_flags |= MS_NOUSER;
2393#endif
2394
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002395 spin_lock_init(&sbinfo->stat_lock);
Hugh Dickins602586a2010-08-17 15:23:56 -07002396 if (percpu_counter_init(&sbinfo->used_blocks, 0))
2397 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002398 sbinfo->free_inodes = sbinfo->max_inodes;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002399
Hugh Dickins285b2c42011-08-03 16:21:20 -07002400 sb->s_maxbytes = MAX_LFS_FILESIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 sb->s_blocksize = PAGE_CACHE_SIZE;
2402 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
2403 sb->s_magic = TMPFS_MAGIC;
2404 sb->s_op = &shmem_ops;
Robin H. Johnsoncfd95a92006-06-12 21:50:25 +01002405 sb->s_time_gran = 1;
Eric Parisb09e0fa2011-05-24 17:12:39 -07002406#ifdef CONFIG_TMPFS_XATTR
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002407 sb->s_xattr = shmem_xattr_handlers;
Eric Parisb09e0fa2011-05-24 17:12:39 -07002408#endif
2409#ifdef CONFIG_TMPFS_POSIX_ACL
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002410 sb->s_flags |= MS_POSIXACL;
2411#endif
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002412
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002413 inode = shmem_get_inode(sb, NULL, S_IFDIR | sbinfo->mode, 0, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 if (!inode)
2415 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002416 inode->i_uid = sbinfo->uid;
2417 inode->i_gid = sbinfo->gid;
Al Viro318ceed2012-02-12 22:08:01 -05002418 sb->s_root = d_make_root(inode);
2419 if (!sb->s_root)
Al Viro48fde702012-01-08 22:15:13 -05002420 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 return 0;
2422
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423failed:
2424 shmem_put_super(sb);
2425 return err;
2426}
2427
Pekka Enbergfcc234f2006-03-22 00:08:13 -08002428static struct kmem_cache *shmem_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430static struct inode *shmem_alloc_inode(struct super_block *sb)
2431{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002432 struct shmem_inode_info *info;
2433 info = kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL);
2434 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 return NULL;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002436 return &info->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437}
2438
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002439static void shmem_destroy_callback(struct rcu_head *head)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11002440{
2441 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11002442 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
2443}
2444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445static void shmem_destroy_inode(struct inode *inode)
2446{
Al Viro09208d12011-07-26 03:15:03 -04002447 if (S_ISREG(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002449 call_rcu(&inode->i_rcu, shmem_destroy_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450}
2451
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002452static void shmem_init_inode(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002454 struct shmem_inode_info *info = foo;
2455 inode_init_once(&info->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456}
2457
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002458static int shmem_init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
2460 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
2461 sizeof(struct shmem_inode_info),
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002462 0, SLAB_PANIC, shmem_init_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 return 0;
2464}
2465
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002466static void shmem_destroy_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07002468 kmem_cache_destroy(shmem_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469}
2470
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07002471static const struct address_space_operations shmem_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 .writepage = shmem_writepage,
Ken Chen76719322007-02-10 01:43:15 -08002473 .set_page_dirty = __set_page_dirty_no_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474#ifdef CONFIG_TMPFS
Nick Piggin800d15a2007-10-16 01:25:03 -07002475 .write_begin = shmem_write_begin,
2476 .write_end = shmem_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477#endif
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -07002478 .migratepage = migrate_page,
Andi Kleenaa261f52009-09-16 11:50:16 +02002479 .error_remove_page = generic_error_remove_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480};
2481
Helge Deller15ad7cd2006-12-06 20:40:36 -08002482static const struct file_operations shmem_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 .mmap = shmem_mmap,
2484#ifdef CONFIG_TMPFS
2485 .llseek = generic_file_llseek,
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07002486 .read = do_sync_read,
Hugh Dickins5402b972008-02-04 22:28:44 -08002487 .write = do_sync_write,
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07002488 .aio_read = shmem_file_aio_read,
Hugh Dickins5402b972008-02-04 22:28:44 -08002489 .aio_write = generic_file_aio_write,
Christoph Hellwig1b061d92010-05-26 17:53:41 +02002490 .fsync = noop_fsync,
Hugh Dickins708e3502011-07-25 17:12:32 -07002491 .splice_read = shmem_file_splice_read,
Hugh Dickinsae9764162007-06-04 10:00:39 +02002492 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493#endif
2494};
2495
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002496static const struct inode_operations shmem_inode_operations = {
Hugh Dickins94c1e622011-06-27 16:18:03 -07002497 .setattr = shmem_setattr,
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -08002498 .truncate_range = shmem_truncate_range,
Eric Parisb09e0fa2011-05-24 17:12:39 -07002499#ifdef CONFIG_TMPFS_XATTR
2500 .setxattr = shmem_setxattr,
2501 .getxattr = shmem_getxattr,
2502 .listxattr = shmem_listxattr,
2503 .removexattr = shmem_removexattr,
2504#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505};
2506
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002507static const struct inode_operations shmem_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508#ifdef CONFIG_TMPFS
2509 .create = shmem_create,
2510 .lookup = simple_lookup,
2511 .link = shmem_link,
2512 .unlink = shmem_unlink,
2513 .symlink = shmem_symlink,
2514 .mkdir = shmem_mkdir,
2515 .rmdir = shmem_rmdir,
2516 .mknod = shmem_mknod,
2517 .rename = shmem_rename,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518#endif
Eric Parisb09e0fa2011-05-24 17:12:39 -07002519#ifdef CONFIG_TMPFS_XATTR
2520 .setxattr = shmem_setxattr,
2521 .getxattr = shmem_getxattr,
2522 .listxattr = shmem_listxattr,
2523 .removexattr = shmem_removexattr,
2524#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002525#ifdef CONFIG_TMPFS_POSIX_ACL
Hugh Dickins94c1e622011-06-27 16:18:03 -07002526 .setattr = shmem_setattr,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002527#endif
2528};
2529
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002530static const struct inode_operations shmem_special_inode_operations = {
Eric Parisb09e0fa2011-05-24 17:12:39 -07002531#ifdef CONFIG_TMPFS_XATTR
2532 .setxattr = shmem_setxattr,
2533 .getxattr = shmem_getxattr,
2534 .listxattr = shmem_listxattr,
2535 .removexattr = shmem_removexattr,
2536#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002537#ifdef CONFIG_TMPFS_POSIX_ACL
Hugh Dickins94c1e622011-06-27 16:18:03 -07002538 .setattr = shmem_setattr,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002539#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540};
2541
Hugh Dickins759b9772007-03-05 00:30:28 -08002542static const struct super_operations shmem_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 .alloc_inode = shmem_alloc_inode,
2544 .destroy_inode = shmem_destroy_inode,
2545#ifdef CONFIG_TMPFS
2546 .statfs = shmem_statfs,
2547 .remount_fs = shmem_remount_fs,
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002548 .show_options = shmem_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549#endif
Al Viro1f895f72010-06-05 19:10:41 -04002550 .evict_inode = shmem_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 .drop_inode = generic_delete_inode,
2552 .put_super = shmem_put_super,
2553};
2554
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002555static const struct vm_operations_struct shmem_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07002556 .fault = shmem_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557#ifdef CONFIG_NUMA
2558 .set_policy = shmem_set_policy,
2559 .get_policy = shmem_get_policy,
2560#endif
2561};
2562
Al Viro3c26ff62010-07-25 11:46:36 +04002563static struct dentry *shmem_mount(struct file_system_type *fs_type,
2564 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565{
Al Viro3c26ff62010-07-25 11:46:36 +04002566 return mount_nodev(fs_type, flags, data, shmem_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567}
2568
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002569static struct file_system_type shmem_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 .owner = THIS_MODULE,
2571 .name = "tmpfs",
Al Viro3c26ff62010-07-25 11:46:36 +04002572 .mount = shmem_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 .kill_sb = kill_litter_super,
2574};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002576int __init shmem_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577{
2578 int error;
2579
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07002580 error = bdi_init(&shmem_backing_dev_info);
2581 if (error)
2582 goto out4;
2583
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002584 error = shmem_init_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 if (error)
2586 goto out3;
2587
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002588 error = register_filesystem(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 if (error) {
2590 printk(KERN_ERR "Could not register tmpfs\n");
2591 goto out2;
2592 }
Greg Kroah-Hartman95dc1122005-06-20 21:15:16 -07002593
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002594 shm_mnt = vfs_kern_mount(&shmem_fs_type, MS_NOUSER,
2595 shmem_fs_type.name, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 if (IS_ERR(shm_mnt)) {
2597 error = PTR_ERR(shm_mnt);
2598 printk(KERN_ERR "Could not kern_mount tmpfs\n");
2599 goto out1;
2600 }
2601 return 0;
2602
2603out1:
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002604 unregister_filesystem(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605out2:
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002606 shmem_destroy_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607out3:
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07002608 bdi_destroy(&shmem_backing_dev_info);
2609out4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 shm_mnt = ERR_PTR(error);
2611 return error;
2612}
Matt Mackall853ac432009-01-06 14:40:20 -08002613
2614#else /* !CONFIG_SHMEM */
2615
2616/*
2617 * tiny-shmem: simple shmemfs and tmpfs using ramfs code
2618 *
2619 * This is intended for small system where the benefits of the full
2620 * shmem code (swap-backed and resource-limited) are outweighed by
2621 * their complexity. On systems without swap this code should be
2622 * effectively equivalent, but much lighter weight.
2623 */
2624
2625#include <linux/ramfs.h>
2626
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002627static struct file_system_type shmem_fs_type = {
Matt Mackall853ac432009-01-06 14:40:20 -08002628 .name = "tmpfs",
Al Viro3c26ff62010-07-25 11:46:36 +04002629 .mount = ramfs_mount,
Matt Mackall853ac432009-01-06 14:40:20 -08002630 .kill_sb = kill_litter_super,
2631};
2632
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002633int __init shmem_init(void)
Matt Mackall853ac432009-01-06 14:40:20 -08002634{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002635 BUG_ON(register_filesystem(&shmem_fs_type) != 0);
Matt Mackall853ac432009-01-06 14:40:20 -08002636
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002637 shm_mnt = kern_mount(&shmem_fs_type);
Matt Mackall853ac432009-01-06 14:40:20 -08002638 BUG_ON(IS_ERR(shm_mnt));
2639
2640 return 0;
2641}
2642
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002643int shmem_unuse(swp_entry_t swap, struct page *page)
Matt Mackall853ac432009-01-06 14:40:20 -08002644{
2645 return 0;
2646}
2647
Hugh Dickins3f96b792009-09-21 17:03:37 -07002648int shmem_lock(struct file *file, int lock, struct user_struct *user)
2649{
2650 return 0;
2651}
2652
Hugh Dickins24513262012-01-20 14:34:21 -08002653void shmem_unlock_mapping(struct address_space *mapping)
2654{
2655}
2656
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002657void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
Hugh Dickins94c1e622011-06-27 16:18:03 -07002658{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002659 truncate_inode_pages_range(inode->i_mapping, lstart, lend);
Hugh Dickins94c1e622011-06-27 16:18:03 -07002660}
2661EXPORT_SYMBOL_GPL(shmem_truncate_range);
2662
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002663#define shmem_vm_ops generic_file_vm_ops
2664#define shmem_file_operations ramfs_file_operations
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002665#define shmem_get_inode(sb, dir, mode, dev, flags) ramfs_get_inode(sb, dir, mode, dev)
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002666#define shmem_acct_size(flags, size) 0
2667#define shmem_unacct_size(flags, size) do {} while (0)
Matt Mackall853ac432009-01-06 14:40:20 -08002668
2669#endif /* CONFIG_SHMEM */
2670
2671/* common code */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
Randy Dunlap46711812008-03-19 17:00:41 -07002673/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 * shmem_file_setup - get an unlinked file living in tmpfs
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 * @name: name for dentry (to be seen in /proc/<pid>/maps
2676 * @size: size to be set for the file
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002677 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 */
Sergei Trofimovich168f5ac2009-06-16 15:33:02 -07002679struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680{
2681 int error;
2682 struct file *file;
2683 struct inode *inode;
Al Viro2c48b9c2009-08-09 00:52:35 +04002684 struct path path;
2685 struct dentry *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 struct qstr this;
2687
2688 if (IS_ERR(shm_mnt))
2689 return (void *)shm_mnt;
2690
Hugh Dickins285b2c42011-08-03 16:21:20 -07002691 if (size < 0 || size > MAX_LFS_FILESIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 return ERR_PTR(-EINVAL);
2693
2694 if (shmem_acct_size(flags, size))
2695 return ERR_PTR(-ENOMEM);
2696
2697 error = -ENOMEM;
2698 this.name = name;
2699 this.len = strlen(name);
2700 this.hash = 0; /* will go */
2701 root = shm_mnt->mnt_root;
Al Viro2c48b9c2009-08-09 00:52:35 +04002702 path.dentry = d_alloc(root, &this);
2703 if (!path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 goto put_memory;
Al Viro2c48b9c2009-08-09 00:52:35 +04002705 path.mnt = mntget(shm_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 error = -ENOSPC;
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002708 inode = shmem_get_inode(root->d_sb, NULL, S_IFREG | S_IRWXUGO, 0, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 if (!inode)
Al Viro4b42af82009-08-05 18:25:56 +04002710 goto put_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
Al Viro2c48b9c2009-08-09 00:52:35 +04002712 d_instantiate(path.dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 inode->i_size = size;
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02002714 clear_nlink(inode); /* It is unlinked */
Matt Mackall853ac432009-01-06 14:40:20 -08002715#ifndef CONFIG_MMU
2716 error = ramfs_nommu_expand_for_mapping(inode, size);
2717 if (error)
Al Viro4b42af82009-08-05 18:25:56 +04002718 goto put_dentry;
Matt Mackall853ac432009-01-06 14:40:20 -08002719#endif
Al Viro4b42af82009-08-05 18:25:56 +04002720
2721 error = -ENFILE;
Al Viro2c48b9c2009-08-09 00:52:35 +04002722 file = alloc_file(&path, FMODE_WRITE | FMODE_READ,
Al Viro4b42af82009-08-05 18:25:56 +04002723 &shmem_file_operations);
2724 if (!file)
2725 goto put_dentry;
2726
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 return file;
2728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729put_dentry:
Al Viro2c48b9c2009-08-09 00:52:35 +04002730 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731put_memory:
2732 shmem_unacct_size(flags, size);
2733 return ERR_PTR(error);
2734}
Keith Packard395e0dd2008-06-20 00:08:06 -07002735EXPORT_SYMBOL_GPL(shmem_file_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
Randy Dunlap46711812008-03-19 17:00:41 -07002737/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 * shmem_zero_setup - setup a shared anonymous mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
2740 */
2741int shmem_zero_setup(struct vm_area_struct *vma)
2742{
2743 struct file *file;
2744 loff_t size = vma->vm_end - vma->vm_start;
2745
2746 file = shmem_file_setup("dev/zero", size, vma->vm_flags);
2747 if (IS_ERR(file))
2748 return PTR_ERR(file);
2749
2750 if (vma->vm_file)
2751 fput(vma->vm_file);
2752 vma->vm_file = file;
2753 vma->vm_ops = &shmem_vm_ops;
Hugh Dickinsbee4c36a2011-03-22 16:33:43 -07002754 vma->vm_flags |= VM_CAN_NONLINEAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 return 0;
2756}
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07002757
2758/**
2759 * shmem_read_mapping_page_gfp - read into page cache, using specified page allocation flags.
2760 * @mapping: the page's address_space
2761 * @index: the page index
2762 * @gfp: the page allocator flags to use if allocating
2763 *
2764 * This behaves as a tmpfs "read_cache_page_gfp(mapping, index, gfp)",
2765 * with any new page allocations done using the specified allocation flags.
2766 * But read_cache_page_gfp() uses the ->readpage() method: which does not
2767 * suit tmpfs, since it may have pages in swapcache, and needs to find those
2768 * for itself; although drivers/gpu/drm i915 and ttm rely upon this support.
2769 *
Hugh Dickins68da9f02011-07-25 17:12:34 -07002770 * i915_gem_object_get_pages_gtt() mixes __GFP_NORETRY | __GFP_NOWARN in
2771 * with the mapping_gfp_mask(), to avoid OOMing the machine unnecessarily.
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07002772 */
2773struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
2774 pgoff_t index, gfp_t gfp)
2775{
Hugh Dickins68da9f02011-07-25 17:12:34 -07002776#ifdef CONFIG_SHMEM
2777 struct inode *inode = mapping->host;
Hugh Dickins9276aad2011-07-25 17:12:34 -07002778 struct page *page;
Hugh Dickins68da9f02011-07-25 17:12:34 -07002779 int error;
2780
2781 BUG_ON(mapping->a_ops != &shmem_aops);
2782 error = shmem_getpage_gfp(inode, index, &page, SGP_CACHE, gfp, NULL);
2783 if (error)
2784 page = ERR_PTR(error);
2785 else
2786 unlock_page(page);
2787 return page;
2788#else
2789 /*
2790 * The tiny !SHMEM case uses ramfs without swap
2791 */
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07002792 return read_cache_page_gfp(mapping, index, gfp);
Hugh Dickins68da9f02011-07-25 17:12:34 -07002793#endif
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07002794}
2795EXPORT_SYMBOL_GPL(shmem_read_mapping_page_gfp);