blob: 3cd32c2ea0a004e617acd300046f8e6684657bac [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>
31#include <linux/swap.h>
32
33static struct vfsmount *shm_mnt;
34
35#ifdef CONFIG_SHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/*
37 * This virtual memory filesystem is heavily based on the ramfs. It
38 * extends ramfs by the ability to use swap and honor resource limits
39 * which makes it a completely usable filesystem.
40 */
41
Andreas Gruenbacher39f02472006-09-29 02:01:35 -070042#include <linux/xattr.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070043#include <linux/exportfs.h>
Andreas Gruenbacher39f02472006-09-29 02:01:35 -070044#include <linux/generic_acl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/string.h>
47#include <linux/slab.h>
48#include <linux/backing-dev.h>
49#include <linux/shmem_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/blkdev.h>
52#include <linux/security.h>
53#include <linux/swapops.h>
54#include <linux/mempolicy.h>
55#include <linux/namei.h>
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +000056#include <linux/ctype.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070057#include <linux/migrate.h>
Christoph Lameterc1f60a52006-09-25 23:31:11 -070058#include <linux/highmem.h>
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -080059#include <linux/seq_file.h>
Mimi Zohar92562922008-10-07 14:00:12 -040060#include <linux/magic.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <asm/uaccess.h>
63#include <asm/div64.h>
64#include <asm/pgtable.h>
65
Hugh Dickinscaefba12009-04-13 14:40:12 -070066/*
67 * The maximum size of a shmem/tmpfs file is limited by the maximum size of
68 * its triple-indirect swap vector - see illustration at shmem_swp_entry().
69 *
70 * With 4kB page size, maximum file size is just over 2TB on a 32-bit kernel,
71 * but one eighth of that on a 64-bit kernel. With 8kB page size, maximum
72 * file size is just over 4TB on a 64-bit kernel, but 16TB on a 32-bit kernel,
73 * MAX_LFS_FILESIZE being then more restrictive than swap vector layout.
74 *
75 * We use / and * instead of shifts in the definitions below, so that the swap
76 * vector can be tested with small even values (e.g. 20) for ENTRIES_PER_PAGE.
77 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define ENTRIES_PER_PAGE (PAGE_CACHE_SIZE/sizeof(unsigned long))
Yuri Tikhonov61609d02009-04-13 14:40:11 -070079#define ENTRIES_PER_PAGEPAGE ((unsigned long long)ENTRIES_PER_PAGE*ENTRIES_PER_PAGE)
Hugh Dickinscaefba12009-04-13 14:40:12 -070080
81#define SHMSWP_MAX_INDEX (SHMEM_NR_DIRECT + (ENTRIES_PER_PAGEPAGE/2) * (ENTRIES_PER_PAGE+1))
82#define SHMSWP_MAX_BYTES (SHMSWP_MAX_INDEX << PAGE_CACHE_SHIFT)
83
84#define SHMEM_MAX_BYTES min_t(unsigned long long, SHMSWP_MAX_BYTES, MAX_LFS_FILESIZE)
85#define SHMEM_MAX_INDEX ((unsigned long)((SHMEM_MAX_BYTES+1) >> PAGE_CACHE_SHIFT))
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define BLOCKS_PER_PAGE (PAGE_CACHE_SIZE/512)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#define VM_ACCT(size) (PAGE_CACHE_ALIGN(size) >> PAGE_SHIFT)
89
90/* info->flags needs VM_flags to handle pagein/truncate races efficiently */
91#define SHMEM_PAGEIN VM_READ
92#define SHMEM_TRUNCATE VM_WRITE
93
94/* Definition to limit shmem_truncate's steps between cond_rescheds */
95#define LATENCY_LIMIT 64
96
97/* Pretend that each entry is of this size in directory's i_size */
98#define BOGO_DIRENT_SIZE 20
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/* Flag allocation requirements to shmem_getpage and shmem_swp_alloc */
101enum sgp_type {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 SGP_READ, /* don't exceed i_size, don't allocate page */
103 SGP_CACHE, /* don't exceed i_size, may allocate page */
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -0800104 SGP_DIRTY, /* like SGP_CACHE, but set new page dirty */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 SGP_WRITE, /* may exceed i_size, may allocate page */
106};
107
Andrew Mortonb76db732008-02-08 04:21:49 -0800108#ifdef CONFIG_TMPFS
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800109static unsigned long shmem_default_max_blocks(void)
110{
111 return totalram_pages / 2;
112}
113
114static unsigned long shmem_default_max_inodes(void)
115{
116 return min(totalram_pages - totalhigh_pages, totalram_pages / 2);
117}
Andrew Mortonb76db732008-02-08 04:21:49 -0800118#endif
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120static int shmem_getpage(struct inode *inode, unsigned long idx,
121 struct page **pagep, enum sgp_type sgp, int *type);
122
Al Viro6daa0e22005-10-21 03:18:50 -0400123static inline struct page *shmem_dir_alloc(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 /*
126 * The above definition of ENTRIES_PER_PAGE, and the use of
127 * BLOCKS_PER_PAGE on indirect pages, assume PAGE_CACHE_SIZE:
128 * might be reconsidered if it ever diverges from PAGE_SIZE.
Mel Gorman769848c2007-07-17 04:03:05 -0700129 *
Mel Gormane12ba742007-10-16 01:25:52 -0700130 * Mobility flags are masked out as swap vectors cannot move
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
Mel Gormane12ba742007-10-16 01:25:52 -0700132 return alloc_pages((gfp_mask & ~GFP_MOVABLE_MASK) | __GFP_ZERO,
Mel Gorman769848c2007-07-17 04:03:05 -0700133 PAGE_CACHE_SHIFT-PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
136static inline void shmem_dir_free(struct page *page)
137{
138 __free_pages(page, PAGE_CACHE_SHIFT-PAGE_SHIFT);
139}
140
141static struct page **shmem_dir_map(struct page *page)
142{
143 return (struct page **)kmap_atomic(page, KM_USER0);
144}
145
146static inline void shmem_dir_unmap(struct page **dir)
147{
148 kunmap_atomic(dir, KM_USER0);
149}
150
151static swp_entry_t *shmem_swp_map(struct page *page)
152{
153 return (swp_entry_t *)kmap_atomic(page, KM_USER1);
154}
155
156static inline void shmem_swp_balance_unmap(void)
157{
158 /*
159 * When passing a pointer to an i_direct entry, to code which
160 * also handles indirect entries and so will shmem_swp_unmap,
161 * we must arrange for the preempt count to remain in balance.
162 * What kmap_atomic of a lowmem page does depends on config
163 * and architecture, so pretend to kmap_atomic some lowmem page.
164 */
165 (void) kmap_atomic(ZERO_PAGE(0), KM_USER1);
166}
167
168static inline void shmem_swp_unmap(swp_entry_t *entry)
169{
170 kunmap_atomic(entry, KM_USER1);
171}
172
173static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
174{
175 return sb->s_fs_info;
176}
177
178/*
179 * shmem_file_setup pre-accounts the whole fixed size of a VM object,
180 * for shared memory and for shared anonymous (/dev/zero) mappings
181 * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
182 * consistent with the pre-accounting of private mappings ...
183 */
184static inline int shmem_acct_size(unsigned long flags, loff_t size)
185{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000186 return (flags & VM_NORESERVE) ?
187 0 : security_vm_enough_memory_kern(VM_ACCT(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
190static inline void shmem_unacct_size(unsigned long flags, loff_t size)
191{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000192 if (!(flags & VM_NORESERVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 vm_unacct_memory(VM_ACCT(size));
194}
195
196/*
197 * ... whereas tmpfs objects are accounted incrementally as
198 * pages are allocated, in order to allow huge sparse files.
199 * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM,
200 * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
201 */
202static inline int shmem_acct_block(unsigned long flags)
203{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000204 return (flags & VM_NORESERVE) ?
205 security_vm_enough_memory_kern(VM_ACCT(PAGE_CACHE_SIZE)) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
208static inline void shmem_unacct_blocks(unsigned long flags, long pages)
209{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000210 if (flags & VM_NORESERVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 vm_unacct_memory(pages * VM_ACCT(PAGE_CACHE_SIZE));
212}
213
Hugh Dickins759b9772007-03-05 00:30:28 -0800214static const struct super_operations shmem_ops;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700215static const struct address_space_operations shmem_aops;
Helge Deller15ad7cd2006-12-06 20:40:36 -0800216static const struct file_operations shmem_file_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800217static const struct inode_operations shmem_inode_operations;
218static const struct inode_operations shmem_dir_inode_operations;
219static const struct inode_operations shmem_special_inode_operations;
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400220static const struct vm_operations_struct shmem_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -0700222static struct backing_dev_info shmem_backing_dev_info __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 .ra_pages = 0, /* No readahead */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700224 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK | BDI_CAP_SWAP_BACKED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 .unplug_io_fn = default_unplug_io_fn,
226};
227
228static LIST_HEAD(shmem_swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800229static DEFINE_MUTEX(shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231static void shmem_free_blocks(struct inode *inode, long pages)
232{
233 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
Hugh Dickins0edd73b2005-06-21 17:15:04 -0700234 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 spin_lock(&sbinfo->stat_lock);
236 sbinfo->free_blocks += pages;
237 inode->i_blocks -= pages*BLOCKS_PER_PAGE;
238 spin_unlock(&sbinfo->stat_lock);
239 }
240}
241
Pavel Emelyanov5b04c682008-02-04 22:28:47 -0800242static int shmem_reserve_inode(struct super_block *sb)
243{
244 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
245 if (sbinfo->max_inodes) {
246 spin_lock(&sbinfo->stat_lock);
247 if (!sbinfo->free_inodes) {
248 spin_unlock(&sbinfo->stat_lock);
249 return -ENOSPC;
250 }
251 sbinfo->free_inodes--;
252 spin_unlock(&sbinfo->stat_lock);
253 }
254 return 0;
255}
256
257static void shmem_free_inode(struct super_block *sb)
258{
259 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
260 if (sbinfo->max_inodes) {
261 spin_lock(&sbinfo->stat_lock);
262 sbinfo->free_inodes++;
263 spin_unlock(&sbinfo->stat_lock);
264 }
265}
266
Randy Dunlap46711812008-03-19 17:00:41 -0700267/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 * shmem_recalc_inode - recalculate the size of an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 * @inode: inode to recalc
270 *
271 * We have to calculate the free blocks since the mm can drop
272 * undirtied hole pages behind our back.
273 *
274 * But normally info->alloced == inode->i_mapping->nrpages + info->swapped
275 * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
276 *
277 * It has to be called with the spinlock held.
278 */
279static void shmem_recalc_inode(struct inode *inode)
280{
281 struct shmem_inode_info *info = SHMEM_I(inode);
282 long freed;
283
284 freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
285 if (freed > 0) {
286 info->alloced -= freed;
287 shmem_unacct_blocks(info->flags, freed);
288 shmem_free_blocks(inode, freed);
289 }
290}
291
Randy Dunlap46711812008-03-19 17:00:41 -0700292/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 * shmem_swp_entry - find the swap vector position in the info structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * @info: info structure for the inode
295 * @index: index of the page to find
296 * @page: optional page to add to the structure. Has to be preset to
297 * all zeros
298 *
299 * If there is no space allocated yet it will return NULL when
300 * page is NULL, else it will use the page for the needed block,
301 * setting it to NULL on return to indicate that it has been used.
302 *
303 * The swap vector is organized the following way:
304 *
305 * There are SHMEM_NR_DIRECT entries directly stored in the
306 * shmem_inode_info structure. So small files do not need an addional
307 * allocation.
308 *
309 * For pages with index > SHMEM_NR_DIRECT there is the pointer
310 * i_indirect which points to a page which holds in the first half
311 * doubly indirect blocks, in the second half triple indirect blocks:
312 *
313 * For an artificial ENTRIES_PER_PAGE = 4 this would lead to the
314 * following layout (for SHMEM_NR_DIRECT == 16):
315 *
316 * i_indirect -> dir --> 16-19
317 * | +-> 20-23
318 * |
319 * +-->dir2 --> 24-27
320 * | +-> 28-31
321 * | +-> 32-35
322 * | +-> 36-39
323 * |
324 * +-->dir3 --> 40-43
325 * +-> 44-47
326 * +-> 48-51
327 * +-> 52-55
328 */
329static swp_entry_t *shmem_swp_entry(struct shmem_inode_info *info, unsigned long index, struct page **page)
330{
331 unsigned long offset;
332 struct page **dir;
333 struct page *subdir;
334
335 if (index < SHMEM_NR_DIRECT) {
336 shmem_swp_balance_unmap();
337 return info->i_direct+index;
338 }
339 if (!info->i_indirect) {
340 if (page) {
341 info->i_indirect = *page;
342 *page = NULL;
343 }
344 return NULL; /* need another page */
345 }
346
347 index -= SHMEM_NR_DIRECT;
348 offset = index % ENTRIES_PER_PAGE;
349 index /= ENTRIES_PER_PAGE;
350 dir = shmem_dir_map(info->i_indirect);
351
352 if (index >= ENTRIES_PER_PAGE/2) {
353 index -= ENTRIES_PER_PAGE/2;
354 dir += ENTRIES_PER_PAGE/2 + index/ENTRIES_PER_PAGE;
355 index %= ENTRIES_PER_PAGE;
356 subdir = *dir;
357 if (!subdir) {
358 if (page) {
359 *dir = *page;
360 *page = NULL;
361 }
362 shmem_dir_unmap(dir);
363 return NULL; /* need another page */
364 }
365 shmem_dir_unmap(dir);
366 dir = shmem_dir_map(subdir);
367 }
368
369 dir += index;
370 subdir = *dir;
371 if (!subdir) {
372 if (!page || !(subdir = *page)) {
373 shmem_dir_unmap(dir);
374 return NULL; /* need a page */
375 }
376 *dir = subdir;
377 *page = NULL;
378 }
379 shmem_dir_unmap(dir);
380 return shmem_swp_map(subdir) + offset;
381}
382
383static void shmem_swp_set(struct shmem_inode_info *info, swp_entry_t *entry, unsigned long value)
384{
385 long incdec = value? 1: -1;
386
387 entry->val = value;
388 info->swapped += incdec;
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700389 if ((unsigned long)(entry - info->i_direct) >= SHMEM_NR_DIRECT) {
390 struct page *page = kmap_atomic_to_page(entry);
391 set_page_private(page, page_private(page) + incdec);
392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
Randy Dunlap46711812008-03-19 17:00:41 -0700395/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * shmem_swp_alloc - get the position of the swap entry for the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 * @info: info structure for the inode
398 * @index: index of the page to find
399 * @sgp: check and recheck i_size? skip allocation?
Randy Dunlap46711812008-03-19 17:00:41 -0700400 *
401 * If the entry does not exist, allocate it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 */
403static swp_entry_t *shmem_swp_alloc(struct shmem_inode_info *info, unsigned long index, enum sgp_type sgp)
404{
405 struct inode *inode = &info->vfs_inode;
406 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
407 struct page *page = NULL;
408 swp_entry_t *entry;
409
410 if (sgp != SGP_WRITE &&
411 ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode))
412 return ERR_PTR(-EINVAL);
413
414 while (!(entry = shmem_swp_entry(info, index, &page))) {
415 if (sgp == SGP_READ)
416 return shmem_swp_map(ZERO_PAGE(0));
417 /*
418 * Test free_blocks against 1 not 0, since we have 1 data
419 * page (and perhaps indirect index pages) yet to allocate:
420 * a waste to allocate index if we cannot allocate data.
421 */
Hugh Dickins0edd73b2005-06-21 17:15:04 -0700422 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 spin_lock(&sbinfo->stat_lock);
424 if (sbinfo->free_blocks <= 1) {
425 spin_unlock(&sbinfo->stat_lock);
426 return ERR_PTR(-ENOSPC);
427 }
428 sbinfo->free_blocks--;
429 inode->i_blocks += BLOCKS_PER_PAGE;
430 spin_unlock(&sbinfo->stat_lock);
431 }
432
433 spin_unlock(&info->lock);
Mel Gorman769848c2007-07-17 04:03:05 -0700434 page = shmem_dir_alloc(mapping_gfp_mask(inode->i_mapping));
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700435 if (page)
436 set_page_private(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 spin_lock(&info->lock);
438
439 if (!page) {
440 shmem_free_blocks(inode, 1);
441 return ERR_PTR(-ENOMEM);
442 }
443 if (sgp != SGP_WRITE &&
444 ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode)) {
445 entry = ERR_PTR(-EINVAL);
446 break;
447 }
448 if (info->next_index <= index)
449 info->next_index = index + 1;
450 }
451 if (page) {
452 /* another task gave its page, or truncated the file */
453 shmem_free_blocks(inode, 1);
454 shmem_dir_free(page);
455 }
456 if (info->next_index <= index && !IS_ERR(entry))
457 info->next_index = index + 1;
458 return entry;
459}
460
Randy Dunlap46711812008-03-19 17:00:41 -0700461/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 * shmem_free_swp - free some swap entries in a directory
Hugh Dickins1ae70002007-03-29 01:20:36 -0700463 * @dir: pointer to the directory
464 * @edir: pointer after last entry of the directory
465 * @punch_lock: pointer to spinlock when needed for the holepunch case
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 */
Hugh Dickins1ae70002007-03-29 01:20:36 -0700467static int shmem_free_swp(swp_entry_t *dir, swp_entry_t *edir,
468 spinlock_t *punch_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Hugh Dickins1ae70002007-03-29 01:20:36 -0700470 spinlock_t *punch_unlock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 swp_entry_t *ptr;
472 int freed = 0;
473
474 for (ptr = dir; ptr < edir; ptr++) {
475 if (ptr->val) {
Hugh Dickins1ae70002007-03-29 01:20:36 -0700476 if (unlikely(punch_lock)) {
477 punch_unlock = punch_lock;
478 punch_lock = NULL;
479 spin_lock(punch_unlock);
480 if (!ptr->val)
481 continue;
482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 free_swap_and_cache(*ptr);
484 *ptr = (swp_entry_t){0};
485 freed++;
486 }
487 }
Hugh Dickins1ae70002007-03-29 01:20:36 -0700488 if (punch_unlock)
489 spin_unlock(punch_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return freed;
491}
492
Hugh Dickins1ae70002007-03-29 01:20:36 -0700493static int shmem_map_and_free_swp(struct page *subdir, int offset,
494 int limit, struct page ***dir, spinlock_t *punch_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
496 swp_entry_t *ptr;
497 int freed = 0;
498
499 ptr = shmem_swp_map(subdir);
500 for (; offset < limit; offset += LATENCY_LIMIT) {
501 int size = limit - offset;
502 if (size > LATENCY_LIMIT)
503 size = LATENCY_LIMIT;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700504 freed += shmem_free_swp(ptr+offset, ptr+offset+size,
505 punch_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (need_resched()) {
507 shmem_swp_unmap(ptr);
508 if (*dir) {
509 shmem_dir_unmap(*dir);
510 *dir = NULL;
511 }
512 cond_resched();
513 ptr = shmem_swp_map(subdir);
514 }
515 }
516 shmem_swp_unmap(ptr);
517 return freed;
518}
519
520static void shmem_free_pages(struct list_head *next)
521{
522 struct page *page;
523 int freed = 0;
524
525 do {
526 page = container_of(next, struct page, lru);
527 next = next->next;
528 shmem_dir_free(page);
529 freed++;
530 if (freed >= LATENCY_LIMIT) {
531 cond_resched();
532 freed = 0;
533 }
534 } while (next);
535}
536
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800537static void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
539 struct shmem_inode_info *info = SHMEM_I(inode);
540 unsigned long idx;
541 unsigned long size;
542 unsigned long limit;
543 unsigned long stage;
544 unsigned long diroff;
545 struct page **dir;
546 struct page *topdir;
547 struct page *middir;
548 struct page *subdir;
549 swp_entry_t *ptr;
550 LIST_HEAD(pages_to_free);
551 long nr_pages_to_free = 0;
552 long nr_swaps_freed = 0;
553 int offset;
554 int freed;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700555 int punch_hole;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700556 spinlock_t *needs_lock;
557 spinlock_t *punch_lock;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700558 unsigned long upper_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800561 idx = (start + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (idx >= info->next_index)
563 return;
564
565 spin_lock(&info->lock);
566 info->flags |= SHMEM_TRUNCATE;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800567 if (likely(end == (loff_t) -1)) {
568 limit = info->next_index;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700569 upper_limit = SHMEM_MAX_INDEX;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800570 info->next_index = idx;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700571 needs_lock = NULL;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700572 punch_hole = 0;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800573 } else {
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700574 if (end + 1 >= inode->i_size) { /* we may free a little more */
575 limit = (inode->i_size + PAGE_CACHE_SIZE - 1) >>
576 PAGE_CACHE_SHIFT;
577 upper_limit = SHMEM_MAX_INDEX;
578 } else {
579 limit = (end + 1) >> PAGE_CACHE_SHIFT;
580 upper_limit = limit;
581 }
Hugh Dickins1ae70002007-03-29 01:20:36 -0700582 needs_lock = &info->lock;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800583 punch_hole = 1;
584 }
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 topdir = info->i_indirect;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800587 if (topdir && idx <= SHMEM_NR_DIRECT && !punch_hole) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 info->i_indirect = NULL;
589 nr_pages_to_free++;
590 list_add(&topdir->lru, &pages_to_free);
591 }
592 spin_unlock(&info->lock);
593
594 if (info->swapped && idx < SHMEM_NR_DIRECT) {
595 ptr = info->i_direct;
596 size = limit;
597 if (size > SHMEM_NR_DIRECT)
598 size = SHMEM_NR_DIRECT;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700599 nr_swaps_freed = shmem_free_swp(ptr+idx, ptr+size, needs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Badari Pulavarty92a3d032006-12-22 01:06:23 -0800601
602 /*
603 * If there are no indirect blocks or we are punching a hole
604 * below indirect blocks, nothing to be done.
605 */
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700606 if (!topdir || limit <= SHMEM_NR_DIRECT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 goto done2;
608
Hugh Dickins1ae70002007-03-29 01:20:36 -0700609 /*
610 * The truncation case has already dropped info->lock, and we're safe
611 * because i_size and next_index have already been lowered, preventing
612 * access beyond. But in the punch_hole case, we still need to take
613 * the lock when updating the swap directory, because there might be
614 * racing accesses by shmem_getpage(SGP_CACHE), shmem_unuse_inode or
615 * shmem_writepage. However, whenever we find we can remove a whole
616 * directory page (not at the misaligned start or end of the range),
617 * we first NULLify its pointer in the level above, and then have no
618 * need to take the lock when updating its contents: needs_lock and
619 * punch_lock (either pointing to info->lock or NULL) manage this.
620 */
621
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700622 upper_limit -= SHMEM_NR_DIRECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 limit -= SHMEM_NR_DIRECT;
624 idx = (idx > SHMEM_NR_DIRECT)? (idx - SHMEM_NR_DIRECT): 0;
625 offset = idx % ENTRIES_PER_PAGE;
626 idx -= offset;
627
628 dir = shmem_dir_map(topdir);
629 stage = ENTRIES_PER_PAGEPAGE/2;
630 if (idx < ENTRIES_PER_PAGEPAGE/2) {
631 middir = topdir;
632 diroff = idx/ENTRIES_PER_PAGE;
633 } else {
634 dir += ENTRIES_PER_PAGE/2;
635 dir += (idx - ENTRIES_PER_PAGEPAGE/2)/ENTRIES_PER_PAGEPAGE;
636 while (stage <= idx)
637 stage += ENTRIES_PER_PAGEPAGE;
638 middir = *dir;
639 if (*dir) {
640 diroff = ((idx - ENTRIES_PER_PAGEPAGE/2) %
641 ENTRIES_PER_PAGEPAGE) / ENTRIES_PER_PAGE;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700642 if (!diroff && !offset && upper_limit >= stage) {
Hugh Dickins1ae70002007-03-29 01:20:36 -0700643 if (needs_lock) {
644 spin_lock(needs_lock);
645 *dir = NULL;
646 spin_unlock(needs_lock);
647 needs_lock = NULL;
648 } else
649 *dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 nr_pages_to_free++;
651 list_add(&middir->lru, &pages_to_free);
652 }
653 shmem_dir_unmap(dir);
654 dir = shmem_dir_map(middir);
655 } else {
656 diroff = 0;
657 offset = 0;
658 idx = stage;
659 }
660 }
661
662 for (; idx < limit; idx += ENTRIES_PER_PAGE, diroff++) {
663 if (unlikely(idx == stage)) {
664 shmem_dir_unmap(dir);
665 dir = shmem_dir_map(topdir) +
666 ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
667 while (!*dir) {
668 dir++;
669 idx += ENTRIES_PER_PAGEPAGE;
670 if (idx >= limit)
671 goto done1;
672 }
673 stage = idx + ENTRIES_PER_PAGEPAGE;
674 middir = *dir;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700675 if (punch_hole)
676 needs_lock = &info->lock;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700677 if (upper_limit >= stage) {
Hugh Dickins1ae70002007-03-29 01:20:36 -0700678 if (needs_lock) {
679 spin_lock(needs_lock);
680 *dir = NULL;
681 spin_unlock(needs_lock);
682 needs_lock = NULL;
683 } else
684 *dir = NULL;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700685 nr_pages_to_free++;
686 list_add(&middir->lru, &pages_to_free);
687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 shmem_dir_unmap(dir);
689 cond_resched();
690 dir = shmem_dir_map(middir);
691 diroff = 0;
692 }
Hugh Dickins1ae70002007-03-29 01:20:36 -0700693 punch_lock = needs_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 subdir = dir[diroff];
Hugh Dickins1ae70002007-03-29 01:20:36 -0700695 if (subdir && !offset && upper_limit-idx >= ENTRIES_PER_PAGE) {
696 if (needs_lock) {
697 spin_lock(needs_lock);
698 dir[diroff] = NULL;
699 spin_unlock(needs_lock);
700 punch_lock = NULL;
701 } else
702 dir[diroff] = NULL;
703 nr_pages_to_free++;
704 list_add(&subdir->lru, &pages_to_free);
705 }
706 if (subdir && page_private(subdir) /* has swap entries */) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 size = limit - idx;
708 if (size > ENTRIES_PER_PAGE)
709 size = ENTRIES_PER_PAGE;
710 freed = shmem_map_and_free_swp(subdir,
Hugh Dickins1ae70002007-03-29 01:20:36 -0700711 offset, size, &dir, punch_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (!dir)
713 dir = shmem_dir_map(middir);
714 nr_swaps_freed += freed;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700715 if (offset || punch_lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 spin_lock(&info->lock);
Hugh Dickins1ae70002007-03-29 01:20:36 -0700717 set_page_private(subdir,
718 page_private(subdir) - freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 spin_unlock(&info->lock);
Hugh Dickins1ae70002007-03-29 01:20:36 -0700720 } else
721 BUG_ON(page_private(subdir) != freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
Hugh Dickins1ae70002007-03-29 01:20:36 -0700723 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725done1:
726 shmem_dir_unmap(dir);
727done2:
728 if (inode->i_mapping->nrpages && (info->flags & SHMEM_PAGEIN)) {
729 /*
730 * Call truncate_inode_pages again: racing shmem_unuse_inode
731 * may have swizzled a page in from swap since vmtruncate or
732 * generic_delete_inode did it, before we lowered next_index.
733 * Also, though shmem_getpage checks i_size before adding to
734 * cache, no recheck after: so fix the narrow window there too.
Hugh Dickins16a10012007-03-29 01:20:37 -0700735 *
736 * Recalling truncate_inode_pages_range and unmap_mapping_range
737 * every time for punch_hole (which never got a chance to clear
738 * SHMEM_PAGEIN at the start of vmtruncate_range) is expensive,
739 * yet hardly ever necessary: try to optimize them out later.
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);
Hugh Dickins16a10012007-03-29 01:20:37 -0700742 if (punch_hole)
743 unmap_mapping_range(inode->i_mapping, start,
744 end - start, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746
747 spin_lock(&info->lock);
748 info->flags &= ~SHMEM_TRUNCATE;
749 info->swapped -= nr_swaps_freed;
750 if (nr_pages_to_free)
751 shmem_free_blocks(inode, nr_pages_to_free);
752 shmem_recalc_inode(inode);
753 spin_unlock(&info->lock);
754
755 /*
756 * Empty swap vector directory pages to be freed?
757 */
758 if (!list_empty(&pages_to_free)) {
759 pages_to_free.prev->next = NULL;
760 shmem_free_pages(pages_to_free.next);
761 }
762}
763
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800764static void shmem_truncate(struct inode *inode)
765{
766 shmem_truncate_range(inode, inode->i_size, (loff_t)-1);
767}
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769static int shmem_notify_change(struct dentry *dentry, struct iattr *attr)
770{
771 struct inode *inode = dentry->d_inode;
772 struct page *page = NULL;
773 int error;
774
Andreas Gruenbacher39f02472006-09-29 02:01:35 -0700775 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (attr->ia_size < inode->i_size) {
777 /*
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
781 * truncate_partial_page cannnot miss it were
782 * it assigned to swap.
783 */
784 if (attr->ia_size & (PAGE_CACHE_SIZE-1)) {
785 (void) shmem_getpage(inode,
786 attr->ia_size>>PAGE_CACHE_SHIFT,
787 &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 */
798 if (attr->ia_size) {
799 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 }
805 }
806
807 error = inode_change_ok(inode, attr);
808 if (!error)
809 error = inode_setattr(inode, attr);
Andreas Gruenbacher39f02472006-09-29 02:01:35 -0700810#ifdef CONFIG_TMPFS_POSIX_ACL
811 if (!error && (attr->ia_valid & ATTR_MODE))
812 error = generic_acl_chmod(inode, &shmem_acl_ops);
813#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (page)
815 page_cache_release(page);
816 return error;
817}
818
819static void shmem_delete_inode(struct inode *inode)
820{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 struct shmem_inode_info *info = SHMEM_I(inode);
822
823 if (inode->i_op->truncate == shmem_truncate) {
Mark Fashehfef26652005-09-09 13:01:31 -0700824 truncate_inode_pages(inode->i_mapping, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 shmem_unacct_size(info->flags, inode->i_size);
826 inode->i_size = 0;
827 shmem_truncate(inode);
828 if (!list_empty(&info->swaplist)) {
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800829 mutex_lock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 list_del_init(&info->swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800831 mutex_unlock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833 }
Hugh Dickins0edd73b2005-06-21 17:15:04 -0700834 BUG_ON(inode->i_blocks);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -0800835 shmem_free_inode(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 clear_inode(inode);
837}
838
839static inline int shmem_find_swp(swp_entry_t entry, swp_entry_t *dir, swp_entry_t *edir)
840{
841 swp_entry_t *ptr;
842
843 for (ptr = dir; ptr < edir; ptr++) {
844 if (ptr->val == entry.val)
845 return ptr - dir;
846 }
847 return -1;
848}
849
850static int shmem_unuse_inode(struct shmem_inode_info *info, swp_entry_t entry, struct page *page)
851{
852 struct inode *inode;
853 unsigned long idx;
854 unsigned long size;
855 unsigned long limit;
856 unsigned long stage;
857 struct page **dir;
858 struct page *subdir;
859 swp_entry_t *ptr;
860 int offset;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800861 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 idx = 0;
864 ptr = info->i_direct;
865 spin_lock(&info->lock);
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800866 if (!info->swapped) {
867 list_del_init(&info->swaplist);
868 goto lost2;
869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 limit = info->next_index;
871 size = limit;
872 if (size > SHMEM_NR_DIRECT)
873 size = SHMEM_NR_DIRECT;
874 offset = shmem_find_swp(entry, ptr, ptr+size);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800875 if (offset >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (!info->i_indirect)
878 goto lost2;
879
880 dir = shmem_dir_map(info->i_indirect);
881 stage = SHMEM_NR_DIRECT + ENTRIES_PER_PAGEPAGE/2;
882
883 for (idx = SHMEM_NR_DIRECT; idx < limit; idx += ENTRIES_PER_PAGE, dir++) {
884 if (unlikely(idx == stage)) {
885 shmem_dir_unmap(dir-1);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800886 if (cond_resched_lock(&info->lock)) {
887 /* check it has not been truncated */
888 if (limit > info->next_index) {
889 limit = info->next_index;
890 if (idx >= limit)
891 goto lost2;
892 }
893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 dir = shmem_dir_map(info->i_indirect) +
895 ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
896 while (!*dir) {
897 dir++;
898 idx += ENTRIES_PER_PAGEPAGE;
899 if (idx >= limit)
900 goto lost1;
901 }
902 stage = idx + ENTRIES_PER_PAGEPAGE;
903 subdir = *dir;
904 shmem_dir_unmap(dir);
905 dir = shmem_dir_map(subdir);
906 }
907 subdir = *dir;
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700908 if (subdir && page_private(subdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 ptr = shmem_swp_map(subdir);
910 size = limit - idx;
911 if (size > ENTRIES_PER_PAGE)
912 size = ENTRIES_PER_PAGE;
913 offset = shmem_find_swp(entry, ptr, ptr+size);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800914 shmem_swp_unmap(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (offset >= 0) {
916 shmem_dir_unmap(dir);
917 goto found;
918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
920 }
921lost1:
922 shmem_dir_unmap(dir-1);
923lost2:
924 spin_unlock(&info->lock);
925 return 0;
926found:
927 idx += offset;
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800928 inode = igrab(&info->vfs_inode);
929 spin_unlock(&info->lock);
930
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800931 /*
932 * Move _head_ to start search for next from here.
933 * But be careful: shmem_delete_inode checks list_empty without taking
934 * mutex, and there's an instant in list_move_tail when info->swaplist
935 * would appear empty, if it were the only one on shmem_swaplist. We
936 * could avoid doing it if inode NULL; or use this minor optimization.
937 */
938 if (shmem_swaplist.next != &info->swaplist)
939 list_move_tail(&shmem_swaplist, &info->swaplist);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800940 mutex_unlock(&shmem_swaplist_mutex);
941
942 error = 1;
943 if (!inode)
944 goto out;
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800945 /*
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -0800946 * Charge page using GFP_KERNEL while we can wait.
947 * Charged back to the user(not to caller) when swap account is used.
948 * add_to_page_cache() will be called with GFP_NOWAIT.
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800949 */
Hugh Dickins82369552008-02-07 00:14:22 -0800950 error = mem_cgroup_cache_charge(page, current->mm, GFP_KERNEL);
Hugh Dickinsb409f9f2008-02-04 22:28:54 -0800951 if (error)
952 goto out;
Hugh Dickins82369552008-02-07 00:14:22 -0800953 error = radix_tree_preload(GFP_KERNEL);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700954 if (error) {
955 mem_cgroup_uncharge_cache_page(page);
956 goto out;
957 }
Hugh Dickinsb409f9f2008-02-04 22:28:54 -0800958 error = 1;
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800959
960 spin_lock(&info->lock);
961 ptr = shmem_swp_entry(info, idx, NULL);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700962 if (ptr && ptr->val == entry.val) {
Nick Piggine2867812008-07-25 19:45:30 -0700963 error = add_to_page_cache_locked(page, inode->i_mapping,
Hugh Dickinsb409f9f2008-02-04 22:28:54 -0800964 idx, GFP_NOWAIT);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700965 /* does mem_cgroup_uncharge_cache_page on error */
966 } else /* we must compensate for our precharge above */
967 mem_cgroup_uncharge_cache_page(page);
968
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800969 if (error == -EEXIST) {
970 struct page *filepage = find_get_page(inode->i_mapping, idx);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800971 error = 1;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800972 if (filepage) {
973 /*
974 * There might be a more uptodate page coming down
975 * from a stacked writepage: forget our swappage if so.
976 */
977 if (PageUptodate(filepage))
978 error = 0;
979 page_cache_release(filepage);
980 }
981 }
982 if (!error) {
Hugh Dickins73b12622008-02-04 22:28:50 -0800983 delete_from_swap_cache(page);
984 set_page_dirty(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 info->flags |= SHMEM_PAGEIN;
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800986 shmem_swp_set(info, ptr, 0);
987 swap_free(entry);
988 error = 1; /* not an error, but entry was found */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800990 if (ptr)
991 shmem_swp_unmap(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 spin_unlock(&info->lock);
Hugh Dickinsb409f9f2008-02-04 22:28:54 -0800993 radix_tree_preload_end();
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800994out:
995 unlock_page(page);
996 page_cache_release(page);
997 iput(inode); /* allows for NULL */
998 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
1001/*
1002 * shmem_unuse() search for an eventually swapped out shmem page.
1003 */
1004int shmem_unuse(swp_entry_t entry, struct page *page)
1005{
1006 struct list_head *p, *next;
1007 struct shmem_inode_info *info;
1008 int found = 0;
1009
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001010 mutex_lock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 list_for_each_safe(p, next, &shmem_swaplist) {
1012 info = list_entry(p, struct shmem_inode_info, swaplist);
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001013 found = shmem_unuse_inode(info, entry, page);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001014 cond_resched();
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001015 if (found)
1016 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001018 mutex_unlock(&shmem_swaplist_mutex);
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001019 /*
1020 * Can some race bring us here? We've been holding page lock,
1021 * so I think not; but would rather try again later than BUG()
1022 */
1023 unlock_page(page);
1024 page_cache_release(page);
1025out:
1026 return (found < 0) ? found : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
1029/*
1030 * Move the page from the page cache to the swap cache.
1031 */
1032static int shmem_writepage(struct page *page, struct writeback_control *wbc)
1033{
1034 struct shmem_inode_info *info;
1035 swp_entry_t *entry, swap;
1036 struct address_space *mapping;
1037 unsigned long index;
1038 struct inode *inode;
1039
1040 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 mapping = page->mapping;
1042 index = page->index;
1043 inode = mapping->host;
1044 info = SHMEM_I(inode);
1045 if (info->flags & VM_LOCKED)
1046 goto redirty;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001047 if (!total_swap_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 goto redirty;
1049
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001050 /*
1051 * shmem_backing_dev_info's capabilities prevent regular writeback or
1052 * sync from ever calling shmem_writepage; but a stacking filesystem
1053 * may use the ->writepage of its underlying filesystem, in which case
1054 * tmpfs should write out to swap only in response to memory pressure,
Jens Axboe5b0830c2009-09-23 19:37:09 +02001055 * and not for the writeback threads or sync. However, in those cases,
1056 * we do still want to check if there's a redundant swappage to be
1057 * discarded.
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001058 */
1059 if (wbc->for_reclaim)
1060 swap = get_swap_page();
1061 else
1062 swap.val = 0;
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 spin_lock(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (index >= info->next_index) {
1066 BUG_ON(!(info->flags & SHMEM_TRUNCATE));
1067 goto unlock;
1068 }
1069 entry = shmem_swp_entry(info, index, NULL);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001070 if (entry->val) {
1071 /*
1072 * The more uptodate page coming down from a stacked
1073 * writepage should replace our old swappage.
1074 */
1075 free_swap_and_cache(*entry);
1076 shmem_swp_set(info, entry, 0);
1077 }
1078 shmem_recalc_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001080 if (swap.val && add_to_swap_cache(page, swap, GFP_ATOMIC) == 0) {
Hugh Dickins73b12622008-02-04 22:28:50 -08001081 remove_from_page_cache(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 shmem_swp_set(info, entry, swap.val);
1083 shmem_swp_unmap(entry);
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001084 if (list_empty(&info->swaplist))
1085 inode = igrab(inode);
1086 else
1087 inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 spin_unlock(&info->lock);
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001089 swap_shmem_alloc(swap);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001090 BUG_ON(page_mapped(page));
Hugh Dickins73b12622008-02-04 22:28:50 -08001091 page_cache_release(page); /* pagecache ref */
Hugh Dickins9fab5612009-03-31 15:23:33 -07001092 swap_writepage(page, wbc);
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001093 if (inode) {
1094 mutex_lock(&shmem_swaplist_mutex);
1095 /* move instead of add in case we're racing */
1096 list_move_tail(&info->swaplist, &shmem_swaplist);
1097 mutex_unlock(&shmem_swaplist_mutex);
1098 iput(inode);
1099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return 0;
1101 }
1102
1103 shmem_swp_unmap(entry);
1104unlock:
1105 spin_unlock(&info->lock);
Daisuke Nishimura2ca45322009-09-21 17:02:52 -07001106 /*
1107 * add_to_swap_cache() doesn't return -EEXIST, so we can safely
1108 * clear SWAP_HAS_CACHE flag.
1109 */
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07001110 swapcache_free(swap, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111redirty:
1112 set_page_dirty(page);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001113 if (wbc->for_reclaim)
1114 return AOP_WRITEPAGE_ACTIVATE; /* Return with page locked */
1115 unlock_page(page);
1116 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
1119#ifdef CONFIG_NUMA
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001120#ifdef CONFIG_TMPFS
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001121static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001122{
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001123 char buffer[64];
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001124
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001125 if (!mpol || mpol->mode == MPOL_DEFAULT)
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001126 return; /* show nothing */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001127
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001128 mpol_to_str(buffer, sizeof(buffer), mpol, 1);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001129
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001130 seq_printf(seq, ",mpol=%s", buffer);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001131}
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001132
1133static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1134{
1135 struct mempolicy *mpol = NULL;
1136 if (sbinfo->mpol) {
1137 spin_lock(&sbinfo->stat_lock); /* prevent replace/use races */
1138 mpol = sbinfo->mpol;
1139 mpol_get(mpol);
1140 spin_unlock(&sbinfo->stat_lock);
1141 }
1142 return mpol;
1143}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001144#endif /* CONFIG_TMPFS */
1145
Hugh Dickins02098fe2008-02-04 22:28:42 -08001146static struct page *shmem_swapin(swp_entry_t entry, gfp_t gfp,
1147 struct shmem_inode_info *info, unsigned long idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -07001149 struct mempolicy mpol, *spol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 struct vm_area_struct pvma;
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001151 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -07001153 spol = mpol_cond_copy(&mpol,
1154 mpol_shared_policy_lookup(&info->policy, idx));
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 /* Create a pseudo vma that just contains the policy */
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001157 pvma.vm_start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 pvma.vm_pgoff = idx;
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001159 pvma.vm_ops = NULL;
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -07001160 pvma.vm_policy = spol;
Hugh Dickins02098fe2008-02-04 22:28:42 -08001161 page = swapin_readahead(entry, gfp, &pvma, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return page;
1163}
1164
Hugh Dickins02098fe2008-02-04 22:28:42 -08001165static struct page *shmem_alloc_page(gfp_t gfp,
1166 struct shmem_inode_info *info, unsigned long idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
1168 struct vm_area_struct pvma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001170 /* Create a pseudo vma that just contains the policy */
1171 pvma.vm_start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 pvma.vm_pgoff = idx;
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001173 pvma.vm_ops = NULL;
1174 pvma.vm_policy = mpol_shared_policy_lookup(&info->policy, idx);
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -07001175
1176 /*
1177 * alloc_page_vma() will drop the shared policy reference
1178 */
1179 return alloc_page_vma(gfp, &pvma, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001181#else /* !CONFIG_NUMA */
1182#ifdef CONFIG_TMPFS
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001183static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *p)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001184{
1185}
1186#endif /* CONFIG_TMPFS */
1187
Hugh Dickins02098fe2008-02-04 22:28:42 -08001188static inline struct page *shmem_swapin(swp_entry_t entry, gfp_t gfp,
1189 struct shmem_inode_info *info, unsigned long idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190{
Hugh Dickins02098fe2008-02-04 22:28:42 -08001191 return swapin_readahead(entry, gfp, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193
Hugh Dickins02098fe2008-02-04 22:28:42 -08001194static inline struct page *shmem_alloc_page(gfp_t gfp,
1195 struct shmem_inode_info *info, unsigned long idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Hugh Dickinse84e2e12007-11-28 18:55:10 +00001197 return alloc_page(gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001199#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001201#if !defined(CONFIG_NUMA) || !defined(CONFIG_TMPFS)
1202static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1203{
1204 return NULL;
1205}
1206#endif
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208/*
1209 * shmem_getpage - either get the page from swap or allocate a new one
1210 *
1211 * If we allocate a new one we do not mark it dirty. That's up to the
1212 * vm. If we swap it in we mark it dirty since we also free the swap
1213 * entry since a page cannot live in both the swap and page cache
1214 */
1215static int shmem_getpage(struct inode *inode, unsigned long idx,
1216 struct page **pagep, enum sgp_type sgp, int *type)
1217{
1218 struct address_space *mapping = inode->i_mapping;
1219 struct shmem_inode_info *info = SHMEM_I(inode);
1220 struct shmem_sb_info *sbinfo;
1221 struct page *filepage = *pagep;
1222 struct page *swappage;
1223 swp_entry_t *entry;
1224 swp_entry_t swap;
Hugh Dickins02098fe2008-02-04 22:28:42 -08001225 gfp_t gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 int error;
1227
1228 if (idx >= SHMEM_MAX_INDEX)
1229 return -EFBIG;
Nick Piggin54cb8822007-07-19 01:46:59 -07001230
1231 if (type)
Nick Piggin83c54072007-07-19 01:47:05 -07001232 *type = 0;
Nick Piggin54cb8822007-07-19 01:46:59 -07001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 /*
1235 * Normally, filepage is NULL on entry, and either found
1236 * uptodate immediately, or allocated and zeroed, or read
1237 * in under swappage, which is then assigned to filepage.
Hugh Dickins5402b972008-02-04 22:28:44 -08001238 * But shmem_readpage (required for splice) passes in a locked
Hugh Dickinsae9764162007-06-04 10:00:39 +02001239 * filepage, which may be found not uptodate by other callers
1240 * too, and may need to be copied from the swappage read in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 */
1242repeat:
1243 if (!filepage)
1244 filepage = find_lock_page(mapping, idx);
1245 if (filepage && PageUptodate(filepage))
1246 goto done;
1247 error = 0;
Hugh Dickins02098fe2008-02-04 22:28:42 -08001248 gfp = mapping_gfp_mask(mapping);
Hugh Dickinsb409f9f2008-02-04 22:28:54 -08001249 if (!filepage) {
1250 /*
1251 * Try to preload while we can wait, to not make a habit of
1252 * draining atomic reserves; but don't latch on to this cpu.
1253 */
1254 error = radix_tree_preload(gfp & ~__GFP_HIGHMEM);
1255 if (error)
1256 goto failed;
1257 radix_tree_preload_end();
1258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 spin_lock(&info->lock);
1261 shmem_recalc_inode(inode);
1262 entry = shmem_swp_alloc(info, idx, sgp);
1263 if (IS_ERR(entry)) {
1264 spin_unlock(&info->lock);
1265 error = PTR_ERR(entry);
1266 goto failed;
1267 }
1268 swap = *entry;
1269
1270 if (swap.val) {
1271 /* Look it up and read it in.. */
1272 swappage = lookup_swap_cache(swap);
1273 if (!swappage) {
1274 shmem_swp_unmap(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 /* here we actually do the io */
Nick Piggin83c54072007-07-19 01:47:05 -07001276 if (type && !(*type & VM_FAULT_MAJOR)) {
Christoph Lameterf8891e52006-06-30 01:55:45 -07001277 __count_vm_event(PGMAJFAULT);
Nick Piggin83c54072007-07-19 01:47:05 -07001278 *type |= VM_FAULT_MAJOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 }
Christoph Lameterf8891e52006-06-30 01:55:45 -07001280 spin_unlock(&info->lock);
Hugh Dickins02098fe2008-02-04 22:28:42 -08001281 swappage = shmem_swapin(swap, gfp, info, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if (!swappage) {
1283 spin_lock(&info->lock);
1284 entry = shmem_swp_alloc(info, idx, sgp);
1285 if (IS_ERR(entry))
1286 error = PTR_ERR(entry);
1287 else {
1288 if (entry->val == swap.val)
1289 error = -ENOMEM;
1290 shmem_swp_unmap(entry);
1291 }
1292 spin_unlock(&info->lock);
1293 if (error)
1294 goto failed;
1295 goto repeat;
1296 }
1297 wait_on_page_locked(swappage);
1298 page_cache_release(swappage);
1299 goto repeat;
1300 }
1301
1302 /* We have to do this with page locked to prevent races */
Nick Piggin529ae9a2008-08-02 12:01:03 +02001303 if (!trylock_page(swappage)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 shmem_swp_unmap(entry);
1305 spin_unlock(&info->lock);
1306 wait_on_page_locked(swappage);
1307 page_cache_release(swappage);
1308 goto repeat;
1309 }
1310 if (PageWriteback(swappage)) {
1311 shmem_swp_unmap(entry);
1312 spin_unlock(&info->lock);
1313 wait_on_page_writeback(swappage);
1314 unlock_page(swappage);
1315 page_cache_release(swappage);
1316 goto repeat;
1317 }
1318 if (!PageUptodate(swappage)) {
1319 shmem_swp_unmap(entry);
1320 spin_unlock(&info->lock);
1321 unlock_page(swappage);
1322 page_cache_release(swappage);
1323 error = -EIO;
1324 goto failed;
1325 }
1326
1327 if (filepage) {
1328 shmem_swp_set(info, entry, 0);
1329 shmem_swp_unmap(entry);
1330 delete_from_swap_cache(swappage);
1331 spin_unlock(&info->lock);
1332 copy_highpage(filepage, swappage);
1333 unlock_page(swappage);
1334 page_cache_release(swappage);
1335 flush_dcache_page(filepage);
1336 SetPageUptodate(filepage);
1337 set_page_dirty(filepage);
1338 swap_free(swap);
Nick Piggine2867812008-07-25 19:45:30 -07001339 } else if (!(error = add_to_page_cache_locked(swappage, mapping,
1340 idx, GFP_NOWAIT))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 info->flags |= SHMEM_PAGEIN;
1342 shmem_swp_set(info, entry, 0);
1343 shmem_swp_unmap(entry);
Hugh Dickins73b12622008-02-04 22:28:50 -08001344 delete_from_swap_cache(swappage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 spin_unlock(&info->lock);
1346 filepage = swappage;
Hugh Dickins73b12622008-02-04 22:28:50 -08001347 set_page_dirty(filepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 swap_free(swap);
1349 } else {
1350 shmem_swp_unmap(entry);
1351 spin_unlock(&info->lock);
Hugh Dickins82369552008-02-07 00:14:22 -08001352 if (error == -ENOMEM) {
Daisuke Nishimuraae3abae2009-04-30 15:08:19 -07001353 /*
1354 * reclaim from proper memory cgroup and
1355 * call memcg's OOM if needed.
1356 */
1357 error = mem_cgroup_shmem_charge_fallback(
1358 swappage,
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001359 current->mm,
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001360 gfp);
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001361 if (error) {
1362 unlock_page(swappage);
1363 page_cache_release(swappage);
Hugh Dickins82369552008-02-07 00:14:22 -08001364 goto failed;
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001365 }
Hugh Dickins82369552008-02-07 00:14:22 -08001366 }
KAMEZAWA Hiroyukib5a84312009-01-07 18:08:35 -08001367 unlock_page(swappage);
1368 page_cache_release(swappage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 goto repeat;
1370 }
1371 } else if (sgp == SGP_READ && !filepage) {
1372 shmem_swp_unmap(entry);
1373 filepage = find_get_page(mapping, idx);
1374 if (filepage &&
Nick Piggin529ae9a2008-08-02 12:01:03 +02001375 (!PageUptodate(filepage) || !trylock_page(filepage))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 spin_unlock(&info->lock);
1377 wait_on_page_locked(filepage);
1378 page_cache_release(filepage);
1379 filepage = NULL;
1380 goto repeat;
1381 }
1382 spin_unlock(&info->lock);
1383 } else {
1384 shmem_swp_unmap(entry);
1385 sbinfo = SHMEM_SB(inode->i_sb);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001386 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 spin_lock(&sbinfo->stat_lock);
1388 if (sbinfo->free_blocks == 0 ||
1389 shmem_acct_block(info->flags)) {
1390 spin_unlock(&sbinfo->stat_lock);
1391 spin_unlock(&info->lock);
1392 error = -ENOSPC;
1393 goto failed;
1394 }
1395 sbinfo->free_blocks--;
1396 inode->i_blocks += BLOCKS_PER_PAGE;
1397 spin_unlock(&sbinfo->stat_lock);
1398 } else if (shmem_acct_block(info->flags)) {
1399 spin_unlock(&info->lock);
1400 error = -ENOSPC;
1401 goto failed;
1402 }
1403
1404 if (!filepage) {
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001405 int ret;
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 spin_unlock(&info->lock);
Hugh Dickins02098fe2008-02-04 22:28:42 -08001408 filepage = shmem_alloc_page(gfp, info, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 if (!filepage) {
1410 shmem_unacct_blocks(info->flags, 1);
1411 shmem_free_blocks(inode, 1);
1412 error = -ENOMEM;
1413 goto failed;
1414 }
Rik van Rielb2e18532008-10-18 20:26:30 -07001415 SetPageSwapBacked(filepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Hugh Dickins82369552008-02-07 00:14:22 -08001417 /* Precharge page while we can wait, compensate after */
1418 error = mem_cgroup_cache_charge(filepage, current->mm,
KAMEZAWA Hiroyuki2c26fdd2009-01-07 18:08:10 -08001419 GFP_KERNEL);
Hugh Dickins82369552008-02-07 00:14:22 -08001420 if (error) {
1421 page_cache_release(filepage);
1422 shmem_unacct_blocks(info->flags, 1);
1423 shmem_free_blocks(inode, 1);
1424 filepage = NULL;
1425 goto failed;
1426 }
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 spin_lock(&info->lock);
1429 entry = shmem_swp_alloc(info, idx, sgp);
1430 if (IS_ERR(entry))
1431 error = PTR_ERR(entry);
1432 else {
1433 swap = *entry;
1434 shmem_swp_unmap(entry);
1435 }
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001436 ret = error || swap.val;
1437 if (ret)
1438 mem_cgroup_uncharge_cache_page(filepage);
1439 else
1440 ret = add_to_page_cache_lru(filepage, mapping,
1441 idx, GFP_NOWAIT);
1442 /*
1443 * At add_to_page_cache_lru() failure, uncharge will
1444 * be done automatically.
1445 */
1446 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 spin_unlock(&info->lock);
1448 page_cache_release(filepage);
1449 shmem_unacct_blocks(info->flags, 1);
1450 shmem_free_blocks(inode, 1);
1451 filepage = NULL;
1452 if (error)
1453 goto failed;
1454 goto repeat;
1455 }
1456 info->flags |= SHMEM_PAGEIN;
1457 }
1458
1459 info->alloced++;
1460 spin_unlock(&info->lock);
Hugh Dickinse84e2e12007-11-28 18:55:10 +00001461 clear_highpage(filepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 flush_dcache_page(filepage);
1463 SetPageUptodate(filepage);
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08001464 if (sgp == SGP_DIRTY)
1465 set_page_dirty(filepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
1467done:
Hugh Dickinsd3602442008-02-04 22:28:44 -08001468 *pagep = filepage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return 0;
1470
1471failed:
1472 if (*pagep != filepage) {
1473 unlock_page(filepage);
1474 page_cache_release(filepage);
1475 }
1476 return error;
1477}
1478
Nick Piggind0217ac2007-07-19 01:47:03 -07001479static int shmem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001481 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 int error;
Nick Piggind0217ac2007-07-19 01:47:03 -07001483 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Nick Piggind0217ac2007-07-19 01:47:03 -07001485 if (((loff_t)vmf->pgoff << PAGE_CACHE_SHIFT) >= i_size_read(inode))
1486 return VM_FAULT_SIGBUS;
Nick Piggind00806b2007-07-19 01:46:57 -07001487
Hugh Dickins27d54b32008-02-04 22:28:43 -08001488 error = shmem_getpage(inode, vmf->pgoff, &vmf->page, SGP_CACHE, &ret);
Nick Piggind0217ac2007-07-19 01:47:03 -07001489 if (error)
1490 return ((error == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Nick Piggin83c54072007-07-19 01:47:05 -07001492 return ret | VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495#ifdef CONFIG_NUMA
Adrian Bunkd8dc74f2007-10-16 01:26:26 -07001496static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001498 struct inode *i = vma->vm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 return mpol_set_shared_policy(&SHMEM_I(i)->policy, vma, new);
1500}
1501
Adrian Bunkd8dc74f2007-10-16 01:26:26 -07001502static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
1503 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001505 struct inode *i = vma->vm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 unsigned long idx;
1507
1508 idx = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
1509 return mpol_shared_policy_lookup(&SHMEM_I(i)->policy, idx);
1510}
1511#endif
1512
1513int shmem_lock(struct file *file, int lock, struct user_struct *user)
1514{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001515 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 struct shmem_inode_info *info = SHMEM_I(inode);
1517 int retval = -ENOMEM;
1518
1519 spin_lock(&info->lock);
1520 if (lock && !(info->flags & VM_LOCKED)) {
1521 if (!user_shm_lock(inode->i_size, user))
1522 goto out_nomem;
1523 info->flags |= VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001524 mapping_set_unevictable(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
1526 if (!lock && (info->flags & VM_LOCKED) && user) {
1527 user_shm_unlock(inode->i_size, user);
1528 info->flags &= ~VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001529 mapping_clear_unevictable(file->f_mapping);
1530 scan_mapping_unevictable_pages(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
1532 retval = 0;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534out_nomem:
1535 spin_unlock(&info->lock);
1536 return retval;
1537}
1538
Adrian Bunk9b83a6a2007-02-28 20:11:03 -08001539static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
1541 file_accessed(file);
1542 vma->vm_ops = &shmem_vm_ops;
Nick Piggind0217ac2007-07-19 01:47:03 -07001543 vma->vm_flags |= VM_CAN_NONLINEAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return 0;
1545}
1546
Hugh Dickins0b0a0802009-02-24 20:51:52 +00001547static struct inode *shmem_get_inode(struct super_block *sb, int mode,
1548 dev_t dev, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
1550 struct inode *inode;
1551 struct shmem_inode_info *info;
1552 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1553
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001554 if (shmem_reserve_inode(sb))
1555 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 inode = new_inode(sb);
1558 if (inode) {
1559 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +11001560 inode->i_uid = current_fsuid();
1561 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 inode->i_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 inode->i_mapping->backing_dev_info = &shmem_backing_dev_info;
1564 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
David M. Grimes91828a42006-10-17 00:09:45 -07001565 inode->i_generation = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 info = SHMEM_I(inode);
1567 memset(info, 0, (char *)inode - (char *)info);
1568 spin_lock_init(&info->lock);
Hugh Dickins0b0a0802009-02-24 20:51:52 +00001569 info->flags = flags & VM_NORESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 INIT_LIST_HEAD(&info->swaplist);
Al Viro72c04902009-06-24 16:58:48 -04001571 cache_no_acl(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 switch (mode & S_IFMT) {
1574 default:
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07001575 inode->i_op = &shmem_special_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 init_special_inode(inode, mode, dev);
1577 break;
1578 case S_IFREG:
Hugh Dickins14fcc232008-07-28 15:46:19 -07001579 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 inode->i_op = &shmem_inode_operations;
1581 inode->i_fop = &shmem_file_operations;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001582 mpol_shared_policy_init(&info->policy,
1583 shmem_get_sbmpol(sbinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 break;
1585 case S_IFDIR:
Dave Hansend8c76e62006-09-30 23:29:04 -07001586 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 /* Some things misbehave if size == 0 on a directory */
1588 inode->i_size = 2 * BOGO_DIRENT_SIZE;
1589 inode->i_op = &shmem_dir_inode_operations;
1590 inode->i_fop = &simple_dir_operations;
1591 break;
1592 case S_IFLNK:
1593 /*
1594 * Must not load anything in the rbtree,
1595 * mpol_free_shared_policy will not be called.
1596 */
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001597 mpol_shared_policy_init(&info->policy, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 break;
1599 }
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001600 } else
1601 shmem_free_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 return inode;
1603}
1604
1605#ifdef CONFIG_TMPFS
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001606static const struct inode_operations shmem_symlink_inode_operations;
1607static const struct inode_operations shmem_symlink_inline_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609/*
Nick Piggin800d15a2007-10-16 01:25:03 -07001610 * Normally tmpfs avoids the use of shmem_readpage and shmem_write_begin;
Hugh Dickinsae9764162007-06-04 10:00:39 +02001611 * but providing them allows a tmpfs file to be used for splice, sendfile, and
1612 * below the loop driver, in the generic fashion that many filesystems support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 */
Hugh Dickinsae9764162007-06-04 10:00:39 +02001614static int shmem_readpage(struct file *file, struct page *page)
1615{
1616 struct inode *inode = page->mapping->host;
1617 int error = shmem_getpage(inode, page->index, &page, SGP_CACHE, NULL);
1618 unlock_page(page);
1619 return error;
1620}
1621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622static int
Nick Piggin800d15a2007-10-16 01:25:03 -07001623shmem_write_begin(struct file *file, struct address_space *mapping,
1624 loff_t pos, unsigned len, unsigned flags,
1625 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
Nick Piggin800d15a2007-10-16 01:25:03 -07001627 struct inode *inode = mapping->host;
1628 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1629 *pagep = NULL;
1630 return shmem_getpage(inode, index, pagep, SGP_WRITE, NULL);
1631}
1632
1633static int
1634shmem_write_end(struct file *file, struct address_space *mapping,
1635 loff_t pos, unsigned len, unsigned copied,
1636 struct page *page, void *fsdata)
1637{
1638 struct inode *inode = mapping->host;
1639
Hugh Dickinsd3602442008-02-04 22:28:44 -08001640 if (pos + copied > inode->i_size)
1641 i_size_write(inode, pos + copied);
1642
Nick Piggin800d15a2007-10-16 01:25:03 -07001643 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02001644 unlock_page(page);
Nick Piggin800d15a2007-10-16 01:25:03 -07001645 page_cache_release(page);
1646
Nick Piggin800d15a2007-10-16 01:25:03 -07001647 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648}
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650static void do_shmem_file_read(struct file *filp, loff_t *ppos, read_descriptor_t *desc, read_actor_t actor)
1651{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001652 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 struct address_space *mapping = inode->i_mapping;
1654 unsigned long index, offset;
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08001655 enum sgp_type sgp = SGP_READ;
1656
1657 /*
1658 * Might this read be for a stacking filesystem? Then when reading
1659 * holes of a sparse file, we actually need to allocate those pages,
1660 * and even mark them dirty, so it cannot exceed the max_blocks limit.
1661 */
1662 if (segment_eq(get_fs(), KERNEL_DS))
1663 sgp = SGP_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
1665 index = *ppos >> PAGE_CACHE_SHIFT;
1666 offset = *ppos & ~PAGE_CACHE_MASK;
1667
1668 for (;;) {
1669 struct page *page = NULL;
1670 unsigned long end_index, nr, ret;
1671 loff_t i_size = i_size_read(inode);
1672
1673 end_index = i_size >> PAGE_CACHE_SHIFT;
1674 if (index > end_index)
1675 break;
1676 if (index == end_index) {
1677 nr = i_size & ~PAGE_CACHE_MASK;
1678 if (nr <= offset)
1679 break;
1680 }
1681
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08001682 desc->error = shmem_getpage(inode, index, &page, sgp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (desc->error) {
1684 if (desc->error == -EINVAL)
1685 desc->error = 0;
1686 break;
1687 }
Hugh Dickinsd3602442008-02-04 22:28:44 -08001688 if (page)
1689 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 /*
1692 * We must evaluate after, since reads (unlike writes)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001693 * are called without i_mutex protection against truncate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 */
1695 nr = PAGE_CACHE_SIZE;
1696 i_size = i_size_read(inode);
1697 end_index = i_size >> PAGE_CACHE_SHIFT;
1698 if (index == end_index) {
1699 nr = i_size & ~PAGE_CACHE_MASK;
1700 if (nr <= offset) {
1701 if (page)
1702 page_cache_release(page);
1703 break;
1704 }
1705 }
1706 nr -= offset;
1707
1708 if (page) {
1709 /*
1710 * If users can be writing to this page using arbitrary
1711 * virtual addresses, take care about potential aliasing
1712 * before reading the page on the kernel side.
1713 */
1714 if (mapping_writably_mapped(mapping))
1715 flush_dcache_page(page);
1716 /*
1717 * Mark the page accessed if we read the beginning.
1718 */
1719 if (!offset)
1720 mark_page_accessed(page);
Nick Pigginb5810032005-10-29 18:16:12 -07001721 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 page = ZERO_PAGE(0);
Nick Pigginb5810032005-10-29 18:16:12 -07001723 page_cache_get(page);
1724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726 /*
1727 * Ok, we have the page, and it's up-to-date, so
1728 * now we can copy it to user space...
1729 *
1730 * The actor routine returns how many bytes were actually used..
1731 * NOTE! This may not be the same as how much of a user buffer
1732 * we filled up (we may be padding etc), so we can only update
1733 * "pos" here (the actor routine has to update the user buffer
1734 * pointers and the remaining count).
1735 */
1736 ret = actor(desc, page, offset, nr);
1737 offset += ret;
1738 index += offset >> PAGE_CACHE_SHIFT;
1739 offset &= ~PAGE_CACHE_MASK;
1740
1741 page_cache_release(page);
1742 if (ret != nr || !desc->count)
1743 break;
1744
1745 cond_resched();
1746 }
1747
1748 *ppos = ((loff_t) index << PAGE_CACHE_SHIFT) + offset;
1749 file_accessed(filp);
1750}
1751
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001752static ssize_t shmem_file_aio_read(struct kiocb *iocb,
1753 const struct iovec *iov, unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754{
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001755 struct file *filp = iocb->ki_filp;
1756 ssize_t retval;
1757 unsigned long seg;
1758 size_t count;
1759 loff_t *ppos = &iocb->ki_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001761 retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
1762 if (retval)
1763 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001765 for (seg = 0; seg < nr_segs; seg++) {
1766 read_descriptor_t desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001768 desc.written = 0;
1769 desc.arg.buf = iov[seg].iov_base;
1770 desc.count = iov[seg].iov_len;
1771 if (desc.count == 0)
1772 continue;
1773 desc.error = 0;
1774 do_shmem_file_read(filp, ppos, &desc, file_read_actor);
1775 retval += desc.written;
1776 if (desc.error) {
1777 retval = retval ?: desc.error;
1778 break;
1779 }
1780 if (desc.count > 0)
1781 break;
1782 }
1783 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784}
1785
David Howells726c3342006-06-23 02:02:58 -07001786static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787{
David Howells726c3342006-06-23 02:02:58 -07001788 struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790 buf->f_type = TMPFS_MAGIC;
1791 buf->f_bsize = PAGE_CACHE_SIZE;
1792 buf->f_namelen = NAME_MAX;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001793 spin_lock(&sbinfo->stat_lock);
1794 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 buf->f_blocks = sbinfo->max_blocks;
1796 buf->f_bavail = buf->f_bfree = sbinfo->free_blocks;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001797 }
1798 if (sbinfo->max_inodes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 buf->f_files = sbinfo->max_inodes;
1800 buf->f_ffree = sbinfo->free_inodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 }
1802 /* else leave those fields 0 like simple_statfs */
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001803 spin_unlock(&sbinfo->stat_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return 0;
1805}
1806
1807/*
1808 * File creation. Allocate an inode, and we're done..
1809 */
1810static int
1811shmem_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1812{
Hugh Dickins0b0a0802009-02-24 20:51:52 +00001813 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 int error = -ENOSPC;
1815
Hugh Dickins0b0a0802009-02-24 20:51:52 +00001816 inode = shmem_get_inode(dir->i_sb, mode, dev, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 if (inode) {
Stephen Smalley570bc1c2005-09-09 13:01:43 -07001818 error = security_inode_init_security(inode, dir, NULL, NULL,
1819 NULL);
1820 if (error) {
1821 if (error != -EOPNOTSUPP) {
1822 iput(inode);
1823 return error;
1824 }
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07001825 }
1826 error = shmem_acl_init(inode, dir);
1827 if (error) {
1828 iput(inode);
1829 return error;
Stephen Smalley570bc1c2005-09-09 13:01:43 -07001830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 if (dir->i_mode & S_ISGID) {
1832 inode->i_gid = dir->i_gid;
1833 if (S_ISDIR(mode))
1834 inode->i_mode |= S_ISGID;
1835 }
1836 dir->i_size += BOGO_DIRENT_SIZE;
1837 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1838 d_instantiate(dentry, inode);
1839 dget(dentry); /* Extra count - pin the dentry in core */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 }
1841 return error;
1842}
1843
1844static int shmem_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1845{
1846 int error;
1847
1848 if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
1849 return error;
Dave Hansend8c76e62006-09-30 23:29:04 -07001850 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 return 0;
1852}
1853
1854static int shmem_create(struct inode *dir, struct dentry *dentry, int mode,
1855 struct nameidata *nd)
1856{
1857 return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
1858}
1859
1860/*
1861 * Link a file..
1862 */
1863static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1864{
1865 struct inode *inode = old_dentry->d_inode;
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001866 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 /*
1869 * No ordinary (disk based) filesystem counts links as inodes;
1870 * but each new link needs a new dentry, pinning lowmem, and
1871 * tmpfs dentries cannot be pruned until they are unlinked.
1872 */
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001873 ret = shmem_reserve_inode(inode->i_sb);
1874 if (ret)
1875 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 dir->i_size += BOGO_DIRENT_SIZE;
1878 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansend8c76e62006-09-30 23:29:04 -07001879 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 atomic_inc(&inode->i_count); /* New dentry reference */
1881 dget(dentry); /* Extra pinning count for the created dentry */
1882 d_instantiate(dentry, inode);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001883out:
1884 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885}
1886
1887static int shmem_unlink(struct inode *dir, struct dentry *dentry)
1888{
1889 struct inode *inode = dentry->d_inode;
1890
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001891 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
1892 shmem_free_inode(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
1894 dir->i_size -= BOGO_DIRENT_SIZE;
1895 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001896 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 dput(dentry); /* Undo the count from "create" - this does all the work */
1898 return 0;
1899}
1900
1901static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
1902{
1903 if (!simple_empty(dentry))
1904 return -ENOTEMPTY;
1905
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001906 drop_nlink(dentry->d_inode);
1907 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return shmem_unlink(dir, dentry);
1909}
1910
1911/*
1912 * The VFS layer already does all the dentry stuff for rename,
1913 * we just have to decrement the usage count for the target if
1914 * it exists so that the VFS layer correctly free's it when it
1915 * gets overwritten.
1916 */
1917static int shmem_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
1918{
1919 struct inode *inode = old_dentry->d_inode;
1920 int they_are_dirs = S_ISDIR(inode->i_mode);
1921
1922 if (!simple_empty(new_dentry))
1923 return -ENOTEMPTY;
1924
1925 if (new_dentry->d_inode) {
1926 (void) shmem_unlink(new_dir, new_dentry);
1927 if (they_are_dirs)
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001928 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 } else if (they_are_dirs) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001930 drop_nlink(old_dir);
Dave Hansend8c76e62006-09-30 23:29:04 -07001931 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 }
1933
1934 old_dir->i_size -= BOGO_DIRENT_SIZE;
1935 new_dir->i_size += BOGO_DIRENT_SIZE;
1936 old_dir->i_ctime = old_dir->i_mtime =
1937 new_dir->i_ctime = new_dir->i_mtime =
1938 inode->i_ctime = CURRENT_TIME;
1939 return 0;
1940}
1941
1942static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1943{
1944 int error;
1945 int len;
1946 struct inode *inode;
1947 struct page *page = NULL;
1948 char *kaddr;
1949 struct shmem_inode_info *info;
1950
1951 len = strlen(symname) + 1;
1952 if (len > PAGE_CACHE_SIZE)
1953 return -ENAMETOOLONG;
1954
Hugh Dickins0b0a0802009-02-24 20:51:52 +00001955 inode = shmem_get_inode(dir->i_sb, S_IFLNK|S_IRWXUGO, 0, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 if (!inode)
1957 return -ENOSPC;
1958
Stephen Smalley570bc1c2005-09-09 13:01:43 -07001959 error = security_inode_init_security(inode, dir, NULL, NULL,
1960 NULL);
1961 if (error) {
1962 if (error != -EOPNOTSUPP) {
1963 iput(inode);
1964 return error;
1965 }
1966 error = 0;
1967 }
1968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 info = SHMEM_I(inode);
1970 inode->i_size = len-1;
1971 if (len <= (char *)inode - (char *)info) {
1972 /* do it inline */
1973 memcpy(info, symname, len);
1974 inode->i_op = &shmem_symlink_inline_operations;
1975 } else {
1976 error = shmem_getpage(inode, 0, &page, SGP_WRITE, NULL);
1977 if (error) {
1978 iput(inode);
1979 return error;
1980 }
Hugh Dickins14fcc232008-07-28 15:46:19 -07001981 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 inode->i_op = &shmem_symlink_inode_operations;
1983 kaddr = kmap_atomic(page, KM_USER0);
1984 memcpy(kaddr, symname, len);
1985 kunmap_atomic(kaddr, KM_USER0);
1986 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02001987 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 page_cache_release(page);
1989 }
1990 if (dir->i_mode & S_ISGID)
1991 inode->i_gid = dir->i_gid;
1992 dir->i_size += BOGO_DIRENT_SIZE;
1993 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1994 d_instantiate(dentry, inode);
1995 dget(dentry);
1996 return 0;
1997}
1998
Linus Torvaldscc314ee2005-08-19 18:02:56 -07001999static void *shmem_follow_link_inline(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
2001 nd_set_link(nd, (char *)SHMEM_I(dentry->d_inode));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002002 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003}
2004
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002005static void *shmem_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
2007 struct page *page = NULL;
2008 int res = shmem_getpage(dentry->d_inode, 0, &page, SGP_READ, NULL);
2009 nd_set_link(nd, res ? ERR_PTR(res) : kmap(page));
Hugh Dickinsd3602442008-02-04 22:28:44 -08002010 if (page)
2011 unlock_page(page);
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002012 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013}
2014
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002015static void shmem_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
2017 if (!IS_ERR(nd_get_link(nd))) {
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002018 struct page *page = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 kunmap(page);
2020 mark_page_accessed(page);
2021 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 }
2023}
2024
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002025static const struct inode_operations shmem_symlink_inline_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 .readlink = generic_readlink,
2027 .follow_link = shmem_follow_link_inline,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028};
2029
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002030static const struct inode_operations shmem_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 .truncate = shmem_truncate,
2032 .readlink = generic_readlink,
2033 .follow_link = shmem_follow_link,
2034 .put_link = shmem_put_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035};
2036
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002037#ifdef CONFIG_TMPFS_POSIX_ACL
Randy Dunlap46711812008-03-19 17:00:41 -07002038/*
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002039 * Superblocks without xattr inode operations will get security.* xattr
2040 * support from the VFS "for free". As soon as we have any other xattrs
2041 * like ACLs, we also need to implement the security.* handlers at
2042 * filesystem level, though.
2043 */
2044
Christoph Hellwig431547b2009-11-13 09:52:56 +00002045static size_t shmem_xattr_security_list(struct dentry *dentry, char *list,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002046 size_t list_len, const char *name,
Christoph Hellwig431547b2009-11-13 09:52:56 +00002047 size_t name_len, int handler_flags)
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002048{
Christoph Hellwig431547b2009-11-13 09:52:56 +00002049 return security_inode_listsecurity(dentry->d_inode, list, list_len);
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002050}
2051
Christoph Hellwig431547b2009-11-13 09:52:56 +00002052static int shmem_xattr_security_get(struct dentry *dentry, const char *name,
2053 void *buffer, size_t size, int handler_flags)
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002054{
2055 if (strcmp(name, "") == 0)
2056 return -EINVAL;
Christoph Hellwig431547b2009-11-13 09:52:56 +00002057 return xattr_getsecurity(dentry->d_inode, name, buffer, size);
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002058}
2059
Christoph Hellwig431547b2009-11-13 09:52:56 +00002060static int shmem_xattr_security_set(struct dentry *dentry, const char *name,
2061 const void *value, size_t size, int flags, int handler_flags)
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002062{
2063 if (strcmp(name, "") == 0)
2064 return -EINVAL;
Christoph Hellwig431547b2009-11-13 09:52:56 +00002065 return security_inode_setsecurity(dentry->d_inode, name, value,
2066 size, flags);
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002067}
2068
Adrian Bunk1f370a22006-12-06 20:38:21 -08002069static struct xattr_handler shmem_xattr_security_handler = {
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002070 .prefix = XATTR_SECURITY_PREFIX,
2071 .list = shmem_xattr_security_list,
2072 .get = shmem_xattr_security_get,
2073 .set = shmem_xattr_security_set,
2074};
2075
2076static struct xattr_handler *shmem_xattr_handlers[] = {
2077 &shmem_xattr_acl_access_handler,
2078 &shmem_xattr_acl_default_handler,
2079 &shmem_xattr_security_handler,
2080 NULL
2081};
2082#endif
2083
David M. Grimes91828a42006-10-17 00:09:45 -07002084static struct dentry *shmem_get_parent(struct dentry *child)
2085{
2086 return ERR_PTR(-ESTALE);
2087}
2088
2089static int shmem_match(struct inode *ino, void *vfh)
2090{
2091 __u32 *fh = vfh;
2092 __u64 inum = fh[2];
2093 inum = (inum << 32) | fh[1];
2094 return ino->i_ino == inum && fh[0] == ino->i_generation;
2095}
2096
Christoph Hellwig480b1162007-10-21 16:42:13 -07002097static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
2098 struct fid *fid, int fh_len, int fh_type)
David M. Grimes91828a42006-10-17 00:09:45 -07002099{
David M. Grimes91828a42006-10-17 00:09:45 -07002100 struct inode *inode;
Christoph Hellwig480b1162007-10-21 16:42:13 -07002101 struct dentry *dentry = NULL;
2102 u64 inum = fid->raw[2];
2103 inum = (inum << 32) | fid->raw[1];
David M. Grimes91828a42006-10-17 00:09:45 -07002104
Christoph Hellwig480b1162007-10-21 16:42:13 -07002105 if (fh_len < 3)
2106 return NULL;
2107
2108 inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
2109 shmem_match, fid->raw);
David M. Grimes91828a42006-10-17 00:09:45 -07002110 if (inode) {
Christoph Hellwig480b1162007-10-21 16:42:13 -07002111 dentry = d_find_alias(inode);
David M. Grimes91828a42006-10-17 00:09:45 -07002112 iput(inode);
2113 }
2114
Christoph Hellwig480b1162007-10-21 16:42:13 -07002115 return dentry;
David M. Grimes91828a42006-10-17 00:09:45 -07002116}
2117
2118static int shmem_encode_fh(struct dentry *dentry, __u32 *fh, int *len,
2119 int connectable)
2120{
2121 struct inode *inode = dentry->d_inode;
2122
2123 if (*len < 3)
2124 return 255;
2125
2126 if (hlist_unhashed(&inode->i_hash)) {
2127 /* Unfortunately insert_inode_hash is not idempotent,
2128 * so as we hash inodes here rather than at creation
2129 * time, we need a lock to ensure we only try
2130 * to do it once
2131 */
2132 static DEFINE_SPINLOCK(lock);
2133 spin_lock(&lock);
2134 if (hlist_unhashed(&inode->i_hash))
2135 __insert_inode_hash(inode,
2136 inode->i_ino + inode->i_generation);
2137 spin_unlock(&lock);
2138 }
2139
2140 fh[0] = inode->i_generation;
2141 fh[1] = inode->i_ino;
2142 fh[2] = ((__u64)inode->i_ino) >> 32;
2143
2144 *len = 3;
2145 return 1;
2146}
2147
Christoph Hellwig39655162007-10-21 16:42:17 -07002148static const struct export_operations shmem_export_ops = {
David M. Grimes91828a42006-10-17 00:09:45 -07002149 .get_parent = shmem_get_parent,
David M. Grimes91828a42006-10-17 00:09:45 -07002150 .encode_fh = shmem_encode_fh,
Christoph Hellwig480b1162007-10-21 16:42:13 -07002151 .fh_to_dentry = shmem_fh_to_dentry,
David M. Grimes91828a42006-10-17 00:09:45 -07002152};
2153
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002154static int shmem_parse_options(char *options, struct shmem_sb_info *sbinfo,
2155 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 char *this_char, *value, *rest;
2158
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +00002159 while (options != NULL) {
2160 this_char = options;
2161 for (;;) {
2162 /*
2163 * NUL-terminate this option: unfortunately,
2164 * mount options form a comma-separated list,
2165 * but mpol's nodelist may also contain commas.
2166 */
2167 options = strchr(options, ',');
2168 if (options == NULL)
2169 break;
2170 options++;
2171 if (!isdigit(*options)) {
2172 options[-1] = '\0';
2173 break;
2174 }
2175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 if (!*this_char)
2177 continue;
2178 if ((value = strchr(this_char,'=')) != NULL) {
2179 *value++ = 0;
2180 } else {
2181 printk(KERN_ERR
2182 "tmpfs: No value for mount option '%s'\n",
2183 this_char);
2184 return 1;
2185 }
2186
2187 if (!strcmp(this_char,"size")) {
2188 unsigned long long size;
2189 size = memparse(value,&rest);
2190 if (*rest == '%') {
2191 size <<= PAGE_SHIFT;
2192 size *= totalram_pages;
2193 do_div(size, 100);
2194 rest++;
2195 }
2196 if (*rest)
2197 goto bad_val;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002198 sbinfo->max_blocks =
2199 DIV_ROUND_UP(size, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 } else if (!strcmp(this_char,"nr_blocks")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002201 sbinfo->max_blocks = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 if (*rest)
2203 goto bad_val;
2204 } else if (!strcmp(this_char,"nr_inodes")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002205 sbinfo->max_inodes = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 if (*rest)
2207 goto bad_val;
2208 } else if (!strcmp(this_char,"mode")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002209 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002211 sbinfo->mode = simple_strtoul(value, &rest, 8) & 07777;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 if (*rest)
2213 goto bad_val;
2214 } else if (!strcmp(this_char,"uid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002215 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002217 sbinfo->uid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 if (*rest)
2219 goto bad_val;
2220 } else if (!strcmp(this_char,"gid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002221 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002223 sbinfo->gid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 if (*rest)
2225 goto bad_val;
Robin Holt7339ff82006-01-14 13:20:48 -08002226 } else if (!strcmp(this_char,"mpol")) {
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002227 if (mpol_parse_str(value, &sbinfo->mpol, 1))
Robin Holt7339ff82006-01-14 13:20:48 -08002228 goto bad_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 } else {
2230 printk(KERN_ERR "tmpfs: Bad mount option %s\n",
2231 this_char);
2232 return 1;
2233 }
2234 }
2235 return 0;
2236
2237bad_val:
2238 printk(KERN_ERR "tmpfs: Bad value '%s' for mount option '%s'\n",
2239 value, this_char);
2240 return 1;
2241
2242}
2243
2244static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
2245{
2246 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002247 struct shmem_sb_info config = *sbinfo;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002248 unsigned long blocks;
2249 unsigned long inodes;
2250 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002252 if (shmem_parse_options(data, &config, true))
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002253 return error;
2254
2255 spin_lock(&sbinfo->stat_lock);
2256 blocks = sbinfo->max_blocks - sbinfo->free_blocks;
2257 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002258 if (config.max_blocks < blocks)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002259 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002260 if (config.max_inodes < inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002261 goto out;
2262 /*
2263 * Those tests also disallow limited->unlimited while any are in
2264 * use, so i_blocks will always be zero when max_blocks is zero;
2265 * but we must separately disallow unlimited->limited, because
2266 * in that case we have no record of how much is already in use.
2267 */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002268 if (config.max_blocks && !sbinfo->max_blocks)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002269 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002270 if (config.max_inodes && !sbinfo->max_inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002271 goto out;
2272
2273 error = 0;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002274 sbinfo->max_blocks = config.max_blocks;
2275 sbinfo->free_blocks = config.max_blocks - blocks;
2276 sbinfo->max_inodes = config.max_inodes;
2277 sbinfo->free_inodes = config.max_inodes - inodes;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002278
2279 mpol_put(sbinfo->mpol);
2280 sbinfo->mpol = config.mpol; /* transfers initial ref */
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002281out:
2282 spin_unlock(&sbinfo->stat_lock);
2283 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002285
2286static int shmem_show_options(struct seq_file *seq, struct vfsmount *vfs)
2287{
2288 struct shmem_sb_info *sbinfo = SHMEM_SB(vfs->mnt_sb);
2289
2290 if (sbinfo->max_blocks != shmem_default_max_blocks())
2291 seq_printf(seq, ",size=%luk",
2292 sbinfo->max_blocks << (PAGE_CACHE_SHIFT - 10));
2293 if (sbinfo->max_inodes != shmem_default_max_inodes())
2294 seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
2295 if (sbinfo->mode != (S_IRWXUGO | S_ISVTX))
2296 seq_printf(seq, ",mode=%03o", sbinfo->mode);
2297 if (sbinfo->uid != 0)
2298 seq_printf(seq, ",uid=%u", sbinfo->uid);
2299 if (sbinfo->gid != 0)
2300 seq_printf(seq, ",gid=%u", sbinfo->gid);
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002301 shmem_show_mpol(seq, sbinfo->mpol);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002302 return 0;
2303}
2304#endif /* CONFIG_TMPFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
2306static void shmem_put_super(struct super_block *sb)
2307{
2308 kfree(sb->s_fs_info);
2309 sb->s_fs_info = NULL;
2310}
2311
Kay Sievers2b2af542009-04-30 15:23:42 +02002312int shmem_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313{
2314 struct inode *inode;
2315 struct dentry *root;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002316 struct shmem_sb_info *sbinfo;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002317 int err = -ENOMEM;
2318
2319 /* Round up to L1_CACHE_BYTES to resist false sharing */
Pekka Enberg425fbf02009-09-21 17:03:50 -07002320 sbinfo = kzalloc(max((int)sizeof(struct shmem_sb_info),
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002321 L1_CACHE_BYTES), GFP_KERNEL);
2322 if (!sbinfo)
2323 return -ENOMEM;
2324
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002325 sbinfo->mode = S_IRWXUGO | S_ISVTX;
David Howells76aac0e2008-11-14 10:39:12 +11002326 sbinfo->uid = current_fsuid();
2327 sbinfo->gid = current_fsgid();
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002328 sb->s_fs_info = sbinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002330#ifdef CONFIG_TMPFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 /*
2332 * Per default we only allow half of the physical ram per
2333 * tmpfs instance, limiting inodes to one per page of lowmem;
2334 * but the internal instance is left unlimited.
2335 */
2336 if (!(sb->s_flags & MS_NOUSER)) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002337 sbinfo->max_blocks = shmem_default_max_blocks();
2338 sbinfo->max_inodes = shmem_default_max_inodes();
2339 if (shmem_parse_options(data, sbinfo, false)) {
2340 err = -EINVAL;
2341 goto failed;
2342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 }
David M. Grimes91828a42006-10-17 00:09:45 -07002344 sb->s_export_op = &shmem_export_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345#else
2346 sb->s_flags |= MS_NOUSER;
2347#endif
2348
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002349 spin_lock_init(&sbinfo->stat_lock);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002350 sbinfo->free_blocks = sbinfo->max_blocks;
2351 sbinfo->free_inodes = sbinfo->max_inodes;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002352
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 sb->s_maxbytes = SHMEM_MAX_BYTES;
2354 sb->s_blocksize = PAGE_CACHE_SIZE;
2355 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
2356 sb->s_magic = TMPFS_MAGIC;
2357 sb->s_op = &shmem_ops;
Robin H. Johnsoncfd95a92006-06-12 21:50:25 +01002358 sb->s_time_gran = 1;
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002359#ifdef CONFIG_TMPFS_POSIX_ACL
2360 sb->s_xattr = shmem_xattr_handlers;
2361 sb->s_flags |= MS_POSIXACL;
2362#endif
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002363
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002364 inode = shmem_get_inode(sb, S_IFDIR | sbinfo->mode, 0, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 if (!inode)
2366 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002367 inode->i_uid = sbinfo->uid;
2368 inode->i_gid = sbinfo->gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 root = d_alloc_root(inode);
2370 if (!root)
2371 goto failed_iput;
2372 sb->s_root = root;
2373 return 0;
2374
2375failed_iput:
2376 iput(inode);
2377failed:
2378 shmem_put_super(sb);
2379 return err;
2380}
2381
Pekka Enbergfcc234f2006-03-22 00:08:13 -08002382static struct kmem_cache *shmem_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384static struct inode *shmem_alloc_inode(struct super_block *sb)
2385{
2386 struct shmem_inode_info *p;
Christoph Lametere94b1762006-12-06 20:33:17 -08002387 p = (struct shmem_inode_info *)kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 if (!p)
2389 return NULL;
2390 return &p->vfs_inode;
2391}
2392
2393static void shmem_destroy_inode(struct inode *inode)
2394{
2395 if ((inode->i_mode & S_IFMT) == S_IFREG) {
2396 /* only struct inode is valid if it's an inline symlink */
2397 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
2398 }
2399 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
2400}
2401
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002402static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403{
2404 struct shmem_inode_info *p = (struct shmem_inode_info *) foo;
2405
Christoph Lametera35afb82007-05-16 22:10:57 -07002406 inode_init_once(&p->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407}
2408
2409static int init_inodecache(void)
2410{
2411 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
2412 sizeof(struct shmem_inode_info),
Alexey Dobriyan040b5c62007-10-16 23:26:10 -07002413 0, SLAB_PANIC, init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 return 0;
2415}
2416
2417static void destroy_inodecache(void)
2418{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07002419 kmem_cache_destroy(shmem_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420}
2421
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07002422static const struct address_space_operations shmem_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 .writepage = shmem_writepage,
Ken Chen76719322007-02-10 01:43:15 -08002424 .set_page_dirty = __set_page_dirty_no_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425#ifdef CONFIG_TMPFS
Hugh Dickinsae9764162007-06-04 10:00:39 +02002426 .readpage = shmem_readpage,
Nick Piggin800d15a2007-10-16 01:25:03 -07002427 .write_begin = shmem_write_begin,
2428 .write_end = shmem_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429#endif
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -07002430 .migratepage = migrate_page,
Andi Kleenaa261f52009-09-16 11:50:16 +02002431 .error_remove_page = generic_error_remove_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432};
2433
Helge Deller15ad7cd2006-12-06 20:40:36 -08002434static const struct file_operations shmem_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 .mmap = shmem_mmap,
2436#ifdef CONFIG_TMPFS
2437 .llseek = generic_file_llseek,
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07002438 .read = do_sync_read,
Hugh Dickins5402b972008-02-04 22:28:44 -08002439 .write = do_sync_write,
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07002440 .aio_read = shmem_file_aio_read,
Hugh Dickins5402b972008-02-04 22:28:44 -08002441 .aio_write = generic_file_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 .fsync = simple_sync_file,
Hugh Dickinsae9764162007-06-04 10:00:39 +02002443 .splice_read = generic_file_splice_read,
2444 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445#endif
2446};
2447
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002448static const struct inode_operations shmem_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 .truncate = shmem_truncate,
2450 .setattr = shmem_notify_change,
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -08002451 .truncate_range = shmem_truncate_range,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002452#ifdef CONFIG_TMPFS_POSIX_ACL
2453 .setxattr = generic_setxattr,
2454 .getxattr = generic_getxattr,
2455 .listxattr = generic_listxattr,
2456 .removexattr = generic_removexattr,
Linus Torvalds6d848a42009-08-28 12:04:28 -07002457 .check_acl = shmem_check_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002458#endif
2459
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460};
2461
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002462static const struct inode_operations shmem_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463#ifdef CONFIG_TMPFS
2464 .create = shmem_create,
2465 .lookup = simple_lookup,
2466 .link = shmem_link,
2467 .unlink = shmem_unlink,
2468 .symlink = shmem_symlink,
2469 .mkdir = shmem_mkdir,
2470 .rmdir = shmem_rmdir,
2471 .mknod = shmem_mknod,
2472 .rename = shmem_rename,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002474#ifdef CONFIG_TMPFS_POSIX_ACL
2475 .setattr = shmem_notify_change,
2476 .setxattr = generic_setxattr,
2477 .getxattr = generic_getxattr,
2478 .listxattr = generic_listxattr,
2479 .removexattr = generic_removexattr,
Linus Torvalds6d848a42009-08-28 12:04:28 -07002480 .check_acl = shmem_check_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002481#endif
2482};
2483
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002484static const struct inode_operations shmem_special_inode_operations = {
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002485#ifdef CONFIG_TMPFS_POSIX_ACL
2486 .setattr = shmem_notify_change,
2487 .setxattr = generic_setxattr,
2488 .getxattr = generic_getxattr,
2489 .listxattr = generic_listxattr,
2490 .removexattr = generic_removexattr,
Linus Torvalds6d848a42009-08-28 12:04:28 -07002491 .check_acl = shmem_check_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002492#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493};
2494
Hugh Dickins759b9772007-03-05 00:30:28 -08002495static const struct super_operations shmem_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 .alloc_inode = shmem_alloc_inode,
2497 .destroy_inode = shmem_destroy_inode,
2498#ifdef CONFIG_TMPFS
2499 .statfs = shmem_statfs,
2500 .remount_fs = shmem_remount_fs,
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002501 .show_options = shmem_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502#endif
2503 .delete_inode = shmem_delete_inode,
2504 .drop_inode = generic_delete_inode,
2505 .put_super = shmem_put_super,
2506};
2507
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002508static const struct vm_operations_struct shmem_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07002509 .fault = shmem_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510#ifdef CONFIG_NUMA
2511 .set_policy = shmem_set_policy,
2512 .get_policy = shmem_get_policy,
2513#endif
2514};
2515
2516
David Howells454e2392006-06-23 02:02:57 -07002517static int shmem_get_sb(struct file_system_type *fs_type,
2518 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519{
David Howells454e2392006-06-23 02:02:57 -07002520 return get_sb_nodev(fs_type, flags, data, shmem_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521}
2522
2523static struct file_system_type tmpfs_fs_type = {
2524 .owner = THIS_MODULE,
2525 .name = "tmpfs",
2526 .get_sb = shmem_get_sb,
2527 .kill_sb = kill_litter_super,
2528};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
Kay Sievers2b2af542009-04-30 15:23:42 +02002530int __init init_tmpfs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531{
2532 int error;
2533
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07002534 error = bdi_init(&shmem_backing_dev_info);
2535 if (error)
2536 goto out4;
2537
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 error = init_inodecache();
2539 if (error)
2540 goto out3;
2541
2542 error = register_filesystem(&tmpfs_fs_type);
2543 if (error) {
2544 printk(KERN_ERR "Could not register tmpfs\n");
2545 goto out2;
2546 }
Greg Kroah-Hartman95dc1122005-06-20 21:15:16 -07002547
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -04002548 shm_mnt = vfs_kern_mount(&tmpfs_fs_type, MS_NOUSER,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 tmpfs_fs_type.name, NULL);
2550 if (IS_ERR(shm_mnt)) {
2551 error = PTR_ERR(shm_mnt);
2552 printk(KERN_ERR "Could not kern_mount tmpfs\n");
2553 goto out1;
2554 }
2555 return 0;
2556
2557out1:
2558 unregister_filesystem(&tmpfs_fs_type);
2559out2:
2560 destroy_inodecache();
2561out3:
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07002562 bdi_destroy(&shmem_backing_dev_info);
2563out4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 shm_mnt = ERR_PTR(error);
2565 return error;
2566}
Matt Mackall853ac432009-01-06 14:40:20 -08002567
2568#else /* !CONFIG_SHMEM */
2569
2570/*
2571 * tiny-shmem: simple shmemfs and tmpfs using ramfs code
2572 *
2573 * This is intended for small system where the benefits of the full
2574 * shmem code (swap-backed and resource-limited) are outweighed by
2575 * their complexity. On systems without swap this code should be
2576 * effectively equivalent, but much lighter weight.
2577 */
2578
2579#include <linux/ramfs.h>
2580
2581static struct file_system_type tmpfs_fs_type = {
2582 .name = "tmpfs",
2583 .get_sb = ramfs_get_sb,
2584 .kill_sb = kill_litter_super,
2585};
2586
Kay Sievers2b2af542009-04-30 15:23:42 +02002587int __init init_tmpfs(void)
Matt Mackall853ac432009-01-06 14:40:20 -08002588{
2589 BUG_ON(register_filesystem(&tmpfs_fs_type) != 0);
2590
2591 shm_mnt = kern_mount(&tmpfs_fs_type);
2592 BUG_ON(IS_ERR(shm_mnt));
2593
2594 return 0;
2595}
2596
2597int shmem_unuse(swp_entry_t entry, struct page *page)
2598{
2599 return 0;
2600}
2601
Hugh Dickins3f96b792009-09-21 17:03:37 -07002602int shmem_lock(struct file *file, int lock, struct user_struct *user)
2603{
2604 return 0;
2605}
2606
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002607#define shmem_vm_ops generic_file_vm_ops
2608#define shmem_file_operations ramfs_file_operations
2609#define shmem_get_inode(sb, mode, dev, flags) ramfs_get_inode(sb, mode, dev)
2610#define shmem_acct_size(flags, size) 0
2611#define shmem_unacct_size(flags, size) do {} while (0)
Hugh Dickinscaefba12009-04-13 14:40:12 -07002612#define SHMEM_MAX_BYTES MAX_LFS_FILESIZE
Matt Mackall853ac432009-01-06 14:40:20 -08002613
2614#endif /* CONFIG_SHMEM */
2615
2616/* common code */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Randy Dunlap46711812008-03-19 17:00:41 -07002618/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 * shmem_file_setup - get an unlinked file living in tmpfs
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 * @name: name for dentry (to be seen in /proc/<pid>/maps
2621 * @size: size to be set for the file
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002622 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 */
Sergei Trofimovich168f5ac2009-06-16 15:33:02 -07002624struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625{
2626 int error;
2627 struct file *file;
2628 struct inode *inode;
Al Viro2c48b9c2009-08-09 00:52:35 +04002629 struct path path;
2630 struct dentry *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 struct qstr this;
2632
2633 if (IS_ERR(shm_mnt))
2634 return (void *)shm_mnt;
2635
2636 if (size < 0 || size > SHMEM_MAX_BYTES)
2637 return ERR_PTR(-EINVAL);
2638
2639 if (shmem_acct_size(flags, size))
2640 return ERR_PTR(-ENOMEM);
2641
2642 error = -ENOMEM;
2643 this.name = name;
2644 this.len = strlen(name);
2645 this.hash = 0; /* will go */
2646 root = shm_mnt->mnt_root;
Al Viro2c48b9c2009-08-09 00:52:35 +04002647 path.dentry = d_alloc(root, &this);
2648 if (!path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 goto put_memory;
Al Viro2c48b9c2009-08-09 00:52:35 +04002650 path.mnt = mntget(shm_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 error = -ENOSPC;
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002653 inode = shmem_get_inode(root->d_sb, S_IFREG | S_IRWXUGO, 0, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 if (!inode)
Al Viro4b42af82009-08-05 18:25:56 +04002655 goto put_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
Al Viro2c48b9c2009-08-09 00:52:35 +04002657 d_instantiate(path.dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 inode->i_size = size;
2659 inode->i_nlink = 0; /* It is unlinked */
Matt Mackall853ac432009-01-06 14:40:20 -08002660#ifndef CONFIG_MMU
2661 error = ramfs_nommu_expand_for_mapping(inode, size);
2662 if (error)
Al Viro4b42af82009-08-05 18:25:56 +04002663 goto put_dentry;
Matt Mackall853ac432009-01-06 14:40:20 -08002664#endif
Al Viro4b42af82009-08-05 18:25:56 +04002665
2666 error = -ENFILE;
Al Viro2c48b9c2009-08-09 00:52:35 +04002667 file = alloc_file(&path, FMODE_WRITE | FMODE_READ,
Al Viro4b42af82009-08-05 18:25:56 +04002668 &shmem_file_operations);
2669 if (!file)
2670 goto put_dentry;
2671
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 return file;
2673
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674put_dentry:
Al Viro2c48b9c2009-08-09 00:52:35 +04002675 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676put_memory:
2677 shmem_unacct_size(flags, size);
2678 return ERR_PTR(error);
2679}
Keith Packard395e0dd2008-06-20 00:08:06 -07002680EXPORT_SYMBOL_GPL(shmem_file_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
Randy Dunlap46711812008-03-19 17:00:41 -07002682/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 * shmem_zero_setup - setup a shared anonymous mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
2685 */
2686int shmem_zero_setup(struct vm_area_struct *vma)
2687{
2688 struct file *file;
2689 loff_t size = vma->vm_end - vma->vm_start;
2690
2691 file = shmem_file_setup("dev/zero", size, vma->vm_flags);
2692 if (IS_ERR(file))
2693 return PTR_ERR(file);
2694
2695 if (vma->vm_file)
2696 fput(vma->vm_file);
2697 vma->vm_file = file;
2698 vma->vm_ops = &shmem_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 return 0;
2700}