blob: f96614526d1c6d367d2883d48d4015ea13645f25 [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 Dickins0edd73b2005-06-21 17:15:04 -07009 * Copyright (C) 2002-2005 Hugh Dickins.
10 * Copyright (C) 2002-2005 VERITAS Software Corporation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Copyright (C) 2004 Andi Kleen, SuSE Labs
12 *
13 * Extended attribute support for tmpfs:
14 * Copyright (c) 2004, Luke Kenneth Casson Leighton <lkcl@lkcl.net>
15 * Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
16 *
Matt Mackall853ac432009-01-06 14:40:20 -080017 * tiny-shmem:
18 * Copyright (c) 2004, 2008 Matt Mackall <mpm@selenic.com>
19 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * This file is released under the GPL.
21 */
22
Matt Mackall853ac432009-01-06 14:40:20 -080023#include <linux/fs.h>
24#include <linux/init.h>
25#include <linux/vfs.h>
26#include <linux/mount.h>
Hugh Dickinscaefba12009-04-13 14:40:12 -070027#include <linux/pagemap.h>
Matt Mackall853ac432009-01-06 14:40:20 -080028#include <linux/file.h>
29#include <linux/mm.h>
30#include <linux/module.h>
Tim Chen7e496292010-08-09 17:19:05 -070031#include <linux/percpu_counter.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 Dickins708e3502011-07-25 17:12:32 -070054#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/security.h>
56#include <linux/swapops.h>
57#include <linux/mempolicy.h>
58#include <linux/namei.h>
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +000059#include <linux/ctype.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070060#include <linux/migrate.h>
Christoph Lameterc1f60a52006-09-25 23:31:11 -070061#include <linux/highmem.h>
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -080062#include <linux/seq_file.h>
Mimi Zohar92562922008-10-07 14:00:12 -040063#include <linux/magic.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <asm/uaccess.h>
66#include <asm/div64.h>
67#include <asm/pgtable.h>
68
Hugh Dickinscaefba12009-04-13 14:40:12 -070069/*
70 * The maximum size of a shmem/tmpfs file is limited by the maximum size of
71 * its triple-indirect swap vector - see illustration at shmem_swp_entry().
72 *
73 * With 4kB page size, maximum file size is just over 2TB on a 32-bit kernel,
74 * but one eighth of that on a 64-bit kernel. With 8kB page size, maximum
75 * file size is just over 4TB on a 64-bit kernel, but 16TB on a 32-bit kernel,
76 * MAX_LFS_FILESIZE being then more restrictive than swap vector layout.
77 *
78 * We use / and * instead of shifts in the definitions below, so that the swap
79 * vector can be tested with small even values (e.g. 20) for ENTRIES_PER_PAGE.
80 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#define ENTRIES_PER_PAGE (PAGE_CACHE_SIZE/sizeof(unsigned long))
Yuri Tikhonov61609d02009-04-13 14:40:11 -070082#define ENTRIES_PER_PAGEPAGE ((unsigned long long)ENTRIES_PER_PAGE*ENTRIES_PER_PAGE)
Hugh Dickinscaefba12009-04-13 14:40:12 -070083
84#define SHMSWP_MAX_INDEX (SHMEM_NR_DIRECT + (ENTRIES_PER_PAGEPAGE/2) * (ENTRIES_PER_PAGE+1))
85#define SHMSWP_MAX_BYTES (SHMSWP_MAX_INDEX << PAGE_CACHE_SHIFT)
86
87#define SHMEM_MAX_BYTES min_t(unsigned long long, SHMSWP_MAX_BYTES, MAX_LFS_FILESIZE)
88#define SHMEM_MAX_INDEX ((unsigned long)((SHMEM_MAX_BYTES+1) >> PAGE_CACHE_SHIFT))
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#define BLOCKS_PER_PAGE (PAGE_CACHE_SIZE/512)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#define VM_ACCT(size) (PAGE_CACHE_ALIGN(size) >> PAGE_SHIFT)
92
93/* info->flags needs VM_flags to handle pagein/truncate races efficiently */
94#define SHMEM_PAGEIN VM_READ
95#define SHMEM_TRUNCATE VM_WRITE
96
97/* Definition to limit shmem_truncate's steps between cond_rescheds */
98#define LATENCY_LIMIT 64
99
100/* Pretend that each entry is of this size in directory's i_size */
101#define BOGO_DIRENT_SIZE 20
102
Eric Parisb09e0fa2011-05-24 17:12:39 -0700103struct shmem_xattr {
104 struct list_head list; /* anchored by shmem_inode_info->xattr_list */
105 char *name; /* xattr name */
106 size_t size;
107 char value[0];
108};
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/* Flag allocation requirements to shmem_getpage and shmem_swp_alloc */
111enum sgp_type {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 SGP_READ, /* don't exceed i_size, don't allocate page */
113 SGP_CACHE, /* don't exceed i_size, may allocate page */
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -0800114 SGP_DIRTY, /* like SGP_CACHE, but set new page dirty */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 SGP_WRITE, /* may exceed i_size, may allocate page */
116};
117
Andrew Mortonb76db7352008-02-08 04:21:49 -0800118#ifdef CONFIG_TMPFS
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800119static unsigned long shmem_default_max_blocks(void)
120{
121 return totalram_pages / 2;
122}
123
124static unsigned long shmem_default_max_inodes(void)
125{
126 return min(totalram_pages - totalhigh_pages, totalram_pages / 2);
127}
Andrew Mortonb76db7352008-02-08 04:21:49 -0800128#endif
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static int shmem_getpage(struct inode *inode, unsigned long idx,
131 struct page **pagep, enum sgp_type sgp, int *type);
132
Al Viro6daa0e22005-10-21 03:18:50 -0400133static inline struct page *shmem_dir_alloc(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 /*
136 * The above definition of ENTRIES_PER_PAGE, and the use of
137 * BLOCKS_PER_PAGE on indirect pages, assume PAGE_CACHE_SIZE:
138 * might be reconsidered if it ever diverges from PAGE_SIZE.
Mel Gorman769848c2007-07-17 04:03:05 -0700139 *
Mel Gormane12ba742007-10-16 01:25:52 -0700140 * Mobility flags are masked out as swap vectors cannot move
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 */
Mel Gormane12ba742007-10-16 01:25:52 -0700142 return alloc_pages((gfp_mask & ~GFP_MOVABLE_MASK) | __GFP_ZERO,
Mel Gorman769848c2007-07-17 04:03:05 -0700143 PAGE_CACHE_SHIFT-PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146static inline void shmem_dir_free(struct page *page)
147{
148 __free_pages(page, PAGE_CACHE_SHIFT-PAGE_SHIFT);
149}
150
151static struct page **shmem_dir_map(struct page *page)
152{
153 return (struct page **)kmap_atomic(page, KM_USER0);
154}
155
156static inline void shmem_dir_unmap(struct page **dir)
157{
158 kunmap_atomic(dir, KM_USER0);
159}
160
161static swp_entry_t *shmem_swp_map(struct page *page)
162{
163 return (swp_entry_t *)kmap_atomic(page, KM_USER1);
164}
165
166static inline void shmem_swp_balance_unmap(void)
167{
168 /*
169 * When passing a pointer to an i_direct entry, to code which
170 * also handles indirect entries and so will shmem_swp_unmap,
171 * we must arrange for the preempt count to remain in balance.
172 * What kmap_atomic of a lowmem page does depends on config
173 * and architecture, so pretend to kmap_atomic some lowmem page.
174 */
175 (void) kmap_atomic(ZERO_PAGE(0), KM_USER1);
176}
177
178static inline void shmem_swp_unmap(swp_entry_t *entry)
179{
180 kunmap_atomic(entry, KM_USER1);
181}
182
183static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
184{
185 return sb->s_fs_info;
186}
187
188/*
189 * shmem_file_setup pre-accounts the whole fixed size of a VM object,
190 * for shared memory and for shared anonymous (/dev/zero) mappings
191 * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
192 * consistent with the pre-accounting of private mappings ...
193 */
194static inline int shmem_acct_size(unsigned long flags, loff_t size)
195{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000196 return (flags & VM_NORESERVE) ?
197 0 : security_vm_enough_memory_kern(VM_ACCT(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
200static inline void shmem_unacct_size(unsigned long flags, loff_t size)
201{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000202 if (!(flags & VM_NORESERVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 vm_unacct_memory(VM_ACCT(size));
204}
205
206/*
207 * ... whereas tmpfs objects are accounted incrementally as
208 * pages are allocated, in order to allow huge sparse files.
209 * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM,
210 * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
211 */
212static inline int shmem_acct_block(unsigned long flags)
213{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000214 return (flags & VM_NORESERVE) ?
215 security_vm_enough_memory_kern(VM_ACCT(PAGE_CACHE_SIZE)) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
218static inline void shmem_unacct_blocks(unsigned long flags, long pages)
219{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000220 if (flags & VM_NORESERVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 vm_unacct_memory(pages * VM_ACCT(PAGE_CACHE_SIZE));
222}
223
Hugh Dickins759b9772007-03-05 00:30:28 -0800224static const struct super_operations shmem_ops;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700225static const struct address_space_operations shmem_aops;
Helge Deller15ad7cd2006-12-06 20:40:36 -0800226static const struct file_operations shmem_file_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800227static const struct inode_operations shmem_inode_operations;
228static const struct inode_operations shmem_dir_inode_operations;
229static const struct inode_operations shmem_special_inode_operations;
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +0400230static const struct vm_operations_struct shmem_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -0700232static struct backing_dev_info shmem_backing_dev_info __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 .ra_pages = 0, /* No readahead */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700234 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK | BDI_CAP_SWAP_BACKED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235};
236
237static LIST_HEAD(shmem_swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800238static DEFINE_MUTEX(shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240static void shmem_free_blocks(struct inode *inode, long pages)
241{
242 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
Hugh Dickins0edd73b2005-06-21 17:15:04 -0700243 if (sbinfo->max_blocks) {
Tim Chen7e496292010-08-09 17:19:05 -0700244 percpu_counter_add(&sbinfo->used_blocks, -pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 inode->i_blocks -= pages*BLOCKS_PER_PAGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247}
248
Pavel Emelyanov5b04c682008-02-04 22:28:47 -0800249static int shmem_reserve_inode(struct super_block *sb)
250{
251 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
252 if (sbinfo->max_inodes) {
253 spin_lock(&sbinfo->stat_lock);
254 if (!sbinfo->free_inodes) {
255 spin_unlock(&sbinfo->stat_lock);
256 return -ENOSPC;
257 }
258 sbinfo->free_inodes--;
259 spin_unlock(&sbinfo->stat_lock);
260 }
261 return 0;
262}
263
264static void shmem_free_inode(struct super_block *sb)
265{
266 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
267 if (sbinfo->max_inodes) {
268 spin_lock(&sbinfo->stat_lock);
269 sbinfo->free_inodes++;
270 spin_unlock(&sbinfo->stat_lock);
271 }
272}
273
Randy Dunlap46711812008-03-19 17:00:41 -0700274/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 * shmem_recalc_inode - recalculate the size of an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 * @inode: inode to recalc
277 *
278 * We have to calculate the free blocks since the mm can drop
279 * undirtied hole pages behind our back.
280 *
281 * But normally info->alloced == inode->i_mapping->nrpages + info->swapped
282 * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
283 *
284 * It has to be called with the spinlock held.
285 */
286static void shmem_recalc_inode(struct inode *inode)
287{
288 struct shmem_inode_info *info = SHMEM_I(inode);
289 long freed;
290
291 freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
292 if (freed > 0) {
293 info->alloced -= freed;
294 shmem_unacct_blocks(info->flags, freed);
295 shmem_free_blocks(inode, freed);
296 }
297}
298
Randy Dunlap46711812008-03-19 17:00:41 -0700299/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 * shmem_swp_entry - find the swap vector position in the info structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 * @info: info structure for the inode
302 * @index: index of the page to find
303 * @page: optional page to add to the structure. Has to be preset to
304 * all zeros
305 *
306 * If there is no space allocated yet it will return NULL when
307 * page is NULL, else it will use the page for the needed block,
308 * setting it to NULL on return to indicate that it has been used.
309 *
310 * The swap vector is organized the following way:
311 *
312 * There are SHMEM_NR_DIRECT entries directly stored in the
313 * shmem_inode_info structure. So small files do not need an addional
314 * allocation.
315 *
316 * For pages with index > SHMEM_NR_DIRECT there is the pointer
317 * i_indirect which points to a page which holds in the first half
318 * doubly indirect blocks, in the second half triple indirect blocks:
319 *
320 * For an artificial ENTRIES_PER_PAGE = 4 this would lead to the
321 * following layout (for SHMEM_NR_DIRECT == 16):
322 *
323 * i_indirect -> dir --> 16-19
324 * | +-> 20-23
325 * |
326 * +-->dir2 --> 24-27
327 * | +-> 28-31
328 * | +-> 32-35
329 * | +-> 36-39
330 * |
331 * +-->dir3 --> 40-43
332 * +-> 44-47
333 * +-> 48-51
334 * +-> 52-55
335 */
336static swp_entry_t *shmem_swp_entry(struct shmem_inode_info *info, unsigned long index, struct page **page)
337{
338 unsigned long offset;
339 struct page **dir;
340 struct page *subdir;
341
342 if (index < SHMEM_NR_DIRECT) {
343 shmem_swp_balance_unmap();
344 return info->i_direct+index;
345 }
346 if (!info->i_indirect) {
347 if (page) {
348 info->i_indirect = *page;
349 *page = NULL;
350 }
351 return NULL; /* need another page */
352 }
353
354 index -= SHMEM_NR_DIRECT;
355 offset = index % ENTRIES_PER_PAGE;
356 index /= ENTRIES_PER_PAGE;
357 dir = shmem_dir_map(info->i_indirect);
358
359 if (index >= ENTRIES_PER_PAGE/2) {
360 index -= ENTRIES_PER_PAGE/2;
361 dir += ENTRIES_PER_PAGE/2 + index/ENTRIES_PER_PAGE;
362 index %= ENTRIES_PER_PAGE;
363 subdir = *dir;
364 if (!subdir) {
365 if (page) {
366 *dir = *page;
367 *page = NULL;
368 }
369 shmem_dir_unmap(dir);
370 return NULL; /* need another page */
371 }
372 shmem_dir_unmap(dir);
373 dir = shmem_dir_map(subdir);
374 }
375
376 dir += index;
377 subdir = *dir;
378 if (!subdir) {
379 if (!page || !(subdir = *page)) {
380 shmem_dir_unmap(dir);
381 return NULL; /* need a page */
382 }
383 *dir = subdir;
384 *page = NULL;
385 }
386 shmem_dir_unmap(dir);
387 return shmem_swp_map(subdir) + offset;
388}
389
390static void shmem_swp_set(struct shmem_inode_info *info, swp_entry_t *entry, unsigned long value)
391{
392 long incdec = value? 1: -1;
393
394 entry->val = value;
395 info->swapped += incdec;
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700396 if ((unsigned long)(entry - info->i_direct) >= SHMEM_NR_DIRECT) {
397 struct page *page = kmap_atomic_to_page(entry);
398 set_page_private(page, page_private(page) + incdec);
399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
Randy Dunlap46711812008-03-19 17:00:41 -0700402/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 * shmem_swp_alloc - get the position of the swap entry for the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 * @info: info structure for the inode
405 * @index: index of the page to find
406 * @sgp: check and recheck i_size? skip allocation?
Randy Dunlap46711812008-03-19 17:00:41 -0700407 *
408 * If the entry does not exist, allocate it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 */
410static swp_entry_t *shmem_swp_alloc(struct shmem_inode_info *info, unsigned long index, enum sgp_type sgp)
411{
412 struct inode *inode = &info->vfs_inode;
413 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
414 struct page *page = NULL;
415 swp_entry_t *entry;
416
417 if (sgp != SGP_WRITE &&
418 ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode))
419 return ERR_PTR(-EINVAL);
420
421 while (!(entry = shmem_swp_entry(info, index, &page))) {
422 if (sgp == SGP_READ)
423 return shmem_swp_map(ZERO_PAGE(0));
424 /*
Tim Chen7e496292010-08-09 17:19:05 -0700425 * Test used_blocks against 1 less max_blocks, since we have 1 data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 * page (and perhaps indirect index pages) yet to allocate:
427 * a waste to allocate index if we cannot allocate data.
428 */
Hugh Dickins0edd73b2005-06-21 17:15:04 -0700429 if (sbinfo->max_blocks) {
Hugh Dickinsfc5da222011-04-14 15:22:07 -0700430 if (percpu_counter_compare(&sbinfo->used_blocks,
431 sbinfo->max_blocks - 1) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return ERR_PTR(-ENOSPC);
Tim Chen7e496292010-08-09 17:19:05 -0700433 percpu_counter_inc(&sbinfo->used_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 inode->i_blocks += BLOCKS_PER_PAGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436
437 spin_unlock(&info->lock);
Mel Gorman769848c2007-07-17 04:03:05 -0700438 page = shmem_dir_alloc(mapping_gfp_mask(inode->i_mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 spin_lock(&info->lock);
440
441 if (!page) {
442 shmem_free_blocks(inode, 1);
443 return ERR_PTR(-ENOMEM);
444 }
445 if (sgp != SGP_WRITE &&
446 ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode)) {
447 entry = ERR_PTR(-EINVAL);
448 break;
449 }
450 if (info->next_index <= index)
451 info->next_index = index + 1;
452 }
453 if (page) {
454 /* another task gave its page, or truncated the file */
455 shmem_free_blocks(inode, 1);
456 shmem_dir_free(page);
457 }
458 if (info->next_index <= index && !IS_ERR(entry))
459 info->next_index = index + 1;
460 return entry;
461}
462
Randy Dunlap46711812008-03-19 17:00:41 -0700463/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 * shmem_free_swp - free some swap entries in a directory
Hugh Dickins1ae70002007-03-29 01:20:36 -0700465 * @dir: pointer to the directory
466 * @edir: pointer after last entry of the directory
467 * @punch_lock: pointer to spinlock when needed for the holepunch case
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 */
Hugh Dickins1ae70002007-03-29 01:20:36 -0700469static int shmem_free_swp(swp_entry_t *dir, swp_entry_t *edir,
470 spinlock_t *punch_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Hugh Dickins1ae70002007-03-29 01:20:36 -0700472 spinlock_t *punch_unlock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 swp_entry_t *ptr;
474 int freed = 0;
475
476 for (ptr = dir; ptr < edir; ptr++) {
477 if (ptr->val) {
Hugh Dickins1ae70002007-03-29 01:20:36 -0700478 if (unlikely(punch_lock)) {
479 punch_unlock = punch_lock;
480 punch_lock = NULL;
481 spin_lock(punch_unlock);
482 if (!ptr->val)
483 continue;
484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 free_swap_and_cache(*ptr);
486 *ptr = (swp_entry_t){0};
487 freed++;
488 }
489 }
Hugh Dickins1ae70002007-03-29 01:20:36 -0700490 if (punch_unlock)
491 spin_unlock(punch_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return freed;
493}
494
Hugh Dickins1ae70002007-03-29 01:20:36 -0700495static int shmem_map_and_free_swp(struct page *subdir, int offset,
496 int limit, struct page ***dir, spinlock_t *punch_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 swp_entry_t *ptr;
499 int freed = 0;
500
501 ptr = shmem_swp_map(subdir);
502 for (; offset < limit; offset += LATENCY_LIMIT) {
503 int size = limit - offset;
504 if (size > LATENCY_LIMIT)
505 size = LATENCY_LIMIT;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700506 freed += shmem_free_swp(ptr+offset, ptr+offset+size,
507 punch_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (need_resched()) {
509 shmem_swp_unmap(ptr);
510 if (*dir) {
511 shmem_dir_unmap(*dir);
512 *dir = NULL;
513 }
514 cond_resched();
515 ptr = shmem_swp_map(subdir);
516 }
517 }
518 shmem_swp_unmap(ptr);
519 return freed;
520}
521
522static void shmem_free_pages(struct list_head *next)
523{
524 struct page *page;
525 int freed = 0;
526
527 do {
528 page = container_of(next, struct page, lru);
529 next = next->next;
530 shmem_dir_free(page);
531 freed++;
532 if (freed >= LATENCY_LIMIT) {
533 cond_resched();
534 freed = 0;
535 }
536 } while (next);
537}
538
Hugh Dickins94c1e622011-06-27 16:18:03 -0700539void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 struct shmem_inode_info *info = SHMEM_I(inode);
542 unsigned long idx;
543 unsigned long size;
544 unsigned long limit;
545 unsigned long stage;
546 unsigned long diroff;
547 struct page **dir;
548 struct page *topdir;
549 struct page *middir;
550 struct page *subdir;
551 swp_entry_t *ptr;
552 LIST_HEAD(pages_to_free);
553 long nr_pages_to_free = 0;
554 long nr_swaps_freed = 0;
555 int offset;
556 int freed;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700557 int punch_hole;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700558 spinlock_t *needs_lock;
559 spinlock_t *punch_lock;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700560 unsigned long upper_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Hugh Dickins94c1e622011-06-27 16:18:03 -0700562 truncate_inode_pages_range(inode->i_mapping, start, end);
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800565 idx = (start + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (idx >= info->next_index)
567 return;
568
569 spin_lock(&info->lock);
570 info->flags |= SHMEM_TRUNCATE;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800571 if (likely(end == (loff_t) -1)) {
572 limit = info->next_index;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700573 upper_limit = SHMEM_MAX_INDEX;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800574 info->next_index = idx;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700575 needs_lock = NULL;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700576 punch_hole = 0;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800577 } else {
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700578 if (end + 1 >= inode->i_size) { /* we may free a little more */
579 limit = (inode->i_size + PAGE_CACHE_SIZE - 1) >>
580 PAGE_CACHE_SHIFT;
581 upper_limit = SHMEM_MAX_INDEX;
582 } else {
583 limit = (end + 1) >> PAGE_CACHE_SHIFT;
584 upper_limit = limit;
585 }
Hugh Dickins1ae70002007-03-29 01:20:36 -0700586 needs_lock = &info->lock;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800587 punch_hole = 1;
588 }
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 topdir = info->i_indirect;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800591 if (topdir && idx <= SHMEM_NR_DIRECT && !punch_hole) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 info->i_indirect = NULL;
593 nr_pages_to_free++;
594 list_add(&topdir->lru, &pages_to_free);
595 }
596 spin_unlock(&info->lock);
597
598 if (info->swapped && idx < SHMEM_NR_DIRECT) {
599 ptr = info->i_direct;
600 size = limit;
601 if (size > SHMEM_NR_DIRECT)
602 size = SHMEM_NR_DIRECT;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700603 nr_swaps_freed = shmem_free_swp(ptr+idx, ptr+size, needs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
Badari Pulavarty92a3d032006-12-22 01:06:23 -0800605
606 /*
607 * If there are no indirect blocks or we are punching a hole
608 * below indirect blocks, nothing to be done.
609 */
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700610 if (!topdir || limit <= SHMEM_NR_DIRECT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 goto done2;
612
Hugh Dickins1ae70002007-03-29 01:20:36 -0700613 /*
614 * The truncation case has already dropped info->lock, and we're safe
615 * because i_size and next_index have already been lowered, preventing
616 * access beyond. But in the punch_hole case, we still need to take
617 * the lock when updating the swap directory, because there might be
618 * racing accesses by shmem_getpage(SGP_CACHE), shmem_unuse_inode or
619 * shmem_writepage. However, whenever we find we can remove a whole
620 * directory page (not at the misaligned start or end of the range),
621 * we first NULLify its pointer in the level above, and then have no
622 * need to take the lock when updating its contents: needs_lock and
623 * punch_lock (either pointing to info->lock or NULL) manage this.
624 */
625
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700626 upper_limit -= SHMEM_NR_DIRECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 limit -= SHMEM_NR_DIRECT;
628 idx = (idx > SHMEM_NR_DIRECT)? (idx - SHMEM_NR_DIRECT): 0;
629 offset = idx % ENTRIES_PER_PAGE;
630 idx -= offset;
631
632 dir = shmem_dir_map(topdir);
633 stage = ENTRIES_PER_PAGEPAGE/2;
634 if (idx < ENTRIES_PER_PAGEPAGE/2) {
635 middir = topdir;
636 diroff = idx/ENTRIES_PER_PAGE;
637 } else {
638 dir += ENTRIES_PER_PAGE/2;
639 dir += (idx - ENTRIES_PER_PAGEPAGE/2)/ENTRIES_PER_PAGEPAGE;
640 while (stage <= idx)
641 stage += ENTRIES_PER_PAGEPAGE;
642 middir = *dir;
643 if (*dir) {
644 diroff = ((idx - ENTRIES_PER_PAGEPAGE/2) %
645 ENTRIES_PER_PAGEPAGE) / ENTRIES_PER_PAGE;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700646 if (!diroff && !offset && upper_limit >= stage) {
Hugh Dickins1ae70002007-03-29 01:20:36 -0700647 if (needs_lock) {
648 spin_lock(needs_lock);
649 *dir = NULL;
650 spin_unlock(needs_lock);
651 needs_lock = NULL;
652 } else
653 *dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 nr_pages_to_free++;
655 list_add(&middir->lru, &pages_to_free);
656 }
657 shmem_dir_unmap(dir);
658 dir = shmem_dir_map(middir);
659 } else {
660 diroff = 0;
661 offset = 0;
662 idx = stage;
663 }
664 }
665
666 for (; idx < limit; idx += ENTRIES_PER_PAGE, diroff++) {
667 if (unlikely(idx == stage)) {
668 shmem_dir_unmap(dir);
669 dir = shmem_dir_map(topdir) +
670 ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
671 while (!*dir) {
672 dir++;
673 idx += ENTRIES_PER_PAGEPAGE;
674 if (idx >= limit)
675 goto done1;
676 }
677 stage = idx + ENTRIES_PER_PAGEPAGE;
678 middir = *dir;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700679 if (punch_hole)
680 needs_lock = &info->lock;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700681 if (upper_limit >= stage) {
Hugh Dickins1ae70002007-03-29 01:20:36 -0700682 if (needs_lock) {
683 spin_lock(needs_lock);
684 *dir = NULL;
685 spin_unlock(needs_lock);
686 needs_lock = NULL;
687 } else
688 *dir = NULL;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700689 nr_pages_to_free++;
690 list_add(&middir->lru, &pages_to_free);
691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 shmem_dir_unmap(dir);
693 cond_resched();
694 dir = shmem_dir_map(middir);
695 diroff = 0;
696 }
Hugh Dickins1ae70002007-03-29 01:20:36 -0700697 punch_lock = needs_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 subdir = dir[diroff];
Hugh Dickins1ae70002007-03-29 01:20:36 -0700699 if (subdir && !offset && upper_limit-idx >= ENTRIES_PER_PAGE) {
700 if (needs_lock) {
701 spin_lock(needs_lock);
702 dir[diroff] = NULL;
703 spin_unlock(needs_lock);
704 punch_lock = NULL;
705 } else
706 dir[diroff] = NULL;
707 nr_pages_to_free++;
708 list_add(&subdir->lru, &pages_to_free);
709 }
710 if (subdir && page_private(subdir) /* has swap entries */) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 size = limit - idx;
712 if (size > ENTRIES_PER_PAGE)
713 size = ENTRIES_PER_PAGE;
714 freed = shmem_map_and_free_swp(subdir,
Hugh Dickins1ae70002007-03-29 01:20:36 -0700715 offset, size, &dir, punch_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (!dir)
717 dir = shmem_dir_map(middir);
718 nr_swaps_freed += freed;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700719 if (offset || punch_lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 spin_lock(&info->lock);
Hugh Dickins1ae70002007-03-29 01:20:36 -0700721 set_page_private(subdir,
722 page_private(subdir) - freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 spin_unlock(&info->lock);
Hugh Dickins1ae70002007-03-29 01:20:36 -0700724 } else
725 BUG_ON(page_private(subdir) != freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
Hugh Dickins1ae70002007-03-29 01:20:36 -0700727 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
729done1:
730 shmem_dir_unmap(dir);
731done2:
732 if (inode->i_mapping->nrpages && (info->flags & SHMEM_PAGEIN)) {
733 /*
734 * Call truncate_inode_pages again: racing shmem_unuse_inode
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000735 * may have swizzled a page in from swap since
736 * truncate_pagecache or generic_delete_inode did it, before we
737 * lowered next_index. Also, though shmem_getpage checks
738 * i_size before adding to cache, no recheck after: so fix the
739 * narrow window there too.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 */
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800741 truncate_inode_pages_range(inode->i_mapping, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
743
744 spin_lock(&info->lock);
745 info->flags &= ~SHMEM_TRUNCATE;
746 info->swapped -= nr_swaps_freed;
747 if (nr_pages_to_free)
748 shmem_free_blocks(inode, nr_pages_to_free);
749 shmem_recalc_inode(inode);
750 spin_unlock(&info->lock);
751
752 /*
753 * Empty swap vector directory pages to be freed?
754 */
755 if (!list_empty(&pages_to_free)) {
756 pages_to_free.prev->next = NULL;
757 shmem_free_pages(pages_to_free.next);
758 }
759}
Hugh Dickins94c1e622011-06-27 16:18:03 -0700760EXPORT_SYMBOL_GPL(shmem_truncate_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Hugh Dickins94c1e622011-06-27 16:18:03 -0700762static int shmem_setattr(struct dentry *dentry, struct iattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
764 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 int error;
766
Christoph Hellwigdb78b872010-06-04 11:30:03 +0200767 error = inode_change_ok(inode, attr);
768 if (error)
769 return error;
770
Hugh Dickins94c1e622011-06-27 16:18:03 -0700771 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
772 loff_t oldsize = inode->i_size;
773 loff_t newsize = attr->ia_size;
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000774 struct page *page = NULL;
775
Hugh Dickins94c1e622011-06-27 16:18:03 -0700776 if (newsize < oldsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /*
778 * If truncating down to a partial page, then
779 * if that page is already allocated, hold it
780 * in memory until the truncation is over, so
Justin P. Mattockae0e47f2011-03-01 15:06:02 +0100781 * truncate_partial_page cannot miss it were
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 * it assigned to swap.
783 */
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000784 if (newsize & (PAGE_CACHE_SIZE-1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 (void) shmem_getpage(inode,
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000786 newsize >> PAGE_CACHE_SHIFT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 &page, SGP_READ, NULL);
Hugh Dickinsd3602442008-02-04 22:28:44 -0800788 if (page)
789 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791 /*
792 * Reset SHMEM_PAGEIN flag so that shmem_truncate can
793 * detect if any pages might have been added to cache
794 * after truncate_inode_pages. But we needn't bother
795 * if it's being fully truncated to zero-length: the
796 * nrpages check is efficient enough in that case.
797 */
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000798 if (newsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 struct shmem_inode_info *info = SHMEM_I(inode);
800 spin_lock(&info->lock);
801 info->flags &= ~SHMEM_PAGEIN;
802 spin_unlock(&info->lock);
803 }
804 }
Hugh Dickins94c1e622011-06-27 16:18:03 -0700805 if (newsize != oldsize) {
806 i_size_write(inode, newsize);
807 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
808 }
809 if (newsize < oldsize) {
810 loff_t holebegin = round_up(newsize, PAGE_SIZE);
811 unmap_mapping_range(inode->i_mapping, holebegin, 0, 1);
812 shmem_truncate_range(inode, newsize, (loff_t)-1);
813 /* unmap again to remove racily COWed private pages */
814 unmap_mapping_range(inode->i_mapping, holebegin, 0, 1);
815 }
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000816 if (page)
817 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
819
Christoph Hellwigdb78b872010-06-04 11:30:03 +0200820 setattr_copy(inode, attr);
Andreas Gruenbacher39f02472006-09-29 02:01:35 -0700821#ifdef CONFIG_TMPFS_POSIX_ACL
Christoph Hellwigdb78b872010-06-04 11:30:03 +0200822 if (attr->ia_valid & ATTR_MODE)
Christoph Hellwig1c7c4742009-11-03 16:44:44 +0100823 error = generic_acl_chmod(inode);
Andreas Gruenbacher39f02472006-09-29 02:01:35 -0700824#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 return error;
826}
827
Al Viro1f895f72010-06-05 19:10:41 -0400828static void shmem_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 struct shmem_inode_info *info = SHMEM_I(inode);
Eric Parisb09e0fa2011-05-24 17:12:39 -0700831 struct shmem_xattr *xattr, *nxattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000833 if (inode->i_mapping->a_ops == &shmem_aops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 shmem_unacct_size(info->flags, inode->i_size);
835 inode->i_size = 0;
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000836 shmem_truncate_range(inode, 0, (loff_t)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 if (!list_empty(&info->swaplist)) {
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800838 mutex_lock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 list_del_init(&info->swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800840 mutex_unlock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842 }
Eric Parisb09e0fa2011-05-24 17:12:39 -0700843
844 list_for_each_entry_safe(xattr, nxattr, &info->xattr_list, list) {
845 kfree(xattr->name);
846 kfree(xattr);
847 }
Hugh Dickins0edd73b2005-06-21 17:15:04 -0700848 BUG_ON(inode->i_blocks);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -0800849 shmem_free_inode(inode->i_sb);
Al Viro1f895f72010-06-05 19:10:41 -0400850 end_writeback(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
853static inline int shmem_find_swp(swp_entry_t entry, swp_entry_t *dir, swp_entry_t *edir)
854{
855 swp_entry_t *ptr;
856
857 for (ptr = dir; ptr < edir; ptr++) {
858 if (ptr->val == entry.val)
859 return ptr - dir;
860 }
861 return -1;
862}
863
864static int shmem_unuse_inode(struct shmem_inode_info *info, swp_entry_t entry, struct page *page)
865{
Hugh Dickins778dd892011-05-11 15:13:37 -0700866 struct address_space *mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 unsigned long idx;
868 unsigned long size;
869 unsigned long limit;
870 unsigned long stage;
871 struct page **dir;
872 struct page *subdir;
873 swp_entry_t *ptr;
874 int offset;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800875 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 idx = 0;
878 ptr = info->i_direct;
879 spin_lock(&info->lock);
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800880 if (!info->swapped) {
881 list_del_init(&info->swaplist);
882 goto lost2;
883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 limit = info->next_index;
885 size = limit;
886 if (size > SHMEM_NR_DIRECT)
887 size = SHMEM_NR_DIRECT;
888 offset = shmem_find_swp(entry, ptr, ptr+size);
Hugh Dickins778dd892011-05-11 15:13:37 -0700889 if (offset >= 0) {
890 shmem_swp_balance_unmap();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 goto found;
Hugh Dickins778dd892011-05-11 15:13:37 -0700892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (!info->i_indirect)
894 goto lost2;
895
896 dir = shmem_dir_map(info->i_indirect);
897 stage = SHMEM_NR_DIRECT + ENTRIES_PER_PAGEPAGE/2;
898
899 for (idx = SHMEM_NR_DIRECT; idx < limit; idx += ENTRIES_PER_PAGE, dir++) {
900 if (unlikely(idx == stage)) {
901 shmem_dir_unmap(dir-1);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800902 if (cond_resched_lock(&info->lock)) {
903 /* check it has not been truncated */
904 if (limit > info->next_index) {
905 limit = info->next_index;
906 if (idx >= limit)
907 goto lost2;
908 }
909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 dir = shmem_dir_map(info->i_indirect) +
911 ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
912 while (!*dir) {
913 dir++;
914 idx += ENTRIES_PER_PAGEPAGE;
915 if (idx >= limit)
916 goto lost1;
917 }
918 stage = idx + ENTRIES_PER_PAGEPAGE;
919 subdir = *dir;
920 shmem_dir_unmap(dir);
921 dir = shmem_dir_map(subdir);
922 }
923 subdir = *dir;
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700924 if (subdir && page_private(subdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 ptr = shmem_swp_map(subdir);
926 size = limit - idx;
927 if (size > ENTRIES_PER_PAGE)
928 size = ENTRIES_PER_PAGE;
929 offset = shmem_find_swp(entry, ptr, ptr+size);
Hugh Dickinse6c93662011-05-20 15:47:33 -0700930 shmem_swp_unmap(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (offset >= 0) {
932 shmem_dir_unmap(dir);
Hugh Dickinse6c93662011-05-20 15:47:33 -0700933 ptr = shmem_swp_map(subdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 goto found;
935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937 }
938lost1:
939 shmem_dir_unmap(dir-1);
940lost2:
941 spin_unlock(&info->lock);
942 return 0;
943found:
944 idx += offset;
Hugh Dickins778dd892011-05-11 15:13:37 -0700945 ptr += offset;
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800946
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800947 /*
948 * Move _head_ to start search for next from here.
Al Viro1f895f72010-06-05 19:10:41 -0400949 * But be careful: shmem_evict_inode checks list_empty without taking
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800950 * mutex, and there's an instant in list_move_tail when info->swaplist
951 * would appear empty, if it were the only one on shmem_swaplist. We
952 * could avoid doing it if inode NULL; or use this minor optimization.
953 */
954 if (shmem_swaplist.next != &info->swaplist)
955 list_move_tail(&shmem_swaplist, &info->swaplist);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800956
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800957 /*
Hugh Dickins778dd892011-05-11 15:13:37 -0700958 * We rely on shmem_swaplist_mutex, not only to protect the swaplist,
959 * but also to hold up shmem_evict_inode(): so inode cannot be freed
960 * beneath us (pagelock doesn't help until the page is in pagecache).
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800961 */
Hugh Dickins778dd892011-05-11 15:13:37 -0700962 mapping = info->vfs_inode.i_mapping;
963 error = add_to_page_cache_locked(page, mapping, idx, GFP_NOWAIT);
964 /* which does mem_cgroup_uncharge_cache_page on error */
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700965
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800966 if (error == -EEXIST) {
Hugh Dickins778dd892011-05-11 15:13:37 -0700967 struct page *filepage = find_get_page(mapping, idx);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800968 error = 1;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800969 if (filepage) {
970 /*
971 * There might be a more uptodate page coming down
972 * from a stacked writepage: forget our swappage if so.
973 */
974 if (PageUptodate(filepage))
975 error = 0;
976 page_cache_release(filepage);
977 }
978 }
979 if (!error) {
Hugh Dickins73b12622008-02-04 22:28:50 -0800980 delete_from_swap_cache(page);
981 set_page_dirty(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 info->flags |= SHMEM_PAGEIN;
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800983 shmem_swp_set(info, ptr, 0);
984 swap_free(entry);
985 error = 1; /* not an error, but entry was found */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
Hugh Dickins778dd892011-05-11 15:13:37 -0700987 shmem_swp_unmap(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 spin_unlock(&info->lock);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800989 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
992/*
993 * shmem_unuse() search for an eventually swapped out shmem page.
994 */
995int shmem_unuse(swp_entry_t entry, struct page *page)
996{
997 struct list_head *p, *next;
998 struct shmem_inode_info *info;
999 int found = 0;
Hugh Dickins778dd892011-05-11 15:13:37 -07001000 int error;
1001
1002 /*
1003 * Charge page using GFP_KERNEL while we can wait, before taking
1004 * the shmem_swaplist_mutex which might hold up shmem_writepage().
1005 * Charged back to the user (not to caller) when swap account is used.
1006 * add_to_page_cache() will be called with GFP_NOWAIT.
1007 */
1008 error = mem_cgroup_cache_charge(page, current->mm, GFP_KERNEL);
1009 if (error)
1010 goto out;
1011 /*
1012 * Try to preload while we can wait, to not make a habit of
1013 * draining atomic reserves; but don't latch on to this cpu,
1014 * it's okay if sometimes we get rescheduled after this.
1015 */
1016 error = radix_tree_preload(GFP_KERNEL);
1017 if (error)
1018 goto uncharge;
1019 radix_tree_preload_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001021 mutex_lock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 list_for_each_safe(p, next, &shmem_swaplist) {
1023 info = list_entry(p, struct shmem_inode_info, swaplist);
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001024 found = shmem_unuse_inode(info, entry, page);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001025 cond_resched();
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001026 if (found)
Hugh Dickins778dd892011-05-11 15:13:37 -07001027 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001029 mutex_unlock(&shmem_swaplist_mutex);
Hugh Dickins778dd892011-05-11 15:13:37 -07001030
1031uncharge:
1032 if (!found)
1033 mem_cgroup_uncharge_cache_page(page);
1034 if (found < 0)
1035 error = found;
1036out:
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001037 unlock_page(page);
1038 page_cache_release(page);
Hugh Dickins778dd892011-05-11 15:13:37 -07001039 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
1042/*
1043 * Move the page from the page cache to the swap cache.
1044 */
1045static int shmem_writepage(struct page *page, struct writeback_control *wbc)
1046{
1047 struct shmem_inode_info *info;
1048 swp_entry_t *entry, swap;
1049 struct address_space *mapping;
1050 unsigned long index;
1051 struct inode *inode;
1052
1053 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 mapping = page->mapping;
1055 index = page->index;
1056 inode = mapping->host;
1057 info = SHMEM_I(inode);
1058 if (info->flags & VM_LOCKED)
1059 goto redirty;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001060 if (!total_swap_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 goto redirty;
1062
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001063 /*
1064 * shmem_backing_dev_info's capabilities prevent regular writeback or
1065 * sync from ever calling shmem_writepage; but a stacking filesystem
1066 * may use the ->writepage of its underlying filesystem, in which case
1067 * tmpfs should write out to swap only in response to memory pressure,
Jens Axboe5b0830c2009-09-23 19:37:09 +02001068 * and not for the writeback threads or sync. However, in those cases,
1069 * we do still want to check if there's a redundant swappage to be
1070 * discarded.
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001071 */
1072 if (wbc->for_reclaim)
1073 swap = get_swap_page();
1074 else
1075 swap.val = 0;
1076
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001077 /*
1078 * Add inode to shmem_unuse()'s list of swapped-out inodes,
1079 * if it's not already there. Do it now because we cannot take
1080 * mutex while holding spinlock, and must do so before the page
1081 * is moved to swap cache, when its pagelock no longer protects
1082 * the inode from eviction. But don't unlock the mutex until
1083 * we've taken the spinlock, because shmem_unuse_inode() will
1084 * prune a !swapped inode from the swaplist under both locks.
1085 */
Hugh Dickins05bf86b2011-05-14 12:06:42 -07001086 if (swap.val) {
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001087 mutex_lock(&shmem_swaplist_mutex);
Hugh Dickins05bf86b2011-05-14 12:06:42 -07001088 if (list_empty(&info->swaplist))
1089 list_add_tail(&info->swaplist, &shmem_swaplist);
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001090 }
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 spin_lock(&info->lock);
Hugh Dickins05bf86b2011-05-14 12:06:42 -07001093 if (swap.val)
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001094 mutex_unlock(&shmem_swaplist_mutex);
1095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (index >= info->next_index) {
1097 BUG_ON(!(info->flags & SHMEM_TRUNCATE));
1098 goto unlock;
1099 }
1100 entry = shmem_swp_entry(info, index, NULL);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001101 if (entry->val) {
1102 /*
1103 * The more uptodate page coming down from a stacked
1104 * writepage should replace our old swappage.
1105 */
1106 free_swap_and_cache(*entry);
1107 shmem_swp_set(info, entry, 0);
1108 }
1109 shmem_recalc_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001111 if (swap.val && add_to_swap_cache(page, swap, GFP_ATOMIC) == 0) {
Minchan Kim4c73b1b2011-03-22 16:32:40 -07001112 delete_from_page_cache(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 shmem_swp_set(info, entry, swap.val);
1114 shmem_swp_unmap(entry);
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001115 swap_shmem_alloc(swap);
Hugh Dickins826267c2011-05-28 13:14:09 -07001116 spin_unlock(&info->lock);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001117 BUG_ON(page_mapped(page));
Hugh Dickins9fab5612009-03-31 15:23:33 -07001118 swap_writepage(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return 0;
1120 }
1121
1122 shmem_swp_unmap(entry);
1123unlock:
1124 spin_unlock(&info->lock);
Daisuke Nishimura2ca45322009-09-21 17:02:52 -07001125 /*
1126 * add_to_swap_cache() doesn't return -EEXIST, so we can safely
1127 * clear SWAP_HAS_CACHE flag.
1128 */
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07001129 swapcache_free(swap, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130redirty:
1131 set_page_dirty(page);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001132 if (wbc->for_reclaim)
1133 return AOP_WRITEPAGE_ACTIVATE; /* Return with page locked */
1134 unlock_page(page);
1135 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
1138#ifdef CONFIG_NUMA
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001139#ifdef CONFIG_TMPFS
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001140static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001141{
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001142 char buffer[64];
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001143
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001144 if (!mpol || mpol->mode == MPOL_DEFAULT)
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001145 return; /* show nothing */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001146
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001147 mpol_to_str(buffer, sizeof(buffer), mpol, 1);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001148
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001149 seq_printf(seq, ",mpol=%s", buffer);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001150}
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001151
1152static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1153{
1154 struct mempolicy *mpol = NULL;
1155 if (sbinfo->mpol) {
1156 spin_lock(&sbinfo->stat_lock); /* prevent replace/use races */
1157 mpol = sbinfo->mpol;
1158 mpol_get(mpol);
1159 spin_unlock(&sbinfo->stat_lock);
1160 }
1161 return mpol;
1162}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001163#endif /* CONFIG_TMPFS */
1164
Hugh Dickins02098fe2008-02-04 22:28:42 -08001165static struct page *shmem_swapin(swp_entry_t entry, gfp_t gfp,
1166 struct shmem_inode_info *info, unsigned long idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -07001168 struct mempolicy mpol, *spol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 struct vm_area_struct pvma;
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001170 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -07001172 spol = mpol_cond_copy(&mpol,
1173 mpol_shared_policy_lookup(&info->policy, idx));
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 /* Create a pseudo vma that just contains the policy */
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001176 pvma.vm_start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 pvma.vm_pgoff = idx;
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001178 pvma.vm_ops = NULL;
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -07001179 pvma.vm_policy = spol;
Hugh Dickins02098fe2008-02-04 22:28:42 -08001180 page = swapin_readahead(entry, gfp, &pvma, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return page;
1182}
1183
Hugh Dickins02098fe2008-02-04 22:28:42 -08001184static struct page *shmem_alloc_page(gfp_t gfp,
1185 struct shmem_inode_info *info, unsigned long idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
1187 struct vm_area_struct pvma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001189 /* Create a pseudo vma that just contains the policy */
1190 pvma.vm_start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 pvma.vm_pgoff = idx;
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001192 pvma.vm_ops = NULL;
1193 pvma.vm_policy = mpol_shared_policy_lookup(&info->policy, idx);
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -07001194
1195 /*
1196 * alloc_page_vma() will drop the shared policy reference
1197 */
1198 return alloc_page_vma(gfp, &pvma, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001200#else /* !CONFIG_NUMA */
1201#ifdef CONFIG_TMPFS
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001202static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *p)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001203{
1204}
1205#endif /* CONFIG_TMPFS */
1206
Hugh Dickins02098fe2008-02-04 22:28:42 -08001207static inline struct page *shmem_swapin(swp_entry_t entry, gfp_t gfp,
1208 struct shmem_inode_info *info, unsigned long idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
Hugh Dickins02098fe2008-02-04 22:28:42 -08001210 return swapin_readahead(entry, gfp, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
Hugh Dickins02098fe2008-02-04 22:28:42 -08001213static inline struct page *shmem_alloc_page(gfp_t gfp,
1214 struct shmem_inode_info *info, unsigned long idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Hugh Dickinse84e2e12007-11-28 18:55:10 +00001216 return alloc_page(gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001218#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001220#if !defined(CONFIG_NUMA) || !defined(CONFIG_TMPFS)
1221static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1222{
1223 return NULL;
1224}
1225#endif
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227/*
1228 * shmem_getpage - either get the page from swap or allocate a new one
1229 *
1230 * If we allocate a new one we do not mark it dirty. That's up to the
1231 * vm. If we swap it in we mark it dirty since we also free the swap
1232 * entry since a page cannot live in both the swap and page cache
1233 */
1234static int shmem_getpage(struct inode *inode, unsigned long idx,
1235 struct page **pagep, enum sgp_type sgp, int *type)
1236{
1237 struct address_space *mapping = inode->i_mapping;
1238 struct shmem_inode_info *info = SHMEM_I(inode);
1239 struct shmem_sb_info *sbinfo;
1240 struct page *filepage = *pagep;
1241 struct page *swappage;
Shaohua Liff36b8012010-08-09 17:19:06 -07001242 struct page *prealloc_page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 swp_entry_t *entry;
1244 swp_entry_t swap;
Hugh Dickins02098fe2008-02-04 22:28:42 -08001245 gfp_t gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 int error;
1247
1248 if (idx >= SHMEM_MAX_INDEX)
1249 return -EFBIG;
Nick Piggin54cb8822007-07-19 01:46:59 -07001250
1251 if (type)
Nick Piggin83c54072007-07-19 01:47:05 -07001252 *type = 0;
Nick Piggin54cb8822007-07-19 01:46:59 -07001253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 /*
1255 * Normally, filepage is NULL on entry, and either found
1256 * uptodate immediately, or allocated and zeroed, or read
1257 * in under swappage, which is then assigned to filepage.
Hugh Dickins5402b972008-02-04 22:28:44 -08001258 * But shmem_readpage (required for splice) passes in a locked
Hugh Dickinsae9764162007-06-04 10:00:39 +02001259 * filepage, which may be found not uptodate by other callers
1260 * too, and may need to be copied from the swappage read in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 */
1262repeat:
1263 if (!filepage)
1264 filepage = find_lock_page(mapping, idx);
1265 if (filepage && PageUptodate(filepage))
1266 goto done;
Hugh Dickins02098fe2008-02-04 22:28:42 -08001267 gfp = mapping_gfp_mask(mapping);
Hugh Dickinsb409f9f2008-02-04 22:28:54 -08001268 if (!filepage) {
1269 /*
1270 * Try to preload while we can wait, to not make a habit of
1271 * draining atomic reserves; but don't latch on to this cpu.
1272 */
1273 error = radix_tree_preload(gfp & ~__GFP_HIGHMEM);
1274 if (error)
1275 goto failed;
1276 radix_tree_preload_end();
Shaohua Liff36b8012010-08-09 17:19:06 -07001277 if (sgp != SGP_READ && !prealloc_page) {
1278 /* We don't care if this fails */
1279 prealloc_page = shmem_alloc_page(gfp, info, idx);
1280 if (prealloc_page) {
1281 if (mem_cgroup_cache_charge(prealloc_page,
1282 current->mm, GFP_KERNEL)) {
1283 page_cache_release(prealloc_page);
1284 prealloc_page = NULL;
1285 }
1286 }
1287 }
Hugh Dickinsb409f9f2008-02-04 22:28:54 -08001288 }
Shaohua Liff36b8012010-08-09 17:19:06 -07001289 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 spin_lock(&info->lock);
1292 shmem_recalc_inode(inode);
1293 entry = shmem_swp_alloc(info, idx, sgp);
1294 if (IS_ERR(entry)) {
1295 spin_unlock(&info->lock);
1296 error = PTR_ERR(entry);
1297 goto failed;
1298 }
1299 swap = *entry;
1300
1301 if (swap.val) {
1302 /* Look it up and read it in.. */
1303 swappage = lookup_swap_cache(swap);
1304 if (!swappage) {
1305 shmem_swp_unmap(entry);
Christoph Lameterf8891e52006-06-30 01:55:45 -07001306 spin_unlock(&info->lock);
Ying Han456f9982011-05-26 16:25:38 -07001307 /* here we actually do the io */
1308 if (type)
1309 *type |= VM_FAULT_MAJOR;
Hugh Dickins02098fe2008-02-04 22:28:42 -08001310 swappage = shmem_swapin(swap, gfp, info, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 if (!swappage) {
1312 spin_lock(&info->lock);
1313 entry = shmem_swp_alloc(info, idx, sgp);
1314 if (IS_ERR(entry))
1315 error = PTR_ERR(entry);
1316 else {
1317 if (entry->val == swap.val)
1318 error = -ENOMEM;
1319 shmem_swp_unmap(entry);
1320 }
1321 spin_unlock(&info->lock);
1322 if (error)
1323 goto failed;
1324 goto repeat;
1325 }
1326 wait_on_page_locked(swappage);
1327 page_cache_release(swappage);
1328 goto repeat;
1329 }
1330
1331 /* We have to do this with page locked to prevent races */
Nick Piggin529ae9a2008-08-02 12:01:03 +02001332 if (!trylock_page(swappage)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 shmem_swp_unmap(entry);
1334 spin_unlock(&info->lock);
1335 wait_on_page_locked(swappage);
1336 page_cache_release(swappage);
1337 goto repeat;
1338 }
1339 if (PageWriteback(swappage)) {
1340 shmem_swp_unmap(entry);
1341 spin_unlock(&info->lock);
1342 wait_on_page_writeback(swappage);
1343 unlock_page(swappage);
1344 page_cache_release(swappage);
1345 goto repeat;
1346 }
1347 if (!PageUptodate(swappage)) {
1348 shmem_swp_unmap(entry);
1349 spin_unlock(&info->lock);
1350 unlock_page(swappage);
1351 page_cache_release(swappage);
1352 error = -EIO;
1353 goto failed;
1354 }
1355
1356 if (filepage) {
1357 shmem_swp_set(info, entry, 0);
1358 shmem_swp_unmap(entry);
1359 delete_from_swap_cache(swappage);
1360 spin_unlock(&info->lock);
1361 copy_highpage(filepage, swappage);
1362 unlock_page(swappage);
1363 page_cache_release(swappage);
1364 flush_dcache_page(filepage);
1365 SetPageUptodate(filepage);
1366 set_page_dirty(filepage);
1367 swap_free(swap);
Nick Piggine2867812008-07-25 19:45:30 -07001368 } else if (!(error = add_to_page_cache_locked(swappage, mapping,
1369 idx, GFP_NOWAIT))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 info->flags |= SHMEM_PAGEIN;
1371 shmem_swp_set(info, entry, 0);
1372 shmem_swp_unmap(entry);
Hugh Dickins73b12622008-02-04 22:28:50 -08001373 delete_from_swap_cache(swappage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 spin_unlock(&info->lock);
1375 filepage = swappage;
Hugh Dickins73b12622008-02-04 22:28:50 -08001376 set_page_dirty(filepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 swap_free(swap);
1378 } else {
1379 shmem_swp_unmap(entry);
1380 spin_unlock(&info->lock);
Hugh Dickins82369552008-02-07 00:14:22 -08001381 if (error == -ENOMEM) {
Daisuke Nishimuraae3abae2009-04-30 15:08:19 -07001382 /*
1383 * reclaim from proper memory cgroup and
1384 * call memcg's OOM if needed.
1385 */
1386 error = mem_cgroup_shmem_charge_fallback(
1387 swappage,
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001388 current->mm,
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001389 gfp);
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001390 if (error) {
1391 unlock_page(swappage);
1392 page_cache_release(swappage);
Hugh Dickins82369552008-02-07 00:14:22 -08001393 goto failed;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001394 }
Hugh Dickins82369552008-02-07 00:14:22 -08001395 }
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001396 unlock_page(swappage);
1397 page_cache_release(swappage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 goto repeat;
1399 }
1400 } else if (sgp == SGP_READ && !filepage) {
1401 shmem_swp_unmap(entry);
1402 filepage = find_get_page(mapping, idx);
1403 if (filepage &&
Nick Piggin529ae9a2008-08-02 12:01:03 +02001404 (!PageUptodate(filepage) || !trylock_page(filepage))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 spin_unlock(&info->lock);
1406 wait_on_page_locked(filepage);
1407 page_cache_release(filepage);
1408 filepage = NULL;
1409 goto repeat;
1410 }
1411 spin_unlock(&info->lock);
1412 } else {
1413 shmem_swp_unmap(entry);
1414 sbinfo = SHMEM_SB(inode->i_sb);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001415 if (sbinfo->max_blocks) {
Hugh Dickinsfc5da222011-04-14 15:22:07 -07001416 if (percpu_counter_compare(&sbinfo->used_blocks,
1417 sbinfo->max_blocks) >= 0 ||
Hugh Dickins59a16ea2011-05-11 15:13:38 -07001418 shmem_acct_block(info->flags))
1419 goto nospace;
Tim Chen7e496292010-08-09 17:19:05 -07001420 percpu_counter_inc(&sbinfo->used_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 inode->i_blocks += BLOCKS_PER_PAGE;
Hugh Dickins59a16ea2011-05-11 15:13:38 -07001422 } else if (shmem_acct_block(info->flags))
1423 goto nospace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 if (!filepage) {
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001426 int ret;
1427
Shaohua Liff36b8012010-08-09 17:19:06 -07001428 if (!prealloc_page) {
1429 spin_unlock(&info->lock);
1430 filepage = shmem_alloc_page(gfp, info, idx);
1431 if (!filepage) {
Hugh Dickinsd515afe2011-07-25 17:12:26 -07001432 spin_lock(&info->lock);
Shaohua Liff36b8012010-08-09 17:19:06 -07001433 shmem_unacct_blocks(info->flags, 1);
1434 shmem_free_blocks(inode, 1);
Hugh Dickinsd515afe2011-07-25 17:12:26 -07001435 spin_unlock(&info->lock);
Shaohua Liff36b8012010-08-09 17:19:06 -07001436 error = -ENOMEM;
1437 goto failed;
1438 }
1439 SetPageSwapBacked(filepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Shaohua Liff36b8012010-08-09 17:19:06 -07001441 /*
1442 * Precharge page while we can wait, compensate
1443 * after
1444 */
1445 error = mem_cgroup_cache_charge(filepage,
1446 current->mm, GFP_KERNEL);
1447 if (error) {
1448 page_cache_release(filepage);
Hugh Dickinsd515afe2011-07-25 17:12:26 -07001449 spin_lock(&info->lock);
Shaohua Liff36b8012010-08-09 17:19:06 -07001450 shmem_unacct_blocks(info->flags, 1);
1451 shmem_free_blocks(inode, 1);
Hugh Dickinsd515afe2011-07-25 17:12:26 -07001452 spin_unlock(&info->lock);
Shaohua Liff36b8012010-08-09 17:19:06 -07001453 filepage = NULL;
1454 goto failed;
1455 }
1456
1457 spin_lock(&info->lock);
1458 } else {
1459 filepage = prealloc_page;
1460 prealloc_page = NULL;
1461 SetPageSwapBacked(filepage);
Hugh Dickins82369552008-02-07 00:14:22 -08001462 }
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 entry = shmem_swp_alloc(info, idx, sgp);
1465 if (IS_ERR(entry))
1466 error = PTR_ERR(entry);
1467 else {
1468 swap = *entry;
1469 shmem_swp_unmap(entry);
1470 }
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001471 ret = error || swap.val;
1472 if (ret)
1473 mem_cgroup_uncharge_cache_page(filepage);
1474 else
1475 ret = add_to_page_cache_lru(filepage, mapping,
1476 idx, GFP_NOWAIT);
1477 /*
1478 * At add_to_page_cache_lru() failure, uncharge will
1479 * be done automatically.
1480 */
1481 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 shmem_unacct_blocks(info->flags, 1);
1483 shmem_free_blocks(inode, 1);
Hugh Dickinsd515afe2011-07-25 17:12:26 -07001484 spin_unlock(&info->lock);
1485 page_cache_release(filepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 filepage = NULL;
1487 if (error)
1488 goto failed;
1489 goto repeat;
1490 }
1491 info->flags |= SHMEM_PAGEIN;
1492 }
1493
1494 info->alloced++;
1495 spin_unlock(&info->lock);
Hugh Dickinse84e2e12007-11-28 18:55:10 +00001496 clear_highpage(filepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 flush_dcache_page(filepage);
1498 SetPageUptodate(filepage);
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08001499 if (sgp == SGP_DIRTY)
1500 set_page_dirty(filepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 }
1502done:
Hugh Dickinsd3602442008-02-04 22:28:44 -08001503 *pagep = filepage;
Shaohua Liff36b8012010-08-09 17:19:06 -07001504 error = 0;
1505 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Hugh Dickins59a16ea2011-05-11 15:13:38 -07001507nospace:
1508 /*
1509 * Perhaps the page was brought in from swap between find_lock_page
1510 * and taking info->lock? We allow for that at add_to_page_cache_lru,
1511 * but must also avoid reporting a spurious ENOSPC while working on a
1512 * full tmpfs. (When filepage has been passed in to shmem_getpage, it
1513 * is already in page cache, which prevents this race from occurring.)
1514 */
1515 if (!filepage) {
1516 struct page *page = find_get_page(mapping, idx);
1517 if (page) {
1518 spin_unlock(&info->lock);
1519 page_cache_release(page);
1520 goto repeat;
1521 }
1522 }
1523 spin_unlock(&info->lock);
1524 error = -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525failed:
1526 if (*pagep != filepage) {
1527 unlock_page(filepage);
1528 page_cache_release(filepage);
1529 }
Shaohua Liff36b8012010-08-09 17:19:06 -07001530out:
1531 if (prealloc_page) {
1532 mem_cgroup_uncharge_cache_page(prealloc_page);
1533 page_cache_release(prealloc_page);
1534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 return error;
1536}
1537
Nick Piggind0217ac2007-07-19 01:47:03 -07001538static int shmem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001540 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 int error;
Nick Piggind0217ac2007-07-19 01:47:03 -07001542 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Nick Piggind0217ac2007-07-19 01:47:03 -07001544 if (((loff_t)vmf->pgoff << PAGE_CACHE_SHIFT) >= i_size_read(inode))
1545 return VM_FAULT_SIGBUS;
Nick Piggind00806b2007-07-19 01:46:57 -07001546
Hugh Dickins27d54b32008-02-04 22:28:43 -08001547 error = shmem_getpage(inode, vmf->pgoff, &vmf->page, SGP_CACHE, &ret);
Nick Piggind0217ac2007-07-19 01:47:03 -07001548 if (error)
1549 return ((error == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS);
Ying Han456f9982011-05-26 16:25:38 -07001550 if (ret & VM_FAULT_MAJOR) {
1551 count_vm_event(PGMAJFAULT);
1552 mem_cgroup_count_vm_event(vma->vm_mm, PGMAJFAULT);
1553 }
Nick Piggin83c54072007-07-19 01:47:05 -07001554 return ret | VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555}
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557#ifdef CONFIG_NUMA
Adrian Bunkd8dc74f2007-10-16 01:26:26 -07001558static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001560 struct inode *i = vma->vm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 return mpol_set_shared_policy(&SHMEM_I(i)->policy, vma, new);
1562}
1563
Adrian Bunkd8dc74f2007-10-16 01:26:26 -07001564static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
1565 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001567 struct inode *i = vma->vm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 unsigned long idx;
1569
1570 idx = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
1571 return mpol_shared_policy_lookup(&SHMEM_I(i)->policy, idx);
1572}
1573#endif
1574
1575int shmem_lock(struct file *file, int lock, struct user_struct *user)
1576{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001577 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 struct shmem_inode_info *info = SHMEM_I(inode);
1579 int retval = -ENOMEM;
1580
1581 spin_lock(&info->lock);
1582 if (lock && !(info->flags & VM_LOCKED)) {
1583 if (!user_shm_lock(inode->i_size, user))
1584 goto out_nomem;
1585 info->flags |= VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001586 mapping_set_unevictable(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 }
1588 if (!lock && (info->flags & VM_LOCKED) && user) {
1589 user_shm_unlock(inode->i_size, user);
1590 info->flags &= ~VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001591 mapping_clear_unevictable(file->f_mapping);
1592 scan_mapping_unevictable_pages(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 }
1594 retval = 0;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596out_nomem:
1597 spin_unlock(&info->lock);
1598 return retval;
1599}
1600
Adrian Bunk9b83a6a2007-02-28 20:11:03 -08001601static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
1603 file_accessed(file);
1604 vma->vm_ops = &shmem_vm_ops;
Nick Piggind0217ac2007-07-19 01:47:03 -07001605 vma->vm_flags |= VM_CAN_NONLINEAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 return 0;
1607}
1608
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03001609static struct inode *shmem_get_inode(struct super_block *sb, const struct inode *dir,
1610 int mode, dev_t dev, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
1612 struct inode *inode;
1613 struct shmem_inode_info *info;
1614 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1615
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001616 if (shmem_reserve_inode(sb))
1617 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
1619 inode = new_inode(sb);
1620 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001621 inode->i_ino = get_next_ino();
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03001622 inode_init_owner(inode, dir, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 inode->i_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 inode->i_mapping->backing_dev_info = &shmem_backing_dev_info;
1625 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
David M. Grimes91828a42006-10-17 00:09:45 -07001626 inode->i_generation = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 info = SHMEM_I(inode);
1628 memset(info, 0, (char *)inode - (char *)info);
1629 spin_lock_init(&info->lock);
Hugh Dickins0b0a0802009-02-24 20:51:52 +00001630 info->flags = flags & VM_NORESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 INIT_LIST_HEAD(&info->swaplist);
Eric Parisb09e0fa2011-05-24 17:12:39 -07001632 INIT_LIST_HEAD(&info->xattr_list);
Al Viro72c04902009-06-24 16:58:48 -04001633 cache_no_acl(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 switch (mode & S_IFMT) {
1636 default:
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07001637 inode->i_op = &shmem_special_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 init_special_inode(inode, mode, dev);
1639 break;
1640 case S_IFREG:
Hugh Dickins14fcc232008-07-28 15:46:19 -07001641 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 inode->i_op = &shmem_inode_operations;
1643 inode->i_fop = &shmem_file_operations;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001644 mpol_shared_policy_init(&info->policy,
1645 shmem_get_sbmpol(sbinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 break;
1647 case S_IFDIR:
Dave Hansend8c76e62006-09-30 23:29:04 -07001648 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 /* Some things misbehave if size == 0 on a directory */
1650 inode->i_size = 2 * BOGO_DIRENT_SIZE;
1651 inode->i_op = &shmem_dir_inode_operations;
1652 inode->i_fop = &simple_dir_operations;
1653 break;
1654 case S_IFLNK:
1655 /*
1656 * Must not load anything in the rbtree,
1657 * mpol_free_shared_policy will not be called.
1658 */
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001659 mpol_shared_policy_init(&info->policy, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 break;
1661 }
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001662 } else
1663 shmem_free_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 return inode;
1665}
1666
1667#ifdef CONFIG_TMPFS
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001668static const struct inode_operations shmem_symlink_inode_operations;
1669static const struct inode_operations shmem_symlink_inline_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
1671/*
Nick Piggin800d15a2007-10-16 01:25:03 -07001672 * Normally tmpfs avoids the use of shmem_readpage and shmem_write_begin;
Hugh Dickinsae9764162007-06-04 10:00:39 +02001673 * but providing them allows a tmpfs file to be used for splice, sendfile, and
1674 * below the loop driver, in the generic fashion that many filesystems support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 */
Hugh Dickinsae9764162007-06-04 10:00:39 +02001676static int shmem_readpage(struct file *file, struct page *page)
1677{
1678 struct inode *inode = page->mapping->host;
1679 int error = shmem_getpage(inode, page->index, &page, SGP_CACHE, NULL);
1680 unlock_page(page);
1681 return error;
1682}
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684static int
Nick Piggin800d15a2007-10-16 01:25:03 -07001685shmem_write_begin(struct file *file, struct address_space *mapping,
1686 loff_t pos, unsigned len, unsigned flags,
1687 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
Nick Piggin800d15a2007-10-16 01:25:03 -07001689 struct inode *inode = mapping->host;
1690 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1691 *pagep = NULL;
1692 return shmem_getpage(inode, index, pagep, SGP_WRITE, NULL);
1693}
1694
1695static int
1696shmem_write_end(struct file *file, struct address_space *mapping,
1697 loff_t pos, unsigned len, unsigned copied,
1698 struct page *page, void *fsdata)
1699{
1700 struct inode *inode = mapping->host;
1701
Hugh Dickinsd3602442008-02-04 22:28:44 -08001702 if (pos + copied > inode->i_size)
1703 i_size_write(inode, pos + copied);
1704
Nick Piggin800d15a2007-10-16 01:25:03 -07001705 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02001706 unlock_page(page);
Nick Piggin800d15a2007-10-16 01:25:03 -07001707 page_cache_release(page);
1708
Nick Piggin800d15a2007-10-16 01:25:03 -07001709 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710}
1711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712static void do_shmem_file_read(struct file *filp, loff_t *ppos, read_descriptor_t *desc, read_actor_t actor)
1713{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001714 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 struct address_space *mapping = inode->i_mapping;
1716 unsigned long index, offset;
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08001717 enum sgp_type sgp = SGP_READ;
1718
1719 /*
1720 * Might this read be for a stacking filesystem? Then when reading
1721 * holes of a sparse file, we actually need to allocate those pages,
1722 * and even mark them dirty, so it cannot exceed the max_blocks limit.
1723 */
1724 if (segment_eq(get_fs(), KERNEL_DS))
1725 sgp = SGP_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727 index = *ppos >> PAGE_CACHE_SHIFT;
1728 offset = *ppos & ~PAGE_CACHE_MASK;
1729
1730 for (;;) {
1731 struct page *page = NULL;
1732 unsigned long end_index, nr, ret;
1733 loff_t i_size = i_size_read(inode);
1734
1735 end_index = i_size >> PAGE_CACHE_SHIFT;
1736 if (index > end_index)
1737 break;
1738 if (index == end_index) {
1739 nr = i_size & ~PAGE_CACHE_MASK;
1740 if (nr <= offset)
1741 break;
1742 }
1743
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08001744 desc->error = shmem_getpage(inode, index, &page, sgp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 if (desc->error) {
1746 if (desc->error == -EINVAL)
1747 desc->error = 0;
1748 break;
1749 }
Hugh Dickinsd3602442008-02-04 22:28:44 -08001750 if (page)
1751 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 /*
1754 * We must evaluate after, since reads (unlike writes)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001755 * are called without i_mutex protection against truncate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 */
1757 nr = PAGE_CACHE_SIZE;
1758 i_size = i_size_read(inode);
1759 end_index = i_size >> PAGE_CACHE_SHIFT;
1760 if (index == end_index) {
1761 nr = i_size & ~PAGE_CACHE_MASK;
1762 if (nr <= offset) {
1763 if (page)
1764 page_cache_release(page);
1765 break;
1766 }
1767 }
1768 nr -= offset;
1769
1770 if (page) {
1771 /*
1772 * If users can be writing to this page using arbitrary
1773 * virtual addresses, take care about potential aliasing
1774 * before reading the page on the kernel side.
1775 */
1776 if (mapping_writably_mapped(mapping))
1777 flush_dcache_page(page);
1778 /*
1779 * Mark the page accessed if we read the beginning.
1780 */
1781 if (!offset)
1782 mark_page_accessed(page);
Nick Pigginb5810032005-10-29 18:16:12 -07001783 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 page = ZERO_PAGE(0);
Nick Pigginb5810032005-10-29 18:16:12 -07001785 page_cache_get(page);
1786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
1788 /*
1789 * Ok, we have the page, and it's up-to-date, so
1790 * now we can copy it to user space...
1791 *
1792 * The actor routine returns how many bytes were actually used..
1793 * NOTE! This may not be the same as how much of a user buffer
1794 * we filled up (we may be padding etc), so we can only update
1795 * "pos" here (the actor routine has to update the user buffer
1796 * pointers and the remaining count).
1797 */
1798 ret = actor(desc, page, offset, nr);
1799 offset += ret;
1800 index += offset >> PAGE_CACHE_SHIFT;
1801 offset &= ~PAGE_CACHE_MASK;
1802
1803 page_cache_release(page);
1804 if (ret != nr || !desc->count)
1805 break;
1806
1807 cond_resched();
1808 }
1809
1810 *ppos = ((loff_t) index << PAGE_CACHE_SHIFT) + offset;
1811 file_accessed(filp);
1812}
1813
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001814static ssize_t shmem_file_aio_read(struct kiocb *iocb,
1815 const struct iovec *iov, unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816{
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001817 struct file *filp = iocb->ki_filp;
1818 ssize_t retval;
1819 unsigned long seg;
1820 size_t count;
1821 loff_t *ppos = &iocb->ki_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001823 retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
1824 if (retval)
1825 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001827 for (seg = 0; seg < nr_segs; seg++) {
1828 read_descriptor_t desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001830 desc.written = 0;
1831 desc.arg.buf = iov[seg].iov_base;
1832 desc.count = iov[seg].iov_len;
1833 if (desc.count == 0)
1834 continue;
1835 desc.error = 0;
1836 do_shmem_file_read(filp, ppos, &desc, file_read_actor);
1837 retval += desc.written;
1838 if (desc.error) {
1839 retval = retval ?: desc.error;
1840 break;
1841 }
1842 if (desc.count > 0)
1843 break;
1844 }
1845 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
Hugh Dickins708e3502011-07-25 17:12:32 -07001848static ssize_t shmem_file_splice_read(struct file *in, loff_t *ppos,
1849 struct pipe_inode_info *pipe, size_t len,
1850 unsigned int flags)
1851{
1852 struct address_space *mapping = in->f_mapping;
Hugh Dickins71f0e072011-07-25 17:12:33 -07001853 struct inode *inode = mapping->host;
Hugh Dickins708e3502011-07-25 17:12:32 -07001854 unsigned int loff, nr_pages, req_pages;
1855 struct page *pages[PIPE_DEF_BUFFERS];
1856 struct partial_page partial[PIPE_DEF_BUFFERS];
1857 struct page *page;
1858 pgoff_t index, end_index;
1859 loff_t isize, left;
1860 int error, page_nr;
1861 struct splice_pipe_desc spd = {
1862 .pages = pages,
1863 .partial = partial,
1864 .flags = flags,
1865 .ops = &page_cache_pipe_buf_ops,
1866 .spd_release = spd_release_page,
1867 };
1868
Hugh Dickins71f0e072011-07-25 17:12:33 -07001869 isize = i_size_read(inode);
Hugh Dickins708e3502011-07-25 17:12:32 -07001870 if (unlikely(*ppos >= isize))
1871 return 0;
1872
1873 left = isize - *ppos;
1874 if (unlikely(left < len))
1875 len = left;
1876
1877 if (splice_grow_spd(pipe, &spd))
1878 return -ENOMEM;
1879
1880 index = *ppos >> PAGE_CACHE_SHIFT;
1881 loff = *ppos & ~PAGE_CACHE_MASK;
1882 req_pages = (len + loff + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1883 nr_pages = min(req_pages, pipe->buffers);
1884
Hugh Dickins708e3502011-07-25 17:12:32 -07001885 spd.nr_pages = find_get_pages_contig(mapping, index,
1886 nr_pages, spd.pages);
1887 index += spd.nr_pages;
Hugh Dickins708e3502011-07-25 17:12:32 -07001888 error = 0;
Hugh Dickins71f0e072011-07-25 17:12:33 -07001889
Hugh Dickins708e3502011-07-25 17:12:32 -07001890 while (spd.nr_pages < nr_pages) {
Hugh Dickins71f0e072011-07-25 17:12:33 -07001891 page = NULL;
1892 error = shmem_getpage(inode, index, &page, SGP_CACHE, NULL);
1893 if (error)
1894 break;
1895 unlock_page(page);
Hugh Dickins708e3502011-07-25 17:12:32 -07001896 spd.pages[spd.nr_pages++] = page;
1897 index++;
1898 }
1899
Hugh Dickins708e3502011-07-25 17:12:32 -07001900 index = *ppos >> PAGE_CACHE_SHIFT;
1901 nr_pages = spd.nr_pages;
1902 spd.nr_pages = 0;
Hugh Dickins71f0e072011-07-25 17:12:33 -07001903
Hugh Dickins708e3502011-07-25 17:12:32 -07001904 for (page_nr = 0; page_nr < nr_pages; page_nr++) {
1905 unsigned int this_len;
1906
1907 if (!len)
1908 break;
1909
Hugh Dickins708e3502011-07-25 17:12:32 -07001910 this_len = min_t(unsigned long, len, PAGE_CACHE_SIZE - loff);
1911 page = spd.pages[page_nr];
1912
Hugh Dickins71f0e072011-07-25 17:12:33 -07001913 if (!PageUptodate(page) || page->mapping != mapping) {
1914 page = NULL;
1915 error = shmem_getpage(inode, index, &page,
1916 SGP_CACHE, NULL);
1917 if (error)
Hugh Dickins708e3502011-07-25 17:12:32 -07001918 break;
Hugh Dickins71f0e072011-07-25 17:12:33 -07001919 unlock_page(page);
1920 page_cache_release(spd.pages[page_nr]);
1921 spd.pages[page_nr] = page;
Hugh Dickins708e3502011-07-25 17:12:32 -07001922 }
Hugh Dickins71f0e072011-07-25 17:12:33 -07001923
1924 isize = i_size_read(inode);
Hugh Dickins708e3502011-07-25 17:12:32 -07001925 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
1926 if (unlikely(!isize || index > end_index))
1927 break;
1928
Hugh Dickins708e3502011-07-25 17:12:32 -07001929 if (end_index == index) {
1930 unsigned int plen;
1931
Hugh Dickins708e3502011-07-25 17:12:32 -07001932 plen = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
1933 if (plen <= loff)
1934 break;
1935
Hugh Dickins708e3502011-07-25 17:12:32 -07001936 this_len = min(this_len, plen - loff);
1937 len = this_len;
1938 }
1939
1940 spd.partial[page_nr].offset = loff;
1941 spd.partial[page_nr].len = this_len;
1942 len -= this_len;
1943 loff = 0;
1944 spd.nr_pages++;
1945 index++;
1946 }
1947
Hugh Dickins708e3502011-07-25 17:12:32 -07001948 while (page_nr < nr_pages)
1949 page_cache_release(spd.pages[page_nr++]);
Hugh Dickins708e3502011-07-25 17:12:32 -07001950
1951 if (spd.nr_pages)
1952 error = splice_to_pipe(pipe, &spd);
1953
1954 splice_shrink_spd(pipe, &spd);
1955
1956 if (error > 0) {
1957 *ppos += error;
1958 file_accessed(in);
1959 }
1960 return error;
1961}
1962
David Howells726c3342006-06-23 02:02:58 -07001963static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
David Howells726c3342006-06-23 02:02:58 -07001965 struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
1967 buf->f_type = TMPFS_MAGIC;
1968 buf->f_bsize = PAGE_CACHE_SIZE;
1969 buf->f_namelen = NAME_MAX;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001970 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 buf->f_blocks = sbinfo->max_blocks;
Tim Chen7e496292010-08-09 17:19:05 -07001972 buf->f_bavail = buf->f_bfree =
1973 sbinfo->max_blocks - percpu_counter_sum(&sbinfo->used_blocks);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001974 }
1975 if (sbinfo->max_inodes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 buf->f_files = sbinfo->max_inodes;
1977 buf->f_ffree = sbinfo->free_inodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 }
1979 /* else leave those fields 0 like simple_statfs */
1980 return 0;
1981}
1982
1983/*
1984 * File creation. Allocate an inode, and we're done..
1985 */
1986static int
1987shmem_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1988{
Hugh Dickins0b0a0802009-02-24 20:51:52 +00001989 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 int error = -ENOSPC;
1991
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03001992 inode = shmem_get_inode(dir->i_sb, dir, mode, dev, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 if (inode) {
Eric Paris2a7dba32011-02-01 11:05:39 -05001994 error = security_inode_init_security(inode, dir,
1995 &dentry->d_name, NULL,
1996 NULL, NULL);
Stephen Smalley570bc1c2005-09-09 13:01:43 -07001997 if (error) {
1998 if (error != -EOPNOTSUPP) {
1999 iput(inode);
2000 return error;
2001 }
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002002 }
Christoph Hellwig1c7c4742009-11-03 16:44:44 +01002003#ifdef CONFIG_TMPFS_POSIX_ACL
2004 error = generic_acl_init(inode, dir);
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002005 if (error) {
2006 iput(inode);
2007 return error;
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002008 }
Al Viro718deb62009-12-16 19:35:36 -05002009#else
2010 error = 0;
Christoph Hellwig1c7c4742009-11-03 16:44:44 +01002011#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 dir->i_size += BOGO_DIRENT_SIZE;
2013 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
2014 d_instantiate(dentry, inode);
2015 dget(dentry); /* Extra count - pin the dentry in core */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 }
2017 return error;
2018}
2019
2020static int shmem_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2021{
2022 int error;
2023
2024 if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
2025 return error;
Dave Hansend8c76e62006-09-30 23:29:04 -07002026 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return 0;
2028}
2029
2030static int shmem_create(struct inode *dir, struct dentry *dentry, int mode,
2031 struct nameidata *nd)
2032{
2033 return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
2034}
2035
2036/*
2037 * Link a file..
2038 */
2039static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
2040{
2041 struct inode *inode = old_dentry->d_inode;
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002042 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044 /*
2045 * No ordinary (disk based) filesystem counts links as inodes;
2046 * but each new link needs a new dentry, pinning lowmem, and
2047 * tmpfs dentries cannot be pruned until they are unlinked.
2048 */
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002049 ret = shmem_reserve_inode(inode->i_sb);
2050 if (ret)
2051 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053 dir->i_size += BOGO_DIRENT_SIZE;
2054 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansend8c76e62006-09-30 23:29:04 -07002055 inc_nlink(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04002056 ihold(inode); /* New dentry reference */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 dget(dentry); /* Extra pinning count for the created dentry */
2058 d_instantiate(dentry, inode);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002059out:
2060 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062
2063static int shmem_unlink(struct inode *dir, struct dentry *dentry)
2064{
2065 struct inode *inode = dentry->d_inode;
2066
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002067 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
2068 shmem_free_inode(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
2070 dir->i_size -= BOGO_DIRENT_SIZE;
2071 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002072 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 dput(dentry); /* Undo the count from "create" - this does all the work */
2074 return 0;
2075}
2076
2077static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
2078{
2079 if (!simple_empty(dentry))
2080 return -ENOTEMPTY;
2081
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002082 drop_nlink(dentry->d_inode);
2083 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 return shmem_unlink(dir, dentry);
2085}
2086
2087/*
2088 * The VFS layer already does all the dentry stuff for rename,
2089 * we just have to decrement the usage count for the target if
2090 * it exists so that the VFS layer correctly free's it when it
2091 * gets overwritten.
2092 */
2093static int shmem_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
2094{
2095 struct inode *inode = old_dentry->d_inode;
2096 int they_are_dirs = S_ISDIR(inode->i_mode);
2097
2098 if (!simple_empty(new_dentry))
2099 return -ENOTEMPTY;
2100
2101 if (new_dentry->d_inode) {
2102 (void) shmem_unlink(new_dir, new_dentry);
2103 if (they_are_dirs)
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002104 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 } else if (they_are_dirs) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002106 drop_nlink(old_dir);
Dave Hansend8c76e62006-09-30 23:29:04 -07002107 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 }
2109
2110 old_dir->i_size -= BOGO_DIRENT_SIZE;
2111 new_dir->i_size += BOGO_DIRENT_SIZE;
2112 old_dir->i_ctime = old_dir->i_mtime =
2113 new_dir->i_ctime = new_dir->i_mtime =
2114 inode->i_ctime = CURRENT_TIME;
2115 return 0;
2116}
2117
2118static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
2119{
2120 int error;
2121 int len;
2122 struct inode *inode;
2123 struct page *page = NULL;
2124 char *kaddr;
2125 struct shmem_inode_info *info;
2126
2127 len = strlen(symname) + 1;
2128 if (len > PAGE_CACHE_SIZE)
2129 return -ENAMETOOLONG;
2130
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002131 inode = shmem_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 if (!inode)
2133 return -ENOSPC;
2134
Eric Paris2a7dba32011-02-01 11:05:39 -05002135 error = security_inode_init_security(inode, dir, &dentry->d_name, NULL,
2136 NULL, NULL);
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002137 if (error) {
2138 if (error != -EOPNOTSUPP) {
2139 iput(inode);
2140 return error;
2141 }
2142 error = 0;
2143 }
2144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 info = SHMEM_I(inode);
2146 inode->i_size = len-1;
Eric Parisb09e0fa2011-05-24 17:12:39 -07002147 if (len <= SHMEM_SYMLINK_INLINE_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 /* do it inline */
Eric Parisb09e0fa2011-05-24 17:12:39 -07002149 memcpy(info->inline_symlink, symname, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 inode->i_op = &shmem_symlink_inline_operations;
2151 } else {
2152 error = shmem_getpage(inode, 0, &page, SGP_WRITE, NULL);
2153 if (error) {
2154 iput(inode);
2155 return error;
2156 }
Hugh Dickins14fcc232008-07-28 15:46:19 -07002157 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 inode->i_op = &shmem_symlink_inode_operations;
2159 kaddr = kmap_atomic(page, KM_USER0);
2160 memcpy(kaddr, symname, len);
2161 kunmap_atomic(kaddr, KM_USER0);
2162 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02002163 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 page_cache_release(page);
2165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 dir->i_size += BOGO_DIRENT_SIZE;
2167 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
2168 d_instantiate(dentry, inode);
2169 dget(dentry);
2170 return 0;
2171}
2172
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002173static void *shmem_follow_link_inline(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
Eric Parisb09e0fa2011-05-24 17:12:39 -07002175 nd_set_link(nd, SHMEM_I(dentry->d_inode)->inline_symlink);
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002176 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177}
2178
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002179static void *shmem_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180{
2181 struct page *page = NULL;
2182 int res = shmem_getpage(dentry->d_inode, 0, &page, SGP_READ, NULL);
2183 nd_set_link(nd, res ? ERR_PTR(res) : kmap(page));
Hugh Dickinsd3602442008-02-04 22:28:44 -08002184 if (page)
2185 unlock_page(page);
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002186 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187}
2188
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002189static void shmem_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190{
2191 if (!IS_ERR(nd_get_link(nd))) {
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002192 struct page *page = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 kunmap(page);
2194 mark_page_accessed(page);
2195 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 }
2197}
2198
Eric Parisb09e0fa2011-05-24 17:12:39 -07002199#ifdef CONFIG_TMPFS_XATTR
2200/*
2201 * Superblocks without xattr inode operations may get some security.* xattr
2202 * support from the LSM "for free". As soon as we have any other xattrs
2203 * like ACLs, we also need to implement the security.* handlers at
2204 * filesystem level, though.
2205 */
2206
2207static int shmem_xattr_get(struct dentry *dentry, const char *name,
2208 void *buffer, size_t size)
2209{
2210 struct shmem_inode_info *info;
2211 struct shmem_xattr *xattr;
2212 int ret = -ENODATA;
2213
2214 info = SHMEM_I(dentry->d_inode);
2215
2216 spin_lock(&info->lock);
2217 list_for_each_entry(xattr, &info->xattr_list, list) {
2218 if (strcmp(name, xattr->name))
2219 continue;
2220
2221 ret = xattr->size;
2222 if (buffer) {
2223 if (size < xattr->size)
2224 ret = -ERANGE;
2225 else
2226 memcpy(buffer, xattr->value, xattr->size);
2227 }
2228 break;
2229 }
2230 spin_unlock(&info->lock);
2231 return ret;
2232}
2233
2234static int shmem_xattr_set(struct dentry *dentry, const char *name,
2235 const void *value, size_t size, int flags)
2236{
2237 struct inode *inode = dentry->d_inode;
2238 struct shmem_inode_info *info = SHMEM_I(inode);
2239 struct shmem_xattr *xattr;
2240 struct shmem_xattr *new_xattr = NULL;
2241 size_t len;
2242 int err = 0;
2243
2244 /* value == NULL means remove */
2245 if (value) {
2246 /* wrap around? */
2247 len = sizeof(*new_xattr) + size;
2248 if (len <= sizeof(*new_xattr))
2249 return -ENOMEM;
2250
2251 new_xattr = kmalloc(len, GFP_KERNEL);
2252 if (!new_xattr)
2253 return -ENOMEM;
2254
2255 new_xattr->name = kstrdup(name, GFP_KERNEL);
2256 if (!new_xattr->name) {
2257 kfree(new_xattr);
2258 return -ENOMEM;
2259 }
2260
2261 new_xattr->size = size;
2262 memcpy(new_xattr->value, value, size);
2263 }
2264
2265 spin_lock(&info->lock);
2266 list_for_each_entry(xattr, &info->xattr_list, list) {
2267 if (!strcmp(name, xattr->name)) {
2268 if (flags & XATTR_CREATE) {
2269 xattr = new_xattr;
2270 err = -EEXIST;
2271 } else if (new_xattr) {
2272 list_replace(&xattr->list, &new_xattr->list);
2273 } else {
2274 list_del(&xattr->list);
2275 }
2276 goto out;
2277 }
2278 }
2279 if (flags & XATTR_REPLACE) {
2280 xattr = new_xattr;
2281 err = -ENODATA;
2282 } else {
2283 list_add(&new_xattr->list, &info->xattr_list);
2284 xattr = NULL;
2285 }
2286out:
2287 spin_unlock(&info->lock);
2288 if (xattr)
2289 kfree(xattr->name);
2290 kfree(xattr);
2291 return err;
2292}
2293
2294
2295static const struct xattr_handler *shmem_xattr_handlers[] = {
2296#ifdef CONFIG_TMPFS_POSIX_ACL
2297 &generic_acl_access_handler,
2298 &generic_acl_default_handler,
2299#endif
2300 NULL
2301};
2302
2303static int shmem_xattr_validate(const char *name)
2304{
2305 struct { const char *prefix; size_t len; } arr[] = {
2306 { XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN },
2307 { XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN }
2308 };
2309 int i;
2310
2311 for (i = 0; i < ARRAY_SIZE(arr); i++) {
2312 size_t preflen = arr[i].len;
2313 if (strncmp(name, arr[i].prefix, preflen) == 0) {
2314 if (!name[preflen])
2315 return -EINVAL;
2316 return 0;
2317 }
2318 }
2319 return -EOPNOTSUPP;
2320}
2321
2322static ssize_t shmem_getxattr(struct dentry *dentry, const char *name,
2323 void *buffer, size_t size)
2324{
2325 int err;
2326
2327 /*
2328 * If this is a request for a synthetic attribute in the system.*
2329 * namespace use the generic infrastructure to resolve a handler
2330 * for it via sb->s_xattr.
2331 */
2332 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
2333 return generic_getxattr(dentry, name, buffer, size);
2334
2335 err = shmem_xattr_validate(name);
2336 if (err)
2337 return err;
2338
2339 return shmem_xattr_get(dentry, name, buffer, size);
2340}
2341
2342static int shmem_setxattr(struct dentry *dentry, const char *name,
2343 const void *value, size_t size, int flags)
2344{
2345 int err;
2346
2347 /*
2348 * If this is a request for a synthetic attribute in the system.*
2349 * namespace use the generic infrastructure to resolve a handler
2350 * for it via sb->s_xattr.
2351 */
2352 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
2353 return generic_setxattr(dentry, name, value, size, flags);
2354
2355 err = shmem_xattr_validate(name);
2356 if (err)
2357 return err;
2358
2359 if (size == 0)
2360 value = ""; /* empty EA, do not remove */
2361
2362 return shmem_xattr_set(dentry, name, value, size, flags);
2363
2364}
2365
2366static int shmem_removexattr(struct dentry *dentry, const char *name)
2367{
2368 int err;
2369
2370 /*
2371 * If this is a request for a synthetic attribute in the system.*
2372 * namespace use the generic infrastructure to resolve a handler
2373 * for it via sb->s_xattr.
2374 */
2375 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
2376 return generic_removexattr(dentry, name);
2377
2378 err = shmem_xattr_validate(name);
2379 if (err)
2380 return err;
2381
2382 return shmem_xattr_set(dentry, name, NULL, 0, XATTR_REPLACE);
2383}
2384
2385static bool xattr_is_trusted(const char *name)
2386{
2387 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
2388}
2389
2390static ssize_t shmem_listxattr(struct dentry *dentry, char *buffer, size_t size)
2391{
2392 bool trusted = capable(CAP_SYS_ADMIN);
2393 struct shmem_xattr *xattr;
2394 struct shmem_inode_info *info;
2395 size_t used = 0;
2396
2397 info = SHMEM_I(dentry->d_inode);
2398
2399 spin_lock(&info->lock);
2400 list_for_each_entry(xattr, &info->xattr_list, list) {
2401 size_t len;
2402
2403 /* skip "trusted." attributes for unprivileged callers */
2404 if (!trusted && xattr_is_trusted(xattr->name))
2405 continue;
2406
2407 len = strlen(xattr->name) + 1;
2408 used += len;
2409 if (buffer) {
2410 if (size < used) {
2411 used = -ERANGE;
2412 break;
2413 }
2414 memcpy(buffer, xattr->name, len);
2415 buffer += len;
2416 }
2417 }
2418 spin_unlock(&info->lock);
2419
2420 return used;
2421}
2422#endif /* CONFIG_TMPFS_XATTR */
2423
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002424static const struct inode_operations shmem_symlink_inline_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 .readlink = generic_readlink,
2426 .follow_link = shmem_follow_link_inline,
Eric Parisb09e0fa2011-05-24 17:12:39 -07002427#ifdef CONFIG_TMPFS_XATTR
2428 .setxattr = shmem_setxattr,
2429 .getxattr = shmem_getxattr,
2430 .listxattr = shmem_listxattr,
2431 .removexattr = shmem_removexattr,
2432#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433};
2434
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002435static const struct inode_operations shmem_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 .readlink = generic_readlink,
2437 .follow_link = shmem_follow_link,
2438 .put_link = shmem_put_link,
Eric Parisb09e0fa2011-05-24 17:12:39 -07002439#ifdef CONFIG_TMPFS_XATTR
2440 .setxattr = shmem_setxattr,
2441 .getxattr = shmem_getxattr,
2442 .listxattr = shmem_listxattr,
2443 .removexattr = shmem_removexattr,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002444#endif
Eric Parisb09e0fa2011-05-24 17:12:39 -07002445};
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002446
David M. Grimes91828a42006-10-17 00:09:45 -07002447static struct dentry *shmem_get_parent(struct dentry *child)
2448{
2449 return ERR_PTR(-ESTALE);
2450}
2451
2452static int shmem_match(struct inode *ino, void *vfh)
2453{
2454 __u32 *fh = vfh;
2455 __u64 inum = fh[2];
2456 inum = (inum << 32) | fh[1];
2457 return ino->i_ino == inum && fh[0] == ino->i_generation;
2458}
2459
Christoph Hellwig480b1162007-10-21 16:42:13 -07002460static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
2461 struct fid *fid, int fh_len, int fh_type)
David M. Grimes91828a42006-10-17 00:09:45 -07002462{
David M. Grimes91828a42006-10-17 00:09:45 -07002463 struct inode *inode;
Christoph Hellwig480b1162007-10-21 16:42:13 -07002464 struct dentry *dentry = NULL;
2465 u64 inum = fid->raw[2];
2466 inum = (inum << 32) | fid->raw[1];
David M. Grimes91828a42006-10-17 00:09:45 -07002467
Christoph Hellwig480b1162007-10-21 16:42:13 -07002468 if (fh_len < 3)
2469 return NULL;
2470
2471 inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
2472 shmem_match, fid->raw);
David M. Grimes91828a42006-10-17 00:09:45 -07002473 if (inode) {
Christoph Hellwig480b1162007-10-21 16:42:13 -07002474 dentry = d_find_alias(inode);
David M. Grimes91828a42006-10-17 00:09:45 -07002475 iput(inode);
2476 }
2477
Christoph Hellwig480b1162007-10-21 16:42:13 -07002478 return dentry;
David M. Grimes91828a42006-10-17 00:09:45 -07002479}
2480
2481static int shmem_encode_fh(struct dentry *dentry, __u32 *fh, int *len,
2482 int connectable)
2483{
2484 struct inode *inode = dentry->d_inode;
2485
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05302486 if (*len < 3) {
2487 *len = 3;
David M. Grimes91828a42006-10-17 00:09:45 -07002488 return 255;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05302489 }
David M. Grimes91828a42006-10-17 00:09:45 -07002490
Al Viro1d3382cb2010-10-23 15:19:20 -04002491 if (inode_unhashed(inode)) {
David M. Grimes91828a42006-10-17 00:09:45 -07002492 /* Unfortunately insert_inode_hash is not idempotent,
2493 * so as we hash inodes here rather than at creation
2494 * time, we need a lock to ensure we only try
2495 * to do it once
2496 */
2497 static DEFINE_SPINLOCK(lock);
2498 spin_lock(&lock);
Al Viro1d3382cb2010-10-23 15:19:20 -04002499 if (inode_unhashed(inode))
David M. Grimes91828a42006-10-17 00:09:45 -07002500 __insert_inode_hash(inode,
2501 inode->i_ino + inode->i_generation);
2502 spin_unlock(&lock);
2503 }
2504
2505 fh[0] = inode->i_generation;
2506 fh[1] = inode->i_ino;
2507 fh[2] = ((__u64)inode->i_ino) >> 32;
2508
2509 *len = 3;
2510 return 1;
2511}
2512
Christoph Hellwig39655162007-10-21 16:42:17 -07002513static const struct export_operations shmem_export_ops = {
David M. Grimes91828a42006-10-17 00:09:45 -07002514 .get_parent = shmem_get_parent,
David M. Grimes91828a42006-10-17 00:09:45 -07002515 .encode_fh = shmem_encode_fh,
Christoph Hellwig480b1162007-10-21 16:42:13 -07002516 .fh_to_dentry = shmem_fh_to_dentry,
David M. Grimes91828a42006-10-17 00:09:45 -07002517};
2518
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002519static int shmem_parse_options(char *options, struct shmem_sb_info *sbinfo,
2520 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521{
2522 char *this_char, *value, *rest;
2523
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +00002524 while (options != NULL) {
2525 this_char = options;
2526 for (;;) {
2527 /*
2528 * NUL-terminate this option: unfortunately,
2529 * mount options form a comma-separated list,
2530 * but mpol's nodelist may also contain commas.
2531 */
2532 options = strchr(options, ',');
2533 if (options == NULL)
2534 break;
2535 options++;
2536 if (!isdigit(*options)) {
2537 options[-1] = '\0';
2538 break;
2539 }
2540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 if (!*this_char)
2542 continue;
2543 if ((value = strchr(this_char,'=')) != NULL) {
2544 *value++ = 0;
2545 } else {
2546 printk(KERN_ERR
2547 "tmpfs: No value for mount option '%s'\n",
2548 this_char);
2549 return 1;
2550 }
2551
2552 if (!strcmp(this_char,"size")) {
2553 unsigned long long size;
2554 size = memparse(value,&rest);
2555 if (*rest == '%') {
2556 size <<= PAGE_SHIFT;
2557 size *= totalram_pages;
2558 do_div(size, 100);
2559 rest++;
2560 }
2561 if (*rest)
2562 goto bad_val;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002563 sbinfo->max_blocks =
2564 DIV_ROUND_UP(size, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 } else if (!strcmp(this_char,"nr_blocks")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002566 sbinfo->max_blocks = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 if (*rest)
2568 goto bad_val;
2569 } else if (!strcmp(this_char,"nr_inodes")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002570 sbinfo->max_inodes = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 if (*rest)
2572 goto bad_val;
2573 } else if (!strcmp(this_char,"mode")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002574 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002576 sbinfo->mode = simple_strtoul(value, &rest, 8) & 07777;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 if (*rest)
2578 goto bad_val;
2579 } else if (!strcmp(this_char,"uid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002580 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002582 sbinfo->uid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 if (*rest)
2584 goto bad_val;
2585 } else if (!strcmp(this_char,"gid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002586 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002588 sbinfo->gid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 if (*rest)
2590 goto bad_val;
Robin Holt7339ff82006-01-14 13:20:48 -08002591 } else if (!strcmp(this_char,"mpol")) {
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002592 if (mpol_parse_str(value, &sbinfo->mpol, 1))
Robin Holt7339ff82006-01-14 13:20:48 -08002593 goto bad_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 } else {
2595 printk(KERN_ERR "tmpfs: Bad mount option %s\n",
2596 this_char);
2597 return 1;
2598 }
2599 }
2600 return 0;
2601
2602bad_val:
2603 printk(KERN_ERR "tmpfs: Bad value '%s' for mount option '%s'\n",
2604 value, this_char);
2605 return 1;
2606
2607}
2608
2609static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
2610{
2611 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002612 struct shmem_sb_info config = *sbinfo;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002613 unsigned long inodes;
2614 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002616 if (shmem_parse_options(data, &config, true))
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002617 return error;
2618
2619 spin_lock(&sbinfo->stat_lock);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002620 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
Tim Chen7e496292010-08-09 17:19:05 -07002621 if (percpu_counter_compare(&sbinfo->used_blocks, config.max_blocks) > 0)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002622 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002623 if (config.max_inodes < inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002624 goto out;
2625 /*
2626 * Those tests also disallow limited->unlimited while any are in
2627 * use, so i_blocks will always be zero when max_blocks is zero;
2628 * but we must separately disallow unlimited->limited, because
2629 * in that case we have no record of how much is already in use.
2630 */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002631 if (config.max_blocks && !sbinfo->max_blocks)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002632 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002633 if (config.max_inodes && !sbinfo->max_inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002634 goto out;
2635
2636 error = 0;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002637 sbinfo->max_blocks = config.max_blocks;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002638 sbinfo->max_inodes = config.max_inodes;
2639 sbinfo->free_inodes = config.max_inodes - inodes;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002640
2641 mpol_put(sbinfo->mpol);
2642 sbinfo->mpol = config.mpol; /* transfers initial ref */
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002643out:
2644 spin_unlock(&sbinfo->stat_lock);
2645 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002647
2648static int shmem_show_options(struct seq_file *seq, struct vfsmount *vfs)
2649{
2650 struct shmem_sb_info *sbinfo = SHMEM_SB(vfs->mnt_sb);
2651
2652 if (sbinfo->max_blocks != shmem_default_max_blocks())
2653 seq_printf(seq, ",size=%luk",
2654 sbinfo->max_blocks << (PAGE_CACHE_SHIFT - 10));
2655 if (sbinfo->max_inodes != shmem_default_max_inodes())
2656 seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
2657 if (sbinfo->mode != (S_IRWXUGO | S_ISVTX))
2658 seq_printf(seq, ",mode=%03o", sbinfo->mode);
2659 if (sbinfo->uid != 0)
2660 seq_printf(seq, ",uid=%u", sbinfo->uid);
2661 if (sbinfo->gid != 0)
2662 seq_printf(seq, ",gid=%u", sbinfo->gid);
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002663 shmem_show_mpol(seq, sbinfo->mpol);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002664 return 0;
2665}
2666#endif /* CONFIG_TMPFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
2668static void shmem_put_super(struct super_block *sb)
2669{
Hugh Dickins602586a2010-08-17 15:23:56 -07002670 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2671
2672 percpu_counter_destroy(&sbinfo->used_blocks);
2673 kfree(sbinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 sb->s_fs_info = NULL;
2675}
2676
Kay Sievers2b2af542009-04-30 15:23:42 +02002677int shmem_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678{
2679 struct inode *inode;
2680 struct dentry *root;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002681 struct shmem_sb_info *sbinfo;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002682 int err = -ENOMEM;
2683
2684 /* Round up to L1_CACHE_BYTES to resist false sharing */
Pekka Enberg425fbf02009-09-21 17:03:50 -07002685 sbinfo = kzalloc(max((int)sizeof(struct shmem_sb_info),
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002686 L1_CACHE_BYTES), GFP_KERNEL);
2687 if (!sbinfo)
2688 return -ENOMEM;
2689
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002690 sbinfo->mode = S_IRWXUGO | S_ISVTX;
David Howells76aac0e2008-11-14 10:39:12 +11002691 sbinfo->uid = current_fsuid();
2692 sbinfo->gid = current_fsgid();
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002693 sb->s_fs_info = sbinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002695#ifdef CONFIG_TMPFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 /*
2697 * Per default we only allow half of the physical ram per
2698 * tmpfs instance, limiting inodes to one per page of lowmem;
2699 * but the internal instance is left unlimited.
2700 */
2701 if (!(sb->s_flags & MS_NOUSER)) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002702 sbinfo->max_blocks = shmem_default_max_blocks();
2703 sbinfo->max_inodes = shmem_default_max_inodes();
2704 if (shmem_parse_options(data, sbinfo, false)) {
2705 err = -EINVAL;
2706 goto failed;
2707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 }
David M. Grimes91828a42006-10-17 00:09:45 -07002709 sb->s_export_op = &shmem_export_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710#else
2711 sb->s_flags |= MS_NOUSER;
2712#endif
2713
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002714 spin_lock_init(&sbinfo->stat_lock);
Hugh Dickins602586a2010-08-17 15:23:56 -07002715 if (percpu_counter_init(&sbinfo->used_blocks, 0))
2716 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002717 sbinfo->free_inodes = sbinfo->max_inodes;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002718
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 sb->s_maxbytes = SHMEM_MAX_BYTES;
2720 sb->s_blocksize = PAGE_CACHE_SIZE;
2721 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
2722 sb->s_magic = TMPFS_MAGIC;
2723 sb->s_op = &shmem_ops;
Robin H. Johnsoncfd95a92006-06-12 21:50:25 +01002724 sb->s_time_gran = 1;
Eric Parisb09e0fa2011-05-24 17:12:39 -07002725#ifdef CONFIG_TMPFS_XATTR
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002726 sb->s_xattr = shmem_xattr_handlers;
Eric Parisb09e0fa2011-05-24 17:12:39 -07002727#endif
2728#ifdef CONFIG_TMPFS_POSIX_ACL
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002729 sb->s_flags |= MS_POSIXACL;
2730#endif
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002731
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002732 inode = shmem_get_inode(sb, NULL, S_IFDIR | sbinfo->mode, 0, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 if (!inode)
2734 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002735 inode->i_uid = sbinfo->uid;
2736 inode->i_gid = sbinfo->gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 root = d_alloc_root(inode);
2738 if (!root)
2739 goto failed_iput;
2740 sb->s_root = root;
2741 return 0;
2742
2743failed_iput:
2744 iput(inode);
2745failed:
2746 shmem_put_super(sb);
2747 return err;
2748}
2749
Pekka Enbergfcc234f2006-03-22 00:08:13 -08002750static struct kmem_cache *shmem_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
2752static struct inode *shmem_alloc_inode(struct super_block *sb)
2753{
2754 struct shmem_inode_info *p;
Christoph Lametere94b1762006-12-06 20:33:17 -08002755 p = (struct shmem_inode_info *)kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 if (!p)
2757 return NULL;
2758 return &p->vfs_inode;
2759}
2760
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11002761static void shmem_i_callback(struct rcu_head *head)
2762{
2763 struct inode *inode = container_of(head, struct inode, i_rcu);
2764 INIT_LIST_HEAD(&inode->i_dentry);
2765 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
2766}
2767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768static void shmem_destroy_inode(struct inode *inode)
2769{
2770 if ((inode->i_mode & S_IFMT) == S_IFREG) {
2771 /* only struct inode is valid if it's an inline symlink */
2772 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
2773 }
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11002774 call_rcu(&inode->i_rcu, shmem_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775}
2776
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002777static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778{
2779 struct shmem_inode_info *p = (struct shmem_inode_info *) foo;
2780
Christoph Lametera35afb82007-05-16 22:10:57 -07002781 inode_init_once(&p->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782}
2783
2784static int init_inodecache(void)
2785{
2786 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
2787 sizeof(struct shmem_inode_info),
Alexey Dobriyan040b5c62007-10-16 23:26:10 -07002788 0, SLAB_PANIC, init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 return 0;
2790}
2791
2792static void destroy_inodecache(void)
2793{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07002794 kmem_cache_destroy(shmem_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795}
2796
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07002797static const struct address_space_operations shmem_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 .writepage = shmem_writepage,
Ken Chen76719322007-02-10 01:43:15 -08002799 .set_page_dirty = __set_page_dirty_no_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800#ifdef CONFIG_TMPFS
Hugh Dickinsae9764162007-06-04 10:00:39 +02002801 .readpage = shmem_readpage,
Nick Piggin800d15a2007-10-16 01:25:03 -07002802 .write_begin = shmem_write_begin,
2803 .write_end = shmem_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804#endif
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -07002805 .migratepage = migrate_page,
Andi Kleenaa261f52009-09-16 11:50:16 +02002806 .error_remove_page = generic_error_remove_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807};
2808
Helge Deller15ad7cd2006-12-06 20:40:36 -08002809static const struct file_operations shmem_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 .mmap = shmem_mmap,
2811#ifdef CONFIG_TMPFS
2812 .llseek = generic_file_llseek,
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07002813 .read = do_sync_read,
Hugh Dickins5402b972008-02-04 22:28:44 -08002814 .write = do_sync_write,
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07002815 .aio_read = shmem_file_aio_read,
Hugh Dickins5402b972008-02-04 22:28:44 -08002816 .aio_write = generic_file_aio_write,
Christoph Hellwig1b061d92010-05-26 17:53:41 +02002817 .fsync = noop_fsync,
Hugh Dickins708e3502011-07-25 17:12:32 -07002818 .splice_read = shmem_file_splice_read,
Hugh Dickinsae9764162007-06-04 10:00:39 +02002819 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820#endif
2821};
2822
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002823static const struct inode_operations shmem_inode_operations = {
Hugh Dickins94c1e622011-06-27 16:18:03 -07002824 .setattr = shmem_setattr,
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -08002825 .truncate_range = shmem_truncate_range,
Eric Parisb09e0fa2011-05-24 17:12:39 -07002826#ifdef CONFIG_TMPFS_XATTR
2827 .setxattr = shmem_setxattr,
2828 .getxattr = shmem_getxattr,
2829 .listxattr = shmem_listxattr,
2830 .removexattr = shmem_removexattr,
2831#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002832#ifdef CONFIG_TMPFS_POSIX_ACL
Christoph Hellwig1c7c4742009-11-03 16:44:44 +01002833 .check_acl = generic_check_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002834#endif
2835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836};
2837
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002838static const struct inode_operations shmem_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839#ifdef CONFIG_TMPFS
2840 .create = shmem_create,
2841 .lookup = simple_lookup,
2842 .link = shmem_link,
2843 .unlink = shmem_unlink,
2844 .symlink = shmem_symlink,
2845 .mkdir = shmem_mkdir,
2846 .rmdir = shmem_rmdir,
2847 .mknod = shmem_mknod,
2848 .rename = shmem_rename,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849#endif
Eric Parisb09e0fa2011-05-24 17:12:39 -07002850#ifdef CONFIG_TMPFS_XATTR
2851 .setxattr = shmem_setxattr,
2852 .getxattr = shmem_getxattr,
2853 .listxattr = shmem_listxattr,
2854 .removexattr = shmem_removexattr,
2855#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002856#ifdef CONFIG_TMPFS_POSIX_ACL
Hugh Dickins94c1e622011-06-27 16:18:03 -07002857 .setattr = shmem_setattr,
Christoph Hellwig1c7c4742009-11-03 16:44:44 +01002858 .check_acl = generic_check_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002859#endif
2860};
2861
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002862static const struct inode_operations shmem_special_inode_operations = {
Eric Parisb09e0fa2011-05-24 17:12:39 -07002863#ifdef CONFIG_TMPFS_XATTR
2864 .setxattr = shmem_setxattr,
2865 .getxattr = shmem_getxattr,
2866 .listxattr = shmem_listxattr,
2867 .removexattr = shmem_removexattr,
2868#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002869#ifdef CONFIG_TMPFS_POSIX_ACL
Hugh Dickins94c1e622011-06-27 16:18:03 -07002870 .setattr = shmem_setattr,
Christoph Hellwig1c7c4742009-11-03 16:44:44 +01002871 .check_acl = generic_check_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002872#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873};
2874
Hugh Dickins759b9772007-03-05 00:30:28 -08002875static const struct super_operations shmem_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 .alloc_inode = shmem_alloc_inode,
2877 .destroy_inode = shmem_destroy_inode,
2878#ifdef CONFIG_TMPFS
2879 .statfs = shmem_statfs,
2880 .remount_fs = shmem_remount_fs,
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002881 .show_options = shmem_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882#endif
Al Viro1f895f72010-06-05 19:10:41 -04002883 .evict_inode = shmem_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 .drop_inode = generic_delete_inode,
2885 .put_super = shmem_put_super,
2886};
2887
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002888static const struct vm_operations_struct shmem_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07002889 .fault = shmem_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890#ifdef CONFIG_NUMA
2891 .set_policy = shmem_set_policy,
2892 .get_policy = shmem_get_policy,
2893#endif
2894};
2895
2896
Al Viro3c26ff62010-07-25 11:46:36 +04002897static struct dentry *shmem_mount(struct file_system_type *fs_type,
2898 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899{
Al Viro3c26ff62010-07-25 11:46:36 +04002900 return mount_nodev(fs_type, flags, data, shmem_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901}
2902
2903static struct file_system_type tmpfs_fs_type = {
2904 .owner = THIS_MODULE,
2905 .name = "tmpfs",
Al Viro3c26ff62010-07-25 11:46:36 +04002906 .mount = shmem_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 .kill_sb = kill_litter_super,
2908};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Kay Sievers2b2af542009-04-30 15:23:42 +02002910int __init init_tmpfs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911{
2912 int error;
2913
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07002914 error = bdi_init(&shmem_backing_dev_info);
2915 if (error)
2916 goto out4;
2917
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 error = init_inodecache();
2919 if (error)
2920 goto out3;
2921
2922 error = register_filesystem(&tmpfs_fs_type);
2923 if (error) {
2924 printk(KERN_ERR "Could not register tmpfs\n");
2925 goto out2;
2926 }
Greg Kroah-Hartman95dc1122005-06-20 21:15:16 -07002927
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -04002928 shm_mnt = vfs_kern_mount(&tmpfs_fs_type, MS_NOUSER,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 tmpfs_fs_type.name, NULL);
2930 if (IS_ERR(shm_mnt)) {
2931 error = PTR_ERR(shm_mnt);
2932 printk(KERN_ERR "Could not kern_mount tmpfs\n");
2933 goto out1;
2934 }
2935 return 0;
2936
2937out1:
2938 unregister_filesystem(&tmpfs_fs_type);
2939out2:
2940 destroy_inodecache();
2941out3:
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07002942 bdi_destroy(&shmem_backing_dev_info);
2943out4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 shm_mnt = ERR_PTR(error);
2945 return error;
2946}
Matt Mackall853ac432009-01-06 14:40:20 -08002947
Daisuke Nishimura87946a72010-05-26 14:42:39 -07002948#ifdef CONFIG_CGROUP_MEM_RES_CTLR
2949/**
2950 * mem_cgroup_get_shmem_target - find a page or entry assigned to the shmem file
2951 * @inode: the inode to be searched
2952 * @pgoff: the offset to be searched
2953 * @pagep: the pointer for the found page to be stored
2954 * @ent: the pointer for the found swap entry to be stored
2955 *
2956 * If a page is found, refcount of it is incremented. Callers should handle
2957 * these refcount.
2958 */
2959void mem_cgroup_get_shmem_target(struct inode *inode, pgoff_t pgoff,
2960 struct page **pagep, swp_entry_t *ent)
2961{
2962 swp_entry_t entry = { .val = 0 }, *ptr;
2963 struct page *page = NULL;
2964 struct shmem_inode_info *info = SHMEM_I(inode);
2965
2966 if ((pgoff << PAGE_CACHE_SHIFT) >= i_size_read(inode))
2967 goto out;
2968
2969 spin_lock(&info->lock);
2970 ptr = shmem_swp_entry(info, pgoff, NULL);
2971#ifdef CONFIG_SWAP
2972 if (ptr && ptr->val) {
2973 entry.val = ptr->val;
2974 page = find_get_page(&swapper_space, entry.val);
2975 } else
2976#endif
2977 page = find_get_page(inode->i_mapping, pgoff);
2978 if (ptr)
2979 shmem_swp_unmap(ptr);
2980 spin_unlock(&info->lock);
2981out:
2982 *pagep = page;
2983 *ent = entry;
2984}
2985#endif
2986
Matt Mackall853ac432009-01-06 14:40:20 -08002987#else /* !CONFIG_SHMEM */
2988
2989/*
2990 * tiny-shmem: simple shmemfs and tmpfs using ramfs code
2991 *
2992 * This is intended for small system where the benefits of the full
2993 * shmem code (swap-backed and resource-limited) are outweighed by
2994 * their complexity. On systems without swap this code should be
2995 * effectively equivalent, but much lighter weight.
2996 */
2997
2998#include <linux/ramfs.h>
2999
3000static struct file_system_type tmpfs_fs_type = {
3001 .name = "tmpfs",
Al Viro3c26ff62010-07-25 11:46:36 +04003002 .mount = ramfs_mount,
Matt Mackall853ac432009-01-06 14:40:20 -08003003 .kill_sb = kill_litter_super,
3004};
3005
Kay Sievers2b2af542009-04-30 15:23:42 +02003006int __init init_tmpfs(void)
Matt Mackall853ac432009-01-06 14:40:20 -08003007{
3008 BUG_ON(register_filesystem(&tmpfs_fs_type) != 0);
3009
3010 shm_mnt = kern_mount(&tmpfs_fs_type);
3011 BUG_ON(IS_ERR(shm_mnt));
3012
3013 return 0;
3014}
3015
3016int shmem_unuse(swp_entry_t entry, struct page *page)
3017{
3018 return 0;
3019}
3020
Hugh Dickins3f96b792009-09-21 17:03:37 -07003021int shmem_lock(struct file *file, int lock, struct user_struct *user)
3022{
3023 return 0;
3024}
3025
Hugh Dickins94c1e622011-06-27 16:18:03 -07003026void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end)
3027{
3028 truncate_inode_pages_range(inode->i_mapping, start, end);
3029}
3030EXPORT_SYMBOL_GPL(shmem_truncate_range);
3031
Daisuke Nishimura87946a72010-05-26 14:42:39 -07003032#ifdef CONFIG_CGROUP_MEM_RES_CTLR
3033/**
3034 * mem_cgroup_get_shmem_target - find a page or entry assigned to the shmem file
3035 * @inode: the inode to be searched
3036 * @pgoff: the offset to be searched
3037 * @pagep: the pointer for the found page to be stored
3038 * @ent: the pointer for the found swap entry to be stored
3039 *
3040 * If a page is found, refcount of it is incremented. Callers should handle
3041 * these refcount.
3042 */
3043void mem_cgroup_get_shmem_target(struct inode *inode, pgoff_t pgoff,
3044 struct page **pagep, swp_entry_t *ent)
3045{
3046 struct page *page = NULL;
3047
3048 if ((pgoff << PAGE_CACHE_SHIFT) >= i_size_read(inode))
3049 goto out;
3050 page = find_get_page(inode->i_mapping, pgoff);
3051out:
3052 *pagep = page;
3053 *ent = (swp_entry_t){ .val = 0 };
3054}
3055#endif
3056
Hugh Dickins0b0a0802009-02-24 20:51:52 +00003057#define shmem_vm_ops generic_file_vm_ops
3058#define shmem_file_operations ramfs_file_operations
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03003059#define shmem_get_inode(sb, dir, mode, dev, flags) ramfs_get_inode(sb, dir, mode, dev)
Hugh Dickins0b0a0802009-02-24 20:51:52 +00003060#define shmem_acct_size(flags, size) 0
3061#define shmem_unacct_size(flags, size) do {} while (0)
Hugh Dickinscaefba12009-04-13 14:40:12 -07003062#define SHMEM_MAX_BYTES MAX_LFS_FILESIZE
Matt Mackall853ac432009-01-06 14:40:20 -08003063
3064#endif /* CONFIG_SHMEM */
3065
3066/* common code */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067
Randy Dunlap46711812008-03-19 17:00:41 -07003068/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 * shmem_file_setup - get an unlinked file living in tmpfs
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 * @name: name for dentry (to be seen in /proc/<pid>/maps
3071 * @size: size to be set for the file
Hugh Dickins0b0a0802009-02-24 20:51:52 +00003072 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 */
Sergei Trofimovich168f5ac2009-06-16 15:33:02 -07003074struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075{
3076 int error;
3077 struct file *file;
3078 struct inode *inode;
Al Viro2c48b9c2009-08-09 00:52:35 +04003079 struct path path;
3080 struct dentry *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 struct qstr this;
3082
3083 if (IS_ERR(shm_mnt))
3084 return (void *)shm_mnt;
3085
3086 if (size < 0 || size > SHMEM_MAX_BYTES)
3087 return ERR_PTR(-EINVAL);
3088
3089 if (shmem_acct_size(flags, size))
3090 return ERR_PTR(-ENOMEM);
3091
3092 error = -ENOMEM;
3093 this.name = name;
3094 this.len = strlen(name);
3095 this.hash = 0; /* will go */
3096 root = shm_mnt->mnt_root;
Al Viro2c48b9c2009-08-09 00:52:35 +04003097 path.dentry = d_alloc(root, &this);
3098 if (!path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 goto put_memory;
Al Viro2c48b9c2009-08-09 00:52:35 +04003100 path.mnt = mntget(shm_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 error = -ENOSPC;
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03003103 inode = shmem_get_inode(root->d_sb, NULL, S_IFREG | S_IRWXUGO, 0, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 if (!inode)
Al Viro4b42af82009-08-05 18:25:56 +04003105 goto put_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Al Viro2c48b9c2009-08-09 00:52:35 +04003107 d_instantiate(path.dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 inode->i_size = size;
3109 inode->i_nlink = 0; /* It is unlinked */
Matt Mackall853ac432009-01-06 14:40:20 -08003110#ifndef CONFIG_MMU
3111 error = ramfs_nommu_expand_for_mapping(inode, size);
3112 if (error)
Al Viro4b42af82009-08-05 18:25:56 +04003113 goto put_dentry;
Matt Mackall853ac432009-01-06 14:40:20 -08003114#endif
Al Viro4b42af82009-08-05 18:25:56 +04003115
3116 error = -ENFILE;
Al Viro2c48b9c2009-08-09 00:52:35 +04003117 file = alloc_file(&path, FMODE_WRITE | FMODE_READ,
Al Viro4b42af82009-08-05 18:25:56 +04003118 &shmem_file_operations);
3119 if (!file)
3120 goto put_dentry;
3121
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 return file;
3123
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124put_dentry:
Al Viro2c48b9c2009-08-09 00:52:35 +04003125 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126put_memory:
3127 shmem_unacct_size(flags, size);
3128 return ERR_PTR(error);
3129}
Keith Packard395e0dd2008-06-20 00:08:06 -07003130EXPORT_SYMBOL_GPL(shmem_file_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Randy Dunlap46711812008-03-19 17:00:41 -07003132/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 * shmem_zero_setup - setup a shared anonymous mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
3135 */
3136int shmem_zero_setup(struct vm_area_struct *vma)
3137{
3138 struct file *file;
3139 loff_t size = vma->vm_end - vma->vm_start;
3140
3141 file = shmem_file_setup("dev/zero", size, vma->vm_flags);
3142 if (IS_ERR(file))
3143 return PTR_ERR(file);
3144
3145 if (vma->vm_file)
3146 fput(vma->vm_file);
3147 vma->vm_file = file;
3148 vma->vm_ops = &shmem_vm_ops;
Hugh Dickinsbee4c36a2011-03-22 16:33:43 -07003149 vma->vm_flags |= VM_CAN_NONLINEAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 return 0;
3151}
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07003152
3153/**
3154 * shmem_read_mapping_page_gfp - read into page cache, using specified page allocation flags.
3155 * @mapping: the page's address_space
3156 * @index: the page index
3157 * @gfp: the page allocator flags to use if allocating
3158 *
3159 * This behaves as a tmpfs "read_cache_page_gfp(mapping, index, gfp)",
3160 * with any new page allocations done using the specified allocation flags.
3161 * But read_cache_page_gfp() uses the ->readpage() method: which does not
3162 * suit tmpfs, since it may have pages in swapcache, and needs to find those
3163 * for itself; although drivers/gpu/drm i915 and ttm rely upon this support.
3164 *
3165 * Provide a stub for those callers to start using now, then later
3166 * flesh it out to call shmem_getpage() with additional gfp mask, when
3167 * shmem_file_splice_read() is added and shmem_readpage() is removed.
3168 */
3169struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
3170 pgoff_t index, gfp_t gfp)
3171{
3172 return read_cache_page_gfp(mapping, index, gfp);
3173}
3174EXPORT_SYMBOL_GPL(shmem_read_mapping_page_gfp);